From 7f3e4d828cb1e5c1838050086caea90af9641fce Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Fri, 14 Mar 2025 11:31:46 +0800 Subject: [PATCH 1/3] feat: support queryResult and derived table entities collecting --- src/grammar/hive/HiveSqlParser.g4 | 38 +- src/lib/hive/HiveSqlParser.interp | 7 +- src/lib/hive/HiveSqlParser.ts | 11107 ++++++++-------- src/lib/hive/HiveSqlParserListener.ts | 55 + src/lib/hive/HiveSqlParserVisitor.ts | 35 + src/parser/common/entityCollector.ts | 435 +- src/parser/common/types.ts | 2 + src/parser/hive/hiveEntityCollector.ts | 143 +- .../contextCollect/entityCollector.test.ts | 54 + 9 files changed, 6405 insertions(+), 5471 deletions(-) diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index 42eca35c0..afb3ffe57 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -1430,7 +1430,7 @@ viewNameCreate ; subQuerySource - : LPAREN queryStatementExpression RPAREN KW_AS? id_ + : LPAREN queryStatementExpression RPAREN KW_AS? alias=id_ ; /** @@ -1451,9 +1451,13 @@ partitionTableFunctionSource ; partitionedTableFunction + : atomPartitionedTableFunction alias=id_? + ; + +atomPartitionedTableFunction : n=id_ LPAREN KW_ON ptfsrc=partitionTableFunctionSource spec=partitioningSpec? ( Identifier LPAREN expression RPAREN (COMMA Identifier LPAREN expression RPAREN)* - )? RPAREN alias=id_? + )? RPAREN ; /** @@ -1481,12 +1485,16 @@ valuesClause ) ; +atomValuesClause + : KW_TABLE LPAREN valuesClause RPAREN + ; + /* This represents a clause like this: TABLE(VALUES(1,2),(2,3)) as VirtTable(col1,col2) */ virtualTableSource - : KW_TABLE LPAREN valuesClause RPAREN KW_AS? tableAlias (LPAREN id_ (COMMA id_)*)? RPAREN + : atomValuesClause KW_AS? alias=tableAlias (LPAREN id_ (COMMA id_)*)? RPAREN ; /* @@ -1494,10 +1502,7 @@ Rules for parsing selectClause select a,b,c ... */ selectClause - : KW_SELECT QUERY_HINT? ( - (KW_ALL | KW_DISTINCT)? selectItem (COMMA selectItem)* - | KW_TRANSFORM selectTrfmClause - ) + : KW_SELECT QUERY_HINT? ((KW_ALL | KW_DISTINCT)? selectList | KW_TRANSFORM selectTrfmClause) | trfmClause ; @@ -1507,9 +1512,26 @@ selectTrfmClause )? rowFormat recordReader ; +selectList + : selectItem (COMMA selectItem)* + ; + selectItem : tableAllColumns - | ((columnName | expression) (KW_AS? id_ | KW_AS LPAREN id_ (COMMA id_)* RPAREN)?) + | ( + (selectLiteralColumnName | selectExpressionColumnName) ( + KW_AS? alias=id_ + | KW_AS LPAREN alias=id_ (COMMA alias=id_)* RPAREN + )? + ) + ; + +selectLiteralColumnName + : columnName + ; + +selectExpressionColumnName + : expression ; trfmClause diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index 40d64452b..f13bf9531 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -1128,12 +1128,17 @@ subQuerySource partitioningSpec partitionTableFunctionSource partitionedTableFunction +atomPartitionedTableFunction whereClause valuesClause +atomValuesClause virtualTableSource selectClause selectTrfmClause +selectList selectItem +selectLiteralColumnName +selectExpressionColumnName trfmClause selectExpression selectExpressionList @@ -1230,4 +1235,4 @@ poolAssignList atn: -[4, 1, 438, 4801, 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, 1, 0, 5, 0, 694, 8, 0, 10, 0, 12, 0, 697, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 703, 8, 1, 1, 1, 3, 1, 706, 8, 1, 1, 2, 1, 2, 5, 2, 710, 8, 2, 10, 2, 12, 2, 713, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 718, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 725, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 735, 8, 3, 1, 3, 3, 3, 738, 8, 3, 1, 3, 1, 3, 3, 3, 742, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 757, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 764, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 770, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 775, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 780, 8, 5, 1, 5, 3, 5, 783, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 805, 8, 5, 10, 5, 12, 5, 808, 9, 5, 1, 5, 1, 5, 5, 5, 812, 8, 5, 10, 5, 12, 5, 815, 9, 5, 3, 5, 817, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 822, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 827, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 833, 8, 6, 1, 7, 1, 7, 3, 7, 837, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 850, 8, 8, 1, 9, 1, 9, 3, 9, 854, 8, 9, 1, 9, 1, 9, 3, 9, 858, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 863, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 870, 8, 10, 1, 10, 1, 10, 3, 10, 874, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 879, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 886, 8, 12, 1, 12, 1, 12, 3, 12, 890, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 895, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 941, 8, 14, 11, 14, 12, 14, 942, 1, 14, 1, 14, 1, 14, 4, 14, 948, 8, 14, 11, 14, 12, 14, 949, 1, 14, 1, 14, 1, 14, 3, 14, 955, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 978, 8, 21, 1, 21, 1, 21, 3, 21, 982, 8, 21, 1, 21, 1, 21, 3, 21, 986, 8, 21, 1, 21, 3, 21, 989, 8, 21, 1, 21, 1, 21, 3, 21, 993, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 998, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1004, 8, 21, 1, 21, 1, 21, 3, 21, 1008, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1014, 8, 21, 3, 21, 1016, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1027, 8, 24, 1, 24, 1, 24, 3, 24, 1031, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1038, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1046, 8, 26, 1, 26, 3, 26, 1049, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1054, 8, 27, 1, 27, 1, 27, 3, 27, 1058, 8, 27, 1, 27, 3, 27, 1061, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1071, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1079, 8, 29, 5, 29, 1081, 8, 29, 10, 29, 12, 29, 1084, 9, 29, 3, 29, 1086, 8, 29, 1, 30, 1, 30, 3, 30, 1090, 8, 30, 1, 31, 1, 31, 3, 31, 1094, 8, 31, 1, 31, 3, 31, 1097, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1102, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1108, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1113, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1118, 8, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1133, 8, 33, 3, 33, 1135, 8, 33, 1, 33, 1, 33, 3, 33, 1139, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1149, 8, 36, 1, 36, 1, 36, 3, 36, 1153, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1159, 8, 36, 1, 36, 3, 36, 1162, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1169, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1174, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1187, 8, 36, 1, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1199, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1204, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1210, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1216, 8, 36, 1, 36, 3, 36, 1219, 8, 36, 1, 36, 3, 36, 1222, 8, 36, 1, 36, 3, 36, 1225, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1234, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1247, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1255, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1262, 8, 36, 1, 36, 3, 36, 1265, 8, 36, 1, 36, 3, 36, 1268, 8, 36, 3, 36, 1270, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1281, 8, 36, 3, 36, 1283, 8, 36, 1, 36, 3, 36, 1286, 8, 36, 1, 36, 3, 36, 1289, 8, 36, 1, 36, 3, 36, 1292, 8, 36, 1, 36, 3, 36, 1295, 8, 36, 1, 36, 3, 36, 1298, 8, 36, 3, 36, 1300, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1318, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1326, 8, 36, 3, 36, 1328, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1338, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1371, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1376, 8, 45, 1, 46, 1, 46, 3, 46, 1380, 8, 46, 1, 46, 1, 46, 3, 46, 1384, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1391, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1396, 8, 47, 10, 47, 12, 47, 1399, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1404, 8, 47, 1, 48, 1, 48, 3, 48, 1408, 8, 48, 1, 48, 3, 48, 1411, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1416, 8, 48, 10, 48, 12, 48, 1419, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1441, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1446, 8, 53, 1, 53, 1, 53, 3, 53, 1450, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1458, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1467, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1474, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1480, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1487, 8, 58, 1, 58, 3, 58, 1490, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1496, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1501, 8, 59, 10, 59, 12, 59, 1504, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1511, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1518, 8, 62, 10, 62, 12, 62, 1521, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1529, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1536, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1556, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1563, 8, 69, 3, 69, 1565, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1570, 8, 70, 10, 70, 12, 70, 1573, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1582, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1590, 8, 73, 1, 74, 1, 74, 3, 74, 1594, 8, 74, 1, 74, 1, 74, 3, 74, 1598, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1611, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1620, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1636, 8, 78, 1, 78, 1, 78, 3, 78, 1640, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1645, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1650, 8, 78, 1, 78, 3, 78, 1653, 8, 78, 1, 78, 3, 78, 1656, 8, 78, 1, 78, 3, 78, 1659, 8, 78, 1, 78, 3, 78, 1662, 8, 78, 1, 78, 3, 78, 1665, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1670, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1679, 8, 80, 1, 80, 1, 80, 3, 80, 1683, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1690, 8, 80, 1, 80, 3, 80, 1693, 8, 80, 1, 80, 3, 80, 1696, 8, 80, 1, 80, 3, 80, 1699, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1711, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1717, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1743, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1751, 8, 88, 1, 88, 1, 88, 3, 88, 1755, 8, 88, 1, 88, 3, 88, 1758, 8, 88, 1, 88, 3, 88, 1761, 8, 88, 1, 88, 3, 88, 1764, 8, 88, 1, 88, 3, 88, 1767, 8, 88, 1, 88, 3, 88, 1770, 8, 88, 1, 88, 3, 88, 1773, 8, 88, 1, 88, 3, 88, 1776, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1785, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1795, 8, 90, 1, 90, 3, 90, 1798, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1818, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1824, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1830, 8, 94, 1, 94, 3, 94, 1833, 8, 94, 3, 94, 1835, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1842, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1849, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1862, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1867, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1874, 8, 101, 10, 101, 12, 101, 1877, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1882, 8, 102, 10, 102, 12, 102, 1885, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1892, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1905, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1918, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1934, 8, 105, 1, 106, 1, 106, 3, 106, 1938, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1953, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1959, 8, 110, 1, 110, 3, 110, 1962, 8, 110, 1, 110, 3, 110, 1965, 8, 110, 1, 110, 3, 110, 1968, 8, 110, 1, 110, 3, 110, 1971, 8, 110, 1, 111, 1, 111, 3, 111, 1975, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1988, 8, 114, 10, 114, 12, 114, 1991, 9, 114, 3, 114, 1993, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2002, 8, 116, 10, 116, 12, 116, 2005, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2018, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2052, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2060, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2065, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2073, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2078, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2083, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2088, 8, 124, 10, 124, 12, 124, 2091, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2096, 8, 125, 10, 125, 12, 125, 2099, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2104, 8, 126, 10, 126, 12, 126, 2107, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2112, 8, 127, 10, 127, 12, 127, 2115, 9, 127, 1, 128, 1, 128, 3, 128, 2119, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2129, 8, 130, 5, 130, 2131, 8, 130, 10, 130, 12, 130, 2134, 9, 130, 1, 131, 1, 131, 1, 131, 5, 131, 2139, 8, 131, 10, 131, 12, 131, 2142, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 3, 133, 2150, 8, 133, 1, 133, 3, 133, 2153, 8, 133, 1, 134, 1, 134, 3, 134, 2157, 8, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 3, 136, 2164, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 3, 138, 2170, 8, 138, 1, 138, 1, 138, 3, 138, 2174, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2180, 8, 139, 1, 140, 1, 140, 3, 140, 2184, 8, 140, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 3, 143, 2196, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2205, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2216, 8, 144, 1, 145, 1, 145, 3, 145, 2220, 8, 145, 1, 146, 1, 146, 1, 146, 5, 146, 2225, 8, 146, 10, 146, 12, 146, 2228, 9, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2237, 8, 148, 10, 148, 12, 148, 2240, 9, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2249, 8, 151, 1, 151, 3, 151, 2252, 8, 151, 1, 152, 1, 152, 1, 152, 5, 152, 2257, 8, 152, 10, 152, 12, 152, 2260, 9, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2265, 8, 153, 1, 154, 1, 154, 3, 154, 2269, 8, 154, 1, 154, 3, 154, 2272, 8, 154, 1, 154, 3, 154, 2275, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2281, 8, 155, 1, 156, 1, 156, 3, 156, 2285, 8, 156, 1, 157, 1, 157, 3, 157, 2289, 8, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2294, 8, 158, 1, 158, 1, 158, 3, 158, 2298, 8, 158, 1, 159, 1, 159, 3, 159, 2302, 8, 159, 1, 160, 1, 160, 3, 160, 2306, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2314, 8, 160, 1, 161, 1, 161, 3, 161, 2318, 8, 161, 1, 161, 1, 161, 3, 161, 2322, 8, 161, 1, 162, 1, 162, 3, 162, 2326, 8, 162, 1, 163, 1, 163, 3, 163, 2330, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2338, 8, 163, 1, 164, 1, 164, 3, 164, 2342, 8, 164, 1, 164, 1, 164, 3, 164, 2346, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2354, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2359, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2364, 8, 167, 1, 168, 1, 168, 3, 168, 2368, 8, 168, 1, 169, 1, 169, 3, 169, 2372, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2379, 8, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 2386, 8, 172, 10, 172, 12, 172, 2389, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2396, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2408, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2426, 8, 174, 1, 174, 3, 174, 2429, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2435, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 2461, 8, 179, 1, 180, 3, 180, 2464, 8, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2470, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 2476, 8, 182, 10, 182, 12, 182, 2479, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2486, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2497, 8, 184, 10, 184, 12, 184, 2500, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2506, 8, 185, 1, 185, 3, 185, 2509, 8, 185, 1, 185, 3, 185, 2512, 8, 185, 1, 185, 3, 185, 2515, 8, 185, 1, 185, 3, 185, 2518, 8, 185, 1, 185, 3, 185, 2521, 8, 185, 1, 185, 3, 185, 2524, 8, 185, 1, 185, 3, 185, 2527, 8, 185, 1, 185, 3, 185, 2530, 8, 185, 1, 185, 3, 185, 2533, 8, 185, 1, 185, 3, 185, 2536, 8, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2541, 8, 185, 1, 185, 3, 185, 2544, 8, 185, 1, 185, 3, 185, 2547, 8, 185, 1, 185, 3, 185, 2550, 8, 185, 1, 185, 3, 185, 2553, 8, 185, 1, 185, 3, 185, 2556, 8, 185, 1, 185, 3, 185, 2559, 8, 185, 1, 185, 3, 185, 2562, 8, 185, 1, 185, 3, 185, 2565, 8, 185, 1, 185, 3, 185, 2568, 8, 185, 1, 185, 3, 185, 2571, 8, 185, 3, 185, 2573, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2579, 8, 186, 1, 187, 1, 187, 3, 187, 2583, 8, 187, 1, 187, 3, 187, 2586, 8, 187, 1, 187, 3, 187, 2589, 8, 187, 1, 187, 3, 187, 2592, 8, 187, 1, 187, 3, 187, 2595, 8, 187, 1, 187, 3, 187, 2598, 8, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2605, 8, 187, 1, 188, 1, 188, 3, 188, 2609, 8, 188, 1, 188, 3, 188, 2612, 8, 188, 1, 188, 3, 188, 2615, 8, 188, 1, 188, 3, 188, 2618, 8, 188, 1, 188, 3, 188, 2621, 8, 188, 1, 188, 3, 188, 2624, 8, 188, 1, 189, 1, 189, 1, 189, 4, 189, 2629, 8, 189, 11, 189, 12, 189, 2630, 1, 190, 3, 190, 2634, 8, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2642, 8, 191, 1, 191, 1, 191, 3, 191, 2646, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2653, 8, 191, 3, 191, 2655, 8, 191, 1, 192, 3, 192, 2658, 8, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2663, 8, 192, 1, 192, 3, 192, 2666, 8, 192, 1, 192, 1, 192, 3, 192, 2670, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 2675, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2681, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 2689, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 2695, 8, 196, 10, 196, 12, 196, 2698, 9, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 5, 197, 2705, 8, 197, 10, 197, 12, 197, 2708, 9, 197, 3, 197, 2710, 8, 197, 1, 197, 1, 197, 3, 197, 2714, 8, 197, 1, 197, 1, 197, 3, 197, 2718, 8, 197, 1, 197, 1, 197, 1, 197, 3, 197, 2723, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 2730, 8, 198, 1, 199, 1, 199, 5, 199, 2734, 8, 199, 10, 199, 12, 199, 2737, 9, 199, 1, 199, 3, 199, 2740, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2747, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2752, 8, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2765, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2773, 8, 202, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2792, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2802, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2815, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2825, 8, 207, 1, 207, 1, 207, 3, 207, 2829, 8, 207, 4, 207, 2831, 8, 207, 11, 207, 12, 207, 2832, 1, 207, 1, 207, 5, 207, 2837, 8, 207, 10, 207, 12, 207, 2840, 9, 207, 1, 207, 1, 207, 5, 207, 2844, 8, 207, 10, 207, 12, 207, 2847, 9, 207, 1, 207, 1, 207, 5, 207, 2851, 8, 207, 10, 207, 12, 207, 2854, 9, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2862, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2869, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2889, 8, 207, 1, 207, 3, 207, 2892, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2906, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2921, 8, 208, 1, 208, 1, 208, 3, 208, 2925, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 5, 208, 2943, 8, 208, 10, 208, 12, 208, 2946, 9, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2957, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2963, 8, 208, 1, 208, 3, 208, 2966, 8, 208, 1, 208, 3, 208, 2969, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2975, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2981, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2988, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2996, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3002, 8, 208, 1, 208, 1, 208, 3, 208, 3006, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3011, 8, 208, 1, 208, 3, 208, 3014, 8, 208, 1, 208, 1, 208, 3, 208, 3018, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3025, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3030, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3035, 8, 208, 1, 208, 3, 208, 3038, 8, 208, 3, 208, 3040, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3048, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3056, 8, 209, 1, 209, 1, 209, 3, 209, 3060, 8, 209, 4, 209, 3062, 8, 209, 11, 209, 12, 209, 3063, 1, 209, 1, 209, 3, 209, 3068, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3085, 8, 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, 3, 211, 3102, 8, 211, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 3, 213, 3109, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 5, 213, 3116, 8, 213, 10, 213, 12, 213, 3119, 9, 213, 1, 213, 1, 213, 3, 213, 3123, 8, 213, 1, 213, 3, 213, 3126, 8, 213, 1, 213, 3, 213, 3129, 8, 213, 1, 214, 1, 214, 3, 214, 3133, 8, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 3148, 8, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3162, 8, 216, 1, 216, 3, 216, 3165, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3176, 8, 217, 1, 218, 1, 218, 3, 218, 3180, 8, 218, 1, 218, 3, 218, 3183, 8, 218, 1, 218, 3, 218, 3186, 8, 218, 1, 218, 1, 218, 3, 218, 3190, 8, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3195, 8, 218, 1, 218, 3, 218, 3198, 8, 218, 1, 218, 3, 218, 3201, 8, 218, 1, 218, 3, 218, 3204, 8, 218, 1, 218, 3, 218, 3207, 8, 218, 1, 218, 3, 218, 3210, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3216, 8, 218, 1, 218, 3, 218, 3219, 8, 218, 1, 218, 3, 218, 3222, 8, 218, 1, 218, 3, 218, 3225, 8, 218, 1, 218, 3, 218, 3228, 8, 218, 1, 218, 3, 218, 3231, 8, 218, 1, 218, 3, 218, 3234, 8, 218, 1, 218, 3, 218, 3237, 8, 218, 1, 218, 3, 218, 3240, 8, 218, 1, 218, 3, 218, 3243, 8, 218, 1, 218, 1, 218, 3, 218, 3247, 8, 218, 3, 218, 3249, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3255, 8, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3260, 8, 218, 1, 218, 3, 218, 3263, 8, 218, 1, 218, 3, 218, 3266, 8, 218, 1, 218, 3, 218, 3269, 8, 218, 1, 218, 3, 218, 3272, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3278, 8, 218, 1, 218, 3, 218, 3281, 8, 218, 1, 218, 3, 218, 3284, 8, 218, 1, 218, 3, 218, 3287, 8, 218, 1, 218, 3, 218, 3290, 8, 218, 1, 218, 3, 218, 3293, 8, 218, 1, 218, 3, 218, 3296, 8, 218, 1, 218, 3, 218, 3299, 8, 218, 1, 218, 3, 218, 3302, 8, 218, 1, 218, 3, 218, 3305, 8, 218, 1, 218, 1, 218, 3, 218, 3309, 8, 218, 3, 218, 3311, 8, 218, 3, 218, 3313, 8, 218, 1, 219, 1, 219, 1, 219, 3, 219, 3318, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3323, 8, 219, 1, 219, 1, 219, 3, 219, 3327, 8, 219, 1, 219, 1, 219, 3, 219, 3331, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3336, 8, 219, 1, 220, 1, 220, 1, 220, 3, 220, 3341, 8, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 5, 221, 3348, 8, 221, 10, 221, 12, 221, 3351, 9, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 5, 222, 3358, 8, 222, 10, 222, 12, 222, 3361, 9, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3366, 8, 223, 10, 223, 12, 223, 3369, 9, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 3378, 8, 225, 11, 225, 12, 225, 3379, 1, 225, 3, 225, 3383, 8, 225, 1, 226, 1, 226, 5, 226, 3387, 8, 226, 10, 226, 12, 226, 3390, 9, 226, 1, 226, 1, 226, 5, 226, 3394, 8, 226, 10, 226, 12, 226, 3397, 9, 226, 1, 226, 1, 226, 5, 226, 3401, 8, 226, 10, 226, 12, 226, 3404, 9, 226, 1, 226, 1, 226, 5, 226, 3408, 8, 226, 10, 226, 12, 226, 3411, 9, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3417, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3426, 8, 227, 5, 227, 3428, 8, 227, 10, 227, 12, 227, 3431, 9, 227, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3437, 8, 228, 1, 228, 5, 228, 3440, 8, 228, 10, 228, 12, 228, 3443, 9, 228, 1, 229, 3, 229, 3446, 8, 229, 1, 229, 1, 229, 3, 229, 3450, 8, 229, 1, 229, 3, 229, 3453, 8, 229, 1, 229, 3, 229, 3456, 8, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3467, 8, 230, 1, 230, 1, 230, 3, 230, 3471, 8, 230, 3, 230, 3473, 8, 230, 1, 230, 3, 230, 3476, 8, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3487, 8, 231, 10, 231, 12, 231, 3490, 9, 231, 3, 231, 3492, 8, 231, 1, 231, 3, 231, 3495, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3505, 8, 231, 10, 231, 12, 231, 3508, 9, 231, 3, 231, 3510, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 3517, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3524, 8, 231, 10, 231, 12, 231, 3527, 9, 231, 1, 231, 1, 231, 3, 231, 3531, 8, 231, 3, 231, 3533, 8, 231, 3, 231, 3535, 8, 231, 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, 5, 233, 3550, 8, 233, 10, 233, 12, 233, 3553, 9, 233, 3, 233, 3555, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3563, 8, 233, 1, 233, 3, 233, 3566, 8, 233, 1, 234, 1, 234, 3, 234, 3570, 8, 234, 1, 234, 3, 234, 3573, 8, 234, 1, 234, 3, 234, 3576, 8, 234, 1, 234, 3, 234, 3579, 8, 234, 1, 234, 3, 234, 3582, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3594, 8, 235, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 3, 238, 3602, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3609, 8, 239, 1, 239, 3, 239, 3612, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3619, 8, 240, 1, 240, 3, 240, 3622, 8, 240, 1, 241, 1, 241, 1, 241, 3, 241, 3627, 8, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 3, 242, 3634, 8, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 3642, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3650, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3655, 8, 244, 1, 244, 1, 244, 3, 244, 3659, 8, 244, 1, 245, 1, 245, 1, 245, 3, 245, 3664, 8, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3671, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 3683, 8, 246, 10, 246, 12, 246, 3686, 9, 246, 3, 246, 3688, 8, 246, 1, 246, 1, 246, 3, 246, 3692, 8, 246, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 3701, 8, 248, 10, 248, 12, 248, 3704, 9, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 3711, 8, 248, 10, 248, 12, 248, 3714, 9, 248, 3, 248, 3716, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3723, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3730, 8, 249, 10, 249, 12, 249, 3733, 9, 249, 3, 249, 3735, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 3, 250, 3741, 8, 250, 1, 250, 3, 250, 3744, 8, 250, 1, 250, 1, 250, 1, 250, 5, 250, 3749, 8, 250, 10, 250, 12, 250, 3752, 9, 250, 1, 250, 1, 250, 3, 250, 3756, 8, 250, 1, 250, 3, 250, 3759, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 3772, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 3, 251, 3778, 8, 251, 3, 251, 3780, 8, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 3, 252, 3788, 8, 252, 1, 252, 3, 252, 3791, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 5, 252, 3799, 8, 252, 10, 252, 12, 252, 3802, 9, 252, 1, 252, 1, 252, 3, 252, 3806, 8, 252, 3, 252, 3808, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 3820, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 3826, 8, 253, 3, 253, 3828, 8, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3835, 8, 254, 1, 255, 1, 255, 1, 255, 5, 255, 3840, 8, 255, 10, 255, 12, 255, 3843, 9, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 5, 256, 3854, 8, 256, 10, 256, 12, 256, 3857, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3862, 8, 257, 1, 257, 3, 257, 3865, 8, 257, 1, 257, 3, 257, 3868, 8, 257, 1, 257, 3, 257, 3871, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3880, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3887, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 3893, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3902, 8, 260, 1, 261, 1, 261, 3, 261, 3906, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 3912, 8, 261, 10, 261, 12, 261, 3915, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 3924, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 3932, 8, 262, 10, 262, 12, 262, 3935, 9, 262, 1, 262, 1, 262, 3, 262, 3939, 8, 262, 1, 263, 1, 263, 3, 263, 3943, 8, 263, 1, 263, 1, 263, 5, 263, 3947, 8, 263, 10, 263, 12, 263, 3950, 9, 263, 1, 263, 1, 263, 3, 263, 3954, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 266, 1, 266, 3, 266, 3964, 8, 266, 1, 267, 1, 267, 3, 267, 3968, 8, 267, 1, 267, 3, 267, 3971, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3976, 8, 267, 1, 267, 3, 267, 3979, 8, 267, 5, 267, 3981, 8, 267, 10, 267, 12, 267, 3984, 9, 267, 1, 268, 1, 268, 3, 268, 3988, 8, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 4, 270, 3997, 8, 270, 11, 270, 12, 270, 3998, 3, 270, 4001, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 4008, 8, 271, 10, 271, 12, 271, 4011, 9, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 5, 274, 4027, 8, 274, 10, 274, 12, 274, 4030, 9, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 5, 274, 4037, 8, 274, 10, 274, 12, 274, 4040, 9, 274, 3, 274, 4042, 8, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4049, 8, 275, 1, 275, 3, 275, 4052, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4062, 8, 275, 1, 275, 1, 275, 1, 275, 5, 275, 4067, 8, 275, 10, 275, 12, 275, 4070, 9, 275, 3, 275, 4072, 8, 275, 3, 275, 4074, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4085, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 4095, 8, 275, 3, 275, 4097, 8, 275, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 278, 1, 278, 3, 278, 4106, 8, 278, 1, 279, 1, 279, 1, 279, 3, 279, 4111, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 4120, 8, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 4, 281, 4131, 8, 281, 11, 281, 12, 281, 4132, 1, 281, 1, 281, 3, 281, 4137, 8, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 4, 282, 4147, 8, 282, 11, 282, 12, 282, 4148, 1, 282, 1, 282, 3, 282, 4153, 8, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4162, 8, 283, 1, 283, 1, 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, 3, 285, 4181, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 5, 286, 4197, 8, 286, 10, 286, 12, 286, 4200, 9, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 4211, 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, 3, 288, 4226, 8, 288, 1, 288, 1, 288, 3, 288, 4230, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 4246, 8, 289, 1, 290, 1, 290, 1, 290, 5, 290, 4251, 8, 290, 10, 290, 12, 290, 4254, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4267, 8, 291, 1, 292, 5, 292, 4270, 8, 292, 10, 292, 12, 292, 4273, 9, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 5, 292, 4282, 8, 292, 10, 292, 12, 292, 4285, 9, 292, 1, 293, 1, 293, 1, 293, 5, 293, 4290, 8, 293, 10, 293, 12, 293, 4293, 9, 293, 1, 294, 1, 294, 1, 294, 5, 294, 4298, 8, 294, 10, 294, 12, 294, 4301, 9, 294, 1, 295, 1, 295, 1, 295, 5, 295, 4306, 8, 295, 10, 295, 12, 295, 4309, 9, 295, 1, 296, 1, 296, 1, 296, 5, 296, 4314, 8, 296, 10, 296, 12, 296, 4317, 9, 296, 1, 297, 1, 297, 1, 297, 5, 297, 4322, 8, 297, 10, 297, 12, 297, 4325, 9, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4330, 8, 298, 10, 298, 12, 298, 4333, 9, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 300, 1, 300, 1, 301, 1, 301, 3, 301, 4343, 8, 301, 1, 301, 1, 301, 3, 301, 4347, 8, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 4355, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 4371, 8, 303, 1, 304, 1, 304, 3, 304, 4375, 8, 304, 1, 305, 1, 305, 1, 305, 3, 305, 4380, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 4393, 8, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 5, 308, 4402, 8, 308, 10, 308, 12, 308, 4405, 9, 308, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 4413, 8, 309, 1, 310, 5, 310, 4416, 8, 310, 10, 310, 12, 310, 4419, 9, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4424, 8, 310, 1, 311, 1, 311, 1, 311, 5, 311, 4429, 8, 311, 10, 311, 12, 311, 4432, 9, 311, 1, 312, 1, 312, 3, 312, 4436, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 5, 313, 4443, 8, 313, 10, 313, 12, 313, 4446, 9, 313, 1, 313, 1, 313, 1, 314, 1, 314, 1, 314, 3, 314, 4453, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 4459, 8, 315, 10, 315, 12, 315, 4462, 9, 315, 1, 315, 1, 315, 1, 316, 1, 316, 1, 316, 3, 316, 4469, 8, 316, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 3, 319, 4479, 8, 319, 1, 320, 1, 320, 1, 320, 3, 320, 4484, 8, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 4543, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4549, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4558, 8, 325, 3, 325, 4560, 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, 5, 325, 4574, 8, 325, 10, 325, 12, 325, 4577, 9, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4584, 8, 325, 1, 325, 1, 325, 3, 325, 4588, 8, 325, 3, 325, 4590, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4596, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4601, 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, 3, 325, 4618, 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, 3, 325, 4644, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4649, 8, 325, 3, 325, 4651, 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, 3, 325, 4679, 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, 3, 325, 4696, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4701, 8, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 4710, 8, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 4721, 8, 327, 1, 328, 1, 328, 1, 328, 5, 328, 4726, 8, 328, 10, 328, 12, 328, 4729, 9, 328, 1, 329, 1, 329, 1, 329, 3, 329, 4734, 8, 329, 1, 330, 1, 330, 1, 330, 3, 330, 4739, 8, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 5, 341, 4764, 8, 341, 10, 341, 12, 341, 4767, 9, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 4777, 8, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 4791, 8, 344, 1, 345, 1, 345, 1, 345, 5, 345, 4796, 8, 345, 10, 345, 12, 345, 4799, 9, 345, 1, 345, 1, 813, 0, 346, 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, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5392, 0, 695, 1, 0, 0, 0, 2, 702, 1, 0, 0, 0, 4, 707, 1, 0, 0, 0, 6, 741, 1, 0, 0, 0, 8, 743, 1, 0, 0, 0, 10, 816, 1, 0, 0, 0, 12, 818, 1, 0, 0, 0, 14, 834, 1, 0, 0, 0, 16, 843, 1, 0, 0, 0, 18, 851, 1, 0, 0, 0, 20, 864, 1, 0, 0, 0, 22, 875, 1, 0, 0, 0, 24, 880, 1, 0, 0, 0, 26, 891, 1, 0, 0, 0, 28, 954, 1, 0, 0, 0, 30, 956, 1, 0, 0, 0, 32, 959, 1, 0, 0, 0, 34, 963, 1, 0, 0, 0, 36, 965, 1, 0, 0, 0, 38, 968, 1, 0, 0, 0, 40, 971, 1, 0, 0, 0, 42, 1015, 1, 0, 0, 0, 44, 1017, 1, 0, 0, 0, 46, 1020, 1, 0, 0, 0, 48, 1023, 1, 0, 0, 0, 50, 1032, 1, 0, 0, 0, 52, 1035, 1, 0, 0, 0, 54, 1050, 1, 0, 0, 0, 56, 1062, 1, 0, 0, 0, 58, 1067, 1, 0, 0, 0, 60, 1087, 1, 0, 0, 0, 62, 1091, 1, 0, 0, 0, 64, 1098, 1, 0, 0, 0, 66, 1123, 1, 0, 0, 0, 68, 1140, 1, 0, 0, 0, 70, 1142, 1, 0, 0, 0, 72, 1327, 1, 0, 0, 0, 74, 1337, 1, 0, 0, 0, 76, 1339, 1, 0, 0, 0, 78, 1344, 1, 0, 0, 0, 80, 1349, 1, 0, 0, 0, 82, 1351, 1, 0, 0, 0, 84, 1355, 1, 0, 0, 0, 86, 1359, 1, 0, 0, 0, 88, 1363, 1, 0, 0, 0, 90, 1367, 1, 0, 0, 0, 92, 1377, 1, 0, 0, 0, 94, 1388, 1, 0, 0, 0, 96, 1405, 1, 0, 0, 0, 98, 1423, 1, 0, 0, 0, 100, 1428, 1, 0, 0, 0, 102, 1431, 1, 0, 0, 0, 104, 1435, 1, 0, 0, 0, 106, 1442, 1, 0, 0, 0, 108, 1451, 1, 0, 0, 0, 110, 1457, 1, 0, 0, 0, 112, 1459, 1, 0, 0, 0, 114, 1473, 1, 0, 0, 0, 116, 1495, 1, 0, 0, 0, 118, 1497, 1, 0, 0, 0, 120, 1505, 1, 0, 0, 0, 122, 1512, 1, 0, 0, 0, 124, 1514, 1, 0, 0, 0, 126, 1528, 1, 0, 0, 0, 128, 1535, 1, 0, 0, 0, 130, 1537, 1, 0, 0, 0, 132, 1541, 1, 0, 0, 0, 134, 1545, 1, 0, 0, 0, 136, 1549, 1, 0, 0, 0, 138, 1553, 1, 0, 0, 0, 140, 1566, 1, 0, 0, 0, 142, 1574, 1, 0, 0, 0, 144, 1577, 1, 0, 0, 0, 146, 1579, 1, 0, 0, 0, 148, 1591, 1, 0, 0, 0, 150, 1601, 1, 0, 0, 0, 152, 1604, 1, 0, 0, 0, 154, 1615, 1, 0, 0, 0, 156, 1623, 1, 0, 0, 0, 158, 1666, 1, 0, 0, 0, 160, 1675, 1, 0, 0, 0, 162, 1703, 1, 0, 0, 0, 164, 1716, 1, 0, 0, 0, 166, 1718, 1, 0, 0, 0, 168, 1724, 1, 0, 0, 0, 170, 1727, 1, 0, 0, 0, 172, 1733, 1, 0, 0, 0, 174, 1739, 1, 0, 0, 0, 176, 1746, 1, 0, 0, 0, 178, 1780, 1, 0, 0, 0, 180, 1788, 1, 0, 0, 0, 182, 1801, 1, 0, 0, 0, 184, 1806, 1, 0, 0, 0, 186, 1817, 1, 0, 0, 0, 188, 1834, 1, 0, 0, 0, 190, 1836, 1, 0, 0, 0, 192, 1841, 1, 0, 0, 0, 194, 1848, 1, 0, 0, 0, 196, 1850, 1, 0, 0, 0, 198, 1853, 1, 0, 0, 0, 200, 1856, 1, 0, 0, 0, 202, 1870, 1, 0, 0, 0, 204, 1878, 1, 0, 0, 0, 206, 1904, 1, 0, 0, 0, 208, 1906, 1, 0, 0, 0, 210, 1923, 1, 0, 0, 0, 212, 1937, 1, 0, 0, 0, 214, 1939, 1, 0, 0, 0, 216, 1942, 1, 0, 0, 0, 218, 1945, 1, 0, 0, 0, 220, 1954, 1, 0, 0, 0, 222, 1974, 1, 0, 0, 0, 224, 1976, 1, 0, 0, 0, 226, 1979, 1, 0, 0, 0, 228, 1992, 1, 0, 0, 0, 230, 1994, 1, 0, 0, 0, 232, 1998, 1, 0, 0, 0, 234, 2006, 1, 0, 0, 0, 236, 2010, 1, 0, 0, 0, 238, 2019, 1, 0, 0, 0, 240, 2025, 1, 0, 0, 0, 242, 2031, 1, 0, 0, 0, 244, 2036, 1, 0, 0, 0, 246, 2082, 1, 0, 0, 0, 248, 2084, 1, 0, 0, 0, 250, 2092, 1, 0, 0, 0, 252, 2100, 1, 0, 0, 0, 254, 2108, 1, 0, 0, 0, 256, 2118, 1, 0, 0, 0, 258, 2120, 1, 0, 0, 0, 260, 2122, 1, 0, 0, 0, 262, 2135, 1, 0, 0, 0, 264, 2143, 1, 0, 0, 0, 266, 2152, 1, 0, 0, 0, 268, 2156, 1, 0, 0, 0, 270, 2158, 1, 0, 0, 0, 272, 2163, 1, 0, 0, 0, 274, 2165, 1, 0, 0, 0, 276, 2169, 1, 0, 0, 0, 278, 2175, 1, 0, 0, 0, 280, 2183, 1, 0, 0, 0, 282, 2185, 1, 0, 0, 0, 284, 2188, 1, 0, 0, 0, 286, 2195, 1, 0, 0, 0, 288, 2206, 1, 0, 0, 0, 290, 2219, 1, 0, 0, 0, 292, 2221, 1, 0, 0, 0, 294, 2229, 1, 0, 0, 0, 296, 2233, 1, 0, 0, 0, 298, 2241, 1, 0, 0, 0, 300, 2243, 1, 0, 0, 0, 302, 2246, 1, 0, 0, 0, 304, 2253, 1, 0, 0, 0, 306, 2261, 1, 0, 0, 0, 308, 2268, 1, 0, 0, 0, 310, 2276, 1, 0, 0, 0, 312, 2284, 1, 0, 0, 0, 314, 2288, 1, 0, 0, 0, 316, 2290, 1, 0, 0, 0, 318, 2301, 1, 0, 0, 0, 320, 2305, 1, 0, 0, 0, 322, 2317, 1, 0, 0, 0, 324, 2325, 1, 0, 0, 0, 326, 2329, 1, 0, 0, 0, 328, 2341, 1, 0, 0, 0, 330, 2353, 1, 0, 0, 0, 332, 2358, 1, 0, 0, 0, 334, 2363, 1, 0, 0, 0, 336, 2365, 1, 0, 0, 0, 338, 2369, 1, 0, 0, 0, 340, 2373, 1, 0, 0, 0, 342, 2380, 1, 0, 0, 0, 344, 2382, 1, 0, 0, 0, 346, 2395, 1, 0, 0, 0, 348, 2434, 1, 0, 0, 0, 350, 2436, 1, 0, 0, 0, 352, 2441, 1, 0, 0, 0, 354, 2446, 1, 0, 0, 0, 356, 2453, 1, 0, 0, 0, 358, 2458, 1, 0, 0, 0, 360, 2463, 1, 0, 0, 0, 362, 2469, 1, 0, 0, 0, 364, 2471, 1, 0, 0, 0, 366, 2480, 1, 0, 0, 0, 368, 2492, 1, 0, 0, 0, 370, 2572, 1, 0, 0, 0, 372, 2578, 1, 0, 0, 0, 374, 2604, 1, 0, 0, 0, 376, 2606, 1, 0, 0, 0, 378, 2628, 1, 0, 0, 0, 380, 2633, 1, 0, 0, 0, 382, 2637, 1, 0, 0, 0, 384, 2669, 1, 0, 0, 0, 386, 2671, 1, 0, 0, 0, 388, 2682, 1, 0, 0, 0, 390, 2688, 1, 0, 0, 0, 392, 2690, 1, 0, 0, 0, 394, 2722, 1, 0, 0, 0, 396, 2729, 1, 0, 0, 0, 398, 2735, 1, 0, 0, 0, 400, 2741, 1, 0, 0, 0, 402, 2756, 1, 0, 0, 0, 404, 2766, 1, 0, 0, 0, 406, 2774, 1, 0, 0, 0, 408, 2777, 1, 0, 0, 0, 410, 2780, 1, 0, 0, 0, 412, 2783, 1, 0, 0, 0, 414, 2905, 1, 0, 0, 0, 416, 3039, 1, 0, 0, 0, 418, 3067, 1, 0, 0, 0, 420, 3084, 1, 0, 0, 0, 422, 3101, 1, 0, 0, 0, 424, 3103, 1, 0, 0, 0, 426, 3106, 1, 0, 0, 0, 428, 3132, 1, 0, 0, 0, 430, 3137, 1, 0, 0, 0, 432, 3164, 1, 0, 0, 0, 434, 3175, 1, 0, 0, 0, 436, 3312, 1, 0, 0, 0, 438, 3314, 1, 0, 0, 0, 440, 3337, 1, 0, 0, 0, 442, 3349, 1, 0, 0, 0, 444, 3354, 1, 0, 0, 0, 446, 3362, 1, 0, 0, 0, 448, 3370, 1, 0, 0, 0, 450, 3382, 1, 0, 0, 0, 452, 3416, 1, 0, 0, 0, 454, 3418, 1, 0, 0, 0, 456, 3436, 1, 0, 0, 0, 458, 3445, 1, 0, 0, 0, 460, 3475, 1, 0, 0, 0, 462, 3534, 1, 0, 0, 0, 464, 3536, 1, 0, 0, 0, 466, 3565, 1, 0, 0, 0, 468, 3567, 1, 0, 0, 0, 470, 3583, 1, 0, 0, 0, 472, 3595, 1, 0, 0, 0, 474, 3597, 1, 0, 0, 0, 476, 3601, 1, 0, 0, 0, 478, 3611, 1, 0, 0, 0, 480, 3621, 1, 0, 0, 0, 482, 3626, 1, 0, 0, 0, 484, 3633, 1, 0, 0, 0, 486, 3637, 1, 0, 0, 0, 488, 3658, 1, 0, 0, 0, 490, 3663, 1, 0, 0, 0, 492, 3665, 1, 0, 0, 0, 494, 3693, 1, 0, 0, 0, 496, 3696, 1, 0, 0, 0, 498, 3717, 1, 0, 0, 0, 500, 3758, 1, 0, 0, 0, 502, 3760, 1, 0, 0, 0, 504, 3807, 1, 0, 0, 0, 506, 3809, 1, 0, 0, 0, 508, 3834, 1, 0, 0, 0, 510, 3836, 1, 0, 0, 0, 512, 3844, 1, 0, 0, 0, 514, 3870, 1, 0, 0, 0, 516, 3872, 1, 0, 0, 0, 518, 3892, 1, 0, 0, 0, 520, 3894, 1, 0, 0, 0, 522, 3905, 1, 0, 0, 0, 524, 3918, 1, 0, 0, 0, 526, 3953, 1, 0, 0, 0, 528, 3955, 1, 0, 0, 0, 530, 3958, 1, 0, 0, 0, 532, 3963, 1, 0, 0, 0, 534, 3965, 1, 0, 0, 0, 536, 3987, 1, 0, 0, 0, 538, 3989, 1, 0, 0, 0, 540, 3993, 1, 0, 0, 0, 542, 4002, 1, 0, 0, 0, 544, 4012, 1, 0, 0, 0, 546, 4016, 1, 0, 0, 0, 548, 4020, 1, 0, 0, 0, 550, 4096, 1, 0, 0, 0, 552, 4098, 1, 0, 0, 0, 554, 4101, 1, 0, 0, 0, 556, 4105, 1, 0, 0, 0, 558, 4110, 1, 0, 0, 0, 560, 4112, 1, 0, 0, 0, 562, 4123, 1, 0, 0, 0, 564, 4140, 1, 0, 0, 0, 566, 4156, 1, 0, 0, 0, 568, 4165, 1, 0, 0, 0, 570, 4180, 1, 0, 0, 0, 572, 4210, 1, 0, 0, 0, 574, 4212, 1, 0, 0, 0, 576, 4229, 1, 0, 0, 0, 578, 4245, 1, 0, 0, 0, 580, 4247, 1, 0, 0, 0, 582, 4266, 1, 0, 0, 0, 584, 4271, 1, 0, 0, 0, 586, 4286, 1, 0, 0, 0, 588, 4294, 1, 0, 0, 0, 590, 4302, 1, 0, 0, 0, 592, 4310, 1, 0, 0, 0, 594, 4318, 1, 0, 0, 0, 596, 4326, 1, 0, 0, 0, 598, 4334, 1, 0, 0, 0, 600, 4336, 1, 0, 0, 0, 602, 4346, 1, 0, 0, 0, 604, 4354, 1, 0, 0, 0, 606, 4370, 1, 0, 0, 0, 608, 4374, 1, 0, 0, 0, 610, 4379, 1, 0, 0, 0, 612, 4381, 1, 0, 0, 0, 614, 4392, 1, 0, 0, 0, 616, 4394, 1, 0, 0, 0, 618, 4412, 1, 0, 0, 0, 620, 4417, 1, 0, 0, 0, 622, 4425, 1, 0, 0, 0, 624, 4433, 1, 0, 0, 0, 626, 4437, 1, 0, 0, 0, 628, 4449, 1, 0, 0, 0, 630, 4454, 1, 0, 0, 0, 632, 4465, 1, 0, 0, 0, 634, 4472, 1, 0, 0, 0, 636, 4474, 1, 0, 0, 0, 638, 4478, 1, 0, 0, 0, 640, 4480, 1, 0, 0, 0, 642, 4485, 1, 0, 0, 0, 644, 4487, 1, 0, 0, 0, 646, 4489, 1, 0, 0, 0, 648, 4542, 1, 0, 0, 0, 650, 4709, 1, 0, 0, 0, 652, 4711, 1, 0, 0, 0, 654, 4720, 1, 0, 0, 0, 656, 4722, 1, 0, 0, 0, 658, 4733, 1, 0, 0, 0, 660, 4735, 1, 0, 0, 0, 662, 4740, 1, 0, 0, 0, 664, 4742, 1, 0, 0, 0, 666, 4744, 1, 0, 0, 0, 668, 4746, 1, 0, 0, 0, 670, 4748, 1, 0, 0, 0, 672, 4750, 1, 0, 0, 0, 674, 4752, 1, 0, 0, 0, 676, 4754, 1, 0, 0, 0, 678, 4756, 1, 0, 0, 0, 680, 4758, 1, 0, 0, 0, 682, 4760, 1, 0, 0, 0, 684, 4768, 1, 0, 0, 0, 686, 4776, 1, 0, 0, 0, 688, 4790, 1, 0, 0, 0, 690, 4792, 1, 0, 0, 0, 692, 694, 3, 2, 1, 0, 693, 692, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 0, 0, 1, 699, 1, 1, 0, 0, 0, 700, 703, 3, 4, 2, 0, 701, 703, 3, 10, 5, 0, 702, 700, 1, 0, 0, 0, 702, 701, 1, 0, 0, 0, 703, 705, 1, 0, 0, 0, 704, 706, 5, 398, 0, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 3, 1, 0, 0, 0, 707, 717, 5, 119, 0, 0, 708, 710, 3, 6, 3, 0, 709, 708, 1, 0, 0, 0, 710, 713, 1, 0, 0, 0, 711, 709, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 714, 718, 3, 10, 5, 0, 715, 716, 5, 284, 0, 0, 716, 718, 3, 360, 180, 0, 717, 711, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 5, 1, 0, 0, 0, 719, 742, 5, 122, 0, 0, 720, 742, 5, 138, 0, 0, 721, 742, 5, 88, 0, 0, 722, 724, 5, 37, 0, 0, 723, 725, 7, 0, 0, 0, 724, 723, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 742, 1, 0, 0, 0, 726, 742, 5, 192, 0, 0, 727, 742, 5, 21, 0, 0, 728, 742, 5, 10, 0, 0, 729, 742, 5, 275, 0, 0, 730, 742, 5, 191, 0, 0, 731, 742, 5, 19, 0, 0, 732, 734, 5, 377, 0, 0, 733, 735, 5, 225, 0, 0, 734, 733, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 737, 1, 0, 0, 0, 736, 738, 3, 8, 4, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 742, 1, 0, 0, 0, 739, 742, 5, 79, 0, 0, 740, 742, 5, 78, 0, 0, 741, 719, 1, 0, 0, 0, 741, 720, 1, 0, 0, 0, 741, 721, 1, 0, 0, 0, 741, 722, 1, 0, 0, 0, 741, 726, 1, 0, 0, 0, 741, 727, 1, 0, 0, 0, 741, 728, 1, 0, 0, 0, 741, 729, 1, 0, 0, 0, 741, 730, 1, 0, 0, 0, 741, 731, 1, 0, 0, 0, 741, 732, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 740, 1, 0, 0, 0, 742, 7, 1, 0, 0, 0, 743, 744, 7, 1, 0, 0, 744, 9, 1, 0, 0, 0, 745, 817, 3, 360, 180, 0, 746, 817, 3, 12, 6, 0, 747, 817, 3, 16, 8, 0, 748, 817, 3, 18, 9, 0, 749, 817, 3, 20, 10, 0, 750, 817, 3, 24, 12, 0, 751, 752, 5, 277, 0, 0, 752, 753, 5, 320, 0, 0, 753, 756, 3, 472, 236, 0, 754, 755, 5, 387, 0, 0, 755, 757, 3, 230, 115, 0, 756, 754, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 817, 1, 0, 0, 0, 758, 817, 3, 28, 14, 0, 759, 760, 5, 86, 0, 0, 760, 761, 5, 139, 0, 0, 761, 763, 3, 478, 239, 0, 762, 764, 3, 494, 247, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 817, 1, 0, 0, 0, 765, 766, 5, 365, 0, 0, 766, 767, 3, 478, 239, 0, 767, 769, 3, 392, 196, 0, 768, 770, 3, 494, 247, 0, 769, 768, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 817, 1, 0, 0, 0, 771, 817, 3, 394, 197, 0, 772, 774, 5, 203, 0, 0, 773, 775, 5, 436, 0, 0, 774, 773, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 5, 166, 0, 0, 777, 782, 3, 478, 239, 0, 778, 780, 5, 17, 0, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 783, 3, 638, 319, 0, 782, 779, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 5, 370, 0, 0, 785, 786, 3, 456, 228, 0, 786, 787, 5, 224, 0, 0, 787, 788, 3, 580, 290, 0, 788, 789, 3, 398, 199, 0, 789, 817, 1, 0, 0, 0, 790, 791, 5, 249, 0, 0, 791, 792, 3, 638, 319, 0, 792, 793, 5, 139, 0, 0, 793, 794, 3, 360, 180, 0, 794, 817, 1, 0, 0, 0, 795, 796, 5, 115, 0, 0, 796, 797, 3, 638, 319, 0, 797, 798, 5, 370, 0, 0, 798, 799, 3, 296, 148, 0, 799, 817, 1, 0, 0, 0, 800, 801, 5, 304, 0, 0, 801, 806, 3, 648, 324, 0, 802, 803, 7, 2, 0, 0, 803, 805, 3, 648, 324, 0, 804, 802, 1, 0, 0, 0, 805, 808, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 809, 813, 5, 405, 0, 0, 810, 812, 9, 0, 0, 0, 811, 810, 1, 0, 0, 0, 812, 815, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 817, 1, 0, 0, 0, 815, 813, 1, 0, 0, 0, 816, 745, 1, 0, 0, 0, 816, 746, 1, 0, 0, 0, 816, 747, 1, 0, 0, 0, 816, 748, 1, 0, 0, 0, 816, 749, 1, 0, 0, 0, 816, 750, 1, 0, 0, 0, 816, 751, 1, 0, 0, 0, 816, 758, 1, 0, 0, 0, 816, 759, 1, 0, 0, 0, 816, 765, 1, 0, 0, 0, 816, 771, 1, 0, 0, 0, 816, 772, 1, 0, 0, 0, 816, 790, 1, 0, 0, 0, 816, 795, 1, 0, 0, 0, 816, 800, 1, 0, 0, 0, 817, 11, 1, 0, 0, 0, 818, 819, 5, 187, 0, 0, 819, 821, 5, 66, 0, 0, 820, 822, 5, 188, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 5, 158, 0, 0, 824, 826, 5, 426, 0, 0, 825, 827, 5, 235, 0, 0, 826, 825, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 5, 166, 0, 0, 829, 830, 5, 329, 0, 0, 830, 832, 3, 624, 312, 0, 831, 833, 3, 56, 28, 0, 832, 831, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 13, 1, 0, 0, 0, 834, 836, 5, 134, 0, 0, 835, 837, 5, 204, 0, 0, 836, 835, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 5, 279, 0, 0, 839, 840, 5, 399, 0, 0, 840, 841, 5, 426, 0, 0, 841, 842, 5, 400, 0, 0, 842, 15, 1, 0, 0, 0, 843, 844, 5, 120, 0, 0, 844, 845, 5, 329, 0, 0, 845, 846, 3, 624, 312, 0, 846, 847, 5, 341, 0, 0, 847, 849, 5, 426, 0, 0, 848, 850, 3, 14, 7, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 17, 1, 0, 0, 0, 851, 857, 5, 153, 0, 0, 852, 854, 5, 123, 0, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 5, 329, 0, 0, 856, 858, 3, 624, 312, 0, 857, 853, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 5, 139, 0, 0, 860, 862, 5, 426, 0, 0, 861, 863, 3, 424, 212, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 19, 1, 0, 0, 0, 864, 865, 5, 277, 0, 0, 865, 866, 5, 103, 0, 0, 866, 869, 3, 22, 11, 0, 867, 868, 5, 278, 0, 0, 868, 870, 3, 22, 11, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 873, 1, 0, 0, 0, 871, 872, 5, 387, 0, 0, 872, 874, 3, 230, 115, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 21, 1, 0, 0, 0, 875, 878, 3, 472, 236, 0, 876, 877, 5, 395, 0, 0, 877, 879, 3, 26, 13, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 23, 1, 0, 0, 0, 880, 881, 5, 277, 0, 0, 881, 882, 5, 187, 0, 0, 882, 885, 3, 22, 11, 0, 883, 884, 5, 166, 0, 0, 884, 886, 3, 472, 236, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 888, 5, 387, 0, 0, 888, 890, 3, 230, 115, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 25, 1, 0, 0, 0, 891, 894, 5, 426, 0, 0, 892, 893, 5, 395, 0, 0, 893, 895, 5, 426, 0, 0, 894, 892, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 27, 1, 0, 0, 0, 896, 955, 3, 42, 21, 0, 897, 955, 3, 46, 23, 0, 898, 955, 3, 48, 24, 0, 899, 955, 3, 436, 218, 0, 900, 955, 3, 54, 27, 0, 901, 955, 3, 52, 26, 0, 902, 955, 3, 412, 206, 0, 903, 955, 3, 64, 32, 0, 904, 955, 3, 72, 36, 0, 905, 955, 3, 138, 69, 0, 906, 955, 3, 160, 80, 0, 907, 955, 3, 176, 88, 0, 908, 955, 3, 180, 90, 0, 909, 955, 3, 184, 92, 0, 910, 955, 3, 182, 91, 0, 911, 955, 3, 174, 87, 0, 912, 955, 3, 178, 89, 0, 913, 955, 3, 146, 73, 0, 914, 955, 3, 152, 76, 0, 915, 955, 3, 148, 74, 0, 916, 955, 3, 150, 75, 0, 917, 955, 3, 154, 77, 0, 918, 955, 3, 156, 78, 0, 919, 955, 3, 158, 79, 0, 920, 955, 3, 66, 33, 0, 921, 955, 3, 76, 38, 0, 922, 955, 3, 82, 41, 0, 923, 955, 3, 78, 39, 0, 924, 955, 3, 84, 42, 0, 925, 955, 3, 86, 43, 0, 926, 955, 3, 88, 44, 0, 927, 955, 3, 90, 45, 0, 928, 955, 3, 92, 46, 0, 929, 955, 3, 106, 53, 0, 930, 955, 3, 98, 49, 0, 931, 955, 3, 108, 54, 0, 932, 955, 3, 100, 50, 0, 933, 955, 3, 94, 47, 0, 934, 955, 3, 96, 48, 0, 935, 955, 3, 104, 52, 0, 936, 955, 3, 102, 51, 0, 937, 938, 5, 1, 0, 0, 938, 940, 7, 3, 0, 0, 939, 941, 5, 431, 0, 0, 940, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 955, 1, 0, 0, 0, 944, 945, 5, 176, 0, 0, 945, 947, 5, 258, 0, 0, 946, 948, 5, 426, 0, 0, 947, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 947, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 955, 1, 0, 0, 0, 951, 955, 3, 650, 325, 0, 952, 955, 3, 438, 219, 0, 953, 955, 3, 440, 220, 0, 954, 896, 1, 0, 0, 0, 954, 897, 1, 0, 0, 0, 954, 898, 1, 0, 0, 0, 954, 899, 1, 0, 0, 0, 954, 900, 1, 0, 0, 0, 954, 901, 1, 0, 0, 0, 954, 902, 1, 0, 0, 0, 954, 903, 1, 0, 0, 0, 954, 904, 1, 0, 0, 0, 954, 905, 1, 0, 0, 0, 954, 906, 1, 0, 0, 0, 954, 907, 1, 0, 0, 0, 954, 908, 1, 0, 0, 0, 954, 909, 1, 0, 0, 0, 954, 910, 1, 0, 0, 0, 954, 911, 1, 0, 0, 0, 954, 912, 1, 0, 0, 0, 954, 913, 1, 0, 0, 0, 954, 914, 1, 0, 0, 0, 954, 915, 1, 0, 0, 0, 954, 916, 1, 0, 0, 0, 954, 917, 1, 0, 0, 0, 954, 918, 1, 0, 0, 0, 954, 919, 1, 0, 0, 0, 954, 920, 1, 0, 0, 0, 954, 921, 1, 0, 0, 0, 954, 922, 1, 0, 0, 0, 954, 923, 1, 0, 0, 0, 954, 924, 1, 0, 0, 0, 954, 925, 1, 0, 0, 0, 954, 926, 1, 0, 0, 0, 954, 927, 1, 0, 0, 0, 954, 928, 1, 0, 0, 0, 954, 929, 1, 0, 0, 0, 954, 930, 1, 0, 0, 0, 954, 931, 1, 0, 0, 0, 954, 932, 1, 0, 0, 0, 954, 933, 1, 0, 0, 0, 954, 934, 1, 0, 0, 0, 954, 935, 1, 0, 0, 0, 954, 936, 1, 0, 0, 0, 954, 937, 1, 0, 0, 0, 954, 944, 1, 0, 0, 0, 954, 951, 1, 0, 0, 0, 954, 952, 1, 0, 0, 0, 954, 953, 1, 0, 0, 0, 955, 29, 1, 0, 0, 0, 956, 957, 5, 151, 0, 0, 957, 958, 5, 117, 0, 0, 958, 31, 1, 0, 0, 0, 959, 960, 5, 151, 0, 0, 960, 961, 5, 216, 0, 0, 961, 962, 5, 117, 0, 0, 962, 33, 1, 0, 0, 0, 963, 964, 7, 4, 0, 0, 964, 35, 1, 0, 0, 0, 965, 966, 3, 662, 331, 0, 966, 967, 5, 284, 0, 0, 967, 37, 1, 0, 0, 0, 968, 969, 3, 664, 332, 0, 969, 970, 5, 284, 0, 0, 970, 39, 1, 0, 0, 0, 971, 972, 5, 321, 0, 0, 972, 973, 5, 17, 0, 0, 973, 974, 5, 92, 0, 0, 974, 41, 1, 0, 0, 0, 975, 977, 5, 58, 0, 0, 976, 978, 5, 273, 0, 0, 977, 976, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 981, 3, 70, 35, 0, 980, 982, 3, 32, 16, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 3, 474, 237, 0, 984, 986, 3, 50, 25, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 988, 1, 0, 0, 0, 987, 989, 3, 424, 212, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 992, 1, 0, 0, 0, 990, 991, 5, 196, 0, 0, 991, 993, 5, 426, 0, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 997, 1, 0, 0, 0, 994, 995, 5, 387, 0, 0, 995, 996, 5, 76, 0, 0, 996, 998, 3, 230, 115, 0, 997, 994, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1016, 1, 0, 0, 0, 999, 1000, 5, 58, 0, 0, 1000, 1001, 5, 273, 0, 0, 1001, 1003, 3, 70, 35, 0, 1002, 1004, 3, 32, 16, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1007, 3, 474, 237, 0, 1006, 1008, 3, 50, 25, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1013, 3, 44, 22, 0, 1010, 1011, 5, 387, 0, 0, 1011, 1012, 5, 76, 0, 0, 1012, 1014, 3, 230, 115, 0, 1013, 1010, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 1, 0, 0, 0, 1015, 975, 1, 0, 0, 0, 1015, 999, 1, 0, 0, 0, 1016, 43, 1, 0, 0, 0, 1017, 1018, 5, 370, 0, 0, 1018, 1019, 3, 472, 236, 0, 1019, 45, 1, 0, 0, 0, 1020, 1021, 5, 368, 0, 0, 1021, 1022, 3, 472, 236, 0, 1022, 47, 1, 0, 0, 0, 1023, 1024, 5, 101, 0, 0, 1024, 1026, 3, 70, 35, 0, 1025, 1027, 3, 30, 15, 0, 1026, 1025, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1030, 3, 472, 236, 0, 1029, 1031, 3, 34, 17, 0, 1030, 1029, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 49, 1, 0, 0, 0, 1032, 1033, 5, 47, 0, 0, 1033, 1034, 5, 426, 0, 0, 1034, 51, 1, 0, 0, 0, 1035, 1037, 5, 351, 0, 0, 1036, 1038, 5, 329, 0, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1045, 3, 624, 312, 0, 1040, 1041, 5, 46, 0, 0, 1041, 1042, 5, 399, 0, 0, 1042, 1043, 3, 254, 127, 0, 1043, 1044, 5, 400, 0, 0, 1044, 1046, 1, 0, 0, 0, 1045, 1040, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1048, 1, 0, 0, 0, 1047, 1049, 5, 135, 0, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 53, 1, 0, 0, 0, 1050, 1051, 5, 101, 0, 0, 1051, 1053, 5, 329, 0, 0, 1052, 1054, 3, 30, 15, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1057, 3, 478, 239, 0, 1056, 1058, 5, 255, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1060, 1, 0, 0, 0, 1059, 1061, 3, 14, 7, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 55, 1, 0, 0, 0, 1062, 1063, 5, 160, 0, 0, 1063, 1064, 5, 426, 0, 0, 1064, 1065, 5, 301, 0, 0, 1065, 1066, 5, 426, 0, 0, 1066, 57, 1, 0, 0, 0, 1067, 1070, 3, 638, 319, 0, 1068, 1069, 5, 395, 0, 0, 1069, 1071, 3, 638, 319, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1085, 1, 0, 0, 0, 1072, 1082, 3, 638, 319, 0, 1073, 1078, 5, 395, 0, 0, 1074, 1079, 5, 104, 0, 0, 1075, 1079, 5, 175, 0, 0, 1076, 1079, 5, 375, 0, 0, 1077, 1079, 3, 638, 319, 0, 1078, 1074, 1, 0, 0, 0, 1078, 1075, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1073, 1, 0, 0, 0, 1081, 1084, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1085, 1072, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 59, 1, 0, 0, 0, 1087, 1089, 3, 58, 29, 0, 1088, 1090, 3, 626, 313, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 61, 1, 0, 0, 0, 1091, 1093, 3, 476, 238, 0, 1092, 1094, 3, 626, 313, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1096, 1, 0, 0, 0, 1095, 1097, 3, 260, 130, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 63, 1, 0, 0, 0, 1098, 1121, 7, 5, 0, 0, 1099, 1101, 3, 70, 35, 0, 1100, 1102, 5, 122, 0, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 3, 472, 236, 0, 1104, 1122, 1, 0, 0, 0, 1105, 1107, 5, 69, 0, 0, 1106, 1108, 5, 122, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1122, 3, 472, 236, 0, 1110, 1112, 5, 141, 0, 0, 1111, 1113, 5, 122, 0, 0, 1112, 1111, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1122, 3, 556, 278, 0, 1115, 1118, 5, 138, 0, 0, 1116, 1118, 5, 122, 0, 0, 1117, 1115, 1, 0, 0, 0, 1117, 1116, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1122, 3, 62, 31, 0, 1120, 1122, 3, 62, 31, 0, 1121, 1099, 1, 0, 0, 0, 1121, 1105, 1, 0, 0, 0, 1121, 1110, 1, 0, 0, 0, 1121, 1117, 1, 0, 0, 0, 1121, 1120, 1, 0, 0, 0, 1122, 65, 1, 0, 0, 0, 1123, 1124, 5, 10, 0, 0, 1124, 1125, 5, 329, 0, 0, 1125, 1138, 3, 624, 312, 0, 1126, 1127, 5, 52, 0, 0, 1127, 1134, 5, 319, 0, 0, 1128, 1135, 5, 215, 0, 0, 1129, 1130, 5, 134, 0, 0, 1130, 1132, 5, 46, 0, 0, 1131, 1133, 3, 254, 127, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1135, 1, 0, 0, 0, 1134, 1128, 1, 0, 0, 0, 1134, 1129, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1139, 1, 0, 0, 0, 1136, 1137, 5, 33, 0, 0, 1137, 1139, 5, 204, 0, 0, 1138, 1126, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 67, 1, 0, 0, 0, 1140, 1141, 7, 6, 0, 0, 1141, 69, 1, 0, 0, 0, 1142, 1143, 7, 7, 0, 0, 1143, 71, 1, 0, 0, 0, 1144, 1145, 5, 308, 0, 0, 1145, 1148, 7, 8, 0, 0, 1146, 1147, 5, 184, 0, 0, 1147, 1149, 3, 194, 97, 0, 1148, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1328, 1, 0, 0, 0, 1150, 1152, 5, 308, 0, 0, 1151, 1153, 5, 122, 0, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1158, 5, 330, 0, 0, 1155, 1156, 3, 68, 34, 0, 1156, 1157, 3, 472, 236, 0, 1157, 1159, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 1, 0, 0, 0, 1160, 1162, 3, 74, 37, 0, 1161, 1160, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1328, 1, 0, 0, 0, 1163, 1164, 5, 308, 0, 0, 1164, 1168, 5, 379, 0, 0, 1165, 1166, 3, 68, 34, 0, 1166, 1167, 3, 472, 236, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1165, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1173, 1, 0, 0, 0, 1170, 1171, 5, 184, 0, 0, 1171, 1174, 3, 194, 97, 0, 1172, 1174, 3, 194, 97, 0, 1173, 1170, 1, 0, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1328, 1, 0, 0, 0, 1175, 1176, 5, 308, 0, 0, 1176, 1177, 5, 202, 0, 0, 1177, 1181, 5, 379, 0, 0, 1178, 1179, 3, 68, 34, 0, 1179, 1180, 3, 472, 236, 0, 1180, 1182, 1, 0, 0, 0, 1181, 1178, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1186, 1, 0, 0, 0, 1183, 1184, 5, 184, 0, 0, 1184, 1187, 3, 194, 97, 0, 1185, 1187, 3, 194, 97, 0, 1186, 1183, 1, 0, 0, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1328, 1, 0, 0, 0, 1188, 1190, 5, 308, 0, 0, 1189, 1191, 5, 315, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 46, 0, 0, 1193, 1194, 3, 68, 34, 0, 1194, 1198, 3, 476, 238, 0, 1195, 1196, 3, 68, 34, 0, 1196, 1197, 3, 472, 236, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1195, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1203, 1, 0, 0, 0, 1200, 1201, 5, 184, 0, 0, 1201, 1204, 3, 194, 97, 0, 1202, 1204, 3, 194, 97, 0, 1203, 1200, 1, 0, 0, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1328, 1, 0, 0, 0, 1205, 1206, 5, 308, 0, 0, 1206, 1209, 5, 142, 0, 0, 1207, 1208, 5, 184, 0, 0, 1208, 1210, 3, 556, 278, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1328, 1, 0, 0, 0, 1211, 1212, 5, 308, 0, 0, 1212, 1213, 5, 239, 0, 0, 1213, 1215, 3, 476, 238, 0, 1214, 1216, 3, 626, 313, 0, 1215, 1214, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1218, 1, 0, 0, 0, 1217, 1219, 3, 494, 247, 0, 1218, 1217, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1221, 1, 0, 0, 0, 1220, 1222, 3, 542, 271, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 1, 0, 0, 0, 1223, 1225, 3, 386, 193, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1328, 1, 0, 0, 0, 1226, 1227, 5, 308, 0, 0, 1227, 1233, 5, 58, 0, 0, 1228, 1229, 3, 70, 35, 0, 1229, 1230, 3, 472, 236, 0, 1230, 1234, 1, 0, 0, 0, 1231, 1232, 5, 329, 0, 0, 1232, 1234, 3, 478, 239, 0, 1233, 1228, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1328, 1, 0, 0, 0, 1235, 1236, 5, 308, 0, 0, 1236, 1237, 5, 329, 0, 0, 1237, 1241, 5, 122, 0, 0, 1238, 1239, 3, 68, 34, 0, 1239, 1240, 3, 472, 236, 0, 1240, 1242, 1, 0, 0, 0, 1241, 1238, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1244, 5, 184, 0, 0, 1244, 1246, 3, 194, 97, 0, 1245, 1247, 3, 626, 313, 0, 1246, 1245, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1328, 1, 0, 0, 0, 1248, 1249, 5, 308, 0, 0, 1249, 1250, 5, 332, 0, 0, 1250, 1254, 3, 478, 239, 0, 1251, 1252, 5, 399, 0, 0, 1252, 1253, 5, 426, 0, 0, 1253, 1255, 5, 400, 0, 0, 1254, 1251, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1328, 1, 0, 0, 0, 1256, 1257, 5, 308, 0, 0, 1257, 1269, 5, 191, 0, 0, 1258, 1259, 3, 70, 35, 0, 1259, 1261, 3, 472, 236, 0, 1260, 1262, 5, 122, 0, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1270, 1, 0, 0, 0, 1263, 1265, 3, 60, 30, 0, 1264, 1263, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1267, 1, 0, 0, 0, 1266, 1268, 5, 122, 0, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1258, 1, 0, 0, 0, 1269, 1264, 1, 0, 0, 0, 1270, 1328, 1, 0, 0, 0, 1271, 1272, 5, 308, 0, 0, 1272, 1299, 5, 50, 0, 0, 1273, 1274, 5, 51, 0, 0, 1274, 1275, 5, 405, 0, 0, 1275, 1300, 5, 431, 0, 0, 1276, 1277, 3, 70, 35, 0, 1277, 1278, 3, 472, 236, 0, 1278, 1283, 1, 0, 0, 0, 1279, 1281, 3, 60, 30, 0, 1280, 1279, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1276, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1283, 1285, 1, 0, 0, 0, 1284, 1286, 3, 406, 203, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1289, 3, 408, 204, 0, 1288, 1287, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1291, 1, 0, 0, 0, 1290, 1292, 3, 410, 205, 0, 1291, 1290, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1294, 1, 0, 0, 0, 1293, 1295, 3, 542, 271, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1298, 3, 386, 193, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1273, 1, 0, 0, 0, 1299, 1282, 1, 0, 0, 0, 1300, 1328, 1, 0, 0, 0, 1301, 1302, 5, 308, 0, 0, 1302, 1328, 5, 346, 0, 0, 1303, 1304, 5, 308, 0, 0, 1304, 1305, 5, 54, 0, 0, 1305, 1328, 5, 426, 0, 0, 1306, 1307, 5, 308, 0, 0, 1307, 1311, 5, 280, 0, 0, 1308, 1309, 5, 243, 0, 0, 1309, 1312, 3, 638, 319, 0, 1310, 1312, 5, 244, 0, 0, 1311, 1308, 1, 0, 0, 0, 1311, 1310, 1, 0, 0, 0, 1312, 1328, 1, 0, 0, 0, 1313, 1314, 5, 308, 0, 0, 1314, 1328, 5, 70, 0, 0, 1315, 1317, 5, 308, 0, 0, 1316, 1318, 5, 138, 0, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 7, 9, 0, 0, 1320, 1321, 5, 224, 0, 0, 1321, 1325, 3, 478, 239, 0, 1322, 1323, 3, 68, 34, 0, 1323, 1324, 3, 472, 236, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1322, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1328, 1, 0, 0, 0, 1327, 1144, 1, 0, 0, 0, 1327, 1150, 1, 0, 0, 0, 1327, 1163, 1, 0, 0, 0, 1327, 1175, 1, 0, 0, 0, 1327, 1188, 1, 0, 0, 0, 1327, 1205, 1, 0, 0, 0, 1327, 1211, 1, 0, 0, 0, 1327, 1226, 1, 0, 0, 0, 1327, 1235, 1, 0, 0, 0, 1327, 1248, 1, 0, 0, 0, 1327, 1256, 1, 0, 0, 0, 1327, 1271, 1, 0, 0, 0, 1327, 1301, 1, 0, 0, 0, 1327, 1303, 1, 0, 0, 0, 1327, 1306, 1, 0, 0, 0, 1327, 1313, 1, 0, 0, 0, 1327, 1315, 1, 0, 0, 0, 1328, 73, 1, 0, 0, 0, 1329, 1330, 5, 384, 0, 0, 1330, 1331, 3, 638, 319, 0, 1331, 1332, 5, 405, 0, 0, 1332, 1333, 5, 426, 0, 0, 1333, 1338, 1, 0, 0, 0, 1334, 1335, 5, 184, 0, 0, 1335, 1338, 3, 194, 97, 0, 1336, 1338, 3, 194, 97, 0, 1337, 1329, 1, 0, 0, 0, 1337, 1334, 1, 0, 0, 0, 1337, 1336, 1, 0, 0, 0, 1338, 75, 1, 0, 0, 0, 1339, 1340, 5, 190, 0, 0, 1340, 1341, 5, 329, 0, 0, 1341, 1342, 3, 624, 312, 0, 1342, 1343, 3, 80, 40, 0, 1343, 77, 1, 0, 0, 0, 1344, 1345, 5, 190, 0, 0, 1345, 1346, 3, 70, 35, 0, 1346, 1347, 3, 472, 236, 0, 1347, 1348, 3, 80, 40, 0, 1348, 79, 1, 0, 0, 0, 1349, 1350, 7, 10, 0, 0, 1350, 81, 1, 0, 0, 0, 1351, 1352, 5, 361, 0, 0, 1352, 1353, 5, 329, 0, 0, 1353, 1354, 3, 624, 312, 0, 1354, 83, 1, 0, 0, 0, 1355, 1356, 5, 361, 0, 0, 1356, 1357, 3, 70, 35, 0, 1357, 1358, 3, 472, 236, 0, 1358, 85, 1, 0, 0, 0, 1359, 1360, 5, 58, 0, 0, 1360, 1361, 5, 287, 0, 0, 1361, 1362, 3, 638, 319, 0, 1362, 87, 1, 0, 0, 0, 1363, 1364, 5, 101, 0, 0, 1364, 1365, 5, 287, 0, 0, 1365, 1366, 3, 638, 319, 0, 1366, 89, 1, 0, 0, 0, 1367, 1368, 5, 143, 0, 0, 1368, 1370, 3, 118, 59, 0, 1369, 1371, 3, 112, 56, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 5, 341, 0, 0, 1373, 1375, 3, 124, 62, 0, 1374, 1376, 3, 130, 65, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 91, 1, 0, 0, 0, 1377, 1379, 5, 283, 0, 0, 1378, 1380, 3, 132, 66, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1383, 3, 118, 59, 0, 1382, 1384, 3, 112, 56, 0, 1383, 1382, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 5, 139, 0, 0, 1386, 1387, 3, 124, 62, 0, 1387, 93, 1, 0, 0, 0, 1388, 1390, 5, 143, 0, 0, 1389, 1391, 5, 287, 0, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1397, 3, 638, 319, 0, 1393, 1394, 5, 397, 0, 0, 1394, 1396, 3, 638, 319, 0, 1395, 1393, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 1, 0, 0, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1401, 5, 341, 0, 0, 1401, 1403, 3, 124, 62, 0, 1402, 1404, 3, 136, 68, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 95, 1, 0, 0, 0, 1405, 1407, 5, 283, 0, 0, 1406, 1408, 3, 134, 67, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1410, 1, 0, 0, 0, 1409, 1411, 5, 287, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 3, 638, 319, 0, 1413, 1414, 5, 397, 0, 0, 1414, 1416, 3, 638, 319, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 139, 0, 0, 1421, 1422, 3, 124, 62, 0, 1422, 97, 1, 0, 0, 0, 1423, 1424, 5, 308, 0, 0, 1424, 1425, 5, 287, 0, 0, 1425, 1426, 5, 143, 0, 0, 1426, 1427, 3, 126, 63, 0, 1427, 99, 1, 0, 0, 0, 1428, 1429, 5, 308, 0, 0, 1429, 1430, 5, 288, 0, 0, 1430, 101, 1, 0, 0, 0, 1431, 1432, 5, 308, 0, 0, 1432, 1433, 5, 62, 0, 0, 1433, 1434, 5, 288, 0, 0, 1434, 103, 1, 0, 0, 0, 1435, 1436, 5, 304, 0, 0, 1436, 1440, 5, 287, 0, 0, 1437, 1441, 5, 7, 0, 0, 1438, 1441, 5, 213, 0, 0, 1439, 1441, 3, 638, 319, 0, 1440, 1437, 1, 0, 0, 0, 1440, 1438, 1, 0, 0, 0, 1440, 1439, 1, 0, 0, 0, 1441, 105, 1, 0, 0, 0, 1442, 1443, 5, 308, 0, 0, 1443, 1445, 5, 143, 0, 0, 1444, 1446, 3, 126, 63, 0, 1445, 1444, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1448, 5, 224, 0, 0, 1448, 1450, 3, 110, 55, 0, 1449, 1447, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 107, 1, 0, 0, 0, 1451, 1452, 5, 308, 0, 0, 1452, 1453, 5, 252, 0, 0, 1453, 1454, 3, 638, 319, 0, 1454, 109, 1, 0, 0, 0, 1455, 1458, 5, 7, 0, 0, 1456, 1458, 3, 116, 58, 0, 1457, 1455, 1, 0, 0, 0, 1457, 1456, 1, 0, 0, 0, 1458, 111, 1, 0, 0, 0, 1459, 1460, 5, 224, 0, 0, 1460, 1461, 3, 114, 57, 0, 1461, 113, 1, 0, 0, 0, 1462, 1463, 3, 70, 35, 0, 1463, 1464, 3, 472, 236, 0, 1464, 1474, 1, 0, 0, 0, 1465, 1467, 5, 329, 0, 0, 1466, 1465, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1474, 3, 624, 312, 0, 1469, 1470, 5, 366, 0, 0, 1470, 1474, 5, 426, 0, 0, 1471, 1472, 5, 303, 0, 0, 1472, 1474, 3, 638, 319, 0, 1473, 1462, 1, 0, 0, 0, 1473, 1466, 1, 0, 0, 0, 1473, 1469, 1, 0, 0, 0, 1473, 1471, 1, 0, 0, 0, 1474, 115, 1, 0, 0, 0, 1475, 1476, 3, 70, 35, 0, 1476, 1477, 3, 472, 236, 0, 1477, 1496, 1, 0, 0, 0, 1478, 1480, 5, 329, 0, 0, 1479, 1478, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1486, 3, 478, 239, 0, 1482, 1483, 5, 399, 0, 0, 1483, 1484, 3, 254, 127, 0, 1484, 1485, 5, 400, 0, 0, 1485, 1487, 1, 0, 0, 0, 1486, 1482, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1489, 1, 0, 0, 0, 1488, 1490, 3, 626, 313, 0, 1489, 1488, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1496, 1, 0, 0, 0, 1491, 1492, 5, 366, 0, 0, 1492, 1496, 5, 426, 0, 0, 1493, 1494, 5, 303, 0, 0, 1494, 1496, 3, 638, 319, 0, 1495, 1475, 1, 0, 0, 0, 1495, 1479, 1, 0, 0, 0, 1495, 1491, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 117, 1, 0, 0, 0, 1497, 1502, 3, 120, 60, 0, 1498, 1499, 5, 397, 0, 0, 1499, 1501, 3, 120, 60, 0, 1500, 1498, 1, 0, 0, 0, 1501, 1504, 1, 0, 0, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 119, 1, 0, 0, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1510, 3, 122, 61, 0, 1506, 1507, 5, 399, 0, 0, 1507, 1508, 3, 254, 127, 0, 1508, 1509, 5, 400, 0, 0, 1509, 1511, 1, 0, 0, 0, 1510, 1506, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 121, 1, 0, 0, 0, 1512, 1513, 7, 11, 0, 0, 1513, 123, 1, 0, 0, 0, 1514, 1519, 3, 126, 63, 0, 1515, 1516, 5, 397, 0, 0, 1516, 1518, 3, 126, 63, 0, 1517, 1515, 1, 0, 0, 0, 1518, 1521, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 125, 1, 0, 0, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1523, 5, 369, 0, 0, 1523, 1529, 3, 642, 321, 0, 1524, 1525, 5, 144, 0, 0, 1525, 1529, 3, 642, 321, 0, 1526, 1527, 5, 287, 0, 0, 1527, 1529, 3, 638, 319, 0, 1528, 1522, 1, 0, 0, 0, 1528, 1524, 1, 0, 0, 0, 1528, 1526, 1, 0, 0, 0, 1529, 127, 1, 0, 0, 0, 1530, 1531, 5, 369, 0, 0, 1531, 1536, 3, 642, 321, 0, 1532, 1533, 5, 287, 0, 0, 1533, 1536, 3, 638, 319, 0, 1534, 1536, 3, 638, 319, 0, 1535, 1530, 1, 0, 0, 0, 1535, 1532, 1, 0, 0, 0, 1535, 1534, 1, 0, 0, 0, 1536, 129, 1, 0, 0, 0, 1537, 1538, 5, 387, 0, 0, 1538, 1539, 5, 143, 0, 0, 1539, 1540, 5, 227, 0, 0, 1540, 131, 1, 0, 0, 0, 1541, 1542, 5, 143, 0, 0, 1542, 1543, 5, 227, 0, 0, 1543, 1544, 5, 134, 0, 0, 1544, 133, 1, 0, 0, 0, 1545, 1546, 5, 5, 0, 0, 1546, 1547, 5, 227, 0, 0, 1547, 1548, 5, 134, 0, 0, 1548, 135, 1, 0, 0, 0, 1549, 1550, 5, 387, 0, 0, 1550, 1551, 5, 5, 0, 0, 1551, 1552, 5, 227, 0, 0, 1552, 137, 1, 0, 0, 0, 1553, 1555, 5, 212, 0, 0, 1554, 1556, 5, 276, 0, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 5, 329, 0, 0, 1558, 1564, 3, 478, 239, 0, 1559, 1560, 7, 12, 0, 0, 1560, 1562, 5, 239, 0, 0, 1561, 1563, 3, 630, 315, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1565, 1, 0, 0, 0, 1564, 1559, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 139, 1, 0, 0, 0, 1566, 1571, 3, 142, 71, 0, 1567, 1568, 5, 397, 0, 0, 1568, 1570, 3, 142, 71, 0, 1569, 1567, 1, 0, 0, 0, 1570, 1573, 1, 0, 0, 0, 1571, 1569, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 141, 1, 0, 0, 0, 1573, 1571, 1, 0, 0, 0, 1574, 1575, 3, 144, 72, 0, 1575, 1576, 5, 426, 0, 0, 1576, 143, 1, 0, 0, 0, 1577, 1578, 7, 13, 0, 0, 1578, 145, 1, 0, 0, 0, 1579, 1581, 5, 58, 0, 0, 1580, 1582, 5, 333, 0, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 5, 141, 0, 0, 1584, 1585, 3, 554, 277, 0, 1585, 1586, 5, 17, 0, 0, 1586, 1589, 5, 426, 0, 0, 1587, 1588, 5, 370, 0, 0, 1588, 1590, 3, 140, 70, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 147, 1, 0, 0, 0, 1591, 1593, 5, 101, 0, 0, 1592, 1594, 5, 333, 0, 0, 1593, 1592, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1597, 5, 141, 0, 0, 1596, 1598, 3, 30, 15, 0, 1597, 1596, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 3, 556, 278, 0, 1600, 149, 1, 0, 0, 0, 1601, 1602, 5, 271, 0, 0, 1602, 1603, 7, 14, 0, 0, 1603, 151, 1, 0, 0, 0, 1604, 1605, 5, 58, 0, 0, 1605, 1606, 5, 333, 0, 0, 1606, 1607, 5, 194, 0, 0, 1607, 1608, 5, 432, 0, 0, 1608, 1610, 5, 399, 0, 0, 1609, 1611, 3, 248, 124, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 5, 400, 0, 0, 1613, 1614, 3, 580, 290, 0, 1614, 153, 1, 0, 0, 0, 1615, 1616, 5, 101, 0, 0, 1616, 1617, 5, 333, 0, 0, 1617, 1619, 5, 194, 0, 0, 1618, 1620, 3, 30, 15, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1622, 5, 432, 0, 0, 1622, 155, 1, 0, 0, 0, 1623, 1624, 5, 58, 0, 0, 1624, 1625, 5, 155, 0, 0, 1625, 1626, 3, 638, 319, 0, 1626, 1627, 5, 224, 0, 0, 1627, 1628, 5, 329, 0, 0, 1628, 1629, 3, 478, 239, 0, 1629, 1630, 3, 264, 132, 0, 1630, 1631, 5, 17, 0, 0, 1631, 1635, 5, 426, 0, 0, 1632, 1633, 5, 387, 0, 0, 1633, 1634, 5, 84, 0, 0, 1634, 1636, 5, 265, 0, 0, 1635, 1632, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1639, 1, 0, 0, 0, 1637, 1638, 5, 150, 0, 0, 1638, 1640, 3, 226, 113, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1644, 1, 0, 0, 0, 1641, 1642, 5, 154, 0, 0, 1642, 1643, 5, 329, 0, 0, 1643, 1645, 3, 478, 239, 0, 1644, 1641, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1649, 1, 0, 0, 0, 1646, 1647, 5, 238, 0, 0, 1647, 1648, 5, 32, 0, 0, 1648, 1650, 3, 264, 132, 0, 1649, 1646, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1655, 1, 0, 0, 0, 1651, 1653, 3, 222, 111, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1656, 3, 246, 123, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1658, 1, 0, 0, 0, 1657, 1659, 3, 424, 212, 0, 1658, 1657, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1661, 1, 0, 0, 0, 1660, 1662, 3, 224, 112, 0, 1661, 1660, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1665, 3, 196, 98, 0, 1664, 1663, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 157, 1, 0, 0, 0, 1666, 1667, 5, 101, 0, 0, 1667, 1669, 5, 155, 0, 0, 1668, 1670, 3, 30, 15, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1672, 3, 638, 319, 0, 1672, 1673, 5, 224, 0, 0, 1673, 1674, 3, 478, 239, 0, 1674, 159, 1, 0, 0, 0, 1675, 1678, 5, 58, 0, 0, 1676, 1677, 5, 228, 0, 0, 1677, 1679, 5, 278, 0, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1682, 5, 378, 0, 0, 1681, 1683, 3, 32, 16, 0, 1682, 1681, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1689, 3, 484, 242, 0, 1685, 1686, 5, 399, 0, 0, 1686, 1687, 3, 304, 152, 0, 1687, 1688, 5, 400, 0, 0, 1688, 1690, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1692, 1, 0, 0, 0, 1691, 1693, 3, 196, 98, 0, 1692, 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 1, 0, 0, 0, 1694, 1696, 3, 162, 81, 0, 1695, 1694, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1698, 1, 0, 0, 0, 1697, 1699, 3, 224, 112, 0, 1698, 1697, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 5, 17, 0, 0, 1701, 1702, 3, 380, 190, 0, 1702, 161, 1, 0, 0, 0, 1703, 1704, 5, 238, 0, 0, 1704, 1710, 5, 224, 0, 0, 1705, 1706, 5, 399, 0, 0, 1706, 1711, 3, 254, 127, 0, 1707, 1708, 5, 316, 0, 0, 1708, 1709, 5, 399, 0, 0, 1709, 1711, 3, 204, 102, 0, 1710, 1705, 1, 0, 0, 0, 1710, 1707, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 5, 400, 0, 0, 1713, 163, 1, 0, 0, 0, 1714, 1717, 3, 166, 83, 0, 1715, 1717, 3, 168, 84, 0, 1716, 1714, 1, 0, 0, 0, 1716, 1715, 1, 0, 0, 0, 1717, 165, 1, 0, 0, 0, 1718, 1719, 5, 42, 0, 0, 1719, 1720, 5, 224, 0, 0, 1720, 1721, 5, 399, 0, 0, 1721, 1722, 3, 254, 127, 0, 1722, 1723, 5, 400, 0, 0, 1723, 167, 1, 0, 0, 0, 1724, 1725, 3, 170, 85, 0, 1725, 1726, 3, 172, 86, 0, 1726, 169, 1, 0, 0, 0, 1727, 1728, 5, 98, 0, 0, 1728, 1729, 5, 224, 0, 0, 1729, 1730, 5, 399, 0, 0, 1730, 1731, 3, 254, 127, 0, 1731, 1732, 5, 400, 0, 0, 1732, 171, 1, 0, 0, 0, 1733, 1734, 5, 315, 0, 0, 1734, 1735, 5, 224, 0, 0, 1735, 1736, 5, 399, 0, 0, 1736, 1737, 3, 254, 127, 0, 1737, 1738, 5, 400, 0, 0, 1738, 173, 1, 0, 0, 0, 1739, 1740, 5, 101, 0, 0, 1740, 1742, 5, 378, 0, 0, 1741, 1743, 3, 30, 15, 0, 1742, 1741, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 3, 482, 241, 0, 1745, 175, 1, 0, 0, 0, 1746, 1747, 5, 58, 0, 0, 1747, 1748, 5, 202, 0, 0, 1748, 1750, 5, 378, 0, 0, 1749, 1751, 3, 32, 16, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 3, 484, 242, 0, 1753, 1755, 3, 38, 19, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1758, 3, 196, 98, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1760, 1, 0, 0, 0, 1759, 1761, 3, 162, 81, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 1, 0, 0, 0, 1762, 1764, 3, 164, 82, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1766, 1, 0, 0, 0, 1765, 1767, 3, 222, 111, 0, 1766, 1765, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1769, 1, 0, 0, 0, 1768, 1770, 3, 246, 123, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1773, 3, 424, 212, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1776, 3, 224, 112, 0, 1775, 1774, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 5, 17, 0, 0, 1778, 1779, 3, 380, 190, 0, 1779, 177, 1, 0, 0, 0, 1780, 1781, 5, 101, 0, 0, 1781, 1782, 5, 202, 0, 0, 1782, 1784, 5, 378, 0, 0, 1783, 1785, 3, 30, 15, 0, 1784, 1783, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 3, 482, 241, 0, 1787, 179, 1, 0, 0, 0, 1788, 1789, 5, 58, 0, 0, 1789, 1790, 5, 293, 0, 0, 1790, 1791, 5, 258, 0, 0, 1791, 1792, 3, 638, 319, 0, 1792, 1794, 3, 188, 94, 0, 1793, 1795, 3, 190, 95, 0, 1794, 1793, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1797, 1, 0, 0, 0, 1796, 1798, 3, 268, 134, 0, 1797, 1796, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 3, 192, 96, 0, 1800, 181, 1, 0, 0, 0, 1801, 1802, 5, 101, 0, 0, 1802, 1803, 5, 293, 0, 0, 1803, 1804, 5, 258, 0, 0, 1804, 1805, 3, 638, 319, 0, 1805, 183, 1, 0, 0, 0, 1806, 1807, 5, 9, 0, 0, 1807, 1808, 5, 293, 0, 0, 1808, 1809, 5, 258, 0, 0, 1809, 1810, 3, 638, 319, 0, 1810, 1811, 3, 186, 93, 0, 1811, 185, 1, 0, 0, 0, 1812, 1818, 3, 188, 94, 0, 1813, 1818, 3, 190, 95, 0, 1814, 1818, 3, 268, 134, 0, 1815, 1818, 3, 192, 96, 0, 1816, 1818, 5, 115, 0, 0, 1817, 1812, 1, 0, 0, 0, 1817, 1813, 1, 0, 0, 0, 1817, 1814, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1817, 1816, 1, 0, 0, 0, 1818, 187, 1, 0, 0, 0, 1819, 1820, 5, 59, 0, 0, 1820, 1835, 5, 426, 0, 0, 1821, 1823, 5, 111, 0, 0, 1822, 1824, 5, 431, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1832, 3, 578, 289, 0, 1826, 1830, 5, 20, 0, 0, 1827, 1828, 5, 223, 0, 0, 1828, 1830, 5, 32, 0, 0, 1829, 1826, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 5, 426, 0, 0, 1832, 1829, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1835, 1, 0, 0, 0, 1834, 1819, 1, 0, 0, 0, 1834, 1821, 1, 0, 0, 0, 1835, 189, 1, 0, 0, 0, 1836, 1837, 5, 116, 0, 0, 1837, 1838, 5, 17, 0, 0, 1838, 1839, 5, 426, 0, 0, 1839, 191, 1, 0, 0, 0, 1840, 1842, 5, 85, 0, 0, 1841, 1840, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 5, 17, 0, 0, 1844, 1845, 3, 2, 1, 0, 1845, 193, 1, 0, 0, 0, 1846, 1849, 3, 638, 319, 0, 1847, 1849, 5, 426, 0, 0, 1848, 1846, 1, 0, 0, 0, 1848, 1847, 1, 0, 0, 0, 1849, 195, 1, 0, 0, 0, 1850, 1851, 5, 47, 0, 0, 1851, 1852, 5, 426, 0, 0, 1852, 197, 1, 0, 0, 0, 1853, 1854, 5, 183, 0, 0, 1854, 1855, 5, 431, 0, 0, 1855, 199, 1, 0, 0, 0, 1856, 1857, 5, 238, 0, 0, 1857, 1866, 5, 32, 0, 0, 1858, 1861, 5, 399, 0, 0, 1859, 1862, 3, 202, 101, 0, 1860, 1862, 3, 254, 127, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1860, 1, 0, 0, 0, 1862, 1867, 1, 0, 0, 0, 1863, 1864, 5, 316, 0, 0, 1864, 1865, 5, 399, 0, 0, 1865, 1867, 3, 204, 102, 0, 1866, 1858, 1, 0, 0, 0, 1866, 1863, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1869, 5, 400, 0, 0, 1869, 201, 1, 0, 0, 0, 1870, 1875, 3, 316, 158, 0, 1871, 1872, 5, 397, 0, 0, 1872, 1874, 3, 316, 158, 0, 1873, 1871, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 203, 1, 0, 0, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1883, 3, 206, 103, 0, 1879, 1880, 5, 397, 0, 0, 1880, 1882, 3, 206, 103, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1885, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 205, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1886, 1905, 3, 256, 128, 0, 1887, 1892, 3, 666, 333, 0, 1888, 1892, 3, 668, 334, 0, 1889, 1892, 3, 672, 336, 0, 1890, 1892, 3, 674, 337, 0, 1891, 1887, 1, 0, 0, 0, 1891, 1888, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 5, 399, 0, 0, 1894, 1895, 3, 256, 128, 0, 1895, 1896, 5, 400, 0, 0, 1896, 1905, 1, 0, 0, 0, 1897, 1898, 7, 15, 0, 0, 1898, 1899, 5, 399, 0, 0, 1899, 1900, 5, 431, 0, 0, 1900, 1901, 5, 397, 0, 0, 1901, 1902, 3, 256, 128, 0, 1902, 1903, 5, 400, 0, 0, 1903, 1905, 1, 0, 0, 0, 1904, 1886, 1, 0, 0, 0, 1904, 1891, 1, 0, 0, 0, 1904, 1897, 1, 0, 0, 0, 1905, 207, 1, 0, 0, 0, 1906, 1907, 5, 42, 0, 0, 1907, 1908, 5, 32, 0, 0, 1908, 1909, 5, 399, 0, 0, 1909, 1910, 3, 254, 127, 0, 1910, 1917, 5, 400, 0, 0, 1911, 1912, 5, 315, 0, 0, 1912, 1913, 5, 32, 0, 0, 1913, 1914, 5, 399, 0, 0, 1914, 1915, 3, 262, 131, 0, 1915, 1916, 5, 400, 0, 0, 1916, 1918, 1, 0, 0, 0, 1917, 1911, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 5, 166, 0, 0, 1920, 1921, 5, 431, 0, 0, 1921, 1922, 5, 31, 0, 0, 1922, 209, 1, 0, 0, 0, 1923, 1924, 5, 310, 0, 0, 1924, 1925, 5, 32, 0, 0, 1925, 1926, 5, 399, 0, 0, 1926, 1927, 3, 254, 127, 0, 1927, 1928, 5, 400, 0, 0, 1928, 1929, 5, 224, 0, 0, 1929, 1930, 5, 399, 0, 0, 1930, 1931, 3, 290, 145, 0, 1931, 1933, 5, 400, 0, 0, 1932, 1934, 3, 40, 20, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 211, 1, 0, 0, 0, 1935, 1938, 3, 218, 109, 0, 1936, 1938, 3, 220, 110, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 213, 1, 0, 0, 0, 1939, 1940, 5, 266, 0, 0, 1940, 1941, 5, 426, 0, 0, 1941, 215, 1, 0, 0, 0, 1942, 1943, 5, 267, 0, 0, 1943, 1944, 5, 426, 0, 0, 1944, 217, 1, 0, 0, 0, 1945, 1946, 5, 291, 0, 0, 1946, 1947, 5, 137, 0, 0, 1947, 1948, 5, 301, 0, 0, 1948, 1952, 5, 426, 0, 0, 1949, 1950, 5, 387, 0, 0, 1950, 1951, 5, 302, 0, 0, 1951, 1953, 3, 226, 113, 0, 1952, 1949, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 219, 1, 0, 0, 0, 1954, 1955, 5, 291, 0, 0, 1955, 1956, 5, 137, 0, 0, 1956, 1958, 5, 87, 0, 0, 1957, 1959, 3, 236, 118, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1961, 1, 0, 0, 0, 1960, 1962, 3, 238, 119, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1965, 3, 240, 120, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1967, 1, 0, 0, 0, 1966, 1968, 3, 242, 121, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1970, 1, 0, 0, 0, 1969, 1971, 3, 244, 122, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 221, 1, 0, 0, 0, 1972, 1975, 3, 220, 110, 0, 1973, 1975, 3, 218, 109, 0, 1974, 1972, 1, 0, 0, 0, 1974, 1973, 1, 0, 0, 0, 1975, 223, 1, 0, 0, 0, 1976, 1977, 5, 332, 0, 0, 1977, 1978, 3, 226, 113, 0, 1978, 225, 1, 0, 0, 0, 1979, 1980, 5, 399, 0, 0, 1980, 1981, 3, 228, 114, 0, 1981, 1982, 5, 400, 0, 0, 1982, 227, 1, 0, 0, 0, 1983, 1993, 3, 232, 116, 0, 1984, 1989, 5, 426, 0, 0, 1985, 1986, 5, 397, 0, 0, 1986, 1988, 5, 426, 0, 0, 1987, 1985, 1, 0, 0, 0, 1988, 1991, 1, 0, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1993, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1992, 1983, 1, 0, 0, 0, 1992, 1984, 1, 0, 0, 0, 1993, 229, 1, 0, 0, 0, 1994, 1995, 5, 399, 0, 0, 1995, 1996, 3, 232, 116, 0, 1996, 1997, 5, 400, 0, 0, 1997, 231, 1, 0, 0, 0, 1998, 2003, 3, 234, 117, 0, 1999, 2000, 5, 397, 0, 0, 2000, 2002, 3, 234, 117, 0, 2001, 1999, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 233, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2006, 2007, 5, 426, 0, 0, 2007, 2008, 5, 405, 0, 0, 2008, 2009, 5, 426, 0, 0, 2009, 235, 1, 0, 0, 0, 2010, 2011, 5, 127, 0, 0, 2011, 2012, 5, 334, 0, 0, 2012, 2013, 5, 32, 0, 0, 2013, 2017, 5, 426, 0, 0, 2014, 2015, 5, 110, 0, 0, 2015, 2016, 5, 32, 0, 0, 2016, 2018, 5, 426, 0, 0, 2017, 2014, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 237, 1, 0, 0, 0, 2019, 2020, 5, 44, 0, 0, 2020, 2021, 5, 169, 0, 0, 2021, 2022, 5, 334, 0, 0, 2022, 2023, 5, 32, 0, 0, 2023, 2024, 5, 426, 0, 0, 2024, 239, 1, 0, 0, 0, 2025, 2026, 5, 198, 0, 0, 2026, 2027, 5, 174, 0, 0, 2027, 2028, 5, 334, 0, 0, 2028, 2029, 5, 32, 0, 0, 2029, 2030, 5, 426, 0, 0, 2030, 241, 1, 0, 0, 0, 2031, 2032, 5, 186, 0, 0, 2032, 2033, 5, 334, 0, 0, 2033, 2034, 5, 32, 0, 0, 2034, 2035, 5, 426, 0, 0, 2035, 243, 1, 0, 0, 0, 2036, 2037, 5, 219, 0, 0, 2037, 2038, 5, 85, 0, 0, 2038, 2039, 5, 17, 0, 0, 2039, 2040, 5, 426, 0, 0, 2040, 245, 1, 0, 0, 0, 2041, 2042, 5, 321, 0, 0, 2042, 2043, 5, 17, 0, 0, 2043, 2044, 5, 160, 0, 0, 2044, 2045, 5, 426, 0, 0, 2045, 2046, 5, 233, 0, 0, 2046, 2051, 5, 426, 0, 0, 2047, 2048, 5, 159, 0, 0, 2048, 2049, 5, 426, 0, 0, 2049, 2050, 5, 232, 0, 0, 2050, 2052, 5, 426, 0, 0, 2051, 2047, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2083, 1, 0, 0, 0, 2053, 2054, 5, 321, 0, 0, 2054, 2055, 5, 32, 0, 0, 2055, 2059, 5, 426, 0, 0, 2056, 2057, 5, 387, 0, 0, 2057, 2058, 5, 302, 0, 0, 2058, 2060, 3, 226, 113, 0, 2059, 2056, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2064, 1, 0, 0, 0, 2061, 2062, 5, 321, 0, 0, 2062, 2063, 5, 17, 0, 0, 2063, 2065, 3, 638, 319, 0, 2064, 2061, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2083, 1, 0, 0, 0, 2066, 2067, 5, 321, 0, 0, 2067, 2068, 5, 32, 0, 0, 2068, 2072, 3, 638, 319, 0, 2069, 2070, 5, 387, 0, 0, 2070, 2071, 5, 302, 0, 0, 2071, 2073, 3, 226, 113, 0, 2072, 2069, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2077, 1, 0, 0, 0, 2074, 2075, 5, 321, 0, 0, 2075, 2076, 5, 17, 0, 0, 2076, 2078, 3, 638, 319, 0, 2077, 2074, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2083, 1, 0, 0, 0, 2079, 2080, 5, 321, 0, 0, 2080, 2081, 5, 17, 0, 0, 2081, 2083, 3, 638, 319, 0, 2082, 2041, 1, 0, 0, 0, 2082, 2053, 1, 0, 0, 0, 2082, 2066, 1, 0, 0, 0, 2082, 2079, 1, 0, 0, 0, 2083, 247, 1, 0, 0, 0, 2084, 2089, 3, 310, 155, 0, 2085, 2086, 5, 397, 0, 0, 2086, 2088, 3, 310, 155, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 249, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2092, 2097, 3, 312, 156, 0, 2093, 2094, 5, 397, 0, 0, 2094, 2096, 3, 312, 156, 0, 2095, 2093, 1, 0, 0, 0, 2096, 2099, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 251, 1, 0, 0, 0, 2099, 2097, 1, 0, 0, 0, 2100, 2105, 3, 340, 170, 0, 2101, 2102, 5, 397, 0, 0, 2102, 2104, 3, 340, 170, 0, 2103, 2101, 1, 0, 0, 0, 2104, 2107, 1, 0, 0, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 253, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2113, 3, 256, 128, 0, 2109, 2110, 5, 397, 0, 0, 2110, 2112, 3, 256, 128, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 255, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 3, 682, 341, 0, 2117, 2119, 4, 128, 0, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2117, 1, 0, 0, 0, 2119, 257, 1, 0, 0, 0, 2120, 2121, 3, 638, 319, 0, 2121, 259, 1, 0, 0, 0, 2122, 2132, 3, 256, 128, 0, 2123, 2128, 5, 395, 0, 0, 2124, 2129, 5, 104, 0, 0, 2125, 2129, 5, 175, 0, 0, 2126, 2129, 5, 375, 0, 0, 2127, 2129, 3, 638, 319, 0, 2128, 2124, 1, 0, 0, 0, 2128, 2125, 1, 0, 0, 0, 2128, 2126, 1, 0, 0, 0, 2128, 2127, 1, 0, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2123, 1, 0, 0, 0, 2131, 2134, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 261, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2135, 2140, 3, 302, 151, 0, 2136, 2137, 5, 397, 0, 0, 2137, 2139, 3, 302, 151, 0, 2138, 2136, 1, 0, 0, 0, 2139, 2142, 1, 0, 0, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 263, 1, 0, 0, 0, 2142, 2140, 1, 0, 0, 0, 2143, 2144, 5, 399, 0, 0, 2144, 2145, 3, 254, 127, 0, 2145, 2146, 5, 400, 0, 0, 2146, 265, 1, 0, 0, 0, 2147, 2149, 3, 268, 134, 0, 2148, 2150, 3, 270, 135, 0, 2149, 2148, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2153, 1, 0, 0, 0, 2151, 2153, 3, 272, 136, 0, 2152, 2147, 1, 0, 0, 0, 2152, 2151, 1, 0, 0, 0, 2153, 267, 1, 0, 0, 0, 2154, 2157, 3, 662, 331, 0, 2155, 2157, 3, 664, 332, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2157, 269, 1, 0, 0, 0, 2158, 2159, 7, 16, 0, 0, 2159, 271, 1, 0, 0, 0, 2160, 2164, 5, 109, 0, 0, 2161, 2162, 5, 216, 0, 0, 2162, 2164, 5, 109, 0, 0, 2163, 2160, 1, 0, 0, 0, 2163, 2161, 1, 0, 0, 0, 2164, 273, 1, 0, 0, 0, 2165, 2166, 7, 17, 0, 0, 2166, 275, 1, 0, 0, 0, 2167, 2168, 5, 55, 0, 0, 2168, 2170, 3, 638, 319, 0, 2169, 2167, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2173, 3, 280, 140, 0, 2172, 2174, 3, 336, 168, 0, 2173, 2172, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 277, 1, 0, 0, 0, 2175, 2176, 5, 55, 0, 0, 2176, 2177, 3, 638, 319, 0, 2177, 2179, 3, 280, 140, 0, 2178, 2180, 3, 338, 169, 0, 2179, 2178, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 279, 1, 0, 0, 0, 2181, 2184, 3, 282, 141, 0, 2182, 2184, 3, 284, 142, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2182, 1, 0, 0, 0, 2184, 281, 1, 0, 0, 0, 2185, 2186, 3, 334, 167, 0, 2186, 2187, 3, 264, 132, 0, 2187, 283, 1, 0, 0, 0, 2188, 2189, 5, 40, 0, 0, 2189, 2190, 5, 399, 0, 0, 2190, 2191, 3, 580, 290, 0, 2191, 2192, 5, 400, 0, 0, 2192, 285, 1, 0, 0, 0, 2193, 2194, 5, 55, 0, 0, 2194, 2196, 3, 638, 319, 0, 2195, 2193, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 5, 136, 0, 0, 2198, 2199, 5, 173, 0, 0, 2199, 2200, 3, 264, 132, 0, 2200, 2201, 5, 269, 0, 0, 2201, 2202, 3, 478, 239, 0, 2202, 2204, 3, 264, 132, 0, 2203, 2205, 3, 336, 168, 0, 2204, 2203, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 287, 1, 0, 0, 0, 2206, 2207, 5, 55, 0, 0, 2207, 2208, 3, 638, 319, 0, 2208, 2209, 5, 136, 0, 0, 2209, 2210, 5, 173, 0, 0, 2210, 2211, 3, 264, 132, 0, 2211, 2212, 5, 269, 0, 0, 2212, 2213, 3, 478, 239, 0, 2213, 2215, 3, 264, 132, 0, 2214, 2216, 3, 338, 169, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 289, 1, 0, 0, 0, 2217, 2220, 3, 296, 148, 0, 2218, 2220, 3, 292, 146, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2218, 1, 0, 0, 0, 2220, 291, 1, 0, 0, 0, 2221, 2226, 3, 294, 147, 0, 2222, 2223, 5, 397, 0, 0, 2223, 2225, 3, 294, 147, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2228, 1, 0, 0, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 293, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2229, 2230, 5, 399, 0, 0, 2230, 2231, 3, 296, 148, 0, 2231, 2232, 5, 400, 0, 0, 2232, 295, 1, 0, 0, 0, 2233, 2238, 3, 572, 286, 0, 2234, 2235, 5, 397, 0, 0, 2235, 2237, 3, 572, 286, 0, 2236, 2234, 1, 0, 0, 0, 2237, 2240, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 297, 1, 0, 0, 0, 2240, 2238, 1, 0, 0, 0, 2241, 2242, 7, 18, 0, 0, 2242, 299, 1, 0, 0, 0, 2243, 2244, 5, 220, 0, 0, 2244, 2245, 7, 19, 0, 0, 2245, 301, 1, 0, 0, 0, 2246, 2248, 3, 256, 128, 0, 2247, 2249, 3, 298, 149, 0, 2248, 2247, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2251, 1, 0, 0, 0, 2250, 2252, 3, 300, 150, 0, 2251, 2250, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 303, 1, 0, 0, 0, 2253, 2258, 3, 306, 153, 0, 2254, 2255, 5, 397, 0, 0, 2255, 2257, 3, 306, 153, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2260, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 305, 1, 0, 0, 0, 2260, 2258, 1, 0, 0, 0, 2261, 2264, 3, 258, 129, 0, 2262, 2263, 5, 47, 0, 0, 2263, 2265, 5, 426, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 307, 1, 0, 0, 0, 2266, 2269, 3, 256, 128, 0, 2267, 2269, 3, 580, 290, 0, 2268, 2266, 1, 0, 0, 0, 2268, 2267, 1, 0, 0, 0, 2269, 2271, 1, 0, 0, 0, 2270, 2272, 3, 298, 149, 0, 2271, 2270, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2274, 1, 0, 0, 0, 2273, 2275, 3, 300, 150, 0, 2274, 2273, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 309, 1, 0, 0, 0, 2276, 2277, 3, 258, 129, 0, 2277, 2280, 3, 342, 171, 0, 2278, 2279, 5, 47, 0, 0, 2279, 2281, 5, 426, 0, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 311, 1, 0, 0, 0, 2282, 2285, 3, 314, 157, 0, 2283, 2285, 3, 316, 158, 0, 2284, 2282, 1, 0, 0, 0, 2284, 2283, 1, 0, 0, 0, 2285, 313, 1, 0, 0, 0, 2286, 2289, 3, 286, 143, 0, 2287, 2289, 3, 276, 138, 0, 2288, 2286, 1, 0, 0, 0, 2288, 2287, 1, 0, 0, 0, 2289, 315, 1, 0, 0, 0, 2290, 2291, 3, 258, 129, 0, 2291, 2293, 3, 342, 171, 0, 2292, 2294, 3, 318, 159, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2297, 1, 0, 0, 0, 2295, 2296, 5, 47, 0, 0, 2296, 2298, 5, 426, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 317, 1, 0, 0, 0, 2299, 2302, 3, 320, 160, 0, 2300, 2302, 3, 322, 161, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2300, 1, 0, 0, 0, 2302, 319, 1, 0, 0, 0, 2303, 2304, 5, 55, 0, 0, 2304, 2306, 3, 638, 319, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2308, 5, 269, 0, 0, 2308, 2309, 3, 478, 239, 0, 2309, 2310, 5, 399, 0, 0, 2310, 2311, 3, 256, 128, 0, 2311, 2313, 5, 400, 0, 0, 2312, 2314, 3, 336, 168, 0, 2313, 2312, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 321, 1, 0, 0, 0, 2315, 2316, 5, 55, 0, 0, 2316, 2318, 3, 638, 319, 0, 2317, 2315, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2321, 3, 330, 165, 0, 2320, 2322, 3, 336, 168, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 323, 1, 0, 0, 0, 2323, 2326, 3, 326, 163, 0, 2324, 2326, 3, 328, 164, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2324, 1, 0, 0, 0, 2326, 325, 1, 0, 0, 0, 2327, 2328, 5, 55, 0, 0, 2328, 2330, 3, 638, 319, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 5, 269, 0, 0, 2332, 2333, 3, 478, 239, 0, 2333, 2334, 5, 399, 0, 0, 2334, 2335, 3, 256, 128, 0, 2335, 2337, 5, 400, 0, 0, 2336, 2338, 3, 338, 169, 0, 2337, 2336, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 327, 1, 0, 0, 0, 2339, 2340, 5, 55, 0, 0, 2340, 2342, 3, 638, 319, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2345, 3, 330, 165, 0, 2344, 2346, 3, 338, 169, 0, 2345, 2344, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 329, 1, 0, 0, 0, 2347, 2348, 5, 216, 0, 0, 2348, 2354, 5, 219, 0, 0, 2349, 2350, 5, 83, 0, 0, 2350, 2354, 3, 332, 166, 0, 2351, 2354, 3, 284, 142, 0, 2352, 2354, 3, 334, 167, 0, 2353, 2347, 1, 0, 0, 0, 2353, 2349, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 331, 1, 0, 0, 0, 2355, 2359, 3, 572, 286, 0, 2356, 2359, 3, 550, 275, 0, 2357, 2359, 3, 560, 280, 0, 2358, 2355, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2357, 1, 0, 0, 0, 2359, 333, 1, 0, 0, 0, 2360, 2361, 5, 251, 0, 0, 2361, 2364, 5, 173, 0, 0, 2362, 2364, 5, 358, 0, 0, 2363, 2360, 1, 0, 0, 0, 2363, 2362, 1, 0, 0, 0, 2364, 335, 1, 0, 0, 0, 2365, 2367, 3, 266, 133, 0, 2366, 2368, 3, 274, 137, 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 337, 1, 0, 0, 0, 2369, 2371, 3, 266, 133, 0, 2370, 2372, 3, 274, 137, 0, 2371, 2370, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 339, 1, 0, 0, 0, 2373, 2374, 3, 258, 129, 0, 2374, 2375, 5, 396, 0, 0, 2375, 2378, 3, 342, 171, 0, 2376, 2377, 5, 47, 0, 0, 2377, 2379, 5, 426, 0, 0, 2378, 2376, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 341, 1, 0, 0, 0, 2380, 2381, 3, 346, 173, 0, 2381, 343, 1, 0, 0, 0, 2382, 2387, 3, 342, 171, 0, 2383, 2384, 5, 397, 0, 0, 2384, 2386, 3, 342, 171, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2389, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 345, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2390, 2396, 3, 348, 174, 0, 2391, 2396, 3, 350, 175, 0, 2392, 2396, 3, 352, 176, 0, 2393, 2396, 3, 354, 177, 0, 2394, 2396, 3, 356, 178, 0, 2395, 2390, 1, 0, 0, 0, 2395, 2391, 1, 0, 0, 0, 2395, 2392, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2394, 1, 0, 0, 0, 2396, 347, 1, 0, 0, 0, 2397, 2435, 5, 340, 0, 0, 2398, 2435, 5, 311, 0, 0, 2399, 2435, 5, 162, 0, 0, 2400, 2435, 5, 163, 0, 0, 2401, 2435, 5, 26, 0, 0, 2402, 2435, 5, 28, 0, 0, 2403, 2435, 5, 131, 0, 0, 2404, 2435, 5, 264, 0, 0, 2405, 2407, 5, 100, 0, 0, 2406, 2408, 5, 248, 0, 0, 2407, 2406, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2435, 1, 0, 0, 0, 2409, 2435, 5, 71, 0, 0, 2410, 2435, 5, 72, 0, 0, 2411, 2435, 5, 337, 0, 0, 2412, 2435, 5, 338, 0, 0, 2413, 2414, 5, 337, 0, 0, 2414, 2415, 5, 387, 0, 0, 2415, 2416, 5, 188, 0, 0, 2416, 2417, 5, 336, 0, 0, 2417, 2435, 5, 394, 0, 0, 2418, 2435, 5, 323, 0, 0, 2419, 2435, 5, 27, 0, 0, 2420, 2428, 3, 680, 340, 0, 2421, 2422, 5, 399, 0, 0, 2422, 2425, 5, 431, 0, 0, 2423, 2424, 5, 397, 0, 0, 2424, 2426, 5, 431, 0, 0, 2425, 2423, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2429, 5, 400, 0, 0, 2428, 2421, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2435, 1, 0, 0, 0, 2430, 2431, 7, 20, 0, 0, 2431, 2432, 5, 399, 0, 0, 2432, 2433, 5, 431, 0, 0, 2433, 2435, 5, 400, 0, 0, 2434, 2397, 1, 0, 0, 0, 2434, 2398, 1, 0, 0, 0, 2434, 2399, 1, 0, 0, 0, 2434, 2400, 1, 0, 0, 0, 2434, 2401, 1, 0, 0, 0, 2434, 2402, 1, 0, 0, 0, 2434, 2403, 1, 0, 0, 0, 2434, 2404, 1, 0, 0, 0, 2434, 2405, 1, 0, 0, 0, 2434, 2409, 1, 0, 0, 0, 2434, 2410, 1, 0, 0, 0, 2434, 2411, 1, 0, 0, 0, 2434, 2412, 1, 0, 0, 0, 2434, 2413, 1, 0, 0, 0, 2434, 2418, 1, 0, 0, 0, 2434, 2419, 1, 0, 0, 0, 2434, 2420, 1, 0, 0, 0, 2434, 2430, 1, 0, 0, 0, 2435, 349, 1, 0, 0, 0, 2436, 2437, 5, 16, 0, 0, 2437, 2438, 5, 409, 0, 0, 2438, 2439, 3, 346, 173, 0, 2439, 2440, 5, 411, 0, 0, 2440, 351, 1, 0, 0, 0, 2441, 2442, 5, 324, 0, 0, 2442, 2443, 5, 409, 0, 0, 2443, 2444, 3, 252, 126, 0, 2444, 2445, 5, 411, 0, 0, 2445, 353, 1, 0, 0, 0, 2446, 2447, 5, 198, 0, 0, 2447, 2448, 5, 409, 0, 0, 2448, 2449, 3, 348, 174, 0, 2449, 2450, 5, 397, 0, 0, 2450, 2451, 3, 346, 173, 0, 2451, 2452, 5, 411, 0, 0, 2452, 355, 1, 0, 0, 0, 2453, 2454, 5, 357, 0, 0, 2454, 2455, 5, 409, 0, 0, 2455, 2456, 3, 344, 172, 0, 2456, 2457, 5, 411, 0, 0, 2457, 357, 1, 0, 0, 0, 2458, 2460, 7, 21, 0, 0, 2459, 2461, 7, 22, 0, 0, 2460, 2459, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 359, 1, 0, 0, 0, 2462, 2464, 3, 364, 182, 0, 2463, 2462, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2466, 3, 362, 181, 0, 2466, 361, 1, 0, 0, 0, 2467, 2470, 3, 368, 184, 0, 2468, 2470, 3, 372, 186, 0, 2469, 2467, 1, 0, 0, 0, 2469, 2468, 1, 0, 0, 0, 2470, 363, 1, 0, 0, 0, 2471, 2472, 5, 387, 0, 0, 2472, 2477, 3, 366, 183, 0, 2473, 2474, 5, 397, 0, 0, 2474, 2476, 3, 366, 183, 0, 2475, 2473, 1, 0, 0, 0, 2476, 2479, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 365, 1, 0, 0, 0, 2479, 2477, 1, 0, 0, 0, 2480, 2485, 3, 638, 319, 0, 2481, 2482, 5, 399, 0, 0, 2482, 2483, 3, 254, 127, 0, 2483, 2484, 5, 400, 0, 0, 2484, 2486, 1, 0, 0, 0, 2485, 2481, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2488, 5, 17, 0, 0, 2488, 2489, 5, 399, 0, 0, 2489, 2490, 3, 360, 180, 0, 2490, 2491, 5, 400, 0, 0, 2491, 367, 1, 0, 0, 0, 2492, 2498, 3, 370, 185, 0, 2493, 2494, 3, 358, 179, 0, 2494, 2495, 3, 370, 185, 0, 2495, 2497, 1, 0, 0, 0, 2496, 2493, 1, 0, 0, 0, 2497, 2500, 1, 0, 0, 0, 2498, 2496, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 369, 1, 0, 0, 0, 2500, 2498, 1, 0, 0, 0, 2501, 2502, 3, 448, 224, 0, 2502, 2503, 3, 382, 191, 0, 2503, 2505, 3, 500, 250, 0, 2504, 2506, 3, 462, 231, 0, 2505, 2504, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2508, 1, 0, 0, 0, 2507, 2509, 3, 494, 247, 0, 2508, 2507, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2511, 1, 0, 0, 0, 2510, 2512, 3, 520, 260, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2515, 3, 528, 264, 0, 2514, 2513, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2517, 1, 0, 0, 0, 2516, 2518, 3, 512, 256, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2520, 1, 0, 0, 0, 2519, 2521, 3, 530, 265, 0, 2520, 2519, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 1, 0, 0, 0, 2522, 2524, 3, 542, 271, 0, 2523, 2522, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2526, 1, 0, 0, 0, 2525, 2527, 3, 544, 272, 0, 2526, 2525, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2529, 1, 0, 0, 0, 2528, 2530, 3, 546, 273, 0, 2529, 2528, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2532, 1, 0, 0, 0, 2531, 2533, 3, 548, 274, 0, 2532, 2531, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 1, 0, 0, 0, 2534, 2536, 3, 386, 193, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2573, 1, 0, 0, 0, 2537, 2538, 3, 448, 224, 0, 2538, 2540, 3, 500, 250, 0, 2539, 2541, 3, 462, 231, 0, 2540, 2539, 1, 0, 0, 0, 2540, 2541, 1, 0, 0, 0, 2541, 2543, 1, 0, 0, 0, 2542, 2544, 3, 494, 247, 0, 2543, 2542, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2547, 3, 520, 260, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2550, 3, 528, 264, 0, 2549, 2548, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 3, 512, 256, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2556, 3, 530, 265, 0, 2555, 2554, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 1, 0, 0, 0, 2557, 2559, 3, 542, 271, 0, 2558, 2557, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2561, 1, 0, 0, 0, 2560, 2562, 3, 544, 272, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 1, 0, 0, 0, 2563, 2565, 3, 546, 273, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2567, 1, 0, 0, 0, 2566, 2568, 3, 548, 274, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2570, 1, 0, 0, 0, 2569, 2571, 3, 386, 193, 0, 2570, 2569, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2501, 1, 0, 0, 0, 2572, 2537, 1, 0, 0, 0, 2573, 371, 1, 0, 0, 0, 2574, 2575, 3, 382, 191, 0, 2575, 2576, 3, 376, 188, 0, 2576, 2579, 1, 0, 0, 0, 2577, 2579, 3, 376, 188, 0, 2578, 2574, 1, 0, 0, 0, 2578, 2577, 1, 0, 0, 0, 2579, 373, 1, 0, 0, 0, 2580, 2582, 3, 500, 250, 0, 2581, 2583, 3, 448, 224, 0, 2582, 2581, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2586, 3, 494, 247, 0, 2585, 2584, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2588, 1, 0, 0, 0, 2587, 2589, 3, 520, 260, 0, 2588, 2587, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 528, 264, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2594, 1, 0, 0, 0, 2593, 2595, 3, 512, 256, 0, 2594, 2593, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2598, 3, 530, 265, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2605, 1, 0, 0, 0, 2599, 2600, 5, 399, 0, 0, 2600, 2601, 3, 376, 188, 0, 2601, 2602, 5, 400, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2605, 3, 496, 248, 0, 2604, 2580, 1, 0, 0, 0, 2604, 2599, 1, 0, 0, 0, 2604, 2603, 1, 0, 0, 0, 2605, 375, 1, 0, 0, 0, 2606, 2608, 3, 374, 187, 0, 2607, 2609, 3, 378, 189, 0, 2608, 2607, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2611, 1, 0, 0, 0, 2610, 2612, 3, 542, 271, 0, 2611, 2610, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2614, 1, 0, 0, 0, 2613, 2615, 3, 544, 272, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 1, 0, 0, 0, 2616, 2618, 3, 546, 273, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2620, 1, 0, 0, 0, 2619, 2621, 3, 548, 274, 0, 2620, 2619, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2623, 1, 0, 0, 0, 2622, 2624, 3, 386, 193, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 377, 1, 0, 0, 0, 2625, 2626, 3, 358, 179, 0, 2626, 2627, 3, 374, 187, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2625, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 379, 1, 0, 0, 0, 2632, 2634, 3, 364, 182, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 3, 376, 188, 0, 2636, 381, 1, 0, 0, 0, 2637, 2654, 5, 161, 0, 0, 2638, 2639, 5, 235, 0, 0, 2639, 2641, 3, 384, 192, 0, 2640, 2642, 3, 32, 16, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2655, 1, 0, 0, 0, 2643, 2645, 5, 166, 0, 0, 2644, 2646, 5, 329, 0, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2652, 3, 624, 312, 0, 2648, 2649, 5, 399, 0, 0, 2649, 2650, 3, 254, 127, 0, 2650, 2651, 5, 400, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2648, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2655, 1, 0, 0, 0, 2654, 2638, 1, 0, 0, 0, 2654, 2643, 1, 0, 0, 0, 2655, 383, 1, 0, 0, 0, 2656, 2658, 5, 188, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 5, 93, 0, 0, 2660, 2662, 5, 426, 0, 0, 2661, 2663, 3, 222, 111, 0, 2662, 2661, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 246, 123, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2670, 1, 0, 0, 0, 2667, 2668, 5, 329, 0, 0, 2668, 2670, 3, 624, 312, 0, 2669, 2657, 1, 0, 0, 0, 2669, 2667, 1, 0, 0, 0, 2670, 385, 1, 0, 0, 0, 2671, 2680, 5, 185, 0, 0, 2672, 2673, 5, 431, 0, 0, 2673, 2675, 5, 397, 0, 0, 2674, 2672, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2681, 5, 431, 0, 0, 2677, 2678, 5, 431, 0, 0, 2678, 2679, 5, 223, 0, 0, 2679, 2681, 5, 431, 0, 0, 2680, 2674, 1, 0, 0, 0, 2680, 2677, 1, 0, 0, 0, 2681, 387, 1, 0, 0, 0, 2682, 2683, 3, 256, 128, 0, 2683, 2684, 5, 405, 0, 0, 2684, 2685, 3, 390, 195, 0, 2685, 389, 1, 0, 0, 0, 2686, 2689, 5, 83, 0, 0, 2687, 2689, 3, 590, 295, 0, 2688, 2686, 1, 0, 0, 0, 2688, 2687, 1, 0, 0, 0, 2689, 391, 1, 0, 0, 0, 2690, 2691, 5, 304, 0, 0, 2691, 2696, 3, 388, 194, 0, 2692, 2693, 5, 397, 0, 0, 2693, 2695, 3, 388, 194, 0, 2694, 2692, 1, 0, 0, 0, 2695, 2698, 1, 0, 0, 0, 2696, 2694, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 393, 1, 0, 0, 0, 2698, 2696, 1, 0, 0, 0, 2699, 2700, 5, 318, 0, 0, 2700, 2709, 5, 344, 0, 0, 2701, 2706, 3, 396, 198, 0, 2702, 2703, 5, 397, 0, 0, 2703, 2705, 3, 396, 198, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2708, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2710, 1, 0, 0, 0, 2708, 2706, 1, 0, 0, 0, 2709, 2701, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2723, 1, 0, 0, 0, 2711, 2713, 5, 48, 0, 0, 2712, 2714, 5, 389, 0, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2723, 1, 0, 0, 0, 2715, 2717, 5, 289, 0, 0, 2716, 2718, 5, 389, 0, 0, 2717, 2716, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2723, 1, 0, 0, 0, 2719, 2720, 5, 304, 0, 0, 2720, 2721, 5, 22, 0, 0, 2721, 2723, 7, 23, 0, 0, 2722, 2699, 1, 0, 0, 0, 2722, 2711, 1, 0, 0, 0, 2722, 2715, 1, 0, 0, 0, 2722, 2719, 1, 0, 0, 0, 2723, 395, 1, 0, 0, 0, 2724, 2725, 5, 168, 0, 0, 2725, 2726, 5, 182, 0, 0, 2726, 2730, 5, 312, 0, 0, 2727, 2728, 5, 261, 0, 0, 2728, 2730, 7, 24, 0, 0, 2729, 2724, 1, 0, 0, 0, 2729, 2727, 1, 0, 0, 0, 2730, 397, 1, 0, 0, 0, 2731, 2734, 3, 402, 201, 0, 2732, 2734, 3, 404, 202, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2732, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2739, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2740, 3, 400, 200, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 399, 1, 0, 0, 0, 2741, 2742, 5, 383, 0, 0, 2742, 2743, 5, 216, 0, 0, 2743, 2746, 5, 201, 0, 0, 2744, 2745, 5, 11, 0, 0, 2745, 2747, 3, 580, 290, 0, 2746, 2744, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 5, 335, 0, 0, 2749, 2751, 5, 161, 0, 0, 2750, 2752, 3, 264, 132, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2754, 5, 374, 0, 0, 2754, 2755, 3, 538, 269, 0, 2755, 401, 1, 0, 0, 0, 2756, 2757, 5, 383, 0, 0, 2757, 2758, 5, 201, 0, 0, 2758, 2759, 5, 11, 0, 0, 2759, 2760, 3, 580, 290, 0, 2760, 2764, 5, 335, 0, 0, 2761, 2762, 5, 365, 0, 0, 2762, 2765, 3, 392, 196, 0, 2763, 2765, 5, 86, 0, 0, 2764, 2761, 1, 0, 0, 0, 2764, 2763, 1, 0, 0, 0, 2765, 403, 1, 0, 0, 0, 2766, 2767, 5, 383, 0, 0, 2767, 2768, 5, 201, 0, 0, 2768, 2772, 5, 335, 0, 0, 2769, 2770, 5, 365, 0, 0, 2770, 2773, 3, 392, 196, 0, 2771, 2773, 5, 86, 0, 0, 2772, 2769, 1, 0, 0, 0, 2772, 2771, 1, 0, 0, 0, 2773, 405, 1, 0, 0, 0, 2774, 2775, 5, 246, 0, 0, 2775, 2776, 5, 426, 0, 0, 2776, 407, 1, 0, 0, 0, 2777, 2778, 5, 352, 0, 0, 2778, 2779, 5, 426, 0, 0, 2779, 409, 1, 0, 0, 0, 2780, 2781, 5, 320, 0, 0, 2781, 2782, 5, 426, 0, 0, 2782, 411, 1, 0, 0, 0, 2783, 2814, 5, 9, 0, 0, 2784, 2785, 5, 329, 0, 0, 2785, 2786, 3, 478, 239, 0, 2786, 2787, 3, 414, 207, 0, 2787, 2815, 1, 0, 0, 0, 2788, 2789, 5, 378, 0, 0, 2789, 2791, 3, 482, 241, 0, 2790, 2792, 5, 17, 0, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 3, 418, 209, 0, 2794, 2815, 1, 0, 0, 0, 2795, 2796, 5, 202, 0, 0, 2796, 2797, 5, 378, 0, 0, 2797, 2801, 3, 482, 241, 0, 2798, 2802, 3, 36, 18, 0, 2799, 2802, 3, 38, 19, 0, 2800, 2802, 5, 265, 0, 0, 2801, 2798, 1, 0, 0, 0, 2801, 2799, 1, 0, 0, 0, 2801, 2800, 1, 0, 0, 0, 2802, 2815, 1, 0, 0, 0, 2803, 2804, 3, 70, 35, 0, 2804, 2805, 3, 420, 210, 0, 2805, 2815, 1, 0, 0, 0, 2806, 2807, 5, 69, 0, 0, 2807, 2815, 3, 422, 211, 0, 2808, 2809, 5, 155, 0, 0, 2809, 2810, 3, 638, 319, 0, 2810, 2811, 5, 224, 0, 0, 2811, 2812, 3, 624, 312, 0, 2812, 2813, 5, 265, 0, 0, 2813, 2815, 1, 0, 0, 0, 2814, 2784, 1, 0, 0, 0, 2814, 2788, 1, 0, 0, 0, 2814, 2795, 1, 0, 0, 0, 2814, 2803, 1, 0, 0, 0, 2814, 2806, 1, 0, 0, 0, 2814, 2808, 1, 0, 0, 0, 2815, 413, 1, 0, 0, 0, 2816, 2817, 5, 274, 0, 0, 2817, 2818, 5, 341, 0, 0, 2818, 2906, 3, 480, 240, 0, 2819, 2820, 5, 102, 0, 0, 2820, 2906, 5, 239, 0, 0, 2821, 2906, 3, 426, 213, 0, 2822, 2824, 5, 4, 0, 0, 2823, 2825, 3, 32, 16, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2830, 1, 0, 0, 0, 2826, 2828, 3, 626, 313, 0, 2827, 2829, 3, 424, 212, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2831, 1, 0, 0, 0, 2830, 2826, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2830, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2906, 1, 0, 0, 0, 2834, 2838, 5, 342, 0, 0, 2835, 2837, 3, 626, 313, 0, 2836, 2835, 1, 0, 0, 0, 2837, 2840, 1, 0, 0, 0, 2838, 2836, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2906, 1, 0, 0, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2845, 5, 15, 0, 0, 2842, 2844, 3, 626, 313, 0, 2843, 2842, 1, 0, 0, 0, 2844, 2847, 1, 0, 0, 0, 2845, 2843, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2906, 1, 0, 0, 0, 2847, 2845, 1, 0, 0, 0, 2848, 2852, 5, 353, 0, 0, 2849, 2851, 3, 626, 313, 0, 2850, 2849, 1, 0, 0, 0, 2851, 2854, 1, 0, 0, 0, 2852, 2850, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2906, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2855, 2856, 5, 304, 0, 0, 2856, 2857, 5, 332, 0, 0, 2857, 2906, 3, 226, 113, 0, 2858, 2859, 5, 363, 0, 0, 2859, 2861, 5, 332, 0, 0, 2860, 2862, 3, 30, 15, 0, 2861, 2860, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2863, 1, 0, 0, 0, 2863, 2906, 3, 226, 113, 0, 2864, 2906, 3, 210, 105, 0, 2865, 2868, 5, 216, 0, 0, 2866, 2869, 5, 310, 0, 0, 2867, 2869, 3, 40, 20, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 2906, 1, 0, 0, 0, 2870, 2871, 5, 113, 0, 0, 2871, 2872, 3, 626, 313, 0, 2872, 2873, 5, 387, 0, 0, 2873, 2874, 5, 329, 0, 0, 2874, 2875, 3, 478, 239, 0, 2875, 2906, 1, 0, 0, 0, 2876, 2877, 5, 237, 0, 0, 2877, 2878, 5, 45, 0, 0, 2878, 2879, 5, 399, 0, 0, 2879, 2880, 3, 310, 155, 0, 2880, 2881, 5, 400, 0, 0, 2881, 2906, 1, 0, 0, 0, 2882, 2883, 5, 101, 0, 0, 2883, 2884, 5, 55, 0, 0, 2884, 2906, 3, 638, 319, 0, 2885, 2888, 5, 4, 0, 0, 2886, 2889, 3, 288, 144, 0, 2887, 2889, 3, 278, 139, 0, 2888, 2886, 1, 0, 0, 0, 2888, 2887, 1, 0, 0, 0, 2889, 2906, 1, 0, 0, 0, 2890, 2892, 3, 626, 313, 0, 2891, 2890, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2906, 3, 416, 208, 0, 2894, 2895, 5, 304, 0, 0, 2895, 2896, 5, 236, 0, 0, 2896, 2906, 3, 126, 63, 0, 2897, 2898, 5, 304, 0, 0, 2898, 2899, 5, 237, 0, 0, 2899, 2900, 5, 316, 0, 0, 2900, 2901, 5, 399, 0, 0, 2901, 2902, 3, 204, 102, 0, 2902, 2903, 5, 400, 0, 0, 2903, 2906, 1, 0, 0, 0, 2904, 2906, 3, 430, 215, 0, 2905, 2816, 1, 0, 0, 0, 2905, 2819, 1, 0, 0, 0, 2905, 2821, 1, 0, 0, 0, 2905, 2822, 1, 0, 0, 0, 2905, 2834, 1, 0, 0, 0, 2905, 2841, 1, 0, 0, 0, 2905, 2848, 1, 0, 0, 0, 2905, 2855, 1, 0, 0, 0, 2905, 2858, 1, 0, 0, 0, 2905, 2864, 1, 0, 0, 0, 2905, 2865, 1, 0, 0, 0, 2905, 2870, 1, 0, 0, 0, 2905, 2876, 1, 0, 0, 0, 2905, 2882, 1, 0, 0, 0, 2905, 2885, 1, 0, 0, 0, 2905, 2891, 1, 0, 0, 0, 2905, 2894, 1, 0, 0, 0, 2905, 2897, 1, 0, 0, 0, 2905, 2904, 1, 0, 0, 0, 2906, 415, 1, 0, 0, 0, 2907, 2908, 5, 304, 0, 0, 2908, 2909, 5, 129, 0, 0, 2909, 3040, 3, 432, 216, 0, 2910, 2911, 5, 304, 0, 0, 2911, 2912, 5, 189, 0, 0, 2912, 3040, 5, 426, 0, 0, 2913, 3040, 5, 53, 0, 0, 2914, 2924, 5, 304, 0, 0, 2915, 2916, 5, 301, 0, 0, 2916, 2920, 5, 426, 0, 0, 2917, 2918, 5, 387, 0, 0, 2918, 2919, 5, 302, 0, 0, 2919, 2921, 3, 226, 113, 0, 2920, 2917, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2925, 1, 0, 0, 0, 2922, 2923, 5, 302, 0, 0, 2923, 2925, 3, 226, 113, 0, 2924, 2915, 1, 0, 0, 0, 2924, 2922, 1, 0, 0, 0, 2925, 3040, 1, 0, 0, 0, 2926, 2927, 5, 363, 0, 0, 2927, 2928, 5, 302, 0, 0, 2928, 3040, 3, 226, 113, 0, 2929, 2930, 5, 274, 0, 0, 2930, 2931, 5, 341, 0, 0, 2931, 3040, 3, 626, 313, 0, 2932, 2933, 5, 166, 0, 0, 2933, 2934, 5, 431, 0, 0, 2934, 3040, 5, 31, 0, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 310, 0, 0, 2937, 2938, 5, 189, 0, 0, 2938, 2939, 5, 399, 0, 0, 2939, 2944, 3, 428, 214, 0, 2940, 2941, 5, 397, 0, 0, 2941, 2943, 3, 428, 214, 0, 2942, 2940, 1, 0, 0, 0, 2943, 2946, 1, 0, 0, 0, 2944, 2942, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2947, 1, 0, 0, 0, 2946, 2944, 1, 0, 0, 0, 2947, 2948, 5, 400, 0, 0, 2948, 3040, 1, 0, 0, 0, 2949, 2950, 5, 216, 0, 0, 2950, 3040, 7, 25, 0, 0, 2951, 3040, 3, 208, 104, 0, 2952, 2953, 5, 49, 0, 0, 2953, 2956, 5, 426, 0, 0, 2954, 2955, 5, 11, 0, 0, 2955, 2957, 5, 380, 0, 0, 2956, 2954, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 2962, 1, 0, 0, 0, 2958, 2959, 5, 42, 0, 0, 2959, 2960, 5, 166, 0, 0, 2960, 2961, 5, 431, 0, 0, 2961, 2963, 5, 31, 0, 0, 2962, 2958, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2966, 3, 542, 271, 0, 2965, 2964, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 2968, 1, 0, 0, 0, 2967, 2969, 3, 406, 203, 0, 2968, 2967, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2974, 1, 0, 0, 0, 2970, 2971, 5, 387, 0, 0, 2971, 2972, 5, 235, 0, 0, 2972, 2973, 5, 332, 0, 0, 2973, 2975, 3, 226, 113, 0, 2974, 2970, 1, 0, 0, 0, 2974, 2975, 1, 0, 0, 0, 2975, 3040, 1, 0, 0, 0, 2976, 2977, 5, 365, 0, 0, 2977, 2978, 5, 319, 0, 0, 2978, 2980, 5, 134, 0, 0, 2979, 2981, 5, 45, 0, 0, 2980, 2979, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2983, 3, 256, 128, 0, 2983, 2984, 5, 304, 0, 0, 2984, 2987, 3, 226, 113, 0, 2985, 2986, 5, 47, 0, 0, 2986, 2988, 5, 426, 0, 0, 2987, 2985, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 3040, 1, 0, 0, 0, 2989, 2990, 5, 365, 0, 0, 2990, 2991, 5, 319, 0, 0, 2991, 2992, 5, 304, 0, 0, 2992, 3040, 3, 226, 113, 0, 2993, 2995, 5, 38, 0, 0, 2994, 2996, 5, 45, 0, 0, 2995, 2994, 1, 0, 0, 0, 2995, 2996, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 3, 256, 128, 0, 2998, 2999, 3, 258, 129, 0, 2999, 3001, 3, 342, 171, 0, 3000, 3002, 3, 324, 162, 0, 3001, 3000, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3005, 1, 0, 0, 0, 3003, 3004, 5, 47, 0, 0, 3004, 3006, 5, 426, 0, 0, 3005, 3003, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3010, 1, 0, 0, 0, 3007, 3011, 5, 130, 0, 0, 3008, 3009, 5, 6, 0, 0, 3009, 3011, 3, 638, 319, 0, 3010, 3007, 1, 0, 0, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3013, 1, 0, 0, 0, 3012, 3014, 3, 34, 17, 0, 3013, 3012, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3040, 1, 0, 0, 0, 3015, 3018, 5, 4, 0, 0, 3016, 3018, 5, 278, 0, 0, 3017, 3015, 1, 0, 0, 0, 3017, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3020, 5, 46, 0, 0, 3020, 3021, 5, 399, 0, 0, 3021, 3022, 3, 248, 124, 0, 3022, 3024, 5, 400, 0, 0, 3023, 3025, 3, 34, 17, 0, 3024, 3023, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3040, 1, 0, 0, 0, 3026, 3027, 5, 365, 0, 0, 3027, 3029, 5, 46, 0, 0, 3028, 3030, 3, 34, 17, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3040, 1, 0, 0, 0, 3031, 3037, 3, 268, 134, 0, 3032, 3034, 5, 218, 0, 0, 3033, 3035, 5, 34, 0, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3038, 1, 0, 0, 0, 3036, 3038, 5, 222, 0, 0, 3037, 3032, 1, 0, 0, 0, 3037, 3036, 1, 0, 0, 0, 3038, 3040, 1, 0, 0, 0, 3039, 2907, 1, 0, 0, 0, 3039, 2910, 1, 0, 0, 0, 3039, 2913, 1, 0, 0, 0, 3039, 2914, 1, 0, 0, 0, 3039, 2926, 1, 0, 0, 0, 3039, 2929, 1, 0, 0, 0, 3039, 2932, 1, 0, 0, 0, 3039, 2935, 1, 0, 0, 0, 3039, 2949, 1, 0, 0, 0, 3039, 2951, 1, 0, 0, 0, 3039, 2952, 1, 0, 0, 0, 3039, 2976, 1, 0, 0, 0, 3039, 2989, 1, 0, 0, 0, 3039, 2993, 1, 0, 0, 0, 3039, 3017, 1, 0, 0, 0, 3039, 3026, 1, 0, 0, 0, 3039, 3031, 1, 0, 0, 0, 3040, 417, 1, 0, 0, 0, 3041, 3042, 5, 304, 0, 0, 3042, 3043, 5, 332, 0, 0, 3043, 3068, 3, 226, 113, 0, 3044, 3045, 5, 363, 0, 0, 3045, 3047, 5, 332, 0, 0, 3046, 3048, 3, 30, 15, 0, 3047, 3046, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3068, 3, 226, 113, 0, 3050, 3051, 5, 274, 0, 0, 3051, 3052, 5, 341, 0, 0, 3052, 3068, 3, 480, 240, 0, 3053, 3055, 5, 4, 0, 0, 3054, 3056, 3, 32, 16, 0, 3055, 3054, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3061, 1, 0, 0, 0, 3057, 3059, 3, 626, 313, 0, 3058, 3060, 3, 424, 212, 0, 3059, 3058, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 3062, 1, 0, 0, 0, 3061, 3057, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3068, 1, 0, 0, 0, 3065, 3068, 3, 426, 213, 0, 3066, 3068, 3, 380, 190, 0, 3067, 3041, 1, 0, 0, 0, 3067, 3044, 1, 0, 0, 0, 3067, 3050, 1, 0, 0, 0, 3067, 3053, 1, 0, 0, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3066, 1, 0, 0, 0, 3068, 419, 1, 0, 0, 0, 3069, 3070, 3, 472, 236, 0, 3070, 3071, 5, 304, 0, 0, 3071, 3072, 5, 76, 0, 0, 3072, 3073, 3, 230, 115, 0, 3073, 3085, 1, 0, 0, 0, 3074, 3075, 3, 472, 236, 0, 3075, 3076, 5, 304, 0, 0, 3076, 3077, 5, 236, 0, 0, 3077, 3078, 3, 128, 64, 0, 3078, 3085, 1, 0, 0, 0, 3079, 3080, 3, 472, 236, 0, 3080, 3081, 5, 304, 0, 0, 3081, 3082, 7, 26, 0, 0, 3082, 3083, 5, 426, 0, 0, 3083, 3085, 1, 0, 0, 0, 3084, 3069, 1, 0, 0, 0, 3084, 3074, 1, 0, 0, 0, 3084, 3079, 1, 0, 0, 0, 3085, 421, 1, 0, 0, 0, 3086, 3087, 3, 472, 236, 0, 3087, 3088, 5, 304, 0, 0, 3088, 3089, 5, 77, 0, 0, 3089, 3090, 3, 230, 115, 0, 3090, 3102, 1, 0, 0, 0, 3091, 3092, 3, 472, 236, 0, 3092, 3093, 5, 304, 0, 0, 3093, 3094, 5, 236, 0, 0, 3094, 3095, 3, 128, 64, 0, 3095, 3102, 1, 0, 0, 0, 3096, 3097, 3, 472, 236, 0, 3097, 3098, 5, 304, 0, 0, 3098, 3099, 5, 367, 0, 0, 3099, 3100, 5, 426, 0, 0, 3100, 3102, 1, 0, 0, 0, 3101, 3086, 1, 0, 0, 0, 3101, 3091, 1, 0, 0, 0, 3101, 3096, 1, 0, 0, 0, 3102, 423, 1, 0, 0, 0, 3103, 3104, 5, 189, 0, 0, 3104, 3105, 5, 426, 0, 0, 3105, 425, 1, 0, 0, 0, 3106, 3108, 5, 101, 0, 0, 3107, 3109, 3, 30, 15, 0, 3108, 3107, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3111, 5, 237, 0, 0, 3111, 3117, 3, 630, 315, 0, 3112, 3113, 5, 397, 0, 0, 3113, 3114, 5, 237, 0, 0, 3114, 3116, 3, 630, 315, 0, 3115, 3112, 1, 0, 0, 0, 3116, 3119, 1, 0, 0, 0, 3117, 3115, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3122, 1, 0, 0, 0, 3119, 3117, 1, 0, 0, 0, 3120, 3121, 5, 152, 0, 0, 3121, 3123, 5, 254, 0, 0, 3122, 3120, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3125, 1, 0, 0, 0, 3124, 3126, 5, 255, 0, 0, 3125, 3124, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3128, 1, 0, 0, 0, 3127, 3129, 3, 14, 7, 0, 3128, 3127, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 427, 1, 0, 0, 0, 3130, 3133, 3, 572, 286, 0, 3131, 3133, 3, 294, 147, 0, 3132, 3130, 1, 0, 0, 0, 3132, 3131, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 5, 405, 0, 0, 3135, 3136, 5, 426, 0, 0, 3136, 429, 1, 0, 0, 0, 3137, 3147, 5, 115, 0, 0, 3138, 3139, 5, 289, 0, 0, 3139, 3140, 5, 399, 0, 0, 3140, 3148, 7, 27, 0, 0, 3141, 3142, 5, 118, 0, 0, 3142, 3143, 5, 399, 0, 0, 3143, 3148, 5, 426, 0, 0, 3144, 3145, 5, 306, 0, 0, 3145, 3146, 5, 399, 0, 0, 3146, 3148, 5, 431, 0, 0, 3147, 3138, 1, 0, 0, 0, 3147, 3141, 1, 0, 0, 0, 3147, 3144, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 400, 0, 0, 3150, 431, 1, 0, 0, 0, 3151, 3152, 5, 160, 0, 0, 3152, 3153, 5, 426, 0, 0, 3153, 3154, 5, 233, 0, 0, 3154, 3155, 5, 426, 0, 0, 3155, 3156, 5, 301, 0, 0, 3156, 3161, 5, 426, 0, 0, 3157, 3158, 5, 159, 0, 0, 3158, 3159, 5, 426, 0, 0, 3159, 3160, 5, 232, 0, 0, 3160, 3162, 5, 426, 0, 0, 3161, 3157, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3165, 1, 0, 0, 0, 3163, 3165, 3, 638, 319, 0, 3164, 3151, 1, 0, 0, 0, 3164, 3163, 1, 0, 0, 0, 3165, 433, 1, 0, 0, 0, 3166, 3167, 5, 184, 0, 0, 3167, 3176, 5, 128, 0, 0, 3168, 3169, 5, 184, 0, 0, 3169, 3170, 5, 128, 0, 0, 3170, 3171, 3, 638, 319, 0, 3171, 3172, 5, 426, 0, 0, 3172, 3176, 1, 0, 0, 0, 3173, 3174, 5, 184, 0, 0, 3174, 3176, 3, 478, 239, 0, 3175, 3166, 1, 0, 0, 0, 3175, 3168, 1, 0, 0, 0, 3175, 3173, 1, 0, 0, 0, 3176, 435, 1, 0, 0, 0, 3177, 3179, 5, 58, 0, 0, 3178, 3180, 5, 333, 0, 0, 3179, 3178, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3182, 1, 0, 0, 0, 3181, 3183, 5, 345, 0, 0, 3182, 3181, 1, 0, 0, 0, 3182, 3183, 1, 0, 0, 0, 3183, 3185, 1, 0, 0, 0, 3184, 3186, 5, 123, 0, 0, 3185, 3184, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3189, 5, 329, 0, 0, 3188, 3190, 3, 32, 16, 0, 3189, 3188, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3248, 3, 480, 240, 0, 3192, 3194, 3, 434, 217, 0, 3193, 3195, 3, 200, 100, 0, 3194, 3193, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3197, 1, 0, 0, 0, 3196, 3198, 3, 222, 111, 0, 3197, 3196, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3200, 1, 0, 0, 0, 3199, 3201, 3, 246, 123, 0, 3200, 3199, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 1, 0, 0, 0, 3202, 3204, 3, 424, 212, 0, 3203, 3202, 1, 0, 0, 0, 3203, 3204, 1, 0, 0, 0, 3204, 3206, 1, 0, 0, 0, 3205, 3207, 3, 224, 112, 0, 3206, 3205, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3209, 1, 0, 0, 0, 3208, 3210, 3, 198, 99, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3249, 1, 0, 0, 0, 3211, 3212, 5, 399, 0, 0, 3212, 3213, 3, 250, 125, 0, 3213, 3214, 5, 400, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3211, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3218, 1, 0, 0, 0, 3217, 3219, 3, 196, 98, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3221, 1, 0, 0, 0, 3220, 3222, 3, 200, 100, 0, 3221, 3220, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 1, 0, 0, 0, 3223, 3225, 3, 208, 104, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3227, 1, 0, 0, 0, 3226, 3228, 3, 210, 105, 0, 3227, 3226, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3230, 1, 0, 0, 0, 3229, 3231, 3, 222, 111, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3233, 1, 0, 0, 0, 3232, 3234, 3, 246, 123, 0, 3233, 3232, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3236, 1, 0, 0, 0, 3235, 3237, 3, 424, 212, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3239, 1, 0, 0, 0, 3238, 3240, 3, 224, 112, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3242, 1, 0, 0, 0, 3241, 3243, 3, 198, 99, 0, 3242, 3241, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3246, 1, 0, 0, 0, 3244, 3245, 5, 17, 0, 0, 3245, 3247, 3, 380, 190, 0, 3246, 3244, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3192, 1, 0, 0, 0, 3248, 3215, 1, 0, 0, 0, 3249, 3313, 1, 0, 0, 0, 3250, 3251, 5, 58, 0, 0, 3251, 3252, 5, 195, 0, 0, 3252, 3254, 5, 329, 0, 0, 3253, 3255, 3, 32, 16, 0, 3254, 3253, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3310, 3, 480, 240, 0, 3257, 3259, 3, 434, 217, 0, 3258, 3260, 3, 222, 111, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 1, 0, 0, 0, 3261, 3263, 3, 246, 123, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3266, 3, 424, 212, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 3, 224, 112, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3272, 3, 198, 99, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3311, 1, 0, 0, 0, 3273, 3274, 5, 399, 0, 0, 3274, 3275, 3, 250, 125, 0, 3275, 3276, 5, 400, 0, 0, 3276, 3278, 1, 0, 0, 0, 3277, 3273, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3280, 1, 0, 0, 0, 3279, 3281, 3, 196, 98, 0, 3280, 3279, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3283, 1, 0, 0, 0, 3282, 3284, 3, 200, 100, 0, 3283, 3282, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3286, 1, 0, 0, 0, 3285, 3287, 3, 208, 104, 0, 3286, 3285, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3289, 1, 0, 0, 0, 3288, 3290, 3, 210, 105, 0, 3289, 3288, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3292, 1, 0, 0, 0, 3291, 3293, 3, 222, 111, 0, 3292, 3291, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3295, 1, 0, 0, 0, 3294, 3296, 3, 246, 123, 0, 3295, 3294, 1, 0, 0, 0, 3295, 3296, 1, 0, 0, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3299, 3, 424, 212, 0, 3298, 3297, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3301, 1, 0, 0, 0, 3300, 3302, 3, 224, 112, 0, 3301, 3300, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3304, 1, 0, 0, 0, 3303, 3305, 3, 198, 99, 0, 3304, 3303, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3308, 1, 0, 0, 0, 3306, 3307, 5, 17, 0, 0, 3307, 3309, 3, 380, 190, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3257, 1, 0, 0, 0, 3310, 3277, 1, 0, 0, 0, 3311, 3313, 1, 0, 0, 0, 3312, 3177, 1, 0, 0, 0, 3312, 3250, 1, 0, 0, 0, 3313, 437, 1, 0, 0, 0, 3314, 3315, 5, 58, 0, 0, 3315, 3317, 5, 69, 0, 0, 3316, 3318, 3, 32, 16, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3322, 3, 638, 319, 0, 3320, 3321, 5, 352, 0, 0, 3321, 3323, 5, 426, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3325, 5, 367, 0, 0, 3325, 3327, 5, 426, 0, 0, 3326, 3324, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3330, 1, 0, 0, 0, 3328, 3329, 5, 47, 0, 0, 3329, 3331, 5, 426, 0, 0, 3330, 3328, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3335, 1, 0, 0, 0, 3332, 3333, 5, 387, 0, 0, 3333, 3334, 5, 77, 0, 0, 3334, 3336, 3, 230, 115, 0, 3335, 3332, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 439, 1, 0, 0, 0, 3337, 3338, 5, 101, 0, 0, 3338, 3340, 5, 69, 0, 0, 3339, 3341, 3, 30, 15, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 3, 638, 319, 0, 3343, 441, 1, 0, 0, 0, 3344, 3345, 3, 638, 319, 0, 3345, 3346, 5, 395, 0, 0, 3346, 3348, 1, 0, 0, 0, 3347, 3344, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3352, 1, 0, 0, 0, 3351, 3349, 1, 0, 0, 0, 3352, 3353, 5, 415, 0, 0, 3353, 443, 1, 0, 0, 0, 3354, 3359, 3, 580, 290, 0, 3355, 3356, 5, 397, 0, 0, 3356, 3358, 3, 580, 290, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3361, 1, 0, 0, 0, 3359, 3357, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 445, 1, 0, 0, 0, 3361, 3359, 1, 0, 0, 0, 3362, 3367, 3, 638, 319, 0, 3363, 3364, 5, 397, 0, 0, 3364, 3366, 3, 638, 319, 0, 3365, 3363, 1, 0, 0, 0, 3366, 3369, 1, 0, 0, 0, 3367, 3365, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 447, 1, 0, 0, 0, 3369, 3367, 1, 0, 0, 0, 3370, 3371, 5, 139, 0, 0, 3371, 3372, 3, 450, 225, 0, 3372, 449, 1, 0, 0, 0, 3373, 3374, 5, 359, 0, 0, 3374, 3377, 3, 458, 229, 0, 3375, 3376, 5, 397, 0, 0, 3376, 3378, 3, 458, 229, 0, 3377, 3375, 1, 0, 0, 0, 3378, 3379, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3383, 1, 0, 0, 0, 3381, 3383, 3, 454, 227, 0, 3382, 3373, 1, 0, 0, 0, 3382, 3381, 1, 0, 0, 0, 3383, 451, 1, 0, 0, 0, 3384, 3388, 3, 468, 234, 0, 3385, 3387, 3, 462, 231, 0, 3386, 3385, 1, 0, 0, 0, 3387, 3390, 1, 0, 0, 0, 3388, 3386, 1, 0, 0, 0, 3388, 3389, 1, 0, 0, 0, 3389, 3417, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3391, 3395, 3, 498, 249, 0, 3392, 3394, 3, 462, 231, 0, 3393, 3392, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3417, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3398, 3402, 3, 486, 243, 0, 3399, 3401, 3, 462, 231, 0, 3400, 3399, 1, 0, 0, 0, 3401, 3404, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3417, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3405, 3409, 3, 492, 246, 0, 3406, 3408, 3, 462, 231, 0, 3407, 3406, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3407, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3417, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3412, 3413, 5, 399, 0, 0, 3413, 3414, 3, 454, 227, 0, 3414, 3415, 5, 400, 0, 0, 3415, 3417, 1, 0, 0, 0, 3416, 3384, 1, 0, 0, 0, 3416, 3391, 1, 0, 0, 0, 3416, 3398, 1, 0, 0, 0, 3416, 3405, 1, 0, 0, 0, 3416, 3412, 1, 0, 0, 0, 3417, 453, 1, 0, 0, 0, 3418, 3429, 3, 452, 226, 0, 3419, 3420, 3, 460, 230, 0, 3420, 3425, 3, 456, 228, 0, 3421, 3422, 5, 224, 0, 0, 3422, 3426, 3, 580, 290, 0, 3423, 3424, 5, 370, 0, 0, 3424, 3426, 3, 264, 132, 0, 3425, 3421, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3428, 1, 0, 0, 0, 3427, 3419, 1, 0, 0, 0, 3428, 3431, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 455, 1, 0, 0, 0, 3431, 3429, 1, 0, 0, 0, 3432, 3437, 3, 468, 234, 0, 3433, 3437, 3, 498, 249, 0, 3434, 3437, 3, 486, 243, 0, 3435, 3437, 3, 492, 246, 0, 3436, 3432, 1, 0, 0, 0, 3436, 3433, 1, 0, 0, 0, 3436, 3434, 1, 0, 0, 0, 3436, 3435, 1, 0, 0, 0, 3437, 3441, 1, 0, 0, 0, 3438, 3440, 3, 462, 231, 0, 3439, 3438, 1, 0, 0, 0, 3440, 3443, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 457, 1, 0, 0, 0, 3443, 3441, 1, 0, 0, 0, 3444, 3446, 5, 250, 0, 0, 3445, 3444, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 3449, 3, 476, 238, 0, 3448, 3450, 3, 466, 233, 0, 3449, 3448, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3455, 1, 0, 0, 0, 3451, 3453, 5, 17, 0, 0, 3452, 3451, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3456, 3, 638, 319, 0, 3455, 3452, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3458, 5, 399, 0, 0, 3458, 3459, 3, 444, 222, 0, 3459, 3460, 5, 400, 0, 0, 3460, 459, 1, 0, 0, 0, 3461, 3476, 5, 397, 0, 0, 3462, 3473, 5, 157, 0, 0, 3463, 3473, 5, 60, 0, 0, 3464, 3466, 7, 28, 0, 0, 3465, 3467, 5, 231, 0, 0, 3466, 3465, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3473, 1, 0, 0, 0, 3468, 3470, 5, 180, 0, 0, 3469, 3471, 7, 29, 0, 0, 3470, 3469, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3473, 1, 0, 0, 0, 3472, 3462, 1, 0, 0, 0, 3472, 3463, 1, 0, 0, 0, 3472, 3464, 1, 0, 0, 0, 3472, 3468, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3476, 5, 171, 0, 0, 3475, 3461, 1, 0, 0, 0, 3475, 3472, 1, 0, 0, 0, 3476, 461, 1, 0, 0, 0, 3477, 3478, 5, 178, 0, 0, 3478, 3479, 5, 378, 0, 0, 3479, 3480, 5, 231, 0, 0, 3480, 3481, 3, 550, 275, 0, 3481, 3491, 3, 464, 232, 0, 3482, 3483, 5, 17, 0, 0, 3483, 3488, 3, 638, 319, 0, 3484, 3485, 5, 397, 0, 0, 3485, 3487, 3, 638, 319, 0, 3486, 3484, 1, 0, 0, 0, 3487, 3490, 1, 0, 0, 0, 3488, 3486, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3492, 1, 0, 0, 0, 3490, 3488, 1, 0, 0, 0, 3491, 3482, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3535, 1, 0, 0, 0, 3493, 3495, 5, 397, 0, 0, 3494, 3493, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3532, 5, 178, 0, 0, 3497, 3498, 5, 378, 0, 0, 3498, 3499, 3, 550, 275, 0, 3499, 3509, 3, 464, 232, 0, 3500, 3501, 5, 17, 0, 0, 3501, 3506, 3, 638, 319, 0, 3502, 3503, 5, 397, 0, 0, 3503, 3505, 3, 638, 319, 0, 3504, 3502, 1, 0, 0, 0, 3505, 3508, 1, 0, 0, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3507, 1, 0, 0, 0, 3507, 3510, 1, 0, 0, 0, 3508, 3506, 1, 0, 0, 0, 3509, 3500, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3533, 1, 0, 0, 0, 3511, 3512, 5, 329, 0, 0, 3512, 3513, 5, 399, 0, 0, 3513, 3514, 3, 496, 248, 0, 3514, 3516, 5, 400, 0, 0, 3515, 3517, 5, 17, 0, 0, 3516, 3515, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 3530, 3, 464, 232, 0, 3519, 3520, 5, 399, 0, 0, 3520, 3525, 3, 638, 319, 0, 3521, 3522, 5, 397, 0, 0, 3522, 3524, 3, 638, 319, 0, 3523, 3521, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3528, 1, 0, 0, 0, 3527, 3525, 1, 0, 0, 0, 3528, 3529, 5, 400, 0, 0, 3529, 3531, 1, 0, 0, 0, 3530, 3519, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3533, 1, 0, 0, 0, 3532, 3497, 1, 0, 0, 0, 3532, 3511, 1, 0, 0, 0, 3533, 3535, 1, 0, 0, 0, 3534, 3477, 1, 0, 0, 0, 3534, 3494, 1, 0, 0, 0, 3535, 463, 1, 0, 0, 0, 3536, 3537, 3, 638, 319, 0, 3537, 465, 1, 0, 0, 0, 3538, 3539, 5, 331, 0, 0, 3539, 3540, 5, 399, 0, 0, 3540, 3541, 5, 30, 0, 0, 3541, 3542, 5, 431, 0, 0, 3542, 3543, 5, 230, 0, 0, 3543, 3544, 5, 221, 0, 0, 3544, 3554, 5, 431, 0, 0, 3545, 3546, 5, 224, 0, 0, 3546, 3551, 3, 580, 290, 0, 3547, 3548, 5, 397, 0, 0, 3548, 3550, 3, 580, 290, 0, 3549, 3547, 1, 0, 0, 0, 3550, 3553, 1, 0, 0, 0, 3551, 3549, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3555, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3554, 3545, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3566, 5, 400, 0, 0, 3557, 3558, 5, 331, 0, 0, 3558, 3562, 5, 399, 0, 0, 3559, 3560, 5, 431, 0, 0, 3560, 3563, 7, 30, 0, 0, 3561, 3563, 5, 430, 0, 0, 3562, 3559, 1, 0, 0, 0, 3562, 3561, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3566, 5, 400, 0, 0, 3565, 3538, 1, 0, 0, 0, 3565, 3557, 1, 0, 0, 0, 3566, 467, 1, 0, 0, 0, 3567, 3569, 3, 476, 238, 0, 3568, 3570, 3, 226, 113, 0, 3569, 3568, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3572, 1, 0, 0, 0, 3571, 3573, 3, 466, 233, 0, 3572, 3571, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3576, 3, 470, 235, 0, 3575, 3574, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3581, 1, 0, 0, 0, 3577, 3579, 5, 17, 0, 0, 3578, 3577, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3582, 3, 638, 319, 0, 3581, 3578, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 469, 1, 0, 0, 0, 3583, 3593, 5, 134, 0, 0, 3584, 3585, 5, 327, 0, 0, 3585, 3586, 5, 17, 0, 0, 3586, 3587, 5, 221, 0, 0, 3587, 3594, 3, 580, 290, 0, 3588, 3589, 5, 134, 0, 0, 3589, 3590, 5, 328, 0, 0, 3590, 3591, 5, 17, 0, 0, 3591, 3592, 5, 221, 0, 0, 3592, 3594, 5, 431, 0, 0, 3593, 3584, 1, 0, 0, 0, 3593, 3588, 1, 0, 0, 0, 3594, 471, 1, 0, 0, 0, 3595, 3596, 3, 638, 319, 0, 3596, 473, 1, 0, 0, 0, 3597, 3598, 3, 638, 319, 0, 3598, 475, 1, 0, 0, 0, 3599, 3602, 3, 478, 239, 0, 3600, 3602, 3, 482, 241, 0, 3601, 3599, 1, 0, 0, 0, 3601, 3600, 1, 0, 0, 0, 3602, 477, 1, 0, 0, 0, 3603, 3604, 3, 638, 319, 0, 3604, 3605, 5, 395, 0, 0, 3605, 3608, 3, 638, 319, 0, 3606, 3607, 5, 395, 0, 0, 3607, 3609, 3, 638, 319, 0, 3608, 3606, 1, 0, 0, 0, 3608, 3609, 1, 0, 0, 0, 3609, 3612, 1, 0, 0, 0, 3610, 3612, 3, 638, 319, 0, 3611, 3603, 1, 0, 0, 0, 3611, 3610, 1, 0, 0, 0, 3612, 479, 1, 0, 0, 0, 3613, 3614, 3, 638, 319, 0, 3614, 3615, 5, 395, 0, 0, 3615, 3618, 3, 638, 319, 0, 3616, 3617, 5, 395, 0, 0, 3617, 3619, 3, 638, 319, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3622, 1, 0, 0, 0, 3620, 3622, 3, 638, 319, 0, 3621, 3613, 1, 0, 0, 0, 3621, 3620, 1, 0, 0, 0, 3622, 481, 1, 0, 0, 0, 3623, 3624, 3, 638, 319, 0, 3624, 3625, 5, 395, 0, 0, 3625, 3627, 1, 0, 0, 0, 3626, 3623, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3629, 3, 638, 319, 0, 3629, 483, 1, 0, 0, 0, 3630, 3631, 3, 638, 319, 0, 3631, 3632, 5, 395, 0, 0, 3632, 3634, 1, 0, 0, 0, 3633, 3630, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3636, 3, 638, 319, 0, 3636, 485, 1, 0, 0, 0, 3637, 3638, 5, 399, 0, 0, 3638, 3639, 3, 360, 180, 0, 3639, 3641, 5, 400, 0, 0, 3640, 3642, 5, 17, 0, 0, 3641, 3640, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3643, 1, 0, 0, 0, 3643, 3644, 3, 638, 319, 0, 3644, 487, 1, 0, 0, 0, 3645, 3646, 5, 237, 0, 0, 3646, 3647, 5, 32, 0, 0, 3647, 3649, 3, 536, 268, 0, 3648, 3650, 3, 542, 271, 0, 3649, 3648, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 3659, 1, 0, 0, 0, 3651, 3659, 3, 542, 271, 0, 3652, 3654, 3, 546, 273, 0, 3653, 3655, 3, 548, 274, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3659, 1, 0, 0, 0, 3656, 3659, 3, 548, 274, 0, 3657, 3659, 3, 544, 272, 0, 3658, 3645, 1, 0, 0, 0, 3658, 3651, 1, 0, 0, 0, 3658, 3652, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3658, 3657, 1, 0, 0, 0, 3659, 489, 1, 0, 0, 0, 3660, 3664, 3, 486, 243, 0, 3661, 3664, 3, 468, 234, 0, 3662, 3664, 3, 492, 246, 0, 3663, 3660, 1, 0, 0, 0, 3663, 3661, 1, 0, 0, 0, 3663, 3662, 1, 0, 0, 0, 3664, 491, 1, 0, 0, 0, 3665, 3666, 3, 638, 319, 0, 3666, 3667, 5, 399, 0, 0, 3667, 3668, 5, 224, 0, 0, 3668, 3670, 3, 490, 245, 0, 3669, 3671, 3, 488, 244, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3687, 1, 0, 0, 0, 3672, 3673, 5, 432, 0, 0, 3673, 3674, 5, 399, 0, 0, 3674, 3675, 3, 580, 290, 0, 3675, 3684, 5, 400, 0, 0, 3676, 3677, 5, 397, 0, 0, 3677, 3678, 5, 432, 0, 0, 3678, 3679, 5, 399, 0, 0, 3679, 3680, 3, 580, 290, 0, 3680, 3681, 5, 400, 0, 0, 3681, 3683, 1, 0, 0, 0, 3682, 3676, 1, 0, 0, 0, 3683, 3686, 1, 0, 0, 0, 3684, 3682, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3688, 1, 0, 0, 0, 3686, 3684, 1, 0, 0, 0, 3687, 3672, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3691, 5, 400, 0, 0, 3690, 3692, 3, 638, 319, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 493, 1, 0, 0, 0, 3693, 3694, 5, 384, 0, 0, 3694, 3695, 3, 580, 290, 0, 3695, 495, 1, 0, 0, 0, 3696, 3715, 5, 374, 0, 0, 3697, 3702, 3, 538, 269, 0, 3698, 3699, 5, 397, 0, 0, 3699, 3701, 3, 538, 269, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3716, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3706, 5, 399, 0, 0, 3706, 3707, 3, 534, 267, 0, 3707, 3712, 5, 400, 0, 0, 3708, 3709, 5, 397, 0, 0, 3709, 3711, 3, 538, 269, 0, 3710, 3708, 1, 0, 0, 0, 3711, 3714, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3716, 1, 0, 0, 0, 3714, 3712, 1, 0, 0, 0, 3715, 3697, 1, 0, 0, 0, 3715, 3705, 1, 0, 0, 0, 3716, 497, 1, 0, 0, 0, 3717, 3718, 5, 329, 0, 0, 3718, 3719, 5, 399, 0, 0, 3719, 3720, 3, 496, 248, 0, 3720, 3722, 5, 400, 0, 0, 3721, 3723, 5, 17, 0, 0, 3722, 3721, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3734, 3, 464, 232, 0, 3725, 3726, 5, 399, 0, 0, 3726, 3731, 3, 638, 319, 0, 3727, 3728, 5, 397, 0, 0, 3728, 3730, 3, 638, 319, 0, 3729, 3727, 1, 0, 0, 0, 3730, 3733, 1, 0, 0, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3735, 1, 0, 0, 0, 3733, 3731, 1, 0, 0, 0, 3734, 3725, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3737, 5, 400, 0, 0, 3737, 499, 1, 0, 0, 0, 3738, 3740, 5, 299, 0, 0, 3739, 3741, 5, 436, 0, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3755, 1, 0, 0, 0, 3742, 3744, 7, 22, 0, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3750, 3, 504, 252, 0, 3746, 3747, 5, 397, 0, 0, 3747, 3749, 3, 504, 252, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3752, 1, 0, 0, 0, 3750, 3748, 1, 0, 0, 0, 3750, 3751, 1, 0, 0, 0, 3751, 3756, 1, 0, 0, 0, 3752, 3750, 1, 0, 0, 0, 3753, 3754, 5, 347, 0, 0, 3754, 3756, 3, 502, 251, 0, 3755, 3743, 1, 0, 0, 0, 3755, 3753, 1, 0, 0, 0, 3756, 3759, 1, 0, 0, 0, 3757, 3759, 3, 506, 253, 0, 3758, 3738, 1, 0, 0, 0, 3758, 3757, 1, 0, 0, 0, 3759, 501, 1, 0, 0, 0, 3760, 3761, 5, 399, 0, 0, 3761, 3762, 3, 510, 255, 0, 3762, 3763, 5, 400, 0, 0, 3763, 3764, 3, 212, 106, 0, 3764, 3765, 3, 216, 108, 0, 3765, 3766, 5, 370, 0, 0, 3766, 3779, 5, 426, 0, 0, 3767, 3777, 5, 17, 0, 0, 3768, 3771, 5, 399, 0, 0, 3769, 3772, 3, 446, 223, 0, 3770, 3772, 3, 248, 124, 0, 3771, 3769, 1, 0, 0, 0, 3771, 3770, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3774, 5, 400, 0, 0, 3774, 3778, 1, 0, 0, 0, 3775, 3778, 3, 446, 223, 0, 3776, 3778, 3, 248, 124, 0, 3777, 3768, 1, 0, 0, 0, 3777, 3775, 1, 0, 0, 0, 3777, 3776, 1, 0, 0, 0, 3778, 3780, 1, 0, 0, 0, 3779, 3767, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3782, 3, 212, 106, 0, 3782, 3783, 3, 214, 107, 0, 3783, 503, 1, 0, 0, 0, 3784, 3808, 3, 442, 221, 0, 3785, 3788, 3, 256, 128, 0, 3786, 3788, 3, 580, 290, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3786, 1, 0, 0, 0, 3788, 3805, 1, 0, 0, 0, 3789, 3791, 5, 17, 0, 0, 3790, 3789, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3806, 3, 638, 319, 0, 3793, 3794, 5, 17, 0, 0, 3794, 3795, 5, 399, 0, 0, 3795, 3800, 3, 638, 319, 0, 3796, 3797, 5, 397, 0, 0, 3797, 3799, 3, 638, 319, 0, 3798, 3796, 1, 0, 0, 0, 3799, 3802, 1, 0, 0, 0, 3800, 3798, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3803, 1, 0, 0, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3804, 5, 400, 0, 0, 3804, 3806, 1, 0, 0, 0, 3805, 3790, 1, 0, 0, 0, 3805, 3793, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3808, 1, 0, 0, 0, 3807, 3784, 1, 0, 0, 0, 3807, 3787, 1, 0, 0, 0, 3808, 505, 1, 0, 0, 0, 3809, 3810, 7, 31, 0, 0, 3810, 3811, 3, 510, 255, 0, 3811, 3812, 3, 212, 106, 0, 3812, 3813, 3, 216, 108, 0, 3813, 3814, 5, 370, 0, 0, 3814, 3827, 5, 426, 0, 0, 3815, 3825, 5, 17, 0, 0, 3816, 3819, 5, 399, 0, 0, 3817, 3820, 3, 446, 223, 0, 3818, 3820, 3, 248, 124, 0, 3819, 3817, 1, 0, 0, 0, 3819, 3818, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3822, 5, 400, 0, 0, 3822, 3826, 1, 0, 0, 0, 3823, 3826, 3, 446, 223, 0, 3824, 3826, 3, 248, 124, 0, 3825, 3816, 1, 0, 0, 0, 3825, 3823, 1, 0, 0, 0, 3825, 3824, 1, 0, 0, 0, 3826, 3828, 1, 0, 0, 0, 3827, 3815, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 3, 212, 106, 0, 3830, 3831, 3, 214, 107, 0, 3831, 507, 1, 0, 0, 0, 3832, 3835, 3, 442, 221, 0, 3833, 3835, 3, 580, 290, 0, 3834, 3832, 1, 0, 0, 0, 3834, 3833, 1, 0, 0, 0, 3835, 509, 1, 0, 0, 0, 3836, 3841, 3, 508, 254, 0, 3837, 3838, 5, 397, 0, 0, 3838, 3840, 3, 508, 254, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3843, 1, 0, 0, 0, 3841, 3839, 1, 0, 0, 0, 3841, 3842, 1, 0, 0, 0, 3842, 511, 1, 0, 0, 0, 3843, 3841, 1, 0, 0, 0, 3844, 3845, 5, 386, 0, 0, 3845, 3846, 3, 638, 319, 0, 3846, 3847, 5, 17, 0, 0, 3847, 3855, 3, 514, 257, 0, 3848, 3849, 5, 397, 0, 0, 3849, 3850, 3, 638, 319, 0, 3850, 3851, 5, 17, 0, 0, 3851, 3852, 3, 514, 257, 0, 3852, 3854, 1, 0, 0, 0, 3853, 3848, 1, 0, 0, 0, 3854, 3857, 1, 0, 0, 0, 3855, 3853, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 513, 1, 0, 0, 0, 3857, 3855, 1, 0, 0, 0, 3858, 3871, 3, 638, 319, 0, 3859, 3861, 5, 399, 0, 0, 3860, 3862, 3, 638, 319, 0, 3861, 3860, 1, 0, 0, 0, 3861, 3862, 1, 0, 0, 0, 3862, 3864, 1, 0, 0, 0, 3863, 3865, 3, 488, 244, 0, 3864, 3863, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 3867, 1, 0, 0, 0, 3866, 3868, 3, 516, 258, 0, 3867, 3866, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3871, 5, 400, 0, 0, 3870, 3858, 1, 0, 0, 0, 3870, 3859, 1, 0, 0, 0, 3871, 515, 1, 0, 0, 0, 3872, 3886, 7, 32, 0, 0, 3873, 3874, 5, 354, 0, 0, 3874, 3880, 5, 247, 0, 0, 3875, 3876, 5, 62, 0, 0, 3876, 3880, 5, 291, 0, 0, 3877, 3878, 5, 431, 0, 0, 3878, 3880, 5, 247, 0, 0, 3879, 3873, 1, 0, 0, 0, 3879, 3875, 1, 0, 0, 0, 3879, 3877, 1, 0, 0, 0, 3880, 3887, 1, 0, 0, 0, 3881, 3882, 5, 25, 0, 0, 3882, 3883, 3, 518, 259, 0, 3883, 3884, 5, 11, 0, 0, 3884, 3885, 3, 518, 259, 0, 3885, 3887, 1, 0, 0, 0, 3886, 3879, 1, 0, 0, 0, 3886, 3881, 1, 0, 0, 0, 3887, 517, 1, 0, 0, 0, 3888, 3889, 7, 33, 0, 0, 3889, 3893, 7, 34, 0, 0, 3890, 3891, 5, 62, 0, 0, 3891, 3893, 5, 291, 0, 0, 3892, 3888, 1, 0, 0, 0, 3892, 3890, 1, 0, 0, 0, 3893, 519, 1, 0, 0, 0, 3894, 3895, 5, 144, 0, 0, 3895, 3901, 5, 32, 0, 0, 3896, 3902, 3, 256, 128, 0, 3897, 3902, 3, 522, 261, 0, 3898, 3902, 3, 524, 262, 0, 3899, 3900, 5, 399, 0, 0, 3900, 3902, 5, 400, 0, 0, 3901, 3896, 1, 0, 0, 0, 3901, 3897, 1, 0, 0, 0, 3901, 3898, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3902, 521, 1, 0, 0, 0, 3903, 3906, 5, 290, 0, 0, 3904, 3906, 5, 61, 0, 0, 3905, 3903, 1, 0, 0, 0, 3905, 3904, 1, 0, 0, 0, 3906, 3907, 1, 0, 0, 0, 3907, 3908, 5, 399, 0, 0, 3908, 3913, 3, 580, 290, 0, 3909, 3910, 5, 397, 0, 0, 3910, 3912, 3, 580, 290, 0, 3911, 3909, 1, 0, 0, 0, 3912, 3915, 1, 0, 0, 0, 3913, 3911, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3916, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3916, 3917, 5, 400, 0, 0, 3917, 523, 1, 0, 0, 0, 3918, 3923, 3, 540, 270, 0, 3919, 3920, 5, 387, 0, 0, 3920, 3924, 5, 290, 0, 0, 3921, 3922, 5, 387, 0, 0, 3922, 3924, 5, 61, 0, 0, 3923, 3919, 1, 0, 0, 0, 3923, 3921, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3938, 1, 0, 0, 0, 3925, 3926, 5, 145, 0, 0, 3926, 3927, 5, 305, 0, 0, 3927, 3928, 5, 399, 0, 0, 3928, 3933, 3, 526, 263, 0, 3929, 3930, 5, 397, 0, 0, 3930, 3932, 3, 526, 263, 0, 3931, 3929, 1, 0, 0, 0, 3932, 3935, 1, 0, 0, 0, 3933, 3931, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3936, 1, 0, 0, 0, 3935, 3933, 1, 0, 0, 0, 3936, 3937, 5, 400, 0, 0, 3937, 3939, 1, 0, 0, 0, 3938, 3925, 1, 0, 0, 0, 3938, 3939, 1, 0, 0, 0, 3939, 525, 1, 0, 0, 0, 3940, 3942, 5, 399, 0, 0, 3941, 3943, 3, 580, 290, 0, 3942, 3941, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 3948, 1, 0, 0, 0, 3944, 3945, 5, 397, 0, 0, 3945, 3947, 3, 580, 290, 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, 3951, 1, 0, 0, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3954, 5, 400, 0, 0, 3952, 3954, 3, 580, 290, 0, 3953, 3940, 1, 0, 0, 0, 3953, 3952, 1, 0, 0, 0, 3954, 527, 1, 0, 0, 0, 3955, 3956, 5, 146, 0, 0, 3956, 3957, 3, 580, 290, 0, 3957, 529, 1, 0, 0, 0, 3958, 3959, 5, 256, 0, 0, 3959, 3960, 3, 580, 290, 0, 3960, 531, 1, 0, 0, 0, 3961, 3964, 5, 83, 0, 0, 3962, 3964, 3, 580, 290, 0, 3963, 3961, 1, 0, 0, 0, 3963, 3962, 1, 0, 0, 0, 3964, 533, 1, 0, 0, 0, 3965, 3967, 3, 580, 290, 0, 3966, 3968, 5, 17, 0, 0, 3967, 3966, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3970, 1, 0, 0, 0, 3969, 3971, 3, 638, 319, 0, 3970, 3969, 1, 0, 0, 0, 3970, 3971, 1, 0, 0, 0, 3971, 3982, 1, 0, 0, 0, 3972, 3973, 5, 397, 0, 0, 3973, 3975, 3, 580, 290, 0, 3974, 3976, 5, 17, 0, 0, 3975, 3974, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3978, 1, 0, 0, 0, 3977, 3979, 3, 638, 319, 0, 3978, 3977, 1, 0, 0, 0, 3978, 3979, 1, 0, 0, 0, 3979, 3981, 1, 0, 0, 0, 3980, 3972, 1, 0, 0, 0, 3981, 3984, 1, 0, 0, 0, 3982, 3980, 1, 0, 0, 0, 3982, 3983, 1, 0, 0, 0, 3983, 535, 1, 0, 0, 0, 3984, 3982, 1, 0, 0, 0, 3985, 3988, 3, 538, 269, 0, 3986, 3988, 3, 540, 270, 0, 3987, 3985, 1, 0, 0, 0, 3987, 3986, 1, 0, 0, 0, 3988, 537, 1, 0, 0, 0, 3989, 3990, 5, 399, 0, 0, 3990, 3991, 3, 540, 270, 0, 3991, 3992, 5, 400, 0, 0, 3992, 539, 1, 0, 0, 0, 3993, 4000, 3, 532, 266, 0, 3994, 3995, 5, 397, 0, 0, 3995, 3997, 3, 532, 266, 0, 3996, 3994, 1, 0, 0, 0, 3997, 3998, 1, 0, 0, 0, 3998, 3996, 1, 0, 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4001, 1, 0, 0, 0, 4000, 3996, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 541, 1, 0, 0, 0, 4002, 4003, 5, 229, 0, 0, 4003, 4004, 5, 32, 0, 0, 4004, 4009, 3, 308, 154, 0, 4005, 4006, 5, 397, 0, 0, 4006, 4008, 3, 308, 154, 0, 4007, 4005, 1, 0, 0, 0, 4008, 4011, 1, 0, 0, 0, 4009, 4007, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 543, 1, 0, 0, 0, 4011, 4009, 1, 0, 0, 0, 4012, 4013, 5, 41, 0, 0, 4013, 4014, 5, 32, 0, 0, 4014, 4015, 3, 536, 268, 0, 4015, 545, 1, 0, 0, 0, 4016, 4017, 5, 97, 0, 0, 4017, 4018, 5, 32, 0, 0, 4018, 4019, 3, 536, 268, 0, 4019, 547, 1, 0, 0, 0, 4020, 4021, 5, 314, 0, 0, 4021, 4041, 5, 32, 0, 0, 4022, 4023, 5, 399, 0, 0, 4023, 4028, 3, 308, 154, 0, 4024, 4025, 5, 397, 0, 0, 4025, 4027, 3, 308, 154, 0, 4026, 4024, 1, 0, 0, 0, 4027, 4030, 1, 0, 0, 0, 4028, 4026, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4031, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4032, 5, 400, 0, 0, 4032, 4042, 1, 0, 0, 0, 4033, 4038, 3, 308, 154, 0, 4034, 4035, 5, 397, 0, 0, 4035, 4037, 3, 308, 154, 0, 4036, 4034, 1, 0, 0, 0, 4037, 4040, 1, 0, 0, 0, 4038, 4036, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4042, 1, 0, 0, 0, 4040, 4038, 1, 0, 0, 0, 4041, 4022, 1, 0, 0, 0, 4041, 4033, 1, 0, 0, 0, 4042, 549, 1, 0, 0, 0, 4043, 4044, 5, 349, 0, 0, 4044, 4048, 5, 399, 0, 0, 4045, 4049, 5, 179, 0, 0, 4046, 4049, 5, 343, 0, 0, 4047, 4049, 5, 29, 0, 0, 4048, 4045, 1, 0, 0, 0, 4048, 4046, 1, 0, 0, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4051, 1, 0, 0, 0, 4050, 4052, 3, 508, 254, 0, 4051, 4050, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4054, 5, 139, 0, 0, 4054, 4055, 3, 508, 254, 0, 4055, 4056, 5, 400, 0, 0, 4056, 4097, 1, 0, 0, 0, 4057, 4058, 3, 558, 279, 0, 4058, 4073, 5, 399, 0, 0, 4059, 4074, 5, 415, 0, 0, 4060, 4062, 7, 22, 0, 0, 4061, 4060, 1, 0, 0, 0, 4061, 4062, 1, 0, 0, 0, 4062, 4071, 1, 0, 0, 0, 4063, 4068, 3, 508, 254, 0, 4064, 4065, 5, 397, 0, 0, 4065, 4067, 3, 508, 254, 0, 4066, 4064, 1, 0, 0, 0, 4067, 4070, 1, 0, 0, 0, 4068, 4066, 1, 0, 0, 0, 4068, 4069, 1, 0, 0, 0, 4069, 4072, 1, 0, 0, 0, 4070, 4068, 1, 0, 0, 0, 4071, 4063, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4074, 1, 0, 0, 0, 4073, 4059, 1, 0, 0, 0, 4073, 4061, 1, 0, 0, 0, 4074, 4094, 1, 0, 0, 0, 4075, 4076, 5, 400, 0, 0, 4076, 4077, 5, 388, 0, 0, 4077, 4078, 5, 144, 0, 0, 4078, 4079, 5, 399, 0, 0, 4079, 4080, 3, 542, 271, 0, 4080, 4081, 5, 400, 0, 0, 4081, 4095, 1, 0, 0, 0, 4082, 4084, 5, 400, 0, 0, 4083, 4085, 3, 552, 276, 0, 4084, 4083, 1, 0, 0, 0, 4084, 4085, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 4087, 5, 234, 0, 0, 4087, 4095, 3, 514, 257, 0, 4088, 4089, 3, 552, 276, 0, 4089, 4090, 5, 400, 0, 0, 4090, 4091, 5, 234, 0, 0, 4091, 4092, 3, 514, 257, 0, 4092, 4095, 1, 0, 0, 0, 4093, 4095, 5, 400, 0, 0, 4094, 4075, 1, 0, 0, 0, 4094, 4082, 1, 0, 0, 0, 4094, 4088, 1, 0, 0, 0, 4094, 4093, 1, 0, 0, 0, 4095, 4097, 1, 0, 0, 0, 4096, 4043, 1, 0, 0, 0, 4096, 4057, 1, 0, 0, 0, 4097, 551, 1, 0, 0, 0, 4098, 4099, 7, 35, 0, 0, 4099, 4100, 5, 220, 0, 0, 4100, 553, 1, 0, 0, 0, 4101, 4102, 3, 640, 320, 0, 4102, 555, 1, 0, 0, 0, 4103, 4106, 3, 640, 320, 0, 4104, 4106, 5, 426, 0, 0, 4105, 4103, 1, 0, 0, 0, 4105, 4104, 1, 0, 0, 0, 4106, 557, 1, 0, 0, 0, 4107, 4111, 3, 640, 320, 0, 4108, 4111, 3, 646, 323, 0, 4109, 4111, 3, 636, 318, 0, 4110, 4107, 1, 0, 0, 0, 4110, 4108, 1, 0, 0, 0, 4110, 4109, 1, 0, 0, 0, 4111, 559, 1, 0, 0, 0, 4112, 4113, 5, 36, 0, 0, 4113, 4114, 5, 399, 0, 0, 4114, 4115, 3, 580, 290, 0, 4115, 4116, 5, 17, 0, 0, 4116, 4119, 3, 348, 174, 0, 4117, 4118, 5, 137, 0, 0, 4118, 4120, 5, 426, 0, 0, 4119, 4117, 1, 0, 0, 0, 4119, 4120, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4122, 5, 400, 0, 0, 4122, 561, 1, 0, 0, 0, 4123, 4124, 5, 35, 0, 0, 4124, 4130, 3, 580, 290, 0, 4125, 4126, 5, 383, 0, 0, 4126, 4127, 3, 580, 290, 0, 4127, 4128, 5, 335, 0, 0, 4128, 4129, 3, 580, 290, 0, 4129, 4131, 1, 0, 0, 0, 4130, 4125, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 4130, 1, 0, 0, 0, 4132, 4133, 1, 0, 0, 0, 4133, 4136, 1, 0, 0, 0, 4134, 4135, 5, 105, 0, 0, 4135, 4137, 3, 580, 290, 0, 4136, 4134, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 5, 108, 0, 0, 4139, 563, 1, 0, 0, 0, 4140, 4146, 5, 35, 0, 0, 4141, 4142, 5, 383, 0, 0, 4142, 4143, 3, 580, 290, 0, 4143, 4144, 5, 335, 0, 0, 4144, 4145, 3, 580, 290, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4141, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4146, 1, 0, 0, 0, 4148, 4149, 1, 0, 0, 0, 4149, 4152, 1, 0, 0, 0, 4150, 4151, 5, 105, 0, 0, 4151, 4153, 3, 580, 290, 0, 4152, 4150, 1, 0, 0, 0, 4152, 4153, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4155, 5, 108, 0, 0, 4155, 565, 1, 0, 0, 0, 4156, 4157, 5, 132, 0, 0, 4157, 4158, 5, 399, 0, 0, 4158, 4161, 3, 580, 290, 0, 4159, 4160, 5, 341, 0, 0, 4160, 4162, 3, 570, 285, 0, 4161, 4159, 1, 0, 0, 0, 4161, 4162, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4164, 5, 400, 0, 0, 4164, 567, 1, 0, 0, 0, 4165, 4166, 5, 124, 0, 0, 4166, 4167, 5, 399, 0, 0, 4167, 4168, 3, 570, 285, 0, 4168, 4169, 5, 139, 0, 0, 4169, 4170, 3, 580, 290, 0, 4170, 4171, 5, 400, 0, 0, 4171, 569, 1, 0, 0, 0, 4172, 4181, 3, 666, 333, 0, 4173, 4181, 5, 257, 0, 0, 4174, 4181, 3, 668, 334, 0, 4175, 4181, 3, 670, 335, 0, 4176, 4181, 3, 672, 336, 0, 4177, 4181, 3, 674, 337, 0, 4178, 4181, 3, 676, 338, 0, 4179, 4181, 3, 678, 339, 0, 4180, 4172, 1, 0, 0, 0, 4180, 4173, 1, 0, 0, 0, 4180, 4174, 1, 0, 0, 0, 4180, 4175, 1, 0, 0, 0, 4180, 4176, 1, 0, 0, 0, 4180, 4177, 1, 0, 0, 0, 4180, 4178, 1, 0, 0, 0, 4180, 4179, 1, 0, 0, 0, 4181, 571, 1, 0, 0, 0, 4182, 4183, 3, 574, 287, 0, 4183, 4184, 3, 578, 289, 0, 4184, 4211, 1, 0, 0, 0, 4185, 4211, 5, 431, 0, 0, 4186, 4187, 5, 71, 0, 0, 4187, 4211, 5, 426, 0, 0, 4188, 4211, 5, 63, 0, 0, 4189, 4190, 5, 337, 0, 0, 4190, 4211, 5, 426, 0, 0, 4191, 4211, 5, 64, 0, 0, 4192, 4193, 5, 338, 0, 0, 4193, 4211, 5, 426, 0, 0, 4194, 4198, 5, 426, 0, 0, 4195, 4197, 5, 426, 0, 0, 4196, 4195, 1, 0, 0, 0, 4197, 4200, 1, 0, 0, 0, 4198, 4196, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4211, 1, 0, 0, 0, 4200, 4198, 1, 0, 0, 0, 4201, 4211, 5, 428, 0, 0, 4202, 4211, 5, 429, 0, 0, 4203, 4204, 5, 433, 0, 0, 4204, 4211, 5, 427, 0, 0, 4205, 4211, 5, 350, 0, 0, 4206, 4211, 5, 125, 0, 0, 4207, 4211, 5, 219, 0, 0, 4208, 4211, 5, 424, 0, 0, 4209, 4211, 5, 432, 0, 0, 4210, 4182, 1, 0, 0, 0, 4210, 4185, 1, 0, 0, 0, 4210, 4186, 1, 0, 0, 0, 4210, 4188, 1, 0, 0, 0, 4210, 4189, 1, 0, 0, 0, 4210, 4191, 1, 0, 0, 0, 4210, 4192, 1, 0, 0, 0, 4210, 4194, 1, 0, 0, 0, 4210, 4201, 1, 0, 0, 0, 4210, 4202, 1, 0, 0, 0, 4210, 4203, 1, 0, 0, 0, 4210, 4205, 1, 0, 0, 0, 4210, 4206, 1, 0, 0, 0, 4210, 4207, 1, 0, 0, 0, 4210, 4208, 1, 0, 0, 0, 4210, 4209, 1, 0, 0, 0, 4211, 573, 1, 0, 0, 0, 4212, 4213, 7, 27, 0, 0, 4213, 575, 1, 0, 0, 0, 4214, 4215, 5, 399, 0, 0, 4215, 4216, 3, 574, 287, 0, 4216, 4217, 5, 400, 0, 0, 4217, 4218, 3, 578, 289, 0, 4218, 4230, 1, 0, 0, 0, 4219, 4225, 5, 165, 0, 0, 4220, 4226, 3, 574, 287, 0, 4221, 4222, 5, 399, 0, 0, 4222, 4223, 3, 580, 290, 0, 4223, 4224, 5, 400, 0, 0, 4224, 4226, 1, 0, 0, 0, 4225, 4220, 1, 0, 0, 0, 4225, 4221, 1, 0, 0, 0, 4226, 4227, 1, 0, 0, 0, 4227, 4228, 3, 578, 289, 0, 4228, 4230, 1, 0, 0, 0, 4229, 4214, 1, 0, 0, 0, 4229, 4219, 1, 0, 0, 0, 4230, 577, 1, 0, 0, 0, 4231, 4232, 3, 666, 333, 0, 4232, 4233, 5, 341, 0, 0, 4233, 4234, 3, 668, 334, 0, 4234, 4246, 1, 0, 0, 0, 4235, 4236, 3, 672, 336, 0, 4236, 4237, 5, 341, 0, 0, 4237, 4238, 3, 678, 339, 0, 4238, 4246, 1, 0, 0, 0, 4239, 4246, 3, 666, 333, 0, 4240, 4246, 3, 668, 334, 0, 4241, 4246, 3, 672, 336, 0, 4242, 4246, 3, 674, 337, 0, 4243, 4246, 3, 676, 338, 0, 4244, 4246, 3, 678, 339, 0, 4245, 4231, 1, 0, 0, 0, 4245, 4235, 1, 0, 0, 0, 4245, 4239, 1, 0, 0, 0, 4245, 4240, 1, 0, 0, 0, 4245, 4241, 1, 0, 0, 0, 4245, 4242, 1, 0, 0, 0, 4245, 4243, 1, 0, 0, 0, 4245, 4244, 1, 0, 0, 0, 4246, 579, 1, 0, 0, 0, 4247, 4252, 3, 622, 311, 0, 4248, 4249, 5, 228, 0, 0, 4249, 4251, 3, 622, 311, 0, 4250, 4248, 1, 0, 0, 0, 4251, 4254, 1, 0, 0, 0, 4252, 4250, 1, 0, 0, 0, 4252, 4253, 1, 0, 0, 0, 4253, 581, 1, 0, 0, 0, 4254, 4252, 1, 0, 0, 0, 4255, 4267, 3, 572, 286, 0, 4256, 4267, 3, 576, 288, 0, 4257, 4267, 3, 560, 280, 0, 4258, 4267, 3, 568, 284, 0, 4259, 4267, 3, 566, 283, 0, 4260, 4267, 3, 562, 281, 0, 4261, 4267, 3, 564, 282, 0, 4262, 4267, 3, 600, 300, 0, 4263, 4267, 3, 550, 275, 0, 4264, 4267, 3, 538, 269, 0, 4265, 4267, 3, 638, 319, 0, 4266, 4255, 1, 0, 0, 0, 4266, 4256, 1, 0, 0, 0, 4266, 4257, 1, 0, 0, 0, 4266, 4258, 1, 0, 0, 0, 4266, 4259, 1, 0, 0, 0, 4266, 4260, 1, 0, 0, 0, 4266, 4261, 1, 0, 0, 0, 4266, 4262, 1, 0, 0, 0, 4266, 4263, 1, 0, 0, 0, 4266, 4264, 1, 0, 0, 0, 4266, 4265, 1, 0, 0, 0, 4267, 583, 1, 0, 0, 0, 4268, 4270, 7, 36, 0, 0, 4269, 4268, 1, 0, 0, 0, 4270, 4273, 1, 0, 0, 0, 4271, 4269, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4274, 1, 0, 0, 0, 4273, 4271, 1, 0, 0, 0, 4274, 4283, 3, 582, 291, 0, 4275, 4276, 5, 401, 0, 0, 4276, 4277, 3, 580, 290, 0, 4277, 4278, 5, 402, 0, 0, 4278, 4282, 1, 0, 0, 0, 4279, 4280, 5, 395, 0, 0, 4280, 4282, 3, 638, 319, 0, 4281, 4275, 1, 0, 0, 0, 4281, 4279, 1, 0, 0, 0, 4282, 4285, 1, 0, 0, 0, 4283, 4281, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 585, 1, 0, 0, 0, 4285, 4283, 1, 0, 0, 0, 4286, 4291, 3, 584, 292, 0, 4287, 4288, 5, 423, 0, 0, 4288, 4290, 3, 584, 292, 0, 4289, 4287, 1, 0, 0, 0, 4290, 4293, 1, 0, 0, 0, 4291, 4289, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 587, 1, 0, 0, 0, 4293, 4291, 1, 0, 0, 0, 4294, 4299, 3, 586, 293, 0, 4295, 4296, 7, 37, 0, 0, 4296, 4298, 3, 586, 293, 0, 4297, 4295, 1, 0, 0, 0, 4298, 4301, 1, 0, 0, 0, 4299, 4297, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 589, 1, 0, 0, 0, 4301, 4299, 1, 0, 0, 0, 4302, 4307, 3, 588, 294, 0, 4303, 4304, 7, 38, 0, 0, 4304, 4306, 3, 588, 294, 0, 4305, 4303, 1, 0, 0, 0, 4306, 4309, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 591, 1, 0, 0, 0, 4309, 4307, 1, 0, 0, 0, 4310, 4315, 3, 590, 295, 0, 4311, 4312, 5, 422, 0, 0, 4312, 4314, 3, 590, 295, 0, 4313, 4311, 1, 0, 0, 0, 4314, 4317, 1, 0, 0, 0, 4315, 4313, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 593, 1, 0, 0, 0, 4317, 4315, 1, 0, 0, 0, 4318, 4323, 3, 592, 296, 0, 4319, 4320, 5, 419, 0, 0, 4320, 4322, 3, 592, 296, 0, 4321, 4319, 1, 0, 0, 0, 4322, 4325, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 595, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4326, 4331, 3, 594, 297, 0, 4327, 4328, 5, 421, 0, 0, 4328, 4330, 3, 594, 297, 0, 4329, 4327, 1, 0, 0, 0, 4330, 4333, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 597, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4335, 7, 39, 0, 0, 4335, 599, 1, 0, 0, 0, 4336, 4337, 5, 399, 0, 0, 4337, 4338, 3, 376, 188, 0, 4338, 4339, 5, 400, 0, 0, 4339, 601, 1, 0, 0, 0, 4340, 4342, 3, 596, 298, 0, 4341, 4343, 3, 604, 302, 0, 4342, 4341, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4347, 1, 0, 0, 0, 4344, 4345, 5, 117, 0, 0, 4345, 4347, 3, 600, 300, 0, 4346, 4340, 1, 0, 0, 0, 4346, 4344, 1, 0, 0, 0, 4347, 603, 1, 0, 0, 0, 4348, 4349, 3, 598, 299, 0, 4349, 4350, 3, 596, 298, 0, 4350, 4355, 1, 0, 0, 0, 4351, 4355, 3, 606, 303, 0, 4352, 4353, 5, 216, 0, 0, 4353, 4355, 3, 610, 305, 0, 4354, 4348, 1, 0, 0, 0, 4354, 4351, 1, 0, 0, 0, 4354, 4352, 1, 0, 0, 0, 4355, 605, 1, 0, 0, 0, 4356, 4357, 5, 154, 0, 0, 4357, 4371, 3, 608, 304, 0, 4358, 4359, 5, 25, 0, 0, 4359, 4360, 3, 596, 298, 0, 4360, 4361, 5, 11, 0, 0, 4361, 4362, 3, 596, 298, 0, 4362, 4371, 1, 0, 0, 0, 4363, 4364, 5, 184, 0, 0, 4364, 4365, 7, 40, 0, 0, 4365, 4371, 3, 538, 269, 0, 4366, 4367, 3, 634, 317, 0, 4367, 4368, 7, 41, 0, 0, 4368, 4369, 3, 600, 300, 0, 4369, 4371, 1, 0, 0, 0, 4370, 4356, 1, 0, 0, 0, 4370, 4358, 1, 0, 0, 0, 4370, 4363, 1, 0, 0, 0, 4370, 4366, 1, 0, 0, 0, 4371, 607, 1, 0, 0, 0, 4372, 4375, 3, 600, 300, 0, 4373, 4375, 3, 538, 269, 0, 4374, 4372, 1, 0, 0, 0, 4374, 4373, 1, 0, 0, 0, 4375, 609, 1, 0, 0, 0, 4376, 4377, 7, 42, 0, 0, 4377, 4380, 3, 596, 298, 0, 4378, 4380, 3, 606, 303, 0, 4379, 4376, 1, 0, 0, 0, 4379, 4378, 1, 0, 0, 0, 4380, 611, 1, 0, 0, 0, 4381, 4382, 5, 167, 0, 0, 4382, 4383, 5, 96, 0, 0, 4383, 4384, 5, 139, 0, 0, 4384, 613, 1, 0, 0, 0, 4385, 4393, 5, 405, 0, 0, 4386, 4393, 5, 406, 0, 0, 4387, 4393, 5, 407, 0, 0, 4388, 4389, 5, 167, 0, 0, 4389, 4390, 5, 216, 0, 0, 4390, 4391, 5, 96, 0, 0, 4391, 4393, 5, 139, 0, 0, 4392, 4385, 1, 0, 0, 0, 4392, 4386, 1, 0, 0, 0, 4392, 4387, 1, 0, 0, 0, 4392, 4388, 1, 0, 0, 0, 4393, 615, 1, 0, 0, 0, 4394, 4403, 3, 602, 301, 0, 4395, 4396, 3, 614, 307, 0, 4396, 4397, 3, 602, 301, 0, 4397, 4402, 1, 0, 0, 0, 4398, 4399, 3, 612, 306, 0, 4399, 4400, 3, 602, 301, 0, 4400, 4402, 1, 0, 0, 0, 4401, 4395, 1, 0, 0, 0, 4401, 4398, 1, 0, 0, 0, 4402, 4405, 1, 0, 0, 0, 4403, 4401, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 617, 1, 0, 0, 0, 4405, 4403, 1, 0, 0, 0, 4406, 4413, 5, 219, 0, 0, 4407, 4413, 5, 350, 0, 0, 4408, 4413, 5, 125, 0, 0, 4409, 4413, 5, 360, 0, 0, 4410, 4411, 5, 216, 0, 0, 4411, 4413, 7, 43, 0, 0, 4412, 4406, 1, 0, 0, 0, 4412, 4407, 1, 0, 0, 0, 4412, 4408, 1, 0, 0, 0, 4412, 4409, 1, 0, 0, 0, 4412, 4410, 1, 0, 0, 0, 4413, 619, 1, 0, 0, 0, 4414, 4416, 5, 216, 0, 0, 4415, 4414, 1, 0, 0, 0, 4416, 4419, 1, 0, 0, 0, 4417, 4415, 1, 0, 0, 0, 4417, 4418, 1, 0, 0, 0, 4418, 4420, 1, 0, 0, 0, 4419, 4417, 1, 0, 0, 0, 4420, 4423, 3, 616, 308, 0, 4421, 4422, 5, 167, 0, 0, 4422, 4424, 3, 618, 309, 0, 4423, 4421, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 621, 1, 0, 0, 0, 4425, 4430, 3, 620, 310, 0, 4426, 4427, 5, 11, 0, 0, 4427, 4429, 3, 620, 310, 0, 4428, 4426, 1, 0, 0, 0, 4429, 4432, 1, 0, 0, 0, 4430, 4428, 1, 0, 0, 0, 4430, 4431, 1, 0, 0, 0, 4431, 623, 1, 0, 0, 0, 4432, 4430, 1, 0, 0, 0, 4433, 4435, 3, 478, 239, 0, 4434, 4436, 3, 626, 313, 0, 4435, 4434, 1, 0, 0, 0, 4435, 4436, 1, 0, 0, 0, 4436, 625, 1, 0, 0, 0, 4437, 4438, 5, 237, 0, 0, 4438, 4439, 5, 399, 0, 0, 4439, 4444, 3, 628, 314, 0, 4440, 4441, 5, 397, 0, 0, 4441, 4443, 3, 628, 314, 0, 4442, 4440, 1, 0, 0, 0, 4443, 4446, 1, 0, 0, 0, 4444, 4442, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 4447, 1, 0, 0, 0, 4446, 4444, 1, 0, 0, 0, 4447, 4448, 5, 400, 0, 0, 4448, 627, 1, 0, 0, 0, 4449, 4452, 3, 638, 319, 0, 4450, 4451, 5, 405, 0, 0, 4451, 4453, 3, 572, 286, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 629, 1, 0, 0, 0, 4454, 4455, 5, 399, 0, 0, 4455, 4460, 3, 632, 316, 0, 4456, 4457, 5, 397, 0, 0, 4457, 4459, 3, 632, 316, 0, 4458, 4456, 1, 0, 0, 0, 4459, 4462, 1, 0, 0, 0, 4460, 4458, 1, 0, 0, 0, 4460, 4461, 1, 0, 0, 0, 4461, 4463, 1, 0, 0, 0, 4462, 4460, 1, 0, 0, 0, 4463, 4464, 5, 400, 0, 0, 4464, 631, 1, 0, 0, 0, 4465, 4468, 3, 638, 319, 0, 4466, 4469, 5, 184, 0, 0, 4467, 4469, 3, 634, 317, 0, 4468, 4466, 1, 0, 0, 0, 4468, 4467, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4471, 3, 572, 286, 0, 4471, 633, 1, 0, 0, 0, 4472, 4473, 7, 44, 0, 0, 4473, 635, 1, 0, 0, 0, 4474, 4475, 7, 45, 0, 0, 4475, 637, 1, 0, 0, 0, 4476, 4479, 5, 432, 0, 0, 4477, 4479, 3, 644, 322, 0, 4478, 4476, 1, 0, 0, 0, 4478, 4477, 1, 0, 0, 0, 4479, 639, 1, 0, 0, 0, 4480, 4483, 3, 638, 319, 0, 4481, 4482, 5, 395, 0, 0, 4482, 4484, 3, 638, 319, 0, 4483, 4481, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 641, 1, 0, 0, 0, 4485, 4486, 3, 638, 319, 0, 4486, 643, 1, 0, 0, 0, 4487, 4488, 7, 46, 0, 0, 4488, 645, 1, 0, 0, 0, 4489, 4490, 7, 47, 0, 0, 4490, 647, 1, 0, 0, 0, 4491, 4543, 3, 638, 319, 0, 4492, 4543, 5, 299, 0, 0, 4493, 4543, 5, 171, 0, 0, 4494, 4543, 5, 237, 0, 0, 4495, 4543, 5, 198, 0, 0, 4496, 4543, 5, 268, 0, 0, 4497, 4543, 5, 369, 0, 0, 4498, 4543, 5, 241, 0, 0, 4499, 4543, 5, 165, 0, 0, 4500, 4543, 5, 292, 0, 0, 4501, 4543, 5, 356, 0, 0, 4502, 4543, 5, 144, 0, 0, 4503, 4543, 5, 203, 0, 0, 4504, 4543, 5, 219, 0, 0, 4505, 4543, 5, 126, 0, 0, 4506, 4543, 5, 188, 0, 0, 4507, 4543, 5, 101, 0, 0, 4508, 4543, 5, 329, 0, 0, 4509, 4543, 5, 224, 0, 0, 4510, 4543, 5, 291, 0, 0, 4511, 4543, 5, 145, 0, 0, 4512, 4543, 5, 304, 0, 0, 4513, 4543, 5, 135, 0, 0, 4514, 4543, 5, 318, 0, 0, 4515, 4543, 5, 161, 0, 0, 4516, 4543, 5, 54, 0, 0, 4517, 4543, 5, 166, 0, 0, 4518, 4543, 5, 358, 0, 0, 4519, 4543, 5, 45, 0, 0, 4520, 4543, 5, 347, 0, 0, 4521, 4543, 5, 96, 0, 0, 4522, 4543, 5, 154, 0, 0, 4523, 4543, 5, 269, 0, 0, 4524, 4543, 5, 337, 0, 0, 4525, 4543, 5, 225, 0, 0, 4526, 4543, 5, 108, 0, 0, 4527, 4543, 5, 141, 0, 0, 4528, 4543, 5, 365, 0, 0, 4529, 4543, 5, 21, 0, 0, 4530, 4543, 5, 78, 0, 0, 4531, 4543, 5, 374, 0, 0, 4532, 4543, 5, 336, 0, 0, 4533, 4543, 5, 167, 0, 0, 4534, 4543, 5, 134, 0, 0, 4535, 4543, 5, 216, 0, 0, 4536, 4543, 5, 27, 0, 0, 4537, 4543, 5, 370, 0, 0, 4538, 4543, 5, 263, 0, 0, 4539, 4543, 5, 25, 0, 0, 4540, 4543, 5, 62, 0, 0, 4541, 4543, 5, 17, 0, 0, 4542, 4491, 1, 0, 0, 0, 4542, 4492, 1, 0, 0, 0, 4542, 4493, 1, 0, 0, 0, 4542, 4494, 1, 0, 0, 0, 4542, 4495, 1, 0, 0, 0, 4542, 4496, 1, 0, 0, 0, 4542, 4497, 1, 0, 0, 0, 4542, 4498, 1, 0, 0, 0, 4542, 4499, 1, 0, 0, 0, 4542, 4500, 1, 0, 0, 0, 4542, 4501, 1, 0, 0, 0, 4542, 4502, 1, 0, 0, 0, 4542, 4503, 1, 0, 0, 0, 4542, 4504, 1, 0, 0, 0, 4542, 4505, 1, 0, 0, 0, 4542, 4506, 1, 0, 0, 0, 4542, 4507, 1, 0, 0, 0, 4542, 4508, 1, 0, 0, 0, 4542, 4509, 1, 0, 0, 0, 4542, 4510, 1, 0, 0, 0, 4542, 4511, 1, 0, 0, 0, 4542, 4512, 1, 0, 0, 0, 4542, 4513, 1, 0, 0, 0, 4542, 4514, 1, 0, 0, 0, 4542, 4515, 1, 0, 0, 0, 4542, 4516, 1, 0, 0, 0, 4542, 4517, 1, 0, 0, 0, 4542, 4518, 1, 0, 0, 0, 4542, 4519, 1, 0, 0, 0, 4542, 4520, 1, 0, 0, 0, 4542, 4521, 1, 0, 0, 0, 4542, 4522, 1, 0, 0, 0, 4542, 4523, 1, 0, 0, 0, 4542, 4524, 1, 0, 0, 0, 4542, 4525, 1, 0, 0, 0, 4542, 4526, 1, 0, 0, 0, 4542, 4527, 1, 0, 0, 0, 4542, 4528, 1, 0, 0, 0, 4542, 4529, 1, 0, 0, 0, 4542, 4530, 1, 0, 0, 0, 4542, 4531, 1, 0, 0, 0, 4542, 4532, 1, 0, 0, 0, 4542, 4533, 1, 0, 0, 0, 4542, 4534, 1, 0, 0, 0, 4542, 4535, 1, 0, 0, 0, 4542, 4536, 1, 0, 0, 0, 4542, 4537, 1, 0, 0, 0, 4542, 4538, 1, 0, 0, 0, 4542, 4539, 1, 0, 0, 0, 4542, 4540, 1, 0, 0, 0, 4542, 4541, 1, 0, 0, 0, 4543, 649, 1, 0, 0, 0, 4544, 4545, 5, 58, 0, 0, 4545, 4546, 5, 280, 0, 0, 4546, 4548, 5, 243, 0, 0, 4547, 4549, 3, 32, 16, 0, 4548, 4547, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4559, 1, 0, 0, 0, 4550, 4551, 3, 638, 319, 0, 4551, 4552, 5, 184, 0, 0, 4552, 4553, 3, 638, 319, 0, 4553, 4560, 1, 0, 0, 0, 4554, 4557, 3, 638, 319, 0, 4555, 4556, 5, 387, 0, 0, 4556, 4558, 3, 656, 328, 0, 4557, 4555, 1, 0, 0, 0, 4557, 4558, 1, 0, 0, 0, 4558, 4560, 1, 0, 0, 0, 4559, 4550, 1, 0, 0, 0, 4559, 4554, 1, 0, 0, 0, 4560, 4710, 1, 0, 0, 0, 4561, 4562, 5, 9, 0, 0, 4562, 4563, 5, 280, 0, 0, 4563, 4564, 5, 243, 0, 0, 4564, 4589, 3, 638, 319, 0, 4565, 4590, 5, 373, 0, 0, 4566, 4590, 3, 664, 332, 0, 4567, 4568, 5, 304, 0, 0, 4568, 4590, 3, 656, 328, 0, 4569, 4570, 5, 363, 0, 0, 4570, 4575, 3, 658, 329, 0, 4571, 4572, 5, 397, 0, 0, 4572, 4574, 3, 658, 329, 0, 4573, 4571, 1, 0, 0, 0, 4574, 4577, 1, 0, 0, 0, 4575, 4573, 1, 0, 0, 0, 4575, 4576, 1, 0, 0, 0, 4576, 4590, 1, 0, 0, 0, 4577, 4575, 1, 0, 0, 0, 4578, 4579, 5, 274, 0, 0, 4579, 4580, 5, 341, 0, 0, 4580, 4590, 3, 638, 319, 0, 4581, 4583, 3, 660, 330, 0, 4582, 4584, 3, 662, 331, 0, 4583, 4582, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 4590, 1, 0, 0, 0, 4585, 4587, 3, 662, 331, 0, 4586, 4588, 3, 660, 330, 0, 4587, 4586, 1, 0, 0, 0, 4587, 4588, 1, 0, 0, 0, 4588, 4590, 1, 0, 0, 0, 4589, 4565, 1, 0, 0, 0, 4589, 4566, 1, 0, 0, 0, 4589, 4567, 1, 0, 0, 0, 4589, 4569, 1, 0, 0, 0, 4589, 4578, 1, 0, 0, 0, 4589, 4581, 1, 0, 0, 0, 4589, 4585, 1, 0, 0, 0, 4590, 4710, 1, 0, 0, 0, 4591, 4592, 5, 101, 0, 0, 4592, 4593, 5, 280, 0, 0, 4593, 4595, 5, 243, 0, 0, 4594, 4596, 3, 30, 15, 0, 4595, 4594, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 4597, 1, 0, 0, 0, 4597, 4710, 3, 638, 319, 0, 4598, 4601, 3, 662, 331, 0, 4599, 4601, 3, 664, 332, 0, 4600, 4598, 1, 0, 0, 0, 4600, 4599, 1, 0, 0, 0, 4601, 4602, 1, 0, 0, 0, 4602, 4603, 5, 390, 0, 0, 4603, 4604, 5, 197, 0, 0, 4604, 4710, 1, 0, 0, 0, 4605, 4617, 5, 278, 0, 0, 4606, 4607, 5, 3, 0, 0, 4607, 4608, 5, 280, 0, 0, 4608, 4609, 5, 243, 0, 0, 4609, 4610, 5, 387, 0, 0, 4610, 4618, 3, 638, 319, 0, 4611, 4612, 5, 280, 0, 0, 4612, 4613, 5, 243, 0, 0, 4613, 4614, 3, 638, 319, 0, 4614, 4615, 5, 387, 0, 0, 4615, 4616, 3, 638, 319, 0, 4616, 4618, 1, 0, 0, 0, 4617, 4606, 1, 0, 0, 0, 4617, 4611, 1, 0, 0, 0, 4618, 4710, 1, 0, 0, 0, 4619, 4620, 5, 58, 0, 0, 4620, 4621, 5, 348, 0, 0, 4621, 4622, 3, 638, 319, 0, 4622, 4623, 5, 395, 0, 0, 4623, 4624, 3, 638, 319, 0, 4624, 4625, 5, 383, 0, 0, 4625, 4626, 3, 684, 342, 0, 4626, 4627, 5, 99, 0, 0, 4627, 4628, 3, 686, 343, 0, 4628, 4710, 1, 0, 0, 0, 4629, 4630, 5, 9, 0, 0, 4630, 4631, 5, 348, 0, 0, 4631, 4632, 3, 638, 319, 0, 4632, 4633, 5, 395, 0, 0, 4633, 4650, 3, 638, 319, 0, 4634, 4635, 5, 383, 0, 0, 4635, 4636, 3, 684, 342, 0, 4636, 4637, 5, 99, 0, 0, 4637, 4638, 3, 686, 343, 0, 4638, 4651, 1, 0, 0, 0, 4639, 4640, 5, 4, 0, 0, 4640, 4644, 5, 341, 0, 0, 4641, 4642, 5, 101, 0, 0, 4642, 4644, 5, 139, 0, 0, 4643, 4639, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4644, 4648, 1, 0, 0, 0, 4645, 4646, 5, 246, 0, 0, 4646, 4649, 3, 682, 341, 0, 4647, 4649, 5, 362, 0, 0, 4648, 4645, 1, 0, 0, 0, 4648, 4647, 1, 0, 0, 0, 4649, 4651, 1, 0, 0, 0, 4650, 4634, 1, 0, 0, 0, 4650, 4643, 1, 0, 0, 0, 4651, 4710, 1, 0, 0, 0, 4652, 4653, 5, 101, 0, 0, 4653, 4654, 5, 348, 0, 0, 4654, 4655, 3, 638, 319, 0, 4655, 4656, 5, 395, 0, 0, 4656, 4657, 3, 638, 319, 0, 4657, 4710, 1, 0, 0, 0, 4658, 4659, 5, 58, 0, 0, 4659, 4660, 5, 246, 0, 0, 4660, 4661, 3, 638, 319, 0, 4661, 4662, 5, 395, 0, 0, 4662, 4663, 3, 682, 341, 0, 4663, 4664, 5, 387, 0, 0, 4664, 4665, 3, 690, 345, 0, 4665, 4710, 1, 0, 0, 0, 4666, 4667, 5, 9, 0, 0, 4667, 4668, 5, 246, 0, 0, 4668, 4669, 3, 638, 319, 0, 4669, 4670, 5, 395, 0, 0, 4670, 4678, 3, 682, 341, 0, 4671, 4672, 5, 304, 0, 0, 4672, 4679, 3, 690, 345, 0, 4673, 4674, 5, 363, 0, 0, 4674, 4679, 5, 294, 0, 0, 4675, 4676, 7, 48, 0, 0, 4676, 4677, 5, 348, 0, 0, 4677, 4679, 3, 638, 319, 0, 4678, 4671, 1, 0, 0, 0, 4678, 4673, 1, 0, 0, 0, 4678, 4675, 1, 0, 0, 0, 4679, 4710, 1, 0, 0, 0, 4680, 4681, 5, 101, 0, 0, 4681, 4682, 5, 246, 0, 0, 4682, 4683, 3, 638, 319, 0, 4683, 4684, 5, 395, 0, 0, 4684, 4685, 3, 682, 341, 0, 4685, 4710, 1, 0, 0, 0, 4686, 4687, 7, 49, 0, 0, 4687, 4688, 3, 652, 326, 0, 4688, 4689, 5, 200, 0, 0, 4689, 4690, 5, 426, 0, 0, 4690, 4691, 5, 154, 0, 0, 4691, 4695, 3, 638, 319, 0, 4692, 4693, 5, 341, 0, 0, 4693, 4696, 3, 682, 341, 0, 4694, 4696, 5, 362, 0, 0, 4695, 4692, 1, 0, 0, 0, 4695, 4694, 1, 0, 0, 0, 4696, 4700, 1, 0, 0, 0, 4697, 4698, 5, 387, 0, 0, 4698, 4699, 5, 229, 0, 0, 4699, 4701, 5, 431, 0, 0, 4700, 4697, 1, 0, 0, 0, 4700, 4701, 1, 0, 0, 0, 4701, 4710, 1, 0, 0, 0, 4702, 4703, 5, 101, 0, 0, 4703, 4704, 3, 652, 326, 0, 4704, 4705, 5, 200, 0, 0, 4705, 4706, 5, 426, 0, 0, 4706, 4707, 5, 154, 0, 0, 4707, 4708, 3, 638, 319, 0, 4708, 4710, 1, 0, 0, 0, 4709, 4544, 1, 0, 0, 0, 4709, 4561, 1, 0, 0, 0, 4709, 4591, 1, 0, 0, 0, 4709, 4600, 1, 0, 0, 0, 4709, 4605, 1, 0, 0, 0, 4709, 4619, 1, 0, 0, 0, 4709, 4629, 1, 0, 0, 0, 4709, 4652, 1, 0, 0, 0, 4709, 4658, 1, 0, 0, 0, 4709, 4666, 1, 0, 0, 0, 4709, 4680, 1, 0, 0, 0, 4709, 4686, 1, 0, 0, 0, 4709, 4702, 1, 0, 0, 0, 4710, 651, 1, 0, 0, 0, 4711, 4712, 7, 50, 0, 0, 4712, 653, 1, 0, 0, 0, 4713, 4714, 5, 259, 0, 0, 4714, 4715, 5, 405, 0, 0, 4715, 4721, 5, 431, 0, 0, 4716, 4717, 5, 83, 0, 0, 4717, 4718, 5, 246, 0, 0, 4718, 4719, 5, 405, 0, 0, 4719, 4721, 3, 682, 341, 0, 4720, 4713, 1, 0, 0, 0, 4720, 4716, 1, 0, 0, 0, 4721, 655, 1, 0, 0, 0, 4722, 4727, 3, 654, 327, 0, 4723, 4724, 5, 397, 0, 0, 4724, 4726, 3, 654, 327, 0, 4725, 4723, 1, 0, 0, 0, 4726, 4729, 1, 0, 0, 0, 4727, 4725, 1, 0, 0, 0, 4727, 4728, 1, 0, 0, 0, 4728, 657, 1, 0, 0, 0, 4729, 4727, 1, 0, 0, 0, 4730, 4734, 5, 259, 0, 0, 4731, 4732, 5, 83, 0, 0, 4732, 4734, 5, 246, 0, 0, 4733, 4730, 1, 0, 0, 0, 4733, 4731, 1, 0, 0, 0, 4734, 659, 1, 0, 0, 0, 4735, 4738, 5, 2, 0, 0, 4736, 4737, 5, 387, 0, 0, 4737, 4739, 5, 278, 0, 0, 4738, 4736, 1, 0, 0, 0, 4738, 4739, 1, 0, 0, 0, 4739, 661, 1, 0, 0, 0, 4740, 4741, 7, 51, 0, 0, 4741, 663, 1, 0, 0, 0, 4742, 4743, 7, 52, 0, 0, 4743, 665, 1, 0, 0, 0, 4744, 4745, 7, 53, 0, 0, 4745, 667, 1, 0, 0, 0, 4746, 4747, 7, 54, 0, 0, 4747, 669, 1, 0, 0, 0, 4748, 4749, 7, 55, 0, 0, 4749, 671, 1, 0, 0, 0, 4750, 4751, 7, 56, 0, 0, 4751, 673, 1, 0, 0, 0, 4752, 4753, 7, 57, 0, 0, 4753, 675, 1, 0, 0, 0, 4754, 4755, 7, 58, 0, 0, 4755, 677, 1, 0, 0, 0, 4756, 4757, 7, 59, 0, 0, 4757, 679, 1, 0, 0, 0, 4758, 4759, 7, 60, 0, 0, 4759, 681, 1, 0, 0, 0, 4760, 4765, 3, 638, 319, 0, 4761, 4762, 5, 395, 0, 0, 4762, 4764, 3, 638, 319, 0, 4763, 4761, 1, 0, 0, 0, 4764, 4767, 1, 0, 0, 0, 4765, 4763, 1, 0, 0, 0, 4765, 4766, 1, 0, 0, 0, 4766, 683, 1, 0, 0, 0, 4767, 4765, 1, 0, 0, 0, 4768, 4769, 3, 638, 319, 0, 4769, 4770, 5, 411, 0, 0, 4770, 4771, 7, 27, 0, 0, 4771, 685, 1, 0, 0, 0, 4772, 4777, 5, 176, 0, 0, 4773, 4774, 5, 211, 0, 0, 4774, 4775, 5, 341, 0, 0, 4775, 4777, 3, 682, 341, 0, 4776, 4772, 1, 0, 0, 0, 4776, 4773, 1, 0, 0, 0, 4777, 687, 1, 0, 0, 0, 4778, 4779, 5, 8, 0, 0, 4779, 4780, 5, 405, 0, 0, 4780, 4791, 5, 431, 0, 0, 4781, 4782, 5, 259, 0, 0, 4782, 4783, 5, 405, 0, 0, 4783, 4791, 5, 431, 0, 0, 4784, 4785, 5, 294, 0, 0, 4785, 4786, 5, 405, 0, 0, 4786, 4791, 5, 426, 0, 0, 4787, 4788, 5, 240, 0, 0, 4788, 4789, 5, 405, 0, 0, 4789, 4791, 3, 682, 341, 0, 4790, 4778, 1, 0, 0, 0, 4790, 4781, 1, 0, 0, 0, 4790, 4784, 1, 0, 0, 0, 4790, 4787, 1, 0, 0, 0, 4791, 689, 1, 0, 0, 0, 4792, 4797, 3, 688, 344, 0, 4793, 4794, 5, 397, 0, 0, 4794, 4796, 3, 688, 344, 0, 4795, 4793, 1, 0, 0, 0, 4796, 4799, 1, 0, 0, 0, 4797, 4795, 1, 0, 0, 0, 4797, 4798, 1, 0, 0, 0, 4798, 691, 1, 0, 0, 0, 4799, 4797, 1, 0, 0, 0, 621, 695, 702, 705, 711, 717, 724, 734, 737, 741, 756, 763, 769, 774, 779, 782, 806, 813, 816, 821, 826, 832, 836, 849, 853, 857, 862, 869, 873, 878, 885, 889, 894, 942, 949, 954, 977, 981, 985, 988, 992, 997, 1003, 1007, 1013, 1015, 1026, 1030, 1037, 1045, 1048, 1053, 1057, 1060, 1070, 1078, 1082, 1085, 1089, 1093, 1096, 1101, 1107, 1112, 1117, 1121, 1132, 1134, 1138, 1148, 1152, 1158, 1161, 1168, 1173, 1181, 1186, 1190, 1198, 1203, 1209, 1215, 1218, 1221, 1224, 1233, 1241, 1246, 1254, 1261, 1264, 1267, 1269, 1280, 1282, 1285, 1288, 1291, 1294, 1297, 1299, 1311, 1317, 1325, 1327, 1337, 1370, 1375, 1379, 1383, 1390, 1397, 1403, 1407, 1410, 1417, 1440, 1445, 1449, 1457, 1466, 1473, 1479, 1486, 1489, 1495, 1502, 1510, 1519, 1528, 1535, 1555, 1562, 1564, 1571, 1581, 1589, 1593, 1597, 1610, 1619, 1635, 1639, 1644, 1649, 1652, 1655, 1658, 1661, 1664, 1669, 1678, 1682, 1689, 1692, 1695, 1698, 1710, 1716, 1742, 1750, 1754, 1757, 1760, 1763, 1766, 1769, 1772, 1775, 1784, 1794, 1797, 1817, 1823, 1829, 1832, 1834, 1841, 1848, 1861, 1866, 1875, 1883, 1891, 1904, 1917, 1933, 1937, 1952, 1958, 1961, 1964, 1967, 1970, 1974, 1989, 1992, 2003, 2017, 2051, 2059, 2064, 2072, 2077, 2082, 2089, 2097, 2105, 2113, 2118, 2128, 2132, 2140, 2149, 2152, 2156, 2163, 2169, 2173, 2179, 2183, 2195, 2204, 2215, 2219, 2226, 2238, 2248, 2251, 2258, 2264, 2268, 2271, 2274, 2280, 2284, 2288, 2293, 2297, 2301, 2305, 2313, 2317, 2321, 2325, 2329, 2337, 2341, 2345, 2353, 2358, 2363, 2367, 2371, 2378, 2387, 2395, 2407, 2425, 2428, 2434, 2460, 2463, 2469, 2477, 2485, 2498, 2505, 2508, 2511, 2514, 2517, 2520, 2523, 2526, 2529, 2532, 2535, 2540, 2543, 2546, 2549, 2552, 2555, 2558, 2561, 2564, 2567, 2570, 2572, 2578, 2582, 2585, 2588, 2591, 2594, 2597, 2604, 2608, 2611, 2614, 2617, 2620, 2623, 2630, 2633, 2641, 2645, 2652, 2654, 2657, 2662, 2665, 2669, 2674, 2680, 2688, 2696, 2706, 2709, 2713, 2717, 2722, 2729, 2733, 2735, 2739, 2746, 2751, 2764, 2772, 2791, 2801, 2814, 2824, 2828, 2832, 2838, 2845, 2852, 2861, 2868, 2888, 2891, 2905, 2920, 2924, 2944, 2956, 2962, 2965, 2968, 2974, 2980, 2987, 2995, 3001, 3005, 3010, 3013, 3017, 3024, 3029, 3034, 3037, 3039, 3047, 3055, 3059, 3063, 3067, 3084, 3101, 3108, 3117, 3122, 3125, 3128, 3132, 3147, 3161, 3164, 3175, 3179, 3182, 3185, 3189, 3194, 3197, 3200, 3203, 3206, 3209, 3215, 3218, 3221, 3224, 3227, 3230, 3233, 3236, 3239, 3242, 3246, 3248, 3254, 3259, 3262, 3265, 3268, 3271, 3277, 3280, 3283, 3286, 3289, 3292, 3295, 3298, 3301, 3304, 3308, 3310, 3312, 3317, 3322, 3326, 3330, 3335, 3340, 3349, 3359, 3367, 3379, 3382, 3388, 3395, 3402, 3409, 3416, 3425, 3429, 3436, 3441, 3445, 3449, 3452, 3455, 3466, 3470, 3472, 3475, 3488, 3491, 3494, 3506, 3509, 3516, 3525, 3530, 3532, 3534, 3551, 3554, 3562, 3565, 3569, 3572, 3575, 3578, 3581, 3593, 3601, 3608, 3611, 3618, 3621, 3626, 3633, 3641, 3649, 3654, 3658, 3663, 3670, 3684, 3687, 3691, 3702, 3712, 3715, 3722, 3731, 3734, 3740, 3743, 3750, 3755, 3758, 3771, 3777, 3779, 3787, 3790, 3800, 3805, 3807, 3819, 3825, 3827, 3834, 3841, 3855, 3861, 3864, 3867, 3870, 3879, 3886, 3892, 3901, 3905, 3913, 3923, 3933, 3938, 3942, 3948, 3953, 3963, 3967, 3970, 3975, 3978, 3982, 3987, 3998, 4000, 4009, 4028, 4038, 4041, 4048, 4051, 4061, 4068, 4071, 4073, 4084, 4094, 4096, 4105, 4110, 4119, 4132, 4136, 4148, 4152, 4161, 4180, 4198, 4210, 4225, 4229, 4245, 4252, 4266, 4271, 4281, 4283, 4291, 4299, 4307, 4315, 4323, 4331, 4342, 4346, 4354, 4370, 4374, 4379, 4392, 4401, 4403, 4412, 4417, 4423, 4430, 4435, 4444, 4452, 4460, 4468, 4478, 4483, 4542, 4548, 4557, 4559, 4575, 4583, 4587, 4589, 4595, 4600, 4617, 4643, 4648, 4650, 4678, 4695, 4700, 4709, 4720, 4727, 4733, 4738, 4765, 4776, 4790, 4797] \ No newline at end of file +[4, 1, 438, 4820, 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, 1, 0, 5, 0, 704, 8, 0, 10, 0, 12, 0, 707, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 713, 8, 1, 1, 1, 3, 1, 716, 8, 1, 1, 2, 1, 2, 5, 2, 720, 8, 2, 10, 2, 12, 2, 723, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 728, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 735, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 745, 8, 3, 1, 3, 3, 3, 748, 8, 3, 1, 3, 1, 3, 3, 3, 752, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 767, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 774, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 780, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 785, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 790, 8, 5, 1, 5, 3, 5, 793, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 815, 8, 5, 10, 5, 12, 5, 818, 9, 5, 1, 5, 1, 5, 5, 5, 822, 8, 5, 10, 5, 12, 5, 825, 9, 5, 3, 5, 827, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 832, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 837, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 843, 8, 6, 1, 7, 1, 7, 3, 7, 847, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 860, 8, 8, 1, 9, 1, 9, 3, 9, 864, 8, 9, 1, 9, 1, 9, 3, 9, 868, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 873, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 880, 8, 10, 1, 10, 1, 10, 3, 10, 884, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 889, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 896, 8, 12, 1, 12, 1, 12, 3, 12, 900, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 905, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 951, 8, 14, 11, 14, 12, 14, 952, 1, 14, 1, 14, 1, 14, 4, 14, 958, 8, 14, 11, 14, 12, 14, 959, 1, 14, 1, 14, 1, 14, 3, 14, 965, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 988, 8, 21, 1, 21, 1, 21, 3, 21, 992, 8, 21, 1, 21, 1, 21, 3, 21, 996, 8, 21, 1, 21, 3, 21, 999, 8, 21, 1, 21, 1, 21, 3, 21, 1003, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1008, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1014, 8, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1024, 8, 21, 3, 21, 1026, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1037, 8, 24, 1, 24, 1, 24, 3, 24, 1041, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1048, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1056, 8, 26, 1, 26, 3, 26, 1059, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1064, 8, 27, 1, 27, 1, 27, 3, 27, 1068, 8, 27, 1, 27, 3, 27, 1071, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1081, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1089, 8, 29, 5, 29, 1091, 8, 29, 10, 29, 12, 29, 1094, 9, 29, 3, 29, 1096, 8, 29, 1, 30, 1, 30, 3, 30, 1100, 8, 30, 1, 31, 1, 31, 3, 31, 1104, 8, 31, 1, 31, 3, 31, 1107, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1112, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1118, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1123, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1128, 8, 32, 1, 32, 1, 32, 3, 32, 1132, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1143, 8, 33, 3, 33, 1145, 8, 33, 1, 33, 1, 33, 3, 33, 1149, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1159, 8, 36, 1, 36, 1, 36, 3, 36, 1163, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1169, 8, 36, 1, 36, 3, 36, 1172, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1179, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1184, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1192, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1197, 8, 36, 1, 36, 1, 36, 3, 36, 1201, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1209, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1214, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1220, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1226, 8, 36, 1, 36, 3, 36, 1229, 8, 36, 1, 36, 3, 36, 1232, 8, 36, 1, 36, 3, 36, 1235, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1244, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1252, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1257, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1265, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1272, 8, 36, 1, 36, 3, 36, 1275, 8, 36, 1, 36, 3, 36, 1278, 8, 36, 3, 36, 1280, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1291, 8, 36, 3, 36, 1293, 8, 36, 1, 36, 3, 36, 1296, 8, 36, 1, 36, 3, 36, 1299, 8, 36, 1, 36, 3, 36, 1302, 8, 36, 1, 36, 3, 36, 1305, 8, 36, 1, 36, 3, 36, 1308, 8, 36, 3, 36, 1310, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1322, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1328, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1336, 8, 36, 3, 36, 1338, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1348, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1381, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1386, 8, 45, 1, 46, 1, 46, 3, 46, 1390, 8, 46, 1, 46, 1, 46, 3, 46, 1394, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1401, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1406, 8, 47, 10, 47, 12, 47, 1409, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1414, 8, 47, 1, 48, 1, 48, 3, 48, 1418, 8, 48, 1, 48, 3, 48, 1421, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1426, 8, 48, 10, 48, 12, 48, 1429, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1451, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1456, 8, 53, 1, 53, 1, 53, 3, 53, 1460, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1468, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1477, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1484, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1490, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1497, 8, 58, 1, 58, 3, 58, 1500, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1506, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1511, 8, 59, 10, 59, 12, 59, 1514, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1521, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1528, 8, 62, 10, 62, 12, 62, 1531, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1539, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1546, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1566, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1573, 8, 69, 3, 69, 1575, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1580, 8, 70, 10, 70, 12, 70, 1583, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1592, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1600, 8, 73, 1, 74, 1, 74, 3, 74, 1604, 8, 74, 1, 74, 1, 74, 3, 74, 1608, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1621, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1630, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1646, 8, 78, 1, 78, 1, 78, 3, 78, 1650, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1655, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1660, 8, 78, 1, 78, 3, 78, 1663, 8, 78, 1, 78, 3, 78, 1666, 8, 78, 1, 78, 3, 78, 1669, 8, 78, 1, 78, 3, 78, 1672, 8, 78, 1, 78, 3, 78, 1675, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1680, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1689, 8, 80, 1, 80, 1, 80, 3, 80, 1693, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1700, 8, 80, 1, 80, 3, 80, 1703, 8, 80, 1, 80, 3, 80, 1706, 8, 80, 1, 80, 3, 80, 1709, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1721, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1727, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1753, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1761, 8, 88, 1, 88, 1, 88, 3, 88, 1765, 8, 88, 1, 88, 3, 88, 1768, 8, 88, 1, 88, 3, 88, 1771, 8, 88, 1, 88, 3, 88, 1774, 8, 88, 1, 88, 3, 88, 1777, 8, 88, 1, 88, 3, 88, 1780, 8, 88, 1, 88, 3, 88, 1783, 8, 88, 1, 88, 3, 88, 1786, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1795, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1805, 8, 90, 1, 90, 3, 90, 1808, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1828, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1834, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1840, 8, 94, 1, 94, 3, 94, 1843, 8, 94, 3, 94, 1845, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1852, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1859, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1872, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1877, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1884, 8, 101, 10, 101, 12, 101, 1887, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1892, 8, 102, 10, 102, 12, 102, 1895, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1902, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1915, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1928, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1944, 8, 105, 1, 106, 1, 106, 3, 106, 1948, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1963, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1969, 8, 110, 1, 110, 3, 110, 1972, 8, 110, 1, 110, 3, 110, 1975, 8, 110, 1, 110, 3, 110, 1978, 8, 110, 1, 110, 3, 110, 1981, 8, 110, 1, 111, 1, 111, 3, 111, 1985, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1998, 8, 114, 10, 114, 12, 114, 2001, 9, 114, 3, 114, 2003, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2012, 8, 116, 10, 116, 12, 116, 2015, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2028, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2062, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2070, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2075, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2083, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2088, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2093, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2098, 8, 124, 10, 124, 12, 124, 2101, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2106, 8, 125, 10, 125, 12, 125, 2109, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2114, 8, 126, 10, 126, 12, 126, 2117, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2122, 8, 127, 10, 127, 12, 127, 2125, 9, 127, 1, 128, 1, 128, 3, 128, 2129, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 2139, 8, 130, 5, 130, 2141, 8, 130, 10, 130, 12, 130, 2144, 9, 130, 1, 131, 1, 131, 1, 131, 5, 131, 2149, 8, 131, 10, 131, 12, 131, 2152, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 3, 133, 2160, 8, 133, 1, 133, 3, 133, 2163, 8, 133, 1, 134, 1, 134, 3, 134, 2167, 8, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 3, 136, 2174, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 3, 138, 2180, 8, 138, 1, 138, 1, 138, 3, 138, 2184, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2190, 8, 139, 1, 140, 1, 140, 3, 140, 2194, 8, 140, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 3, 143, 2206, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2215, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2226, 8, 144, 1, 145, 1, 145, 3, 145, 2230, 8, 145, 1, 146, 1, 146, 1, 146, 5, 146, 2235, 8, 146, 10, 146, 12, 146, 2238, 9, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2247, 8, 148, 10, 148, 12, 148, 2250, 9, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2259, 8, 151, 1, 151, 3, 151, 2262, 8, 151, 1, 152, 1, 152, 1, 152, 5, 152, 2267, 8, 152, 10, 152, 12, 152, 2270, 9, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2275, 8, 153, 1, 154, 1, 154, 3, 154, 2279, 8, 154, 1, 154, 3, 154, 2282, 8, 154, 1, 154, 3, 154, 2285, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2291, 8, 155, 1, 156, 1, 156, 3, 156, 2295, 8, 156, 1, 157, 1, 157, 3, 157, 2299, 8, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2304, 8, 158, 1, 158, 1, 158, 3, 158, 2308, 8, 158, 1, 159, 1, 159, 3, 159, 2312, 8, 159, 1, 160, 1, 160, 3, 160, 2316, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2324, 8, 160, 1, 161, 1, 161, 3, 161, 2328, 8, 161, 1, 161, 1, 161, 3, 161, 2332, 8, 161, 1, 162, 1, 162, 3, 162, 2336, 8, 162, 1, 163, 1, 163, 3, 163, 2340, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2348, 8, 163, 1, 164, 1, 164, 3, 164, 2352, 8, 164, 1, 164, 1, 164, 3, 164, 2356, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2364, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2369, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2374, 8, 167, 1, 168, 1, 168, 3, 168, 2378, 8, 168, 1, 169, 1, 169, 3, 169, 2382, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2389, 8, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 2396, 8, 172, 10, 172, 12, 172, 2399, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2406, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2418, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2436, 8, 174, 1, 174, 3, 174, 2439, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2445, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 2471, 8, 179, 1, 180, 3, 180, 2474, 8, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2480, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 2486, 8, 182, 10, 182, 12, 182, 2489, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2496, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2507, 8, 184, 10, 184, 12, 184, 2510, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2516, 8, 185, 1, 185, 3, 185, 2519, 8, 185, 1, 185, 3, 185, 2522, 8, 185, 1, 185, 3, 185, 2525, 8, 185, 1, 185, 3, 185, 2528, 8, 185, 1, 185, 3, 185, 2531, 8, 185, 1, 185, 3, 185, 2534, 8, 185, 1, 185, 3, 185, 2537, 8, 185, 1, 185, 3, 185, 2540, 8, 185, 1, 185, 3, 185, 2543, 8, 185, 1, 185, 3, 185, 2546, 8, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2551, 8, 185, 1, 185, 3, 185, 2554, 8, 185, 1, 185, 3, 185, 2557, 8, 185, 1, 185, 3, 185, 2560, 8, 185, 1, 185, 3, 185, 2563, 8, 185, 1, 185, 3, 185, 2566, 8, 185, 1, 185, 3, 185, 2569, 8, 185, 1, 185, 3, 185, 2572, 8, 185, 1, 185, 3, 185, 2575, 8, 185, 1, 185, 3, 185, 2578, 8, 185, 1, 185, 3, 185, 2581, 8, 185, 3, 185, 2583, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2589, 8, 186, 1, 187, 1, 187, 3, 187, 2593, 8, 187, 1, 187, 3, 187, 2596, 8, 187, 1, 187, 3, 187, 2599, 8, 187, 1, 187, 3, 187, 2602, 8, 187, 1, 187, 3, 187, 2605, 8, 187, 1, 187, 3, 187, 2608, 8, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2615, 8, 187, 1, 188, 1, 188, 3, 188, 2619, 8, 188, 1, 188, 3, 188, 2622, 8, 188, 1, 188, 3, 188, 2625, 8, 188, 1, 188, 3, 188, 2628, 8, 188, 1, 188, 3, 188, 2631, 8, 188, 1, 188, 3, 188, 2634, 8, 188, 1, 189, 1, 189, 1, 189, 4, 189, 2639, 8, 189, 11, 189, 12, 189, 2640, 1, 190, 3, 190, 2644, 8, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2652, 8, 191, 1, 191, 1, 191, 3, 191, 2656, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 2663, 8, 191, 3, 191, 2665, 8, 191, 1, 192, 3, 192, 2668, 8, 192, 1, 192, 1, 192, 1, 192, 3, 192, 2673, 8, 192, 1, 192, 3, 192, 2676, 8, 192, 1, 192, 1, 192, 3, 192, 2680, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 2685, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2691, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 2699, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 2705, 8, 196, 10, 196, 12, 196, 2708, 9, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 5, 197, 2715, 8, 197, 10, 197, 12, 197, 2718, 9, 197, 3, 197, 2720, 8, 197, 1, 197, 1, 197, 3, 197, 2724, 8, 197, 1, 197, 1, 197, 3, 197, 2728, 8, 197, 1, 197, 1, 197, 1, 197, 3, 197, 2733, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 2740, 8, 198, 1, 199, 1, 199, 5, 199, 2744, 8, 199, 10, 199, 12, 199, 2747, 9, 199, 1, 199, 3, 199, 2750, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2757, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2762, 8, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 3, 201, 2775, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2783, 8, 202, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2802, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2812, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 2825, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2835, 8, 207, 1, 207, 1, 207, 3, 207, 2839, 8, 207, 4, 207, 2841, 8, 207, 11, 207, 12, 207, 2842, 1, 207, 1, 207, 5, 207, 2847, 8, 207, 10, 207, 12, 207, 2850, 9, 207, 1, 207, 1, 207, 5, 207, 2854, 8, 207, 10, 207, 12, 207, 2857, 9, 207, 1, 207, 1, 207, 5, 207, 2861, 8, 207, 10, 207, 12, 207, 2864, 9, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2872, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2879, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2899, 8, 207, 1, 207, 3, 207, 2902, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 2916, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2931, 8, 208, 1, 208, 1, 208, 3, 208, 2935, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 5, 208, 2953, 8, 208, 10, 208, 12, 208, 2956, 9, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2967, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2973, 8, 208, 1, 208, 3, 208, 2976, 8, 208, 1, 208, 3, 208, 2979, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2985, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2991, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2998, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3006, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3012, 8, 208, 1, 208, 1, 208, 3, 208, 3016, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3021, 8, 208, 1, 208, 3, 208, 3024, 8, 208, 1, 208, 1, 208, 3, 208, 3028, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3035, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3040, 8, 208, 1, 208, 1, 208, 1, 208, 3, 208, 3045, 8, 208, 1, 208, 3, 208, 3048, 8, 208, 3, 208, 3050, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3058, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 3066, 8, 209, 1, 209, 1, 209, 3, 209, 3070, 8, 209, 4, 209, 3072, 8, 209, 11, 209, 12, 209, 3073, 1, 209, 1, 209, 3, 209, 3078, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3095, 8, 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, 3, 211, 3112, 8, 211, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 3, 213, 3119, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 5, 213, 3126, 8, 213, 10, 213, 12, 213, 3129, 9, 213, 1, 213, 1, 213, 3, 213, 3133, 8, 213, 1, 213, 3, 213, 3136, 8, 213, 1, 213, 3, 213, 3139, 8, 213, 1, 214, 1, 214, 3, 214, 3143, 8, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 3158, 8, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 3172, 8, 216, 1, 216, 3, 216, 3175, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3186, 8, 217, 1, 218, 1, 218, 3, 218, 3190, 8, 218, 1, 218, 3, 218, 3193, 8, 218, 1, 218, 3, 218, 3196, 8, 218, 1, 218, 1, 218, 3, 218, 3200, 8, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3205, 8, 218, 1, 218, 3, 218, 3208, 8, 218, 1, 218, 3, 218, 3211, 8, 218, 1, 218, 3, 218, 3214, 8, 218, 1, 218, 3, 218, 3217, 8, 218, 1, 218, 3, 218, 3220, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3226, 8, 218, 1, 218, 3, 218, 3229, 8, 218, 1, 218, 3, 218, 3232, 8, 218, 1, 218, 3, 218, 3235, 8, 218, 1, 218, 3, 218, 3238, 8, 218, 1, 218, 3, 218, 3241, 8, 218, 1, 218, 3, 218, 3244, 8, 218, 1, 218, 3, 218, 3247, 8, 218, 1, 218, 3, 218, 3250, 8, 218, 1, 218, 3, 218, 3253, 8, 218, 1, 218, 1, 218, 3, 218, 3257, 8, 218, 3, 218, 3259, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3265, 8, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3270, 8, 218, 1, 218, 3, 218, 3273, 8, 218, 1, 218, 3, 218, 3276, 8, 218, 1, 218, 3, 218, 3279, 8, 218, 1, 218, 3, 218, 3282, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3288, 8, 218, 1, 218, 3, 218, 3291, 8, 218, 1, 218, 3, 218, 3294, 8, 218, 1, 218, 3, 218, 3297, 8, 218, 1, 218, 3, 218, 3300, 8, 218, 1, 218, 3, 218, 3303, 8, 218, 1, 218, 3, 218, 3306, 8, 218, 1, 218, 3, 218, 3309, 8, 218, 1, 218, 3, 218, 3312, 8, 218, 1, 218, 3, 218, 3315, 8, 218, 1, 218, 1, 218, 3, 218, 3319, 8, 218, 3, 218, 3321, 8, 218, 3, 218, 3323, 8, 218, 1, 219, 1, 219, 1, 219, 3, 219, 3328, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3333, 8, 219, 1, 219, 1, 219, 3, 219, 3337, 8, 219, 1, 219, 1, 219, 3, 219, 3341, 8, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3346, 8, 219, 1, 220, 1, 220, 1, 220, 3, 220, 3351, 8, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 5, 221, 3358, 8, 221, 10, 221, 12, 221, 3361, 9, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 5, 222, 3368, 8, 222, 10, 222, 12, 222, 3371, 9, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3376, 8, 223, 10, 223, 12, 223, 3379, 9, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 3388, 8, 225, 11, 225, 12, 225, 3389, 1, 225, 3, 225, 3393, 8, 225, 1, 226, 1, 226, 5, 226, 3397, 8, 226, 10, 226, 12, 226, 3400, 9, 226, 1, 226, 1, 226, 5, 226, 3404, 8, 226, 10, 226, 12, 226, 3407, 9, 226, 1, 226, 1, 226, 5, 226, 3411, 8, 226, 10, 226, 12, 226, 3414, 9, 226, 1, 226, 1, 226, 5, 226, 3418, 8, 226, 10, 226, 12, 226, 3421, 9, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 3427, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 3436, 8, 227, 5, 227, 3438, 8, 227, 10, 227, 12, 227, 3441, 9, 227, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3447, 8, 228, 1, 228, 5, 228, 3450, 8, 228, 10, 228, 12, 228, 3453, 9, 228, 1, 229, 3, 229, 3456, 8, 229, 1, 229, 1, 229, 3, 229, 3460, 8, 229, 1, 229, 3, 229, 3463, 8, 229, 1, 229, 3, 229, 3466, 8, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3477, 8, 230, 1, 230, 1, 230, 3, 230, 3481, 8, 230, 3, 230, 3483, 8, 230, 1, 230, 3, 230, 3486, 8, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3497, 8, 231, 10, 231, 12, 231, 3500, 9, 231, 3, 231, 3502, 8, 231, 1, 231, 3, 231, 3505, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3515, 8, 231, 10, 231, 12, 231, 3518, 9, 231, 3, 231, 3520, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 3527, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 5, 231, 3534, 8, 231, 10, 231, 12, 231, 3537, 9, 231, 1, 231, 1, 231, 3, 231, 3541, 8, 231, 3, 231, 3543, 8, 231, 3, 231, 3545, 8, 231, 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, 5, 233, 3560, 8, 233, 10, 233, 12, 233, 3563, 9, 233, 3, 233, 3565, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3573, 8, 233, 1, 233, 3, 233, 3576, 8, 233, 1, 234, 1, 234, 3, 234, 3580, 8, 234, 1, 234, 3, 234, 3583, 8, 234, 1, 234, 3, 234, 3586, 8, 234, 1, 234, 3, 234, 3589, 8, 234, 1, 234, 3, 234, 3592, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3604, 8, 235, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 3, 238, 3612, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 3619, 8, 239, 1, 239, 3, 239, 3622, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 3629, 8, 240, 1, 240, 3, 240, 3632, 8, 240, 1, 241, 1, 241, 1, 241, 3, 241, 3637, 8, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 3, 242, 3644, 8, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 3652, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3660, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 3665, 8, 244, 1, 244, 1, 244, 3, 244, 3669, 8, 244, 1, 245, 1, 245, 1, 245, 3, 245, 3674, 8, 245, 1, 246, 1, 246, 3, 246, 3678, 8, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 3685, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 5, 247, 3697, 8, 247, 10, 247, 12, 247, 3700, 9, 247, 3, 247, 3702, 8, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3713, 8, 249, 10, 249, 12, 249, 3716, 9, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3723, 8, 249, 10, 249, 12, 249, 3726, 9, 249, 3, 249, 3728, 8, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 3737, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3744, 8, 251, 10, 251, 12, 251, 3747, 9, 251, 3, 251, 3749, 8, 251, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 3755, 8, 252, 1, 252, 3, 252, 3758, 8, 252, 1, 252, 1, 252, 1, 252, 3, 252, 3763, 8, 252, 1, 252, 3, 252, 3766, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 3779, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 3785, 8, 253, 3, 253, 3787, 8, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 5, 254, 3795, 8, 254, 10, 254, 12, 254, 3798, 9, 254, 1, 255, 1, 255, 1, 255, 3, 255, 3803, 8, 255, 1, 255, 3, 255, 3806, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 5, 255, 3814, 8, 255, 10, 255, 12, 255, 3817, 9, 255, 1, 255, 1, 255, 3, 255, 3821, 8, 255, 3, 255, 3823, 8, 255, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3839, 8, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 3845, 8, 258, 3, 258, 3847, 8, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 3, 259, 3854, 8, 259, 1, 260, 1, 260, 1, 260, 5, 260, 3859, 8, 260, 10, 260, 12, 260, 3862, 9, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 3873, 8, 261, 10, 261, 12, 261, 3876, 9, 261, 1, 262, 1, 262, 1, 262, 3, 262, 3881, 8, 262, 1, 262, 3, 262, 3884, 8, 262, 1, 262, 3, 262, 3887, 8, 262, 1, 262, 3, 262, 3890, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 3899, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 3906, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 3912, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3921, 8, 265, 1, 266, 1, 266, 3, 266, 3925, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 5, 266, 3931, 8, 266, 10, 266, 12, 266, 3934, 9, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3943, 8, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 5, 267, 3951, 8, 267, 10, 267, 12, 267, 3954, 9, 267, 1, 267, 1, 267, 3, 267, 3958, 8, 267, 1, 268, 1, 268, 3, 268, 3962, 8, 268, 1, 268, 1, 268, 5, 268, 3966, 8, 268, 10, 268, 12, 268, 3969, 9, 268, 1, 268, 1, 268, 3, 268, 3973, 8, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 1, 271, 3, 271, 3983, 8, 271, 1, 272, 1, 272, 3, 272, 3987, 8, 272, 1, 272, 3, 272, 3990, 8, 272, 1, 272, 1, 272, 1, 272, 3, 272, 3995, 8, 272, 1, 272, 3, 272, 3998, 8, 272, 5, 272, 4000, 8, 272, 10, 272, 12, 272, 4003, 9, 272, 1, 273, 1, 273, 3, 273, 4007, 8, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 4, 275, 4016, 8, 275, 11, 275, 12, 275, 4017, 3, 275, 4020, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 4027, 8, 276, 10, 276, 12, 276, 4030, 9, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 5, 279, 4046, 8, 279, 10, 279, 12, 279, 4049, 9, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 5, 279, 4056, 8, 279, 10, 279, 12, 279, 4059, 9, 279, 3, 279, 4061, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 4068, 8, 280, 1, 280, 3, 280, 4071, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 4081, 8, 280, 1, 280, 1, 280, 1, 280, 5, 280, 4086, 8, 280, 10, 280, 12, 280, 4089, 9, 280, 3, 280, 4091, 8, 280, 3, 280, 4093, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 4104, 8, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 4114, 8, 280, 3, 280, 4116, 8, 280, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 283, 1, 283, 3, 283, 4125, 8, 283, 1, 284, 1, 284, 1, 284, 3, 284, 4130, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 4139, 8, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 4, 286, 4150, 8, 286, 11, 286, 12, 286, 4151, 1, 286, 1, 286, 3, 286, 4156, 8, 286, 1, 286, 1, 286, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 4, 287, 4166, 8, 287, 11, 287, 12, 287, 4167, 1, 287, 1, 287, 3, 287, 4172, 8, 287, 1, 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4181, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 3, 290, 4200, 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, 5, 291, 4216, 8, 291, 10, 291, 12, 291, 4219, 9, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4230, 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, 3, 293, 4245, 8, 293, 1, 293, 1, 293, 3, 293, 4249, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 4265, 8, 294, 1, 295, 1, 295, 1, 295, 5, 295, 4270, 8, 295, 10, 295, 12, 295, 4273, 9, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4286, 8, 296, 1, 297, 5, 297, 4289, 8, 297, 10, 297, 12, 297, 4292, 9, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 5, 297, 4301, 8, 297, 10, 297, 12, 297, 4304, 9, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4309, 8, 298, 10, 298, 12, 298, 4312, 9, 298, 1, 299, 1, 299, 1, 299, 5, 299, 4317, 8, 299, 10, 299, 12, 299, 4320, 9, 299, 1, 300, 1, 300, 1, 300, 5, 300, 4325, 8, 300, 10, 300, 12, 300, 4328, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4333, 8, 301, 10, 301, 12, 301, 4336, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4341, 8, 302, 10, 302, 12, 302, 4344, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4349, 8, 303, 10, 303, 12, 303, 4352, 9, 303, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 3, 306, 4362, 8, 306, 1, 306, 1, 306, 3, 306, 4366, 8, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 4374, 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, 1, 308, 1, 308, 3, 308, 4390, 8, 308, 1, 309, 1, 309, 3, 309, 4394, 8, 309, 1, 310, 1, 310, 1, 310, 3, 310, 4399, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 4412, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 5, 313, 4421, 8, 313, 10, 313, 12, 313, 4424, 9, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 4432, 8, 314, 1, 315, 5, 315, 4435, 8, 315, 10, 315, 12, 315, 4438, 9, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4443, 8, 315, 1, 316, 1, 316, 1, 316, 5, 316, 4448, 8, 316, 10, 316, 12, 316, 4451, 9, 316, 1, 317, 1, 317, 3, 317, 4455, 8, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 5, 318, 4462, 8, 318, 10, 318, 12, 318, 4465, 9, 318, 1, 318, 1, 318, 1, 319, 1, 319, 1, 319, 3, 319, 4472, 8, 319, 1, 320, 1, 320, 1, 320, 1, 320, 5, 320, 4478, 8, 320, 10, 320, 12, 320, 4481, 9, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 3, 321, 4488, 8, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 3, 324, 4498, 8, 324, 1, 325, 1, 325, 1, 325, 3, 325, 4503, 8, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 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, 3, 329, 4562, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4568, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4577, 8, 330, 3, 330, 4579, 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, 5, 330, 4593, 8, 330, 10, 330, 12, 330, 4596, 9, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4603, 8, 330, 1, 330, 1, 330, 3, 330, 4607, 8, 330, 3, 330, 4609, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4615, 8, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4620, 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, 3, 330, 4637, 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, 3, 330, 4663, 8, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4668, 8, 330, 3, 330, 4670, 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, 3, 330, 4698, 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, 3, 330, 4715, 8, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4720, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 4729, 8, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4740, 8, 332, 1, 333, 1, 333, 1, 333, 5, 333, 4745, 8, 333, 10, 333, 12, 333, 4748, 9, 333, 1, 334, 1, 334, 1, 334, 3, 334, 4753, 8, 334, 1, 335, 1, 335, 1, 335, 3, 335, 4758, 8, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 5, 346, 4783, 8, 346, 10, 346, 12, 346, 4786, 9, 346, 1, 347, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 4796, 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, 3, 349, 4810, 8, 349, 1, 350, 1, 350, 1, 350, 5, 350, 4815, 8, 350, 10, 350, 12, 350, 4818, 9, 350, 1, 350, 1, 823, 0, 351, 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, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5406, 0, 705, 1, 0, 0, 0, 2, 712, 1, 0, 0, 0, 4, 717, 1, 0, 0, 0, 6, 751, 1, 0, 0, 0, 8, 753, 1, 0, 0, 0, 10, 826, 1, 0, 0, 0, 12, 828, 1, 0, 0, 0, 14, 844, 1, 0, 0, 0, 16, 853, 1, 0, 0, 0, 18, 861, 1, 0, 0, 0, 20, 874, 1, 0, 0, 0, 22, 885, 1, 0, 0, 0, 24, 890, 1, 0, 0, 0, 26, 901, 1, 0, 0, 0, 28, 964, 1, 0, 0, 0, 30, 966, 1, 0, 0, 0, 32, 969, 1, 0, 0, 0, 34, 973, 1, 0, 0, 0, 36, 975, 1, 0, 0, 0, 38, 978, 1, 0, 0, 0, 40, 981, 1, 0, 0, 0, 42, 1025, 1, 0, 0, 0, 44, 1027, 1, 0, 0, 0, 46, 1030, 1, 0, 0, 0, 48, 1033, 1, 0, 0, 0, 50, 1042, 1, 0, 0, 0, 52, 1045, 1, 0, 0, 0, 54, 1060, 1, 0, 0, 0, 56, 1072, 1, 0, 0, 0, 58, 1077, 1, 0, 0, 0, 60, 1097, 1, 0, 0, 0, 62, 1101, 1, 0, 0, 0, 64, 1108, 1, 0, 0, 0, 66, 1133, 1, 0, 0, 0, 68, 1150, 1, 0, 0, 0, 70, 1152, 1, 0, 0, 0, 72, 1337, 1, 0, 0, 0, 74, 1347, 1, 0, 0, 0, 76, 1349, 1, 0, 0, 0, 78, 1354, 1, 0, 0, 0, 80, 1359, 1, 0, 0, 0, 82, 1361, 1, 0, 0, 0, 84, 1365, 1, 0, 0, 0, 86, 1369, 1, 0, 0, 0, 88, 1373, 1, 0, 0, 0, 90, 1377, 1, 0, 0, 0, 92, 1387, 1, 0, 0, 0, 94, 1398, 1, 0, 0, 0, 96, 1415, 1, 0, 0, 0, 98, 1433, 1, 0, 0, 0, 100, 1438, 1, 0, 0, 0, 102, 1441, 1, 0, 0, 0, 104, 1445, 1, 0, 0, 0, 106, 1452, 1, 0, 0, 0, 108, 1461, 1, 0, 0, 0, 110, 1467, 1, 0, 0, 0, 112, 1469, 1, 0, 0, 0, 114, 1483, 1, 0, 0, 0, 116, 1505, 1, 0, 0, 0, 118, 1507, 1, 0, 0, 0, 120, 1515, 1, 0, 0, 0, 122, 1522, 1, 0, 0, 0, 124, 1524, 1, 0, 0, 0, 126, 1538, 1, 0, 0, 0, 128, 1545, 1, 0, 0, 0, 130, 1547, 1, 0, 0, 0, 132, 1551, 1, 0, 0, 0, 134, 1555, 1, 0, 0, 0, 136, 1559, 1, 0, 0, 0, 138, 1563, 1, 0, 0, 0, 140, 1576, 1, 0, 0, 0, 142, 1584, 1, 0, 0, 0, 144, 1587, 1, 0, 0, 0, 146, 1589, 1, 0, 0, 0, 148, 1601, 1, 0, 0, 0, 150, 1611, 1, 0, 0, 0, 152, 1614, 1, 0, 0, 0, 154, 1625, 1, 0, 0, 0, 156, 1633, 1, 0, 0, 0, 158, 1676, 1, 0, 0, 0, 160, 1685, 1, 0, 0, 0, 162, 1713, 1, 0, 0, 0, 164, 1726, 1, 0, 0, 0, 166, 1728, 1, 0, 0, 0, 168, 1734, 1, 0, 0, 0, 170, 1737, 1, 0, 0, 0, 172, 1743, 1, 0, 0, 0, 174, 1749, 1, 0, 0, 0, 176, 1756, 1, 0, 0, 0, 178, 1790, 1, 0, 0, 0, 180, 1798, 1, 0, 0, 0, 182, 1811, 1, 0, 0, 0, 184, 1816, 1, 0, 0, 0, 186, 1827, 1, 0, 0, 0, 188, 1844, 1, 0, 0, 0, 190, 1846, 1, 0, 0, 0, 192, 1851, 1, 0, 0, 0, 194, 1858, 1, 0, 0, 0, 196, 1860, 1, 0, 0, 0, 198, 1863, 1, 0, 0, 0, 200, 1866, 1, 0, 0, 0, 202, 1880, 1, 0, 0, 0, 204, 1888, 1, 0, 0, 0, 206, 1914, 1, 0, 0, 0, 208, 1916, 1, 0, 0, 0, 210, 1933, 1, 0, 0, 0, 212, 1947, 1, 0, 0, 0, 214, 1949, 1, 0, 0, 0, 216, 1952, 1, 0, 0, 0, 218, 1955, 1, 0, 0, 0, 220, 1964, 1, 0, 0, 0, 222, 1984, 1, 0, 0, 0, 224, 1986, 1, 0, 0, 0, 226, 1989, 1, 0, 0, 0, 228, 2002, 1, 0, 0, 0, 230, 2004, 1, 0, 0, 0, 232, 2008, 1, 0, 0, 0, 234, 2016, 1, 0, 0, 0, 236, 2020, 1, 0, 0, 0, 238, 2029, 1, 0, 0, 0, 240, 2035, 1, 0, 0, 0, 242, 2041, 1, 0, 0, 0, 244, 2046, 1, 0, 0, 0, 246, 2092, 1, 0, 0, 0, 248, 2094, 1, 0, 0, 0, 250, 2102, 1, 0, 0, 0, 252, 2110, 1, 0, 0, 0, 254, 2118, 1, 0, 0, 0, 256, 2128, 1, 0, 0, 0, 258, 2130, 1, 0, 0, 0, 260, 2132, 1, 0, 0, 0, 262, 2145, 1, 0, 0, 0, 264, 2153, 1, 0, 0, 0, 266, 2162, 1, 0, 0, 0, 268, 2166, 1, 0, 0, 0, 270, 2168, 1, 0, 0, 0, 272, 2173, 1, 0, 0, 0, 274, 2175, 1, 0, 0, 0, 276, 2179, 1, 0, 0, 0, 278, 2185, 1, 0, 0, 0, 280, 2193, 1, 0, 0, 0, 282, 2195, 1, 0, 0, 0, 284, 2198, 1, 0, 0, 0, 286, 2205, 1, 0, 0, 0, 288, 2216, 1, 0, 0, 0, 290, 2229, 1, 0, 0, 0, 292, 2231, 1, 0, 0, 0, 294, 2239, 1, 0, 0, 0, 296, 2243, 1, 0, 0, 0, 298, 2251, 1, 0, 0, 0, 300, 2253, 1, 0, 0, 0, 302, 2256, 1, 0, 0, 0, 304, 2263, 1, 0, 0, 0, 306, 2271, 1, 0, 0, 0, 308, 2278, 1, 0, 0, 0, 310, 2286, 1, 0, 0, 0, 312, 2294, 1, 0, 0, 0, 314, 2298, 1, 0, 0, 0, 316, 2300, 1, 0, 0, 0, 318, 2311, 1, 0, 0, 0, 320, 2315, 1, 0, 0, 0, 322, 2327, 1, 0, 0, 0, 324, 2335, 1, 0, 0, 0, 326, 2339, 1, 0, 0, 0, 328, 2351, 1, 0, 0, 0, 330, 2363, 1, 0, 0, 0, 332, 2368, 1, 0, 0, 0, 334, 2373, 1, 0, 0, 0, 336, 2375, 1, 0, 0, 0, 338, 2379, 1, 0, 0, 0, 340, 2383, 1, 0, 0, 0, 342, 2390, 1, 0, 0, 0, 344, 2392, 1, 0, 0, 0, 346, 2405, 1, 0, 0, 0, 348, 2444, 1, 0, 0, 0, 350, 2446, 1, 0, 0, 0, 352, 2451, 1, 0, 0, 0, 354, 2456, 1, 0, 0, 0, 356, 2463, 1, 0, 0, 0, 358, 2468, 1, 0, 0, 0, 360, 2473, 1, 0, 0, 0, 362, 2479, 1, 0, 0, 0, 364, 2481, 1, 0, 0, 0, 366, 2490, 1, 0, 0, 0, 368, 2502, 1, 0, 0, 0, 370, 2582, 1, 0, 0, 0, 372, 2588, 1, 0, 0, 0, 374, 2614, 1, 0, 0, 0, 376, 2616, 1, 0, 0, 0, 378, 2638, 1, 0, 0, 0, 380, 2643, 1, 0, 0, 0, 382, 2647, 1, 0, 0, 0, 384, 2679, 1, 0, 0, 0, 386, 2681, 1, 0, 0, 0, 388, 2692, 1, 0, 0, 0, 390, 2698, 1, 0, 0, 0, 392, 2700, 1, 0, 0, 0, 394, 2732, 1, 0, 0, 0, 396, 2739, 1, 0, 0, 0, 398, 2745, 1, 0, 0, 0, 400, 2751, 1, 0, 0, 0, 402, 2766, 1, 0, 0, 0, 404, 2776, 1, 0, 0, 0, 406, 2784, 1, 0, 0, 0, 408, 2787, 1, 0, 0, 0, 410, 2790, 1, 0, 0, 0, 412, 2793, 1, 0, 0, 0, 414, 2915, 1, 0, 0, 0, 416, 3049, 1, 0, 0, 0, 418, 3077, 1, 0, 0, 0, 420, 3094, 1, 0, 0, 0, 422, 3111, 1, 0, 0, 0, 424, 3113, 1, 0, 0, 0, 426, 3116, 1, 0, 0, 0, 428, 3142, 1, 0, 0, 0, 430, 3147, 1, 0, 0, 0, 432, 3174, 1, 0, 0, 0, 434, 3185, 1, 0, 0, 0, 436, 3322, 1, 0, 0, 0, 438, 3324, 1, 0, 0, 0, 440, 3347, 1, 0, 0, 0, 442, 3359, 1, 0, 0, 0, 444, 3364, 1, 0, 0, 0, 446, 3372, 1, 0, 0, 0, 448, 3380, 1, 0, 0, 0, 450, 3392, 1, 0, 0, 0, 452, 3426, 1, 0, 0, 0, 454, 3428, 1, 0, 0, 0, 456, 3446, 1, 0, 0, 0, 458, 3455, 1, 0, 0, 0, 460, 3485, 1, 0, 0, 0, 462, 3544, 1, 0, 0, 0, 464, 3546, 1, 0, 0, 0, 466, 3575, 1, 0, 0, 0, 468, 3577, 1, 0, 0, 0, 470, 3593, 1, 0, 0, 0, 472, 3605, 1, 0, 0, 0, 474, 3607, 1, 0, 0, 0, 476, 3611, 1, 0, 0, 0, 478, 3621, 1, 0, 0, 0, 480, 3631, 1, 0, 0, 0, 482, 3636, 1, 0, 0, 0, 484, 3643, 1, 0, 0, 0, 486, 3647, 1, 0, 0, 0, 488, 3668, 1, 0, 0, 0, 490, 3673, 1, 0, 0, 0, 492, 3675, 1, 0, 0, 0, 494, 3679, 1, 0, 0, 0, 496, 3705, 1, 0, 0, 0, 498, 3708, 1, 0, 0, 0, 500, 3729, 1, 0, 0, 0, 502, 3734, 1, 0, 0, 0, 504, 3765, 1, 0, 0, 0, 506, 3767, 1, 0, 0, 0, 508, 3791, 1, 0, 0, 0, 510, 3822, 1, 0, 0, 0, 512, 3824, 1, 0, 0, 0, 514, 3826, 1, 0, 0, 0, 516, 3828, 1, 0, 0, 0, 518, 3853, 1, 0, 0, 0, 520, 3855, 1, 0, 0, 0, 522, 3863, 1, 0, 0, 0, 524, 3889, 1, 0, 0, 0, 526, 3891, 1, 0, 0, 0, 528, 3911, 1, 0, 0, 0, 530, 3913, 1, 0, 0, 0, 532, 3924, 1, 0, 0, 0, 534, 3937, 1, 0, 0, 0, 536, 3972, 1, 0, 0, 0, 538, 3974, 1, 0, 0, 0, 540, 3977, 1, 0, 0, 0, 542, 3982, 1, 0, 0, 0, 544, 3984, 1, 0, 0, 0, 546, 4006, 1, 0, 0, 0, 548, 4008, 1, 0, 0, 0, 550, 4012, 1, 0, 0, 0, 552, 4021, 1, 0, 0, 0, 554, 4031, 1, 0, 0, 0, 556, 4035, 1, 0, 0, 0, 558, 4039, 1, 0, 0, 0, 560, 4115, 1, 0, 0, 0, 562, 4117, 1, 0, 0, 0, 564, 4120, 1, 0, 0, 0, 566, 4124, 1, 0, 0, 0, 568, 4129, 1, 0, 0, 0, 570, 4131, 1, 0, 0, 0, 572, 4142, 1, 0, 0, 0, 574, 4159, 1, 0, 0, 0, 576, 4175, 1, 0, 0, 0, 578, 4184, 1, 0, 0, 0, 580, 4199, 1, 0, 0, 0, 582, 4229, 1, 0, 0, 0, 584, 4231, 1, 0, 0, 0, 586, 4248, 1, 0, 0, 0, 588, 4264, 1, 0, 0, 0, 590, 4266, 1, 0, 0, 0, 592, 4285, 1, 0, 0, 0, 594, 4290, 1, 0, 0, 0, 596, 4305, 1, 0, 0, 0, 598, 4313, 1, 0, 0, 0, 600, 4321, 1, 0, 0, 0, 602, 4329, 1, 0, 0, 0, 604, 4337, 1, 0, 0, 0, 606, 4345, 1, 0, 0, 0, 608, 4353, 1, 0, 0, 0, 610, 4355, 1, 0, 0, 0, 612, 4365, 1, 0, 0, 0, 614, 4373, 1, 0, 0, 0, 616, 4389, 1, 0, 0, 0, 618, 4393, 1, 0, 0, 0, 620, 4398, 1, 0, 0, 0, 622, 4400, 1, 0, 0, 0, 624, 4411, 1, 0, 0, 0, 626, 4413, 1, 0, 0, 0, 628, 4431, 1, 0, 0, 0, 630, 4436, 1, 0, 0, 0, 632, 4444, 1, 0, 0, 0, 634, 4452, 1, 0, 0, 0, 636, 4456, 1, 0, 0, 0, 638, 4468, 1, 0, 0, 0, 640, 4473, 1, 0, 0, 0, 642, 4484, 1, 0, 0, 0, 644, 4491, 1, 0, 0, 0, 646, 4493, 1, 0, 0, 0, 648, 4497, 1, 0, 0, 0, 650, 4499, 1, 0, 0, 0, 652, 4504, 1, 0, 0, 0, 654, 4506, 1, 0, 0, 0, 656, 4508, 1, 0, 0, 0, 658, 4561, 1, 0, 0, 0, 660, 4728, 1, 0, 0, 0, 662, 4730, 1, 0, 0, 0, 664, 4739, 1, 0, 0, 0, 666, 4741, 1, 0, 0, 0, 668, 4752, 1, 0, 0, 0, 670, 4754, 1, 0, 0, 0, 672, 4759, 1, 0, 0, 0, 674, 4761, 1, 0, 0, 0, 676, 4763, 1, 0, 0, 0, 678, 4765, 1, 0, 0, 0, 680, 4767, 1, 0, 0, 0, 682, 4769, 1, 0, 0, 0, 684, 4771, 1, 0, 0, 0, 686, 4773, 1, 0, 0, 0, 688, 4775, 1, 0, 0, 0, 690, 4777, 1, 0, 0, 0, 692, 4779, 1, 0, 0, 0, 694, 4787, 1, 0, 0, 0, 696, 4795, 1, 0, 0, 0, 698, 4809, 1, 0, 0, 0, 700, 4811, 1, 0, 0, 0, 702, 704, 3, 2, 1, 0, 703, 702, 1, 0, 0, 0, 704, 707, 1, 0, 0, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 708, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 708, 709, 5, 0, 0, 1, 709, 1, 1, 0, 0, 0, 710, 713, 3, 4, 2, 0, 711, 713, 3, 10, 5, 0, 712, 710, 1, 0, 0, 0, 712, 711, 1, 0, 0, 0, 713, 715, 1, 0, 0, 0, 714, 716, 5, 398, 0, 0, 715, 714, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 3, 1, 0, 0, 0, 717, 727, 5, 119, 0, 0, 718, 720, 3, 6, 3, 0, 719, 718, 1, 0, 0, 0, 720, 723, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 724, 1, 0, 0, 0, 723, 721, 1, 0, 0, 0, 724, 728, 3, 10, 5, 0, 725, 726, 5, 284, 0, 0, 726, 728, 3, 360, 180, 0, 727, 721, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 728, 5, 1, 0, 0, 0, 729, 752, 5, 122, 0, 0, 730, 752, 5, 138, 0, 0, 731, 752, 5, 88, 0, 0, 732, 734, 5, 37, 0, 0, 733, 735, 7, 0, 0, 0, 734, 733, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 752, 1, 0, 0, 0, 736, 752, 5, 192, 0, 0, 737, 752, 5, 21, 0, 0, 738, 752, 5, 10, 0, 0, 739, 752, 5, 275, 0, 0, 740, 752, 5, 191, 0, 0, 741, 752, 5, 19, 0, 0, 742, 744, 5, 377, 0, 0, 743, 745, 5, 225, 0, 0, 744, 743, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 747, 1, 0, 0, 0, 746, 748, 3, 8, 4, 0, 747, 746, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 752, 1, 0, 0, 0, 749, 752, 5, 79, 0, 0, 750, 752, 5, 78, 0, 0, 751, 729, 1, 0, 0, 0, 751, 730, 1, 0, 0, 0, 751, 731, 1, 0, 0, 0, 751, 732, 1, 0, 0, 0, 751, 736, 1, 0, 0, 0, 751, 737, 1, 0, 0, 0, 751, 738, 1, 0, 0, 0, 751, 739, 1, 0, 0, 0, 751, 740, 1, 0, 0, 0, 751, 741, 1, 0, 0, 0, 751, 742, 1, 0, 0, 0, 751, 749, 1, 0, 0, 0, 751, 750, 1, 0, 0, 0, 752, 7, 1, 0, 0, 0, 753, 754, 7, 1, 0, 0, 754, 9, 1, 0, 0, 0, 755, 827, 3, 360, 180, 0, 756, 827, 3, 12, 6, 0, 757, 827, 3, 16, 8, 0, 758, 827, 3, 18, 9, 0, 759, 827, 3, 20, 10, 0, 760, 827, 3, 24, 12, 0, 761, 762, 5, 277, 0, 0, 762, 763, 5, 320, 0, 0, 763, 766, 3, 472, 236, 0, 764, 765, 5, 387, 0, 0, 765, 767, 3, 230, 115, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 827, 1, 0, 0, 0, 768, 827, 3, 28, 14, 0, 769, 770, 5, 86, 0, 0, 770, 771, 5, 139, 0, 0, 771, 773, 3, 478, 239, 0, 772, 774, 3, 496, 248, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 827, 1, 0, 0, 0, 775, 776, 5, 365, 0, 0, 776, 777, 3, 478, 239, 0, 777, 779, 3, 392, 196, 0, 778, 780, 3, 496, 248, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 827, 1, 0, 0, 0, 781, 827, 3, 394, 197, 0, 782, 784, 5, 203, 0, 0, 783, 785, 5, 436, 0, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 5, 166, 0, 0, 787, 792, 3, 478, 239, 0, 788, 790, 5, 17, 0, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 793, 3, 648, 324, 0, 792, 789, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 5, 370, 0, 0, 795, 796, 3, 456, 228, 0, 796, 797, 5, 224, 0, 0, 797, 798, 3, 590, 295, 0, 798, 799, 3, 398, 199, 0, 799, 827, 1, 0, 0, 0, 800, 801, 5, 249, 0, 0, 801, 802, 3, 648, 324, 0, 802, 803, 5, 139, 0, 0, 803, 804, 3, 360, 180, 0, 804, 827, 1, 0, 0, 0, 805, 806, 5, 115, 0, 0, 806, 807, 3, 648, 324, 0, 807, 808, 5, 370, 0, 0, 808, 809, 3, 296, 148, 0, 809, 827, 1, 0, 0, 0, 810, 811, 5, 304, 0, 0, 811, 816, 3, 658, 329, 0, 812, 813, 7, 2, 0, 0, 813, 815, 3, 658, 329, 0, 814, 812, 1, 0, 0, 0, 815, 818, 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 819, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 819, 823, 5, 405, 0, 0, 820, 822, 9, 0, 0, 0, 821, 820, 1, 0, 0, 0, 822, 825, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 826, 755, 1, 0, 0, 0, 826, 756, 1, 0, 0, 0, 826, 757, 1, 0, 0, 0, 826, 758, 1, 0, 0, 0, 826, 759, 1, 0, 0, 0, 826, 760, 1, 0, 0, 0, 826, 761, 1, 0, 0, 0, 826, 768, 1, 0, 0, 0, 826, 769, 1, 0, 0, 0, 826, 775, 1, 0, 0, 0, 826, 781, 1, 0, 0, 0, 826, 782, 1, 0, 0, 0, 826, 800, 1, 0, 0, 0, 826, 805, 1, 0, 0, 0, 826, 810, 1, 0, 0, 0, 827, 11, 1, 0, 0, 0, 828, 829, 5, 187, 0, 0, 829, 831, 5, 66, 0, 0, 830, 832, 5, 188, 0, 0, 831, 830, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 834, 5, 158, 0, 0, 834, 836, 5, 426, 0, 0, 835, 837, 5, 235, 0, 0, 836, 835, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 5, 166, 0, 0, 839, 840, 5, 329, 0, 0, 840, 842, 3, 634, 317, 0, 841, 843, 3, 56, 28, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 13, 1, 0, 0, 0, 844, 846, 5, 134, 0, 0, 845, 847, 5, 204, 0, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 279, 0, 0, 849, 850, 5, 399, 0, 0, 850, 851, 5, 426, 0, 0, 851, 852, 5, 400, 0, 0, 852, 15, 1, 0, 0, 0, 853, 854, 5, 120, 0, 0, 854, 855, 5, 329, 0, 0, 855, 856, 3, 634, 317, 0, 856, 857, 5, 341, 0, 0, 857, 859, 5, 426, 0, 0, 858, 860, 3, 14, 7, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 17, 1, 0, 0, 0, 861, 867, 5, 153, 0, 0, 862, 864, 5, 123, 0, 0, 863, 862, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 5, 329, 0, 0, 866, 868, 3, 634, 317, 0, 867, 863, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 5, 139, 0, 0, 870, 872, 5, 426, 0, 0, 871, 873, 3, 424, 212, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 19, 1, 0, 0, 0, 874, 875, 5, 277, 0, 0, 875, 876, 5, 103, 0, 0, 876, 879, 3, 22, 11, 0, 877, 878, 5, 278, 0, 0, 878, 880, 3, 22, 11, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 883, 1, 0, 0, 0, 881, 882, 5, 387, 0, 0, 882, 884, 3, 230, 115, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 21, 1, 0, 0, 0, 885, 888, 3, 472, 236, 0, 886, 887, 5, 395, 0, 0, 887, 889, 3, 26, 13, 0, 888, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 23, 1, 0, 0, 0, 890, 891, 5, 277, 0, 0, 891, 892, 5, 187, 0, 0, 892, 895, 3, 22, 11, 0, 893, 894, 5, 166, 0, 0, 894, 896, 3, 472, 236, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 899, 1, 0, 0, 0, 897, 898, 5, 387, 0, 0, 898, 900, 3, 230, 115, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 25, 1, 0, 0, 0, 901, 904, 5, 426, 0, 0, 902, 903, 5, 395, 0, 0, 903, 905, 5, 426, 0, 0, 904, 902, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 27, 1, 0, 0, 0, 906, 965, 3, 42, 21, 0, 907, 965, 3, 46, 23, 0, 908, 965, 3, 48, 24, 0, 909, 965, 3, 436, 218, 0, 910, 965, 3, 54, 27, 0, 911, 965, 3, 52, 26, 0, 912, 965, 3, 412, 206, 0, 913, 965, 3, 64, 32, 0, 914, 965, 3, 72, 36, 0, 915, 965, 3, 138, 69, 0, 916, 965, 3, 160, 80, 0, 917, 965, 3, 176, 88, 0, 918, 965, 3, 180, 90, 0, 919, 965, 3, 184, 92, 0, 920, 965, 3, 182, 91, 0, 921, 965, 3, 174, 87, 0, 922, 965, 3, 178, 89, 0, 923, 965, 3, 146, 73, 0, 924, 965, 3, 152, 76, 0, 925, 965, 3, 148, 74, 0, 926, 965, 3, 150, 75, 0, 927, 965, 3, 154, 77, 0, 928, 965, 3, 156, 78, 0, 929, 965, 3, 158, 79, 0, 930, 965, 3, 66, 33, 0, 931, 965, 3, 76, 38, 0, 932, 965, 3, 82, 41, 0, 933, 965, 3, 78, 39, 0, 934, 965, 3, 84, 42, 0, 935, 965, 3, 86, 43, 0, 936, 965, 3, 88, 44, 0, 937, 965, 3, 90, 45, 0, 938, 965, 3, 92, 46, 0, 939, 965, 3, 106, 53, 0, 940, 965, 3, 98, 49, 0, 941, 965, 3, 108, 54, 0, 942, 965, 3, 100, 50, 0, 943, 965, 3, 94, 47, 0, 944, 965, 3, 96, 48, 0, 945, 965, 3, 104, 52, 0, 946, 965, 3, 102, 51, 0, 947, 948, 5, 1, 0, 0, 948, 950, 7, 3, 0, 0, 949, 951, 5, 431, 0, 0, 950, 949, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 950, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 965, 1, 0, 0, 0, 954, 955, 5, 176, 0, 0, 955, 957, 5, 258, 0, 0, 956, 958, 5, 426, 0, 0, 957, 956, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 965, 1, 0, 0, 0, 961, 965, 3, 660, 330, 0, 962, 965, 3, 438, 219, 0, 963, 965, 3, 440, 220, 0, 964, 906, 1, 0, 0, 0, 964, 907, 1, 0, 0, 0, 964, 908, 1, 0, 0, 0, 964, 909, 1, 0, 0, 0, 964, 910, 1, 0, 0, 0, 964, 911, 1, 0, 0, 0, 964, 912, 1, 0, 0, 0, 964, 913, 1, 0, 0, 0, 964, 914, 1, 0, 0, 0, 964, 915, 1, 0, 0, 0, 964, 916, 1, 0, 0, 0, 964, 917, 1, 0, 0, 0, 964, 918, 1, 0, 0, 0, 964, 919, 1, 0, 0, 0, 964, 920, 1, 0, 0, 0, 964, 921, 1, 0, 0, 0, 964, 922, 1, 0, 0, 0, 964, 923, 1, 0, 0, 0, 964, 924, 1, 0, 0, 0, 964, 925, 1, 0, 0, 0, 964, 926, 1, 0, 0, 0, 964, 927, 1, 0, 0, 0, 964, 928, 1, 0, 0, 0, 964, 929, 1, 0, 0, 0, 964, 930, 1, 0, 0, 0, 964, 931, 1, 0, 0, 0, 964, 932, 1, 0, 0, 0, 964, 933, 1, 0, 0, 0, 964, 934, 1, 0, 0, 0, 964, 935, 1, 0, 0, 0, 964, 936, 1, 0, 0, 0, 964, 937, 1, 0, 0, 0, 964, 938, 1, 0, 0, 0, 964, 939, 1, 0, 0, 0, 964, 940, 1, 0, 0, 0, 964, 941, 1, 0, 0, 0, 964, 942, 1, 0, 0, 0, 964, 943, 1, 0, 0, 0, 964, 944, 1, 0, 0, 0, 964, 945, 1, 0, 0, 0, 964, 946, 1, 0, 0, 0, 964, 947, 1, 0, 0, 0, 964, 954, 1, 0, 0, 0, 964, 961, 1, 0, 0, 0, 964, 962, 1, 0, 0, 0, 964, 963, 1, 0, 0, 0, 965, 29, 1, 0, 0, 0, 966, 967, 5, 151, 0, 0, 967, 968, 5, 117, 0, 0, 968, 31, 1, 0, 0, 0, 969, 970, 5, 151, 0, 0, 970, 971, 5, 216, 0, 0, 971, 972, 5, 117, 0, 0, 972, 33, 1, 0, 0, 0, 973, 974, 7, 4, 0, 0, 974, 35, 1, 0, 0, 0, 975, 976, 3, 672, 336, 0, 976, 977, 5, 284, 0, 0, 977, 37, 1, 0, 0, 0, 978, 979, 3, 674, 337, 0, 979, 980, 5, 284, 0, 0, 980, 39, 1, 0, 0, 0, 981, 982, 5, 321, 0, 0, 982, 983, 5, 17, 0, 0, 983, 984, 5, 92, 0, 0, 984, 41, 1, 0, 0, 0, 985, 987, 5, 58, 0, 0, 986, 988, 5, 273, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 991, 3, 70, 35, 0, 990, 992, 3, 32, 16, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 995, 3, 474, 237, 0, 994, 996, 3, 50, 25, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 998, 1, 0, 0, 0, 997, 999, 3, 424, 212, 0, 998, 997, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1002, 1, 0, 0, 0, 1000, 1001, 5, 196, 0, 0, 1001, 1003, 5, 426, 0, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1007, 1, 0, 0, 0, 1004, 1005, 5, 387, 0, 0, 1005, 1006, 5, 76, 0, 0, 1006, 1008, 3, 230, 115, 0, 1007, 1004, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1026, 1, 0, 0, 0, 1009, 1010, 5, 58, 0, 0, 1010, 1011, 5, 273, 0, 0, 1011, 1013, 3, 70, 35, 0, 1012, 1014, 3, 32, 16, 0, 1013, 1012, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1017, 3, 474, 237, 0, 1016, 1018, 3, 50, 25, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1023, 3, 44, 22, 0, 1020, 1021, 5, 387, 0, 0, 1021, 1022, 5, 76, 0, 0, 1022, 1024, 3, 230, 115, 0, 1023, 1020, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1026, 1, 0, 0, 0, 1025, 985, 1, 0, 0, 0, 1025, 1009, 1, 0, 0, 0, 1026, 43, 1, 0, 0, 0, 1027, 1028, 5, 370, 0, 0, 1028, 1029, 3, 472, 236, 0, 1029, 45, 1, 0, 0, 0, 1030, 1031, 5, 368, 0, 0, 1031, 1032, 3, 472, 236, 0, 1032, 47, 1, 0, 0, 0, 1033, 1034, 5, 101, 0, 0, 1034, 1036, 3, 70, 35, 0, 1035, 1037, 3, 30, 15, 0, 1036, 1035, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1040, 3, 472, 236, 0, 1039, 1041, 3, 34, 17, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 49, 1, 0, 0, 0, 1042, 1043, 5, 47, 0, 0, 1043, 1044, 5, 426, 0, 0, 1044, 51, 1, 0, 0, 0, 1045, 1047, 5, 351, 0, 0, 1046, 1048, 5, 329, 0, 0, 1047, 1046, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1055, 3, 634, 317, 0, 1050, 1051, 5, 46, 0, 0, 1051, 1052, 5, 399, 0, 0, 1052, 1053, 3, 254, 127, 0, 1053, 1054, 5, 400, 0, 0, 1054, 1056, 1, 0, 0, 0, 1055, 1050, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 1, 0, 0, 0, 1057, 1059, 5, 135, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 53, 1, 0, 0, 0, 1060, 1061, 5, 101, 0, 0, 1061, 1063, 5, 329, 0, 0, 1062, 1064, 3, 30, 15, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1067, 3, 478, 239, 0, 1066, 1068, 5, 255, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 1, 0, 0, 0, 1069, 1071, 3, 14, 7, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 55, 1, 0, 0, 0, 1072, 1073, 5, 160, 0, 0, 1073, 1074, 5, 426, 0, 0, 1074, 1075, 5, 301, 0, 0, 1075, 1076, 5, 426, 0, 0, 1076, 57, 1, 0, 0, 0, 1077, 1080, 3, 648, 324, 0, 1078, 1079, 5, 395, 0, 0, 1079, 1081, 3, 648, 324, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1095, 1, 0, 0, 0, 1082, 1092, 3, 648, 324, 0, 1083, 1088, 5, 395, 0, 0, 1084, 1089, 5, 104, 0, 0, 1085, 1089, 5, 175, 0, 0, 1086, 1089, 5, 375, 0, 0, 1087, 1089, 3, 648, 324, 0, 1088, 1084, 1, 0, 0, 0, 1088, 1085, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1087, 1, 0, 0, 0, 1089, 1091, 1, 0, 0, 0, 1090, 1083, 1, 0, 0, 0, 1091, 1094, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1096, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1095, 1082, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 59, 1, 0, 0, 0, 1097, 1099, 3, 58, 29, 0, 1098, 1100, 3, 636, 318, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 61, 1, 0, 0, 0, 1101, 1103, 3, 476, 238, 0, 1102, 1104, 3, 636, 318, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1107, 3, 260, 130, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 63, 1, 0, 0, 0, 1108, 1131, 7, 5, 0, 0, 1109, 1111, 3, 70, 35, 0, 1110, 1112, 5, 122, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 3, 472, 236, 0, 1114, 1132, 1, 0, 0, 0, 1115, 1117, 5, 69, 0, 0, 1116, 1118, 5, 122, 0, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1132, 3, 472, 236, 0, 1120, 1122, 5, 141, 0, 0, 1121, 1123, 5, 122, 0, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1132, 3, 566, 283, 0, 1125, 1128, 5, 138, 0, 0, 1126, 1128, 5, 122, 0, 0, 1127, 1125, 1, 0, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1132, 3, 62, 31, 0, 1130, 1132, 3, 62, 31, 0, 1131, 1109, 1, 0, 0, 0, 1131, 1115, 1, 0, 0, 0, 1131, 1120, 1, 0, 0, 0, 1131, 1127, 1, 0, 0, 0, 1131, 1130, 1, 0, 0, 0, 1132, 65, 1, 0, 0, 0, 1133, 1134, 5, 10, 0, 0, 1134, 1135, 5, 329, 0, 0, 1135, 1148, 3, 634, 317, 0, 1136, 1137, 5, 52, 0, 0, 1137, 1144, 5, 319, 0, 0, 1138, 1145, 5, 215, 0, 0, 1139, 1140, 5, 134, 0, 0, 1140, 1142, 5, 46, 0, 0, 1141, 1143, 3, 254, 127, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1145, 1, 0, 0, 0, 1144, 1138, 1, 0, 0, 0, 1144, 1139, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1149, 1, 0, 0, 0, 1146, 1147, 5, 33, 0, 0, 1147, 1149, 5, 204, 0, 0, 1148, 1136, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1149, 67, 1, 0, 0, 0, 1150, 1151, 7, 6, 0, 0, 1151, 69, 1, 0, 0, 0, 1152, 1153, 7, 7, 0, 0, 1153, 71, 1, 0, 0, 0, 1154, 1155, 5, 308, 0, 0, 1155, 1158, 7, 8, 0, 0, 1156, 1157, 5, 184, 0, 0, 1157, 1159, 3, 194, 97, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1338, 1, 0, 0, 0, 1160, 1162, 5, 308, 0, 0, 1161, 1163, 5, 122, 0, 0, 1162, 1161, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1168, 5, 330, 0, 0, 1165, 1166, 3, 68, 34, 0, 1166, 1167, 3, 472, 236, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1165, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1171, 1, 0, 0, 0, 1170, 1172, 3, 74, 37, 0, 1171, 1170, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1338, 1, 0, 0, 0, 1173, 1174, 5, 308, 0, 0, 1174, 1178, 5, 379, 0, 0, 1175, 1176, 3, 68, 34, 0, 1176, 1177, 3, 472, 236, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1175, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1183, 1, 0, 0, 0, 1180, 1181, 5, 184, 0, 0, 1181, 1184, 3, 194, 97, 0, 1182, 1184, 3, 194, 97, 0, 1183, 1180, 1, 0, 0, 0, 1183, 1182, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1338, 1, 0, 0, 0, 1185, 1186, 5, 308, 0, 0, 1186, 1187, 5, 202, 0, 0, 1187, 1191, 5, 379, 0, 0, 1188, 1189, 3, 68, 34, 0, 1189, 1190, 3, 472, 236, 0, 1190, 1192, 1, 0, 0, 0, 1191, 1188, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1196, 1, 0, 0, 0, 1193, 1194, 5, 184, 0, 0, 1194, 1197, 3, 194, 97, 0, 1195, 1197, 3, 194, 97, 0, 1196, 1193, 1, 0, 0, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1338, 1, 0, 0, 0, 1198, 1200, 5, 308, 0, 0, 1199, 1201, 5, 315, 0, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 5, 46, 0, 0, 1203, 1204, 3, 68, 34, 0, 1204, 1208, 3, 476, 238, 0, 1205, 1206, 3, 68, 34, 0, 1206, 1207, 3, 472, 236, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1205, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1213, 1, 0, 0, 0, 1210, 1211, 5, 184, 0, 0, 1211, 1214, 3, 194, 97, 0, 1212, 1214, 3, 194, 97, 0, 1213, 1210, 1, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1338, 1, 0, 0, 0, 1215, 1216, 5, 308, 0, 0, 1216, 1219, 5, 142, 0, 0, 1217, 1218, 5, 184, 0, 0, 1218, 1220, 3, 566, 283, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1338, 1, 0, 0, 0, 1221, 1222, 5, 308, 0, 0, 1222, 1223, 5, 239, 0, 0, 1223, 1225, 3, 476, 238, 0, 1224, 1226, 3, 636, 318, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1228, 1, 0, 0, 0, 1227, 1229, 3, 496, 248, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1231, 1, 0, 0, 0, 1230, 1232, 3, 552, 276, 0, 1231, 1230, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1234, 1, 0, 0, 0, 1233, 1235, 3, 386, 193, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1338, 1, 0, 0, 0, 1236, 1237, 5, 308, 0, 0, 1237, 1243, 5, 58, 0, 0, 1238, 1239, 3, 70, 35, 0, 1239, 1240, 3, 472, 236, 0, 1240, 1244, 1, 0, 0, 0, 1241, 1242, 5, 329, 0, 0, 1242, 1244, 3, 478, 239, 0, 1243, 1238, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1338, 1, 0, 0, 0, 1245, 1246, 5, 308, 0, 0, 1246, 1247, 5, 329, 0, 0, 1247, 1251, 5, 122, 0, 0, 1248, 1249, 3, 68, 34, 0, 1249, 1250, 3, 472, 236, 0, 1250, 1252, 1, 0, 0, 0, 1251, 1248, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1254, 5, 184, 0, 0, 1254, 1256, 3, 194, 97, 0, 1255, 1257, 3, 636, 318, 0, 1256, 1255, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1338, 1, 0, 0, 0, 1258, 1259, 5, 308, 0, 0, 1259, 1260, 5, 332, 0, 0, 1260, 1264, 3, 478, 239, 0, 1261, 1262, 5, 399, 0, 0, 1262, 1263, 5, 426, 0, 0, 1263, 1265, 5, 400, 0, 0, 1264, 1261, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1338, 1, 0, 0, 0, 1266, 1267, 5, 308, 0, 0, 1267, 1279, 5, 191, 0, 0, 1268, 1269, 3, 70, 35, 0, 1269, 1271, 3, 472, 236, 0, 1270, 1272, 5, 122, 0, 0, 1271, 1270, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1280, 1, 0, 0, 0, 1273, 1275, 3, 60, 30, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1278, 5, 122, 0, 0, 1277, 1276, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1280, 1, 0, 0, 0, 1279, 1268, 1, 0, 0, 0, 1279, 1274, 1, 0, 0, 0, 1280, 1338, 1, 0, 0, 0, 1281, 1282, 5, 308, 0, 0, 1282, 1309, 5, 50, 0, 0, 1283, 1284, 5, 51, 0, 0, 1284, 1285, 5, 405, 0, 0, 1285, 1310, 5, 431, 0, 0, 1286, 1287, 3, 70, 35, 0, 1287, 1288, 3, 472, 236, 0, 1288, 1293, 1, 0, 0, 0, 1289, 1291, 3, 60, 30, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1286, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1296, 3, 406, 203, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1299, 3, 408, 204, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1301, 1, 0, 0, 0, 1300, 1302, 3, 410, 205, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1304, 1, 0, 0, 0, 1303, 1305, 3, 552, 276, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1307, 1, 0, 0, 0, 1306, 1308, 3, 386, 193, 0, 1307, 1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1310, 1, 0, 0, 0, 1309, 1283, 1, 0, 0, 0, 1309, 1292, 1, 0, 0, 0, 1310, 1338, 1, 0, 0, 0, 1311, 1312, 5, 308, 0, 0, 1312, 1338, 5, 346, 0, 0, 1313, 1314, 5, 308, 0, 0, 1314, 1315, 5, 54, 0, 0, 1315, 1338, 5, 426, 0, 0, 1316, 1317, 5, 308, 0, 0, 1317, 1321, 5, 280, 0, 0, 1318, 1319, 5, 243, 0, 0, 1319, 1322, 3, 648, 324, 0, 1320, 1322, 5, 244, 0, 0, 1321, 1318, 1, 0, 0, 0, 1321, 1320, 1, 0, 0, 0, 1322, 1338, 1, 0, 0, 0, 1323, 1324, 5, 308, 0, 0, 1324, 1338, 5, 70, 0, 0, 1325, 1327, 5, 308, 0, 0, 1326, 1328, 5, 138, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1330, 7, 9, 0, 0, 1330, 1331, 5, 224, 0, 0, 1331, 1335, 3, 478, 239, 0, 1332, 1333, 3, 68, 34, 0, 1333, 1334, 3, 472, 236, 0, 1334, 1336, 1, 0, 0, 0, 1335, 1332, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1338, 1, 0, 0, 0, 1337, 1154, 1, 0, 0, 0, 1337, 1160, 1, 0, 0, 0, 1337, 1173, 1, 0, 0, 0, 1337, 1185, 1, 0, 0, 0, 1337, 1198, 1, 0, 0, 0, 1337, 1215, 1, 0, 0, 0, 1337, 1221, 1, 0, 0, 0, 1337, 1236, 1, 0, 0, 0, 1337, 1245, 1, 0, 0, 0, 1337, 1258, 1, 0, 0, 0, 1337, 1266, 1, 0, 0, 0, 1337, 1281, 1, 0, 0, 0, 1337, 1311, 1, 0, 0, 0, 1337, 1313, 1, 0, 0, 0, 1337, 1316, 1, 0, 0, 0, 1337, 1323, 1, 0, 0, 0, 1337, 1325, 1, 0, 0, 0, 1338, 73, 1, 0, 0, 0, 1339, 1340, 5, 384, 0, 0, 1340, 1341, 3, 648, 324, 0, 1341, 1342, 5, 405, 0, 0, 1342, 1343, 5, 426, 0, 0, 1343, 1348, 1, 0, 0, 0, 1344, 1345, 5, 184, 0, 0, 1345, 1348, 3, 194, 97, 0, 1346, 1348, 3, 194, 97, 0, 1347, 1339, 1, 0, 0, 0, 1347, 1344, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 75, 1, 0, 0, 0, 1349, 1350, 5, 190, 0, 0, 1350, 1351, 5, 329, 0, 0, 1351, 1352, 3, 634, 317, 0, 1352, 1353, 3, 80, 40, 0, 1353, 77, 1, 0, 0, 0, 1354, 1355, 5, 190, 0, 0, 1355, 1356, 3, 70, 35, 0, 1356, 1357, 3, 472, 236, 0, 1357, 1358, 3, 80, 40, 0, 1358, 79, 1, 0, 0, 0, 1359, 1360, 7, 10, 0, 0, 1360, 81, 1, 0, 0, 0, 1361, 1362, 5, 361, 0, 0, 1362, 1363, 5, 329, 0, 0, 1363, 1364, 3, 634, 317, 0, 1364, 83, 1, 0, 0, 0, 1365, 1366, 5, 361, 0, 0, 1366, 1367, 3, 70, 35, 0, 1367, 1368, 3, 472, 236, 0, 1368, 85, 1, 0, 0, 0, 1369, 1370, 5, 58, 0, 0, 1370, 1371, 5, 287, 0, 0, 1371, 1372, 3, 648, 324, 0, 1372, 87, 1, 0, 0, 0, 1373, 1374, 5, 101, 0, 0, 1374, 1375, 5, 287, 0, 0, 1375, 1376, 3, 648, 324, 0, 1376, 89, 1, 0, 0, 0, 1377, 1378, 5, 143, 0, 0, 1378, 1380, 3, 118, 59, 0, 1379, 1381, 3, 112, 56, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 5, 341, 0, 0, 1383, 1385, 3, 124, 62, 0, 1384, 1386, 3, 130, 65, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 91, 1, 0, 0, 0, 1387, 1389, 5, 283, 0, 0, 1388, 1390, 3, 132, 66, 0, 1389, 1388, 1, 0, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1393, 3, 118, 59, 0, 1392, 1394, 3, 112, 56, 0, 1393, 1392, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 5, 139, 0, 0, 1396, 1397, 3, 124, 62, 0, 1397, 93, 1, 0, 0, 0, 1398, 1400, 5, 143, 0, 0, 1399, 1401, 5, 287, 0, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1407, 3, 648, 324, 0, 1403, 1404, 5, 397, 0, 0, 1404, 1406, 3, 648, 324, 0, 1405, 1403, 1, 0, 0, 0, 1406, 1409, 1, 0, 0, 0, 1407, 1405, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1410, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1410, 1411, 5, 341, 0, 0, 1411, 1413, 3, 124, 62, 0, 1412, 1414, 3, 136, 68, 0, 1413, 1412, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 95, 1, 0, 0, 0, 1415, 1417, 5, 283, 0, 0, 1416, 1418, 3, 134, 67, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1421, 5, 287, 0, 0, 1420, 1419, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1427, 3, 648, 324, 0, 1423, 1424, 5, 397, 0, 0, 1424, 1426, 3, 648, 324, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1429, 1, 0, 0, 0, 1427, 1425, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1431, 5, 139, 0, 0, 1431, 1432, 3, 124, 62, 0, 1432, 97, 1, 0, 0, 0, 1433, 1434, 5, 308, 0, 0, 1434, 1435, 5, 287, 0, 0, 1435, 1436, 5, 143, 0, 0, 1436, 1437, 3, 126, 63, 0, 1437, 99, 1, 0, 0, 0, 1438, 1439, 5, 308, 0, 0, 1439, 1440, 5, 288, 0, 0, 1440, 101, 1, 0, 0, 0, 1441, 1442, 5, 308, 0, 0, 1442, 1443, 5, 62, 0, 0, 1443, 1444, 5, 288, 0, 0, 1444, 103, 1, 0, 0, 0, 1445, 1446, 5, 304, 0, 0, 1446, 1450, 5, 287, 0, 0, 1447, 1451, 5, 7, 0, 0, 1448, 1451, 5, 213, 0, 0, 1449, 1451, 3, 648, 324, 0, 1450, 1447, 1, 0, 0, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1449, 1, 0, 0, 0, 1451, 105, 1, 0, 0, 0, 1452, 1453, 5, 308, 0, 0, 1453, 1455, 5, 143, 0, 0, 1454, 1456, 3, 126, 63, 0, 1455, 1454, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1459, 1, 0, 0, 0, 1457, 1458, 5, 224, 0, 0, 1458, 1460, 3, 110, 55, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 107, 1, 0, 0, 0, 1461, 1462, 5, 308, 0, 0, 1462, 1463, 5, 252, 0, 0, 1463, 1464, 3, 648, 324, 0, 1464, 109, 1, 0, 0, 0, 1465, 1468, 5, 7, 0, 0, 1466, 1468, 3, 116, 58, 0, 1467, 1465, 1, 0, 0, 0, 1467, 1466, 1, 0, 0, 0, 1468, 111, 1, 0, 0, 0, 1469, 1470, 5, 224, 0, 0, 1470, 1471, 3, 114, 57, 0, 1471, 113, 1, 0, 0, 0, 1472, 1473, 3, 70, 35, 0, 1473, 1474, 3, 472, 236, 0, 1474, 1484, 1, 0, 0, 0, 1475, 1477, 5, 329, 0, 0, 1476, 1475, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1484, 3, 634, 317, 0, 1479, 1480, 5, 366, 0, 0, 1480, 1484, 5, 426, 0, 0, 1481, 1482, 5, 303, 0, 0, 1482, 1484, 3, 648, 324, 0, 1483, 1472, 1, 0, 0, 0, 1483, 1476, 1, 0, 0, 0, 1483, 1479, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1484, 115, 1, 0, 0, 0, 1485, 1486, 3, 70, 35, 0, 1486, 1487, 3, 472, 236, 0, 1487, 1506, 1, 0, 0, 0, 1488, 1490, 5, 329, 0, 0, 1489, 1488, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1496, 3, 478, 239, 0, 1492, 1493, 5, 399, 0, 0, 1493, 1494, 3, 254, 127, 0, 1494, 1495, 5, 400, 0, 0, 1495, 1497, 1, 0, 0, 0, 1496, 1492, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1500, 3, 636, 318, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1506, 1, 0, 0, 0, 1501, 1502, 5, 366, 0, 0, 1502, 1506, 5, 426, 0, 0, 1503, 1504, 5, 303, 0, 0, 1504, 1506, 3, 648, 324, 0, 1505, 1485, 1, 0, 0, 0, 1505, 1489, 1, 0, 0, 0, 1505, 1501, 1, 0, 0, 0, 1505, 1503, 1, 0, 0, 0, 1506, 117, 1, 0, 0, 0, 1507, 1512, 3, 120, 60, 0, 1508, 1509, 5, 397, 0, 0, 1509, 1511, 3, 120, 60, 0, 1510, 1508, 1, 0, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 119, 1, 0, 0, 0, 1514, 1512, 1, 0, 0, 0, 1515, 1520, 3, 122, 61, 0, 1516, 1517, 5, 399, 0, 0, 1517, 1518, 3, 254, 127, 0, 1518, 1519, 5, 400, 0, 0, 1519, 1521, 1, 0, 0, 0, 1520, 1516, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 121, 1, 0, 0, 0, 1522, 1523, 7, 11, 0, 0, 1523, 123, 1, 0, 0, 0, 1524, 1529, 3, 126, 63, 0, 1525, 1526, 5, 397, 0, 0, 1526, 1528, 3, 126, 63, 0, 1527, 1525, 1, 0, 0, 0, 1528, 1531, 1, 0, 0, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 125, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1533, 5, 369, 0, 0, 1533, 1539, 3, 652, 326, 0, 1534, 1535, 5, 144, 0, 0, 1535, 1539, 3, 652, 326, 0, 1536, 1537, 5, 287, 0, 0, 1537, 1539, 3, 648, 324, 0, 1538, 1532, 1, 0, 0, 0, 1538, 1534, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1539, 127, 1, 0, 0, 0, 1540, 1541, 5, 369, 0, 0, 1541, 1546, 3, 652, 326, 0, 1542, 1543, 5, 287, 0, 0, 1543, 1546, 3, 648, 324, 0, 1544, 1546, 3, 648, 324, 0, 1545, 1540, 1, 0, 0, 0, 1545, 1542, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1546, 129, 1, 0, 0, 0, 1547, 1548, 5, 387, 0, 0, 1548, 1549, 5, 143, 0, 0, 1549, 1550, 5, 227, 0, 0, 1550, 131, 1, 0, 0, 0, 1551, 1552, 5, 143, 0, 0, 1552, 1553, 5, 227, 0, 0, 1553, 1554, 5, 134, 0, 0, 1554, 133, 1, 0, 0, 0, 1555, 1556, 5, 5, 0, 0, 1556, 1557, 5, 227, 0, 0, 1557, 1558, 5, 134, 0, 0, 1558, 135, 1, 0, 0, 0, 1559, 1560, 5, 387, 0, 0, 1560, 1561, 5, 5, 0, 0, 1561, 1562, 5, 227, 0, 0, 1562, 137, 1, 0, 0, 0, 1563, 1565, 5, 212, 0, 0, 1564, 1566, 5, 276, 0, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 5, 329, 0, 0, 1568, 1574, 3, 478, 239, 0, 1569, 1570, 7, 12, 0, 0, 1570, 1572, 5, 239, 0, 0, 1571, 1573, 3, 640, 320, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1575, 1, 0, 0, 0, 1574, 1569, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 139, 1, 0, 0, 0, 1576, 1581, 3, 142, 71, 0, 1577, 1578, 5, 397, 0, 0, 1578, 1580, 3, 142, 71, 0, 1579, 1577, 1, 0, 0, 0, 1580, 1583, 1, 0, 0, 0, 1581, 1579, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 141, 1, 0, 0, 0, 1583, 1581, 1, 0, 0, 0, 1584, 1585, 3, 144, 72, 0, 1585, 1586, 5, 426, 0, 0, 1586, 143, 1, 0, 0, 0, 1587, 1588, 7, 13, 0, 0, 1588, 145, 1, 0, 0, 0, 1589, 1591, 5, 58, 0, 0, 1590, 1592, 5, 333, 0, 0, 1591, 1590, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1594, 5, 141, 0, 0, 1594, 1595, 3, 564, 282, 0, 1595, 1596, 5, 17, 0, 0, 1596, 1599, 5, 426, 0, 0, 1597, 1598, 5, 370, 0, 0, 1598, 1600, 3, 140, 70, 0, 1599, 1597, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 147, 1, 0, 0, 0, 1601, 1603, 5, 101, 0, 0, 1602, 1604, 5, 333, 0, 0, 1603, 1602, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1607, 5, 141, 0, 0, 1606, 1608, 3, 30, 15, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1610, 3, 566, 283, 0, 1610, 149, 1, 0, 0, 0, 1611, 1612, 5, 271, 0, 0, 1612, 1613, 7, 14, 0, 0, 1613, 151, 1, 0, 0, 0, 1614, 1615, 5, 58, 0, 0, 1615, 1616, 5, 333, 0, 0, 1616, 1617, 5, 194, 0, 0, 1617, 1618, 5, 432, 0, 0, 1618, 1620, 5, 399, 0, 0, 1619, 1621, 3, 248, 124, 0, 1620, 1619, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1623, 5, 400, 0, 0, 1623, 1624, 3, 590, 295, 0, 1624, 153, 1, 0, 0, 0, 1625, 1626, 5, 101, 0, 0, 1626, 1627, 5, 333, 0, 0, 1627, 1629, 5, 194, 0, 0, 1628, 1630, 3, 30, 15, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 5, 432, 0, 0, 1632, 155, 1, 0, 0, 0, 1633, 1634, 5, 58, 0, 0, 1634, 1635, 5, 155, 0, 0, 1635, 1636, 3, 648, 324, 0, 1636, 1637, 5, 224, 0, 0, 1637, 1638, 5, 329, 0, 0, 1638, 1639, 3, 478, 239, 0, 1639, 1640, 3, 264, 132, 0, 1640, 1641, 5, 17, 0, 0, 1641, 1645, 5, 426, 0, 0, 1642, 1643, 5, 387, 0, 0, 1643, 1644, 5, 84, 0, 0, 1644, 1646, 5, 265, 0, 0, 1645, 1642, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1649, 1, 0, 0, 0, 1647, 1648, 5, 150, 0, 0, 1648, 1650, 3, 226, 113, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1654, 1, 0, 0, 0, 1651, 1652, 5, 154, 0, 0, 1652, 1653, 5, 329, 0, 0, 1653, 1655, 3, 478, 239, 0, 1654, 1651, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1659, 1, 0, 0, 0, 1656, 1657, 5, 238, 0, 0, 1657, 1658, 5, 32, 0, 0, 1658, 1660, 3, 264, 132, 0, 1659, 1656, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1665, 1, 0, 0, 0, 1661, 1663, 3, 222, 111, 0, 1662, 1661, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 3, 246, 123, 0, 1665, 1662, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1668, 1, 0, 0, 0, 1667, 1669, 3, 424, 212, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1671, 1, 0, 0, 0, 1670, 1672, 3, 224, 112, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1674, 1, 0, 0, 0, 1673, 1675, 3, 196, 98, 0, 1674, 1673, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 157, 1, 0, 0, 0, 1676, 1677, 5, 101, 0, 0, 1677, 1679, 5, 155, 0, 0, 1678, 1680, 3, 30, 15, 0, 1679, 1678, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 3, 648, 324, 0, 1682, 1683, 5, 224, 0, 0, 1683, 1684, 3, 478, 239, 0, 1684, 159, 1, 0, 0, 0, 1685, 1688, 5, 58, 0, 0, 1686, 1687, 5, 228, 0, 0, 1687, 1689, 5, 278, 0, 0, 1688, 1686, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1692, 5, 378, 0, 0, 1691, 1693, 3, 32, 16, 0, 1692, 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1699, 3, 484, 242, 0, 1695, 1696, 5, 399, 0, 0, 1696, 1697, 3, 304, 152, 0, 1697, 1698, 5, 400, 0, 0, 1698, 1700, 1, 0, 0, 0, 1699, 1695, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 1, 0, 0, 0, 1701, 1703, 3, 196, 98, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1705, 1, 0, 0, 0, 1704, 1706, 3, 162, 81, 0, 1705, 1704, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 1708, 1, 0, 0, 0, 1707, 1709, 3, 224, 112, 0, 1708, 1707, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1711, 5, 17, 0, 0, 1711, 1712, 3, 380, 190, 0, 1712, 161, 1, 0, 0, 0, 1713, 1714, 5, 238, 0, 0, 1714, 1720, 5, 224, 0, 0, 1715, 1716, 5, 399, 0, 0, 1716, 1721, 3, 254, 127, 0, 1717, 1718, 5, 316, 0, 0, 1718, 1719, 5, 399, 0, 0, 1719, 1721, 3, 204, 102, 0, 1720, 1715, 1, 0, 0, 0, 1720, 1717, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 5, 400, 0, 0, 1723, 163, 1, 0, 0, 0, 1724, 1727, 3, 166, 83, 0, 1725, 1727, 3, 168, 84, 0, 1726, 1724, 1, 0, 0, 0, 1726, 1725, 1, 0, 0, 0, 1727, 165, 1, 0, 0, 0, 1728, 1729, 5, 42, 0, 0, 1729, 1730, 5, 224, 0, 0, 1730, 1731, 5, 399, 0, 0, 1731, 1732, 3, 254, 127, 0, 1732, 1733, 5, 400, 0, 0, 1733, 167, 1, 0, 0, 0, 1734, 1735, 3, 170, 85, 0, 1735, 1736, 3, 172, 86, 0, 1736, 169, 1, 0, 0, 0, 1737, 1738, 5, 98, 0, 0, 1738, 1739, 5, 224, 0, 0, 1739, 1740, 5, 399, 0, 0, 1740, 1741, 3, 254, 127, 0, 1741, 1742, 5, 400, 0, 0, 1742, 171, 1, 0, 0, 0, 1743, 1744, 5, 315, 0, 0, 1744, 1745, 5, 224, 0, 0, 1745, 1746, 5, 399, 0, 0, 1746, 1747, 3, 254, 127, 0, 1747, 1748, 5, 400, 0, 0, 1748, 173, 1, 0, 0, 0, 1749, 1750, 5, 101, 0, 0, 1750, 1752, 5, 378, 0, 0, 1751, 1753, 3, 30, 15, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 3, 482, 241, 0, 1755, 175, 1, 0, 0, 0, 1756, 1757, 5, 58, 0, 0, 1757, 1758, 5, 202, 0, 0, 1758, 1760, 5, 378, 0, 0, 1759, 1761, 3, 32, 16, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1764, 3, 484, 242, 0, 1763, 1765, 3, 38, 19, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1768, 3, 196, 98, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1770, 1, 0, 0, 0, 1769, 1771, 3, 162, 81, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 1, 0, 0, 0, 1772, 1774, 3, 164, 82, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1777, 3, 222, 111, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1779, 1, 0, 0, 0, 1778, 1780, 3, 246, 123, 0, 1779, 1778, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1783, 3, 424, 212, 0, 1782, 1781, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1785, 1, 0, 0, 0, 1784, 1786, 3, 224, 112, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 5, 17, 0, 0, 1788, 1789, 3, 380, 190, 0, 1789, 177, 1, 0, 0, 0, 1790, 1791, 5, 101, 0, 0, 1791, 1792, 5, 202, 0, 0, 1792, 1794, 5, 378, 0, 0, 1793, 1795, 3, 30, 15, 0, 1794, 1793, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 3, 482, 241, 0, 1797, 179, 1, 0, 0, 0, 1798, 1799, 5, 58, 0, 0, 1799, 1800, 5, 293, 0, 0, 1800, 1801, 5, 258, 0, 0, 1801, 1802, 3, 648, 324, 0, 1802, 1804, 3, 188, 94, 0, 1803, 1805, 3, 190, 95, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1807, 1, 0, 0, 0, 1806, 1808, 3, 268, 134, 0, 1807, 1806, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1810, 3, 192, 96, 0, 1810, 181, 1, 0, 0, 0, 1811, 1812, 5, 101, 0, 0, 1812, 1813, 5, 293, 0, 0, 1813, 1814, 5, 258, 0, 0, 1814, 1815, 3, 648, 324, 0, 1815, 183, 1, 0, 0, 0, 1816, 1817, 5, 9, 0, 0, 1817, 1818, 5, 293, 0, 0, 1818, 1819, 5, 258, 0, 0, 1819, 1820, 3, 648, 324, 0, 1820, 1821, 3, 186, 93, 0, 1821, 185, 1, 0, 0, 0, 1822, 1828, 3, 188, 94, 0, 1823, 1828, 3, 190, 95, 0, 1824, 1828, 3, 268, 134, 0, 1825, 1828, 3, 192, 96, 0, 1826, 1828, 5, 115, 0, 0, 1827, 1822, 1, 0, 0, 0, 1827, 1823, 1, 0, 0, 0, 1827, 1824, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1827, 1826, 1, 0, 0, 0, 1828, 187, 1, 0, 0, 0, 1829, 1830, 5, 59, 0, 0, 1830, 1845, 5, 426, 0, 0, 1831, 1833, 5, 111, 0, 0, 1832, 1834, 5, 431, 0, 0, 1833, 1832, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1842, 3, 588, 294, 0, 1836, 1840, 5, 20, 0, 0, 1837, 1838, 5, 223, 0, 0, 1838, 1840, 5, 32, 0, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 5, 426, 0, 0, 1842, 1839, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1845, 1, 0, 0, 0, 1844, 1829, 1, 0, 0, 0, 1844, 1831, 1, 0, 0, 0, 1845, 189, 1, 0, 0, 0, 1846, 1847, 5, 116, 0, 0, 1847, 1848, 5, 17, 0, 0, 1848, 1849, 5, 426, 0, 0, 1849, 191, 1, 0, 0, 0, 1850, 1852, 5, 85, 0, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1854, 5, 17, 0, 0, 1854, 1855, 3, 2, 1, 0, 1855, 193, 1, 0, 0, 0, 1856, 1859, 3, 648, 324, 0, 1857, 1859, 5, 426, 0, 0, 1858, 1856, 1, 0, 0, 0, 1858, 1857, 1, 0, 0, 0, 1859, 195, 1, 0, 0, 0, 1860, 1861, 5, 47, 0, 0, 1861, 1862, 5, 426, 0, 0, 1862, 197, 1, 0, 0, 0, 1863, 1864, 5, 183, 0, 0, 1864, 1865, 5, 431, 0, 0, 1865, 199, 1, 0, 0, 0, 1866, 1867, 5, 238, 0, 0, 1867, 1876, 5, 32, 0, 0, 1868, 1871, 5, 399, 0, 0, 1869, 1872, 3, 202, 101, 0, 1870, 1872, 3, 254, 127, 0, 1871, 1869, 1, 0, 0, 0, 1871, 1870, 1, 0, 0, 0, 1872, 1877, 1, 0, 0, 0, 1873, 1874, 5, 316, 0, 0, 1874, 1875, 5, 399, 0, 0, 1875, 1877, 3, 204, 102, 0, 1876, 1868, 1, 0, 0, 0, 1876, 1873, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1879, 5, 400, 0, 0, 1879, 201, 1, 0, 0, 0, 1880, 1885, 3, 316, 158, 0, 1881, 1882, 5, 397, 0, 0, 1882, 1884, 3, 316, 158, 0, 1883, 1881, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 203, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1893, 3, 206, 103, 0, 1889, 1890, 5, 397, 0, 0, 1890, 1892, 3, 206, 103, 0, 1891, 1889, 1, 0, 0, 0, 1892, 1895, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 205, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1896, 1915, 3, 256, 128, 0, 1897, 1902, 3, 676, 338, 0, 1898, 1902, 3, 678, 339, 0, 1899, 1902, 3, 682, 341, 0, 1900, 1902, 3, 684, 342, 0, 1901, 1897, 1, 0, 0, 0, 1901, 1898, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1901, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1904, 5, 399, 0, 0, 1904, 1905, 3, 256, 128, 0, 1905, 1906, 5, 400, 0, 0, 1906, 1915, 1, 0, 0, 0, 1907, 1908, 7, 15, 0, 0, 1908, 1909, 5, 399, 0, 0, 1909, 1910, 5, 431, 0, 0, 1910, 1911, 5, 397, 0, 0, 1911, 1912, 3, 256, 128, 0, 1912, 1913, 5, 400, 0, 0, 1913, 1915, 1, 0, 0, 0, 1914, 1896, 1, 0, 0, 0, 1914, 1901, 1, 0, 0, 0, 1914, 1907, 1, 0, 0, 0, 1915, 207, 1, 0, 0, 0, 1916, 1917, 5, 42, 0, 0, 1917, 1918, 5, 32, 0, 0, 1918, 1919, 5, 399, 0, 0, 1919, 1920, 3, 254, 127, 0, 1920, 1927, 5, 400, 0, 0, 1921, 1922, 5, 315, 0, 0, 1922, 1923, 5, 32, 0, 0, 1923, 1924, 5, 399, 0, 0, 1924, 1925, 3, 262, 131, 0, 1925, 1926, 5, 400, 0, 0, 1926, 1928, 1, 0, 0, 0, 1927, 1921, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1930, 5, 166, 0, 0, 1930, 1931, 5, 431, 0, 0, 1931, 1932, 5, 31, 0, 0, 1932, 209, 1, 0, 0, 0, 1933, 1934, 5, 310, 0, 0, 1934, 1935, 5, 32, 0, 0, 1935, 1936, 5, 399, 0, 0, 1936, 1937, 3, 254, 127, 0, 1937, 1938, 5, 400, 0, 0, 1938, 1939, 5, 224, 0, 0, 1939, 1940, 5, 399, 0, 0, 1940, 1941, 3, 290, 145, 0, 1941, 1943, 5, 400, 0, 0, 1942, 1944, 3, 40, 20, 0, 1943, 1942, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 211, 1, 0, 0, 0, 1945, 1948, 3, 218, 109, 0, 1946, 1948, 3, 220, 110, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1946, 1, 0, 0, 0, 1948, 213, 1, 0, 0, 0, 1949, 1950, 5, 266, 0, 0, 1950, 1951, 5, 426, 0, 0, 1951, 215, 1, 0, 0, 0, 1952, 1953, 5, 267, 0, 0, 1953, 1954, 5, 426, 0, 0, 1954, 217, 1, 0, 0, 0, 1955, 1956, 5, 291, 0, 0, 1956, 1957, 5, 137, 0, 0, 1957, 1958, 5, 301, 0, 0, 1958, 1962, 5, 426, 0, 0, 1959, 1960, 5, 387, 0, 0, 1960, 1961, 5, 302, 0, 0, 1961, 1963, 3, 226, 113, 0, 1962, 1959, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 219, 1, 0, 0, 0, 1964, 1965, 5, 291, 0, 0, 1965, 1966, 5, 137, 0, 0, 1966, 1968, 5, 87, 0, 0, 1967, 1969, 3, 236, 118, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1972, 3, 238, 119, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 3, 240, 120, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 242, 121, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1981, 3, 244, 122, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 221, 1, 0, 0, 0, 1982, 1985, 3, 220, 110, 0, 1983, 1985, 3, 218, 109, 0, 1984, 1982, 1, 0, 0, 0, 1984, 1983, 1, 0, 0, 0, 1985, 223, 1, 0, 0, 0, 1986, 1987, 5, 332, 0, 0, 1987, 1988, 3, 226, 113, 0, 1988, 225, 1, 0, 0, 0, 1989, 1990, 5, 399, 0, 0, 1990, 1991, 3, 228, 114, 0, 1991, 1992, 5, 400, 0, 0, 1992, 227, 1, 0, 0, 0, 1993, 2003, 3, 232, 116, 0, 1994, 1999, 5, 426, 0, 0, 1995, 1996, 5, 397, 0, 0, 1996, 1998, 5, 426, 0, 0, 1997, 1995, 1, 0, 0, 0, 1998, 2001, 1, 0, 0, 0, 1999, 1997, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2003, 1, 0, 0, 0, 2001, 1999, 1, 0, 0, 0, 2002, 1993, 1, 0, 0, 0, 2002, 1994, 1, 0, 0, 0, 2003, 229, 1, 0, 0, 0, 2004, 2005, 5, 399, 0, 0, 2005, 2006, 3, 232, 116, 0, 2006, 2007, 5, 400, 0, 0, 2007, 231, 1, 0, 0, 0, 2008, 2013, 3, 234, 117, 0, 2009, 2010, 5, 397, 0, 0, 2010, 2012, 3, 234, 117, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2015, 1, 0, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 233, 1, 0, 0, 0, 2015, 2013, 1, 0, 0, 0, 2016, 2017, 5, 426, 0, 0, 2017, 2018, 5, 405, 0, 0, 2018, 2019, 5, 426, 0, 0, 2019, 235, 1, 0, 0, 0, 2020, 2021, 5, 127, 0, 0, 2021, 2022, 5, 334, 0, 0, 2022, 2023, 5, 32, 0, 0, 2023, 2027, 5, 426, 0, 0, 2024, 2025, 5, 110, 0, 0, 2025, 2026, 5, 32, 0, 0, 2026, 2028, 5, 426, 0, 0, 2027, 2024, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 237, 1, 0, 0, 0, 2029, 2030, 5, 44, 0, 0, 2030, 2031, 5, 169, 0, 0, 2031, 2032, 5, 334, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2034, 5, 426, 0, 0, 2034, 239, 1, 0, 0, 0, 2035, 2036, 5, 198, 0, 0, 2036, 2037, 5, 174, 0, 0, 2037, 2038, 5, 334, 0, 0, 2038, 2039, 5, 32, 0, 0, 2039, 2040, 5, 426, 0, 0, 2040, 241, 1, 0, 0, 0, 2041, 2042, 5, 186, 0, 0, 2042, 2043, 5, 334, 0, 0, 2043, 2044, 5, 32, 0, 0, 2044, 2045, 5, 426, 0, 0, 2045, 243, 1, 0, 0, 0, 2046, 2047, 5, 219, 0, 0, 2047, 2048, 5, 85, 0, 0, 2048, 2049, 5, 17, 0, 0, 2049, 2050, 5, 426, 0, 0, 2050, 245, 1, 0, 0, 0, 2051, 2052, 5, 321, 0, 0, 2052, 2053, 5, 17, 0, 0, 2053, 2054, 5, 160, 0, 0, 2054, 2055, 5, 426, 0, 0, 2055, 2056, 5, 233, 0, 0, 2056, 2061, 5, 426, 0, 0, 2057, 2058, 5, 159, 0, 0, 2058, 2059, 5, 426, 0, 0, 2059, 2060, 5, 232, 0, 0, 2060, 2062, 5, 426, 0, 0, 2061, 2057, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2093, 1, 0, 0, 0, 2063, 2064, 5, 321, 0, 0, 2064, 2065, 5, 32, 0, 0, 2065, 2069, 5, 426, 0, 0, 2066, 2067, 5, 387, 0, 0, 2067, 2068, 5, 302, 0, 0, 2068, 2070, 3, 226, 113, 0, 2069, 2066, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2074, 1, 0, 0, 0, 2071, 2072, 5, 321, 0, 0, 2072, 2073, 5, 17, 0, 0, 2073, 2075, 3, 648, 324, 0, 2074, 2071, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2093, 1, 0, 0, 0, 2076, 2077, 5, 321, 0, 0, 2077, 2078, 5, 32, 0, 0, 2078, 2082, 3, 648, 324, 0, 2079, 2080, 5, 387, 0, 0, 2080, 2081, 5, 302, 0, 0, 2081, 2083, 3, 226, 113, 0, 2082, 2079, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2087, 1, 0, 0, 0, 2084, 2085, 5, 321, 0, 0, 2085, 2086, 5, 17, 0, 0, 2086, 2088, 3, 648, 324, 0, 2087, 2084, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2093, 1, 0, 0, 0, 2089, 2090, 5, 321, 0, 0, 2090, 2091, 5, 17, 0, 0, 2091, 2093, 3, 648, 324, 0, 2092, 2051, 1, 0, 0, 0, 2092, 2063, 1, 0, 0, 0, 2092, 2076, 1, 0, 0, 0, 2092, 2089, 1, 0, 0, 0, 2093, 247, 1, 0, 0, 0, 2094, 2099, 3, 310, 155, 0, 2095, 2096, 5, 397, 0, 0, 2096, 2098, 3, 310, 155, 0, 2097, 2095, 1, 0, 0, 0, 2098, 2101, 1, 0, 0, 0, 2099, 2097, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 249, 1, 0, 0, 0, 2101, 2099, 1, 0, 0, 0, 2102, 2107, 3, 312, 156, 0, 2103, 2104, 5, 397, 0, 0, 2104, 2106, 3, 312, 156, 0, 2105, 2103, 1, 0, 0, 0, 2106, 2109, 1, 0, 0, 0, 2107, 2105, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 251, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2110, 2115, 3, 340, 170, 0, 2111, 2112, 5, 397, 0, 0, 2112, 2114, 3, 340, 170, 0, 2113, 2111, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 253, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2118, 2123, 3, 256, 128, 0, 2119, 2120, 5, 397, 0, 0, 2120, 2122, 3, 256, 128, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2125, 1, 0, 0, 0, 2123, 2121, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 255, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2126, 2129, 3, 692, 346, 0, 2127, 2129, 4, 128, 0, 0, 2128, 2126, 1, 0, 0, 0, 2128, 2127, 1, 0, 0, 0, 2129, 257, 1, 0, 0, 0, 2130, 2131, 3, 648, 324, 0, 2131, 259, 1, 0, 0, 0, 2132, 2142, 3, 256, 128, 0, 2133, 2138, 5, 395, 0, 0, 2134, 2139, 5, 104, 0, 0, 2135, 2139, 5, 175, 0, 0, 2136, 2139, 5, 375, 0, 0, 2137, 2139, 3, 648, 324, 0, 2138, 2134, 1, 0, 0, 0, 2138, 2135, 1, 0, 0, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2137, 1, 0, 0, 0, 2139, 2141, 1, 0, 0, 0, 2140, 2133, 1, 0, 0, 0, 2141, 2144, 1, 0, 0, 0, 2142, 2140, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 261, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2145, 2150, 3, 302, 151, 0, 2146, 2147, 5, 397, 0, 0, 2147, 2149, 3, 302, 151, 0, 2148, 2146, 1, 0, 0, 0, 2149, 2152, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 263, 1, 0, 0, 0, 2152, 2150, 1, 0, 0, 0, 2153, 2154, 5, 399, 0, 0, 2154, 2155, 3, 254, 127, 0, 2155, 2156, 5, 400, 0, 0, 2156, 265, 1, 0, 0, 0, 2157, 2159, 3, 268, 134, 0, 2158, 2160, 3, 270, 135, 0, 2159, 2158, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2163, 1, 0, 0, 0, 2161, 2163, 3, 272, 136, 0, 2162, 2157, 1, 0, 0, 0, 2162, 2161, 1, 0, 0, 0, 2163, 267, 1, 0, 0, 0, 2164, 2167, 3, 672, 336, 0, 2165, 2167, 3, 674, 337, 0, 2166, 2164, 1, 0, 0, 0, 2166, 2165, 1, 0, 0, 0, 2167, 269, 1, 0, 0, 0, 2168, 2169, 7, 16, 0, 0, 2169, 271, 1, 0, 0, 0, 2170, 2174, 5, 109, 0, 0, 2171, 2172, 5, 216, 0, 0, 2172, 2174, 5, 109, 0, 0, 2173, 2170, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 273, 1, 0, 0, 0, 2175, 2176, 7, 17, 0, 0, 2176, 275, 1, 0, 0, 0, 2177, 2178, 5, 55, 0, 0, 2178, 2180, 3, 648, 324, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2183, 3, 280, 140, 0, 2182, 2184, 3, 336, 168, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 277, 1, 0, 0, 0, 2185, 2186, 5, 55, 0, 0, 2186, 2187, 3, 648, 324, 0, 2187, 2189, 3, 280, 140, 0, 2188, 2190, 3, 338, 169, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 279, 1, 0, 0, 0, 2191, 2194, 3, 282, 141, 0, 2192, 2194, 3, 284, 142, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2192, 1, 0, 0, 0, 2194, 281, 1, 0, 0, 0, 2195, 2196, 3, 334, 167, 0, 2196, 2197, 3, 264, 132, 0, 2197, 283, 1, 0, 0, 0, 2198, 2199, 5, 40, 0, 0, 2199, 2200, 5, 399, 0, 0, 2200, 2201, 3, 590, 295, 0, 2201, 2202, 5, 400, 0, 0, 2202, 285, 1, 0, 0, 0, 2203, 2204, 5, 55, 0, 0, 2204, 2206, 3, 648, 324, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2208, 5, 136, 0, 0, 2208, 2209, 5, 173, 0, 0, 2209, 2210, 3, 264, 132, 0, 2210, 2211, 5, 269, 0, 0, 2211, 2212, 3, 478, 239, 0, 2212, 2214, 3, 264, 132, 0, 2213, 2215, 3, 336, 168, 0, 2214, 2213, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 287, 1, 0, 0, 0, 2216, 2217, 5, 55, 0, 0, 2217, 2218, 3, 648, 324, 0, 2218, 2219, 5, 136, 0, 0, 2219, 2220, 5, 173, 0, 0, 2220, 2221, 3, 264, 132, 0, 2221, 2222, 5, 269, 0, 0, 2222, 2223, 3, 478, 239, 0, 2223, 2225, 3, 264, 132, 0, 2224, 2226, 3, 338, 169, 0, 2225, 2224, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 289, 1, 0, 0, 0, 2227, 2230, 3, 296, 148, 0, 2228, 2230, 3, 292, 146, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2228, 1, 0, 0, 0, 2230, 291, 1, 0, 0, 0, 2231, 2236, 3, 294, 147, 0, 2232, 2233, 5, 397, 0, 0, 2233, 2235, 3, 294, 147, 0, 2234, 2232, 1, 0, 0, 0, 2235, 2238, 1, 0, 0, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 293, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2239, 2240, 5, 399, 0, 0, 2240, 2241, 3, 296, 148, 0, 2241, 2242, 5, 400, 0, 0, 2242, 295, 1, 0, 0, 0, 2243, 2248, 3, 582, 291, 0, 2244, 2245, 5, 397, 0, 0, 2245, 2247, 3, 582, 291, 0, 2246, 2244, 1, 0, 0, 0, 2247, 2250, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 297, 1, 0, 0, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2252, 7, 18, 0, 0, 2252, 299, 1, 0, 0, 0, 2253, 2254, 5, 220, 0, 0, 2254, 2255, 7, 19, 0, 0, 2255, 301, 1, 0, 0, 0, 2256, 2258, 3, 256, 128, 0, 2257, 2259, 3, 298, 149, 0, 2258, 2257, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2261, 1, 0, 0, 0, 2260, 2262, 3, 300, 150, 0, 2261, 2260, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 303, 1, 0, 0, 0, 2263, 2268, 3, 306, 153, 0, 2264, 2265, 5, 397, 0, 0, 2265, 2267, 3, 306, 153, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2270, 1, 0, 0, 0, 2268, 2266, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 305, 1, 0, 0, 0, 2270, 2268, 1, 0, 0, 0, 2271, 2274, 3, 258, 129, 0, 2272, 2273, 5, 47, 0, 0, 2273, 2275, 5, 426, 0, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 307, 1, 0, 0, 0, 2276, 2279, 3, 256, 128, 0, 2277, 2279, 3, 590, 295, 0, 2278, 2276, 1, 0, 0, 0, 2278, 2277, 1, 0, 0, 0, 2279, 2281, 1, 0, 0, 0, 2280, 2282, 3, 298, 149, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2284, 1, 0, 0, 0, 2283, 2285, 3, 300, 150, 0, 2284, 2283, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 309, 1, 0, 0, 0, 2286, 2287, 3, 258, 129, 0, 2287, 2290, 3, 342, 171, 0, 2288, 2289, 5, 47, 0, 0, 2289, 2291, 5, 426, 0, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 311, 1, 0, 0, 0, 2292, 2295, 3, 314, 157, 0, 2293, 2295, 3, 316, 158, 0, 2294, 2292, 1, 0, 0, 0, 2294, 2293, 1, 0, 0, 0, 2295, 313, 1, 0, 0, 0, 2296, 2299, 3, 286, 143, 0, 2297, 2299, 3, 276, 138, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2297, 1, 0, 0, 0, 2299, 315, 1, 0, 0, 0, 2300, 2301, 3, 258, 129, 0, 2301, 2303, 3, 342, 171, 0, 2302, 2304, 3, 318, 159, 0, 2303, 2302, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2307, 1, 0, 0, 0, 2305, 2306, 5, 47, 0, 0, 2306, 2308, 5, 426, 0, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 317, 1, 0, 0, 0, 2309, 2312, 3, 320, 160, 0, 2310, 2312, 3, 322, 161, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2310, 1, 0, 0, 0, 2312, 319, 1, 0, 0, 0, 2313, 2314, 5, 55, 0, 0, 2314, 2316, 3, 648, 324, 0, 2315, 2313, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2318, 5, 269, 0, 0, 2318, 2319, 3, 478, 239, 0, 2319, 2320, 5, 399, 0, 0, 2320, 2321, 3, 256, 128, 0, 2321, 2323, 5, 400, 0, 0, 2322, 2324, 3, 336, 168, 0, 2323, 2322, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 321, 1, 0, 0, 0, 2325, 2326, 5, 55, 0, 0, 2326, 2328, 3, 648, 324, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2331, 3, 330, 165, 0, 2330, 2332, 3, 336, 168, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 323, 1, 0, 0, 0, 2333, 2336, 3, 326, 163, 0, 2334, 2336, 3, 328, 164, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2334, 1, 0, 0, 0, 2336, 325, 1, 0, 0, 0, 2337, 2338, 5, 55, 0, 0, 2338, 2340, 3, 648, 324, 0, 2339, 2337, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2342, 5, 269, 0, 0, 2342, 2343, 3, 478, 239, 0, 2343, 2344, 5, 399, 0, 0, 2344, 2345, 3, 256, 128, 0, 2345, 2347, 5, 400, 0, 0, 2346, 2348, 3, 338, 169, 0, 2347, 2346, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 327, 1, 0, 0, 0, 2349, 2350, 5, 55, 0, 0, 2350, 2352, 3, 648, 324, 0, 2351, 2349, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2355, 3, 330, 165, 0, 2354, 2356, 3, 338, 169, 0, 2355, 2354, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 329, 1, 0, 0, 0, 2357, 2358, 5, 216, 0, 0, 2358, 2364, 5, 219, 0, 0, 2359, 2360, 5, 83, 0, 0, 2360, 2364, 3, 332, 166, 0, 2361, 2364, 3, 284, 142, 0, 2362, 2364, 3, 334, 167, 0, 2363, 2357, 1, 0, 0, 0, 2363, 2359, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2362, 1, 0, 0, 0, 2364, 331, 1, 0, 0, 0, 2365, 2369, 3, 582, 291, 0, 2366, 2369, 3, 560, 280, 0, 2367, 2369, 3, 570, 285, 0, 2368, 2365, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2368, 2367, 1, 0, 0, 0, 2369, 333, 1, 0, 0, 0, 2370, 2371, 5, 251, 0, 0, 2371, 2374, 5, 173, 0, 0, 2372, 2374, 5, 358, 0, 0, 2373, 2370, 1, 0, 0, 0, 2373, 2372, 1, 0, 0, 0, 2374, 335, 1, 0, 0, 0, 2375, 2377, 3, 266, 133, 0, 2376, 2378, 3, 274, 137, 0, 2377, 2376, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 337, 1, 0, 0, 0, 2379, 2381, 3, 266, 133, 0, 2380, 2382, 3, 274, 137, 0, 2381, 2380, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 339, 1, 0, 0, 0, 2383, 2384, 3, 258, 129, 0, 2384, 2385, 5, 396, 0, 0, 2385, 2388, 3, 342, 171, 0, 2386, 2387, 5, 47, 0, 0, 2387, 2389, 5, 426, 0, 0, 2388, 2386, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 341, 1, 0, 0, 0, 2390, 2391, 3, 346, 173, 0, 2391, 343, 1, 0, 0, 0, 2392, 2397, 3, 342, 171, 0, 2393, 2394, 5, 397, 0, 0, 2394, 2396, 3, 342, 171, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2399, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 345, 1, 0, 0, 0, 2399, 2397, 1, 0, 0, 0, 2400, 2406, 3, 348, 174, 0, 2401, 2406, 3, 350, 175, 0, 2402, 2406, 3, 352, 176, 0, 2403, 2406, 3, 354, 177, 0, 2404, 2406, 3, 356, 178, 0, 2405, 2400, 1, 0, 0, 0, 2405, 2401, 1, 0, 0, 0, 2405, 2402, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2404, 1, 0, 0, 0, 2406, 347, 1, 0, 0, 0, 2407, 2445, 5, 340, 0, 0, 2408, 2445, 5, 311, 0, 0, 2409, 2445, 5, 162, 0, 0, 2410, 2445, 5, 163, 0, 0, 2411, 2445, 5, 26, 0, 0, 2412, 2445, 5, 28, 0, 0, 2413, 2445, 5, 131, 0, 0, 2414, 2445, 5, 264, 0, 0, 2415, 2417, 5, 100, 0, 0, 2416, 2418, 5, 248, 0, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2445, 1, 0, 0, 0, 2419, 2445, 5, 71, 0, 0, 2420, 2445, 5, 72, 0, 0, 2421, 2445, 5, 337, 0, 0, 2422, 2445, 5, 338, 0, 0, 2423, 2424, 5, 337, 0, 0, 2424, 2425, 5, 387, 0, 0, 2425, 2426, 5, 188, 0, 0, 2426, 2427, 5, 336, 0, 0, 2427, 2445, 5, 394, 0, 0, 2428, 2445, 5, 323, 0, 0, 2429, 2445, 5, 27, 0, 0, 2430, 2438, 3, 690, 345, 0, 2431, 2432, 5, 399, 0, 0, 2432, 2435, 5, 431, 0, 0, 2433, 2434, 5, 397, 0, 0, 2434, 2436, 5, 431, 0, 0, 2435, 2433, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2439, 5, 400, 0, 0, 2438, 2431, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2445, 1, 0, 0, 0, 2440, 2441, 7, 20, 0, 0, 2441, 2442, 5, 399, 0, 0, 2442, 2443, 5, 431, 0, 0, 2443, 2445, 5, 400, 0, 0, 2444, 2407, 1, 0, 0, 0, 2444, 2408, 1, 0, 0, 0, 2444, 2409, 1, 0, 0, 0, 2444, 2410, 1, 0, 0, 0, 2444, 2411, 1, 0, 0, 0, 2444, 2412, 1, 0, 0, 0, 2444, 2413, 1, 0, 0, 0, 2444, 2414, 1, 0, 0, 0, 2444, 2415, 1, 0, 0, 0, 2444, 2419, 1, 0, 0, 0, 2444, 2420, 1, 0, 0, 0, 2444, 2421, 1, 0, 0, 0, 2444, 2422, 1, 0, 0, 0, 2444, 2423, 1, 0, 0, 0, 2444, 2428, 1, 0, 0, 0, 2444, 2429, 1, 0, 0, 0, 2444, 2430, 1, 0, 0, 0, 2444, 2440, 1, 0, 0, 0, 2445, 349, 1, 0, 0, 0, 2446, 2447, 5, 16, 0, 0, 2447, 2448, 5, 409, 0, 0, 2448, 2449, 3, 346, 173, 0, 2449, 2450, 5, 411, 0, 0, 2450, 351, 1, 0, 0, 0, 2451, 2452, 5, 324, 0, 0, 2452, 2453, 5, 409, 0, 0, 2453, 2454, 3, 252, 126, 0, 2454, 2455, 5, 411, 0, 0, 2455, 353, 1, 0, 0, 0, 2456, 2457, 5, 198, 0, 0, 2457, 2458, 5, 409, 0, 0, 2458, 2459, 3, 348, 174, 0, 2459, 2460, 5, 397, 0, 0, 2460, 2461, 3, 346, 173, 0, 2461, 2462, 5, 411, 0, 0, 2462, 355, 1, 0, 0, 0, 2463, 2464, 5, 357, 0, 0, 2464, 2465, 5, 409, 0, 0, 2465, 2466, 3, 344, 172, 0, 2466, 2467, 5, 411, 0, 0, 2467, 357, 1, 0, 0, 0, 2468, 2470, 7, 21, 0, 0, 2469, 2471, 7, 22, 0, 0, 2470, 2469, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 359, 1, 0, 0, 0, 2472, 2474, 3, 364, 182, 0, 2473, 2472, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2476, 3, 362, 181, 0, 2476, 361, 1, 0, 0, 0, 2477, 2480, 3, 368, 184, 0, 2478, 2480, 3, 372, 186, 0, 2479, 2477, 1, 0, 0, 0, 2479, 2478, 1, 0, 0, 0, 2480, 363, 1, 0, 0, 0, 2481, 2482, 5, 387, 0, 0, 2482, 2487, 3, 366, 183, 0, 2483, 2484, 5, 397, 0, 0, 2484, 2486, 3, 366, 183, 0, 2485, 2483, 1, 0, 0, 0, 2486, 2489, 1, 0, 0, 0, 2487, 2485, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 365, 1, 0, 0, 0, 2489, 2487, 1, 0, 0, 0, 2490, 2495, 3, 648, 324, 0, 2491, 2492, 5, 399, 0, 0, 2492, 2493, 3, 254, 127, 0, 2493, 2494, 5, 400, 0, 0, 2494, 2496, 1, 0, 0, 0, 2495, 2491, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 5, 17, 0, 0, 2498, 2499, 5, 399, 0, 0, 2499, 2500, 3, 360, 180, 0, 2500, 2501, 5, 400, 0, 0, 2501, 367, 1, 0, 0, 0, 2502, 2508, 3, 370, 185, 0, 2503, 2504, 3, 358, 179, 0, 2504, 2505, 3, 370, 185, 0, 2505, 2507, 1, 0, 0, 0, 2506, 2503, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 369, 1, 0, 0, 0, 2510, 2508, 1, 0, 0, 0, 2511, 2512, 3, 448, 224, 0, 2512, 2513, 3, 382, 191, 0, 2513, 2515, 3, 504, 252, 0, 2514, 2516, 3, 462, 231, 0, 2515, 2514, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2518, 1, 0, 0, 0, 2517, 2519, 3, 496, 248, 0, 2518, 2517, 1, 0, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2521, 1, 0, 0, 0, 2520, 2522, 3, 530, 265, 0, 2521, 2520, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2524, 1, 0, 0, 0, 2523, 2525, 3, 538, 269, 0, 2524, 2523, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2527, 1, 0, 0, 0, 2526, 2528, 3, 522, 261, 0, 2527, 2526, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2530, 1, 0, 0, 0, 2529, 2531, 3, 540, 270, 0, 2530, 2529, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2534, 3, 552, 276, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 554, 277, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 556, 278, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 558, 279, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 386, 193, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2583, 1, 0, 0, 0, 2547, 2548, 3, 448, 224, 0, 2548, 2550, 3, 504, 252, 0, 2549, 2551, 3, 462, 231, 0, 2550, 2549, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2553, 1, 0, 0, 0, 2552, 2554, 3, 496, 248, 0, 2553, 2552, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2556, 1, 0, 0, 0, 2555, 2557, 3, 530, 265, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2559, 1, 0, 0, 0, 2558, 2560, 3, 538, 269, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2562, 1, 0, 0, 0, 2561, 2563, 3, 522, 261, 0, 2562, 2561, 1, 0, 0, 0, 2562, 2563, 1, 0, 0, 0, 2563, 2565, 1, 0, 0, 0, 2564, 2566, 3, 540, 270, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2569, 3, 552, 276, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 554, 277, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 556, 278, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 558, 279, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 386, 193, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2511, 1, 0, 0, 0, 2582, 2547, 1, 0, 0, 0, 2583, 371, 1, 0, 0, 0, 2584, 2585, 3, 382, 191, 0, 2585, 2586, 3, 376, 188, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2589, 3, 376, 188, 0, 2588, 2584, 1, 0, 0, 0, 2588, 2587, 1, 0, 0, 0, 2589, 373, 1, 0, 0, 0, 2590, 2592, 3, 504, 252, 0, 2591, 2593, 3, 448, 224, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 496, 248, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2599, 3, 530, 265, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2602, 3, 538, 269, 0, 2601, 2600, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2604, 1, 0, 0, 0, 2603, 2605, 3, 522, 261, 0, 2604, 2603, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2607, 1, 0, 0, 0, 2606, 2608, 3, 540, 270, 0, 2607, 2606, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2615, 1, 0, 0, 0, 2609, 2610, 5, 399, 0, 0, 2610, 2611, 3, 376, 188, 0, 2611, 2612, 5, 400, 0, 0, 2612, 2615, 1, 0, 0, 0, 2613, 2615, 3, 498, 249, 0, 2614, 2590, 1, 0, 0, 0, 2614, 2609, 1, 0, 0, 0, 2614, 2613, 1, 0, 0, 0, 2615, 375, 1, 0, 0, 0, 2616, 2618, 3, 374, 187, 0, 2617, 2619, 3, 378, 189, 0, 2618, 2617, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2621, 1, 0, 0, 0, 2620, 2622, 3, 552, 276, 0, 2621, 2620, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2624, 1, 0, 0, 0, 2623, 2625, 3, 554, 277, 0, 2624, 2623, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2627, 1, 0, 0, 0, 2626, 2628, 3, 556, 278, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2630, 1, 0, 0, 0, 2629, 2631, 3, 558, 279, 0, 2630, 2629, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2633, 1, 0, 0, 0, 2632, 2634, 3, 386, 193, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 377, 1, 0, 0, 0, 2635, 2636, 3, 358, 179, 0, 2636, 2637, 3, 374, 187, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2635, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2638, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 379, 1, 0, 0, 0, 2642, 2644, 3, 364, 182, 0, 2643, 2642, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2646, 3, 376, 188, 0, 2646, 381, 1, 0, 0, 0, 2647, 2664, 5, 161, 0, 0, 2648, 2649, 5, 235, 0, 0, 2649, 2651, 3, 384, 192, 0, 2650, 2652, 3, 32, 16, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2665, 1, 0, 0, 0, 2653, 2655, 5, 166, 0, 0, 2654, 2656, 5, 329, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2662, 3, 634, 317, 0, 2658, 2659, 5, 399, 0, 0, 2659, 2660, 3, 254, 127, 0, 2660, 2661, 5, 400, 0, 0, 2661, 2663, 1, 0, 0, 0, 2662, 2658, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2648, 1, 0, 0, 0, 2664, 2653, 1, 0, 0, 0, 2665, 383, 1, 0, 0, 0, 2666, 2668, 5, 188, 0, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 5, 93, 0, 0, 2670, 2672, 5, 426, 0, 0, 2671, 2673, 3, 222, 111, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2676, 3, 246, 123, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2680, 1, 0, 0, 0, 2677, 2678, 5, 329, 0, 0, 2678, 2680, 3, 634, 317, 0, 2679, 2667, 1, 0, 0, 0, 2679, 2677, 1, 0, 0, 0, 2680, 385, 1, 0, 0, 0, 2681, 2690, 5, 185, 0, 0, 2682, 2683, 5, 431, 0, 0, 2683, 2685, 5, 397, 0, 0, 2684, 2682, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2691, 5, 431, 0, 0, 2687, 2688, 5, 431, 0, 0, 2688, 2689, 5, 223, 0, 0, 2689, 2691, 5, 431, 0, 0, 2690, 2684, 1, 0, 0, 0, 2690, 2687, 1, 0, 0, 0, 2691, 387, 1, 0, 0, 0, 2692, 2693, 3, 256, 128, 0, 2693, 2694, 5, 405, 0, 0, 2694, 2695, 3, 390, 195, 0, 2695, 389, 1, 0, 0, 0, 2696, 2699, 5, 83, 0, 0, 2697, 2699, 3, 600, 300, 0, 2698, 2696, 1, 0, 0, 0, 2698, 2697, 1, 0, 0, 0, 2699, 391, 1, 0, 0, 0, 2700, 2701, 5, 304, 0, 0, 2701, 2706, 3, 388, 194, 0, 2702, 2703, 5, 397, 0, 0, 2703, 2705, 3, 388, 194, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2708, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 393, 1, 0, 0, 0, 2708, 2706, 1, 0, 0, 0, 2709, 2710, 5, 318, 0, 0, 2710, 2719, 5, 344, 0, 0, 2711, 2716, 3, 396, 198, 0, 2712, 2713, 5, 397, 0, 0, 2713, 2715, 3, 396, 198, 0, 2714, 2712, 1, 0, 0, 0, 2715, 2718, 1, 0, 0, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2720, 1, 0, 0, 0, 2718, 2716, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2733, 1, 0, 0, 0, 2721, 2723, 5, 48, 0, 0, 2722, 2724, 5, 389, 0, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2733, 1, 0, 0, 0, 2725, 2727, 5, 289, 0, 0, 2726, 2728, 5, 389, 0, 0, 2727, 2726, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2733, 1, 0, 0, 0, 2729, 2730, 5, 304, 0, 0, 2730, 2731, 5, 22, 0, 0, 2731, 2733, 7, 23, 0, 0, 2732, 2709, 1, 0, 0, 0, 2732, 2721, 1, 0, 0, 0, 2732, 2725, 1, 0, 0, 0, 2732, 2729, 1, 0, 0, 0, 2733, 395, 1, 0, 0, 0, 2734, 2735, 5, 168, 0, 0, 2735, 2736, 5, 182, 0, 0, 2736, 2740, 5, 312, 0, 0, 2737, 2738, 5, 261, 0, 0, 2738, 2740, 7, 24, 0, 0, 2739, 2734, 1, 0, 0, 0, 2739, 2737, 1, 0, 0, 0, 2740, 397, 1, 0, 0, 0, 2741, 2744, 3, 402, 201, 0, 2742, 2744, 3, 404, 202, 0, 2743, 2741, 1, 0, 0, 0, 2743, 2742, 1, 0, 0, 0, 2744, 2747, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2749, 1, 0, 0, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2750, 3, 400, 200, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 399, 1, 0, 0, 0, 2751, 2752, 5, 383, 0, 0, 2752, 2753, 5, 216, 0, 0, 2753, 2756, 5, 201, 0, 0, 2754, 2755, 5, 11, 0, 0, 2755, 2757, 3, 590, 295, 0, 2756, 2754, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 5, 335, 0, 0, 2759, 2761, 5, 161, 0, 0, 2760, 2762, 3, 264, 132, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 5, 374, 0, 0, 2764, 2765, 3, 548, 274, 0, 2765, 401, 1, 0, 0, 0, 2766, 2767, 5, 383, 0, 0, 2767, 2768, 5, 201, 0, 0, 2768, 2769, 5, 11, 0, 0, 2769, 2770, 3, 590, 295, 0, 2770, 2774, 5, 335, 0, 0, 2771, 2772, 5, 365, 0, 0, 2772, 2775, 3, 392, 196, 0, 2773, 2775, 5, 86, 0, 0, 2774, 2771, 1, 0, 0, 0, 2774, 2773, 1, 0, 0, 0, 2775, 403, 1, 0, 0, 0, 2776, 2777, 5, 383, 0, 0, 2777, 2778, 5, 201, 0, 0, 2778, 2782, 5, 335, 0, 0, 2779, 2780, 5, 365, 0, 0, 2780, 2783, 3, 392, 196, 0, 2781, 2783, 5, 86, 0, 0, 2782, 2779, 1, 0, 0, 0, 2782, 2781, 1, 0, 0, 0, 2783, 405, 1, 0, 0, 0, 2784, 2785, 5, 246, 0, 0, 2785, 2786, 5, 426, 0, 0, 2786, 407, 1, 0, 0, 0, 2787, 2788, 5, 352, 0, 0, 2788, 2789, 5, 426, 0, 0, 2789, 409, 1, 0, 0, 0, 2790, 2791, 5, 320, 0, 0, 2791, 2792, 5, 426, 0, 0, 2792, 411, 1, 0, 0, 0, 2793, 2824, 5, 9, 0, 0, 2794, 2795, 5, 329, 0, 0, 2795, 2796, 3, 478, 239, 0, 2796, 2797, 3, 414, 207, 0, 2797, 2825, 1, 0, 0, 0, 2798, 2799, 5, 378, 0, 0, 2799, 2801, 3, 482, 241, 0, 2800, 2802, 5, 17, 0, 0, 2801, 2800, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2804, 3, 418, 209, 0, 2804, 2825, 1, 0, 0, 0, 2805, 2806, 5, 202, 0, 0, 2806, 2807, 5, 378, 0, 0, 2807, 2811, 3, 482, 241, 0, 2808, 2812, 3, 36, 18, 0, 2809, 2812, 3, 38, 19, 0, 2810, 2812, 5, 265, 0, 0, 2811, 2808, 1, 0, 0, 0, 2811, 2809, 1, 0, 0, 0, 2811, 2810, 1, 0, 0, 0, 2812, 2825, 1, 0, 0, 0, 2813, 2814, 3, 70, 35, 0, 2814, 2815, 3, 420, 210, 0, 2815, 2825, 1, 0, 0, 0, 2816, 2817, 5, 69, 0, 0, 2817, 2825, 3, 422, 211, 0, 2818, 2819, 5, 155, 0, 0, 2819, 2820, 3, 648, 324, 0, 2820, 2821, 5, 224, 0, 0, 2821, 2822, 3, 634, 317, 0, 2822, 2823, 5, 265, 0, 0, 2823, 2825, 1, 0, 0, 0, 2824, 2794, 1, 0, 0, 0, 2824, 2798, 1, 0, 0, 0, 2824, 2805, 1, 0, 0, 0, 2824, 2813, 1, 0, 0, 0, 2824, 2816, 1, 0, 0, 0, 2824, 2818, 1, 0, 0, 0, 2825, 413, 1, 0, 0, 0, 2826, 2827, 5, 274, 0, 0, 2827, 2828, 5, 341, 0, 0, 2828, 2916, 3, 480, 240, 0, 2829, 2830, 5, 102, 0, 0, 2830, 2916, 5, 239, 0, 0, 2831, 2916, 3, 426, 213, 0, 2832, 2834, 5, 4, 0, 0, 2833, 2835, 3, 32, 16, 0, 2834, 2833, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2840, 1, 0, 0, 0, 2836, 2838, 3, 636, 318, 0, 2837, 2839, 3, 424, 212, 0, 2838, 2837, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2841, 1, 0, 0, 0, 2840, 2836, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2840, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2916, 1, 0, 0, 0, 2844, 2848, 5, 342, 0, 0, 2845, 2847, 3, 636, 318, 0, 2846, 2845, 1, 0, 0, 0, 2847, 2850, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2916, 1, 0, 0, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2855, 5, 15, 0, 0, 2852, 2854, 3, 636, 318, 0, 2853, 2852, 1, 0, 0, 0, 2854, 2857, 1, 0, 0, 0, 2855, 2853, 1, 0, 0, 0, 2855, 2856, 1, 0, 0, 0, 2856, 2916, 1, 0, 0, 0, 2857, 2855, 1, 0, 0, 0, 2858, 2862, 5, 353, 0, 0, 2859, 2861, 3, 636, 318, 0, 2860, 2859, 1, 0, 0, 0, 2861, 2864, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2862, 2863, 1, 0, 0, 0, 2863, 2916, 1, 0, 0, 0, 2864, 2862, 1, 0, 0, 0, 2865, 2866, 5, 304, 0, 0, 2866, 2867, 5, 332, 0, 0, 2867, 2916, 3, 226, 113, 0, 2868, 2869, 5, 363, 0, 0, 2869, 2871, 5, 332, 0, 0, 2870, 2872, 3, 30, 15, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2916, 3, 226, 113, 0, 2874, 2916, 3, 210, 105, 0, 2875, 2878, 5, 216, 0, 0, 2876, 2879, 5, 310, 0, 0, 2877, 2879, 3, 40, 20, 0, 2878, 2876, 1, 0, 0, 0, 2878, 2877, 1, 0, 0, 0, 2879, 2916, 1, 0, 0, 0, 2880, 2881, 5, 113, 0, 0, 2881, 2882, 3, 636, 318, 0, 2882, 2883, 5, 387, 0, 0, 2883, 2884, 5, 329, 0, 0, 2884, 2885, 3, 478, 239, 0, 2885, 2916, 1, 0, 0, 0, 2886, 2887, 5, 237, 0, 0, 2887, 2888, 5, 45, 0, 0, 2888, 2889, 5, 399, 0, 0, 2889, 2890, 3, 310, 155, 0, 2890, 2891, 5, 400, 0, 0, 2891, 2916, 1, 0, 0, 0, 2892, 2893, 5, 101, 0, 0, 2893, 2894, 5, 55, 0, 0, 2894, 2916, 3, 648, 324, 0, 2895, 2898, 5, 4, 0, 0, 2896, 2899, 3, 288, 144, 0, 2897, 2899, 3, 278, 139, 0, 2898, 2896, 1, 0, 0, 0, 2898, 2897, 1, 0, 0, 0, 2899, 2916, 1, 0, 0, 0, 2900, 2902, 3, 636, 318, 0, 2901, 2900, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2916, 3, 416, 208, 0, 2904, 2905, 5, 304, 0, 0, 2905, 2906, 5, 236, 0, 0, 2906, 2916, 3, 126, 63, 0, 2907, 2908, 5, 304, 0, 0, 2908, 2909, 5, 237, 0, 0, 2909, 2910, 5, 316, 0, 0, 2910, 2911, 5, 399, 0, 0, 2911, 2912, 3, 204, 102, 0, 2912, 2913, 5, 400, 0, 0, 2913, 2916, 1, 0, 0, 0, 2914, 2916, 3, 430, 215, 0, 2915, 2826, 1, 0, 0, 0, 2915, 2829, 1, 0, 0, 0, 2915, 2831, 1, 0, 0, 0, 2915, 2832, 1, 0, 0, 0, 2915, 2844, 1, 0, 0, 0, 2915, 2851, 1, 0, 0, 0, 2915, 2858, 1, 0, 0, 0, 2915, 2865, 1, 0, 0, 0, 2915, 2868, 1, 0, 0, 0, 2915, 2874, 1, 0, 0, 0, 2915, 2875, 1, 0, 0, 0, 2915, 2880, 1, 0, 0, 0, 2915, 2886, 1, 0, 0, 0, 2915, 2892, 1, 0, 0, 0, 2915, 2895, 1, 0, 0, 0, 2915, 2901, 1, 0, 0, 0, 2915, 2904, 1, 0, 0, 0, 2915, 2907, 1, 0, 0, 0, 2915, 2914, 1, 0, 0, 0, 2916, 415, 1, 0, 0, 0, 2917, 2918, 5, 304, 0, 0, 2918, 2919, 5, 129, 0, 0, 2919, 3050, 3, 432, 216, 0, 2920, 2921, 5, 304, 0, 0, 2921, 2922, 5, 189, 0, 0, 2922, 3050, 5, 426, 0, 0, 2923, 3050, 5, 53, 0, 0, 2924, 2934, 5, 304, 0, 0, 2925, 2926, 5, 301, 0, 0, 2926, 2930, 5, 426, 0, 0, 2927, 2928, 5, 387, 0, 0, 2928, 2929, 5, 302, 0, 0, 2929, 2931, 3, 226, 113, 0, 2930, 2927, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2935, 1, 0, 0, 0, 2932, 2933, 5, 302, 0, 0, 2933, 2935, 3, 226, 113, 0, 2934, 2925, 1, 0, 0, 0, 2934, 2932, 1, 0, 0, 0, 2935, 3050, 1, 0, 0, 0, 2936, 2937, 5, 363, 0, 0, 2937, 2938, 5, 302, 0, 0, 2938, 3050, 3, 226, 113, 0, 2939, 2940, 5, 274, 0, 0, 2940, 2941, 5, 341, 0, 0, 2941, 3050, 3, 636, 318, 0, 2942, 2943, 5, 166, 0, 0, 2943, 2944, 5, 431, 0, 0, 2944, 3050, 5, 31, 0, 0, 2945, 2946, 5, 304, 0, 0, 2946, 2947, 5, 310, 0, 0, 2947, 2948, 5, 189, 0, 0, 2948, 2949, 5, 399, 0, 0, 2949, 2954, 3, 428, 214, 0, 2950, 2951, 5, 397, 0, 0, 2951, 2953, 3, 428, 214, 0, 2952, 2950, 1, 0, 0, 0, 2953, 2956, 1, 0, 0, 0, 2954, 2952, 1, 0, 0, 0, 2954, 2955, 1, 0, 0, 0, 2955, 2957, 1, 0, 0, 0, 2956, 2954, 1, 0, 0, 0, 2957, 2958, 5, 400, 0, 0, 2958, 3050, 1, 0, 0, 0, 2959, 2960, 5, 216, 0, 0, 2960, 3050, 7, 25, 0, 0, 2961, 3050, 3, 208, 104, 0, 2962, 2963, 5, 49, 0, 0, 2963, 2966, 5, 426, 0, 0, 2964, 2965, 5, 11, 0, 0, 2965, 2967, 5, 380, 0, 0, 2966, 2964, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 2972, 1, 0, 0, 0, 2968, 2969, 5, 42, 0, 0, 2969, 2970, 5, 166, 0, 0, 2970, 2971, 5, 431, 0, 0, 2971, 2973, 5, 31, 0, 0, 2972, 2968, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 1, 0, 0, 0, 2974, 2976, 3, 552, 276, 0, 2975, 2974, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 2978, 1, 0, 0, 0, 2977, 2979, 3, 406, 203, 0, 2978, 2977, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 2984, 1, 0, 0, 0, 2980, 2981, 5, 387, 0, 0, 2981, 2982, 5, 235, 0, 0, 2982, 2983, 5, 332, 0, 0, 2983, 2985, 3, 226, 113, 0, 2984, 2980, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 3050, 1, 0, 0, 0, 2986, 2987, 5, 365, 0, 0, 2987, 2988, 5, 319, 0, 0, 2988, 2990, 5, 134, 0, 0, 2989, 2991, 5, 45, 0, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 3, 256, 128, 0, 2993, 2994, 5, 304, 0, 0, 2994, 2997, 3, 226, 113, 0, 2995, 2996, 5, 47, 0, 0, 2996, 2998, 5, 426, 0, 0, 2997, 2995, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 3050, 1, 0, 0, 0, 2999, 3000, 5, 365, 0, 0, 3000, 3001, 5, 319, 0, 0, 3001, 3002, 5, 304, 0, 0, 3002, 3050, 3, 226, 113, 0, 3003, 3005, 5, 38, 0, 0, 3004, 3006, 5, 45, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 3, 256, 128, 0, 3008, 3009, 3, 258, 129, 0, 3009, 3011, 3, 342, 171, 0, 3010, 3012, 3, 324, 162, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3015, 1, 0, 0, 0, 3013, 3014, 5, 47, 0, 0, 3014, 3016, 5, 426, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3020, 1, 0, 0, 0, 3017, 3021, 5, 130, 0, 0, 3018, 3019, 5, 6, 0, 0, 3019, 3021, 3, 648, 324, 0, 3020, 3017, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3023, 1, 0, 0, 0, 3022, 3024, 3, 34, 17, 0, 3023, 3022, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3050, 1, 0, 0, 0, 3025, 3028, 5, 4, 0, 0, 3026, 3028, 5, 278, 0, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3026, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 3030, 5, 46, 0, 0, 3030, 3031, 5, 399, 0, 0, 3031, 3032, 3, 248, 124, 0, 3032, 3034, 5, 400, 0, 0, 3033, 3035, 3, 34, 17, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3050, 1, 0, 0, 0, 3036, 3037, 5, 365, 0, 0, 3037, 3039, 5, 46, 0, 0, 3038, 3040, 3, 34, 17, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3050, 1, 0, 0, 0, 3041, 3047, 3, 268, 134, 0, 3042, 3044, 5, 218, 0, 0, 3043, 3045, 5, 34, 0, 0, 3044, 3043, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3048, 1, 0, 0, 0, 3046, 3048, 5, 222, 0, 0, 3047, 3042, 1, 0, 0, 0, 3047, 3046, 1, 0, 0, 0, 3048, 3050, 1, 0, 0, 0, 3049, 2917, 1, 0, 0, 0, 3049, 2920, 1, 0, 0, 0, 3049, 2923, 1, 0, 0, 0, 3049, 2924, 1, 0, 0, 0, 3049, 2936, 1, 0, 0, 0, 3049, 2939, 1, 0, 0, 0, 3049, 2942, 1, 0, 0, 0, 3049, 2945, 1, 0, 0, 0, 3049, 2959, 1, 0, 0, 0, 3049, 2961, 1, 0, 0, 0, 3049, 2962, 1, 0, 0, 0, 3049, 2986, 1, 0, 0, 0, 3049, 2999, 1, 0, 0, 0, 3049, 3003, 1, 0, 0, 0, 3049, 3027, 1, 0, 0, 0, 3049, 3036, 1, 0, 0, 0, 3049, 3041, 1, 0, 0, 0, 3050, 417, 1, 0, 0, 0, 3051, 3052, 5, 304, 0, 0, 3052, 3053, 5, 332, 0, 0, 3053, 3078, 3, 226, 113, 0, 3054, 3055, 5, 363, 0, 0, 3055, 3057, 5, 332, 0, 0, 3056, 3058, 3, 30, 15, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 3078, 3, 226, 113, 0, 3060, 3061, 5, 274, 0, 0, 3061, 3062, 5, 341, 0, 0, 3062, 3078, 3, 480, 240, 0, 3063, 3065, 5, 4, 0, 0, 3064, 3066, 3, 32, 16, 0, 3065, 3064, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3071, 1, 0, 0, 0, 3067, 3069, 3, 636, 318, 0, 3068, 3070, 3, 424, 212, 0, 3069, 3068, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3072, 1, 0, 0, 0, 3071, 3067, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3071, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3078, 1, 0, 0, 0, 3075, 3078, 3, 426, 213, 0, 3076, 3078, 3, 380, 190, 0, 3077, 3051, 1, 0, 0, 0, 3077, 3054, 1, 0, 0, 0, 3077, 3060, 1, 0, 0, 0, 3077, 3063, 1, 0, 0, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3076, 1, 0, 0, 0, 3078, 419, 1, 0, 0, 0, 3079, 3080, 3, 472, 236, 0, 3080, 3081, 5, 304, 0, 0, 3081, 3082, 5, 76, 0, 0, 3082, 3083, 3, 230, 115, 0, 3083, 3095, 1, 0, 0, 0, 3084, 3085, 3, 472, 236, 0, 3085, 3086, 5, 304, 0, 0, 3086, 3087, 5, 236, 0, 0, 3087, 3088, 3, 128, 64, 0, 3088, 3095, 1, 0, 0, 0, 3089, 3090, 3, 472, 236, 0, 3090, 3091, 5, 304, 0, 0, 3091, 3092, 7, 26, 0, 0, 3092, 3093, 5, 426, 0, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3079, 1, 0, 0, 0, 3094, 3084, 1, 0, 0, 0, 3094, 3089, 1, 0, 0, 0, 3095, 421, 1, 0, 0, 0, 3096, 3097, 3, 472, 236, 0, 3097, 3098, 5, 304, 0, 0, 3098, 3099, 5, 77, 0, 0, 3099, 3100, 3, 230, 115, 0, 3100, 3112, 1, 0, 0, 0, 3101, 3102, 3, 472, 236, 0, 3102, 3103, 5, 304, 0, 0, 3103, 3104, 5, 236, 0, 0, 3104, 3105, 3, 128, 64, 0, 3105, 3112, 1, 0, 0, 0, 3106, 3107, 3, 472, 236, 0, 3107, 3108, 5, 304, 0, 0, 3108, 3109, 5, 367, 0, 0, 3109, 3110, 5, 426, 0, 0, 3110, 3112, 1, 0, 0, 0, 3111, 3096, 1, 0, 0, 0, 3111, 3101, 1, 0, 0, 0, 3111, 3106, 1, 0, 0, 0, 3112, 423, 1, 0, 0, 0, 3113, 3114, 5, 189, 0, 0, 3114, 3115, 5, 426, 0, 0, 3115, 425, 1, 0, 0, 0, 3116, 3118, 5, 101, 0, 0, 3117, 3119, 3, 30, 15, 0, 3118, 3117, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3121, 5, 237, 0, 0, 3121, 3127, 3, 640, 320, 0, 3122, 3123, 5, 397, 0, 0, 3123, 3124, 5, 237, 0, 0, 3124, 3126, 3, 640, 320, 0, 3125, 3122, 1, 0, 0, 0, 3126, 3129, 1, 0, 0, 0, 3127, 3125, 1, 0, 0, 0, 3127, 3128, 1, 0, 0, 0, 3128, 3132, 1, 0, 0, 0, 3129, 3127, 1, 0, 0, 0, 3130, 3131, 5, 152, 0, 0, 3131, 3133, 5, 254, 0, 0, 3132, 3130, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3135, 1, 0, 0, 0, 3134, 3136, 5, 255, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3138, 1, 0, 0, 0, 3137, 3139, 3, 14, 7, 0, 3138, 3137, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 427, 1, 0, 0, 0, 3140, 3143, 3, 582, 291, 0, 3141, 3143, 3, 294, 147, 0, 3142, 3140, 1, 0, 0, 0, 3142, 3141, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 5, 405, 0, 0, 3145, 3146, 5, 426, 0, 0, 3146, 429, 1, 0, 0, 0, 3147, 3157, 5, 115, 0, 0, 3148, 3149, 5, 289, 0, 0, 3149, 3150, 5, 399, 0, 0, 3150, 3158, 7, 27, 0, 0, 3151, 3152, 5, 118, 0, 0, 3152, 3153, 5, 399, 0, 0, 3153, 3158, 5, 426, 0, 0, 3154, 3155, 5, 306, 0, 0, 3155, 3156, 5, 399, 0, 0, 3156, 3158, 5, 431, 0, 0, 3157, 3148, 1, 0, 0, 0, 3157, 3151, 1, 0, 0, 0, 3157, 3154, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 5, 400, 0, 0, 3160, 431, 1, 0, 0, 0, 3161, 3162, 5, 160, 0, 0, 3162, 3163, 5, 426, 0, 0, 3163, 3164, 5, 233, 0, 0, 3164, 3165, 5, 426, 0, 0, 3165, 3166, 5, 301, 0, 0, 3166, 3171, 5, 426, 0, 0, 3167, 3168, 5, 159, 0, 0, 3168, 3169, 5, 426, 0, 0, 3169, 3170, 5, 232, 0, 0, 3170, 3172, 5, 426, 0, 0, 3171, 3167, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3175, 1, 0, 0, 0, 3173, 3175, 3, 648, 324, 0, 3174, 3161, 1, 0, 0, 0, 3174, 3173, 1, 0, 0, 0, 3175, 433, 1, 0, 0, 0, 3176, 3177, 5, 184, 0, 0, 3177, 3186, 5, 128, 0, 0, 3178, 3179, 5, 184, 0, 0, 3179, 3180, 5, 128, 0, 0, 3180, 3181, 3, 648, 324, 0, 3181, 3182, 5, 426, 0, 0, 3182, 3186, 1, 0, 0, 0, 3183, 3184, 5, 184, 0, 0, 3184, 3186, 3, 478, 239, 0, 3185, 3176, 1, 0, 0, 0, 3185, 3178, 1, 0, 0, 0, 3185, 3183, 1, 0, 0, 0, 3186, 435, 1, 0, 0, 0, 3187, 3189, 5, 58, 0, 0, 3188, 3190, 5, 333, 0, 0, 3189, 3188, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3192, 1, 0, 0, 0, 3191, 3193, 5, 345, 0, 0, 3192, 3191, 1, 0, 0, 0, 3192, 3193, 1, 0, 0, 0, 3193, 3195, 1, 0, 0, 0, 3194, 3196, 5, 123, 0, 0, 3195, 3194, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3199, 5, 329, 0, 0, 3198, 3200, 3, 32, 16, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3258, 3, 480, 240, 0, 3202, 3204, 3, 434, 217, 0, 3203, 3205, 3, 200, 100, 0, 3204, 3203, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3207, 1, 0, 0, 0, 3206, 3208, 3, 222, 111, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3211, 3, 246, 123, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 3, 424, 212, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3216, 1, 0, 0, 0, 3215, 3217, 3, 224, 112, 0, 3216, 3215, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3219, 1, 0, 0, 0, 3218, 3220, 3, 198, 99, 0, 3219, 3218, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3259, 1, 0, 0, 0, 3221, 3222, 5, 399, 0, 0, 3222, 3223, 3, 250, 125, 0, 3223, 3224, 5, 400, 0, 0, 3224, 3226, 1, 0, 0, 0, 3225, 3221, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 196, 98, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3232, 3, 200, 100, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 208, 104, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 210, 105, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3240, 1, 0, 0, 0, 3239, 3241, 3, 222, 111, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3244, 3, 246, 123, 0, 3243, 3242, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 424, 212, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 224, 112, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 198, 99, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3256, 1, 0, 0, 0, 3254, 3255, 5, 17, 0, 0, 3255, 3257, 3, 380, 190, 0, 3256, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3259, 1, 0, 0, 0, 3258, 3202, 1, 0, 0, 0, 3258, 3225, 1, 0, 0, 0, 3259, 3323, 1, 0, 0, 0, 3260, 3261, 5, 58, 0, 0, 3261, 3262, 5, 195, 0, 0, 3262, 3264, 5, 329, 0, 0, 3263, 3265, 3, 32, 16, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3320, 3, 480, 240, 0, 3267, 3269, 3, 434, 217, 0, 3268, 3270, 3, 222, 111, 0, 3269, 3268, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3272, 1, 0, 0, 0, 3271, 3273, 3, 246, 123, 0, 3272, 3271, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3275, 1, 0, 0, 0, 3274, 3276, 3, 424, 212, 0, 3275, 3274, 1, 0, 0, 0, 3275, 3276, 1, 0, 0, 0, 3276, 3278, 1, 0, 0, 0, 3277, 3279, 3, 224, 112, 0, 3278, 3277, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3281, 1, 0, 0, 0, 3280, 3282, 3, 198, 99, 0, 3281, 3280, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3321, 1, 0, 0, 0, 3283, 3284, 5, 399, 0, 0, 3284, 3285, 3, 250, 125, 0, 3285, 3286, 5, 400, 0, 0, 3286, 3288, 1, 0, 0, 0, 3287, 3283, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 196, 98, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 1, 0, 0, 0, 3292, 3294, 3, 200, 100, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 208, 104, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3300, 3, 210, 105, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3302, 1, 0, 0, 0, 3301, 3303, 3, 222, 111, 0, 3302, 3301, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3306, 3, 246, 123, 0, 3305, 3304, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 424, 212, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 224, 112, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 198, 99, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3318, 1, 0, 0, 0, 3316, 3317, 5, 17, 0, 0, 3317, 3319, 3, 380, 190, 0, 3318, 3316, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3321, 1, 0, 0, 0, 3320, 3267, 1, 0, 0, 0, 3320, 3287, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3187, 1, 0, 0, 0, 3322, 3260, 1, 0, 0, 0, 3323, 437, 1, 0, 0, 0, 3324, 3325, 5, 58, 0, 0, 3325, 3327, 5, 69, 0, 0, 3326, 3328, 3, 32, 16, 0, 3327, 3326, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3332, 3, 648, 324, 0, 3330, 3331, 5, 352, 0, 0, 3331, 3333, 5, 426, 0, 0, 3332, 3330, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3335, 5, 367, 0, 0, 3335, 3337, 5, 426, 0, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3340, 1, 0, 0, 0, 3338, 3339, 5, 47, 0, 0, 3339, 3341, 5, 426, 0, 0, 3340, 3338, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3345, 1, 0, 0, 0, 3342, 3343, 5, 387, 0, 0, 3343, 3344, 5, 77, 0, 0, 3344, 3346, 3, 230, 115, 0, 3345, 3342, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 439, 1, 0, 0, 0, 3347, 3348, 5, 101, 0, 0, 3348, 3350, 5, 69, 0, 0, 3349, 3351, 3, 30, 15, 0, 3350, 3349, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 3, 648, 324, 0, 3353, 441, 1, 0, 0, 0, 3354, 3355, 3, 648, 324, 0, 3355, 3356, 5, 395, 0, 0, 3356, 3358, 1, 0, 0, 0, 3357, 3354, 1, 0, 0, 0, 3358, 3361, 1, 0, 0, 0, 3359, 3357, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3362, 1, 0, 0, 0, 3361, 3359, 1, 0, 0, 0, 3362, 3363, 5, 415, 0, 0, 3363, 443, 1, 0, 0, 0, 3364, 3369, 3, 590, 295, 0, 3365, 3366, 5, 397, 0, 0, 3366, 3368, 3, 590, 295, 0, 3367, 3365, 1, 0, 0, 0, 3368, 3371, 1, 0, 0, 0, 3369, 3367, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 445, 1, 0, 0, 0, 3371, 3369, 1, 0, 0, 0, 3372, 3377, 3, 648, 324, 0, 3373, 3374, 5, 397, 0, 0, 3374, 3376, 3, 648, 324, 0, 3375, 3373, 1, 0, 0, 0, 3376, 3379, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 447, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3381, 5, 139, 0, 0, 3381, 3382, 3, 450, 225, 0, 3382, 449, 1, 0, 0, 0, 3383, 3384, 5, 359, 0, 0, 3384, 3387, 3, 458, 229, 0, 3385, 3386, 5, 397, 0, 0, 3386, 3388, 3, 458, 229, 0, 3387, 3385, 1, 0, 0, 0, 3388, 3389, 1, 0, 0, 0, 3389, 3387, 1, 0, 0, 0, 3389, 3390, 1, 0, 0, 0, 3390, 3393, 1, 0, 0, 0, 3391, 3393, 3, 454, 227, 0, 3392, 3383, 1, 0, 0, 0, 3392, 3391, 1, 0, 0, 0, 3393, 451, 1, 0, 0, 0, 3394, 3398, 3, 468, 234, 0, 3395, 3397, 3, 462, 231, 0, 3396, 3395, 1, 0, 0, 0, 3397, 3400, 1, 0, 0, 0, 3398, 3396, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3427, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3405, 3, 502, 251, 0, 3402, 3404, 3, 462, 231, 0, 3403, 3402, 1, 0, 0, 0, 3404, 3407, 1, 0, 0, 0, 3405, 3403, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 3427, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3408, 3412, 3, 486, 243, 0, 3409, 3411, 3, 462, 231, 0, 3410, 3409, 1, 0, 0, 0, 3411, 3414, 1, 0, 0, 0, 3412, 3410, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3427, 1, 0, 0, 0, 3414, 3412, 1, 0, 0, 0, 3415, 3419, 3, 492, 246, 0, 3416, 3418, 3, 462, 231, 0, 3417, 3416, 1, 0, 0, 0, 3418, 3421, 1, 0, 0, 0, 3419, 3417, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3427, 1, 0, 0, 0, 3421, 3419, 1, 0, 0, 0, 3422, 3423, 5, 399, 0, 0, 3423, 3424, 3, 454, 227, 0, 3424, 3425, 5, 400, 0, 0, 3425, 3427, 1, 0, 0, 0, 3426, 3394, 1, 0, 0, 0, 3426, 3401, 1, 0, 0, 0, 3426, 3408, 1, 0, 0, 0, 3426, 3415, 1, 0, 0, 0, 3426, 3422, 1, 0, 0, 0, 3427, 453, 1, 0, 0, 0, 3428, 3439, 3, 452, 226, 0, 3429, 3430, 3, 460, 230, 0, 3430, 3435, 3, 456, 228, 0, 3431, 3432, 5, 224, 0, 0, 3432, 3436, 3, 590, 295, 0, 3433, 3434, 5, 370, 0, 0, 3434, 3436, 3, 264, 132, 0, 3435, 3431, 1, 0, 0, 0, 3435, 3433, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3438, 1, 0, 0, 0, 3437, 3429, 1, 0, 0, 0, 3438, 3441, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 455, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3442, 3447, 3, 468, 234, 0, 3443, 3447, 3, 502, 251, 0, 3444, 3447, 3, 486, 243, 0, 3445, 3447, 3, 492, 246, 0, 3446, 3442, 1, 0, 0, 0, 3446, 3443, 1, 0, 0, 0, 3446, 3444, 1, 0, 0, 0, 3446, 3445, 1, 0, 0, 0, 3447, 3451, 1, 0, 0, 0, 3448, 3450, 3, 462, 231, 0, 3449, 3448, 1, 0, 0, 0, 3450, 3453, 1, 0, 0, 0, 3451, 3449, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 457, 1, 0, 0, 0, 3453, 3451, 1, 0, 0, 0, 3454, 3456, 5, 250, 0, 0, 3455, 3454, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3459, 3, 476, 238, 0, 3458, 3460, 3, 466, 233, 0, 3459, 3458, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 3465, 1, 0, 0, 0, 3461, 3463, 5, 17, 0, 0, 3462, 3461, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 3466, 3, 648, 324, 0, 3465, 3462, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3468, 5, 399, 0, 0, 3468, 3469, 3, 444, 222, 0, 3469, 3470, 5, 400, 0, 0, 3470, 459, 1, 0, 0, 0, 3471, 3486, 5, 397, 0, 0, 3472, 3483, 5, 157, 0, 0, 3473, 3483, 5, 60, 0, 0, 3474, 3476, 7, 28, 0, 0, 3475, 3477, 5, 231, 0, 0, 3476, 3475, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3483, 1, 0, 0, 0, 3478, 3480, 5, 180, 0, 0, 3479, 3481, 7, 29, 0, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3483, 1, 0, 0, 0, 3482, 3472, 1, 0, 0, 0, 3482, 3473, 1, 0, 0, 0, 3482, 3474, 1, 0, 0, 0, 3482, 3478, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3484, 1, 0, 0, 0, 3484, 3486, 5, 171, 0, 0, 3485, 3471, 1, 0, 0, 0, 3485, 3482, 1, 0, 0, 0, 3486, 461, 1, 0, 0, 0, 3487, 3488, 5, 178, 0, 0, 3488, 3489, 5, 378, 0, 0, 3489, 3490, 5, 231, 0, 0, 3490, 3491, 3, 560, 280, 0, 3491, 3501, 3, 464, 232, 0, 3492, 3493, 5, 17, 0, 0, 3493, 3498, 3, 648, 324, 0, 3494, 3495, 5, 397, 0, 0, 3495, 3497, 3, 648, 324, 0, 3496, 3494, 1, 0, 0, 0, 3497, 3500, 1, 0, 0, 0, 3498, 3496, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3502, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3501, 3492, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3545, 1, 0, 0, 0, 3503, 3505, 5, 397, 0, 0, 3504, 3503, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3542, 5, 178, 0, 0, 3507, 3508, 5, 378, 0, 0, 3508, 3509, 3, 560, 280, 0, 3509, 3519, 3, 464, 232, 0, 3510, 3511, 5, 17, 0, 0, 3511, 3516, 3, 648, 324, 0, 3512, 3513, 5, 397, 0, 0, 3513, 3515, 3, 648, 324, 0, 3514, 3512, 1, 0, 0, 0, 3515, 3518, 1, 0, 0, 0, 3516, 3514, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3519, 3510, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 3543, 1, 0, 0, 0, 3521, 3522, 5, 329, 0, 0, 3522, 3523, 5, 399, 0, 0, 3523, 3524, 3, 498, 249, 0, 3524, 3526, 5, 400, 0, 0, 3525, 3527, 5, 17, 0, 0, 3526, 3525, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3540, 3, 464, 232, 0, 3529, 3530, 5, 399, 0, 0, 3530, 3535, 3, 648, 324, 0, 3531, 3532, 5, 397, 0, 0, 3532, 3534, 3, 648, 324, 0, 3533, 3531, 1, 0, 0, 0, 3534, 3537, 1, 0, 0, 0, 3535, 3533, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3538, 1, 0, 0, 0, 3537, 3535, 1, 0, 0, 0, 3538, 3539, 5, 400, 0, 0, 3539, 3541, 1, 0, 0, 0, 3540, 3529, 1, 0, 0, 0, 3540, 3541, 1, 0, 0, 0, 3541, 3543, 1, 0, 0, 0, 3542, 3507, 1, 0, 0, 0, 3542, 3521, 1, 0, 0, 0, 3543, 3545, 1, 0, 0, 0, 3544, 3487, 1, 0, 0, 0, 3544, 3504, 1, 0, 0, 0, 3545, 463, 1, 0, 0, 0, 3546, 3547, 3, 648, 324, 0, 3547, 465, 1, 0, 0, 0, 3548, 3549, 5, 331, 0, 0, 3549, 3550, 5, 399, 0, 0, 3550, 3551, 5, 30, 0, 0, 3551, 3552, 5, 431, 0, 0, 3552, 3553, 5, 230, 0, 0, 3553, 3554, 5, 221, 0, 0, 3554, 3564, 5, 431, 0, 0, 3555, 3556, 5, 224, 0, 0, 3556, 3561, 3, 590, 295, 0, 3557, 3558, 5, 397, 0, 0, 3558, 3560, 3, 590, 295, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3563, 1, 0, 0, 0, 3561, 3559, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3565, 1, 0, 0, 0, 3563, 3561, 1, 0, 0, 0, 3564, 3555, 1, 0, 0, 0, 3564, 3565, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3576, 5, 400, 0, 0, 3567, 3568, 5, 331, 0, 0, 3568, 3572, 5, 399, 0, 0, 3569, 3570, 5, 431, 0, 0, 3570, 3573, 7, 30, 0, 0, 3571, 3573, 5, 430, 0, 0, 3572, 3569, 1, 0, 0, 0, 3572, 3571, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3576, 5, 400, 0, 0, 3575, 3548, 1, 0, 0, 0, 3575, 3567, 1, 0, 0, 0, 3576, 467, 1, 0, 0, 0, 3577, 3579, 3, 476, 238, 0, 3578, 3580, 3, 226, 113, 0, 3579, 3578, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3582, 1, 0, 0, 0, 3581, 3583, 3, 466, 233, 0, 3582, 3581, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3585, 1, 0, 0, 0, 3584, 3586, 3, 470, 235, 0, 3585, 3584, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3591, 1, 0, 0, 0, 3587, 3589, 5, 17, 0, 0, 3588, 3587, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3592, 3, 648, 324, 0, 3591, 3588, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 469, 1, 0, 0, 0, 3593, 3603, 5, 134, 0, 0, 3594, 3595, 5, 327, 0, 0, 3595, 3596, 5, 17, 0, 0, 3596, 3597, 5, 221, 0, 0, 3597, 3604, 3, 590, 295, 0, 3598, 3599, 5, 134, 0, 0, 3599, 3600, 5, 328, 0, 0, 3600, 3601, 5, 17, 0, 0, 3601, 3602, 5, 221, 0, 0, 3602, 3604, 5, 431, 0, 0, 3603, 3594, 1, 0, 0, 0, 3603, 3598, 1, 0, 0, 0, 3604, 471, 1, 0, 0, 0, 3605, 3606, 3, 648, 324, 0, 3606, 473, 1, 0, 0, 0, 3607, 3608, 3, 648, 324, 0, 3608, 475, 1, 0, 0, 0, 3609, 3612, 3, 478, 239, 0, 3610, 3612, 3, 482, 241, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3610, 1, 0, 0, 0, 3612, 477, 1, 0, 0, 0, 3613, 3614, 3, 648, 324, 0, 3614, 3615, 5, 395, 0, 0, 3615, 3618, 3, 648, 324, 0, 3616, 3617, 5, 395, 0, 0, 3617, 3619, 3, 648, 324, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3622, 1, 0, 0, 0, 3620, 3622, 3, 648, 324, 0, 3621, 3613, 1, 0, 0, 0, 3621, 3620, 1, 0, 0, 0, 3622, 479, 1, 0, 0, 0, 3623, 3624, 3, 648, 324, 0, 3624, 3625, 5, 395, 0, 0, 3625, 3628, 3, 648, 324, 0, 3626, 3627, 5, 395, 0, 0, 3627, 3629, 3, 648, 324, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 3632, 1, 0, 0, 0, 3630, 3632, 3, 648, 324, 0, 3631, 3623, 1, 0, 0, 0, 3631, 3630, 1, 0, 0, 0, 3632, 481, 1, 0, 0, 0, 3633, 3634, 3, 648, 324, 0, 3634, 3635, 5, 395, 0, 0, 3635, 3637, 1, 0, 0, 0, 3636, 3633, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 3638, 1, 0, 0, 0, 3638, 3639, 3, 648, 324, 0, 3639, 483, 1, 0, 0, 0, 3640, 3641, 3, 648, 324, 0, 3641, 3642, 5, 395, 0, 0, 3642, 3644, 1, 0, 0, 0, 3643, 3640, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3646, 3, 648, 324, 0, 3646, 485, 1, 0, 0, 0, 3647, 3648, 5, 399, 0, 0, 3648, 3649, 3, 360, 180, 0, 3649, 3651, 5, 400, 0, 0, 3650, 3652, 5, 17, 0, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3654, 3, 648, 324, 0, 3654, 487, 1, 0, 0, 0, 3655, 3656, 5, 237, 0, 0, 3656, 3657, 5, 32, 0, 0, 3657, 3659, 3, 546, 273, 0, 3658, 3660, 3, 552, 276, 0, 3659, 3658, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3669, 1, 0, 0, 0, 3661, 3669, 3, 552, 276, 0, 3662, 3664, 3, 556, 278, 0, 3663, 3665, 3, 558, 279, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3669, 1, 0, 0, 0, 3666, 3669, 3, 558, 279, 0, 3667, 3669, 3, 554, 277, 0, 3668, 3655, 1, 0, 0, 0, 3668, 3661, 1, 0, 0, 0, 3668, 3662, 1, 0, 0, 0, 3668, 3666, 1, 0, 0, 0, 3668, 3667, 1, 0, 0, 0, 3669, 489, 1, 0, 0, 0, 3670, 3674, 3, 486, 243, 0, 3671, 3674, 3, 468, 234, 0, 3672, 3674, 3, 492, 246, 0, 3673, 3670, 1, 0, 0, 0, 3673, 3671, 1, 0, 0, 0, 3673, 3672, 1, 0, 0, 0, 3674, 491, 1, 0, 0, 0, 3675, 3677, 3, 494, 247, 0, 3676, 3678, 3, 648, 324, 0, 3677, 3676, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 493, 1, 0, 0, 0, 3679, 3680, 3, 648, 324, 0, 3680, 3681, 5, 399, 0, 0, 3681, 3682, 5, 224, 0, 0, 3682, 3684, 3, 490, 245, 0, 3683, 3685, 3, 488, 244, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3701, 1, 0, 0, 0, 3686, 3687, 5, 432, 0, 0, 3687, 3688, 5, 399, 0, 0, 3688, 3689, 3, 590, 295, 0, 3689, 3698, 5, 400, 0, 0, 3690, 3691, 5, 397, 0, 0, 3691, 3692, 5, 432, 0, 0, 3692, 3693, 5, 399, 0, 0, 3693, 3694, 3, 590, 295, 0, 3694, 3695, 5, 400, 0, 0, 3695, 3697, 1, 0, 0, 0, 3696, 3690, 1, 0, 0, 0, 3697, 3700, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 3702, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3686, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3704, 5, 400, 0, 0, 3704, 495, 1, 0, 0, 0, 3705, 3706, 5, 384, 0, 0, 3706, 3707, 3, 590, 295, 0, 3707, 497, 1, 0, 0, 0, 3708, 3727, 5, 374, 0, 0, 3709, 3714, 3, 548, 274, 0, 3710, 3711, 5, 397, 0, 0, 3711, 3713, 3, 548, 274, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3716, 1, 0, 0, 0, 3714, 3712, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3728, 1, 0, 0, 0, 3716, 3714, 1, 0, 0, 0, 3717, 3718, 5, 399, 0, 0, 3718, 3719, 3, 544, 272, 0, 3719, 3724, 5, 400, 0, 0, 3720, 3721, 5, 397, 0, 0, 3721, 3723, 3, 548, 274, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3726, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3728, 1, 0, 0, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3709, 1, 0, 0, 0, 3727, 3717, 1, 0, 0, 0, 3728, 499, 1, 0, 0, 0, 3729, 3730, 5, 329, 0, 0, 3730, 3731, 5, 399, 0, 0, 3731, 3732, 3, 498, 249, 0, 3732, 3733, 5, 400, 0, 0, 3733, 501, 1, 0, 0, 0, 3734, 3736, 3, 500, 250, 0, 3735, 3737, 5, 17, 0, 0, 3736, 3735, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3748, 3, 464, 232, 0, 3739, 3740, 5, 399, 0, 0, 3740, 3745, 3, 648, 324, 0, 3741, 3742, 5, 397, 0, 0, 3742, 3744, 3, 648, 324, 0, 3743, 3741, 1, 0, 0, 0, 3744, 3747, 1, 0, 0, 0, 3745, 3743, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3749, 1, 0, 0, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3739, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3751, 5, 400, 0, 0, 3751, 503, 1, 0, 0, 0, 3752, 3754, 5, 299, 0, 0, 3753, 3755, 5, 436, 0, 0, 3754, 3753, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3762, 1, 0, 0, 0, 3756, 3758, 7, 22, 0, 0, 3757, 3756, 1, 0, 0, 0, 3757, 3758, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3763, 3, 508, 254, 0, 3760, 3761, 5, 347, 0, 0, 3761, 3763, 3, 506, 253, 0, 3762, 3757, 1, 0, 0, 0, 3762, 3760, 1, 0, 0, 0, 3763, 3766, 1, 0, 0, 0, 3764, 3766, 3, 516, 258, 0, 3765, 3752, 1, 0, 0, 0, 3765, 3764, 1, 0, 0, 0, 3766, 505, 1, 0, 0, 0, 3767, 3768, 5, 399, 0, 0, 3768, 3769, 3, 520, 260, 0, 3769, 3770, 5, 400, 0, 0, 3770, 3771, 3, 212, 106, 0, 3771, 3772, 3, 216, 108, 0, 3772, 3773, 5, 370, 0, 0, 3773, 3786, 5, 426, 0, 0, 3774, 3784, 5, 17, 0, 0, 3775, 3778, 5, 399, 0, 0, 3776, 3779, 3, 446, 223, 0, 3777, 3779, 3, 248, 124, 0, 3778, 3776, 1, 0, 0, 0, 3778, 3777, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3781, 5, 400, 0, 0, 3781, 3785, 1, 0, 0, 0, 3782, 3785, 3, 446, 223, 0, 3783, 3785, 3, 248, 124, 0, 3784, 3775, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3784, 3783, 1, 0, 0, 0, 3785, 3787, 1, 0, 0, 0, 3786, 3774, 1, 0, 0, 0, 3786, 3787, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3789, 3, 212, 106, 0, 3789, 3790, 3, 214, 107, 0, 3790, 507, 1, 0, 0, 0, 3791, 3796, 3, 510, 255, 0, 3792, 3793, 5, 397, 0, 0, 3793, 3795, 3, 510, 255, 0, 3794, 3792, 1, 0, 0, 0, 3795, 3798, 1, 0, 0, 0, 3796, 3794, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 509, 1, 0, 0, 0, 3798, 3796, 1, 0, 0, 0, 3799, 3823, 3, 442, 221, 0, 3800, 3803, 3, 512, 256, 0, 3801, 3803, 3, 514, 257, 0, 3802, 3800, 1, 0, 0, 0, 3802, 3801, 1, 0, 0, 0, 3803, 3820, 1, 0, 0, 0, 3804, 3806, 5, 17, 0, 0, 3805, 3804, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3821, 3, 648, 324, 0, 3808, 3809, 5, 17, 0, 0, 3809, 3810, 5, 399, 0, 0, 3810, 3815, 3, 648, 324, 0, 3811, 3812, 5, 397, 0, 0, 3812, 3814, 3, 648, 324, 0, 3813, 3811, 1, 0, 0, 0, 3814, 3817, 1, 0, 0, 0, 3815, 3813, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3818, 1, 0, 0, 0, 3817, 3815, 1, 0, 0, 0, 3818, 3819, 5, 400, 0, 0, 3819, 3821, 1, 0, 0, 0, 3820, 3805, 1, 0, 0, 0, 3820, 3808, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3823, 1, 0, 0, 0, 3822, 3799, 1, 0, 0, 0, 3822, 3802, 1, 0, 0, 0, 3823, 511, 1, 0, 0, 0, 3824, 3825, 3, 256, 128, 0, 3825, 513, 1, 0, 0, 0, 3826, 3827, 3, 590, 295, 0, 3827, 515, 1, 0, 0, 0, 3828, 3829, 7, 31, 0, 0, 3829, 3830, 3, 520, 260, 0, 3830, 3831, 3, 212, 106, 0, 3831, 3832, 3, 216, 108, 0, 3832, 3833, 5, 370, 0, 0, 3833, 3846, 5, 426, 0, 0, 3834, 3844, 5, 17, 0, 0, 3835, 3838, 5, 399, 0, 0, 3836, 3839, 3, 446, 223, 0, 3837, 3839, 3, 248, 124, 0, 3838, 3836, 1, 0, 0, 0, 3838, 3837, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 3841, 5, 400, 0, 0, 3841, 3845, 1, 0, 0, 0, 3842, 3845, 3, 446, 223, 0, 3843, 3845, 3, 248, 124, 0, 3844, 3835, 1, 0, 0, 0, 3844, 3842, 1, 0, 0, 0, 3844, 3843, 1, 0, 0, 0, 3845, 3847, 1, 0, 0, 0, 3846, 3834, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3848, 1, 0, 0, 0, 3848, 3849, 3, 212, 106, 0, 3849, 3850, 3, 214, 107, 0, 3850, 517, 1, 0, 0, 0, 3851, 3854, 3, 442, 221, 0, 3852, 3854, 3, 590, 295, 0, 3853, 3851, 1, 0, 0, 0, 3853, 3852, 1, 0, 0, 0, 3854, 519, 1, 0, 0, 0, 3855, 3860, 3, 518, 259, 0, 3856, 3857, 5, 397, 0, 0, 3857, 3859, 3, 518, 259, 0, 3858, 3856, 1, 0, 0, 0, 3859, 3862, 1, 0, 0, 0, 3860, 3858, 1, 0, 0, 0, 3860, 3861, 1, 0, 0, 0, 3861, 521, 1, 0, 0, 0, 3862, 3860, 1, 0, 0, 0, 3863, 3864, 5, 386, 0, 0, 3864, 3865, 3, 648, 324, 0, 3865, 3866, 5, 17, 0, 0, 3866, 3874, 3, 524, 262, 0, 3867, 3868, 5, 397, 0, 0, 3868, 3869, 3, 648, 324, 0, 3869, 3870, 5, 17, 0, 0, 3870, 3871, 3, 524, 262, 0, 3871, 3873, 1, 0, 0, 0, 3872, 3867, 1, 0, 0, 0, 3873, 3876, 1, 0, 0, 0, 3874, 3872, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 523, 1, 0, 0, 0, 3876, 3874, 1, 0, 0, 0, 3877, 3890, 3, 648, 324, 0, 3878, 3880, 5, 399, 0, 0, 3879, 3881, 3, 648, 324, 0, 3880, 3879, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 3883, 1, 0, 0, 0, 3882, 3884, 3, 488, 244, 0, 3883, 3882, 1, 0, 0, 0, 3883, 3884, 1, 0, 0, 0, 3884, 3886, 1, 0, 0, 0, 3885, 3887, 3, 526, 263, 0, 3886, 3885, 1, 0, 0, 0, 3886, 3887, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 3890, 5, 400, 0, 0, 3889, 3877, 1, 0, 0, 0, 3889, 3878, 1, 0, 0, 0, 3890, 525, 1, 0, 0, 0, 3891, 3905, 7, 32, 0, 0, 3892, 3893, 5, 354, 0, 0, 3893, 3899, 5, 247, 0, 0, 3894, 3895, 5, 62, 0, 0, 3895, 3899, 5, 291, 0, 0, 3896, 3897, 5, 431, 0, 0, 3897, 3899, 5, 247, 0, 0, 3898, 3892, 1, 0, 0, 0, 3898, 3894, 1, 0, 0, 0, 3898, 3896, 1, 0, 0, 0, 3899, 3906, 1, 0, 0, 0, 3900, 3901, 5, 25, 0, 0, 3901, 3902, 3, 528, 264, 0, 3902, 3903, 5, 11, 0, 0, 3903, 3904, 3, 528, 264, 0, 3904, 3906, 1, 0, 0, 0, 3905, 3898, 1, 0, 0, 0, 3905, 3900, 1, 0, 0, 0, 3906, 527, 1, 0, 0, 0, 3907, 3908, 7, 33, 0, 0, 3908, 3912, 7, 34, 0, 0, 3909, 3910, 5, 62, 0, 0, 3910, 3912, 5, 291, 0, 0, 3911, 3907, 1, 0, 0, 0, 3911, 3909, 1, 0, 0, 0, 3912, 529, 1, 0, 0, 0, 3913, 3914, 5, 144, 0, 0, 3914, 3920, 5, 32, 0, 0, 3915, 3921, 3, 256, 128, 0, 3916, 3921, 3, 532, 266, 0, 3917, 3921, 3, 534, 267, 0, 3918, 3919, 5, 399, 0, 0, 3919, 3921, 5, 400, 0, 0, 3920, 3915, 1, 0, 0, 0, 3920, 3916, 1, 0, 0, 0, 3920, 3917, 1, 0, 0, 0, 3920, 3918, 1, 0, 0, 0, 3921, 531, 1, 0, 0, 0, 3922, 3925, 5, 290, 0, 0, 3923, 3925, 5, 61, 0, 0, 3924, 3922, 1, 0, 0, 0, 3924, 3923, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3927, 5, 399, 0, 0, 3927, 3932, 3, 590, 295, 0, 3928, 3929, 5, 397, 0, 0, 3929, 3931, 3, 590, 295, 0, 3930, 3928, 1, 0, 0, 0, 3931, 3934, 1, 0, 0, 0, 3932, 3930, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3935, 1, 0, 0, 0, 3934, 3932, 1, 0, 0, 0, 3935, 3936, 5, 400, 0, 0, 3936, 533, 1, 0, 0, 0, 3937, 3942, 3, 550, 275, 0, 3938, 3939, 5, 387, 0, 0, 3939, 3943, 5, 290, 0, 0, 3940, 3941, 5, 387, 0, 0, 3941, 3943, 5, 61, 0, 0, 3942, 3938, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 3957, 1, 0, 0, 0, 3944, 3945, 5, 145, 0, 0, 3945, 3946, 5, 305, 0, 0, 3946, 3947, 5, 399, 0, 0, 3947, 3952, 3, 536, 268, 0, 3948, 3949, 5, 397, 0, 0, 3949, 3951, 3, 536, 268, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3954, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3955, 1, 0, 0, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3956, 5, 400, 0, 0, 3956, 3958, 1, 0, 0, 0, 3957, 3944, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 535, 1, 0, 0, 0, 3959, 3961, 5, 399, 0, 0, 3960, 3962, 3, 590, 295, 0, 3961, 3960, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 3967, 1, 0, 0, 0, 3963, 3964, 5, 397, 0, 0, 3964, 3966, 3, 590, 295, 0, 3965, 3963, 1, 0, 0, 0, 3966, 3969, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3970, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3970, 3973, 5, 400, 0, 0, 3971, 3973, 3, 590, 295, 0, 3972, 3959, 1, 0, 0, 0, 3972, 3971, 1, 0, 0, 0, 3973, 537, 1, 0, 0, 0, 3974, 3975, 5, 146, 0, 0, 3975, 3976, 3, 590, 295, 0, 3976, 539, 1, 0, 0, 0, 3977, 3978, 5, 256, 0, 0, 3978, 3979, 3, 590, 295, 0, 3979, 541, 1, 0, 0, 0, 3980, 3983, 5, 83, 0, 0, 3981, 3983, 3, 590, 295, 0, 3982, 3980, 1, 0, 0, 0, 3982, 3981, 1, 0, 0, 0, 3983, 543, 1, 0, 0, 0, 3984, 3986, 3, 590, 295, 0, 3985, 3987, 5, 17, 0, 0, 3986, 3985, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 3989, 1, 0, 0, 0, 3988, 3990, 3, 648, 324, 0, 3989, 3988, 1, 0, 0, 0, 3989, 3990, 1, 0, 0, 0, 3990, 4001, 1, 0, 0, 0, 3991, 3992, 5, 397, 0, 0, 3992, 3994, 3, 590, 295, 0, 3993, 3995, 5, 17, 0, 0, 3994, 3993, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 3997, 1, 0, 0, 0, 3996, 3998, 3, 648, 324, 0, 3997, 3996, 1, 0, 0, 0, 3997, 3998, 1, 0, 0, 0, 3998, 4000, 1, 0, 0, 0, 3999, 3991, 1, 0, 0, 0, 4000, 4003, 1, 0, 0, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 545, 1, 0, 0, 0, 4003, 4001, 1, 0, 0, 0, 4004, 4007, 3, 548, 274, 0, 4005, 4007, 3, 550, 275, 0, 4006, 4004, 1, 0, 0, 0, 4006, 4005, 1, 0, 0, 0, 4007, 547, 1, 0, 0, 0, 4008, 4009, 5, 399, 0, 0, 4009, 4010, 3, 550, 275, 0, 4010, 4011, 5, 400, 0, 0, 4011, 549, 1, 0, 0, 0, 4012, 4019, 3, 542, 271, 0, 4013, 4014, 5, 397, 0, 0, 4014, 4016, 3, 542, 271, 0, 4015, 4013, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4015, 1, 0, 0, 0, 4017, 4018, 1, 0, 0, 0, 4018, 4020, 1, 0, 0, 0, 4019, 4015, 1, 0, 0, 0, 4019, 4020, 1, 0, 0, 0, 4020, 551, 1, 0, 0, 0, 4021, 4022, 5, 229, 0, 0, 4022, 4023, 5, 32, 0, 0, 4023, 4028, 3, 308, 154, 0, 4024, 4025, 5, 397, 0, 0, 4025, 4027, 3, 308, 154, 0, 4026, 4024, 1, 0, 0, 0, 4027, 4030, 1, 0, 0, 0, 4028, 4026, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 553, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4032, 5, 41, 0, 0, 4032, 4033, 5, 32, 0, 0, 4033, 4034, 3, 546, 273, 0, 4034, 555, 1, 0, 0, 0, 4035, 4036, 5, 97, 0, 0, 4036, 4037, 5, 32, 0, 0, 4037, 4038, 3, 546, 273, 0, 4038, 557, 1, 0, 0, 0, 4039, 4040, 5, 314, 0, 0, 4040, 4060, 5, 32, 0, 0, 4041, 4042, 5, 399, 0, 0, 4042, 4047, 3, 308, 154, 0, 4043, 4044, 5, 397, 0, 0, 4044, 4046, 3, 308, 154, 0, 4045, 4043, 1, 0, 0, 0, 4046, 4049, 1, 0, 0, 0, 4047, 4045, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4050, 1, 0, 0, 0, 4049, 4047, 1, 0, 0, 0, 4050, 4051, 5, 400, 0, 0, 4051, 4061, 1, 0, 0, 0, 4052, 4057, 3, 308, 154, 0, 4053, 4054, 5, 397, 0, 0, 4054, 4056, 3, 308, 154, 0, 4055, 4053, 1, 0, 0, 0, 4056, 4059, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4061, 1, 0, 0, 0, 4059, 4057, 1, 0, 0, 0, 4060, 4041, 1, 0, 0, 0, 4060, 4052, 1, 0, 0, 0, 4061, 559, 1, 0, 0, 0, 4062, 4063, 5, 349, 0, 0, 4063, 4067, 5, 399, 0, 0, 4064, 4068, 5, 179, 0, 0, 4065, 4068, 5, 343, 0, 0, 4066, 4068, 5, 29, 0, 0, 4067, 4064, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4067, 4066, 1, 0, 0, 0, 4067, 4068, 1, 0, 0, 0, 4068, 4070, 1, 0, 0, 0, 4069, 4071, 3, 518, 259, 0, 4070, 4069, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4073, 5, 139, 0, 0, 4073, 4074, 3, 518, 259, 0, 4074, 4075, 5, 400, 0, 0, 4075, 4116, 1, 0, 0, 0, 4076, 4077, 3, 568, 284, 0, 4077, 4092, 5, 399, 0, 0, 4078, 4093, 5, 415, 0, 0, 4079, 4081, 7, 22, 0, 0, 4080, 4079, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4090, 1, 0, 0, 0, 4082, 4087, 3, 518, 259, 0, 4083, 4084, 5, 397, 0, 0, 4084, 4086, 3, 518, 259, 0, 4085, 4083, 1, 0, 0, 0, 4086, 4089, 1, 0, 0, 0, 4087, 4085, 1, 0, 0, 0, 4087, 4088, 1, 0, 0, 0, 4088, 4091, 1, 0, 0, 0, 4089, 4087, 1, 0, 0, 0, 4090, 4082, 1, 0, 0, 0, 4090, 4091, 1, 0, 0, 0, 4091, 4093, 1, 0, 0, 0, 4092, 4078, 1, 0, 0, 0, 4092, 4080, 1, 0, 0, 0, 4093, 4113, 1, 0, 0, 0, 4094, 4095, 5, 400, 0, 0, 4095, 4096, 5, 388, 0, 0, 4096, 4097, 5, 144, 0, 0, 4097, 4098, 5, 399, 0, 0, 4098, 4099, 3, 552, 276, 0, 4099, 4100, 5, 400, 0, 0, 4100, 4114, 1, 0, 0, 0, 4101, 4103, 5, 400, 0, 0, 4102, 4104, 3, 562, 281, 0, 4103, 4102, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4106, 5, 234, 0, 0, 4106, 4114, 3, 524, 262, 0, 4107, 4108, 3, 562, 281, 0, 4108, 4109, 5, 400, 0, 0, 4109, 4110, 5, 234, 0, 0, 4110, 4111, 3, 524, 262, 0, 4111, 4114, 1, 0, 0, 0, 4112, 4114, 5, 400, 0, 0, 4113, 4094, 1, 0, 0, 0, 4113, 4101, 1, 0, 0, 0, 4113, 4107, 1, 0, 0, 0, 4113, 4112, 1, 0, 0, 0, 4114, 4116, 1, 0, 0, 0, 4115, 4062, 1, 0, 0, 0, 4115, 4076, 1, 0, 0, 0, 4116, 561, 1, 0, 0, 0, 4117, 4118, 7, 35, 0, 0, 4118, 4119, 5, 220, 0, 0, 4119, 563, 1, 0, 0, 0, 4120, 4121, 3, 650, 325, 0, 4121, 565, 1, 0, 0, 0, 4122, 4125, 3, 650, 325, 0, 4123, 4125, 5, 426, 0, 0, 4124, 4122, 1, 0, 0, 0, 4124, 4123, 1, 0, 0, 0, 4125, 567, 1, 0, 0, 0, 4126, 4130, 3, 650, 325, 0, 4127, 4130, 3, 656, 328, 0, 4128, 4130, 3, 646, 323, 0, 4129, 4126, 1, 0, 0, 0, 4129, 4127, 1, 0, 0, 0, 4129, 4128, 1, 0, 0, 0, 4130, 569, 1, 0, 0, 0, 4131, 4132, 5, 36, 0, 0, 4132, 4133, 5, 399, 0, 0, 4133, 4134, 3, 590, 295, 0, 4134, 4135, 5, 17, 0, 0, 4135, 4138, 3, 348, 174, 0, 4136, 4137, 5, 137, 0, 0, 4137, 4139, 5, 426, 0, 0, 4138, 4136, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4140, 1, 0, 0, 0, 4140, 4141, 5, 400, 0, 0, 4141, 571, 1, 0, 0, 0, 4142, 4143, 5, 35, 0, 0, 4143, 4149, 3, 590, 295, 0, 4144, 4145, 5, 383, 0, 0, 4145, 4146, 3, 590, 295, 0, 4146, 4147, 5, 335, 0, 0, 4147, 4148, 3, 590, 295, 0, 4148, 4150, 1, 0, 0, 0, 4149, 4144, 1, 0, 0, 0, 4150, 4151, 1, 0, 0, 0, 4151, 4149, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4152, 4155, 1, 0, 0, 0, 4153, 4154, 5, 105, 0, 0, 4154, 4156, 3, 590, 295, 0, 4155, 4153, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4158, 5, 108, 0, 0, 4158, 573, 1, 0, 0, 0, 4159, 4165, 5, 35, 0, 0, 4160, 4161, 5, 383, 0, 0, 4161, 4162, 3, 590, 295, 0, 4162, 4163, 5, 335, 0, 0, 4163, 4164, 3, 590, 295, 0, 4164, 4166, 1, 0, 0, 0, 4165, 4160, 1, 0, 0, 0, 4166, 4167, 1, 0, 0, 0, 4167, 4165, 1, 0, 0, 0, 4167, 4168, 1, 0, 0, 0, 4168, 4171, 1, 0, 0, 0, 4169, 4170, 5, 105, 0, 0, 4170, 4172, 3, 590, 295, 0, 4171, 4169, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4174, 5, 108, 0, 0, 4174, 575, 1, 0, 0, 0, 4175, 4176, 5, 132, 0, 0, 4176, 4177, 5, 399, 0, 0, 4177, 4180, 3, 590, 295, 0, 4178, 4179, 5, 341, 0, 0, 4179, 4181, 3, 580, 290, 0, 4180, 4178, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4183, 5, 400, 0, 0, 4183, 577, 1, 0, 0, 0, 4184, 4185, 5, 124, 0, 0, 4185, 4186, 5, 399, 0, 0, 4186, 4187, 3, 580, 290, 0, 4187, 4188, 5, 139, 0, 0, 4188, 4189, 3, 590, 295, 0, 4189, 4190, 5, 400, 0, 0, 4190, 579, 1, 0, 0, 0, 4191, 4200, 3, 676, 338, 0, 4192, 4200, 5, 257, 0, 0, 4193, 4200, 3, 678, 339, 0, 4194, 4200, 3, 680, 340, 0, 4195, 4200, 3, 682, 341, 0, 4196, 4200, 3, 684, 342, 0, 4197, 4200, 3, 686, 343, 0, 4198, 4200, 3, 688, 344, 0, 4199, 4191, 1, 0, 0, 0, 4199, 4192, 1, 0, 0, 0, 4199, 4193, 1, 0, 0, 0, 4199, 4194, 1, 0, 0, 0, 4199, 4195, 1, 0, 0, 0, 4199, 4196, 1, 0, 0, 0, 4199, 4197, 1, 0, 0, 0, 4199, 4198, 1, 0, 0, 0, 4200, 581, 1, 0, 0, 0, 4201, 4202, 3, 584, 292, 0, 4202, 4203, 3, 588, 294, 0, 4203, 4230, 1, 0, 0, 0, 4204, 4230, 5, 431, 0, 0, 4205, 4206, 5, 71, 0, 0, 4206, 4230, 5, 426, 0, 0, 4207, 4230, 5, 63, 0, 0, 4208, 4209, 5, 337, 0, 0, 4209, 4230, 5, 426, 0, 0, 4210, 4230, 5, 64, 0, 0, 4211, 4212, 5, 338, 0, 0, 4212, 4230, 5, 426, 0, 0, 4213, 4217, 5, 426, 0, 0, 4214, 4216, 5, 426, 0, 0, 4215, 4214, 1, 0, 0, 0, 4216, 4219, 1, 0, 0, 0, 4217, 4215, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4230, 1, 0, 0, 0, 4219, 4217, 1, 0, 0, 0, 4220, 4230, 5, 428, 0, 0, 4221, 4230, 5, 429, 0, 0, 4222, 4223, 5, 433, 0, 0, 4223, 4230, 5, 427, 0, 0, 4224, 4230, 5, 350, 0, 0, 4225, 4230, 5, 125, 0, 0, 4226, 4230, 5, 219, 0, 0, 4227, 4230, 5, 424, 0, 0, 4228, 4230, 5, 432, 0, 0, 4229, 4201, 1, 0, 0, 0, 4229, 4204, 1, 0, 0, 0, 4229, 4205, 1, 0, 0, 0, 4229, 4207, 1, 0, 0, 0, 4229, 4208, 1, 0, 0, 0, 4229, 4210, 1, 0, 0, 0, 4229, 4211, 1, 0, 0, 0, 4229, 4213, 1, 0, 0, 0, 4229, 4220, 1, 0, 0, 0, 4229, 4221, 1, 0, 0, 0, 4229, 4222, 1, 0, 0, 0, 4229, 4224, 1, 0, 0, 0, 4229, 4225, 1, 0, 0, 0, 4229, 4226, 1, 0, 0, 0, 4229, 4227, 1, 0, 0, 0, 4229, 4228, 1, 0, 0, 0, 4230, 583, 1, 0, 0, 0, 4231, 4232, 7, 27, 0, 0, 4232, 585, 1, 0, 0, 0, 4233, 4234, 5, 399, 0, 0, 4234, 4235, 3, 584, 292, 0, 4235, 4236, 5, 400, 0, 0, 4236, 4237, 3, 588, 294, 0, 4237, 4249, 1, 0, 0, 0, 4238, 4244, 5, 165, 0, 0, 4239, 4245, 3, 584, 292, 0, 4240, 4241, 5, 399, 0, 0, 4241, 4242, 3, 590, 295, 0, 4242, 4243, 5, 400, 0, 0, 4243, 4245, 1, 0, 0, 0, 4244, 4239, 1, 0, 0, 0, 4244, 4240, 1, 0, 0, 0, 4245, 4246, 1, 0, 0, 0, 4246, 4247, 3, 588, 294, 0, 4247, 4249, 1, 0, 0, 0, 4248, 4233, 1, 0, 0, 0, 4248, 4238, 1, 0, 0, 0, 4249, 587, 1, 0, 0, 0, 4250, 4251, 3, 676, 338, 0, 4251, 4252, 5, 341, 0, 0, 4252, 4253, 3, 678, 339, 0, 4253, 4265, 1, 0, 0, 0, 4254, 4255, 3, 682, 341, 0, 4255, 4256, 5, 341, 0, 0, 4256, 4257, 3, 688, 344, 0, 4257, 4265, 1, 0, 0, 0, 4258, 4265, 3, 676, 338, 0, 4259, 4265, 3, 678, 339, 0, 4260, 4265, 3, 682, 341, 0, 4261, 4265, 3, 684, 342, 0, 4262, 4265, 3, 686, 343, 0, 4263, 4265, 3, 688, 344, 0, 4264, 4250, 1, 0, 0, 0, 4264, 4254, 1, 0, 0, 0, 4264, 4258, 1, 0, 0, 0, 4264, 4259, 1, 0, 0, 0, 4264, 4260, 1, 0, 0, 0, 4264, 4261, 1, 0, 0, 0, 4264, 4262, 1, 0, 0, 0, 4264, 4263, 1, 0, 0, 0, 4265, 589, 1, 0, 0, 0, 4266, 4271, 3, 632, 316, 0, 4267, 4268, 5, 228, 0, 0, 4268, 4270, 3, 632, 316, 0, 4269, 4267, 1, 0, 0, 0, 4270, 4273, 1, 0, 0, 0, 4271, 4269, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 591, 1, 0, 0, 0, 4273, 4271, 1, 0, 0, 0, 4274, 4286, 3, 582, 291, 0, 4275, 4286, 3, 586, 293, 0, 4276, 4286, 3, 570, 285, 0, 4277, 4286, 3, 578, 289, 0, 4278, 4286, 3, 576, 288, 0, 4279, 4286, 3, 572, 286, 0, 4280, 4286, 3, 574, 287, 0, 4281, 4286, 3, 610, 305, 0, 4282, 4286, 3, 560, 280, 0, 4283, 4286, 3, 548, 274, 0, 4284, 4286, 3, 648, 324, 0, 4285, 4274, 1, 0, 0, 0, 4285, 4275, 1, 0, 0, 0, 4285, 4276, 1, 0, 0, 0, 4285, 4277, 1, 0, 0, 0, 4285, 4278, 1, 0, 0, 0, 4285, 4279, 1, 0, 0, 0, 4285, 4280, 1, 0, 0, 0, 4285, 4281, 1, 0, 0, 0, 4285, 4282, 1, 0, 0, 0, 4285, 4283, 1, 0, 0, 0, 4285, 4284, 1, 0, 0, 0, 4286, 593, 1, 0, 0, 0, 4287, 4289, 7, 36, 0, 0, 4288, 4287, 1, 0, 0, 0, 4289, 4292, 1, 0, 0, 0, 4290, 4288, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4293, 1, 0, 0, 0, 4292, 4290, 1, 0, 0, 0, 4293, 4302, 3, 592, 296, 0, 4294, 4295, 5, 401, 0, 0, 4295, 4296, 3, 590, 295, 0, 4296, 4297, 5, 402, 0, 0, 4297, 4301, 1, 0, 0, 0, 4298, 4299, 5, 395, 0, 0, 4299, 4301, 3, 648, 324, 0, 4300, 4294, 1, 0, 0, 0, 4300, 4298, 1, 0, 0, 0, 4301, 4304, 1, 0, 0, 0, 4302, 4300, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 595, 1, 0, 0, 0, 4304, 4302, 1, 0, 0, 0, 4305, 4310, 3, 594, 297, 0, 4306, 4307, 5, 423, 0, 0, 4307, 4309, 3, 594, 297, 0, 4308, 4306, 1, 0, 0, 0, 4309, 4312, 1, 0, 0, 0, 4310, 4308, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 597, 1, 0, 0, 0, 4312, 4310, 1, 0, 0, 0, 4313, 4318, 3, 596, 298, 0, 4314, 4315, 7, 37, 0, 0, 4315, 4317, 3, 596, 298, 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, 599, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4321, 4326, 3, 598, 299, 0, 4322, 4323, 7, 38, 0, 0, 4323, 4325, 3, 598, 299, 0, 4324, 4322, 1, 0, 0, 0, 4325, 4328, 1, 0, 0, 0, 4326, 4324, 1, 0, 0, 0, 4326, 4327, 1, 0, 0, 0, 4327, 601, 1, 0, 0, 0, 4328, 4326, 1, 0, 0, 0, 4329, 4334, 3, 600, 300, 0, 4330, 4331, 5, 422, 0, 0, 4331, 4333, 3, 600, 300, 0, 4332, 4330, 1, 0, 0, 0, 4333, 4336, 1, 0, 0, 0, 4334, 4332, 1, 0, 0, 0, 4334, 4335, 1, 0, 0, 0, 4335, 603, 1, 0, 0, 0, 4336, 4334, 1, 0, 0, 0, 4337, 4342, 3, 602, 301, 0, 4338, 4339, 5, 419, 0, 0, 4339, 4341, 3, 602, 301, 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, 605, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4345, 4350, 3, 604, 302, 0, 4346, 4347, 5, 421, 0, 0, 4347, 4349, 3, 604, 302, 0, 4348, 4346, 1, 0, 0, 0, 4349, 4352, 1, 0, 0, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 607, 1, 0, 0, 0, 4352, 4350, 1, 0, 0, 0, 4353, 4354, 7, 39, 0, 0, 4354, 609, 1, 0, 0, 0, 4355, 4356, 5, 399, 0, 0, 4356, 4357, 3, 376, 188, 0, 4357, 4358, 5, 400, 0, 0, 4358, 611, 1, 0, 0, 0, 4359, 4361, 3, 606, 303, 0, 4360, 4362, 3, 614, 307, 0, 4361, 4360, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4366, 1, 0, 0, 0, 4363, 4364, 5, 117, 0, 0, 4364, 4366, 3, 610, 305, 0, 4365, 4359, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4366, 613, 1, 0, 0, 0, 4367, 4368, 3, 608, 304, 0, 4368, 4369, 3, 606, 303, 0, 4369, 4374, 1, 0, 0, 0, 4370, 4374, 3, 616, 308, 0, 4371, 4372, 5, 216, 0, 0, 4372, 4374, 3, 620, 310, 0, 4373, 4367, 1, 0, 0, 0, 4373, 4370, 1, 0, 0, 0, 4373, 4371, 1, 0, 0, 0, 4374, 615, 1, 0, 0, 0, 4375, 4376, 5, 154, 0, 0, 4376, 4390, 3, 618, 309, 0, 4377, 4378, 5, 25, 0, 0, 4378, 4379, 3, 606, 303, 0, 4379, 4380, 5, 11, 0, 0, 4380, 4381, 3, 606, 303, 0, 4381, 4390, 1, 0, 0, 0, 4382, 4383, 5, 184, 0, 0, 4383, 4384, 7, 40, 0, 0, 4384, 4390, 3, 548, 274, 0, 4385, 4386, 3, 644, 322, 0, 4386, 4387, 7, 41, 0, 0, 4387, 4388, 3, 610, 305, 0, 4388, 4390, 1, 0, 0, 0, 4389, 4375, 1, 0, 0, 0, 4389, 4377, 1, 0, 0, 0, 4389, 4382, 1, 0, 0, 0, 4389, 4385, 1, 0, 0, 0, 4390, 617, 1, 0, 0, 0, 4391, 4394, 3, 610, 305, 0, 4392, 4394, 3, 548, 274, 0, 4393, 4391, 1, 0, 0, 0, 4393, 4392, 1, 0, 0, 0, 4394, 619, 1, 0, 0, 0, 4395, 4396, 7, 42, 0, 0, 4396, 4399, 3, 606, 303, 0, 4397, 4399, 3, 616, 308, 0, 4398, 4395, 1, 0, 0, 0, 4398, 4397, 1, 0, 0, 0, 4399, 621, 1, 0, 0, 0, 4400, 4401, 5, 167, 0, 0, 4401, 4402, 5, 96, 0, 0, 4402, 4403, 5, 139, 0, 0, 4403, 623, 1, 0, 0, 0, 4404, 4412, 5, 405, 0, 0, 4405, 4412, 5, 406, 0, 0, 4406, 4412, 5, 407, 0, 0, 4407, 4408, 5, 167, 0, 0, 4408, 4409, 5, 216, 0, 0, 4409, 4410, 5, 96, 0, 0, 4410, 4412, 5, 139, 0, 0, 4411, 4404, 1, 0, 0, 0, 4411, 4405, 1, 0, 0, 0, 4411, 4406, 1, 0, 0, 0, 4411, 4407, 1, 0, 0, 0, 4412, 625, 1, 0, 0, 0, 4413, 4422, 3, 612, 306, 0, 4414, 4415, 3, 624, 312, 0, 4415, 4416, 3, 612, 306, 0, 4416, 4421, 1, 0, 0, 0, 4417, 4418, 3, 622, 311, 0, 4418, 4419, 3, 612, 306, 0, 4419, 4421, 1, 0, 0, 0, 4420, 4414, 1, 0, 0, 0, 4420, 4417, 1, 0, 0, 0, 4421, 4424, 1, 0, 0, 0, 4422, 4420, 1, 0, 0, 0, 4422, 4423, 1, 0, 0, 0, 4423, 627, 1, 0, 0, 0, 4424, 4422, 1, 0, 0, 0, 4425, 4432, 5, 219, 0, 0, 4426, 4432, 5, 350, 0, 0, 4427, 4432, 5, 125, 0, 0, 4428, 4432, 5, 360, 0, 0, 4429, 4430, 5, 216, 0, 0, 4430, 4432, 7, 43, 0, 0, 4431, 4425, 1, 0, 0, 0, 4431, 4426, 1, 0, 0, 0, 4431, 4427, 1, 0, 0, 0, 4431, 4428, 1, 0, 0, 0, 4431, 4429, 1, 0, 0, 0, 4432, 629, 1, 0, 0, 0, 4433, 4435, 5, 216, 0, 0, 4434, 4433, 1, 0, 0, 0, 4435, 4438, 1, 0, 0, 0, 4436, 4434, 1, 0, 0, 0, 4436, 4437, 1, 0, 0, 0, 4437, 4439, 1, 0, 0, 0, 4438, 4436, 1, 0, 0, 0, 4439, 4442, 3, 626, 313, 0, 4440, 4441, 5, 167, 0, 0, 4441, 4443, 3, 628, 314, 0, 4442, 4440, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 631, 1, 0, 0, 0, 4444, 4449, 3, 630, 315, 0, 4445, 4446, 5, 11, 0, 0, 4446, 4448, 3, 630, 315, 0, 4447, 4445, 1, 0, 0, 0, 4448, 4451, 1, 0, 0, 0, 4449, 4447, 1, 0, 0, 0, 4449, 4450, 1, 0, 0, 0, 4450, 633, 1, 0, 0, 0, 4451, 4449, 1, 0, 0, 0, 4452, 4454, 3, 478, 239, 0, 4453, 4455, 3, 636, 318, 0, 4454, 4453, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 635, 1, 0, 0, 0, 4456, 4457, 5, 237, 0, 0, 4457, 4458, 5, 399, 0, 0, 4458, 4463, 3, 638, 319, 0, 4459, 4460, 5, 397, 0, 0, 4460, 4462, 3, 638, 319, 0, 4461, 4459, 1, 0, 0, 0, 4462, 4465, 1, 0, 0, 0, 4463, 4461, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4466, 1, 0, 0, 0, 4465, 4463, 1, 0, 0, 0, 4466, 4467, 5, 400, 0, 0, 4467, 637, 1, 0, 0, 0, 4468, 4471, 3, 648, 324, 0, 4469, 4470, 5, 405, 0, 0, 4470, 4472, 3, 582, 291, 0, 4471, 4469, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 639, 1, 0, 0, 0, 4473, 4474, 5, 399, 0, 0, 4474, 4479, 3, 642, 321, 0, 4475, 4476, 5, 397, 0, 0, 4476, 4478, 3, 642, 321, 0, 4477, 4475, 1, 0, 0, 0, 4478, 4481, 1, 0, 0, 0, 4479, 4477, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 4482, 1, 0, 0, 0, 4481, 4479, 1, 0, 0, 0, 4482, 4483, 5, 400, 0, 0, 4483, 641, 1, 0, 0, 0, 4484, 4487, 3, 648, 324, 0, 4485, 4488, 5, 184, 0, 0, 4486, 4488, 3, 644, 322, 0, 4487, 4485, 1, 0, 0, 0, 4487, 4486, 1, 0, 0, 0, 4488, 4489, 1, 0, 0, 0, 4489, 4490, 3, 582, 291, 0, 4490, 643, 1, 0, 0, 0, 4491, 4492, 7, 44, 0, 0, 4492, 645, 1, 0, 0, 0, 4493, 4494, 7, 45, 0, 0, 4494, 647, 1, 0, 0, 0, 4495, 4498, 5, 432, 0, 0, 4496, 4498, 3, 654, 327, 0, 4497, 4495, 1, 0, 0, 0, 4497, 4496, 1, 0, 0, 0, 4498, 649, 1, 0, 0, 0, 4499, 4502, 3, 648, 324, 0, 4500, 4501, 5, 395, 0, 0, 4501, 4503, 3, 648, 324, 0, 4502, 4500, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 651, 1, 0, 0, 0, 4504, 4505, 3, 648, 324, 0, 4505, 653, 1, 0, 0, 0, 4506, 4507, 7, 46, 0, 0, 4507, 655, 1, 0, 0, 0, 4508, 4509, 7, 47, 0, 0, 4509, 657, 1, 0, 0, 0, 4510, 4562, 3, 648, 324, 0, 4511, 4562, 5, 299, 0, 0, 4512, 4562, 5, 171, 0, 0, 4513, 4562, 5, 237, 0, 0, 4514, 4562, 5, 198, 0, 0, 4515, 4562, 5, 268, 0, 0, 4516, 4562, 5, 369, 0, 0, 4517, 4562, 5, 241, 0, 0, 4518, 4562, 5, 165, 0, 0, 4519, 4562, 5, 292, 0, 0, 4520, 4562, 5, 356, 0, 0, 4521, 4562, 5, 144, 0, 0, 4522, 4562, 5, 203, 0, 0, 4523, 4562, 5, 219, 0, 0, 4524, 4562, 5, 126, 0, 0, 4525, 4562, 5, 188, 0, 0, 4526, 4562, 5, 101, 0, 0, 4527, 4562, 5, 329, 0, 0, 4528, 4562, 5, 224, 0, 0, 4529, 4562, 5, 291, 0, 0, 4530, 4562, 5, 145, 0, 0, 4531, 4562, 5, 304, 0, 0, 4532, 4562, 5, 135, 0, 0, 4533, 4562, 5, 318, 0, 0, 4534, 4562, 5, 161, 0, 0, 4535, 4562, 5, 54, 0, 0, 4536, 4562, 5, 166, 0, 0, 4537, 4562, 5, 358, 0, 0, 4538, 4562, 5, 45, 0, 0, 4539, 4562, 5, 347, 0, 0, 4540, 4562, 5, 96, 0, 0, 4541, 4562, 5, 154, 0, 0, 4542, 4562, 5, 269, 0, 0, 4543, 4562, 5, 337, 0, 0, 4544, 4562, 5, 225, 0, 0, 4545, 4562, 5, 108, 0, 0, 4546, 4562, 5, 141, 0, 0, 4547, 4562, 5, 365, 0, 0, 4548, 4562, 5, 21, 0, 0, 4549, 4562, 5, 78, 0, 0, 4550, 4562, 5, 374, 0, 0, 4551, 4562, 5, 336, 0, 0, 4552, 4562, 5, 167, 0, 0, 4553, 4562, 5, 134, 0, 0, 4554, 4562, 5, 216, 0, 0, 4555, 4562, 5, 27, 0, 0, 4556, 4562, 5, 370, 0, 0, 4557, 4562, 5, 263, 0, 0, 4558, 4562, 5, 25, 0, 0, 4559, 4562, 5, 62, 0, 0, 4560, 4562, 5, 17, 0, 0, 4561, 4510, 1, 0, 0, 0, 4561, 4511, 1, 0, 0, 0, 4561, 4512, 1, 0, 0, 0, 4561, 4513, 1, 0, 0, 0, 4561, 4514, 1, 0, 0, 0, 4561, 4515, 1, 0, 0, 0, 4561, 4516, 1, 0, 0, 0, 4561, 4517, 1, 0, 0, 0, 4561, 4518, 1, 0, 0, 0, 4561, 4519, 1, 0, 0, 0, 4561, 4520, 1, 0, 0, 0, 4561, 4521, 1, 0, 0, 0, 4561, 4522, 1, 0, 0, 0, 4561, 4523, 1, 0, 0, 0, 4561, 4524, 1, 0, 0, 0, 4561, 4525, 1, 0, 0, 0, 4561, 4526, 1, 0, 0, 0, 4561, 4527, 1, 0, 0, 0, 4561, 4528, 1, 0, 0, 0, 4561, 4529, 1, 0, 0, 0, 4561, 4530, 1, 0, 0, 0, 4561, 4531, 1, 0, 0, 0, 4561, 4532, 1, 0, 0, 0, 4561, 4533, 1, 0, 0, 0, 4561, 4534, 1, 0, 0, 0, 4561, 4535, 1, 0, 0, 0, 4561, 4536, 1, 0, 0, 0, 4561, 4537, 1, 0, 0, 0, 4561, 4538, 1, 0, 0, 0, 4561, 4539, 1, 0, 0, 0, 4561, 4540, 1, 0, 0, 0, 4561, 4541, 1, 0, 0, 0, 4561, 4542, 1, 0, 0, 0, 4561, 4543, 1, 0, 0, 0, 4561, 4544, 1, 0, 0, 0, 4561, 4545, 1, 0, 0, 0, 4561, 4546, 1, 0, 0, 0, 4561, 4547, 1, 0, 0, 0, 4561, 4548, 1, 0, 0, 0, 4561, 4549, 1, 0, 0, 0, 4561, 4550, 1, 0, 0, 0, 4561, 4551, 1, 0, 0, 0, 4561, 4552, 1, 0, 0, 0, 4561, 4553, 1, 0, 0, 0, 4561, 4554, 1, 0, 0, 0, 4561, 4555, 1, 0, 0, 0, 4561, 4556, 1, 0, 0, 0, 4561, 4557, 1, 0, 0, 0, 4561, 4558, 1, 0, 0, 0, 4561, 4559, 1, 0, 0, 0, 4561, 4560, 1, 0, 0, 0, 4562, 659, 1, 0, 0, 0, 4563, 4564, 5, 58, 0, 0, 4564, 4565, 5, 280, 0, 0, 4565, 4567, 5, 243, 0, 0, 4566, 4568, 3, 32, 16, 0, 4567, 4566, 1, 0, 0, 0, 4567, 4568, 1, 0, 0, 0, 4568, 4578, 1, 0, 0, 0, 4569, 4570, 3, 648, 324, 0, 4570, 4571, 5, 184, 0, 0, 4571, 4572, 3, 648, 324, 0, 4572, 4579, 1, 0, 0, 0, 4573, 4576, 3, 648, 324, 0, 4574, 4575, 5, 387, 0, 0, 4575, 4577, 3, 666, 333, 0, 4576, 4574, 1, 0, 0, 0, 4576, 4577, 1, 0, 0, 0, 4577, 4579, 1, 0, 0, 0, 4578, 4569, 1, 0, 0, 0, 4578, 4573, 1, 0, 0, 0, 4579, 4729, 1, 0, 0, 0, 4580, 4581, 5, 9, 0, 0, 4581, 4582, 5, 280, 0, 0, 4582, 4583, 5, 243, 0, 0, 4583, 4608, 3, 648, 324, 0, 4584, 4609, 5, 373, 0, 0, 4585, 4609, 3, 674, 337, 0, 4586, 4587, 5, 304, 0, 0, 4587, 4609, 3, 666, 333, 0, 4588, 4589, 5, 363, 0, 0, 4589, 4594, 3, 668, 334, 0, 4590, 4591, 5, 397, 0, 0, 4591, 4593, 3, 668, 334, 0, 4592, 4590, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4594, 4595, 1, 0, 0, 0, 4595, 4609, 1, 0, 0, 0, 4596, 4594, 1, 0, 0, 0, 4597, 4598, 5, 274, 0, 0, 4598, 4599, 5, 341, 0, 0, 4599, 4609, 3, 648, 324, 0, 4600, 4602, 3, 670, 335, 0, 4601, 4603, 3, 672, 336, 0, 4602, 4601, 1, 0, 0, 0, 4602, 4603, 1, 0, 0, 0, 4603, 4609, 1, 0, 0, 0, 4604, 4606, 3, 672, 336, 0, 4605, 4607, 3, 670, 335, 0, 4606, 4605, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 4609, 1, 0, 0, 0, 4608, 4584, 1, 0, 0, 0, 4608, 4585, 1, 0, 0, 0, 4608, 4586, 1, 0, 0, 0, 4608, 4588, 1, 0, 0, 0, 4608, 4597, 1, 0, 0, 0, 4608, 4600, 1, 0, 0, 0, 4608, 4604, 1, 0, 0, 0, 4609, 4729, 1, 0, 0, 0, 4610, 4611, 5, 101, 0, 0, 4611, 4612, 5, 280, 0, 0, 4612, 4614, 5, 243, 0, 0, 4613, 4615, 3, 30, 15, 0, 4614, 4613, 1, 0, 0, 0, 4614, 4615, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4729, 3, 648, 324, 0, 4617, 4620, 3, 672, 336, 0, 4618, 4620, 3, 674, 337, 0, 4619, 4617, 1, 0, 0, 0, 4619, 4618, 1, 0, 0, 0, 4620, 4621, 1, 0, 0, 0, 4621, 4622, 5, 390, 0, 0, 4622, 4623, 5, 197, 0, 0, 4623, 4729, 1, 0, 0, 0, 4624, 4636, 5, 278, 0, 0, 4625, 4626, 5, 3, 0, 0, 4626, 4627, 5, 280, 0, 0, 4627, 4628, 5, 243, 0, 0, 4628, 4629, 5, 387, 0, 0, 4629, 4637, 3, 648, 324, 0, 4630, 4631, 5, 280, 0, 0, 4631, 4632, 5, 243, 0, 0, 4632, 4633, 3, 648, 324, 0, 4633, 4634, 5, 387, 0, 0, 4634, 4635, 3, 648, 324, 0, 4635, 4637, 1, 0, 0, 0, 4636, 4625, 1, 0, 0, 0, 4636, 4630, 1, 0, 0, 0, 4637, 4729, 1, 0, 0, 0, 4638, 4639, 5, 58, 0, 0, 4639, 4640, 5, 348, 0, 0, 4640, 4641, 3, 648, 324, 0, 4641, 4642, 5, 395, 0, 0, 4642, 4643, 3, 648, 324, 0, 4643, 4644, 5, 383, 0, 0, 4644, 4645, 3, 694, 347, 0, 4645, 4646, 5, 99, 0, 0, 4646, 4647, 3, 696, 348, 0, 4647, 4729, 1, 0, 0, 0, 4648, 4649, 5, 9, 0, 0, 4649, 4650, 5, 348, 0, 0, 4650, 4651, 3, 648, 324, 0, 4651, 4652, 5, 395, 0, 0, 4652, 4669, 3, 648, 324, 0, 4653, 4654, 5, 383, 0, 0, 4654, 4655, 3, 694, 347, 0, 4655, 4656, 5, 99, 0, 0, 4656, 4657, 3, 696, 348, 0, 4657, 4670, 1, 0, 0, 0, 4658, 4659, 5, 4, 0, 0, 4659, 4663, 5, 341, 0, 0, 4660, 4661, 5, 101, 0, 0, 4661, 4663, 5, 139, 0, 0, 4662, 4658, 1, 0, 0, 0, 4662, 4660, 1, 0, 0, 0, 4663, 4667, 1, 0, 0, 0, 4664, 4665, 5, 246, 0, 0, 4665, 4668, 3, 692, 346, 0, 4666, 4668, 5, 362, 0, 0, 4667, 4664, 1, 0, 0, 0, 4667, 4666, 1, 0, 0, 0, 4668, 4670, 1, 0, 0, 0, 4669, 4653, 1, 0, 0, 0, 4669, 4662, 1, 0, 0, 0, 4670, 4729, 1, 0, 0, 0, 4671, 4672, 5, 101, 0, 0, 4672, 4673, 5, 348, 0, 0, 4673, 4674, 3, 648, 324, 0, 4674, 4675, 5, 395, 0, 0, 4675, 4676, 3, 648, 324, 0, 4676, 4729, 1, 0, 0, 0, 4677, 4678, 5, 58, 0, 0, 4678, 4679, 5, 246, 0, 0, 4679, 4680, 3, 648, 324, 0, 4680, 4681, 5, 395, 0, 0, 4681, 4682, 3, 692, 346, 0, 4682, 4683, 5, 387, 0, 0, 4683, 4684, 3, 700, 350, 0, 4684, 4729, 1, 0, 0, 0, 4685, 4686, 5, 9, 0, 0, 4686, 4687, 5, 246, 0, 0, 4687, 4688, 3, 648, 324, 0, 4688, 4689, 5, 395, 0, 0, 4689, 4697, 3, 692, 346, 0, 4690, 4691, 5, 304, 0, 0, 4691, 4698, 3, 700, 350, 0, 4692, 4693, 5, 363, 0, 0, 4693, 4698, 5, 294, 0, 0, 4694, 4695, 7, 48, 0, 0, 4695, 4696, 5, 348, 0, 0, 4696, 4698, 3, 648, 324, 0, 4697, 4690, 1, 0, 0, 0, 4697, 4692, 1, 0, 0, 0, 4697, 4694, 1, 0, 0, 0, 4698, 4729, 1, 0, 0, 0, 4699, 4700, 5, 101, 0, 0, 4700, 4701, 5, 246, 0, 0, 4701, 4702, 3, 648, 324, 0, 4702, 4703, 5, 395, 0, 0, 4703, 4704, 3, 692, 346, 0, 4704, 4729, 1, 0, 0, 0, 4705, 4706, 7, 49, 0, 0, 4706, 4707, 3, 662, 331, 0, 4707, 4708, 5, 200, 0, 0, 4708, 4709, 5, 426, 0, 0, 4709, 4710, 5, 154, 0, 0, 4710, 4714, 3, 648, 324, 0, 4711, 4712, 5, 341, 0, 0, 4712, 4715, 3, 692, 346, 0, 4713, 4715, 5, 362, 0, 0, 4714, 4711, 1, 0, 0, 0, 4714, 4713, 1, 0, 0, 0, 4715, 4719, 1, 0, 0, 0, 4716, 4717, 5, 387, 0, 0, 4717, 4718, 5, 229, 0, 0, 4718, 4720, 5, 431, 0, 0, 4719, 4716, 1, 0, 0, 0, 4719, 4720, 1, 0, 0, 0, 4720, 4729, 1, 0, 0, 0, 4721, 4722, 5, 101, 0, 0, 4722, 4723, 3, 662, 331, 0, 4723, 4724, 5, 200, 0, 0, 4724, 4725, 5, 426, 0, 0, 4725, 4726, 5, 154, 0, 0, 4726, 4727, 3, 648, 324, 0, 4727, 4729, 1, 0, 0, 0, 4728, 4563, 1, 0, 0, 0, 4728, 4580, 1, 0, 0, 0, 4728, 4610, 1, 0, 0, 0, 4728, 4619, 1, 0, 0, 0, 4728, 4624, 1, 0, 0, 0, 4728, 4638, 1, 0, 0, 0, 4728, 4648, 1, 0, 0, 0, 4728, 4671, 1, 0, 0, 0, 4728, 4677, 1, 0, 0, 0, 4728, 4685, 1, 0, 0, 0, 4728, 4699, 1, 0, 0, 0, 4728, 4705, 1, 0, 0, 0, 4728, 4721, 1, 0, 0, 0, 4729, 661, 1, 0, 0, 0, 4730, 4731, 7, 50, 0, 0, 4731, 663, 1, 0, 0, 0, 4732, 4733, 5, 259, 0, 0, 4733, 4734, 5, 405, 0, 0, 4734, 4740, 5, 431, 0, 0, 4735, 4736, 5, 83, 0, 0, 4736, 4737, 5, 246, 0, 0, 4737, 4738, 5, 405, 0, 0, 4738, 4740, 3, 692, 346, 0, 4739, 4732, 1, 0, 0, 0, 4739, 4735, 1, 0, 0, 0, 4740, 665, 1, 0, 0, 0, 4741, 4746, 3, 664, 332, 0, 4742, 4743, 5, 397, 0, 0, 4743, 4745, 3, 664, 332, 0, 4744, 4742, 1, 0, 0, 0, 4745, 4748, 1, 0, 0, 0, 4746, 4744, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 667, 1, 0, 0, 0, 4748, 4746, 1, 0, 0, 0, 4749, 4753, 5, 259, 0, 0, 4750, 4751, 5, 83, 0, 0, 4751, 4753, 5, 246, 0, 0, 4752, 4749, 1, 0, 0, 0, 4752, 4750, 1, 0, 0, 0, 4753, 669, 1, 0, 0, 0, 4754, 4757, 5, 2, 0, 0, 4755, 4756, 5, 387, 0, 0, 4756, 4758, 5, 278, 0, 0, 4757, 4755, 1, 0, 0, 0, 4757, 4758, 1, 0, 0, 0, 4758, 671, 1, 0, 0, 0, 4759, 4760, 7, 51, 0, 0, 4760, 673, 1, 0, 0, 0, 4761, 4762, 7, 52, 0, 0, 4762, 675, 1, 0, 0, 0, 4763, 4764, 7, 53, 0, 0, 4764, 677, 1, 0, 0, 0, 4765, 4766, 7, 54, 0, 0, 4766, 679, 1, 0, 0, 0, 4767, 4768, 7, 55, 0, 0, 4768, 681, 1, 0, 0, 0, 4769, 4770, 7, 56, 0, 0, 4770, 683, 1, 0, 0, 0, 4771, 4772, 7, 57, 0, 0, 4772, 685, 1, 0, 0, 0, 4773, 4774, 7, 58, 0, 0, 4774, 687, 1, 0, 0, 0, 4775, 4776, 7, 59, 0, 0, 4776, 689, 1, 0, 0, 0, 4777, 4778, 7, 60, 0, 0, 4778, 691, 1, 0, 0, 0, 4779, 4784, 3, 648, 324, 0, 4780, 4781, 5, 395, 0, 0, 4781, 4783, 3, 648, 324, 0, 4782, 4780, 1, 0, 0, 0, 4783, 4786, 1, 0, 0, 0, 4784, 4782, 1, 0, 0, 0, 4784, 4785, 1, 0, 0, 0, 4785, 693, 1, 0, 0, 0, 4786, 4784, 1, 0, 0, 0, 4787, 4788, 3, 648, 324, 0, 4788, 4789, 5, 411, 0, 0, 4789, 4790, 7, 27, 0, 0, 4790, 695, 1, 0, 0, 0, 4791, 4796, 5, 176, 0, 0, 4792, 4793, 5, 211, 0, 0, 4793, 4794, 5, 341, 0, 0, 4794, 4796, 3, 692, 346, 0, 4795, 4791, 1, 0, 0, 0, 4795, 4792, 1, 0, 0, 0, 4796, 697, 1, 0, 0, 0, 4797, 4798, 5, 8, 0, 0, 4798, 4799, 5, 405, 0, 0, 4799, 4810, 5, 431, 0, 0, 4800, 4801, 5, 259, 0, 0, 4801, 4802, 5, 405, 0, 0, 4802, 4810, 5, 431, 0, 0, 4803, 4804, 5, 294, 0, 0, 4804, 4805, 5, 405, 0, 0, 4805, 4810, 5, 426, 0, 0, 4806, 4807, 5, 240, 0, 0, 4807, 4808, 5, 405, 0, 0, 4808, 4810, 3, 692, 346, 0, 4809, 4797, 1, 0, 0, 0, 4809, 4800, 1, 0, 0, 0, 4809, 4803, 1, 0, 0, 0, 4809, 4806, 1, 0, 0, 0, 4810, 699, 1, 0, 0, 0, 4811, 4816, 3, 698, 349, 0, 4812, 4813, 5, 397, 0, 0, 4813, 4815, 3, 698, 349, 0, 4814, 4812, 1, 0, 0, 0, 4815, 4818, 1, 0, 0, 0, 4816, 4814, 1, 0, 0, 0, 4816, 4817, 1, 0, 0, 0, 4817, 701, 1, 0, 0, 0, 4818, 4816, 1, 0, 0, 0, 621, 705, 712, 715, 721, 727, 734, 744, 747, 751, 766, 773, 779, 784, 789, 792, 816, 823, 826, 831, 836, 842, 846, 859, 863, 867, 872, 879, 883, 888, 895, 899, 904, 952, 959, 964, 987, 991, 995, 998, 1002, 1007, 1013, 1017, 1023, 1025, 1036, 1040, 1047, 1055, 1058, 1063, 1067, 1070, 1080, 1088, 1092, 1095, 1099, 1103, 1106, 1111, 1117, 1122, 1127, 1131, 1142, 1144, 1148, 1158, 1162, 1168, 1171, 1178, 1183, 1191, 1196, 1200, 1208, 1213, 1219, 1225, 1228, 1231, 1234, 1243, 1251, 1256, 1264, 1271, 1274, 1277, 1279, 1290, 1292, 1295, 1298, 1301, 1304, 1307, 1309, 1321, 1327, 1335, 1337, 1347, 1380, 1385, 1389, 1393, 1400, 1407, 1413, 1417, 1420, 1427, 1450, 1455, 1459, 1467, 1476, 1483, 1489, 1496, 1499, 1505, 1512, 1520, 1529, 1538, 1545, 1565, 1572, 1574, 1581, 1591, 1599, 1603, 1607, 1620, 1629, 1645, 1649, 1654, 1659, 1662, 1665, 1668, 1671, 1674, 1679, 1688, 1692, 1699, 1702, 1705, 1708, 1720, 1726, 1752, 1760, 1764, 1767, 1770, 1773, 1776, 1779, 1782, 1785, 1794, 1804, 1807, 1827, 1833, 1839, 1842, 1844, 1851, 1858, 1871, 1876, 1885, 1893, 1901, 1914, 1927, 1943, 1947, 1962, 1968, 1971, 1974, 1977, 1980, 1984, 1999, 2002, 2013, 2027, 2061, 2069, 2074, 2082, 2087, 2092, 2099, 2107, 2115, 2123, 2128, 2138, 2142, 2150, 2159, 2162, 2166, 2173, 2179, 2183, 2189, 2193, 2205, 2214, 2225, 2229, 2236, 2248, 2258, 2261, 2268, 2274, 2278, 2281, 2284, 2290, 2294, 2298, 2303, 2307, 2311, 2315, 2323, 2327, 2331, 2335, 2339, 2347, 2351, 2355, 2363, 2368, 2373, 2377, 2381, 2388, 2397, 2405, 2417, 2435, 2438, 2444, 2470, 2473, 2479, 2487, 2495, 2508, 2515, 2518, 2521, 2524, 2527, 2530, 2533, 2536, 2539, 2542, 2545, 2550, 2553, 2556, 2559, 2562, 2565, 2568, 2571, 2574, 2577, 2580, 2582, 2588, 2592, 2595, 2598, 2601, 2604, 2607, 2614, 2618, 2621, 2624, 2627, 2630, 2633, 2640, 2643, 2651, 2655, 2662, 2664, 2667, 2672, 2675, 2679, 2684, 2690, 2698, 2706, 2716, 2719, 2723, 2727, 2732, 2739, 2743, 2745, 2749, 2756, 2761, 2774, 2782, 2801, 2811, 2824, 2834, 2838, 2842, 2848, 2855, 2862, 2871, 2878, 2898, 2901, 2915, 2930, 2934, 2954, 2966, 2972, 2975, 2978, 2984, 2990, 2997, 3005, 3011, 3015, 3020, 3023, 3027, 3034, 3039, 3044, 3047, 3049, 3057, 3065, 3069, 3073, 3077, 3094, 3111, 3118, 3127, 3132, 3135, 3138, 3142, 3157, 3171, 3174, 3185, 3189, 3192, 3195, 3199, 3204, 3207, 3210, 3213, 3216, 3219, 3225, 3228, 3231, 3234, 3237, 3240, 3243, 3246, 3249, 3252, 3256, 3258, 3264, 3269, 3272, 3275, 3278, 3281, 3287, 3290, 3293, 3296, 3299, 3302, 3305, 3308, 3311, 3314, 3318, 3320, 3322, 3327, 3332, 3336, 3340, 3345, 3350, 3359, 3369, 3377, 3389, 3392, 3398, 3405, 3412, 3419, 3426, 3435, 3439, 3446, 3451, 3455, 3459, 3462, 3465, 3476, 3480, 3482, 3485, 3498, 3501, 3504, 3516, 3519, 3526, 3535, 3540, 3542, 3544, 3561, 3564, 3572, 3575, 3579, 3582, 3585, 3588, 3591, 3603, 3611, 3618, 3621, 3628, 3631, 3636, 3643, 3651, 3659, 3664, 3668, 3673, 3677, 3684, 3698, 3701, 3714, 3724, 3727, 3736, 3745, 3748, 3754, 3757, 3762, 3765, 3778, 3784, 3786, 3796, 3802, 3805, 3815, 3820, 3822, 3838, 3844, 3846, 3853, 3860, 3874, 3880, 3883, 3886, 3889, 3898, 3905, 3911, 3920, 3924, 3932, 3942, 3952, 3957, 3961, 3967, 3972, 3982, 3986, 3989, 3994, 3997, 4001, 4006, 4017, 4019, 4028, 4047, 4057, 4060, 4067, 4070, 4080, 4087, 4090, 4092, 4103, 4113, 4115, 4124, 4129, 4138, 4151, 4155, 4167, 4171, 4180, 4199, 4217, 4229, 4244, 4248, 4264, 4271, 4285, 4290, 4300, 4302, 4310, 4318, 4326, 4334, 4342, 4350, 4361, 4365, 4373, 4389, 4393, 4398, 4411, 4420, 4422, 4431, 4436, 4442, 4449, 4454, 4463, 4471, 4479, 4487, 4497, 4502, 4561, 4567, 4576, 4578, 4594, 4602, 4606, 4608, 4614, 4619, 4636, 4662, 4667, 4669, 4697, 4714, 4719, 4728, 4739, 4746, 4752, 4757, 4784, 4795, 4809, 4816] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index f5180526b..36bd915bd 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -702,105 +702,110 @@ export class HiveSqlParser extends SQLParserBase { public static readonly RULE_partitioningSpec = 244; public static readonly RULE_partitionTableFunctionSource = 245; public static readonly RULE_partitionedTableFunction = 246; - public static readonly RULE_whereClause = 247; - public static readonly RULE_valuesClause = 248; - public static readonly RULE_virtualTableSource = 249; - public static readonly RULE_selectClause = 250; - public static readonly RULE_selectTrfmClause = 251; - public static readonly RULE_selectItem = 252; - public static readonly RULE_trfmClause = 253; - public static readonly RULE_selectExpression = 254; - public static readonly RULE_selectExpressionList = 255; - public static readonly RULE_window_clause = 256; - public static readonly RULE_window_specification = 257; - public static readonly RULE_window_frame = 258; - public static readonly RULE_window_frame_boundary = 259; - public static readonly RULE_groupByClause = 260; - public static readonly RULE_rollupStandard = 261; - public static readonly RULE_rollupOldSyntax = 262; - public static readonly RULE_groupingSetExpression = 263; - public static readonly RULE_havingClause = 264; - public static readonly RULE_qualifyClause = 265; - public static readonly RULE_expressionOrDefault = 266; - public static readonly RULE_firstExpressionsWithAlias = 267; - public static readonly RULE_expressions = 268; - public static readonly RULE_expressionsInParenthesis = 269; - public static readonly RULE_expressionsNotInParenthesis = 270; - public static readonly RULE_orderByClause = 271; - public static readonly RULE_clusterByClause = 272; - public static readonly RULE_distributeByClause = 273; - public static readonly RULE_sortByClause = 274; - public static readonly RULE_function_ = 275; - public static readonly RULE_null_treatment = 276; - public static readonly RULE_functionNameCreate = 277; - public static readonly RULE_functionNameForDDL = 278; - public static readonly RULE_functionNameForInvoke = 279; - public static readonly RULE_castExpression = 280; - public static readonly RULE_caseExpression = 281; - public static readonly RULE_whenExpression = 282; - public static readonly RULE_floorExpression = 283; - public static readonly RULE_extractExpression = 284; - public static readonly RULE_timeQualifiers = 285; - public static readonly RULE_constant = 286; - public static readonly RULE_intervalValue = 287; - public static readonly RULE_intervalExpression = 288; - public static readonly RULE_intervalQualifiers = 289; - public static readonly RULE_expression = 290; - public static readonly RULE_atomExpression = 291; - public static readonly RULE_precedenceUnaryPrefixExpression = 292; - public static readonly RULE_precedenceBitwiseXorExpression = 293; - public static readonly RULE_precedenceStarExpression = 294; - public static readonly RULE_precedencePlusExpression = 295; - public static readonly RULE_precedenceConcatenateExpression = 296; - public static readonly RULE_precedenceAmpersandExpression = 297; - public static readonly RULE_precedenceBitwiseOrExpression = 298; - public static readonly RULE_precedenceSimilarOperator = 299; - public static readonly RULE_subQueryExpression = 300; - public static readonly RULE_precedenceSimilarExpression = 301; - public static readonly RULE_precedenceSimilarExpressionPart = 302; - public static readonly RULE_precedenceSimilarExpressionAtom = 303; - public static readonly RULE_precedenceSimilarExpressionIn = 304; - public static readonly RULE_precedenceSimilarExpressionPartNot = 305; - public static readonly RULE_precedenceDistinctOperator = 306; - public static readonly RULE_precedenceEqualOperator = 307; - public static readonly RULE_precedenceEqualExpression = 308; - public static readonly RULE_isCondition = 309; - public static readonly RULE_precedenceNotExpression = 310; - public static readonly RULE_precedenceAndExpression = 311; - public static readonly RULE_tableOrPartition = 312; - public static readonly RULE_partitionSpec = 313; - public static readonly RULE_partitionVal = 314; - public static readonly RULE_partitionSelectorSpec = 315; - public static readonly RULE_partitionSelectorVal = 316; - public static readonly RULE_subQuerySelectorOperator = 317; - public static readonly RULE_sysFuncNames = 318; - public static readonly RULE_id_ = 319; - public static readonly RULE_functionIdentifier = 320; - public static readonly RULE_principalIdentifier = 321; - public static readonly RULE_nonReserved = 322; - public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 323; - public static readonly RULE_configPropertiesItem = 324; - public static readonly RULE_resourcePlanDdlStatements = 325; - public static readonly RULE_mappingTypes = 326; - public static readonly RULE_rpAssign = 327; - public static readonly RULE_rpAssignList = 328; - public static readonly RULE_rpUnassign = 329; - public static readonly RULE_activate = 330; - public static readonly RULE_enable = 331; - public static readonly RULE_disable = 332; - public static readonly RULE_year = 333; - public static readonly RULE_month = 334; - public static readonly RULE_week = 335; - public static readonly RULE_day = 336; - public static readonly RULE_hour = 337; - public static readonly RULE_minute = 338; - public static readonly RULE_second = 339; - public static readonly RULE_decimal = 340; - public static readonly RULE_poolPath = 341; - public static readonly RULE_triggerAtomExpression = 342; - public static readonly RULE_triggerActionExpression = 343; - public static readonly RULE_poolAssign = 344; - public static readonly RULE_poolAssignList = 345; + public static readonly RULE_atomPartitionedTableFunction = 247; + public static readonly RULE_whereClause = 248; + public static readonly RULE_valuesClause = 249; + public static readonly RULE_atomValuesClause = 250; + public static readonly RULE_virtualTableSource = 251; + public static readonly RULE_selectClause = 252; + public static readonly RULE_selectTrfmClause = 253; + public static readonly RULE_selectList = 254; + public static readonly RULE_selectItem = 255; + public static readonly RULE_selectLiteralColumnName = 256; + public static readonly RULE_selectExpressionColumnName = 257; + public static readonly RULE_trfmClause = 258; + public static readonly RULE_selectExpression = 259; + public static readonly RULE_selectExpressionList = 260; + public static readonly RULE_window_clause = 261; + public static readonly RULE_window_specification = 262; + public static readonly RULE_window_frame = 263; + public static readonly RULE_window_frame_boundary = 264; + public static readonly RULE_groupByClause = 265; + public static readonly RULE_rollupStandard = 266; + public static readonly RULE_rollupOldSyntax = 267; + public static readonly RULE_groupingSetExpression = 268; + public static readonly RULE_havingClause = 269; + public static readonly RULE_qualifyClause = 270; + public static readonly RULE_expressionOrDefault = 271; + public static readonly RULE_firstExpressionsWithAlias = 272; + public static readonly RULE_expressions = 273; + public static readonly RULE_expressionsInParenthesis = 274; + public static readonly RULE_expressionsNotInParenthesis = 275; + public static readonly RULE_orderByClause = 276; + public static readonly RULE_clusterByClause = 277; + public static readonly RULE_distributeByClause = 278; + public static readonly RULE_sortByClause = 279; + public static readonly RULE_function_ = 280; + public static readonly RULE_null_treatment = 281; + public static readonly RULE_functionNameCreate = 282; + public static readonly RULE_functionNameForDDL = 283; + public static readonly RULE_functionNameForInvoke = 284; + public static readonly RULE_castExpression = 285; + public static readonly RULE_caseExpression = 286; + public static readonly RULE_whenExpression = 287; + public static readonly RULE_floorExpression = 288; + public static readonly RULE_extractExpression = 289; + public static readonly RULE_timeQualifiers = 290; + public static readonly RULE_constant = 291; + public static readonly RULE_intervalValue = 292; + public static readonly RULE_intervalExpression = 293; + public static readonly RULE_intervalQualifiers = 294; + public static readonly RULE_expression = 295; + public static readonly RULE_atomExpression = 296; + public static readonly RULE_precedenceUnaryPrefixExpression = 297; + public static readonly RULE_precedenceBitwiseXorExpression = 298; + public static readonly RULE_precedenceStarExpression = 299; + public static readonly RULE_precedencePlusExpression = 300; + public static readonly RULE_precedenceConcatenateExpression = 301; + public static readonly RULE_precedenceAmpersandExpression = 302; + public static readonly RULE_precedenceBitwiseOrExpression = 303; + public static readonly RULE_precedenceSimilarOperator = 304; + public static readonly RULE_subQueryExpression = 305; + public static readonly RULE_precedenceSimilarExpression = 306; + public static readonly RULE_precedenceSimilarExpressionPart = 307; + public static readonly RULE_precedenceSimilarExpressionAtom = 308; + public static readonly RULE_precedenceSimilarExpressionIn = 309; + public static readonly RULE_precedenceSimilarExpressionPartNot = 310; + public static readonly RULE_precedenceDistinctOperator = 311; + public static readonly RULE_precedenceEqualOperator = 312; + public static readonly RULE_precedenceEqualExpression = 313; + public static readonly RULE_isCondition = 314; + public static readonly RULE_precedenceNotExpression = 315; + public static readonly RULE_precedenceAndExpression = 316; + public static readonly RULE_tableOrPartition = 317; + public static readonly RULE_partitionSpec = 318; + public static readonly RULE_partitionVal = 319; + public static readonly RULE_partitionSelectorSpec = 320; + public static readonly RULE_partitionSelectorVal = 321; + public static readonly RULE_subQuerySelectorOperator = 322; + public static readonly RULE_sysFuncNames = 323; + public static readonly RULE_id_ = 324; + public static readonly RULE_functionIdentifier = 325; + public static readonly RULE_principalIdentifier = 326; + public static readonly RULE_nonReserved = 327; + public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 328; + public static readonly RULE_configPropertiesItem = 329; + public static readonly RULE_resourcePlanDdlStatements = 330; + public static readonly RULE_mappingTypes = 331; + public static readonly RULE_rpAssign = 332; + public static readonly RULE_rpAssignList = 333; + public static readonly RULE_rpUnassign = 334; + public static readonly RULE_activate = 335; + public static readonly RULE_enable = 336; + public static readonly RULE_disable = 337; + public static readonly RULE_year = 338; + public static readonly RULE_month = 339; + public static readonly RULE_week = 340; + public static readonly RULE_day = 341; + public static readonly RULE_hour = 342; + public static readonly RULE_minute = 343; + public static readonly RULE_second = 344; + public static readonly RULE_decimal = 345; + public static readonly RULE_poolPath = 346; + public static readonly RULE_triggerAtomExpression = 347; + public static readonly RULE_triggerActionExpression = 348; + public static readonly RULE_poolAssign = 349; + public static readonly RULE_poolAssignList = 350; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -1036,9 +1041,11 @@ export class HiveSqlParser extends SQLParserBase { "tableSource", "asOfClause", "dbSchemaName", "dbSchemaNameCreate", "tableOrView", "tableName", "tableNameCreate", "viewName", "viewNameCreate", "subQuerySource", "partitioningSpec", "partitionTableFunctionSource", - "partitionedTableFunction", "whereClause", "valuesClause", "virtualTableSource", - "selectClause", "selectTrfmClause", "selectItem", "trfmClause", - "selectExpression", "selectExpressionList", "window_clause", "window_specification", + "partitionedTableFunction", "atomPartitionedTableFunction", "whereClause", + "valuesClause", "atomValuesClause", "virtualTableSource", "selectClause", + "selectTrfmClause", "selectList", "selectItem", "selectLiteralColumnName", + "selectExpressionColumnName", "trfmClause", "selectExpression", + "selectExpressionList", "window_clause", "window_specification", "window_frame", "window_frame_boundary", "groupByClause", "rollupStandard", "rollupOldSyntax", "groupingSetExpression", "havingClause", "qualifyClause", "expressionOrDefault", "firstExpressionsWithAlias", "expressions", @@ -1088,21 +1095,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 695; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 33622025) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 810024961) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 35717185) !== 0) || _la === 318 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 8537089) !== 0) || _la === 387 || _la === 399) { { { - this.state = 692; + this.state = 702; this.statement(); } } - this.state = 697; + this.state = 707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 698; + this.state = 708; this.match(HiveSqlParser.EOF); } } @@ -1126,12 +1133,12 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 702; + this.state = 712; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 700; + this.state = 710; this.explainStatement(); } break; @@ -1179,19 +1186,19 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 701; + this.state = 711; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 705; + this.state = 715; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 704; + this.state = 714; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1219,9 +1226,9 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 707; - this.match(HiveSqlParser.KW_EXPLAIN); this.state = 717; + this.match(HiveSqlParser.KW_EXPLAIN); + this.state = 727; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1280,31 +1287,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 711; + this.state = 721; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 708; + this.state = 718; this.explainOption(); } } } - this.state = 713; + this.state = 723; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 714; + this.state = 724; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 715; + this.state = 725; this.match(HiveSqlParser.KW_REWRITE); - this.state = 716; + this.state = 726; this.queryStatementExpression(); } break; @@ -1332,41 +1339,41 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 741; + this.state = 751; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 719; + this.state = 729; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 720; + this.state = 730; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 721; + this.state = 731; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 722; + this.state = 732; this.match(HiveSqlParser.KW_CBO); - this.state = 724; + this.state = 734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 723; + this.state = 733; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1383,66 +1390,66 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 726; + this.state = 736; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 727; + this.state = 737; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 728; + this.state = 738; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 729; + this.state = 739; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 730; + this.state = 740; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 731; + this.state = 741; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 732; + this.state = 742; this.match(HiveSqlParser.KW_VECTORIZATION); - this.state = 734; + this.state = 744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 733; + this.state = 743; this.match(HiveSqlParser.KW_ONLY); } } - this.state = 737; + this.state = 747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 121 || _la === 226 || _la === 325) { { - this.state = 736; + this.state = 746; this.vectorizatonDetail(); } } @@ -1452,14 +1459,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 739; + this.state = 749; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 740; + this.state = 750; this.match(HiveSqlParser.KW_DDL); } break; @@ -1488,7 +1495,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 743; + this.state = 753; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 121 || _la === 226 || _la === 325)) { this.errorHandler.recoverInline(this); @@ -1519,68 +1526,68 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 816; + this.state = 826; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 745; + this.state = 755; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 746; + this.state = 756; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 747; + this.state = 757; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 748; + this.state = 758; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 749; + this.state = 759; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 750; + this.state = 760; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 751; + this.state = 761; this.match(HiveSqlParser.KW_REPL); - this.state = 752; + this.state = 762; this.match(HiveSqlParser.KW_STATUS); - this.state = 753; + this.state = 763; localContext._dbName = this.dbSchemaName(); - this.state = 756; + this.state = 766; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 754; + this.state = 764; this.match(HiveSqlParser.KW_WITH); - this.state = 755; + this.state = 765; localContext._replConf = this.keyValueProperties(); } break; @@ -1590,25 +1597,25 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 758; + this.state = 768; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 759; + this.state = 769; this.match(HiveSqlParser.KW_DELETE); - this.state = 760; + this.state = 770; this.match(HiveSqlParser.KW_FROM); - this.state = 761; + this.state = 771; this.tableName(); - this.state = 763; + this.state = 773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 762; + this.state = 772; this.whereClause(); } } @@ -1618,18 +1625,18 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 765; + this.state = 775; this.match(HiveSqlParser.KW_UPDATE); - this.state = 766; + this.state = 776; this.tableName(); - this.state = 767; + this.state = 777; this.setColumnsClause(); - this.state = 769; + this.state = 779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 768; + this.state = 778; this.whereClause(); } } @@ -1639,101 +1646,101 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 771; + this.state = 781; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 772; + this.state = 782; this.match(HiveSqlParser.KW_MERGE); - this.state = 774; + this.state = 784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 773; + this.state = 783; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 776; + this.state = 786; this.match(HiveSqlParser.KW_INTO); - this.state = 777; + this.state = 787; this.tableName(); - this.state = 782; + this.state = 792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 779; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 778; + this.state = 788; this.match(HiveSqlParser.KW_AS); } } - this.state = 781; + this.state = 791; this.id_(); } } - this.state = 784; + this.state = 794; this.match(HiveSqlParser.KW_USING); - this.state = 785; + this.state = 795; this.joinSourcePart(); - this.state = 786; + this.state = 796; this.match(HiveSqlParser.KW_ON); - this.state = 787; + this.state = 797; this.expression(); - this.state = 788; + this.state = 798; this.whenClauses(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 790; + this.state = 800; this.match(HiveSqlParser.KW_PREPARE); - this.state = 791; + this.state = 801; this.id_(); - this.state = 792; + this.state = 802; this.match(HiveSqlParser.KW_FROM); - this.state = 793; + this.state = 803; this.queryStatementExpression(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 795; + this.state = 805; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 796; + this.state = 806; this.id_(); - this.state = 797; + this.state = 807; this.match(HiveSqlParser.KW_USING); - this.state = 798; + this.state = 808; this.constantList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 800; + this.state = 810; this.match(HiveSqlParser.KW_SET); - this.state = 801; + this.state = 811; this.configPropertiesItem(); - this.state = 806; + this.state = 816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 396) { { { - this.state = 802; + this.state = 812; _la = this.tokenStream.LA(1); if(!(_la === 395 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -1742,29 +1749,29 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 803; + this.state = 813; this.configPropertiesItem(); } } - this.state = 808; + this.state = 818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 809; + this.state = 819; this.match(HiveSqlParser.EQUAL); - this.state = 813; + this.state = 823; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 810; + this.state = 820; this.matchWildcard(); } } } - this.state = 815; + this.state = 825; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); } @@ -1793,46 +1800,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 818; + this.state = 828; this.match(HiveSqlParser.KW_LOAD); - this.state = 819; + this.state = 829; this.match(HiveSqlParser.KW_DATA); - this.state = 821; + this.state = 831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 820; + this.state = 830; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 823; + this.state = 833; this.match(HiveSqlParser.KW_INPATH); - this.state = 824; + this.state = 834; this.match(HiveSqlParser.StringLiteral); - this.state = 826; + this.state = 836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 825; + this.state = 835; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 828; + this.state = 838; this.match(HiveSqlParser.KW_INTO); - this.state = 829; + this.state = 839; this.match(HiveSqlParser.KW_TABLE); - this.state = 830; + this.state = 840; this.tableOrPartition(); - this.state = 832; + this.state = 842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 831; + this.state = 841; this.inputFileFormat(); } } @@ -1860,25 +1867,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 834; + this.state = 844; this.match(HiveSqlParser.KW_FOR); - this.state = 836; + this.state = 846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 835; + this.state = 845; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 838; + this.state = 848; this.match(HiveSqlParser.KW_REPLICATION); - this.state = 839; + this.state = 849; this.match(HiveSqlParser.LPAREN); - this.state = 840; + this.state = 850; this.match(HiveSqlParser.StringLiteral); - this.state = 841; + this.state = 851; this.match(HiveSqlParser.RPAREN); } } @@ -1903,22 +1910,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 843; + this.state = 853; this.match(HiveSqlParser.KW_EXPORT); - this.state = 844; + this.state = 854; this.match(HiveSqlParser.KW_TABLE); - this.state = 845; + this.state = 855; this.tableOrPartition(); - this.state = 846; + this.state = 856; this.match(HiveSqlParser.KW_TO); - this.state = 847; + this.state = 857; this.match(HiveSqlParser.StringLiteral); - this.state = 849; + this.state = 859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 848; + this.state = 858; this.replicationClause(); } } @@ -1946,40 +1953,40 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 851; + this.state = 861; this.match(HiveSqlParser.KW_IMPORT); - this.state = 857; + this.state = 867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 329) { { - this.state = 853; + this.state = 863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 852; + this.state = 862; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 855; + this.state = 865; this.match(HiveSqlParser.KW_TABLE); - this.state = 856; + this.state = 866; this.tableOrPartition(); } } - this.state = 859; + this.state = 869; this.match(HiveSqlParser.KW_FROM); - this.state = 860; + this.state = 870; localContext._path = this.match(HiveSqlParser.StringLiteral); - this.state = 862; + this.state = 872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 861; + this.state = 871; this.locationPath(); } } @@ -2006,32 +2013,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 864; + this.state = 874; this.match(HiveSqlParser.KW_REPL); - this.state = 865; + this.state = 875; this.match(HiveSqlParser.KW_DUMP); - this.state = 866; + this.state = 876; localContext._dbPolicy = this.replDbPolicy(); - this.state = 869; + this.state = 879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 867; + this.state = 877; this.match(HiveSqlParser.KW_REPLACE); - this.state = 868; + this.state = 878; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 873; + this.state = 883; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { case 1: { - this.state = 871; + this.state = 881; this.match(HiveSqlParser.KW_WITH); - this.state = 872; + this.state = 882; localContext._replConf = this.keyValueProperties(); } break; @@ -2059,16 +2066,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 875; + this.state = 885; localContext._dbName = this.dbSchemaName(); - this.state = 878; + this.state = 888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 876; + this.state = 886; this.match(HiveSqlParser.DOT); - this.state = 877; + this.state = 887; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2096,32 +2103,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 880; + this.state = 890; this.match(HiveSqlParser.KW_REPL); - this.state = 881; + this.state = 891; this.match(HiveSqlParser.KW_LOAD); - this.state = 882; + this.state = 892; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 885; + this.state = 895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 883; + this.state = 893; this.match(HiveSqlParser.KW_INTO); - this.state = 884; + this.state = 894; localContext._dbName = this.dbSchemaName(); } } - this.state = 889; + this.state = 899; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 887; + this.state = 897; this.match(HiveSqlParser.KW_WITH); - this.state = 888; + this.state = 898; localContext._replConf = this.keyValueProperties(); } break; @@ -2149,16 +2156,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 891; + this.state = 901; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 894; + this.state = 904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 892; + this.state = 902; this.match(HiveSqlParser.DOT); - this.state = 893; + this.state = 903; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2184,302 +2191,302 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 28, HiveSqlParser.RULE_ddlStatement); let _la: number; try { - this.state = 954; + this.state = 964; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 896; + this.state = 906; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 897; + this.state = 907; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 898; + this.state = 908; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 899; + this.state = 909; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 900; + this.state = 910; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 901; + this.state = 911; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 902; + this.state = 912; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 903; + this.state = 913; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 904; + this.state = 914; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 905; + this.state = 915; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 906; + this.state = 916; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 907; + this.state = 917; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 908; + this.state = 918; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 909; + this.state = 919; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 910; + this.state = 920; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 911; + this.state = 921; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 912; + this.state = 922; this.dropMaterializedViewStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 913; + this.state = 923; this.createFunctionStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 914; + this.state = 924; this.createMacroStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 915; + this.state = 925; this.dropFunctionStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 916; + this.state = 926; this.reloadFunctionsStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 917; + this.state = 927; this.dropMacroStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 918; + this.state = 928; this.createIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 919; + this.state = 929; this.dropIndexStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 920; + this.state = 930; this.analyzeStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 921; + this.state = 931; this.lockStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 922; + this.state = 932; this.unlockStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 923; + this.state = 933; this.lockDatabase(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 924; + this.state = 934; this.unlockDatabase(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 925; + this.state = 935; this.createRoleStatement(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 926; + this.state = 936; this.dropRoleStatement(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 927; + this.state = 937; this.grantPrivileges(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 928; + this.state = 938; this.revokePrivileges(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 929; + this.state = 939; this.showGrants(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 930; + this.state = 940; this.showRoleGrants(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 931; + this.state = 941; this.showRolePrincipals(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 932; + this.state = 942; this.showRoles(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 933; + this.state = 943; this.grantRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 934; + this.state = 944; this.revokeRole(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 935; + this.state = 945; this.setRole(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 936; + this.state = 946; this.showCurrentRole(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 937; + this.state = 947; this.match(HiveSqlParser.KW_ABORT); - this.state = 938; + this.state = 948; _la = this.tokenStream.LA(1); if(!(_la === 50 || _la === 346)) { this.errorHandler.recoverInline(this); @@ -2488,17 +2495,17 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 940; + this.state = 950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 939; + this.state = 949; this.match(HiveSqlParser.Number); } } - this.state = 942; + this.state = 952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); @@ -2507,21 +2514,21 @@ export class HiveSqlParser extends SQLParserBase { case 43: this.enterOuterAlt(localContext, 43); { - this.state = 944; + this.state = 954; this.match(HiveSqlParser.KW_KILL); - this.state = 945; + this.state = 955; this.match(HiveSqlParser.KW_QUERY); - this.state = 947; + this.state = 957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 946; + this.state = 956; this.match(HiveSqlParser.StringLiteral); } } - this.state = 949; + this.state = 959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 426); @@ -2530,21 +2537,21 @@ export class HiveSqlParser extends SQLParserBase { case 44: this.enterOuterAlt(localContext, 44); { - this.state = 951; + this.state = 961; this.resourcePlanDdlStatements(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 952; + this.state = 962; this.createDataConnectorStatement(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 953; + this.state = 963; this.dropDataConnectorStatement(); } break; @@ -2570,9 +2577,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 956; + this.state = 966; this.match(HiveSqlParser.KW_IF); - this.state = 957; + this.state = 967; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2596,11 +2603,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 959; + this.state = 969; this.match(HiveSqlParser.KW_IF); - this.state = 960; + this.state = 970; this.match(HiveSqlParser.KW_NOT); - this.state = 961; + this.state = 971; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2625,7 +2632,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 963; + this.state = 973; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -2656,9 +2663,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 965; + this.state = 975; this.enable(); - this.state = 966; + this.state = 976; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2682,9 +2689,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 978; this.disable(); - this.state = 969; + this.state = 979; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2708,11 +2715,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 971; + this.state = 981; this.match(HiveSqlParser.KW_STORED); - this.state = 972; + this.state = 982; this.match(HiveSqlParser.KW_AS); - this.state = 973; + this.state = 983; this.match(HiveSqlParser.KW_DIRECTORIES); } } @@ -2735,80 +2742,80 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 42, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1015; + this.state = 1025; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 975; + this.state = 985; this.match(HiveSqlParser.KW_CREATE); - this.state = 977; + this.state = 987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 976; + this.state = 986; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 979; + this.state = 989; this.db_schema(); - this.state = 981; + this.state = 991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 980; + this.state = 990; this.ifNotExists(); } } - this.state = 983; + this.state = 993; localContext._name = this.dbSchemaNameCreate(); - this.state = 985; + this.state = 995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 984; + this.state = 994; this.databaseComment(); } } - this.state = 988; + this.state = 998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 987; + this.state = 997; this.locationPath(); } } - this.state = 992; + this.state = 1002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 990; + this.state = 1000; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 991; + this.state = 1001; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 997; + this.state = 1007; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 994; + this.state = 1004; this.match(HiveSqlParser.KW_WITH); - this.state = 995; + this.state = 1005; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 996; + this.state = 1006; localContext._dbprops = this.keyValueProperties(); } break; @@ -2818,46 +2825,46 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 999; + this.state = 1009; this.match(HiveSqlParser.KW_CREATE); - this.state = 1000; + this.state = 1010; this.match(HiveSqlParser.KW_REMOTE); - this.state = 1001; + this.state = 1011; this.db_schema(); - this.state = 1003; + this.state = 1013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1002; + this.state = 1012; this.ifNotExists(); } } - this.state = 1005; + this.state = 1015; localContext._name = this.dbSchemaNameCreate(); - this.state = 1007; + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1006; + this.state = 1016; this.databaseComment(); } } - this.state = 1009; + this.state = 1019; this.dbConnectorName(); - this.state = 1013; + this.state = 1023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 1010; + this.state = 1020; this.match(HiveSqlParser.KW_WITH); - this.state = 1011; + this.state = 1021; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1012; + this.state = 1022; localContext._dbprops = this.keyValueProperties(); } break; @@ -2886,9 +2893,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1017; + this.state = 1027; this.match(HiveSqlParser.KW_USING); - this.state = 1018; + this.state = 1028; localContext._dcName = this.dbSchemaName(); } } @@ -2912,9 +2919,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1020; + this.state = 1030; this.match(HiveSqlParser.KW_USE); - this.state = 1021; + this.state = 1031; this.dbSchemaName(); } } @@ -2939,28 +2946,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1023; + this.state = 1033; this.match(HiveSqlParser.KW_DROP); - this.state = 1024; + this.state = 1034; this.db_schema(); - this.state = 1026; + this.state = 1036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1025; + this.state = 1035; this.ifExists(); } } - this.state = 1028; + this.state = 1038; this.dbSchemaName(); - this.state = 1030; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 1029; + this.state = 1039; this.restrictOrCascade(); } } @@ -2987,9 +2994,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1032; + this.state = 1042; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1033; + this.state = 1043; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -3014,42 +3021,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1035; + this.state = 1045; this.match(HiveSqlParser.KW_TRUNCATE); - this.state = 1037; + this.state = 1047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1036; + this.state = 1046; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1039; + this.state = 1049; this.tableOrPartition(); - this.state = 1045; + this.state = 1055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1040; + this.state = 1050; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1041; + this.state = 1051; this.match(HiveSqlParser.LPAREN); - this.state = 1042; + this.state = 1052; this.columnNameList(); - this.state = 1043; + this.state = 1053; this.match(HiveSqlParser.RPAREN); } } - this.state = 1048; + this.state = 1058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1047; + this.state = 1057; this.match(HiveSqlParser.KW_FORCE); } } @@ -3077,38 +3084,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1050; + this.state = 1060; this.match(HiveSqlParser.KW_DROP); - this.state = 1051; + this.state = 1061; this.match(HiveSqlParser.KW_TABLE); - this.state = 1053; + this.state = 1063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1052; + this.state = 1062; this.ifExists(); } } - this.state = 1055; + this.state = 1065; this.tableName(); - this.state = 1057; + this.state = 1067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 1056; + this.state = 1066; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1060; + this.state = 1070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1059; + this.state = 1069; this.replicationClause(); } } @@ -3135,13 +3142,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1062; + this.state = 1072; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1063; + this.state = 1073; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 1064; + this.state = 1074; this.match(HiveSqlParser.KW_SERDE); - this.state = 1065; + this.state = 1075; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -3166,66 +3173,66 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1067; + this.state = 1077; this.id_(); - this.state = 1070; + this.state = 1080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 1068; + this.state = 1078; this.match(HiveSqlParser.DOT); - this.state = 1069; + this.state = 1079; this.id_(); } } - this.state = 1085; + this.state = 1095; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { case 1: { - this.state = 1072; - this.id_(); this.state = 1082; + this.id_(); + this.state = 1092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 1073; + this.state = 1083; this.match(HiveSqlParser.DOT); - this.state = 1078; + this.state = 1088; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1074; + this.state = 1084; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1075; + this.state = 1085; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1076; + this.state = 1086; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1077; + this.state = 1087; this.id_(); } break; } } } - this.state = 1084; + this.state = 1094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3255,14 +3262,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1087; + this.state = 1097; this.tabTypeExpr(); - this.state = 1089; + this.state = 1099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1088; + this.state = 1098; this.partitionSpec(); } } @@ -3289,24 +3296,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1091; + this.state = 1101; this.tableOrView(); - this.state = 1093; + this.state = 1103; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1092; + this.state = 1102; this.partitionSpec(); } break; } - this.state = 1096; + this.state = 1106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1095; + this.state = 1105; this.extColumnName(); } break; @@ -3334,7 +3341,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1098; + this.state = 1108; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3343,90 +3350,90 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1121; + this.state = 1131; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1099; + this.state = 1109; this.db_schema(); - this.state = 1101; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1100; + this.state = 1110; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1103; + this.state = 1113; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1105; + this.state = 1115; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 1107; + this.state = 1117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1106; + this.state = 1116; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1109; + this.state = 1119; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1110; + this.state = 1120; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1112; + this.state = 1122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1111; + this.state = 1121; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1114; + this.state = 1124; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1117; + this.state = 1127; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1115; + this.state = 1125; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1116; + this.state = 1126; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1119; + this.state = 1129; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1120; + this.state = 1130; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3453,42 +3460,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1123; + this.state = 1133; this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1124; + this.state = 1134; this.match(HiveSqlParser.KW_TABLE); - this.state = 1125; + this.state = 1135; localContext._parttype = this.tableOrPartition(); - this.state = 1138; + this.state = 1148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1126; + this.state = 1136; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1127; + this.state = 1137; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1134; + this.state = 1144; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1128; + this.state = 1138; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1129; + this.state = 1139; this.match(HiveSqlParser.KW_FOR); - this.state = 1130; + this.state = 1140; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1132; + this.state = 1142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1131; + this.state = 1141; localContext._statsColumnName = this.columnNameList(); } break; @@ -3549,9 +3556,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_CACHE: { - this.state = 1136; + this.state = 1146; this.match(HiveSqlParser.KW_CACHE); - this.state = 1137; + this.state = 1147; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3581,7 +3588,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1140; + this.state = 1150; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3613,7 +3620,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1142; + this.state = 1152; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 295)) { this.errorHandler.recoverInline(this); @@ -3643,15 +3650,15 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 72, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1327; + this.state = 1337; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1144; + this.state = 1154; this.match(HiveSqlParser.KW_SHOW); - this.state = 1145; + this.state = 1155; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 296)) { this.errorHandler.recoverInline(this); @@ -3660,14 +3667,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1148; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1146; + this.state = 1156; this.match(HiveSqlParser.KW_LIKE); - this.state = 1147; + this.state = 1157; this.showStmtIdentifier(); } } @@ -3677,38 +3684,38 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1150; + this.state = 1160; this.match(HiveSqlParser.KW_SHOW); - this.state = 1152; + this.state = 1162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1151; + this.state = 1161; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1154; + this.state = 1164; this.match(HiveSqlParser.KW_TABLES); - this.state = 1158; + this.state = 1168; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1155; + this.state = 1165; this.from_in(); - this.state = 1156; + this.state = 1166; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1161; + this.state = 1171; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1160; + this.state = 1170; localContext._filter = this.showTablesFilterExpr(); } break; @@ -3718,36 +3725,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1163; + this.state = 1173; this.match(HiveSqlParser.KW_SHOW); - this.state = 1164; + this.state = 1174; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1168; + this.state = 1178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1165; + this.state = 1175; this.from_in(); - this.state = 1166; + this.state = 1176; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1173; + this.state = 1183; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 1170; + this.state = 1180; this.match(HiveSqlParser.KW_LIKE); - this.state = 1171; + this.state = 1181; this.showStmtIdentifier(); } break; case 2: { - this.state = 1172; + this.state = 1182; this.showStmtIdentifier(); } break; @@ -3757,38 +3764,38 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1175; + this.state = 1185; this.match(HiveSqlParser.KW_SHOW); - this.state = 1176; + this.state = 1186; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1177; + this.state = 1187; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1181; + this.state = 1191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 1178; + this.state = 1188; this.from_in(); - this.state = 1179; + this.state = 1189; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1186; + this.state = 1196; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { - this.state = 1183; + this.state = 1193; this.match(HiveSqlParser.KW_LIKE); - this.state = 1184; + this.state = 1194; this.showStmtIdentifier(); } break; case 2: { - this.state = 1185; + this.state = 1195; this.showStmtIdentifier(); } break; @@ -3798,50 +3805,50 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1188; + this.state = 1198; this.match(HiveSqlParser.KW_SHOW); - this.state = 1190; + this.state = 1200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1189; + this.state = 1199; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1192; + this.state = 1202; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1193; + this.state = 1203; this.from_in(); - this.state = 1194; + this.state = 1204; this.tableOrView(); - this.state = 1198; + this.state = 1208; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1195; + this.state = 1205; this.from_in(); - this.state = 1196; + this.state = 1206; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1203; + this.state = 1213; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 1200; + this.state = 1210; this.match(HiveSqlParser.KW_LIKE); - this.state = 1201; + this.state = 1211; this.showStmtIdentifier(); } break; case 2: { - this.state = 1202; + this.state = 1212; this.showStmtIdentifier(); } break; @@ -3851,18 +3858,18 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1205; + this.state = 1215; this.match(HiveSqlParser.KW_SHOW); - this.state = 1206; + this.state = 1216; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1209; + this.state = 1219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1207; + this.state = 1217; this.match(HiveSqlParser.KW_LIKE); - this.state = 1208; + this.state = 1218; this.functionNameForDDL(); } } @@ -3872,48 +3879,48 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1211; + this.state = 1221; this.match(HiveSqlParser.KW_SHOW); - this.state = 1212; + this.state = 1222; this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1213; + this.state = 1223; localContext._tabOrViewName = this.tableOrView(); - this.state = 1215; + this.state = 1225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1214; + this.state = 1224; this.partitionSpec(); } } - this.state = 1218; + this.state = 1228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 1217; + this.state = 1227; this.whereClause(); } } - this.state = 1221; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1220; + this.state = 1230; this.orderByClause(); } } - this.state = 1224; + this.state = 1234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1223; + this.state = 1233; this.limitClause(); } } @@ -3923,27 +3930,27 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1226; + this.state = 1236; this.match(HiveSqlParser.KW_SHOW); - this.state = 1227; + this.state = 1237; this.match(HiveSqlParser.KW_CREATE); - this.state = 1233; + this.state = 1243; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1228; + this.state = 1238; this.db_schema(); - this.state = 1229; + this.state = 1239; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1231; + this.state = 1241; this.match(HiveSqlParser.KW_TABLE); - this.state = 1232; + this.state = 1242; localContext._tabName = this.tableName(); } break; @@ -3955,34 +3962,34 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1235; + this.state = 1245; this.match(HiveSqlParser.KW_SHOW); - this.state = 1236; + this.state = 1246; this.match(HiveSqlParser.KW_TABLE); - this.state = 1237; + this.state = 1247; this.match(HiveSqlParser.KW_EXTENDED); - this.state = 1241; + this.state = 1251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1238; + this.state = 1248; this.from_in(); - this.state = 1239; + this.state = 1249; localContext._db_name = this.dbSchemaName(); } } - this.state = 1243; + this.state = 1253; this.match(HiveSqlParser.KW_LIKE); - this.state = 1244; + this.state = 1254; this.showStmtIdentifier(); - this.state = 1246; + this.state = 1256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1245; + this.state = 1255; this.partitionSpec(); } } @@ -3992,22 +3999,22 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1248; + this.state = 1258; this.match(HiveSqlParser.KW_SHOW); - this.state = 1249; + this.state = 1259; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1250; + this.state = 1260; this.tableName(); - this.state = 1254; + this.state = 1264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 1251; + this.state = 1261; this.match(HiveSqlParser.LPAREN); - this.state = 1252; + this.state = 1262; localContext._prptyName = this.match(HiveSqlParser.StringLiteral); - this.state = 1253; + this.state = 1263; this.match(HiveSqlParser.RPAREN); } break; @@ -4017,25 +4024,25 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1256; + this.state = 1266; this.match(HiveSqlParser.KW_SHOW); - this.state = 1257; + this.state = 1267; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1269; + this.state = 1279; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1258; + this.state = 1268; this.db_schema(); - this.state = 1259; + this.state = 1269; localContext._dbName = this.dbSchemaName(); - this.state = 1261; + this.state = 1271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1260; + this.state = 1270; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4044,22 +4051,22 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 1264; + this.state = 1274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1263; + this.state = 1273; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1267; + this.state = 1277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1266; + this.state = 1276; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4072,20 +4079,20 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1271; + this.state = 1281; this.match(HiveSqlParser.KW_SHOW); - this.state = 1272; + this.state = 1282; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1299; + this.state = 1309; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPACT_ID: { - this.state = 1273; + this.state = 1283; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 1274; + this.state = 1284; this.match(HiveSqlParser.EQUAL); - this.state = 1275; + this.state = 1285; localContext._compactId = this.match(HiveSqlParser.Number); } break; @@ -4358,27 +4365,27 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: case HiveSqlParser.Identifier: { - this.state = 1282; + this.state = 1292; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { { - this.state = 1276; + this.state = 1286; this.db_schema(); - this.state = 1277; + this.state = 1287; localContext._dbName = this.dbSchemaName(); } } break; case 2: { - this.state = 1280; + this.state = 1290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1279; + this.state = 1289; localContext._parttype = this.partTypeExpr(); } break; @@ -4386,52 +4393,52 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 1285; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 1284; + this.state = 1294; this.compactionPool(); } } - this.state = 1288; + this.state = 1298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1287; + this.state = 1297; this.compactionType(); } } - this.state = 1291; + this.state = 1301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 1290; + this.state = 1300; this.compactionStatus(); } } - this.state = 1294; + this.state = 1304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1293; + this.state = 1303; this.orderByClause(); } } - this.state = 1297; + this.state = 1307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1296; + this.state = 1306; this.limitClause(); } } @@ -4446,44 +4453,44 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1301; + this.state = 1311; this.match(HiveSqlParser.KW_SHOW); - this.state = 1302; + this.state = 1312; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1303; + this.state = 1313; this.match(HiveSqlParser.KW_SHOW); - this.state = 1304; + this.state = 1314; this.match(HiveSqlParser.KW_CONF); - this.state = 1305; + this.state = 1315; this.match(HiveSqlParser.StringLiteral); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1306; + this.state = 1316; this.match(HiveSqlParser.KW_SHOW); - this.state = 1307; + this.state = 1317; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 1311; + this.state = 1321; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1308; + this.state = 1318; this.match(HiveSqlParser.KW_PLAN); - this.state = 1309; + this.state = 1319; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1310; + this.state = 1320; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4495,28 +4502,28 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1313; + this.state = 1323; this.match(HiveSqlParser.KW_SHOW); - this.state = 1314; + this.state = 1324; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1315; + this.state = 1325; this.match(HiveSqlParser.KW_SHOW); - this.state = 1317; + this.state = 1327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1316; + this.state = 1326; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1319; + this.state = 1329; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4525,18 +4532,18 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1320; + this.state = 1330; this.match(HiveSqlParser.KW_ON); - this.state = 1321; + this.state = 1331; this.tableName(); - this.state = 1325; + this.state = 1335; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1322; + this.state = 1332; this.from_in(); - this.state = 1323; + this.state = 1333; this.dbSchemaName(); } break; @@ -4563,28 +4570,28 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowTablesFilterExprContext(this.context, this.state); this.enterRule(localContext, 74, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1337; + this.state = 1347; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1329; + this.state = 1339; this.match(HiveSqlParser.KW_WHERE); - this.state = 1330; + this.state = 1340; this.id_(); - this.state = 1331; + this.state = 1341; this.match(HiveSqlParser.EQUAL); - this.state = 1332; + this.state = 1342; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1334; + this.state = 1344; this.match(HiveSqlParser.KW_LIKE); - this.state = 1335; + this.state = 1345; this.showStmtIdentifier(); } break; @@ -4831,7 +4838,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1336; + this.state = 1346; this.showStmtIdentifier(); } break; @@ -4859,13 +4866,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1339; + this.state = 1349; this.match(HiveSqlParser.KW_LOCK); - this.state = 1340; + this.state = 1350; this.match(HiveSqlParser.KW_TABLE); - this.state = 1341; + this.state = 1351; this.tableOrPartition(); - this.state = 1342; + this.state = 1352; this.lockMode(); } } @@ -4889,13 +4896,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1344; + this.state = 1354; this.match(HiveSqlParser.KW_LOCK); - this.state = 1345; + this.state = 1355; this.db_schema(); - this.state = 1346; + this.state = 1356; localContext._dbName = this.dbSchemaName(); - this.state = 1347; + this.state = 1357; this.lockMode(); } } @@ -4920,7 +4927,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1359; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -4951,11 +4958,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1351; + this.state = 1361; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1352; + this.state = 1362; this.match(HiveSqlParser.KW_TABLE); - this.state = 1353; + this.state = 1363; this.tableOrPartition(); } } @@ -4979,11 +4986,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1355; + this.state = 1365; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1356; + this.state = 1366; this.db_schema(); - this.state = 1357; + this.state = 1367; localContext._dbName = this.dbSchemaName(); } } @@ -5007,11 +5014,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1359; + this.state = 1369; this.match(HiveSqlParser.KW_CREATE); - this.state = 1360; + this.state = 1370; this.match(HiveSqlParser.KW_ROLE); - this.state = 1361; + this.state = 1371; localContext._roleName = this.id_(); } } @@ -5035,11 +5042,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1373; this.match(HiveSqlParser.KW_DROP); - this.state = 1364; + this.state = 1374; this.match(HiveSqlParser.KW_ROLE); - this.state = 1365; + this.state = 1375; localContext._roleName = this.id_(); } } @@ -5064,30 +5071,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1367; + this.state = 1377; this.match(HiveSqlParser.KW_GRANT); - this.state = 1368; + this.state = 1378; localContext._privList = this.privilegeList(); - this.state = 1370; + this.state = 1380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1369; + this.state = 1379; this.privilegeObject(); } } - this.state = 1372; + this.state = 1382; this.match(HiveSqlParser.KW_TO); - this.state = 1373; + this.state = 1383; this.principalSpecification(); - this.state = 1375; + this.state = 1385; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1374; + this.state = 1384; this.withGrantOption(); } break; @@ -5115,33 +5122,33 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1377; + this.state = 1387; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1379; + this.state = 1389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1378; + this.state = 1388; this.grantOptionFor(); } } - this.state = 1381; + this.state = 1391; this.privilegeList(); - this.state = 1383; + this.state = 1393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1382; + this.state = 1392; this.privilegeObject(); } } - this.state = 1385; + this.state = 1395; this.match(HiveSqlParser.KW_FROM); - this.state = 1386; + this.state = 1396; this.principalSpecification(); } } @@ -5166,46 +5173,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1388; + this.state = 1398; this.match(HiveSqlParser.KW_GRANT); - this.state = 1390; + this.state = 1400; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1389; + this.state = 1399; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1392; + this.state = 1402; this.id_(); - this.state = 1397; + this.state = 1407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1393; + this.state = 1403; this.match(HiveSqlParser.COMMA); - this.state = 1394; + this.state = 1404; this.id_(); } } - this.state = 1399; + this.state = 1409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1400; + this.state = 1410; this.match(HiveSqlParser.KW_TO); - this.state = 1401; + this.state = 1411; this.principalSpecification(); - this.state = 1403; + this.state = 1413; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1402; + this.state = 1412; this.withAdminOption(); } break; @@ -5233,49 +5240,49 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1405; + this.state = 1415; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1407; + this.state = 1417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1406; + this.state = 1416; this.adminOptionFor(); } break; } - this.state = 1410; + this.state = 1420; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1409; + this.state = 1419; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1412; + this.state = 1422; this.id_(); - this.state = 1417; + this.state = 1427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1413; + this.state = 1423; this.match(HiveSqlParser.COMMA); - this.state = 1414; + this.state = 1424; this.id_(); } } - this.state = 1419; + this.state = 1429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1420; + this.state = 1430; this.match(HiveSqlParser.KW_FROM); - this.state = 1421; + this.state = 1431; this.principalSpecification(); } } @@ -5299,13 +5306,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1423; + this.state = 1433; this.match(HiveSqlParser.KW_SHOW); - this.state = 1424; + this.state = 1434; this.match(HiveSqlParser.KW_ROLE); - this.state = 1425; + this.state = 1435; this.match(HiveSqlParser.KW_GRANT); - this.state = 1426; + this.state = 1436; this.principalName(); } } @@ -5329,9 +5336,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1428; + this.state = 1438; this.match(HiveSqlParser.KW_SHOW); - this.state = 1429; + this.state = 1439; this.match(HiveSqlParser.KW_ROLES); } } @@ -5355,11 +5362,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1431; + this.state = 1441; this.match(HiveSqlParser.KW_SHOW); - this.state = 1432; + this.state = 1442; this.match(HiveSqlParser.KW_CURRENT); - this.state = 1433; + this.state = 1443; this.match(HiveSqlParser.KW_ROLES); } } @@ -5383,22 +5390,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1435; + this.state = 1445; this.match(HiveSqlParser.KW_SET); - this.state = 1436; + this.state = 1446; this.match(HiveSqlParser.KW_ROLE); - this.state = 1440; + this.state = 1450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1437; + this.state = 1447; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1438; + this.state = 1448; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5643,7 +5650,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1439; + this.state = 1449; this.id_(); } break; @@ -5673,28 +5680,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1442; + this.state = 1452; this.match(HiveSqlParser.KW_SHOW); - this.state = 1443; + this.state = 1453; this.match(HiveSqlParser.KW_GRANT); - this.state = 1445; + this.state = 1455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 287 || _la === 369) { { - this.state = 1444; + this.state = 1454; this.principalName(); } } - this.state = 1449; + this.state = 1459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1447; + this.state = 1457; this.match(HiveSqlParser.KW_ON); - this.state = 1448; + this.state = 1458; this.privilegeIncludeColObject(); } } @@ -5721,11 +5728,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1451; + this.state = 1461; this.match(HiveSqlParser.KW_SHOW); - this.state = 1452; + this.state = 1462; this.match(HiveSqlParser.KW_PRINCIPALS); - this.state = 1453; + this.state = 1463; localContext._roleName = this.id_(); } } @@ -5747,13 +5754,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); this.enterRule(localContext, 110, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1457; + this.state = 1467; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1465; this.match(HiveSqlParser.KW_ALL); } break; @@ -6001,7 +6008,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1456; + this.state = 1466; this.privObjectCols(); } break; @@ -6029,9 +6036,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1459; + this.state = 1469; this.match(HiveSqlParser.KW_ON); - this.state = 1460; + this.state = 1470; this.privObject(); } } @@ -6054,50 +6061,50 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 114, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1473; + this.state = 1483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1462; + this.state = 1472; this.db_schema(); - this.state = 1463; + this.state = 1473; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1466; + this.state = 1476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1465; + this.state = 1475; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1468; + this.state = 1478; this.tableOrPartition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1469; + this.state = 1479; this.match(HiveSqlParser.KW_URI); - this.state = 1470; + this.state = 1480; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1471; + this.state = 1481; this.match(HiveSqlParser.KW_SERVER); - this.state = 1472; + this.state = 1482; this.id_(); } break; @@ -6122,53 +6129,53 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 116, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1495; + this.state = 1505; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1475; + this.state = 1485; this.db_schema(); - this.state = 1476; + this.state = 1486; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1479; + this.state = 1489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1478; + this.state = 1488; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1481; + this.state = 1491; this.tableName(); - this.state = 1486; + this.state = 1496; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { case 1: { - this.state = 1482; + this.state = 1492; this.match(HiveSqlParser.LPAREN); - this.state = 1483; + this.state = 1493; localContext._cols = this.columnNameList(); - this.state = 1484; + this.state = 1494; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1489; + this.state = 1499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1488; + this.state = 1498; this.partitionSpec(); } } @@ -6178,18 +6185,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1491; + this.state = 1501; this.match(HiveSqlParser.KW_URI); - this.state = 1492; + this.state = 1502; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1493; + this.state = 1503; this.match(HiveSqlParser.KW_SERVER); - this.state = 1494; + this.state = 1504; this.id_(); } break; @@ -6216,21 +6223,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1497; + this.state = 1507; this.privlegeDef(); - this.state = 1502; + this.state = 1512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1498; + this.state = 1508; this.match(HiveSqlParser.COMMA); - this.state = 1499; + this.state = 1509; this.privlegeDef(); } } - this.state = 1504; + this.state = 1514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6257,18 +6264,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1505; + this.state = 1515; this.privilegeType(); - this.state = 1510; + this.state = 1520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1506; + this.state = 1516; this.match(HiveSqlParser.LPAREN); - this.state = 1507; + this.state = 1517; localContext._cols = this.columnNameList(); - this.state = 1508; + this.state = 1518; this.match(HiveSqlParser.RPAREN); } } @@ -6296,7 +6303,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1512; + this.state = 1522; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 190 || _la === 299 || _la === 309 || _la === 365)) { this.errorHandler.recoverInline(this); @@ -6328,21 +6335,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1514; + this.state = 1524; this.principalName(); - this.state = 1519; + this.state = 1529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1515; + this.state = 1525; this.match(HiveSqlParser.COMMA); - this.state = 1516; + this.state = 1526; this.principalName(); } } - this.state = 1521; + this.state = 1531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6366,33 +6373,33 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalNameContext(this.context, this.state); this.enterRule(localContext, 126, HiveSqlParser.RULE_principalName); try { - this.state = 1528; + this.state = 1538; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1522; + this.state = 1532; this.match(HiveSqlParser.KW_USER); - this.state = 1523; + this.state = 1533; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1524; + this.state = 1534; this.match(HiveSqlParser.KW_GROUP); - this.state = 1525; + this.state = 1535; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1526; + this.state = 1536; this.match(HiveSqlParser.KW_ROLE); - this.state = 1527; + this.state = 1537; this.id_(); } break; @@ -6418,31 +6425,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalAlterNameContext(this.context, this.state); this.enterRule(localContext, 128, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1535; + this.state = 1545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1530; + this.state = 1540; this.match(HiveSqlParser.KW_USER); - this.state = 1531; + this.state = 1541; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1532; + this.state = 1542; this.match(HiveSqlParser.KW_ROLE); - this.state = 1533; + this.state = 1543; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1534; + this.state = 1544; this.id_(); } break; @@ -6468,11 +6475,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1537; + this.state = 1547; this.match(HiveSqlParser.KW_WITH); - this.state = 1538; + this.state = 1548; this.match(HiveSqlParser.KW_GRANT); - this.state = 1539; + this.state = 1549; this.match(HiveSqlParser.KW_OPTION); } } @@ -6496,11 +6503,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1541; + this.state = 1551; this.match(HiveSqlParser.KW_GRANT); - this.state = 1542; + this.state = 1552; this.match(HiveSqlParser.KW_OPTION); - this.state = 1543; + this.state = 1553; this.match(HiveSqlParser.KW_FOR); } } @@ -6524,11 +6531,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1545; + this.state = 1555; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1546; + this.state = 1556; this.match(HiveSqlParser.KW_OPTION); - this.state = 1547; + this.state = 1557; this.match(HiveSqlParser.KW_FOR); } } @@ -6552,11 +6559,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1549; + this.state = 1559; this.match(HiveSqlParser.KW_WITH); - this.state = 1550; + this.state = 1560; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1551; + this.state = 1561; this.match(HiveSqlParser.KW_OPTION); } } @@ -6581,29 +6588,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1553; + this.state = 1563; this.match(HiveSqlParser.KW_MSCK); - this.state = 1555; + this.state = 1565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 276) { { - this.state = 1554; + this.state = 1564; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1557; + this.state = 1567; this.match(HiveSqlParser.KW_TABLE); - this.state = 1558; + this.state = 1568; this.tableName(); - this.state = 1564; + this.state = 1574; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1559; + this.state = 1569; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101 || _la === 326)) { @@ -6613,14 +6620,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1560; + this.state = 1570; localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1562; + this.state = 1572; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1561; + this.state = 1571; this.partitionSelectorSpec(); } break; @@ -6652,21 +6659,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1576; this.resource(); - this.state = 1571; + this.state = 1581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1567; + this.state = 1577; this.match(HiveSqlParser.COMMA); - this.state = 1568; + this.state = 1578; this.resource(); } } - this.state = 1573; + this.state = 1583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6692,9 +6699,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1574; + this.state = 1584; localContext._resType = this.resourceType(); - this.state = 1575; + this.state = 1585; localContext._resPath = this.match(HiveSqlParser.StringLiteral); } } @@ -6719,7 +6726,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1577; + this.state = 1587; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 128 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -6751,34 +6758,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1579; + this.state = 1589; this.match(HiveSqlParser.KW_CREATE); - this.state = 1581; + this.state = 1591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1580; + this.state = 1590; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1583; + this.state = 1593; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1584; + this.state = 1594; this.functionNameCreate(); - this.state = 1585; + this.state = 1595; this.match(HiveSqlParser.KW_AS); - this.state = 1586; + this.state = 1596; this.match(HiveSqlParser.StringLiteral); - this.state = 1589; + this.state = 1599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 370) { { - this.state = 1587; + this.state = 1597; this.match(HiveSqlParser.KW_USING); - this.state = 1588; + this.state = 1598; localContext._rList = this.resourceList(); } } @@ -6806,31 +6813,31 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1591; + this.state = 1601; this.match(HiveSqlParser.KW_DROP); - this.state = 1593; + this.state = 1603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1592; + this.state = 1602; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1595; + this.state = 1605; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1597; + this.state = 1607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1596; + this.state = 1606; this.ifExists(); } } - this.state = 1599; + this.state = 1609; this.functionNameForDDL(); } } @@ -6855,9 +6862,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1601; + this.state = 1611; this.match(HiveSqlParser.KW_RELOAD); - this.state = 1602; + this.state = 1612; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); @@ -6889,29 +6896,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1604; + this.state = 1614; this.match(HiveSqlParser.KW_CREATE); - this.state = 1605; + this.state = 1615; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1606; + this.state = 1616; this.match(HiveSqlParser.KW_MACRO); - this.state = 1607; + this.state = 1617; this.match(HiveSqlParser.Identifier); - this.state = 1608; + this.state = 1618; this.match(HiveSqlParser.LPAREN); - this.state = 1610; + this.state = 1620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 1609; + this.state = 1619; this.columnNameTypeList(); } } - this.state = 1612; + this.state = 1622; this.match(HiveSqlParser.RPAREN); - this.state = 1613; + this.state = 1623; this.expression(); } } @@ -6936,23 +6943,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1615; + this.state = 1625; this.match(HiveSqlParser.KW_DROP); - this.state = 1616; + this.state = 1626; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1617; + this.state = 1627; this.match(HiveSqlParser.KW_MACRO); - this.state = 1619; + this.state = 1629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1618; + this.state = 1628; this.ifExists(); } } - this.state = 1621; + this.state = 1631; this.match(HiveSqlParser.Identifier); } } @@ -6977,124 +6984,124 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1623; + this.state = 1633; this.match(HiveSqlParser.KW_CREATE); - this.state = 1624; + this.state = 1634; this.match(HiveSqlParser.KW_INDEX); - this.state = 1625; + this.state = 1635; this.id_(); - this.state = 1626; + this.state = 1636; this.match(HiveSqlParser.KW_ON); - this.state = 1627; + this.state = 1637; this.match(HiveSqlParser.KW_TABLE); - this.state = 1628; + this.state = 1638; this.tableName(); - this.state = 1629; + this.state = 1639; this.columnParenthesesList(); - this.state = 1630; + this.state = 1640; this.match(HiveSqlParser.KW_AS); - this.state = 1631; + this.state = 1641; localContext._indextype = this.match(HiveSqlParser.StringLiteral); - this.state = 1635; + this.state = 1645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1632; + this.state = 1642; this.match(HiveSqlParser.KW_WITH); - this.state = 1633; + this.state = 1643; this.match(HiveSqlParser.KW_DEFERRED); - this.state = 1634; + this.state = 1644; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1639; + this.state = 1649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1637; + this.state = 1647; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1638; + this.state = 1648; this.tableProperties(); } } - this.state = 1644; + this.state = 1654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1641; + this.state = 1651; this.match(HiveSqlParser.KW_IN); - this.state = 1642; + this.state = 1652; this.match(HiveSqlParser.KW_TABLE); - this.state = 1643; + this.state = 1653; this.tableName(); } } - this.state = 1649; + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1646; + this.state = 1656; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1647; + this.state = 1657; this.match(HiveSqlParser.KW_BY); - this.state = 1648; + this.state = 1658; this.columnParenthesesList(); } } - this.state = 1655; + this.state = 1665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291 || _la === 321) { { - this.state = 1652; + this.state = 1662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1651; + this.state = 1661; this.tableRowFormat(); } } - this.state = 1654; + this.state = 1664; this.tableFileFormat(); } } - this.state = 1658; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1657; + this.state = 1667; this.locationPath(); } } - this.state = 1661; + this.state = 1671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1660; + this.state = 1670; this.tablePropertiesPrefixed(); } } - this.state = 1664; + this.state = 1674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1663; + this.state = 1673; this.tableComment(); } } @@ -7122,25 +7129,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1666; + this.state = 1676; this.match(HiveSqlParser.KW_DROP); - this.state = 1667; + this.state = 1677; this.match(HiveSqlParser.KW_INDEX); - this.state = 1669; + this.state = 1679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1668; + this.state = 1678; this.ifExists(); } } - this.state = 1671; + this.state = 1681; this.id_(); - this.state = 1672; + this.state = 1682; this.match(HiveSqlParser.KW_ON); - this.state = 1673; + this.state = 1683; this.tableName(); } } @@ -7165,81 +7172,81 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1675; + this.state = 1685; this.match(HiveSqlParser.KW_CREATE); - this.state = 1678; + this.state = 1688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1676; + this.state = 1686; this.match(HiveSqlParser.KW_OR); - this.state = 1677; + this.state = 1687; this.match(HiveSqlParser.KW_REPLACE); } } - this.state = 1680; + this.state = 1690; this.match(HiveSqlParser.KW_VIEW); - this.state = 1682; + this.state = 1692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1681; + this.state = 1691; this.ifNotExists(); } } - this.state = 1684; + this.state = 1694; localContext._name = this.viewNameCreate(); - this.state = 1689; + this.state = 1699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1685; + this.state = 1695; this.match(HiveSqlParser.LPAREN); - this.state = 1686; + this.state = 1696; this.columnNameCommentList(); - this.state = 1687; + this.state = 1697; this.match(HiveSqlParser.RPAREN); } } - this.state = 1692; + this.state = 1702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1691; + this.state = 1701; this.tableComment(); } } - this.state = 1695; + this.state = 1705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1694; + this.state = 1704; this.viewPartition(); } } - this.state = 1698; + this.state = 1708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1697; + this.state = 1707; this.tablePropertiesPrefixed(); } } - this.state = 1700; + this.state = 1710; this.match(HiveSqlParser.KW_AS); - this.state = 1701; + this.state = 1711; this.selectStatementWithCTE(); } } @@ -7263,35 +7270,35 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1703; + this.state = 1713; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1704; + this.state = 1714; this.match(HiveSqlParser.KW_ON); - this.state = 1710; + this.state = 1720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1705; + this.state = 1715; this.match(HiveSqlParser.LPAREN); - this.state = 1706; + this.state = 1716; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 1707; + this.state = 1717; this.match(HiveSqlParser.KW_SPEC); - this.state = 1708; + this.state = 1718; this.match(HiveSqlParser.LPAREN); - this.state = 1709; + this.state = 1719; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1712; + this.state = 1722; this.match(HiveSqlParser.RPAREN); } } @@ -7313,20 +7320,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ViewOrganizationContext(this.context, this.state); this.enterRule(localContext, 164, HiveSqlParser.RULE_viewOrganization); try { - this.state = 1716; + this.state = 1726; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 1714; + this.state = 1724; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1715; + this.state = 1725; this.viewComplexSpec(); } break; @@ -7354,15 +7361,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1718; + this.state = 1728; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1719; + this.state = 1729; this.match(HiveSqlParser.KW_ON); - this.state = 1720; + this.state = 1730; this.match(HiveSqlParser.LPAREN); - this.state = 1721; + this.state = 1731; this.columnNameList(); - this.state = 1722; + this.state = 1732; this.match(HiveSqlParser.RPAREN); } } @@ -7386,9 +7393,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1724; + this.state = 1734; this.viewDistSpec(); - this.state = 1725; + this.state = 1735; this.viewSortSpec(); } } @@ -7412,15 +7419,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1727; + this.state = 1737; this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 1728; + this.state = 1738; this.match(HiveSqlParser.KW_ON); - this.state = 1729; + this.state = 1739; this.match(HiveSqlParser.LPAREN); - this.state = 1730; + this.state = 1740; localContext._colList = this.columnNameList(); - this.state = 1731; + this.state = 1741; this.match(HiveSqlParser.RPAREN); } } @@ -7444,15 +7451,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1733; + this.state = 1743; this.match(HiveSqlParser.KW_SORTED); - this.state = 1734; + this.state = 1744; this.match(HiveSqlParser.KW_ON); - this.state = 1735; + this.state = 1745; this.match(HiveSqlParser.LPAREN); - this.state = 1736; + this.state = 1746; localContext._colList = this.columnNameList(); - this.state = 1737; + this.state = 1747; this.match(HiveSqlParser.RPAREN); } } @@ -7477,21 +7484,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1739; + this.state = 1749; this.match(HiveSqlParser.KW_DROP); - this.state = 1740; + this.state = 1750; this.match(HiveSqlParser.KW_VIEW); - this.state = 1742; + this.state = 1752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1741; + this.state = 1751; this.ifExists(); } } - this.state = 1744; + this.state = 1754; this.viewName(); } } @@ -7516,107 +7523,107 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1746; + this.state = 1756; this.match(HiveSqlParser.KW_CREATE); - this.state = 1747; + this.state = 1757; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1748; + this.state = 1758; this.match(HiveSqlParser.KW_VIEW); - this.state = 1750; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1749; + this.state = 1759; this.ifNotExists(); } } - this.state = 1752; + this.state = 1762; localContext._name = this.viewNameCreate(); - this.state = 1754; + this.state = 1764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 1753; + this.state = 1763; this.rewriteDisabled(); } } - this.state = 1757; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1756; + this.state = 1766; this.tableComment(); } } - this.state = 1760; + this.state = 1770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1759; + this.state = 1769; this.viewPartition(); } } - this.state = 1763; + this.state = 1773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 1762; + this.state = 1772; this.viewOrganization(); } } - this.state = 1766; + this.state = 1776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1765; + this.state = 1775; this.tableRowFormat(); } } - this.state = 1769; + this.state = 1779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 1768; + this.state = 1778; this.tableFileFormat(); } } - this.state = 1772; + this.state = 1782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1771; + this.state = 1781; this.locationPath(); } } - this.state = 1775; + this.state = 1785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1774; + this.state = 1784; this.tablePropertiesPrefixed(); } } - this.state = 1777; + this.state = 1787; this.match(HiveSqlParser.KW_AS); - this.state = 1778; + this.state = 1788; this.selectStatementWithCTE(); } } @@ -7641,23 +7648,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1780; + this.state = 1790; this.match(HiveSqlParser.KW_DROP); - this.state = 1781; + this.state = 1791; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1782; + this.state = 1792; this.match(HiveSqlParser.KW_VIEW); - this.state = 1784; + this.state = 1794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1783; + this.state = 1793; this.ifExists(); } } - this.state = 1786; + this.state = 1796; this.viewName(); } } @@ -7682,37 +7689,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1788; + this.state = 1798; this.match(HiveSqlParser.KW_CREATE); - this.state = 1789; + this.state = 1799; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1790; + this.state = 1800; this.match(HiveSqlParser.KW_QUERY); - this.state = 1791; + this.state = 1801; localContext._name = this.id_(); - this.state = 1792; + this.state = 1802; this.scheduleSpec(); - this.state = 1794; + this.state = 1804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1793; + this.state = 1803; this.executedAsSpec(); } } - this.state = 1797; + this.state = 1807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 1796; + this.state = 1806; this.enableSpecification(); } } - this.state = 1799; + this.state = 1809; this.definedAsSpec(); } } @@ -7736,13 +7743,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1801; + this.state = 1811; this.match(HiveSqlParser.KW_DROP); - this.state = 1802; + this.state = 1812; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1803; + this.state = 1813; this.match(HiveSqlParser.KW_QUERY); - this.state = 1804; + this.state = 1814; localContext._name = this.id_(); } } @@ -7766,15 +7773,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1806; + this.state = 1816; this.match(HiveSqlParser.KW_ALTER); - this.state = 1807; + this.state = 1817; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1808; + this.state = 1818; this.match(HiveSqlParser.KW_QUERY); - this.state = 1809; + this.state = 1819; localContext._name = this.id_(); - this.state = 1810; + this.state = 1820; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7796,21 +7803,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); this.enterRule(localContext, 186, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 1817; + this.state = 1827; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 1812; + this.state = 1822; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1813; + this.state = 1823; this.executedAsSpec(); } break; @@ -7820,7 +7827,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 1814; + this.state = 1824; this.enableSpecification(); } break; @@ -7828,14 +7835,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 1815; + this.state = 1825; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1816; + this.state = 1826; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -7862,61 +7869,61 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 188, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 1834; + this.state = 1844; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1829; this.match(HiveSqlParser.KW_CRON); - this.state = 1820; + this.state = 1830; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 1821; + this.state = 1831; this.match(HiveSqlParser.KW_EVERY); - this.state = 1823; + this.state = 1833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 431) { { - this.state = 1822; + this.state = 1832; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 1825; + this.state = 1835; localContext._qualifier = this.intervalQualifiers(); - this.state = 1832; + this.state = 1842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 223) { { - this.state = 1829; + this.state = 1839; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 1826; + this.state = 1836; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 1827; + this.state = 1837; this.match(HiveSqlParser.KW_OFFSET); - this.state = 1828; + this.state = 1838; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1831; + this.state = 1841; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -7947,11 +7954,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1836; + this.state = 1846; this.match(HiveSqlParser.KW_EXECUTED); - this.state = 1837; + this.state = 1847; this.match(HiveSqlParser.KW_AS); - this.state = 1838; + this.state = 1848; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -7976,19 +7983,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 1840; + this.state = 1850; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 1843; + this.state = 1853; this.match(HiveSqlParser.KW_AS); - this.state = 1844; + this.state = 1854; this.statement(); } } @@ -8010,7 +8017,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowStmtIdentifierContext(this.context, this.state); this.enterRule(localContext, 194, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 1848; + this.state = 1858; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8255,14 +8262,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 1846; + this.state = 1856; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 1847; + this.state = 1857; this.match(HiveSqlParser.StringLiteral); } break; @@ -8290,9 +8297,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1850; + this.state = 1860; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1851; + this.state = 1861; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8316,9 +8323,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1863; this.match(HiveSqlParser.KW_LIFECYCLE); - this.state = 1854; + this.state = 1864; this.match(HiveSqlParser.Number); } } @@ -8342,29 +8349,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1866; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1857; + this.state = 1867; this.match(HiveSqlParser.KW_BY); - this.state = 1866; + this.state = 1876; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1858; + this.state = 1868; this.match(HiveSqlParser.LPAREN); - this.state = 1861; + this.state = 1871; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1859; + this.state = 1869; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 1860; + this.state = 1870; localContext._opt2 = this.columnNameList(); } break; @@ -8373,18 +8380,18 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SPEC: { - this.state = 1863; + this.state = 1873; this.match(HiveSqlParser.KW_SPEC); - this.state = 1864; + this.state = 1874; this.match(HiveSqlParser.LPAREN); - this.state = 1865; + this.state = 1875; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1868; + this.state = 1878; this.match(HiveSqlParser.RPAREN); } } @@ -8409,21 +8416,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1870; + this.state = 1880; this.columnNameTypeConstraint(); - this.state = 1875; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1871; + this.state = 1881; this.match(HiveSqlParser.COMMA); - this.state = 1872; + this.state = 1882; this.columnNameTypeConstraint(); } } - this.state = 1877; + this.state = 1887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8450,21 +8457,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1878; + this.state = 1888; this.partitionTransformType(); - this.state = 1883; + this.state = 1893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1879; + this.state = 1889; this.match(HiveSqlParser.COMMA); - this.state = 1880; + this.state = 1890; this.partitionTransformType(); } } - this.state = 1885; + this.state = 1895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8489,65 +8496,65 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 206, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 1904; + this.state = 1914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1886; + this.state = 1896; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1891; + this.state = 1901; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: { - this.state = 1887; + this.state = 1897; this.year(); } break; case HiveSqlParser.KW_MONTH: case HiveSqlParser.KW_MONTHS: { - this.state = 1888; + this.state = 1898; this.month(); } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: { - this.state = 1889; + this.state = 1899; this.day(); } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: { - this.state = 1890; + this.state = 1900; this.hour(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1893; + this.state = 1903; this.match(HiveSqlParser.LPAREN); - this.state = 1894; + this.state = 1904; this.columnName(); - this.state = 1895; + this.state = 1905; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1897; + this.state = 1907; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 351)) { this.errorHandler.recoverInline(this); @@ -8556,15 +8563,15 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1898; + this.state = 1908; this.match(HiveSqlParser.LPAREN); - this.state = 1899; + this.state = 1909; localContext._value = this.match(HiveSqlParser.Number); - this.state = 1900; + this.state = 1910; this.match(HiveSqlParser.COMMA); - this.state = 1901; + this.state = 1911; this.columnName(); - this.state = 1902; + this.state = 1912; this.match(HiveSqlParser.RPAREN); } break; @@ -8591,39 +8598,39 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1916; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1907; + this.state = 1917; this.match(HiveSqlParser.KW_BY); - this.state = 1908; + this.state = 1918; this.match(HiveSqlParser.LPAREN); - this.state = 1909; + this.state = 1919; localContext._bucketCols = this.columnNameList(); - this.state = 1910; + this.state = 1920; this.match(HiveSqlParser.RPAREN); - this.state = 1917; + this.state = 1927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1911; + this.state = 1921; this.match(HiveSqlParser.KW_SORTED); - this.state = 1912; + this.state = 1922; this.match(HiveSqlParser.KW_BY); - this.state = 1913; + this.state = 1923; this.match(HiveSqlParser.LPAREN); - this.state = 1914; + this.state = 1924; localContext._sortCols = this.columnNameOrderList(); - this.state = 1915; + this.state = 1925; this.match(HiveSqlParser.RPAREN); } } - this.state = 1919; + this.state = 1929; this.match(HiveSqlParser.KW_INTO); - this.state = 1920; + this.state = 1930; localContext._num = this.match(HiveSqlParser.Number); - this.state = 1921; + this.state = 1931; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8647,30 +8654,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1923; + this.state = 1933; this.match(HiveSqlParser.KW_SKEWED); - this.state = 1924; + this.state = 1934; this.match(HiveSqlParser.KW_BY); - this.state = 1925; + this.state = 1935; this.match(HiveSqlParser.LPAREN); - this.state = 1926; + this.state = 1936; localContext._skewedCols = this.columnNameList(); - this.state = 1927; + this.state = 1937; this.match(HiveSqlParser.RPAREN); - this.state = 1928; + this.state = 1938; this.match(HiveSqlParser.KW_ON); - this.state = 1929; + this.state = 1939; this.match(HiveSqlParser.LPAREN); - this.state = 1930; + this.state = 1940; localContext._skewedValues = this.skewedValueElement(); - this.state = 1931; + this.state = 1941; this.match(HiveSqlParser.RPAREN); - this.state = 1933; + this.state = 1943; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1932; + this.state = 1942; this.storedAsDirs(); } break; @@ -8695,20 +8702,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RowFormatContext(this.context, this.state); this.enterRule(localContext, 212, HiveSqlParser.RULE_rowFormat); try { - this.state = 1937; + this.state = 1947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1935; + this.state = 1945; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1936; + this.state = 1946; this.rowFormatDelimited(); } break; @@ -8734,9 +8741,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1939; + this.state = 1949; this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 1940; + this.state = 1950; this.match(HiveSqlParser.StringLiteral); } } @@ -8760,9 +8767,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1942; + this.state = 1952; this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 1943; + this.state = 1953; this.match(HiveSqlParser.StringLiteral); } } @@ -8786,24 +8793,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1945; + this.state = 1955; this.match(HiveSqlParser.KW_ROW); - this.state = 1946; + this.state = 1956; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1947; + this.state = 1957; this.match(HiveSqlParser.KW_SERDE); - this.state = 1948; + this.state = 1958; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 1952; + this.state = 1962; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1949; + this.state = 1959; this.match(HiveSqlParser.KW_WITH); - this.state = 1950; + this.state = 1960; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 1951; + this.state = 1961; localContext._serdeprops = this.tableProperties(); } break; @@ -8831,58 +8838,58 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1954; + this.state = 1964; this.match(HiveSqlParser.KW_ROW); - this.state = 1955; + this.state = 1965; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1956; + this.state = 1966; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 1958; + this.state = 1968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 1957; + this.state = 1967; this.tableRowFormatFieldIdentifier(); } } - this.state = 1961; + this.state = 1971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1960; + this.state = 1970; this.tableRowFormatCollItemsIdentifier(); } } - this.state = 1964; + this.state = 1974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1963; + this.state = 1973; this.tableRowFormatMapKeysIdentifier(); } break; } - this.state = 1967; + this.state = 1977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 186) { { - this.state = 1966; + this.state = 1976; this.tableRowFormatLinesIdentifier(); } } - this.state = 1970; + this.state = 1980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 1969; + this.state = 1979; this.tableRowNullFormat(); } } @@ -8907,20 +8914,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableRowFormatContext(this.context, this.state); this.enterRule(localContext, 222, HiveSqlParser.RULE_tableRowFormat); try { - this.state = 1974; + this.state = 1984; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1972; + this.state = 1982; this.rowFormatDelimited(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1973; + this.state = 1983; this.rowFormatSerde(); } break; @@ -8946,9 +8953,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1976; + this.state = 1986; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1977; + this.state = 1987; this.tableProperties(); } } @@ -8972,11 +8979,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1979; + this.state = 1989; this.match(HiveSqlParser.LPAREN); - this.state = 1980; + this.state = 1990; this.tablePropertiesList(); - this.state = 1981; + this.state = 1991; this.match(HiveSqlParser.RPAREN); } } @@ -8999,34 +9006,34 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 228, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 1992; + this.state = 2002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1983; + this.state = 1993; this.keyValuePropertyList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1984; + this.state = 1994; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 1989; + this.state = 1999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1985; + this.state = 1995; this.match(HiveSqlParser.COMMA); - this.state = 1986; + this.state = 1996; localContext._key = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1991; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9054,11 +9061,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1994; + this.state = 2004; this.match(HiveSqlParser.LPAREN); - this.state = 1995; + this.state = 2005; this.keyValuePropertyList(); - this.state = 1996; + this.state = 2006; this.match(HiveSqlParser.RPAREN); } } @@ -9083,21 +9090,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 2008; this.keyValueProperty(); - this.state = 2003; + this.state = 2013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1999; + this.state = 2009; this.match(HiveSqlParser.COMMA); - this.state = 2000; + this.state = 2010; this.keyValueProperty(); } } - this.state = 2005; + this.state = 2015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9123,11 +9130,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2006; + this.state = 2016; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2007; + this.state = 2017; this.match(HiveSqlParser.EQUAL); - this.state = 2008; + this.state = 2018; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9152,24 +9159,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2010; + this.state = 2020; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2011; + this.state = 2021; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2012; + this.state = 2022; this.match(HiveSqlParser.KW_BY); - this.state = 2013; + this.state = 2023; localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); - this.state = 2017; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2014; + this.state = 2024; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2015; + this.state = 2025; this.match(HiveSqlParser.KW_BY); - this.state = 2016; + this.state = 2026; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9196,15 +9203,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2019; + this.state = 2029; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2020; + this.state = 2030; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2021; + this.state = 2031; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2022; + this.state = 2032; this.match(HiveSqlParser.KW_BY); - this.state = 2023; + this.state = 2033; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9228,15 +9235,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2025; + this.state = 2035; this.match(HiveSqlParser.KW_MAP); - this.state = 2026; + this.state = 2036; this.match(HiveSqlParser.KW_KEYS); - this.state = 2027; + this.state = 2037; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2028; + this.state = 2038; this.match(HiveSqlParser.KW_BY); - this.state = 2029; + this.state = 2039; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9260,13 +9267,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2031; + this.state = 2041; this.match(HiveSqlParser.KW_LINES); - this.state = 2032; + this.state = 2042; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2033; + this.state = 2043; this.match(HiveSqlParser.KW_BY); - this.state = 2034; + this.state = 2044; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9290,13 +9297,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2036; + this.state = 2046; this.match(HiveSqlParser.KW_NULL); - this.state = 2037; + this.state = 2047; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2038; + this.state = 2048; this.match(HiveSqlParser.KW_AS); - this.state = 2039; + this.state = 2049; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9319,36 +9326,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 246, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2082; + this.state = 2092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2041; + this.state = 2051; this.match(HiveSqlParser.KW_STORED); - this.state = 2042; + this.state = 2052; this.match(HiveSqlParser.KW_AS); - this.state = 2043; + this.state = 2053; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2044; + this.state = 2054; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2045; + this.state = 2055; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 2046; + this.state = 2056; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2051; + this.state = 2061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2047; + this.state = 2057; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2048; + this.state = 2058; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2049; + this.state = 2059; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2050; + this.state = 2060; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9358,36 +9365,36 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2053; + this.state = 2063; this.match(HiveSqlParser.KW_STORED); - this.state = 2054; + this.state = 2064; this.match(HiveSqlParser.KW_BY); - this.state = 2055; + this.state = 2065; localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); - this.state = 2059; + this.state = 2069; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 2056; + this.state = 2066; this.match(HiveSqlParser.KW_WITH); - this.state = 2057; + this.state = 2067; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2058; + this.state = 2068; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2064; + this.state = 2074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2061; + this.state = 2071; this.match(HiveSqlParser.KW_STORED); - this.state = 2062; + this.state = 2072; this.match(HiveSqlParser.KW_AS); - this.state = 2063; + this.state = 2073; localContext._fileformat = this.id_(); } } @@ -9397,36 +9404,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2066; + this.state = 2076; this.match(HiveSqlParser.KW_STORED); - this.state = 2067; + this.state = 2077; this.match(HiveSqlParser.KW_BY); - this.state = 2068; + this.state = 2078; localContext._genericSpec = this.id_(); - this.state = 2072; + this.state = 2082; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2069; + this.state = 2079; this.match(HiveSqlParser.KW_WITH); - this.state = 2070; + this.state = 2080; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2071; + this.state = 2081; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2077; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2074; + this.state = 2084; this.match(HiveSqlParser.KW_STORED); - this.state = 2075; + this.state = 2085; this.match(HiveSqlParser.KW_AS); - this.state = 2076; + this.state = 2086; localContext._fileformat = this.id_(); } } @@ -9436,11 +9443,11 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2079; + this.state = 2089; this.match(HiveSqlParser.KW_STORED); - this.state = 2080; + this.state = 2090; this.match(HiveSqlParser.KW_AS); - this.state = 2081; + this.state = 2091; localContext._genericSpec = this.id_(); } break; @@ -9467,21 +9474,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2094; this.columnNameType(); - this.state = 2089; + this.state = 2099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2085; + this.state = 2095; this.match(HiveSqlParser.COMMA); - this.state = 2086; + this.state = 2096; this.columnNameType(); } } - this.state = 2091; + this.state = 2101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9508,21 +9515,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2092; + this.state = 2102; this.columnNameTypeOrConstraint(); - this.state = 2097; + this.state = 2107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2093; + this.state = 2103; this.match(HiveSqlParser.COMMA); - this.state = 2094; + this.state = 2104; this.columnNameTypeOrConstraint(); } } - this.state = 2099; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9549,21 +9556,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2100; + this.state = 2110; this.columnNameColonType(); - this.state = 2105; + this.state = 2115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2101; + this.state = 2111; this.match(HiveSqlParser.COMMA); - this.state = 2102; + this.state = 2112; this.columnNameColonType(); } } - this.state = 2107; + this.state = 2117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9590,21 +9597,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2108; + this.state = 2118; this.columnName(); - this.state = 2113; + this.state = 2123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2109; + this.state = 2119; this.match(HiveSqlParser.COMMA); - this.state = 2110; + this.state = 2120; this.columnName(); } } - this.state = 2115; + this.state = 2125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9628,20 +9635,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 256, HiveSqlParser.RULE_columnName); try { - this.state = 2118; + this.state = 2128; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2116; + this.state = 2126; this.poolPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2117; + this.state = 2127; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -9669,7 +9676,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2120; + this.state = 2130; this.id_(); } } @@ -9694,47 +9701,47 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2122; - this.columnName(); this.state = 2132; + this.columnName(); + this.state = 2142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 2123; + this.state = 2133; this.match(HiveSqlParser.DOT); - this.state = 2128; + this.state = 2138; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2124; + this.state = 2134; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2125; + this.state = 2135; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2126; + this.state = 2136; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2127; + this.state = 2137; this.id_(); } break; } } } - this.state = 2134; + this.state = 2144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9761,21 +9768,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2135; + this.state = 2145; this.columnNameOrder(); - this.state = 2140; + this.state = 2150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2136; + this.state = 2146; this.match(HiveSqlParser.COMMA); - this.state = 2137; + this.state = 2147; this.columnNameOrder(); } } - this.state = 2142; + this.state = 2152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9801,11 +9808,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2143; + this.state = 2153; this.match(HiveSqlParser.LPAREN); - this.state = 2144; + this.state = 2154; this.columnNameList(); - this.state = 2145; + this.state = 2155; this.match(HiveSqlParser.RPAREN); } } @@ -9828,7 +9835,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 266, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2152; + this.state = 2162; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -9837,14 +9844,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2147; + this.state = 2157; this.enableSpecification(); - this.state = 2149; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217 || _la === 373) { { - this.state = 2148; + this.state = 2158; this.validateSpecification(); } } @@ -9855,7 +9862,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2151; + this.state = 2161; this.enforcedSpecification(); } break; @@ -9881,14 +9888,14 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new EnableSpecificationContext(this.context, this.state); this.enterRule(localContext, 268, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2156; + this.state = 2166; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2154; + this.state = 2164; this.enable(); } break; @@ -9896,7 +9903,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2155; + this.state = 2165; this.disable(); } break; @@ -9925,7 +9932,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2158; + this.state = 2168; _la = this.tokenStream.LA(1); if(!(_la === 217 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -9954,22 +9961,22 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new EnforcedSpecificationContext(this.context, this.state); this.enterRule(localContext, 272, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2163; + this.state = 2173; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2170; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2161; + this.state = 2171; this.match(HiveSqlParser.KW_NOT); - this.state = 2162; + this.state = 2172; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -9998,7 +10005,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2175; _la = this.tokenStream.LA(1); if(!(_la === 214 || _la === 272)) { this.errorHandler.recoverInline(this); @@ -10030,26 +10037,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2169; + this.state = 2179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2167; + this.state = 2177; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2168; + this.state = 2178; localContext._constraintName = this.id_(); } } - this.state = 2171; + this.state = 2181; this.tableLevelConstraint(); - this.state = 2173; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2172; + this.state = 2182; this.constraintOptsCreate(); } } @@ -10076,18 +10083,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2185; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2176; + this.state = 2186; localContext._constraintName = this.id_(); - this.state = 2177; + this.state = 2187; this.tableLevelConstraint(); - this.state = 2179; + this.state = 2189; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2178; + this.state = 2188; this.constraintOptsAlter(); } break; @@ -10112,21 +10119,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableLevelConstraintContext(this.context, this.state); this.enterRule(localContext, 280, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2183; + this.state = 2193; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2181; + this.state = 2191; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2182; + this.state = 2192; this.checkConstraint(); } break; @@ -10154,9 +10161,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2185; + this.state = 2195; this.tableConstraintType(); - this.state = 2186; + this.state = 2196; localContext._pkCols = this.columnParenthesesList(); } } @@ -10180,13 +10187,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2198; this.match(HiveSqlParser.KW_CHECK); - this.state = 2189; + this.state = 2199; this.match(HiveSqlParser.LPAREN); - this.state = 2190; + this.state = 2200; this.expression(); - this.state = 2191; + this.state = 2201; this.match(HiveSqlParser.RPAREN); } } @@ -10211,36 +10218,36 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2195; + this.state = 2205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2193; + this.state = 2203; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2194; + this.state = 2204; localContext._constraintName = this.id_(); } } - this.state = 2197; + this.state = 2207; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2198; + this.state = 2208; this.match(HiveSqlParser.KW_KEY); - this.state = 2199; + this.state = 2209; localContext._fkCols = this.columnParenthesesList(); - this.state = 2200; + this.state = 2210; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2201; + this.state = 2211; localContext._tabName = this.tableName(); - this.state = 2202; + this.state = 2212; localContext._parCols = this.columnParenthesesList(); - this.state = 2204; + this.state = 2214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2203; + this.state = 2213; this.constraintOptsCreate(); } } @@ -10267,28 +10274,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2206; + this.state = 2216; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2207; + this.state = 2217; localContext._constraintName = this.id_(); - this.state = 2208; + this.state = 2218; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2209; + this.state = 2219; this.match(HiveSqlParser.KW_KEY); - this.state = 2210; + this.state = 2220; localContext._fkCols = this.columnParenthesesList(); - this.state = 2211; + this.state = 2221; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2212; + this.state = 2222; localContext._tabName = this.tableName(); - this.state = 2213; + this.state = 2223; localContext._parCols = this.columnParenthesesList(); - this.state = 2215; + this.state = 2225; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 2214; + this.state = 2224; this.constraintOptsAlter(); } break; @@ -10313,7 +10320,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new SkewedValueElementContext(this.context, this.state); this.enterRule(localContext, 290, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2219; + this.state = 2229; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT_DATE: @@ -10333,14 +10340,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2217; + this.state = 2227; this.constantList(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2218; + this.state = 2228; this.skewedColumnValuePairList(); } break; @@ -10369,21 +10376,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2221; + this.state = 2231; this.skewedColumnValuePair(); - this.state = 2226; + this.state = 2236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2222; + this.state = 2232; this.match(HiveSqlParser.COMMA); - this.state = 2223; + this.state = 2233; this.skewedColumnValuePair(); } } - this.state = 2228; + this.state = 2238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10409,11 +10416,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2229; + this.state = 2239; this.match(HiveSqlParser.LPAREN); - this.state = 2230; + this.state = 2240; localContext._colValues = this.constantList(); - this.state = 2231; + this.state = 2241; this.match(HiveSqlParser.RPAREN); } } @@ -10438,21 +10445,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2233; + this.state = 2243; this.constant(); - this.state = 2238; + this.state = 2248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2234; + this.state = 2244; this.match(HiveSqlParser.COMMA); - this.state = 2235; + this.state = 2245; this.constant(); } } - this.state = 2240; + this.state = 2250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10479,7 +10486,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2241; + this.state = 2251; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10511,9 +10518,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2243; + this.state = 2253; this.match(HiveSqlParser.KW_NULLS); - this.state = 2244; + this.state = 2254; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10545,24 +10552,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2246; + this.state = 2256; this.columnName(); - this.state = 2248; + this.state = 2258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2247; + this.state = 2257; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2251; + this.state = 2261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2250; + this.state = 2260; localContext._nullSpec = this.nullOrdering(); } } @@ -10590,21 +10597,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2253; + this.state = 2263; this.columnNameComment(); - this.state = 2258; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2254; + this.state = 2264; this.match(HiveSqlParser.COMMA); - this.state = 2255; + this.state = 2265; this.columnNameComment(); } } - this.state = 2260; + this.state = 2270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10631,16 +10638,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2261; + this.state = 2271; localContext._colName = this.columnNameCreate(); - this.state = 2264; + this.state = 2274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2262; + this.state = 2272; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2263; + this.state = 2273; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10668,38 +10675,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2268; + this.state = 2278; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 2266; + this.state = 2276; this.columnName(); } break; case 2: { - this.state = 2267; + this.state = 2277; this.expression(); } break; } - this.state = 2271; + this.state = 2281; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2270; + this.state = 2280; localContext._orderSpec = this.orderSpecification(); } break; } - this.state = 2274; + this.state = 2284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2273; + this.state = 2283; localContext._nullSpec = this.nullOrdering(); } } @@ -10727,18 +10734,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2276; + this.state = 2286; localContext._colName = this.columnNameCreate(); - this.state = 2277; + this.state = 2287; this.columnType(); - this.state = 2280; + this.state = 2290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2278; + this.state = 2288; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2279; + this.state = 2289; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10763,20 +10770,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); this.enterRule(localContext, 312, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2284; + this.state = 2294; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2282; + this.state = 2292; this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2283; + this.state = 2293; this.columnNameTypeConstraint(); } break; @@ -10800,20 +10807,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableConstraintContext(this.context, this.state); this.enterRule(localContext, 314, HiveSqlParser.RULE_tableConstraint); try { - this.state = 2288; + this.state = 2298; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2286; + this.state = 2296; this.createForeignKey(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2287; + this.state = 2297; this.createConstraint(); } break; @@ -10840,28 +10847,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2290; + this.state = 2300; localContext._colName = this.columnNameCreate(); - this.state = 2291; + this.state = 2301; localContext._colType = this.columnType(); - this.state = 2293; + this.state = 2303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 2292; + this.state = 2302; this.columnConstraint(); } } - this.state = 2297; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2295; + this.state = 2305; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2296; + this.state = 2306; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10886,20 +10893,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnConstraintContext(this.context, this.state); this.enterRule(localContext, 318, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2301; + this.state = 2311; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2299; + this.state = 2309; this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2300; + this.state = 2310; this.colConstraint(); } break; @@ -10926,34 +10933,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2305; + this.state = 2315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2303; + this.state = 2313; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2304; + this.state = 2314; localContext._constraintName = this.id_(); } } - this.state = 2307; + this.state = 2317; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2308; + this.state = 2318; localContext._tabName = this.tableName(); - this.state = 2309; + this.state = 2319; this.match(HiveSqlParser.LPAREN); - this.state = 2310; + this.state = 2320; localContext._colName = this.columnName(); - this.state = 2311; + this.state = 2321; this.match(HiveSqlParser.RPAREN); - this.state = 2313; + this.state = 2323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2312; + this.state = 2322; this.constraintOptsCreate(); } } @@ -10981,26 +10988,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2317; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2315; + this.state = 2325; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2316; + this.state = 2326; localContext._constraintName = this.id_(); } } - this.state = 2319; + this.state = 2329; this.columnConstraintType(); - this.state = 2321; + this.state = 2331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2320; + this.state = 2330; this.constraintOptsCreate(); } } @@ -11025,20 +11032,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterColumnConstraintContext(this.context, this.state); this.enterRule(localContext, 324, HiveSqlParser.RULE_alterColumnConstraint); try { - this.state = 2325; + this.state = 2335; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2323; + this.state = 2333; this.alterForeignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2324; + this.state = 2334; this.alterColConstraint(); } break; @@ -11065,34 +11072,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2329; + this.state = 2339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2327; + this.state = 2337; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2328; + this.state = 2338; localContext._constraintName = this.id_(); } } - this.state = 2331; + this.state = 2341; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2332; + this.state = 2342; localContext._tabName = this.tableName(); - this.state = 2333; + this.state = 2343; this.match(HiveSqlParser.LPAREN); - this.state = 2334; + this.state = 2344; localContext._colName = this.columnName(); - this.state = 2335; + this.state = 2345; this.match(HiveSqlParser.RPAREN); - this.state = 2337; + this.state = 2347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2336; + this.state = 2346; this.constraintOptsAlter(); } break; @@ -11120,26 +11127,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2341; + this.state = 2351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2339; + this.state = 2349; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2340; + this.state = 2350; localContext._constraintName = this.id_(); } } - this.state = 2343; + this.state = 2353; this.columnConstraintType(); - this.state = 2345; + this.state = 2355; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2344; + this.state = 2354; this.constraintOptsAlter(); } break; @@ -11164,31 +11171,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnConstraintTypeContext(this.context, this.state); this.enterRule(localContext, 330, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2353; + this.state = 2363; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2347; + this.state = 2357; this.match(HiveSqlParser.KW_NOT); - this.state = 2348; + this.state = 2358; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2349; + this.state = 2359; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 2350; + this.state = 2360; this.defaultVal(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2351; + this.state = 2361; this.checkConstraint(); } break; @@ -11196,7 +11203,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2352; + this.state = 2362; this.tableConstraintType(); } break; @@ -11222,27 +11229,27 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new DefaultValContext(this.context, this.state); this.enterRule(localContext, 332, HiveSqlParser.RULE_defaultVal); try { - this.state = 2358; + this.state = 2368; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2355; + this.state = 2365; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2356; + this.state = 2366; this.function_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2357; + this.state = 2367; this.castExpression(); } break; @@ -11266,22 +11273,22 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableConstraintTypeContext(this.context, this.state); this.enterRule(localContext, 334, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2363; + this.state = 2373; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2360; + this.state = 2370; this.match(HiveSqlParser.KW_PRIMARY); - this.state = 2361; + this.state = 2371; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2362; + this.state = 2372; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11310,14 +11317,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2365; + this.state = 2375; this.enableValidateSpecification(); - this.state = 2367; + this.state = 2377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2366; + this.state = 2376; this.relySpecification(); } } @@ -11345,14 +11352,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2369; + this.state = 2379; this.enableValidateSpecification(); - this.state = 2371; + this.state = 2381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2370; + this.state = 2380; this.relySpecification(); } } @@ -11380,20 +11387,20 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2373; + this.state = 2383; localContext._colName = this.columnNameCreate(); - this.state = 2374; + this.state = 2384; this.match(HiveSqlParser.COLON); - this.state = 2375; + this.state = 2385; this.columnType(); - this.state = 2378; + this.state = 2388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2376; + this.state = 2386; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2377; + this.state = 2387; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11420,7 +11427,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2380; + this.state = 2390; this.type_(); } } @@ -11445,21 +11452,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2382; + this.state = 2392; this.columnType(); - this.state = 2387; + this.state = 2397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2383; + this.state = 2393; this.match(HiveSqlParser.COMMA); - this.state = 2384; + this.state = 2394; this.columnType(); } } - this.state = 2389; + this.state = 2399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11483,7 +11490,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TypeContext(this.context, this.state); this.enterRule(localContext, 346, HiveSqlParser.RULE_type); try { - this.state = 2395; + this.state = 2405; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11508,35 +11515,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2390; + this.state = 2400; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2391; + this.state = 2401; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2392; + this.state = 2402; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2393; + this.state = 2403; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2394; + this.state = 2404; this.unionType(); } break; @@ -11563,76 +11570,76 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 348, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2434; + this.state = 2444; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2397; + this.state = 2407; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2398; + this.state = 2408; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2399; + this.state = 2409; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2400; + this.state = 2410; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2401; + this.state = 2411; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2402; + this.state = 2412; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2403; + this.state = 2413; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2404; + this.state = 2414; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2405; + this.state = 2415; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2407; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 248) { { - this.state = 2406; + this.state = 2416; this.match(HiveSqlParser.KW_PRECISION); } } @@ -11642,87 +11649,87 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2409; + this.state = 2419; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2410; + this.state = 2420; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2411; + this.state = 2421; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2412; + this.state = 2422; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2413; + this.state = 2423; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 2414; + this.state = 2424; this.match(HiveSqlParser.KW_WITH); - this.state = 2415; + this.state = 2425; this.match(HiveSqlParser.KW_LOCAL); - this.state = 2416; + this.state = 2426; this.match(HiveSqlParser.KW_TIME); - this.state = 2417; + this.state = 2427; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2418; + this.state = 2428; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2419; + this.state = 2429; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2420; + this.state = 2430; this.decimal(); - this.state = 2428; + this.state = 2438; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2421; + this.state = 2431; this.match(HiveSqlParser.LPAREN); - this.state = 2422; + this.state = 2432; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2425; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 2423; + this.state = 2433; this.match(HiveSqlParser.COMMA); - this.state = 2424; + this.state = 2434; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2427; + this.state = 2437; this.match(HiveSqlParser.RPAREN); } break; @@ -11732,7 +11739,7 @@ export class HiveSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2430; + this.state = 2440; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 376)) { this.errorHandler.recoverInline(this); @@ -11741,11 +11748,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2431; + this.state = 2441; this.match(HiveSqlParser.LPAREN); - this.state = 2432; + this.state = 2442; localContext._length = this.match(HiveSqlParser.Number); - this.state = 2433; + this.state = 2443; this.match(HiveSqlParser.RPAREN); } break; @@ -11771,13 +11778,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2436; + this.state = 2446; this.match(HiveSqlParser.KW_ARRAY); - this.state = 2437; + this.state = 2447; this.match(HiveSqlParser.LESSTHAN); - this.state = 2438; + this.state = 2448; this.type_(); - this.state = 2439; + this.state = 2449; this.match(HiveSqlParser.GREATERTHAN); } } @@ -11801,13 +11808,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2441; + this.state = 2451; this.match(HiveSqlParser.KW_STRUCT); - this.state = 2442; + this.state = 2452; this.match(HiveSqlParser.LESSTHAN); - this.state = 2443; + this.state = 2453; this.columnNameColonTypeList(); - this.state = 2444; + this.state = 2454; this.match(HiveSqlParser.GREATERTHAN); } } @@ -11831,17 +11838,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2446; + this.state = 2456; this.match(HiveSqlParser.KW_MAP); - this.state = 2447; + this.state = 2457; this.match(HiveSqlParser.LESSTHAN); - this.state = 2448; + this.state = 2458; localContext._left = this.primitiveType(); - this.state = 2449; + this.state = 2459; this.match(HiveSqlParser.COMMA); - this.state = 2450; + this.state = 2460; localContext._right = this.type_(); - this.state = 2451; + this.state = 2461; this.match(HiveSqlParser.GREATERTHAN); } } @@ -11865,13 +11872,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2453; + this.state = 2463; this.match(HiveSqlParser.KW_UNIONTYPE); - this.state = 2454; + this.state = 2464; this.match(HiveSqlParser.LESSTHAN); - this.state = 2455; + this.state = 2465; this.columnTypeList(); - this.state = 2456; + this.state = 2466; this.match(HiveSqlParser.GREATERTHAN); } } @@ -11896,7 +11903,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2458; + this.state = 2468; _la = this.tokenStream.LA(1); if(!(_la === 112 || _la === 164 || _la === 205 || _la === 356)) { this.errorHandler.recoverInline(this); @@ -11905,12 +11912,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2460; + this.state = 2470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2459; + this.state = 2469; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -11945,17 +11952,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2463; + this.state = 2473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2462; + this.state = 2472; localContext._w = this.withClause(); } } - this.state = 2465; + this.state = 2475; this.queryStatementExpressionBody(); } } @@ -11977,13 +11984,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); this.enterRule(localContext, 362, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2469; + this.state = 2479; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2467; + this.state = 2477; this.fromStatement(); } break; @@ -11995,7 +12002,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2468; + this.state = 2478; this.regularBody(); } break; @@ -12024,23 +12031,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2471; + this.state = 2481; this.match(HiveSqlParser.KW_WITH); - this.state = 2472; + this.state = 2482; this.cteStatement(); - this.state = 2477; + this.state = 2487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2473; + this.state = 2483; this.match(HiveSqlParser.COMMA); - this.state = 2474; + this.state = 2484; this.cteStatement(); } } - this.state = 2479; + this.state = 2489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12067,29 +12074,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2480; + this.state = 2490; this.id_(); - this.state = 2485; + this.state = 2495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2481; + this.state = 2491; this.match(HiveSqlParser.LPAREN); - this.state = 2482; + this.state = 2492; localContext._colAliases = this.columnNameList(); - this.state = 2483; + this.state = 2493; this.match(HiveSqlParser.RPAREN); } } - this.state = 2487; + this.state = 2497; this.match(HiveSqlParser.KW_AS); - this.state = 2488; + this.state = 2498; this.match(HiveSqlParser.LPAREN); - this.state = 2489; + this.state = 2499; this.queryStatementExpression(); - this.state = 2490; + this.state = 2500; this.match(HiveSqlParser.RPAREN); } } @@ -12114,21 +12121,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2492; + this.state = 2502; this.singleFromStatement(); - this.state = 2498; + this.state = 2508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { { - this.state = 2493; + this.state = 2503; localContext._u = this.setOperator(); - this.state = 2494; + this.state = 2504; localContext._r = this.singleFromStatement(); } } - this.state = 2500; + this.state = 2510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12153,125 +12160,125 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 370, HiveSqlParser.RULE_singleFromStatement); let _la: number; try { - this.state = 2572; + this.state = 2582; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new FromInsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2501; + this.state = 2511; this.fromClause(); - this.state = 2502; + this.state = 2512; this.insertClause(); - this.state = 2503; + this.state = 2513; this.selectClause(); - this.state = 2505; + this.state = 2515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2504; + this.state = 2514; this.lateralView(); } } - this.state = 2508; + this.state = 2518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2507; + this.state = 2517; this.whereClause(); } } - this.state = 2511; + this.state = 2521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2510; + this.state = 2520; this.groupByClause(); } } - this.state = 2514; + this.state = 2524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2513; + this.state = 2523; this.havingClause(); } } - this.state = 2517; + this.state = 2527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2516; + this.state = 2526; this.window_clause(); } } - this.state = 2520; + this.state = 2530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2519; + this.state = 2529; this.qualifyClause(); } } - this.state = 2523; + this.state = 2533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2522; + this.state = 2532; this.orderByClause(); } } - this.state = 2526; + this.state = 2536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2525; + this.state = 2535; this.clusterByClause(); } } - this.state = 2529; + this.state = 2539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2528; + this.state = 2538; this.distributeByClause(); } } - this.state = 2532; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2531; + this.state = 2541; this.sortByClause(); } } - this.state = 2535; + this.state = 2545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2534; + this.state = 2544; this.limitClause(); } } @@ -12282,116 +12289,116 @@ export class HiveSqlParser extends SQLParserBase { localContext = new FromSelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2537; + this.state = 2547; this.fromClause(); - this.state = 2538; + this.state = 2548; this.selectClause(); - this.state = 2540; + this.state = 2550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2539; + this.state = 2549; this.lateralView(); } } - this.state = 2543; + this.state = 2553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2542; + this.state = 2552; this.whereClause(); } } - this.state = 2546; + this.state = 2556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2545; + this.state = 2555; this.groupByClause(); } } - this.state = 2549; + this.state = 2559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2548; + this.state = 2558; this.havingClause(); } } - this.state = 2552; + this.state = 2562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2551; + this.state = 2561; this.window_clause(); } } - this.state = 2555; + this.state = 2565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2554; + this.state = 2564; this.qualifyClause(); } } - this.state = 2558; + this.state = 2568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2557; + this.state = 2567; this.orderByClause(); } } - this.state = 2561; + this.state = 2571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2560; + this.state = 2570; this.clusterByClause(); } } - this.state = 2564; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2563; + this.state = 2573; this.distributeByClause(); } } - this.state = 2567; + this.state = 2577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2566; + this.state = 2576; this.sortByClause(); } } - this.state = 2570; + this.state = 2580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2569; + this.state = 2579; this.limitClause(); } } @@ -12418,16 +12425,16 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RegularBodyContext(this.context, this.state); this.enterRule(localContext, 372, HiveSqlParser.RULE_regularBody); try { - this.state = 2578; + this.state = 2588; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2574; + this.state = 2584; (localContext as InsertStmtContext)._i = this.insertClause(); - this.state = 2575; + this.state = 2585; (localContext as InsertStmtContext)._s = this.selectStatement(); } break; @@ -12439,7 +12446,7 @@ export class HiveSqlParser extends SQLParserBase { localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2577; + this.state = 2587; this.selectStatement(); } break; @@ -12466,7 +12473,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 374, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2604; + this.state = 2614; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12474,64 +12481,64 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2590; localContext._s = this.selectClause(); - this.state = 2582; + this.state = 2592; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { - this.state = 2581; + this.state = 2591; localContext._f = this.fromClause(); } break; } - this.state = 2585; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2584; + this.state = 2594; localContext._w = this.whereClause(); } } - this.state = 2588; + this.state = 2598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2587; + this.state = 2597; localContext._g = this.groupByClause(); } } - this.state = 2591; + this.state = 2601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2590; + this.state = 2600; localContext._h = this.havingClause(); } } - this.state = 2594; + this.state = 2604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2593; + this.state = 2603; localContext._win = this.window_clause(); } } - this.state = 2597; + this.state = 2607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2596; + this.state = 2606; localContext._q = this.qualifyClause(); } } @@ -12541,18 +12548,18 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2599; + this.state = 2609; this.match(HiveSqlParser.LPAREN); - this.state = 2600; + this.state = 2610; this.selectStatement(); - this.state = 2601; + this.state = 2611; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2603; + this.state = 2613; this.valuesClause(); } break; @@ -12581,64 +12588,64 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2606; + this.state = 2616; localContext._a = this.atomSelectStatement(); - this.state = 2608; + this.state = 2618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { - this.state = 2607; + this.state = 2617; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2611; + this.state = 2621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2610; + this.state = 2620; localContext._o = this.orderByClause(); } } - this.state = 2614; + this.state = 2624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2613; + this.state = 2623; localContext._c = this.clusterByClause(); } } - this.state = 2617; + this.state = 2627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2616; + this.state = 2626; localContext._d = this.distributeByClause(); } } - this.state = 2620; + this.state = 2630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2619; + this.state = 2629; localContext._sort = this.sortByClause(); } } - this.state = 2623; + this.state = 2633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2622; + this.state = 2632; localContext._l = this.limitClause(); } } @@ -12666,19 +12673,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2628; + this.state = 2638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2625; + this.state = 2635; localContext._u = this.setOperator(); - this.state = 2626; + this.state = 2636; localContext._b = this.atomSelectStatement(); } } - this.state = 2630; + this.state = 2640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 112 || _la === 164 || _la === 205 || _la === 356); @@ -12705,17 +12712,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2633; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2632; + this.state = 2642; localContext._w = this.withClause(); } } - this.state = 2635; + this.state = 2645; this.selectStatement(); } } @@ -12740,23 +12747,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2637; + this.state = 2647; this.match(HiveSqlParser.KW_INSERT); - this.state = 2654; + this.state = 2664; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 2638; + this.state = 2648; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2639; + this.state = 2649; this.destination(); - this.state = 2641; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2640; + this.state = 2650; this.ifNotExists(); } } @@ -12765,30 +12772,30 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_INTO: { - this.state = 2643; + this.state = 2653; this.match(HiveSqlParser.KW_INTO); - this.state = 2645; + this.state = 2655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 2644; + this.state = 2654; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 2647; + this.state = 2657; this.tableOrPartition(); - this.state = 2652; + this.state = 2662; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2648; + this.state = 2658; this.match(HiveSqlParser.LPAREN); - this.state = 2649; + this.state = 2659; localContext._targetCols = this.columnNameList(); - this.state = 2650; + this.state = 2660; this.match(HiveSqlParser.RPAREN); } break; @@ -12819,43 +12826,43 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 384, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 2669; + this.state = 2679; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 2657; + this.state = 2667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2656; + this.state = 2666; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 2659; + this.state = 2669; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 2660; + this.state = 2670; this.match(HiveSqlParser.StringLiteral); - this.state = 2662; + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 2661; + this.state = 2671; this.tableRowFormat(); } } - this.state = 2665; + this.state = 2675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2664; + this.state = 2674; this.tableFileFormat(); } } @@ -12865,9 +12872,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2667; + this.state = 2677; this.match(HiveSqlParser.KW_TABLE); - this.state = 2668; + this.state = 2678; this.tableOrPartition(); } break; @@ -12895,36 +12902,36 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2671; + this.state = 2681; this.match(HiveSqlParser.KW_LIMIT); - this.state = 2680; + this.state = 2690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2674; + this.state = 2684; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2672; + this.state = 2682; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 2673; + this.state = 2683; this.match(HiveSqlParser.COMMA); } break; } - this.state = 2676; + this.state = 2686; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 2677; + this.state = 2687; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2678; + this.state = 2688; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2679; + this.state = 2689; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -12951,11 +12958,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2682; + this.state = 2692; this.columnName(); - this.state = 2683; + this.state = 2693; this.match(HiveSqlParser.EQUAL); - this.state = 2684; + this.state = 2694; this.precedencePlusExpressionOrDefault(); } } @@ -12977,20 +12984,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); this.enterRule(localContext, 390, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 2688; + this.state = 2698; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2686; + this.state = 2696; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2687; + this.state = 2697; this.precedencePlusExpression(); } break; @@ -13017,23 +13024,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2690; + this.state = 2700; this.match(HiveSqlParser.KW_SET); - this.state = 2691; + this.state = 2701; this.columnAssignmentClause(); - this.state = 2696; + this.state = 2706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2692; + this.state = 2702; this.match(HiveSqlParser.COMMA); - this.state = 2693; + this.state = 2703; this.columnAssignmentClause(); } } - this.state = 2698; + this.state = 2708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13058,36 +13065,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 394, HiveSqlParser.RULE_sqlTransactionStatement); let _la: number; try { - this.state = 2722; + this.state = 2732; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2709; this.match(HiveSqlParser.KW_START); - this.state = 2700; + this.state = 2710; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 2709; + this.state = 2719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168 || _la === 261) { { - this.state = 2701; + this.state = 2711; this.transactionMode(); - this.state = 2706; + this.state = 2716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2702; + this.state = 2712; this.match(HiveSqlParser.COMMA); - this.state = 2703; + this.state = 2713; this.transactionMode(); } } - this.state = 2708; + this.state = 2718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13099,14 +13106,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 2711; + this.state = 2721; this.match(HiveSqlParser.KW_COMMIT); - this.state = 2713; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2712; + this.state = 2722; this.match(HiveSqlParser.KW_WORK); } } @@ -13116,14 +13123,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 2715; + this.state = 2725; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 2717; + this.state = 2727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2716; + this.state = 2726; this.match(HiveSqlParser.KW_WORK); } } @@ -13133,11 +13140,11 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2719; + this.state = 2729; this.match(HiveSqlParser.KW_SET); - this.state = 2720; + this.state = 2730; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 2721; + this.state = 2731; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); @@ -13171,26 +13178,26 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 396, HiveSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 2729; + this.state = 2739; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2734; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 2725; + this.state = 2735; this.match(HiveSqlParser.KW_LEVEL); - this.state = 2726; + this.state = 2736; this.match(HiveSqlParser.KW_SNAPSHOT); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 2727; + this.state = 2737; this.match(HiveSqlParser.KW_READ); - this.state = 2728; + this.state = 2738; _la = this.tokenStream.LA(1); if(!(_la === 225 || _la === 391)) { this.errorHandler.recoverInline(this); @@ -13227,40 +13234,40 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2735; + this.state = 2745; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2733; + this.state = 2743; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2731; + this.state = 2741; this.whenMatchedAndClause(); } break; case 2: { - this.state = 2732; + this.state = 2742; this.whenMatchedThenClause(); } break; } } } - this.state = 2737; + this.state = 2747; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); } - this.state = 2739; + this.state = 2749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 2738; + this.state = 2748; this.whenNotMatchedClause(); } } @@ -13288,41 +13295,41 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2741; + this.state = 2751; this.match(HiveSqlParser.KW_WHEN); - this.state = 2742; + this.state = 2752; this.match(HiveSqlParser.KW_NOT); - this.state = 2743; + this.state = 2753; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2746; + this.state = 2756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2744; + this.state = 2754; this.match(HiveSqlParser.KW_AND); - this.state = 2745; + this.state = 2755; this.expression(); } } - this.state = 2748; + this.state = 2758; this.match(HiveSqlParser.KW_THEN); - this.state = 2749; + this.state = 2759; this.match(HiveSqlParser.KW_INSERT); - this.state = 2751; + this.state = 2761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2750; + this.state = 2760; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 2753; + this.state = 2763; this.match(HiveSqlParser.KW_VALUES); - this.state = 2754; + this.state = 2764; this.expressionsInParenthesis(); } } @@ -13346,30 +13353,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2756; + this.state = 2766; this.match(HiveSqlParser.KW_WHEN); - this.state = 2757; + this.state = 2767; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2758; + this.state = 2768; this.match(HiveSqlParser.KW_AND); - this.state = 2759; + this.state = 2769; this.expression(); - this.state = 2760; + this.state = 2770; this.match(HiveSqlParser.KW_THEN); - this.state = 2764; + this.state = 2774; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2761; + this.state = 2771; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2762; + this.state = 2772; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2763; + this.state = 2773; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13398,26 +13405,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2766; + this.state = 2776; this.match(HiveSqlParser.KW_WHEN); - this.state = 2767; + this.state = 2777; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2768; + this.state = 2778; this.match(HiveSqlParser.KW_THEN); - this.state = 2772; + this.state = 2782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2769; + this.state = 2779; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2770; + this.state = 2780; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2771; + this.state = 2781; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13446,9 +13453,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2774; + this.state = 2784; this.match(HiveSqlParser.KW_POOL); - this.state = 2775; + this.state = 2785; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -13472,9 +13479,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2777; + this.state = 2787; this.match(HiveSqlParser.KW_TYPE); - this.state = 2778; + this.state = 2788; localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } @@ -13498,9 +13505,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2780; + this.state = 2790; this.match(HiveSqlParser.KW_STATUS); - this.state = 2781; + this.state = 2791; localContext._status = this.match(HiveSqlParser.StringLiteral); } } @@ -13525,69 +13532,69 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2783; + this.state = 2793; this.match(HiveSqlParser.KW_ALTER); - this.state = 2814; + this.state = 2824; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 2784; + this.state = 2794; this.match(HiveSqlParser.KW_TABLE); - this.state = 2785; + this.state = 2795; this.tableName(); - this.state = 2786; + this.state = 2796; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 2788; + this.state = 2798; this.match(HiveSqlParser.KW_VIEW); - this.state = 2789; + this.state = 2799; this.viewName(); - this.state = 2791; + this.state = 2801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2790; + this.state = 2800; this.match(HiveSqlParser.KW_AS); } } - this.state = 2793; + this.state = 2803; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 2795; + this.state = 2805; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2796; + this.state = 2806; this.match(HiveSqlParser.KW_VIEW); - this.state = 2797; + this.state = 2807; localContext._tableNameTree = this.viewName(); - this.state = 2801; + this.state = 2811; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 2798; + this.state = 2808; localContext._mvRewriteFlag = this.rewriteEnabled(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 2799; + this.state = 2809; localContext._mvRewriteFlag2 = this.rewriteDisabled(); } break; case HiveSqlParser.KW_REBUILD: { - this.state = 2800; + this.state = 2810; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13599,31 +13606,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 2803; + this.state = 2813; this.db_schema(); - this.state = 2804; + this.state = 2814; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 2806; + this.state = 2816; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 2807; + this.state = 2817; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 2808; + this.state = 2818; this.match(HiveSqlParser.KW_INDEX); - this.state = 2809; + this.state = 2819; this.id_(); - this.state = 2810; + this.state = 2820; this.match(HiveSqlParser.KW_ON); - this.state = 2811; + this.state = 2821; this.tableOrPartition(); - this.state = 2812; + this.state = 2822; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13651,72 +13658,72 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 414, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 2905; + this.state = 2915; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2816; + this.state = 2826; this.match(HiveSqlParser.KW_RENAME); - this.state = 2817; + this.state = 2827; this.match(HiveSqlParser.KW_TO); - this.state = 2818; + this.state = 2828; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2819; + this.state = 2829; this.match(HiveSqlParser.KW_RECOVER); - this.state = 2820; + this.state = 2830; this.match(HiveSqlParser.KW_PARTITIONS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2821; + this.state = 2831; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2822; + this.state = 2832; this.match(HiveSqlParser.KW_ADD); - this.state = 2824; + this.state = 2834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2823; + this.state = 2833; this.ifNotExists(); } } - this.state = 2830; + this.state = 2840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2826; + this.state = 2836; this.partitionSpec(); - this.state = 2828; + this.state = 2838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 2827; + this.state = 2837; this.locationPath(); } } } } - this.state = 2832; + this.state = 2842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -13725,19 +13732,19 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2834; + this.state = 2844; this.match(HiveSqlParser.KW_TOUCH); - this.state = 2838; + this.state = 2848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2835; + this.state = 2845; this.partitionSpec(); } } - this.state = 2840; + this.state = 2850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13746,19 +13753,19 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2841; + this.state = 2851; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 2845; + this.state = 2855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2842; + this.state = 2852; this.partitionSpec(); } } - this.state = 2847; + this.state = 2857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13767,19 +13774,19 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2848; + this.state = 2858; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 2852; + this.state = 2862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2849; + this.state = 2859; this.partitionSpec(); } } - this.state = 2854; + this.state = 2864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13788,59 +13795,59 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2855; + this.state = 2865; this.match(HiveSqlParser.KW_SET); - this.state = 2856; + this.state = 2866; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2857; + this.state = 2867; this.tableProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2858; + this.state = 2868; this.match(HiveSqlParser.KW_UNSET); - this.state = 2859; + this.state = 2869; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2861; + this.state = 2871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2860; + this.state = 2870; this.ifExists(); } } - this.state = 2863; + this.state = 2873; this.tableProperties(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2864; + this.state = 2874; this.tableSkewed(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2865; + this.state = 2875; this.match(HiveSqlParser.KW_NOT); - this.state = 2868; + this.state = 2878; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 2866; + this.state = 2876; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 2867; + this.state = 2877; this.storedAsDirs(); } break; @@ -13852,61 +13859,61 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2870; + this.state = 2880; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 2871; + this.state = 2881; this.partitionSpec(); - this.state = 2872; + this.state = 2882; this.match(HiveSqlParser.KW_WITH); - this.state = 2873; + this.state = 2883; this.match(HiveSqlParser.KW_TABLE); - this.state = 2874; + this.state = 2884; localContext._exchangename = this.tableName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2876; + this.state = 2886; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2877; + this.state = 2887; this.match(HiveSqlParser.KW_COLUMN); - this.state = 2878; + this.state = 2888; this.match(HiveSqlParser.LPAREN); - this.state = 2879; + this.state = 2889; this.columnNameType(); - this.state = 2880; + this.state = 2890; this.match(HiveSqlParser.RPAREN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2882; + this.state = 2892; this.match(HiveSqlParser.KW_DROP); - this.state = 2883; + this.state = 2893; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2884; + this.state = 2894; localContext._cName = this.id_(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2885; + this.state = 2895; this.match(HiveSqlParser.KW_ADD); - this.state = 2888; + this.state = 2898; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: { - this.state = 2886; + this.state = 2896; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 2887; + this.state = 2897; this.alterConstraintWithName(); } break; @@ -13916,52 +13923,52 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2891; + this.state = 2901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2890; + this.state = 2900; this.partitionSpec(); } } - this.state = 2893; + this.state = 2903; this.alterTblPartitionStatementSuffix(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2894; + this.state = 2904; this.match(HiveSqlParser.KW_SET); - this.state = 2895; + this.state = 2905; this.match(HiveSqlParser.KW_OWNER); - this.state = 2896; + this.state = 2906; this.principalName(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2897; + this.state = 2907; this.match(HiveSqlParser.KW_SET); - this.state = 2898; + this.state = 2908; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2899; + this.state = 2909; this.match(HiveSqlParser.KW_SPEC); - this.state = 2900; + this.state = 2910; this.match(HiveSqlParser.LPAREN); - this.state = 2901; + this.state = 2911; localContext._spec = this.partitionTransformSpec(); - this.state = 2902; + this.state = 2912; this.match(HiveSqlParser.RPAREN); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2904; + this.state = 2914; this.alterStatementSuffixExecute(); } break; @@ -13986,62 +13993,62 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 416, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); let _la: number; try { - this.state = 3039; + this.state = 3049; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2907; + this.state = 2917; this.match(HiveSqlParser.KW_SET); - this.state = 2908; + this.state = 2918; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 2909; + this.state = 2919; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2910; + this.state = 2920; this.match(HiveSqlParser.KW_SET); - this.state = 2911; + this.state = 2921; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2912; + this.state = 2922; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2913; + this.state = 2923; this.match(HiveSqlParser.KW_CONCATENATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2914; - this.match(HiveSqlParser.KW_SET); this.state = 2924; + this.match(HiveSqlParser.KW_SET); + this.state = 2934; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 2915; + this.state = 2925; this.match(HiveSqlParser.KW_SERDE); - this.state = 2916; + this.state = 2926; localContext._serdeName = this.match(HiveSqlParser.StringLiteral); - this.state = 2920; + this.state = 2930; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2917; + this.state = 2927; this.match(HiveSqlParser.KW_WITH); - this.state = 2918; + this.state = 2928; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2919; + this.state = 2929; this.tableProperties(); } break; @@ -14050,9 +14057,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 2922; + this.state = 2932; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2923; + this.state = 2933; this.tableProperties(); } break; @@ -14064,75 +14071,75 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2926; + this.state = 2936; this.match(HiveSqlParser.KW_UNSET); - this.state = 2927; + this.state = 2937; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2928; + this.state = 2938; this.tableProperties(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2929; + this.state = 2939; this.match(HiveSqlParser.KW_RENAME); - this.state = 2930; + this.state = 2940; this.match(HiveSqlParser.KW_TO); - this.state = 2931; + this.state = 2941; this.partitionSpec(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2932; + this.state = 2942; this.match(HiveSqlParser.KW_INTO); - this.state = 2933; + this.state = 2943; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2934; + this.state = 2944; this.match(HiveSqlParser.KW_BUCKETS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2935; + this.state = 2945; this.match(HiveSqlParser.KW_SET); - this.state = 2936; + this.state = 2946; this.match(HiveSqlParser.KW_SKEWED); - this.state = 2937; + this.state = 2947; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2938; + this.state = 2948; this.match(HiveSqlParser.LPAREN); - this.state = 2939; + this.state = 2949; this.skewedLocationMap(); - this.state = 2944; + this.state = 2954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2940; + this.state = 2950; this.match(HiveSqlParser.COMMA); - this.state = 2941; + this.state = 2951; this.skewedLocationMap(); } } - this.state = 2946; + this.state = 2956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2947; + this.state = 2957; this.match(HiveSqlParser.RPAREN); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2949; + this.state = 2959; this.match(HiveSqlParser.KW_NOT); - this.state = 2950; + this.state = 2960; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -14146,77 +14153,77 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2951; + this.state = 2961; this.tableBuckets(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2952; + this.state = 2962; this.match(HiveSqlParser.KW_COMPACT); - this.state = 2953; + this.state = 2963; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 2956; + this.state = 2966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2954; + this.state = 2964; this.match(HiveSqlParser.KW_AND); - this.state = 2955; + this.state = 2965; this.match(HiveSqlParser.KW_WAIT); } } - this.state = 2962; + this.state = 2972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2958; + this.state = 2968; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2959; + this.state = 2969; this.match(HiveSqlParser.KW_INTO); - this.state = 2960; + this.state = 2970; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2961; + this.state = 2971; this.match(HiveSqlParser.KW_BUCKETS); } } - this.state = 2965; + this.state = 2975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2964; + this.state = 2974; this.orderByClause(); } } - this.state = 2968; + this.state = 2978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 2967; + this.state = 2977; this.compactionPool(); } } - this.state = 2974; + this.state = 2984; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 2970; + this.state = 2980; this.match(HiveSqlParser.KW_WITH); - this.state = 2971; + this.state = 2981; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2972; + this.state = 2982; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2973; + this.state = 2983; this.tableProperties(); } break; @@ -14226,36 +14233,36 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2976; + this.state = 2986; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2977; + this.state = 2987; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 2978; + this.state = 2988; this.match(HiveSqlParser.KW_FOR); - this.state = 2980; + this.state = 2990; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 2979; + this.state = 2989; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 2982; + this.state = 2992; localContext._colName = this.columnName(); - this.state = 2983; + this.state = 2993; this.match(HiveSqlParser.KW_SET); - this.state = 2984; + this.state = 2994; this.tableProperties(); - this.state = 2987; + this.state = 2997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2985; + this.state = 2995; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2986; + this.state = 2996; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -14265,73 +14272,73 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2989; + this.state = 2999; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2990; + this.state = 3000; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 2991; + this.state = 3001; this.match(HiveSqlParser.KW_SET); - this.state = 2992; + this.state = 3002; this.tableProperties(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2993; + this.state = 3003; this.match(HiveSqlParser.KW_CHANGE); - this.state = 2995; + this.state = 3005; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2994; + this.state = 3004; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 2997; + this.state = 3007; localContext._oldName = this.columnName(); - this.state = 2998; + this.state = 3008; localContext._newName = this.columnNameCreate(); - this.state = 2999; + this.state = 3009; this.columnType(); - this.state = 3001; + this.state = 3011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 3000; + this.state = 3010; this.alterColumnConstraint(); } } - this.state = 3005; + this.state = 3015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3003; + this.state = 3013; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3004; + this.state = 3014; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3010; + this.state = 3020; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: { - this.state = 3007; + this.state = 3017; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: { - this.state = 3008; + this.state = 3018; this.match(HiveSqlParser.KW_AFTER); - this.state = 3009; + this.state = 3019; localContext._afterCol = this.id_(); } break; @@ -14387,12 +14394,12 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3013; + this.state = 3023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3012; + this.state = 3022; this.restrictOrCascade(); } } @@ -14402,38 +14409,38 @@ export class HiveSqlParser extends SQLParserBase { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3017; + this.state = 3027; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3015; + this.state = 3025; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3016; + this.state = 3026; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3019; + this.state = 3029; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3020; + this.state = 3030; this.match(HiveSqlParser.LPAREN); - this.state = 3021; + this.state = 3031; this.columnNameTypeList(); - this.state = 3022; + this.state = 3032; this.match(HiveSqlParser.RPAREN); - this.state = 3024; + this.state = 3034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3023; + this.state = 3033; this.restrictOrCascade(); } } @@ -14443,16 +14450,16 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3026; + this.state = 3036; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3027; + this.state = 3037; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3029; + this.state = 3039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3028; + this.state = 3038; this.restrictOrCascade(); } } @@ -14462,22 +14469,22 @@ export class HiveSqlParser extends SQLParserBase { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3031; + this.state = 3041; this.enableSpecification(); - this.state = 3037; + this.state = 3047; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NO_DROP: { { - this.state = 3032; + this.state = 3042; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3034; + this.state = 3044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3033; + this.state = 3043; this.match(HiveSqlParser.KW_CASCADE); } } @@ -14487,7 +14494,7 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_OFFLINE: { - this.state = 3036; + this.state = 3046; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -14517,88 +14524,88 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 418, HiveSqlParser.RULE_alterViewStatementSuffix); let _la: number; try { - this.state = 3067; + this.state = 3077; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3041; + this.state = 3051; this.match(HiveSqlParser.KW_SET); - this.state = 3042; + this.state = 3052; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3043; + this.state = 3053; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3044; + this.state = 3054; this.match(HiveSqlParser.KW_UNSET); - this.state = 3045; + this.state = 3055; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3047; + this.state = 3057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3046; + this.state = 3056; this.ifExists(); } } - this.state = 3049; + this.state = 3059; this.tableProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 3); { - this.state = 3050; + this.state = 3060; this.match(HiveSqlParser.KW_RENAME); - this.state = 3051; + this.state = 3061; this.match(HiveSqlParser.KW_TO); - this.state = 3052; + this.state = 3062; this.tableNameCreate(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 4); { - this.state = 3053; + this.state = 3063; this.match(HiveSqlParser.KW_ADD); - this.state = 3055; + this.state = 3065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3054; + this.state = 3064; this.ifNotExists(); } } - this.state = 3061; + this.state = 3071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3057; + this.state = 3067; this.partitionSpec(); - this.state = 3059; + this.state = 3069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3058; + this.state = 3068; this.locationPath(); } } } } - this.state = 3063; + this.state = 3073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14607,7 +14614,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 5); { - this.state = 3065; + this.state = 3075; this.alterStatementSuffixDropPartitions(); } break; @@ -14619,7 +14626,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 6); { - this.state = 3066; + this.state = 3076; this.selectStatementWithCTE(); } break; @@ -14646,43 +14653,43 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 420, HiveSqlParser.RULE_alterDatabaseStatementSuffix); let _la: number; try { - this.state = 3084; + this.state = 3094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3069; + this.state = 3079; localContext._name = this.dbSchemaName(); - this.state = 3070; + this.state = 3080; this.match(HiveSqlParser.KW_SET); - this.state = 3071; + this.state = 3081; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3072; + this.state = 3082; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3074; + this.state = 3084; localContext._dbName = this.dbSchemaName(); - this.state = 3075; + this.state = 3085; this.match(HiveSqlParser.KW_SET); - this.state = 3076; + this.state = 3086; this.match(HiveSqlParser.KW_OWNER); - this.state = 3077; + this.state = 3087; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3079; + this.state = 3089; localContext._dbName = this.dbSchemaName(); - this.state = 3080; + this.state = 3090; this.match(HiveSqlParser.KW_SET); - this.state = 3081; + this.state = 3091; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 196)) { this.errorHandler.recoverInline(this); @@ -14691,7 +14698,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3082; + this.state = 3092; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } break; @@ -14715,45 +14722,45 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); this.enterRule(localContext, 422, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3101; + this.state = 3111; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3086; + this.state = 3096; localContext._name = this.dbSchemaName(); - this.state = 3087; + this.state = 3097; this.match(HiveSqlParser.KW_SET); - this.state = 3088; + this.state = 3098; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3089; + this.state = 3099; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3091; + this.state = 3101; localContext._dcName = this.dbSchemaName(); - this.state = 3092; + this.state = 3102; this.match(HiveSqlParser.KW_SET); - this.state = 3093; + this.state = 3103; this.match(HiveSqlParser.KW_OWNER); - this.state = 3094; + this.state = 3104; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3096; + this.state = 3106; localContext._dcName = this.dbSchemaName(); - this.state = 3097; + this.state = 3107; this.match(HiveSqlParser.KW_SET); - this.state = 3098; + this.state = 3108; this.match(HiveSqlParser.KW_URL); - this.state = 3099; + this.state = 3109; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } break; @@ -14779,9 +14786,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3103; + this.state = 3113; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3104; + this.state = 3114; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -14806,68 +14813,68 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3106; + this.state = 3116; this.match(HiveSqlParser.KW_DROP); - this.state = 3108; + this.state = 3118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3107; + this.state = 3117; this.ifExists(); } } - this.state = 3110; + this.state = 3120; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3111; + this.state = 3121; this.partitionSelectorSpec(); - this.state = 3117; + this.state = 3127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3112; + this.state = 3122; this.match(HiveSqlParser.COMMA); - this.state = 3113; + this.state = 3123; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3114; + this.state = 3124; this.partitionSelectorSpec(); } } - this.state = 3119; + this.state = 3129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3122; + this.state = 3132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3120; + this.state = 3130; this.match(HiveSqlParser.KW_IGNORE); - this.state = 3121; + this.state = 3131; this.match(HiveSqlParser.KW_PROTECTION); } } - this.state = 3125; + this.state = 3135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 3124; + this.state = 3134; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 3128; + this.state = 3138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3127; + this.state = 3137; this.replicationClause(); } } @@ -14894,7 +14901,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3132; + this.state = 3142; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT_DATE: @@ -14913,22 +14920,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: case HiveSqlParser.CharSetName: { - this.state = 3130; + this.state = 3140; this.constant(); } break; case HiveSqlParser.LPAREN: { - this.state = 3131; + this.state = 3141; this.skewedColumnValuePair(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3134; + this.state = 3144; this.match(HiveSqlParser.EQUAL); - this.state = 3135; + this.state = 3145; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -14953,18 +14960,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3137; - this.match(HiveSqlParser.KW_EXECUTE); this.state = 3147; + this.match(HiveSqlParser.KW_EXECUTE); + this.state = 3157; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3138; + this.state = 3148; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3139; + this.state = 3149; this.match(HiveSqlParser.LPAREN); - this.state = 3140; + this.state = 3150; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { @@ -14978,28 +14985,28 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3141; + this.state = 3151; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3142; + this.state = 3152; this.match(HiveSqlParser.LPAREN); - this.state = 3143; + this.state = 3153; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3144; + this.state = 3154; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3145; + this.state = 3155; this.match(HiveSqlParser.LPAREN); - this.state = 3146; + this.state = 3156; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3149; + this.state = 3159; this.match(HiveSqlParser.RPAREN); } } @@ -15022,36 +15029,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 432, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3164; + this.state = 3174; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3151; + this.state = 3161; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3152; + this.state = 3162; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3153; + this.state = 3163; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3154; + this.state = 3164; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3155; + this.state = 3165; this.match(HiveSqlParser.KW_SERDE); - this.state = 3156; + this.state = 3166; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - this.state = 3161; + this.state = 3171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3157; + this.state = 3167; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3158; + this.state = 3168; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3159; + this.state = 3169; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3160; + this.state = 3170; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -15061,7 +15068,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3163; + this.state = 3173; localContext._genericSpec = this.id_(); } break; @@ -15085,37 +15092,37 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new LikeTableOrFileContext(this.context, this.state); this.enterRule(localContext, 434, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3175; + this.state = 3185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3166; + this.state = 3176; this.match(HiveSqlParser.KW_LIKE); - this.state = 3167; + this.state = 3177; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3168; + this.state = 3178; this.match(HiveSqlParser.KW_LIKE); - this.state = 3169; + this.state = 3179; this.match(HiveSqlParser.KW_FILE); - this.state = 3170; + this.state = 3180; localContext._format = this.id_(); - this.state = 3171; + this.state = 3181; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3173; + this.state = 3183; this.match(HiveSqlParser.KW_LIKE); - this.state = 3174; + this.state = 3184; localContext._likeName = this.tableName(); } break; @@ -15140,121 +15147,121 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 436, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3312; + this.state = 3322; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3177; + this.state = 3187; this.match(HiveSqlParser.KW_CREATE); - this.state = 3179; + this.state = 3189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 3178; + this.state = 3188; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 3182; + this.state = 3192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 345) { { - this.state = 3181; + this.state = 3191; localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); } } - this.state = 3185; + this.state = 3195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 3184; + this.state = 3194; localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 3187; + this.state = 3197; this.match(HiveSqlParser.KW_TABLE); - this.state = 3189; + this.state = 3199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3188; + this.state = 3198; this.ifNotExists(); } } - this.state = 3191; + this.state = 3201; localContext._name = this.tableNameCreate(); - this.state = 3248; + this.state = 3258; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3192; + this.state = 3202; this.likeTableOrFile(); - this.state = 3194; + this.state = 3204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3193; + this.state = 3203; this.createTablePartitionSpec(); } } - this.state = 3197; + this.state = 3207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3196; + this.state = 3206; this.tableRowFormat(); } } - this.state = 3200; + this.state = 3210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3199; + this.state = 3209; this.tableFileFormat(); } } - this.state = 3203; + this.state = 3213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3202; + this.state = 3212; this.locationPath(); } } - this.state = 3206; + this.state = 3216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3205; + this.state = 3215; this.tablePropertiesPrefixed(); } } - this.state = 3209; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3208; + this.state = 3218; this.tableLifecycle(); } } @@ -15318,118 +15325,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3215; + this.state = 3225; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3211; + this.state = 3221; this.match(HiveSqlParser.LPAREN); - this.state = 3212; + this.state = 3222; this.columnNameTypeOrConstraintList(); - this.state = 3213; + this.state = 3223; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3218; + this.state = 3228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3217; + this.state = 3227; this.tableComment(); } } - this.state = 3221; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3220; + this.state = 3230; this.createTablePartitionSpec(); } } - this.state = 3224; + this.state = 3234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3223; + this.state = 3233; this.tableBuckets(); } } - this.state = 3227; + this.state = 3237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3226; + this.state = 3236; this.tableSkewed(); } } - this.state = 3230; + this.state = 3240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3229; + this.state = 3239; this.tableRowFormat(); } } - this.state = 3233; + this.state = 3243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3232; + this.state = 3242; this.tableFileFormat(); } } - this.state = 3236; + this.state = 3246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3235; + this.state = 3245; this.locationPath(); } } - this.state = 3239; + this.state = 3249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3238; + this.state = 3248; this.tablePropertiesPrefixed(); } } - this.state = 3242; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3241; + this.state = 3251; this.tableLifecycle(); } } - this.state = 3246; + this.state = 3256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3244; + this.state = 3254; this.match(HiveSqlParser.KW_AS); - this.state = 3245; + this.state = 3255; this.selectStatementWithCTE(); } } @@ -15444,77 +15451,77 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3250; + this.state = 3260; this.match(HiveSqlParser.KW_CREATE); - this.state = 3251; + this.state = 3261; localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3252; + this.state = 3262; this.match(HiveSqlParser.KW_TABLE); - this.state = 3254; + this.state = 3264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3253; + this.state = 3263; this.ifNotExists(); } } - this.state = 3256; + this.state = 3266; localContext._name = this.tableNameCreate(); - this.state = 3310; + this.state = 3320; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3257; + this.state = 3267; this.likeTableOrFile(); - this.state = 3259; + this.state = 3269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3258; + this.state = 3268; this.tableRowFormat(); } } - this.state = 3262; + this.state = 3272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3261; + this.state = 3271; this.tableFileFormat(); } } - this.state = 3265; + this.state = 3275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3264; + this.state = 3274; this.locationPath(); } } - this.state = 3268; + this.state = 3278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3267; + this.state = 3277; this.tablePropertiesPrefixed(); } } - this.state = 3271; + this.state = 3281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3270; + this.state = 3280; this.tableLifecycle(); } } @@ -15578,118 +15585,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3277; + this.state = 3287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3273; + this.state = 3283; this.match(HiveSqlParser.LPAREN); - this.state = 3274; + this.state = 3284; this.columnNameTypeOrConstraintList(); - this.state = 3275; + this.state = 3285; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3280; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3279; + this.state = 3289; this.tableComment(); } } - this.state = 3283; + this.state = 3293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3282; + this.state = 3292; this.createTablePartitionSpec(); } } - this.state = 3286; + this.state = 3296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3285; + this.state = 3295; this.tableBuckets(); } } - this.state = 3289; + this.state = 3299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3288; + this.state = 3298; this.tableSkewed(); } } - this.state = 3292; + this.state = 3302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3291; + this.state = 3301; this.tableRowFormat(); } } - this.state = 3295; + this.state = 3305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3294; + this.state = 3304; this.tableFileFormat(); } } - this.state = 3298; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3297; + this.state = 3307; this.locationPath(); } } - this.state = 3301; + this.state = 3311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3300; + this.state = 3310; this.tablePropertiesPrefixed(); } } - this.state = 3304; + this.state = 3314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3303; + this.state = 3313; this.tableLifecycle(); } } - this.state = 3308; + this.state = 3318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3306; + this.state = 3316; this.match(HiveSqlParser.KW_AS); - this.state = 3307; + this.state = 3317; this.selectStatementWithCTE(); } } @@ -15724,68 +15731,68 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3314; + this.state = 3324; this.match(HiveSqlParser.KW_CREATE); - this.state = 3315; + this.state = 3325; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3317; + this.state = 3327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3316; + this.state = 3326; this.ifNotExists(); } } - this.state = 3319; + this.state = 3329; localContext._name = this.id_(); - this.state = 3322; + this.state = 3332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 3320; + this.state = 3330; this.match(HiveSqlParser.KW_TYPE); - this.state = 3321; + this.state = 3331; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3326; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3324; + this.state = 3334; this.match(HiveSqlParser.KW_URL); - this.state = 3325; + this.state = 3335; localContext._url = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3330; + this.state = 3340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3328; + this.state = 3338; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3329; + this.state = 3339; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3335; + this.state = 3345; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3332; + this.state = 3342; this.match(HiveSqlParser.KW_WITH); - this.state = 3333; + this.state = 3343; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3334; + this.state = 3344; localContext._dcprops = this.keyValueProperties(); } break; @@ -15813,21 +15820,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3337; + this.state = 3347; this.match(HiveSqlParser.KW_DROP); - this.state = 3338; + this.state = 3348; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3340; + this.state = 3350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3339; + this.state = 3349; this.ifExists(); } } - this.state = 3342; + this.state = 3352; this.id_(); } } @@ -15852,23 +15859,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3349; + this.state = 3359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { { - this.state = 3344; + this.state = 3354; this.id_(); - this.state = 3345; + this.state = 3355; this.match(HiveSqlParser.DOT); } } - this.state = 3351; + this.state = 3361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3352; + this.state = 3362; this.match(HiveSqlParser.STAR); } } @@ -15893,21 +15900,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3354; + this.state = 3364; this.expression(); - this.state = 3359; + this.state = 3369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3355; + this.state = 3365; this.match(HiveSqlParser.COMMA); - this.state = 3356; + this.state = 3366; this.expression(); } } - this.state = 3361; + this.state = 3371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15934,21 +15941,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3362; + this.state = 3372; this.id_(); - this.state = 3367; + this.state = 3377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3363; + this.state = 3373; this.match(HiveSqlParser.COMMA); - this.state = 3364; + this.state = 3374; this.id_(); } } - this.state = 3369; + this.state = 3379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15974,9 +15981,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3370; + this.state = 3380; this.match(HiveSqlParser.KW_FROM); - this.state = 3371; + this.state = 3381; this.fromSource(); } } @@ -15999,29 +16006,29 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 450, HiveSqlParser.RULE_fromSource); let _la: number; try { - this.state = 3382; + this.state = 3392; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNIQUEJOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3373; + this.state = 3383; this.match(HiveSqlParser.KW_UNIQUEJOIN); - this.state = 3374; + this.state = 3384; this.uniqueJoinSource(); - this.state = 3377; + this.state = 3387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3375; + this.state = 3385; this.match(HiveSqlParser.COMMA); - this.state = 3376; + this.state = 3386; this.uniqueJoinSource(); } } - this.state = 3379; + this.state = 3389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -16271,7 +16278,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 3381; + this.state = 3391; this.joinSource(); } break; @@ -16298,27 +16305,27 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 452, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; - this.state = 3416; + this.state = 3426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3384; + this.state = 3394; this.tableSource(); - this.state = 3388; + this.state = 3398; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3385; + this.state = 3395; this.lateralView(); } } } - this.state = 3390; + this.state = 3400; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); } @@ -16327,21 +16334,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3391; + this.state = 3401; this.virtualTableSource(); - this.state = 3395; + this.state = 3405; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3392; + this.state = 3402; this.lateralView(); } } } - this.state = 3397; + this.state = 3407; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); } @@ -16350,21 +16357,21 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3398; + this.state = 3408; this.subQuerySource(); - this.state = 3402; + this.state = 3412; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3399; + this.state = 3409; this.lateralView(); } } } - this.state = 3404; + this.state = 3414; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); } @@ -16373,21 +16380,21 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3405; + this.state = 3415; this.partitionedTableFunction(); - this.state = 3409; + this.state = 3419; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3406; + this.state = 3416; this.lateralView(); } } } - this.state = 3411; + this.state = 3421; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); } @@ -16396,11 +16403,11 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3412; + this.state = 3422; this.match(HiveSqlParser.LPAREN); - this.state = 3413; + this.state = 3423; this.joinSource(); - this.state = 3414; + this.state = 3424; this.match(HiveSqlParser.RPAREN); } break; @@ -16427,34 +16434,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3418; + this.state = 3428; this.atomjoinSource(); - this.state = 3429; + this.state = 3439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 285 || _la === 397) { { { - this.state = 3419; + this.state = 3429; this.joinToken(); - this.state = 3420; + this.state = 3430; this.joinSourcePart(); - this.state = 3425; + this.state = 3435; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ON: { - this.state = 3421; + this.state = 3431; this.match(HiveSqlParser.KW_ON); - this.state = 3422; + this.state = 3432; this.expression(); } break; case HiveSqlParser.KW_USING: { - this.state = 3423; + this.state = 3433; this.match(HiveSqlParser.KW_USING); - this.state = 3424; + this.state = 3434; this.columnParenthesesList(); } break; @@ -16532,7 +16539,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 3431; + this.state = 3441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16559,47 +16566,47 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3436; + this.state = 3446; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3432; + this.state = 3442; this.tableSource(); } break; case 2: { - this.state = 3433; + this.state = 3443; this.virtualTableSource(); } break; case 3: { - this.state = 3434; + this.state = 3444; this.subQuerySource(); } break; case 4: { - this.state = 3435; + this.state = 3445; this.partitionedTableFunction(); } break; } - this.state = 3441; + this.state = 3451; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 442, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3438; + this.state = 3448; this.lateralView(); } } } - this.state = 3443; + this.state = 3453; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 442, this.context); } @@ -16626,53 +16633,53 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3445; + this.state = 3455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 250) { { - this.state = 3444; + this.state = 3454; this.match(HiveSqlParser.KW_PRESERVE); } } - this.state = 3447; + this.state = 3457; localContext._tabname = this.tableOrView(); - this.state = 3449; + this.state = 3459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3448; + this.state = 3458; localContext._ts = this.tableSample(); } } - this.state = 3455; + this.state = 3465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3452; + this.state = 3462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3451; + this.state = 3461; this.match(HiveSqlParser.KW_AS); } } - this.state = 3454; + this.state = 3464; localContext._alias = this.id_(); } } - this.state = 3457; + this.state = 3467; this.match(HiveSqlParser.LPAREN); - this.state = 3458; + this.state = 3468; this.expressionList(); - this.state = 3459; + this.state = 3469; this.match(HiveSqlParser.RPAREN); } } @@ -16695,13 +16702,13 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 460, HiveSqlParser.RULE_joinToken); let _la: number; try { - this.state = 3475; + this.state = 3485; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3471; this.match(HiveSqlParser.COMMA); } break; @@ -16713,25 +16720,25 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 2); { - this.state = 3472; + this.state = 3482; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INNER: { - this.state = 3462; + this.state = 3472; this.match(HiveSqlParser.KW_INNER); } break; case HiveSqlParser.KW_CROSS: { - this.state = 3463; + this.state = 3473; this.match(HiveSqlParser.KW_CROSS); } break; case HiveSqlParser.KW_FULL: case HiveSqlParser.KW_RIGHT: { - this.state = 3464; + this.state = 3474; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 285)) { this.errorHandler.recoverInline(this); @@ -16740,12 +16747,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3466; + this.state = 3476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 3465; + this.state = 3475; this.match(HiveSqlParser.KW_OUTER); } } @@ -16754,14 +16761,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_LEFT: { - this.state = 3468; + this.state = 3478; this.match(HiveSqlParser.KW_LEFT); - this.state = 3470; + this.state = 3480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 231 || _la === 300) { { - this.state = 3469; + this.state = 3479; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 231 || _la === 300)) { this.errorHandler.recoverInline(this); @@ -16780,7 +16787,7 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3474; + this.state = 3484; this.match(HiveSqlParser.KW_JOIN); } break; @@ -16808,46 +16815,46 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3534; + this.state = 3544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3477; + this.state = 3487; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3478; + this.state = 3488; this.match(HiveSqlParser.KW_VIEW); - this.state = 3479; + this.state = 3489; this.match(HiveSqlParser.KW_OUTER); - this.state = 3480; + this.state = 3490; this.function_(); - this.state = 3481; - localContext._alias = this.tableAlias(); this.state = 3491; + localContext._alias = this.tableAlias(); + this.state = 3501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3482; + this.state = 3492; this.match(HiveSqlParser.KW_AS); - this.state = 3483; + this.state = 3493; this.id_(); - this.state = 3488; + this.state = 3498; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3484; + this.state = 3494; this.match(HiveSqlParser.COMMA); - this.state = 3485; + this.state = 3495; this.id_(); } } } - this.state = 3490; + this.state = 3500; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); } @@ -16859,53 +16866,53 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3494; + this.state = 3504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3493; + this.state = 3503; this.match(HiveSqlParser.COMMA); } } - this.state = 3496; + this.state = 3506; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3532; + this.state = 3542; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VIEW: { - this.state = 3497; + this.state = 3507; this.match(HiveSqlParser.KW_VIEW); - this.state = 3498; + this.state = 3508; this.function_(); - this.state = 3499; - localContext._alias = this.tableAlias(); this.state = 3509; + localContext._alias = this.tableAlias(); + this.state = 3519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3500; + this.state = 3510; this.match(HiveSqlParser.KW_AS); - this.state = 3501; + this.state = 3511; this.id_(); - this.state = 3506; + this.state = 3516; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3502; + this.state = 3512; this.match(HiveSqlParser.COMMA); - this.state = 3503; + this.state = 3513; this.id_(); } } } - this.state = 3508; + this.state = 3518; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); } @@ -16916,52 +16923,52 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_TABLE: { - this.state = 3511; + this.state = 3521; this.match(HiveSqlParser.KW_TABLE); - this.state = 3512; + this.state = 3522; this.match(HiveSqlParser.LPAREN); - this.state = 3513; + this.state = 3523; this.valuesClause(); - this.state = 3514; + this.state = 3524; this.match(HiveSqlParser.RPAREN); - this.state = 3516; + this.state = 3526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3515; + this.state = 3525; this.match(HiveSqlParser.KW_AS); } } - this.state = 3518; + this.state = 3528; localContext._alias = this.tableAlias(); - this.state = 3530; + this.state = 3540; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3519; + this.state = 3529; this.match(HiveSqlParser.LPAREN); - this.state = 3520; + this.state = 3530; this.id_(); - this.state = 3525; + this.state = 3535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3521; + this.state = 3531; this.match(HiveSqlParser.COMMA); - this.state = 3522; + this.state = 3532; this.id_(); } } - this.state = 3527; + this.state = 3537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3528; + this.state = 3538; this.match(HiveSqlParser.RPAREN); } break; @@ -16995,7 +17002,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3536; + this.state = 3546; this.id_(); } } @@ -17018,75 +17025,75 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 466, HiveSqlParser.RULE_tableSample); let _la: number; try { - this.state = 3565; + this.state = 3575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3538; + this.state = 3548; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3539; + this.state = 3549; this.match(HiveSqlParser.LPAREN); - this.state = 3540; + this.state = 3550; this.match(HiveSqlParser.KW_BUCKET); - this.state = 3541; + this.state = 3551; localContext._numerator = this.match(HiveSqlParser.Number); - this.state = 3542; + this.state = 3552; this.match(HiveSqlParser.KW_OUT); - this.state = 3543; + this.state = 3553; this.match(HiveSqlParser.KW_OF); - this.state = 3544; - localContext._denominator = this.match(HiveSqlParser.Number); this.state = 3554; + localContext._denominator = this.match(HiveSqlParser.Number); + this.state = 3564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 3545; + this.state = 3555; this.match(HiveSqlParser.KW_ON); - this.state = 3546; + this.state = 3556; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); - this.state = 3551; + this.state = 3561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3547; + this.state = 3557; this.match(HiveSqlParser.COMMA); - this.state = 3548; + this.state = 3558; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); } } - this.state = 3553; + this.state = 3563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3556; + this.state = 3566; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3557; + this.state = 3567; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3558; + this.state = 3568; this.match(HiveSqlParser.LPAREN); - this.state = 3562; + this.state = 3572; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Number: { - this.state = 3559; + this.state = 3569; this.match(HiveSqlParser.Number); - this.state = 3560; + this.state = 3570; _la = this.tokenStream.LA(1); if(!(_la === 241 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -17099,14 +17106,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.ByteLengthLiteral: { - this.state = 3561; + this.state = 3571; this.match(HiveSqlParser.ByteLengthLiteral); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3564; + this.state = 3574; this.match(HiveSqlParser.RPAREN); } break; @@ -17133,54 +17140,54 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3567; + this.state = 3577; localContext._tabname = this.tableOrView(); - this.state = 3569; + this.state = 3579; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3568; + this.state = 3578; localContext._props = this.tableProperties(); } break; } - this.state = 3572; + this.state = 3582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3571; + this.state = 3581; localContext._ts = this.tableSample(); } } - this.state = 3575; + this.state = 3585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3574; + this.state = 3584; localContext._asOf = this.asOfClause(); } } - this.state = 3581; + this.state = 3591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3578; + this.state = 3588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3577; + this.state = 3587; this.match(HiveSqlParser.KW_AS); } } - this.state = 3580; + this.state = 3590; localContext._alias = this.id_(); } break; @@ -17207,34 +17214,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3583; - this.match(HiveSqlParser.KW_FOR); this.state = 3593; + this.match(HiveSqlParser.KW_FOR); + this.state = 3603; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SYSTEM_TIME: { - this.state = 3584; + this.state = 3594; this.match(HiveSqlParser.KW_SYSTEM_TIME); - this.state = 3585; + this.state = 3595; this.match(HiveSqlParser.KW_AS); - this.state = 3586; + this.state = 3596; this.match(HiveSqlParser.KW_OF); - this.state = 3587; + this.state = 3597; localContext._asOfTime = this.expression(); } break; case HiveSqlParser.KW_FOR: { - this.state = 3588; + this.state = 3598; this.match(HiveSqlParser.KW_FOR); - this.state = 3589; + this.state = 3599; this.match(HiveSqlParser.KW_SYSTEM_VERSION); - this.state = 3590; + this.state = 3600; this.match(HiveSqlParser.KW_AS); - this.state = 3591; + this.state = 3601; this.match(HiveSqlParser.KW_OF); - this.state = 3592; + this.state = 3602; localContext._asOfVersion = this.match(HiveSqlParser.Number); } break; @@ -17263,7 +17270,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3605; this.id_(); } } @@ -17287,7 +17294,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3597; + this.state = 3607; this.id_(); } } @@ -17309,20 +17316,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableOrViewContext(this.context, this.state); this.enterRule(localContext, 476, HiveSqlParser.RULE_tableOrView); try { - this.state = 3601; + this.state = 3611; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3599; + this.state = 3609; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3600; + this.state = 3610; this.viewName(); } break; @@ -17346,26 +17353,26 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableNameContext(this.context, this.state); this.enterRule(localContext, 478, HiveSqlParser.RULE_tableName); try { - this.state = 3611; + this.state = 3621; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3603; + this.state = 3613; localContext._db = this.id_(); - this.state = 3604; + this.state = 3614; this.match(HiveSqlParser.DOT); - this.state = 3605; + this.state = 3615; localContext._tab = this.id_(); - this.state = 3608; + this.state = 3618; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3606; + this.state = 3616; this.match(HiveSqlParser.DOT); - this.state = 3607; + this.state = 3617; localContext._meta = this.id_(); } break; @@ -17375,7 +17382,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3610; + this.state = 3620; localContext._tab = this.id_(); } break; @@ -17400,26 +17407,26 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 480, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { - this.state = 3621; + this.state = 3631; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3613; + this.state = 3623; localContext._db = this.id_(); - this.state = 3614; + this.state = 3624; this.match(HiveSqlParser.DOT); - this.state = 3615; + this.state = 3625; localContext._tab = this.id_(); - this.state = 3618; + this.state = 3628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 3616; + this.state = 3626; this.match(HiveSqlParser.DOT); - this.state = 3617; + this.state = 3627; localContext._meta = this.id_(); } } @@ -17429,7 +17436,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3620; + this.state = 3630; localContext._tab = this.id_(); } break; @@ -17455,19 +17462,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3626; + this.state = 3636; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: { - this.state = 3623; + this.state = 3633; localContext._db = this.id_(); - this.state = 3624; + this.state = 3634; this.match(HiveSqlParser.DOT); } break; } - this.state = 3628; + this.state = 3638; localContext._view = this.id_(); } } @@ -17491,19 +17498,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3633; + this.state = 3643; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 3630; + this.state = 3640; localContext._db = this.id_(); - this.state = 3631; + this.state = 3641; this.match(HiveSqlParser.DOT); } break; } - this.state = 3635; + this.state = 3645; localContext._view = this.id_(); } } @@ -17528,24 +17535,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3637; + this.state = 3647; this.match(HiveSqlParser.LPAREN); - this.state = 3638; + this.state = 3648; this.queryStatementExpression(); - this.state = 3639; + this.state = 3649; this.match(HiveSqlParser.RPAREN); - this.state = 3641; + this.state = 3651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3640; + this.state = 3650; this.match(HiveSqlParser.KW_AS); } } - this.state = 3643; - this.id_(); + this.state = 3653; + localContext._alias = this.id_(); } } catch (re) { @@ -17567,24 +17574,24 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 488, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { - this.state = 3658; + this.state = 3668; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 3645; + this.state = 3655; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3646; + this.state = 3656; this.match(HiveSqlParser.KW_BY); - this.state = 3647; + this.state = 3657; this.expressions(); - this.state = 3649; + this.state = 3659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 3648; + this.state = 3658; this.orderByClause(); } } @@ -17594,21 +17601,21 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3651; + this.state = 3661; this.orderByClause(); } break; case HiveSqlParser.KW_DISTRIBUTE: this.enterOuterAlt(localContext, 3); { - this.state = 3652; + this.state = 3662; this.distributeByClause(); - this.state = 3654; + this.state = 3664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 3653; + this.state = 3663; this.sortByClause(); } } @@ -17618,14 +17625,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SORT: this.enterOuterAlt(localContext, 4); { - this.state = 3656; + this.state = 3666; this.sortByClause(); } break; case HiveSqlParser.KW_CLUSTER: this.enterOuterAlt(localContext, 5); { - this.state = 3657; + this.state = 3667; this.clusterByClause(); } break; @@ -17651,27 +17658,27 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); this.enterRule(localContext, 490, HiveSqlParser.RULE_partitionTableFunctionSource); try { - this.state = 3663; + this.state = 3673; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 482, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3660; + this.state = 3670; this.subQuerySource(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3661; + this.state = 3671; this.tableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3662; + this.state = 3672; this.partitionedTableFunction(); } break; @@ -17694,78 +17701,102 @@ export class HiveSqlParser extends SQLParserBase { public partitionedTableFunction(): PartitionedTableFunctionContext { let localContext = new PartitionedTableFunctionContext(this.context, this.state); this.enterRule(localContext, 492, HiveSqlParser.RULE_partitionedTableFunction); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3675; + this.atomPartitionedTableFunction(); + this.state = 3677; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 483, this.context) ) { + case 1: + { + this.state = 3676; + localContext._alias = this.id_(); + } + 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 atomPartitionedTableFunction(): AtomPartitionedTableFunctionContext { + let localContext = new AtomPartitionedTableFunctionContext(this.context, this.state); + this.enterRule(localContext, 494, HiveSqlParser.RULE_atomPartitionedTableFunction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3665; + this.state = 3679; localContext._n = this.id_(); - this.state = 3666; + this.state = 3680; this.match(HiveSqlParser.LPAREN); - this.state = 3667; + this.state = 3681; this.match(HiveSqlParser.KW_ON); - this.state = 3668; + this.state = 3682; localContext._ptfsrc = this.partitionTableFunctionSource(); - this.state = 3670; + this.state = 3684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3669; + this.state = 3683; localContext._spec = this.partitioningSpec(); } } - this.state = 3687; + this.state = 3701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 432) { { - this.state = 3672; + this.state = 3686; this.match(HiveSqlParser.Identifier); - this.state = 3673; + this.state = 3687; this.match(HiveSqlParser.LPAREN); - this.state = 3674; + this.state = 3688; this.expression(); - this.state = 3675; + this.state = 3689; this.match(HiveSqlParser.RPAREN); - this.state = 3684; + this.state = 3698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3676; + this.state = 3690; this.match(HiveSqlParser.COMMA); - this.state = 3677; + this.state = 3691; this.match(HiveSqlParser.Identifier); - this.state = 3678; + this.state = 3692; this.match(HiveSqlParser.LPAREN); - this.state = 3679; + this.state = 3693; this.expression(); - this.state = 3680; + this.state = 3694; this.match(HiveSqlParser.RPAREN); } } - this.state = 3686; + this.state = 3700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3689; + this.state = 3703; this.match(HiveSqlParser.RPAREN); - this.state = 3691; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { - case 1: - { - this.state = 3690; - localContext._alias = this.id_(); - } - break; - } } } catch (re) { @@ -17784,13 +17815,13 @@ export class HiveSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 494, HiveSqlParser.RULE_whereClause); + this.enterRule(localContext, 496, HiveSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3693; + this.state = 3705; this.match(HiveSqlParser.KW_WHERE); - this.state = 3694; + this.state = 3706; this.expression(); } } @@ -17810,33 +17841,33 @@ export class HiveSqlParser extends SQLParserBase { } public valuesClause(): ValuesClauseContext { let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 496, HiveSqlParser.RULE_valuesClause); + this.enterRule(localContext, 498, HiveSqlParser.RULE_valuesClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3696; + this.state = 3708; this.match(HiveSqlParser.KW_VALUES); - this.state = 3715; + this.state = 3727; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3697; + this.state = 3709; this.expressionsInParenthesis(); - this.state = 3702; + this.state = 3714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3698; + this.state = 3710; this.match(HiveSqlParser.COMMA); - this.state = 3699; + this.state = 3711; this.expressionsInParenthesis(); } } - this.state = 3704; + this.state = 3716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17844,25 +17875,25 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 3705; + this.state = 3717; this.match(HiveSqlParser.LPAREN); - this.state = 3706; + this.state = 3718; this.firstExpressionsWithAlias(); - this.state = 3707; + this.state = 3719; this.match(HiveSqlParser.RPAREN); - this.state = 3712; + this.state = 3724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3708; + this.state = 3720; this.match(HiveSqlParser.COMMA); - this.state = 3709; + this.state = 3721; this.expressionsInParenthesis(); } } - this.state = 3714; + this.state = 3726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17885,62 +17916,86 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } - public virtualTableSource(): VirtualTableSourceContext { - let localContext = new VirtualTableSourceContext(this.context, this.state); - this.enterRule(localContext, 498, HiveSqlParser.RULE_virtualTableSource); - let _la: number; + public atomValuesClause(): AtomValuesClauseContext { + let localContext = new AtomValuesClauseContext(this.context, this.state); + this.enterRule(localContext, 500, HiveSqlParser.RULE_atomValuesClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3717; + this.state = 3729; this.match(HiveSqlParser.KW_TABLE); - this.state = 3718; + this.state = 3730; this.match(HiveSqlParser.LPAREN); - this.state = 3719; + this.state = 3731; this.valuesClause(); - this.state = 3720; + this.state = 3732; this.match(HiveSqlParser.RPAREN); - this.state = 3722; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public virtualTableSource(): VirtualTableSourceContext { + let localContext = new VirtualTableSourceContext(this.context, this.state); + this.enterRule(localContext, 502, HiveSqlParser.RULE_virtualTableSource); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3734; + this.atomValuesClause(); + this.state = 3736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3721; + this.state = 3735; this.match(HiveSqlParser.KW_AS); } } - this.state = 3724; - this.tableAlias(); - this.state = 3734; + this.state = 3738; + localContext._alias = this.tableAlias(); + this.state = 3748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 3725; + this.state = 3739; this.match(HiveSqlParser.LPAREN); - this.state = 3726; + this.state = 3740; this.id_(); - this.state = 3731; + this.state = 3745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3727; + this.state = 3741; this.match(HiveSqlParser.COMMA); - this.state = 3728; + this.state = 3742; this.id_(); } } - this.state = 3733; + this.state = 3747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3736; + this.state = 3750; this.match(HiveSqlParser.RPAREN); } } @@ -17960,39 +18015,38 @@ export class HiveSqlParser extends SQLParserBase { } public selectClause(): SelectClauseContext { let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 500, HiveSqlParser.RULE_selectClause); + this.enterRule(localContext, 504, HiveSqlParser.RULE_selectClause); let _la: number; try { - let alternative: number; - this.state = 3758; + this.state = 3765; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 3738; + this.state = 3752; this.match(HiveSqlParser.KW_SELECT); - this.state = 3740; + this.state = 3754; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { case 1: { - this.state = 3739; + this.state = 3753; this.match(HiveSqlParser.QUERY_HINT); } break; } - this.state = 3755; + this.state = 3762; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: { - this.state = 3743; + this.state = 3757; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: { - this.state = 3742; + this.state = 3756; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -18004,33 +18058,15 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 3745; - this.selectItem(); - this.state = 3750; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 3746; - this.match(HiveSqlParser.COMMA); - this.state = 3747; - this.selectItem(); - } - } - } - this.state = 3752; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 495, this.context); - } + this.state = 3759; + this.selectList(); } break; case 2: { - this.state = 3753; + this.state = 3760; this.match(HiveSqlParser.KW_TRANSFORM); - this.state = 3754; + this.state = 3761; this.selectTrfmClause(); } break; @@ -18041,7 +18077,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 2); { - this.state = 3757; + this.state = 3764; this.trfmClause(); } break; @@ -18065,68 +18101,68 @@ export class HiveSqlParser extends SQLParserBase { } public selectTrfmClause(): SelectTrfmClauseContext { let localContext = new SelectTrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 502, HiveSqlParser.RULE_selectTrfmClause); + this.enterRule(localContext, 506, HiveSqlParser.RULE_selectTrfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3760; + this.state = 3767; this.match(HiveSqlParser.LPAREN); - this.state = 3761; + this.state = 3768; this.selectExpressionList(); - this.state = 3762; + this.state = 3769; this.match(HiveSqlParser.RPAREN); - this.state = 3763; + this.state = 3770; this.rowFormat(); - this.state = 3764; + this.state = 3771; this.recordWriter(); - this.state = 3765; + this.state = 3772; this.match(HiveSqlParser.KW_USING); - this.state = 3766; + this.state = 3773; this.match(HiveSqlParser.StringLiteral); - this.state = 3779; + this.state = 3786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3767; + this.state = 3774; this.match(HiveSqlParser.KW_AS); - this.state = 3777; + this.state = 3784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: { - this.state = 3768; + this.state = 3775; this.match(HiveSqlParser.LPAREN); - this.state = 3771; + this.state = 3778; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: { - this.state = 3769; + this.state = 3776; this.aliasList(); } break; case 2: { - this.state = 3770; + this.state = 3777; this.columnNameTypeList(); } break; } - this.state = 3773; + this.state = 3780; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3775; + this.state = 3782; this.aliasList(); } break; case 3: { - this.state = 3776; + this.state = 3783; this.columnNameTypeList(); } break; @@ -18134,9 +18170,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3781; + this.state = 3788; this.rowFormat(); - this.state = 3782; + this.state = 3789; this.recordReader(); } } @@ -18154,18 +18190,61 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 508, HiveSqlParser.RULE_selectList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 3791; + this.selectItem(); + this.state = 3796; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 500, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 3792; + this.match(HiveSqlParser.COMMA); + this.state = 3793; + this.selectItem(); + } + } + } + this.state = 3798; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 500, 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 selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 504, HiveSqlParser.RULE_selectItem); + this.enterRule(localContext, 510, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 3807; + this.state = 3822; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3784; + this.state = 3799; this.tableAllColumns(); } break; @@ -18173,66 +18252,66 @@ export class HiveSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 3787; + this.state = 3802; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3785; - this.columnName(); + this.state = 3800; + this.selectLiteralColumnName(); } break; case 2: { - this.state = 3786; - this.expression(); + this.state = 3801; + this.selectExpressionColumnName(); } break; } - this.state = 3805; + this.state = 3820; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: { - this.state = 3790; + this.state = 3805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3789; + this.state = 3804; this.match(HiveSqlParser.KW_AS); } } - this.state = 3792; - this.id_(); + this.state = 3807; + localContext._alias = this.id_(); } break; case 2: { - this.state = 3793; + this.state = 3808; this.match(HiveSqlParser.KW_AS); - this.state = 3794; + this.state = 3809; this.match(HiveSqlParser.LPAREN); - this.state = 3795; - this.id_(); - this.state = 3800; + this.state = 3810; + localContext._alias = this.id_(); + this.state = 3815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3796; + this.state = 3811; this.match(HiveSqlParser.COMMA); - this.state = 3797; - this.id_(); + this.state = 3812; + localContext._alias = this.id_(); } } - this.state = 3802; + this.state = 3817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3803; + this.state = 3818; this.match(HiveSqlParser.RPAREN); } break; @@ -18256,14 +18335,62 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 512, HiveSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3824; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 514, HiveSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3826; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public trfmClause(): TrfmClauseContext { let localContext = new TrfmClauseContext(this.context, this.state); - this.enterRule(localContext, 506, HiveSqlParser.RULE_trfmClause); + this.enterRule(localContext, 516, HiveSqlParser.RULE_trfmClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3809; + this.state = 3828; _la = this.tokenStream.LA(1); if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -18272,59 +18399,59 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3810; + this.state = 3829; this.selectExpressionList(); - this.state = 3811; + this.state = 3830; this.rowFormat(); - this.state = 3812; + this.state = 3831; this.recordWriter(); - this.state = 3813; + this.state = 3832; this.match(HiveSqlParser.KW_USING); - this.state = 3814; + this.state = 3833; this.match(HiveSqlParser.StringLiteral); - this.state = 3827; + this.state = 3846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3815; + this.state = 3834; this.match(HiveSqlParser.KW_AS); - this.state = 3825; + this.state = 3844; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 3816; + this.state = 3835; this.match(HiveSqlParser.LPAREN); - this.state = 3819; + this.state = 3838; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { case 1: { - this.state = 3817; + this.state = 3836; this.aliasList(); } break; case 2: { - this.state = 3818; + this.state = 3837; this.columnNameTypeList(); } break; } - this.state = 3821; + this.state = 3840; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3823; + this.state = 3842; this.aliasList(); } break; case 3: { - this.state = 3824; + this.state = 3843; this.columnNameTypeList(); } break; @@ -18332,9 +18459,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3829; + this.state = 3848; this.rowFormat(); - this.state = 3830; + this.state = 3849; this.recordReader(); } } @@ -18354,22 +18481,22 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpression(): SelectExpressionContext { let localContext = new SelectExpressionContext(this.context, this.state); - this.enterRule(localContext, 508, HiveSqlParser.RULE_selectExpression); + this.enterRule(localContext, 518, HiveSqlParser.RULE_selectExpression); try { - this.state = 3834; + this.state = 3853; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3832; + this.state = 3851; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3833; + this.state = 3852; this.expression(); } break; @@ -18391,26 +18518,26 @@ export class HiveSqlParser extends SQLParserBase { } public selectExpressionList(): SelectExpressionListContext { let localContext = new SelectExpressionListContext(this.context, this.state); - this.enterRule(localContext, 510, HiveSqlParser.RULE_selectExpressionList); + this.enterRule(localContext, 520, HiveSqlParser.RULE_selectExpressionList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3836; + this.state = 3855; this.selectExpression(); - this.state = 3841; + this.state = 3860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3837; + this.state = 3856; this.match(HiveSqlParser.COMMA); - this.state = 3838; + this.state = 3857; this.selectExpression(); } } - this.state = 3843; + this.state = 3862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18432,36 +18559,36 @@ export class HiveSqlParser extends SQLParserBase { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 512, HiveSqlParser.RULE_window_clause); + this.enterRule(localContext, 522, HiveSqlParser.RULE_window_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3844; + this.state = 3863; this.match(HiveSqlParser.KW_WINDOW); - this.state = 3845; + this.state = 3864; this.id_(); - this.state = 3846; + this.state = 3865; this.match(HiveSqlParser.KW_AS); - this.state = 3847; + this.state = 3866; this.window_specification(); - this.state = 3855; + this.state = 3874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3848; + this.state = 3867; this.match(HiveSqlParser.COMMA); - this.state = 3849; + this.state = 3868; this.id_(); - this.state = 3850; + this.state = 3869; this.match(HiveSqlParser.KW_AS); - this.state = 3851; + this.state = 3870; this.window_specification(); } } - this.state = 3857; + this.state = 3876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18483,10 +18610,10 @@ export class HiveSqlParser extends SQLParserBase { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 514, HiveSqlParser.RULE_window_specification); + this.enterRule(localContext, 524, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 3870; + this.state = 3889; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -18731,46 +18858,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 3858; + this.state = 3877; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 3859; + this.state = 3878; this.match(HiveSqlParser.LPAREN); - this.state = 3861; + this.state = 3880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { case 1: { - this.state = 3860; + this.state = 3879; this.id_(); } break; } - this.state = 3864; + this.state = 3883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3863; + this.state = 3882; this.partitioningSpec(); } } - this.state = 3867; + this.state = 3886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260 || _la === 292) { { - this.state = 3866; + this.state = 3885; this.window_frame(); } } - this.state = 3869; + this.state = 3888; this.match(HiveSqlParser.RPAREN); } break; @@ -18794,12 +18921,12 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame(): Window_frameContext { let localContext = new Window_frameContext(this.context, this.state); - this.enterRule(localContext, 516, HiveSqlParser.RULE_window_frame); + this.enterRule(localContext, 526, HiveSqlParser.RULE_window_frame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3872; + this.state = 3891; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -18808,22 +18935,22 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3886; + this.state = 3905; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 3879; + this.state = 3898; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: { { - this.state = 3873; + this.state = 3892; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 3874; + this.state = 3893; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -18831,9 +18958,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: { { - this.state = 3875; + this.state = 3894; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3876; + this.state = 3895; this.match(HiveSqlParser.KW_ROW); } } @@ -18841,9 +18968,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Number: { { - this.state = 3877; + this.state = 3896; this.match(HiveSqlParser.Number); - this.state = 3878; + this.state = 3897; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -18855,13 +18982,13 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_BETWEEN: { - this.state = 3881; + this.state = 3900; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 3882; + this.state = 3901; this.window_frame_boundary(); - this.state = 3883; + this.state = 3902; this.match(HiveSqlParser.KW_AND); - this.state = 3884; + this.state = 3903; this.window_frame_boundary(); } break; @@ -18886,17 +19013,17 @@ export class HiveSqlParser extends SQLParserBase { } public window_frame_boundary(): Window_frame_boundaryContext { let localContext = new Window_frame_boundaryContext(this.context, this.state); - this.enterRule(localContext, 518, HiveSqlParser.RULE_window_frame_boundary); + this.enterRule(localContext, 528, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 3892; + this.state = 3911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 3888; + this.state = 3907; _la = this.tokenStream.LA(1); if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -18905,7 +19032,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3889; + this.state = 3908; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -18919,9 +19046,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 3890; + this.state = 3909; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3891; + this.state = 3910; this.match(HiveSqlParser.KW_ROW); } break; @@ -18945,41 +19072,41 @@ export class HiveSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 520, HiveSqlParser.RULE_groupByClause); + this.enterRule(localContext, 530, HiveSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3894; + this.state = 3913; this.match(HiveSqlParser.KW_GROUP); - this.state = 3895; + this.state = 3914; this.match(HiveSqlParser.KW_BY); - this.state = 3901; + this.state = 3920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 519, this.context) ) { case 1: { - this.state = 3896; + this.state = 3915; this.columnName(); } break; case 2: { - this.state = 3897; + this.state = 3916; this.rollupStandard(); } break; case 3: { - this.state = 3898; + this.state = 3917; this.rollupOldSyntax(); } break; case 4: { { - this.state = 3899; + this.state = 3918; this.match(HiveSqlParser.LPAREN); - this.state = 3900; + this.state = 3919; this.match(HiveSqlParser.RPAREN); } } @@ -19003,50 +19130,50 @@ export class HiveSqlParser extends SQLParserBase { } public rollupStandard(): RollupStandardContext { let localContext = new RollupStandardContext(this.context, this.state); - this.enterRule(localContext, 522, HiveSqlParser.RULE_rollupStandard); + this.enterRule(localContext, 532, HiveSqlParser.RULE_rollupStandard); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3905; + this.state = 3924; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 3903; + this.state = 3922; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 3904; + this.state = 3923; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3907; + this.state = 3926; this.match(HiveSqlParser.LPAREN); - this.state = 3908; + this.state = 3927; this.expression(); - this.state = 3913; + this.state = 3932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3909; + this.state = 3928; this.match(HiveSqlParser.COMMA); - this.state = 3910; + this.state = 3929; this.expression(); } } - this.state = 3915; + this.state = 3934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3916; + this.state = 3935; this.match(HiveSqlParser.RPAREN); } } @@ -19066,63 +19193,63 @@ export class HiveSqlParser extends SQLParserBase { } public rollupOldSyntax(): RollupOldSyntaxContext { let localContext = new RollupOldSyntaxContext(this.context, this.state); - this.enterRule(localContext, 524, HiveSqlParser.RULE_rollupOldSyntax); + this.enterRule(localContext, 534, HiveSqlParser.RULE_rollupOldSyntax); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3918; + this.state = 3937; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 3923; + this.state = 3942; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 3919; + this.state = 3938; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 3920; + this.state = 3939; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 3921; + this.state = 3940; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 3922; + this.state = 3941; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 3938; + this.state = 3957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 3925; + this.state = 3944; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 3926; + this.state = 3945; this.match(HiveSqlParser.KW_SETS); - this.state = 3927; + this.state = 3946; this.match(HiveSqlParser.LPAREN); - this.state = 3928; + this.state = 3947; this.groupingSetExpression(); - this.state = 3933; + this.state = 3952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3929; + this.state = 3948; this.match(HiveSqlParser.COMMA); - this.state = 3930; + this.state = 3949; this.groupingSetExpression(); } } - this.state = 3935; + this.state = 3954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3936; + this.state = 3955; this.match(HiveSqlParser.RPAREN); } } @@ -19145,51 +19272,51 @@ export class HiveSqlParser extends SQLParserBase { } public groupingSetExpression(): GroupingSetExpressionContext { let localContext = new GroupingSetExpressionContext(this.context, this.state); - this.enterRule(localContext, 526, HiveSqlParser.RULE_groupingSetExpression); + this.enterRule(localContext, 536, HiveSqlParser.RULE_groupingSetExpression); let _la: number; try { - this.state = 3953; + this.state = 3972; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3940; + this.state = 3959; this.match(HiveSqlParser.LPAREN); - this.state = 3942; + this.state = 3961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 3941; + this.state = 3960; this.expression(); } } - this.state = 3948; + this.state = 3967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3944; + this.state = 3963; this.match(HiveSqlParser.COMMA); - this.state = 3945; + this.state = 3964; this.expression(); } } - this.state = 3950; + this.state = 3969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3951; + this.state = 3970; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3952; + this.state = 3971; this.expression(); } break; @@ -19211,13 +19338,13 @@ export class HiveSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 528, HiveSqlParser.RULE_havingClause); + this.enterRule(localContext, 538, HiveSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3955; + this.state = 3974; this.match(HiveSqlParser.KW_HAVING); - this.state = 3956; + this.state = 3975; this.expression(); } } @@ -19237,13 +19364,13 @@ export class HiveSqlParser extends SQLParserBase { } public qualifyClause(): QualifyClauseContext { let localContext = new QualifyClauseContext(this.context, this.state); - this.enterRule(localContext, 530, HiveSqlParser.RULE_qualifyClause); + this.enterRule(localContext, 540, HiveSqlParser.RULE_qualifyClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3958; + this.state = 3977; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 3959; + this.state = 3978; this.expression(); } } @@ -19263,22 +19390,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 532, HiveSqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 542, HiveSqlParser.RULE_expressionOrDefault); try { - this.state = 3963; + this.state = 3982; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3961; + this.state = 3980; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3962; + this.state = 3981; this.expression(); } break; @@ -19300,66 +19427,66 @@ export class HiveSqlParser extends SQLParserBase { } public firstExpressionsWithAlias(): FirstExpressionsWithAliasContext { let localContext = new FirstExpressionsWithAliasContext(this.context, this.state); - this.enterRule(localContext, 534, HiveSqlParser.RULE_firstExpressionsWithAlias); + this.enterRule(localContext, 544, HiveSqlParser.RULE_firstExpressionsWithAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3965; + this.state = 3984; localContext._first = this.expression(); - this.state = 3967; + this.state = 3986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3966; + this.state = 3985; this.match(HiveSqlParser.KW_AS); } } - this.state = 3970; + this.state = 3989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3969; + this.state = 3988; localContext._colAlias = this.id_(); } } - this.state = 3982; + this.state = 4001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3972; + this.state = 3991; this.match(HiveSqlParser.COMMA); - this.state = 3973; + this.state = 3992; this.expression(); - this.state = 3975; + this.state = 3994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3974; + this.state = 3993; this.match(HiveSqlParser.KW_AS); } } - this.state = 3978; + this.state = 3997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3977; + this.state = 3996; localContext._alias = this.id_(); } } } } - this.state = 3984; + this.state = 4003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19381,22 +19508,22 @@ export class HiveSqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 536, HiveSqlParser.RULE_expressions); + this.enterRule(localContext, 546, HiveSqlParser.RULE_expressions); try { - this.state = 3987; + this.state = 4006; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3985; + this.state = 4004; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3986; + this.state = 4005; this.expressionsNotInParenthesis(); } break; @@ -19418,15 +19545,15 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsInParenthesis(): ExpressionsInParenthesisContext { let localContext = new ExpressionsInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 538, HiveSqlParser.RULE_expressionsInParenthesis); + this.enterRule(localContext, 548, HiveSqlParser.RULE_expressionsInParenthesis); try { this.enterOuterAlt(localContext, 1); { - this.state = 3989; + this.state = 4008; this.match(HiveSqlParser.LPAREN); - this.state = 3990; + this.state = 4009; this.expressionsNotInParenthesis(); - this.state = 3991; + this.state = 4010; this.match(HiveSqlParser.RPAREN); } } @@ -19446,31 +19573,31 @@ export class HiveSqlParser extends SQLParserBase { } public expressionsNotInParenthesis(): ExpressionsNotInParenthesisContext { let localContext = new ExpressionsNotInParenthesisContext(this.context, this.state); - this.enterRule(localContext, 540, HiveSqlParser.RULE_expressionsNotInParenthesis); + this.enterRule(localContext, 550, HiveSqlParser.RULE_expressionsNotInParenthesis); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3993; + this.state = 4012; localContext._first = this.expressionOrDefault(); - this.state = 4000; + this.state = 4019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3996; + this.state = 4015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3994; + this.state = 4013; this.match(HiveSqlParser.COMMA); - this.state = 3995; + this.state = 4014; this.expressionOrDefault(); } } - this.state = 3998; + this.state = 4017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -19495,30 +19622,30 @@ export class HiveSqlParser extends SQLParserBase { } public orderByClause(): OrderByClauseContext { let localContext = new OrderByClauseContext(this.context, this.state); - this.enterRule(localContext, 542, HiveSqlParser.RULE_orderByClause); + this.enterRule(localContext, 552, HiveSqlParser.RULE_orderByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4002; + this.state = 4021; this.match(HiveSqlParser.KW_ORDER); - this.state = 4003; + this.state = 4022; this.match(HiveSqlParser.KW_BY); - this.state = 4004; + this.state = 4023; this.columnRefOrder(); - this.state = 4009; + this.state = 4028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4005; + this.state = 4024; this.match(HiveSqlParser.COMMA); - this.state = 4006; + this.state = 4025; this.columnRefOrder(); } } - this.state = 4011; + this.state = 4030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19540,15 +19667,15 @@ export class HiveSqlParser extends SQLParserBase { } public clusterByClause(): ClusterByClauseContext { let localContext = new ClusterByClauseContext(this.context, this.state); - this.enterRule(localContext, 544, HiveSqlParser.RULE_clusterByClause); + this.enterRule(localContext, 554, HiveSqlParser.RULE_clusterByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4012; + this.state = 4031; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4013; + this.state = 4032; this.match(HiveSqlParser.KW_BY); - this.state = 4014; + this.state = 4033; this.expressions(); } } @@ -19568,15 +19695,15 @@ export class HiveSqlParser extends SQLParserBase { } public distributeByClause(): DistributeByClauseContext { let localContext = new DistributeByClauseContext(this.context, this.state); - this.enterRule(localContext, 546, HiveSqlParser.RULE_distributeByClause); + this.enterRule(localContext, 556, HiveSqlParser.RULE_distributeByClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4035; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4017; + this.state = 4036; this.match(HiveSqlParser.KW_BY); - this.state = 4018; + this.state = 4037; this.expressions(); } } @@ -19596,42 +19723,42 @@ export class HiveSqlParser extends SQLParserBase { } public sortByClause(): SortByClauseContext { let localContext = new SortByClauseContext(this.context, this.state); - this.enterRule(localContext, 548, HiveSqlParser.RULE_sortByClause); + this.enterRule(localContext, 558, HiveSqlParser.RULE_sortByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4020; + this.state = 4039; this.match(HiveSqlParser.KW_SORT); - this.state = 4021; + this.state = 4040; this.match(HiveSqlParser.KW_BY); - this.state = 4041; + this.state = 4060; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 540, this.context) ) { case 1: { { - this.state = 4022; + this.state = 4041; this.match(HiveSqlParser.LPAREN); - this.state = 4023; + this.state = 4042; this.columnRefOrder(); - this.state = 4028; + this.state = 4047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4024; + this.state = 4043; this.match(HiveSqlParser.COMMA); - this.state = 4025; + this.state = 4044; this.columnRefOrder(); } } - this.state = 4030; + this.state = 4049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4031; + this.state = 4050; this.match(HiveSqlParser.RPAREN); } } @@ -19639,21 +19766,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: { { - this.state = 4033; + this.state = 4052; this.columnRefOrder(); - this.state = 4038; + this.state = 4057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4034; + this.state = 4053; this.match(HiveSqlParser.COMMA); - this.state = 4035; + this.state = 4054; this.columnRefOrder(); } } - this.state = 4040; + this.state = 4059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19679,37 +19806,37 @@ export class HiveSqlParser extends SQLParserBase { } public function_(): Function_Context { let localContext = new Function_Context(this.context, this.state); - this.enterRule(localContext, 550, HiveSqlParser.RULE_function_); + this.enterRule(localContext, 560, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4096; + this.state = 4115; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4043; + this.state = 4062; this.match(HiveSqlParser.KW_TRIM); - this.state = 4044; + this.state = 4063; this.match(HiveSqlParser.LPAREN); - this.state = 4048; + this.state = 4067; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4045; + this.state = 4064; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4046; + this.state = 4065; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4047; + this.state = 4066; this.match(HiveSqlParser.KW_BOTH); } break; @@ -20019,48 +20146,48 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4051; + this.state = 4070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4050; + this.state = 4069; localContext._trim_characters = this.selectExpression(); } } - this.state = 4053; + this.state = 4072; this.match(HiveSqlParser.KW_FROM); - this.state = 4054; + this.state = 4073; localContext._str = this.selectExpression(); - this.state = 4055; + this.state = 4074; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4057; + this.state = 4076; this.functionNameForInvoke(); - this.state = 4058; + this.state = 4077; this.match(HiveSqlParser.LPAREN); - this.state = 4073; + this.state = 4092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 4059; + this.state = 4078; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4061; + this.state = 4080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4060; + this.state = 4079; localContext._dist = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { @@ -20073,26 +20200,26 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4071; + this.state = 4090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { - this.state = 4063; + this.state = 4082; this.selectExpression(); - this.state = 4068; + this.state = 4087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4064; + this.state = 4083; this.match(HiveSqlParser.COMMA); - this.state = 4065; + this.state = 4084; this.selectExpression(); } } - this.state = 4070; + this.state = 4089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20102,60 +20229,60 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4094; + this.state = 4113; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: { - this.state = 4075; + this.state = 4094; this.match(HiveSqlParser.RPAREN); - this.state = 4076; + this.state = 4095; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4077; + this.state = 4096; this.match(HiveSqlParser.KW_GROUP); - this.state = 4078; + this.state = 4097; this.match(HiveSqlParser.LPAREN); - this.state = 4079; + this.state = 4098; localContext._ordBy = this.orderByClause(); - this.state = 4080; + this.state = 4099; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4082; + this.state = 4101; this.match(HiveSqlParser.RPAREN); - this.state = 4084; + this.state = 4103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 281) { { - this.state = 4083; + this.state = 4102; localContext._nt = this.null_treatment(); } } - this.state = 4086; + this.state = 4105; this.match(HiveSqlParser.KW_OVER); - this.state = 4087; + this.state = 4106; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4088; + this.state = 4107; localContext._nt = this.null_treatment(); - this.state = 4089; + this.state = 4108; this.match(HiveSqlParser.RPAREN); - this.state = 4090; + this.state = 4109; this.match(HiveSqlParser.KW_OVER); - this.state = 4091; + this.state = 4110; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4093; + this.state = 4112; this.match(HiveSqlParser.RPAREN); } break; @@ -20180,12 +20307,12 @@ export class HiveSqlParser extends SQLParserBase { } public null_treatment(): Null_treatmentContext { let localContext = new Null_treatmentContext(this.context, this.state); - this.enterRule(localContext, 552, HiveSqlParser.RULE_null_treatment); + this.enterRule(localContext, 562, HiveSqlParser.RULE_null_treatment); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4098; + this.state = 4117; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -20194,7 +20321,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4099; + this.state = 4118; this.match(HiveSqlParser.KW_NULLS); } } @@ -20214,11 +20341,11 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 554, HiveSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 564, HiveSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4101; + this.state = 4120; this.functionIdentifier(); } } @@ -20238,9 +20365,9 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForDDL(): FunctionNameForDDLContext { let localContext = new FunctionNameForDDLContext(this.context, this.state); - this.enterRule(localContext, 556, HiveSqlParser.RULE_functionNameForDDL); + this.enterRule(localContext, 566, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4105; + this.state = 4124; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -20485,14 +20612,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4103; + this.state = 4122; this.functionIdentifier(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4104; + this.state = 4123; this.match(HiveSqlParser.StringLiteral); } break; @@ -20516,29 +20643,29 @@ export class HiveSqlParser extends SQLParserBase { } public functionNameForInvoke(): FunctionNameForInvokeContext { let localContext = new FunctionNameForInvokeContext(this.context, this.state); - this.enterRule(localContext, 558, HiveSqlParser.RULE_functionNameForInvoke); + this.enterRule(localContext, 568, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4110; + this.state = 4129; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4107; + this.state = 4126; this.functionIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4108; + this.state = 4127; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4109; + this.state = 4128; this.sysFuncNames(); } break; @@ -20560,34 +20687,34 @@ export class HiveSqlParser extends SQLParserBase { } public castExpression(): CastExpressionContext { let localContext = new CastExpressionContext(this.context, this.state); - this.enterRule(localContext, 560, HiveSqlParser.RULE_castExpression); + this.enterRule(localContext, 570, HiveSqlParser.RULE_castExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4112; + this.state = 4131; this.match(HiveSqlParser.KW_CAST); - this.state = 4113; + this.state = 4132; this.match(HiveSqlParser.LPAREN); - this.state = 4114; + this.state = 4133; this.expression(); - this.state = 4115; + this.state = 4134; this.match(HiveSqlParser.KW_AS); - this.state = 4116; + this.state = 4135; localContext._toType = this.primitiveType(); - this.state = 4119; + this.state = 4138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4117; + this.state = 4136; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4118; + this.state = 4137; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4121; + this.state = 4140; this.match(HiveSqlParser.RPAREN); } } @@ -20607,48 +20734,48 @@ export class HiveSqlParser extends SQLParserBase { } public caseExpression(): CaseExpressionContext { let localContext = new CaseExpressionContext(this.context, this.state); - this.enterRule(localContext, 562, HiveSqlParser.RULE_caseExpression); + this.enterRule(localContext, 572, HiveSqlParser.RULE_caseExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4123; + this.state = 4142; this.match(HiveSqlParser.KW_CASE); - this.state = 4124; + this.state = 4143; this.expression(); - this.state = 4130; + this.state = 4149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4125; + this.state = 4144; this.match(HiveSqlParser.KW_WHEN); - this.state = 4126; + this.state = 4145; this.expression(); - this.state = 4127; + this.state = 4146; this.match(HiveSqlParser.KW_THEN); - this.state = 4128; + this.state = 4147; this.expression(); } } - this.state = 4132; + this.state = 4151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4136; + this.state = 4155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4134; + this.state = 4153; this.match(HiveSqlParser.KW_ELSE); - this.state = 4135; + this.state = 4154; this.expression(); } } - this.state = 4138; + this.state = 4157; this.match(HiveSqlParser.KW_END); } } @@ -20668,46 +20795,46 @@ export class HiveSqlParser extends SQLParserBase { } public whenExpression(): WhenExpressionContext { let localContext = new WhenExpressionContext(this.context, this.state); - this.enterRule(localContext, 564, HiveSqlParser.RULE_whenExpression); + this.enterRule(localContext, 574, HiveSqlParser.RULE_whenExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4140; + this.state = 4159; this.match(HiveSqlParser.KW_CASE); - this.state = 4146; + this.state = 4165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4141; + this.state = 4160; this.match(HiveSqlParser.KW_WHEN); - this.state = 4142; + this.state = 4161; this.expression(); - this.state = 4143; + this.state = 4162; this.match(HiveSqlParser.KW_THEN); - this.state = 4144; + this.state = 4163; this.expression(); } } - this.state = 4148; + this.state = 4167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4152; + this.state = 4171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4150; + this.state = 4169; this.match(HiveSqlParser.KW_ELSE); - this.state = 4151; + this.state = 4170; this.expression(); } } - this.state = 4154; + this.state = 4173; this.match(HiveSqlParser.KW_END); } } @@ -20727,30 +20854,30 @@ export class HiveSqlParser extends SQLParserBase { } public floorExpression(): FloorExpressionContext { let localContext = new FloorExpressionContext(this.context, this.state); - this.enterRule(localContext, 566, HiveSqlParser.RULE_floorExpression); + this.enterRule(localContext, 576, HiveSqlParser.RULE_floorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4156; + this.state = 4175; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4157; + this.state = 4176; this.match(HiveSqlParser.LPAREN); - this.state = 4158; + this.state = 4177; this.expression(); - this.state = 4161; + this.state = 4180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 4159; + this.state = 4178; this.match(HiveSqlParser.KW_TO); - this.state = 4160; + this.state = 4179; localContext._floorUnit = this.timeQualifiers(); } } - this.state = 4163; + this.state = 4182; this.match(HiveSqlParser.RPAREN); } } @@ -20770,21 +20897,21 @@ export class HiveSqlParser extends SQLParserBase { } public extractExpression(): ExtractExpressionContext { let localContext = new ExtractExpressionContext(this.context, this.state); - this.enterRule(localContext, 568, HiveSqlParser.RULE_extractExpression); + this.enterRule(localContext, 578, HiveSqlParser.RULE_extractExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4165; + this.state = 4184; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4166; + this.state = 4185; this.match(HiveSqlParser.LPAREN); - this.state = 4167; + this.state = 4186; localContext._timeUnit = this.timeQualifiers(); - this.state = 4168; + this.state = 4187; this.match(HiveSqlParser.KW_FROM); - this.state = 4169; + this.state = 4188; this.expression(); - this.state = 4170; + this.state = 4189; this.match(HiveSqlParser.RPAREN); } } @@ -20804,23 +20931,23 @@ export class HiveSqlParser extends SQLParserBase { } public timeQualifiers(): TimeQualifiersContext { let localContext = new TimeQualifiersContext(this.context, this.state); - this.enterRule(localContext, 570, HiveSqlParser.RULE_timeQualifiers); + this.enterRule(localContext, 580, HiveSqlParser.RULE_timeQualifiers); try { - this.state = 4180; + this.state = 4199; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4172; + this.state = 4191; this.year(); } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4173; + this.state = 4192; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -20828,7 +20955,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4174; + this.state = 4193; this.month(); } break; @@ -20836,7 +20963,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4175; + this.state = 4194; this.week(); } break; @@ -20844,7 +20971,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4176; + this.state = 4195; this.day(); } break; @@ -20852,7 +20979,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4177; + this.state = 4196; this.hour(); } break; @@ -20860,7 +20987,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4178; + this.state = 4197; this.minute(); } break; @@ -20868,7 +20995,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4179; + this.state = 4198; this.second(); } break; @@ -20892,85 +21019,85 @@ export class HiveSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 572, HiveSqlParser.RULE_constant); + this.enterRule(localContext, 582, HiveSqlParser.RULE_constant); let _la: number; try { - this.state = 4210; + this.state = 4229; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 560, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4182; + this.state = 4201; localContext._value = this.intervalValue(); - this.state = 4183; + this.state = 4202; localContext._qualifiers = this.intervalQualifiers(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4185; + this.state = 4204; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4186; + this.state = 4205; this.match(HiveSqlParser.KW_DATE); - this.state = 4187; + this.state = 4206; this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4188; + this.state = 4207; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4189; + this.state = 4208; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4190; + this.state = 4209; this.match(HiveSqlParser.StringLiteral); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4191; + this.state = 4210; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4192; + this.state = 4211; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4193; + this.state = 4212; this.match(HiveSqlParser.StringLiteral); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4194; + this.state = 4213; this.match(HiveSqlParser.StringLiteral); - this.state = 4198; + this.state = 4217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 426) { { { - this.state = 4195; + this.state = 4214; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4200; + this.state = 4219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20979,58 +21106,58 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4201; + this.state = 4220; this.match(HiveSqlParser.IntegralLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4202; + this.state = 4221; this.match(HiveSqlParser.NumberLiteral); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4203; + this.state = 4222; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4204; + this.state = 4223; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4205; + this.state = 4224; this.match(HiveSqlParser.KW_TRUE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4206; + this.state = 4225; this.match(HiveSqlParser.KW_FALSE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4207; + this.state = 4226; this.match(HiveSqlParser.KW_NULL); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4208; + this.state = 4227; localContext._p = this.match(HiveSqlParser.QUESTION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4209; + this.state = 4228; this.match(HiveSqlParser.Identifier); } break; @@ -21052,12 +21179,12 @@ export class HiveSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 574, HiveSqlParser.RULE_intervalValue); + this.enterRule(localContext, 584, HiveSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4212; + this.state = 4231; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -21084,53 +21211,53 @@ export class HiveSqlParser extends SQLParserBase { } public intervalExpression(): IntervalExpressionContext { let localContext = new IntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 576, HiveSqlParser.RULE_intervalExpression); + this.enterRule(localContext, 586, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4229; + this.state = 4248; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4214; + this.state = 4233; this.match(HiveSqlParser.LPAREN); - this.state = 4215; + this.state = 4234; localContext._value = this.intervalValue(); - this.state = 4216; + this.state = 4235; this.match(HiveSqlParser.RPAREN); - this.state = 4217; + this.state = 4236; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4219; + this.state = 4238; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4225; + this.state = 4244; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4220; + this.state = 4239; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4221; + this.state = 4240; this.match(HiveSqlParser.LPAREN); - this.state = 4222; + this.state = 4241; localContext._expr = this.expression(); - this.state = 4223; + this.state = 4242; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4227; + this.state = 4246; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -21154,72 +21281,72 @@ export class HiveSqlParser extends SQLParserBase { } public intervalQualifiers(): IntervalQualifiersContext { let localContext = new IntervalQualifiersContext(this.context, this.state); - this.enterRule(localContext, 578, HiveSqlParser.RULE_intervalQualifiers); + this.enterRule(localContext, 588, HiveSqlParser.RULE_intervalQualifiers); try { - this.state = 4245; + this.state = 4264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4231; + this.state = 4250; this.year(); - this.state = 4232; + this.state = 4251; this.match(HiveSqlParser.KW_TO); - this.state = 4233; + this.state = 4252; this.month(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4235; + this.state = 4254; this.day(); - this.state = 4236; + this.state = 4255; this.match(HiveSqlParser.KW_TO); - this.state = 4237; + this.state = 4256; this.second(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4239; + this.state = 4258; this.year(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4240; + this.state = 4259; this.month(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4241; + this.state = 4260; this.day(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4242; + this.state = 4261; this.hour(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4243; + this.state = 4262; this.minute(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4244; + this.state = 4263; this.second(); } break; @@ -21241,26 +21368,26 @@ export class HiveSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 580, HiveSqlParser.RULE_expression); + this.enterRule(localContext, 590, HiveSqlParser.RULE_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4247; + this.state = 4266; this.precedenceAndExpression(); - this.state = 4252; + this.state = 4271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 228) { { { - this.state = 4248; + this.state = 4267; this.match(HiveSqlParser.KW_OR); - this.state = 4249; + this.state = 4268; this.precedenceAndExpression(); } } - this.state = 4254; + this.state = 4273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21282,85 +21409,85 @@ export class HiveSqlParser extends SQLParserBase { } public atomExpression(): AtomExpressionContext { let localContext = new AtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 582, HiveSqlParser.RULE_atomExpression); + this.enterRule(localContext, 592, HiveSqlParser.RULE_atomExpression); try { - this.state = 4266; + this.state = 4285; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4255; + this.state = 4274; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4256; + this.state = 4275; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4257; + this.state = 4276; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4258; + this.state = 4277; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4259; + this.state = 4278; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4260; + this.state = 4279; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4261; + this.state = 4280; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4262; + this.state = 4281; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4263; + this.state = 4282; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4264; + this.state = 4283; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4265; + this.state = 4284; this.id_(); } break; @@ -21382,20 +21509,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceUnaryPrefixExpression(): PrecedenceUnaryPrefixExpressionContext { let localContext = new PrecedenceUnaryPrefixExpressionContext(this.context, this.state); - this.enterRule(localContext, 584, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); + this.enterRule(localContext, 594, HiveSqlParser.RULE_precedenceUnaryPrefixExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4271; + this.state = 4290; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4268; + this.state = 4287; _la = this.tokenStream.LA(1); if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); @@ -21407,35 +21534,35 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4273; + this.state = 4292; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); } - this.state = 4274; + this.state = 4293; this.atomExpression(); - this.state = 4283; + this.state = 4302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 401) { { - this.state = 4281; + this.state = 4300; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4275; + this.state = 4294; this.match(HiveSqlParser.LSQUARE); - this.state = 4276; + this.state = 4295; this.expression(); - this.state = 4277; + this.state = 4296; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4279; + this.state = 4298; this.match(HiveSqlParser.DOT); - this.state = 4280; + this.state = 4299; this.id_(); } break; @@ -21443,7 +21570,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4285; + this.state = 4304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21465,26 +21592,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseXorExpression(): PrecedenceBitwiseXorExpressionContext { let localContext = new PrecedenceBitwiseXorExpressionContext(this.context, this.state); - this.enterRule(localContext, 586, HiveSqlParser.RULE_precedenceBitwiseXorExpression); + this.enterRule(localContext, 596, HiveSqlParser.RULE_precedenceBitwiseXorExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4286; + this.state = 4305; this.precedenceUnaryPrefixExpression(); - this.state = 4291; + this.state = 4310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 423) { { { - this.state = 4287; + this.state = 4306; this.match(HiveSqlParser.BITWISEXOR); - this.state = 4288; + this.state = 4307; this.precedenceUnaryPrefixExpression(); } } - this.state = 4293; + this.state = 4312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21506,20 +21633,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceStarExpression(): PrecedenceStarExpressionContext { let localContext = new PrecedenceStarExpressionContext(this.context, this.state); - this.enterRule(localContext, 588, HiveSqlParser.RULE_precedenceStarExpression); + this.enterRule(localContext, 598, HiveSqlParser.RULE_precedenceStarExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4294; + this.state = 4313; this.precedenceBitwiseXorExpression(); - this.state = 4299; + this.state = 4318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4295; + this.state = 4314; _la = this.tokenStream.LA(1); if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); @@ -21528,11 +21655,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4296; + this.state = 4315; this.precedenceBitwiseXorExpression(); } } - this.state = 4301; + this.state = 4320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21554,20 +21681,20 @@ export class HiveSqlParser extends SQLParserBase { } public precedencePlusExpression(): PrecedencePlusExpressionContext { let localContext = new PrecedencePlusExpressionContext(this.context, this.state); - this.enterRule(localContext, 590, HiveSqlParser.RULE_precedencePlusExpression); + this.enterRule(localContext, 600, HiveSqlParser.RULE_precedencePlusExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4302; + this.state = 4321; this.precedenceStarExpression(); - this.state = 4307; + this.state = 4326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 413 || _la === 414) { { { - this.state = 4303; + this.state = 4322; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -21576,11 +21703,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4304; + this.state = 4323; this.precedenceStarExpression(); } } - this.state = 4309; + this.state = 4328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21602,26 +21729,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceConcatenateExpression(): PrecedenceConcatenateExpressionContext { let localContext = new PrecedenceConcatenateExpressionContext(this.context, this.state); - this.enterRule(localContext, 592, HiveSqlParser.RULE_precedenceConcatenateExpression); + this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceConcatenateExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4310; + this.state = 4329; this.precedencePlusExpression(); - this.state = 4315; + this.state = 4334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 422) { { { - this.state = 4311; + this.state = 4330; this.match(HiveSqlParser.CONCATENATE); - this.state = 4312; + this.state = 4331; localContext._plus = this.precedencePlusExpression(); } } - this.state = 4317; + this.state = 4336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21643,26 +21770,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAmpersandExpression(): PrecedenceAmpersandExpressionContext { let localContext = new PrecedenceAmpersandExpressionContext(this.context, this.state); - this.enterRule(localContext, 594, HiveSqlParser.RULE_precedenceAmpersandExpression); + this.enterRule(localContext, 604, HiveSqlParser.RULE_precedenceAmpersandExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4318; + this.state = 4337; this.precedenceConcatenateExpression(); - this.state = 4323; + this.state = 4342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 419) { { { - this.state = 4319; + this.state = 4338; this.match(HiveSqlParser.AMPERSAND); - this.state = 4320; + this.state = 4339; this.precedenceConcatenateExpression(); } } - this.state = 4325; + this.state = 4344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21684,26 +21811,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceBitwiseOrExpression(): PrecedenceBitwiseOrExpressionContext { let localContext = new PrecedenceBitwiseOrExpressionContext(this.context, this.state); - this.enterRule(localContext, 596, HiveSqlParser.RULE_precedenceBitwiseOrExpression); + this.enterRule(localContext, 606, HiveSqlParser.RULE_precedenceBitwiseOrExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4326; + this.state = 4345; this.precedenceAmpersandExpression(); - this.state = 4331; + this.state = 4350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 421) { { { - this.state = 4327; + this.state = 4346; this.match(HiveSqlParser.BITWISEOR); - this.state = 4328; + this.state = 4347; this.precedenceAmpersandExpression(); } } - this.state = 4333; + this.state = 4352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21725,12 +21852,12 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarOperator(): PrecedenceSimilarOperatorContext { let localContext = new PrecedenceSimilarOperatorContext(this.context, this.state); - this.enterRule(localContext, 598, HiveSqlParser.RULE_precedenceSimilarOperator); + this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceSimilarOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4334; + this.state = 4353; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -21757,15 +21884,15 @@ export class HiveSqlParser extends SQLParserBase { } public subQueryExpression(): SubQueryExpressionContext { let localContext = new SubQueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 600, HiveSqlParser.RULE_subQueryExpression); + this.enterRule(localContext, 610, HiveSqlParser.RULE_subQueryExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 4336; + this.state = 4355; this.match(HiveSqlParser.LPAREN); - this.state = 4337; + this.state = 4356; this.selectStatement(); - this.state = 4338; + this.state = 4357; this.match(HiveSqlParser.RPAREN); } } @@ -21785,9 +21912,9 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpression(): PrecedenceSimilarExpressionContext { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); - this.enterRule(localContext, 602, HiveSqlParser.RULE_precedenceSimilarExpression); + this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4346; + this.state = 4365; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -22092,14 +22219,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4340; + this.state = 4359; localContext._a = this.precedenceBitwiseOrExpression(); - this.state = 4342; + this.state = 4361; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4341; + this.state = 4360; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -22109,9 +22236,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4344; + this.state = 4363; this.match(HiveSqlParser.KW_EXISTS); - this.state = 4345; + this.state = 4364; this.subQueryExpression(); } break; @@ -22135,33 +22262,33 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPart(): PrecedenceSimilarExpressionPartContext { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); - this.enterRule(localContext, 604, HiveSqlParser.RULE_precedenceSimilarExpressionPart); + this.enterRule(localContext, 614, HiveSqlParser.RULE_precedenceSimilarExpressionPart); try { - this.state = 4354; + this.state = 4373; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4348; + this.state = 4367; this.precedenceSimilarOperator(); - this.state = 4349; + this.state = 4368; localContext._equalExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4351; + this.state = 4370; this.precedenceSimilarExpressionAtom(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4352; + this.state = 4371; this.match(HiveSqlParser.KW_NOT); - this.state = 4353; + this.state = 4372; this.precedenceSimilarExpressionPartNot(); } break; @@ -22183,40 +22310,40 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionAtom(): PrecedenceSimilarExpressionAtomContext { let localContext = new PrecedenceSimilarExpressionAtomContext(this.context, this.state); - this.enterRule(localContext, 606, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); + this.enterRule(localContext, 616, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { - this.state = 4370; + this.state = 4389; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4356; + this.state = 4375; this.match(HiveSqlParser.KW_IN); - this.state = 4357; + this.state = 4376; this.precedenceSimilarExpressionIn(); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 2); { - this.state = 4358; + this.state = 4377; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4359; + this.state = 4378; localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4360; + this.state = 4379; this.match(HiveSqlParser.KW_AND); - this.state = 4361; + this.state = 4380; localContext._max = this.precedenceBitwiseOrExpression(); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 4363; + this.state = 4382; this.match(HiveSqlParser.KW_LIKE); - this.state = 4364; + this.state = 4383; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -22225,7 +22352,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4365; + this.state = 4384; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22237,9 +22364,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 4); { - this.state = 4366; + this.state = 4385; this.subQuerySelectorOperator(); - this.state = 4367; + this.state = 4386; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13 || _la === 313)) { this.errorHandler.recoverInline(this); @@ -22248,7 +22375,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4368; + this.state = 4387; this.subQueryExpression(); } break; @@ -22272,22 +22399,22 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionIn(): PrecedenceSimilarExpressionInContext { let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); - this.enterRule(localContext, 608, HiveSqlParser.RULE_precedenceSimilarExpressionIn); + this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceSimilarExpressionIn); try { - this.state = 4374; + this.state = 4393; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4372; + this.state = 4391; this.subQueryExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4373; + this.state = 4392; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22309,16 +22436,16 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceSimilarExpressionPartNot(): PrecedenceSimilarExpressionPartNotContext { let localContext = new PrecedenceSimilarExpressionPartNotContext(this.context, this.state); - this.enterRule(localContext, 610, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); + this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); let _la: number; try { - this.state = 4379; + this.state = 4398; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4376; + this.state = 4395; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286)) { this.errorHandler.recoverInline(this); @@ -22327,14 +22454,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4377; + this.state = 4396; localContext._notExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4378; + this.state = 4397; this.precedenceSimilarExpressionAtom(); } break; @@ -22356,15 +22483,15 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceDistinctOperator(): PrecedenceDistinctOperatorContext { let localContext = new PrecedenceDistinctOperatorContext(this.context, this.state); - this.enterRule(localContext, 612, HiveSqlParser.RULE_precedenceDistinctOperator); + this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceDistinctOperator); try { this.enterOuterAlt(localContext, 1); { - this.state = 4381; + this.state = 4400; this.match(HiveSqlParser.KW_IS); - this.state = 4382; + this.state = 4401; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4383; + this.state = 4402; this.match(HiveSqlParser.KW_FROM); } } @@ -22384,42 +22511,42 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualOperator(): PrecedenceEqualOperatorContext { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); - this.enterRule(localContext, 614, HiveSqlParser.RULE_precedenceEqualOperator); + this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 4392; + this.state = 4411; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 4385; + this.state = 4404; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 4386; + this.state = 4405; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 4387; + this.state = 4406; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 4388; + this.state = 4407; this.match(HiveSqlParser.KW_IS); - this.state = 4389; + this.state = 4408; this.match(HiveSqlParser.KW_NOT); - this.state = 4390; + this.state = 4409; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4391; + this.state = 4410; this.match(HiveSqlParser.KW_FROM); } break; @@ -22443,38 +22570,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceEqualExpression(): PrecedenceEqualExpressionContext { let localContext = new PrecedenceEqualExpressionContext(this.context, this.state); - this.enterRule(localContext, 616, HiveSqlParser.RULE_precedenceEqualExpression); + this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceEqualExpression); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4394; + this.state = 4413; this.precedenceSimilarExpression(); - this.state = 4403; + this.state = 4422; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 4401; + this.state = 4420; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4395; + this.state = 4414; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 4396; + this.state = 4415; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 4398; + this.state = 4417; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 4399; + this.state = 4418; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -22482,7 +22609,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4405; + this.state = 4424; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 583, this.context); } @@ -22504,46 +22631,46 @@ export class HiveSqlParser extends SQLParserBase { } public isCondition(): IsConditionContext { let localContext = new IsConditionContext(this.context, this.state); - this.enterRule(localContext, 618, HiveSqlParser.RULE_isCondition); + this.enterRule(localContext, 628, HiveSqlParser.RULE_isCondition); let _la: number; try { - this.state = 4412; + this.state = 4431; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 4406; + this.state = 4425; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 2); { - this.state = 4407; + this.state = 4426; this.match(HiveSqlParser.KW_TRUE); } break; case HiveSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 3); { - this.state = 4408; + this.state = 4427; this.match(HiveSqlParser.KW_FALSE); } break; case HiveSqlParser.KW_UNKNOWN: this.enterOuterAlt(localContext, 4); { - this.state = 4409; + this.state = 4428; this.match(HiveSqlParser.KW_UNKNOWN); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 5); { - this.state = 4410; + this.state = 4429; this.match(HiveSqlParser.KW_NOT); - this.state = 4411; + this.state = 4430; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 219 || _la === 350 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -22574,38 +22701,38 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceNotExpression(): PrecedenceNotExpressionContext { let localContext = new PrecedenceNotExpressionContext(this.context, this.state); - this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceNotExpression); + this.enterRule(localContext, 630, HiveSqlParser.RULE_precedenceNotExpression); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4417; + this.state = 4436; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4414; + this.state = 4433; this.match(HiveSqlParser.KW_NOT); } } } - this.state = 4419; + this.state = 4438; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 585, this.context); } - this.state = 4420; + this.state = 4439; this.precedenceEqualExpression(); - this.state = 4423; + this.state = 4442; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 4421; + this.state = 4440; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 4422; + this.state = 4441; this.isCondition(); } } @@ -22628,26 +22755,26 @@ export class HiveSqlParser extends SQLParserBase { } public precedenceAndExpression(): PrecedenceAndExpressionContext { let localContext = new PrecedenceAndExpressionContext(this.context, this.state); - this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceAndExpression); + this.enterRule(localContext, 632, HiveSqlParser.RULE_precedenceAndExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4425; + this.state = 4444; this.precedenceNotExpression(); - this.state = 4430; + this.state = 4449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 4426; + this.state = 4445; this.match(HiveSqlParser.KW_AND); - this.state = 4427; + this.state = 4446; this.precedenceNotExpression(); } } - this.state = 4432; + this.state = 4451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22669,19 +22796,19 @@ export class HiveSqlParser extends SQLParserBase { } public tableOrPartition(): TableOrPartitionContext { let localContext = new TableOrPartitionContext(this.context, this.state); - this.enterRule(localContext, 624, HiveSqlParser.RULE_tableOrPartition); + this.enterRule(localContext, 634, HiveSqlParser.RULE_tableOrPartition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4452; this.tableName(); - this.state = 4435; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 4434; + this.state = 4453; this.partitionSpec(); } } @@ -22704,34 +22831,34 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSpec(): PartitionSpecContext { let localContext = new PartitionSpecContext(this.context, this.state); - this.enterRule(localContext, 626, HiveSqlParser.RULE_partitionSpec); + this.enterRule(localContext, 636, HiveSqlParser.RULE_partitionSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4437; + this.state = 4456; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4438; + this.state = 4457; this.match(HiveSqlParser.LPAREN); - this.state = 4439; + this.state = 4458; this.partitionVal(); - this.state = 4444; + this.state = 4463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4440; + this.state = 4459; this.match(HiveSqlParser.COMMA); - this.state = 4441; + this.state = 4460; this.partitionVal(); } } - this.state = 4446; + this.state = 4465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4447; + this.state = 4466; this.match(HiveSqlParser.RPAREN); } } @@ -22751,21 +22878,21 @@ export class HiveSqlParser extends SQLParserBase { } public partitionVal(): PartitionValContext { let localContext = new PartitionValContext(this.context, this.state); - this.enterRule(localContext, 628, HiveSqlParser.RULE_partitionVal); + this.enterRule(localContext, 638, HiveSqlParser.RULE_partitionVal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4449; + this.state = 4468; this.id_(); - this.state = 4452; + this.state = 4471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 4450; + this.state = 4469; this.match(HiveSqlParser.EQUAL); - this.state = 4451; + this.state = 4470; this.constant(); } } @@ -22788,32 +22915,32 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorSpec(): PartitionSelectorSpecContext { let localContext = new PartitionSelectorSpecContext(this.context, this.state); - this.enterRule(localContext, 630, HiveSqlParser.RULE_partitionSelectorSpec); + this.enterRule(localContext, 640, HiveSqlParser.RULE_partitionSelectorSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4454; + this.state = 4473; this.match(HiveSqlParser.LPAREN); - this.state = 4455; + this.state = 4474; this.partitionSelectorVal(); - this.state = 4460; + this.state = 4479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4456; + this.state = 4475; this.match(HiveSqlParser.COMMA); - this.state = 4457; + this.state = 4476; this.partitionSelectorVal(); } } - this.state = 4462; + this.state = 4481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4463; + this.state = 4482; this.match(HiveSqlParser.RPAREN); } } @@ -22833,18 +22960,18 @@ export class HiveSqlParser extends SQLParserBase { } public partitionSelectorVal(): PartitionSelectorValContext { let localContext = new PartitionSelectorValContext(this.context, this.state); - this.enterRule(localContext, 632, HiveSqlParser.RULE_partitionSelectorVal); + this.enterRule(localContext, 642, HiveSqlParser.RULE_partitionSelectorVal); try { this.enterOuterAlt(localContext, 1); { - this.state = 4465; + this.state = 4484; this.id_(); - this.state = 4468; + this.state = 4487; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 4466; + this.state = 4485; this.match(HiveSqlParser.KW_LIKE); } break; @@ -22855,14 +22982,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHANOREQUALTO: case HiveSqlParser.GREATERTHAN: { - this.state = 4467; + this.state = 4486; this.subQuerySelectorOperator(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4470; + this.state = 4489; this.constant(); } } @@ -22882,12 +23009,12 @@ export class HiveSqlParser extends SQLParserBase { } public subQuerySelectorOperator(): SubQuerySelectorOperatorContext { let localContext = new SubQuerySelectorOperatorContext(this.context, this.state); - this.enterRule(localContext, 634, HiveSqlParser.RULE_subQuerySelectorOperator); + this.enterRule(localContext, 644, HiveSqlParser.RULE_subQuerySelectorOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4472; + this.state = 4491; _la = this.tokenStream.LA(1); if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); @@ -22914,12 +23041,12 @@ export class HiveSqlParser extends SQLParserBase { } public sysFuncNames(): SysFuncNamesContext { let localContext = new SysFuncNamesContext(this.context, this.state); - this.enterRule(localContext, 636, HiveSqlParser.RULE_sysFuncNames); + this.enterRule(localContext, 646, HiveSqlParser.RULE_sysFuncNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4474; + this.state = 4493; _la = this.tokenStream.LA(1); if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); @@ -22946,15 +23073,15 @@ export class HiveSqlParser extends SQLParserBase { } public id_(): Id_Context { let localContext = new Id_Context(this.context, this.state); - this.enterRule(localContext, 638, HiveSqlParser.RULE_id_); + this.enterRule(localContext, 648, HiveSqlParser.RULE_id_); try { - this.state = 4478; + this.state = 4497; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4476; + this.state = 4495; this.match(HiveSqlParser.Identifier); } break; @@ -23199,7 +23326,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 4477; + this.state = 4496; this.nonReserved(); } break; @@ -23223,21 +23350,21 @@ export class HiveSqlParser extends SQLParserBase { } public functionIdentifier(): FunctionIdentifierContext { let localContext = new FunctionIdentifierContext(this.context, this.state); - this.enterRule(localContext, 640, HiveSqlParser.RULE_functionIdentifier); + this.enterRule(localContext, 650, HiveSqlParser.RULE_functionIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4480; + this.state = 4499; this.id_(); - this.state = 4483; + this.state = 4502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 4481; + this.state = 4500; this.match(HiveSqlParser.DOT); - this.state = 4482; + this.state = 4501; localContext._fn = this.id_(); } } @@ -23260,11 +23387,11 @@ export class HiveSqlParser extends SQLParserBase { } public principalIdentifier(): PrincipalIdentifierContext { let localContext = new PrincipalIdentifierContext(this.context, this.state); - this.enterRule(localContext, 642, HiveSqlParser.RULE_principalIdentifier); + this.enterRule(localContext, 652, HiveSqlParser.RULE_principalIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 4485; + this.state = 4504; this.id_(); } } @@ -23284,12 +23411,12 @@ export class HiveSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 644, HiveSqlParser.RULE_nonReserved); + this.enterRule(localContext, 654, HiveSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4487; + this.state = 4506; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); @@ -23316,12 +23443,12 @@ export class HiveSqlParser extends SQLParserBase { } public sql11ReservedKeywordsUsedAsFunctionName(): Sql11ReservedKeywordsUsedAsFunctionNameContext { let localContext = new Sql11ReservedKeywordsUsedAsFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 646, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); + this.enterRule(localContext, 656, HiveSqlParser.RULE_sql11ReservedKeywordsUsedAsFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4489; + this.state = 4508; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -23348,9 +23475,9 @@ export class HiveSqlParser extends SQLParserBase { } public configPropertiesItem(): ConfigPropertiesItemContext { let localContext = new ConfigPropertiesItemContext(this.context, this.state); - this.enterRule(localContext, 648, HiveSqlParser.RULE_configPropertiesItem); + this.enterRule(localContext, 658, HiveSqlParser.RULE_configPropertiesItem); try { - this.state = 4542; + this.state = 4561; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -23595,357 +23722,357 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4491; + this.state = 4510; this.id_(); } break; case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 2); { - this.state = 4492; + this.state = 4511; this.match(HiveSqlParser.KW_SELECT); } break; case HiveSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4493; + this.state = 4512; this.match(HiveSqlParser.KW_JOIN); } break; case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 4); { - this.state = 4494; + this.state = 4513; this.match(HiveSqlParser.KW_PARTITION); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 5); { - this.state = 4495; + this.state = 4514; this.match(HiveSqlParser.KW_MAP); } break; case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 6); { - this.state = 4496; + this.state = 4515; this.match(HiveSqlParser.KW_REDUCE); } break; case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 4497; + this.state = 4516; this.match(HiveSqlParser.KW_USER); } break; case HiveSqlParser.KW_PERCENT: this.enterOuterAlt(localContext, 8); { - this.state = 4498; + this.state = 4517; this.match(HiveSqlParser.KW_PERCENT); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 9); { - this.state = 4499; + this.state = 4518; this.match(HiveSqlParser.KW_INTERVAL); } break; case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 10); { - this.state = 4500; + this.state = 4519; this.match(HiveSqlParser.KW_ROWS); } break; case HiveSqlParser.KW_UNION: this.enterOuterAlt(localContext, 11); { - this.state = 4501; + this.state = 4520; this.match(HiveSqlParser.KW_UNION); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 12); { - this.state = 4502; + this.state = 4521; this.match(HiveSqlParser.KW_GROUP); } break; case HiveSqlParser.KW_MERGE: this.enterOuterAlt(localContext, 13); { - this.state = 4503; + this.state = 4522; this.match(HiveSqlParser.KW_MERGE); } break; case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 14); { - this.state = 4504; + this.state = 4523; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_FETCH: this.enterOuterAlt(localContext, 15); { - this.state = 4505; + this.state = 4524; this.match(HiveSqlParser.KW_FETCH); } break; case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 16); { - this.state = 4506; + this.state = 4525; this.match(HiveSqlParser.KW_LOCAL); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 17); { - this.state = 4507; + this.state = 4526; this.match(HiveSqlParser.KW_DROP); } break; case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 18); { - this.state = 4508; + this.state = 4527; this.match(HiveSqlParser.KW_TABLE); } break; case HiveSqlParser.KW_ON: this.enterOuterAlt(localContext, 19); { - this.state = 4509; + this.state = 4528; this.match(HiveSqlParser.KW_ON); } break; case HiveSqlParser.KW_ROW: this.enterOuterAlt(localContext, 20); { - this.state = 4510; + this.state = 4529; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 21); { - this.state = 4511; + this.state = 4530; this.match(HiveSqlParser.KW_GROUPING); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 22); { - this.state = 4512; + this.state = 4531; this.match(HiveSqlParser.KW_SET); } break; case HiveSqlParser.KW_FORCE: this.enterOuterAlt(localContext, 23); { - this.state = 4513; + this.state = 4532; this.match(HiveSqlParser.KW_FORCE); } break; case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 24); { - this.state = 4514; + this.state = 4533; this.match(HiveSqlParser.KW_START); } break; case HiveSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 25); { - this.state = 4515; + this.state = 4534; this.match(HiveSqlParser.KW_INSERT); } break; case HiveSqlParser.KW_CONF: this.enterOuterAlt(localContext, 26); { - this.state = 4516; + this.state = 4535; this.match(HiveSqlParser.KW_CONF); } break; case HiveSqlParser.KW_INTO: this.enterOuterAlt(localContext, 27); { - this.state = 4517; + this.state = 4536; this.match(HiveSqlParser.KW_INTO); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 28); { - this.state = 4518; + this.state = 4537; this.match(HiveSqlParser.KW_UNIQUE); } break; case HiveSqlParser.KW_COLUMN: this.enterOuterAlt(localContext, 29); { - this.state = 4519; + this.state = 4538; this.match(HiveSqlParser.KW_COLUMN); } break; case HiveSqlParser.KW_TRANSFORM: this.enterOuterAlt(localContext, 30); { - this.state = 4520; + this.state = 4539; this.match(HiveSqlParser.KW_TRANSFORM); } break; case HiveSqlParser.KW_DISTINCT: this.enterOuterAlt(localContext, 31); { - this.state = 4521; + this.state = 4540; this.match(HiveSqlParser.KW_DISTINCT); } break; case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 32); { - this.state = 4522; + this.state = 4541; this.match(HiveSqlParser.KW_IN); } break; case HiveSqlParser.KW_REFERENCES: this.enterOuterAlt(localContext, 33); { - this.state = 4523; + this.state = 4542; this.match(HiveSqlParser.KW_REFERENCES); } break; case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 34); { - this.state = 4524; + this.state = 4543; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case HiveSqlParser.KW_ONLY: this.enterOuterAlt(localContext, 35); { - this.state = 4525; + this.state = 4544; this.match(HiveSqlParser.KW_ONLY); } break; case HiveSqlParser.KW_END: this.enterOuterAlt(localContext, 36); { - this.state = 4526; + this.state = 4545; this.match(HiveSqlParser.KW_END); } break; case HiveSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 37); { - this.state = 4527; + this.state = 4546; this.match(HiveSqlParser.KW_FUNCTION); } break; case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 38); { - this.state = 4528; + this.state = 4547; this.match(HiveSqlParser.KW_UPDATE); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 39); { - this.state = 4529; + this.state = 4548; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 40); { - this.state = 4530; + this.state = 4549; this.match(HiveSqlParser.KW_DDL); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 41); { - this.state = 4531; + this.state = 4550; this.match(HiveSqlParser.KW_VALUES); } break; case HiveSqlParser.KW_TIME: this.enterOuterAlt(localContext, 42); { - this.state = 4532; + this.state = 4551; this.match(HiveSqlParser.KW_TIME); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 43); { - this.state = 4533; + this.state = 4552; this.match(HiveSqlParser.KW_IS); } break; case HiveSqlParser.KW_FOR: this.enterOuterAlt(localContext, 44); { - this.state = 4534; + this.state = 4553; this.match(HiveSqlParser.KW_FOR); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 45); { - this.state = 4535; + this.state = 4554; this.match(HiveSqlParser.KW_NOT); } break; case HiveSqlParser.KW_BINARY: this.enterOuterAlt(localContext, 46); { - this.state = 4536; + this.state = 4555; this.match(HiveSqlParser.KW_BINARY); } break; case HiveSqlParser.KW_USING: this.enterOuterAlt(localContext, 47); { - this.state = 4537; + this.state = 4556; this.match(HiveSqlParser.KW_USING); } break; case HiveSqlParser.KW_READS: this.enterOuterAlt(localContext, 48); { - this.state = 4538; + this.state = 4557; this.match(HiveSqlParser.KW_READS); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 49); { - this.state = 4539; + this.state = 4558; this.match(HiveSqlParser.KW_BETWEEN); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 50); { - this.state = 4540; + this.state = 4559; this.match(HiveSqlParser.KW_CURRENT); } break; case HiveSqlParser.KW_AS: this.enterOuterAlt(localContext, 51); { - this.state = 4541; + this.state = 4560; this.match(HiveSqlParser.KW_AS); } break; @@ -23969,56 +24096,56 @@ export class HiveSqlParser extends SQLParserBase { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 650, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 660, HiveSqlParser.RULE_resourcePlanDdlStatements); let _la: number; try { - this.state = 4709; + this.state = 4728; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4544; + this.state = 4563; this.match(HiveSqlParser.KW_CREATE); - this.state = 4545; + this.state = 4564; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4546; + this.state = 4565; this.match(HiveSqlParser.KW_PLAN); - this.state = 4548; + this.state = 4567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4547; + this.state = 4566; this.ifNotExists(); } } - this.state = 4559; + this.state = 4578; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: { - this.state = 4550; + this.state = 4569; localContext._name = this.id_(); - this.state = 4551; + this.state = 4570; this.match(HiveSqlParser.KW_LIKE); - this.state = 4552; + this.state = 4571; localContext._likeName = this.id_(); } break; case 2: { - this.state = 4554; + this.state = 4573; localContext._name = this.id_(); - this.state = 4557; + this.state = 4576; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 597, this.context) ) { case 1: { - this.state = 4555; + this.state = 4574; this.match(HiveSqlParser.KW_WITH); - this.state = 4556; + this.state = 4575; this.rpAssignList(); } break; @@ -24031,57 +24158,57 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4561; + this.state = 4580; this.match(HiveSqlParser.KW_ALTER); - this.state = 4562; + this.state = 4581; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4563; + this.state = 4582; this.match(HiveSqlParser.KW_PLAN); - this.state = 4564; + this.state = 4583; localContext._name = this.id_(); - this.state = 4589; + this.state = 4608; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 4565; + this.state = 4584; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4566; + this.state = 4585; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 4567; + this.state = 4586; this.match(HiveSqlParser.KW_SET); - this.state = 4568; + this.state = 4587; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4569; + this.state = 4588; this.match(HiveSqlParser.KW_UNSET); - this.state = 4570; + this.state = 4589; this.rpUnassign(); - this.state = 4575; + this.state = 4594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4571; + this.state = 4590; this.match(HiveSqlParser.COMMA); - this.state = 4572; + this.state = 4591; this.rpUnassign(); } } - this.state = 4577; + this.state = 4596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24089,24 +24216,24 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_RENAME: { - this.state = 4578; + this.state = 4597; this.match(HiveSqlParser.KW_RENAME); - this.state = 4579; + this.state = 4598; this.match(HiveSqlParser.KW_TO); - this.state = 4580; + this.state = 4599; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 4581; + this.state = 4600; this.activate(); - this.state = 4583; + this.state = 4602; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { case 1: { - this.state = 4582; + this.state = 4601; this.enable(); } break; @@ -24116,14 +24243,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4585; + this.state = 4604; this.enable(); - this.state = 4587; + this.state = 4606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4586; + this.state = 4605; this.activate(); } } @@ -24138,88 +24265,88 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4591; + this.state = 4610; this.match(HiveSqlParser.KW_DROP); - this.state = 4592; + this.state = 4611; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4593; + this.state = 4612; this.match(HiveSqlParser.KW_PLAN); - this.state = 4595; + this.state = 4614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4594; + this.state = 4613; this.ifExists(); } } - this.state = 4597; + this.state = 4616; localContext._name = this.id_(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4600; + this.state = 4619; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4598; + this.state = 4617; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4599; + this.state = 4618; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4602; + this.state = 4621; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 4603; + this.state = 4622; this.match(HiveSqlParser.KW_MANAGEMENT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4605; + this.state = 4624; this.match(HiveSqlParser.KW_REPLACE); - this.state = 4617; + this.state = 4636; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 4606; + this.state = 4625; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 4607; + this.state = 4626; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4608; + this.state = 4627; this.match(HiveSqlParser.KW_PLAN); - this.state = 4609; + this.state = 4628; this.match(HiveSqlParser.KW_WITH); - this.state = 4610; + this.state = 4629; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 4611; + this.state = 4630; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4612; + this.state = 4631; this.match(HiveSqlParser.KW_PLAN); - this.state = 4613; + this.state = 4632; localContext._dest = this.id_(); - this.state = 4614; + this.state = 4633; this.match(HiveSqlParser.KW_WITH); - this.state = 4615; + this.state = 4634; localContext._src = this.id_(); } break; @@ -24231,93 +24358,93 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4619; + this.state = 4638; this.match(HiveSqlParser.KW_CREATE); - this.state = 4620; + this.state = 4639; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4621; + this.state = 4640; localContext._rpName = this.id_(); - this.state = 4622; + this.state = 4641; this.match(HiveSqlParser.DOT); - this.state = 4623; + this.state = 4642; localContext._triggerName = this.id_(); - this.state = 4624; + this.state = 4643; this.match(HiveSqlParser.KW_WHEN); - this.state = 4625; + this.state = 4644; this.triggerAtomExpression(); - this.state = 4626; + this.state = 4645; this.match(HiveSqlParser.KW_DO); - this.state = 4627; + this.state = 4646; this.triggerActionExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4629; + this.state = 4648; this.match(HiveSqlParser.KW_ALTER); - this.state = 4630; + this.state = 4649; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4631; + this.state = 4650; localContext._rpName = this.id_(); - this.state = 4632; + this.state = 4651; this.match(HiveSqlParser.DOT); - this.state = 4633; + this.state = 4652; localContext._triggerName = this.id_(); - this.state = 4650; + this.state = 4669; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 4634; + this.state = 4653; this.match(HiveSqlParser.KW_WHEN); - this.state = 4635; + this.state = 4654; this.triggerAtomExpression(); - this.state = 4636; + this.state = 4655; this.match(HiveSqlParser.KW_DO); - this.state = 4637; + this.state = 4656; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4643; + this.state = 4662; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 4639; + this.state = 4658; this.match(HiveSqlParser.KW_ADD); - this.state = 4640; + this.state = 4659; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 4641; + this.state = 4660; this.match(HiveSqlParser.KW_DROP); - this.state = 4642; + this.state = 4661; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4648; + this.state = 4667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 4645; + this.state = 4664; this.match(HiveSqlParser.KW_POOL); - this.state = 4646; + this.state = 4665; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4647; + this.state = 4666; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -24334,73 +24461,73 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4652; + this.state = 4671; this.match(HiveSqlParser.KW_DROP); - this.state = 4653; + this.state = 4672; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4654; + this.state = 4673; localContext._rpName = this.id_(); - this.state = 4655; + this.state = 4674; this.match(HiveSqlParser.DOT); - this.state = 4656; + this.state = 4675; localContext._triggerName = this.id_(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4658; + this.state = 4677; this.match(HiveSqlParser.KW_CREATE); - this.state = 4659; + this.state = 4678; this.match(HiveSqlParser.KW_POOL); - this.state = 4660; + this.state = 4679; localContext._rpName = this.id_(); - this.state = 4661; + this.state = 4680; this.match(HiveSqlParser.DOT); - this.state = 4662; + this.state = 4681; this.poolPath(); - this.state = 4663; + this.state = 4682; this.match(HiveSqlParser.KW_WITH); - this.state = 4664; + this.state = 4683; this.poolAssignList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4666; + this.state = 4685; this.match(HiveSqlParser.KW_ALTER); - this.state = 4667; + this.state = 4686; this.match(HiveSqlParser.KW_POOL); - this.state = 4668; + this.state = 4687; localContext._rpName = this.id_(); - this.state = 4669; + this.state = 4688; this.match(HiveSqlParser.DOT); - this.state = 4670; + this.state = 4689; this.poolPath(); - this.state = 4678; + this.state = 4697; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 4671; + this.state = 4690; this.match(HiveSqlParser.KW_SET); - this.state = 4672; + this.state = 4691; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4673; + this.state = 4692; this.match(HiveSqlParser.KW_UNSET); - this.state = 4674; + this.state = 4693; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4675; + this.state = 4694; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -24409,9 +24536,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4676; + this.state = 4695; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4677; + this.state = 4696; localContext._triggerName = this.id_(); } break; @@ -24423,22 +24550,22 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4680; + this.state = 4699; this.match(HiveSqlParser.KW_DROP); - this.state = 4681; + this.state = 4700; this.match(HiveSqlParser.KW_POOL); - this.state = 4682; + this.state = 4701; localContext._rpName = this.id_(); - this.state = 4683; + this.state = 4702; this.match(HiveSqlParser.DOT); - this.state = 4684; + this.state = 4703; this.poolPath(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4686; + this.state = 4705; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 58)) { this.errorHandler.recoverInline(this); @@ -24447,46 +24574,46 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4687; + this.state = 4706; localContext._mappingType = this.mappingTypes(); - this.state = 4688; + this.state = 4707; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4689; + this.state = 4708; this.match(HiveSqlParser.StringLiteral); - this.state = 4690; + this.state = 4709; this.match(HiveSqlParser.KW_IN); - this.state = 4691; + this.state = 4710; localContext._rpName = this.id_(); - this.state = 4695; + this.state = 4714; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 4692; + this.state = 4711; this.match(HiveSqlParser.KW_TO); - this.state = 4693; + this.state = 4712; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4694; + this.state = 4713; this.match(HiveSqlParser.KW_UNMANAGED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4700; + this.state = 4719; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: { - this.state = 4697; + this.state = 4716; this.match(HiveSqlParser.KW_WITH); - this.state = 4698; + this.state = 4717; this.match(HiveSqlParser.KW_ORDER); - this.state = 4699; + this.state = 4718; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -24496,17 +24623,17 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4702; + this.state = 4721; this.match(HiveSqlParser.KW_DROP); - this.state = 4703; + this.state = 4722; localContext._mappingType = this.mappingTypes(); - this.state = 4704; + this.state = 4723; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4705; + this.state = 4724; this.match(HiveSqlParser.StringLiteral); - this.state = 4706; + this.state = 4725; this.match(HiveSqlParser.KW_IN); - this.state = 4707; + this.state = 4726; localContext._rpName = this.id_(); } break; @@ -24528,12 +24655,12 @@ export class HiveSqlParser extends SQLParserBase { } public mappingTypes(): MappingTypesContext { let localContext = new MappingTypesContext(this.context, this.state); - this.enterRule(localContext, 652, HiveSqlParser.RULE_mappingTypes); + this.enterRule(localContext, 662, HiveSqlParser.RULE_mappingTypes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4711; + this.state = 4730; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 144 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -24560,32 +24687,32 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 654, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 664, HiveSqlParser.RULE_rpAssign); try { - this.state = 4720; + this.state = 4739; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4713; + this.state = 4732; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4714; + this.state = 4733; this.match(HiveSqlParser.EQUAL); - this.state = 4715; + this.state = 4734; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4716; + this.state = 4735; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4717; + this.state = 4736; this.match(HiveSqlParser.KW_POOL); - this.state = 4718; + this.state = 4737; this.match(HiveSqlParser.EQUAL); - this.state = 4719; + this.state = 4738; this.poolPath(); } break; @@ -24609,26 +24736,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 656, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 666, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4722; + this.state = 4741; this.rpAssign(); - this.state = 4727; + this.state = 4746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4723; + this.state = 4742; this.match(HiveSqlParser.COMMA); - this.state = 4724; + this.state = 4743; this.rpAssign(); } } - this.state = 4729; + this.state = 4748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24650,24 +24777,24 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 658, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 668, HiveSqlParser.RULE_rpUnassign); try { - this.state = 4733; + this.state = 4752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4730; + this.state = 4749; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4731; + this.state = 4750; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4732; + this.state = 4751; this.match(HiveSqlParser.KW_POOL); } break; @@ -24691,20 +24818,20 @@ export class HiveSqlParser extends SQLParserBase { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 660, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 670, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4735; + this.state = 4754; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 4738; + this.state = 4757; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4736; + this.state = 4755; this.match(HiveSqlParser.KW_WITH); - this.state = 4737; + this.state = 4756; this.match(HiveSqlParser.KW_REPLACE); } break; @@ -24727,12 +24854,12 @@ export class HiveSqlParser extends SQLParserBase { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 662, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 672, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4740; + this.state = 4759; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -24759,12 +24886,12 @@ export class HiveSqlParser extends SQLParserBase { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 674, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4742; + this.state = 4761; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -24791,12 +24918,12 @@ export class HiveSqlParser extends SQLParserBase { } public year(): YearContext { let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_year); + this.enterRule(localContext, 676, HiveSqlParser.RULE_year); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4744; + this.state = 4763; _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 393)) { this.errorHandler.recoverInline(this); @@ -24823,12 +24950,12 @@ export class HiveSqlParser extends SQLParserBase { } public month(): MonthContext { let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_month); + this.enterRule(localContext, 678, HiveSqlParser.RULE_month); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4746; + this.state = 4765; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -24855,12 +24982,12 @@ export class HiveSqlParser extends SQLParserBase { } public week(): WeekContext { let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_week); + this.enterRule(localContext, 680, HiveSqlParser.RULE_week); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4748; + this.state = 4767; _la = this.tokenStream.LA(1); if(!(_la === 381 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -24887,12 +25014,12 @@ export class HiveSqlParser extends SQLParserBase { } public day(): DayContext { let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_day); + this.enterRule(localContext, 682, HiveSqlParser.RULE_day); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4750; + this.state = 4769; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 74)) { this.errorHandler.recoverInline(this); @@ -24919,12 +25046,12 @@ export class HiveSqlParser extends SQLParserBase { } public hour(): HourContext { let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_hour); + this.enterRule(localContext, 684, HiveSqlParser.RULE_hour); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4752; + this.state = 4771; _la = this.tokenStream.LA(1); if(!(_la === 148 || _la === 149)) { this.errorHandler.recoverInline(this); @@ -24951,12 +25078,12 @@ export class HiveSqlParser extends SQLParserBase { } public minute(): MinuteContext { let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_minute); + this.enterRule(localContext, 686, HiveSqlParser.RULE_minute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4754; + this.state = 4773; _la = this.tokenStream.LA(1); if(!(_la === 206 || _la === 207)) { this.errorHandler.recoverInline(this); @@ -24983,12 +25110,12 @@ export class HiveSqlParser extends SQLParserBase { } public second(): SecondContext { let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_second); + this.enterRule(localContext, 688, HiveSqlParser.RULE_second); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4756; + this.state = 4775; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -25015,12 +25142,12 @@ export class HiveSqlParser extends SQLParserBase { } public decimal(): DecimalContext { let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_decimal); + this.enterRule(localContext, 690, HiveSqlParser.RULE_decimal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4758; + this.state = 4777; _la = this.tokenStream.LA(1); if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -25047,28 +25174,28 @@ export class HiveSqlParser extends SQLParserBase { } public poolPath(): PoolPathContext { let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_poolPath); + this.enterRule(localContext, 692, HiveSqlParser.RULE_poolPath); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4760; + this.state = 4779; this.id_(); - this.state = 4765; + this.state = 4784; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4761; + this.state = 4780; this.match(HiveSqlParser.DOT); - this.state = 4762; + this.state = 4781; this.id_(); } } } - this.state = 4767; + this.state = 4786; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); } @@ -25090,16 +25217,16 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 694, HiveSqlParser.RULE_triggerAtomExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4768; + this.state = 4787; this.id_(); - this.state = 4769; + this.state = 4788; this.match(HiveSqlParser.GREATERTHAN); - this.state = 4770; + this.state = 4789; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -25126,26 +25253,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 696, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 4776; + this.state = 4795; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 4772; + this.state = 4791; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4773; + this.state = 4792; this.match(HiveSqlParser.KW_MOVE); - this.state = 4774; + this.state = 4793; this.match(HiveSqlParser.KW_TO); - this.state = 4775; + this.state = 4794; this.poolPath(); } break; @@ -25169,50 +25296,50 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 698, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 4790; + this.state = 4809; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 4778; + this.state = 4797; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 4779; + this.state = 4798; this.match(HiveSqlParser.EQUAL); - this.state = 4780; + this.state = 4799; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 4781; + this.state = 4800; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4782; + this.state = 4801; this.match(HiveSqlParser.EQUAL); - this.state = 4783; + this.state = 4802; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 4784; + this.state = 4803; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 4785; + this.state = 4804; this.match(HiveSqlParser.EQUAL); - this.state = 4786; + this.state = 4805; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 4787; + this.state = 4806; this.match(HiveSqlParser.KW_PATH); - this.state = 4788; + this.state = 4807; this.match(HiveSqlParser.EQUAL); - this.state = 4789; + this.state = 4808; localContext._path = this.poolPath(); } break; @@ -25237,26 +25364,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 700, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4792; + this.state = 4811; this.poolAssign(); - this.state = 4797; + this.state = 4816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4793; + this.state = 4812; this.match(HiveSqlParser.COMMA); - this.state = 4794; + this.state = 4813; this.poolAssign(); } } - this.state = 4799; + this.state = 4818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25293,7 +25420,7 @@ export class HiveSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,438,4801,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,438,4820,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, @@ -25353,449 +25480,451 @@ export class HiveSqlParser extends SQLParserBase { 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, - 1,0,5,0,694,8,0,10,0,12,0,697,9,0,1,0,1,0,1,1,1,1,3,1,703,8,1,1, - 1,3,1,706,8,1,1,2,1,2,5,2,710,8,2,10,2,12,2,713,9,2,1,2,1,2,1,2, - 3,2,718,8,2,1,3,1,3,1,3,1,3,1,3,3,3,725,8,3,1,3,1,3,1,3,1,3,1,3, - 1,3,1,3,1,3,3,3,735,8,3,1,3,3,3,738,8,3,1,3,1,3,3,3,742,8,3,1,4, - 1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,757,8,5,1,5, - 1,5,1,5,1,5,1,5,3,5,764,8,5,1,5,1,5,1,5,1,5,3,5,770,8,5,1,5,1,5, - 1,5,3,5,775,8,5,1,5,1,5,1,5,3,5,780,8,5,1,5,3,5,783,8,5,1,5,1,5, + 2,346,7,346,2,347,7,347,2,348,7,348,2,349,7,349,2,350,7,350,1,0, + 5,0,704,8,0,10,0,12,0,707,9,0,1,0,1,0,1,1,1,1,3,1,713,8,1,1,1,3, + 1,716,8,1,1,2,1,2,5,2,720,8,2,10,2,12,2,723,9,2,1,2,1,2,1,2,3,2, + 728,8,2,1,3,1,3,1,3,1,3,1,3,3,3,735,8,3,1,3,1,3,1,3,1,3,1,3,1,3, + 1,3,1,3,3,3,745,8,3,1,3,3,3,748,8,3,1,3,1,3,3,3,752,8,3,1,4,1,4, + 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,767,8,5,1,5,1,5, + 1,5,1,5,1,5,3,5,774,8,5,1,5,1,5,1,5,1,5,3,5,780,8,5,1,5,1,5,1,5, + 3,5,785,8,5,1,5,1,5,1,5,3,5,790,8,5,1,5,3,5,793,8,5,1,5,1,5,1,5, 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,5,5,805,8,5,10,5,12,5,808,9,5,1,5,1,5,5,5,812,8,5,10,5,12, - 5,815,9,5,3,5,817,8,5,1,6,1,6,1,6,3,6,822,8,6,1,6,1,6,1,6,3,6,827, - 8,6,1,6,1,6,1,6,1,6,3,6,833,8,6,1,7,1,7,3,7,837,8,7,1,7,1,7,1,7, - 1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,850,8,8,1,9,1,9,3,9,854,8,9, - 1,9,1,9,3,9,858,8,9,1,9,1,9,1,9,3,9,863,8,9,1,10,1,10,1,10,1,10, - 1,10,3,10,870,8,10,1,10,1,10,3,10,874,8,10,1,11,1,11,1,11,3,11,879, - 8,11,1,12,1,12,1,12,1,12,1,12,3,12,886,8,12,1,12,1,12,3,12,890,8, - 12,1,13,1,13,1,13,3,13,895,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1, + 1,5,5,5,815,8,5,10,5,12,5,818,9,5,1,5,1,5,5,5,822,8,5,10,5,12,5, + 825,9,5,3,5,827,8,5,1,6,1,6,1,6,3,6,832,8,6,1,6,1,6,1,6,3,6,837, + 8,6,1,6,1,6,1,6,1,6,3,6,843,8,6,1,7,1,7,3,7,847,8,7,1,7,1,7,1,7, + 1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,3,8,860,8,8,1,9,1,9,3,9,864,8,9, + 1,9,1,9,3,9,868,8,9,1,9,1,9,1,9,3,9,873,8,9,1,10,1,10,1,10,1,10, + 1,10,3,10,880,8,10,1,10,1,10,3,10,884,8,10,1,11,1,11,1,11,3,11,889, + 8,11,1,12,1,12,1,12,1,12,1,12,3,12,896,8,12,1,12,1,12,3,12,900,8, + 12,1,13,1,13,1,13,3,13,905,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1, 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1, - 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,4,14,941, - 8,14,11,14,12,14,942,1,14,1,14,1,14,4,14,948,8,14,11,14,12,14,949, - 1,14,1,14,1,14,3,14,955,8,14,1,15,1,15,1,15,1,16,1,16,1,16,1,16, + 14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,4,14,951, + 8,14,11,14,12,14,952,1,14,1,14,1,14,4,14,958,8,14,11,14,12,14,959, + 1,14,1,14,1,14,3,14,965,8,14,1,15,1,15,1,15,1,16,1,16,1,16,1,16, 1,17,1,17,1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21, - 1,21,3,21,978,8,21,1,21,1,21,3,21,982,8,21,1,21,1,21,3,21,986,8, - 21,1,21,3,21,989,8,21,1,21,1,21,3,21,993,8,21,1,21,1,21,1,21,3,21, - 998,8,21,1,21,1,21,1,21,1,21,3,21,1004,8,21,1,21,1,21,3,21,1008, - 8,21,1,21,1,21,1,21,1,21,3,21,1014,8,21,3,21,1016,8,21,1,22,1,22, - 1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24,1027,8,24,1,24,1,24,3,24, - 1031,8,24,1,25,1,25,1,25,1,26,1,26,3,26,1038,8,26,1,26,1,26,1,26, - 1,26,1,26,1,26,3,26,1046,8,26,1,26,3,26,1049,8,26,1,27,1,27,1,27, - 3,27,1054,8,27,1,27,1,27,3,27,1058,8,27,1,27,3,27,1061,8,27,1,28, - 1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29,1071,8,29,1,29,1,29,1,29, - 1,29,1,29,1,29,3,29,1079,8,29,5,29,1081,8,29,10,29,12,29,1084,9, - 29,3,29,1086,8,29,1,30,1,30,3,30,1090,8,30,1,31,1,31,3,31,1094,8, - 31,1,31,3,31,1097,8,31,1,32,1,32,1,32,3,32,1102,8,32,1,32,1,32,1, - 32,1,32,3,32,1108,8,32,1,32,1,32,1,32,3,32,1113,8,32,1,32,1,32,1, - 32,3,32,1118,8,32,1,32,1,32,3,32,1122,8,32,1,33,1,33,1,33,1,33,1, - 33,1,33,1,33,1,33,1,33,3,33,1133,8,33,3,33,1135,8,33,1,33,1,33,3, - 33,1139,8,33,1,34,1,34,1,35,1,35,1,36,1,36,1,36,1,36,3,36,1149,8, - 36,1,36,1,36,3,36,1153,8,36,1,36,1,36,1,36,1,36,3,36,1159,8,36,1, - 36,3,36,1162,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1169,8,36,1,36,1, - 36,1,36,3,36,1174,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1182,8, - 36,1,36,1,36,1,36,3,36,1187,8,36,1,36,1,36,3,36,1191,8,36,1,36,1, - 36,1,36,1,36,1,36,1,36,3,36,1199,8,36,1,36,1,36,1,36,3,36,1204,8, - 36,1,36,1,36,1,36,1,36,3,36,1210,8,36,1,36,1,36,1,36,1,36,3,36,1216, - 8,36,1,36,3,36,1219,8,36,1,36,3,36,1222,8,36,1,36,3,36,1225,8,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1234,8,36,1,36,1,36,1,36, - 1,36,1,36,1,36,3,36,1242,8,36,1,36,1,36,1,36,3,36,1247,8,36,1,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1255,8,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1262,8,36,1,36,3,36,1265,8,36,1,36,3,36,1268,8,36,3,36,1270, - 8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1281,8,36, - 3,36,1283,8,36,1,36,3,36,1286,8,36,1,36,3,36,1289,8,36,1,36,3,36, - 1292,8,36,1,36,3,36,1295,8,36,1,36,3,36,1298,8,36,3,36,1300,8,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1312,8,36, - 1,36,1,36,1,36,1,36,3,36,1318,8,36,1,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1326,8,36,3,36,1328,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,3,37,1338,8,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39, + 1,21,3,21,988,8,21,1,21,1,21,3,21,992,8,21,1,21,1,21,3,21,996,8, + 21,1,21,3,21,999,8,21,1,21,1,21,3,21,1003,8,21,1,21,1,21,1,21,3, + 21,1008,8,21,1,21,1,21,1,21,1,21,3,21,1014,8,21,1,21,1,21,3,21,1018, + 8,21,1,21,1,21,1,21,1,21,3,21,1024,8,21,3,21,1026,8,21,1,22,1,22, + 1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24,1037,8,24,1,24,1,24,3,24, + 1041,8,24,1,25,1,25,1,25,1,26,1,26,3,26,1048,8,26,1,26,1,26,1,26, + 1,26,1,26,1,26,3,26,1056,8,26,1,26,3,26,1059,8,26,1,27,1,27,1,27, + 3,27,1064,8,27,1,27,1,27,3,27,1068,8,27,1,27,3,27,1071,8,27,1,28, + 1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29,1081,8,29,1,29,1,29,1,29, + 1,29,1,29,1,29,3,29,1089,8,29,5,29,1091,8,29,10,29,12,29,1094,9, + 29,3,29,1096,8,29,1,30,1,30,3,30,1100,8,30,1,31,1,31,3,31,1104,8, + 31,1,31,3,31,1107,8,31,1,32,1,32,1,32,3,32,1112,8,32,1,32,1,32,1, + 32,1,32,3,32,1118,8,32,1,32,1,32,1,32,3,32,1123,8,32,1,32,1,32,1, + 32,3,32,1128,8,32,1,32,1,32,3,32,1132,8,32,1,33,1,33,1,33,1,33,1, + 33,1,33,1,33,1,33,1,33,3,33,1143,8,33,3,33,1145,8,33,1,33,1,33,3, + 33,1149,8,33,1,34,1,34,1,35,1,35,1,36,1,36,1,36,1,36,3,36,1159,8, + 36,1,36,1,36,3,36,1163,8,36,1,36,1,36,1,36,1,36,3,36,1169,8,36,1, + 36,3,36,1172,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1179,8,36,1,36,1, + 36,1,36,3,36,1184,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1192,8, + 36,1,36,1,36,1,36,3,36,1197,8,36,1,36,1,36,3,36,1201,8,36,1,36,1, + 36,1,36,1,36,1,36,1,36,3,36,1209,8,36,1,36,1,36,1,36,3,36,1214,8, + 36,1,36,1,36,1,36,1,36,3,36,1220,8,36,1,36,1,36,1,36,1,36,3,36,1226, + 8,36,1,36,3,36,1229,8,36,1,36,3,36,1232,8,36,1,36,3,36,1235,8,36, + 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1244,8,36,1,36,1,36,1,36, + 1,36,1,36,1,36,3,36,1252,8,36,1,36,1,36,1,36,3,36,1257,8,36,1,36, + 1,36,1,36,1,36,1,36,1,36,3,36,1265,8,36,1,36,1,36,1,36,1,36,1,36, + 3,36,1272,8,36,1,36,3,36,1275,8,36,1,36,3,36,1278,8,36,3,36,1280, + 8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1291,8,36, + 3,36,1293,8,36,1,36,3,36,1296,8,36,1,36,3,36,1299,8,36,1,36,3,36, + 1302,8,36,1,36,3,36,1305,8,36,1,36,3,36,1308,8,36,3,36,1310,8,36, + 1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1322,8,36, + 1,36,1,36,1,36,1,36,3,36,1328,8,36,1,36,1,36,1,36,1,36,1,36,1,36, + 3,36,1336,8,36,3,36,1338,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37, + 1,37,3,37,1348,8,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39, 1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,43,1,43, - 1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,3,45,1371,8,45,1,45, - 1,45,1,45,3,45,1376,8,45,1,46,1,46,3,46,1380,8,46,1,46,1,46,3,46, - 1384,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1391,8,47,1,47,1,47,1,47, - 5,47,1396,8,47,10,47,12,47,1399,9,47,1,47,1,47,1,47,3,47,1404,8, - 47,1,48,1,48,3,48,1408,8,48,1,48,3,48,1411,8,48,1,48,1,48,1,48,5, - 48,1416,8,48,10,48,12,48,1419,9,48,1,48,1,48,1,48,1,49,1,49,1,49, + 1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,3,45,1381,8,45,1,45, + 1,45,1,45,3,45,1386,8,45,1,46,1,46,3,46,1390,8,46,1,46,1,46,3,46, + 1394,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1401,8,47,1,47,1,47,1,47, + 5,47,1406,8,47,10,47,12,47,1409,9,47,1,47,1,47,1,47,3,47,1414,8, + 47,1,48,1,48,3,48,1418,8,48,1,48,3,48,1421,8,48,1,48,1,48,1,48,5, + 48,1426,8,48,10,48,12,48,1429,9,48,1,48,1,48,1,48,1,49,1,49,1,49, 1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52, - 1,52,3,52,1441,8,52,1,53,1,53,1,53,3,53,1446,8,53,1,53,1,53,3,53, - 1450,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55,1458,8,55,1,56,1,56, - 1,56,1,57,1,57,1,57,1,57,3,57,1467,8,57,1,57,1,57,1,57,1,57,1,57, - 3,57,1474,8,57,1,58,1,58,1,58,1,58,3,58,1480,8,58,1,58,1,58,1,58, - 1,58,1,58,3,58,1487,8,58,1,58,3,58,1490,8,58,1,58,1,58,1,58,1,58, - 3,58,1496,8,58,1,59,1,59,1,59,5,59,1501,8,59,10,59,12,59,1504,9, - 59,1,60,1,60,1,60,1,60,1,60,3,60,1511,8,60,1,61,1,61,1,62,1,62,1, - 62,5,62,1518,8,62,10,62,12,62,1521,9,62,1,63,1,63,1,63,1,63,1,63, - 1,63,3,63,1529,8,63,1,64,1,64,1,64,1,64,1,64,3,64,1536,8,64,1,65, + 1,52,3,52,1451,8,52,1,53,1,53,1,53,3,53,1456,8,53,1,53,1,53,3,53, + 1460,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55,1468,8,55,1,56,1,56, + 1,56,1,57,1,57,1,57,1,57,3,57,1477,8,57,1,57,1,57,1,57,1,57,1,57, + 3,57,1484,8,57,1,58,1,58,1,58,1,58,3,58,1490,8,58,1,58,1,58,1,58, + 1,58,1,58,3,58,1497,8,58,1,58,3,58,1500,8,58,1,58,1,58,1,58,1,58, + 3,58,1506,8,58,1,59,1,59,1,59,5,59,1511,8,59,10,59,12,59,1514,9, + 59,1,60,1,60,1,60,1,60,1,60,3,60,1521,8,60,1,61,1,61,1,62,1,62,1, + 62,5,62,1528,8,62,10,62,12,62,1531,9,62,1,63,1,63,1,63,1,63,1,63, + 1,63,3,63,1539,8,63,1,64,1,64,1,64,1,64,1,64,3,64,1546,8,64,1,65, 1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,68,1,68, - 1,68,1,68,1,69,1,69,3,69,1556,8,69,1,69,1,69,1,69,1,69,1,69,3,69, - 1563,8,69,3,69,1565,8,69,1,70,1,70,1,70,5,70,1570,8,70,10,70,12, - 70,1573,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1,73,3,73,1582,8,73,1, - 73,1,73,1,73,1,73,1,73,1,73,3,73,1590,8,73,1,74,1,74,3,74,1594,8, - 74,1,74,1,74,3,74,1598,8,74,1,74,1,74,1,75,1,75,1,75,1,76,1,76,1, - 76,1,76,1,76,1,76,3,76,1611,8,76,1,76,1,76,1,76,1,77,1,77,1,77,1, - 77,3,77,1620,8,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, - 78,1,78,1,78,1,78,1,78,3,78,1636,8,78,1,78,1,78,3,78,1640,8,78,1, - 78,1,78,1,78,3,78,1645,8,78,1,78,1,78,1,78,3,78,1650,8,78,1,78,3, - 78,1653,8,78,1,78,3,78,1656,8,78,1,78,3,78,1659,8,78,1,78,3,78,1662, - 8,78,1,78,3,78,1665,8,78,1,79,1,79,1,79,3,79,1670,8,79,1,79,1,79, - 1,79,1,79,1,80,1,80,1,80,3,80,1679,8,80,1,80,1,80,3,80,1683,8,80, - 1,80,1,80,1,80,1,80,1,80,3,80,1690,8,80,1,80,3,80,1693,8,80,1,80, - 3,80,1696,8,80,1,80,3,80,1699,8,80,1,80,1,80,1,80,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,3,81,1711,8,81,1,81,1,81,1,82,1,82,3,82,1717, + 1,68,1,68,1,69,1,69,3,69,1566,8,69,1,69,1,69,1,69,1,69,1,69,3,69, + 1573,8,69,3,69,1575,8,69,1,70,1,70,1,70,5,70,1580,8,70,10,70,12, + 70,1583,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1,73,3,73,1592,8,73,1, + 73,1,73,1,73,1,73,1,73,1,73,3,73,1600,8,73,1,74,1,74,3,74,1604,8, + 74,1,74,1,74,3,74,1608,8,74,1,74,1,74,1,75,1,75,1,75,1,76,1,76,1, + 76,1,76,1,76,1,76,3,76,1621,8,76,1,76,1,76,1,76,1,77,1,77,1,77,1, + 77,3,77,1630,8,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,1,78,3,78,1646,8,78,1,78,1,78,3,78,1650,8,78,1, + 78,1,78,1,78,3,78,1655,8,78,1,78,1,78,1,78,3,78,1660,8,78,1,78,3, + 78,1663,8,78,1,78,3,78,1666,8,78,1,78,3,78,1669,8,78,1,78,3,78,1672, + 8,78,1,78,3,78,1675,8,78,1,79,1,79,1,79,3,79,1680,8,79,1,79,1,79, + 1,79,1,79,1,80,1,80,1,80,3,80,1689,8,80,1,80,1,80,3,80,1693,8,80, + 1,80,1,80,1,80,1,80,1,80,3,80,1700,8,80,1,80,3,80,1703,8,80,1,80, + 3,80,1706,8,80,1,80,3,80,1709,8,80,1,80,1,80,1,80,1,81,1,81,1,81, + 1,81,1,81,1,81,1,81,3,81,1721,8,81,1,81,1,81,1,82,1,82,3,82,1727, 8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,85,1,85,1,85, 1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,3,87, - 1743,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88,1751,8,88,1,88,1,88, - 3,88,1755,8,88,1,88,3,88,1758,8,88,1,88,3,88,1761,8,88,1,88,3,88, - 1764,8,88,1,88,3,88,1767,8,88,1,88,3,88,1770,8,88,1,88,3,88,1773, - 8,88,1,88,3,88,1776,8,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,3,89, - 1785,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1795,8,90, - 1,90,3,90,1798,8,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92, - 1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,3,93,1818,8,93,1,94, - 1,94,1,94,1,94,3,94,1824,8,94,1,94,1,94,1,94,1,94,3,94,1830,8,94, - 1,94,3,94,1833,8,94,3,94,1835,8,94,1,95,1,95,1,95,1,95,1,96,3,96, - 1842,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1849,8,97,1,98,1,98,1,98, - 1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100,3,100,1862,8,100,1, - 100,1,100,1,100,3,100,1867,8,100,1,100,1,100,1,101,1,101,1,101,5, - 101,1874,8,101,10,101,12,101,1877,9,101,1,102,1,102,1,102,5,102, - 1882,8,102,10,102,12,102,1885,9,102,1,103,1,103,1,103,1,103,1,103, - 3,103,1892,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,3,103,1905,8,103,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,3,104,1918,8,104,1,104,1,104, + 1753,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88,1761,8,88,1,88,1,88, + 3,88,1765,8,88,1,88,3,88,1768,8,88,1,88,3,88,1771,8,88,1,88,3,88, + 1774,8,88,1,88,3,88,1777,8,88,1,88,3,88,1780,8,88,1,88,3,88,1783, + 8,88,1,88,3,88,1786,8,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,3,89, + 1795,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1805,8,90, + 1,90,3,90,1808,8,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92, + 1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,3,93,1828,8,93,1,94, + 1,94,1,94,1,94,3,94,1834,8,94,1,94,1,94,1,94,1,94,3,94,1840,8,94, + 1,94,3,94,1843,8,94,3,94,1845,8,94,1,95,1,95,1,95,1,95,1,96,3,96, + 1852,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1859,8,97,1,98,1,98,1,98, + 1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100,3,100,1872,8,100,1, + 100,1,100,1,100,3,100,1877,8,100,1,100,1,100,1,101,1,101,1,101,5, + 101,1884,8,101,10,101,12,101,1887,9,101,1,102,1,102,1,102,5,102, + 1892,8,102,10,102,12,102,1895,9,102,1,103,1,103,1,103,1,103,1,103, + 3,103,1902,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,3,103,1915,8,103,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,1,104,1,104,1,104,1,104,3,104,1928,8,104,1,104,1,104, 1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,3,105,1934,8,105,1,106,1,106,3,106,1938,8,106,1,107,1,107, + 1,105,3,105,1944,8,105,1,106,1,106,3,106,1948,8,106,1,107,1,107, 1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 3,109,1953,8,109,1,110,1,110,1,110,1,110,3,110,1959,8,110,1,110, - 3,110,1962,8,110,1,110,3,110,1965,8,110,1,110,3,110,1968,8,110,1, - 110,3,110,1971,8,110,1,111,1,111,3,111,1975,8,111,1,112,1,112,1, - 112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,5,114,1988,8, - 114,10,114,12,114,1991,9,114,3,114,1993,8,114,1,115,1,115,1,115, - 1,115,1,116,1,116,1,116,5,116,2002,8,116,10,116,12,116,2005,9,116, + 3,109,1963,8,109,1,110,1,110,1,110,1,110,3,110,1969,8,110,1,110, + 3,110,1972,8,110,1,110,3,110,1975,8,110,1,110,3,110,1978,8,110,1, + 110,3,110,1981,8,110,1,111,1,111,3,111,1985,8,111,1,112,1,112,1, + 112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,5,114,1998,8, + 114,10,114,12,114,2001,9,114,3,114,2003,8,114,1,115,1,115,1,115, + 1,115,1,116,1,116,1,116,5,116,2012,8,116,10,116,12,116,2015,9,116, 1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 3,118,2018,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120, + 3,118,2028,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120, 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,122,1,122, 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,3,123,2052,8,123,1,123,1,123,1,123,1,123,1,123,1,123, - 3,123,2060,8,123,1,123,1,123,1,123,3,123,2065,8,123,1,123,1,123, - 1,123,1,123,1,123,1,123,3,123,2073,8,123,1,123,1,123,1,123,3,123, - 2078,8,123,1,123,1,123,1,123,3,123,2083,8,123,1,124,1,124,1,124, - 5,124,2088,8,124,10,124,12,124,2091,9,124,1,125,1,125,1,125,5,125, - 2096,8,125,10,125,12,125,2099,9,125,1,126,1,126,1,126,5,126,2104, - 8,126,10,126,12,126,2107,9,126,1,127,1,127,1,127,5,127,2112,8,127, - 10,127,12,127,2115,9,127,1,128,1,128,3,128,2119,8,128,1,129,1,129, - 1,130,1,130,1,130,1,130,1,130,1,130,3,130,2129,8,130,5,130,2131, - 8,130,10,130,12,130,2134,9,130,1,131,1,131,1,131,5,131,2139,8,131, - 10,131,12,131,2142,9,131,1,132,1,132,1,132,1,132,1,133,1,133,3,133, - 2150,8,133,1,133,3,133,2153,8,133,1,134,1,134,3,134,2157,8,134,1, - 135,1,135,1,136,1,136,1,136,3,136,2164,8,136,1,137,1,137,1,138,1, - 138,3,138,2170,8,138,1,138,1,138,3,138,2174,8,138,1,139,1,139,1, - 139,1,139,3,139,2180,8,139,1,140,1,140,3,140,2184,8,140,1,141,1, - 141,1,141,1,142,1,142,1,142,1,142,1,142,1,143,1,143,3,143,2196,8, - 143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,2205,8,143,1, - 144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,3,144,2216,8, - 144,1,145,1,145,3,145,2220,8,145,1,146,1,146,1,146,5,146,2225,8, - 146,10,146,12,146,2228,9,146,1,147,1,147,1,147,1,147,1,148,1,148, - 1,148,5,148,2237,8,148,10,148,12,148,2240,9,148,1,149,1,149,1,150, - 1,150,1,150,1,151,1,151,3,151,2249,8,151,1,151,3,151,2252,8,151, - 1,152,1,152,1,152,5,152,2257,8,152,10,152,12,152,2260,9,152,1,153, - 1,153,1,153,3,153,2265,8,153,1,154,1,154,3,154,2269,8,154,1,154, - 3,154,2272,8,154,1,154,3,154,2275,8,154,1,155,1,155,1,155,1,155, - 3,155,2281,8,155,1,156,1,156,3,156,2285,8,156,1,157,1,157,3,157, - 2289,8,157,1,158,1,158,1,158,3,158,2294,8,158,1,158,1,158,3,158, - 2298,8,158,1,159,1,159,3,159,2302,8,159,1,160,1,160,3,160,2306,8, - 160,1,160,1,160,1,160,1,160,1,160,1,160,3,160,2314,8,160,1,161,1, - 161,3,161,2318,8,161,1,161,1,161,3,161,2322,8,161,1,162,1,162,3, - 162,2326,8,162,1,163,1,163,3,163,2330,8,163,1,163,1,163,1,163,1, - 163,1,163,1,163,3,163,2338,8,163,1,164,1,164,3,164,2342,8,164,1, - 164,1,164,3,164,2346,8,164,1,165,1,165,1,165,1,165,1,165,1,165,3, - 165,2354,8,165,1,166,1,166,1,166,3,166,2359,8,166,1,167,1,167,1, - 167,3,167,2364,8,167,1,168,1,168,3,168,2368,8,168,1,169,1,169,3, - 169,2372,8,169,1,170,1,170,1,170,1,170,1,170,3,170,2379,8,170,1, - 171,1,171,1,172,1,172,1,172,5,172,2386,8,172,10,172,12,172,2389, - 9,172,1,173,1,173,1,173,1,173,1,173,3,173,2396,8,173,1,174,1,174, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2408,8,174, + 1,123,1,123,3,123,2062,8,123,1,123,1,123,1,123,1,123,1,123,1,123, + 3,123,2070,8,123,1,123,1,123,1,123,3,123,2075,8,123,1,123,1,123, + 1,123,1,123,1,123,1,123,3,123,2083,8,123,1,123,1,123,1,123,3,123, + 2088,8,123,1,123,1,123,1,123,3,123,2093,8,123,1,124,1,124,1,124, + 5,124,2098,8,124,10,124,12,124,2101,9,124,1,125,1,125,1,125,5,125, + 2106,8,125,10,125,12,125,2109,9,125,1,126,1,126,1,126,5,126,2114, + 8,126,10,126,12,126,2117,9,126,1,127,1,127,1,127,5,127,2122,8,127, + 10,127,12,127,2125,9,127,1,128,1,128,3,128,2129,8,128,1,129,1,129, + 1,130,1,130,1,130,1,130,1,130,1,130,3,130,2139,8,130,5,130,2141, + 8,130,10,130,12,130,2144,9,130,1,131,1,131,1,131,5,131,2149,8,131, + 10,131,12,131,2152,9,131,1,132,1,132,1,132,1,132,1,133,1,133,3,133, + 2160,8,133,1,133,3,133,2163,8,133,1,134,1,134,3,134,2167,8,134,1, + 135,1,135,1,136,1,136,1,136,3,136,2174,8,136,1,137,1,137,1,138,1, + 138,3,138,2180,8,138,1,138,1,138,3,138,2184,8,138,1,139,1,139,1, + 139,1,139,3,139,2190,8,139,1,140,1,140,3,140,2194,8,140,1,141,1, + 141,1,141,1,142,1,142,1,142,1,142,1,142,1,143,1,143,3,143,2206,8, + 143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,2215,8,143,1, + 144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,3,144,2226,8, + 144,1,145,1,145,3,145,2230,8,145,1,146,1,146,1,146,5,146,2235,8, + 146,10,146,12,146,2238,9,146,1,147,1,147,1,147,1,147,1,148,1,148, + 1,148,5,148,2247,8,148,10,148,12,148,2250,9,148,1,149,1,149,1,150, + 1,150,1,150,1,151,1,151,3,151,2259,8,151,1,151,3,151,2262,8,151, + 1,152,1,152,1,152,5,152,2267,8,152,10,152,12,152,2270,9,152,1,153, + 1,153,1,153,3,153,2275,8,153,1,154,1,154,3,154,2279,8,154,1,154, + 3,154,2282,8,154,1,154,3,154,2285,8,154,1,155,1,155,1,155,1,155, + 3,155,2291,8,155,1,156,1,156,3,156,2295,8,156,1,157,1,157,3,157, + 2299,8,157,1,158,1,158,1,158,3,158,2304,8,158,1,158,1,158,3,158, + 2308,8,158,1,159,1,159,3,159,2312,8,159,1,160,1,160,3,160,2316,8, + 160,1,160,1,160,1,160,1,160,1,160,1,160,3,160,2324,8,160,1,161,1, + 161,3,161,2328,8,161,1,161,1,161,3,161,2332,8,161,1,162,1,162,3, + 162,2336,8,162,1,163,1,163,3,163,2340,8,163,1,163,1,163,1,163,1, + 163,1,163,1,163,3,163,2348,8,163,1,164,1,164,3,164,2352,8,164,1, + 164,1,164,3,164,2356,8,164,1,165,1,165,1,165,1,165,1,165,1,165,3, + 165,2364,8,165,1,166,1,166,1,166,3,166,2369,8,166,1,167,1,167,1, + 167,3,167,2374,8,167,1,168,1,168,3,168,2378,8,168,1,169,1,169,3, + 169,2382,8,169,1,170,1,170,1,170,1,170,1,170,3,170,2389,8,170,1, + 171,1,171,1,172,1,172,1,172,5,172,2396,8,172,10,172,12,172,2399, + 9,172,1,173,1,173,1,173,1,173,1,173,3,173,2406,8,173,1,174,1,174, + 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2418,8,174, 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174, - 1,174,1,174,1,174,1,174,1,174,3,174,2426,8,174,1,174,3,174,2429, - 8,174,1,174,1,174,1,174,1,174,3,174,2435,8,174,1,175,1,175,1,175, + 1,174,1,174,1,174,1,174,1,174,3,174,2436,8,174,1,174,3,174,2439, + 8,174,1,174,1,174,1,174,1,174,3,174,2445,8,174,1,175,1,175,1,175, 1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177, 1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,179,1,179,3,179, - 2461,8,179,1,180,3,180,2464,8,180,1,180,1,180,1,181,1,181,3,181, - 2470,8,181,1,182,1,182,1,182,1,182,5,182,2476,8,182,10,182,12,182, - 2479,9,182,1,183,1,183,1,183,1,183,1,183,3,183,2486,8,183,1,183, - 1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184,5,184,2497,8,184, - 10,184,12,184,2500,9,184,1,185,1,185,1,185,1,185,3,185,2506,8,185, - 1,185,3,185,2509,8,185,1,185,3,185,2512,8,185,1,185,3,185,2515,8, - 185,1,185,3,185,2518,8,185,1,185,3,185,2521,8,185,1,185,3,185,2524, - 8,185,1,185,3,185,2527,8,185,1,185,3,185,2530,8,185,1,185,3,185, - 2533,8,185,1,185,3,185,2536,8,185,1,185,1,185,1,185,3,185,2541,8, - 185,1,185,3,185,2544,8,185,1,185,3,185,2547,8,185,1,185,3,185,2550, - 8,185,1,185,3,185,2553,8,185,1,185,3,185,2556,8,185,1,185,3,185, - 2559,8,185,1,185,3,185,2562,8,185,1,185,3,185,2565,8,185,1,185,3, - 185,2568,8,185,1,185,3,185,2571,8,185,3,185,2573,8,185,1,186,1,186, - 1,186,1,186,3,186,2579,8,186,1,187,1,187,3,187,2583,8,187,1,187, - 3,187,2586,8,187,1,187,3,187,2589,8,187,1,187,3,187,2592,8,187,1, - 187,3,187,2595,8,187,1,187,3,187,2598,8,187,1,187,1,187,1,187,1, - 187,1,187,3,187,2605,8,187,1,188,1,188,3,188,2609,8,188,1,188,3, - 188,2612,8,188,1,188,3,188,2615,8,188,1,188,3,188,2618,8,188,1,188, - 3,188,2621,8,188,1,188,3,188,2624,8,188,1,189,1,189,1,189,4,189, - 2629,8,189,11,189,12,189,2630,1,190,3,190,2634,8,190,1,190,1,190, - 1,191,1,191,1,191,1,191,3,191,2642,8,191,1,191,1,191,3,191,2646, - 8,191,1,191,1,191,1,191,1,191,1,191,3,191,2653,8,191,3,191,2655, - 8,191,1,192,3,192,2658,8,192,1,192,1,192,1,192,3,192,2663,8,192, - 1,192,3,192,2666,8,192,1,192,1,192,3,192,2670,8,192,1,193,1,193, - 1,193,3,193,2675,8,193,1,193,1,193,1,193,1,193,3,193,2681,8,193, - 1,194,1,194,1,194,1,194,1,195,1,195,3,195,2689,8,195,1,196,1,196, - 1,196,1,196,5,196,2695,8,196,10,196,12,196,2698,9,196,1,197,1,197, - 1,197,1,197,1,197,5,197,2705,8,197,10,197,12,197,2708,9,197,3,197, - 2710,8,197,1,197,1,197,3,197,2714,8,197,1,197,1,197,3,197,2718,8, - 197,1,197,1,197,1,197,3,197,2723,8,197,1,198,1,198,1,198,1,198,1, - 198,3,198,2730,8,198,1,199,1,199,5,199,2734,8,199,10,199,12,199, - 2737,9,199,1,199,3,199,2740,8,199,1,200,1,200,1,200,1,200,1,200, - 3,200,2747,8,200,1,200,1,200,1,200,3,200,2752,8,200,1,200,1,200, - 1,200,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,3,201,2765, - 8,201,1,202,1,202,1,202,1,202,1,202,1,202,3,202,2773,8,202,1,203, + 2471,8,179,1,180,3,180,2474,8,180,1,180,1,180,1,181,1,181,3,181, + 2480,8,181,1,182,1,182,1,182,1,182,5,182,2486,8,182,10,182,12,182, + 2489,9,182,1,183,1,183,1,183,1,183,1,183,3,183,2496,8,183,1,183, + 1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184,5,184,2507,8,184, + 10,184,12,184,2510,9,184,1,185,1,185,1,185,1,185,3,185,2516,8,185, + 1,185,3,185,2519,8,185,1,185,3,185,2522,8,185,1,185,3,185,2525,8, + 185,1,185,3,185,2528,8,185,1,185,3,185,2531,8,185,1,185,3,185,2534, + 8,185,1,185,3,185,2537,8,185,1,185,3,185,2540,8,185,1,185,3,185, + 2543,8,185,1,185,3,185,2546,8,185,1,185,1,185,1,185,3,185,2551,8, + 185,1,185,3,185,2554,8,185,1,185,3,185,2557,8,185,1,185,3,185,2560, + 8,185,1,185,3,185,2563,8,185,1,185,3,185,2566,8,185,1,185,3,185, + 2569,8,185,1,185,3,185,2572,8,185,1,185,3,185,2575,8,185,1,185,3, + 185,2578,8,185,1,185,3,185,2581,8,185,3,185,2583,8,185,1,186,1,186, + 1,186,1,186,3,186,2589,8,186,1,187,1,187,3,187,2593,8,187,1,187, + 3,187,2596,8,187,1,187,3,187,2599,8,187,1,187,3,187,2602,8,187,1, + 187,3,187,2605,8,187,1,187,3,187,2608,8,187,1,187,1,187,1,187,1, + 187,1,187,3,187,2615,8,187,1,188,1,188,3,188,2619,8,188,1,188,3, + 188,2622,8,188,1,188,3,188,2625,8,188,1,188,3,188,2628,8,188,1,188, + 3,188,2631,8,188,1,188,3,188,2634,8,188,1,189,1,189,1,189,4,189, + 2639,8,189,11,189,12,189,2640,1,190,3,190,2644,8,190,1,190,1,190, + 1,191,1,191,1,191,1,191,3,191,2652,8,191,1,191,1,191,3,191,2656, + 8,191,1,191,1,191,1,191,1,191,1,191,3,191,2663,8,191,3,191,2665, + 8,191,1,192,3,192,2668,8,192,1,192,1,192,1,192,3,192,2673,8,192, + 1,192,3,192,2676,8,192,1,192,1,192,3,192,2680,8,192,1,193,1,193, + 1,193,3,193,2685,8,193,1,193,1,193,1,193,1,193,3,193,2691,8,193, + 1,194,1,194,1,194,1,194,1,195,1,195,3,195,2699,8,195,1,196,1,196, + 1,196,1,196,5,196,2705,8,196,10,196,12,196,2708,9,196,1,197,1,197, + 1,197,1,197,1,197,5,197,2715,8,197,10,197,12,197,2718,9,197,3,197, + 2720,8,197,1,197,1,197,3,197,2724,8,197,1,197,1,197,3,197,2728,8, + 197,1,197,1,197,1,197,3,197,2733,8,197,1,198,1,198,1,198,1,198,1, + 198,3,198,2740,8,198,1,199,1,199,5,199,2744,8,199,10,199,12,199, + 2747,9,199,1,199,3,199,2750,8,199,1,200,1,200,1,200,1,200,1,200, + 3,200,2757,8,200,1,200,1,200,1,200,3,200,2762,8,200,1,200,1,200, + 1,200,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,3,201,2775, + 8,201,1,202,1,202,1,202,1,202,1,202,1,202,3,202,2783,8,202,1,203, 1,203,1,203,1,204,1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206, - 1,206,1,206,1,206,1,206,1,206,3,206,2792,8,206,1,206,1,206,1,206, 1,206,1,206,1,206,1,206,1,206,3,206,2802,8,206,1,206,1,206,1,206, - 1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,3,206,2815,8,206, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2825,8,207, - 1,207,1,207,3,207,2829,8,207,4,207,2831,8,207,11,207,12,207,2832, - 1,207,1,207,5,207,2837,8,207,10,207,12,207,2840,9,207,1,207,1,207, - 5,207,2844,8,207,10,207,12,207,2847,9,207,1,207,1,207,5,207,2851, - 8,207,10,207,12,207,2854,9,207,1,207,1,207,1,207,1,207,1,207,1,207, - 3,207,2862,8,207,1,207,1,207,1,207,1,207,1,207,3,207,2869,8,207, + 1,206,1,206,1,206,1,206,1,206,3,206,2812,8,206,1,206,1,206,1,206, + 1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,3,206,2825,8,206, + 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2835,8,207, + 1,207,1,207,3,207,2839,8,207,4,207,2841,8,207,11,207,12,207,2842, + 1,207,1,207,5,207,2847,8,207,10,207,12,207,2850,9,207,1,207,1,207, + 5,207,2854,8,207,10,207,12,207,2857,9,207,1,207,1,207,5,207,2861, + 8,207,10,207,12,207,2864,9,207,1,207,1,207,1,207,1,207,1,207,1,207, + 3,207,2872,8,207,1,207,1,207,1,207,1,207,1,207,3,207,2879,8,207, 1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2889,8,207,1,207, - 3,207,2892,8,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,1,207,1,207,3,207,2906,8,207,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2921, - 8,208,1,208,1,208,3,208,2925,8,208,1,208,1,208,1,208,1,208,1,208, + 1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,2899,8,207,1,207, + 3,207,2902,8,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207,1,207, + 1,207,1,207,1,207,1,207,3,207,2916,8,207,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2931, + 8,208,1,208,1,208,3,208,2935,8,208,1,208,1,208,1,208,1,208,1,208, 1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 5,208,2943,8,208,10,208,12,208,2946,9,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,1,208,3,208,2957,8,208,1,208,1,208,1,208, - 1,208,3,208,2963,8,208,1,208,3,208,2966,8,208,1,208,3,208,2969,8, - 208,1,208,1,208,1,208,1,208,3,208,2975,8,208,1,208,1,208,1,208,1, - 208,3,208,2981,8,208,1,208,1,208,1,208,1,208,1,208,3,208,2988,8, - 208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,2996,8,208,1,208,1, - 208,1,208,1,208,3,208,3002,8,208,1,208,1,208,3,208,3006,8,208,1, - 208,1,208,1,208,3,208,3011,8,208,1,208,3,208,3014,8,208,1,208,1, - 208,3,208,3018,8,208,1,208,1,208,1,208,1,208,1,208,3,208,3025,8, - 208,1,208,1,208,1,208,3,208,3030,8,208,1,208,1,208,1,208,3,208,3035, - 8,208,1,208,3,208,3038,8,208,3,208,3040,8,208,1,209,1,209,1,209, - 1,209,1,209,1,209,3,209,3048,8,209,1,209,1,209,1,209,1,209,1,209, - 1,209,3,209,3056,8,209,1,209,1,209,3,209,3060,8,209,4,209,3062,8, - 209,11,209,12,209,3063,1,209,1,209,3,209,3068,8,209,1,210,1,210, + 5,208,2953,8,208,10,208,12,208,2956,9,208,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,1,208,1,208,3,208,2967,8,208,1,208,1,208,1,208, + 1,208,3,208,2973,8,208,1,208,3,208,2976,8,208,1,208,3,208,2979,8, + 208,1,208,1,208,1,208,1,208,3,208,2985,8,208,1,208,1,208,1,208,1, + 208,3,208,2991,8,208,1,208,1,208,1,208,1,208,1,208,3,208,2998,8, + 208,1,208,1,208,1,208,1,208,1,208,1,208,3,208,3006,8,208,1,208,1, + 208,1,208,1,208,3,208,3012,8,208,1,208,1,208,3,208,3016,8,208,1, + 208,1,208,1,208,3,208,3021,8,208,1,208,3,208,3024,8,208,1,208,1, + 208,3,208,3028,8,208,1,208,1,208,1,208,1,208,1,208,3,208,3035,8, + 208,1,208,1,208,1,208,3,208,3040,8,208,1,208,1,208,1,208,3,208,3045, + 8,208,1,208,3,208,3048,8,208,3,208,3050,8,208,1,209,1,209,1,209, + 1,209,1,209,1,209,3,209,3058,8,209,1,209,1,209,1,209,1,209,1,209, + 1,209,3,209,3066,8,209,1,209,1,209,3,209,3070,8,209,4,209,3072,8, + 209,11,209,12,209,3073,1,209,1,209,3,209,3078,8,209,1,210,1,210, 1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,3,210,3085,8,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,3,211,3102, - 8,211,1,212,1,212,1,212,1,213,1,213,3,213,3109,8,213,1,213,1,213, - 1,213,1,213,1,213,5,213,3116,8,213,10,213,12,213,3119,9,213,1,213, - 1,213,3,213,3123,8,213,1,213,3,213,3126,8,213,1,213,3,213,3129,8, - 213,1,214,1,214,3,214,3133,8,214,1,214,1,214,1,214,1,215,1,215,1, - 215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215,3148,8,215,1, + 1,210,1,210,3,210,3095,8,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,3,211,3112, + 8,211,1,212,1,212,1,212,1,213,1,213,3,213,3119,8,213,1,213,1,213, + 1,213,1,213,1,213,5,213,3126,8,213,10,213,12,213,3129,9,213,1,213, + 1,213,3,213,3133,8,213,1,213,3,213,3136,8,213,1,213,3,213,3139,8, + 213,1,214,1,214,3,214,3143,8,214,1,214,1,214,1,214,1,215,1,215,1, + 215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215,3158,8,215,1, 215,1,215,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, - 1,216,3,216,3162,8,216,1,216,3,216,3165,8,216,1,217,1,217,1,217, - 1,217,1,217,1,217,1,217,1,217,1,217,3,217,3176,8,217,1,218,1,218, - 3,218,3180,8,218,1,218,3,218,3183,8,218,1,218,3,218,3186,8,218,1, - 218,1,218,3,218,3190,8,218,1,218,1,218,1,218,3,218,3195,8,218,1, - 218,3,218,3198,8,218,1,218,3,218,3201,8,218,1,218,3,218,3204,8,218, - 1,218,3,218,3207,8,218,1,218,3,218,3210,8,218,1,218,1,218,1,218, - 1,218,3,218,3216,8,218,1,218,3,218,3219,8,218,1,218,3,218,3222,8, - 218,1,218,3,218,3225,8,218,1,218,3,218,3228,8,218,1,218,3,218,3231, - 8,218,1,218,3,218,3234,8,218,1,218,3,218,3237,8,218,1,218,3,218, - 3240,8,218,1,218,3,218,3243,8,218,1,218,1,218,3,218,3247,8,218,3, - 218,3249,8,218,1,218,1,218,1,218,1,218,3,218,3255,8,218,1,218,1, - 218,1,218,3,218,3260,8,218,1,218,3,218,3263,8,218,1,218,3,218,3266, - 8,218,1,218,3,218,3269,8,218,1,218,3,218,3272,8,218,1,218,1,218, - 1,218,1,218,3,218,3278,8,218,1,218,3,218,3281,8,218,1,218,3,218, - 3284,8,218,1,218,3,218,3287,8,218,1,218,3,218,3290,8,218,1,218,3, - 218,3293,8,218,1,218,3,218,3296,8,218,1,218,3,218,3299,8,218,1,218, - 3,218,3302,8,218,1,218,3,218,3305,8,218,1,218,1,218,3,218,3309,8, - 218,3,218,3311,8,218,3,218,3313,8,218,1,219,1,219,1,219,3,219,3318, - 8,219,1,219,1,219,1,219,3,219,3323,8,219,1,219,1,219,3,219,3327, - 8,219,1,219,1,219,3,219,3331,8,219,1,219,1,219,1,219,3,219,3336, - 8,219,1,220,1,220,1,220,3,220,3341,8,220,1,220,1,220,1,221,1,221, - 1,221,5,221,3348,8,221,10,221,12,221,3351,9,221,1,221,1,221,1,222, - 1,222,1,222,5,222,3358,8,222,10,222,12,222,3361,9,222,1,223,1,223, - 1,223,5,223,3366,8,223,10,223,12,223,3369,9,223,1,224,1,224,1,224, - 1,225,1,225,1,225,1,225,4,225,3378,8,225,11,225,12,225,3379,1,225, - 3,225,3383,8,225,1,226,1,226,5,226,3387,8,226,10,226,12,226,3390, - 9,226,1,226,1,226,5,226,3394,8,226,10,226,12,226,3397,9,226,1,226, - 1,226,5,226,3401,8,226,10,226,12,226,3404,9,226,1,226,1,226,5,226, - 3408,8,226,10,226,12,226,3411,9,226,1,226,1,226,1,226,1,226,3,226, - 3417,8,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227,3,227,3426, - 8,227,5,227,3428,8,227,10,227,12,227,3431,9,227,1,228,1,228,1,228, - 1,228,3,228,3437,8,228,1,228,5,228,3440,8,228,10,228,12,228,3443, - 9,228,1,229,3,229,3446,8,229,1,229,1,229,3,229,3450,8,229,1,229, - 3,229,3453,8,229,1,229,3,229,3456,8,229,1,229,1,229,1,229,1,229, - 1,230,1,230,1,230,1,230,1,230,3,230,3467,8,230,1,230,1,230,3,230, - 3471,8,230,3,230,3473,8,230,1,230,3,230,3476,8,230,1,231,1,231,1, - 231,1,231,1,231,1,231,1,231,1,231,1,231,5,231,3487,8,231,10,231, - 12,231,3490,9,231,3,231,3492,8,231,1,231,3,231,3495,8,231,1,231, - 1,231,1,231,1,231,1,231,1,231,1,231,1,231,5,231,3505,8,231,10,231, - 12,231,3508,9,231,3,231,3510,8,231,1,231,1,231,1,231,1,231,1,231, - 3,231,3517,8,231,1,231,1,231,1,231,1,231,1,231,5,231,3524,8,231, - 10,231,12,231,3527,9,231,1,231,1,231,3,231,3531,8,231,3,231,3533, - 8,231,3,231,3535,8,231,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,5,233,3550,8,233,10,233,12,233, - 3553,9,233,3,233,3555,8,233,1,233,1,233,1,233,1,233,1,233,1,233, - 3,233,3563,8,233,1,233,3,233,3566,8,233,1,234,1,234,3,234,3570,8, - 234,1,234,3,234,3573,8,234,1,234,3,234,3576,8,234,1,234,3,234,3579, - 8,234,1,234,3,234,3582,8,234,1,235,1,235,1,235,1,235,1,235,1,235, - 1,235,1,235,1,235,1,235,3,235,3594,8,235,1,236,1,236,1,237,1,237, - 1,238,1,238,3,238,3602,8,238,1,239,1,239,1,239,1,239,1,239,3,239, - 3609,8,239,1,239,3,239,3612,8,239,1,240,1,240,1,240,1,240,1,240, - 3,240,3619,8,240,1,240,3,240,3622,8,240,1,241,1,241,1,241,3,241, - 3627,8,241,1,241,1,241,1,242,1,242,1,242,3,242,3634,8,242,1,242, - 1,242,1,243,1,243,1,243,1,243,3,243,3642,8,243,1,243,1,243,1,244, - 1,244,1,244,1,244,3,244,3650,8,244,1,244,1,244,1,244,3,244,3655, - 8,244,1,244,1,244,3,244,3659,8,244,1,245,1,245,1,245,3,245,3664, - 8,245,1,246,1,246,1,246,1,246,1,246,3,246,3671,8,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,5,246,3683,8,246, - 10,246,12,246,3686,9,246,3,246,3688,8,246,1,246,1,246,3,246,3692, - 8,246,1,247,1,247,1,247,1,248,1,248,1,248,1,248,5,248,3701,8,248, - 10,248,12,248,3704,9,248,1,248,1,248,1,248,1,248,1,248,5,248,3711, - 8,248,10,248,12,248,3714,9,248,3,248,3716,8,248,1,249,1,249,1,249, - 1,249,1,249,3,249,3723,8,249,1,249,1,249,1,249,1,249,1,249,5,249, - 3730,8,249,10,249,12,249,3733,9,249,3,249,3735,8,249,1,249,1,249, - 1,250,1,250,3,250,3741,8,250,1,250,3,250,3744,8,250,1,250,1,250, - 1,250,5,250,3749,8,250,10,250,12,250,3752,9,250,1,250,1,250,3,250, - 3756,8,250,1,250,3,250,3759,8,250,1,251,1,251,1,251,1,251,1,251, - 1,251,1,251,1,251,1,251,1,251,1,251,3,251,3772,8,251,1,251,1,251, - 1,251,1,251,3,251,3778,8,251,3,251,3780,8,251,1,251,1,251,1,251, - 1,252,1,252,1,252,3,252,3788,8,252,1,252,3,252,3791,8,252,1,252, - 1,252,1,252,1,252,1,252,1,252,5,252,3799,8,252,10,252,12,252,3802, - 9,252,1,252,1,252,3,252,3806,8,252,3,252,3808,8,252,1,253,1,253, - 1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,3,253,3820,8,253, - 1,253,1,253,1,253,1,253,3,253,3826,8,253,3,253,3828,8,253,1,253, - 1,253,1,253,1,254,1,254,3,254,3835,8,254,1,255,1,255,1,255,5,255, - 3840,8,255,10,255,12,255,3843,9,255,1,256,1,256,1,256,1,256,1,256, - 1,256,1,256,1,256,1,256,5,256,3854,8,256,10,256,12,256,3857,9,256, - 1,257,1,257,1,257,3,257,3862,8,257,1,257,3,257,3865,8,257,1,257, - 3,257,3868,8,257,1,257,3,257,3871,8,257,1,258,1,258,1,258,1,258, - 1,258,1,258,1,258,3,258,3880,8,258,1,258,1,258,1,258,1,258,1,258, - 3,258,3887,8,258,1,259,1,259,1,259,1,259,3,259,3893,8,259,1,260, - 1,260,1,260,1,260,1,260,1,260,1,260,3,260,3902,8,260,1,261,1,261, - 3,261,3906,8,261,1,261,1,261,1,261,1,261,5,261,3912,8,261,10,261, - 12,261,3915,9,261,1,261,1,261,1,262,1,262,1,262,1,262,1,262,3,262, - 3924,8,262,1,262,1,262,1,262,1,262,1,262,1,262,5,262,3932,8,262, - 10,262,12,262,3935,9,262,1,262,1,262,3,262,3939,8,262,1,263,1,263, - 3,263,3943,8,263,1,263,1,263,5,263,3947,8,263,10,263,12,263,3950, - 9,263,1,263,1,263,3,263,3954,8,263,1,264,1,264,1,264,1,265,1,265, - 1,265,1,266,1,266,3,266,3964,8,266,1,267,1,267,3,267,3968,8,267, - 1,267,3,267,3971,8,267,1,267,1,267,1,267,3,267,3976,8,267,1,267, - 3,267,3979,8,267,5,267,3981,8,267,10,267,12,267,3984,9,267,1,268, - 1,268,3,268,3988,8,268,1,269,1,269,1,269,1,269,1,270,1,270,1,270, - 4,270,3997,8,270,11,270,12,270,3998,3,270,4001,8,270,1,271,1,271, - 1,271,1,271,1,271,5,271,4008,8,271,10,271,12,271,4011,9,271,1,272, - 1,272,1,272,1,272,1,273,1,273,1,273,1,273,1,274,1,274,1,274,1,274, - 1,274,1,274,5,274,4027,8,274,10,274,12,274,4030,9,274,1,274,1,274, - 1,274,1,274,1,274,5,274,4037,8,274,10,274,12,274,4040,9,274,3,274, - 4042,8,274,1,275,1,275,1,275,1,275,1,275,3,275,4049,8,275,1,275, - 3,275,4052,8,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, - 3,275,4062,8,275,1,275,1,275,1,275,5,275,4067,8,275,10,275,12,275, - 4070,9,275,3,275,4072,8,275,3,275,4074,8,275,1,275,1,275,1,275,1, - 275,1,275,1,275,1,275,1,275,1,275,3,275,4085,8,275,1,275,1,275,1, - 275,1,275,1,275,1,275,1,275,1,275,3,275,4095,8,275,3,275,4097,8, - 275,1,276,1,276,1,276,1,277,1,277,1,278,1,278,3,278,4106,8,278,1, - 279,1,279,1,279,3,279,4111,8,279,1,280,1,280,1,280,1,280,1,280,1, - 280,1,280,3,280,4120,8,280,1,280,1,280,1,281,1,281,1,281,1,281,1, - 281,1,281,1,281,4,281,4131,8,281,11,281,12,281,4132,1,281,1,281, - 3,281,4137,8,281,1,281,1,281,1,282,1,282,1,282,1,282,1,282,1,282, - 4,282,4147,8,282,11,282,12,282,4148,1,282,1,282,3,282,4153,8,282, - 1,282,1,282,1,283,1,283,1,283,1,283,1,283,3,283,4162,8,283,1,283, - 1,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,3,285,4181,8,285,1,286,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286, - 5,286,4197,8,286,10,286,12,286,4200,9,286,1,286,1,286,1,286,1,286, - 1,286,1,286,1,286,1,286,1,286,3,286,4211,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,3,288, - 4226,8,288,1,288,1,288,3,288,4230,8,288,1,289,1,289,1,289,1,289, - 1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,3,289, - 4246,8,289,1,290,1,290,1,290,5,290,4251,8,290,10,290,12,290,4254, - 9,290,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291,1,291, - 1,291,3,291,4267,8,291,1,292,5,292,4270,8,292,10,292,12,292,4273, - 9,292,1,292,1,292,1,292,1,292,1,292,1,292,1,292,5,292,4282,8,292, - 10,292,12,292,4285,9,292,1,293,1,293,1,293,5,293,4290,8,293,10,293, - 12,293,4293,9,293,1,294,1,294,1,294,5,294,4298,8,294,10,294,12,294, - 4301,9,294,1,295,1,295,1,295,5,295,4306,8,295,10,295,12,295,4309, - 9,295,1,296,1,296,1,296,5,296,4314,8,296,10,296,12,296,4317,9,296, - 1,297,1,297,1,297,5,297,4322,8,297,10,297,12,297,4325,9,297,1,298, - 1,298,1,298,5,298,4330,8,298,10,298,12,298,4333,9,298,1,299,1,299, - 1,300,1,300,1,300,1,300,1,301,1,301,3,301,4343,8,301,1,301,1,301, - 3,301,4347,8,301,1,302,1,302,1,302,1,302,1,302,1,302,3,302,4355, - 8,302,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303,1,303, - 1,303,1,303,1,303,1,303,3,303,4371,8,303,1,304,1,304,3,304,4375, - 8,304,1,305,1,305,1,305,3,305,4380,8,305,1,306,1,306,1,306,1,306, - 1,307,1,307,1,307,1,307,1,307,1,307,1,307,3,307,4393,8,307,1,308, - 1,308,1,308,1,308,1,308,1,308,1,308,5,308,4402,8,308,10,308,12,308, - 4405,9,308,1,309,1,309,1,309,1,309,1,309,1,309,3,309,4413,8,309, - 1,310,5,310,4416,8,310,10,310,12,310,4419,9,310,1,310,1,310,1,310, - 3,310,4424,8,310,1,311,1,311,1,311,5,311,4429,8,311,10,311,12,311, - 4432,9,311,1,312,1,312,3,312,4436,8,312,1,313,1,313,1,313,1,313, - 1,313,5,313,4443,8,313,10,313,12,313,4446,9,313,1,313,1,313,1,314, - 1,314,1,314,3,314,4453,8,314,1,315,1,315,1,315,1,315,5,315,4459, - 8,315,10,315,12,315,4462,9,315,1,315,1,315,1,316,1,316,1,316,3,316, - 4469,8,316,1,316,1,316,1,317,1,317,1,318,1,318,1,319,1,319,3,319, - 4479,8,319,1,320,1,320,1,320,3,320,4484,8,320,1,321,1,321,1,322, - 1,322,1,323,1,323,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324, - 1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324, - 1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324, - 1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324, - 1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,1,324,3,324, - 4543,8,324,1,325,1,325,1,325,1,325,3,325,4549,8,325,1,325,1,325, - 1,325,1,325,1,325,1,325,1,325,3,325,4558,8,325,3,325,4560,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,5,325,4574,8,325,10,325,12,325,4577,9,325,1,325,1,325,1,325, - 1,325,1,325,3,325,4584,8,325,1,325,1,325,3,325,4588,8,325,3,325, - 4590,8,325,1,325,1,325,1,325,1,325,3,325,4596,8,325,1,325,1,325, - 1,325,3,325,4601,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,3,325,4618,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,3,325,4644,8,325,1,325,1,325,1,325,3,325,4649,8,325, - 3,325,4651,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,3,325,4679,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,3,325,4696,8,325,1,325,1,325,1,325,3,325,4701, - 8,325,1,325,1,325,1,325,1,325,1,325,1,325,1,325,3,325,4710,8,325, - 1,326,1,326,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,4721, - 8,327,1,328,1,328,1,328,5,328,4726,8,328,10,328,12,328,4729,9,328, - 1,329,1,329,1,329,3,329,4734,8,329,1,330,1,330,1,330,3,330,4739, - 8,330,1,331,1,331,1,332,1,332,1,333,1,333,1,334,1,334,1,335,1,335, - 1,336,1,336,1,337,1,337,1,338,1,338,1,339,1,339,1,340,1,340,1,341, - 1,341,1,341,5,341,4764,8,341,10,341,12,341,4767,9,341,1,342,1,342, - 1,342,1,342,1,343,1,343,1,343,1,343,3,343,4777,8,343,1,344,1,344, - 1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,1,344,3,344, - 4791,8,344,1,345,1,345,1,345,5,345,4796,8,345,10,345,12,345,4799, - 9,345,1,345,1,813,0,346,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,0,61,2,0,57,57,172,172,4,0,91,91,121,121,226,226,325,325,1,0, - 395,396,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90,2,0,139,139, - 154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0,114, - 114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161,190, - 190,299,299,309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15,128, - 128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217,217,373,373,2, - 0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39, + 1,216,3,216,3172,8,216,1,216,3,216,3175,8,216,1,217,1,217,1,217, + 1,217,1,217,1,217,1,217,1,217,1,217,3,217,3186,8,217,1,218,1,218, + 3,218,3190,8,218,1,218,3,218,3193,8,218,1,218,3,218,3196,8,218,1, + 218,1,218,3,218,3200,8,218,1,218,1,218,1,218,3,218,3205,8,218,1, + 218,3,218,3208,8,218,1,218,3,218,3211,8,218,1,218,3,218,3214,8,218, + 1,218,3,218,3217,8,218,1,218,3,218,3220,8,218,1,218,1,218,1,218, + 1,218,3,218,3226,8,218,1,218,3,218,3229,8,218,1,218,3,218,3232,8, + 218,1,218,3,218,3235,8,218,1,218,3,218,3238,8,218,1,218,3,218,3241, + 8,218,1,218,3,218,3244,8,218,1,218,3,218,3247,8,218,1,218,3,218, + 3250,8,218,1,218,3,218,3253,8,218,1,218,1,218,3,218,3257,8,218,3, + 218,3259,8,218,1,218,1,218,1,218,1,218,3,218,3265,8,218,1,218,1, + 218,1,218,3,218,3270,8,218,1,218,3,218,3273,8,218,1,218,3,218,3276, + 8,218,1,218,3,218,3279,8,218,1,218,3,218,3282,8,218,1,218,1,218, + 1,218,1,218,3,218,3288,8,218,1,218,3,218,3291,8,218,1,218,3,218, + 3294,8,218,1,218,3,218,3297,8,218,1,218,3,218,3300,8,218,1,218,3, + 218,3303,8,218,1,218,3,218,3306,8,218,1,218,3,218,3309,8,218,1,218, + 3,218,3312,8,218,1,218,3,218,3315,8,218,1,218,1,218,3,218,3319,8, + 218,3,218,3321,8,218,3,218,3323,8,218,1,219,1,219,1,219,3,219,3328, + 8,219,1,219,1,219,1,219,3,219,3333,8,219,1,219,1,219,3,219,3337, + 8,219,1,219,1,219,3,219,3341,8,219,1,219,1,219,1,219,3,219,3346, + 8,219,1,220,1,220,1,220,3,220,3351,8,220,1,220,1,220,1,221,1,221, + 1,221,5,221,3358,8,221,10,221,12,221,3361,9,221,1,221,1,221,1,222, + 1,222,1,222,5,222,3368,8,222,10,222,12,222,3371,9,222,1,223,1,223, + 1,223,5,223,3376,8,223,10,223,12,223,3379,9,223,1,224,1,224,1,224, + 1,225,1,225,1,225,1,225,4,225,3388,8,225,11,225,12,225,3389,1,225, + 3,225,3393,8,225,1,226,1,226,5,226,3397,8,226,10,226,12,226,3400, + 9,226,1,226,1,226,5,226,3404,8,226,10,226,12,226,3407,9,226,1,226, + 1,226,5,226,3411,8,226,10,226,12,226,3414,9,226,1,226,1,226,5,226, + 3418,8,226,10,226,12,226,3421,9,226,1,226,1,226,1,226,1,226,3,226, + 3427,8,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227,3,227,3436, + 8,227,5,227,3438,8,227,10,227,12,227,3441,9,227,1,228,1,228,1,228, + 1,228,3,228,3447,8,228,1,228,5,228,3450,8,228,10,228,12,228,3453, + 9,228,1,229,3,229,3456,8,229,1,229,1,229,3,229,3460,8,229,1,229, + 3,229,3463,8,229,1,229,3,229,3466,8,229,1,229,1,229,1,229,1,229, + 1,230,1,230,1,230,1,230,1,230,3,230,3477,8,230,1,230,1,230,3,230, + 3481,8,230,3,230,3483,8,230,1,230,3,230,3486,8,230,1,231,1,231,1, + 231,1,231,1,231,1,231,1,231,1,231,1,231,5,231,3497,8,231,10,231, + 12,231,3500,9,231,3,231,3502,8,231,1,231,3,231,3505,8,231,1,231, + 1,231,1,231,1,231,1,231,1,231,1,231,1,231,5,231,3515,8,231,10,231, + 12,231,3518,9,231,3,231,3520,8,231,1,231,1,231,1,231,1,231,1,231, + 3,231,3527,8,231,1,231,1,231,1,231,1,231,1,231,5,231,3534,8,231, + 10,231,12,231,3537,9,231,1,231,1,231,3,231,3541,8,231,3,231,3543, + 8,231,3,231,3545,8,231,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,5,233,3560,8,233,10,233,12,233, + 3563,9,233,3,233,3565,8,233,1,233,1,233,1,233,1,233,1,233,1,233, + 3,233,3573,8,233,1,233,3,233,3576,8,233,1,234,1,234,3,234,3580,8, + 234,1,234,3,234,3583,8,234,1,234,3,234,3586,8,234,1,234,3,234,3589, + 8,234,1,234,3,234,3592,8,234,1,235,1,235,1,235,1,235,1,235,1,235, + 1,235,1,235,1,235,1,235,3,235,3604,8,235,1,236,1,236,1,237,1,237, + 1,238,1,238,3,238,3612,8,238,1,239,1,239,1,239,1,239,1,239,3,239, + 3619,8,239,1,239,3,239,3622,8,239,1,240,1,240,1,240,1,240,1,240, + 3,240,3629,8,240,1,240,3,240,3632,8,240,1,241,1,241,1,241,3,241, + 3637,8,241,1,241,1,241,1,242,1,242,1,242,3,242,3644,8,242,1,242, + 1,242,1,243,1,243,1,243,1,243,3,243,3652,8,243,1,243,1,243,1,244, + 1,244,1,244,1,244,3,244,3660,8,244,1,244,1,244,1,244,3,244,3665, + 8,244,1,244,1,244,3,244,3669,8,244,1,245,1,245,1,245,3,245,3674, + 8,245,1,246,1,246,3,246,3678,8,246,1,247,1,247,1,247,1,247,1,247, + 3,247,3685,8,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,5,247,3697,8,247,10,247,12,247,3700,9,247,3,247,3702, + 8,247,1,247,1,247,1,248,1,248,1,248,1,249,1,249,1,249,1,249,5,249, + 3713,8,249,10,249,12,249,3716,9,249,1,249,1,249,1,249,1,249,1,249, + 5,249,3723,8,249,10,249,12,249,3726,9,249,3,249,3728,8,249,1,250, + 1,250,1,250,1,250,1,250,1,251,1,251,3,251,3737,8,251,1,251,1,251, + 1,251,1,251,1,251,5,251,3744,8,251,10,251,12,251,3747,9,251,3,251, + 3749,8,251,1,251,1,251,1,252,1,252,3,252,3755,8,252,1,252,3,252, + 3758,8,252,1,252,1,252,1,252,3,252,3763,8,252,1,252,3,252,3766,8, + 252,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253, + 1,253,3,253,3779,8,253,1,253,1,253,1,253,1,253,3,253,3785,8,253, + 3,253,3787,8,253,1,253,1,253,1,253,1,254,1,254,1,254,5,254,3795, + 8,254,10,254,12,254,3798,9,254,1,255,1,255,1,255,3,255,3803,8,255, + 1,255,3,255,3806,8,255,1,255,1,255,1,255,1,255,1,255,1,255,5,255, + 3814,8,255,10,255,12,255,3817,9,255,1,255,1,255,3,255,3821,8,255, + 3,255,3823,8,255,1,256,1,256,1,257,1,257,1,258,1,258,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,3,258,3839,8,258,1,258,1,258, + 1,258,1,258,3,258,3845,8,258,3,258,3847,8,258,1,258,1,258,1,258, + 1,259,1,259,3,259,3854,8,259,1,260,1,260,1,260,5,260,3859,8,260, + 10,260,12,260,3862,9,260,1,261,1,261,1,261,1,261,1,261,1,261,1,261, + 1,261,1,261,5,261,3873,8,261,10,261,12,261,3876,9,261,1,262,1,262, + 1,262,3,262,3881,8,262,1,262,3,262,3884,8,262,1,262,3,262,3887,8, + 262,1,262,3,262,3890,8,262,1,263,1,263,1,263,1,263,1,263,1,263,1, + 263,3,263,3899,8,263,1,263,1,263,1,263,1,263,1,263,3,263,3906,8, + 263,1,264,1,264,1,264,1,264,3,264,3912,8,264,1,265,1,265,1,265,1, + 265,1,265,1,265,1,265,3,265,3921,8,265,1,266,1,266,3,266,3925,8, + 266,1,266,1,266,1,266,1,266,5,266,3931,8,266,10,266,12,266,3934, + 9,266,1,266,1,266,1,267,1,267,1,267,1,267,1,267,3,267,3943,8,267, + 1,267,1,267,1,267,1,267,1,267,1,267,5,267,3951,8,267,10,267,12,267, + 3954,9,267,1,267,1,267,3,267,3958,8,267,1,268,1,268,3,268,3962,8, + 268,1,268,1,268,5,268,3966,8,268,10,268,12,268,3969,9,268,1,268, + 1,268,3,268,3973,8,268,1,269,1,269,1,269,1,270,1,270,1,270,1,271, + 1,271,3,271,3983,8,271,1,272,1,272,3,272,3987,8,272,1,272,3,272, + 3990,8,272,1,272,1,272,1,272,3,272,3995,8,272,1,272,3,272,3998,8, + 272,5,272,4000,8,272,10,272,12,272,4003,9,272,1,273,1,273,3,273, + 4007,8,273,1,274,1,274,1,274,1,274,1,275,1,275,1,275,4,275,4016, + 8,275,11,275,12,275,4017,3,275,4020,8,275,1,276,1,276,1,276,1,276, + 1,276,5,276,4027,8,276,10,276,12,276,4030,9,276,1,277,1,277,1,277, + 1,277,1,278,1,278,1,278,1,278,1,279,1,279,1,279,1,279,1,279,1,279, + 5,279,4046,8,279,10,279,12,279,4049,9,279,1,279,1,279,1,279,1,279, + 1,279,5,279,4056,8,279,10,279,12,279,4059,9,279,3,279,4061,8,279, + 1,280,1,280,1,280,1,280,1,280,3,280,4068,8,280,1,280,3,280,4071, + 8,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,3,280,4081, + 8,280,1,280,1,280,1,280,5,280,4086,8,280,10,280,12,280,4089,9,280, + 3,280,4091,8,280,3,280,4093,8,280,1,280,1,280,1,280,1,280,1,280, + 1,280,1,280,1,280,1,280,3,280,4104,8,280,1,280,1,280,1,280,1,280, + 1,280,1,280,1,280,1,280,3,280,4114,8,280,3,280,4116,8,280,1,281, + 1,281,1,281,1,282,1,282,1,283,1,283,3,283,4125,8,283,1,284,1,284, + 1,284,3,284,4130,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285, + 3,285,4139,8,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286,1,286, + 1,286,4,286,4150,8,286,11,286,12,286,4151,1,286,1,286,3,286,4156, + 8,286,1,286,1,286,1,287,1,287,1,287,1,287,1,287,1,287,4,287,4166, + 8,287,11,287,12,287,4167,1,287,1,287,3,287,4172,8,287,1,287,1,287, + 1,288,1,288,1,288,1,288,1,288,3,288,4181,8,288,1,288,1,288,1,289, + 1,289,1,289,1,289,1,289,1,289,1,289,1,290,1,290,1,290,1,290,1,290, + 1,290,1,290,1,290,3,290,4200,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,5,291,4216, + 8,291,10,291,12,291,4219,9,291,1,291,1,291,1,291,1,291,1,291,1,291, + 1,291,1,291,1,291,3,291,4230,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,3,293,4245,8,293, + 1,293,1,293,3,293,4249,8,293,1,294,1,294,1,294,1,294,1,294,1,294, + 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,3,294,4265,8,294, + 1,295,1,295,1,295,5,295,4270,8,295,10,295,12,295,4273,9,295,1,296, + 1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,3,296, + 4286,8,296,1,297,5,297,4289,8,297,10,297,12,297,4292,9,297,1,297, + 1,297,1,297,1,297,1,297,1,297,1,297,5,297,4301,8,297,10,297,12,297, + 4304,9,297,1,298,1,298,1,298,5,298,4309,8,298,10,298,12,298,4312, + 9,298,1,299,1,299,1,299,5,299,4317,8,299,10,299,12,299,4320,9,299, + 1,300,1,300,1,300,5,300,4325,8,300,10,300,12,300,4328,9,300,1,301, + 1,301,1,301,5,301,4333,8,301,10,301,12,301,4336,9,301,1,302,1,302, + 1,302,5,302,4341,8,302,10,302,12,302,4344,9,302,1,303,1,303,1,303, + 5,303,4349,8,303,10,303,12,303,4352,9,303,1,304,1,304,1,305,1,305, + 1,305,1,305,1,306,1,306,3,306,4362,8,306,1,306,1,306,3,306,4366, + 8,306,1,307,1,307,1,307,1,307,1,307,1,307,3,307,4374,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, + 1,308,1,308,3,308,4390,8,308,1,309,1,309,3,309,4394,8,309,1,310, + 1,310,1,310,3,310,4399,8,310,1,311,1,311,1,311,1,311,1,312,1,312, + 1,312,1,312,1,312,1,312,1,312,3,312,4412,8,312,1,313,1,313,1,313, + 1,313,1,313,1,313,1,313,5,313,4421,8,313,10,313,12,313,4424,9,313, + 1,314,1,314,1,314,1,314,1,314,1,314,3,314,4432,8,314,1,315,5,315, + 4435,8,315,10,315,12,315,4438,9,315,1,315,1,315,1,315,3,315,4443, + 8,315,1,316,1,316,1,316,5,316,4448,8,316,10,316,12,316,4451,9,316, + 1,317,1,317,3,317,4455,8,317,1,318,1,318,1,318,1,318,1,318,5,318, + 4462,8,318,10,318,12,318,4465,9,318,1,318,1,318,1,319,1,319,1,319, + 3,319,4472,8,319,1,320,1,320,1,320,1,320,5,320,4478,8,320,10,320, + 12,320,4481,9,320,1,320,1,320,1,321,1,321,1,321,3,321,4488,8,321, + 1,321,1,321,1,322,1,322,1,323,1,323,1,324,1,324,3,324,4498,8,324, + 1,325,1,325,1,325,3,325,4503,8,325,1,326,1,326,1,327,1,327,1,328, + 1,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,3,329,4562,8,329, + 1,330,1,330,1,330,1,330,3,330,4568,8,330,1,330,1,330,1,330,1,330, + 1,330,1,330,1,330,3,330,4577,8,330,3,330,4579,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,5,330, + 4593,8,330,10,330,12,330,4596,9,330,1,330,1,330,1,330,1,330,1,330, + 3,330,4603,8,330,1,330,1,330,3,330,4607,8,330,3,330,4609,8,330,1, + 330,1,330,1,330,1,330,3,330,4615,8,330,1,330,1,330,1,330,3,330,4620, + 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,3,330,4637,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,3,330, + 4663,8,330,1,330,1,330,1,330,3,330,4668,8,330,3,330,4670,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,3,330,4698,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, + 3,330,4715,8,330,1,330,1,330,1,330,3,330,4720,8,330,1,330,1,330, + 1,330,1,330,1,330,1,330,1,330,3,330,4729,8,330,1,331,1,331,1,332, + 1,332,1,332,1,332,1,332,1,332,1,332,3,332,4740,8,332,1,333,1,333, + 1,333,5,333,4745,8,333,10,333,12,333,4748,9,333,1,334,1,334,1,334, + 3,334,4753,8,334,1,335,1,335,1,335,3,335,4758,8,335,1,336,1,336, + 1,337,1,337,1,338,1,338,1,339,1,339,1,340,1,340,1,341,1,341,1,342, + 1,342,1,343,1,343,1,344,1,344,1,345,1,345,1,346,1,346,1,346,5,346, + 4783,8,346,10,346,12,346,4786,9,346,1,347,1,347,1,347,1,347,1,348, + 1,348,1,348,1,348,3,348,4796,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,3,349,4810,8,349,1,350, + 1,350,1,350,5,350,4815,8,350,10,350,12,350,4818,9,350,1,350,1,823, + 0,351,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,0,61,2,0,57,57,172,172,4,0,91,91,121,121,226,226,325,325, + 1,0,395,396,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90,2,0,139, + 139,154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0, + 114,114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161, + 190,190,299,299,309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15, + 128,128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217,217,373,373, + 2,0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39, 376,376,4,0,112,112,164,164,205,205,356,356,2,0,7,7,96,96,2,0,125, 125,350,350,2,0,225,225,391,391,2,0,42,42,315,315,2,0,189,189,196, 196,2,0,426,426,431,431,2,0,140,140,285,285,3,0,12,12,231,231,300, @@ -25821,1608 +25950,1612 @@ export class HiveSqlParser extends SQLParserBase { 151,162,163,198,198,264,264,311,311,337,337,2,0,4,4,101,101,2,0, 9,9,58,58,3,0,14,14,144,144,369,369,1,0,106,107,1,0,94,95,1,0,392, 393,1,0,208,209,1,0,381,382,1,0,73,74,1,0,148,149,1,0,206,207,1, - 0,297,298,1,0,80,82,5392,0,695,1,0,0,0,2,702,1,0,0,0,4,707,1,0,0, - 0,6,741,1,0,0,0,8,743,1,0,0,0,10,816,1,0,0,0,12,818,1,0,0,0,14,834, - 1,0,0,0,16,843,1,0,0,0,18,851,1,0,0,0,20,864,1,0,0,0,22,875,1,0, - 0,0,24,880,1,0,0,0,26,891,1,0,0,0,28,954,1,0,0,0,30,956,1,0,0,0, - 32,959,1,0,0,0,34,963,1,0,0,0,36,965,1,0,0,0,38,968,1,0,0,0,40,971, - 1,0,0,0,42,1015,1,0,0,0,44,1017,1,0,0,0,46,1020,1,0,0,0,48,1023, - 1,0,0,0,50,1032,1,0,0,0,52,1035,1,0,0,0,54,1050,1,0,0,0,56,1062, - 1,0,0,0,58,1067,1,0,0,0,60,1087,1,0,0,0,62,1091,1,0,0,0,64,1098, - 1,0,0,0,66,1123,1,0,0,0,68,1140,1,0,0,0,70,1142,1,0,0,0,72,1327, - 1,0,0,0,74,1337,1,0,0,0,76,1339,1,0,0,0,78,1344,1,0,0,0,80,1349, - 1,0,0,0,82,1351,1,0,0,0,84,1355,1,0,0,0,86,1359,1,0,0,0,88,1363, - 1,0,0,0,90,1367,1,0,0,0,92,1377,1,0,0,0,94,1388,1,0,0,0,96,1405, - 1,0,0,0,98,1423,1,0,0,0,100,1428,1,0,0,0,102,1431,1,0,0,0,104,1435, - 1,0,0,0,106,1442,1,0,0,0,108,1451,1,0,0,0,110,1457,1,0,0,0,112,1459, - 1,0,0,0,114,1473,1,0,0,0,116,1495,1,0,0,0,118,1497,1,0,0,0,120,1505, - 1,0,0,0,122,1512,1,0,0,0,124,1514,1,0,0,0,126,1528,1,0,0,0,128,1535, - 1,0,0,0,130,1537,1,0,0,0,132,1541,1,0,0,0,134,1545,1,0,0,0,136,1549, - 1,0,0,0,138,1553,1,0,0,0,140,1566,1,0,0,0,142,1574,1,0,0,0,144,1577, - 1,0,0,0,146,1579,1,0,0,0,148,1591,1,0,0,0,150,1601,1,0,0,0,152,1604, - 1,0,0,0,154,1615,1,0,0,0,156,1623,1,0,0,0,158,1666,1,0,0,0,160,1675, - 1,0,0,0,162,1703,1,0,0,0,164,1716,1,0,0,0,166,1718,1,0,0,0,168,1724, - 1,0,0,0,170,1727,1,0,0,0,172,1733,1,0,0,0,174,1739,1,0,0,0,176,1746, - 1,0,0,0,178,1780,1,0,0,0,180,1788,1,0,0,0,182,1801,1,0,0,0,184,1806, - 1,0,0,0,186,1817,1,0,0,0,188,1834,1,0,0,0,190,1836,1,0,0,0,192,1841, - 1,0,0,0,194,1848,1,0,0,0,196,1850,1,0,0,0,198,1853,1,0,0,0,200,1856, - 1,0,0,0,202,1870,1,0,0,0,204,1878,1,0,0,0,206,1904,1,0,0,0,208,1906, - 1,0,0,0,210,1923,1,0,0,0,212,1937,1,0,0,0,214,1939,1,0,0,0,216,1942, - 1,0,0,0,218,1945,1,0,0,0,220,1954,1,0,0,0,222,1974,1,0,0,0,224,1976, - 1,0,0,0,226,1979,1,0,0,0,228,1992,1,0,0,0,230,1994,1,0,0,0,232,1998, - 1,0,0,0,234,2006,1,0,0,0,236,2010,1,0,0,0,238,2019,1,0,0,0,240,2025, - 1,0,0,0,242,2031,1,0,0,0,244,2036,1,0,0,0,246,2082,1,0,0,0,248,2084, - 1,0,0,0,250,2092,1,0,0,0,252,2100,1,0,0,0,254,2108,1,0,0,0,256,2118, - 1,0,0,0,258,2120,1,0,0,0,260,2122,1,0,0,0,262,2135,1,0,0,0,264,2143, - 1,0,0,0,266,2152,1,0,0,0,268,2156,1,0,0,0,270,2158,1,0,0,0,272,2163, - 1,0,0,0,274,2165,1,0,0,0,276,2169,1,0,0,0,278,2175,1,0,0,0,280,2183, - 1,0,0,0,282,2185,1,0,0,0,284,2188,1,0,0,0,286,2195,1,0,0,0,288,2206, - 1,0,0,0,290,2219,1,0,0,0,292,2221,1,0,0,0,294,2229,1,0,0,0,296,2233, - 1,0,0,0,298,2241,1,0,0,0,300,2243,1,0,0,0,302,2246,1,0,0,0,304,2253, - 1,0,0,0,306,2261,1,0,0,0,308,2268,1,0,0,0,310,2276,1,0,0,0,312,2284, - 1,0,0,0,314,2288,1,0,0,0,316,2290,1,0,0,0,318,2301,1,0,0,0,320,2305, - 1,0,0,0,322,2317,1,0,0,0,324,2325,1,0,0,0,326,2329,1,0,0,0,328,2341, - 1,0,0,0,330,2353,1,0,0,0,332,2358,1,0,0,0,334,2363,1,0,0,0,336,2365, - 1,0,0,0,338,2369,1,0,0,0,340,2373,1,0,0,0,342,2380,1,0,0,0,344,2382, - 1,0,0,0,346,2395,1,0,0,0,348,2434,1,0,0,0,350,2436,1,0,0,0,352,2441, - 1,0,0,0,354,2446,1,0,0,0,356,2453,1,0,0,0,358,2458,1,0,0,0,360,2463, - 1,0,0,0,362,2469,1,0,0,0,364,2471,1,0,0,0,366,2480,1,0,0,0,368,2492, - 1,0,0,0,370,2572,1,0,0,0,372,2578,1,0,0,0,374,2604,1,0,0,0,376,2606, - 1,0,0,0,378,2628,1,0,0,0,380,2633,1,0,0,0,382,2637,1,0,0,0,384,2669, - 1,0,0,0,386,2671,1,0,0,0,388,2682,1,0,0,0,390,2688,1,0,0,0,392,2690, - 1,0,0,0,394,2722,1,0,0,0,396,2729,1,0,0,0,398,2735,1,0,0,0,400,2741, - 1,0,0,0,402,2756,1,0,0,0,404,2766,1,0,0,0,406,2774,1,0,0,0,408,2777, - 1,0,0,0,410,2780,1,0,0,0,412,2783,1,0,0,0,414,2905,1,0,0,0,416,3039, - 1,0,0,0,418,3067,1,0,0,0,420,3084,1,0,0,0,422,3101,1,0,0,0,424,3103, - 1,0,0,0,426,3106,1,0,0,0,428,3132,1,0,0,0,430,3137,1,0,0,0,432,3164, - 1,0,0,0,434,3175,1,0,0,0,436,3312,1,0,0,0,438,3314,1,0,0,0,440,3337, - 1,0,0,0,442,3349,1,0,0,0,444,3354,1,0,0,0,446,3362,1,0,0,0,448,3370, - 1,0,0,0,450,3382,1,0,0,0,452,3416,1,0,0,0,454,3418,1,0,0,0,456,3436, - 1,0,0,0,458,3445,1,0,0,0,460,3475,1,0,0,0,462,3534,1,0,0,0,464,3536, - 1,0,0,0,466,3565,1,0,0,0,468,3567,1,0,0,0,470,3583,1,0,0,0,472,3595, - 1,0,0,0,474,3597,1,0,0,0,476,3601,1,0,0,0,478,3611,1,0,0,0,480,3621, - 1,0,0,0,482,3626,1,0,0,0,484,3633,1,0,0,0,486,3637,1,0,0,0,488,3658, - 1,0,0,0,490,3663,1,0,0,0,492,3665,1,0,0,0,494,3693,1,0,0,0,496,3696, - 1,0,0,0,498,3717,1,0,0,0,500,3758,1,0,0,0,502,3760,1,0,0,0,504,3807, - 1,0,0,0,506,3809,1,0,0,0,508,3834,1,0,0,0,510,3836,1,0,0,0,512,3844, - 1,0,0,0,514,3870,1,0,0,0,516,3872,1,0,0,0,518,3892,1,0,0,0,520,3894, - 1,0,0,0,522,3905,1,0,0,0,524,3918,1,0,0,0,526,3953,1,0,0,0,528,3955, - 1,0,0,0,530,3958,1,0,0,0,532,3963,1,0,0,0,534,3965,1,0,0,0,536,3987, - 1,0,0,0,538,3989,1,0,0,0,540,3993,1,0,0,0,542,4002,1,0,0,0,544,4012, - 1,0,0,0,546,4016,1,0,0,0,548,4020,1,0,0,0,550,4096,1,0,0,0,552,4098, - 1,0,0,0,554,4101,1,0,0,0,556,4105,1,0,0,0,558,4110,1,0,0,0,560,4112, - 1,0,0,0,562,4123,1,0,0,0,564,4140,1,0,0,0,566,4156,1,0,0,0,568,4165, - 1,0,0,0,570,4180,1,0,0,0,572,4210,1,0,0,0,574,4212,1,0,0,0,576,4229, - 1,0,0,0,578,4245,1,0,0,0,580,4247,1,0,0,0,582,4266,1,0,0,0,584,4271, - 1,0,0,0,586,4286,1,0,0,0,588,4294,1,0,0,0,590,4302,1,0,0,0,592,4310, - 1,0,0,0,594,4318,1,0,0,0,596,4326,1,0,0,0,598,4334,1,0,0,0,600,4336, - 1,0,0,0,602,4346,1,0,0,0,604,4354,1,0,0,0,606,4370,1,0,0,0,608,4374, - 1,0,0,0,610,4379,1,0,0,0,612,4381,1,0,0,0,614,4392,1,0,0,0,616,4394, - 1,0,0,0,618,4412,1,0,0,0,620,4417,1,0,0,0,622,4425,1,0,0,0,624,4433, - 1,0,0,0,626,4437,1,0,0,0,628,4449,1,0,0,0,630,4454,1,0,0,0,632,4465, - 1,0,0,0,634,4472,1,0,0,0,636,4474,1,0,0,0,638,4478,1,0,0,0,640,4480, - 1,0,0,0,642,4485,1,0,0,0,644,4487,1,0,0,0,646,4489,1,0,0,0,648,4542, - 1,0,0,0,650,4709,1,0,0,0,652,4711,1,0,0,0,654,4720,1,0,0,0,656,4722, - 1,0,0,0,658,4733,1,0,0,0,660,4735,1,0,0,0,662,4740,1,0,0,0,664,4742, - 1,0,0,0,666,4744,1,0,0,0,668,4746,1,0,0,0,670,4748,1,0,0,0,672,4750, - 1,0,0,0,674,4752,1,0,0,0,676,4754,1,0,0,0,678,4756,1,0,0,0,680,4758, - 1,0,0,0,682,4760,1,0,0,0,684,4768,1,0,0,0,686,4776,1,0,0,0,688,4790, - 1,0,0,0,690,4792,1,0,0,0,692,694,3,2,1,0,693,692,1,0,0,0,694,697, - 1,0,0,0,695,693,1,0,0,0,695,696,1,0,0,0,696,698,1,0,0,0,697,695, - 1,0,0,0,698,699,5,0,0,1,699,1,1,0,0,0,700,703,3,4,2,0,701,703,3, - 10,5,0,702,700,1,0,0,0,702,701,1,0,0,0,703,705,1,0,0,0,704,706,5, - 398,0,0,705,704,1,0,0,0,705,706,1,0,0,0,706,3,1,0,0,0,707,717,5, - 119,0,0,708,710,3,6,3,0,709,708,1,0,0,0,710,713,1,0,0,0,711,709, - 1,0,0,0,711,712,1,0,0,0,712,714,1,0,0,0,713,711,1,0,0,0,714,718, - 3,10,5,0,715,716,5,284,0,0,716,718,3,360,180,0,717,711,1,0,0,0,717, - 715,1,0,0,0,718,5,1,0,0,0,719,742,5,122,0,0,720,742,5,138,0,0,721, - 742,5,88,0,0,722,724,5,37,0,0,723,725,7,0,0,0,724,723,1,0,0,0,724, - 725,1,0,0,0,725,742,1,0,0,0,726,742,5,192,0,0,727,742,5,21,0,0,728, - 742,5,10,0,0,729,742,5,275,0,0,730,742,5,191,0,0,731,742,5,19,0, - 0,732,734,5,377,0,0,733,735,5,225,0,0,734,733,1,0,0,0,734,735,1, - 0,0,0,735,737,1,0,0,0,736,738,3,8,4,0,737,736,1,0,0,0,737,738,1, - 0,0,0,738,742,1,0,0,0,739,742,5,79,0,0,740,742,5,78,0,0,741,719, - 1,0,0,0,741,720,1,0,0,0,741,721,1,0,0,0,741,722,1,0,0,0,741,726, - 1,0,0,0,741,727,1,0,0,0,741,728,1,0,0,0,741,729,1,0,0,0,741,730, - 1,0,0,0,741,731,1,0,0,0,741,732,1,0,0,0,741,739,1,0,0,0,741,740, - 1,0,0,0,742,7,1,0,0,0,743,744,7,1,0,0,744,9,1,0,0,0,745,817,3,360, - 180,0,746,817,3,12,6,0,747,817,3,16,8,0,748,817,3,18,9,0,749,817, - 3,20,10,0,750,817,3,24,12,0,751,752,5,277,0,0,752,753,5,320,0,0, - 753,756,3,472,236,0,754,755,5,387,0,0,755,757,3,230,115,0,756,754, - 1,0,0,0,756,757,1,0,0,0,757,817,1,0,0,0,758,817,3,28,14,0,759,760, - 5,86,0,0,760,761,5,139,0,0,761,763,3,478,239,0,762,764,3,494,247, - 0,763,762,1,0,0,0,763,764,1,0,0,0,764,817,1,0,0,0,765,766,5,365, - 0,0,766,767,3,478,239,0,767,769,3,392,196,0,768,770,3,494,247,0, - 769,768,1,0,0,0,769,770,1,0,0,0,770,817,1,0,0,0,771,817,3,394,197, - 0,772,774,5,203,0,0,773,775,5,436,0,0,774,773,1,0,0,0,774,775,1, - 0,0,0,775,776,1,0,0,0,776,777,5,166,0,0,777,782,3,478,239,0,778, - 780,5,17,0,0,779,778,1,0,0,0,779,780,1,0,0,0,780,781,1,0,0,0,781, - 783,3,638,319,0,782,779,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0, - 784,785,5,370,0,0,785,786,3,456,228,0,786,787,5,224,0,0,787,788, - 3,580,290,0,788,789,3,398,199,0,789,817,1,0,0,0,790,791,5,249,0, - 0,791,792,3,638,319,0,792,793,5,139,0,0,793,794,3,360,180,0,794, - 817,1,0,0,0,795,796,5,115,0,0,796,797,3,638,319,0,797,798,5,370, - 0,0,798,799,3,296,148,0,799,817,1,0,0,0,800,801,5,304,0,0,801,806, - 3,648,324,0,802,803,7,2,0,0,803,805,3,648,324,0,804,802,1,0,0,0, - 805,808,1,0,0,0,806,804,1,0,0,0,806,807,1,0,0,0,807,809,1,0,0,0, - 808,806,1,0,0,0,809,813,5,405,0,0,810,812,9,0,0,0,811,810,1,0,0, - 0,812,815,1,0,0,0,813,814,1,0,0,0,813,811,1,0,0,0,814,817,1,0,0, - 0,815,813,1,0,0,0,816,745,1,0,0,0,816,746,1,0,0,0,816,747,1,0,0, - 0,816,748,1,0,0,0,816,749,1,0,0,0,816,750,1,0,0,0,816,751,1,0,0, - 0,816,758,1,0,0,0,816,759,1,0,0,0,816,765,1,0,0,0,816,771,1,0,0, - 0,816,772,1,0,0,0,816,790,1,0,0,0,816,795,1,0,0,0,816,800,1,0,0, - 0,817,11,1,0,0,0,818,819,5,187,0,0,819,821,5,66,0,0,820,822,5,188, - 0,0,821,820,1,0,0,0,821,822,1,0,0,0,822,823,1,0,0,0,823,824,5,158, - 0,0,824,826,5,426,0,0,825,827,5,235,0,0,826,825,1,0,0,0,826,827, - 1,0,0,0,827,828,1,0,0,0,828,829,5,166,0,0,829,830,5,329,0,0,830, - 832,3,624,312,0,831,833,3,56,28,0,832,831,1,0,0,0,832,833,1,0,0, - 0,833,13,1,0,0,0,834,836,5,134,0,0,835,837,5,204,0,0,836,835,1,0, - 0,0,836,837,1,0,0,0,837,838,1,0,0,0,838,839,5,279,0,0,839,840,5, - 399,0,0,840,841,5,426,0,0,841,842,5,400,0,0,842,15,1,0,0,0,843,844, - 5,120,0,0,844,845,5,329,0,0,845,846,3,624,312,0,846,847,5,341,0, - 0,847,849,5,426,0,0,848,850,3,14,7,0,849,848,1,0,0,0,849,850,1,0, - 0,0,850,17,1,0,0,0,851,857,5,153,0,0,852,854,5,123,0,0,853,852,1, - 0,0,0,853,854,1,0,0,0,854,855,1,0,0,0,855,856,5,329,0,0,856,858, - 3,624,312,0,857,853,1,0,0,0,857,858,1,0,0,0,858,859,1,0,0,0,859, - 860,5,139,0,0,860,862,5,426,0,0,861,863,3,424,212,0,862,861,1,0, - 0,0,862,863,1,0,0,0,863,19,1,0,0,0,864,865,5,277,0,0,865,866,5,103, - 0,0,866,869,3,22,11,0,867,868,5,278,0,0,868,870,3,22,11,0,869,867, - 1,0,0,0,869,870,1,0,0,0,870,873,1,0,0,0,871,872,5,387,0,0,872,874, - 3,230,115,0,873,871,1,0,0,0,873,874,1,0,0,0,874,21,1,0,0,0,875,878, - 3,472,236,0,876,877,5,395,0,0,877,879,3,26,13,0,878,876,1,0,0,0, - 878,879,1,0,0,0,879,23,1,0,0,0,880,881,5,277,0,0,881,882,5,187,0, - 0,882,885,3,22,11,0,883,884,5,166,0,0,884,886,3,472,236,0,885,883, - 1,0,0,0,885,886,1,0,0,0,886,889,1,0,0,0,887,888,5,387,0,0,888,890, - 3,230,115,0,889,887,1,0,0,0,889,890,1,0,0,0,890,25,1,0,0,0,891,894, - 5,426,0,0,892,893,5,395,0,0,893,895,5,426,0,0,894,892,1,0,0,0,894, - 895,1,0,0,0,895,27,1,0,0,0,896,955,3,42,21,0,897,955,3,46,23,0,898, - 955,3,48,24,0,899,955,3,436,218,0,900,955,3,54,27,0,901,955,3,52, - 26,0,902,955,3,412,206,0,903,955,3,64,32,0,904,955,3,72,36,0,905, - 955,3,138,69,0,906,955,3,160,80,0,907,955,3,176,88,0,908,955,3,180, - 90,0,909,955,3,184,92,0,910,955,3,182,91,0,911,955,3,174,87,0,912, - 955,3,178,89,0,913,955,3,146,73,0,914,955,3,152,76,0,915,955,3,148, - 74,0,916,955,3,150,75,0,917,955,3,154,77,0,918,955,3,156,78,0,919, - 955,3,158,79,0,920,955,3,66,33,0,921,955,3,76,38,0,922,955,3,82, - 41,0,923,955,3,78,39,0,924,955,3,84,42,0,925,955,3,86,43,0,926,955, - 3,88,44,0,927,955,3,90,45,0,928,955,3,92,46,0,929,955,3,106,53,0, - 930,955,3,98,49,0,931,955,3,108,54,0,932,955,3,100,50,0,933,955, - 3,94,47,0,934,955,3,96,48,0,935,955,3,104,52,0,936,955,3,102,51, - 0,937,938,5,1,0,0,938,940,7,3,0,0,939,941,5,431,0,0,940,939,1,0, - 0,0,941,942,1,0,0,0,942,940,1,0,0,0,942,943,1,0,0,0,943,955,1,0, - 0,0,944,945,5,176,0,0,945,947,5,258,0,0,946,948,5,426,0,0,947,946, - 1,0,0,0,948,949,1,0,0,0,949,947,1,0,0,0,949,950,1,0,0,0,950,955, - 1,0,0,0,951,955,3,650,325,0,952,955,3,438,219,0,953,955,3,440,220, - 0,954,896,1,0,0,0,954,897,1,0,0,0,954,898,1,0,0,0,954,899,1,0,0, - 0,954,900,1,0,0,0,954,901,1,0,0,0,954,902,1,0,0,0,954,903,1,0,0, - 0,954,904,1,0,0,0,954,905,1,0,0,0,954,906,1,0,0,0,954,907,1,0,0, - 0,954,908,1,0,0,0,954,909,1,0,0,0,954,910,1,0,0,0,954,911,1,0,0, - 0,954,912,1,0,0,0,954,913,1,0,0,0,954,914,1,0,0,0,954,915,1,0,0, - 0,954,916,1,0,0,0,954,917,1,0,0,0,954,918,1,0,0,0,954,919,1,0,0, - 0,954,920,1,0,0,0,954,921,1,0,0,0,954,922,1,0,0,0,954,923,1,0,0, - 0,954,924,1,0,0,0,954,925,1,0,0,0,954,926,1,0,0,0,954,927,1,0,0, - 0,954,928,1,0,0,0,954,929,1,0,0,0,954,930,1,0,0,0,954,931,1,0,0, - 0,954,932,1,0,0,0,954,933,1,0,0,0,954,934,1,0,0,0,954,935,1,0,0, - 0,954,936,1,0,0,0,954,937,1,0,0,0,954,944,1,0,0,0,954,951,1,0,0, - 0,954,952,1,0,0,0,954,953,1,0,0,0,955,29,1,0,0,0,956,957,5,151,0, - 0,957,958,5,117,0,0,958,31,1,0,0,0,959,960,5,151,0,0,960,961,5,216, - 0,0,961,962,5,117,0,0,962,33,1,0,0,0,963,964,7,4,0,0,964,35,1,0, - 0,0,965,966,3,662,331,0,966,967,5,284,0,0,967,37,1,0,0,0,968,969, - 3,664,332,0,969,970,5,284,0,0,970,39,1,0,0,0,971,972,5,321,0,0,972, - 973,5,17,0,0,973,974,5,92,0,0,974,41,1,0,0,0,975,977,5,58,0,0,976, - 978,5,273,0,0,977,976,1,0,0,0,977,978,1,0,0,0,978,979,1,0,0,0,979, - 981,3,70,35,0,980,982,3,32,16,0,981,980,1,0,0,0,981,982,1,0,0,0, - 982,983,1,0,0,0,983,985,3,474,237,0,984,986,3,50,25,0,985,984,1, - 0,0,0,985,986,1,0,0,0,986,988,1,0,0,0,987,989,3,424,212,0,988,987, - 1,0,0,0,988,989,1,0,0,0,989,992,1,0,0,0,990,991,5,196,0,0,991,993, - 5,426,0,0,992,990,1,0,0,0,992,993,1,0,0,0,993,997,1,0,0,0,994,995, - 5,387,0,0,995,996,5,76,0,0,996,998,3,230,115,0,997,994,1,0,0,0,997, - 998,1,0,0,0,998,1016,1,0,0,0,999,1000,5,58,0,0,1000,1001,5,273,0, - 0,1001,1003,3,70,35,0,1002,1004,3,32,16,0,1003,1002,1,0,0,0,1003, - 1004,1,0,0,0,1004,1005,1,0,0,0,1005,1007,3,474,237,0,1006,1008,3, - 50,25,0,1007,1006,1,0,0,0,1007,1008,1,0,0,0,1008,1009,1,0,0,0,1009, - 1013,3,44,22,0,1010,1011,5,387,0,0,1011,1012,5,76,0,0,1012,1014, - 3,230,115,0,1013,1010,1,0,0,0,1013,1014,1,0,0,0,1014,1016,1,0,0, - 0,1015,975,1,0,0,0,1015,999,1,0,0,0,1016,43,1,0,0,0,1017,1018,5, - 370,0,0,1018,1019,3,472,236,0,1019,45,1,0,0,0,1020,1021,5,368,0, - 0,1021,1022,3,472,236,0,1022,47,1,0,0,0,1023,1024,5,101,0,0,1024, - 1026,3,70,35,0,1025,1027,3,30,15,0,1026,1025,1,0,0,0,1026,1027,1, - 0,0,0,1027,1028,1,0,0,0,1028,1030,3,472,236,0,1029,1031,3,34,17, - 0,1030,1029,1,0,0,0,1030,1031,1,0,0,0,1031,49,1,0,0,0,1032,1033, - 5,47,0,0,1033,1034,5,426,0,0,1034,51,1,0,0,0,1035,1037,5,351,0,0, - 1036,1038,5,329,0,0,1037,1036,1,0,0,0,1037,1038,1,0,0,0,1038,1039, - 1,0,0,0,1039,1045,3,624,312,0,1040,1041,5,46,0,0,1041,1042,5,399, - 0,0,1042,1043,3,254,127,0,1043,1044,5,400,0,0,1044,1046,1,0,0,0, - 1045,1040,1,0,0,0,1045,1046,1,0,0,0,1046,1048,1,0,0,0,1047,1049, - 5,135,0,0,1048,1047,1,0,0,0,1048,1049,1,0,0,0,1049,53,1,0,0,0,1050, - 1051,5,101,0,0,1051,1053,5,329,0,0,1052,1054,3,30,15,0,1053,1052, - 1,0,0,0,1053,1054,1,0,0,0,1054,1055,1,0,0,0,1055,1057,3,478,239, - 0,1056,1058,5,255,0,0,1057,1056,1,0,0,0,1057,1058,1,0,0,0,1058,1060, - 1,0,0,0,1059,1061,3,14,7,0,1060,1059,1,0,0,0,1060,1061,1,0,0,0,1061, - 55,1,0,0,0,1062,1063,5,160,0,0,1063,1064,5,426,0,0,1064,1065,5,301, - 0,0,1065,1066,5,426,0,0,1066,57,1,0,0,0,1067,1070,3,638,319,0,1068, - 1069,5,395,0,0,1069,1071,3,638,319,0,1070,1068,1,0,0,0,1070,1071, - 1,0,0,0,1071,1085,1,0,0,0,1072,1082,3,638,319,0,1073,1078,5,395, - 0,0,1074,1079,5,104,0,0,1075,1079,5,175,0,0,1076,1079,5,375,0,0, - 1077,1079,3,638,319,0,1078,1074,1,0,0,0,1078,1075,1,0,0,0,1078,1076, - 1,0,0,0,1078,1077,1,0,0,0,1079,1081,1,0,0,0,1080,1073,1,0,0,0,1081, - 1084,1,0,0,0,1082,1080,1,0,0,0,1082,1083,1,0,0,0,1083,1086,1,0,0, - 0,1084,1082,1,0,0,0,1085,1072,1,0,0,0,1085,1086,1,0,0,0,1086,59, - 1,0,0,0,1087,1089,3,58,29,0,1088,1090,3,626,313,0,1089,1088,1,0, - 0,0,1089,1090,1,0,0,0,1090,61,1,0,0,0,1091,1093,3,476,238,0,1092, - 1094,3,626,313,0,1093,1092,1,0,0,0,1093,1094,1,0,0,0,1094,1096,1, - 0,0,0,1095,1097,3,260,130,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0, - 1097,63,1,0,0,0,1098,1121,7,5,0,0,1099,1101,3,70,35,0,1100,1102, - 5,122,0,0,1101,1100,1,0,0,0,1101,1102,1,0,0,0,1102,1103,1,0,0,0, - 1103,1104,3,472,236,0,1104,1122,1,0,0,0,1105,1107,5,69,0,0,1106, - 1108,5,122,0,0,1107,1106,1,0,0,0,1107,1108,1,0,0,0,1108,1109,1,0, - 0,0,1109,1122,3,472,236,0,1110,1112,5,141,0,0,1111,1113,5,122,0, - 0,1112,1111,1,0,0,0,1112,1113,1,0,0,0,1113,1114,1,0,0,0,1114,1122, - 3,556,278,0,1115,1118,5,138,0,0,1116,1118,5,122,0,0,1117,1115,1, - 0,0,0,1117,1116,1,0,0,0,1118,1119,1,0,0,0,1119,1122,3,62,31,0,1120, - 1122,3,62,31,0,1121,1099,1,0,0,0,1121,1105,1,0,0,0,1121,1110,1,0, - 0,0,1121,1117,1,0,0,0,1121,1120,1,0,0,0,1122,65,1,0,0,0,1123,1124, - 5,10,0,0,1124,1125,5,329,0,0,1125,1138,3,624,312,0,1126,1127,5,52, - 0,0,1127,1134,5,319,0,0,1128,1135,5,215,0,0,1129,1130,5,134,0,0, - 1130,1132,5,46,0,0,1131,1133,3,254,127,0,1132,1131,1,0,0,0,1132, - 1133,1,0,0,0,1133,1135,1,0,0,0,1134,1128,1,0,0,0,1134,1129,1,0,0, - 0,1134,1135,1,0,0,0,1135,1139,1,0,0,0,1136,1137,5,33,0,0,1137,1139, - 5,204,0,0,1138,1126,1,0,0,0,1138,1136,1,0,0,0,1139,67,1,0,0,0,1140, - 1141,7,6,0,0,1141,69,1,0,0,0,1142,1143,7,7,0,0,1143,71,1,0,0,0,1144, - 1145,5,308,0,0,1145,1148,7,8,0,0,1146,1147,5,184,0,0,1147,1149,3, - 194,97,0,1148,1146,1,0,0,0,1148,1149,1,0,0,0,1149,1328,1,0,0,0,1150, - 1152,5,308,0,0,1151,1153,5,122,0,0,1152,1151,1,0,0,0,1152,1153,1, - 0,0,0,1153,1154,1,0,0,0,1154,1158,5,330,0,0,1155,1156,3,68,34,0, - 1156,1157,3,472,236,0,1157,1159,1,0,0,0,1158,1155,1,0,0,0,1158,1159, - 1,0,0,0,1159,1161,1,0,0,0,1160,1162,3,74,37,0,1161,1160,1,0,0,0, - 1161,1162,1,0,0,0,1162,1328,1,0,0,0,1163,1164,5,308,0,0,1164,1168, - 5,379,0,0,1165,1166,3,68,34,0,1166,1167,3,472,236,0,1167,1169,1, - 0,0,0,1168,1165,1,0,0,0,1168,1169,1,0,0,0,1169,1173,1,0,0,0,1170, - 1171,5,184,0,0,1171,1174,3,194,97,0,1172,1174,3,194,97,0,1173,1170, - 1,0,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0,1174,1328,1,0,0,0,1175, - 1176,5,308,0,0,1176,1177,5,202,0,0,1177,1181,5,379,0,0,1178,1179, - 3,68,34,0,1179,1180,3,472,236,0,1180,1182,1,0,0,0,1181,1178,1,0, - 0,0,1181,1182,1,0,0,0,1182,1186,1,0,0,0,1183,1184,5,184,0,0,1184, - 1187,3,194,97,0,1185,1187,3,194,97,0,1186,1183,1,0,0,0,1186,1185, - 1,0,0,0,1186,1187,1,0,0,0,1187,1328,1,0,0,0,1188,1190,5,308,0,0, - 1189,1191,5,315,0,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1192, - 1,0,0,0,1192,1193,5,46,0,0,1193,1194,3,68,34,0,1194,1198,3,476,238, - 0,1195,1196,3,68,34,0,1196,1197,3,472,236,0,1197,1199,1,0,0,0,1198, - 1195,1,0,0,0,1198,1199,1,0,0,0,1199,1203,1,0,0,0,1200,1201,5,184, - 0,0,1201,1204,3,194,97,0,1202,1204,3,194,97,0,1203,1200,1,0,0,0, - 1203,1202,1,0,0,0,1203,1204,1,0,0,0,1204,1328,1,0,0,0,1205,1206, - 5,308,0,0,1206,1209,5,142,0,0,1207,1208,5,184,0,0,1208,1210,3,556, - 278,0,1209,1207,1,0,0,0,1209,1210,1,0,0,0,1210,1328,1,0,0,0,1211, - 1212,5,308,0,0,1212,1213,5,239,0,0,1213,1215,3,476,238,0,1214,1216, - 3,626,313,0,1215,1214,1,0,0,0,1215,1216,1,0,0,0,1216,1218,1,0,0, - 0,1217,1219,3,494,247,0,1218,1217,1,0,0,0,1218,1219,1,0,0,0,1219, - 1221,1,0,0,0,1220,1222,3,542,271,0,1221,1220,1,0,0,0,1221,1222,1, - 0,0,0,1222,1224,1,0,0,0,1223,1225,3,386,193,0,1224,1223,1,0,0,0, - 1224,1225,1,0,0,0,1225,1328,1,0,0,0,1226,1227,5,308,0,0,1227,1233, - 5,58,0,0,1228,1229,3,70,35,0,1229,1230,3,472,236,0,1230,1234,1,0, - 0,0,1231,1232,5,329,0,0,1232,1234,3,478,239,0,1233,1228,1,0,0,0, - 1233,1231,1,0,0,0,1234,1328,1,0,0,0,1235,1236,5,308,0,0,1236,1237, - 5,329,0,0,1237,1241,5,122,0,0,1238,1239,3,68,34,0,1239,1240,3,472, - 236,0,1240,1242,1,0,0,0,1241,1238,1,0,0,0,1241,1242,1,0,0,0,1242, - 1243,1,0,0,0,1243,1244,5,184,0,0,1244,1246,3,194,97,0,1245,1247, - 3,626,313,0,1246,1245,1,0,0,0,1246,1247,1,0,0,0,1247,1328,1,0,0, - 0,1248,1249,5,308,0,0,1249,1250,5,332,0,0,1250,1254,3,478,239,0, - 1251,1252,5,399,0,0,1252,1253,5,426,0,0,1253,1255,5,400,0,0,1254, - 1251,1,0,0,0,1254,1255,1,0,0,0,1255,1328,1,0,0,0,1256,1257,5,308, - 0,0,1257,1269,5,191,0,0,1258,1259,3,70,35,0,1259,1261,3,472,236, - 0,1260,1262,5,122,0,0,1261,1260,1,0,0,0,1261,1262,1,0,0,0,1262,1270, - 1,0,0,0,1263,1265,3,60,30,0,1264,1263,1,0,0,0,1264,1265,1,0,0,0, - 1265,1267,1,0,0,0,1266,1268,5,122,0,0,1267,1266,1,0,0,0,1267,1268, - 1,0,0,0,1268,1270,1,0,0,0,1269,1258,1,0,0,0,1269,1264,1,0,0,0,1270, - 1328,1,0,0,0,1271,1272,5,308,0,0,1272,1299,5,50,0,0,1273,1274,5, - 51,0,0,1274,1275,5,405,0,0,1275,1300,5,431,0,0,1276,1277,3,70,35, - 0,1277,1278,3,472,236,0,1278,1283,1,0,0,0,1279,1281,3,60,30,0,1280, - 1279,1,0,0,0,1280,1281,1,0,0,0,1281,1283,1,0,0,0,1282,1276,1,0,0, - 0,1282,1280,1,0,0,0,1283,1285,1,0,0,0,1284,1286,3,406,203,0,1285, - 1284,1,0,0,0,1285,1286,1,0,0,0,1286,1288,1,0,0,0,1287,1289,3,408, - 204,0,1288,1287,1,0,0,0,1288,1289,1,0,0,0,1289,1291,1,0,0,0,1290, - 1292,3,410,205,0,1291,1290,1,0,0,0,1291,1292,1,0,0,0,1292,1294,1, - 0,0,0,1293,1295,3,542,271,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0, - 1295,1297,1,0,0,0,1296,1298,3,386,193,0,1297,1296,1,0,0,0,1297,1298, - 1,0,0,0,1298,1300,1,0,0,0,1299,1273,1,0,0,0,1299,1282,1,0,0,0,1300, - 1328,1,0,0,0,1301,1302,5,308,0,0,1302,1328,5,346,0,0,1303,1304,5, - 308,0,0,1304,1305,5,54,0,0,1305,1328,5,426,0,0,1306,1307,5,308,0, - 0,1307,1311,5,280,0,0,1308,1309,5,243,0,0,1309,1312,3,638,319,0, - 1310,1312,5,244,0,0,1311,1308,1,0,0,0,1311,1310,1,0,0,0,1312,1328, - 1,0,0,0,1313,1314,5,308,0,0,1314,1328,5,70,0,0,1315,1317,5,308,0, - 0,1316,1318,5,138,0,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1319, - 1,0,0,0,1319,1320,7,9,0,0,1320,1321,5,224,0,0,1321,1325,3,478,239, - 0,1322,1323,3,68,34,0,1323,1324,3,472,236,0,1324,1326,1,0,0,0,1325, - 1322,1,0,0,0,1325,1326,1,0,0,0,1326,1328,1,0,0,0,1327,1144,1,0,0, - 0,1327,1150,1,0,0,0,1327,1163,1,0,0,0,1327,1175,1,0,0,0,1327,1188, - 1,0,0,0,1327,1205,1,0,0,0,1327,1211,1,0,0,0,1327,1226,1,0,0,0,1327, - 1235,1,0,0,0,1327,1248,1,0,0,0,1327,1256,1,0,0,0,1327,1271,1,0,0, - 0,1327,1301,1,0,0,0,1327,1303,1,0,0,0,1327,1306,1,0,0,0,1327,1313, - 1,0,0,0,1327,1315,1,0,0,0,1328,73,1,0,0,0,1329,1330,5,384,0,0,1330, - 1331,3,638,319,0,1331,1332,5,405,0,0,1332,1333,5,426,0,0,1333,1338, - 1,0,0,0,1334,1335,5,184,0,0,1335,1338,3,194,97,0,1336,1338,3,194, - 97,0,1337,1329,1,0,0,0,1337,1334,1,0,0,0,1337,1336,1,0,0,0,1338, - 75,1,0,0,0,1339,1340,5,190,0,0,1340,1341,5,329,0,0,1341,1342,3,624, - 312,0,1342,1343,3,80,40,0,1343,77,1,0,0,0,1344,1345,5,190,0,0,1345, - 1346,3,70,35,0,1346,1347,3,472,236,0,1347,1348,3,80,40,0,1348,79, - 1,0,0,0,1349,1350,7,10,0,0,1350,81,1,0,0,0,1351,1352,5,361,0,0,1352, - 1353,5,329,0,0,1353,1354,3,624,312,0,1354,83,1,0,0,0,1355,1356,5, - 361,0,0,1356,1357,3,70,35,0,1357,1358,3,472,236,0,1358,85,1,0,0, - 0,1359,1360,5,58,0,0,1360,1361,5,287,0,0,1361,1362,3,638,319,0,1362, - 87,1,0,0,0,1363,1364,5,101,0,0,1364,1365,5,287,0,0,1365,1366,3,638, - 319,0,1366,89,1,0,0,0,1367,1368,5,143,0,0,1368,1370,3,118,59,0,1369, - 1371,3,112,56,0,1370,1369,1,0,0,0,1370,1371,1,0,0,0,1371,1372,1, - 0,0,0,1372,1373,5,341,0,0,1373,1375,3,124,62,0,1374,1376,3,130,65, - 0,1375,1374,1,0,0,0,1375,1376,1,0,0,0,1376,91,1,0,0,0,1377,1379, - 5,283,0,0,1378,1380,3,132,66,0,1379,1378,1,0,0,0,1379,1380,1,0,0, - 0,1380,1381,1,0,0,0,1381,1383,3,118,59,0,1382,1384,3,112,56,0,1383, - 1382,1,0,0,0,1383,1384,1,0,0,0,1384,1385,1,0,0,0,1385,1386,5,139, - 0,0,1386,1387,3,124,62,0,1387,93,1,0,0,0,1388,1390,5,143,0,0,1389, - 1391,5,287,0,0,1390,1389,1,0,0,0,1390,1391,1,0,0,0,1391,1392,1,0, - 0,0,1392,1397,3,638,319,0,1393,1394,5,397,0,0,1394,1396,3,638,319, - 0,1395,1393,1,0,0,0,1396,1399,1,0,0,0,1397,1395,1,0,0,0,1397,1398, - 1,0,0,0,1398,1400,1,0,0,0,1399,1397,1,0,0,0,1400,1401,5,341,0,0, - 1401,1403,3,124,62,0,1402,1404,3,136,68,0,1403,1402,1,0,0,0,1403, - 1404,1,0,0,0,1404,95,1,0,0,0,1405,1407,5,283,0,0,1406,1408,3,134, - 67,0,1407,1406,1,0,0,0,1407,1408,1,0,0,0,1408,1410,1,0,0,0,1409, - 1411,5,287,0,0,1410,1409,1,0,0,0,1410,1411,1,0,0,0,1411,1412,1,0, - 0,0,1412,1417,3,638,319,0,1413,1414,5,397,0,0,1414,1416,3,638,319, - 0,1415,1413,1,0,0,0,1416,1419,1,0,0,0,1417,1415,1,0,0,0,1417,1418, - 1,0,0,0,1418,1420,1,0,0,0,1419,1417,1,0,0,0,1420,1421,5,139,0,0, - 1421,1422,3,124,62,0,1422,97,1,0,0,0,1423,1424,5,308,0,0,1424,1425, - 5,287,0,0,1425,1426,5,143,0,0,1426,1427,3,126,63,0,1427,99,1,0,0, - 0,1428,1429,5,308,0,0,1429,1430,5,288,0,0,1430,101,1,0,0,0,1431, - 1432,5,308,0,0,1432,1433,5,62,0,0,1433,1434,5,288,0,0,1434,103,1, - 0,0,0,1435,1436,5,304,0,0,1436,1440,5,287,0,0,1437,1441,5,7,0,0, - 1438,1441,5,213,0,0,1439,1441,3,638,319,0,1440,1437,1,0,0,0,1440, - 1438,1,0,0,0,1440,1439,1,0,0,0,1441,105,1,0,0,0,1442,1443,5,308, - 0,0,1443,1445,5,143,0,0,1444,1446,3,126,63,0,1445,1444,1,0,0,0,1445, - 1446,1,0,0,0,1446,1449,1,0,0,0,1447,1448,5,224,0,0,1448,1450,3,110, - 55,0,1449,1447,1,0,0,0,1449,1450,1,0,0,0,1450,107,1,0,0,0,1451,1452, - 5,308,0,0,1452,1453,5,252,0,0,1453,1454,3,638,319,0,1454,109,1,0, - 0,0,1455,1458,5,7,0,0,1456,1458,3,116,58,0,1457,1455,1,0,0,0,1457, - 1456,1,0,0,0,1458,111,1,0,0,0,1459,1460,5,224,0,0,1460,1461,3,114, - 57,0,1461,113,1,0,0,0,1462,1463,3,70,35,0,1463,1464,3,472,236,0, - 1464,1474,1,0,0,0,1465,1467,5,329,0,0,1466,1465,1,0,0,0,1466,1467, - 1,0,0,0,1467,1468,1,0,0,0,1468,1474,3,624,312,0,1469,1470,5,366, - 0,0,1470,1474,5,426,0,0,1471,1472,5,303,0,0,1472,1474,3,638,319, - 0,1473,1462,1,0,0,0,1473,1466,1,0,0,0,1473,1469,1,0,0,0,1473,1471, - 1,0,0,0,1474,115,1,0,0,0,1475,1476,3,70,35,0,1476,1477,3,472,236, - 0,1477,1496,1,0,0,0,1478,1480,5,329,0,0,1479,1478,1,0,0,0,1479,1480, - 1,0,0,0,1480,1481,1,0,0,0,1481,1486,3,478,239,0,1482,1483,5,399, - 0,0,1483,1484,3,254,127,0,1484,1485,5,400,0,0,1485,1487,1,0,0,0, - 1486,1482,1,0,0,0,1486,1487,1,0,0,0,1487,1489,1,0,0,0,1488,1490, - 3,626,313,0,1489,1488,1,0,0,0,1489,1490,1,0,0,0,1490,1496,1,0,0, - 0,1491,1492,5,366,0,0,1492,1496,5,426,0,0,1493,1494,5,303,0,0,1494, - 1496,3,638,319,0,1495,1475,1,0,0,0,1495,1479,1,0,0,0,1495,1491,1, - 0,0,0,1495,1493,1,0,0,0,1496,117,1,0,0,0,1497,1502,3,120,60,0,1498, - 1499,5,397,0,0,1499,1501,3,120,60,0,1500,1498,1,0,0,0,1501,1504, - 1,0,0,0,1502,1500,1,0,0,0,1502,1503,1,0,0,0,1503,119,1,0,0,0,1504, - 1502,1,0,0,0,1505,1510,3,122,61,0,1506,1507,5,399,0,0,1507,1508, - 3,254,127,0,1508,1509,5,400,0,0,1509,1511,1,0,0,0,1510,1506,1,0, - 0,0,1510,1511,1,0,0,0,1511,121,1,0,0,0,1512,1513,7,11,0,0,1513,123, - 1,0,0,0,1514,1519,3,126,63,0,1515,1516,5,397,0,0,1516,1518,3,126, - 63,0,1517,1515,1,0,0,0,1518,1521,1,0,0,0,1519,1517,1,0,0,0,1519, - 1520,1,0,0,0,1520,125,1,0,0,0,1521,1519,1,0,0,0,1522,1523,5,369, - 0,0,1523,1529,3,642,321,0,1524,1525,5,144,0,0,1525,1529,3,642,321, - 0,1526,1527,5,287,0,0,1527,1529,3,638,319,0,1528,1522,1,0,0,0,1528, - 1524,1,0,0,0,1528,1526,1,0,0,0,1529,127,1,0,0,0,1530,1531,5,369, - 0,0,1531,1536,3,642,321,0,1532,1533,5,287,0,0,1533,1536,3,638,319, - 0,1534,1536,3,638,319,0,1535,1530,1,0,0,0,1535,1532,1,0,0,0,1535, - 1534,1,0,0,0,1536,129,1,0,0,0,1537,1538,5,387,0,0,1538,1539,5,143, - 0,0,1539,1540,5,227,0,0,1540,131,1,0,0,0,1541,1542,5,143,0,0,1542, - 1543,5,227,0,0,1543,1544,5,134,0,0,1544,133,1,0,0,0,1545,1546,5, - 5,0,0,1546,1547,5,227,0,0,1547,1548,5,134,0,0,1548,135,1,0,0,0,1549, - 1550,5,387,0,0,1550,1551,5,5,0,0,1551,1552,5,227,0,0,1552,137,1, - 0,0,0,1553,1555,5,212,0,0,1554,1556,5,276,0,0,1555,1554,1,0,0,0, - 1555,1556,1,0,0,0,1556,1557,1,0,0,0,1557,1558,5,329,0,0,1558,1564, - 3,478,239,0,1559,1560,7,12,0,0,1560,1562,5,239,0,0,1561,1563,3,630, - 315,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563,1565,1,0,0,0,1564, - 1559,1,0,0,0,1564,1565,1,0,0,0,1565,139,1,0,0,0,1566,1571,3,142, - 71,0,1567,1568,5,397,0,0,1568,1570,3,142,71,0,1569,1567,1,0,0,0, - 1570,1573,1,0,0,0,1571,1569,1,0,0,0,1571,1572,1,0,0,0,1572,141,1, - 0,0,0,1573,1571,1,0,0,0,1574,1575,3,144,72,0,1575,1576,5,426,0,0, - 1576,143,1,0,0,0,1577,1578,7,13,0,0,1578,145,1,0,0,0,1579,1581,5, - 58,0,0,1580,1582,5,333,0,0,1581,1580,1,0,0,0,1581,1582,1,0,0,0,1582, - 1583,1,0,0,0,1583,1584,5,141,0,0,1584,1585,3,554,277,0,1585,1586, - 5,17,0,0,1586,1589,5,426,0,0,1587,1588,5,370,0,0,1588,1590,3,140, - 70,0,1589,1587,1,0,0,0,1589,1590,1,0,0,0,1590,147,1,0,0,0,1591,1593, - 5,101,0,0,1592,1594,5,333,0,0,1593,1592,1,0,0,0,1593,1594,1,0,0, - 0,1594,1595,1,0,0,0,1595,1597,5,141,0,0,1596,1598,3,30,15,0,1597, - 1596,1,0,0,0,1597,1598,1,0,0,0,1598,1599,1,0,0,0,1599,1600,3,556, - 278,0,1600,149,1,0,0,0,1601,1602,5,271,0,0,1602,1603,7,14,0,0,1603, - 151,1,0,0,0,1604,1605,5,58,0,0,1605,1606,5,333,0,0,1606,1607,5,194, - 0,0,1607,1608,5,432,0,0,1608,1610,5,399,0,0,1609,1611,3,248,124, - 0,1610,1609,1,0,0,0,1610,1611,1,0,0,0,1611,1612,1,0,0,0,1612,1613, - 5,400,0,0,1613,1614,3,580,290,0,1614,153,1,0,0,0,1615,1616,5,101, - 0,0,1616,1617,5,333,0,0,1617,1619,5,194,0,0,1618,1620,3,30,15,0, - 1619,1618,1,0,0,0,1619,1620,1,0,0,0,1620,1621,1,0,0,0,1621,1622, - 5,432,0,0,1622,155,1,0,0,0,1623,1624,5,58,0,0,1624,1625,5,155,0, - 0,1625,1626,3,638,319,0,1626,1627,5,224,0,0,1627,1628,5,329,0,0, - 1628,1629,3,478,239,0,1629,1630,3,264,132,0,1630,1631,5,17,0,0,1631, - 1635,5,426,0,0,1632,1633,5,387,0,0,1633,1634,5,84,0,0,1634,1636, - 5,265,0,0,1635,1632,1,0,0,0,1635,1636,1,0,0,0,1636,1639,1,0,0,0, - 1637,1638,5,150,0,0,1638,1640,3,226,113,0,1639,1637,1,0,0,0,1639, - 1640,1,0,0,0,1640,1644,1,0,0,0,1641,1642,5,154,0,0,1642,1643,5,329, - 0,0,1643,1645,3,478,239,0,1644,1641,1,0,0,0,1644,1645,1,0,0,0,1645, - 1649,1,0,0,0,1646,1647,5,238,0,0,1647,1648,5,32,0,0,1648,1650,3, - 264,132,0,1649,1646,1,0,0,0,1649,1650,1,0,0,0,1650,1655,1,0,0,0, - 1651,1653,3,222,111,0,1652,1651,1,0,0,0,1652,1653,1,0,0,0,1653,1654, - 1,0,0,0,1654,1656,3,246,123,0,1655,1652,1,0,0,0,1655,1656,1,0,0, - 0,1656,1658,1,0,0,0,1657,1659,3,424,212,0,1658,1657,1,0,0,0,1658, - 1659,1,0,0,0,1659,1661,1,0,0,0,1660,1662,3,224,112,0,1661,1660,1, - 0,0,0,1661,1662,1,0,0,0,1662,1664,1,0,0,0,1663,1665,3,196,98,0,1664, - 1663,1,0,0,0,1664,1665,1,0,0,0,1665,157,1,0,0,0,1666,1667,5,101, - 0,0,1667,1669,5,155,0,0,1668,1670,3,30,15,0,1669,1668,1,0,0,0,1669, - 1670,1,0,0,0,1670,1671,1,0,0,0,1671,1672,3,638,319,0,1672,1673,5, - 224,0,0,1673,1674,3,478,239,0,1674,159,1,0,0,0,1675,1678,5,58,0, - 0,1676,1677,5,228,0,0,1677,1679,5,278,0,0,1678,1676,1,0,0,0,1678, - 1679,1,0,0,0,1679,1680,1,0,0,0,1680,1682,5,378,0,0,1681,1683,3,32, - 16,0,1682,1681,1,0,0,0,1682,1683,1,0,0,0,1683,1684,1,0,0,0,1684, - 1689,3,484,242,0,1685,1686,5,399,0,0,1686,1687,3,304,152,0,1687, - 1688,5,400,0,0,1688,1690,1,0,0,0,1689,1685,1,0,0,0,1689,1690,1,0, - 0,0,1690,1692,1,0,0,0,1691,1693,3,196,98,0,1692,1691,1,0,0,0,1692, - 1693,1,0,0,0,1693,1695,1,0,0,0,1694,1696,3,162,81,0,1695,1694,1, - 0,0,0,1695,1696,1,0,0,0,1696,1698,1,0,0,0,1697,1699,3,224,112,0, - 1698,1697,1,0,0,0,1698,1699,1,0,0,0,1699,1700,1,0,0,0,1700,1701, - 5,17,0,0,1701,1702,3,380,190,0,1702,161,1,0,0,0,1703,1704,5,238, - 0,0,1704,1710,5,224,0,0,1705,1706,5,399,0,0,1706,1711,3,254,127, - 0,1707,1708,5,316,0,0,1708,1709,5,399,0,0,1709,1711,3,204,102,0, - 1710,1705,1,0,0,0,1710,1707,1,0,0,0,1711,1712,1,0,0,0,1712,1713, - 5,400,0,0,1713,163,1,0,0,0,1714,1717,3,166,83,0,1715,1717,3,168, - 84,0,1716,1714,1,0,0,0,1716,1715,1,0,0,0,1717,165,1,0,0,0,1718,1719, - 5,42,0,0,1719,1720,5,224,0,0,1720,1721,5,399,0,0,1721,1722,3,254, - 127,0,1722,1723,5,400,0,0,1723,167,1,0,0,0,1724,1725,3,170,85,0, - 1725,1726,3,172,86,0,1726,169,1,0,0,0,1727,1728,5,98,0,0,1728,1729, - 5,224,0,0,1729,1730,5,399,0,0,1730,1731,3,254,127,0,1731,1732,5, - 400,0,0,1732,171,1,0,0,0,1733,1734,5,315,0,0,1734,1735,5,224,0,0, - 1735,1736,5,399,0,0,1736,1737,3,254,127,0,1737,1738,5,400,0,0,1738, - 173,1,0,0,0,1739,1740,5,101,0,0,1740,1742,5,378,0,0,1741,1743,3, - 30,15,0,1742,1741,1,0,0,0,1742,1743,1,0,0,0,1743,1744,1,0,0,0,1744, - 1745,3,482,241,0,1745,175,1,0,0,0,1746,1747,5,58,0,0,1747,1748,5, - 202,0,0,1748,1750,5,378,0,0,1749,1751,3,32,16,0,1750,1749,1,0,0, - 0,1750,1751,1,0,0,0,1751,1752,1,0,0,0,1752,1754,3,484,242,0,1753, - 1755,3,38,19,0,1754,1753,1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0, - 0,0,1756,1758,3,196,98,0,1757,1756,1,0,0,0,1757,1758,1,0,0,0,1758, - 1760,1,0,0,0,1759,1761,3,162,81,0,1760,1759,1,0,0,0,1760,1761,1, - 0,0,0,1761,1763,1,0,0,0,1762,1764,3,164,82,0,1763,1762,1,0,0,0,1763, - 1764,1,0,0,0,1764,1766,1,0,0,0,1765,1767,3,222,111,0,1766,1765,1, - 0,0,0,1766,1767,1,0,0,0,1767,1769,1,0,0,0,1768,1770,3,246,123,0, - 1769,1768,1,0,0,0,1769,1770,1,0,0,0,1770,1772,1,0,0,0,1771,1773, - 3,424,212,0,1772,1771,1,0,0,0,1772,1773,1,0,0,0,1773,1775,1,0,0, - 0,1774,1776,3,224,112,0,1775,1774,1,0,0,0,1775,1776,1,0,0,0,1776, - 1777,1,0,0,0,1777,1778,5,17,0,0,1778,1779,3,380,190,0,1779,177,1, - 0,0,0,1780,1781,5,101,0,0,1781,1782,5,202,0,0,1782,1784,5,378,0, - 0,1783,1785,3,30,15,0,1784,1783,1,0,0,0,1784,1785,1,0,0,0,1785,1786, - 1,0,0,0,1786,1787,3,482,241,0,1787,179,1,0,0,0,1788,1789,5,58,0, - 0,1789,1790,5,293,0,0,1790,1791,5,258,0,0,1791,1792,3,638,319,0, - 1792,1794,3,188,94,0,1793,1795,3,190,95,0,1794,1793,1,0,0,0,1794, - 1795,1,0,0,0,1795,1797,1,0,0,0,1796,1798,3,268,134,0,1797,1796,1, - 0,0,0,1797,1798,1,0,0,0,1798,1799,1,0,0,0,1799,1800,3,192,96,0,1800, - 181,1,0,0,0,1801,1802,5,101,0,0,1802,1803,5,293,0,0,1803,1804,5, - 258,0,0,1804,1805,3,638,319,0,1805,183,1,0,0,0,1806,1807,5,9,0,0, - 1807,1808,5,293,0,0,1808,1809,5,258,0,0,1809,1810,3,638,319,0,1810, - 1811,3,186,93,0,1811,185,1,0,0,0,1812,1818,3,188,94,0,1813,1818, - 3,190,95,0,1814,1818,3,268,134,0,1815,1818,3,192,96,0,1816,1818, - 5,115,0,0,1817,1812,1,0,0,0,1817,1813,1,0,0,0,1817,1814,1,0,0,0, - 1817,1815,1,0,0,0,1817,1816,1,0,0,0,1818,187,1,0,0,0,1819,1820,5, - 59,0,0,1820,1835,5,426,0,0,1821,1823,5,111,0,0,1822,1824,5,431,0, - 0,1823,1822,1,0,0,0,1823,1824,1,0,0,0,1824,1825,1,0,0,0,1825,1832, - 3,578,289,0,1826,1830,5,20,0,0,1827,1828,5,223,0,0,1828,1830,5,32, - 0,0,1829,1826,1,0,0,0,1829,1827,1,0,0,0,1830,1831,1,0,0,0,1831,1833, - 5,426,0,0,1832,1829,1,0,0,0,1832,1833,1,0,0,0,1833,1835,1,0,0,0, - 1834,1819,1,0,0,0,1834,1821,1,0,0,0,1835,189,1,0,0,0,1836,1837,5, - 116,0,0,1837,1838,5,17,0,0,1838,1839,5,426,0,0,1839,191,1,0,0,0, - 1840,1842,5,85,0,0,1841,1840,1,0,0,0,1841,1842,1,0,0,0,1842,1843, - 1,0,0,0,1843,1844,5,17,0,0,1844,1845,3,2,1,0,1845,193,1,0,0,0,1846, - 1849,3,638,319,0,1847,1849,5,426,0,0,1848,1846,1,0,0,0,1848,1847, - 1,0,0,0,1849,195,1,0,0,0,1850,1851,5,47,0,0,1851,1852,5,426,0,0, - 1852,197,1,0,0,0,1853,1854,5,183,0,0,1854,1855,5,431,0,0,1855,199, - 1,0,0,0,1856,1857,5,238,0,0,1857,1866,5,32,0,0,1858,1861,5,399,0, - 0,1859,1862,3,202,101,0,1860,1862,3,254,127,0,1861,1859,1,0,0,0, - 1861,1860,1,0,0,0,1862,1867,1,0,0,0,1863,1864,5,316,0,0,1864,1865, - 5,399,0,0,1865,1867,3,204,102,0,1866,1858,1,0,0,0,1866,1863,1,0, - 0,0,1867,1868,1,0,0,0,1868,1869,5,400,0,0,1869,201,1,0,0,0,1870, - 1875,3,316,158,0,1871,1872,5,397,0,0,1872,1874,3,316,158,0,1873, - 1871,1,0,0,0,1874,1877,1,0,0,0,1875,1873,1,0,0,0,1875,1876,1,0,0, - 0,1876,203,1,0,0,0,1877,1875,1,0,0,0,1878,1883,3,206,103,0,1879, - 1880,5,397,0,0,1880,1882,3,206,103,0,1881,1879,1,0,0,0,1882,1885, - 1,0,0,0,1883,1881,1,0,0,0,1883,1884,1,0,0,0,1884,205,1,0,0,0,1885, - 1883,1,0,0,0,1886,1905,3,256,128,0,1887,1892,3,666,333,0,1888,1892, - 3,668,334,0,1889,1892,3,672,336,0,1890,1892,3,674,337,0,1891,1887, - 1,0,0,0,1891,1888,1,0,0,0,1891,1889,1,0,0,0,1891,1890,1,0,0,0,1892, - 1893,1,0,0,0,1893,1894,5,399,0,0,1894,1895,3,256,128,0,1895,1896, - 5,400,0,0,1896,1905,1,0,0,0,1897,1898,7,15,0,0,1898,1899,5,399,0, - 0,1899,1900,5,431,0,0,1900,1901,5,397,0,0,1901,1902,3,256,128,0, - 1902,1903,5,400,0,0,1903,1905,1,0,0,0,1904,1886,1,0,0,0,1904,1891, - 1,0,0,0,1904,1897,1,0,0,0,1905,207,1,0,0,0,1906,1907,5,42,0,0,1907, - 1908,5,32,0,0,1908,1909,5,399,0,0,1909,1910,3,254,127,0,1910,1917, - 5,400,0,0,1911,1912,5,315,0,0,1912,1913,5,32,0,0,1913,1914,5,399, - 0,0,1914,1915,3,262,131,0,1915,1916,5,400,0,0,1916,1918,1,0,0,0, - 1917,1911,1,0,0,0,1917,1918,1,0,0,0,1918,1919,1,0,0,0,1919,1920, - 5,166,0,0,1920,1921,5,431,0,0,1921,1922,5,31,0,0,1922,209,1,0,0, - 0,1923,1924,5,310,0,0,1924,1925,5,32,0,0,1925,1926,5,399,0,0,1926, - 1927,3,254,127,0,1927,1928,5,400,0,0,1928,1929,5,224,0,0,1929,1930, - 5,399,0,0,1930,1931,3,290,145,0,1931,1933,5,400,0,0,1932,1934,3, - 40,20,0,1933,1932,1,0,0,0,1933,1934,1,0,0,0,1934,211,1,0,0,0,1935, - 1938,3,218,109,0,1936,1938,3,220,110,0,1937,1935,1,0,0,0,1937,1936, - 1,0,0,0,1938,213,1,0,0,0,1939,1940,5,266,0,0,1940,1941,5,426,0,0, - 1941,215,1,0,0,0,1942,1943,5,267,0,0,1943,1944,5,426,0,0,1944,217, - 1,0,0,0,1945,1946,5,291,0,0,1946,1947,5,137,0,0,1947,1948,5,301, - 0,0,1948,1952,5,426,0,0,1949,1950,5,387,0,0,1950,1951,5,302,0,0, - 1951,1953,3,226,113,0,1952,1949,1,0,0,0,1952,1953,1,0,0,0,1953,219, - 1,0,0,0,1954,1955,5,291,0,0,1955,1956,5,137,0,0,1956,1958,5,87,0, - 0,1957,1959,3,236,118,0,1958,1957,1,0,0,0,1958,1959,1,0,0,0,1959, - 1961,1,0,0,0,1960,1962,3,238,119,0,1961,1960,1,0,0,0,1961,1962,1, - 0,0,0,1962,1964,1,0,0,0,1963,1965,3,240,120,0,1964,1963,1,0,0,0, - 1964,1965,1,0,0,0,1965,1967,1,0,0,0,1966,1968,3,242,121,0,1967,1966, - 1,0,0,0,1967,1968,1,0,0,0,1968,1970,1,0,0,0,1969,1971,3,244,122, - 0,1970,1969,1,0,0,0,1970,1971,1,0,0,0,1971,221,1,0,0,0,1972,1975, - 3,220,110,0,1973,1975,3,218,109,0,1974,1972,1,0,0,0,1974,1973,1, - 0,0,0,1975,223,1,0,0,0,1976,1977,5,332,0,0,1977,1978,3,226,113,0, - 1978,225,1,0,0,0,1979,1980,5,399,0,0,1980,1981,3,228,114,0,1981, - 1982,5,400,0,0,1982,227,1,0,0,0,1983,1993,3,232,116,0,1984,1989, - 5,426,0,0,1985,1986,5,397,0,0,1986,1988,5,426,0,0,1987,1985,1,0, - 0,0,1988,1991,1,0,0,0,1989,1987,1,0,0,0,1989,1990,1,0,0,0,1990,1993, - 1,0,0,0,1991,1989,1,0,0,0,1992,1983,1,0,0,0,1992,1984,1,0,0,0,1993, - 229,1,0,0,0,1994,1995,5,399,0,0,1995,1996,3,232,116,0,1996,1997, - 5,400,0,0,1997,231,1,0,0,0,1998,2003,3,234,117,0,1999,2000,5,397, - 0,0,2000,2002,3,234,117,0,2001,1999,1,0,0,0,2002,2005,1,0,0,0,2003, - 2001,1,0,0,0,2003,2004,1,0,0,0,2004,233,1,0,0,0,2005,2003,1,0,0, - 0,2006,2007,5,426,0,0,2007,2008,5,405,0,0,2008,2009,5,426,0,0,2009, - 235,1,0,0,0,2010,2011,5,127,0,0,2011,2012,5,334,0,0,2012,2013,5, - 32,0,0,2013,2017,5,426,0,0,2014,2015,5,110,0,0,2015,2016,5,32,0, - 0,2016,2018,5,426,0,0,2017,2014,1,0,0,0,2017,2018,1,0,0,0,2018,237, - 1,0,0,0,2019,2020,5,44,0,0,2020,2021,5,169,0,0,2021,2022,5,334,0, - 0,2022,2023,5,32,0,0,2023,2024,5,426,0,0,2024,239,1,0,0,0,2025,2026, - 5,198,0,0,2026,2027,5,174,0,0,2027,2028,5,334,0,0,2028,2029,5,32, - 0,0,2029,2030,5,426,0,0,2030,241,1,0,0,0,2031,2032,5,186,0,0,2032, - 2033,5,334,0,0,2033,2034,5,32,0,0,2034,2035,5,426,0,0,2035,243,1, - 0,0,0,2036,2037,5,219,0,0,2037,2038,5,85,0,0,2038,2039,5,17,0,0, - 2039,2040,5,426,0,0,2040,245,1,0,0,0,2041,2042,5,321,0,0,2042,2043, - 5,17,0,0,2043,2044,5,160,0,0,2044,2045,5,426,0,0,2045,2046,5,233, - 0,0,2046,2051,5,426,0,0,2047,2048,5,159,0,0,2048,2049,5,426,0,0, - 2049,2050,5,232,0,0,2050,2052,5,426,0,0,2051,2047,1,0,0,0,2051,2052, - 1,0,0,0,2052,2083,1,0,0,0,2053,2054,5,321,0,0,2054,2055,5,32,0,0, - 2055,2059,5,426,0,0,2056,2057,5,387,0,0,2057,2058,5,302,0,0,2058, - 2060,3,226,113,0,2059,2056,1,0,0,0,2059,2060,1,0,0,0,2060,2064,1, - 0,0,0,2061,2062,5,321,0,0,2062,2063,5,17,0,0,2063,2065,3,638,319, - 0,2064,2061,1,0,0,0,2064,2065,1,0,0,0,2065,2083,1,0,0,0,2066,2067, - 5,321,0,0,2067,2068,5,32,0,0,2068,2072,3,638,319,0,2069,2070,5,387, - 0,0,2070,2071,5,302,0,0,2071,2073,3,226,113,0,2072,2069,1,0,0,0, - 2072,2073,1,0,0,0,2073,2077,1,0,0,0,2074,2075,5,321,0,0,2075,2076, - 5,17,0,0,2076,2078,3,638,319,0,2077,2074,1,0,0,0,2077,2078,1,0,0, - 0,2078,2083,1,0,0,0,2079,2080,5,321,0,0,2080,2081,5,17,0,0,2081, - 2083,3,638,319,0,2082,2041,1,0,0,0,2082,2053,1,0,0,0,2082,2066,1, - 0,0,0,2082,2079,1,0,0,0,2083,247,1,0,0,0,2084,2089,3,310,155,0,2085, - 2086,5,397,0,0,2086,2088,3,310,155,0,2087,2085,1,0,0,0,2088,2091, - 1,0,0,0,2089,2087,1,0,0,0,2089,2090,1,0,0,0,2090,249,1,0,0,0,2091, - 2089,1,0,0,0,2092,2097,3,312,156,0,2093,2094,5,397,0,0,2094,2096, - 3,312,156,0,2095,2093,1,0,0,0,2096,2099,1,0,0,0,2097,2095,1,0,0, - 0,2097,2098,1,0,0,0,2098,251,1,0,0,0,2099,2097,1,0,0,0,2100,2105, - 3,340,170,0,2101,2102,5,397,0,0,2102,2104,3,340,170,0,2103,2101, - 1,0,0,0,2104,2107,1,0,0,0,2105,2103,1,0,0,0,2105,2106,1,0,0,0,2106, - 253,1,0,0,0,2107,2105,1,0,0,0,2108,2113,3,256,128,0,2109,2110,5, - 397,0,0,2110,2112,3,256,128,0,2111,2109,1,0,0,0,2112,2115,1,0,0, - 0,2113,2111,1,0,0,0,2113,2114,1,0,0,0,2114,255,1,0,0,0,2115,2113, - 1,0,0,0,2116,2119,3,682,341,0,2117,2119,4,128,0,0,2118,2116,1,0, - 0,0,2118,2117,1,0,0,0,2119,257,1,0,0,0,2120,2121,3,638,319,0,2121, - 259,1,0,0,0,2122,2132,3,256,128,0,2123,2128,5,395,0,0,2124,2129, - 5,104,0,0,2125,2129,5,175,0,0,2126,2129,5,375,0,0,2127,2129,3,638, - 319,0,2128,2124,1,0,0,0,2128,2125,1,0,0,0,2128,2126,1,0,0,0,2128, - 2127,1,0,0,0,2129,2131,1,0,0,0,2130,2123,1,0,0,0,2131,2134,1,0,0, - 0,2132,2130,1,0,0,0,2132,2133,1,0,0,0,2133,261,1,0,0,0,2134,2132, - 1,0,0,0,2135,2140,3,302,151,0,2136,2137,5,397,0,0,2137,2139,3,302, - 151,0,2138,2136,1,0,0,0,2139,2142,1,0,0,0,2140,2138,1,0,0,0,2140, - 2141,1,0,0,0,2141,263,1,0,0,0,2142,2140,1,0,0,0,2143,2144,5,399, - 0,0,2144,2145,3,254,127,0,2145,2146,5,400,0,0,2146,265,1,0,0,0,2147, - 2149,3,268,134,0,2148,2150,3,270,135,0,2149,2148,1,0,0,0,2149,2150, - 1,0,0,0,2150,2153,1,0,0,0,2151,2153,3,272,136,0,2152,2147,1,0,0, - 0,2152,2151,1,0,0,0,2153,267,1,0,0,0,2154,2157,3,662,331,0,2155, - 2157,3,664,332,0,2156,2154,1,0,0,0,2156,2155,1,0,0,0,2157,269,1, - 0,0,0,2158,2159,7,16,0,0,2159,271,1,0,0,0,2160,2164,5,109,0,0,2161, - 2162,5,216,0,0,2162,2164,5,109,0,0,2163,2160,1,0,0,0,2163,2161,1, - 0,0,0,2164,273,1,0,0,0,2165,2166,7,17,0,0,2166,275,1,0,0,0,2167, - 2168,5,55,0,0,2168,2170,3,638,319,0,2169,2167,1,0,0,0,2169,2170, - 1,0,0,0,2170,2171,1,0,0,0,2171,2173,3,280,140,0,2172,2174,3,336, - 168,0,2173,2172,1,0,0,0,2173,2174,1,0,0,0,2174,277,1,0,0,0,2175, - 2176,5,55,0,0,2176,2177,3,638,319,0,2177,2179,3,280,140,0,2178,2180, - 3,338,169,0,2179,2178,1,0,0,0,2179,2180,1,0,0,0,2180,279,1,0,0,0, - 2181,2184,3,282,141,0,2182,2184,3,284,142,0,2183,2181,1,0,0,0,2183, - 2182,1,0,0,0,2184,281,1,0,0,0,2185,2186,3,334,167,0,2186,2187,3, - 264,132,0,2187,283,1,0,0,0,2188,2189,5,40,0,0,2189,2190,5,399,0, - 0,2190,2191,3,580,290,0,2191,2192,5,400,0,0,2192,285,1,0,0,0,2193, - 2194,5,55,0,0,2194,2196,3,638,319,0,2195,2193,1,0,0,0,2195,2196, - 1,0,0,0,2196,2197,1,0,0,0,2197,2198,5,136,0,0,2198,2199,5,173,0, - 0,2199,2200,3,264,132,0,2200,2201,5,269,0,0,2201,2202,3,478,239, - 0,2202,2204,3,264,132,0,2203,2205,3,336,168,0,2204,2203,1,0,0,0, - 2204,2205,1,0,0,0,2205,287,1,0,0,0,2206,2207,5,55,0,0,2207,2208, - 3,638,319,0,2208,2209,5,136,0,0,2209,2210,5,173,0,0,2210,2211,3, - 264,132,0,2211,2212,5,269,0,0,2212,2213,3,478,239,0,2213,2215,3, - 264,132,0,2214,2216,3,338,169,0,2215,2214,1,0,0,0,2215,2216,1,0, - 0,0,2216,289,1,0,0,0,2217,2220,3,296,148,0,2218,2220,3,292,146,0, - 2219,2217,1,0,0,0,2219,2218,1,0,0,0,2220,291,1,0,0,0,2221,2226,3, - 294,147,0,2222,2223,5,397,0,0,2223,2225,3,294,147,0,2224,2222,1, - 0,0,0,2225,2228,1,0,0,0,2226,2224,1,0,0,0,2226,2227,1,0,0,0,2227, - 293,1,0,0,0,2228,2226,1,0,0,0,2229,2230,5,399,0,0,2230,2231,3,296, - 148,0,2231,2232,5,400,0,0,2232,295,1,0,0,0,2233,2238,3,572,286,0, - 2234,2235,5,397,0,0,2235,2237,3,572,286,0,2236,2234,1,0,0,0,2237, - 2240,1,0,0,0,2238,2236,1,0,0,0,2238,2239,1,0,0,0,2239,297,1,0,0, - 0,2240,2238,1,0,0,0,2241,2242,7,18,0,0,2242,299,1,0,0,0,2243,2244, - 5,220,0,0,2244,2245,7,19,0,0,2245,301,1,0,0,0,2246,2248,3,256,128, - 0,2247,2249,3,298,149,0,2248,2247,1,0,0,0,2248,2249,1,0,0,0,2249, - 2251,1,0,0,0,2250,2252,3,300,150,0,2251,2250,1,0,0,0,2251,2252,1, - 0,0,0,2252,303,1,0,0,0,2253,2258,3,306,153,0,2254,2255,5,397,0,0, - 2255,2257,3,306,153,0,2256,2254,1,0,0,0,2257,2260,1,0,0,0,2258,2256, - 1,0,0,0,2258,2259,1,0,0,0,2259,305,1,0,0,0,2260,2258,1,0,0,0,2261, - 2264,3,258,129,0,2262,2263,5,47,0,0,2263,2265,5,426,0,0,2264,2262, - 1,0,0,0,2264,2265,1,0,0,0,2265,307,1,0,0,0,2266,2269,3,256,128,0, - 2267,2269,3,580,290,0,2268,2266,1,0,0,0,2268,2267,1,0,0,0,2269,2271, - 1,0,0,0,2270,2272,3,298,149,0,2271,2270,1,0,0,0,2271,2272,1,0,0, - 0,2272,2274,1,0,0,0,2273,2275,3,300,150,0,2274,2273,1,0,0,0,2274, - 2275,1,0,0,0,2275,309,1,0,0,0,2276,2277,3,258,129,0,2277,2280,3, - 342,171,0,2278,2279,5,47,0,0,2279,2281,5,426,0,0,2280,2278,1,0,0, - 0,2280,2281,1,0,0,0,2281,311,1,0,0,0,2282,2285,3,314,157,0,2283, - 2285,3,316,158,0,2284,2282,1,0,0,0,2284,2283,1,0,0,0,2285,313,1, - 0,0,0,2286,2289,3,286,143,0,2287,2289,3,276,138,0,2288,2286,1,0, - 0,0,2288,2287,1,0,0,0,2289,315,1,0,0,0,2290,2291,3,258,129,0,2291, - 2293,3,342,171,0,2292,2294,3,318,159,0,2293,2292,1,0,0,0,2293,2294, - 1,0,0,0,2294,2297,1,0,0,0,2295,2296,5,47,0,0,2296,2298,5,426,0,0, - 2297,2295,1,0,0,0,2297,2298,1,0,0,0,2298,317,1,0,0,0,2299,2302,3, - 320,160,0,2300,2302,3,322,161,0,2301,2299,1,0,0,0,2301,2300,1,0, - 0,0,2302,319,1,0,0,0,2303,2304,5,55,0,0,2304,2306,3,638,319,0,2305, - 2303,1,0,0,0,2305,2306,1,0,0,0,2306,2307,1,0,0,0,2307,2308,5,269, - 0,0,2308,2309,3,478,239,0,2309,2310,5,399,0,0,2310,2311,3,256,128, - 0,2311,2313,5,400,0,0,2312,2314,3,336,168,0,2313,2312,1,0,0,0,2313, - 2314,1,0,0,0,2314,321,1,0,0,0,2315,2316,5,55,0,0,2316,2318,3,638, - 319,0,2317,2315,1,0,0,0,2317,2318,1,0,0,0,2318,2319,1,0,0,0,2319, - 2321,3,330,165,0,2320,2322,3,336,168,0,2321,2320,1,0,0,0,2321,2322, - 1,0,0,0,2322,323,1,0,0,0,2323,2326,3,326,163,0,2324,2326,3,328,164, - 0,2325,2323,1,0,0,0,2325,2324,1,0,0,0,2326,325,1,0,0,0,2327,2328, - 5,55,0,0,2328,2330,3,638,319,0,2329,2327,1,0,0,0,2329,2330,1,0,0, - 0,2330,2331,1,0,0,0,2331,2332,5,269,0,0,2332,2333,3,478,239,0,2333, - 2334,5,399,0,0,2334,2335,3,256,128,0,2335,2337,5,400,0,0,2336,2338, - 3,338,169,0,2337,2336,1,0,0,0,2337,2338,1,0,0,0,2338,327,1,0,0,0, - 2339,2340,5,55,0,0,2340,2342,3,638,319,0,2341,2339,1,0,0,0,2341, - 2342,1,0,0,0,2342,2343,1,0,0,0,2343,2345,3,330,165,0,2344,2346,3, - 338,169,0,2345,2344,1,0,0,0,2345,2346,1,0,0,0,2346,329,1,0,0,0,2347, - 2348,5,216,0,0,2348,2354,5,219,0,0,2349,2350,5,83,0,0,2350,2354, - 3,332,166,0,2351,2354,3,284,142,0,2352,2354,3,334,167,0,2353,2347, - 1,0,0,0,2353,2349,1,0,0,0,2353,2351,1,0,0,0,2353,2352,1,0,0,0,2354, - 331,1,0,0,0,2355,2359,3,572,286,0,2356,2359,3,550,275,0,2357,2359, - 3,560,280,0,2358,2355,1,0,0,0,2358,2356,1,0,0,0,2358,2357,1,0,0, - 0,2359,333,1,0,0,0,2360,2361,5,251,0,0,2361,2364,5,173,0,0,2362, - 2364,5,358,0,0,2363,2360,1,0,0,0,2363,2362,1,0,0,0,2364,335,1,0, - 0,0,2365,2367,3,266,133,0,2366,2368,3,274,137,0,2367,2366,1,0,0, - 0,2367,2368,1,0,0,0,2368,337,1,0,0,0,2369,2371,3,266,133,0,2370, - 2372,3,274,137,0,2371,2370,1,0,0,0,2371,2372,1,0,0,0,2372,339,1, - 0,0,0,2373,2374,3,258,129,0,2374,2375,5,396,0,0,2375,2378,3,342, - 171,0,2376,2377,5,47,0,0,2377,2379,5,426,0,0,2378,2376,1,0,0,0,2378, - 2379,1,0,0,0,2379,341,1,0,0,0,2380,2381,3,346,173,0,2381,343,1,0, - 0,0,2382,2387,3,342,171,0,2383,2384,5,397,0,0,2384,2386,3,342,171, - 0,2385,2383,1,0,0,0,2386,2389,1,0,0,0,2387,2385,1,0,0,0,2387,2388, - 1,0,0,0,2388,345,1,0,0,0,2389,2387,1,0,0,0,2390,2396,3,348,174,0, - 2391,2396,3,350,175,0,2392,2396,3,352,176,0,2393,2396,3,354,177, - 0,2394,2396,3,356,178,0,2395,2390,1,0,0,0,2395,2391,1,0,0,0,2395, - 2392,1,0,0,0,2395,2393,1,0,0,0,2395,2394,1,0,0,0,2396,347,1,0,0, - 0,2397,2435,5,340,0,0,2398,2435,5,311,0,0,2399,2435,5,162,0,0,2400, - 2435,5,163,0,0,2401,2435,5,26,0,0,2402,2435,5,28,0,0,2403,2435,5, - 131,0,0,2404,2435,5,264,0,0,2405,2407,5,100,0,0,2406,2408,5,248, - 0,0,2407,2406,1,0,0,0,2407,2408,1,0,0,0,2408,2435,1,0,0,0,2409,2435, - 5,71,0,0,2410,2435,5,72,0,0,2411,2435,5,337,0,0,2412,2435,5,338, - 0,0,2413,2414,5,337,0,0,2414,2415,5,387,0,0,2415,2416,5,188,0,0, - 2416,2417,5,336,0,0,2417,2435,5,394,0,0,2418,2435,5,323,0,0,2419, - 2435,5,27,0,0,2420,2428,3,680,340,0,2421,2422,5,399,0,0,2422,2425, - 5,431,0,0,2423,2424,5,397,0,0,2424,2426,5,431,0,0,2425,2423,1,0, - 0,0,2425,2426,1,0,0,0,2426,2427,1,0,0,0,2427,2429,5,400,0,0,2428, - 2421,1,0,0,0,2428,2429,1,0,0,0,2429,2435,1,0,0,0,2430,2431,7,20, - 0,0,2431,2432,5,399,0,0,2432,2433,5,431,0,0,2433,2435,5,400,0,0, - 2434,2397,1,0,0,0,2434,2398,1,0,0,0,2434,2399,1,0,0,0,2434,2400, - 1,0,0,0,2434,2401,1,0,0,0,2434,2402,1,0,0,0,2434,2403,1,0,0,0,2434, - 2404,1,0,0,0,2434,2405,1,0,0,0,2434,2409,1,0,0,0,2434,2410,1,0,0, - 0,2434,2411,1,0,0,0,2434,2412,1,0,0,0,2434,2413,1,0,0,0,2434,2418, - 1,0,0,0,2434,2419,1,0,0,0,2434,2420,1,0,0,0,2434,2430,1,0,0,0,2435, - 349,1,0,0,0,2436,2437,5,16,0,0,2437,2438,5,409,0,0,2438,2439,3,346, - 173,0,2439,2440,5,411,0,0,2440,351,1,0,0,0,2441,2442,5,324,0,0,2442, - 2443,5,409,0,0,2443,2444,3,252,126,0,2444,2445,5,411,0,0,2445,353, - 1,0,0,0,2446,2447,5,198,0,0,2447,2448,5,409,0,0,2448,2449,3,348, - 174,0,2449,2450,5,397,0,0,2450,2451,3,346,173,0,2451,2452,5,411, - 0,0,2452,355,1,0,0,0,2453,2454,5,357,0,0,2454,2455,5,409,0,0,2455, - 2456,3,344,172,0,2456,2457,5,411,0,0,2457,357,1,0,0,0,2458,2460, - 7,21,0,0,2459,2461,7,22,0,0,2460,2459,1,0,0,0,2460,2461,1,0,0,0, - 2461,359,1,0,0,0,2462,2464,3,364,182,0,2463,2462,1,0,0,0,2463,2464, - 1,0,0,0,2464,2465,1,0,0,0,2465,2466,3,362,181,0,2466,361,1,0,0,0, - 2467,2470,3,368,184,0,2468,2470,3,372,186,0,2469,2467,1,0,0,0,2469, - 2468,1,0,0,0,2470,363,1,0,0,0,2471,2472,5,387,0,0,2472,2477,3,366, - 183,0,2473,2474,5,397,0,0,2474,2476,3,366,183,0,2475,2473,1,0,0, - 0,2476,2479,1,0,0,0,2477,2475,1,0,0,0,2477,2478,1,0,0,0,2478,365, - 1,0,0,0,2479,2477,1,0,0,0,2480,2485,3,638,319,0,2481,2482,5,399, - 0,0,2482,2483,3,254,127,0,2483,2484,5,400,0,0,2484,2486,1,0,0,0, - 2485,2481,1,0,0,0,2485,2486,1,0,0,0,2486,2487,1,0,0,0,2487,2488, - 5,17,0,0,2488,2489,5,399,0,0,2489,2490,3,360,180,0,2490,2491,5,400, - 0,0,2491,367,1,0,0,0,2492,2498,3,370,185,0,2493,2494,3,358,179,0, - 2494,2495,3,370,185,0,2495,2497,1,0,0,0,2496,2493,1,0,0,0,2497,2500, - 1,0,0,0,2498,2496,1,0,0,0,2498,2499,1,0,0,0,2499,369,1,0,0,0,2500, - 2498,1,0,0,0,2501,2502,3,448,224,0,2502,2503,3,382,191,0,2503,2505, - 3,500,250,0,2504,2506,3,462,231,0,2505,2504,1,0,0,0,2505,2506,1, - 0,0,0,2506,2508,1,0,0,0,2507,2509,3,494,247,0,2508,2507,1,0,0,0, - 2508,2509,1,0,0,0,2509,2511,1,0,0,0,2510,2512,3,520,260,0,2511,2510, - 1,0,0,0,2511,2512,1,0,0,0,2512,2514,1,0,0,0,2513,2515,3,528,264, - 0,2514,2513,1,0,0,0,2514,2515,1,0,0,0,2515,2517,1,0,0,0,2516,2518, - 3,512,256,0,2517,2516,1,0,0,0,2517,2518,1,0,0,0,2518,2520,1,0,0, - 0,2519,2521,3,530,265,0,2520,2519,1,0,0,0,2520,2521,1,0,0,0,2521, - 2523,1,0,0,0,2522,2524,3,542,271,0,2523,2522,1,0,0,0,2523,2524,1, - 0,0,0,2524,2526,1,0,0,0,2525,2527,3,544,272,0,2526,2525,1,0,0,0, - 2526,2527,1,0,0,0,2527,2529,1,0,0,0,2528,2530,3,546,273,0,2529,2528, - 1,0,0,0,2529,2530,1,0,0,0,2530,2532,1,0,0,0,2531,2533,3,548,274, - 0,2532,2531,1,0,0,0,2532,2533,1,0,0,0,2533,2535,1,0,0,0,2534,2536, - 3,386,193,0,2535,2534,1,0,0,0,2535,2536,1,0,0,0,2536,2573,1,0,0, - 0,2537,2538,3,448,224,0,2538,2540,3,500,250,0,2539,2541,3,462,231, - 0,2540,2539,1,0,0,0,2540,2541,1,0,0,0,2541,2543,1,0,0,0,2542,2544, - 3,494,247,0,2543,2542,1,0,0,0,2543,2544,1,0,0,0,2544,2546,1,0,0, - 0,2545,2547,3,520,260,0,2546,2545,1,0,0,0,2546,2547,1,0,0,0,2547, - 2549,1,0,0,0,2548,2550,3,528,264,0,2549,2548,1,0,0,0,2549,2550,1, - 0,0,0,2550,2552,1,0,0,0,2551,2553,3,512,256,0,2552,2551,1,0,0,0, - 2552,2553,1,0,0,0,2553,2555,1,0,0,0,2554,2556,3,530,265,0,2555,2554, - 1,0,0,0,2555,2556,1,0,0,0,2556,2558,1,0,0,0,2557,2559,3,542,271, - 0,2558,2557,1,0,0,0,2558,2559,1,0,0,0,2559,2561,1,0,0,0,2560,2562, - 3,544,272,0,2561,2560,1,0,0,0,2561,2562,1,0,0,0,2562,2564,1,0,0, - 0,2563,2565,3,546,273,0,2564,2563,1,0,0,0,2564,2565,1,0,0,0,2565, - 2567,1,0,0,0,2566,2568,3,548,274,0,2567,2566,1,0,0,0,2567,2568,1, - 0,0,0,2568,2570,1,0,0,0,2569,2571,3,386,193,0,2570,2569,1,0,0,0, - 2570,2571,1,0,0,0,2571,2573,1,0,0,0,2572,2501,1,0,0,0,2572,2537, - 1,0,0,0,2573,371,1,0,0,0,2574,2575,3,382,191,0,2575,2576,3,376,188, - 0,2576,2579,1,0,0,0,2577,2579,3,376,188,0,2578,2574,1,0,0,0,2578, - 2577,1,0,0,0,2579,373,1,0,0,0,2580,2582,3,500,250,0,2581,2583,3, - 448,224,0,2582,2581,1,0,0,0,2582,2583,1,0,0,0,2583,2585,1,0,0,0, - 2584,2586,3,494,247,0,2585,2584,1,0,0,0,2585,2586,1,0,0,0,2586,2588, - 1,0,0,0,2587,2589,3,520,260,0,2588,2587,1,0,0,0,2588,2589,1,0,0, - 0,2589,2591,1,0,0,0,2590,2592,3,528,264,0,2591,2590,1,0,0,0,2591, - 2592,1,0,0,0,2592,2594,1,0,0,0,2593,2595,3,512,256,0,2594,2593,1, - 0,0,0,2594,2595,1,0,0,0,2595,2597,1,0,0,0,2596,2598,3,530,265,0, - 2597,2596,1,0,0,0,2597,2598,1,0,0,0,2598,2605,1,0,0,0,2599,2600, - 5,399,0,0,2600,2601,3,376,188,0,2601,2602,5,400,0,0,2602,2605,1, - 0,0,0,2603,2605,3,496,248,0,2604,2580,1,0,0,0,2604,2599,1,0,0,0, - 2604,2603,1,0,0,0,2605,375,1,0,0,0,2606,2608,3,374,187,0,2607,2609, - 3,378,189,0,2608,2607,1,0,0,0,2608,2609,1,0,0,0,2609,2611,1,0,0, - 0,2610,2612,3,542,271,0,2611,2610,1,0,0,0,2611,2612,1,0,0,0,2612, - 2614,1,0,0,0,2613,2615,3,544,272,0,2614,2613,1,0,0,0,2614,2615,1, - 0,0,0,2615,2617,1,0,0,0,2616,2618,3,546,273,0,2617,2616,1,0,0,0, - 2617,2618,1,0,0,0,2618,2620,1,0,0,0,2619,2621,3,548,274,0,2620,2619, - 1,0,0,0,2620,2621,1,0,0,0,2621,2623,1,0,0,0,2622,2624,3,386,193, - 0,2623,2622,1,0,0,0,2623,2624,1,0,0,0,2624,377,1,0,0,0,2625,2626, - 3,358,179,0,2626,2627,3,374,187,0,2627,2629,1,0,0,0,2628,2625,1, - 0,0,0,2629,2630,1,0,0,0,2630,2628,1,0,0,0,2630,2631,1,0,0,0,2631, - 379,1,0,0,0,2632,2634,3,364,182,0,2633,2632,1,0,0,0,2633,2634,1, - 0,0,0,2634,2635,1,0,0,0,2635,2636,3,376,188,0,2636,381,1,0,0,0,2637, - 2654,5,161,0,0,2638,2639,5,235,0,0,2639,2641,3,384,192,0,2640,2642, - 3,32,16,0,2641,2640,1,0,0,0,2641,2642,1,0,0,0,2642,2655,1,0,0,0, - 2643,2645,5,166,0,0,2644,2646,5,329,0,0,2645,2644,1,0,0,0,2645,2646, - 1,0,0,0,2646,2647,1,0,0,0,2647,2652,3,624,312,0,2648,2649,5,399, - 0,0,2649,2650,3,254,127,0,2650,2651,5,400,0,0,2651,2653,1,0,0,0, - 2652,2648,1,0,0,0,2652,2653,1,0,0,0,2653,2655,1,0,0,0,2654,2638, - 1,0,0,0,2654,2643,1,0,0,0,2655,383,1,0,0,0,2656,2658,5,188,0,0,2657, - 2656,1,0,0,0,2657,2658,1,0,0,0,2658,2659,1,0,0,0,2659,2660,5,93, - 0,0,2660,2662,5,426,0,0,2661,2663,3,222,111,0,2662,2661,1,0,0,0, - 2662,2663,1,0,0,0,2663,2665,1,0,0,0,2664,2666,3,246,123,0,2665,2664, - 1,0,0,0,2665,2666,1,0,0,0,2666,2670,1,0,0,0,2667,2668,5,329,0,0, - 2668,2670,3,624,312,0,2669,2657,1,0,0,0,2669,2667,1,0,0,0,2670,385, - 1,0,0,0,2671,2680,5,185,0,0,2672,2673,5,431,0,0,2673,2675,5,397, - 0,0,2674,2672,1,0,0,0,2674,2675,1,0,0,0,2675,2676,1,0,0,0,2676,2681, - 5,431,0,0,2677,2678,5,431,0,0,2678,2679,5,223,0,0,2679,2681,5,431, - 0,0,2680,2674,1,0,0,0,2680,2677,1,0,0,0,2681,387,1,0,0,0,2682,2683, - 3,256,128,0,2683,2684,5,405,0,0,2684,2685,3,390,195,0,2685,389,1, - 0,0,0,2686,2689,5,83,0,0,2687,2689,3,590,295,0,2688,2686,1,0,0,0, - 2688,2687,1,0,0,0,2689,391,1,0,0,0,2690,2691,5,304,0,0,2691,2696, - 3,388,194,0,2692,2693,5,397,0,0,2693,2695,3,388,194,0,2694,2692, - 1,0,0,0,2695,2698,1,0,0,0,2696,2694,1,0,0,0,2696,2697,1,0,0,0,2697, - 393,1,0,0,0,2698,2696,1,0,0,0,2699,2700,5,318,0,0,2700,2709,5,344, - 0,0,2701,2706,3,396,198,0,2702,2703,5,397,0,0,2703,2705,3,396,198, - 0,2704,2702,1,0,0,0,2705,2708,1,0,0,0,2706,2704,1,0,0,0,2706,2707, - 1,0,0,0,2707,2710,1,0,0,0,2708,2706,1,0,0,0,2709,2701,1,0,0,0,2709, - 2710,1,0,0,0,2710,2723,1,0,0,0,2711,2713,5,48,0,0,2712,2714,5,389, - 0,0,2713,2712,1,0,0,0,2713,2714,1,0,0,0,2714,2723,1,0,0,0,2715,2717, - 5,289,0,0,2716,2718,5,389,0,0,2717,2716,1,0,0,0,2717,2718,1,0,0, - 0,2718,2723,1,0,0,0,2719,2720,5,304,0,0,2720,2721,5,22,0,0,2721, - 2723,7,23,0,0,2722,2699,1,0,0,0,2722,2711,1,0,0,0,2722,2715,1,0, - 0,0,2722,2719,1,0,0,0,2723,395,1,0,0,0,2724,2725,5,168,0,0,2725, - 2726,5,182,0,0,2726,2730,5,312,0,0,2727,2728,5,261,0,0,2728,2730, - 7,24,0,0,2729,2724,1,0,0,0,2729,2727,1,0,0,0,2730,397,1,0,0,0,2731, - 2734,3,402,201,0,2732,2734,3,404,202,0,2733,2731,1,0,0,0,2733,2732, - 1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0,2735,2736,1,0,0,0,2736, - 2739,1,0,0,0,2737,2735,1,0,0,0,2738,2740,3,400,200,0,2739,2738,1, - 0,0,0,2739,2740,1,0,0,0,2740,399,1,0,0,0,2741,2742,5,383,0,0,2742, - 2743,5,216,0,0,2743,2746,5,201,0,0,2744,2745,5,11,0,0,2745,2747, - 3,580,290,0,2746,2744,1,0,0,0,2746,2747,1,0,0,0,2747,2748,1,0,0, - 0,2748,2749,5,335,0,0,2749,2751,5,161,0,0,2750,2752,3,264,132,0, - 2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752,2753,1,0,0,0,2753,2754, - 5,374,0,0,2754,2755,3,538,269,0,2755,401,1,0,0,0,2756,2757,5,383, - 0,0,2757,2758,5,201,0,0,2758,2759,5,11,0,0,2759,2760,3,580,290,0, - 2760,2764,5,335,0,0,2761,2762,5,365,0,0,2762,2765,3,392,196,0,2763, - 2765,5,86,0,0,2764,2761,1,0,0,0,2764,2763,1,0,0,0,2765,403,1,0,0, - 0,2766,2767,5,383,0,0,2767,2768,5,201,0,0,2768,2772,5,335,0,0,2769, - 2770,5,365,0,0,2770,2773,3,392,196,0,2771,2773,5,86,0,0,2772,2769, - 1,0,0,0,2772,2771,1,0,0,0,2773,405,1,0,0,0,2774,2775,5,246,0,0,2775, - 2776,5,426,0,0,2776,407,1,0,0,0,2777,2778,5,352,0,0,2778,2779,5, - 426,0,0,2779,409,1,0,0,0,2780,2781,5,320,0,0,2781,2782,5,426,0,0, - 2782,411,1,0,0,0,2783,2814,5,9,0,0,2784,2785,5,329,0,0,2785,2786, - 3,478,239,0,2786,2787,3,414,207,0,2787,2815,1,0,0,0,2788,2789,5, - 378,0,0,2789,2791,3,482,241,0,2790,2792,5,17,0,0,2791,2790,1,0,0, - 0,2791,2792,1,0,0,0,2792,2793,1,0,0,0,2793,2794,3,418,209,0,2794, - 2815,1,0,0,0,2795,2796,5,202,0,0,2796,2797,5,378,0,0,2797,2801,3, - 482,241,0,2798,2802,3,36,18,0,2799,2802,3,38,19,0,2800,2802,5,265, - 0,0,2801,2798,1,0,0,0,2801,2799,1,0,0,0,2801,2800,1,0,0,0,2802,2815, - 1,0,0,0,2803,2804,3,70,35,0,2804,2805,3,420,210,0,2805,2815,1,0, - 0,0,2806,2807,5,69,0,0,2807,2815,3,422,211,0,2808,2809,5,155,0,0, - 2809,2810,3,638,319,0,2810,2811,5,224,0,0,2811,2812,3,624,312,0, - 2812,2813,5,265,0,0,2813,2815,1,0,0,0,2814,2784,1,0,0,0,2814,2788, - 1,0,0,0,2814,2795,1,0,0,0,2814,2803,1,0,0,0,2814,2806,1,0,0,0,2814, - 2808,1,0,0,0,2815,413,1,0,0,0,2816,2817,5,274,0,0,2817,2818,5,341, - 0,0,2818,2906,3,480,240,0,2819,2820,5,102,0,0,2820,2906,5,239,0, - 0,2821,2906,3,426,213,0,2822,2824,5,4,0,0,2823,2825,3,32,16,0,2824, - 2823,1,0,0,0,2824,2825,1,0,0,0,2825,2830,1,0,0,0,2826,2828,3,626, - 313,0,2827,2829,3,424,212,0,2828,2827,1,0,0,0,2828,2829,1,0,0,0, - 2829,2831,1,0,0,0,2830,2826,1,0,0,0,2831,2832,1,0,0,0,2832,2830, - 1,0,0,0,2832,2833,1,0,0,0,2833,2906,1,0,0,0,2834,2838,5,342,0,0, - 2835,2837,3,626,313,0,2836,2835,1,0,0,0,2837,2840,1,0,0,0,2838,2836, - 1,0,0,0,2838,2839,1,0,0,0,2839,2906,1,0,0,0,2840,2838,1,0,0,0,2841, - 2845,5,15,0,0,2842,2844,3,626,313,0,2843,2842,1,0,0,0,2844,2847, - 1,0,0,0,2845,2843,1,0,0,0,2845,2846,1,0,0,0,2846,2906,1,0,0,0,2847, - 2845,1,0,0,0,2848,2852,5,353,0,0,2849,2851,3,626,313,0,2850,2849, - 1,0,0,0,2851,2854,1,0,0,0,2852,2850,1,0,0,0,2852,2853,1,0,0,0,2853, - 2906,1,0,0,0,2854,2852,1,0,0,0,2855,2856,5,304,0,0,2856,2857,5,332, - 0,0,2857,2906,3,226,113,0,2858,2859,5,363,0,0,2859,2861,5,332,0, - 0,2860,2862,3,30,15,0,2861,2860,1,0,0,0,2861,2862,1,0,0,0,2862,2863, - 1,0,0,0,2863,2906,3,226,113,0,2864,2906,3,210,105,0,2865,2868,5, - 216,0,0,2866,2869,5,310,0,0,2867,2869,3,40,20,0,2868,2866,1,0,0, - 0,2868,2867,1,0,0,0,2869,2906,1,0,0,0,2870,2871,5,113,0,0,2871,2872, - 3,626,313,0,2872,2873,5,387,0,0,2873,2874,5,329,0,0,2874,2875,3, - 478,239,0,2875,2906,1,0,0,0,2876,2877,5,237,0,0,2877,2878,5,45,0, - 0,2878,2879,5,399,0,0,2879,2880,3,310,155,0,2880,2881,5,400,0,0, - 2881,2906,1,0,0,0,2882,2883,5,101,0,0,2883,2884,5,55,0,0,2884,2906, - 3,638,319,0,2885,2888,5,4,0,0,2886,2889,3,288,144,0,2887,2889,3, - 278,139,0,2888,2886,1,0,0,0,2888,2887,1,0,0,0,2889,2906,1,0,0,0, - 2890,2892,3,626,313,0,2891,2890,1,0,0,0,2891,2892,1,0,0,0,2892,2893, - 1,0,0,0,2893,2906,3,416,208,0,2894,2895,5,304,0,0,2895,2896,5,236, - 0,0,2896,2906,3,126,63,0,2897,2898,5,304,0,0,2898,2899,5,237,0,0, - 2899,2900,5,316,0,0,2900,2901,5,399,0,0,2901,2902,3,204,102,0,2902, - 2903,5,400,0,0,2903,2906,1,0,0,0,2904,2906,3,430,215,0,2905,2816, - 1,0,0,0,2905,2819,1,0,0,0,2905,2821,1,0,0,0,2905,2822,1,0,0,0,2905, - 2834,1,0,0,0,2905,2841,1,0,0,0,2905,2848,1,0,0,0,2905,2855,1,0,0, - 0,2905,2858,1,0,0,0,2905,2864,1,0,0,0,2905,2865,1,0,0,0,2905,2870, - 1,0,0,0,2905,2876,1,0,0,0,2905,2882,1,0,0,0,2905,2885,1,0,0,0,2905, - 2891,1,0,0,0,2905,2894,1,0,0,0,2905,2897,1,0,0,0,2905,2904,1,0,0, - 0,2906,415,1,0,0,0,2907,2908,5,304,0,0,2908,2909,5,129,0,0,2909, - 3040,3,432,216,0,2910,2911,5,304,0,0,2911,2912,5,189,0,0,2912,3040, - 5,426,0,0,2913,3040,5,53,0,0,2914,2924,5,304,0,0,2915,2916,5,301, - 0,0,2916,2920,5,426,0,0,2917,2918,5,387,0,0,2918,2919,5,302,0,0, - 2919,2921,3,226,113,0,2920,2917,1,0,0,0,2920,2921,1,0,0,0,2921,2925, - 1,0,0,0,2922,2923,5,302,0,0,2923,2925,3,226,113,0,2924,2915,1,0, - 0,0,2924,2922,1,0,0,0,2925,3040,1,0,0,0,2926,2927,5,363,0,0,2927, - 2928,5,302,0,0,2928,3040,3,226,113,0,2929,2930,5,274,0,0,2930,2931, - 5,341,0,0,2931,3040,3,626,313,0,2932,2933,5,166,0,0,2933,2934,5, - 431,0,0,2934,3040,5,31,0,0,2935,2936,5,304,0,0,2936,2937,5,310,0, - 0,2937,2938,5,189,0,0,2938,2939,5,399,0,0,2939,2944,3,428,214,0, - 2940,2941,5,397,0,0,2941,2943,3,428,214,0,2942,2940,1,0,0,0,2943, - 2946,1,0,0,0,2944,2942,1,0,0,0,2944,2945,1,0,0,0,2945,2947,1,0,0, - 0,2946,2944,1,0,0,0,2947,2948,5,400,0,0,2948,3040,1,0,0,0,2949,2950, - 5,216,0,0,2950,3040,7,25,0,0,2951,3040,3,208,104,0,2952,2953,5,49, - 0,0,2953,2956,5,426,0,0,2954,2955,5,11,0,0,2955,2957,5,380,0,0,2956, - 2954,1,0,0,0,2956,2957,1,0,0,0,2957,2962,1,0,0,0,2958,2959,5,42, - 0,0,2959,2960,5,166,0,0,2960,2961,5,431,0,0,2961,2963,5,31,0,0,2962, - 2958,1,0,0,0,2962,2963,1,0,0,0,2963,2965,1,0,0,0,2964,2966,3,542, - 271,0,2965,2964,1,0,0,0,2965,2966,1,0,0,0,2966,2968,1,0,0,0,2967, - 2969,3,406,203,0,2968,2967,1,0,0,0,2968,2969,1,0,0,0,2969,2974,1, - 0,0,0,2970,2971,5,387,0,0,2971,2972,5,235,0,0,2972,2973,5,332,0, - 0,2973,2975,3,226,113,0,2974,2970,1,0,0,0,2974,2975,1,0,0,0,2975, - 3040,1,0,0,0,2976,2977,5,365,0,0,2977,2978,5,319,0,0,2978,2980,5, - 134,0,0,2979,2981,5,45,0,0,2980,2979,1,0,0,0,2980,2981,1,0,0,0,2981, - 2982,1,0,0,0,2982,2983,3,256,128,0,2983,2984,5,304,0,0,2984,2987, - 3,226,113,0,2985,2986,5,47,0,0,2986,2988,5,426,0,0,2987,2985,1,0, - 0,0,2987,2988,1,0,0,0,2988,3040,1,0,0,0,2989,2990,5,365,0,0,2990, - 2991,5,319,0,0,2991,2992,5,304,0,0,2992,3040,3,226,113,0,2993,2995, - 5,38,0,0,2994,2996,5,45,0,0,2995,2994,1,0,0,0,2995,2996,1,0,0,0, - 2996,2997,1,0,0,0,2997,2998,3,256,128,0,2998,2999,3,258,129,0,2999, - 3001,3,342,171,0,3000,3002,3,324,162,0,3001,3000,1,0,0,0,3001,3002, - 1,0,0,0,3002,3005,1,0,0,0,3003,3004,5,47,0,0,3004,3006,5,426,0,0, - 3005,3003,1,0,0,0,3005,3006,1,0,0,0,3006,3010,1,0,0,0,3007,3011, - 5,130,0,0,3008,3009,5,6,0,0,3009,3011,3,638,319,0,3010,3007,1,0, - 0,0,3010,3008,1,0,0,0,3010,3011,1,0,0,0,3011,3013,1,0,0,0,3012,3014, - 3,34,17,0,3013,3012,1,0,0,0,3013,3014,1,0,0,0,3014,3040,1,0,0,0, - 3015,3018,5,4,0,0,3016,3018,5,278,0,0,3017,3015,1,0,0,0,3017,3016, - 1,0,0,0,3018,3019,1,0,0,0,3019,3020,5,46,0,0,3020,3021,5,399,0,0, - 3021,3022,3,248,124,0,3022,3024,5,400,0,0,3023,3025,3,34,17,0,3024, - 3023,1,0,0,0,3024,3025,1,0,0,0,3025,3040,1,0,0,0,3026,3027,5,365, - 0,0,3027,3029,5,46,0,0,3028,3030,3,34,17,0,3029,3028,1,0,0,0,3029, - 3030,1,0,0,0,3030,3040,1,0,0,0,3031,3037,3,268,134,0,3032,3034,5, - 218,0,0,3033,3035,5,34,0,0,3034,3033,1,0,0,0,3034,3035,1,0,0,0,3035, - 3038,1,0,0,0,3036,3038,5,222,0,0,3037,3032,1,0,0,0,3037,3036,1,0, - 0,0,3038,3040,1,0,0,0,3039,2907,1,0,0,0,3039,2910,1,0,0,0,3039,2913, - 1,0,0,0,3039,2914,1,0,0,0,3039,2926,1,0,0,0,3039,2929,1,0,0,0,3039, - 2932,1,0,0,0,3039,2935,1,0,0,0,3039,2949,1,0,0,0,3039,2951,1,0,0, - 0,3039,2952,1,0,0,0,3039,2976,1,0,0,0,3039,2989,1,0,0,0,3039,2993, - 1,0,0,0,3039,3017,1,0,0,0,3039,3026,1,0,0,0,3039,3031,1,0,0,0,3040, - 417,1,0,0,0,3041,3042,5,304,0,0,3042,3043,5,332,0,0,3043,3068,3, - 226,113,0,3044,3045,5,363,0,0,3045,3047,5,332,0,0,3046,3048,3,30, - 15,0,3047,3046,1,0,0,0,3047,3048,1,0,0,0,3048,3049,1,0,0,0,3049, - 3068,3,226,113,0,3050,3051,5,274,0,0,3051,3052,5,341,0,0,3052,3068, - 3,480,240,0,3053,3055,5,4,0,0,3054,3056,3,32,16,0,3055,3054,1,0, - 0,0,3055,3056,1,0,0,0,3056,3061,1,0,0,0,3057,3059,3,626,313,0,3058, - 3060,3,424,212,0,3059,3058,1,0,0,0,3059,3060,1,0,0,0,3060,3062,1, - 0,0,0,3061,3057,1,0,0,0,3062,3063,1,0,0,0,3063,3061,1,0,0,0,3063, - 3064,1,0,0,0,3064,3068,1,0,0,0,3065,3068,3,426,213,0,3066,3068,3, - 380,190,0,3067,3041,1,0,0,0,3067,3044,1,0,0,0,3067,3050,1,0,0,0, - 3067,3053,1,0,0,0,3067,3065,1,0,0,0,3067,3066,1,0,0,0,3068,419,1, - 0,0,0,3069,3070,3,472,236,0,3070,3071,5,304,0,0,3071,3072,5,76,0, - 0,3072,3073,3,230,115,0,3073,3085,1,0,0,0,3074,3075,3,472,236,0, - 3075,3076,5,304,0,0,3076,3077,5,236,0,0,3077,3078,3,128,64,0,3078, - 3085,1,0,0,0,3079,3080,3,472,236,0,3080,3081,5,304,0,0,3081,3082, - 7,26,0,0,3082,3083,5,426,0,0,3083,3085,1,0,0,0,3084,3069,1,0,0,0, - 3084,3074,1,0,0,0,3084,3079,1,0,0,0,3085,421,1,0,0,0,3086,3087,3, - 472,236,0,3087,3088,5,304,0,0,3088,3089,5,77,0,0,3089,3090,3,230, - 115,0,3090,3102,1,0,0,0,3091,3092,3,472,236,0,3092,3093,5,304,0, - 0,3093,3094,5,236,0,0,3094,3095,3,128,64,0,3095,3102,1,0,0,0,3096, - 3097,3,472,236,0,3097,3098,5,304,0,0,3098,3099,5,367,0,0,3099,3100, - 5,426,0,0,3100,3102,1,0,0,0,3101,3086,1,0,0,0,3101,3091,1,0,0,0, - 3101,3096,1,0,0,0,3102,423,1,0,0,0,3103,3104,5,189,0,0,3104,3105, - 5,426,0,0,3105,425,1,0,0,0,3106,3108,5,101,0,0,3107,3109,3,30,15, - 0,3108,3107,1,0,0,0,3108,3109,1,0,0,0,3109,3110,1,0,0,0,3110,3111, - 5,237,0,0,3111,3117,3,630,315,0,3112,3113,5,397,0,0,3113,3114,5, - 237,0,0,3114,3116,3,630,315,0,3115,3112,1,0,0,0,3116,3119,1,0,0, - 0,3117,3115,1,0,0,0,3117,3118,1,0,0,0,3118,3122,1,0,0,0,3119,3117, - 1,0,0,0,3120,3121,5,152,0,0,3121,3123,5,254,0,0,3122,3120,1,0,0, - 0,3122,3123,1,0,0,0,3123,3125,1,0,0,0,3124,3126,5,255,0,0,3125,3124, - 1,0,0,0,3125,3126,1,0,0,0,3126,3128,1,0,0,0,3127,3129,3,14,7,0,3128, - 3127,1,0,0,0,3128,3129,1,0,0,0,3129,427,1,0,0,0,3130,3133,3,572, - 286,0,3131,3133,3,294,147,0,3132,3130,1,0,0,0,3132,3131,1,0,0,0, - 3133,3134,1,0,0,0,3134,3135,5,405,0,0,3135,3136,5,426,0,0,3136,429, - 1,0,0,0,3137,3147,5,115,0,0,3138,3139,5,289,0,0,3139,3140,5,399, - 0,0,3140,3148,7,27,0,0,3141,3142,5,118,0,0,3142,3143,5,399,0,0,3143, - 3148,5,426,0,0,3144,3145,5,306,0,0,3145,3146,5,399,0,0,3146,3148, - 5,431,0,0,3147,3138,1,0,0,0,3147,3141,1,0,0,0,3147,3144,1,0,0,0, - 3148,3149,1,0,0,0,3149,3150,5,400,0,0,3150,431,1,0,0,0,3151,3152, - 5,160,0,0,3152,3153,5,426,0,0,3153,3154,5,233,0,0,3154,3155,5,426, - 0,0,3155,3156,5,301,0,0,3156,3161,5,426,0,0,3157,3158,5,159,0,0, - 3158,3159,5,426,0,0,3159,3160,5,232,0,0,3160,3162,5,426,0,0,3161, - 3157,1,0,0,0,3161,3162,1,0,0,0,3162,3165,1,0,0,0,3163,3165,3,638, - 319,0,3164,3151,1,0,0,0,3164,3163,1,0,0,0,3165,433,1,0,0,0,3166, - 3167,5,184,0,0,3167,3176,5,128,0,0,3168,3169,5,184,0,0,3169,3170, - 5,128,0,0,3170,3171,3,638,319,0,3171,3172,5,426,0,0,3172,3176,1, - 0,0,0,3173,3174,5,184,0,0,3174,3176,3,478,239,0,3175,3166,1,0,0, - 0,3175,3168,1,0,0,0,3175,3173,1,0,0,0,3176,435,1,0,0,0,3177,3179, - 5,58,0,0,3178,3180,5,333,0,0,3179,3178,1,0,0,0,3179,3180,1,0,0,0, - 3180,3182,1,0,0,0,3181,3183,5,345,0,0,3182,3181,1,0,0,0,3182,3183, - 1,0,0,0,3183,3185,1,0,0,0,3184,3186,5,123,0,0,3185,3184,1,0,0,0, - 3185,3186,1,0,0,0,3186,3187,1,0,0,0,3187,3189,5,329,0,0,3188,3190, - 3,32,16,0,3189,3188,1,0,0,0,3189,3190,1,0,0,0,3190,3191,1,0,0,0, - 3191,3248,3,480,240,0,3192,3194,3,434,217,0,3193,3195,3,200,100, - 0,3194,3193,1,0,0,0,3194,3195,1,0,0,0,3195,3197,1,0,0,0,3196,3198, - 3,222,111,0,3197,3196,1,0,0,0,3197,3198,1,0,0,0,3198,3200,1,0,0, - 0,3199,3201,3,246,123,0,3200,3199,1,0,0,0,3200,3201,1,0,0,0,3201, - 3203,1,0,0,0,3202,3204,3,424,212,0,3203,3202,1,0,0,0,3203,3204,1, - 0,0,0,3204,3206,1,0,0,0,3205,3207,3,224,112,0,3206,3205,1,0,0,0, - 3206,3207,1,0,0,0,3207,3209,1,0,0,0,3208,3210,3,198,99,0,3209,3208, - 1,0,0,0,3209,3210,1,0,0,0,3210,3249,1,0,0,0,3211,3212,5,399,0,0, - 3212,3213,3,250,125,0,3213,3214,5,400,0,0,3214,3216,1,0,0,0,3215, - 3211,1,0,0,0,3215,3216,1,0,0,0,3216,3218,1,0,0,0,3217,3219,3,196, - 98,0,3218,3217,1,0,0,0,3218,3219,1,0,0,0,3219,3221,1,0,0,0,3220, - 3222,3,200,100,0,3221,3220,1,0,0,0,3221,3222,1,0,0,0,3222,3224,1, - 0,0,0,3223,3225,3,208,104,0,3224,3223,1,0,0,0,3224,3225,1,0,0,0, - 3225,3227,1,0,0,0,3226,3228,3,210,105,0,3227,3226,1,0,0,0,3227,3228, - 1,0,0,0,3228,3230,1,0,0,0,3229,3231,3,222,111,0,3230,3229,1,0,0, - 0,3230,3231,1,0,0,0,3231,3233,1,0,0,0,3232,3234,3,246,123,0,3233, - 3232,1,0,0,0,3233,3234,1,0,0,0,3234,3236,1,0,0,0,3235,3237,3,424, - 212,0,3236,3235,1,0,0,0,3236,3237,1,0,0,0,3237,3239,1,0,0,0,3238, - 3240,3,224,112,0,3239,3238,1,0,0,0,3239,3240,1,0,0,0,3240,3242,1, - 0,0,0,3241,3243,3,198,99,0,3242,3241,1,0,0,0,3242,3243,1,0,0,0,3243, - 3246,1,0,0,0,3244,3245,5,17,0,0,3245,3247,3,380,190,0,3246,3244, - 1,0,0,0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248,3192,1,0,0,0,3248, - 3215,1,0,0,0,3249,3313,1,0,0,0,3250,3251,5,58,0,0,3251,3252,5,195, - 0,0,3252,3254,5,329,0,0,3253,3255,3,32,16,0,3254,3253,1,0,0,0,3254, - 3255,1,0,0,0,3255,3256,1,0,0,0,3256,3310,3,480,240,0,3257,3259,3, - 434,217,0,3258,3260,3,222,111,0,3259,3258,1,0,0,0,3259,3260,1,0, - 0,0,3260,3262,1,0,0,0,3261,3263,3,246,123,0,3262,3261,1,0,0,0,3262, - 3263,1,0,0,0,3263,3265,1,0,0,0,3264,3266,3,424,212,0,3265,3264,1, - 0,0,0,3265,3266,1,0,0,0,3266,3268,1,0,0,0,3267,3269,3,224,112,0, - 3268,3267,1,0,0,0,3268,3269,1,0,0,0,3269,3271,1,0,0,0,3270,3272, - 3,198,99,0,3271,3270,1,0,0,0,3271,3272,1,0,0,0,3272,3311,1,0,0,0, - 3273,3274,5,399,0,0,3274,3275,3,250,125,0,3275,3276,5,400,0,0,3276, - 3278,1,0,0,0,3277,3273,1,0,0,0,3277,3278,1,0,0,0,3278,3280,1,0,0, - 0,3279,3281,3,196,98,0,3280,3279,1,0,0,0,3280,3281,1,0,0,0,3281, - 3283,1,0,0,0,3282,3284,3,200,100,0,3283,3282,1,0,0,0,3283,3284,1, - 0,0,0,3284,3286,1,0,0,0,3285,3287,3,208,104,0,3286,3285,1,0,0,0, - 3286,3287,1,0,0,0,3287,3289,1,0,0,0,3288,3290,3,210,105,0,3289,3288, - 1,0,0,0,3289,3290,1,0,0,0,3290,3292,1,0,0,0,3291,3293,3,222,111, - 0,3292,3291,1,0,0,0,3292,3293,1,0,0,0,3293,3295,1,0,0,0,3294,3296, - 3,246,123,0,3295,3294,1,0,0,0,3295,3296,1,0,0,0,3296,3298,1,0,0, - 0,3297,3299,3,424,212,0,3298,3297,1,0,0,0,3298,3299,1,0,0,0,3299, - 3301,1,0,0,0,3300,3302,3,224,112,0,3301,3300,1,0,0,0,3301,3302,1, - 0,0,0,3302,3304,1,0,0,0,3303,3305,3,198,99,0,3304,3303,1,0,0,0,3304, - 3305,1,0,0,0,3305,3308,1,0,0,0,3306,3307,5,17,0,0,3307,3309,3,380, - 190,0,3308,3306,1,0,0,0,3308,3309,1,0,0,0,3309,3311,1,0,0,0,3310, - 3257,1,0,0,0,3310,3277,1,0,0,0,3311,3313,1,0,0,0,3312,3177,1,0,0, - 0,3312,3250,1,0,0,0,3313,437,1,0,0,0,3314,3315,5,58,0,0,3315,3317, - 5,69,0,0,3316,3318,3,32,16,0,3317,3316,1,0,0,0,3317,3318,1,0,0,0, - 3318,3319,1,0,0,0,3319,3322,3,638,319,0,3320,3321,5,352,0,0,3321, - 3323,5,426,0,0,3322,3320,1,0,0,0,3322,3323,1,0,0,0,3323,3326,1,0, - 0,0,3324,3325,5,367,0,0,3325,3327,5,426,0,0,3326,3324,1,0,0,0,3326, - 3327,1,0,0,0,3327,3330,1,0,0,0,3328,3329,5,47,0,0,3329,3331,5,426, - 0,0,3330,3328,1,0,0,0,3330,3331,1,0,0,0,3331,3335,1,0,0,0,3332,3333, - 5,387,0,0,3333,3334,5,77,0,0,3334,3336,3,230,115,0,3335,3332,1,0, - 0,0,3335,3336,1,0,0,0,3336,439,1,0,0,0,3337,3338,5,101,0,0,3338, - 3340,5,69,0,0,3339,3341,3,30,15,0,3340,3339,1,0,0,0,3340,3341,1, - 0,0,0,3341,3342,1,0,0,0,3342,3343,3,638,319,0,3343,441,1,0,0,0,3344, - 3345,3,638,319,0,3345,3346,5,395,0,0,3346,3348,1,0,0,0,3347,3344, - 1,0,0,0,3348,3351,1,0,0,0,3349,3347,1,0,0,0,3349,3350,1,0,0,0,3350, - 3352,1,0,0,0,3351,3349,1,0,0,0,3352,3353,5,415,0,0,3353,443,1,0, - 0,0,3354,3359,3,580,290,0,3355,3356,5,397,0,0,3356,3358,3,580,290, - 0,3357,3355,1,0,0,0,3358,3361,1,0,0,0,3359,3357,1,0,0,0,3359,3360, - 1,0,0,0,3360,445,1,0,0,0,3361,3359,1,0,0,0,3362,3367,3,638,319,0, - 3363,3364,5,397,0,0,3364,3366,3,638,319,0,3365,3363,1,0,0,0,3366, - 3369,1,0,0,0,3367,3365,1,0,0,0,3367,3368,1,0,0,0,3368,447,1,0,0, - 0,3369,3367,1,0,0,0,3370,3371,5,139,0,0,3371,3372,3,450,225,0,3372, - 449,1,0,0,0,3373,3374,5,359,0,0,3374,3377,3,458,229,0,3375,3376, - 5,397,0,0,3376,3378,3,458,229,0,3377,3375,1,0,0,0,3378,3379,1,0, - 0,0,3379,3377,1,0,0,0,3379,3380,1,0,0,0,3380,3383,1,0,0,0,3381,3383, - 3,454,227,0,3382,3373,1,0,0,0,3382,3381,1,0,0,0,3383,451,1,0,0,0, - 3384,3388,3,468,234,0,3385,3387,3,462,231,0,3386,3385,1,0,0,0,3387, - 3390,1,0,0,0,3388,3386,1,0,0,0,3388,3389,1,0,0,0,3389,3417,1,0,0, - 0,3390,3388,1,0,0,0,3391,3395,3,498,249,0,3392,3394,3,462,231,0, - 3393,3392,1,0,0,0,3394,3397,1,0,0,0,3395,3393,1,0,0,0,3395,3396, - 1,0,0,0,3396,3417,1,0,0,0,3397,3395,1,0,0,0,3398,3402,3,486,243, - 0,3399,3401,3,462,231,0,3400,3399,1,0,0,0,3401,3404,1,0,0,0,3402, - 3400,1,0,0,0,3402,3403,1,0,0,0,3403,3417,1,0,0,0,3404,3402,1,0,0, - 0,3405,3409,3,492,246,0,3406,3408,3,462,231,0,3407,3406,1,0,0,0, - 3408,3411,1,0,0,0,3409,3407,1,0,0,0,3409,3410,1,0,0,0,3410,3417, - 1,0,0,0,3411,3409,1,0,0,0,3412,3413,5,399,0,0,3413,3414,3,454,227, - 0,3414,3415,5,400,0,0,3415,3417,1,0,0,0,3416,3384,1,0,0,0,3416,3391, - 1,0,0,0,3416,3398,1,0,0,0,3416,3405,1,0,0,0,3416,3412,1,0,0,0,3417, - 453,1,0,0,0,3418,3429,3,452,226,0,3419,3420,3,460,230,0,3420,3425, - 3,456,228,0,3421,3422,5,224,0,0,3422,3426,3,580,290,0,3423,3424, - 5,370,0,0,3424,3426,3,264,132,0,3425,3421,1,0,0,0,3425,3423,1,0, - 0,0,3425,3426,1,0,0,0,3426,3428,1,0,0,0,3427,3419,1,0,0,0,3428,3431, - 1,0,0,0,3429,3427,1,0,0,0,3429,3430,1,0,0,0,3430,455,1,0,0,0,3431, - 3429,1,0,0,0,3432,3437,3,468,234,0,3433,3437,3,498,249,0,3434,3437, - 3,486,243,0,3435,3437,3,492,246,0,3436,3432,1,0,0,0,3436,3433,1, - 0,0,0,3436,3434,1,0,0,0,3436,3435,1,0,0,0,3437,3441,1,0,0,0,3438, - 3440,3,462,231,0,3439,3438,1,0,0,0,3440,3443,1,0,0,0,3441,3439,1, - 0,0,0,3441,3442,1,0,0,0,3442,457,1,0,0,0,3443,3441,1,0,0,0,3444, - 3446,5,250,0,0,3445,3444,1,0,0,0,3445,3446,1,0,0,0,3446,3447,1,0, - 0,0,3447,3449,3,476,238,0,3448,3450,3,466,233,0,3449,3448,1,0,0, - 0,3449,3450,1,0,0,0,3450,3455,1,0,0,0,3451,3453,5,17,0,0,3452,3451, - 1,0,0,0,3452,3453,1,0,0,0,3453,3454,1,0,0,0,3454,3456,3,638,319, - 0,3455,3452,1,0,0,0,3455,3456,1,0,0,0,3456,3457,1,0,0,0,3457,3458, - 5,399,0,0,3458,3459,3,444,222,0,3459,3460,5,400,0,0,3460,459,1,0, - 0,0,3461,3476,5,397,0,0,3462,3473,5,157,0,0,3463,3473,5,60,0,0,3464, - 3466,7,28,0,0,3465,3467,5,231,0,0,3466,3465,1,0,0,0,3466,3467,1, - 0,0,0,3467,3473,1,0,0,0,3468,3470,5,180,0,0,3469,3471,7,29,0,0,3470, - 3469,1,0,0,0,3470,3471,1,0,0,0,3471,3473,1,0,0,0,3472,3462,1,0,0, - 0,3472,3463,1,0,0,0,3472,3464,1,0,0,0,3472,3468,1,0,0,0,3472,3473, - 1,0,0,0,3473,3474,1,0,0,0,3474,3476,5,171,0,0,3475,3461,1,0,0,0, - 3475,3472,1,0,0,0,3476,461,1,0,0,0,3477,3478,5,178,0,0,3478,3479, - 5,378,0,0,3479,3480,5,231,0,0,3480,3481,3,550,275,0,3481,3491,3, - 464,232,0,3482,3483,5,17,0,0,3483,3488,3,638,319,0,3484,3485,5,397, - 0,0,3485,3487,3,638,319,0,3486,3484,1,0,0,0,3487,3490,1,0,0,0,3488, - 3486,1,0,0,0,3488,3489,1,0,0,0,3489,3492,1,0,0,0,3490,3488,1,0,0, - 0,3491,3482,1,0,0,0,3491,3492,1,0,0,0,3492,3535,1,0,0,0,3493,3495, - 5,397,0,0,3494,3493,1,0,0,0,3494,3495,1,0,0,0,3495,3496,1,0,0,0, - 3496,3532,5,178,0,0,3497,3498,5,378,0,0,3498,3499,3,550,275,0,3499, - 3509,3,464,232,0,3500,3501,5,17,0,0,3501,3506,3,638,319,0,3502,3503, - 5,397,0,0,3503,3505,3,638,319,0,3504,3502,1,0,0,0,3505,3508,1,0, - 0,0,3506,3504,1,0,0,0,3506,3507,1,0,0,0,3507,3510,1,0,0,0,3508,3506, - 1,0,0,0,3509,3500,1,0,0,0,3509,3510,1,0,0,0,3510,3533,1,0,0,0,3511, - 3512,5,329,0,0,3512,3513,5,399,0,0,3513,3514,3,496,248,0,3514,3516, - 5,400,0,0,3515,3517,5,17,0,0,3516,3515,1,0,0,0,3516,3517,1,0,0,0, - 3517,3518,1,0,0,0,3518,3530,3,464,232,0,3519,3520,5,399,0,0,3520, - 3525,3,638,319,0,3521,3522,5,397,0,0,3522,3524,3,638,319,0,3523, - 3521,1,0,0,0,3524,3527,1,0,0,0,3525,3523,1,0,0,0,3525,3526,1,0,0, - 0,3526,3528,1,0,0,0,3527,3525,1,0,0,0,3528,3529,5,400,0,0,3529,3531, - 1,0,0,0,3530,3519,1,0,0,0,3530,3531,1,0,0,0,3531,3533,1,0,0,0,3532, - 3497,1,0,0,0,3532,3511,1,0,0,0,3533,3535,1,0,0,0,3534,3477,1,0,0, - 0,3534,3494,1,0,0,0,3535,463,1,0,0,0,3536,3537,3,638,319,0,3537, - 465,1,0,0,0,3538,3539,5,331,0,0,3539,3540,5,399,0,0,3540,3541,5, - 30,0,0,3541,3542,5,431,0,0,3542,3543,5,230,0,0,3543,3544,5,221,0, - 0,3544,3554,5,431,0,0,3545,3546,5,224,0,0,3546,3551,3,580,290,0, - 3547,3548,5,397,0,0,3548,3550,3,580,290,0,3549,3547,1,0,0,0,3550, - 3553,1,0,0,0,3551,3549,1,0,0,0,3551,3552,1,0,0,0,3552,3555,1,0,0, - 0,3553,3551,1,0,0,0,3554,3545,1,0,0,0,3554,3555,1,0,0,0,3555,3556, - 1,0,0,0,3556,3566,5,400,0,0,3557,3558,5,331,0,0,3558,3562,5,399, - 0,0,3559,3560,5,431,0,0,3560,3563,7,30,0,0,3561,3563,5,430,0,0,3562, - 3559,1,0,0,0,3562,3561,1,0,0,0,3563,3564,1,0,0,0,3564,3566,5,400, - 0,0,3565,3538,1,0,0,0,3565,3557,1,0,0,0,3566,467,1,0,0,0,3567,3569, - 3,476,238,0,3568,3570,3,226,113,0,3569,3568,1,0,0,0,3569,3570,1, - 0,0,0,3570,3572,1,0,0,0,3571,3573,3,466,233,0,3572,3571,1,0,0,0, - 3572,3573,1,0,0,0,3573,3575,1,0,0,0,3574,3576,3,470,235,0,3575,3574, - 1,0,0,0,3575,3576,1,0,0,0,3576,3581,1,0,0,0,3577,3579,5,17,0,0,3578, - 3577,1,0,0,0,3578,3579,1,0,0,0,3579,3580,1,0,0,0,3580,3582,3,638, - 319,0,3581,3578,1,0,0,0,3581,3582,1,0,0,0,3582,469,1,0,0,0,3583, - 3593,5,134,0,0,3584,3585,5,327,0,0,3585,3586,5,17,0,0,3586,3587, - 5,221,0,0,3587,3594,3,580,290,0,3588,3589,5,134,0,0,3589,3590,5, - 328,0,0,3590,3591,5,17,0,0,3591,3592,5,221,0,0,3592,3594,5,431,0, - 0,3593,3584,1,0,0,0,3593,3588,1,0,0,0,3594,471,1,0,0,0,3595,3596, - 3,638,319,0,3596,473,1,0,0,0,3597,3598,3,638,319,0,3598,475,1,0, - 0,0,3599,3602,3,478,239,0,3600,3602,3,482,241,0,3601,3599,1,0,0, - 0,3601,3600,1,0,0,0,3602,477,1,0,0,0,3603,3604,3,638,319,0,3604, - 3605,5,395,0,0,3605,3608,3,638,319,0,3606,3607,5,395,0,0,3607,3609, - 3,638,319,0,3608,3606,1,0,0,0,3608,3609,1,0,0,0,3609,3612,1,0,0, - 0,3610,3612,3,638,319,0,3611,3603,1,0,0,0,3611,3610,1,0,0,0,3612, - 479,1,0,0,0,3613,3614,3,638,319,0,3614,3615,5,395,0,0,3615,3618, - 3,638,319,0,3616,3617,5,395,0,0,3617,3619,3,638,319,0,3618,3616, - 1,0,0,0,3618,3619,1,0,0,0,3619,3622,1,0,0,0,3620,3622,3,638,319, - 0,3621,3613,1,0,0,0,3621,3620,1,0,0,0,3622,481,1,0,0,0,3623,3624, - 3,638,319,0,3624,3625,5,395,0,0,3625,3627,1,0,0,0,3626,3623,1,0, - 0,0,3626,3627,1,0,0,0,3627,3628,1,0,0,0,3628,3629,3,638,319,0,3629, - 483,1,0,0,0,3630,3631,3,638,319,0,3631,3632,5,395,0,0,3632,3634, - 1,0,0,0,3633,3630,1,0,0,0,3633,3634,1,0,0,0,3634,3635,1,0,0,0,3635, - 3636,3,638,319,0,3636,485,1,0,0,0,3637,3638,5,399,0,0,3638,3639, - 3,360,180,0,3639,3641,5,400,0,0,3640,3642,5,17,0,0,3641,3640,1,0, - 0,0,3641,3642,1,0,0,0,3642,3643,1,0,0,0,3643,3644,3,638,319,0,3644, - 487,1,0,0,0,3645,3646,5,237,0,0,3646,3647,5,32,0,0,3647,3649,3,536, - 268,0,3648,3650,3,542,271,0,3649,3648,1,0,0,0,3649,3650,1,0,0,0, - 3650,3659,1,0,0,0,3651,3659,3,542,271,0,3652,3654,3,546,273,0,3653, - 3655,3,548,274,0,3654,3653,1,0,0,0,3654,3655,1,0,0,0,3655,3659,1, - 0,0,0,3656,3659,3,548,274,0,3657,3659,3,544,272,0,3658,3645,1,0, - 0,0,3658,3651,1,0,0,0,3658,3652,1,0,0,0,3658,3656,1,0,0,0,3658,3657, - 1,0,0,0,3659,489,1,0,0,0,3660,3664,3,486,243,0,3661,3664,3,468,234, - 0,3662,3664,3,492,246,0,3663,3660,1,0,0,0,3663,3661,1,0,0,0,3663, - 3662,1,0,0,0,3664,491,1,0,0,0,3665,3666,3,638,319,0,3666,3667,5, - 399,0,0,3667,3668,5,224,0,0,3668,3670,3,490,245,0,3669,3671,3,488, - 244,0,3670,3669,1,0,0,0,3670,3671,1,0,0,0,3671,3687,1,0,0,0,3672, - 3673,5,432,0,0,3673,3674,5,399,0,0,3674,3675,3,580,290,0,3675,3684, - 5,400,0,0,3676,3677,5,397,0,0,3677,3678,5,432,0,0,3678,3679,5,399, - 0,0,3679,3680,3,580,290,0,3680,3681,5,400,0,0,3681,3683,1,0,0,0, - 3682,3676,1,0,0,0,3683,3686,1,0,0,0,3684,3682,1,0,0,0,3684,3685, - 1,0,0,0,3685,3688,1,0,0,0,3686,3684,1,0,0,0,3687,3672,1,0,0,0,3687, - 3688,1,0,0,0,3688,3689,1,0,0,0,3689,3691,5,400,0,0,3690,3692,3,638, - 319,0,3691,3690,1,0,0,0,3691,3692,1,0,0,0,3692,493,1,0,0,0,3693, - 3694,5,384,0,0,3694,3695,3,580,290,0,3695,495,1,0,0,0,3696,3715, - 5,374,0,0,3697,3702,3,538,269,0,3698,3699,5,397,0,0,3699,3701,3, - 538,269,0,3700,3698,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0, - 3702,3703,1,0,0,0,3703,3716,1,0,0,0,3704,3702,1,0,0,0,3705,3706, - 5,399,0,0,3706,3707,3,534,267,0,3707,3712,5,400,0,0,3708,3709,5, - 397,0,0,3709,3711,3,538,269,0,3710,3708,1,0,0,0,3711,3714,1,0,0, - 0,3712,3710,1,0,0,0,3712,3713,1,0,0,0,3713,3716,1,0,0,0,3714,3712, - 1,0,0,0,3715,3697,1,0,0,0,3715,3705,1,0,0,0,3716,497,1,0,0,0,3717, - 3718,5,329,0,0,3718,3719,5,399,0,0,3719,3720,3,496,248,0,3720,3722, - 5,400,0,0,3721,3723,5,17,0,0,3722,3721,1,0,0,0,3722,3723,1,0,0,0, - 3723,3724,1,0,0,0,3724,3734,3,464,232,0,3725,3726,5,399,0,0,3726, - 3731,3,638,319,0,3727,3728,5,397,0,0,3728,3730,3,638,319,0,3729, - 3727,1,0,0,0,3730,3733,1,0,0,0,3731,3729,1,0,0,0,3731,3732,1,0,0, - 0,3732,3735,1,0,0,0,3733,3731,1,0,0,0,3734,3725,1,0,0,0,3734,3735, - 1,0,0,0,3735,3736,1,0,0,0,3736,3737,5,400,0,0,3737,499,1,0,0,0,3738, - 3740,5,299,0,0,3739,3741,5,436,0,0,3740,3739,1,0,0,0,3740,3741,1, - 0,0,0,3741,3755,1,0,0,0,3742,3744,7,22,0,0,3743,3742,1,0,0,0,3743, - 3744,1,0,0,0,3744,3745,1,0,0,0,3745,3750,3,504,252,0,3746,3747,5, - 397,0,0,3747,3749,3,504,252,0,3748,3746,1,0,0,0,3749,3752,1,0,0, - 0,3750,3748,1,0,0,0,3750,3751,1,0,0,0,3751,3756,1,0,0,0,3752,3750, - 1,0,0,0,3753,3754,5,347,0,0,3754,3756,3,502,251,0,3755,3743,1,0, - 0,0,3755,3753,1,0,0,0,3756,3759,1,0,0,0,3757,3759,3,506,253,0,3758, - 3738,1,0,0,0,3758,3757,1,0,0,0,3759,501,1,0,0,0,3760,3761,5,399, - 0,0,3761,3762,3,510,255,0,3762,3763,5,400,0,0,3763,3764,3,212,106, - 0,3764,3765,3,216,108,0,3765,3766,5,370,0,0,3766,3779,5,426,0,0, - 3767,3777,5,17,0,0,3768,3771,5,399,0,0,3769,3772,3,446,223,0,3770, - 3772,3,248,124,0,3771,3769,1,0,0,0,3771,3770,1,0,0,0,3772,3773,1, - 0,0,0,3773,3774,5,400,0,0,3774,3778,1,0,0,0,3775,3778,3,446,223, - 0,3776,3778,3,248,124,0,3777,3768,1,0,0,0,3777,3775,1,0,0,0,3777, - 3776,1,0,0,0,3778,3780,1,0,0,0,3779,3767,1,0,0,0,3779,3780,1,0,0, - 0,3780,3781,1,0,0,0,3781,3782,3,212,106,0,3782,3783,3,214,107,0, - 3783,503,1,0,0,0,3784,3808,3,442,221,0,3785,3788,3,256,128,0,3786, - 3788,3,580,290,0,3787,3785,1,0,0,0,3787,3786,1,0,0,0,3788,3805,1, - 0,0,0,3789,3791,5,17,0,0,3790,3789,1,0,0,0,3790,3791,1,0,0,0,3791, - 3792,1,0,0,0,3792,3806,3,638,319,0,3793,3794,5,17,0,0,3794,3795, - 5,399,0,0,3795,3800,3,638,319,0,3796,3797,5,397,0,0,3797,3799,3, - 638,319,0,3798,3796,1,0,0,0,3799,3802,1,0,0,0,3800,3798,1,0,0,0, - 3800,3801,1,0,0,0,3801,3803,1,0,0,0,3802,3800,1,0,0,0,3803,3804, - 5,400,0,0,3804,3806,1,0,0,0,3805,3790,1,0,0,0,3805,3793,1,0,0,0, - 3805,3806,1,0,0,0,3806,3808,1,0,0,0,3807,3784,1,0,0,0,3807,3787, - 1,0,0,0,3808,505,1,0,0,0,3809,3810,7,31,0,0,3810,3811,3,510,255, - 0,3811,3812,3,212,106,0,3812,3813,3,216,108,0,3813,3814,5,370,0, - 0,3814,3827,5,426,0,0,3815,3825,5,17,0,0,3816,3819,5,399,0,0,3817, - 3820,3,446,223,0,3818,3820,3,248,124,0,3819,3817,1,0,0,0,3819,3818, - 1,0,0,0,3820,3821,1,0,0,0,3821,3822,5,400,0,0,3822,3826,1,0,0,0, - 3823,3826,3,446,223,0,3824,3826,3,248,124,0,3825,3816,1,0,0,0,3825, - 3823,1,0,0,0,3825,3824,1,0,0,0,3826,3828,1,0,0,0,3827,3815,1,0,0, - 0,3827,3828,1,0,0,0,3828,3829,1,0,0,0,3829,3830,3,212,106,0,3830, - 3831,3,214,107,0,3831,507,1,0,0,0,3832,3835,3,442,221,0,3833,3835, - 3,580,290,0,3834,3832,1,0,0,0,3834,3833,1,0,0,0,3835,509,1,0,0,0, - 3836,3841,3,508,254,0,3837,3838,5,397,0,0,3838,3840,3,508,254,0, - 3839,3837,1,0,0,0,3840,3843,1,0,0,0,3841,3839,1,0,0,0,3841,3842, - 1,0,0,0,3842,511,1,0,0,0,3843,3841,1,0,0,0,3844,3845,5,386,0,0,3845, - 3846,3,638,319,0,3846,3847,5,17,0,0,3847,3855,3,514,257,0,3848,3849, - 5,397,0,0,3849,3850,3,638,319,0,3850,3851,5,17,0,0,3851,3852,3,514, - 257,0,3852,3854,1,0,0,0,3853,3848,1,0,0,0,3854,3857,1,0,0,0,3855, - 3853,1,0,0,0,3855,3856,1,0,0,0,3856,513,1,0,0,0,3857,3855,1,0,0, - 0,3858,3871,3,638,319,0,3859,3861,5,399,0,0,3860,3862,3,638,319, - 0,3861,3860,1,0,0,0,3861,3862,1,0,0,0,3862,3864,1,0,0,0,3863,3865, - 3,488,244,0,3864,3863,1,0,0,0,3864,3865,1,0,0,0,3865,3867,1,0,0, - 0,3866,3868,3,516,258,0,3867,3866,1,0,0,0,3867,3868,1,0,0,0,3868, - 3869,1,0,0,0,3869,3871,5,400,0,0,3870,3858,1,0,0,0,3870,3859,1,0, - 0,0,3871,515,1,0,0,0,3872,3886,7,32,0,0,3873,3874,5,354,0,0,3874, - 3880,5,247,0,0,3875,3876,5,62,0,0,3876,3880,5,291,0,0,3877,3878, - 5,431,0,0,3878,3880,5,247,0,0,3879,3873,1,0,0,0,3879,3875,1,0,0, - 0,3879,3877,1,0,0,0,3880,3887,1,0,0,0,3881,3882,5,25,0,0,3882,3883, - 3,518,259,0,3883,3884,5,11,0,0,3884,3885,3,518,259,0,3885,3887,1, - 0,0,0,3886,3879,1,0,0,0,3886,3881,1,0,0,0,3887,517,1,0,0,0,3888, - 3889,7,33,0,0,3889,3893,7,34,0,0,3890,3891,5,62,0,0,3891,3893,5, - 291,0,0,3892,3888,1,0,0,0,3892,3890,1,0,0,0,3893,519,1,0,0,0,3894, - 3895,5,144,0,0,3895,3901,5,32,0,0,3896,3902,3,256,128,0,3897,3902, - 3,522,261,0,3898,3902,3,524,262,0,3899,3900,5,399,0,0,3900,3902, - 5,400,0,0,3901,3896,1,0,0,0,3901,3897,1,0,0,0,3901,3898,1,0,0,0, - 3901,3899,1,0,0,0,3902,521,1,0,0,0,3903,3906,5,290,0,0,3904,3906, - 5,61,0,0,3905,3903,1,0,0,0,3905,3904,1,0,0,0,3906,3907,1,0,0,0,3907, - 3908,5,399,0,0,3908,3913,3,580,290,0,3909,3910,5,397,0,0,3910,3912, - 3,580,290,0,3911,3909,1,0,0,0,3912,3915,1,0,0,0,3913,3911,1,0,0, - 0,3913,3914,1,0,0,0,3914,3916,1,0,0,0,3915,3913,1,0,0,0,3916,3917, - 5,400,0,0,3917,523,1,0,0,0,3918,3923,3,540,270,0,3919,3920,5,387, - 0,0,3920,3924,5,290,0,0,3921,3922,5,387,0,0,3922,3924,5,61,0,0,3923, - 3919,1,0,0,0,3923,3921,1,0,0,0,3923,3924,1,0,0,0,3924,3938,1,0,0, - 0,3925,3926,5,145,0,0,3926,3927,5,305,0,0,3927,3928,5,399,0,0,3928, - 3933,3,526,263,0,3929,3930,5,397,0,0,3930,3932,3,526,263,0,3931, - 3929,1,0,0,0,3932,3935,1,0,0,0,3933,3931,1,0,0,0,3933,3934,1,0,0, - 0,3934,3936,1,0,0,0,3935,3933,1,0,0,0,3936,3937,5,400,0,0,3937,3939, - 1,0,0,0,3938,3925,1,0,0,0,3938,3939,1,0,0,0,3939,525,1,0,0,0,3940, - 3942,5,399,0,0,3941,3943,3,580,290,0,3942,3941,1,0,0,0,3942,3943, - 1,0,0,0,3943,3948,1,0,0,0,3944,3945,5,397,0,0,3945,3947,3,580,290, - 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,3951,1,0,0,0,3950,3948,1,0,0,0,3951,3954,5,400,0,0, - 3952,3954,3,580,290,0,3953,3940,1,0,0,0,3953,3952,1,0,0,0,3954,527, - 1,0,0,0,3955,3956,5,146,0,0,3956,3957,3,580,290,0,3957,529,1,0,0, - 0,3958,3959,5,256,0,0,3959,3960,3,580,290,0,3960,531,1,0,0,0,3961, - 3964,5,83,0,0,3962,3964,3,580,290,0,3963,3961,1,0,0,0,3963,3962, - 1,0,0,0,3964,533,1,0,0,0,3965,3967,3,580,290,0,3966,3968,5,17,0, - 0,3967,3966,1,0,0,0,3967,3968,1,0,0,0,3968,3970,1,0,0,0,3969,3971, - 3,638,319,0,3970,3969,1,0,0,0,3970,3971,1,0,0,0,3971,3982,1,0,0, - 0,3972,3973,5,397,0,0,3973,3975,3,580,290,0,3974,3976,5,17,0,0,3975, - 3974,1,0,0,0,3975,3976,1,0,0,0,3976,3978,1,0,0,0,3977,3979,3,638, - 319,0,3978,3977,1,0,0,0,3978,3979,1,0,0,0,3979,3981,1,0,0,0,3980, - 3972,1,0,0,0,3981,3984,1,0,0,0,3982,3980,1,0,0,0,3982,3983,1,0,0, - 0,3983,535,1,0,0,0,3984,3982,1,0,0,0,3985,3988,3,538,269,0,3986, - 3988,3,540,270,0,3987,3985,1,0,0,0,3987,3986,1,0,0,0,3988,537,1, - 0,0,0,3989,3990,5,399,0,0,3990,3991,3,540,270,0,3991,3992,5,400, - 0,0,3992,539,1,0,0,0,3993,4000,3,532,266,0,3994,3995,5,397,0,0,3995, - 3997,3,532,266,0,3996,3994,1,0,0,0,3997,3998,1,0,0,0,3998,3996,1, - 0,0,0,3998,3999,1,0,0,0,3999,4001,1,0,0,0,4000,3996,1,0,0,0,4000, - 4001,1,0,0,0,4001,541,1,0,0,0,4002,4003,5,229,0,0,4003,4004,5,32, - 0,0,4004,4009,3,308,154,0,4005,4006,5,397,0,0,4006,4008,3,308,154, - 0,4007,4005,1,0,0,0,4008,4011,1,0,0,0,4009,4007,1,0,0,0,4009,4010, - 1,0,0,0,4010,543,1,0,0,0,4011,4009,1,0,0,0,4012,4013,5,41,0,0,4013, - 4014,5,32,0,0,4014,4015,3,536,268,0,4015,545,1,0,0,0,4016,4017,5, - 97,0,0,4017,4018,5,32,0,0,4018,4019,3,536,268,0,4019,547,1,0,0,0, - 4020,4021,5,314,0,0,4021,4041,5,32,0,0,4022,4023,5,399,0,0,4023, - 4028,3,308,154,0,4024,4025,5,397,0,0,4025,4027,3,308,154,0,4026, - 4024,1,0,0,0,4027,4030,1,0,0,0,4028,4026,1,0,0,0,4028,4029,1,0,0, - 0,4029,4031,1,0,0,0,4030,4028,1,0,0,0,4031,4032,5,400,0,0,4032,4042, - 1,0,0,0,4033,4038,3,308,154,0,4034,4035,5,397,0,0,4035,4037,3,308, - 154,0,4036,4034,1,0,0,0,4037,4040,1,0,0,0,4038,4036,1,0,0,0,4038, - 4039,1,0,0,0,4039,4042,1,0,0,0,4040,4038,1,0,0,0,4041,4022,1,0,0, - 0,4041,4033,1,0,0,0,4042,549,1,0,0,0,4043,4044,5,349,0,0,4044,4048, - 5,399,0,0,4045,4049,5,179,0,0,4046,4049,5,343,0,0,4047,4049,5,29, - 0,0,4048,4045,1,0,0,0,4048,4046,1,0,0,0,4048,4047,1,0,0,0,4048,4049, - 1,0,0,0,4049,4051,1,0,0,0,4050,4052,3,508,254,0,4051,4050,1,0,0, - 0,4051,4052,1,0,0,0,4052,4053,1,0,0,0,4053,4054,5,139,0,0,4054,4055, - 3,508,254,0,4055,4056,5,400,0,0,4056,4097,1,0,0,0,4057,4058,3,558, - 279,0,4058,4073,5,399,0,0,4059,4074,5,415,0,0,4060,4062,7,22,0,0, - 4061,4060,1,0,0,0,4061,4062,1,0,0,0,4062,4071,1,0,0,0,4063,4068, - 3,508,254,0,4064,4065,5,397,0,0,4065,4067,3,508,254,0,4066,4064, - 1,0,0,0,4067,4070,1,0,0,0,4068,4066,1,0,0,0,4068,4069,1,0,0,0,4069, - 4072,1,0,0,0,4070,4068,1,0,0,0,4071,4063,1,0,0,0,4071,4072,1,0,0, - 0,4072,4074,1,0,0,0,4073,4059,1,0,0,0,4073,4061,1,0,0,0,4074,4094, - 1,0,0,0,4075,4076,5,400,0,0,4076,4077,5,388,0,0,4077,4078,5,144, - 0,0,4078,4079,5,399,0,0,4079,4080,3,542,271,0,4080,4081,5,400,0, - 0,4081,4095,1,0,0,0,4082,4084,5,400,0,0,4083,4085,3,552,276,0,4084, - 4083,1,0,0,0,4084,4085,1,0,0,0,4085,4086,1,0,0,0,4086,4087,5,234, - 0,0,4087,4095,3,514,257,0,4088,4089,3,552,276,0,4089,4090,5,400, - 0,0,4090,4091,5,234,0,0,4091,4092,3,514,257,0,4092,4095,1,0,0,0, - 4093,4095,5,400,0,0,4094,4075,1,0,0,0,4094,4082,1,0,0,0,4094,4088, - 1,0,0,0,4094,4093,1,0,0,0,4095,4097,1,0,0,0,4096,4043,1,0,0,0,4096, - 4057,1,0,0,0,4097,551,1,0,0,0,4098,4099,7,35,0,0,4099,4100,5,220, - 0,0,4100,553,1,0,0,0,4101,4102,3,640,320,0,4102,555,1,0,0,0,4103, - 4106,3,640,320,0,4104,4106,5,426,0,0,4105,4103,1,0,0,0,4105,4104, - 1,0,0,0,4106,557,1,0,0,0,4107,4111,3,640,320,0,4108,4111,3,646,323, - 0,4109,4111,3,636,318,0,4110,4107,1,0,0,0,4110,4108,1,0,0,0,4110, - 4109,1,0,0,0,4111,559,1,0,0,0,4112,4113,5,36,0,0,4113,4114,5,399, - 0,0,4114,4115,3,580,290,0,4115,4116,5,17,0,0,4116,4119,3,348,174, - 0,4117,4118,5,137,0,0,4118,4120,5,426,0,0,4119,4117,1,0,0,0,4119, - 4120,1,0,0,0,4120,4121,1,0,0,0,4121,4122,5,400,0,0,4122,561,1,0, - 0,0,4123,4124,5,35,0,0,4124,4130,3,580,290,0,4125,4126,5,383,0,0, - 4126,4127,3,580,290,0,4127,4128,5,335,0,0,4128,4129,3,580,290,0, - 4129,4131,1,0,0,0,4130,4125,1,0,0,0,4131,4132,1,0,0,0,4132,4130, - 1,0,0,0,4132,4133,1,0,0,0,4133,4136,1,0,0,0,4134,4135,5,105,0,0, - 4135,4137,3,580,290,0,4136,4134,1,0,0,0,4136,4137,1,0,0,0,4137,4138, - 1,0,0,0,4138,4139,5,108,0,0,4139,563,1,0,0,0,4140,4146,5,35,0,0, - 4141,4142,5,383,0,0,4142,4143,3,580,290,0,4143,4144,5,335,0,0,4144, - 4145,3,580,290,0,4145,4147,1,0,0,0,4146,4141,1,0,0,0,4147,4148,1, - 0,0,0,4148,4146,1,0,0,0,4148,4149,1,0,0,0,4149,4152,1,0,0,0,4150, - 4151,5,105,0,0,4151,4153,3,580,290,0,4152,4150,1,0,0,0,4152,4153, - 1,0,0,0,4153,4154,1,0,0,0,4154,4155,5,108,0,0,4155,565,1,0,0,0,4156, - 4157,5,132,0,0,4157,4158,5,399,0,0,4158,4161,3,580,290,0,4159,4160, - 5,341,0,0,4160,4162,3,570,285,0,4161,4159,1,0,0,0,4161,4162,1,0, - 0,0,4162,4163,1,0,0,0,4163,4164,5,400,0,0,4164,567,1,0,0,0,4165, - 4166,5,124,0,0,4166,4167,5,399,0,0,4167,4168,3,570,285,0,4168,4169, - 5,139,0,0,4169,4170,3,580,290,0,4170,4171,5,400,0,0,4171,569,1,0, - 0,0,4172,4181,3,666,333,0,4173,4181,5,257,0,0,4174,4181,3,668,334, - 0,4175,4181,3,670,335,0,4176,4181,3,672,336,0,4177,4181,3,674,337, - 0,4178,4181,3,676,338,0,4179,4181,3,678,339,0,4180,4172,1,0,0,0, - 4180,4173,1,0,0,0,4180,4174,1,0,0,0,4180,4175,1,0,0,0,4180,4176, - 1,0,0,0,4180,4177,1,0,0,0,4180,4178,1,0,0,0,4180,4179,1,0,0,0,4181, - 571,1,0,0,0,4182,4183,3,574,287,0,4183,4184,3,578,289,0,4184,4211, - 1,0,0,0,4185,4211,5,431,0,0,4186,4187,5,71,0,0,4187,4211,5,426,0, - 0,4188,4211,5,63,0,0,4189,4190,5,337,0,0,4190,4211,5,426,0,0,4191, - 4211,5,64,0,0,4192,4193,5,338,0,0,4193,4211,5,426,0,0,4194,4198, - 5,426,0,0,4195,4197,5,426,0,0,4196,4195,1,0,0,0,4197,4200,1,0,0, - 0,4198,4196,1,0,0,0,4198,4199,1,0,0,0,4199,4211,1,0,0,0,4200,4198, - 1,0,0,0,4201,4211,5,428,0,0,4202,4211,5,429,0,0,4203,4204,5,433, - 0,0,4204,4211,5,427,0,0,4205,4211,5,350,0,0,4206,4211,5,125,0,0, - 4207,4211,5,219,0,0,4208,4211,5,424,0,0,4209,4211,5,432,0,0,4210, - 4182,1,0,0,0,4210,4185,1,0,0,0,4210,4186,1,0,0,0,4210,4188,1,0,0, - 0,4210,4189,1,0,0,0,4210,4191,1,0,0,0,4210,4192,1,0,0,0,4210,4194, - 1,0,0,0,4210,4201,1,0,0,0,4210,4202,1,0,0,0,4210,4203,1,0,0,0,4210, - 4205,1,0,0,0,4210,4206,1,0,0,0,4210,4207,1,0,0,0,4210,4208,1,0,0, - 0,4210,4209,1,0,0,0,4211,573,1,0,0,0,4212,4213,7,27,0,0,4213,575, - 1,0,0,0,4214,4215,5,399,0,0,4215,4216,3,574,287,0,4216,4217,5,400, - 0,0,4217,4218,3,578,289,0,4218,4230,1,0,0,0,4219,4225,5,165,0,0, - 4220,4226,3,574,287,0,4221,4222,5,399,0,0,4222,4223,3,580,290,0, - 4223,4224,5,400,0,0,4224,4226,1,0,0,0,4225,4220,1,0,0,0,4225,4221, - 1,0,0,0,4226,4227,1,0,0,0,4227,4228,3,578,289,0,4228,4230,1,0,0, - 0,4229,4214,1,0,0,0,4229,4219,1,0,0,0,4230,577,1,0,0,0,4231,4232, - 3,666,333,0,4232,4233,5,341,0,0,4233,4234,3,668,334,0,4234,4246, - 1,0,0,0,4235,4236,3,672,336,0,4236,4237,5,341,0,0,4237,4238,3,678, - 339,0,4238,4246,1,0,0,0,4239,4246,3,666,333,0,4240,4246,3,668,334, - 0,4241,4246,3,672,336,0,4242,4246,3,674,337,0,4243,4246,3,676,338, - 0,4244,4246,3,678,339,0,4245,4231,1,0,0,0,4245,4235,1,0,0,0,4245, - 4239,1,0,0,0,4245,4240,1,0,0,0,4245,4241,1,0,0,0,4245,4242,1,0,0, - 0,4245,4243,1,0,0,0,4245,4244,1,0,0,0,4246,579,1,0,0,0,4247,4252, - 3,622,311,0,4248,4249,5,228,0,0,4249,4251,3,622,311,0,4250,4248, - 1,0,0,0,4251,4254,1,0,0,0,4252,4250,1,0,0,0,4252,4253,1,0,0,0,4253, - 581,1,0,0,0,4254,4252,1,0,0,0,4255,4267,3,572,286,0,4256,4267,3, - 576,288,0,4257,4267,3,560,280,0,4258,4267,3,568,284,0,4259,4267, - 3,566,283,0,4260,4267,3,562,281,0,4261,4267,3,564,282,0,4262,4267, - 3,600,300,0,4263,4267,3,550,275,0,4264,4267,3,538,269,0,4265,4267, - 3,638,319,0,4266,4255,1,0,0,0,4266,4256,1,0,0,0,4266,4257,1,0,0, - 0,4266,4258,1,0,0,0,4266,4259,1,0,0,0,4266,4260,1,0,0,0,4266,4261, - 1,0,0,0,4266,4262,1,0,0,0,4266,4263,1,0,0,0,4266,4264,1,0,0,0,4266, - 4265,1,0,0,0,4267,583,1,0,0,0,4268,4270,7,36,0,0,4269,4268,1,0,0, - 0,4270,4273,1,0,0,0,4271,4269,1,0,0,0,4271,4272,1,0,0,0,4272,4274, - 1,0,0,0,4273,4271,1,0,0,0,4274,4283,3,582,291,0,4275,4276,5,401, - 0,0,4276,4277,3,580,290,0,4277,4278,5,402,0,0,4278,4282,1,0,0,0, - 4279,4280,5,395,0,0,4280,4282,3,638,319,0,4281,4275,1,0,0,0,4281, - 4279,1,0,0,0,4282,4285,1,0,0,0,4283,4281,1,0,0,0,4283,4284,1,0,0, - 0,4284,585,1,0,0,0,4285,4283,1,0,0,0,4286,4291,3,584,292,0,4287, - 4288,5,423,0,0,4288,4290,3,584,292,0,4289,4287,1,0,0,0,4290,4293, - 1,0,0,0,4291,4289,1,0,0,0,4291,4292,1,0,0,0,4292,587,1,0,0,0,4293, - 4291,1,0,0,0,4294,4299,3,586,293,0,4295,4296,7,37,0,0,4296,4298, - 3,586,293,0,4297,4295,1,0,0,0,4298,4301,1,0,0,0,4299,4297,1,0,0, - 0,4299,4300,1,0,0,0,4300,589,1,0,0,0,4301,4299,1,0,0,0,4302,4307, - 3,588,294,0,4303,4304,7,38,0,0,4304,4306,3,588,294,0,4305,4303,1, - 0,0,0,4306,4309,1,0,0,0,4307,4305,1,0,0,0,4307,4308,1,0,0,0,4308, - 591,1,0,0,0,4309,4307,1,0,0,0,4310,4315,3,590,295,0,4311,4312,5, - 422,0,0,4312,4314,3,590,295,0,4313,4311,1,0,0,0,4314,4317,1,0,0, - 0,4315,4313,1,0,0,0,4315,4316,1,0,0,0,4316,593,1,0,0,0,4317,4315, - 1,0,0,0,4318,4323,3,592,296,0,4319,4320,5,419,0,0,4320,4322,3,592, - 296,0,4321,4319,1,0,0,0,4322,4325,1,0,0,0,4323,4321,1,0,0,0,4323, - 4324,1,0,0,0,4324,595,1,0,0,0,4325,4323,1,0,0,0,4326,4331,3,594, - 297,0,4327,4328,5,421,0,0,4328,4330,3,594,297,0,4329,4327,1,0,0, - 0,4330,4333,1,0,0,0,4331,4329,1,0,0,0,4331,4332,1,0,0,0,4332,597, - 1,0,0,0,4333,4331,1,0,0,0,4334,4335,7,39,0,0,4335,599,1,0,0,0,4336, - 4337,5,399,0,0,4337,4338,3,376,188,0,4338,4339,5,400,0,0,4339,601, - 1,0,0,0,4340,4342,3,596,298,0,4341,4343,3,604,302,0,4342,4341,1, - 0,0,0,4342,4343,1,0,0,0,4343,4347,1,0,0,0,4344,4345,5,117,0,0,4345, - 4347,3,600,300,0,4346,4340,1,0,0,0,4346,4344,1,0,0,0,4347,603,1, - 0,0,0,4348,4349,3,598,299,0,4349,4350,3,596,298,0,4350,4355,1,0, - 0,0,4351,4355,3,606,303,0,4352,4353,5,216,0,0,4353,4355,3,610,305, - 0,4354,4348,1,0,0,0,4354,4351,1,0,0,0,4354,4352,1,0,0,0,4355,605, - 1,0,0,0,4356,4357,5,154,0,0,4357,4371,3,608,304,0,4358,4359,5,25, - 0,0,4359,4360,3,596,298,0,4360,4361,5,11,0,0,4361,4362,3,596,298, - 0,4362,4371,1,0,0,0,4363,4364,5,184,0,0,4364,4365,7,40,0,0,4365, - 4371,3,538,269,0,4366,4367,3,634,317,0,4367,4368,7,41,0,0,4368,4369, - 3,600,300,0,4369,4371,1,0,0,0,4370,4356,1,0,0,0,4370,4358,1,0,0, - 0,4370,4363,1,0,0,0,4370,4366,1,0,0,0,4371,607,1,0,0,0,4372,4375, - 3,600,300,0,4373,4375,3,538,269,0,4374,4372,1,0,0,0,4374,4373,1, - 0,0,0,4375,609,1,0,0,0,4376,4377,7,42,0,0,4377,4380,3,596,298,0, - 4378,4380,3,606,303,0,4379,4376,1,0,0,0,4379,4378,1,0,0,0,4380,611, - 1,0,0,0,4381,4382,5,167,0,0,4382,4383,5,96,0,0,4383,4384,5,139,0, - 0,4384,613,1,0,0,0,4385,4393,5,405,0,0,4386,4393,5,406,0,0,4387, - 4393,5,407,0,0,4388,4389,5,167,0,0,4389,4390,5,216,0,0,4390,4391, - 5,96,0,0,4391,4393,5,139,0,0,4392,4385,1,0,0,0,4392,4386,1,0,0,0, - 4392,4387,1,0,0,0,4392,4388,1,0,0,0,4393,615,1,0,0,0,4394,4403,3, - 602,301,0,4395,4396,3,614,307,0,4396,4397,3,602,301,0,4397,4402, - 1,0,0,0,4398,4399,3,612,306,0,4399,4400,3,602,301,0,4400,4402,1, - 0,0,0,4401,4395,1,0,0,0,4401,4398,1,0,0,0,4402,4405,1,0,0,0,4403, - 4401,1,0,0,0,4403,4404,1,0,0,0,4404,617,1,0,0,0,4405,4403,1,0,0, - 0,4406,4413,5,219,0,0,4407,4413,5,350,0,0,4408,4413,5,125,0,0,4409, - 4413,5,360,0,0,4410,4411,5,216,0,0,4411,4413,7,43,0,0,4412,4406, - 1,0,0,0,4412,4407,1,0,0,0,4412,4408,1,0,0,0,4412,4409,1,0,0,0,4412, - 4410,1,0,0,0,4413,619,1,0,0,0,4414,4416,5,216,0,0,4415,4414,1,0, - 0,0,4416,4419,1,0,0,0,4417,4415,1,0,0,0,4417,4418,1,0,0,0,4418,4420, - 1,0,0,0,4419,4417,1,0,0,0,4420,4423,3,616,308,0,4421,4422,5,167, - 0,0,4422,4424,3,618,309,0,4423,4421,1,0,0,0,4423,4424,1,0,0,0,4424, - 621,1,0,0,0,4425,4430,3,620,310,0,4426,4427,5,11,0,0,4427,4429,3, - 620,310,0,4428,4426,1,0,0,0,4429,4432,1,0,0,0,4430,4428,1,0,0,0, - 4430,4431,1,0,0,0,4431,623,1,0,0,0,4432,4430,1,0,0,0,4433,4435,3, - 478,239,0,4434,4436,3,626,313,0,4435,4434,1,0,0,0,4435,4436,1,0, - 0,0,4436,625,1,0,0,0,4437,4438,5,237,0,0,4438,4439,5,399,0,0,4439, - 4444,3,628,314,0,4440,4441,5,397,0,0,4441,4443,3,628,314,0,4442, - 4440,1,0,0,0,4443,4446,1,0,0,0,4444,4442,1,0,0,0,4444,4445,1,0,0, - 0,4445,4447,1,0,0,0,4446,4444,1,0,0,0,4447,4448,5,400,0,0,4448,627, - 1,0,0,0,4449,4452,3,638,319,0,4450,4451,5,405,0,0,4451,4453,3,572, - 286,0,4452,4450,1,0,0,0,4452,4453,1,0,0,0,4453,629,1,0,0,0,4454, - 4455,5,399,0,0,4455,4460,3,632,316,0,4456,4457,5,397,0,0,4457,4459, - 3,632,316,0,4458,4456,1,0,0,0,4459,4462,1,0,0,0,4460,4458,1,0,0, - 0,4460,4461,1,0,0,0,4461,4463,1,0,0,0,4462,4460,1,0,0,0,4463,4464, - 5,400,0,0,4464,631,1,0,0,0,4465,4468,3,638,319,0,4466,4469,5,184, - 0,0,4467,4469,3,634,317,0,4468,4466,1,0,0,0,4468,4467,1,0,0,0,4469, - 4470,1,0,0,0,4470,4471,3,572,286,0,4471,633,1,0,0,0,4472,4473,7, - 44,0,0,4473,635,1,0,0,0,4474,4475,7,45,0,0,4475,637,1,0,0,0,4476, - 4479,5,432,0,0,4477,4479,3,644,322,0,4478,4476,1,0,0,0,4478,4477, - 1,0,0,0,4479,639,1,0,0,0,4480,4483,3,638,319,0,4481,4482,5,395,0, - 0,4482,4484,3,638,319,0,4483,4481,1,0,0,0,4483,4484,1,0,0,0,4484, - 641,1,0,0,0,4485,4486,3,638,319,0,4486,643,1,0,0,0,4487,4488,7,46, - 0,0,4488,645,1,0,0,0,4489,4490,7,47,0,0,4490,647,1,0,0,0,4491,4543, - 3,638,319,0,4492,4543,5,299,0,0,4493,4543,5,171,0,0,4494,4543,5, - 237,0,0,4495,4543,5,198,0,0,4496,4543,5,268,0,0,4497,4543,5,369, - 0,0,4498,4543,5,241,0,0,4499,4543,5,165,0,0,4500,4543,5,292,0,0, - 4501,4543,5,356,0,0,4502,4543,5,144,0,0,4503,4543,5,203,0,0,4504, - 4543,5,219,0,0,4505,4543,5,126,0,0,4506,4543,5,188,0,0,4507,4543, - 5,101,0,0,4508,4543,5,329,0,0,4509,4543,5,224,0,0,4510,4543,5,291, - 0,0,4511,4543,5,145,0,0,4512,4543,5,304,0,0,4513,4543,5,135,0,0, - 4514,4543,5,318,0,0,4515,4543,5,161,0,0,4516,4543,5,54,0,0,4517, - 4543,5,166,0,0,4518,4543,5,358,0,0,4519,4543,5,45,0,0,4520,4543, - 5,347,0,0,4521,4543,5,96,0,0,4522,4543,5,154,0,0,4523,4543,5,269, - 0,0,4524,4543,5,337,0,0,4525,4543,5,225,0,0,4526,4543,5,108,0,0, - 4527,4543,5,141,0,0,4528,4543,5,365,0,0,4529,4543,5,21,0,0,4530, - 4543,5,78,0,0,4531,4543,5,374,0,0,4532,4543,5,336,0,0,4533,4543, - 5,167,0,0,4534,4543,5,134,0,0,4535,4543,5,216,0,0,4536,4543,5,27, - 0,0,4537,4543,5,370,0,0,4538,4543,5,263,0,0,4539,4543,5,25,0,0,4540, - 4543,5,62,0,0,4541,4543,5,17,0,0,4542,4491,1,0,0,0,4542,4492,1,0, - 0,0,4542,4493,1,0,0,0,4542,4494,1,0,0,0,4542,4495,1,0,0,0,4542,4496, - 1,0,0,0,4542,4497,1,0,0,0,4542,4498,1,0,0,0,4542,4499,1,0,0,0,4542, - 4500,1,0,0,0,4542,4501,1,0,0,0,4542,4502,1,0,0,0,4542,4503,1,0,0, - 0,4542,4504,1,0,0,0,4542,4505,1,0,0,0,4542,4506,1,0,0,0,4542,4507, - 1,0,0,0,4542,4508,1,0,0,0,4542,4509,1,0,0,0,4542,4510,1,0,0,0,4542, - 4511,1,0,0,0,4542,4512,1,0,0,0,4542,4513,1,0,0,0,4542,4514,1,0,0, - 0,4542,4515,1,0,0,0,4542,4516,1,0,0,0,4542,4517,1,0,0,0,4542,4518, - 1,0,0,0,4542,4519,1,0,0,0,4542,4520,1,0,0,0,4542,4521,1,0,0,0,4542, - 4522,1,0,0,0,4542,4523,1,0,0,0,4542,4524,1,0,0,0,4542,4525,1,0,0, - 0,4542,4526,1,0,0,0,4542,4527,1,0,0,0,4542,4528,1,0,0,0,4542,4529, - 1,0,0,0,4542,4530,1,0,0,0,4542,4531,1,0,0,0,4542,4532,1,0,0,0,4542, - 4533,1,0,0,0,4542,4534,1,0,0,0,4542,4535,1,0,0,0,4542,4536,1,0,0, - 0,4542,4537,1,0,0,0,4542,4538,1,0,0,0,4542,4539,1,0,0,0,4542,4540, - 1,0,0,0,4542,4541,1,0,0,0,4543,649,1,0,0,0,4544,4545,5,58,0,0,4545, - 4546,5,280,0,0,4546,4548,5,243,0,0,4547,4549,3,32,16,0,4548,4547, - 1,0,0,0,4548,4549,1,0,0,0,4549,4559,1,0,0,0,4550,4551,3,638,319, - 0,4551,4552,5,184,0,0,4552,4553,3,638,319,0,4553,4560,1,0,0,0,4554, - 4557,3,638,319,0,4555,4556,5,387,0,0,4556,4558,3,656,328,0,4557, - 4555,1,0,0,0,4557,4558,1,0,0,0,4558,4560,1,0,0,0,4559,4550,1,0,0, - 0,4559,4554,1,0,0,0,4560,4710,1,0,0,0,4561,4562,5,9,0,0,4562,4563, - 5,280,0,0,4563,4564,5,243,0,0,4564,4589,3,638,319,0,4565,4590,5, - 373,0,0,4566,4590,3,664,332,0,4567,4568,5,304,0,0,4568,4590,3,656, - 328,0,4569,4570,5,363,0,0,4570,4575,3,658,329,0,4571,4572,5,397, - 0,0,4572,4574,3,658,329,0,4573,4571,1,0,0,0,4574,4577,1,0,0,0,4575, - 4573,1,0,0,0,4575,4576,1,0,0,0,4576,4590,1,0,0,0,4577,4575,1,0,0, - 0,4578,4579,5,274,0,0,4579,4580,5,341,0,0,4580,4590,3,638,319,0, - 4581,4583,3,660,330,0,4582,4584,3,662,331,0,4583,4582,1,0,0,0,4583, - 4584,1,0,0,0,4584,4590,1,0,0,0,4585,4587,3,662,331,0,4586,4588,3, - 660,330,0,4587,4586,1,0,0,0,4587,4588,1,0,0,0,4588,4590,1,0,0,0, - 4589,4565,1,0,0,0,4589,4566,1,0,0,0,4589,4567,1,0,0,0,4589,4569, - 1,0,0,0,4589,4578,1,0,0,0,4589,4581,1,0,0,0,4589,4585,1,0,0,0,4590, - 4710,1,0,0,0,4591,4592,5,101,0,0,4592,4593,5,280,0,0,4593,4595,5, - 243,0,0,4594,4596,3,30,15,0,4595,4594,1,0,0,0,4595,4596,1,0,0,0, - 4596,4597,1,0,0,0,4597,4710,3,638,319,0,4598,4601,3,662,331,0,4599, - 4601,3,664,332,0,4600,4598,1,0,0,0,4600,4599,1,0,0,0,4601,4602,1, - 0,0,0,4602,4603,5,390,0,0,4603,4604,5,197,0,0,4604,4710,1,0,0,0, - 4605,4617,5,278,0,0,4606,4607,5,3,0,0,4607,4608,5,280,0,0,4608,4609, - 5,243,0,0,4609,4610,5,387,0,0,4610,4618,3,638,319,0,4611,4612,5, - 280,0,0,4612,4613,5,243,0,0,4613,4614,3,638,319,0,4614,4615,5,387, - 0,0,4615,4616,3,638,319,0,4616,4618,1,0,0,0,4617,4606,1,0,0,0,4617, - 4611,1,0,0,0,4618,4710,1,0,0,0,4619,4620,5,58,0,0,4620,4621,5,348, - 0,0,4621,4622,3,638,319,0,4622,4623,5,395,0,0,4623,4624,3,638,319, - 0,4624,4625,5,383,0,0,4625,4626,3,684,342,0,4626,4627,5,99,0,0,4627, - 4628,3,686,343,0,4628,4710,1,0,0,0,4629,4630,5,9,0,0,4630,4631,5, - 348,0,0,4631,4632,3,638,319,0,4632,4633,5,395,0,0,4633,4650,3,638, - 319,0,4634,4635,5,383,0,0,4635,4636,3,684,342,0,4636,4637,5,99,0, - 0,4637,4638,3,686,343,0,4638,4651,1,0,0,0,4639,4640,5,4,0,0,4640, - 4644,5,341,0,0,4641,4642,5,101,0,0,4642,4644,5,139,0,0,4643,4639, - 1,0,0,0,4643,4641,1,0,0,0,4644,4648,1,0,0,0,4645,4646,5,246,0,0, - 4646,4649,3,682,341,0,4647,4649,5,362,0,0,4648,4645,1,0,0,0,4648, - 4647,1,0,0,0,4649,4651,1,0,0,0,4650,4634,1,0,0,0,4650,4643,1,0,0, - 0,4651,4710,1,0,0,0,4652,4653,5,101,0,0,4653,4654,5,348,0,0,4654, - 4655,3,638,319,0,4655,4656,5,395,0,0,4656,4657,3,638,319,0,4657, - 4710,1,0,0,0,4658,4659,5,58,0,0,4659,4660,5,246,0,0,4660,4661,3, - 638,319,0,4661,4662,5,395,0,0,4662,4663,3,682,341,0,4663,4664,5, - 387,0,0,4664,4665,3,690,345,0,4665,4710,1,0,0,0,4666,4667,5,9,0, - 0,4667,4668,5,246,0,0,4668,4669,3,638,319,0,4669,4670,5,395,0,0, - 4670,4678,3,682,341,0,4671,4672,5,304,0,0,4672,4679,3,690,345,0, - 4673,4674,5,363,0,0,4674,4679,5,294,0,0,4675,4676,7,48,0,0,4676, - 4677,5,348,0,0,4677,4679,3,638,319,0,4678,4671,1,0,0,0,4678,4673, - 1,0,0,0,4678,4675,1,0,0,0,4679,4710,1,0,0,0,4680,4681,5,101,0,0, - 4681,4682,5,246,0,0,4682,4683,3,638,319,0,4683,4684,5,395,0,0,4684, - 4685,3,682,341,0,4685,4710,1,0,0,0,4686,4687,7,49,0,0,4687,4688, - 3,652,326,0,4688,4689,5,200,0,0,4689,4690,5,426,0,0,4690,4691,5, - 154,0,0,4691,4695,3,638,319,0,4692,4693,5,341,0,0,4693,4696,3,682, - 341,0,4694,4696,5,362,0,0,4695,4692,1,0,0,0,4695,4694,1,0,0,0,4696, - 4700,1,0,0,0,4697,4698,5,387,0,0,4698,4699,5,229,0,0,4699,4701,5, - 431,0,0,4700,4697,1,0,0,0,4700,4701,1,0,0,0,4701,4710,1,0,0,0,4702, - 4703,5,101,0,0,4703,4704,3,652,326,0,4704,4705,5,200,0,0,4705,4706, - 5,426,0,0,4706,4707,5,154,0,0,4707,4708,3,638,319,0,4708,4710,1, - 0,0,0,4709,4544,1,0,0,0,4709,4561,1,0,0,0,4709,4591,1,0,0,0,4709, - 4600,1,0,0,0,4709,4605,1,0,0,0,4709,4619,1,0,0,0,4709,4629,1,0,0, - 0,4709,4652,1,0,0,0,4709,4658,1,0,0,0,4709,4666,1,0,0,0,4709,4680, - 1,0,0,0,4709,4686,1,0,0,0,4709,4702,1,0,0,0,4710,651,1,0,0,0,4711, - 4712,7,50,0,0,4712,653,1,0,0,0,4713,4714,5,259,0,0,4714,4715,5,405, - 0,0,4715,4721,5,431,0,0,4716,4717,5,83,0,0,4717,4718,5,246,0,0,4718, - 4719,5,405,0,0,4719,4721,3,682,341,0,4720,4713,1,0,0,0,4720,4716, - 1,0,0,0,4721,655,1,0,0,0,4722,4727,3,654,327,0,4723,4724,5,397,0, - 0,4724,4726,3,654,327,0,4725,4723,1,0,0,0,4726,4729,1,0,0,0,4727, - 4725,1,0,0,0,4727,4728,1,0,0,0,4728,657,1,0,0,0,4729,4727,1,0,0, - 0,4730,4734,5,259,0,0,4731,4732,5,83,0,0,4732,4734,5,246,0,0,4733, - 4730,1,0,0,0,4733,4731,1,0,0,0,4734,659,1,0,0,0,4735,4738,5,2,0, - 0,4736,4737,5,387,0,0,4737,4739,5,278,0,0,4738,4736,1,0,0,0,4738, - 4739,1,0,0,0,4739,661,1,0,0,0,4740,4741,7,51,0,0,4741,663,1,0,0, - 0,4742,4743,7,52,0,0,4743,665,1,0,0,0,4744,4745,7,53,0,0,4745,667, - 1,0,0,0,4746,4747,7,54,0,0,4747,669,1,0,0,0,4748,4749,7,55,0,0,4749, - 671,1,0,0,0,4750,4751,7,56,0,0,4751,673,1,0,0,0,4752,4753,7,57,0, - 0,4753,675,1,0,0,0,4754,4755,7,58,0,0,4755,677,1,0,0,0,4756,4757, - 7,59,0,0,4757,679,1,0,0,0,4758,4759,7,60,0,0,4759,681,1,0,0,0,4760, - 4765,3,638,319,0,4761,4762,5,395,0,0,4762,4764,3,638,319,0,4763, - 4761,1,0,0,0,4764,4767,1,0,0,0,4765,4763,1,0,0,0,4765,4766,1,0,0, - 0,4766,683,1,0,0,0,4767,4765,1,0,0,0,4768,4769,3,638,319,0,4769, - 4770,5,411,0,0,4770,4771,7,27,0,0,4771,685,1,0,0,0,4772,4777,5,176, - 0,0,4773,4774,5,211,0,0,4774,4775,5,341,0,0,4775,4777,3,682,341, - 0,4776,4772,1,0,0,0,4776,4773,1,0,0,0,4777,687,1,0,0,0,4778,4779, - 5,8,0,0,4779,4780,5,405,0,0,4780,4791,5,431,0,0,4781,4782,5,259, - 0,0,4782,4783,5,405,0,0,4783,4791,5,431,0,0,4784,4785,5,294,0,0, - 4785,4786,5,405,0,0,4786,4791,5,426,0,0,4787,4788,5,240,0,0,4788, - 4789,5,405,0,0,4789,4791,3,682,341,0,4790,4778,1,0,0,0,4790,4781, - 1,0,0,0,4790,4784,1,0,0,0,4790,4787,1,0,0,0,4791,689,1,0,0,0,4792, - 4797,3,688,344,0,4793,4794,5,397,0,0,4794,4796,3,688,344,0,4795, - 4793,1,0,0,0,4796,4799,1,0,0,0,4797,4795,1,0,0,0,4797,4798,1,0,0, - 0,4798,691,1,0,0,0,4799,4797,1,0,0,0,621,695,702,705,711,717,724, - 734,737,741,756,763,769,774,779,782,806,813,816,821,826,832,836, - 849,853,857,862,869,873,878,885,889,894,942,949,954,977,981,985, - 988,992,997,1003,1007,1013,1015,1026,1030,1037,1045,1048,1053,1057, - 1060,1070,1078,1082,1085,1089,1093,1096,1101,1107,1112,1117,1121, - 1132,1134,1138,1148,1152,1158,1161,1168,1173,1181,1186,1190,1198, - 1203,1209,1215,1218,1221,1224,1233,1241,1246,1254,1261,1264,1267, - 1269,1280,1282,1285,1288,1291,1294,1297,1299,1311,1317,1325,1327, - 1337,1370,1375,1379,1383,1390,1397,1403,1407,1410,1417,1440,1445, - 1449,1457,1466,1473,1479,1486,1489,1495,1502,1510,1519,1528,1535, - 1555,1562,1564,1571,1581,1589,1593,1597,1610,1619,1635,1639,1644, - 1649,1652,1655,1658,1661,1664,1669,1678,1682,1689,1692,1695,1698, - 1710,1716,1742,1750,1754,1757,1760,1763,1766,1769,1772,1775,1784, - 1794,1797,1817,1823,1829,1832,1834,1841,1848,1861,1866,1875,1883, - 1891,1904,1917,1933,1937,1952,1958,1961,1964,1967,1970,1974,1989, - 1992,2003,2017,2051,2059,2064,2072,2077,2082,2089,2097,2105,2113, - 2118,2128,2132,2140,2149,2152,2156,2163,2169,2173,2179,2183,2195, - 2204,2215,2219,2226,2238,2248,2251,2258,2264,2268,2271,2274,2280, - 2284,2288,2293,2297,2301,2305,2313,2317,2321,2325,2329,2337,2341, - 2345,2353,2358,2363,2367,2371,2378,2387,2395,2407,2425,2428,2434, - 2460,2463,2469,2477,2485,2498,2505,2508,2511,2514,2517,2520,2523, - 2526,2529,2532,2535,2540,2543,2546,2549,2552,2555,2558,2561,2564, - 2567,2570,2572,2578,2582,2585,2588,2591,2594,2597,2604,2608,2611, - 2614,2617,2620,2623,2630,2633,2641,2645,2652,2654,2657,2662,2665, - 2669,2674,2680,2688,2696,2706,2709,2713,2717,2722,2729,2733,2735, - 2739,2746,2751,2764,2772,2791,2801,2814,2824,2828,2832,2838,2845, - 2852,2861,2868,2888,2891,2905,2920,2924,2944,2956,2962,2965,2968, - 2974,2980,2987,2995,3001,3005,3010,3013,3017,3024,3029,3034,3037, - 3039,3047,3055,3059,3063,3067,3084,3101,3108,3117,3122,3125,3128, - 3132,3147,3161,3164,3175,3179,3182,3185,3189,3194,3197,3200,3203, - 3206,3209,3215,3218,3221,3224,3227,3230,3233,3236,3239,3242,3246, - 3248,3254,3259,3262,3265,3268,3271,3277,3280,3283,3286,3289,3292, - 3295,3298,3301,3304,3308,3310,3312,3317,3322,3326,3330,3335,3340, - 3349,3359,3367,3379,3382,3388,3395,3402,3409,3416,3425,3429,3436, - 3441,3445,3449,3452,3455,3466,3470,3472,3475,3488,3491,3494,3506, - 3509,3516,3525,3530,3532,3534,3551,3554,3562,3565,3569,3572,3575, - 3578,3581,3593,3601,3608,3611,3618,3621,3626,3633,3641,3649,3654, - 3658,3663,3670,3684,3687,3691,3702,3712,3715,3722,3731,3734,3740, - 3743,3750,3755,3758,3771,3777,3779,3787,3790,3800,3805,3807,3819, - 3825,3827,3834,3841,3855,3861,3864,3867,3870,3879,3886,3892,3901, - 3905,3913,3923,3933,3938,3942,3948,3953,3963,3967,3970,3975,3978, - 3982,3987,3998,4000,4009,4028,4038,4041,4048,4051,4061,4068,4071, - 4073,4084,4094,4096,4105,4110,4119,4132,4136,4148,4152,4161,4180, - 4198,4210,4225,4229,4245,4252,4266,4271,4281,4283,4291,4299,4307, - 4315,4323,4331,4342,4346,4354,4370,4374,4379,4392,4401,4403,4412, - 4417,4423,4430,4435,4444,4452,4460,4468,4478,4483,4542,4548,4557, - 4559,4575,4583,4587,4589,4595,4600,4617,4643,4648,4650,4678,4695, - 4700,4709,4720,4727,4733,4738,4765,4776,4790,4797 + 0,297,298,1,0,80,82,5406,0,705,1,0,0,0,2,712,1,0,0,0,4,717,1,0,0, + 0,6,751,1,0,0,0,8,753,1,0,0,0,10,826,1,0,0,0,12,828,1,0,0,0,14,844, + 1,0,0,0,16,853,1,0,0,0,18,861,1,0,0,0,20,874,1,0,0,0,22,885,1,0, + 0,0,24,890,1,0,0,0,26,901,1,0,0,0,28,964,1,0,0,0,30,966,1,0,0,0, + 32,969,1,0,0,0,34,973,1,0,0,0,36,975,1,0,0,0,38,978,1,0,0,0,40,981, + 1,0,0,0,42,1025,1,0,0,0,44,1027,1,0,0,0,46,1030,1,0,0,0,48,1033, + 1,0,0,0,50,1042,1,0,0,0,52,1045,1,0,0,0,54,1060,1,0,0,0,56,1072, + 1,0,0,0,58,1077,1,0,0,0,60,1097,1,0,0,0,62,1101,1,0,0,0,64,1108, + 1,0,0,0,66,1133,1,0,0,0,68,1150,1,0,0,0,70,1152,1,0,0,0,72,1337, + 1,0,0,0,74,1347,1,0,0,0,76,1349,1,0,0,0,78,1354,1,0,0,0,80,1359, + 1,0,0,0,82,1361,1,0,0,0,84,1365,1,0,0,0,86,1369,1,0,0,0,88,1373, + 1,0,0,0,90,1377,1,0,0,0,92,1387,1,0,0,0,94,1398,1,0,0,0,96,1415, + 1,0,0,0,98,1433,1,0,0,0,100,1438,1,0,0,0,102,1441,1,0,0,0,104,1445, + 1,0,0,0,106,1452,1,0,0,0,108,1461,1,0,0,0,110,1467,1,0,0,0,112,1469, + 1,0,0,0,114,1483,1,0,0,0,116,1505,1,0,0,0,118,1507,1,0,0,0,120,1515, + 1,0,0,0,122,1522,1,0,0,0,124,1524,1,0,0,0,126,1538,1,0,0,0,128,1545, + 1,0,0,0,130,1547,1,0,0,0,132,1551,1,0,0,0,134,1555,1,0,0,0,136,1559, + 1,0,0,0,138,1563,1,0,0,0,140,1576,1,0,0,0,142,1584,1,0,0,0,144,1587, + 1,0,0,0,146,1589,1,0,0,0,148,1601,1,0,0,0,150,1611,1,0,0,0,152,1614, + 1,0,0,0,154,1625,1,0,0,0,156,1633,1,0,0,0,158,1676,1,0,0,0,160,1685, + 1,0,0,0,162,1713,1,0,0,0,164,1726,1,0,0,0,166,1728,1,0,0,0,168,1734, + 1,0,0,0,170,1737,1,0,0,0,172,1743,1,0,0,0,174,1749,1,0,0,0,176,1756, + 1,0,0,0,178,1790,1,0,0,0,180,1798,1,0,0,0,182,1811,1,0,0,0,184,1816, + 1,0,0,0,186,1827,1,0,0,0,188,1844,1,0,0,0,190,1846,1,0,0,0,192,1851, + 1,0,0,0,194,1858,1,0,0,0,196,1860,1,0,0,0,198,1863,1,0,0,0,200,1866, + 1,0,0,0,202,1880,1,0,0,0,204,1888,1,0,0,0,206,1914,1,0,0,0,208,1916, + 1,0,0,0,210,1933,1,0,0,0,212,1947,1,0,0,0,214,1949,1,0,0,0,216,1952, + 1,0,0,0,218,1955,1,0,0,0,220,1964,1,0,0,0,222,1984,1,0,0,0,224,1986, + 1,0,0,0,226,1989,1,0,0,0,228,2002,1,0,0,0,230,2004,1,0,0,0,232,2008, + 1,0,0,0,234,2016,1,0,0,0,236,2020,1,0,0,0,238,2029,1,0,0,0,240,2035, + 1,0,0,0,242,2041,1,0,0,0,244,2046,1,0,0,0,246,2092,1,0,0,0,248,2094, + 1,0,0,0,250,2102,1,0,0,0,252,2110,1,0,0,0,254,2118,1,0,0,0,256,2128, + 1,0,0,0,258,2130,1,0,0,0,260,2132,1,0,0,0,262,2145,1,0,0,0,264,2153, + 1,0,0,0,266,2162,1,0,0,0,268,2166,1,0,0,0,270,2168,1,0,0,0,272,2173, + 1,0,0,0,274,2175,1,0,0,0,276,2179,1,0,0,0,278,2185,1,0,0,0,280,2193, + 1,0,0,0,282,2195,1,0,0,0,284,2198,1,0,0,0,286,2205,1,0,0,0,288,2216, + 1,0,0,0,290,2229,1,0,0,0,292,2231,1,0,0,0,294,2239,1,0,0,0,296,2243, + 1,0,0,0,298,2251,1,0,0,0,300,2253,1,0,0,0,302,2256,1,0,0,0,304,2263, + 1,0,0,0,306,2271,1,0,0,0,308,2278,1,0,0,0,310,2286,1,0,0,0,312,2294, + 1,0,0,0,314,2298,1,0,0,0,316,2300,1,0,0,0,318,2311,1,0,0,0,320,2315, + 1,0,0,0,322,2327,1,0,0,0,324,2335,1,0,0,0,326,2339,1,0,0,0,328,2351, + 1,0,0,0,330,2363,1,0,0,0,332,2368,1,0,0,0,334,2373,1,0,0,0,336,2375, + 1,0,0,0,338,2379,1,0,0,0,340,2383,1,0,0,0,342,2390,1,0,0,0,344,2392, + 1,0,0,0,346,2405,1,0,0,0,348,2444,1,0,0,0,350,2446,1,0,0,0,352,2451, + 1,0,0,0,354,2456,1,0,0,0,356,2463,1,0,0,0,358,2468,1,0,0,0,360,2473, + 1,0,0,0,362,2479,1,0,0,0,364,2481,1,0,0,0,366,2490,1,0,0,0,368,2502, + 1,0,0,0,370,2582,1,0,0,0,372,2588,1,0,0,0,374,2614,1,0,0,0,376,2616, + 1,0,0,0,378,2638,1,0,0,0,380,2643,1,0,0,0,382,2647,1,0,0,0,384,2679, + 1,0,0,0,386,2681,1,0,0,0,388,2692,1,0,0,0,390,2698,1,0,0,0,392,2700, + 1,0,0,0,394,2732,1,0,0,0,396,2739,1,0,0,0,398,2745,1,0,0,0,400,2751, + 1,0,0,0,402,2766,1,0,0,0,404,2776,1,0,0,0,406,2784,1,0,0,0,408,2787, + 1,0,0,0,410,2790,1,0,0,0,412,2793,1,0,0,0,414,2915,1,0,0,0,416,3049, + 1,0,0,0,418,3077,1,0,0,0,420,3094,1,0,0,0,422,3111,1,0,0,0,424,3113, + 1,0,0,0,426,3116,1,0,0,0,428,3142,1,0,0,0,430,3147,1,0,0,0,432,3174, + 1,0,0,0,434,3185,1,0,0,0,436,3322,1,0,0,0,438,3324,1,0,0,0,440,3347, + 1,0,0,0,442,3359,1,0,0,0,444,3364,1,0,0,0,446,3372,1,0,0,0,448,3380, + 1,0,0,0,450,3392,1,0,0,0,452,3426,1,0,0,0,454,3428,1,0,0,0,456,3446, + 1,0,0,0,458,3455,1,0,0,0,460,3485,1,0,0,0,462,3544,1,0,0,0,464,3546, + 1,0,0,0,466,3575,1,0,0,0,468,3577,1,0,0,0,470,3593,1,0,0,0,472,3605, + 1,0,0,0,474,3607,1,0,0,0,476,3611,1,0,0,0,478,3621,1,0,0,0,480,3631, + 1,0,0,0,482,3636,1,0,0,0,484,3643,1,0,0,0,486,3647,1,0,0,0,488,3668, + 1,0,0,0,490,3673,1,0,0,0,492,3675,1,0,0,0,494,3679,1,0,0,0,496,3705, + 1,0,0,0,498,3708,1,0,0,0,500,3729,1,0,0,0,502,3734,1,0,0,0,504,3765, + 1,0,0,0,506,3767,1,0,0,0,508,3791,1,0,0,0,510,3822,1,0,0,0,512,3824, + 1,0,0,0,514,3826,1,0,0,0,516,3828,1,0,0,0,518,3853,1,0,0,0,520,3855, + 1,0,0,0,522,3863,1,0,0,0,524,3889,1,0,0,0,526,3891,1,0,0,0,528,3911, + 1,0,0,0,530,3913,1,0,0,0,532,3924,1,0,0,0,534,3937,1,0,0,0,536,3972, + 1,0,0,0,538,3974,1,0,0,0,540,3977,1,0,0,0,542,3982,1,0,0,0,544,3984, + 1,0,0,0,546,4006,1,0,0,0,548,4008,1,0,0,0,550,4012,1,0,0,0,552,4021, + 1,0,0,0,554,4031,1,0,0,0,556,4035,1,0,0,0,558,4039,1,0,0,0,560,4115, + 1,0,0,0,562,4117,1,0,0,0,564,4120,1,0,0,0,566,4124,1,0,0,0,568,4129, + 1,0,0,0,570,4131,1,0,0,0,572,4142,1,0,0,0,574,4159,1,0,0,0,576,4175, + 1,0,0,0,578,4184,1,0,0,0,580,4199,1,0,0,0,582,4229,1,0,0,0,584,4231, + 1,0,0,0,586,4248,1,0,0,0,588,4264,1,0,0,0,590,4266,1,0,0,0,592,4285, + 1,0,0,0,594,4290,1,0,0,0,596,4305,1,0,0,0,598,4313,1,0,0,0,600,4321, + 1,0,0,0,602,4329,1,0,0,0,604,4337,1,0,0,0,606,4345,1,0,0,0,608,4353, + 1,0,0,0,610,4355,1,0,0,0,612,4365,1,0,0,0,614,4373,1,0,0,0,616,4389, + 1,0,0,0,618,4393,1,0,0,0,620,4398,1,0,0,0,622,4400,1,0,0,0,624,4411, + 1,0,0,0,626,4413,1,0,0,0,628,4431,1,0,0,0,630,4436,1,0,0,0,632,4444, + 1,0,0,0,634,4452,1,0,0,0,636,4456,1,0,0,0,638,4468,1,0,0,0,640,4473, + 1,0,0,0,642,4484,1,0,0,0,644,4491,1,0,0,0,646,4493,1,0,0,0,648,4497, + 1,0,0,0,650,4499,1,0,0,0,652,4504,1,0,0,0,654,4506,1,0,0,0,656,4508, + 1,0,0,0,658,4561,1,0,0,0,660,4728,1,0,0,0,662,4730,1,0,0,0,664,4739, + 1,0,0,0,666,4741,1,0,0,0,668,4752,1,0,0,0,670,4754,1,0,0,0,672,4759, + 1,0,0,0,674,4761,1,0,0,0,676,4763,1,0,0,0,678,4765,1,0,0,0,680,4767, + 1,0,0,0,682,4769,1,0,0,0,684,4771,1,0,0,0,686,4773,1,0,0,0,688,4775, + 1,0,0,0,690,4777,1,0,0,0,692,4779,1,0,0,0,694,4787,1,0,0,0,696,4795, + 1,0,0,0,698,4809,1,0,0,0,700,4811,1,0,0,0,702,704,3,2,1,0,703,702, + 1,0,0,0,704,707,1,0,0,0,705,703,1,0,0,0,705,706,1,0,0,0,706,708, + 1,0,0,0,707,705,1,0,0,0,708,709,5,0,0,1,709,1,1,0,0,0,710,713,3, + 4,2,0,711,713,3,10,5,0,712,710,1,0,0,0,712,711,1,0,0,0,713,715,1, + 0,0,0,714,716,5,398,0,0,715,714,1,0,0,0,715,716,1,0,0,0,716,3,1, + 0,0,0,717,727,5,119,0,0,718,720,3,6,3,0,719,718,1,0,0,0,720,723, + 1,0,0,0,721,719,1,0,0,0,721,722,1,0,0,0,722,724,1,0,0,0,723,721, + 1,0,0,0,724,728,3,10,5,0,725,726,5,284,0,0,726,728,3,360,180,0,727, + 721,1,0,0,0,727,725,1,0,0,0,728,5,1,0,0,0,729,752,5,122,0,0,730, + 752,5,138,0,0,731,752,5,88,0,0,732,734,5,37,0,0,733,735,7,0,0,0, + 734,733,1,0,0,0,734,735,1,0,0,0,735,752,1,0,0,0,736,752,5,192,0, + 0,737,752,5,21,0,0,738,752,5,10,0,0,739,752,5,275,0,0,740,752,5, + 191,0,0,741,752,5,19,0,0,742,744,5,377,0,0,743,745,5,225,0,0,744, + 743,1,0,0,0,744,745,1,0,0,0,745,747,1,0,0,0,746,748,3,8,4,0,747, + 746,1,0,0,0,747,748,1,0,0,0,748,752,1,0,0,0,749,752,5,79,0,0,750, + 752,5,78,0,0,751,729,1,0,0,0,751,730,1,0,0,0,751,731,1,0,0,0,751, + 732,1,0,0,0,751,736,1,0,0,0,751,737,1,0,0,0,751,738,1,0,0,0,751, + 739,1,0,0,0,751,740,1,0,0,0,751,741,1,0,0,0,751,742,1,0,0,0,751, + 749,1,0,0,0,751,750,1,0,0,0,752,7,1,0,0,0,753,754,7,1,0,0,754,9, + 1,0,0,0,755,827,3,360,180,0,756,827,3,12,6,0,757,827,3,16,8,0,758, + 827,3,18,9,0,759,827,3,20,10,0,760,827,3,24,12,0,761,762,5,277,0, + 0,762,763,5,320,0,0,763,766,3,472,236,0,764,765,5,387,0,0,765,767, + 3,230,115,0,766,764,1,0,0,0,766,767,1,0,0,0,767,827,1,0,0,0,768, + 827,3,28,14,0,769,770,5,86,0,0,770,771,5,139,0,0,771,773,3,478,239, + 0,772,774,3,496,248,0,773,772,1,0,0,0,773,774,1,0,0,0,774,827,1, + 0,0,0,775,776,5,365,0,0,776,777,3,478,239,0,777,779,3,392,196,0, + 778,780,3,496,248,0,779,778,1,0,0,0,779,780,1,0,0,0,780,827,1,0, + 0,0,781,827,3,394,197,0,782,784,5,203,0,0,783,785,5,436,0,0,784, + 783,1,0,0,0,784,785,1,0,0,0,785,786,1,0,0,0,786,787,5,166,0,0,787, + 792,3,478,239,0,788,790,5,17,0,0,789,788,1,0,0,0,789,790,1,0,0,0, + 790,791,1,0,0,0,791,793,3,648,324,0,792,789,1,0,0,0,792,793,1,0, + 0,0,793,794,1,0,0,0,794,795,5,370,0,0,795,796,3,456,228,0,796,797, + 5,224,0,0,797,798,3,590,295,0,798,799,3,398,199,0,799,827,1,0,0, + 0,800,801,5,249,0,0,801,802,3,648,324,0,802,803,5,139,0,0,803,804, + 3,360,180,0,804,827,1,0,0,0,805,806,5,115,0,0,806,807,3,648,324, + 0,807,808,5,370,0,0,808,809,3,296,148,0,809,827,1,0,0,0,810,811, + 5,304,0,0,811,816,3,658,329,0,812,813,7,2,0,0,813,815,3,658,329, + 0,814,812,1,0,0,0,815,818,1,0,0,0,816,814,1,0,0,0,816,817,1,0,0, + 0,817,819,1,0,0,0,818,816,1,0,0,0,819,823,5,405,0,0,820,822,9,0, + 0,0,821,820,1,0,0,0,822,825,1,0,0,0,823,824,1,0,0,0,823,821,1,0, + 0,0,824,827,1,0,0,0,825,823,1,0,0,0,826,755,1,0,0,0,826,756,1,0, + 0,0,826,757,1,0,0,0,826,758,1,0,0,0,826,759,1,0,0,0,826,760,1,0, + 0,0,826,761,1,0,0,0,826,768,1,0,0,0,826,769,1,0,0,0,826,775,1,0, + 0,0,826,781,1,0,0,0,826,782,1,0,0,0,826,800,1,0,0,0,826,805,1,0, + 0,0,826,810,1,0,0,0,827,11,1,0,0,0,828,829,5,187,0,0,829,831,5,66, + 0,0,830,832,5,188,0,0,831,830,1,0,0,0,831,832,1,0,0,0,832,833,1, + 0,0,0,833,834,5,158,0,0,834,836,5,426,0,0,835,837,5,235,0,0,836, + 835,1,0,0,0,836,837,1,0,0,0,837,838,1,0,0,0,838,839,5,166,0,0,839, + 840,5,329,0,0,840,842,3,634,317,0,841,843,3,56,28,0,842,841,1,0, + 0,0,842,843,1,0,0,0,843,13,1,0,0,0,844,846,5,134,0,0,845,847,5,204, + 0,0,846,845,1,0,0,0,846,847,1,0,0,0,847,848,1,0,0,0,848,849,5,279, + 0,0,849,850,5,399,0,0,850,851,5,426,0,0,851,852,5,400,0,0,852,15, + 1,0,0,0,853,854,5,120,0,0,854,855,5,329,0,0,855,856,3,634,317,0, + 856,857,5,341,0,0,857,859,5,426,0,0,858,860,3,14,7,0,859,858,1,0, + 0,0,859,860,1,0,0,0,860,17,1,0,0,0,861,867,5,153,0,0,862,864,5,123, + 0,0,863,862,1,0,0,0,863,864,1,0,0,0,864,865,1,0,0,0,865,866,5,329, + 0,0,866,868,3,634,317,0,867,863,1,0,0,0,867,868,1,0,0,0,868,869, + 1,0,0,0,869,870,5,139,0,0,870,872,5,426,0,0,871,873,3,424,212,0, + 872,871,1,0,0,0,872,873,1,0,0,0,873,19,1,0,0,0,874,875,5,277,0,0, + 875,876,5,103,0,0,876,879,3,22,11,0,877,878,5,278,0,0,878,880,3, + 22,11,0,879,877,1,0,0,0,879,880,1,0,0,0,880,883,1,0,0,0,881,882, + 5,387,0,0,882,884,3,230,115,0,883,881,1,0,0,0,883,884,1,0,0,0,884, + 21,1,0,0,0,885,888,3,472,236,0,886,887,5,395,0,0,887,889,3,26,13, + 0,888,886,1,0,0,0,888,889,1,0,0,0,889,23,1,0,0,0,890,891,5,277,0, + 0,891,892,5,187,0,0,892,895,3,22,11,0,893,894,5,166,0,0,894,896, + 3,472,236,0,895,893,1,0,0,0,895,896,1,0,0,0,896,899,1,0,0,0,897, + 898,5,387,0,0,898,900,3,230,115,0,899,897,1,0,0,0,899,900,1,0,0, + 0,900,25,1,0,0,0,901,904,5,426,0,0,902,903,5,395,0,0,903,905,5,426, + 0,0,904,902,1,0,0,0,904,905,1,0,0,0,905,27,1,0,0,0,906,965,3,42, + 21,0,907,965,3,46,23,0,908,965,3,48,24,0,909,965,3,436,218,0,910, + 965,3,54,27,0,911,965,3,52,26,0,912,965,3,412,206,0,913,965,3,64, + 32,0,914,965,3,72,36,0,915,965,3,138,69,0,916,965,3,160,80,0,917, + 965,3,176,88,0,918,965,3,180,90,0,919,965,3,184,92,0,920,965,3,182, + 91,0,921,965,3,174,87,0,922,965,3,178,89,0,923,965,3,146,73,0,924, + 965,3,152,76,0,925,965,3,148,74,0,926,965,3,150,75,0,927,965,3,154, + 77,0,928,965,3,156,78,0,929,965,3,158,79,0,930,965,3,66,33,0,931, + 965,3,76,38,0,932,965,3,82,41,0,933,965,3,78,39,0,934,965,3,84,42, + 0,935,965,3,86,43,0,936,965,3,88,44,0,937,965,3,90,45,0,938,965, + 3,92,46,0,939,965,3,106,53,0,940,965,3,98,49,0,941,965,3,108,54, + 0,942,965,3,100,50,0,943,965,3,94,47,0,944,965,3,96,48,0,945,965, + 3,104,52,0,946,965,3,102,51,0,947,948,5,1,0,0,948,950,7,3,0,0,949, + 951,5,431,0,0,950,949,1,0,0,0,951,952,1,0,0,0,952,950,1,0,0,0,952, + 953,1,0,0,0,953,965,1,0,0,0,954,955,5,176,0,0,955,957,5,258,0,0, + 956,958,5,426,0,0,957,956,1,0,0,0,958,959,1,0,0,0,959,957,1,0,0, + 0,959,960,1,0,0,0,960,965,1,0,0,0,961,965,3,660,330,0,962,965,3, + 438,219,0,963,965,3,440,220,0,964,906,1,0,0,0,964,907,1,0,0,0,964, + 908,1,0,0,0,964,909,1,0,0,0,964,910,1,0,0,0,964,911,1,0,0,0,964, + 912,1,0,0,0,964,913,1,0,0,0,964,914,1,0,0,0,964,915,1,0,0,0,964, + 916,1,0,0,0,964,917,1,0,0,0,964,918,1,0,0,0,964,919,1,0,0,0,964, + 920,1,0,0,0,964,921,1,0,0,0,964,922,1,0,0,0,964,923,1,0,0,0,964, + 924,1,0,0,0,964,925,1,0,0,0,964,926,1,0,0,0,964,927,1,0,0,0,964, + 928,1,0,0,0,964,929,1,0,0,0,964,930,1,0,0,0,964,931,1,0,0,0,964, + 932,1,0,0,0,964,933,1,0,0,0,964,934,1,0,0,0,964,935,1,0,0,0,964, + 936,1,0,0,0,964,937,1,0,0,0,964,938,1,0,0,0,964,939,1,0,0,0,964, + 940,1,0,0,0,964,941,1,0,0,0,964,942,1,0,0,0,964,943,1,0,0,0,964, + 944,1,0,0,0,964,945,1,0,0,0,964,946,1,0,0,0,964,947,1,0,0,0,964, + 954,1,0,0,0,964,961,1,0,0,0,964,962,1,0,0,0,964,963,1,0,0,0,965, + 29,1,0,0,0,966,967,5,151,0,0,967,968,5,117,0,0,968,31,1,0,0,0,969, + 970,5,151,0,0,970,971,5,216,0,0,971,972,5,117,0,0,972,33,1,0,0,0, + 973,974,7,4,0,0,974,35,1,0,0,0,975,976,3,672,336,0,976,977,5,284, + 0,0,977,37,1,0,0,0,978,979,3,674,337,0,979,980,5,284,0,0,980,39, + 1,0,0,0,981,982,5,321,0,0,982,983,5,17,0,0,983,984,5,92,0,0,984, + 41,1,0,0,0,985,987,5,58,0,0,986,988,5,273,0,0,987,986,1,0,0,0,987, + 988,1,0,0,0,988,989,1,0,0,0,989,991,3,70,35,0,990,992,3,32,16,0, + 991,990,1,0,0,0,991,992,1,0,0,0,992,993,1,0,0,0,993,995,3,474,237, + 0,994,996,3,50,25,0,995,994,1,0,0,0,995,996,1,0,0,0,996,998,1,0, + 0,0,997,999,3,424,212,0,998,997,1,0,0,0,998,999,1,0,0,0,999,1002, + 1,0,0,0,1000,1001,5,196,0,0,1001,1003,5,426,0,0,1002,1000,1,0,0, + 0,1002,1003,1,0,0,0,1003,1007,1,0,0,0,1004,1005,5,387,0,0,1005,1006, + 5,76,0,0,1006,1008,3,230,115,0,1007,1004,1,0,0,0,1007,1008,1,0,0, + 0,1008,1026,1,0,0,0,1009,1010,5,58,0,0,1010,1011,5,273,0,0,1011, + 1013,3,70,35,0,1012,1014,3,32,16,0,1013,1012,1,0,0,0,1013,1014,1, + 0,0,0,1014,1015,1,0,0,0,1015,1017,3,474,237,0,1016,1018,3,50,25, + 0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1,0,0,0,1019,1023, + 3,44,22,0,1020,1021,5,387,0,0,1021,1022,5,76,0,0,1022,1024,3,230, + 115,0,1023,1020,1,0,0,0,1023,1024,1,0,0,0,1024,1026,1,0,0,0,1025, + 985,1,0,0,0,1025,1009,1,0,0,0,1026,43,1,0,0,0,1027,1028,5,370,0, + 0,1028,1029,3,472,236,0,1029,45,1,0,0,0,1030,1031,5,368,0,0,1031, + 1032,3,472,236,0,1032,47,1,0,0,0,1033,1034,5,101,0,0,1034,1036,3, + 70,35,0,1035,1037,3,30,15,0,1036,1035,1,0,0,0,1036,1037,1,0,0,0, + 1037,1038,1,0,0,0,1038,1040,3,472,236,0,1039,1041,3,34,17,0,1040, + 1039,1,0,0,0,1040,1041,1,0,0,0,1041,49,1,0,0,0,1042,1043,5,47,0, + 0,1043,1044,5,426,0,0,1044,51,1,0,0,0,1045,1047,5,351,0,0,1046,1048, + 5,329,0,0,1047,1046,1,0,0,0,1047,1048,1,0,0,0,1048,1049,1,0,0,0, + 1049,1055,3,634,317,0,1050,1051,5,46,0,0,1051,1052,5,399,0,0,1052, + 1053,3,254,127,0,1053,1054,5,400,0,0,1054,1056,1,0,0,0,1055,1050, + 1,0,0,0,1055,1056,1,0,0,0,1056,1058,1,0,0,0,1057,1059,5,135,0,0, + 1058,1057,1,0,0,0,1058,1059,1,0,0,0,1059,53,1,0,0,0,1060,1061,5, + 101,0,0,1061,1063,5,329,0,0,1062,1064,3,30,15,0,1063,1062,1,0,0, + 0,1063,1064,1,0,0,0,1064,1065,1,0,0,0,1065,1067,3,478,239,0,1066, + 1068,5,255,0,0,1067,1066,1,0,0,0,1067,1068,1,0,0,0,1068,1070,1,0, + 0,0,1069,1071,3,14,7,0,1070,1069,1,0,0,0,1070,1071,1,0,0,0,1071, + 55,1,0,0,0,1072,1073,5,160,0,0,1073,1074,5,426,0,0,1074,1075,5,301, + 0,0,1075,1076,5,426,0,0,1076,57,1,0,0,0,1077,1080,3,648,324,0,1078, + 1079,5,395,0,0,1079,1081,3,648,324,0,1080,1078,1,0,0,0,1080,1081, + 1,0,0,0,1081,1095,1,0,0,0,1082,1092,3,648,324,0,1083,1088,5,395, + 0,0,1084,1089,5,104,0,0,1085,1089,5,175,0,0,1086,1089,5,375,0,0, + 1087,1089,3,648,324,0,1088,1084,1,0,0,0,1088,1085,1,0,0,0,1088,1086, + 1,0,0,0,1088,1087,1,0,0,0,1089,1091,1,0,0,0,1090,1083,1,0,0,0,1091, + 1094,1,0,0,0,1092,1090,1,0,0,0,1092,1093,1,0,0,0,1093,1096,1,0,0, + 0,1094,1092,1,0,0,0,1095,1082,1,0,0,0,1095,1096,1,0,0,0,1096,59, + 1,0,0,0,1097,1099,3,58,29,0,1098,1100,3,636,318,0,1099,1098,1,0, + 0,0,1099,1100,1,0,0,0,1100,61,1,0,0,0,1101,1103,3,476,238,0,1102, + 1104,3,636,318,0,1103,1102,1,0,0,0,1103,1104,1,0,0,0,1104,1106,1, + 0,0,0,1105,1107,3,260,130,0,1106,1105,1,0,0,0,1106,1107,1,0,0,0, + 1107,63,1,0,0,0,1108,1131,7,5,0,0,1109,1111,3,70,35,0,1110,1112, + 5,122,0,0,1111,1110,1,0,0,0,1111,1112,1,0,0,0,1112,1113,1,0,0,0, + 1113,1114,3,472,236,0,1114,1132,1,0,0,0,1115,1117,5,69,0,0,1116, + 1118,5,122,0,0,1117,1116,1,0,0,0,1117,1118,1,0,0,0,1118,1119,1,0, + 0,0,1119,1132,3,472,236,0,1120,1122,5,141,0,0,1121,1123,5,122,0, + 0,1122,1121,1,0,0,0,1122,1123,1,0,0,0,1123,1124,1,0,0,0,1124,1132, + 3,566,283,0,1125,1128,5,138,0,0,1126,1128,5,122,0,0,1127,1125,1, + 0,0,0,1127,1126,1,0,0,0,1128,1129,1,0,0,0,1129,1132,3,62,31,0,1130, + 1132,3,62,31,0,1131,1109,1,0,0,0,1131,1115,1,0,0,0,1131,1120,1,0, + 0,0,1131,1127,1,0,0,0,1131,1130,1,0,0,0,1132,65,1,0,0,0,1133,1134, + 5,10,0,0,1134,1135,5,329,0,0,1135,1148,3,634,317,0,1136,1137,5,52, + 0,0,1137,1144,5,319,0,0,1138,1145,5,215,0,0,1139,1140,5,134,0,0, + 1140,1142,5,46,0,0,1141,1143,3,254,127,0,1142,1141,1,0,0,0,1142, + 1143,1,0,0,0,1143,1145,1,0,0,0,1144,1138,1,0,0,0,1144,1139,1,0,0, + 0,1144,1145,1,0,0,0,1145,1149,1,0,0,0,1146,1147,5,33,0,0,1147,1149, + 5,204,0,0,1148,1136,1,0,0,0,1148,1146,1,0,0,0,1149,67,1,0,0,0,1150, + 1151,7,6,0,0,1151,69,1,0,0,0,1152,1153,7,7,0,0,1153,71,1,0,0,0,1154, + 1155,5,308,0,0,1155,1158,7,8,0,0,1156,1157,5,184,0,0,1157,1159,3, + 194,97,0,1158,1156,1,0,0,0,1158,1159,1,0,0,0,1159,1338,1,0,0,0,1160, + 1162,5,308,0,0,1161,1163,5,122,0,0,1162,1161,1,0,0,0,1162,1163,1, + 0,0,0,1163,1164,1,0,0,0,1164,1168,5,330,0,0,1165,1166,3,68,34,0, + 1166,1167,3,472,236,0,1167,1169,1,0,0,0,1168,1165,1,0,0,0,1168,1169, + 1,0,0,0,1169,1171,1,0,0,0,1170,1172,3,74,37,0,1171,1170,1,0,0,0, + 1171,1172,1,0,0,0,1172,1338,1,0,0,0,1173,1174,5,308,0,0,1174,1178, + 5,379,0,0,1175,1176,3,68,34,0,1176,1177,3,472,236,0,1177,1179,1, + 0,0,0,1178,1175,1,0,0,0,1178,1179,1,0,0,0,1179,1183,1,0,0,0,1180, + 1181,5,184,0,0,1181,1184,3,194,97,0,1182,1184,3,194,97,0,1183,1180, + 1,0,0,0,1183,1182,1,0,0,0,1183,1184,1,0,0,0,1184,1338,1,0,0,0,1185, + 1186,5,308,0,0,1186,1187,5,202,0,0,1187,1191,5,379,0,0,1188,1189, + 3,68,34,0,1189,1190,3,472,236,0,1190,1192,1,0,0,0,1191,1188,1,0, + 0,0,1191,1192,1,0,0,0,1192,1196,1,0,0,0,1193,1194,5,184,0,0,1194, + 1197,3,194,97,0,1195,1197,3,194,97,0,1196,1193,1,0,0,0,1196,1195, + 1,0,0,0,1196,1197,1,0,0,0,1197,1338,1,0,0,0,1198,1200,5,308,0,0, + 1199,1201,5,315,0,0,1200,1199,1,0,0,0,1200,1201,1,0,0,0,1201,1202, + 1,0,0,0,1202,1203,5,46,0,0,1203,1204,3,68,34,0,1204,1208,3,476,238, + 0,1205,1206,3,68,34,0,1206,1207,3,472,236,0,1207,1209,1,0,0,0,1208, + 1205,1,0,0,0,1208,1209,1,0,0,0,1209,1213,1,0,0,0,1210,1211,5,184, + 0,0,1211,1214,3,194,97,0,1212,1214,3,194,97,0,1213,1210,1,0,0,0, + 1213,1212,1,0,0,0,1213,1214,1,0,0,0,1214,1338,1,0,0,0,1215,1216, + 5,308,0,0,1216,1219,5,142,0,0,1217,1218,5,184,0,0,1218,1220,3,566, + 283,0,1219,1217,1,0,0,0,1219,1220,1,0,0,0,1220,1338,1,0,0,0,1221, + 1222,5,308,0,0,1222,1223,5,239,0,0,1223,1225,3,476,238,0,1224,1226, + 3,636,318,0,1225,1224,1,0,0,0,1225,1226,1,0,0,0,1226,1228,1,0,0, + 0,1227,1229,3,496,248,0,1228,1227,1,0,0,0,1228,1229,1,0,0,0,1229, + 1231,1,0,0,0,1230,1232,3,552,276,0,1231,1230,1,0,0,0,1231,1232,1, + 0,0,0,1232,1234,1,0,0,0,1233,1235,3,386,193,0,1234,1233,1,0,0,0, + 1234,1235,1,0,0,0,1235,1338,1,0,0,0,1236,1237,5,308,0,0,1237,1243, + 5,58,0,0,1238,1239,3,70,35,0,1239,1240,3,472,236,0,1240,1244,1,0, + 0,0,1241,1242,5,329,0,0,1242,1244,3,478,239,0,1243,1238,1,0,0,0, + 1243,1241,1,0,0,0,1244,1338,1,0,0,0,1245,1246,5,308,0,0,1246,1247, + 5,329,0,0,1247,1251,5,122,0,0,1248,1249,3,68,34,0,1249,1250,3,472, + 236,0,1250,1252,1,0,0,0,1251,1248,1,0,0,0,1251,1252,1,0,0,0,1252, + 1253,1,0,0,0,1253,1254,5,184,0,0,1254,1256,3,194,97,0,1255,1257, + 3,636,318,0,1256,1255,1,0,0,0,1256,1257,1,0,0,0,1257,1338,1,0,0, + 0,1258,1259,5,308,0,0,1259,1260,5,332,0,0,1260,1264,3,478,239,0, + 1261,1262,5,399,0,0,1262,1263,5,426,0,0,1263,1265,5,400,0,0,1264, + 1261,1,0,0,0,1264,1265,1,0,0,0,1265,1338,1,0,0,0,1266,1267,5,308, + 0,0,1267,1279,5,191,0,0,1268,1269,3,70,35,0,1269,1271,3,472,236, + 0,1270,1272,5,122,0,0,1271,1270,1,0,0,0,1271,1272,1,0,0,0,1272,1280, + 1,0,0,0,1273,1275,3,60,30,0,1274,1273,1,0,0,0,1274,1275,1,0,0,0, + 1275,1277,1,0,0,0,1276,1278,5,122,0,0,1277,1276,1,0,0,0,1277,1278, + 1,0,0,0,1278,1280,1,0,0,0,1279,1268,1,0,0,0,1279,1274,1,0,0,0,1280, + 1338,1,0,0,0,1281,1282,5,308,0,0,1282,1309,5,50,0,0,1283,1284,5, + 51,0,0,1284,1285,5,405,0,0,1285,1310,5,431,0,0,1286,1287,3,70,35, + 0,1287,1288,3,472,236,0,1288,1293,1,0,0,0,1289,1291,3,60,30,0,1290, + 1289,1,0,0,0,1290,1291,1,0,0,0,1291,1293,1,0,0,0,1292,1286,1,0,0, + 0,1292,1290,1,0,0,0,1293,1295,1,0,0,0,1294,1296,3,406,203,0,1295, + 1294,1,0,0,0,1295,1296,1,0,0,0,1296,1298,1,0,0,0,1297,1299,3,408, + 204,0,1298,1297,1,0,0,0,1298,1299,1,0,0,0,1299,1301,1,0,0,0,1300, + 1302,3,410,205,0,1301,1300,1,0,0,0,1301,1302,1,0,0,0,1302,1304,1, + 0,0,0,1303,1305,3,552,276,0,1304,1303,1,0,0,0,1304,1305,1,0,0,0, + 1305,1307,1,0,0,0,1306,1308,3,386,193,0,1307,1306,1,0,0,0,1307,1308, + 1,0,0,0,1308,1310,1,0,0,0,1309,1283,1,0,0,0,1309,1292,1,0,0,0,1310, + 1338,1,0,0,0,1311,1312,5,308,0,0,1312,1338,5,346,0,0,1313,1314,5, + 308,0,0,1314,1315,5,54,0,0,1315,1338,5,426,0,0,1316,1317,5,308,0, + 0,1317,1321,5,280,0,0,1318,1319,5,243,0,0,1319,1322,3,648,324,0, + 1320,1322,5,244,0,0,1321,1318,1,0,0,0,1321,1320,1,0,0,0,1322,1338, + 1,0,0,0,1323,1324,5,308,0,0,1324,1338,5,70,0,0,1325,1327,5,308,0, + 0,1326,1328,5,138,0,0,1327,1326,1,0,0,0,1327,1328,1,0,0,0,1328,1329, + 1,0,0,0,1329,1330,7,9,0,0,1330,1331,5,224,0,0,1331,1335,3,478,239, + 0,1332,1333,3,68,34,0,1333,1334,3,472,236,0,1334,1336,1,0,0,0,1335, + 1332,1,0,0,0,1335,1336,1,0,0,0,1336,1338,1,0,0,0,1337,1154,1,0,0, + 0,1337,1160,1,0,0,0,1337,1173,1,0,0,0,1337,1185,1,0,0,0,1337,1198, + 1,0,0,0,1337,1215,1,0,0,0,1337,1221,1,0,0,0,1337,1236,1,0,0,0,1337, + 1245,1,0,0,0,1337,1258,1,0,0,0,1337,1266,1,0,0,0,1337,1281,1,0,0, + 0,1337,1311,1,0,0,0,1337,1313,1,0,0,0,1337,1316,1,0,0,0,1337,1323, + 1,0,0,0,1337,1325,1,0,0,0,1338,73,1,0,0,0,1339,1340,5,384,0,0,1340, + 1341,3,648,324,0,1341,1342,5,405,0,0,1342,1343,5,426,0,0,1343,1348, + 1,0,0,0,1344,1345,5,184,0,0,1345,1348,3,194,97,0,1346,1348,3,194, + 97,0,1347,1339,1,0,0,0,1347,1344,1,0,0,0,1347,1346,1,0,0,0,1348, + 75,1,0,0,0,1349,1350,5,190,0,0,1350,1351,5,329,0,0,1351,1352,3,634, + 317,0,1352,1353,3,80,40,0,1353,77,1,0,0,0,1354,1355,5,190,0,0,1355, + 1356,3,70,35,0,1356,1357,3,472,236,0,1357,1358,3,80,40,0,1358,79, + 1,0,0,0,1359,1360,7,10,0,0,1360,81,1,0,0,0,1361,1362,5,361,0,0,1362, + 1363,5,329,0,0,1363,1364,3,634,317,0,1364,83,1,0,0,0,1365,1366,5, + 361,0,0,1366,1367,3,70,35,0,1367,1368,3,472,236,0,1368,85,1,0,0, + 0,1369,1370,5,58,0,0,1370,1371,5,287,0,0,1371,1372,3,648,324,0,1372, + 87,1,0,0,0,1373,1374,5,101,0,0,1374,1375,5,287,0,0,1375,1376,3,648, + 324,0,1376,89,1,0,0,0,1377,1378,5,143,0,0,1378,1380,3,118,59,0,1379, + 1381,3,112,56,0,1380,1379,1,0,0,0,1380,1381,1,0,0,0,1381,1382,1, + 0,0,0,1382,1383,5,341,0,0,1383,1385,3,124,62,0,1384,1386,3,130,65, + 0,1385,1384,1,0,0,0,1385,1386,1,0,0,0,1386,91,1,0,0,0,1387,1389, + 5,283,0,0,1388,1390,3,132,66,0,1389,1388,1,0,0,0,1389,1390,1,0,0, + 0,1390,1391,1,0,0,0,1391,1393,3,118,59,0,1392,1394,3,112,56,0,1393, + 1392,1,0,0,0,1393,1394,1,0,0,0,1394,1395,1,0,0,0,1395,1396,5,139, + 0,0,1396,1397,3,124,62,0,1397,93,1,0,0,0,1398,1400,5,143,0,0,1399, + 1401,5,287,0,0,1400,1399,1,0,0,0,1400,1401,1,0,0,0,1401,1402,1,0, + 0,0,1402,1407,3,648,324,0,1403,1404,5,397,0,0,1404,1406,3,648,324, + 0,1405,1403,1,0,0,0,1406,1409,1,0,0,0,1407,1405,1,0,0,0,1407,1408, + 1,0,0,0,1408,1410,1,0,0,0,1409,1407,1,0,0,0,1410,1411,5,341,0,0, + 1411,1413,3,124,62,0,1412,1414,3,136,68,0,1413,1412,1,0,0,0,1413, + 1414,1,0,0,0,1414,95,1,0,0,0,1415,1417,5,283,0,0,1416,1418,3,134, + 67,0,1417,1416,1,0,0,0,1417,1418,1,0,0,0,1418,1420,1,0,0,0,1419, + 1421,5,287,0,0,1420,1419,1,0,0,0,1420,1421,1,0,0,0,1421,1422,1,0, + 0,0,1422,1427,3,648,324,0,1423,1424,5,397,0,0,1424,1426,3,648,324, + 0,1425,1423,1,0,0,0,1426,1429,1,0,0,0,1427,1425,1,0,0,0,1427,1428, + 1,0,0,0,1428,1430,1,0,0,0,1429,1427,1,0,0,0,1430,1431,5,139,0,0, + 1431,1432,3,124,62,0,1432,97,1,0,0,0,1433,1434,5,308,0,0,1434,1435, + 5,287,0,0,1435,1436,5,143,0,0,1436,1437,3,126,63,0,1437,99,1,0,0, + 0,1438,1439,5,308,0,0,1439,1440,5,288,0,0,1440,101,1,0,0,0,1441, + 1442,5,308,0,0,1442,1443,5,62,0,0,1443,1444,5,288,0,0,1444,103,1, + 0,0,0,1445,1446,5,304,0,0,1446,1450,5,287,0,0,1447,1451,5,7,0,0, + 1448,1451,5,213,0,0,1449,1451,3,648,324,0,1450,1447,1,0,0,0,1450, + 1448,1,0,0,0,1450,1449,1,0,0,0,1451,105,1,0,0,0,1452,1453,5,308, + 0,0,1453,1455,5,143,0,0,1454,1456,3,126,63,0,1455,1454,1,0,0,0,1455, + 1456,1,0,0,0,1456,1459,1,0,0,0,1457,1458,5,224,0,0,1458,1460,3,110, + 55,0,1459,1457,1,0,0,0,1459,1460,1,0,0,0,1460,107,1,0,0,0,1461,1462, + 5,308,0,0,1462,1463,5,252,0,0,1463,1464,3,648,324,0,1464,109,1,0, + 0,0,1465,1468,5,7,0,0,1466,1468,3,116,58,0,1467,1465,1,0,0,0,1467, + 1466,1,0,0,0,1468,111,1,0,0,0,1469,1470,5,224,0,0,1470,1471,3,114, + 57,0,1471,113,1,0,0,0,1472,1473,3,70,35,0,1473,1474,3,472,236,0, + 1474,1484,1,0,0,0,1475,1477,5,329,0,0,1476,1475,1,0,0,0,1476,1477, + 1,0,0,0,1477,1478,1,0,0,0,1478,1484,3,634,317,0,1479,1480,5,366, + 0,0,1480,1484,5,426,0,0,1481,1482,5,303,0,0,1482,1484,3,648,324, + 0,1483,1472,1,0,0,0,1483,1476,1,0,0,0,1483,1479,1,0,0,0,1483,1481, + 1,0,0,0,1484,115,1,0,0,0,1485,1486,3,70,35,0,1486,1487,3,472,236, + 0,1487,1506,1,0,0,0,1488,1490,5,329,0,0,1489,1488,1,0,0,0,1489,1490, + 1,0,0,0,1490,1491,1,0,0,0,1491,1496,3,478,239,0,1492,1493,5,399, + 0,0,1493,1494,3,254,127,0,1494,1495,5,400,0,0,1495,1497,1,0,0,0, + 1496,1492,1,0,0,0,1496,1497,1,0,0,0,1497,1499,1,0,0,0,1498,1500, + 3,636,318,0,1499,1498,1,0,0,0,1499,1500,1,0,0,0,1500,1506,1,0,0, + 0,1501,1502,5,366,0,0,1502,1506,5,426,0,0,1503,1504,5,303,0,0,1504, + 1506,3,648,324,0,1505,1485,1,0,0,0,1505,1489,1,0,0,0,1505,1501,1, + 0,0,0,1505,1503,1,0,0,0,1506,117,1,0,0,0,1507,1512,3,120,60,0,1508, + 1509,5,397,0,0,1509,1511,3,120,60,0,1510,1508,1,0,0,0,1511,1514, + 1,0,0,0,1512,1510,1,0,0,0,1512,1513,1,0,0,0,1513,119,1,0,0,0,1514, + 1512,1,0,0,0,1515,1520,3,122,61,0,1516,1517,5,399,0,0,1517,1518, + 3,254,127,0,1518,1519,5,400,0,0,1519,1521,1,0,0,0,1520,1516,1,0, + 0,0,1520,1521,1,0,0,0,1521,121,1,0,0,0,1522,1523,7,11,0,0,1523,123, + 1,0,0,0,1524,1529,3,126,63,0,1525,1526,5,397,0,0,1526,1528,3,126, + 63,0,1527,1525,1,0,0,0,1528,1531,1,0,0,0,1529,1527,1,0,0,0,1529, + 1530,1,0,0,0,1530,125,1,0,0,0,1531,1529,1,0,0,0,1532,1533,5,369, + 0,0,1533,1539,3,652,326,0,1534,1535,5,144,0,0,1535,1539,3,652,326, + 0,1536,1537,5,287,0,0,1537,1539,3,648,324,0,1538,1532,1,0,0,0,1538, + 1534,1,0,0,0,1538,1536,1,0,0,0,1539,127,1,0,0,0,1540,1541,5,369, + 0,0,1541,1546,3,652,326,0,1542,1543,5,287,0,0,1543,1546,3,648,324, + 0,1544,1546,3,648,324,0,1545,1540,1,0,0,0,1545,1542,1,0,0,0,1545, + 1544,1,0,0,0,1546,129,1,0,0,0,1547,1548,5,387,0,0,1548,1549,5,143, + 0,0,1549,1550,5,227,0,0,1550,131,1,0,0,0,1551,1552,5,143,0,0,1552, + 1553,5,227,0,0,1553,1554,5,134,0,0,1554,133,1,0,0,0,1555,1556,5, + 5,0,0,1556,1557,5,227,0,0,1557,1558,5,134,0,0,1558,135,1,0,0,0,1559, + 1560,5,387,0,0,1560,1561,5,5,0,0,1561,1562,5,227,0,0,1562,137,1, + 0,0,0,1563,1565,5,212,0,0,1564,1566,5,276,0,0,1565,1564,1,0,0,0, + 1565,1566,1,0,0,0,1566,1567,1,0,0,0,1567,1568,5,329,0,0,1568,1574, + 3,478,239,0,1569,1570,7,12,0,0,1570,1572,5,239,0,0,1571,1573,3,640, + 320,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573,1575,1,0,0,0,1574, + 1569,1,0,0,0,1574,1575,1,0,0,0,1575,139,1,0,0,0,1576,1581,3,142, + 71,0,1577,1578,5,397,0,0,1578,1580,3,142,71,0,1579,1577,1,0,0,0, + 1580,1583,1,0,0,0,1581,1579,1,0,0,0,1581,1582,1,0,0,0,1582,141,1, + 0,0,0,1583,1581,1,0,0,0,1584,1585,3,144,72,0,1585,1586,5,426,0,0, + 1586,143,1,0,0,0,1587,1588,7,13,0,0,1588,145,1,0,0,0,1589,1591,5, + 58,0,0,1590,1592,5,333,0,0,1591,1590,1,0,0,0,1591,1592,1,0,0,0,1592, + 1593,1,0,0,0,1593,1594,5,141,0,0,1594,1595,3,564,282,0,1595,1596, + 5,17,0,0,1596,1599,5,426,0,0,1597,1598,5,370,0,0,1598,1600,3,140, + 70,0,1599,1597,1,0,0,0,1599,1600,1,0,0,0,1600,147,1,0,0,0,1601,1603, + 5,101,0,0,1602,1604,5,333,0,0,1603,1602,1,0,0,0,1603,1604,1,0,0, + 0,1604,1605,1,0,0,0,1605,1607,5,141,0,0,1606,1608,3,30,15,0,1607, + 1606,1,0,0,0,1607,1608,1,0,0,0,1608,1609,1,0,0,0,1609,1610,3,566, + 283,0,1610,149,1,0,0,0,1611,1612,5,271,0,0,1612,1613,7,14,0,0,1613, + 151,1,0,0,0,1614,1615,5,58,0,0,1615,1616,5,333,0,0,1616,1617,5,194, + 0,0,1617,1618,5,432,0,0,1618,1620,5,399,0,0,1619,1621,3,248,124, + 0,1620,1619,1,0,0,0,1620,1621,1,0,0,0,1621,1622,1,0,0,0,1622,1623, + 5,400,0,0,1623,1624,3,590,295,0,1624,153,1,0,0,0,1625,1626,5,101, + 0,0,1626,1627,5,333,0,0,1627,1629,5,194,0,0,1628,1630,3,30,15,0, + 1629,1628,1,0,0,0,1629,1630,1,0,0,0,1630,1631,1,0,0,0,1631,1632, + 5,432,0,0,1632,155,1,0,0,0,1633,1634,5,58,0,0,1634,1635,5,155,0, + 0,1635,1636,3,648,324,0,1636,1637,5,224,0,0,1637,1638,5,329,0,0, + 1638,1639,3,478,239,0,1639,1640,3,264,132,0,1640,1641,5,17,0,0,1641, + 1645,5,426,0,0,1642,1643,5,387,0,0,1643,1644,5,84,0,0,1644,1646, + 5,265,0,0,1645,1642,1,0,0,0,1645,1646,1,0,0,0,1646,1649,1,0,0,0, + 1647,1648,5,150,0,0,1648,1650,3,226,113,0,1649,1647,1,0,0,0,1649, + 1650,1,0,0,0,1650,1654,1,0,0,0,1651,1652,5,154,0,0,1652,1653,5,329, + 0,0,1653,1655,3,478,239,0,1654,1651,1,0,0,0,1654,1655,1,0,0,0,1655, + 1659,1,0,0,0,1656,1657,5,238,0,0,1657,1658,5,32,0,0,1658,1660,3, + 264,132,0,1659,1656,1,0,0,0,1659,1660,1,0,0,0,1660,1665,1,0,0,0, + 1661,1663,3,222,111,0,1662,1661,1,0,0,0,1662,1663,1,0,0,0,1663,1664, + 1,0,0,0,1664,1666,3,246,123,0,1665,1662,1,0,0,0,1665,1666,1,0,0, + 0,1666,1668,1,0,0,0,1667,1669,3,424,212,0,1668,1667,1,0,0,0,1668, + 1669,1,0,0,0,1669,1671,1,0,0,0,1670,1672,3,224,112,0,1671,1670,1, + 0,0,0,1671,1672,1,0,0,0,1672,1674,1,0,0,0,1673,1675,3,196,98,0,1674, + 1673,1,0,0,0,1674,1675,1,0,0,0,1675,157,1,0,0,0,1676,1677,5,101, + 0,0,1677,1679,5,155,0,0,1678,1680,3,30,15,0,1679,1678,1,0,0,0,1679, + 1680,1,0,0,0,1680,1681,1,0,0,0,1681,1682,3,648,324,0,1682,1683,5, + 224,0,0,1683,1684,3,478,239,0,1684,159,1,0,0,0,1685,1688,5,58,0, + 0,1686,1687,5,228,0,0,1687,1689,5,278,0,0,1688,1686,1,0,0,0,1688, + 1689,1,0,0,0,1689,1690,1,0,0,0,1690,1692,5,378,0,0,1691,1693,3,32, + 16,0,1692,1691,1,0,0,0,1692,1693,1,0,0,0,1693,1694,1,0,0,0,1694, + 1699,3,484,242,0,1695,1696,5,399,0,0,1696,1697,3,304,152,0,1697, + 1698,5,400,0,0,1698,1700,1,0,0,0,1699,1695,1,0,0,0,1699,1700,1,0, + 0,0,1700,1702,1,0,0,0,1701,1703,3,196,98,0,1702,1701,1,0,0,0,1702, + 1703,1,0,0,0,1703,1705,1,0,0,0,1704,1706,3,162,81,0,1705,1704,1, + 0,0,0,1705,1706,1,0,0,0,1706,1708,1,0,0,0,1707,1709,3,224,112,0, + 1708,1707,1,0,0,0,1708,1709,1,0,0,0,1709,1710,1,0,0,0,1710,1711, + 5,17,0,0,1711,1712,3,380,190,0,1712,161,1,0,0,0,1713,1714,5,238, + 0,0,1714,1720,5,224,0,0,1715,1716,5,399,0,0,1716,1721,3,254,127, + 0,1717,1718,5,316,0,0,1718,1719,5,399,0,0,1719,1721,3,204,102,0, + 1720,1715,1,0,0,0,1720,1717,1,0,0,0,1721,1722,1,0,0,0,1722,1723, + 5,400,0,0,1723,163,1,0,0,0,1724,1727,3,166,83,0,1725,1727,3,168, + 84,0,1726,1724,1,0,0,0,1726,1725,1,0,0,0,1727,165,1,0,0,0,1728,1729, + 5,42,0,0,1729,1730,5,224,0,0,1730,1731,5,399,0,0,1731,1732,3,254, + 127,0,1732,1733,5,400,0,0,1733,167,1,0,0,0,1734,1735,3,170,85,0, + 1735,1736,3,172,86,0,1736,169,1,0,0,0,1737,1738,5,98,0,0,1738,1739, + 5,224,0,0,1739,1740,5,399,0,0,1740,1741,3,254,127,0,1741,1742,5, + 400,0,0,1742,171,1,0,0,0,1743,1744,5,315,0,0,1744,1745,5,224,0,0, + 1745,1746,5,399,0,0,1746,1747,3,254,127,0,1747,1748,5,400,0,0,1748, + 173,1,0,0,0,1749,1750,5,101,0,0,1750,1752,5,378,0,0,1751,1753,3, + 30,15,0,1752,1751,1,0,0,0,1752,1753,1,0,0,0,1753,1754,1,0,0,0,1754, + 1755,3,482,241,0,1755,175,1,0,0,0,1756,1757,5,58,0,0,1757,1758,5, + 202,0,0,1758,1760,5,378,0,0,1759,1761,3,32,16,0,1760,1759,1,0,0, + 0,1760,1761,1,0,0,0,1761,1762,1,0,0,0,1762,1764,3,484,242,0,1763, + 1765,3,38,19,0,1764,1763,1,0,0,0,1764,1765,1,0,0,0,1765,1767,1,0, + 0,0,1766,1768,3,196,98,0,1767,1766,1,0,0,0,1767,1768,1,0,0,0,1768, + 1770,1,0,0,0,1769,1771,3,162,81,0,1770,1769,1,0,0,0,1770,1771,1, + 0,0,0,1771,1773,1,0,0,0,1772,1774,3,164,82,0,1773,1772,1,0,0,0,1773, + 1774,1,0,0,0,1774,1776,1,0,0,0,1775,1777,3,222,111,0,1776,1775,1, + 0,0,0,1776,1777,1,0,0,0,1777,1779,1,0,0,0,1778,1780,3,246,123,0, + 1779,1778,1,0,0,0,1779,1780,1,0,0,0,1780,1782,1,0,0,0,1781,1783, + 3,424,212,0,1782,1781,1,0,0,0,1782,1783,1,0,0,0,1783,1785,1,0,0, + 0,1784,1786,3,224,112,0,1785,1784,1,0,0,0,1785,1786,1,0,0,0,1786, + 1787,1,0,0,0,1787,1788,5,17,0,0,1788,1789,3,380,190,0,1789,177,1, + 0,0,0,1790,1791,5,101,0,0,1791,1792,5,202,0,0,1792,1794,5,378,0, + 0,1793,1795,3,30,15,0,1794,1793,1,0,0,0,1794,1795,1,0,0,0,1795,1796, + 1,0,0,0,1796,1797,3,482,241,0,1797,179,1,0,0,0,1798,1799,5,58,0, + 0,1799,1800,5,293,0,0,1800,1801,5,258,0,0,1801,1802,3,648,324,0, + 1802,1804,3,188,94,0,1803,1805,3,190,95,0,1804,1803,1,0,0,0,1804, + 1805,1,0,0,0,1805,1807,1,0,0,0,1806,1808,3,268,134,0,1807,1806,1, + 0,0,0,1807,1808,1,0,0,0,1808,1809,1,0,0,0,1809,1810,3,192,96,0,1810, + 181,1,0,0,0,1811,1812,5,101,0,0,1812,1813,5,293,0,0,1813,1814,5, + 258,0,0,1814,1815,3,648,324,0,1815,183,1,0,0,0,1816,1817,5,9,0,0, + 1817,1818,5,293,0,0,1818,1819,5,258,0,0,1819,1820,3,648,324,0,1820, + 1821,3,186,93,0,1821,185,1,0,0,0,1822,1828,3,188,94,0,1823,1828, + 3,190,95,0,1824,1828,3,268,134,0,1825,1828,3,192,96,0,1826,1828, + 5,115,0,0,1827,1822,1,0,0,0,1827,1823,1,0,0,0,1827,1824,1,0,0,0, + 1827,1825,1,0,0,0,1827,1826,1,0,0,0,1828,187,1,0,0,0,1829,1830,5, + 59,0,0,1830,1845,5,426,0,0,1831,1833,5,111,0,0,1832,1834,5,431,0, + 0,1833,1832,1,0,0,0,1833,1834,1,0,0,0,1834,1835,1,0,0,0,1835,1842, + 3,588,294,0,1836,1840,5,20,0,0,1837,1838,5,223,0,0,1838,1840,5,32, + 0,0,1839,1836,1,0,0,0,1839,1837,1,0,0,0,1840,1841,1,0,0,0,1841,1843, + 5,426,0,0,1842,1839,1,0,0,0,1842,1843,1,0,0,0,1843,1845,1,0,0,0, + 1844,1829,1,0,0,0,1844,1831,1,0,0,0,1845,189,1,0,0,0,1846,1847,5, + 116,0,0,1847,1848,5,17,0,0,1848,1849,5,426,0,0,1849,191,1,0,0,0, + 1850,1852,5,85,0,0,1851,1850,1,0,0,0,1851,1852,1,0,0,0,1852,1853, + 1,0,0,0,1853,1854,5,17,0,0,1854,1855,3,2,1,0,1855,193,1,0,0,0,1856, + 1859,3,648,324,0,1857,1859,5,426,0,0,1858,1856,1,0,0,0,1858,1857, + 1,0,0,0,1859,195,1,0,0,0,1860,1861,5,47,0,0,1861,1862,5,426,0,0, + 1862,197,1,0,0,0,1863,1864,5,183,0,0,1864,1865,5,431,0,0,1865,199, + 1,0,0,0,1866,1867,5,238,0,0,1867,1876,5,32,0,0,1868,1871,5,399,0, + 0,1869,1872,3,202,101,0,1870,1872,3,254,127,0,1871,1869,1,0,0,0, + 1871,1870,1,0,0,0,1872,1877,1,0,0,0,1873,1874,5,316,0,0,1874,1875, + 5,399,0,0,1875,1877,3,204,102,0,1876,1868,1,0,0,0,1876,1873,1,0, + 0,0,1877,1878,1,0,0,0,1878,1879,5,400,0,0,1879,201,1,0,0,0,1880, + 1885,3,316,158,0,1881,1882,5,397,0,0,1882,1884,3,316,158,0,1883, + 1881,1,0,0,0,1884,1887,1,0,0,0,1885,1883,1,0,0,0,1885,1886,1,0,0, + 0,1886,203,1,0,0,0,1887,1885,1,0,0,0,1888,1893,3,206,103,0,1889, + 1890,5,397,0,0,1890,1892,3,206,103,0,1891,1889,1,0,0,0,1892,1895, + 1,0,0,0,1893,1891,1,0,0,0,1893,1894,1,0,0,0,1894,205,1,0,0,0,1895, + 1893,1,0,0,0,1896,1915,3,256,128,0,1897,1902,3,676,338,0,1898,1902, + 3,678,339,0,1899,1902,3,682,341,0,1900,1902,3,684,342,0,1901,1897, + 1,0,0,0,1901,1898,1,0,0,0,1901,1899,1,0,0,0,1901,1900,1,0,0,0,1902, + 1903,1,0,0,0,1903,1904,5,399,0,0,1904,1905,3,256,128,0,1905,1906, + 5,400,0,0,1906,1915,1,0,0,0,1907,1908,7,15,0,0,1908,1909,5,399,0, + 0,1909,1910,5,431,0,0,1910,1911,5,397,0,0,1911,1912,3,256,128,0, + 1912,1913,5,400,0,0,1913,1915,1,0,0,0,1914,1896,1,0,0,0,1914,1901, + 1,0,0,0,1914,1907,1,0,0,0,1915,207,1,0,0,0,1916,1917,5,42,0,0,1917, + 1918,5,32,0,0,1918,1919,5,399,0,0,1919,1920,3,254,127,0,1920,1927, + 5,400,0,0,1921,1922,5,315,0,0,1922,1923,5,32,0,0,1923,1924,5,399, + 0,0,1924,1925,3,262,131,0,1925,1926,5,400,0,0,1926,1928,1,0,0,0, + 1927,1921,1,0,0,0,1927,1928,1,0,0,0,1928,1929,1,0,0,0,1929,1930, + 5,166,0,0,1930,1931,5,431,0,0,1931,1932,5,31,0,0,1932,209,1,0,0, + 0,1933,1934,5,310,0,0,1934,1935,5,32,0,0,1935,1936,5,399,0,0,1936, + 1937,3,254,127,0,1937,1938,5,400,0,0,1938,1939,5,224,0,0,1939,1940, + 5,399,0,0,1940,1941,3,290,145,0,1941,1943,5,400,0,0,1942,1944,3, + 40,20,0,1943,1942,1,0,0,0,1943,1944,1,0,0,0,1944,211,1,0,0,0,1945, + 1948,3,218,109,0,1946,1948,3,220,110,0,1947,1945,1,0,0,0,1947,1946, + 1,0,0,0,1948,213,1,0,0,0,1949,1950,5,266,0,0,1950,1951,5,426,0,0, + 1951,215,1,0,0,0,1952,1953,5,267,0,0,1953,1954,5,426,0,0,1954,217, + 1,0,0,0,1955,1956,5,291,0,0,1956,1957,5,137,0,0,1957,1958,5,301, + 0,0,1958,1962,5,426,0,0,1959,1960,5,387,0,0,1960,1961,5,302,0,0, + 1961,1963,3,226,113,0,1962,1959,1,0,0,0,1962,1963,1,0,0,0,1963,219, + 1,0,0,0,1964,1965,5,291,0,0,1965,1966,5,137,0,0,1966,1968,5,87,0, + 0,1967,1969,3,236,118,0,1968,1967,1,0,0,0,1968,1969,1,0,0,0,1969, + 1971,1,0,0,0,1970,1972,3,238,119,0,1971,1970,1,0,0,0,1971,1972,1, + 0,0,0,1972,1974,1,0,0,0,1973,1975,3,240,120,0,1974,1973,1,0,0,0, + 1974,1975,1,0,0,0,1975,1977,1,0,0,0,1976,1978,3,242,121,0,1977,1976, + 1,0,0,0,1977,1978,1,0,0,0,1978,1980,1,0,0,0,1979,1981,3,244,122, + 0,1980,1979,1,0,0,0,1980,1981,1,0,0,0,1981,221,1,0,0,0,1982,1985, + 3,220,110,0,1983,1985,3,218,109,0,1984,1982,1,0,0,0,1984,1983,1, + 0,0,0,1985,223,1,0,0,0,1986,1987,5,332,0,0,1987,1988,3,226,113,0, + 1988,225,1,0,0,0,1989,1990,5,399,0,0,1990,1991,3,228,114,0,1991, + 1992,5,400,0,0,1992,227,1,0,0,0,1993,2003,3,232,116,0,1994,1999, + 5,426,0,0,1995,1996,5,397,0,0,1996,1998,5,426,0,0,1997,1995,1,0, + 0,0,1998,2001,1,0,0,0,1999,1997,1,0,0,0,1999,2000,1,0,0,0,2000,2003, + 1,0,0,0,2001,1999,1,0,0,0,2002,1993,1,0,0,0,2002,1994,1,0,0,0,2003, + 229,1,0,0,0,2004,2005,5,399,0,0,2005,2006,3,232,116,0,2006,2007, + 5,400,0,0,2007,231,1,0,0,0,2008,2013,3,234,117,0,2009,2010,5,397, + 0,0,2010,2012,3,234,117,0,2011,2009,1,0,0,0,2012,2015,1,0,0,0,2013, + 2011,1,0,0,0,2013,2014,1,0,0,0,2014,233,1,0,0,0,2015,2013,1,0,0, + 0,2016,2017,5,426,0,0,2017,2018,5,405,0,0,2018,2019,5,426,0,0,2019, + 235,1,0,0,0,2020,2021,5,127,0,0,2021,2022,5,334,0,0,2022,2023,5, + 32,0,0,2023,2027,5,426,0,0,2024,2025,5,110,0,0,2025,2026,5,32,0, + 0,2026,2028,5,426,0,0,2027,2024,1,0,0,0,2027,2028,1,0,0,0,2028,237, + 1,0,0,0,2029,2030,5,44,0,0,2030,2031,5,169,0,0,2031,2032,5,334,0, + 0,2032,2033,5,32,0,0,2033,2034,5,426,0,0,2034,239,1,0,0,0,2035,2036, + 5,198,0,0,2036,2037,5,174,0,0,2037,2038,5,334,0,0,2038,2039,5,32, + 0,0,2039,2040,5,426,0,0,2040,241,1,0,0,0,2041,2042,5,186,0,0,2042, + 2043,5,334,0,0,2043,2044,5,32,0,0,2044,2045,5,426,0,0,2045,243,1, + 0,0,0,2046,2047,5,219,0,0,2047,2048,5,85,0,0,2048,2049,5,17,0,0, + 2049,2050,5,426,0,0,2050,245,1,0,0,0,2051,2052,5,321,0,0,2052,2053, + 5,17,0,0,2053,2054,5,160,0,0,2054,2055,5,426,0,0,2055,2056,5,233, + 0,0,2056,2061,5,426,0,0,2057,2058,5,159,0,0,2058,2059,5,426,0,0, + 2059,2060,5,232,0,0,2060,2062,5,426,0,0,2061,2057,1,0,0,0,2061,2062, + 1,0,0,0,2062,2093,1,0,0,0,2063,2064,5,321,0,0,2064,2065,5,32,0,0, + 2065,2069,5,426,0,0,2066,2067,5,387,0,0,2067,2068,5,302,0,0,2068, + 2070,3,226,113,0,2069,2066,1,0,0,0,2069,2070,1,0,0,0,2070,2074,1, + 0,0,0,2071,2072,5,321,0,0,2072,2073,5,17,0,0,2073,2075,3,648,324, + 0,2074,2071,1,0,0,0,2074,2075,1,0,0,0,2075,2093,1,0,0,0,2076,2077, + 5,321,0,0,2077,2078,5,32,0,0,2078,2082,3,648,324,0,2079,2080,5,387, + 0,0,2080,2081,5,302,0,0,2081,2083,3,226,113,0,2082,2079,1,0,0,0, + 2082,2083,1,0,0,0,2083,2087,1,0,0,0,2084,2085,5,321,0,0,2085,2086, + 5,17,0,0,2086,2088,3,648,324,0,2087,2084,1,0,0,0,2087,2088,1,0,0, + 0,2088,2093,1,0,0,0,2089,2090,5,321,0,0,2090,2091,5,17,0,0,2091, + 2093,3,648,324,0,2092,2051,1,0,0,0,2092,2063,1,0,0,0,2092,2076,1, + 0,0,0,2092,2089,1,0,0,0,2093,247,1,0,0,0,2094,2099,3,310,155,0,2095, + 2096,5,397,0,0,2096,2098,3,310,155,0,2097,2095,1,0,0,0,2098,2101, + 1,0,0,0,2099,2097,1,0,0,0,2099,2100,1,0,0,0,2100,249,1,0,0,0,2101, + 2099,1,0,0,0,2102,2107,3,312,156,0,2103,2104,5,397,0,0,2104,2106, + 3,312,156,0,2105,2103,1,0,0,0,2106,2109,1,0,0,0,2107,2105,1,0,0, + 0,2107,2108,1,0,0,0,2108,251,1,0,0,0,2109,2107,1,0,0,0,2110,2115, + 3,340,170,0,2111,2112,5,397,0,0,2112,2114,3,340,170,0,2113,2111, + 1,0,0,0,2114,2117,1,0,0,0,2115,2113,1,0,0,0,2115,2116,1,0,0,0,2116, + 253,1,0,0,0,2117,2115,1,0,0,0,2118,2123,3,256,128,0,2119,2120,5, + 397,0,0,2120,2122,3,256,128,0,2121,2119,1,0,0,0,2122,2125,1,0,0, + 0,2123,2121,1,0,0,0,2123,2124,1,0,0,0,2124,255,1,0,0,0,2125,2123, + 1,0,0,0,2126,2129,3,692,346,0,2127,2129,4,128,0,0,2128,2126,1,0, + 0,0,2128,2127,1,0,0,0,2129,257,1,0,0,0,2130,2131,3,648,324,0,2131, + 259,1,0,0,0,2132,2142,3,256,128,0,2133,2138,5,395,0,0,2134,2139, + 5,104,0,0,2135,2139,5,175,0,0,2136,2139,5,375,0,0,2137,2139,3,648, + 324,0,2138,2134,1,0,0,0,2138,2135,1,0,0,0,2138,2136,1,0,0,0,2138, + 2137,1,0,0,0,2139,2141,1,0,0,0,2140,2133,1,0,0,0,2141,2144,1,0,0, + 0,2142,2140,1,0,0,0,2142,2143,1,0,0,0,2143,261,1,0,0,0,2144,2142, + 1,0,0,0,2145,2150,3,302,151,0,2146,2147,5,397,0,0,2147,2149,3,302, + 151,0,2148,2146,1,0,0,0,2149,2152,1,0,0,0,2150,2148,1,0,0,0,2150, + 2151,1,0,0,0,2151,263,1,0,0,0,2152,2150,1,0,0,0,2153,2154,5,399, + 0,0,2154,2155,3,254,127,0,2155,2156,5,400,0,0,2156,265,1,0,0,0,2157, + 2159,3,268,134,0,2158,2160,3,270,135,0,2159,2158,1,0,0,0,2159,2160, + 1,0,0,0,2160,2163,1,0,0,0,2161,2163,3,272,136,0,2162,2157,1,0,0, + 0,2162,2161,1,0,0,0,2163,267,1,0,0,0,2164,2167,3,672,336,0,2165, + 2167,3,674,337,0,2166,2164,1,0,0,0,2166,2165,1,0,0,0,2167,269,1, + 0,0,0,2168,2169,7,16,0,0,2169,271,1,0,0,0,2170,2174,5,109,0,0,2171, + 2172,5,216,0,0,2172,2174,5,109,0,0,2173,2170,1,0,0,0,2173,2171,1, + 0,0,0,2174,273,1,0,0,0,2175,2176,7,17,0,0,2176,275,1,0,0,0,2177, + 2178,5,55,0,0,2178,2180,3,648,324,0,2179,2177,1,0,0,0,2179,2180, + 1,0,0,0,2180,2181,1,0,0,0,2181,2183,3,280,140,0,2182,2184,3,336, + 168,0,2183,2182,1,0,0,0,2183,2184,1,0,0,0,2184,277,1,0,0,0,2185, + 2186,5,55,0,0,2186,2187,3,648,324,0,2187,2189,3,280,140,0,2188,2190, + 3,338,169,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0,2190,279,1,0,0,0, + 2191,2194,3,282,141,0,2192,2194,3,284,142,0,2193,2191,1,0,0,0,2193, + 2192,1,0,0,0,2194,281,1,0,0,0,2195,2196,3,334,167,0,2196,2197,3, + 264,132,0,2197,283,1,0,0,0,2198,2199,5,40,0,0,2199,2200,5,399,0, + 0,2200,2201,3,590,295,0,2201,2202,5,400,0,0,2202,285,1,0,0,0,2203, + 2204,5,55,0,0,2204,2206,3,648,324,0,2205,2203,1,0,0,0,2205,2206, + 1,0,0,0,2206,2207,1,0,0,0,2207,2208,5,136,0,0,2208,2209,5,173,0, + 0,2209,2210,3,264,132,0,2210,2211,5,269,0,0,2211,2212,3,478,239, + 0,2212,2214,3,264,132,0,2213,2215,3,336,168,0,2214,2213,1,0,0,0, + 2214,2215,1,0,0,0,2215,287,1,0,0,0,2216,2217,5,55,0,0,2217,2218, + 3,648,324,0,2218,2219,5,136,0,0,2219,2220,5,173,0,0,2220,2221,3, + 264,132,0,2221,2222,5,269,0,0,2222,2223,3,478,239,0,2223,2225,3, + 264,132,0,2224,2226,3,338,169,0,2225,2224,1,0,0,0,2225,2226,1,0, + 0,0,2226,289,1,0,0,0,2227,2230,3,296,148,0,2228,2230,3,292,146,0, + 2229,2227,1,0,0,0,2229,2228,1,0,0,0,2230,291,1,0,0,0,2231,2236,3, + 294,147,0,2232,2233,5,397,0,0,2233,2235,3,294,147,0,2234,2232,1, + 0,0,0,2235,2238,1,0,0,0,2236,2234,1,0,0,0,2236,2237,1,0,0,0,2237, + 293,1,0,0,0,2238,2236,1,0,0,0,2239,2240,5,399,0,0,2240,2241,3,296, + 148,0,2241,2242,5,400,0,0,2242,295,1,0,0,0,2243,2248,3,582,291,0, + 2244,2245,5,397,0,0,2245,2247,3,582,291,0,2246,2244,1,0,0,0,2247, + 2250,1,0,0,0,2248,2246,1,0,0,0,2248,2249,1,0,0,0,2249,297,1,0,0, + 0,2250,2248,1,0,0,0,2251,2252,7,18,0,0,2252,299,1,0,0,0,2253,2254, + 5,220,0,0,2254,2255,7,19,0,0,2255,301,1,0,0,0,2256,2258,3,256,128, + 0,2257,2259,3,298,149,0,2258,2257,1,0,0,0,2258,2259,1,0,0,0,2259, + 2261,1,0,0,0,2260,2262,3,300,150,0,2261,2260,1,0,0,0,2261,2262,1, + 0,0,0,2262,303,1,0,0,0,2263,2268,3,306,153,0,2264,2265,5,397,0,0, + 2265,2267,3,306,153,0,2266,2264,1,0,0,0,2267,2270,1,0,0,0,2268,2266, + 1,0,0,0,2268,2269,1,0,0,0,2269,305,1,0,0,0,2270,2268,1,0,0,0,2271, + 2274,3,258,129,0,2272,2273,5,47,0,0,2273,2275,5,426,0,0,2274,2272, + 1,0,0,0,2274,2275,1,0,0,0,2275,307,1,0,0,0,2276,2279,3,256,128,0, + 2277,2279,3,590,295,0,2278,2276,1,0,0,0,2278,2277,1,0,0,0,2279,2281, + 1,0,0,0,2280,2282,3,298,149,0,2281,2280,1,0,0,0,2281,2282,1,0,0, + 0,2282,2284,1,0,0,0,2283,2285,3,300,150,0,2284,2283,1,0,0,0,2284, + 2285,1,0,0,0,2285,309,1,0,0,0,2286,2287,3,258,129,0,2287,2290,3, + 342,171,0,2288,2289,5,47,0,0,2289,2291,5,426,0,0,2290,2288,1,0,0, + 0,2290,2291,1,0,0,0,2291,311,1,0,0,0,2292,2295,3,314,157,0,2293, + 2295,3,316,158,0,2294,2292,1,0,0,0,2294,2293,1,0,0,0,2295,313,1, + 0,0,0,2296,2299,3,286,143,0,2297,2299,3,276,138,0,2298,2296,1,0, + 0,0,2298,2297,1,0,0,0,2299,315,1,0,0,0,2300,2301,3,258,129,0,2301, + 2303,3,342,171,0,2302,2304,3,318,159,0,2303,2302,1,0,0,0,2303,2304, + 1,0,0,0,2304,2307,1,0,0,0,2305,2306,5,47,0,0,2306,2308,5,426,0,0, + 2307,2305,1,0,0,0,2307,2308,1,0,0,0,2308,317,1,0,0,0,2309,2312,3, + 320,160,0,2310,2312,3,322,161,0,2311,2309,1,0,0,0,2311,2310,1,0, + 0,0,2312,319,1,0,0,0,2313,2314,5,55,0,0,2314,2316,3,648,324,0,2315, + 2313,1,0,0,0,2315,2316,1,0,0,0,2316,2317,1,0,0,0,2317,2318,5,269, + 0,0,2318,2319,3,478,239,0,2319,2320,5,399,0,0,2320,2321,3,256,128, + 0,2321,2323,5,400,0,0,2322,2324,3,336,168,0,2323,2322,1,0,0,0,2323, + 2324,1,0,0,0,2324,321,1,0,0,0,2325,2326,5,55,0,0,2326,2328,3,648, + 324,0,2327,2325,1,0,0,0,2327,2328,1,0,0,0,2328,2329,1,0,0,0,2329, + 2331,3,330,165,0,2330,2332,3,336,168,0,2331,2330,1,0,0,0,2331,2332, + 1,0,0,0,2332,323,1,0,0,0,2333,2336,3,326,163,0,2334,2336,3,328,164, + 0,2335,2333,1,0,0,0,2335,2334,1,0,0,0,2336,325,1,0,0,0,2337,2338, + 5,55,0,0,2338,2340,3,648,324,0,2339,2337,1,0,0,0,2339,2340,1,0,0, + 0,2340,2341,1,0,0,0,2341,2342,5,269,0,0,2342,2343,3,478,239,0,2343, + 2344,5,399,0,0,2344,2345,3,256,128,0,2345,2347,5,400,0,0,2346,2348, + 3,338,169,0,2347,2346,1,0,0,0,2347,2348,1,0,0,0,2348,327,1,0,0,0, + 2349,2350,5,55,0,0,2350,2352,3,648,324,0,2351,2349,1,0,0,0,2351, + 2352,1,0,0,0,2352,2353,1,0,0,0,2353,2355,3,330,165,0,2354,2356,3, + 338,169,0,2355,2354,1,0,0,0,2355,2356,1,0,0,0,2356,329,1,0,0,0,2357, + 2358,5,216,0,0,2358,2364,5,219,0,0,2359,2360,5,83,0,0,2360,2364, + 3,332,166,0,2361,2364,3,284,142,0,2362,2364,3,334,167,0,2363,2357, + 1,0,0,0,2363,2359,1,0,0,0,2363,2361,1,0,0,0,2363,2362,1,0,0,0,2364, + 331,1,0,0,0,2365,2369,3,582,291,0,2366,2369,3,560,280,0,2367,2369, + 3,570,285,0,2368,2365,1,0,0,0,2368,2366,1,0,0,0,2368,2367,1,0,0, + 0,2369,333,1,0,0,0,2370,2371,5,251,0,0,2371,2374,5,173,0,0,2372, + 2374,5,358,0,0,2373,2370,1,0,0,0,2373,2372,1,0,0,0,2374,335,1,0, + 0,0,2375,2377,3,266,133,0,2376,2378,3,274,137,0,2377,2376,1,0,0, + 0,2377,2378,1,0,0,0,2378,337,1,0,0,0,2379,2381,3,266,133,0,2380, + 2382,3,274,137,0,2381,2380,1,0,0,0,2381,2382,1,0,0,0,2382,339,1, + 0,0,0,2383,2384,3,258,129,0,2384,2385,5,396,0,0,2385,2388,3,342, + 171,0,2386,2387,5,47,0,0,2387,2389,5,426,0,0,2388,2386,1,0,0,0,2388, + 2389,1,0,0,0,2389,341,1,0,0,0,2390,2391,3,346,173,0,2391,343,1,0, + 0,0,2392,2397,3,342,171,0,2393,2394,5,397,0,0,2394,2396,3,342,171, + 0,2395,2393,1,0,0,0,2396,2399,1,0,0,0,2397,2395,1,0,0,0,2397,2398, + 1,0,0,0,2398,345,1,0,0,0,2399,2397,1,0,0,0,2400,2406,3,348,174,0, + 2401,2406,3,350,175,0,2402,2406,3,352,176,0,2403,2406,3,354,177, + 0,2404,2406,3,356,178,0,2405,2400,1,0,0,0,2405,2401,1,0,0,0,2405, + 2402,1,0,0,0,2405,2403,1,0,0,0,2405,2404,1,0,0,0,2406,347,1,0,0, + 0,2407,2445,5,340,0,0,2408,2445,5,311,0,0,2409,2445,5,162,0,0,2410, + 2445,5,163,0,0,2411,2445,5,26,0,0,2412,2445,5,28,0,0,2413,2445,5, + 131,0,0,2414,2445,5,264,0,0,2415,2417,5,100,0,0,2416,2418,5,248, + 0,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2445,1,0,0,0,2419,2445, + 5,71,0,0,2420,2445,5,72,0,0,2421,2445,5,337,0,0,2422,2445,5,338, + 0,0,2423,2424,5,337,0,0,2424,2425,5,387,0,0,2425,2426,5,188,0,0, + 2426,2427,5,336,0,0,2427,2445,5,394,0,0,2428,2445,5,323,0,0,2429, + 2445,5,27,0,0,2430,2438,3,690,345,0,2431,2432,5,399,0,0,2432,2435, + 5,431,0,0,2433,2434,5,397,0,0,2434,2436,5,431,0,0,2435,2433,1,0, + 0,0,2435,2436,1,0,0,0,2436,2437,1,0,0,0,2437,2439,5,400,0,0,2438, + 2431,1,0,0,0,2438,2439,1,0,0,0,2439,2445,1,0,0,0,2440,2441,7,20, + 0,0,2441,2442,5,399,0,0,2442,2443,5,431,0,0,2443,2445,5,400,0,0, + 2444,2407,1,0,0,0,2444,2408,1,0,0,0,2444,2409,1,0,0,0,2444,2410, + 1,0,0,0,2444,2411,1,0,0,0,2444,2412,1,0,0,0,2444,2413,1,0,0,0,2444, + 2414,1,0,0,0,2444,2415,1,0,0,0,2444,2419,1,0,0,0,2444,2420,1,0,0, + 0,2444,2421,1,0,0,0,2444,2422,1,0,0,0,2444,2423,1,0,0,0,2444,2428, + 1,0,0,0,2444,2429,1,0,0,0,2444,2430,1,0,0,0,2444,2440,1,0,0,0,2445, + 349,1,0,0,0,2446,2447,5,16,0,0,2447,2448,5,409,0,0,2448,2449,3,346, + 173,0,2449,2450,5,411,0,0,2450,351,1,0,0,0,2451,2452,5,324,0,0,2452, + 2453,5,409,0,0,2453,2454,3,252,126,0,2454,2455,5,411,0,0,2455,353, + 1,0,0,0,2456,2457,5,198,0,0,2457,2458,5,409,0,0,2458,2459,3,348, + 174,0,2459,2460,5,397,0,0,2460,2461,3,346,173,0,2461,2462,5,411, + 0,0,2462,355,1,0,0,0,2463,2464,5,357,0,0,2464,2465,5,409,0,0,2465, + 2466,3,344,172,0,2466,2467,5,411,0,0,2467,357,1,0,0,0,2468,2470, + 7,21,0,0,2469,2471,7,22,0,0,2470,2469,1,0,0,0,2470,2471,1,0,0,0, + 2471,359,1,0,0,0,2472,2474,3,364,182,0,2473,2472,1,0,0,0,2473,2474, + 1,0,0,0,2474,2475,1,0,0,0,2475,2476,3,362,181,0,2476,361,1,0,0,0, + 2477,2480,3,368,184,0,2478,2480,3,372,186,0,2479,2477,1,0,0,0,2479, + 2478,1,0,0,0,2480,363,1,0,0,0,2481,2482,5,387,0,0,2482,2487,3,366, + 183,0,2483,2484,5,397,0,0,2484,2486,3,366,183,0,2485,2483,1,0,0, + 0,2486,2489,1,0,0,0,2487,2485,1,0,0,0,2487,2488,1,0,0,0,2488,365, + 1,0,0,0,2489,2487,1,0,0,0,2490,2495,3,648,324,0,2491,2492,5,399, + 0,0,2492,2493,3,254,127,0,2493,2494,5,400,0,0,2494,2496,1,0,0,0, + 2495,2491,1,0,0,0,2495,2496,1,0,0,0,2496,2497,1,0,0,0,2497,2498, + 5,17,0,0,2498,2499,5,399,0,0,2499,2500,3,360,180,0,2500,2501,5,400, + 0,0,2501,367,1,0,0,0,2502,2508,3,370,185,0,2503,2504,3,358,179,0, + 2504,2505,3,370,185,0,2505,2507,1,0,0,0,2506,2503,1,0,0,0,2507,2510, + 1,0,0,0,2508,2506,1,0,0,0,2508,2509,1,0,0,0,2509,369,1,0,0,0,2510, + 2508,1,0,0,0,2511,2512,3,448,224,0,2512,2513,3,382,191,0,2513,2515, + 3,504,252,0,2514,2516,3,462,231,0,2515,2514,1,0,0,0,2515,2516,1, + 0,0,0,2516,2518,1,0,0,0,2517,2519,3,496,248,0,2518,2517,1,0,0,0, + 2518,2519,1,0,0,0,2519,2521,1,0,0,0,2520,2522,3,530,265,0,2521,2520, + 1,0,0,0,2521,2522,1,0,0,0,2522,2524,1,0,0,0,2523,2525,3,538,269, + 0,2524,2523,1,0,0,0,2524,2525,1,0,0,0,2525,2527,1,0,0,0,2526,2528, + 3,522,261,0,2527,2526,1,0,0,0,2527,2528,1,0,0,0,2528,2530,1,0,0, + 0,2529,2531,3,540,270,0,2530,2529,1,0,0,0,2530,2531,1,0,0,0,2531, + 2533,1,0,0,0,2532,2534,3,552,276,0,2533,2532,1,0,0,0,2533,2534,1, + 0,0,0,2534,2536,1,0,0,0,2535,2537,3,554,277,0,2536,2535,1,0,0,0, + 2536,2537,1,0,0,0,2537,2539,1,0,0,0,2538,2540,3,556,278,0,2539,2538, + 1,0,0,0,2539,2540,1,0,0,0,2540,2542,1,0,0,0,2541,2543,3,558,279, + 0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2546, + 3,386,193,0,2545,2544,1,0,0,0,2545,2546,1,0,0,0,2546,2583,1,0,0, + 0,2547,2548,3,448,224,0,2548,2550,3,504,252,0,2549,2551,3,462,231, + 0,2550,2549,1,0,0,0,2550,2551,1,0,0,0,2551,2553,1,0,0,0,2552,2554, + 3,496,248,0,2553,2552,1,0,0,0,2553,2554,1,0,0,0,2554,2556,1,0,0, + 0,2555,2557,3,530,265,0,2556,2555,1,0,0,0,2556,2557,1,0,0,0,2557, + 2559,1,0,0,0,2558,2560,3,538,269,0,2559,2558,1,0,0,0,2559,2560,1, + 0,0,0,2560,2562,1,0,0,0,2561,2563,3,522,261,0,2562,2561,1,0,0,0, + 2562,2563,1,0,0,0,2563,2565,1,0,0,0,2564,2566,3,540,270,0,2565,2564, + 1,0,0,0,2565,2566,1,0,0,0,2566,2568,1,0,0,0,2567,2569,3,552,276, + 0,2568,2567,1,0,0,0,2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570,2572, + 3,554,277,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2574,1,0,0, + 0,2573,2575,3,556,278,0,2574,2573,1,0,0,0,2574,2575,1,0,0,0,2575, + 2577,1,0,0,0,2576,2578,3,558,279,0,2577,2576,1,0,0,0,2577,2578,1, + 0,0,0,2578,2580,1,0,0,0,2579,2581,3,386,193,0,2580,2579,1,0,0,0, + 2580,2581,1,0,0,0,2581,2583,1,0,0,0,2582,2511,1,0,0,0,2582,2547, + 1,0,0,0,2583,371,1,0,0,0,2584,2585,3,382,191,0,2585,2586,3,376,188, + 0,2586,2589,1,0,0,0,2587,2589,3,376,188,0,2588,2584,1,0,0,0,2588, + 2587,1,0,0,0,2589,373,1,0,0,0,2590,2592,3,504,252,0,2591,2593,3, + 448,224,0,2592,2591,1,0,0,0,2592,2593,1,0,0,0,2593,2595,1,0,0,0, + 2594,2596,3,496,248,0,2595,2594,1,0,0,0,2595,2596,1,0,0,0,2596,2598, + 1,0,0,0,2597,2599,3,530,265,0,2598,2597,1,0,0,0,2598,2599,1,0,0, + 0,2599,2601,1,0,0,0,2600,2602,3,538,269,0,2601,2600,1,0,0,0,2601, + 2602,1,0,0,0,2602,2604,1,0,0,0,2603,2605,3,522,261,0,2604,2603,1, + 0,0,0,2604,2605,1,0,0,0,2605,2607,1,0,0,0,2606,2608,3,540,270,0, + 2607,2606,1,0,0,0,2607,2608,1,0,0,0,2608,2615,1,0,0,0,2609,2610, + 5,399,0,0,2610,2611,3,376,188,0,2611,2612,5,400,0,0,2612,2615,1, + 0,0,0,2613,2615,3,498,249,0,2614,2590,1,0,0,0,2614,2609,1,0,0,0, + 2614,2613,1,0,0,0,2615,375,1,0,0,0,2616,2618,3,374,187,0,2617,2619, + 3,378,189,0,2618,2617,1,0,0,0,2618,2619,1,0,0,0,2619,2621,1,0,0, + 0,2620,2622,3,552,276,0,2621,2620,1,0,0,0,2621,2622,1,0,0,0,2622, + 2624,1,0,0,0,2623,2625,3,554,277,0,2624,2623,1,0,0,0,2624,2625,1, + 0,0,0,2625,2627,1,0,0,0,2626,2628,3,556,278,0,2627,2626,1,0,0,0, + 2627,2628,1,0,0,0,2628,2630,1,0,0,0,2629,2631,3,558,279,0,2630,2629, + 1,0,0,0,2630,2631,1,0,0,0,2631,2633,1,0,0,0,2632,2634,3,386,193, + 0,2633,2632,1,0,0,0,2633,2634,1,0,0,0,2634,377,1,0,0,0,2635,2636, + 3,358,179,0,2636,2637,3,374,187,0,2637,2639,1,0,0,0,2638,2635,1, + 0,0,0,2639,2640,1,0,0,0,2640,2638,1,0,0,0,2640,2641,1,0,0,0,2641, + 379,1,0,0,0,2642,2644,3,364,182,0,2643,2642,1,0,0,0,2643,2644,1, + 0,0,0,2644,2645,1,0,0,0,2645,2646,3,376,188,0,2646,381,1,0,0,0,2647, + 2664,5,161,0,0,2648,2649,5,235,0,0,2649,2651,3,384,192,0,2650,2652, + 3,32,16,0,2651,2650,1,0,0,0,2651,2652,1,0,0,0,2652,2665,1,0,0,0, + 2653,2655,5,166,0,0,2654,2656,5,329,0,0,2655,2654,1,0,0,0,2655,2656, + 1,0,0,0,2656,2657,1,0,0,0,2657,2662,3,634,317,0,2658,2659,5,399, + 0,0,2659,2660,3,254,127,0,2660,2661,5,400,0,0,2661,2663,1,0,0,0, + 2662,2658,1,0,0,0,2662,2663,1,0,0,0,2663,2665,1,0,0,0,2664,2648, + 1,0,0,0,2664,2653,1,0,0,0,2665,383,1,0,0,0,2666,2668,5,188,0,0,2667, + 2666,1,0,0,0,2667,2668,1,0,0,0,2668,2669,1,0,0,0,2669,2670,5,93, + 0,0,2670,2672,5,426,0,0,2671,2673,3,222,111,0,2672,2671,1,0,0,0, + 2672,2673,1,0,0,0,2673,2675,1,0,0,0,2674,2676,3,246,123,0,2675,2674, + 1,0,0,0,2675,2676,1,0,0,0,2676,2680,1,0,0,0,2677,2678,5,329,0,0, + 2678,2680,3,634,317,0,2679,2667,1,0,0,0,2679,2677,1,0,0,0,2680,385, + 1,0,0,0,2681,2690,5,185,0,0,2682,2683,5,431,0,0,2683,2685,5,397, + 0,0,2684,2682,1,0,0,0,2684,2685,1,0,0,0,2685,2686,1,0,0,0,2686,2691, + 5,431,0,0,2687,2688,5,431,0,0,2688,2689,5,223,0,0,2689,2691,5,431, + 0,0,2690,2684,1,0,0,0,2690,2687,1,0,0,0,2691,387,1,0,0,0,2692,2693, + 3,256,128,0,2693,2694,5,405,0,0,2694,2695,3,390,195,0,2695,389,1, + 0,0,0,2696,2699,5,83,0,0,2697,2699,3,600,300,0,2698,2696,1,0,0,0, + 2698,2697,1,0,0,0,2699,391,1,0,0,0,2700,2701,5,304,0,0,2701,2706, + 3,388,194,0,2702,2703,5,397,0,0,2703,2705,3,388,194,0,2704,2702, + 1,0,0,0,2705,2708,1,0,0,0,2706,2704,1,0,0,0,2706,2707,1,0,0,0,2707, + 393,1,0,0,0,2708,2706,1,0,0,0,2709,2710,5,318,0,0,2710,2719,5,344, + 0,0,2711,2716,3,396,198,0,2712,2713,5,397,0,0,2713,2715,3,396,198, + 0,2714,2712,1,0,0,0,2715,2718,1,0,0,0,2716,2714,1,0,0,0,2716,2717, + 1,0,0,0,2717,2720,1,0,0,0,2718,2716,1,0,0,0,2719,2711,1,0,0,0,2719, + 2720,1,0,0,0,2720,2733,1,0,0,0,2721,2723,5,48,0,0,2722,2724,5,389, + 0,0,2723,2722,1,0,0,0,2723,2724,1,0,0,0,2724,2733,1,0,0,0,2725,2727, + 5,289,0,0,2726,2728,5,389,0,0,2727,2726,1,0,0,0,2727,2728,1,0,0, + 0,2728,2733,1,0,0,0,2729,2730,5,304,0,0,2730,2731,5,22,0,0,2731, + 2733,7,23,0,0,2732,2709,1,0,0,0,2732,2721,1,0,0,0,2732,2725,1,0, + 0,0,2732,2729,1,0,0,0,2733,395,1,0,0,0,2734,2735,5,168,0,0,2735, + 2736,5,182,0,0,2736,2740,5,312,0,0,2737,2738,5,261,0,0,2738,2740, + 7,24,0,0,2739,2734,1,0,0,0,2739,2737,1,0,0,0,2740,397,1,0,0,0,2741, + 2744,3,402,201,0,2742,2744,3,404,202,0,2743,2741,1,0,0,0,2743,2742, + 1,0,0,0,2744,2747,1,0,0,0,2745,2743,1,0,0,0,2745,2746,1,0,0,0,2746, + 2749,1,0,0,0,2747,2745,1,0,0,0,2748,2750,3,400,200,0,2749,2748,1, + 0,0,0,2749,2750,1,0,0,0,2750,399,1,0,0,0,2751,2752,5,383,0,0,2752, + 2753,5,216,0,0,2753,2756,5,201,0,0,2754,2755,5,11,0,0,2755,2757, + 3,590,295,0,2756,2754,1,0,0,0,2756,2757,1,0,0,0,2757,2758,1,0,0, + 0,2758,2759,5,335,0,0,2759,2761,5,161,0,0,2760,2762,3,264,132,0, + 2761,2760,1,0,0,0,2761,2762,1,0,0,0,2762,2763,1,0,0,0,2763,2764, + 5,374,0,0,2764,2765,3,548,274,0,2765,401,1,0,0,0,2766,2767,5,383, + 0,0,2767,2768,5,201,0,0,2768,2769,5,11,0,0,2769,2770,3,590,295,0, + 2770,2774,5,335,0,0,2771,2772,5,365,0,0,2772,2775,3,392,196,0,2773, + 2775,5,86,0,0,2774,2771,1,0,0,0,2774,2773,1,0,0,0,2775,403,1,0,0, + 0,2776,2777,5,383,0,0,2777,2778,5,201,0,0,2778,2782,5,335,0,0,2779, + 2780,5,365,0,0,2780,2783,3,392,196,0,2781,2783,5,86,0,0,2782,2779, + 1,0,0,0,2782,2781,1,0,0,0,2783,405,1,0,0,0,2784,2785,5,246,0,0,2785, + 2786,5,426,0,0,2786,407,1,0,0,0,2787,2788,5,352,0,0,2788,2789,5, + 426,0,0,2789,409,1,0,0,0,2790,2791,5,320,0,0,2791,2792,5,426,0,0, + 2792,411,1,0,0,0,2793,2824,5,9,0,0,2794,2795,5,329,0,0,2795,2796, + 3,478,239,0,2796,2797,3,414,207,0,2797,2825,1,0,0,0,2798,2799,5, + 378,0,0,2799,2801,3,482,241,0,2800,2802,5,17,0,0,2801,2800,1,0,0, + 0,2801,2802,1,0,0,0,2802,2803,1,0,0,0,2803,2804,3,418,209,0,2804, + 2825,1,0,0,0,2805,2806,5,202,0,0,2806,2807,5,378,0,0,2807,2811,3, + 482,241,0,2808,2812,3,36,18,0,2809,2812,3,38,19,0,2810,2812,5,265, + 0,0,2811,2808,1,0,0,0,2811,2809,1,0,0,0,2811,2810,1,0,0,0,2812,2825, + 1,0,0,0,2813,2814,3,70,35,0,2814,2815,3,420,210,0,2815,2825,1,0, + 0,0,2816,2817,5,69,0,0,2817,2825,3,422,211,0,2818,2819,5,155,0,0, + 2819,2820,3,648,324,0,2820,2821,5,224,0,0,2821,2822,3,634,317,0, + 2822,2823,5,265,0,0,2823,2825,1,0,0,0,2824,2794,1,0,0,0,2824,2798, + 1,0,0,0,2824,2805,1,0,0,0,2824,2813,1,0,0,0,2824,2816,1,0,0,0,2824, + 2818,1,0,0,0,2825,413,1,0,0,0,2826,2827,5,274,0,0,2827,2828,5,341, + 0,0,2828,2916,3,480,240,0,2829,2830,5,102,0,0,2830,2916,5,239,0, + 0,2831,2916,3,426,213,0,2832,2834,5,4,0,0,2833,2835,3,32,16,0,2834, + 2833,1,0,0,0,2834,2835,1,0,0,0,2835,2840,1,0,0,0,2836,2838,3,636, + 318,0,2837,2839,3,424,212,0,2838,2837,1,0,0,0,2838,2839,1,0,0,0, + 2839,2841,1,0,0,0,2840,2836,1,0,0,0,2841,2842,1,0,0,0,2842,2840, + 1,0,0,0,2842,2843,1,0,0,0,2843,2916,1,0,0,0,2844,2848,5,342,0,0, + 2845,2847,3,636,318,0,2846,2845,1,0,0,0,2847,2850,1,0,0,0,2848,2846, + 1,0,0,0,2848,2849,1,0,0,0,2849,2916,1,0,0,0,2850,2848,1,0,0,0,2851, + 2855,5,15,0,0,2852,2854,3,636,318,0,2853,2852,1,0,0,0,2854,2857, + 1,0,0,0,2855,2853,1,0,0,0,2855,2856,1,0,0,0,2856,2916,1,0,0,0,2857, + 2855,1,0,0,0,2858,2862,5,353,0,0,2859,2861,3,636,318,0,2860,2859, + 1,0,0,0,2861,2864,1,0,0,0,2862,2860,1,0,0,0,2862,2863,1,0,0,0,2863, + 2916,1,0,0,0,2864,2862,1,0,0,0,2865,2866,5,304,0,0,2866,2867,5,332, + 0,0,2867,2916,3,226,113,0,2868,2869,5,363,0,0,2869,2871,5,332,0, + 0,2870,2872,3,30,15,0,2871,2870,1,0,0,0,2871,2872,1,0,0,0,2872,2873, + 1,0,0,0,2873,2916,3,226,113,0,2874,2916,3,210,105,0,2875,2878,5, + 216,0,0,2876,2879,5,310,0,0,2877,2879,3,40,20,0,2878,2876,1,0,0, + 0,2878,2877,1,0,0,0,2879,2916,1,0,0,0,2880,2881,5,113,0,0,2881,2882, + 3,636,318,0,2882,2883,5,387,0,0,2883,2884,5,329,0,0,2884,2885,3, + 478,239,0,2885,2916,1,0,0,0,2886,2887,5,237,0,0,2887,2888,5,45,0, + 0,2888,2889,5,399,0,0,2889,2890,3,310,155,0,2890,2891,5,400,0,0, + 2891,2916,1,0,0,0,2892,2893,5,101,0,0,2893,2894,5,55,0,0,2894,2916, + 3,648,324,0,2895,2898,5,4,0,0,2896,2899,3,288,144,0,2897,2899,3, + 278,139,0,2898,2896,1,0,0,0,2898,2897,1,0,0,0,2899,2916,1,0,0,0, + 2900,2902,3,636,318,0,2901,2900,1,0,0,0,2901,2902,1,0,0,0,2902,2903, + 1,0,0,0,2903,2916,3,416,208,0,2904,2905,5,304,0,0,2905,2906,5,236, + 0,0,2906,2916,3,126,63,0,2907,2908,5,304,0,0,2908,2909,5,237,0,0, + 2909,2910,5,316,0,0,2910,2911,5,399,0,0,2911,2912,3,204,102,0,2912, + 2913,5,400,0,0,2913,2916,1,0,0,0,2914,2916,3,430,215,0,2915,2826, + 1,0,0,0,2915,2829,1,0,0,0,2915,2831,1,0,0,0,2915,2832,1,0,0,0,2915, + 2844,1,0,0,0,2915,2851,1,0,0,0,2915,2858,1,0,0,0,2915,2865,1,0,0, + 0,2915,2868,1,0,0,0,2915,2874,1,0,0,0,2915,2875,1,0,0,0,2915,2880, + 1,0,0,0,2915,2886,1,0,0,0,2915,2892,1,0,0,0,2915,2895,1,0,0,0,2915, + 2901,1,0,0,0,2915,2904,1,0,0,0,2915,2907,1,0,0,0,2915,2914,1,0,0, + 0,2916,415,1,0,0,0,2917,2918,5,304,0,0,2918,2919,5,129,0,0,2919, + 3050,3,432,216,0,2920,2921,5,304,0,0,2921,2922,5,189,0,0,2922,3050, + 5,426,0,0,2923,3050,5,53,0,0,2924,2934,5,304,0,0,2925,2926,5,301, + 0,0,2926,2930,5,426,0,0,2927,2928,5,387,0,0,2928,2929,5,302,0,0, + 2929,2931,3,226,113,0,2930,2927,1,0,0,0,2930,2931,1,0,0,0,2931,2935, + 1,0,0,0,2932,2933,5,302,0,0,2933,2935,3,226,113,0,2934,2925,1,0, + 0,0,2934,2932,1,0,0,0,2935,3050,1,0,0,0,2936,2937,5,363,0,0,2937, + 2938,5,302,0,0,2938,3050,3,226,113,0,2939,2940,5,274,0,0,2940,2941, + 5,341,0,0,2941,3050,3,636,318,0,2942,2943,5,166,0,0,2943,2944,5, + 431,0,0,2944,3050,5,31,0,0,2945,2946,5,304,0,0,2946,2947,5,310,0, + 0,2947,2948,5,189,0,0,2948,2949,5,399,0,0,2949,2954,3,428,214,0, + 2950,2951,5,397,0,0,2951,2953,3,428,214,0,2952,2950,1,0,0,0,2953, + 2956,1,0,0,0,2954,2952,1,0,0,0,2954,2955,1,0,0,0,2955,2957,1,0,0, + 0,2956,2954,1,0,0,0,2957,2958,5,400,0,0,2958,3050,1,0,0,0,2959,2960, + 5,216,0,0,2960,3050,7,25,0,0,2961,3050,3,208,104,0,2962,2963,5,49, + 0,0,2963,2966,5,426,0,0,2964,2965,5,11,0,0,2965,2967,5,380,0,0,2966, + 2964,1,0,0,0,2966,2967,1,0,0,0,2967,2972,1,0,0,0,2968,2969,5,42, + 0,0,2969,2970,5,166,0,0,2970,2971,5,431,0,0,2971,2973,5,31,0,0,2972, + 2968,1,0,0,0,2972,2973,1,0,0,0,2973,2975,1,0,0,0,2974,2976,3,552, + 276,0,2975,2974,1,0,0,0,2975,2976,1,0,0,0,2976,2978,1,0,0,0,2977, + 2979,3,406,203,0,2978,2977,1,0,0,0,2978,2979,1,0,0,0,2979,2984,1, + 0,0,0,2980,2981,5,387,0,0,2981,2982,5,235,0,0,2982,2983,5,332,0, + 0,2983,2985,3,226,113,0,2984,2980,1,0,0,0,2984,2985,1,0,0,0,2985, + 3050,1,0,0,0,2986,2987,5,365,0,0,2987,2988,5,319,0,0,2988,2990,5, + 134,0,0,2989,2991,5,45,0,0,2990,2989,1,0,0,0,2990,2991,1,0,0,0,2991, + 2992,1,0,0,0,2992,2993,3,256,128,0,2993,2994,5,304,0,0,2994,2997, + 3,226,113,0,2995,2996,5,47,0,0,2996,2998,5,426,0,0,2997,2995,1,0, + 0,0,2997,2998,1,0,0,0,2998,3050,1,0,0,0,2999,3000,5,365,0,0,3000, + 3001,5,319,0,0,3001,3002,5,304,0,0,3002,3050,3,226,113,0,3003,3005, + 5,38,0,0,3004,3006,5,45,0,0,3005,3004,1,0,0,0,3005,3006,1,0,0,0, + 3006,3007,1,0,0,0,3007,3008,3,256,128,0,3008,3009,3,258,129,0,3009, + 3011,3,342,171,0,3010,3012,3,324,162,0,3011,3010,1,0,0,0,3011,3012, + 1,0,0,0,3012,3015,1,0,0,0,3013,3014,5,47,0,0,3014,3016,5,426,0,0, + 3015,3013,1,0,0,0,3015,3016,1,0,0,0,3016,3020,1,0,0,0,3017,3021, + 5,130,0,0,3018,3019,5,6,0,0,3019,3021,3,648,324,0,3020,3017,1,0, + 0,0,3020,3018,1,0,0,0,3020,3021,1,0,0,0,3021,3023,1,0,0,0,3022,3024, + 3,34,17,0,3023,3022,1,0,0,0,3023,3024,1,0,0,0,3024,3050,1,0,0,0, + 3025,3028,5,4,0,0,3026,3028,5,278,0,0,3027,3025,1,0,0,0,3027,3026, + 1,0,0,0,3028,3029,1,0,0,0,3029,3030,5,46,0,0,3030,3031,5,399,0,0, + 3031,3032,3,248,124,0,3032,3034,5,400,0,0,3033,3035,3,34,17,0,3034, + 3033,1,0,0,0,3034,3035,1,0,0,0,3035,3050,1,0,0,0,3036,3037,5,365, + 0,0,3037,3039,5,46,0,0,3038,3040,3,34,17,0,3039,3038,1,0,0,0,3039, + 3040,1,0,0,0,3040,3050,1,0,0,0,3041,3047,3,268,134,0,3042,3044,5, + 218,0,0,3043,3045,5,34,0,0,3044,3043,1,0,0,0,3044,3045,1,0,0,0,3045, + 3048,1,0,0,0,3046,3048,5,222,0,0,3047,3042,1,0,0,0,3047,3046,1,0, + 0,0,3048,3050,1,0,0,0,3049,2917,1,0,0,0,3049,2920,1,0,0,0,3049,2923, + 1,0,0,0,3049,2924,1,0,0,0,3049,2936,1,0,0,0,3049,2939,1,0,0,0,3049, + 2942,1,0,0,0,3049,2945,1,0,0,0,3049,2959,1,0,0,0,3049,2961,1,0,0, + 0,3049,2962,1,0,0,0,3049,2986,1,0,0,0,3049,2999,1,0,0,0,3049,3003, + 1,0,0,0,3049,3027,1,0,0,0,3049,3036,1,0,0,0,3049,3041,1,0,0,0,3050, + 417,1,0,0,0,3051,3052,5,304,0,0,3052,3053,5,332,0,0,3053,3078,3, + 226,113,0,3054,3055,5,363,0,0,3055,3057,5,332,0,0,3056,3058,3,30, + 15,0,3057,3056,1,0,0,0,3057,3058,1,0,0,0,3058,3059,1,0,0,0,3059, + 3078,3,226,113,0,3060,3061,5,274,0,0,3061,3062,5,341,0,0,3062,3078, + 3,480,240,0,3063,3065,5,4,0,0,3064,3066,3,32,16,0,3065,3064,1,0, + 0,0,3065,3066,1,0,0,0,3066,3071,1,0,0,0,3067,3069,3,636,318,0,3068, + 3070,3,424,212,0,3069,3068,1,0,0,0,3069,3070,1,0,0,0,3070,3072,1, + 0,0,0,3071,3067,1,0,0,0,3072,3073,1,0,0,0,3073,3071,1,0,0,0,3073, + 3074,1,0,0,0,3074,3078,1,0,0,0,3075,3078,3,426,213,0,3076,3078,3, + 380,190,0,3077,3051,1,0,0,0,3077,3054,1,0,0,0,3077,3060,1,0,0,0, + 3077,3063,1,0,0,0,3077,3075,1,0,0,0,3077,3076,1,0,0,0,3078,419,1, + 0,0,0,3079,3080,3,472,236,0,3080,3081,5,304,0,0,3081,3082,5,76,0, + 0,3082,3083,3,230,115,0,3083,3095,1,0,0,0,3084,3085,3,472,236,0, + 3085,3086,5,304,0,0,3086,3087,5,236,0,0,3087,3088,3,128,64,0,3088, + 3095,1,0,0,0,3089,3090,3,472,236,0,3090,3091,5,304,0,0,3091,3092, + 7,26,0,0,3092,3093,5,426,0,0,3093,3095,1,0,0,0,3094,3079,1,0,0,0, + 3094,3084,1,0,0,0,3094,3089,1,0,0,0,3095,421,1,0,0,0,3096,3097,3, + 472,236,0,3097,3098,5,304,0,0,3098,3099,5,77,0,0,3099,3100,3,230, + 115,0,3100,3112,1,0,0,0,3101,3102,3,472,236,0,3102,3103,5,304,0, + 0,3103,3104,5,236,0,0,3104,3105,3,128,64,0,3105,3112,1,0,0,0,3106, + 3107,3,472,236,0,3107,3108,5,304,0,0,3108,3109,5,367,0,0,3109,3110, + 5,426,0,0,3110,3112,1,0,0,0,3111,3096,1,0,0,0,3111,3101,1,0,0,0, + 3111,3106,1,0,0,0,3112,423,1,0,0,0,3113,3114,5,189,0,0,3114,3115, + 5,426,0,0,3115,425,1,0,0,0,3116,3118,5,101,0,0,3117,3119,3,30,15, + 0,3118,3117,1,0,0,0,3118,3119,1,0,0,0,3119,3120,1,0,0,0,3120,3121, + 5,237,0,0,3121,3127,3,640,320,0,3122,3123,5,397,0,0,3123,3124,5, + 237,0,0,3124,3126,3,640,320,0,3125,3122,1,0,0,0,3126,3129,1,0,0, + 0,3127,3125,1,0,0,0,3127,3128,1,0,0,0,3128,3132,1,0,0,0,3129,3127, + 1,0,0,0,3130,3131,5,152,0,0,3131,3133,5,254,0,0,3132,3130,1,0,0, + 0,3132,3133,1,0,0,0,3133,3135,1,0,0,0,3134,3136,5,255,0,0,3135,3134, + 1,0,0,0,3135,3136,1,0,0,0,3136,3138,1,0,0,0,3137,3139,3,14,7,0,3138, + 3137,1,0,0,0,3138,3139,1,0,0,0,3139,427,1,0,0,0,3140,3143,3,582, + 291,0,3141,3143,3,294,147,0,3142,3140,1,0,0,0,3142,3141,1,0,0,0, + 3143,3144,1,0,0,0,3144,3145,5,405,0,0,3145,3146,5,426,0,0,3146,429, + 1,0,0,0,3147,3157,5,115,0,0,3148,3149,5,289,0,0,3149,3150,5,399, + 0,0,3150,3158,7,27,0,0,3151,3152,5,118,0,0,3152,3153,5,399,0,0,3153, + 3158,5,426,0,0,3154,3155,5,306,0,0,3155,3156,5,399,0,0,3156,3158, + 5,431,0,0,3157,3148,1,0,0,0,3157,3151,1,0,0,0,3157,3154,1,0,0,0, + 3158,3159,1,0,0,0,3159,3160,5,400,0,0,3160,431,1,0,0,0,3161,3162, + 5,160,0,0,3162,3163,5,426,0,0,3163,3164,5,233,0,0,3164,3165,5,426, + 0,0,3165,3166,5,301,0,0,3166,3171,5,426,0,0,3167,3168,5,159,0,0, + 3168,3169,5,426,0,0,3169,3170,5,232,0,0,3170,3172,5,426,0,0,3171, + 3167,1,0,0,0,3171,3172,1,0,0,0,3172,3175,1,0,0,0,3173,3175,3,648, + 324,0,3174,3161,1,0,0,0,3174,3173,1,0,0,0,3175,433,1,0,0,0,3176, + 3177,5,184,0,0,3177,3186,5,128,0,0,3178,3179,5,184,0,0,3179,3180, + 5,128,0,0,3180,3181,3,648,324,0,3181,3182,5,426,0,0,3182,3186,1, + 0,0,0,3183,3184,5,184,0,0,3184,3186,3,478,239,0,3185,3176,1,0,0, + 0,3185,3178,1,0,0,0,3185,3183,1,0,0,0,3186,435,1,0,0,0,3187,3189, + 5,58,0,0,3188,3190,5,333,0,0,3189,3188,1,0,0,0,3189,3190,1,0,0,0, + 3190,3192,1,0,0,0,3191,3193,5,345,0,0,3192,3191,1,0,0,0,3192,3193, + 1,0,0,0,3193,3195,1,0,0,0,3194,3196,5,123,0,0,3195,3194,1,0,0,0, + 3195,3196,1,0,0,0,3196,3197,1,0,0,0,3197,3199,5,329,0,0,3198,3200, + 3,32,16,0,3199,3198,1,0,0,0,3199,3200,1,0,0,0,3200,3201,1,0,0,0, + 3201,3258,3,480,240,0,3202,3204,3,434,217,0,3203,3205,3,200,100, + 0,3204,3203,1,0,0,0,3204,3205,1,0,0,0,3205,3207,1,0,0,0,3206,3208, + 3,222,111,0,3207,3206,1,0,0,0,3207,3208,1,0,0,0,3208,3210,1,0,0, + 0,3209,3211,3,246,123,0,3210,3209,1,0,0,0,3210,3211,1,0,0,0,3211, + 3213,1,0,0,0,3212,3214,3,424,212,0,3213,3212,1,0,0,0,3213,3214,1, + 0,0,0,3214,3216,1,0,0,0,3215,3217,3,224,112,0,3216,3215,1,0,0,0, + 3216,3217,1,0,0,0,3217,3219,1,0,0,0,3218,3220,3,198,99,0,3219,3218, + 1,0,0,0,3219,3220,1,0,0,0,3220,3259,1,0,0,0,3221,3222,5,399,0,0, + 3222,3223,3,250,125,0,3223,3224,5,400,0,0,3224,3226,1,0,0,0,3225, + 3221,1,0,0,0,3225,3226,1,0,0,0,3226,3228,1,0,0,0,3227,3229,3,196, + 98,0,3228,3227,1,0,0,0,3228,3229,1,0,0,0,3229,3231,1,0,0,0,3230, + 3232,3,200,100,0,3231,3230,1,0,0,0,3231,3232,1,0,0,0,3232,3234,1, + 0,0,0,3233,3235,3,208,104,0,3234,3233,1,0,0,0,3234,3235,1,0,0,0, + 3235,3237,1,0,0,0,3236,3238,3,210,105,0,3237,3236,1,0,0,0,3237,3238, + 1,0,0,0,3238,3240,1,0,0,0,3239,3241,3,222,111,0,3240,3239,1,0,0, + 0,3240,3241,1,0,0,0,3241,3243,1,0,0,0,3242,3244,3,246,123,0,3243, + 3242,1,0,0,0,3243,3244,1,0,0,0,3244,3246,1,0,0,0,3245,3247,3,424, + 212,0,3246,3245,1,0,0,0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248, + 3250,3,224,112,0,3249,3248,1,0,0,0,3249,3250,1,0,0,0,3250,3252,1, + 0,0,0,3251,3253,3,198,99,0,3252,3251,1,0,0,0,3252,3253,1,0,0,0,3253, + 3256,1,0,0,0,3254,3255,5,17,0,0,3255,3257,3,380,190,0,3256,3254, + 1,0,0,0,3256,3257,1,0,0,0,3257,3259,1,0,0,0,3258,3202,1,0,0,0,3258, + 3225,1,0,0,0,3259,3323,1,0,0,0,3260,3261,5,58,0,0,3261,3262,5,195, + 0,0,3262,3264,5,329,0,0,3263,3265,3,32,16,0,3264,3263,1,0,0,0,3264, + 3265,1,0,0,0,3265,3266,1,0,0,0,3266,3320,3,480,240,0,3267,3269,3, + 434,217,0,3268,3270,3,222,111,0,3269,3268,1,0,0,0,3269,3270,1,0, + 0,0,3270,3272,1,0,0,0,3271,3273,3,246,123,0,3272,3271,1,0,0,0,3272, + 3273,1,0,0,0,3273,3275,1,0,0,0,3274,3276,3,424,212,0,3275,3274,1, + 0,0,0,3275,3276,1,0,0,0,3276,3278,1,0,0,0,3277,3279,3,224,112,0, + 3278,3277,1,0,0,0,3278,3279,1,0,0,0,3279,3281,1,0,0,0,3280,3282, + 3,198,99,0,3281,3280,1,0,0,0,3281,3282,1,0,0,0,3282,3321,1,0,0,0, + 3283,3284,5,399,0,0,3284,3285,3,250,125,0,3285,3286,5,400,0,0,3286, + 3288,1,0,0,0,3287,3283,1,0,0,0,3287,3288,1,0,0,0,3288,3290,1,0,0, + 0,3289,3291,3,196,98,0,3290,3289,1,0,0,0,3290,3291,1,0,0,0,3291, + 3293,1,0,0,0,3292,3294,3,200,100,0,3293,3292,1,0,0,0,3293,3294,1, + 0,0,0,3294,3296,1,0,0,0,3295,3297,3,208,104,0,3296,3295,1,0,0,0, + 3296,3297,1,0,0,0,3297,3299,1,0,0,0,3298,3300,3,210,105,0,3299,3298, + 1,0,0,0,3299,3300,1,0,0,0,3300,3302,1,0,0,0,3301,3303,3,222,111, + 0,3302,3301,1,0,0,0,3302,3303,1,0,0,0,3303,3305,1,0,0,0,3304,3306, + 3,246,123,0,3305,3304,1,0,0,0,3305,3306,1,0,0,0,3306,3308,1,0,0, + 0,3307,3309,3,424,212,0,3308,3307,1,0,0,0,3308,3309,1,0,0,0,3309, + 3311,1,0,0,0,3310,3312,3,224,112,0,3311,3310,1,0,0,0,3311,3312,1, + 0,0,0,3312,3314,1,0,0,0,3313,3315,3,198,99,0,3314,3313,1,0,0,0,3314, + 3315,1,0,0,0,3315,3318,1,0,0,0,3316,3317,5,17,0,0,3317,3319,3,380, + 190,0,3318,3316,1,0,0,0,3318,3319,1,0,0,0,3319,3321,1,0,0,0,3320, + 3267,1,0,0,0,3320,3287,1,0,0,0,3321,3323,1,0,0,0,3322,3187,1,0,0, + 0,3322,3260,1,0,0,0,3323,437,1,0,0,0,3324,3325,5,58,0,0,3325,3327, + 5,69,0,0,3326,3328,3,32,16,0,3327,3326,1,0,0,0,3327,3328,1,0,0,0, + 3328,3329,1,0,0,0,3329,3332,3,648,324,0,3330,3331,5,352,0,0,3331, + 3333,5,426,0,0,3332,3330,1,0,0,0,3332,3333,1,0,0,0,3333,3336,1,0, + 0,0,3334,3335,5,367,0,0,3335,3337,5,426,0,0,3336,3334,1,0,0,0,3336, + 3337,1,0,0,0,3337,3340,1,0,0,0,3338,3339,5,47,0,0,3339,3341,5,426, + 0,0,3340,3338,1,0,0,0,3340,3341,1,0,0,0,3341,3345,1,0,0,0,3342,3343, + 5,387,0,0,3343,3344,5,77,0,0,3344,3346,3,230,115,0,3345,3342,1,0, + 0,0,3345,3346,1,0,0,0,3346,439,1,0,0,0,3347,3348,5,101,0,0,3348, + 3350,5,69,0,0,3349,3351,3,30,15,0,3350,3349,1,0,0,0,3350,3351,1, + 0,0,0,3351,3352,1,0,0,0,3352,3353,3,648,324,0,3353,441,1,0,0,0,3354, + 3355,3,648,324,0,3355,3356,5,395,0,0,3356,3358,1,0,0,0,3357,3354, + 1,0,0,0,3358,3361,1,0,0,0,3359,3357,1,0,0,0,3359,3360,1,0,0,0,3360, + 3362,1,0,0,0,3361,3359,1,0,0,0,3362,3363,5,415,0,0,3363,443,1,0, + 0,0,3364,3369,3,590,295,0,3365,3366,5,397,0,0,3366,3368,3,590,295, + 0,3367,3365,1,0,0,0,3368,3371,1,0,0,0,3369,3367,1,0,0,0,3369,3370, + 1,0,0,0,3370,445,1,0,0,0,3371,3369,1,0,0,0,3372,3377,3,648,324,0, + 3373,3374,5,397,0,0,3374,3376,3,648,324,0,3375,3373,1,0,0,0,3376, + 3379,1,0,0,0,3377,3375,1,0,0,0,3377,3378,1,0,0,0,3378,447,1,0,0, + 0,3379,3377,1,0,0,0,3380,3381,5,139,0,0,3381,3382,3,450,225,0,3382, + 449,1,0,0,0,3383,3384,5,359,0,0,3384,3387,3,458,229,0,3385,3386, + 5,397,0,0,3386,3388,3,458,229,0,3387,3385,1,0,0,0,3388,3389,1,0, + 0,0,3389,3387,1,0,0,0,3389,3390,1,0,0,0,3390,3393,1,0,0,0,3391,3393, + 3,454,227,0,3392,3383,1,0,0,0,3392,3391,1,0,0,0,3393,451,1,0,0,0, + 3394,3398,3,468,234,0,3395,3397,3,462,231,0,3396,3395,1,0,0,0,3397, + 3400,1,0,0,0,3398,3396,1,0,0,0,3398,3399,1,0,0,0,3399,3427,1,0,0, + 0,3400,3398,1,0,0,0,3401,3405,3,502,251,0,3402,3404,3,462,231,0, + 3403,3402,1,0,0,0,3404,3407,1,0,0,0,3405,3403,1,0,0,0,3405,3406, + 1,0,0,0,3406,3427,1,0,0,0,3407,3405,1,0,0,0,3408,3412,3,486,243, + 0,3409,3411,3,462,231,0,3410,3409,1,0,0,0,3411,3414,1,0,0,0,3412, + 3410,1,0,0,0,3412,3413,1,0,0,0,3413,3427,1,0,0,0,3414,3412,1,0,0, + 0,3415,3419,3,492,246,0,3416,3418,3,462,231,0,3417,3416,1,0,0,0, + 3418,3421,1,0,0,0,3419,3417,1,0,0,0,3419,3420,1,0,0,0,3420,3427, + 1,0,0,0,3421,3419,1,0,0,0,3422,3423,5,399,0,0,3423,3424,3,454,227, + 0,3424,3425,5,400,0,0,3425,3427,1,0,0,0,3426,3394,1,0,0,0,3426,3401, + 1,0,0,0,3426,3408,1,0,0,0,3426,3415,1,0,0,0,3426,3422,1,0,0,0,3427, + 453,1,0,0,0,3428,3439,3,452,226,0,3429,3430,3,460,230,0,3430,3435, + 3,456,228,0,3431,3432,5,224,0,0,3432,3436,3,590,295,0,3433,3434, + 5,370,0,0,3434,3436,3,264,132,0,3435,3431,1,0,0,0,3435,3433,1,0, + 0,0,3435,3436,1,0,0,0,3436,3438,1,0,0,0,3437,3429,1,0,0,0,3438,3441, + 1,0,0,0,3439,3437,1,0,0,0,3439,3440,1,0,0,0,3440,455,1,0,0,0,3441, + 3439,1,0,0,0,3442,3447,3,468,234,0,3443,3447,3,502,251,0,3444,3447, + 3,486,243,0,3445,3447,3,492,246,0,3446,3442,1,0,0,0,3446,3443,1, + 0,0,0,3446,3444,1,0,0,0,3446,3445,1,0,0,0,3447,3451,1,0,0,0,3448, + 3450,3,462,231,0,3449,3448,1,0,0,0,3450,3453,1,0,0,0,3451,3449,1, + 0,0,0,3451,3452,1,0,0,0,3452,457,1,0,0,0,3453,3451,1,0,0,0,3454, + 3456,5,250,0,0,3455,3454,1,0,0,0,3455,3456,1,0,0,0,3456,3457,1,0, + 0,0,3457,3459,3,476,238,0,3458,3460,3,466,233,0,3459,3458,1,0,0, + 0,3459,3460,1,0,0,0,3460,3465,1,0,0,0,3461,3463,5,17,0,0,3462,3461, + 1,0,0,0,3462,3463,1,0,0,0,3463,3464,1,0,0,0,3464,3466,3,648,324, + 0,3465,3462,1,0,0,0,3465,3466,1,0,0,0,3466,3467,1,0,0,0,3467,3468, + 5,399,0,0,3468,3469,3,444,222,0,3469,3470,5,400,0,0,3470,459,1,0, + 0,0,3471,3486,5,397,0,0,3472,3483,5,157,0,0,3473,3483,5,60,0,0,3474, + 3476,7,28,0,0,3475,3477,5,231,0,0,3476,3475,1,0,0,0,3476,3477,1, + 0,0,0,3477,3483,1,0,0,0,3478,3480,5,180,0,0,3479,3481,7,29,0,0,3480, + 3479,1,0,0,0,3480,3481,1,0,0,0,3481,3483,1,0,0,0,3482,3472,1,0,0, + 0,3482,3473,1,0,0,0,3482,3474,1,0,0,0,3482,3478,1,0,0,0,3482,3483, + 1,0,0,0,3483,3484,1,0,0,0,3484,3486,5,171,0,0,3485,3471,1,0,0,0, + 3485,3482,1,0,0,0,3486,461,1,0,0,0,3487,3488,5,178,0,0,3488,3489, + 5,378,0,0,3489,3490,5,231,0,0,3490,3491,3,560,280,0,3491,3501,3, + 464,232,0,3492,3493,5,17,0,0,3493,3498,3,648,324,0,3494,3495,5,397, + 0,0,3495,3497,3,648,324,0,3496,3494,1,0,0,0,3497,3500,1,0,0,0,3498, + 3496,1,0,0,0,3498,3499,1,0,0,0,3499,3502,1,0,0,0,3500,3498,1,0,0, + 0,3501,3492,1,0,0,0,3501,3502,1,0,0,0,3502,3545,1,0,0,0,3503,3505, + 5,397,0,0,3504,3503,1,0,0,0,3504,3505,1,0,0,0,3505,3506,1,0,0,0, + 3506,3542,5,178,0,0,3507,3508,5,378,0,0,3508,3509,3,560,280,0,3509, + 3519,3,464,232,0,3510,3511,5,17,0,0,3511,3516,3,648,324,0,3512,3513, + 5,397,0,0,3513,3515,3,648,324,0,3514,3512,1,0,0,0,3515,3518,1,0, + 0,0,3516,3514,1,0,0,0,3516,3517,1,0,0,0,3517,3520,1,0,0,0,3518,3516, + 1,0,0,0,3519,3510,1,0,0,0,3519,3520,1,0,0,0,3520,3543,1,0,0,0,3521, + 3522,5,329,0,0,3522,3523,5,399,0,0,3523,3524,3,498,249,0,3524,3526, + 5,400,0,0,3525,3527,5,17,0,0,3526,3525,1,0,0,0,3526,3527,1,0,0,0, + 3527,3528,1,0,0,0,3528,3540,3,464,232,0,3529,3530,5,399,0,0,3530, + 3535,3,648,324,0,3531,3532,5,397,0,0,3532,3534,3,648,324,0,3533, + 3531,1,0,0,0,3534,3537,1,0,0,0,3535,3533,1,0,0,0,3535,3536,1,0,0, + 0,3536,3538,1,0,0,0,3537,3535,1,0,0,0,3538,3539,5,400,0,0,3539,3541, + 1,0,0,0,3540,3529,1,0,0,0,3540,3541,1,0,0,0,3541,3543,1,0,0,0,3542, + 3507,1,0,0,0,3542,3521,1,0,0,0,3543,3545,1,0,0,0,3544,3487,1,0,0, + 0,3544,3504,1,0,0,0,3545,463,1,0,0,0,3546,3547,3,648,324,0,3547, + 465,1,0,0,0,3548,3549,5,331,0,0,3549,3550,5,399,0,0,3550,3551,5, + 30,0,0,3551,3552,5,431,0,0,3552,3553,5,230,0,0,3553,3554,5,221,0, + 0,3554,3564,5,431,0,0,3555,3556,5,224,0,0,3556,3561,3,590,295,0, + 3557,3558,5,397,0,0,3558,3560,3,590,295,0,3559,3557,1,0,0,0,3560, + 3563,1,0,0,0,3561,3559,1,0,0,0,3561,3562,1,0,0,0,3562,3565,1,0,0, + 0,3563,3561,1,0,0,0,3564,3555,1,0,0,0,3564,3565,1,0,0,0,3565,3566, + 1,0,0,0,3566,3576,5,400,0,0,3567,3568,5,331,0,0,3568,3572,5,399, + 0,0,3569,3570,5,431,0,0,3570,3573,7,30,0,0,3571,3573,5,430,0,0,3572, + 3569,1,0,0,0,3572,3571,1,0,0,0,3573,3574,1,0,0,0,3574,3576,5,400, + 0,0,3575,3548,1,0,0,0,3575,3567,1,0,0,0,3576,467,1,0,0,0,3577,3579, + 3,476,238,0,3578,3580,3,226,113,0,3579,3578,1,0,0,0,3579,3580,1, + 0,0,0,3580,3582,1,0,0,0,3581,3583,3,466,233,0,3582,3581,1,0,0,0, + 3582,3583,1,0,0,0,3583,3585,1,0,0,0,3584,3586,3,470,235,0,3585,3584, + 1,0,0,0,3585,3586,1,0,0,0,3586,3591,1,0,0,0,3587,3589,5,17,0,0,3588, + 3587,1,0,0,0,3588,3589,1,0,0,0,3589,3590,1,0,0,0,3590,3592,3,648, + 324,0,3591,3588,1,0,0,0,3591,3592,1,0,0,0,3592,469,1,0,0,0,3593, + 3603,5,134,0,0,3594,3595,5,327,0,0,3595,3596,5,17,0,0,3596,3597, + 5,221,0,0,3597,3604,3,590,295,0,3598,3599,5,134,0,0,3599,3600,5, + 328,0,0,3600,3601,5,17,0,0,3601,3602,5,221,0,0,3602,3604,5,431,0, + 0,3603,3594,1,0,0,0,3603,3598,1,0,0,0,3604,471,1,0,0,0,3605,3606, + 3,648,324,0,3606,473,1,0,0,0,3607,3608,3,648,324,0,3608,475,1,0, + 0,0,3609,3612,3,478,239,0,3610,3612,3,482,241,0,3611,3609,1,0,0, + 0,3611,3610,1,0,0,0,3612,477,1,0,0,0,3613,3614,3,648,324,0,3614, + 3615,5,395,0,0,3615,3618,3,648,324,0,3616,3617,5,395,0,0,3617,3619, + 3,648,324,0,3618,3616,1,0,0,0,3618,3619,1,0,0,0,3619,3622,1,0,0, + 0,3620,3622,3,648,324,0,3621,3613,1,0,0,0,3621,3620,1,0,0,0,3622, + 479,1,0,0,0,3623,3624,3,648,324,0,3624,3625,5,395,0,0,3625,3628, + 3,648,324,0,3626,3627,5,395,0,0,3627,3629,3,648,324,0,3628,3626, + 1,0,0,0,3628,3629,1,0,0,0,3629,3632,1,0,0,0,3630,3632,3,648,324, + 0,3631,3623,1,0,0,0,3631,3630,1,0,0,0,3632,481,1,0,0,0,3633,3634, + 3,648,324,0,3634,3635,5,395,0,0,3635,3637,1,0,0,0,3636,3633,1,0, + 0,0,3636,3637,1,0,0,0,3637,3638,1,0,0,0,3638,3639,3,648,324,0,3639, + 483,1,0,0,0,3640,3641,3,648,324,0,3641,3642,5,395,0,0,3642,3644, + 1,0,0,0,3643,3640,1,0,0,0,3643,3644,1,0,0,0,3644,3645,1,0,0,0,3645, + 3646,3,648,324,0,3646,485,1,0,0,0,3647,3648,5,399,0,0,3648,3649, + 3,360,180,0,3649,3651,5,400,0,0,3650,3652,5,17,0,0,3651,3650,1,0, + 0,0,3651,3652,1,0,0,0,3652,3653,1,0,0,0,3653,3654,3,648,324,0,3654, + 487,1,0,0,0,3655,3656,5,237,0,0,3656,3657,5,32,0,0,3657,3659,3,546, + 273,0,3658,3660,3,552,276,0,3659,3658,1,0,0,0,3659,3660,1,0,0,0, + 3660,3669,1,0,0,0,3661,3669,3,552,276,0,3662,3664,3,556,278,0,3663, + 3665,3,558,279,0,3664,3663,1,0,0,0,3664,3665,1,0,0,0,3665,3669,1, + 0,0,0,3666,3669,3,558,279,0,3667,3669,3,554,277,0,3668,3655,1,0, + 0,0,3668,3661,1,0,0,0,3668,3662,1,0,0,0,3668,3666,1,0,0,0,3668,3667, + 1,0,0,0,3669,489,1,0,0,0,3670,3674,3,486,243,0,3671,3674,3,468,234, + 0,3672,3674,3,492,246,0,3673,3670,1,0,0,0,3673,3671,1,0,0,0,3673, + 3672,1,0,0,0,3674,491,1,0,0,0,3675,3677,3,494,247,0,3676,3678,3, + 648,324,0,3677,3676,1,0,0,0,3677,3678,1,0,0,0,3678,493,1,0,0,0,3679, + 3680,3,648,324,0,3680,3681,5,399,0,0,3681,3682,5,224,0,0,3682,3684, + 3,490,245,0,3683,3685,3,488,244,0,3684,3683,1,0,0,0,3684,3685,1, + 0,0,0,3685,3701,1,0,0,0,3686,3687,5,432,0,0,3687,3688,5,399,0,0, + 3688,3689,3,590,295,0,3689,3698,5,400,0,0,3690,3691,5,397,0,0,3691, + 3692,5,432,0,0,3692,3693,5,399,0,0,3693,3694,3,590,295,0,3694,3695, + 5,400,0,0,3695,3697,1,0,0,0,3696,3690,1,0,0,0,3697,3700,1,0,0,0, + 3698,3696,1,0,0,0,3698,3699,1,0,0,0,3699,3702,1,0,0,0,3700,3698, + 1,0,0,0,3701,3686,1,0,0,0,3701,3702,1,0,0,0,3702,3703,1,0,0,0,3703, + 3704,5,400,0,0,3704,495,1,0,0,0,3705,3706,5,384,0,0,3706,3707,3, + 590,295,0,3707,497,1,0,0,0,3708,3727,5,374,0,0,3709,3714,3,548,274, + 0,3710,3711,5,397,0,0,3711,3713,3,548,274,0,3712,3710,1,0,0,0,3713, + 3716,1,0,0,0,3714,3712,1,0,0,0,3714,3715,1,0,0,0,3715,3728,1,0,0, + 0,3716,3714,1,0,0,0,3717,3718,5,399,0,0,3718,3719,3,544,272,0,3719, + 3724,5,400,0,0,3720,3721,5,397,0,0,3721,3723,3,548,274,0,3722,3720, + 1,0,0,0,3723,3726,1,0,0,0,3724,3722,1,0,0,0,3724,3725,1,0,0,0,3725, + 3728,1,0,0,0,3726,3724,1,0,0,0,3727,3709,1,0,0,0,3727,3717,1,0,0, + 0,3728,499,1,0,0,0,3729,3730,5,329,0,0,3730,3731,5,399,0,0,3731, + 3732,3,498,249,0,3732,3733,5,400,0,0,3733,501,1,0,0,0,3734,3736, + 3,500,250,0,3735,3737,5,17,0,0,3736,3735,1,0,0,0,3736,3737,1,0,0, + 0,3737,3738,1,0,0,0,3738,3748,3,464,232,0,3739,3740,5,399,0,0,3740, + 3745,3,648,324,0,3741,3742,5,397,0,0,3742,3744,3,648,324,0,3743, + 3741,1,0,0,0,3744,3747,1,0,0,0,3745,3743,1,0,0,0,3745,3746,1,0,0, + 0,3746,3749,1,0,0,0,3747,3745,1,0,0,0,3748,3739,1,0,0,0,3748,3749, + 1,0,0,0,3749,3750,1,0,0,0,3750,3751,5,400,0,0,3751,503,1,0,0,0,3752, + 3754,5,299,0,0,3753,3755,5,436,0,0,3754,3753,1,0,0,0,3754,3755,1, + 0,0,0,3755,3762,1,0,0,0,3756,3758,7,22,0,0,3757,3756,1,0,0,0,3757, + 3758,1,0,0,0,3758,3759,1,0,0,0,3759,3763,3,508,254,0,3760,3761,5, + 347,0,0,3761,3763,3,506,253,0,3762,3757,1,0,0,0,3762,3760,1,0,0, + 0,3763,3766,1,0,0,0,3764,3766,3,516,258,0,3765,3752,1,0,0,0,3765, + 3764,1,0,0,0,3766,505,1,0,0,0,3767,3768,5,399,0,0,3768,3769,3,520, + 260,0,3769,3770,5,400,0,0,3770,3771,3,212,106,0,3771,3772,3,216, + 108,0,3772,3773,5,370,0,0,3773,3786,5,426,0,0,3774,3784,5,17,0,0, + 3775,3778,5,399,0,0,3776,3779,3,446,223,0,3777,3779,3,248,124,0, + 3778,3776,1,0,0,0,3778,3777,1,0,0,0,3779,3780,1,0,0,0,3780,3781, + 5,400,0,0,3781,3785,1,0,0,0,3782,3785,3,446,223,0,3783,3785,3,248, + 124,0,3784,3775,1,0,0,0,3784,3782,1,0,0,0,3784,3783,1,0,0,0,3785, + 3787,1,0,0,0,3786,3774,1,0,0,0,3786,3787,1,0,0,0,3787,3788,1,0,0, + 0,3788,3789,3,212,106,0,3789,3790,3,214,107,0,3790,507,1,0,0,0,3791, + 3796,3,510,255,0,3792,3793,5,397,0,0,3793,3795,3,510,255,0,3794, + 3792,1,0,0,0,3795,3798,1,0,0,0,3796,3794,1,0,0,0,3796,3797,1,0,0, + 0,3797,509,1,0,0,0,3798,3796,1,0,0,0,3799,3823,3,442,221,0,3800, + 3803,3,512,256,0,3801,3803,3,514,257,0,3802,3800,1,0,0,0,3802,3801, + 1,0,0,0,3803,3820,1,0,0,0,3804,3806,5,17,0,0,3805,3804,1,0,0,0,3805, + 3806,1,0,0,0,3806,3807,1,0,0,0,3807,3821,3,648,324,0,3808,3809,5, + 17,0,0,3809,3810,5,399,0,0,3810,3815,3,648,324,0,3811,3812,5,397, + 0,0,3812,3814,3,648,324,0,3813,3811,1,0,0,0,3814,3817,1,0,0,0,3815, + 3813,1,0,0,0,3815,3816,1,0,0,0,3816,3818,1,0,0,0,3817,3815,1,0,0, + 0,3818,3819,5,400,0,0,3819,3821,1,0,0,0,3820,3805,1,0,0,0,3820,3808, + 1,0,0,0,3820,3821,1,0,0,0,3821,3823,1,0,0,0,3822,3799,1,0,0,0,3822, + 3802,1,0,0,0,3823,511,1,0,0,0,3824,3825,3,256,128,0,3825,513,1,0, + 0,0,3826,3827,3,590,295,0,3827,515,1,0,0,0,3828,3829,7,31,0,0,3829, + 3830,3,520,260,0,3830,3831,3,212,106,0,3831,3832,3,216,108,0,3832, + 3833,5,370,0,0,3833,3846,5,426,0,0,3834,3844,5,17,0,0,3835,3838, + 5,399,0,0,3836,3839,3,446,223,0,3837,3839,3,248,124,0,3838,3836, + 1,0,0,0,3838,3837,1,0,0,0,3839,3840,1,0,0,0,3840,3841,5,400,0,0, + 3841,3845,1,0,0,0,3842,3845,3,446,223,0,3843,3845,3,248,124,0,3844, + 3835,1,0,0,0,3844,3842,1,0,0,0,3844,3843,1,0,0,0,3845,3847,1,0,0, + 0,3846,3834,1,0,0,0,3846,3847,1,0,0,0,3847,3848,1,0,0,0,3848,3849, + 3,212,106,0,3849,3850,3,214,107,0,3850,517,1,0,0,0,3851,3854,3,442, + 221,0,3852,3854,3,590,295,0,3853,3851,1,0,0,0,3853,3852,1,0,0,0, + 3854,519,1,0,0,0,3855,3860,3,518,259,0,3856,3857,5,397,0,0,3857, + 3859,3,518,259,0,3858,3856,1,0,0,0,3859,3862,1,0,0,0,3860,3858,1, + 0,0,0,3860,3861,1,0,0,0,3861,521,1,0,0,0,3862,3860,1,0,0,0,3863, + 3864,5,386,0,0,3864,3865,3,648,324,0,3865,3866,5,17,0,0,3866,3874, + 3,524,262,0,3867,3868,5,397,0,0,3868,3869,3,648,324,0,3869,3870, + 5,17,0,0,3870,3871,3,524,262,0,3871,3873,1,0,0,0,3872,3867,1,0,0, + 0,3873,3876,1,0,0,0,3874,3872,1,0,0,0,3874,3875,1,0,0,0,3875,523, + 1,0,0,0,3876,3874,1,0,0,0,3877,3890,3,648,324,0,3878,3880,5,399, + 0,0,3879,3881,3,648,324,0,3880,3879,1,0,0,0,3880,3881,1,0,0,0,3881, + 3883,1,0,0,0,3882,3884,3,488,244,0,3883,3882,1,0,0,0,3883,3884,1, + 0,0,0,3884,3886,1,0,0,0,3885,3887,3,526,263,0,3886,3885,1,0,0,0, + 3886,3887,1,0,0,0,3887,3888,1,0,0,0,3888,3890,5,400,0,0,3889,3877, + 1,0,0,0,3889,3878,1,0,0,0,3890,525,1,0,0,0,3891,3905,7,32,0,0,3892, + 3893,5,354,0,0,3893,3899,5,247,0,0,3894,3895,5,62,0,0,3895,3899, + 5,291,0,0,3896,3897,5,431,0,0,3897,3899,5,247,0,0,3898,3892,1,0, + 0,0,3898,3894,1,0,0,0,3898,3896,1,0,0,0,3899,3906,1,0,0,0,3900,3901, + 5,25,0,0,3901,3902,3,528,264,0,3902,3903,5,11,0,0,3903,3904,3,528, + 264,0,3904,3906,1,0,0,0,3905,3898,1,0,0,0,3905,3900,1,0,0,0,3906, + 527,1,0,0,0,3907,3908,7,33,0,0,3908,3912,7,34,0,0,3909,3910,5,62, + 0,0,3910,3912,5,291,0,0,3911,3907,1,0,0,0,3911,3909,1,0,0,0,3912, + 529,1,0,0,0,3913,3914,5,144,0,0,3914,3920,5,32,0,0,3915,3921,3,256, + 128,0,3916,3921,3,532,266,0,3917,3921,3,534,267,0,3918,3919,5,399, + 0,0,3919,3921,5,400,0,0,3920,3915,1,0,0,0,3920,3916,1,0,0,0,3920, + 3917,1,0,0,0,3920,3918,1,0,0,0,3921,531,1,0,0,0,3922,3925,5,290, + 0,0,3923,3925,5,61,0,0,3924,3922,1,0,0,0,3924,3923,1,0,0,0,3925, + 3926,1,0,0,0,3926,3927,5,399,0,0,3927,3932,3,590,295,0,3928,3929, + 5,397,0,0,3929,3931,3,590,295,0,3930,3928,1,0,0,0,3931,3934,1,0, + 0,0,3932,3930,1,0,0,0,3932,3933,1,0,0,0,3933,3935,1,0,0,0,3934,3932, + 1,0,0,0,3935,3936,5,400,0,0,3936,533,1,0,0,0,3937,3942,3,550,275, + 0,3938,3939,5,387,0,0,3939,3943,5,290,0,0,3940,3941,5,387,0,0,3941, + 3943,5,61,0,0,3942,3938,1,0,0,0,3942,3940,1,0,0,0,3942,3943,1,0, + 0,0,3943,3957,1,0,0,0,3944,3945,5,145,0,0,3945,3946,5,305,0,0,3946, + 3947,5,399,0,0,3947,3952,3,536,268,0,3948,3949,5,397,0,0,3949,3951, + 3,536,268,0,3950,3948,1,0,0,0,3951,3954,1,0,0,0,3952,3950,1,0,0, + 0,3952,3953,1,0,0,0,3953,3955,1,0,0,0,3954,3952,1,0,0,0,3955,3956, + 5,400,0,0,3956,3958,1,0,0,0,3957,3944,1,0,0,0,3957,3958,1,0,0,0, + 3958,535,1,0,0,0,3959,3961,5,399,0,0,3960,3962,3,590,295,0,3961, + 3960,1,0,0,0,3961,3962,1,0,0,0,3962,3967,1,0,0,0,3963,3964,5,397, + 0,0,3964,3966,3,590,295,0,3965,3963,1,0,0,0,3966,3969,1,0,0,0,3967, + 3965,1,0,0,0,3967,3968,1,0,0,0,3968,3970,1,0,0,0,3969,3967,1,0,0, + 0,3970,3973,5,400,0,0,3971,3973,3,590,295,0,3972,3959,1,0,0,0,3972, + 3971,1,0,0,0,3973,537,1,0,0,0,3974,3975,5,146,0,0,3975,3976,3,590, + 295,0,3976,539,1,0,0,0,3977,3978,5,256,0,0,3978,3979,3,590,295,0, + 3979,541,1,0,0,0,3980,3983,5,83,0,0,3981,3983,3,590,295,0,3982,3980, + 1,0,0,0,3982,3981,1,0,0,0,3983,543,1,0,0,0,3984,3986,3,590,295,0, + 3985,3987,5,17,0,0,3986,3985,1,0,0,0,3986,3987,1,0,0,0,3987,3989, + 1,0,0,0,3988,3990,3,648,324,0,3989,3988,1,0,0,0,3989,3990,1,0,0, + 0,3990,4001,1,0,0,0,3991,3992,5,397,0,0,3992,3994,3,590,295,0,3993, + 3995,5,17,0,0,3994,3993,1,0,0,0,3994,3995,1,0,0,0,3995,3997,1,0, + 0,0,3996,3998,3,648,324,0,3997,3996,1,0,0,0,3997,3998,1,0,0,0,3998, + 4000,1,0,0,0,3999,3991,1,0,0,0,4000,4003,1,0,0,0,4001,3999,1,0,0, + 0,4001,4002,1,0,0,0,4002,545,1,0,0,0,4003,4001,1,0,0,0,4004,4007, + 3,548,274,0,4005,4007,3,550,275,0,4006,4004,1,0,0,0,4006,4005,1, + 0,0,0,4007,547,1,0,0,0,4008,4009,5,399,0,0,4009,4010,3,550,275,0, + 4010,4011,5,400,0,0,4011,549,1,0,0,0,4012,4019,3,542,271,0,4013, + 4014,5,397,0,0,4014,4016,3,542,271,0,4015,4013,1,0,0,0,4016,4017, + 1,0,0,0,4017,4015,1,0,0,0,4017,4018,1,0,0,0,4018,4020,1,0,0,0,4019, + 4015,1,0,0,0,4019,4020,1,0,0,0,4020,551,1,0,0,0,4021,4022,5,229, + 0,0,4022,4023,5,32,0,0,4023,4028,3,308,154,0,4024,4025,5,397,0,0, + 4025,4027,3,308,154,0,4026,4024,1,0,0,0,4027,4030,1,0,0,0,4028,4026, + 1,0,0,0,4028,4029,1,0,0,0,4029,553,1,0,0,0,4030,4028,1,0,0,0,4031, + 4032,5,41,0,0,4032,4033,5,32,0,0,4033,4034,3,546,273,0,4034,555, + 1,0,0,0,4035,4036,5,97,0,0,4036,4037,5,32,0,0,4037,4038,3,546,273, + 0,4038,557,1,0,0,0,4039,4040,5,314,0,0,4040,4060,5,32,0,0,4041,4042, + 5,399,0,0,4042,4047,3,308,154,0,4043,4044,5,397,0,0,4044,4046,3, + 308,154,0,4045,4043,1,0,0,0,4046,4049,1,0,0,0,4047,4045,1,0,0,0, + 4047,4048,1,0,0,0,4048,4050,1,0,0,0,4049,4047,1,0,0,0,4050,4051, + 5,400,0,0,4051,4061,1,0,0,0,4052,4057,3,308,154,0,4053,4054,5,397, + 0,0,4054,4056,3,308,154,0,4055,4053,1,0,0,0,4056,4059,1,0,0,0,4057, + 4055,1,0,0,0,4057,4058,1,0,0,0,4058,4061,1,0,0,0,4059,4057,1,0,0, + 0,4060,4041,1,0,0,0,4060,4052,1,0,0,0,4061,559,1,0,0,0,4062,4063, + 5,349,0,0,4063,4067,5,399,0,0,4064,4068,5,179,0,0,4065,4068,5,343, + 0,0,4066,4068,5,29,0,0,4067,4064,1,0,0,0,4067,4065,1,0,0,0,4067, + 4066,1,0,0,0,4067,4068,1,0,0,0,4068,4070,1,0,0,0,4069,4071,3,518, + 259,0,4070,4069,1,0,0,0,4070,4071,1,0,0,0,4071,4072,1,0,0,0,4072, + 4073,5,139,0,0,4073,4074,3,518,259,0,4074,4075,5,400,0,0,4075,4116, + 1,0,0,0,4076,4077,3,568,284,0,4077,4092,5,399,0,0,4078,4093,5,415, + 0,0,4079,4081,7,22,0,0,4080,4079,1,0,0,0,4080,4081,1,0,0,0,4081, + 4090,1,0,0,0,4082,4087,3,518,259,0,4083,4084,5,397,0,0,4084,4086, + 3,518,259,0,4085,4083,1,0,0,0,4086,4089,1,0,0,0,4087,4085,1,0,0, + 0,4087,4088,1,0,0,0,4088,4091,1,0,0,0,4089,4087,1,0,0,0,4090,4082, + 1,0,0,0,4090,4091,1,0,0,0,4091,4093,1,0,0,0,4092,4078,1,0,0,0,4092, + 4080,1,0,0,0,4093,4113,1,0,0,0,4094,4095,5,400,0,0,4095,4096,5,388, + 0,0,4096,4097,5,144,0,0,4097,4098,5,399,0,0,4098,4099,3,552,276, + 0,4099,4100,5,400,0,0,4100,4114,1,0,0,0,4101,4103,5,400,0,0,4102, + 4104,3,562,281,0,4103,4102,1,0,0,0,4103,4104,1,0,0,0,4104,4105,1, + 0,0,0,4105,4106,5,234,0,0,4106,4114,3,524,262,0,4107,4108,3,562, + 281,0,4108,4109,5,400,0,0,4109,4110,5,234,0,0,4110,4111,3,524,262, + 0,4111,4114,1,0,0,0,4112,4114,5,400,0,0,4113,4094,1,0,0,0,4113,4101, + 1,0,0,0,4113,4107,1,0,0,0,4113,4112,1,0,0,0,4114,4116,1,0,0,0,4115, + 4062,1,0,0,0,4115,4076,1,0,0,0,4116,561,1,0,0,0,4117,4118,7,35,0, + 0,4118,4119,5,220,0,0,4119,563,1,0,0,0,4120,4121,3,650,325,0,4121, + 565,1,0,0,0,4122,4125,3,650,325,0,4123,4125,5,426,0,0,4124,4122, + 1,0,0,0,4124,4123,1,0,0,0,4125,567,1,0,0,0,4126,4130,3,650,325,0, + 4127,4130,3,656,328,0,4128,4130,3,646,323,0,4129,4126,1,0,0,0,4129, + 4127,1,0,0,0,4129,4128,1,0,0,0,4130,569,1,0,0,0,4131,4132,5,36,0, + 0,4132,4133,5,399,0,0,4133,4134,3,590,295,0,4134,4135,5,17,0,0,4135, + 4138,3,348,174,0,4136,4137,5,137,0,0,4137,4139,5,426,0,0,4138,4136, + 1,0,0,0,4138,4139,1,0,0,0,4139,4140,1,0,0,0,4140,4141,5,400,0,0, + 4141,571,1,0,0,0,4142,4143,5,35,0,0,4143,4149,3,590,295,0,4144,4145, + 5,383,0,0,4145,4146,3,590,295,0,4146,4147,5,335,0,0,4147,4148,3, + 590,295,0,4148,4150,1,0,0,0,4149,4144,1,0,0,0,4150,4151,1,0,0,0, + 4151,4149,1,0,0,0,4151,4152,1,0,0,0,4152,4155,1,0,0,0,4153,4154, + 5,105,0,0,4154,4156,3,590,295,0,4155,4153,1,0,0,0,4155,4156,1,0, + 0,0,4156,4157,1,0,0,0,4157,4158,5,108,0,0,4158,573,1,0,0,0,4159, + 4165,5,35,0,0,4160,4161,5,383,0,0,4161,4162,3,590,295,0,4162,4163, + 5,335,0,0,4163,4164,3,590,295,0,4164,4166,1,0,0,0,4165,4160,1,0, + 0,0,4166,4167,1,0,0,0,4167,4165,1,0,0,0,4167,4168,1,0,0,0,4168,4171, + 1,0,0,0,4169,4170,5,105,0,0,4170,4172,3,590,295,0,4171,4169,1,0, + 0,0,4171,4172,1,0,0,0,4172,4173,1,0,0,0,4173,4174,5,108,0,0,4174, + 575,1,0,0,0,4175,4176,5,132,0,0,4176,4177,5,399,0,0,4177,4180,3, + 590,295,0,4178,4179,5,341,0,0,4179,4181,3,580,290,0,4180,4178,1, + 0,0,0,4180,4181,1,0,0,0,4181,4182,1,0,0,0,4182,4183,5,400,0,0,4183, + 577,1,0,0,0,4184,4185,5,124,0,0,4185,4186,5,399,0,0,4186,4187,3, + 580,290,0,4187,4188,5,139,0,0,4188,4189,3,590,295,0,4189,4190,5, + 400,0,0,4190,579,1,0,0,0,4191,4200,3,676,338,0,4192,4200,5,257,0, + 0,4193,4200,3,678,339,0,4194,4200,3,680,340,0,4195,4200,3,682,341, + 0,4196,4200,3,684,342,0,4197,4200,3,686,343,0,4198,4200,3,688,344, + 0,4199,4191,1,0,0,0,4199,4192,1,0,0,0,4199,4193,1,0,0,0,4199,4194, + 1,0,0,0,4199,4195,1,0,0,0,4199,4196,1,0,0,0,4199,4197,1,0,0,0,4199, + 4198,1,0,0,0,4200,581,1,0,0,0,4201,4202,3,584,292,0,4202,4203,3, + 588,294,0,4203,4230,1,0,0,0,4204,4230,5,431,0,0,4205,4206,5,71,0, + 0,4206,4230,5,426,0,0,4207,4230,5,63,0,0,4208,4209,5,337,0,0,4209, + 4230,5,426,0,0,4210,4230,5,64,0,0,4211,4212,5,338,0,0,4212,4230, + 5,426,0,0,4213,4217,5,426,0,0,4214,4216,5,426,0,0,4215,4214,1,0, + 0,0,4216,4219,1,0,0,0,4217,4215,1,0,0,0,4217,4218,1,0,0,0,4218,4230, + 1,0,0,0,4219,4217,1,0,0,0,4220,4230,5,428,0,0,4221,4230,5,429,0, + 0,4222,4223,5,433,0,0,4223,4230,5,427,0,0,4224,4230,5,350,0,0,4225, + 4230,5,125,0,0,4226,4230,5,219,0,0,4227,4230,5,424,0,0,4228,4230, + 5,432,0,0,4229,4201,1,0,0,0,4229,4204,1,0,0,0,4229,4205,1,0,0,0, + 4229,4207,1,0,0,0,4229,4208,1,0,0,0,4229,4210,1,0,0,0,4229,4211, + 1,0,0,0,4229,4213,1,0,0,0,4229,4220,1,0,0,0,4229,4221,1,0,0,0,4229, + 4222,1,0,0,0,4229,4224,1,0,0,0,4229,4225,1,0,0,0,4229,4226,1,0,0, + 0,4229,4227,1,0,0,0,4229,4228,1,0,0,0,4230,583,1,0,0,0,4231,4232, + 7,27,0,0,4232,585,1,0,0,0,4233,4234,5,399,0,0,4234,4235,3,584,292, + 0,4235,4236,5,400,0,0,4236,4237,3,588,294,0,4237,4249,1,0,0,0,4238, + 4244,5,165,0,0,4239,4245,3,584,292,0,4240,4241,5,399,0,0,4241,4242, + 3,590,295,0,4242,4243,5,400,0,0,4243,4245,1,0,0,0,4244,4239,1,0, + 0,0,4244,4240,1,0,0,0,4245,4246,1,0,0,0,4246,4247,3,588,294,0,4247, + 4249,1,0,0,0,4248,4233,1,0,0,0,4248,4238,1,0,0,0,4249,587,1,0,0, + 0,4250,4251,3,676,338,0,4251,4252,5,341,0,0,4252,4253,3,678,339, + 0,4253,4265,1,0,0,0,4254,4255,3,682,341,0,4255,4256,5,341,0,0,4256, + 4257,3,688,344,0,4257,4265,1,0,0,0,4258,4265,3,676,338,0,4259,4265, + 3,678,339,0,4260,4265,3,682,341,0,4261,4265,3,684,342,0,4262,4265, + 3,686,343,0,4263,4265,3,688,344,0,4264,4250,1,0,0,0,4264,4254,1, + 0,0,0,4264,4258,1,0,0,0,4264,4259,1,0,0,0,4264,4260,1,0,0,0,4264, + 4261,1,0,0,0,4264,4262,1,0,0,0,4264,4263,1,0,0,0,4265,589,1,0,0, + 0,4266,4271,3,632,316,0,4267,4268,5,228,0,0,4268,4270,3,632,316, + 0,4269,4267,1,0,0,0,4270,4273,1,0,0,0,4271,4269,1,0,0,0,4271,4272, + 1,0,0,0,4272,591,1,0,0,0,4273,4271,1,0,0,0,4274,4286,3,582,291,0, + 4275,4286,3,586,293,0,4276,4286,3,570,285,0,4277,4286,3,578,289, + 0,4278,4286,3,576,288,0,4279,4286,3,572,286,0,4280,4286,3,574,287, + 0,4281,4286,3,610,305,0,4282,4286,3,560,280,0,4283,4286,3,548,274, + 0,4284,4286,3,648,324,0,4285,4274,1,0,0,0,4285,4275,1,0,0,0,4285, + 4276,1,0,0,0,4285,4277,1,0,0,0,4285,4278,1,0,0,0,4285,4279,1,0,0, + 0,4285,4280,1,0,0,0,4285,4281,1,0,0,0,4285,4282,1,0,0,0,4285,4283, + 1,0,0,0,4285,4284,1,0,0,0,4286,593,1,0,0,0,4287,4289,7,36,0,0,4288, + 4287,1,0,0,0,4289,4292,1,0,0,0,4290,4288,1,0,0,0,4290,4291,1,0,0, + 0,4291,4293,1,0,0,0,4292,4290,1,0,0,0,4293,4302,3,592,296,0,4294, + 4295,5,401,0,0,4295,4296,3,590,295,0,4296,4297,5,402,0,0,4297,4301, + 1,0,0,0,4298,4299,5,395,0,0,4299,4301,3,648,324,0,4300,4294,1,0, + 0,0,4300,4298,1,0,0,0,4301,4304,1,0,0,0,4302,4300,1,0,0,0,4302,4303, + 1,0,0,0,4303,595,1,0,0,0,4304,4302,1,0,0,0,4305,4310,3,594,297,0, + 4306,4307,5,423,0,0,4307,4309,3,594,297,0,4308,4306,1,0,0,0,4309, + 4312,1,0,0,0,4310,4308,1,0,0,0,4310,4311,1,0,0,0,4311,597,1,0,0, + 0,4312,4310,1,0,0,0,4313,4318,3,596,298,0,4314,4315,7,37,0,0,4315, + 4317,3,596,298,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,599,1,0,0,0,4320,4318,1,0,0,0,4321, + 4326,3,598,299,0,4322,4323,7,38,0,0,4323,4325,3,598,299,0,4324,4322, + 1,0,0,0,4325,4328,1,0,0,0,4326,4324,1,0,0,0,4326,4327,1,0,0,0,4327, + 601,1,0,0,0,4328,4326,1,0,0,0,4329,4334,3,600,300,0,4330,4331,5, + 422,0,0,4331,4333,3,600,300,0,4332,4330,1,0,0,0,4333,4336,1,0,0, + 0,4334,4332,1,0,0,0,4334,4335,1,0,0,0,4335,603,1,0,0,0,4336,4334, + 1,0,0,0,4337,4342,3,602,301,0,4338,4339,5,419,0,0,4339,4341,3,602, + 301,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,605,1,0,0,0,4344,4342,1,0,0,0,4345,4350,3,604, + 302,0,4346,4347,5,421,0,0,4347,4349,3,604,302,0,4348,4346,1,0,0, + 0,4349,4352,1,0,0,0,4350,4348,1,0,0,0,4350,4351,1,0,0,0,4351,607, + 1,0,0,0,4352,4350,1,0,0,0,4353,4354,7,39,0,0,4354,609,1,0,0,0,4355, + 4356,5,399,0,0,4356,4357,3,376,188,0,4357,4358,5,400,0,0,4358,611, + 1,0,0,0,4359,4361,3,606,303,0,4360,4362,3,614,307,0,4361,4360,1, + 0,0,0,4361,4362,1,0,0,0,4362,4366,1,0,0,0,4363,4364,5,117,0,0,4364, + 4366,3,610,305,0,4365,4359,1,0,0,0,4365,4363,1,0,0,0,4366,613,1, + 0,0,0,4367,4368,3,608,304,0,4368,4369,3,606,303,0,4369,4374,1,0, + 0,0,4370,4374,3,616,308,0,4371,4372,5,216,0,0,4372,4374,3,620,310, + 0,4373,4367,1,0,0,0,4373,4370,1,0,0,0,4373,4371,1,0,0,0,4374,615, + 1,0,0,0,4375,4376,5,154,0,0,4376,4390,3,618,309,0,4377,4378,5,25, + 0,0,4378,4379,3,606,303,0,4379,4380,5,11,0,0,4380,4381,3,606,303, + 0,4381,4390,1,0,0,0,4382,4383,5,184,0,0,4383,4384,7,40,0,0,4384, + 4390,3,548,274,0,4385,4386,3,644,322,0,4386,4387,7,41,0,0,4387,4388, + 3,610,305,0,4388,4390,1,0,0,0,4389,4375,1,0,0,0,4389,4377,1,0,0, + 0,4389,4382,1,0,0,0,4389,4385,1,0,0,0,4390,617,1,0,0,0,4391,4394, + 3,610,305,0,4392,4394,3,548,274,0,4393,4391,1,0,0,0,4393,4392,1, + 0,0,0,4394,619,1,0,0,0,4395,4396,7,42,0,0,4396,4399,3,606,303,0, + 4397,4399,3,616,308,0,4398,4395,1,0,0,0,4398,4397,1,0,0,0,4399,621, + 1,0,0,0,4400,4401,5,167,0,0,4401,4402,5,96,0,0,4402,4403,5,139,0, + 0,4403,623,1,0,0,0,4404,4412,5,405,0,0,4405,4412,5,406,0,0,4406, + 4412,5,407,0,0,4407,4408,5,167,0,0,4408,4409,5,216,0,0,4409,4410, + 5,96,0,0,4410,4412,5,139,0,0,4411,4404,1,0,0,0,4411,4405,1,0,0,0, + 4411,4406,1,0,0,0,4411,4407,1,0,0,0,4412,625,1,0,0,0,4413,4422,3, + 612,306,0,4414,4415,3,624,312,0,4415,4416,3,612,306,0,4416,4421, + 1,0,0,0,4417,4418,3,622,311,0,4418,4419,3,612,306,0,4419,4421,1, + 0,0,0,4420,4414,1,0,0,0,4420,4417,1,0,0,0,4421,4424,1,0,0,0,4422, + 4420,1,0,0,0,4422,4423,1,0,0,0,4423,627,1,0,0,0,4424,4422,1,0,0, + 0,4425,4432,5,219,0,0,4426,4432,5,350,0,0,4427,4432,5,125,0,0,4428, + 4432,5,360,0,0,4429,4430,5,216,0,0,4430,4432,7,43,0,0,4431,4425, + 1,0,0,0,4431,4426,1,0,0,0,4431,4427,1,0,0,0,4431,4428,1,0,0,0,4431, + 4429,1,0,0,0,4432,629,1,0,0,0,4433,4435,5,216,0,0,4434,4433,1,0, + 0,0,4435,4438,1,0,0,0,4436,4434,1,0,0,0,4436,4437,1,0,0,0,4437,4439, + 1,0,0,0,4438,4436,1,0,0,0,4439,4442,3,626,313,0,4440,4441,5,167, + 0,0,4441,4443,3,628,314,0,4442,4440,1,0,0,0,4442,4443,1,0,0,0,4443, + 631,1,0,0,0,4444,4449,3,630,315,0,4445,4446,5,11,0,0,4446,4448,3, + 630,315,0,4447,4445,1,0,0,0,4448,4451,1,0,0,0,4449,4447,1,0,0,0, + 4449,4450,1,0,0,0,4450,633,1,0,0,0,4451,4449,1,0,0,0,4452,4454,3, + 478,239,0,4453,4455,3,636,318,0,4454,4453,1,0,0,0,4454,4455,1,0, + 0,0,4455,635,1,0,0,0,4456,4457,5,237,0,0,4457,4458,5,399,0,0,4458, + 4463,3,638,319,0,4459,4460,5,397,0,0,4460,4462,3,638,319,0,4461, + 4459,1,0,0,0,4462,4465,1,0,0,0,4463,4461,1,0,0,0,4463,4464,1,0,0, + 0,4464,4466,1,0,0,0,4465,4463,1,0,0,0,4466,4467,5,400,0,0,4467,637, + 1,0,0,0,4468,4471,3,648,324,0,4469,4470,5,405,0,0,4470,4472,3,582, + 291,0,4471,4469,1,0,0,0,4471,4472,1,0,0,0,4472,639,1,0,0,0,4473, + 4474,5,399,0,0,4474,4479,3,642,321,0,4475,4476,5,397,0,0,4476,4478, + 3,642,321,0,4477,4475,1,0,0,0,4478,4481,1,0,0,0,4479,4477,1,0,0, + 0,4479,4480,1,0,0,0,4480,4482,1,0,0,0,4481,4479,1,0,0,0,4482,4483, + 5,400,0,0,4483,641,1,0,0,0,4484,4487,3,648,324,0,4485,4488,5,184, + 0,0,4486,4488,3,644,322,0,4487,4485,1,0,0,0,4487,4486,1,0,0,0,4488, + 4489,1,0,0,0,4489,4490,3,582,291,0,4490,643,1,0,0,0,4491,4492,7, + 44,0,0,4492,645,1,0,0,0,4493,4494,7,45,0,0,4494,647,1,0,0,0,4495, + 4498,5,432,0,0,4496,4498,3,654,327,0,4497,4495,1,0,0,0,4497,4496, + 1,0,0,0,4498,649,1,0,0,0,4499,4502,3,648,324,0,4500,4501,5,395,0, + 0,4501,4503,3,648,324,0,4502,4500,1,0,0,0,4502,4503,1,0,0,0,4503, + 651,1,0,0,0,4504,4505,3,648,324,0,4505,653,1,0,0,0,4506,4507,7,46, + 0,0,4507,655,1,0,0,0,4508,4509,7,47,0,0,4509,657,1,0,0,0,4510,4562, + 3,648,324,0,4511,4562,5,299,0,0,4512,4562,5,171,0,0,4513,4562,5, + 237,0,0,4514,4562,5,198,0,0,4515,4562,5,268,0,0,4516,4562,5,369, + 0,0,4517,4562,5,241,0,0,4518,4562,5,165,0,0,4519,4562,5,292,0,0, + 4520,4562,5,356,0,0,4521,4562,5,144,0,0,4522,4562,5,203,0,0,4523, + 4562,5,219,0,0,4524,4562,5,126,0,0,4525,4562,5,188,0,0,4526,4562, + 5,101,0,0,4527,4562,5,329,0,0,4528,4562,5,224,0,0,4529,4562,5,291, + 0,0,4530,4562,5,145,0,0,4531,4562,5,304,0,0,4532,4562,5,135,0,0, + 4533,4562,5,318,0,0,4534,4562,5,161,0,0,4535,4562,5,54,0,0,4536, + 4562,5,166,0,0,4537,4562,5,358,0,0,4538,4562,5,45,0,0,4539,4562, + 5,347,0,0,4540,4562,5,96,0,0,4541,4562,5,154,0,0,4542,4562,5,269, + 0,0,4543,4562,5,337,0,0,4544,4562,5,225,0,0,4545,4562,5,108,0,0, + 4546,4562,5,141,0,0,4547,4562,5,365,0,0,4548,4562,5,21,0,0,4549, + 4562,5,78,0,0,4550,4562,5,374,0,0,4551,4562,5,336,0,0,4552,4562, + 5,167,0,0,4553,4562,5,134,0,0,4554,4562,5,216,0,0,4555,4562,5,27, + 0,0,4556,4562,5,370,0,0,4557,4562,5,263,0,0,4558,4562,5,25,0,0,4559, + 4562,5,62,0,0,4560,4562,5,17,0,0,4561,4510,1,0,0,0,4561,4511,1,0, + 0,0,4561,4512,1,0,0,0,4561,4513,1,0,0,0,4561,4514,1,0,0,0,4561,4515, + 1,0,0,0,4561,4516,1,0,0,0,4561,4517,1,0,0,0,4561,4518,1,0,0,0,4561, + 4519,1,0,0,0,4561,4520,1,0,0,0,4561,4521,1,0,0,0,4561,4522,1,0,0, + 0,4561,4523,1,0,0,0,4561,4524,1,0,0,0,4561,4525,1,0,0,0,4561,4526, + 1,0,0,0,4561,4527,1,0,0,0,4561,4528,1,0,0,0,4561,4529,1,0,0,0,4561, + 4530,1,0,0,0,4561,4531,1,0,0,0,4561,4532,1,0,0,0,4561,4533,1,0,0, + 0,4561,4534,1,0,0,0,4561,4535,1,0,0,0,4561,4536,1,0,0,0,4561,4537, + 1,0,0,0,4561,4538,1,0,0,0,4561,4539,1,0,0,0,4561,4540,1,0,0,0,4561, + 4541,1,0,0,0,4561,4542,1,0,0,0,4561,4543,1,0,0,0,4561,4544,1,0,0, + 0,4561,4545,1,0,0,0,4561,4546,1,0,0,0,4561,4547,1,0,0,0,4561,4548, + 1,0,0,0,4561,4549,1,0,0,0,4561,4550,1,0,0,0,4561,4551,1,0,0,0,4561, + 4552,1,0,0,0,4561,4553,1,0,0,0,4561,4554,1,0,0,0,4561,4555,1,0,0, + 0,4561,4556,1,0,0,0,4561,4557,1,0,0,0,4561,4558,1,0,0,0,4561,4559, + 1,0,0,0,4561,4560,1,0,0,0,4562,659,1,0,0,0,4563,4564,5,58,0,0,4564, + 4565,5,280,0,0,4565,4567,5,243,0,0,4566,4568,3,32,16,0,4567,4566, + 1,0,0,0,4567,4568,1,0,0,0,4568,4578,1,0,0,0,4569,4570,3,648,324, + 0,4570,4571,5,184,0,0,4571,4572,3,648,324,0,4572,4579,1,0,0,0,4573, + 4576,3,648,324,0,4574,4575,5,387,0,0,4575,4577,3,666,333,0,4576, + 4574,1,0,0,0,4576,4577,1,0,0,0,4577,4579,1,0,0,0,4578,4569,1,0,0, + 0,4578,4573,1,0,0,0,4579,4729,1,0,0,0,4580,4581,5,9,0,0,4581,4582, + 5,280,0,0,4582,4583,5,243,0,0,4583,4608,3,648,324,0,4584,4609,5, + 373,0,0,4585,4609,3,674,337,0,4586,4587,5,304,0,0,4587,4609,3,666, + 333,0,4588,4589,5,363,0,0,4589,4594,3,668,334,0,4590,4591,5,397, + 0,0,4591,4593,3,668,334,0,4592,4590,1,0,0,0,4593,4596,1,0,0,0,4594, + 4592,1,0,0,0,4594,4595,1,0,0,0,4595,4609,1,0,0,0,4596,4594,1,0,0, + 0,4597,4598,5,274,0,0,4598,4599,5,341,0,0,4599,4609,3,648,324,0, + 4600,4602,3,670,335,0,4601,4603,3,672,336,0,4602,4601,1,0,0,0,4602, + 4603,1,0,0,0,4603,4609,1,0,0,0,4604,4606,3,672,336,0,4605,4607,3, + 670,335,0,4606,4605,1,0,0,0,4606,4607,1,0,0,0,4607,4609,1,0,0,0, + 4608,4584,1,0,0,0,4608,4585,1,0,0,0,4608,4586,1,0,0,0,4608,4588, + 1,0,0,0,4608,4597,1,0,0,0,4608,4600,1,0,0,0,4608,4604,1,0,0,0,4609, + 4729,1,0,0,0,4610,4611,5,101,0,0,4611,4612,5,280,0,0,4612,4614,5, + 243,0,0,4613,4615,3,30,15,0,4614,4613,1,0,0,0,4614,4615,1,0,0,0, + 4615,4616,1,0,0,0,4616,4729,3,648,324,0,4617,4620,3,672,336,0,4618, + 4620,3,674,337,0,4619,4617,1,0,0,0,4619,4618,1,0,0,0,4620,4621,1, + 0,0,0,4621,4622,5,390,0,0,4622,4623,5,197,0,0,4623,4729,1,0,0,0, + 4624,4636,5,278,0,0,4625,4626,5,3,0,0,4626,4627,5,280,0,0,4627,4628, + 5,243,0,0,4628,4629,5,387,0,0,4629,4637,3,648,324,0,4630,4631,5, + 280,0,0,4631,4632,5,243,0,0,4632,4633,3,648,324,0,4633,4634,5,387, + 0,0,4634,4635,3,648,324,0,4635,4637,1,0,0,0,4636,4625,1,0,0,0,4636, + 4630,1,0,0,0,4637,4729,1,0,0,0,4638,4639,5,58,0,0,4639,4640,5,348, + 0,0,4640,4641,3,648,324,0,4641,4642,5,395,0,0,4642,4643,3,648,324, + 0,4643,4644,5,383,0,0,4644,4645,3,694,347,0,4645,4646,5,99,0,0,4646, + 4647,3,696,348,0,4647,4729,1,0,0,0,4648,4649,5,9,0,0,4649,4650,5, + 348,0,0,4650,4651,3,648,324,0,4651,4652,5,395,0,0,4652,4669,3,648, + 324,0,4653,4654,5,383,0,0,4654,4655,3,694,347,0,4655,4656,5,99,0, + 0,4656,4657,3,696,348,0,4657,4670,1,0,0,0,4658,4659,5,4,0,0,4659, + 4663,5,341,0,0,4660,4661,5,101,0,0,4661,4663,5,139,0,0,4662,4658, + 1,0,0,0,4662,4660,1,0,0,0,4663,4667,1,0,0,0,4664,4665,5,246,0,0, + 4665,4668,3,692,346,0,4666,4668,5,362,0,0,4667,4664,1,0,0,0,4667, + 4666,1,0,0,0,4668,4670,1,0,0,0,4669,4653,1,0,0,0,4669,4662,1,0,0, + 0,4670,4729,1,0,0,0,4671,4672,5,101,0,0,4672,4673,5,348,0,0,4673, + 4674,3,648,324,0,4674,4675,5,395,0,0,4675,4676,3,648,324,0,4676, + 4729,1,0,0,0,4677,4678,5,58,0,0,4678,4679,5,246,0,0,4679,4680,3, + 648,324,0,4680,4681,5,395,0,0,4681,4682,3,692,346,0,4682,4683,5, + 387,0,0,4683,4684,3,700,350,0,4684,4729,1,0,0,0,4685,4686,5,9,0, + 0,4686,4687,5,246,0,0,4687,4688,3,648,324,0,4688,4689,5,395,0,0, + 4689,4697,3,692,346,0,4690,4691,5,304,0,0,4691,4698,3,700,350,0, + 4692,4693,5,363,0,0,4693,4698,5,294,0,0,4694,4695,7,48,0,0,4695, + 4696,5,348,0,0,4696,4698,3,648,324,0,4697,4690,1,0,0,0,4697,4692, + 1,0,0,0,4697,4694,1,0,0,0,4698,4729,1,0,0,0,4699,4700,5,101,0,0, + 4700,4701,5,246,0,0,4701,4702,3,648,324,0,4702,4703,5,395,0,0,4703, + 4704,3,692,346,0,4704,4729,1,0,0,0,4705,4706,7,49,0,0,4706,4707, + 3,662,331,0,4707,4708,5,200,0,0,4708,4709,5,426,0,0,4709,4710,5, + 154,0,0,4710,4714,3,648,324,0,4711,4712,5,341,0,0,4712,4715,3,692, + 346,0,4713,4715,5,362,0,0,4714,4711,1,0,0,0,4714,4713,1,0,0,0,4715, + 4719,1,0,0,0,4716,4717,5,387,0,0,4717,4718,5,229,0,0,4718,4720,5, + 431,0,0,4719,4716,1,0,0,0,4719,4720,1,0,0,0,4720,4729,1,0,0,0,4721, + 4722,5,101,0,0,4722,4723,3,662,331,0,4723,4724,5,200,0,0,4724,4725, + 5,426,0,0,4725,4726,5,154,0,0,4726,4727,3,648,324,0,4727,4729,1, + 0,0,0,4728,4563,1,0,0,0,4728,4580,1,0,0,0,4728,4610,1,0,0,0,4728, + 4619,1,0,0,0,4728,4624,1,0,0,0,4728,4638,1,0,0,0,4728,4648,1,0,0, + 0,4728,4671,1,0,0,0,4728,4677,1,0,0,0,4728,4685,1,0,0,0,4728,4699, + 1,0,0,0,4728,4705,1,0,0,0,4728,4721,1,0,0,0,4729,661,1,0,0,0,4730, + 4731,7,50,0,0,4731,663,1,0,0,0,4732,4733,5,259,0,0,4733,4734,5,405, + 0,0,4734,4740,5,431,0,0,4735,4736,5,83,0,0,4736,4737,5,246,0,0,4737, + 4738,5,405,0,0,4738,4740,3,692,346,0,4739,4732,1,0,0,0,4739,4735, + 1,0,0,0,4740,665,1,0,0,0,4741,4746,3,664,332,0,4742,4743,5,397,0, + 0,4743,4745,3,664,332,0,4744,4742,1,0,0,0,4745,4748,1,0,0,0,4746, + 4744,1,0,0,0,4746,4747,1,0,0,0,4747,667,1,0,0,0,4748,4746,1,0,0, + 0,4749,4753,5,259,0,0,4750,4751,5,83,0,0,4751,4753,5,246,0,0,4752, + 4749,1,0,0,0,4752,4750,1,0,0,0,4753,669,1,0,0,0,4754,4757,5,2,0, + 0,4755,4756,5,387,0,0,4756,4758,5,278,0,0,4757,4755,1,0,0,0,4757, + 4758,1,0,0,0,4758,671,1,0,0,0,4759,4760,7,51,0,0,4760,673,1,0,0, + 0,4761,4762,7,52,0,0,4762,675,1,0,0,0,4763,4764,7,53,0,0,4764,677, + 1,0,0,0,4765,4766,7,54,0,0,4766,679,1,0,0,0,4767,4768,7,55,0,0,4768, + 681,1,0,0,0,4769,4770,7,56,0,0,4770,683,1,0,0,0,4771,4772,7,57,0, + 0,4772,685,1,0,0,0,4773,4774,7,58,0,0,4774,687,1,0,0,0,4775,4776, + 7,59,0,0,4776,689,1,0,0,0,4777,4778,7,60,0,0,4778,691,1,0,0,0,4779, + 4784,3,648,324,0,4780,4781,5,395,0,0,4781,4783,3,648,324,0,4782, + 4780,1,0,0,0,4783,4786,1,0,0,0,4784,4782,1,0,0,0,4784,4785,1,0,0, + 0,4785,693,1,0,0,0,4786,4784,1,0,0,0,4787,4788,3,648,324,0,4788, + 4789,5,411,0,0,4789,4790,7,27,0,0,4790,695,1,0,0,0,4791,4796,5,176, + 0,0,4792,4793,5,211,0,0,4793,4794,5,341,0,0,4794,4796,3,692,346, + 0,4795,4791,1,0,0,0,4795,4792,1,0,0,0,4796,697,1,0,0,0,4797,4798, + 5,8,0,0,4798,4799,5,405,0,0,4799,4810,5,431,0,0,4800,4801,5,259, + 0,0,4801,4802,5,405,0,0,4802,4810,5,431,0,0,4803,4804,5,294,0,0, + 4804,4805,5,405,0,0,4805,4810,5,426,0,0,4806,4807,5,240,0,0,4807, + 4808,5,405,0,0,4808,4810,3,692,346,0,4809,4797,1,0,0,0,4809,4800, + 1,0,0,0,4809,4803,1,0,0,0,4809,4806,1,0,0,0,4810,699,1,0,0,0,4811, + 4816,3,698,349,0,4812,4813,5,397,0,0,4813,4815,3,698,349,0,4814, + 4812,1,0,0,0,4815,4818,1,0,0,0,4816,4814,1,0,0,0,4816,4817,1,0,0, + 0,4817,701,1,0,0,0,4818,4816,1,0,0,0,621,705,712,715,721,727,734, + 744,747,751,766,773,779,784,789,792,816,823,826,831,836,842,846, + 859,863,867,872,879,883,888,895,899,904,952,959,964,987,991,995, + 998,1002,1007,1013,1017,1023,1025,1036,1040,1047,1055,1058,1063, + 1067,1070,1080,1088,1092,1095,1099,1103,1106,1111,1117,1122,1127, + 1131,1142,1144,1148,1158,1162,1168,1171,1178,1183,1191,1196,1200, + 1208,1213,1219,1225,1228,1231,1234,1243,1251,1256,1264,1271,1274, + 1277,1279,1290,1292,1295,1298,1301,1304,1307,1309,1321,1327,1335, + 1337,1347,1380,1385,1389,1393,1400,1407,1413,1417,1420,1427,1450, + 1455,1459,1467,1476,1483,1489,1496,1499,1505,1512,1520,1529,1538, + 1545,1565,1572,1574,1581,1591,1599,1603,1607,1620,1629,1645,1649, + 1654,1659,1662,1665,1668,1671,1674,1679,1688,1692,1699,1702,1705, + 1708,1720,1726,1752,1760,1764,1767,1770,1773,1776,1779,1782,1785, + 1794,1804,1807,1827,1833,1839,1842,1844,1851,1858,1871,1876,1885, + 1893,1901,1914,1927,1943,1947,1962,1968,1971,1974,1977,1980,1984, + 1999,2002,2013,2027,2061,2069,2074,2082,2087,2092,2099,2107,2115, + 2123,2128,2138,2142,2150,2159,2162,2166,2173,2179,2183,2189,2193, + 2205,2214,2225,2229,2236,2248,2258,2261,2268,2274,2278,2281,2284, + 2290,2294,2298,2303,2307,2311,2315,2323,2327,2331,2335,2339,2347, + 2351,2355,2363,2368,2373,2377,2381,2388,2397,2405,2417,2435,2438, + 2444,2470,2473,2479,2487,2495,2508,2515,2518,2521,2524,2527,2530, + 2533,2536,2539,2542,2545,2550,2553,2556,2559,2562,2565,2568,2571, + 2574,2577,2580,2582,2588,2592,2595,2598,2601,2604,2607,2614,2618, + 2621,2624,2627,2630,2633,2640,2643,2651,2655,2662,2664,2667,2672, + 2675,2679,2684,2690,2698,2706,2716,2719,2723,2727,2732,2739,2743, + 2745,2749,2756,2761,2774,2782,2801,2811,2824,2834,2838,2842,2848, + 2855,2862,2871,2878,2898,2901,2915,2930,2934,2954,2966,2972,2975, + 2978,2984,2990,2997,3005,3011,3015,3020,3023,3027,3034,3039,3044, + 3047,3049,3057,3065,3069,3073,3077,3094,3111,3118,3127,3132,3135, + 3138,3142,3157,3171,3174,3185,3189,3192,3195,3199,3204,3207,3210, + 3213,3216,3219,3225,3228,3231,3234,3237,3240,3243,3246,3249,3252, + 3256,3258,3264,3269,3272,3275,3278,3281,3287,3290,3293,3296,3299, + 3302,3305,3308,3311,3314,3318,3320,3322,3327,3332,3336,3340,3345, + 3350,3359,3369,3377,3389,3392,3398,3405,3412,3419,3426,3435,3439, + 3446,3451,3455,3459,3462,3465,3476,3480,3482,3485,3498,3501,3504, + 3516,3519,3526,3535,3540,3542,3544,3561,3564,3572,3575,3579,3582, + 3585,3588,3591,3603,3611,3618,3621,3628,3631,3636,3643,3651,3659, + 3664,3668,3673,3677,3684,3698,3701,3714,3724,3727,3736,3745,3748, + 3754,3757,3762,3765,3778,3784,3786,3796,3802,3805,3815,3820,3822, + 3838,3844,3846,3853,3860,3874,3880,3883,3886,3889,3898,3905,3911, + 3920,3924,3932,3942,3952,3957,3961,3967,3972,3982,3986,3989,3994, + 3997,4001,4006,4017,4019,4028,4047,4057,4060,4067,4070,4080,4087, + 4090,4092,4103,4113,4115,4124,4129,4138,4151,4155,4167,4171,4180, + 4199,4217,4229,4244,4248,4264,4271,4285,4290,4300,4302,4310,4318, + 4326,4334,4342,4350,4361,4365,4373,4389,4393,4398,4411,4420,4422, + 4431,4436,4442,4449,4454,4463,4471,4479,4487,4497,4502,4561,4567, + 4576,4578,4594,4602,4606,4608,4614,4619,4636,4662,4667,4669,4697, + 4714,4719,4728,4739,4746,4752,4757,4784,4795,4809,4816 ]; private static __ATN: antlr.ATN; @@ -39352,6 +39485,7 @@ export class ViewNameCreateContext extends antlr.ParserRuleContext { export class SubQuerySourceContext extends antlr.ParserRuleContext { + public _alias?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -39478,10 +39612,43 @@ export class PartitionTableFunctionSourceContext extends antlr.ParserRuleContext export class PartitionedTableFunctionContext extends antlr.ParserRuleContext { + public _alias?: Id_Context; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public atomPartitionedTableFunction(): AtomPartitionedTableFunctionContext { + return this.getRuleContext(0, AtomPartitionedTableFunctionContext)!; + } + public id_(): Id_Context | null { + return this.getRuleContext(0, Id_Context); + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_partitionedTableFunction; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterPartitionedTableFunction) { + listener.enterPartitionedTableFunction(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitPartitionedTableFunction) { + listener.exitPartitionedTableFunction(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitPartitionedTableFunction) { + return visitor.visitPartitionedTableFunction(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomPartitionedTableFunctionContext extends antlr.ParserRuleContext { public _n?: Id_Context; public _ptfsrc?: PartitionTableFunctionSourceContext; public _spec?: PartitioningSpecContext; - public _alias?: Id_Context; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -39506,14 +39673,8 @@ export class PartitionedTableFunctionContext extends antlr.ParserRuleContext { return this.getToken(HiveSqlParser.RPAREN, i); } } - public id_(): Id_Context[]; - public id_(i: number): Id_Context | null; - public id_(i?: number): Id_Context[] | Id_Context | null { - if (i === undefined) { - return this.getRuleContexts(Id_Context); - } - - return this.getRuleContext(i, Id_Context); + public id_(): Id_Context { + return this.getRuleContext(0, Id_Context)!; } public partitionTableFunctionSource(): PartitionTableFunctionSourceContext { return this.getRuleContext(0, PartitionTableFunctionSourceContext)!; @@ -39549,21 +39710,21 @@ export class PartitionedTableFunctionContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return HiveSqlParser.RULE_partitionedTableFunction; + return HiveSqlParser.RULE_atomPartitionedTableFunction; } public override enterRule(listener: HiveSqlParserListener): void { - if(listener.enterPartitionedTableFunction) { - listener.enterPartitionedTableFunction(this); + if(listener.enterAtomPartitionedTableFunction) { + listener.enterAtomPartitionedTableFunction(this); } } public override exitRule(listener: HiveSqlParserListener): void { - if(listener.exitPartitionedTableFunction) { - listener.exitPartitionedTableFunction(this); + if(listener.exitAtomPartitionedTableFunction) { + listener.exitAtomPartitionedTableFunction(this); } } public override accept(visitor: HiveSqlParserVisitor): Result | null { - if (visitor.visitPartitionedTableFunction) { - return visitor.visitPartitionedTableFunction(this); + if (visitor.visitAtomPartitionedTableFunction) { + return visitor.visitAtomPartitionedTableFunction(this); } else { return visitor.visitChildren(this); } @@ -39661,33 +39822,55 @@ export class ValuesClauseContext extends antlr.ParserRuleContext { } -export class VirtualTableSourceContext extends antlr.ParserRuleContext { +export class AtomValuesClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } public KW_TABLE(): antlr.TerminalNode { return this.getToken(HiveSqlParser.KW_TABLE, 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(HiveSqlParser.LPAREN); - } else { - return this.getToken(HiveSqlParser.LPAREN, i); - } + public LPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.LPAREN, 0)!; } public valuesClause(): ValuesClauseContext { return this.getRuleContext(0, ValuesClauseContext)!; } - 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(HiveSqlParser.RPAREN); - } else { - return this.getToken(HiveSqlParser.RPAREN, i); - } + public RPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.RPAREN, 0)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_atomValuesClause; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterAtomValuesClause) { + listener.enterAtomValuesClause(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitAtomValuesClause) { + listener.exitAtomValuesClause(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitAtomValuesClause) { + return visitor.visitAtomValuesClause(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class VirtualTableSourceContext extends antlr.ParserRuleContext { + public _alias?: TableAliasContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public atomValuesClause(): AtomValuesClauseContext { + return this.getRuleContext(0, AtomValuesClauseContext)!; + } + public RPAREN(): antlr.TerminalNode { + return this.getToken(HiveSqlParser.RPAREN, 0)!; } public tableAlias(): TableAliasContext { return this.getRuleContext(0, TableAliasContext)!; @@ -39695,6 +39878,9 @@ export class VirtualTableSourceContext extends antlr.ParserRuleContext { public KW_AS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_AS, 0); } + public LPAREN(): antlr.TerminalNode | null { + return this.getToken(HiveSqlParser.LPAREN, 0); + } public id_(): Id_Context[]; public id_(i: number): Id_Context | null; public id_(i?: number): Id_Context[] | Id_Context | null { @@ -39743,14 +39929,8 @@ export class SelectClauseContext extends antlr.ParserRuleContext { public KW_SELECT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_SELECT, 0); } - public selectItem(): SelectItemContext[]; - public selectItem(i: number): SelectItemContext | null; - public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SelectItemContext); - } - - return this.getRuleContext(i, SelectItemContext); + public selectList(): SelectListContext | null { + return this.getRuleContext(0, SelectListContext); } public KW_TRANSFORM(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_TRANSFORM, 0); @@ -39761,15 +39941,6 @@ export class SelectClauseContext extends antlr.ParserRuleContext { public QUERY_HINT(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.QUERY_HINT, 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(HiveSqlParser.COMMA); - } else { - return this.getToken(HiveSqlParser.COMMA, i); - } - } public KW_ALL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_ALL, 0); } @@ -39880,27 +40051,64 @@ export class SelectTrfmClauseContext extends antlr.ParserRuleContext { } -export class SelectItemContext extends antlr.ParserRuleContext { +export class SelectListContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableAllColumns(): TableAllColumnsContext | null { - return this.getRuleContext(0, TableAllColumnsContext); + public selectItem(): SelectItemContext[]; + public selectItem(i: number): SelectItemContext | null; + public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { + if (i === undefined) { + return this.getRuleContexts(SelectItemContext); + } + + return this.getRuleContext(i, SelectItemContext); } - public columnName(): ColumnNameContext | null { - return this.getRuleContext(0, ColumnNameContext); + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.COMMA); + } else { + return this.getToken(HiveSqlParser.COMMA, i); + } } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); + public override get ruleIndex(): number { + return HiveSqlParser.RULE_selectList; } - public id_(): Id_Context[]; - public id_(i: number): Id_Context | null; - public id_(i?: number): Id_Context[] | Id_Context | null { - if (i === undefined) { - return this.getRuleContexts(Id_Context); + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSelectList) { + listener.enterSelectList(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSelectList) { + listener.exitSelectList(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); + } else { + return visitor.visitChildren(this); } + } +} - return this.getRuleContext(i, Id_Context); + +export class SelectItemContext extends antlr.ParserRuleContext { + public _alias?: Id_Context; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); } public KW_AS(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_AS, 0); @@ -39911,6 +40119,15 @@ export class SelectItemContext extends antlr.ParserRuleContext { public RPAREN(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.RPAREN, 0); } + public id_(): Id_Context[]; + public id_(i: number): Id_Context | null; + public id_(i?: number): Id_Context[] | Id_Context | null { + if (i === undefined) { + return this.getRuleContexts(Id_Context); + } + + return this.getRuleContext(i, Id_Context); + } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -39943,6 +40160,66 @@ export class SelectItemContext extends antlr.ParserRuleContext { } +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_selectLiteralColumnName; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_selectExpressionColumnName; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TrfmClauseContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index 1f2bbff05..8aa15c504 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -257,12 +257,17 @@ import { SubQuerySourceContext } from "./HiveSqlParser.js"; import { PartitioningSpecContext } from "./HiveSqlParser.js"; import { PartitionTableFunctionSourceContext } from "./HiveSqlParser.js"; import { PartitionedTableFunctionContext } from "./HiveSqlParser.js"; +import { AtomPartitionedTableFunctionContext } from "./HiveSqlParser.js"; import { WhereClauseContext } from "./HiveSqlParser.js"; import { ValuesClauseContext } from "./HiveSqlParser.js"; +import { AtomValuesClauseContext } from "./HiveSqlParser.js"; import { VirtualTableSourceContext } from "./HiveSqlParser.js"; import { SelectClauseContext } from "./HiveSqlParser.js"; import { SelectTrfmClauseContext } from "./HiveSqlParser.js"; +import { SelectListContext } from "./HiveSqlParser.js"; import { SelectItemContext } from "./HiveSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./HiveSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./HiveSqlParser.js"; import { TrfmClauseContext } from "./HiveSqlParser.js"; import { SelectExpressionContext } from "./HiveSqlParser.js"; import { SelectExpressionListContext } from "./HiveSqlParser.js"; @@ -2861,6 +2866,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPartitionedTableFunction?: (ctx: PartitionedTableFunctionContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.atomPartitionedTableFunction`. + * @param ctx the parse tree + */ + enterAtomPartitionedTableFunction?: (ctx: AtomPartitionedTableFunctionContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.atomPartitionedTableFunction`. + * @param ctx the parse tree + */ + exitAtomPartitionedTableFunction?: (ctx: AtomPartitionedTableFunctionContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.whereClause`. * @param ctx the parse tree @@ -2881,6 +2896,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitValuesClause?: (ctx: ValuesClauseContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.atomValuesClause`. + * @param ctx the parse tree + */ + enterAtomValuesClause?: (ctx: AtomValuesClauseContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.atomValuesClause`. + * @param ctx the parse tree + */ + exitAtomValuesClause?: (ctx: AtomValuesClauseContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.virtualTableSource`. * @param ctx the parse tree @@ -2911,6 +2936,16 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectTrfmClause?: (ctx: SelectTrfmClauseContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.selectItem`. * @param ctx the parse tree @@ -2921,6 +2956,26 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectItem?: (ctx: SelectItemContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.trfmClause`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index d00818833..3da94ebf5 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -257,12 +257,17 @@ import { SubQuerySourceContext } from "./HiveSqlParser.js"; import { PartitioningSpecContext } from "./HiveSqlParser.js"; import { PartitionTableFunctionSourceContext } from "./HiveSqlParser.js"; import { PartitionedTableFunctionContext } from "./HiveSqlParser.js"; +import { AtomPartitionedTableFunctionContext } from "./HiveSqlParser.js"; import { WhereClauseContext } from "./HiveSqlParser.js"; import { ValuesClauseContext } from "./HiveSqlParser.js"; +import { AtomValuesClauseContext } from "./HiveSqlParser.js"; import { VirtualTableSourceContext } from "./HiveSqlParser.js"; import { SelectClauseContext } from "./HiveSqlParser.js"; import { SelectTrfmClauseContext } from "./HiveSqlParser.js"; +import { SelectListContext } from "./HiveSqlParser.js"; import { SelectItemContext } from "./HiveSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./HiveSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./HiveSqlParser.js"; import { TrfmClauseContext } from "./HiveSqlParser.js"; import { SelectExpressionContext } from "./HiveSqlParser.js"; import { SelectExpressionListContext } from "./HiveSqlParser.js"; @@ -1864,6 +1869,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.atomPartitionedTableFunction`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomPartitionedTableFunction?: (ctx: AtomPartitionedTableFunctionContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.whereClause`. * @param ctx the parse tree @@ -1876,6 +1887,12 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.atomValuesClause`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomValuesClause?: (ctx: AtomValuesClauseContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.virtualTableSource`. * @param ctx the parse tree @@ -1894,12 +1911,30 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.selectItem`. * @param ctx the parse tree * @return the visitor result */ visitSelectItem?: (ctx: SelectItemContext) => Result; + /** + * Visit a parse tree produced by `HiveSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `HiveSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.trfmClause`. * @param ctx the parse tree diff --git a/src/parser/common/entityCollector.ts b/src/parser/common/entityCollector.ts index 6fb28820f..e5c078b9a 100644 --- a/src/parser/common/entityCollector.ts +++ b/src/parser/common/entityCollector.ts @@ -34,6 +34,9 @@ export interface StmtContext { readonly rootStmt: StmtContext | null; readonly parentStmt: StmtContext | null; readonly isContainCaret?: boolean; + readonly _scopeDepth: number; + readonly _ctx: ParserRuleContext; + readonly text: string; } export function toStmtContext( @@ -46,13 +49,16 @@ export function toStmtContext( ): StmtContext | null { const text = ctxToText(ctx, input); if (!text) return null; - const { text: _, ...position } = text; + const { text: stmtText, ...position } = text; return { stmtContextType: type, position, rootStmt: rootStmt ?? null, parentStmt: parentStmt ?? null, isContainCaret, + text: stmtText, + _scopeDepth: type === StmtContextType.COMMON_STMT ? 0 : (parentStmt?._scopeDepth ?? 0) + 1, + _ctx: ctx, }; } @@ -82,46 +88,108 @@ export interface Argument { argName?: WordRange; argType: WordRange; } +/** + * Base interface for all entity contexts in SQL parsing + */ export interface BaseEntityContext { + /** The type of entity context */ readonly entityContextType: EntityContextType; + /** The text representation of this entity */ readonly text: string; + /** The position information for this entity */ readonly position: WordPosition; + /** The statement this entity belongs to */ readonly belongStmt: StmtContext; - reference?: string | EntityContext; // reference entity + /** Reference to another entity or string */ + reference?: string | EntityContext; + /** Whether the entity is accessible from the caret position */ + isAccessible: boolean; + /** Entities related to this entity */ + relatedEntities: EntityContext[] | null; + /** The parser rule context for this entity */ + _ctx: ParserRuleContext; + /** Comment attribute for this entity */ [AttrName.comment]: WordRange | null; - [AttrName.alias]?: WordRange | null; // alias token + /** Alias attribute for this entity */ + [AttrName.alias]?: WordRange | null; +} + +/** + * Types of column declarations + */ +export enum ColumnDeclareType { + /** Literal column name */ + COMMON, + /** Using asterisk syntax (tableName.*) */ + ALL, + /** Complex expressions like subqueries, case statements, function calls */ + EXPRESSION, +} + +/** + * Types of table declarations + */ +export enum TableDeclareType { + /** Regular table reference */ + COMMON, + /** Table defined by expression (e.g., subquery) */ + EXPRESSION, } export interface CommonEntityContext extends BaseEntityContext { - relatedEntities: CommonEntityContext[] | null; + /** Columns associated with this entity */ columns?: ColumnEntityContext[]; + /** Type of table declaration */ + declareType?: TableDeclareType; } export interface ColumnEntityContext extends BaseEntityContext { + /** Type of column declaration */ + declareType?: ColumnDeclareType; + /** Column type information */ [AttrName.colType]: WordRange | null; + /** Column alias */ + [AttrName.alias]?: WordRange | null; } export interface FuncEntityContext extends BaseEntityContext { - relatedEntities: CommonEntityContext[] | null; - arguments: Argument[] | null; // function arguments - returns?: Argument; // function return value + /** Function arguments */ + arguments: Argument[] | null; + /** Function return value */ + returns?: Argument; } export type EntityContext = CommonEntityContext | FuncEntityContext | ColumnEntityContext; export function isCommonEntityContext(entity: EntityContext): entity is CommonEntityContext { if (!entity) return false; - return 'relatedEntities' in entity && !('arguments' in entity); + return !isFuncEntityContext(entity) && !isColumnEntityContext(entity); } export function isFuncEntityContext(entity: EntityContext): entity is FuncEntityContext { if (!entity) return false; - return 'arguments' in entity; + return [EntityContextType.FUNCTION, EntityContextType.FUNCTION_CREATE].includes( + entity.entityContextType + ); } export function isColumnEntityContext(entity: EntityContext): entity is ColumnEntityContext { if (!entity) return false; - return AttrName.colType in entity; + return [EntityContextType.COLUMN, EntityContextType.COLUMN_CREATE].includes( + entity.entityContextType + ); +} + +/** + * Check if ctx is a child node of a specific rule type + */ +export function isChildContextOf(ctx: ParserRuleContext, parentRuleIndex: number): boolean { + let parentCtx = ctx.parent; + while (parentCtx) { + if (parentCtx.ruleIndex === parentRuleIndex) return true; + parentCtx = parentCtx.parent; + } + return false; } /** @@ -132,12 +200,17 @@ interface AttrInfo { endContextList: string[]; } +interface MetaInfo { + declareType: TableDeclareType | ColumnDeclareType; +} + export function toEntityContext( ctx: ParserRuleContext, type: EntityContextType, input: string, belongStmt: StmtContext, - attrInfo?: AttrInfo[] + attrInfo?: AttrInfo[], + metaInfo?: MetaInfo ): EntityContext | null { const word = ctxToText(ctx, input); if (!word) return null; @@ -151,6 +224,8 @@ export function toEntityContext( text, position, belongStmt, + declareType: metaInfo?.declareType, + _ctx: ctx, [AttrName.comment]: null, }; switch (entityInfo.entityContextType) { @@ -216,6 +291,7 @@ export function findAttribute( if (parent?.constructor?.name && !endContextNameList.includes(parent?.constructor?.name)) { attrVal = findAttribute(parent, keyName, endContextNameList); } + if (!attrVal) { if (parent?.children) { attrVal = findAttributeChildren(parent, keyName); @@ -244,6 +320,29 @@ function findAttributeChildren( } return attrVal; } + +/** + * Check if an entity is contained within the range entity's context + * @param entity - The entity to check if it's contained + * @param rangeEntity - The entity that defines the containing range + * @returns true if entity is contained within rangeEntity's range + */ +function isEntityInScope(entity: EntityContext, rangeEntity: EntityContext): boolean { + const entityStart = entity._ctx.start?.tokenIndex; + const entityStop = entity._ctx.stop?.tokenIndex; + const rangeStart = rangeEntity._ctx.start?.tokenIndex; + const rangeStop = rangeEntity._ctx.stop?.tokenIndex; + + return ( + entityStart != null && + entityStop != null && + rangeStart != null && + rangeStop != null && + rangeStart <= entityStart && + rangeStop >= entityStop + ); +} + /** * @todo: Handle alias, includes column alias, table alias, query as alias and so on. * @todo: [may be need] Combine the entities in each clause. @@ -257,6 +356,8 @@ export abstract class EntityCollector { this._stmtStack = new SimpleStack(); this._entityStack = new SimpleStack(); this._rootStmt = null; + this._caretStmtScopeDepth = 0; + this._caretStmt = null; } private readonly _input: string; private readonly _allTokens: Token[]; @@ -266,6 +367,16 @@ export abstract class EntityCollector { private readonly _stmtStack: SimpleStack; /** Staging entities inside a single statement or clause. */ private readonly _entityStack: SimpleStack; + + /** + * The scope depth of the statement containing the caret. + * This is used to determine the accessibility of entities. + */ + private _caretStmtScopeDepth: number; + + /** The nearest statement containing the caret */ + private _caretStmt: StmtContext | null; + /** * Always point to the first non-commonStmt at the bottom of the _stmtStack, * unless there are only commonStmts in the _stmtStack. @@ -295,6 +406,139 @@ export abstract class EntityCollector { this._rootStmt = null; } + exitProgram() { + const entities = Array.from(this._entitiesSet); + this.attachAccessibleToEntities(entities); + this._entityStack.clear(); + debugger; + } + + /** + * Determines if the caret is inside a derived table subquery + * For example, in: SELECT id FROM t1, (SELECT name from t2) as t3 + * Checks if the caret is inside the subquery (SELECT name from t2) + * @returns Whether the caret is inside a derived table subquery + */ + protected isCaretInDerivedTableStmt(): boolean { + if (!this._caretStmt) { + return false; + } + + // Check all entities to find a derived table entity containing the subquery where the caret is located + return this.getEntities().some( + (entity) => + entity.entityContextType === EntityContextType.TABLE && + entity.belongStmt.isContainCaret && + entity.relatedEntities?.some( + (relatedEntity) => + relatedEntity.entityContextType === EntityContextType.QUERY_RESULT && + relatedEntity.belongStmt === this._caretStmt + ) + ); + } + + /** + * Adds accessibility markers to entities + * Implements SQL query scope rules: + * 1. When the caret is in an outer query, all tables are accessible + * 2. When the caret is in a subquery, only tables within the subquery are accessible, not tables from outer queries + * @param entities The list of entities to process + */ + protected attachAccessibleToEntities(entities: EntityContext[]): void { + if (!entities.length) { + return; + } + + // Determine if the caret is inside a derived table subquery + const isCaretInDerivedTableStmt = this.isCaretInDerivedTableStmt(); + + for (const entity of entities) { + if (entity.isAccessible !== undefined) { + continue; + } + + const entityScopeDepth = entity.belongStmt._scopeDepth ?? 0; + + // First, the entity must be in a statement containing the caret to potentially be accessible + entity.isAccessible = entity.belongStmt.isContainCaret ?? false; + + // For table-type entities, we need to judge accessibility based on scope depth + if (entity.entityContextType === EntityContextType.TABLE) { + entity.isAccessible = + entity.isAccessible && + ((!isCaretInDerivedTableStmt && + entityScopeDepth <= this._caretStmtScopeDepth) || + (isCaretInDerivedTableStmt && + entityScopeDepth === this._caretStmtScopeDepth)); + } + + // Recursively process related entities + if (entity.relatedEntities) { + this.attachAccessibleToEntities(entity.relatedEntities); + } + + // Process columns of the table + if ((entity as CommonEntityContext).columns) { + const columnEntities = (entity as CommonEntityContext).columns || []; + this.attachAccessibleToEntities(columnEntities); + } + } + } + + /** + * Attach query result to column if the column is derived from expression. + */ + protected attachQueryResultToColumn( + column: ColumnEntityContext, + queryResults: CommonEntityContext[] + ): void { + const relatedEntities = queryResults.filter((queryResult) => + isEntityInScope(queryResult, column) + ); + column.relatedEntities = relatedEntities; + } + + /** + * Attach related columns to query result + */ + protected attachColumnsToQueryResult( + queryResult: CommonEntityContext, + columns: ColumnEntityContext[] + ): void { + const relatedColumns = columns.filter( + (column) => column.belongStmt === queryResult.belongStmt + ); + queryResult.columns = relatedColumns; + } + + /** + * Attach query result to table if the table is derived from expression. + */ + protected attachQueryResultToTable( + table: CommonEntityContext, + queryResults: CommonEntityContext[] + ): void { + const relatedQueryResults = queryResults.filter((queryResult) => + isEntityInScope(queryResult, table) + ); + table.relatedEntities = relatedQueryResults; + } + + /** + * Gets query result entities inside a statement + * @param stmt The statement to search within + * @returns Array of query result entity contexts + */ + protected getQueryResultEntitiesInsideStmt(stmt: StmtContext): CommonEntityContext[] { + return this.getEntities() + .filter( + (entity) => + entity.entityContextType === EntityContextType.QUERY_RESULT && + entity.belongStmt.parentStmt === stmt + ) + .filter(isCommonEntityContext); + } + /** * The antlr4 will ignore hidden tokens, if we type whitespace at the end of a statement, * the whitespace token will not as stop token, so we consider the whitespace token as a part of the nonhidden token in front of it @@ -320,6 +564,9 @@ export abstract class EntityCollector { !!ctx.stop && ctx.start.tokenIndex <= this._caretTokenIndex && ctx.stop.tokenIndex >= this.getPrevNonHiddenTokenIndex(this._caretTokenIndex); + if (isContainCaret && type !== StmtContextType.COMMON_STMT) { + this._caretStmtScopeDepth++; + } } const stmtContext = toStmtContext( ctx, @@ -344,22 +591,38 @@ export abstract class EntityCollector { protected popStmt() { const stmtContext = this._stmtStack.pop(); - if (stmtContext && this._rootStmt === stmtContext) { - this._rootStmt = this._stmtStack.peek(); + if (stmtContext) { + if (stmtContext.stmtContextType === StmtContextType.COMMON_STMT) { + this._rootStmt = this._stmtStack.peek(); + } if (!this._entityStack.isEmpty()) { this.combineEntitiesAndAdd(stmtContext); } + // If the current statement contains the caret and its scope depth equals the caret statement's scope depth + // then set it as the nearest statement containing the caret + if ( + stmtContext.isContainCaret && + stmtContext._scopeDepth === this._caretStmtScopeDepth + ) { + this._caretStmt = stmtContext; + } } return stmtContext; } - protected pushEntity(ctx: ParserRuleContext, type: EntityContextType, attrInfo?: AttrInfo[]) { + protected pushEntity( + ctx: ParserRuleContext, + type: EntityContextType, + attrInfo?: AttrInfo[], + metaInfo?: MetaInfo + ) { const entityContext = toEntityContext( ctx, type, this._input, this._stmtStack.peek(), - attrInfo + attrInfo, + metaInfo ); if (entityContext) { if (this._stmtStack.isEmpty()) { @@ -407,44 +670,142 @@ export abstract class EntityCollector { stmtContext.stmtContextType === StmtContextType.CREATE_TABLE_STMT ) { return this.combineCreateTableOrViewStmtEntities(stmtContext, entitiesInsideStmt); + } else if (stmtContext.stmtContextType === StmtContextType.SELECT_STMT) { + const tableSourceEntities = this.combineFromTableSource( + stmtContext, + entitiesInsideStmt + ); + const queryResultEntities = this.combineQueryResultStmtEntities( + stmtContext, + entitiesInsideStmt + ); + const otherEntities = entitiesInsideStmt.filter( + (entity) => + ![ + EntityContextType.QUERY_RESULT, + EntityContextType.TABLE, + EntityContextType.COLUMN, + ].includes(entity.entityContextType) + ); + return Array.from( + new Set([...tableSourceEntities, ...queryResultEntities, ...otherEntities]) + ); } return entitiesInsideStmt; } + protected combineQueryResultStmtEntities( + stmtContext: StmtContext, + entitiesInsideStmt: EntityContext[] + ): EntityContext[] { + if (!stmtContext || !entitiesInsideStmt?.length) { + return []; + } + + const columnEntities: ColumnEntityContext[] = []; + const relatedTableEntities: CommonEntityContext[] = []; + const finalEntities: EntityContext[] = []; + const queryResultEntitiesInsideStmt: CommonEntityContext[] = + this.getQueryResultEntitiesInsideStmt(stmtContext); + + // Categorize and process entities + entitiesInsideStmt.forEach((entity) => { + if (entity.belongStmt !== stmtContext) return; + if ( + entity.entityContextType === EntityContextType.QUERY_RESULT && + isCommonEntityContext(entity) + ) { + finalEntities.push(entity); + } else if ( + entity.entityContextType === EntityContextType.COLUMN && + isColumnEntityContext(entity) + ) { + if (entity.declareType === ColumnDeclareType.EXPRESSION) { + this.attachQueryResultToColumn(entity, queryResultEntitiesInsideStmt); + } + columnEntities.push(entity); + } else if ( + entity.entityContextType === EntityContextType.TABLE && + isCommonEntityContext(entity) + ) { + relatedTableEntities.push(entity); + } + }); + + // combine collected entities to query result entity + finalEntities.forEach((queryResultEntity) => { + this.attachColumnsToQueryResult( + queryResultEntity as CommonEntityContext, + columnEntities + ); + queryResultEntity.relatedEntities = relatedTableEntities; + }); + + return finalEntities; + } + + protected combineFromTableSource( + stmtContext: StmtContext, + entitiesInsideStmt: EntityContext[] + ): EntityContext[] { + const finalEntities: EntityContext[] = []; + const queryResultEntitiesInsideStmt = this.getQueryResultEntitiesInsideStmt(stmtContext); + const tableEntities = ( + entitiesInsideStmt.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) + ); + + tableEntities.forEach((table) => { + // If it's an EXPRESSION type (subquery), need to associate with QUERY_RESULT entities + if (table.declareType === TableDeclareType.EXPRESSION) { + this.attachQueryResultToTable(table, queryResultEntitiesInsideStmt); + } + finalEntities.push(table); + }); + + return finalEntities; + } + protected combineCreateTableOrViewStmtEntities( stmtContext: StmtContext, entitiesInsideStmt: EntityContext[] ): EntityContext[] { const columns: EntityContext[] = []; const relatedEntities: EntityContext[] = []; + const queryResultEntitiesInsideStmt: EntityContext[] = + this.getQueryResultEntitiesInsideStmt(stmtContext); let mainEntity: EntityContext | null = null; - const finalEntities = entitiesInsideStmt.reduce((result, entity) => { - if (entity.belongStmt !== stmtContext) { - if ( - entity.entityContextType !== EntityContextType.COLUMN && - entity.entityContextType !== EntityContextType.COLUMN_CREATE + const finalEntities = [...entitiesInsideStmt, ...queryResultEntitiesInsideStmt].reduce( + (result, entity) => { + if (entity.belongStmt !== stmtContext) { + if ( + entity.entityContextType !== EntityContextType.COLUMN && + entity.entityContextType !== EntityContextType.COLUMN_CREATE + ) { + relatedEntities.push(entity); + result.push(entity); + } + return result; + } + + if (entity.entityContextType === EntityContextType.COLUMN_CREATE) { + columns.push(entity); + } else if ( + entity.entityContextType === EntityContextType.TABLE_CREATE || + entity.entityContextType === EntityContextType.VIEW_CREATE ) { + mainEntity = entity; + result.push(entity); + return result; + } else if (entity.entityContextType !== EntityContextType.COLUMN) { relatedEntities.push(entity); result.push(entity); } return result; - } - - if (entity.entityContextType === EntityContextType.COLUMN_CREATE) { - columns.push(entity); - } else if ( - entity.entityContextType === EntityContextType.TABLE_CREATE || - entity.entityContextType === EntityContextType.VIEW_CREATE - ) { - mainEntity = entity; - result.push(entity); - return result; - } else if (entity.entityContextType !== EntityContextType.COLUMN) { - relatedEntities.push(entity); - result.push(entity); - } - return result; - }, [] as EntityContext[]); + }, + [] as EntityContext[] + ); if (mainEntity && columns.length) { if (isCommonEntityContext(mainEntity)) { mainEntity = Object.assign(mainEntity, { diff --git a/src/parser/common/types.ts b/src/parser/common/types.ts index ffb7bdb65..e2d1badba 100644 --- a/src/parser/common/types.ts +++ b/src/parser/common/types.ts @@ -44,6 +44,8 @@ export enum EntityContextType { COLUMN = 'column', /** column name that will be created */ COLUMN_CREATE = 'columnCreate', + /** query result */ + QUERY_RESULT = 'queryResult', } /** diff --git a/src/parser/hive/hiveEntityCollector.ts b/src/parser/hive/hiveEntityCollector.ts index 1088defab..d54f3b112 100644 --- a/src/parser/hive/hiveEntityCollector.ts +++ b/src/parser/hive/hiveEntityCollector.ts @@ -1,5 +1,7 @@ import { HiveSqlParserListener } from '../../lib'; import { + AtomPartitionedTableFunctionContext, + AtomValuesClauseContext, ColumnNameCommentContext, ColumnNameCreateContext, ColumnNameTypeConstraintContext, @@ -13,17 +15,34 @@ import { FromInsertStmtContext, FromSelectStmtContext, FunctionNameCreateContext, + HiveSqlParser, InsertStmtContext, + PartitionedTableFunctionContext, + QueryStatementExpressionContext, + SelectExpressionColumnNameContext, + SelectItemContext, + SelectListContext, + SelectLiteralColumnNameContext, SelectStatementContext, StatementContext, + SubQuerySourceContext, + TableAllColumnsContext, TableNameContext, TableNameCreateContext, TableSourceContext, UniqueJoinSourceContext, ViewNameContext, ViewNameCreateContext, + VirtualTableSourceContext, } from '../../lib/hive/HiveSqlParser'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + isChildContextOf, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class HiveEntityCollector extends EntityCollector implements HiveSqlParserListener { @@ -37,22 +56,81 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse ]); } + /** Table Entity Rules */ exitTableName(ctx: TableNameContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [TableSourceContext.name, UniqueJoinSourceContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [TableSourceContext.name, UniqueJoinSourceContext.name], + }, + ], + { + declareType: TableDeclareType.COMMON, + } + ); + } + + /** Virtual Table Entity Rules */ + exitAtomValuesClause(ctx: AtomValuesClauseContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; + + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [VirtualTableSourceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + /** SubQuery Table Entity Rules */ + exitQueryStatementExpression(ctx: QueryStatementExpressionContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; + + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [SubQuerySourceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + /** Partitioned Table Entity Rules */ + exitAtomPartitionedTableFunction(ctx: AtomPartitionedTableFunctionContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; + + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [PartitionedTableFunctionContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } + /** Column Entity Rules */ exitColumnNameCreate(ctx: ColumnNameCreateContext) { this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ { @@ -66,6 +144,47 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse ]); } + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_selectItem)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.COMMON, + } + ); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_selectItem)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + if (!isChildContextOf(ctx, HiveSqlParser.RULE_selectItem)) return; + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.ALL, + }); + } + exitViewNameCreate(ctx: ViewNameCreateContext) { this.pushEntity(ctx, EntityContextType.VIEW_CREATE, [ { @@ -75,6 +194,10 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse ]); } + exitSelectList(ctx: SelectListContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + exitViewName(ctx: ViewNameContext) { this.pushEntity(ctx, EntityContextType.VIEW); } diff --git a/test/parser/hive/contextCollect/entityCollector.test.ts b/test/parser/hive/contextCollect/entityCollector.test.ts index 726dd5ecd..a79221909 100644 --- a/test/parser/hive/contextCollect/entityCollector.test.ts +++ b/test/parser/hive/contextCollect/entityCollector.test.ts @@ -1019,4 +1019,58 @@ describe('Hive entity collector tests', () => { expect(joinTableEntity.relatedEntities).toBeNull(); } }); + + test('table entities are accessible when caret is in outer query', () => { + const hiveSql = new HiveSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = hiveSql.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const hiveSql = new HiveSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = hiveSql.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); }); From 35dd70bdcf37af2fee88e9f61e26c3febe957584 Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Fri, 13 Jun 2025 10:25:27 +0800 Subject: [PATCH 2/3] feat: support query result and derived table entity collecting --- src/grammar/flink/FlinkSqlParser.g4 | 54 +- src/grammar/impala/ImpalaSqlParser.g4 | 40 +- src/grammar/mysql/MySqlParser.g4 | 37 +- src/grammar/postgresql/PostgreSqlParser.g4 | 69 +- src/grammar/spark/SparkSqlParser.g4 | 46 +- src/grammar/trino/TrinoSql.g4 | 38 +- src/lib/flink/FlinkSqlParser.interp | 11 +- src/lib/flink/FlinkSqlParser.ts | 6305 ++--- src/lib/flink/FlinkSqlParserListener.ts | 99 + src/lib/flink/FlinkSqlParserVisitor.ts | 63 + src/lib/impala/ImpalaSqlParser.interp | 8 +- src/lib/impala/ImpalaSqlParser.ts | 6801 +++--- src/lib/impala/ImpalaSqlParserListener.ts | 79 +- src/lib/impala/ImpalaSqlParserVisitor.ts | 49 +- src/lib/mysql/MySqlParser.interp | 7 +- src/lib/mysql/MySqlParser.ts | 20265 +++++++-------- src/lib/mysql/MySqlParserListener.ts | 81 +- src/lib/mysql/MySqlParserVisitor.ts | 47 +- src/lib/postgresql/PostgreSqlParser.interp | 4 +- src/lib/postgresql/PostgreSqlParser.ts | 20330 ++++++++-------- .../postgresql/PostgreSqlParserListener.ts | 61 +- src/lib/postgresql/PostgreSqlParserVisitor.ts | 37 +- src/lib/spark/SparkSqlParser.interp | 8 +- src/lib/spark/SparkSqlParser.ts | 10291 ++++---- src/lib/spark/SparkSqlParserListener.ts | 130 +- src/lib/spark/SparkSqlParserVisitor.ts | 81 +- src/lib/trino/TrinoSql.interp | 8 +- src/lib/trino/TrinoSqlListener.ts | 127 +- src/lib/trino/TrinoSqlParser.ts | 9574 ++++---- src/lib/trino/TrinoSqlVisitor.ts | 76 +- src/parser/common/basicSQL.ts | 2 + src/parser/common/entityCollector.ts | 81 +- src/parser/flink/flinkEntityCollector.ts | 140 +- src/parser/hive/hiveEntityCollector.ts | 3 - src/parser/impala/impalaEntityCollector.ts | 119 +- src/parser/mysql/mysqlEntityCollector.ts | 103 +- .../postgresql/postgreEntityCollector.ts | 125 +- src/parser/spark/sparkEntityCollector.ts | 151 +- src/parser/trino/trinoEntityCollector.ts | 96 +- 39 files changed, 39702 insertions(+), 35944 deletions(-) diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 55a0eabf4..b4fb48cc9 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -479,10 +479,34 @@ selectStatement ; selectClause - : KW_SELECT setQuantifier? ( - ASTERISK_SIGN - | projectItemDefinition (COMMA projectItemDefinition)* - ) + : KW_SELECT setQuantifier? selectList + ; + +selectList + : columnProjectItem (COMMA columnProjectItem)* + ; + +columnProjectItem + : selectWindowItemColumnName + | selectLiteralColumnName (columnAlias | KW_AS? expression)? + | selectExpressionColumnName (columnAlias | KW_AS? columnName)? + | tableAllColumns columnAlias? + ; + +selectWindowItemColumnName + : overWindowItem + ; + +selectExpressionColumnName + : expression + ; + +selectLiteralColumnName + : columnName + ; + +columnAlias + : KW_AS? alias=identifier ; projectItemDefinition @@ -491,9 +515,13 @@ projectItemDefinition | expression (KW_AS? columnName)? ; +tableAllColumns + : (identifier (DOT identifier)* DOT)? ASTERISK_SIGN + ; + overWindowItem - : primaryExpression KW_OVER windowSpec KW_AS identifier - | primaryExpression KW_OVER errorCapturingIdentifier KW_AS identifier + : primaryExpression KW_OVER windowSpec KW_AS alias=identifier + | primaryExpression KW_OVER errorCapturingIdentifier KW_AS alias=identifier ; fromClause @@ -515,8 +543,16 @@ tableReference tablePrimary : KW_TABLE? tablePath systemTimePeriod? | viewPath systemTimePeriod? - | KW_LATERAL KW_TABLE LR_BRACKET functionName LR_BRACKET functionParam (COMMA functionParam)* RR_BRACKET RR_BRACKET - | KW_LATERAL? LR_BRACKET queryStatement RR_BRACKET + | atomFunctionTable + | atomExpressionTable + ; + +atomFunctionTable + : KW_LATERAL KW_TABLE LR_BRACKET functionName LR_BRACKET functionParam (COMMA functionParam)* RR_BRACKET RR_BRACKET + ; + +atomExpressionTable + : KW_LATERAL? LR_BRACKET queryStatement RR_BRACKET | KW_UNNEST LR_BRACKET expression RR_BRACKET ; @@ -910,7 +946,7 @@ viewPathCreate ; uid - : identifier (DOT identifier)*? + : identifier (DOT identifier)* ; withOption diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index 75cb5889d..af9aa6360 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -767,11 +767,13 @@ sortItem ; querySpecification - : KW_SELECT setQuantifier? (KW_STRAIGHT_JOIN)? selectItem (COMMA selectItem)* ( - KW_FROM relation (COMMA relation)* - )? (KW_WHERE where=booleanExpression)? (KW_GROUP KW_BY groupBy)? ( - KW_HAVING having=booleanExpression - )? + : KW_SELECT setQuantifier? (KW_STRAIGHT_JOIN)? selectList (KW_FROM relation (COMMA relation)*)? ( + KW_WHERE where=booleanExpression + )? (KW_GROUP KW_BY groupBy)? (KW_HAVING having=booleanExpression)? + ; + +selectList + : selectItem (COMMA selectItem)* ; groupBy @@ -797,9 +799,25 @@ setQuantifier ; selectItem - : columnItem (KW_AS? identifier)? # selectSingle - | qualifiedName DOT ASTERISK # selectAll - | ASTERISK # selectAll + : selectLiteralColumnName columnAlias? + | selectExpressionColumnName columnAlias? + | tableAllColumns columnAlias? + ; + +columnAlias + : KW_AS alias=identifier + ; + +selectLiteralColumnName + : columnNamePath columnAlias? + ; + +selectExpressionColumnName + : expression + ; + +tableAllColumns + : (qualifiedName DOT)? ASTERISK ; relation @@ -851,11 +869,15 @@ columnAliases relationPrimary : tableOrViewPath - | KW_LATERAL? subQueryRelation + | atomSubQueryTableSource | unnest | parenthesizedRelation ; +atomSubQueryTableSource + : KW_LATERAL? subQueryRelation + ; + subQueryRelation : LPAREN queryStatement RPAREN ; diff --git a/src/grammar/mysql/MySqlParser.g4 b/src/grammar/mysql/MySqlParser.g4 index bc299c294..41c50fd5f 100644 --- a/src/grammar/mysql/MySqlParser.g4 +++ b/src/grammar/mysql/MySqlParser.g4 @@ -1087,9 +1087,14 @@ tableSource tableSourceItem : tableName (KW_PARTITION '(' partitionNames ')')? (KW_AS? alias=uid)? ( indexHint (',' indexHint)* - )? # atomTableItem - | KW_LATERAL? (selectStatement | '(' parenthesisSubquery=selectStatement ')') KW_AS? alias=uid fullColumnNames? # subqueryTableItem - | '(' tableSources ')' # tableSourcesItem + )? # atomTableItem + | KW_LATERAL? atomSubQueryTableSource KW_AS? alias=uid fullColumnNames? # subqueryTableItem + | '(' tableSources ')' # tableSourcesItem + ; + +atomSubQueryTableSource + : selectStatement + | '(' parenthesisSubquery=selectStatement ')' ; // (col_list) | (col_alias [, col_alias] ...) @@ -1196,14 +1201,30 @@ selectSpec ; selectElements - : (star='*' | selectElement) (',' selectElement)* + : (pureAllColumns | selectElement) (',' selectElement)* ; selectElement - : (LOCAL_ID VAR_ASSIGN)? expression (KW_AS? alias=uid)? # selectExpressionElement - | functionCall (KW_AS? alias=uid)? # selectFunctionElement - | select_element=fullId '.' '*' # selectStarElement - | columnName (KW_AS? alias=uid)? # selectColumnElement + : tableAllColumns + | selectLiteralColumnName (KW_AS? alias=uid)? + | selectExpressionColumnName (KW_AS? alias=uid)? + ; + +tableAllColumns + : fullId DOT STAR + ; + +pureAllColumns + : STAR + ; + +selectLiteralColumnName + : columnName + ; + +selectExpressionColumnName + : (LOCAL_ID VAR_ASSIGN)? expression # selectExpressionElement + | functionCall # selectFunctionElement ; intoClause diff --git a/src/grammar/postgresql/PostgreSqlParser.g4 b/src/grammar/postgresql/PostgreSqlParser.g4 index 21462305e..23f7d0c71 100644 --- a/src/grammar/postgresql/PostgreSqlParser.g4 +++ b/src/grammar/postgresql/PostgreSqlParser.g4 @@ -1,32 +1,27 @@ /* - * [The "MIT license"] - * Copyright (C) 2014 Sam Harwell, Tunnel Vision Laboratories, LLC - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is + * [The "MIT license"] Copyright (C) 2014 Sam Harwell, Tunnel Vision Laboratories, LLC + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + * associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, + * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: - * - * 1. The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * 2. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - * 3. Except as contained in this notice, the name of Tunnel Vision - * Laboratories, LLC. shall not be used in advertising or otherwise to - * promote the sale, use or other dealings in this Software without prior - * written authorization from Tunnel Vision Laboratories, LLC. + * + * 1. The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. 2. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + * ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. 3. Except as contained in this notice, the name of Tunnel Vision + * Laboratories, LLC. shall not be used in advertising or otherwise to promote the sale, use or + * other dealings in this Software without prior written authorization from Tunnel Vision + * Laboratories, LLC. */ /** - * This file is an adaptation of antlr's sql/postgresql/PostgreSQLParser.g4 grammar. - * Reference: https://github.com/antlr/grammars-v4/blob/master/sql/postgresql/PostgreSQLParser.g4 + * This file is an adaptation of antlr's sql/postgresql/PostgreSQLParser.g4 grammar. Reference: + * https://github.com/antlr/grammars-v4/blob/master/sql/postgresql/PostgreSQLParser.g4 */ /** @@ -2142,12 +2137,8 @@ from_list table_ref : ( - (relation_expr | (KW_ONLY? view_name STAR? column_list? where_clause?)) alias_clause? tablesample_clause? - | KW_LATERAL? ( - xmltable alias_clause? - | func_table func_alias_clause? - | select_with_parens alias_clause? - ) + (relation_expr | ( KW_ONLY? view_name STAR? column_list? where_clause?)) alias_clause? tablesample_clause? + | KW_LATERAL? expressionTable | OPEN_PAREN table_ref ( KW_CROSS KW_JOIN table_ref | KW_NATURAL join_type? KW_JOIN table_ref @@ -2160,6 +2151,12 @@ table_ref )* ; +expressionTable + : xmltable alias_clause? + | func_table func_alias_clause? + | select_with_parens alias_clause? + ; + alias_clause : KW_AS? alias=colid (OPEN_PAREN name_list CLOSE_PAREN)? ; @@ -2585,8 +2582,8 @@ column_expr ; column_expr_noparen - : expression - | column_name + : expression # selectExpressionColumnName + | column_name # selectLiteralColumnName ; func_arg_list @@ -2650,8 +2647,12 @@ target_list ; target_el - : column_expr_noparen (KW_AS collabel | identifier |) # target_label - | STAR # target_star + : tableAllColumns # target_star + | column_expr_noparen (KW_AS? alias=identifier |) # target_label + ; + +tableAllColumns + : (colid DOT)* STAR ; qualified_name_list diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index b57f65b61..9130658da 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -491,7 +491,7 @@ queryPrimary : querySpecification | fromStatement | KW_TABLE tableName - | inlineTable + | KW_VALUES expression (COMMA expression)* tableAlias | LEFT_PAREN query RIGHT_PAREN ; @@ -530,7 +530,7 @@ transformClause ; selectClause - : KW_SELECT (hints+=hint)* setQuantifier? namedExpressionSeq + : KW_SELECT (hints+=hint)* setQuantifier? selectList ; setClause @@ -799,15 +799,19 @@ identifierComment ; relationPrimary - : (tableName | viewName | identifierReference) temporalClause? sample? tableAlias - | LEFT_PAREN query RIGHT_PAREN sample? tableAlias - | LEFT_PAREN relation RIGHT_PAREN sample? tableAlias - | inlineTable - | functionTable + : (tableName | viewName | identifierReference) temporalClause? sample? tableAlias # tableSource + | atomSubQueryTableSource sample? tableAlias # subQueryTableSource + | LEFT_PAREN relation RIGHT_PAREN sample? tableAlias # joinTableSource + | inlineTable tableAlias # inlineTableSource + | functionTable # functionTableSource + ; + +atomSubQueryTableSource + : LEFT_PAREN query RIGHT_PAREN ; inlineTable - : KW_VALUES expression (COMMA expression)* tableAlias + : KW_VALUES expression (COMMA expression)* ; functionTableSubqueryArgument @@ -847,7 +851,11 @@ functionTableArgument ; functionTable - : functionName LEFT_PAREN (functionTableArgument (COMMA functionTableArgument)*)? RIGHT_PAREN tableAlias + : atomFunctionTable tableAlias + ; + +atomFunctionTable + : functionName LEFT_PAREN (functionTableArgument (COMMA functionTableArgument)*)? RIGHT_PAREN ; tableAlias @@ -891,14 +899,32 @@ viewIdentifier : (db=errorCapturingIdentifier DOT)? view=errorCapturingIdentifier ; +selectLiteralColumnName + : columnName + ; + +selectExpressionColumnName + : expression + ; + +tableAllColumns + : (qualifiedName DOT)* ASTERISK + ; + namedExpression - : (columnName | expression) (KW_AS? (name=errorCapturingIdentifier | identifierList))? + : (tableAllColumns | selectLiteralColumnName | selectExpressionColumnName) ( + KW_AS? (name=errorCapturingIdentifier | identifierList) + )? ; namedExpressionSeq : namedExpression (COMMA namedExpression)* ; +selectList + : namedExpressionSeq + ; + partitionFieldList : LEFT_PAREN fields+=partitionField (COMMA fields+=partitionField)* RIGHT_PAREN ; diff --git a/src/grammar/trino/TrinoSql.g4 b/src/grammar/trino/TrinoSql.g4 index 6ce90a081..626397a99 100644 --- a/src/grammar/trino/TrinoSql.g4 +++ b/src/grammar/trino/TrinoSql.g4 @@ -282,13 +282,17 @@ sortItem ; querySpecification - : KW_SELECT setQuantifier? selectItem (',' selectItem)* (KW_FROM relation (',' relation)*)? ( + : KW_SELECT setQuantifier? selectList (KW_FROM relation (',' relation)*)? ( KW_WHERE where=booleanExpression )? (KW_GROUP KW_BY groupBy)? (KW_HAVING having=booleanExpression)? ( KW_WINDOW windowDefinition (',' windowDefinition)* )? ; +selectList + : selectItem (',' selectItem)* + ; + groupBy : setQuantifier? groupingElement (',' groupingElement)* ; @@ -330,9 +334,25 @@ setQuantifier ; selectItem - : (columnRef | expression) (KW_AS? alias=identifier)? # selectSingle - | primaryExpression '.' ASTERISK (KW_AS columnAliases)? # selectAll - | ASTERISK # selectAll + : (selectLiteralColumnName | selectExpressionColumnName) (KW_AS? alias=identifier)? + | tableAllColumns (KW_AS columnAliases)? + | selectAllWithoutTable + ; + +selectAllWithoutTable + : ASTERISK + ; + +tableAllColumns + : primaryExpression '.' ASTERISK + ; + +selectLiteralColumnName + : columnRef + ; + +selectExpressionColumnName + : expression ; relation @@ -441,12 +461,16 @@ columnAliases ; relationPrimary - : tableOrViewName queryPeriod? # tableName - | '(' query ')' # subqueryRelation + : tableOrViewName queryPeriod? # tableName + | relationSourceTable # expressionSourceTable + | '(' relation ')' # parenthesizedRelation + ; + +relationSourceTable + : '(' query ')' # subqueryRelation | KW_UNNEST '(' expression (',' expression)* ')' (KW_WITH KW_ORDINALITY)? # unnest | KW_LATERAL '(' query ')' # lateral | KW_TABLE '(' tableFunctionCall ')' # tableFunctionInvocation - | '(' relation ')' # parenthesizedRelation | KW_JSON_TABLE '(' jsonPathInvocation KW_COLUMNS '(' jsonTableColumn (',' jsonTableColumn)* ')' ( KW_PLAN '(' jsonTableSpecificPlan ')' | KW_PLAN KW_DEFAULT '(' jsonTableDefaultPlan ')' diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index cd835494a..9aaa928dc 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1172,12 +1172,21 @@ withItem withItemName selectStatement selectClause +selectList +columnProjectItem +selectWindowItemColumnName +selectExpressionColumnName +selectLiteralColumnName +columnAlias projectItemDefinition +tableAllColumns overWindowItem fromClause tableExpression tableReference tablePrimary +atomFunctionTable +atomExpressionTable systemTimePeriod dateTimeExpression inlineDataValueClause @@ -1277,4 +1286,4 @@ nonReservedKeywords atn: -[4, 1, 541, 2282, 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, 1, 0, 5, 0, 376, 8, 0, 10, 0, 12, 0, 379, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 385, 8, 1, 1, 1, 3, 1, 388, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 402, 8, 2, 1, 3, 1, 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, 1, 4, 3, 4, 420, 8, 4, 1, 5, 1, 5, 3, 5, 424, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 433, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 438, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 443, 8, 8, 10, 8, 12, 8, 446, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 456, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 463, 8, 11, 10, 11, 12, 11, 466, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 477, 8, 12, 1, 12, 3, 12, 480, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 487, 8, 12, 1, 12, 3, 12, 490, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 498, 8, 12, 1, 12, 1, 12, 3, 12, 502, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 507, 8, 12, 1, 12, 3, 12, 510, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 517, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 525, 8, 15, 1, 16, 1, 16, 3, 16, 529, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 541, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 549, 8, 18, 1, 18, 1, 18, 3, 18, 553, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 585, 8, 18, 1, 19, 3, 19, 588, 8, 19, 1, 19, 4, 19, 591, 8, 19, 11, 19, 12, 19, 592, 1, 20, 1, 20, 3, 20, 597, 8, 20, 1, 21, 1, 21, 3, 21, 601, 8, 21, 1, 21, 1, 21, 3, 21, 605, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 612, 8, 21, 10, 21, 12, 21, 615, 9, 21, 1, 21, 1, 21, 3, 21, 619, 8, 21, 1, 21, 1, 21, 3, 21, 623, 8, 21, 1, 21, 1, 21, 3, 21, 627, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 632, 8, 21, 1, 21, 3, 21, 635, 8, 21, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 644, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 650, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 655, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 660, 8, 24, 1, 24, 1, 24, 3, 24, 664, 8, 24, 1, 25, 1, 25, 3, 25, 668, 8, 25, 1, 26, 1, 26, 3, 26, 672, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 678, 8, 27, 10, 27, 12, 27, 681, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 688, 8, 28, 1, 28, 1, 28, 3, 28, 692, 8, 28, 1, 28, 1, 28, 3, 28, 696, 8, 28, 1, 28, 1, 28, 3, 28, 700, 8, 28, 1, 28, 1, 28, 3, 28, 704, 8, 28, 1, 28, 1, 28, 3, 28, 708, 8, 28, 1, 28, 1, 28, 3, 28, 712, 8, 28, 1, 28, 1, 28, 3, 28, 716, 8, 28, 1, 28, 1, 28, 3, 28, 720, 8, 28, 3, 28, 722, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 732, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 762, 8, 34, 10, 34, 12, 34, 765, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 776, 8, 34, 10, 34, 12, 34, 779, 9, 34, 1, 34, 1, 34, 3, 34, 783, 8, 34, 1, 35, 1, 35, 3, 35, 787, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 793, 8, 35, 1, 35, 3, 35, 796, 8, 35, 1, 35, 3, 35, 799, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 806, 8, 36, 1, 36, 3, 36, 809, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 818, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 830, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 852, 8, 45, 10, 45, 12, 45, 855, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 864, 8, 46, 10, 46, 12, 46, 867, 9, 46, 1, 46, 1, 46, 3, 46, 871, 8, 46, 1, 47, 1, 47, 3, 47, 875, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 881, 8, 48, 10, 48, 12, 48, 884, 9, 48, 1, 48, 3, 48, 887, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 893, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 3, 51, 903, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 908, 8, 51, 1, 51, 1, 51, 1, 52, 1, 52, 3, 52, 914, 8, 52, 1, 52, 1, 52, 3, 52, 918, 8, 52, 1, 52, 1, 52, 3, 52, 922, 8, 52, 1, 52, 1, 52, 3, 52, 926, 8, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 935, 8, 53, 1, 53, 1, 53, 3, 53, 939, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 946, 8, 53, 1, 53, 3, 53, 949, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 957, 8, 54, 10, 54, 12, 54, 960, 9, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 967, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 975, 8, 56, 1, 57, 1, 57, 3, 57, 979, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 994, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1013, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1024, 8, 65, 1, 65, 1, 65, 3, 65, 1028, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1035, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 1040, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 3, 67, 1046, 8, 67, 1, 67, 1, 67, 3, 67, 1050, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1057, 8, 68, 1, 68, 1, 68, 3, 68, 1061, 8, 68, 1, 69, 1, 69, 3, 69, 1065, 8, 69, 1, 69, 1, 69, 3, 69, 1069, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1077, 8, 70, 1, 70, 1, 70, 3, 70, 1081, 8, 70, 1, 70, 1, 70, 1, 71, 3, 71, 1086, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1092, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1098, 8, 72, 1, 72, 3, 72, 1101, 8, 72, 1, 72, 1, 72, 3, 72, 1105, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 1114, 8, 74, 10, 74, 12, 74, 1117, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1123, 8, 75, 10, 75, 12, 75, 1126, 9, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 4, 76, 1137, 8, 76, 11, 76, 12, 76, 1138, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1149, 8, 77, 11, 77, 12, 77, 1150, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1166, 8, 78, 1, 78, 3, 78, 1169, 8, 78, 1, 78, 1, 78, 3, 78, 1173, 8, 78, 1, 78, 3, 78, 1176, 8, 78, 3, 78, 1178, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1183, 8, 78, 1, 78, 1, 78, 3, 78, 1187, 8, 78, 1, 78, 3, 78, 1190, 8, 78, 5, 78, 1192, 8, 78, 10, 78, 12, 78, 1195, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 1201, 8, 79, 10, 79, 12, 79, 1204, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1210, 8, 80, 10, 80, 12, 80, 1213, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1220, 8, 81, 10, 81, 12, 81, 1223, 9, 81, 1, 81, 1, 81, 3, 81, 1227, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 1238, 8, 83, 1, 83, 3, 83, 1241, 8, 83, 1, 83, 3, 83, 1244, 8, 83, 1, 83, 3, 83, 1247, 8, 83, 1, 83, 3, 83, 1250, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1256, 8, 83, 1, 84, 1, 84, 3, 84, 1260, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1266, 8, 84, 10, 84, 12, 84, 1269, 9, 84, 3, 84, 1271, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1276, 8, 85, 1, 85, 3, 85, 1279, 8, 85, 1, 85, 1, 85, 3, 85, 1283, 8, 85, 1, 85, 3, 85, 1286, 8, 85, 3, 85, 1288, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1302, 8, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1311, 8, 88, 10, 88, 12, 88, 1314, 9, 88, 1, 88, 1, 88, 3, 88, 1318, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1326, 8, 88, 1, 88, 3, 88, 1329, 8, 88, 1, 88, 3, 88, 1332, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1337, 8, 88, 5, 88, 1339, 8, 88, 10, 88, 12, 88, 1342, 9, 88, 1, 89, 1, 89, 3, 89, 1346, 8, 89, 1, 90, 3, 90, 1349, 8, 90, 1, 90, 1, 90, 3, 90, 1353, 8, 90, 1, 90, 1, 90, 3, 90, 1357, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1367, 8, 90, 10, 90, 12, 90, 1370, 9, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1376, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1387, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1412, 8, 95, 10, 95, 12, 95, 1415, 9, 95, 1, 95, 1, 95, 1, 96, 1, 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, 3, 97, 1436, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1449, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1459, 8, 102, 10, 102, 12, 102, 1462, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1472, 8, 103, 10, 103, 12, 103, 1475, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1484, 8, 103, 10, 103, 12, 103, 1487, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1496, 8, 103, 10, 103, 12, 103, 1499, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1504, 8, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1529, 8, 110, 10, 110, 12, 110, 1532, 9, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 3, 112, 1539, 8, 112, 1, 112, 1, 112, 3, 112, 1543, 8, 112, 1, 112, 3, 112, 1546, 8, 112, 1, 112, 3, 112, 1549, 8, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 1556, 8, 113, 1, 113, 3, 113, 1559, 8, 113, 1, 113, 3, 113, 1562, 8, 113, 1, 113, 3, 113, 1565, 8, 113, 1, 113, 3, 113, 1568, 8, 113, 1, 113, 3, 113, 1571, 8, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1576, 8, 113, 1, 113, 3, 113, 1579, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1586, 8, 114, 10, 114, 12, 114, 1589, 9, 114, 1, 115, 1, 115, 3, 115, 1593, 8, 115, 1, 115, 1, 115, 3, 115, 1597, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 1602, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1608, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1613, 8, 117, 5, 117, 1615, 8, 117, 10, 117, 12, 117, 1618, 9, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1636, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1642, 8, 119, 10, 119, 12, 119, 1645, 9, 119, 1, 120, 1, 120, 1, 120, 4, 120, 1650, 8, 120, 11, 120, 12, 120, 1651, 1, 120, 1, 120, 3, 120, 1656, 8, 120, 1, 121, 1, 121, 3, 121, 1660, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1670, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1696, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1702, 8, 124, 10, 124, 12, 124, 1705, 9, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1716, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1738, 8, 129, 3, 129, 1740, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1751, 8, 129, 1, 129, 5, 129, 1754, 8, 129, 10, 129, 12, 129, 1757, 9, 129, 1, 130, 3, 130, 1760, 8, 130, 1, 130, 1, 130, 3, 130, 1764, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1771, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1778, 8, 130, 10, 130, 12, 130, 1781, 9, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1786, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1799, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1806, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1811, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1817, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1824, 8, 130, 3, 130, 1826, 8, 130, 1, 131, 3, 131, 1829, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1839, 8, 131, 10, 131, 12, 131, 1842, 9, 131, 1, 131, 1, 131, 3, 131, 1846, 8, 131, 1, 131, 3, 131, 1849, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1855, 8, 131, 3, 131, 1857, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1863, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1884, 8, 132, 10, 132, 12, 132, 1887, 9, 132, 1, 133, 1, 133, 1, 133, 4, 133, 1892, 8, 133, 11, 133, 12, 133, 1893, 1, 133, 1, 133, 3, 133, 1898, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 4, 133, 1905, 8, 133, 11, 133, 12, 133, 1906, 1, 133, 1, 133, 3, 133, 1911, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1927, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1936, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1960, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1965, 8, 133, 10, 133, 12, 133, 1968, 9, 133, 3, 133, 1970, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1981, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1988, 8, 133, 10, 133, 12, 133, 1991, 9, 133, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 1997, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2003, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2011, 8, 139, 1, 140, 1, 140, 1, 140, 3, 140, 2016, 8, 140, 1, 141, 1, 141, 3, 141, 2020, 8, 141, 1, 142, 1, 142, 1, 142, 4, 142, 2025, 8, 142, 11, 142, 12, 142, 2026, 1, 143, 1, 143, 1, 143, 3, 143, 2032, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 3, 145, 2040, 8, 145, 1, 145, 1, 145, 3, 145, 2044, 8, 145, 1, 146, 3, 146, 2047, 8, 146, 1, 146, 1, 146, 3, 146, 2051, 8, 146, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 4, 148, 2058, 8, 148, 11, 148, 12, 148, 2059, 1, 148, 3, 148, 2063, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2072, 8, 150, 10, 150, 12, 150, 2075, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 2080, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 2098, 8, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2103, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2108, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2115, 8, 159, 3, 159, 2117, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2122, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2129, 8, 160, 3, 160, 2131, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2136, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2143, 8, 161, 3, 161, 2145, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2150, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2157, 8, 162, 3, 162, 2159, 8, 162, 1, 163, 1, 163, 1, 163, 5, 163, 2164, 8, 163, 10, 163, 12, 163, 2167, 9, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2183, 8, 167, 10, 167, 12, 167, 2186, 9, 167, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 2192, 8, 168, 1, 168, 3, 168, 2195, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2200, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2206, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2214, 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, 3, 172, 2230, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2239, 8, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2249, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2256, 8, 176, 1, 176, 3, 176, 2259, 8, 176, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 2165, 5, 156, 176, 258, 264, 266, 187, 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, 0, 45, 2, 0, 109, 109, 450, 450, 3, 0, 45, 45, 128, 128, 188, 188, 4, 0, 42, 42, 90, 90, 422, 422, 464, 464, 2, 0, 441, 441, 447, 447, 2, 0, 151, 151, 170, 170, 2, 0, 437, 437, 489, 489, 2, 0, 482, 485, 487, 487, 3, 0, 32, 32, 91, 91, 244, 244, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 344, 344, 360, 360, 378, 378, 381, 381, 387, 387, 416, 417, 2, 0, 433, 433, 435, 435, 4, 0, 101, 102, 115, 115, 144, 144, 246, 246, 2, 0, 13, 13, 231, 231, 2, 0, 455, 455, 462, 462, 3, 0, 5, 5, 270, 270, 444, 444, 3, 0, 266, 266, 455, 455, 462, 462, 3, 0, 425, 425, 458, 458, 477, 477, 3, 0, 330, 330, 465, 465, 481, 481, 2, 0, 440, 440, 490, 490, 2, 0, 183, 183, 265, 265, 3, 0, 130, 130, 180, 180, 402, 402, 4, 0, 152, 152, 174, 174, 201, 201, 317, 317, 3, 0, 445, 445, 459, 459, 499, 499, 4, 0, 250, 250, 446, 446, 494, 496, 498, 498, 2, 0, 74, 74, 320, 320, 3, 0, 459, 459, 492, 492, 499, 499, 2, 0, 439, 439, 450, 450, 2, 0, 457, 457, 467, 467, 4, 0, 140, 140, 244, 244, 397, 397, 404, 404, 2, 0, 19, 19, 369, 369, 2, 0, 5, 5, 11, 11, 2, 0, 509, 509, 529, 530, 4, 0, 452, 452, 527, 527, 531, 531, 534, 534, 2, 0, 529, 530, 532, 532, 1, 0, 529, 530, 1, 0, 538, 539, 2, 0, 538, 538, 541, 541, 4, 0, 452, 452, 527, 527, 529, 531, 533, 534, 3, 0, 241, 241, 508, 509, 529, 530, 2, 0, 140, 140, 397, 397, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 436, 436, 470, 470, 472, 472, 488, 488, 502, 502, 15, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 427, 427, 436, 436, 442, 442, 448, 449, 454, 454, 460, 460, 470, 475, 488, 488, 491, 491, 502, 503, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 200, 200, 207, 208, 389, 389, 413, 413, 527, 527, 55, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 78, 78, 84, 85, 91, 91, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 194, 194, 197, 197, 199, 199, 201, 201, 205, 205, 207, 209, 214, 214, 220, 220, 222, 223, 229, 229, 243, 243, 245, 245, 264, 264, 276, 276, 281, 281, 283, 283, 293, 293, 317, 317, 321, 323, 334, 334, 357, 358, 364, 364, 367, 367, 378, 380, 395, 395, 398, 399, 408, 408, 419, 420, 436, 436, 469, 469, 488, 488, 502, 502, 1, 0, 437, 504, 2486, 0, 377, 1, 0, 0, 0, 2, 387, 1, 0, 0, 0, 4, 401, 1, 0, 0, 0, 6, 403, 1, 0, 0, 0, 8, 419, 1, 0, 0, 0, 10, 423, 1, 0, 0, 0, 12, 425, 1, 0, 0, 0, 14, 428, 1, 0, 0, 0, 16, 439, 1, 0, 0, 0, 18, 447, 1, 0, 0, 0, 20, 455, 1, 0, 0, 0, 22, 457, 1, 0, 0, 0, 24, 509, 1, 0, 0, 0, 26, 511, 1, 0, 0, 0, 28, 518, 1, 0, 0, 0, 30, 522, 1, 0, 0, 0, 32, 526, 1, 0, 0, 0, 34, 530, 1, 0, 0, 0, 36, 584, 1, 0, 0, 0, 38, 590, 1, 0, 0, 0, 40, 596, 1, 0, 0, 0, 42, 598, 1, 0, 0, 0, 44, 640, 1, 0, 0, 0, 46, 654, 1, 0, 0, 0, 48, 656, 1, 0, 0, 0, 50, 667, 1, 0, 0, 0, 52, 671, 1, 0, 0, 0, 54, 673, 1, 0, 0, 0, 56, 721, 1, 0, 0, 0, 58, 723, 1, 0, 0, 0, 60, 727, 1, 0, 0, 0, 62, 735, 1, 0, 0, 0, 64, 743, 1, 0, 0, 0, 66, 747, 1, 0, 0, 0, 68, 782, 1, 0, 0, 0, 70, 798, 1, 0, 0, 0, 72, 800, 1, 0, 0, 0, 74, 810, 1, 0, 0, 0, 76, 812, 1, 0, 0, 0, 78, 819, 1, 0, 0, 0, 80, 821, 1, 0, 0, 0, 82, 829, 1, 0, 0, 0, 84, 837, 1, 0, 0, 0, 86, 839, 1, 0, 0, 0, 88, 843, 1, 0, 0, 0, 90, 847, 1, 0, 0, 0, 92, 870, 1, 0, 0, 0, 94, 874, 1, 0, 0, 0, 96, 876, 1, 0, 0, 0, 98, 892, 1, 0, 0, 0, 100, 894, 1, 0, 0, 0, 102, 899, 1, 0, 0, 0, 104, 911, 1, 0, 0, 0, 106, 930, 1, 0, 0, 0, 108, 950, 1, 0, 0, 0, 110, 961, 1, 0, 0, 0, 112, 963, 1, 0, 0, 0, 114, 976, 1, 0, 0, 0, 116, 983, 1, 0, 0, 0, 118, 986, 1, 0, 0, 0, 120, 995, 1, 0, 0, 0, 122, 999, 1, 0, 0, 0, 124, 1003, 1, 0, 0, 0, 126, 1006, 1, 0, 0, 0, 128, 1014, 1, 0, 0, 0, 130, 1019, 1, 0, 0, 0, 132, 1036, 1, 0, 0, 0, 134, 1043, 1, 0, 0, 0, 136, 1053, 1, 0, 0, 0, 138, 1062, 1, 0, 0, 0, 140, 1072, 1, 0, 0, 0, 142, 1091, 1, 0, 0, 0, 144, 1093, 1, 0, 0, 0, 146, 1106, 1, 0, 0, 0, 148, 1109, 1, 0, 0, 0, 150, 1118, 1, 0, 0, 0, 152, 1129, 1, 0, 0, 0, 154, 1142, 1, 0, 0, 0, 156, 1177, 1, 0, 0, 0, 158, 1196, 1, 0, 0, 0, 160, 1205, 1, 0, 0, 0, 162, 1214, 1, 0, 0, 0, 164, 1233, 1, 0, 0, 0, 166, 1255, 1, 0, 0, 0, 168, 1257, 1, 0, 0, 0, 170, 1287, 1, 0, 0, 0, 172, 1301, 1, 0, 0, 0, 174, 1303, 1, 0, 0, 0, 176, 1317, 1, 0, 0, 0, 178, 1343, 1, 0, 0, 0, 180, 1386, 1, 0, 0, 0, 182, 1388, 1, 0, 0, 0, 184, 1394, 1, 0, 0, 0, 186, 1396, 1, 0, 0, 0, 188, 1401, 1, 0, 0, 0, 190, 1406, 1, 0, 0, 0, 192, 1418, 1, 0, 0, 0, 194, 1435, 1, 0, 0, 0, 196, 1437, 1, 0, 0, 0, 198, 1439, 1, 0, 0, 0, 200, 1448, 1, 0, 0, 0, 202, 1450, 1, 0, 0, 0, 204, 1453, 1, 0, 0, 0, 206, 1503, 1, 0, 0, 0, 208, 1505, 1, 0, 0, 0, 210, 1508, 1, 0, 0, 0, 212, 1510, 1, 0, 0, 0, 214, 1517, 1, 0, 0, 0, 216, 1519, 1, 0, 0, 0, 218, 1521, 1, 0, 0, 0, 220, 1524, 1, 0, 0, 0, 222, 1533, 1, 0, 0, 0, 224, 1538, 1, 0, 0, 0, 226, 1552, 1, 0, 0, 0, 228, 1580, 1, 0, 0, 0, 230, 1590, 1, 0, 0, 0, 232, 1598, 1, 0, 0, 0, 234, 1603, 1, 0, 0, 0, 236, 1635, 1, 0, 0, 0, 238, 1637, 1, 0, 0, 0, 240, 1646, 1, 0, 0, 0, 242, 1657, 1, 0, 0, 0, 244, 1669, 1, 0, 0, 0, 246, 1695, 1, 0, 0, 0, 248, 1697, 1, 0, 0, 0, 250, 1715, 1, 0, 0, 0, 252, 1717, 1, 0, 0, 0, 254, 1722, 1, 0, 0, 0, 256, 1725, 1, 0, 0, 0, 258, 1739, 1, 0, 0, 0, 260, 1825, 1, 0, 0, 0, 262, 1856, 1, 0, 0, 0, 264, 1862, 1, 0, 0, 0, 266, 1980, 1, 0, 0, 0, 268, 1992, 1, 0, 0, 0, 270, 1996, 1, 0, 0, 0, 272, 2002, 1, 0, 0, 0, 274, 2004, 1, 0, 0, 0, 276, 2006, 1, 0, 0, 0, 278, 2010, 1, 0, 0, 0, 280, 2012, 1, 0, 0, 0, 282, 2017, 1, 0, 0, 0, 284, 2024, 1, 0, 0, 0, 286, 2028, 1, 0, 0, 0, 288, 2033, 1, 0, 0, 0, 290, 2043, 1, 0, 0, 0, 292, 2046, 1, 0, 0, 0, 294, 2052, 1, 0, 0, 0, 296, 2062, 1, 0, 0, 0, 298, 2064, 1, 0, 0, 0, 300, 2068, 1, 0, 0, 0, 302, 2079, 1, 0, 0, 0, 304, 2081, 1, 0, 0, 0, 306, 2083, 1, 0, 0, 0, 308, 2085, 1, 0, 0, 0, 310, 2090, 1, 0, 0, 0, 312, 2092, 1, 0, 0, 0, 314, 2094, 1, 0, 0, 0, 316, 2099, 1, 0, 0, 0, 318, 2116, 1, 0, 0, 0, 320, 2130, 1, 0, 0, 0, 322, 2144, 1, 0, 0, 0, 324, 2158, 1, 0, 0, 0, 326, 2160, 1, 0, 0, 0, 328, 2168, 1, 0, 0, 0, 330, 2171, 1, 0, 0, 0, 332, 2175, 1, 0, 0, 0, 334, 2178, 1, 0, 0, 0, 336, 2189, 1, 0, 0, 0, 338, 2199, 1, 0, 0, 0, 340, 2205, 1, 0, 0, 0, 342, 2213, 1, 0, 0, 0, 344, 2229, 1, 0, 0, 0, 346, 2238, 1, 0, 0, 0, 348, 2240, 1, 0, 0, 0, 350, 2242, 1, 0, 0, 0, 352, 2258, 1, 0, 0, 0, 354, 2260, 1, 0, 0, 0, 356, 2263, 1, 0, 0, 0, 358, 2265, 1, 0, 0, 0, 360, 2267, 1, 0, 0, 0, 362, 2269, 1, 0, 0, 0, 364, 2271, 1, 0, 0, 0, 366, 2273, 1, 0, 0, 0, 368, 2275, 1, 0, 0, 0, 370, 2277, 1, 0, 0, 0, 372, 2279, 1, 0, 0, 0, 374, 376, 3, 2, 1, 0, 375, 374, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 380, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, 381, 5, 0, 0, 1, 381, 1, 1, 0, 0, 0, 382, 384, 3, 4, 2, 0, 383, 385, 5, 521, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 1, 0, 0, 0, 386, 388, 3, 6, 3, 0, 387, 382, 1, 0, 0, 0, 387, 386, 1, 0, 0, 0, 388, 3, 1, 0, 0, 0, 389, 402, 3, 8, 4, 0, 390, 402, 3, 10, 5, 0, 391, 402, 3, 12, 6, 0, 392, 402, 3, 14, 7, 0, 393, 402, 3, 20, 10, 0, 394, 402, 3, 24, 12, 0, 395, 402, 3, 26, 13, 0, 396, 402, 3, 28, 14, 0, 397, 402, 3, 30, 15, 0, 398, 402, 3, 32, 16, 0, 399, 402, 3, 34, 17, 0, 400, 402, 3, 36, 18, 0, 401, 389, 1, 0, 0, 0, 401, 390, 1, 0, 0, 0, 401, 391, 1, 0, 0, 0, 401, 392, 1, 0, 0, 0, 401, 393, 1, 0, 0, 0, 401, 394, 1, 0, 0, 0, 401, 395, 1, 0, 0, 0, 401, 396, 1, 0, 0, 0, 401, 397, 1, 0, 0, 0, 401, 398, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 400, 1, 0, 0, 0, 402, 5, 1, 0, 0, 0, 403, 404, 5, 521, 0, 0, 404, 7, 1, 0, 0, 0, 405, 420, 3, 40, 20, 0, 406, 420, 3, 102, 51, 0, 407, 420, 3, 104, 52, 0, 408, 420, 3, 106, 53, 0, 409, 420, 3, 100, 50, 0, 410, 420, 3, 112, 56, 0, 411, 420, 3, 126, 63, 0, 412, 420, 3, 128, 64, 0, 413, 420, 3, 130, 65, 0, 414, 420, 3, 132, 66, 0, 415, 420, 3, 134, 67, 0, 416, 420, 3, 136, 68, 0, 417, 420, 3, 138, 69, 0, 418, 420, 3, 140, 70, 0, 419, 405, 1, 0, 0, 0, 419, 406, 1, 0, 0, 0, 419, 407, 1, 0, 0, 0, 419, 408, 1, 0, 0, 0, 419, 409, 1, 0, 0, 0, 419, 410, 1, 0, 0, 0, 419, 411, 1, 0, 0, 0, 419, 412, 1, 0, 0, 0, 419, 413, 1, 0, 0, 0, 419, 414, 1, 0, 0, 0, 419, 415, 1, 0, 0, 0, 419, 416, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 9, 1, 0, 0, 0, 421, 424, 3, 156, 78, 0, 422, 424, 3, 142, 71, 0, 423, 421, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 11, 1, 0, 0, 0, 425, 426, 7, 0, 0, 0, 426, 427, 3, 320, 160, 0, 427, 13, 1, 0, 0, 0, 428, 432, 5, 135, 0, 0, 429, 433, 3, 16, 8, 0, 430, 431, 5, 479, 0, 0, 431, 433, 5, 146, 0, 0, 432, 429, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 437, 1, 0, 0, 0, 434, 438, 3, 10, 5, 0, 435, 438, 3, 144, 72, 0, 436, 438, 3, 154, 77, 0, 437, 434, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 15, 1, 0, 0, 0, 439, 444, 3, 18, 9, 0, 440, 441, 5, 520, 0, 0, 441, 443, 3, 18, 9, 0, 442, 440, 1, 0, 0, 0, 443, 446, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 17, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 447, 448, 7, 1, 0, 0, 448, 19, 1, 0, 0, 0, 449, 450, 5, 410, 0, 0, 450, 451, 5, 441, 0, 0, 451, 456, 3, 310, 155, 0, 452, 453, 5, 410, 0, 0, 453, 456, 3, 314, 157, 0, 454, 456, 3, 22, 11, 0, 455, 449, 1, 0, 0, 0, 455, 452, 1, 0, 0, 0, 455, 454, 1, 0, 0, 0, 456, 21, 1, 0, 0, 0, 457, 458, 5, 410, 0, 0, 458, 459, 5, 227, 0, 0, 459, 464, 3, 326, 163, 0, 460, 461, 5, 520, 0, 0, 461, 463, 3, 326, 163, 0, 462, 460, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 23, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 467, 468, 5, 341, 0, 0, 468, 510, 7, 2, 0, 0, 469, 470, 5, 341, 0, 0, 470, 471, 5, 76, 0, 0, 471, 510, 7, 3, 0, 0, 472, 473, 5, 341, 0, 0, 473, 476, 5, 374, 0, 0, 474, 475, 7, 4, 0, 0, 475, 477, 3, 314, 157, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 479, 1, 0, 0, 0, 478, 480, 3, 262, 131, 0, 479, 478, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 510, 1, 0, 0, 0, 481, 482, 5, 341, 0, 0, 482, 483, 5, 58, 0, 0, 483, 486, 7, 4, 0, 0, 484, 487, 3, 322, 161, 0, 485, 487, 3, 320, 160, 0, 486, 484, 1, 0, 0, 0, 486, 485, 1, 0, 0, 0, 487, 489, 1, 0, 0, 0, 488, 490, 3, 262, 131, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 510, 1, 0, 0, 0, 491, 492, 5, 341, 0, 0, 492, 497, 5, 72, 0, 0, 493, 494, 5, 373, 0, 0, 494, 498, 3, 320, 160, 0, 495, 496, 5, 501, 0, 0, 496, 498, 3, 322, 161, 0, 497, 493, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 510, 1, 0, 0, 0, 499, 501, 5, 341, 0, 0, 500, 502, 5, 411, 0, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 510, 5, 154, 0, 0, 504, 506, 5, 341, 0, 0, 505, 507, 5, 152, 0, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 510, 5, 227, 0, 0, 509, 467, 1, 0, 0, 0, 509, 469, 1, 0, 0, 0, 509, 472, 1, 0, 0, 0, 509, 481, 1, 0, 0, 0, 509, 491, 1, 0, 0, 0, 509, 499, 1, 0, 0, 0, 509, 504, 1, 0, 0, 0, 510, 25, 1, 0, 0, 0, 511, 512, 5, 468, 0, 0, 512, 513, 5, 226, 0, 0, 513, 516, 3, 326, 163, 0, 514, 515, 5, 433, 0, 0, 515, 517, 3, 334, 167, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 27, 1, 0, 0, 0, 518, 519, 5, 500, 0, 0, 519, 520, 5, 226, 0, 0, 520, 521, 3, 326, 163, 0, 521, 29, 1, 0, 0, 0, 522, 524, 5, 340, 0, 0, 523, 525, 3, 336, 168, 0, 524, 523, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 31, 1, 0, 0, 0, 526, 528, 5, 312, 0, 0, 527, 529, 3, 338, 169, 0, 528, 527, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 33, 1, 0, 0, 0, 530, 531, 7, 5, 0, 0, 531, 532, 5, 463, 0, 0, 532, 533, 3, 110, 55, 0, 533, 35, 1, 0, 0, 0, 534, 535, 5, 437, 0, 0, 535, 536, 5, 463, 0, 0, 536, 537, 5, 433, 0, 0, 537, 540, 3, 38, 19, 0, 538, 539, 5, 17, 0, 0, 539, 541, 3, 326, 163, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 585, 1, 0, 0, 0, 542, 543, 5, 437, 0, 0, 543, 544, 5, 456, 0, 0, 544, 545, 5, 433, 0, 0, 545, 548, 3, 38, 19, 0, 546, 547, 5, 17, 0, 0, 547, 549, 3, 326, 163, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 552, 1, 0, 0, 0, 550, 551, 5, 311, 0, 0, 551, 553, 3, 326, 163, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 585, 1, 0, 0, 0, 554, 555, 5, 437, 0, 0, 555, 556, 7, 6, 0, 0, 556, 557, 5, 433, 0, 0, 557, 558, 3, 38, 19, 0, 558, 559, 5, 311, 0, 0, 559, 560, 3, 326, 163, 0, 560, 585, 1, 0, 0, 0, 561, 562, 5, 437, 0, 0, 562, 563, 5, 486, 0, 0, 563, 585, 3, 38, 19, 0, 564, 565, 5, 437, 0, 0, 565, 566, 5, 453, 0, 0, 566, 567, 5, 456, 0, 0, 567, 568, 5, 433, 0, 0, 568, 569, 3, 38, 19, 0, 569, 570, 5, 311, 0, 0, 570, 571, 3, 326, 163, 0, 571, 572, 5, 466, 0, 0, 572, 573, 3, 326, 163, 0, 573, 585, 1, 0, 0, 0, 574, 575, 5, 437, 0, 0, 575, 576, 5, 443, 0, 0, 576, 577, 5, 456, 0, 0, 577, 578, 5, 433, 0, 0, 578, 579, 3, 38, 19, 0, 579, 580, 5, 146, 0, 0, 580, 581, 3, 326, 163, 0, 581, 582, 5, 17, 0, 0, 582, 583, 3, 326, 163, 0, 583, 585, 1, 0, 0, 0, 584, 534, 1, 0, 0, 0, 584, 542, 1, 0, 0, 0, 584, 554, 1, 0, 0, 0, 584, 561, 1, 0, 0, 0, 584, 564, 1, 0, 0, 0, 584, 574, 1, 0, 0, 0, 585, 37, 1, 0, 0, 0, 586, 588, 5, 534, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 591, 3, 326, 163, 0, 590, 587, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 39, 1, 0, 0, 0, 594, 597, 3, 42, 21, 0, 595, 597, 3, 44, 22, 0, 596, 594, 1, 0, 0, 0, 596, 595, 1, 0, 0, 0, 597, 41, 1, 0, 0, 0, 598, 600, 5, 72, 0, 0, 599, 601, 5, 497, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 604, 5, 373, 0, 0, 603, 605, 3, 330, 165, 0, 604, 603, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 3, 318, 159, 0, 607, 608, 5, 516, 0, 0, 608, 613, 3, 46, 23, 0, 609, 610, 5, 520, 0, 0, 610, 612, 3, 46, 23, 0, 611, 609, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 618, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 617, 5, 520, 0, 0, 617, 619, 3, 80, 40, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 621, 5, 520, 0, 0, 621, 623, 3, 82, 41, 0, 622, 620, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 626, 1, 0, 0, 0, 624, 625, 5, 520, 0, 0, 625, 627, 3, 86, 43, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 631, 5, 517, 0, 0, 629, 630, 5, 59, 0, 0, 630, 632, 5, 537, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 634, 1, 0, 0, 0, 633, 635, 3, 88, 44, 0, 634, 633, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 3, 328, 164, 0, 637, 639, 3, 96, 48, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 43, 1, 0, 0, 0, 640, 641, 5, 72, 0, 0, 641, 643, 5, 373, 0, 0, 642, 644, 3, 330, 165, 0, 643, 642, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 3, 318, 159, 0, 646, 649, 3, 328, 164, 0, 647, 648, 5, 17, 0, 0, 648, 650, 3, 156, 78, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 45, 1, 0, 0, 0, 651, 655, 3, 48, 24, 0, 652, 655, 3, 72, 36, 0, 653, 655, 3, 76, 38, 0, 654, 651, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 653, 1, 0, 0, 0, 655, 47, 1, 0, 0, 0, 656, 657, 3, 50, 25, 0, 657, 659, 3, 56, 28, 0, 658, 660, 3, 70, 35, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 662, 5, 59, 0, 0, 662, 664, 5, 537, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 49, 1, 0, 0, 0, 665, 668, 3, 326, 163, 0, 666, 668, 3, 256, 128, 0, 667, 665, 1, 0, 0, 0, 667, 666, 1, 0, 0, 0, 668, 51, 1, 0, 0, 0, 669, 672, 3, 326, 163, 0, 670, 672, 4, 26, 0, 0, 671, 669, 1, 0, 0, 0, 671, 670, 1, 0, 0, 0, 672, 53, 1, 0, 0, 0, 673, 674, 5, 516, 0, 0, 674, 679, 3, 52, 26, 0, 675, 676, 5, 520, 0, 0, 676, 678, 3, 52, 26, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 5, 517, 0, 0, 683, 55, 1, 0, 0, 0, 684, 722, 7, 7, 0, 0, 685, 687, 7, 8, 0, 0, 686, 688, 3, 58, 29, 0, 687, 686, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 722, 1, 0, 0, 0, 689, 691, 5, 379, 0, 0, 690, 692, 3, 58, 29, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 699, 1, 0, 0, 0, 693, 695, 7, 9, 0, 0, 694, 696, 5, 206, 0, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 378, 0, 0, 698, 700, 5, 504, 0, 0, 699, 693, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 722, 1, 0, 0, 0, 701, 703, 7, 10, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 722, 1, 0, 0, 0, 705, 707, 7, 11, 0, 0, 706, 708, 3, 64, 32, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 722, 1, 0, 0, 0, 709, 711, 5, 469, 0, 0, 710, 712, 3, 66, 33, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 722, 1, 0, 0, 0, 713, 715, 5, 321, 0, 0, 714, 716, 3, 68, 34, 0, 715, 714, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 722, 1, 0, 0, 0, 717, 719, 5, 294, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 684, 1, 0, 0, 0, 721, 685, 1, 0, 0, 0, 721, 689, 1, 0, 0, 0, 721, 701, 1, 0, 0, 0, 721, 705, 1, 0, 0, 0, 721, 709, 1, 0, 0, 0, 721, 713, 1, 0, 0, 0, 721, 717, 1, 0, 0, 0, 722, 57, 1, 0, 0, 0, 723, 724, 5, 516, 0, 0, 724, 725, 3, 358, 179, 0, 725, 726, 5, 517, 0, 0, 726, 59, 1, 0, 0, 0, 727, 728, 5, 516, 0, 0, 728, 731, 3, 358, 179, 0, 729, 730, 5, 520, 0, 0, 730, 732, 3, 358, 179, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 5, 517, 0, 0, 734, 61, 1, 0, 0, 0, 735, 736, 5, 516, 0, 0, 736, 739, 3, 356, 178, 0, 737, 738, 5, 520, 0, 0, 738, 740, 3, 356, 178, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 63, 1, 0, 0, 0, 743, 744, 5, 507, 0, 0, 744, 745, 3, 56, 28, 0, 745, 746, 5, 506, 0, 0, 746, 65, 1, 0, 0, 0, 747, 748, 5, 507, 0, 0, 748, 749, 3, 56, 28, 0, 749, 750, 5, 520, 0, 0, 750, 751, 3, 56, 28, 0, 751, 752, 1, 0, 0, 0, 752, 753, 5, 506, 0, 0, 753, 67, 1, 0, 0, 0, 754, 755, 5, 507, 0, 0, 755, 756, 3, 52, 26, 0, 756, 763, 3, 56, 28, 0, 757, 758, 5, 520, 0, 0, 758, 759, 3, 52, 26, 0, 759, 760, 3, 56, 28, 0, 760, 762, 1, 0, 0, 0, 761, 757, 1, 0, 0, 0, 762, 765, 1, 0, 0, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 766, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 766, 767, 5, 506, 0, 0, 767, 783, 1, 0, 0, 0, 768, 769, 5, 516, 0, 0, 769, 770, 3, 52, 26, 0, 770, 777, 3, 56, 28, 0, 771, 772, 5, 520, 0, 0, 772, 773, 3, 52, 26, 0, 773, 774, 3, 56, 28, 0, 774, 776, 1, 0, 0, 0, 775, 771, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 781, 5, 517, 0, 0, 781, 783, 1, 0, 0, 0, 782, 754, 1, 0, 0, 0, 782, 768, 1, 0, 0, 0, 783, 69, 1, 0, 0, 0, 784, 785, 5, 64, 0, 0, 785, 787, 3, 84, 42, 0, 786, 784, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 5, 288, 0, 0, 789, 792, 5, 466, 0, 0, 790, 791, 5, 241, 0, 0, 791, 793, 5, 125, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 799, 1, 0, 0, 0, 794, 796, 5, 241, 0, 0, 795, 794, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 799, 5, 244, 0, 0, 798, 786, 1, 0, 0, 0, 798, 795, 1, 0, 0, 0, 799, 71, 1, 0, 0, 0, 800, 801, 3, 50, 25, 0, 801, 802, 3, 56, 28, 0, 802, 805, 5, 218, 0, 0, 803, 804, 5, 151, 0, 0, 804, 806, 3, 74, 37, 0, 805, 803, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 1, 0, 0, 0, 807, 809, 5, 423, 0, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 73, 1, 0, 0, 0, 810, 811, 5, 537, 0, 0, 811, 75, 1, 0, 0, 0, 812, 813, 3, 50, 25, 0, 813, 814, 5, 17, 0, 0, 814, 817, 3, 78, 39, 0, 815, 816, 5, 59, 0, 0, 816, 818, 5, 537, 0, 0, 817, 815, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 77, 1, 0, 0, 0, 819, 820, 3, 256, 128, 0, 820, 79, 1, 0, 0, 0, 821, 822, 5, 424, 0, 0, 822, 823, 5, 146, 0, 0, 823, 824, 3, 52, 26, 0, 824, 825, 5, 17, 0, 0, 825, 826, 3, 256, 128, 0, 826, 81, 1, 0, 0, 0, 827, 828, 5, 64, 0, 0, 828, 830, 3, 84, 42, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 5, 288, 0, 0, 832, 833, 5, 466, 0, 0, 833, 834, 3, 54, 27, 0, 834, 835, 5, 241, 0, 0, 835, 836, 5, 125, 0, 0, 836, 83, 1, 0, 0, 0, 837, 838, 3, 302, 151, 0, 838, 85, 1, 0, 0, 0, 839, 840, 5, 277, 0, 0, 840, 841, 5, 146, 0, 0, 841, 842, 5, 371, 0, 0, 842, 87, 1, 0, 0, 0, 843, 844, 5, 269, 0, 0, 844, 845, 5, 34, 0, 0, 845, 846, 3, 90, 45, 0, 846, 89, 1, 0, 0, 0, 847, 848, 5, 516, 0, 0, 848, 853, 3, 92, 46, 0, 849, 850, 5, 520, 0, 0, 850, 852, 3, 92, 46, 0, 851, 849, 1, 0, 0, 0, 852, 855, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 856, 857, 5, 517, 0, 0, 857, 91, 1, 0, 0, 0, 858, 871, 3, 52, 26, 0, 859, 860, 5, 516, 0, 0, 860, 865, 3, 94, 47, 0, 861, 862, 5, 520, 0, 0, 862, 864, 3, 94, 47, 0, 863, 861, 1, 0, 0, 0, 864, 867, 1, 0, 0, 0, 865, 863, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 868, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 868, 869, 5, 517, 0, 0, 869, 871, 1, 0, 0, 0, 870, 858, 1, 0, 0, 0, 870, 859, 1, 0, 0, 0, 871, 93, 1, 0, 0, 0, 872, 875, 3, 278, 139, 0, 873, 875, 3, 352, 176, 0, 874, 872, 1, 0, 0, 0, 874, 873, 1, 0, 0, 0, 875, 95, 1, 0, 0, 0, 876, 877, 5, 202, 0, 0, 877, 886, 3, 320, 160, 0, 878, 882, 5, 516, 0, 0, 879, 881, 3, 98, 49, 0, 880, 879, 1, 0, 0, 0, 881, 884, 1, 0, 0, 0, 882, 880, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 885, 887, 5, 517, 0, 0, 886, 878, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 97, 1, 0, 0, 0, 888, 889, 7, 12, 0, 0, 889, 893, 7, 13, 0, 0, 890, 891, 7, 14, 0, 0, 891, 893, 7, 15, 0, 0, 892, 888, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 893, 99, 1, 0, 0, 0, 894, 895, 5, 72, 0, 0, 895, 896, 5, 441, 0, 0, 896, 897, 3, 312, 156, 0, 897, 898, 3, 328, 164, 0, 898, 101, 1, 0, 0, 0, 899, 900, 5, 72, 0, 0, 900, 902, 5, 447, 0, 0, 901, 903, 3, 330, 165, 0, 902, 901, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 907, 3, 316, 158, 0, 905, 906, 5, 59, 0, 0, 906, 908, 5, 537, 0, 0, 907, 905, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 3, 328, 164, 0, 910, 103, 1, 0, 0, 0, 911, 913, 5, 72, 0, 0, 912, 914, 5, 497, 0, 0, 913, 912, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 917, 5, 501, 0, 0, 916, 918, 3, 330, 165, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 3, 324, 162, 0, 920, 922, 3, 54, 27, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 925, 1, 0, 0, 0, 923, 924, 5, 59, 0, 0, 924, 926, 5, 537, 0, 0, 925, 923, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 5, 17, 0, 0, 928, 929, 3, 156, 78, 0, 929, 105, 1, 0, 0, 0, 930, 934, 5, 72, 0, 0, 931, 935, 5, 497, 0, 0, 932, 933, 5, 497, 0, 0, 933, 935, 5, 370, 0, 0, 934, 931, 1, 0, 0, 0, 934, 932, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 5, 153, 0, 0, 937, 939, 3, 330, 165, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 3, 268, 134, 0, 941, 942, 5, 17, 0, 0, 942, 945, 3, 302, 151, 0, 943, 944, 5, 195, 0, 0, 944, 946, 7, 16, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 949, 3, 108, 54, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 107, 1, 0, 0, 0, 950, 951, 5, 412, 0, 0, 951, 952, 5, 463, 0, 0, 952, 958, 3, 110, 55, 0, 953, 954, 5, 520, 0, 0, 954, 955, 5, 463, 0, 0, 955, 957, 3, 110, 55, 0, 956, 953, 1, 0, 0, 0, 957, 960, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 109, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 961, 962, 5, 537, 0, 0, 962, 111, 1, 0, 0, 0, 963, 964, 5, 8, 0, 0, 964, 966, 5, 373, 0, 0, 965, 967, 3, 332, 166, 0, 966, 965, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 974, 3, 320, 160, 0, 969, 975, 3, 114, 57, 0, 970, 975, 3, 116, 58, 0, 971, 975, 3, 118, 59, 0, 972, 975, 3, 120, 60, 0, 973, 975, 3, 122, 61, 0, 974, 969, 1, 0, 0, 0, 974, 970, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 113, 1, 0, 0, 0, 976, 978, 5, 311, 0, 0, 977, 979, 3, 326, 163, 0, 978, 977, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 5, 388, 0, 0, 981, 982, 3, 326, 163, 0, 982, 115, 1, 0, 0, 0, 983, 984, 5, 340, 0, 0, 984, 985, 3, 334, 167, 0, 985, 117, 1, 0, 0, 0, 986, 987, 5, 437, 0, 0, 987, 988, 5, 64, 0, 0, 988, 989, 3, 84, 42, 0, 989, 990, 5, 288, 0, 0, 990, 991, 5, 466, 0, 0, 991, 993, 3, 54, 27, 0, 992, 994, 3, 124, 62, 0, 993, 992, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 119, 1, 0, 0, 0, 995, 996, 5, 116, 0, 0, 996, 997, 5, 64, 0, 0, 997, 998, 3, 84, 42, 0, 998, 121, 1, 0, 0, 0, 999, 1000, 5, 437, 0, 0, 1000, 1001, 5, 403, 0, 0, 1001, 1002, 3, 54, 27, 0, 1002, 123, 1, 0, 0, 0, 1003, 1004, 5, 241, 0, 0, 1004, 1005, 5, 125, 0, 0, 1005, 125, 1, 0, 0, 0, 1006, 1007, 5, 8, 0, 0, 1007, 1008, 5, 501, 0, 0, 1008, 1012, 3, 322, 161, 0, 1009, 1013, 3, 114, 57, 0, 1010, 1011, 5, 17, 0, 0, 1011, 1013, 3, 156, 78, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1013, 127, 1, 0, 0, 0, 1014, 1015, 5, 8, 0, 0, 1015, 1016, 5, 447, 0, 0, 1016, 1017, 3, 314, 157, 0, 1017, 1018, 3, 116, 58, 0, 1018, 129, 1, 0, 0, 0, 1019, 1023, 5, 8, 0, 0, 1020, 1024, 5, 497, 0, 0, 1021, 1022, 5, 497, 0, 0, 1022, 1024, 5, 370, 0, 0, 1023, 1020, 1, 0, 0, 0, 1023, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 5, 153, 0, 0, 1026, 1028, 3, 332, 166, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 3, 270, 135, 0, 1030, 1031, 5, 17, 0, 0, 1031, 1034, 3, 302, 151, 0, 1032, 1033, 5, 195, 0, 0, 1033, 1035, 7, 16, 0, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 131, 1, 0, 0, 0, 1036, 1037, 5, 116, 0, 0, 1037, 1039, 5, 441, 0, 0, 1038, 1040, 3, 332, 166, 0, 1039, 1038, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 3, 310, 155, 0, 1042, 133, 1, 0, 0, 0, 1043, 1045, 5, 116, 0, 0, 1044, 1046, 5, 497, 0, 0, 1045, 1044, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1049, 5, 373, 0, 0, 1048, 1050, 3, 332, 166, 0, 1049, 1048, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1052, 3, 320, 160, 0, 1052, 135, 1, 0, 0, 0, 1053, 1054, 5, 116, 0, 0, 1054, 1056, 5, 447, 0, 0, 1055, 1057, 3, 332, 166, 0, 1056, 1055, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1060, 3, 314, 157, 0, 1059, 1061, 7, 17, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 137, 1, 0, 0, 0, 1062, 1064, 5, 116, 0, 0, 1063, 1065, 5, 497, 0, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 5, 501, 0, 0, 1067, 1069, 3, 332, 166, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 3, 322, 161, 0, 1071, 139, 1, 0, 0, 0, 1072, 1076, 5, 116, 0, 0, 1073, 1077, 5, 497, 0, 0, 1074, 1075, 5, 497, 0, 0, 1075, 1077, 5, 370, 0, 0, 1076, 1073, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 5, 153, 0, 0, 1079, 1081, 3, 332, 166, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1083, 3, 270, 135, 0, 1083, 141, 1, 0, 0, 0, 1084, 1086, 5, 132, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1092, 3, 144, 72, 0, 1088, 1092, 3, 152, 76, 0, 1089, 1090, 5, 132, 0, 0, 1090, 1092, 3, 154, 77, 0, 1091, 1085, 1, 0, 0, 0, 1091, 1088, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1092, 143, 1, 0, 0, 0, 1093, 1094, 5, 177, 0, 0, 1094, 1095, 7, 18, 0, 0, 1095, 1104, 3, 320, 160, 0, 1096, 1098, 3, 146, 73, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1101, 3, 54, 27, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1105, 3, 156, 78, 0, 1103, 1105, 3, 148, 74, 0, 1104, 1097, 1, 0, 0, 0, 1104, 1103, 1, 0, 0, 0, 1105, 145, 1, 0, 0, 0, 1106, 1107, 5, 268, 0, 0, 1107, 1108, 3, 334, 167, 0, 1108, 147, 1, 0, 0, 0, 1109, 1110, 5, 414, 0, 0, 1110, 1115, 3, 150, 75, 0, 1111, 1112, 5, 520, 0, 0, 1112, 1114, 3, 150, 75, 0, 1113, 1111, 1, 0, 0, 0, 1114, 1117, 1, 0, 0, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 149, 1, 0, 0, 0, 1117, 1115, 1, 0, 0, 0, 1118, 1119, 5, 516, 0, 0, 1119, 1124, 3, 352, 176, 0, 1120, 1121, 5, 520, 0, 0, 1121, 1123, 3, 352, 176, 0, 1122, 1120, 1, 0, 0, 0, 1123, 1126, 1, 0, 0, 0, 1124, 1122, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1127, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1127, 1128, 5, 517, 0, 0, 1128, 151, 1, 0, 0, 0, 1129, 1130, 5, 24, 0, 0, 1130, 1131, 5, 354, 0, 0, 1131, 1132, 5, 340, 0, 0, 1132, 1136, 5, 521, 0, 0, 1133, 1134, 3, 144, 72, 0, 1134, 1135, 5, 521, 0, 0, 1135, 1137, 1, 0, 0, 0, 1136, 1133, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 5, 122, 0, 0, 1141, 153, 1, 0, 0, 0, 1142, 1143, 5, 354, 0, 0, 1143, 1144, 5, 340, 0, 0, 1144, 1148, 5, 24, 0, 0, 1145, 1146, 3, 144, 72, 0, 1146, 1147, 5, 521, 0, 0, 1147, 1149, 1, 0, 0, 0, 1148, 1145, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1153, 5, 122, 0, 0, 1153, 155, 1, 0, 0, 0, 1154, 1155, 6, 78, -1, 0, 1155, 1178, 3, 158, 79, 0, 1156, 1157, 3, 160, 80, 0, 1157, 1158, 3, 156, 78, 5, 1158, 1178, 1, 0, 0, 0, 1159, 1160, 5, 516, 0, 0, 1160, 1161, 3, 156, 78, 0, 1161, 1162, 5, 517, 0, 0, 1162, 1178, 1, 0, 0, 0, 1163, 1165, 3, 168, 84, 0, 1164, 1166, 3, 228, 114, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1168, 1, 0, 0, 0, 1167, 1169, 3, 232, 116, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1178, 1, 0, 0, 0, 1170, 1172, 3, 166, 83, 0, 1171, 1173, 3, 228, 114, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1176, 3, 232, 116, 0, 1175, 1174, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1178, 1, 0, 0, 0, 1177, 1154, 1, 0, 0, 0, 1177, 1156, 1, 0, 0, 0, 1177, 1159, 1, 0, 0, 0, 1177, 1163, 1, 0, 0, 0, 1177, 1170, 1, 0, 0, 0, 1178, 1193, 1, 0, 0, 0, 1179, 1180, 10, 3, 0, 0, 1180, 1182, 7, 19, 0, 0, 1181, 1183, 5, 5, 0, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1186, 3, 156, 78, 0, 1185, 1187, 3, 228, 114, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1190, 3, 232, 116, 0, 1189, 1188, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1192, 1, 0, 0, 0, 1191, 1179, 1, 0, 0, 0, 1192, 1195, 1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 157, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1196, 1197, 5, 414, 0, 0, 1197, 1202, 3, 256, 128, 0, 1198, 1199, 5, 520, 0, 0, 1199, 1201, 3, 256, 128, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 159, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1206, 5, 433, 0, 0, 1206, 1211, 3, 162, 81, 0, 1207, 1208, 5, 520, 0, 0, 1208, 1210, 3, 162, 81, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 161, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1226, 3, 164, 82, 0, 1215, 1216, 5, 516, 0, 0, 1216, 1221, 3, 52, 26, 0, 1217, 1218, 5, 520, 0, 0, 1218, 1220, 3, 52, 26, 0, 1219, 1217, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 1, 0, 0, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1225, 5, 517, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1215, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1229, 5, 17, 0, 0, 1229, 1230, 5, 516, 0, 0, 1230, 1231, 3, 156, 78, 0, 1231, 1232, 5, 517, 0, 0, 1232, 163, 1, 0, 0, 0, 1233, 1234, 3, 302, 151, 0, 1234, 165, 1, 0, 0, 0, 1235, 1237, 3, 168, 84, 0, 1236, 1238, 3, 174, 87, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1240, 1, 0, 0, 0, 1239, 1241, 3, 202, 101, 0, 1240, 1239, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1244, 3, 204, 102, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1247, 3, 218, 109, 0, 1246, 1245, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1249, 1, 0, 0, 0, 1248, 1250, 3, 220, 110, 0, 1249, 1248, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1256, 1, 0, 0, 0, 1251, 1252, 3, 168, 84, 0, 1252, 1253, 3, 174, 87, 0, 1253, 1254, 3, 226, 113, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1235, 1, 0, 0, 0, 1255, 1251, 1, 0, 0, 0, 1256, 167, 1, 0, 0, 0, 1257, 1259, 5, 336, 0, 0, 1258, 1260, 3, 362, 181, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1270, 1, 0, 0, 0, 1261, 1271, 5, 527, 0, 0, 1262, 1267, 3, 170, 85, 0, 1263, 1264, 5, 520, 0, 0, 1264, 1266, 3, 170, 85, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1269, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1271, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1270, 1261, 1, 0, 0, 0, 1270, 1262, 1, 0, 0, 0, 1271, 169, 1, 0, 0, 0, 1272, 1288, 3, 172, 86, 0, 1273, 1278, 3, 52, 26, 0, 1274, 1276, 5, 17, 0, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 3, 256, 128, 0, 1278, 1275, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1288, 1, 0, 0, 0, 1280, 1285, 3, 256, 128, 0, 1281, 1283, 5, 17, 0, 0, 1282, 1281, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 3, 52, 26, 0, 1285, 1282, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1272, 1, 0, 0, 0, 1287, 1273, 1, 0, 0, 0, 1287, 1280, 1, 0, 0, 0, 1288, 171, 1, 0, 0, 0, 1289, 1290, 3, 266, 133, 0, 1290, 1291, 5, 262, 0, 0, 1291, 1292, 3, 224, 112, 0, 1292, 1293, 5, 17, 0, 0, 1293, 1294, 3, 302, 151, 0, 1294, 1302, 1, 0, 0, 0, 1295, 1296, 3, 266, 133, 0, 1296, 1297, 5, 262, 0, 0, 1297, 1298, 3, 294, 147, 0, 1298, 1299, 5, 17, 0, 0, 1299, 1300, 3, 302, 151, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1289, 1, 0, 0, 0, 1301, 1295, 1, 0, 0, 0, 1302, 173, 1, 0, 0, 0, 1303, 1304, 5, 151, 0, 0, 1304, 1305, 3, 176, 88, 0, 1305, 175, 1, 0, 0, 0, 1306, 1307, 6, 88, -1, 0, 1307, 1312, 3, 178, 89, 0, 1308, 1309, 5, 520, 0, 0, 1309, 1311, 3, 178, 89, 0, 1310, 1308, 1, 0, 0, 0, 1311, 1314, 1, 0, 0, 0, 1312, 1310, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1318, 1, 0, 0, 0, 1314, 1312, 1, 0, 0, 0, 1315, 1318, 3, 186, 93, 0, 1316, 1318, 3, 188, 94, 0, 1317, 1306, 1, 0, 0, 0, 1317, 1315, 1, 0, 0, 0, 1317, 1316, 1, 0, 0, 0, 1318, 1340, 1, 0, 0, 0, 1319, 1320, 10, 3, 0, 0, 1320, 1321, 5, 73, 0, 0, 1321, 1322, 5, 185, 0, 0, 1322, 1339, 3, 176, 88, 4, 1323, 1325, 10, 4, 0, 0, 1324, 1326, 5, 233, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1328, 1, 0, 0, 0, 1327, 1329, 7, 20, 0, 0, 1328, 1327, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1332, 5, 261, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 5, 185, 0, 0, 1334, 1336, 3, 176, 88, 0, 1335, 1337, 3, 200, 100, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1339, 1, 0, 0, 0, 1338, 1319, 1, 0, 0, 0, 1338, 1323, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 177, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1345, 3, 180, 90, 0, 1344, 1346, 3, 292, 146, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 179, 1, 0, 0, 0, 1347, 1349, 5, 373, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1352, 3, 320, 160, 0, 1351, 1353, 3, 182, 91, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1387, 1, 0, 0, 0, 1354, 1356, 3, 322, 161, 0, 1355, 1357, 3, 182, 91, 0, 1356, 1355, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1387, 1, 0, 0, 0, 1358, 1359, 5, 198, 0, 0, 1359, 1360, 5, 373, 0, 0, 1360, 1361, 5, 516, 0, 0, 1361, 1362, 3, 270, 135, 0, 1362, 1363, 5, 516, 0, 0, 1363, 1368, 3, 272, 136, 0, 1364, 1365, 5, 520, 0, 0, 1365, 1367, 3, 272, 136, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1370, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1371, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1372, 5, 517, 0, 0, 1372, 1373, 5, 517, 0, 0, 1373, 1387, 1, 0, 0, 0, 1374, 1376, 5, 198, 0, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 5, 516, 0, 0, 1378, 1379, 3, 156, 78, 0, 1379, 1380, 5, 517, 0, 0, 1380, 1387, 1, 0, 0, 0, 1381, 1382, 5, 405, 0, 0, 1382, 1383, 5, 516, 0, 0, 1383, 1384, 3, 256, 128, 0, 1384, 1385, 5, 517, 0, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1348, 1, 0, 0, 0, 1386, 1354, 1, 0, 0, 0, 1386, 1358, 1, 0, 0, 0, 1386, 1375, 1, 0, 0, 0, 1386, 1381, 1, 0, 0, 0, 1387, 181, 1, 0, 0, 0, 1388, 1389, 5, 146, 0, 0, 1389, 1390, 5, 371, 0, 0, 1390, 1391, 5, 17, 0, 0, 1391, 1392, 5, 249, 0, 0, 1392, 1393, 3, 184, 92, 0, 1393, 183, 1, 0, 0, 0, 1394, 1395, 3, 256, 128, 0, 1395, 185, 1, 0, 0, 0, 1396, 1397, 5, 516, 0, 0, 1397, 1398, 3, 148, 74, 0, 1398, 1399, 5, 517, 0, 0, 1399, 1400, 3, 292, 146, 0, 1400, 187, 1, 0, 0, 0, 1401, 1402, 5, 373, 0, 0, 1402, 1403, 5, 516, 0, 0, 1403, 1404, 3, 190, 95, 0, 1404, 1405, 5, 517, 0, 0, 1405, 189, 1, 0, 0, 0, 1406, 1407, 3, 192, 96, 0, 1407, 1408, 5, 516, 0, 0, 1408, 1413, 3, 194, 97, 0, 1409, 1410, 5, 520, 0, 0, 1410, 1412, 3, 194, 97, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1415, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1417, 5, 517, 0, 0, 1417, 191, 1, 0, 0, 0, 1418, 1419, 7, 21, 0, 0, 1419, 193, 1, 0, 0, 0, 1420, 1421, 5, 373, 0, 0, 1421, 1436, 3, 216, 108, 0, 1422, 1436, 3, 198, 99, 0, 1423, 1436, 3, 280, 140, 0, 1424, 1425, 5, 446, 0, 0, 1425, 1426, 5, 536, 0, 0, 1426, 1427, 5, 373, 0, 0, 1427, 1436, 3, 216, 108, 0, 1428, 1429, 5, 498, 0, 0, 1429, 1430, 5, 536, 0, 0, 1430, 1436, 3, 198, 99, 0, 1431, 1432, 3, 196, 98, 0, 1432, 1433, 5, 536, 0, 0, 1433, 1434, 3, 280, 140, 0, 1434, 1436, 1, 0, 0, 0, 1435, 1420, 1, 0, 0, 0, 1435, 1422, 1, 0, 0, 0, 1435, 1423, 1, 0, 0, 0, 1435, 1424, 1, 0, 0, 0, 1435, 1428, 1, 0, 0, 0, 1435, 1431, 1, 0, 0, 0, 1436, 195, 1, 0, 0, 0, 1437, 1438, 7, 22, 0, 0, 1438, 197, 1, 0, 0, 0, 1439, 1440, 5, 451, 0, 0, 1440, 1441, 5, 516, 0, 0, 1441, 1442, 3, 52, 26, 0, 1442, 1443, 5, 517, 0, 0, 1443, 199, 1, 0, 0, 0, 1444, 1445, 5, 253, 0, 0, 1445, 1449, 3, 258, 129, 0, 1446, 1447, 5, 412, 0, 0, 1447, 1449, 3, 54, 27, 0, 1448, 1444, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1449, 201, 1, 0, 0, 0, 1450, 1451, 5, 430, 0, 0, 1451, 1452, 3, 258, 129, 0, 1452, 203, 1, 0, 0, 0, 1453, 1454, 5, 159, 0, 0, 1454, 1455, 5, 34, 0, 0, 1455, 1460, 3, 206, 103, 0, 1456, 1457, 5, 520, 0, 0, 1457, 1459, 3, 206, 103, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1462, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 205, 1, 0, 0, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1504, 3, 52, 26, 0, 1464, 1504, 3, 212, 106, 0, 1465, 1466, 5, 516, 0, 0, 1466, 1504, 5, 517, 0, 0, 1467, 1468, 5, 516, 0, 0, 1468, 1473, 3, 256, 128, 0, 1469, 1470, 5, 520, 0, 0, 1470, 1472, 3, 256, 128, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1475, 1, 0, 0, 0, 1473, 1471, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1476, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1477, 5, 517, 0, 0, 1477, 1504, 1, 0, 0, 0, 1478, 1479, 3, 210, 105, 0, 1479, 1480, 5, 516, 0, 0, 1480, 1485, 3, 256, 128, 0, 1481, 1482, 5, 520, 0, 0, 1482, 1484, 3, 256, 128, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1489, 5, 517, 0, 0, 1489, 1504, 1, 0, 0, 0, 1490, 1491, 3, 208, 104, 0, 1491, 1492, 5, 516, 0, 0, 1492, 1497, 3, 206, 103, 0, 1493, 1494, 5, 520, 0, 0, 1494, 1496, 3, 206, 103, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 1, 0, 0, 0, 1497, 1495, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1500, 1, 0, 0, 0, 1499, 1497, 1, 0, 0, 0, 1500, 1501, 5, 517, 0, 0, 1501, 1504, 1, 0, 0, 0, 1502, 1504, 3, 256, 128, 0, 1503, 1463, 1, 0, 0, 0, 1503, 1464, 1, 0, 0, 0, 1503, 1465, 1, 0, 0, 0, 1503, 1467, 1, 0, 0, 0, 1503, 1478, 1, 0, 0, 0, 1503, 1490, 1, 0, 0, 0, 1503, 1502, 1, 0, 0, 0, 1504, 207, 1, 0, 0, 0, 1505, 1506, 5, 160, 0, 0, 1506, 1507, 5, 493, 0, 0, 1507, 209, 1, 0, 0, 0, 1508, 1509, 7, 23, 0, 0, 1509, 211, 1, 0, 0, 0, 1510, 1511, 3, 214, 107, 0, 1511, 1512, 5, 516, 0, 0, 1512, 1513, 3, 216, 108, 0, 1513, 1514, 5, 520, 0, 0, 1514, 1515, 3, 280, 140, 0, 1515, 1516, 5, 517, 0, 0, 1516, 213, 1, 0, 0, 0, 1517, 1518, 7, 24, 0, 0, 1518, 215, 1, 0, 0, 0, 1519, 1520, 3, 326, 163, 0, 1520, 217, 1, 0, 0, 0, 1521, 1522, 5, 163, 0, 0, 1522, 1523, 3, 258, 129, 0, 1523, 219, 1, 0, 0, 0, 1524, 1525, 5, 432, 0, 0, 1525, 1530, 3, 222, 111, 0, 1526, 1527, 5, 520, 0, 0, 1527, 1529, 3, 222, 111, 0, 1528, 1526, 1, 0, 0, 0, 1529, 1532, 1, 0, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 221, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1534, 3, 294, 147, 0, 1534, 1535, 5, 17, 0, 0, 1535, 1536, 3, 224, 112, 0, 1536, 223, 1, 0, 0, 0, 1537, 1539, 3, 294, 147, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1542, 5, 516, 0, 0, 1541, 1543, 3, 234, 117, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1546, 3, 228, 114, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1548, 1, 0, 0, 0, 1547, 1549, 3, 250, 125, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 5, 517, 0, 0, 1551, 225, 1, 0, 0, 0, 1552, 1553, 5, 213, 0, 0, 1553, 1555, 5, 516, 0, 0, 1554, 1556, 3, 234, 117, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1559, 3, 228, 114, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1561, 1, 0, 0, 0, 1560, 1562, 3, 238, 119, 0, 1561, 1560, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1564, 1, 0, 0, 0, 1563, 1565, 3, 244, 122, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1567, 1, 0, 0, 0, 1566, 1568, 3, 246, 123, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 1, 0, 0, 0, 1569, 1571, 3, 240, 120, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 248, 124, 0, 1573, 1578, 5, 517, 0, 0, 1574, 1576, 5, 17, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 3, 302, 151, 0, 1578, 1575, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 227, 1, 0, 0, 0, 1580, 1581, 5, 258, 0, 0, 1581, 1582, 5, 34, 0, 0, 1582, 1587, 3, 230, 115, 0, 1583, 1584, 5, 520, 0, 0, 1584, 1586, 3, 230, 115, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1589, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 229, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1592, 3, 52, 26, 0, 1591, 1593, 7, 25, 0, 0, 1592, 1591, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1595, 5, 476, 0, 0, 1595, 1597, 7, 26, 0, 0, 1596, 1594, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 231, 1, 0, 0, 0, 1598, 1601, 5, 204, 0, 0, 1599, 1602, 5, 5, 0, 0, 1600, 1602, 3, 256, 128, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1600, 1, 0, 0, 0, 1602, 233, 1, 0, 0, 0, 1603, 1604, 5, 268, 0, 0, 1604, 1607, 5, 34, 0, 0, 1605, 1608, 3, 52, 26, 0, 1606, 1608, 3, 266, 133, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1606, 1, 0, 0, 0, 1608, 1616, 1, 0, 0, 0, 1609, 1612, 5, 520, 0, 0, 1610, 1613, 3, 52, 26, 0, 1611, 1613, 3, 266, 133, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1611, 1, 0, 0, 0, 1613, 1615, 1, 0, 0, 0, 1614, 1609, 1, 0, 0, 0, 1615, 1618, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 235, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1619, 1636, 5, 527, 0, 0, 1620, 1636, 5, 530, 0, 0, 1621, 1636, 5, 535, 0, 0, 1622, 1623, 5, 518, 0, 0, 1623, 1624, 5, 538, 0, 0, 1624, 1625, 5, 520, 0, 0, 1625, 1626, 5, 538, 0, 0, 1626, 1636, 5, 519, 0, 0, 1627, 1628, 5, 518, 0, 0, 1628, 1629, 5, 538, 0, 0, 1629, 1630, 5, 520, 0, 0, 1630, 1636, 5, 519, 0, 0, 1631, 1632, 5, 518, 0, 0, 1632, 1633, 5, 520, 0, 0, 1633, 1634, 5, 538, 0, 0, 1634, 1636, 5, 519, 0, 0, 1635, 1619, 1, 0, 0, 0, 1635, 1620, 1, 0, 0, 0, 1635, 1621, 1, 0, 0, 0, 1635, 1622, 1, 0, 0, 0, 1635, 1627, 1, 0, 0, 0, 1635, 1631, 1, 0, 0, 0, 1636, 237, 1, 0, 0, 0, 1637, 1638, 5, 215, 0, 0, 1638, 1643, 3, 170, 85, 0, 1639, 1640, 5, 520, 0, 0, 1640, 1642, 3, 170, 85, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1645, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 239, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1647, 5, 271, 0, 0, 1647, 1649, 5, 516, 0, 0, 1648, 1650, 3, 242, 121, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1655, 5, 517, 0, 0, 1654, 1656, 3, 254, 127, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 241, 1, 0, 0, 0, 1657, 1659, 3, 304, 152, 0, 1658, 1660, 3, 236, 118, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 243, 1, 0, 0, 0, 1661, 1662, 5, 5, 0, 0, 1662, 1663, 5, 322, 0, 0, 1663, 1664, 5, 272, 0, 0, 1664, 1670, 5, 210, 0, 0, 1665, 1666, 5, 254, 0, 0, 1666, 1667, 5, 321, 0, 0, 1667, 1668, 5, 272, 0, 0, 1668, 1670, 5, 210, 0, 0, 1669, 1661, 1, 0, 0, 0, 1669, 1665, 1, 0, 0, 0, 1670, 245, 1, 0, 0, 0, 1671, 1672, 5, 438, 0, 0, 1672, 1673, 5, 210, 0, 0, 1673, 1674, 5, 343, 0, 0, 1674, 1675, 5, 478, 0, 0, 1675, 1676, 5, 467, 0, 0, 1676, 1696, 5, 321, 0, 0, 1677, 1678, 5, 438, 0, 0, 1678, 1679, 5, 210, 0, 0, 1679, 1680, 5, 343, 0, 0, 1680, 1681, 5, 388, 0, 0, 1681, 1682, 5, 237, 0, 0, 1682, 1696, 5, 321, 0, 0, 1683, 1684, 5, 438, 0, 0, 1684, 1685, 5, 210, 0, 0, 1685, 1686, 5, 343, 0, 0, 1686, 1687, 5, 388, 0, 0, 1687, 1688, 5, 467, 0, 0, 1688, 1696, 3, 304, 152, 0, 1689, 1690, 5, 438, 0, 0, 1690, 1691, 5, 210, 0, 0, 1691, 1692, 5, 343, 0, 0, 1692, 1693, 5, 388, 0, 0, 1693, 1694, 5, 457, 0, 0, 1694, 1696, 3, 304, 152, 0, 1695, 1671, 1, 0, 0, 0, 1695, 1677, 1, 0, 0, 0, 1695, 1683, 1, 0, 0, 0, 1695, 1689, 1, 0, 0, 0, 1696, 247, 1, 0, 0, 0, 1697, 1698, 5, 105, 0, 0, 1698, 1703, 3, 170, 85, 0, 1699, 1700, 5, 520, 0, 0, 1700, 1702, 3, 170, 85, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 249, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1707, 5, 292, 0, 0, 1707, 1708, 5, 27, 0, 0, 1708, 1709, 3, 280, 140, 0, 1709, 1710, 3, 252, 126, 0, 1710, 1716, 1, 0, 0, 0, 1711, 1712, 5, 322, 0, 0, 1712, 1713, 5, 27, 0, 0, 1713, 1714, 5, 538, 0, 0, 1714, 1716, 3, 252, 126, 0, 1715, 1706, 1, 0, 0, 0, 1715, 1711, 1, 0, 0, 0, 1716, 251, 1, 0, 0, 0, 1717, 1718, 5, 480, 0, 0, 1718, 1719, 5, 10, 0, 0, 1719, 1720, 5, 76, 0, 0, 1720, 1721, 5, 321, 0, 0, 1721, 253, 1, 0, 0, 0, 1722, 1723, 5, 434, 0, 0, 1723, 1724, 3, 280, 140, 0, 1724, 255, 1, 0, 0, 0, 1725, 1726, 3, 258, 129, 0, 1726, 257, 1, 0, 0, 0, 1727, 1728, 6, 129, -1, 0, 1728, 1729, 5, 241, 0, 0, 1729, 1740, 3, 258, 129, 6, 1730, 1731, 5, 133, 0, 0, 1731, 1732, 5, 516, 0, 0, 1732, 1733, 3, 156, 78, 0, 1733, 1734, 5, 517, 0, 0, 1734, 1740, 1, 0, 0, 0, 1735, 1737, 3, 264, 132, 0, 1736, 1738, 3, 260, 130, 0, 1737, 1736, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1740, 1, 0, 0, 0, 1739, 1727, 1, 0, 0, 0, 1739, 1730, 1, 0, 0, 0, 1739, 1735, 1, 0, 0, 0, 1740, 1755, 1, 0, 0, 0, 1741, 1742, 10, 3, 0, 0, 1742, 1743, 5, 10, 0, 0, 1743, 1754, 3, 258, 129, 4, 1744, 1745, 10, 2, 0, 0, 1745, 1746, 5, 257, 0, 0, 1746, 1754, 3, 258, 129, 3, 1747, 1748, 10, 1, 0, 0, 1748, 1750, 5, 184, 0, 0, 1749, 1751, 5, 241, 0, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 7, 27, 0, 0, 1753, 1741, 1, 0, 0, 0, 1753, 1744, 1, 0, 0, 0, 1753, 1747, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 259, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1760, 5, 241, 0, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 5, 27, 0, 0, 1762, 1764, 7, 28, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 3, 264, 132, 0, 1766, 1767, 5, 10, 0, 0, 1767, 1768, 3, 264, 132, 0, 1768, 1826, 1, 0, 0, 0, 1769, 1771, 5, 241, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 5, 170, 0, 0, 1773, 1774, 5, 516, 0, 0, 1774, 1779, 3, 256, 128, 0, 1775, 1776, 5, 520, 0, 0, 1776, 1778, 3, 256, 128, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1783, 5, 517, 0, 0, 1783, 1826, 1, 0, 0, 0, 1784, 1786, 5, 241, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 5, 170, 0, 0, 1788, 1789, 5, 516, 0, 0, 1789, 1790, 3, 156, 78, 0, 1790, 1791, 5, 517, 0, 0, 1791, 1826, 1, 0, 0, 0, 1792, 1793, 5, 133, 0, 0, 1793, 1794, 5, 516, 0, 0, 1794, 1795, 3, 156, 78, 0, 1795, 1796, 5, 517, 0, 0, 1796, 1826, 1, 0, 0, 0, 1797, 1799, 5, 241, 0, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 5, 318, 0, 0, 1801, 1826, 3, 264, 132, 0, 1802, 1826, 3, 262, 131, 0, 1803, 1805, 5, 184, 0, 0, 1804, 1806, 5, 241, 0, 0, 1805, 1804, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1826, 7, 27, 0, 0, 1808, 1810, 5, 184, 0, 0, 1809, 1811, 5, 241, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 5, 113, 0, 0, 1813, 1814, 5, 151, 0, 0, 1814, 1826, 3, 264, 132, 0, 1815, 1817, 5, 241, 0, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 5, 342, 0, 0, 1819, 1820, 5, 388, 0, 0, 1820, 1823, 3, 264, 132, 0, 1821, 1822, 5, 127, 0, 0, 1822, 1824, 3, 356, 178, 0, 1823, 1821, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1826, 1, 0, 0, 0, 1825, 1759, 1, 0, 0, 0, 1825, 1770, 1, 0, 0, 0, 1825, 1785, 1, 0, 0, 0, 1825, 1792, 1, 0, 0, 0, 1825, 1798, 1, 0, 0, 0, 1825, 1802, 1, 0, 0, 0, 1825, 1803, 1, 0, 0, 0, 1825, 1808, 1, 0, 0, 0, 1825, 1816, 1, 0, 0, 0, 1826, 261, 1, 0, 0, 0, 1827, 1829, 5, 241, 0, 0, 1828, 1827, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 5, 202, 0, 0, 1831, 1845, 7, 29, 0, 0, 1832, 1833, 5, 516, 0, 0, 1833, 1846, 5, 517, 0, 0, 1834, 1835, 5, 516, 0, 0, 1835, 1840, 3, 256, 128, 0, 1836, 1837, 5, 520, 0, 0, 1837, 1839, 3, 256, 128, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1844, 5, 517, 0, 0, 1844, 1846, 1, 0, 0, 0, 1845, 1832, 1, 0, 0, 0, 1845, 1834, 1, 0, 0, 0, 1846, 1857, 1, 0, 0, 0, 1847, 1849, 5, 241, 0, 0, 1848, 1847, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 5, 202, 0, 0, 1851, 1854, 3, 264, 132, 0, 1852, 1853, 5, 127, 0, 0, 1853, 1855, 3, 356, 178, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1828, 1, 0, 0, 0, 1856, 1848, 1, 0, 0, 0, 1857, 263, 1, 0, 0, 0, 1858, 1859, 6, 132, -1, 0, 1859, 1863, 3, 266, 133, 0, 1860, 1861, 7, 30, 0, 0, 1861, 1863, 3, 264, 132, 7, 1862, 1858, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1885, 1, 0, 0, 0, 1864, 1865, 10, 6, 0, 0, 1865, 1866, 7, 31, 0, 0, 1866, 1884, 3, 264, 132, 7, 1867, 1868, 10, 5, 0, 0, 1868, 1869, 7, 32, 0, 0, 1869, 1884, 3, 264, 132, 6, 1870, 1871, 10, 4, 0, 0, 1871, 1872, 5, 511, 0, 0, 1872, 1884, 3, 264, 132, 5, 1873, 1874, 10, 3, 0, 0, 1874, 1875, 5, 512, 0, 0, 1875, 1884, 3, 264, 132, 4, 1876, 1877, 10, 2, 0, 0, 1877, 1878, 5, 510, 0, 0, 1878, 1884, 3, 264, 132, 3, 1879, 1880, 10, 1, 0, 0, 1880, 1881, 3, 344, 172, 0, 1881, 1882, 3, 264, 132, 2, 1882, 1884, 1, 0, 0, 0, 1883, 1864, 1, 0, 0, 0, 1883, 1867, 1, 0, 0, 0, 1883, 1870, 1, 0, 0, 0, 1883, 1873, 1, 0, 0, 0, 1883, 1876, 1, 0, 0, 0, 1883, 1879, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 265, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1889, 6, 133, -1, 0, 1889, 1891, 5, 40, 0, 0, 1890, 1892, 3, 308, 154, 0, 1891, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1897, 1, 0, 0, 0, 1895, 1896, 5, 120, 0, 0, 1896, 1898, 3, 256, 128, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 5, 122, 0, 0, 1900, 1981, 1, 0, 0, 0, 1901, 1902, 5, 40, 0, 0, 1902, 1904, 3, 256, 128, 0, 1903, 1905, 3, 308, 154, 0, 1904, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1909, 5, 120, 0, 0, 1909, 1911, 3, 256, 128, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 5, 122, 0, 0, 1913, 1981, 1, 0, 0, 0, 1914, 1915, 5, 41, 0, 0, 1915, 1916, 5, 516, 0, 0, 1916, 1917, 3, 256, 128, 0, 1917, 1918, 5, 17, 0, 0, 1918, 1919, 3, 56, 28, 0, 1919, 1920, 5, 517, 0, 0, 1920, 1981, 1, 0, 0, 0, 1921, 1922, 5, 457, 0, 0, 1922, 1923, 5, 516, 0, 0, 1923, 1926, 3, 256, 128, 0, 1924, 1925, 5, 461, 0, 0, 1925, 1927, 5, 476, 0, 0, 1926, 1924, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 5, 517, 0, 0, 1929, 1981, 1, 0, 0, 0, 1930, 1931, 5, 467, 0, 0, 1931, 1932, 5, 516, 0, 0, 1932, 1935, 3, 256, 128, 0, 1933, 1934, 5, 461, 0, 0, 1934, 1936, 5, 476, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1938, 5, 517, 0, 0, 1938, 1981, 1, 0, 0, 0, 1939, 1940, 5, 281, 0, 0, 1940, 1941, 5, 516, 0, 0, 1941, 1942, 3, 264, 132, 0, 1942, 1943, 5, 170, 0, 0, 1943, 1944, 3, 264, 132, 0, 1944, 1945, 5, 517, 0, 0, 1945, 1981, 1, 0, 0, 0, 1946, 1981, 3, 352, 176, 0, 1947, 1981, 5, 527, 0, 0, 1948, 1949, 3, 326, 163, 0, 1949, 1950, 5, 513, 0, 0, 1950, 1951, 5, 527, 0, 0, 1951, 1981, 1, 0, 0, 0, 1952, 1953, 5, 516, 0, 0, 1953, 1954, 3, 156, 78, 0, 1954, 1955, 5, 517, 0, 0, 1955, 1981, 1, 0, 0, 0, 1956, 1957, 3, 270, 135, 0, 1957, 1969, 5, 516, 0, 0, 1958, 1960, 3, 362, 181, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1966, 3, 272, 136, 0, 1962, 1963, 5, 520, 0, 0, 1963, 1965, 3, 272, 136, 0, 1964, 1962, 1, 0, 0, 0, 1965, 1968, 1, 0, 0, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1970, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1969, 1959, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 5, 517, 0, 0, 1972, 1981, 1, 0, 0, 0, 1973, 1981, 3, 302, 151, 0, 1974, 1981, 3, 274, 137, 0, 1975, 1976, 5, 516, 0, 0, 1976, 1977, 3, 256, 128, 0, 1977, 1978, 5, 517, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1981, 5, 85, 0, 0, 1980, 1888, 1, 0, 0, 0, 1980, 1901, 1, 0, 0, 0, 1980, 1914, 1, 0, 0, 0, 1980, 1921, 1, 0, 0, 0, 1980, 1930, 1, 0, 0, 0, 1980, 1939, 1, 0, 0, 0, 1980, 1946, 1, 0, 0, 0, 1980, 1947, 1, 0, 0, 0, 1980, 1948, 1, 0, 0, 0, 1980, 1952, 1, 0, 0, 0, 1980, 1956, 1, 0, 0, 0, 1980, 1973, 1, 0, 0, 0, 1980, 1974, 1, 0, 0, 0, 1980, 1975, 1, 0, 0, 0, 1980, 1979, 1, 0, 0, 0, 1981, 1989, 1, 0, 0, 0, 1982, 1983, 10, 5, 0, 0, 1983, 1984, 5, 514, 0, 0, 1984, 1985, 3, 264, 132, 0, 1985, 1986, 5, 515, 0, 0, 1986, 1988, 1, 0, 0, 0, 1987, 1982, 1, 0, 0, 0, 1988, 1991, 1, 0, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 267, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1992, 1993, 3, 326, 163, 0, 1993, 269, 1, 0, 0, 0, 1994, 1997, 3, 370, 185, 0, 1995, 1997, 3, 326, 163, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1995, 1, 0, 0, 0, 1997, 271, 1, 0, 0, 0, 1998, 2003, 3, 368, 184, 0, 1999, 2003, 3, 366, 183, 0, 2000, 2003, 3, 364, 182, 0, 2001, 2003, 3, 256, 128, 0, 2002, 1998, 1, 0, 0, 0, 2002, 1999, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2001, 1, 0, 0, 0, 2003, 273, 1, 0, 0, 0, 2004, 2005, 3, 326, 163, 0, 2005, 275, 1, 0, 0, 0, 2006, 2007, 3, 302, 151, 0, 2007, 277, 1, 0, 0, 0, 2008, 2011, 3, 302, 151, 0, 2009, 2011, 3, 274, 137, 0, 2010, 2008, 1, 0, 0, 0, 2010, 2009, 1, 0, 0, 0, 2011, 279, 1, 0, 0, 0, 2012, 2015, 5, 182, 0, 0, 2013, 2016, 3, 282, 141, 0, 2014, 2016, 3, 286, 143, 0, 2015, 2013, 1, 0, 0, 0, 2015, 2014, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 281, 1, 0, 0, 0, 2017, 2019, 3, 284, 142, 0, 2018, 2020, 3, 288, 144, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 283, 1, 0, 0, 0, 2021, 2022, 3, 290, 145, 0, 2022, 2023, 3, 366, 183, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2021, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 285, 1, 0, 0, 0, 2028, 2031, 3, 288, 144, 0, 2029, 2032, 3, 284, 142, 0, 2030, 2032, 3, 288, 144, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 287, 1, 0, 0, 0, 2033, 2034, 3, 290, 145, 0, 2034, 2035, 3, 366, 183, 0, 2035, 2036, 5, 388, 0, 0, 2036, 2037, 3, 366, 183, 0, 2037, 289, 1, 0, 0, 0, 2038, 2040, 7, 33, 0, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2044, 7, 34, 0, 0, 2042, 2044, 5, 537, 0, 0, 2043, 2039, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 291, 1, 0, 0, 0, 2045, 2047, 5, 17, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2050, 3, 302, 151, 0, 2049, 2051, 3, 298, 149, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 293, 1, 0, 0, 0, 2052, 2053, 3, 302, 151, 0, 2053, 2054, 3, 296, 148, 0, 2054, 295, 1, 0, 0, 0, 2055, 2056, 5, 221, 0, 0, 2056, 2058, 3, 302, 151, 0, 2057, 2055, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2063, 1, 0, 0, 0, 2061, 2063, 1, 0, 0, 0, 2062, 2057, 1, 0, 0, 0, 2062, 2061, 1, 0, 0, 0, 2063, 297, 1, 0, 0, 0, 2064, 2065, 5, 516, 0, 0, 2065, 2066, 3, 300, 150, 0, 2066, 2067, 5, 517, 0, 0, 2067, 299, 1, 0, 0, 0, 2068, 2073, 3, 302, 151, 0, 2069, 2070, 5, 520, 0, 0, 2070, 2072, 3, 302, 151, 0, 2071, 2069, 1, 0, 0, 0, 2072, 2075, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 301, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2076, 2080, 3, 304, 152, 0, 2077, 2080, 3, 306, 153, 0, 2078, 2080, 3, 372, 186, 0, 2079, 2076, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2078, 1, 0, 0, 0, 2080, 303, 1, 0, 0, 0, 2081, 2082, 7, 35, 0, 0, 2082, 305, 1, 0, 0, 0, 2083, 2084, 5, 537, 0, 0, 2084, 307, 1, 0, 0, 0, 2085, 2086, 5, 428, 0, 0, 2086, 2087, 3, 256, 128, 0, 2087, 2088, 5, 376, 0, 0, 2088, 2089, 3, 256, 128, 0, 2089, 309, 1, 0, 0, 0, 2090, 2091, 3, 302, 151, 0, 2091, 311, 1, 0, 0, 0, 2092, 2093, 3, 302, 151, 0, 2093, 313, 1, 0, 0, 0, 2094, 2097, 3, 302, 151, 0, 2095, 2096, 5, 513, 0, 0, 2096, 2098, 3, 302, 151, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 315, 1, 0, 0, 0, 2099, 2102, 3, 302, 151, 0, 2100, 2101, 5, 513, 0, 0, 2101, 2103, 3, 302, 151, 0, 2102, 2100, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 317, 1, 0, 0, 0, 2104, 2107, 3, 302, 151, 0, 2105, 2106, 5, 513, 0, 0, 2106, 2108, 3, 302, 151, 0, 2107, 2105, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2117, 1, 0, 0, 0, 2109, 2110, 3, 302, 151, 0, 2110, 2111, 5, 513, 0, 0, 2111, 2114, 3, 302, 151, 0, 2112, 2113, 5, 513, 0, 0, 2113, 2115, 3, 302, 151, 0, 2114, 2112, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2117, 1, 0, 0, 0, 2116, 2104, 1, 0, 0, 0, 2116, 2109, 1, 0, 0, 0, 2117, 319, 1, 0, 0, 0, 2118, 2121, 3, 302, 151, 0, 2119, 2120, 5, 513, 0, 0, 2120, 2122, 3, 302, 151, 0, 2121, 2119, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2131, 1, 0, 0, 0, 2123, 2124, 3, 302, 151, 0, 2124, 2125, 5, 513, 0, 0, 2125, 2128, 3, 302, 151, 0, 2126, 2127, 5, 513, 0, 0, 2127, 2129, 3, 302, 151, 0, 2128, 2126, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2118, 1, 0, 0, 0, 2130, 2123, 1, 0, 0, 0, 2131, 321, 1, 0, 0, 0, 2132, 2135, 3, 302, 151, 0, 2133, 2134, 5, 513, 0, 0, 2134, 2136, 3, 302, 151, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2145, 1, 0, 0, 0, 2137, 2138, 3, 302, 151, 0, 2138, 2139, 5, 513, 0, 0, 2139, 2142, 3, 302, 151, 0, 2140, 2141, 5, 513, 0, 0, 2141, 2143, 3, 302, 151, 0, 2142, 2140, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2132, 1, 0, 0, 0, 2144, 2137, 1, 0, 0, 0, 2145, 323, 1, 0, 0, 0, 2146, 2149, 3, 302, 151, 0, 2147, 2148, 5, 513, 0, 0, 2148, 2150, 3, 302, 151, 0, 2149, 2147, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2159, 1, 0, 0, 0, 2151, 2152, 3, 302, 151, 0, 2152, 2153, 5, 513, 0, 0, 2153, 2156, 3, 302, 151, 0, 2154, 2155, 5, 513, 0, 0, 2155, 2157, 3, 302, 151, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2146, 1, 0, 0, 0, 2158, 2151, 1, 0, 0, 0, 2159, 325, 1, 0, 0, 0, 2160, 2165, 3, 302, 151, 0, 2161, 2162, 5, 513, 0, 0, 2162, 2164, 3, 302, 151, 0, 2163, 2161, 1, 0, 0, 0, 2164, 2167, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 327, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2168, 2169, 5, 433, 0, 0, 2169, 2170, 3, 334, 167, 0, 2170, 329, 1, 0, 0, 0, 2171, 2172, 5, 167, 0, 0, 2172, 2173, 5, 241, 0, 0, 2173, 2174, 5, 133, 0, 0, 2174, 331, 1, 0, 0, 0, 2175, 2176, 5, 167, 0, 0, 2176, 2177, 5, 133, 0, 0, 2177, 333, 1, 0, 0, 0, 2178, 2179, 5, 516, 0, 0, 2179, 2184, 3, 336, 168, 0, 2180, 2181, 5, 520, 0, 0, 2181, 2183, 3, 336, 168, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2186, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2187, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2188, 5, 517, 0, 0, 2188, 335, 1, 0, 0, 0, 2189, 2194, 3, 338, 169, 0, 2190, 2192, 5, 505, 0, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2195, 3, 340, 170, 0, 2194, 2191, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 337, 1, 0, 0, 0, 2196, 2200, 3, 302, 151, 0, 2197, 2200, 3, 274, 137, 0, 2198, 2200, 5, 537, 0, 0, 2199, 2196, 1, 0, 0, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2198, 1, 0, 0, 0, 2200, 339, 1, 0, 0, 0, 2201, 2206, 5, 538, 0, 0, 2202, 2206, 5, 539, 0, 0, 2203, 2206, 3, 360, 180, 0, 2204, 2206, 5, 537, 0, 0, 2205, 2201, 1, 0, 0, 0, 2205, 2202, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2204, 1, 0, 0, 0, 2206, 341, 1, 0, 0, 0, 2207, 2214, 5, 10, 0, 0, 2208, 2209, 5, 511, 0, 0, 2209, 2214, 5, 511, 0, 0, 2210, 2214, 5, 257, 0, 0, 2211, 2212, 5, 510, 0, 0, 2212, 2214, 5, 510, 0, 0, 2213, 2207, 1, 0, 0, 0, 2213, 2208, 1, 0, 0, 0, 2213, 2210, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 343, 1, 0, 0, 0, 2215, 2230, 5, 505, 0, 0, 2216, 2230, 5, 506, 0, 0, 2217, 2230, 5, 507, 0, 0, 2218, 2219, 5, 507, 0, 0, 2219, 2230, 5, 505, 0, 0, 2220, 2221, 5, 506, 0, 0, 2221, 2230, 5, 505, 0, 0, 2222, 2223, 5, 507, 0, 0, 2223, 2230, 5, 506, 0, 0, 2224, 2225, 5, 508, 0, 0, 2225, 2230, 5, 505, 0, 0, 2226, 2227, 5, 507, 0, 0, 2227, 2228, 5, 505, 0, 0, 2228, 2230, 5, 506, 0, 0, 2229, 2215, 1, 0, 0, 0, 2229, 2216, 1, 0, 0, 0, 2229, 2217, 1, 0, 0, 0, 2229, 2218, 1, 0, 0, 0, 2229, 2220, 1, 0, 0, 0, 2229, 2222, 1, 0, 0, 0, 2229, 2224, 1, 0, 0, 0, 2229, 2226, 1, 0, 0, 0, 2230, 345, 1, 0, 0, 0, 2231, 2232, 5, 507, 0, 0, 2232, 2239, 5, 507, 0, 0, 2233, 2234, 5, 506, 0, 0, 2234, 2239, 5, 506, 0, 0, 2235, 2239, 5, 511, 0, 0, 2236, 2239, 5, 512, 0, 0, 2237, 2239, 5, 510, 0, 0, 2238, 2231, 1, 0, 0, 0, 2238, 2233, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2238, 2237, 1, 0, 0, 0, 2239, 347, 1, 0, 0, 0, 2240, 2241, 7, 36, 0, 0, 2241, 349, 1, 0, 0, 0, 2242, 2243, 7, 37, 0, 0, 2243, 351, 1, 0, 0, 0, 2244, 2259, 3, 280, 140, 0, 2245, 2259, 3, 354, 177, 0, 2246, 2259, 3, 356, 178, 0, 2247, 2249, 5, 529, 0, 0, 2248, 2247, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 2259, 3, 358, 179, 0, 2251, 2259, 3, 360, 180, 0, 2252, 2259, 5, 539, 0, 0, 2253, 2259, 5, 540, 0, 0, 2254, 2256, 5, 241, 0, 0, 2255, 2254, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2259, 5, 244, 0, 0, 2258, 2244, 1, 0, 0, 0, 2258, 2245, 1, 0, 0, 0, 2258, 2246, 1, 0, 0, 0, 2258, 2248, 1, 0, 0, 0, 2258, 2251, 1, 0, 0, 0, 2258, 2252, 1, 0, 0, 0, 2258, 2253, 1, 0, 0, 0, 2258, 2255, 1, 0, 0, 0, 2259, 353, 1, 0, 0, 0, 2260, 2261, 3, 364, 182, 0, 2261, 2262, 3, 356, 178, 0, 2262, 355, 1, 0, 0, 0, 2263, 2264, 5, 537, 0, 0, 2264, 357, 1, 0, 0, 0, 2265, 2266, 5, 538, 0, 0, 2266, 359, 1, 0, 0, 0, 2267, 2268, 7, 38, 0, 0, 2268, 361, 1, 0, 0, 0, 2269, 2270, 7, 39, 0, 0, 2270, 363, 1, 0, 0, 0, 2271, 2272, 7, 40, 0, 0, 2272, 365, 1, 0, 0, 0, 2273, 2274, 7, 41, 0, 0, 2274, 367, 1, 0, 0, 0, 2275, 2276, 7, 42, 0, 0, 2276, 369, 1, 0, 0, 0, 2277, 2278, 7, 43, 0, 0, 2278, 371, 1, 0, 0, 0, 2279, 2280, 7, 44, 0, 0, 2280, 373, 1, 0, 0, 0, 270, 377, 384, 387, 401, 419, 423, 432, 437, 444, 455, 464, 476, 479, 486, 489, 497, 501, 506, 509, 516, 524, 528, 540, 548, 552, 584, 587, 592, 596, 600, 604, 613, 618, 622, 626, 631, 634, 638, 643, 649, 654, 659, 663, 667, 671, 679, 687, 691, 695, 699, 703, 707, 711, 715, 719, 721, 731, 739, 763, 777, 782, 786, 792, 795, 798, 805, 808, 817, 829, 853, 865, 870, 874, 882, 886, 892, 902, 907, 913, 917, 921, 925, 934, 938, 945, 948, 958, 966, 974, 978, 993, 1012, 1023, 1027, 1034, 1039, 1045, 1049, 1056, 1060, 1064, 1068, 1076, 1080, 1085, 1091, 1097, 1100, 1104, 1115, 1124, 1138, 1150, 1165, 1168, 1172, 1175, 1177, 1182, 1186, 1189, 1193, 1202, 1211, 1221, 1226, 1237, 1240, 1243, 1246, 1249, 1255, 1259, 1267, 1270, 1275, 1278, 1282, 1285, 1287, 1301, 1312, 1317, 1325, 1328, 1331, 1336, 1338, 1340, 1345, 1348, 1352, 1356, 1368, 1375, 1386, 1413, 1435, 1448, 1460, 1473, 1485, 1497, 1503, 1530, 1538, 1542, 1545, 1548, 1555, 1558, 1561, 1564, 1567, 1570, 1575, 1578, 1587, 1592, 1596, 1601, 1607, 1612, 1616, 1635, 1643, 1651, 1655, 1659, 1669, 1695, 1703, 1715, 1737, 1739, 1750, 1753, 1755, 1759, 1763, 1770, 1779, 1785, 1798, 1805, 1810, 1816, 1823, 1825, 1828, 1840, 1845, 1848, 1854, 1856, 1862, 1883, 1885, 1893, 1897, 1906, 1910, 1926, 1935, 1959, 1966, 1969, 1980, 1989, 1996, 2002, 2010, 2015, 2019, 2026, 2031, 2039, 2043, 2046, 2050, 2059, 2062, 2073, 2079, 2097, 2102, 2107, 2114, 2116, 2121, 2128, 2130, 2135, 2142, 2144, 2149, 2156, 2158, 2165, 2184, 2191, 2194, 2199, 2205, 2213, 2229, 2238, 2248, 2255, 2258] \ No newline at end of file +[4, 1, 541, 2351, 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, 1, 0, 5, 0, 394, 8, 0, 10, 0, 12, 0, 397, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 403, 8, 1, 1, 1, 3, 1, 406, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 420, 8, 2, 1, 3, 1, 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, 1, 4, 3, 4, 438, 8, 4, 1, 5, 1, 5, 3, 5, 442, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 451, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 456, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 461, 8, 8, 10, 8, 12, 8, 464, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 474, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 481, 8, 11, 10, 11, 12, 11, 484, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 495, 8, 12, 1, 12, 3, 12, 498, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 505, 8, 12, 1, 12, 3, 12, 508, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 516, 8, 12, 1, 12, 1, 12, 3, 12, 520, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 525, 8, 12, 1, 12, 3, 12, 528, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 535, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 543, 8, 15, 1, 16, 1, 16, 3, 16, 547, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 559, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 567, 8, 18, 1, 18, 1, 18, 3, 18, 571, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 603, 8, 18, 1, 19, 3, 19, 606, 8, 19, 1, 19, 4, 19, 609, 8, 19, 11, 19, 12, 19, 610, 1, 20, 1, 20, 3, 20, 615, 8, 20, 1, 21, 1, 21, 3, 21, 619, 8, 21, 1, 21, 1, 21, 3, 21, 623, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 630, 8, 21, 10, 21, 12, 21, 633, 9, 21, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 3, 21, 641, 8, 21, 1, 21, 1, 21, 3, 21, 645, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 650, 8, 21, 1, 21, 3, 21, 653, 8, 21, 1, 21, 1, 21, 3, 21, 657, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 662, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 668, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 673, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 678, 8, 24, 1, 24, 1, 24, 3, 24, 682, 8, 24, 1, 25, 1, 25, 3, 25, 686, 8, 25, 1, 26, 1, 26, 3, 26, 690, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 696, 8, 27, 10, 27, 12, 27, 699, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 706, 8, 28, 1, 28, 1, 28, 3, 28, 710, 8, 28, 1, 28, 1, 28, 3, 28, 714, 8, 28, 1, 28, 1, 28, 3, 28, 718, 8, 28, 1, 28, 1, 28, 3, 28, 722, 8, 28, 1, 28, 1, 28, 3, 28, 726, 8, 28, 1, 28, 1, 28, 3, 28, 730, 8, 28, 1, 28, 1, 28, 3, 28, 734, 8, 28, 1, 28, 1, 28, 3, 28, 738, 8, 28, 3, 28, 740, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 750, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 758, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 780, 8, 34, 10, 34, 12, 34, 783, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 794, 8, 34, 10, 34, 12, 34, 797, 9, 34, 1, 34, 1, 34, 3, 34, 801, 8, 34, 1, 35, 1, 35, 3, 35, 805, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 811, 8, 35, 1, 35, 3, 35, 814, 8, 35, 1, 35, 3, 35, 817, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 824, 8, 36, 1, 36, 3, 36, 827, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 836, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 848, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 870, 8, 45, 10, 45, 12, 45, 873, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 882, 8, 46, 10, 46, 12, 46, 885, 9, 46, 1, 46, 1, 46, 3, 46, 889, 8, 46, 1, 47, 1, 47, 3, 47, 893, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 899, 8, 48, 10, 48, 12, 48, 902, 9, 48, 1, 48, 3, 48, 905, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 911, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 3, 51, 921, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 926, 8, 51, 1, 51, 1, 51, 1, 52, 1, 52, 3, 52, 932, 8, 52, 1, 52, 1, 52, 3, 52, 936, 8, 52, 1, 52, 1, 52, 3, 52, 940, 8, 52, 1, 52, 1, 52, 3, 52, 944, 8, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 953, 8, 53, 1, 53, 1, 53, 3, 53, 957, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 964, 8, 53, 1, 53, 3, 53, 967, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 975, 8, 54, 10, 54, 12, 54, 978, 9, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 985, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 993, 8, 56, 1, 57, 1, 57, 3, 57, 997, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1012, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1031, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1042, 8, 65, 1, 65, 1, 65, 3, 65, 1046, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1053, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 1058, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 3, 67, 1064, 8, 67, 1, 67, 1, 67, 3, 67, 1068, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1075, 8, 68, 1, 68, 1, 68, 3, 68, 1079, 8, 68, 1, 69, 1, 69, 3, 69, 1083, 8, 69, 1, 69, 1, 69, 3, 69, 1087, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1095, 8, 70, 1, 70, 1, 70, 3, 70, 1099, 8, 70, 1, 70, 1, 70, 1, 71, 3, 71, 1104, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1110, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1116, 8, 72, 1, 72, 3, 72, 1119, 8, 72, 1, 72, 1, 72, 3, 72, 1123, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 1132, 8, 74, 10, 74, 12, 74, 1135, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1141, 8, 75, 10, 75, 12, 75, 1144, 9, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 4, 76, 1155, 8, 76, 11, 76, 12, 76, 1156, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1167, 8, 77, 11, 77, 12, 77, 1168, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1184, 8, 78, 1, 78, 3, 78, 1187, 8, 78, 1, 78, 1, 78, 3, 78, 1191, 8, 78, 1, 78, 3, 78, 1194, 8, 78, 3, 78, 1196, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1201, 8, 78, 1, 78, 1, 78, 3, 78, 1205, 8, 78, 1, 78, 3, 78, 1208, 8, 78, 5, 78, 1210, 8, 78, 10, 78, 12, 78, 1213, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 1219, 8, 79, 10, 79, 12, 79, 1222, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1228, 8, 80, 10, 80, 12, 80, 1231, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1238, 8, 81, 10, 81, 12, 81, 1241, 9, 81, 1, 81, 1, 81, 3, 81, 1245, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 1256, 8, 83, 1, 83, 3, 83, 1259, 8, 83, 1, 83, 3, 83, 1262, 8, 83, 1, 83, 3, 83, 1265, 8, 83, 1, 83, 3, 83, 1268, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1274, 8, 83, 1, 84, 1, 84, 3, 84, 1278, 8, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 5, 85, 1285, 8, 85, 10, 85, 12, 85, 1288, 9, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1294, 8, 86, 1, 86, 3, 86, 1297, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1302, 8, 86, 1, 86, 3, 86, 1305, 8, 86, 1, 86, 1, 86, 3, 86, 1309, 8, 86, 3, 86, 1311, 8, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 3, 90, 1320, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 3, 91, 1327, 8, 91, 1, 91, 3, 91, 1330, 8, 91, 1, 91, 1, 91, 3, 91, 1334, 8, 91, 1, 91, 3, 91, 1337, 8, 91, 3, 91, 1339, 8, 91, 1, 92, 1, 92, 1, 92, 5, 92, 1344, 8, 92, 10, 92, 12, 92, 1347, 9, 92, 1, 92, 1, 92, 3, 92, 1351, 8, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1367, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1376, 8, 95, 10, 95, 12, 95, 1379, 9, 95, 1, 95, 1, 95, 3, 95, 1383, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 1391, 8, 95, 1, 95, 3, 95, 1394, 8, 95, 1, 95, 3, 95, 1397, 8, 95, 1, 95, 1, 95, 1, 95, 3, 95, 1402, 8, 95, 5, 95, 1404, 8, 95, 10, 95, 12, 95, 1407, 9, 95, 1, 96, 1, 96, 3, 96, 1411, 8, 96, 1, 97, 3, 97, 1414, 8, 97, 1, 97, 1, 97, 3, 97, 1418, 8, 97, 1, 97, 1, 97, 3, 97, 1422, 8, 97, 1, 97, 1, 97, 3, 97, 1426, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 1436, 8, 98, 10, 98, 12, 98, 1439, 9, 98, 1, 98, 1, 98, 1, 98, 1, 99, 3, 99, 1445, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1456, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1481, 8, 104, 10, 104, 12, 104, 1484, 9, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1505, 8, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1518, 8, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 1528, 8, 111, 10, 111, 12, 111, 1531, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1541, 8, 112, 10, 112, 12, 112, 1544, 9, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1553, 8, 112, 10, 112, 12, 112, 1556, 9, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1565, 8, 112, 10, 112, 12, 112, 1568, 9, 112, 1, 112, 1, 112, 1, 112, 3, 112, 1573, 8, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1598, 8, 119, 10, 119, 12, 119, 1601, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 3, 121, 1608, 8, 121, 1, 121, 1, 121, 3, 121, 1612, 8, 121, 1, 121, 3, 121, 1615, 8, 121, 1, 121, 3, 121, 1618, 8, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 3, 122, 1625, 8, 122, 1, 122, 3, 122, 1628, 8, 122, 1, 122, 3, 122, 1631, 8, 122, 1, 122, 3, 122, 1634, 8, 122, 1, 122, 3, 122, 1637, 8, 122, 1, 122, 3, 122, 1640, 8, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1645, 8, 122, 1, 122, 3, 122, 1648, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1655, 8, 123, 10, 123, 12, 123, 1658, 9, 123, 1, 124, 1, 124, 3, 124, 1662, 8, 124, 1, 124, 1, 124, 3, 124, 1666, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 1671, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1677, 8, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1682, 8, 126, 5, 126, 1684, 8, 126, 10, 126, 12, 126, 1687, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1705, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 1711, 8, 128, 10, 128, 12, 128, 1714, 9, 128, 1, 129, 1, 129, 1, 129, 4, 129, 1719, 8, 129, 11, 129, 12, 129, 1720, 1, 129, 1, 129, 3, 129, 1725, 8, 129, 1, 130, 1, 130, 3, 130, 1729, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1739, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1765, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1771, 8, 133, 10, 133, 12, 133, 1774, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1785, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1807, 8, 138, 3, 138, 1809, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1820, 8, 138, 1, 138, 5, 138, 1823, 8, 138, 10, 138, 12, 138, 1826, 9, 138, 1, 139, 3, 139, 1829, 8, 139, 1, 139, 1, 139, 3, 139, 1833, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 1840, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 1847, 8, 139, 10, 139, 12, 139, 1850, 9, 139, 1, 139, 1, 139, 1, 139, 3, 139, 1855, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 1868, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 1875, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 1880, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 1886, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 1893, 8, 139, 3, 139, 1895, 8, 139, 1, 140, 3, 140, 1898, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 1908, 8, 140, 10, 140, 12, 140, 1911, 9, 140, 1, 140, 1, 140, 3, 140, 1915, 8, 140, 1, 140, 3, 140, 1918, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 1924, 8, 140, 3, 140, 1926, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 1932, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 1953, 8, 141, 10, 141, 12, 141, 1956, 9, 141, 1, 142, 1, 142, 1, 142, 4, 142, 1961, 8, 142, 11, 142, 12, 142, 1962, 1, 142, 1, 142, 3, 142, 1967, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 1974, 8, 142, 11, 142, 12, 142, 1975, 1, 142, 1, 142, 3, 142, 1980, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1996, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2005, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2029, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2034, 8, 142, 10, 142, 12, 142, 2037, 9, 142, 3, 142, 2039, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2050, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2057, 8, 142, 10, 142, 12, 142, 2060, 9, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2066, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2072, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 3, 148, 2080, 8, 148, 1, 149, 1, 149, 1, 149, 3, 149, 2085, 8, 149, 1, 150, 1, 150, 3, 150, 2089, 8, 150, 1, 151, 1, 151, 1, 151, 4, 151, 2094, 8, 151, 11, 151, 12, 151, 2095, 1, 152, 1, 152, 1, 152, 3, 152, 2101, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 3, 154, 2109, 8, 154, 1, 154, 1, 154, 3, 154, 2113, 8, 154, 1, 155, 3, 155, 2116, 8, 155, 1, 155, 1, 155, 3, 155, 2120, 8, 155, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 4, 157, 2127, 8, 157, 11, 157, 12, 157, 2128, 1, 157, 3, 157, 2132, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 5, 159, 2141, 8, 159, 10, 159, 12, 159, 2144, 9, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2149, 8, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2167, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2172, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2177, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2184, 8, 168, 3, 168, 2186, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2191, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2198, 8, 169, 3, 169, 2200, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2205, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2212, 8, 170, 3, 170, 2214, 8, 170, 1, 171, 1, 171, 1, 171, 3, 171, 2219, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2226, 8, 171, 3, 171, 2228, 8, 171, 1, 172, 1, 172, 1, 172, 5, 172, 2233, 8, 172, 10, 172, 12, 172, 2236, 9, 172, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 2252, 8, 176, 10, 176, 12, 176, 2255, 9, 176, 1, 176, 1, 176, 1, 177, 1, 177, 3, 177, 2261, 8, 177, 1, 177, 3, 177, 2264, 8, 177, 1, 178, 1, 178, 1, 178, 3, 178, 2269, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2275, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2283, 8, 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, 3, 181, 2299, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2308, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2318, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2325, 8, 185, 1, 185, 3, 185, 2328, 8, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 0, 5, 156, 190, 276, 282, 284, 196, 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, 0, 45, 2, 0, 109, 109, 450, 450, 3, 0, 45, 45, 128, 128, 188, 188, 4, 0, 42, 42, 90, 90, 422, 422, 464, 464, 2, 0, 441, 441, 447, 447, 2, 0, 151, 151, 170, 170, 2, 0, 437, 437, 489, 489, 2, 0, 482, 485, 487, 487, 3, 0, 32, 32, 91, 91, 244, 244, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 344, 344, 360, 360, 378, 378, 381, 381, 387, 387, 416, 417, 2, 0, 433, 433, 435, 435, 4, 0, 101, 102, 115, 115, 144, 144, 246, 246, 2, 0, 13, 13, 231, 231, 2, 0, 455, 455, 462, 462, 3, 0, 5, 5, 270, 270, 444, 444, 3, 0, 266, 266, 455, 455, 462, 462, 3, 0, 425, 425, 458, 458, 477, 477, 3, 0, 330, 330, 465, 465, 481, 481, 2, 0, 440, 440, 490, 490, 2, 0, 183, 183, 265, 265, 3, 0, 130, 130, 180, 180, 402, 402, 4, 0, 152, 152, 174, 174, 201, 201, 317, 317, 3, 0, 445, 445, 459, 459, 499, 499, 4, 0, 250, 250, 446, 446, 494, 496, 498, 498, 2, 0, 74, 74, 320, 320, 3, 0, 459, 459, 492, 492, 499, 499, 2, 0, 439, 439, 450, 450, 2, 0, 457, 457, 467, 467, 4, 0, 140, 140, 244, 244, 397, 397, 404, 404, 2, 0, 19, 19, 369, 369, 2, 0, 5, 5, 11, 11, 2, 0, 509, 509, 529, 530, 4, 0, 452, 452, 527, 527, 531, 531, 534, 534, 2, 0, 529, 530, 532, 532, 1, 0, 529, 530, 1, 0, 538, 539, 2, 0, 538, 538, 541, 541, 4, 0, 452, 452, 527, 527, 529, 531, 533, 534, 3, 0, 241, 241, 508, 509, 529, 530, 2, 0, 140, 140, 397, 397, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 436, 436, 470, 470, 472, 472, 488, 488, 502, 502, 15, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 427, 427, 436, 436, 442, 442, 448, 449, 454, 454, 460, 460, 470, 475, 488, 488, 491, 491, 502, 503, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 200, 200, 207, 208, 389, 389, 413, 413, 527, 527, 55, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 78, 78, 84, 85, 91, 91, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 194, 194, 197, 197, 199, 199, 201, 201, 205, 205, 207, 209, 214, 214, 220, 220, 222, 223, 229, 229, 243, 243, 245, 245, 264, 264, 276, 276, 281, 281, 283, 283, 293, 293, 317, 317, 321, 323, 334, 334, 357, 358, 364, 364, 367, 367, 378, 380, 395, 395, 398, 399, 408, 408, 419, 420, 436, 436, 469, 469, 488, 488, 502, 502, 1, 0, 437, 504, 2558, 0, 395, 1, 0, 0, 0, 2, 405, 1, 0, 0, 0, 4, 419, 1, 0, 0, 0, 6, 421, 1, 0, 0, 0, 8, 437, 1, 0, 0, 0, 10, 441, 1, 0, 0, 0, 12, 443, 1, 0, 0, 0, 14, 446, 1, 0, 0, 0, 16, 457, 1, 0, 0, 0, 18, 465, 1, 0, 0, 0, 20, 473, 1, 0, 0, 0, 22, 475, 1, 0, 0, 0, 24, 527, 1, 0, 0, 0, 26, 529, 1, 0, 0, 0, 28, 536, 1, 0, 0, 0, 30, 540, 1, 0, 0, 0, 32, 544, 1, 0, 0, 0, 34, 548, 1, 0, 0, 0, 36, 602, 1, 0, 0, 0, 38, 608, 1, 0, 0, 0, 40, 614, 1, 0, 0, 0, 42, 616, 1, 0, 0, 0, 44, 658, 1, 0, 0, 0, 46, 672, 1, 0, 0, 0, 48, 674, 1, 0, 0, 0, 50, 685, 1, 0, 0, 0, 52, 689, 1, 0, 0, 0, 54, 691, 1, 0, 0, 0, 56, 739, 1, 0, 0, 0, 58, 741, 1, 0, 0, 0, 60, 745, 1, 0, 0, 0, 62, 753, 1, 0, 0, 0, 64, 761, 1, 0, 0, 0, 66, 765, 1, 0, 0, 0, 68, 800, 1, 0, 0, 0, 70, 816, 1, 0, 0, 0, 72, 818, 1, 0, 0, 0, 74, 828, 1, 0, 0, 0, 76, 830, 1, 0, 0, 0, 78, 837, 1, 0, 0, 0, 80, 839, 1, 0, 0, 0, 82, 847, 1, 0, 0, 0, 84, 855, 1, 0, 0, 0, 86, 857, 1, 0, 0, 0, 88, 861, 1, 0, 0, 0, 90, 865, 1, 0, 0, 0, 92, 888, 1, 0, 0, 0, 94, 892, 1, 0, 0, 0, 96, 894, 1, 0, 0, 0, 98, 910, 1, 0, 0, 0, 100, 912, 1, 0, 0, 0, 102, 917, 1, 0, 0, 0, 104, 929, 1, 0, 0, 0, 106, 948, 1, 0, 0, 0, 108, 968, 1, 0, 0, 0, 110, 979, 1, 0, 0, 0, 112, 981, 1, 0, 0, 0, 114, 994, 1, 0, 0, 0, 116, 1001, 1, 0, 0, 0, 118, 1004, 1, 0, 0, 0, 120, 1013, 1, 0, 0, 0, 122, 1017, 1, 0, 0, 0, 124, 1021, 1, 0, 0, 0, 126, 1024, 1, 0, 0, 0, 128, 1032, 1, 0, 0, 0, 130, 1037, 1, 0, 0, 0, 132, 1054, 1, 0, 0, 0, 134, 1061, 1, 0, 0, 0, 136, 1071, 1, 0, 0, 0, 138, 1080, 1, 0, 0, 0, 140, 1090, 1, 0, 0, 0, 142, 1109, 1, 0, 0, 0, 144, 1111, 1, 0, 0, 0, 146, 1124, 1, 0, 0, 0, 148, 1127, 1, 0, 0, 0, 150, 1136, 1, 0, 0, 0, 152, 1147, 1, 0, 0, 0, 154, 1160, 1, 0, 0, 0, 156, 1195, 1, 0, 0, 0, 158, 1214, 1, 0, 0, 0, 160, 1223, 1, 0, 0, 0, 162, 1232, 1, 0, 0, 0, 164, 1251, 1, 0, 0, 0, 166, 1273, 1, 0, 0, 0, 168, 1275, 1, 0, 0, 0, 170, 1281, 1, 0, 0, 0, 172, 1310, 1, 0, 0, 0, 174, 1312, 1, 0, 0, 0, 176, 1314, 1, 0, 0, 0, 178, 1316, 1, 0, 0, 0, 180, 1319, 1, 0, 0, 0, 182, 1338, 1, 0, 0, 0, 184, 1350, 1, 0, 0, 0, 186, 1366, 1, 0, 0, 0, 188, 1368, 1, 0, 0, 0, 190, 1382, 1, 0, 0, 0, 192, 1408, 1, 0, 0, 0, 194, 1425, 1, 0, 0, 0, 196, 1427, 1, 0, 0, 0, 198, 1455, 1, 0, 0, 0, 200, 1457, 1, 0, 0, 0, 202, 1463, 1, 0, 0, 0, 204, 1465, 1, 0, 0, 0, 206, 1470, 1, 0, 0, 0, 208, 1475, 1, 0, 0, 0, 210, 1487, 1, 0, 0, 0, 212, 1504, 1, 0, 0, 0, 214, 1506, 1, 0, 0, 0, 216, 1508, 1, 0, 0, 0, 218, 1517, 1, 0, 0, 0, 220, 1519, 1, 0, 0, 0, 222, 1522, 1, 0, 0, 0, 224, 1572, 1, 0, 0, 0, 226, 1574, 1, 0, 0, 0, 228, 1577, 1, 0, 0, 0, 230, 1579, 1, 0, 0, 0, 232, 1586, 1, 0, 0, 0, 234, 1588, 1, 0, 0, 0, 236, 1590, 1, 0, 0, 0, 238, 1593, 1, 0, 0, 0, 240, 1602, 1, 0, 0, 0, 242, 1607, 1, 0, 0, 0, 244, 1621, 1, 0, 0, 0, 246, 1649, 1, 0, 0, 0, 248, 1659, 1, 0, 0, 0, 250, 1667, 1, 0, 0, 0, 252, 1672, 1, 0, 0, 0, 254, 1704, 1, 0, 0, 0, 256, 1706, 1, 0, 0, 0, 258, 1715, 1, 0, 0, 0, 260, 1726, 1, 0, 0, 0, 262, 1738, 1, 0, 0, 0, 264, 1764, 1, 0, 0, 0, 266, 1766, 1, 0, 0, 0, 268, 1784, 1, 0, 0, 0, 270, 1786, 1, 0, 0, 0, 272, 1791, 1, 0, 0, 0, 274, 1794, 1, 0, 0, 0, 276, 1808, 1, 0, 0, 0, 278, 1894, 1, 0, 0, 0, 280, 1925, 1, 0, 0, 0, 282, 1931, 1, 0, 0, 0, 284, 2049, 1, 0, 0, 0, 286, 2061, 1, 0, 0, 0, 288, 2065, 1, 0, 0, 0, 290, 2071, 1, 0, 0, 0, 292, 2073, 1, 0, 0, 0, 294, 2075, 1, 0, 0, 0, 296, 2079, 1, 0, 0, 0, 298, 2081, 1, 0, 0, 0, 300, 2086, 1, 0, 0, 0, 302, 2093, 1, 0, 0, 0, 304, 2097, 1, 0, 0, 0, 306, 2102, 1, 0, 0, 0, 308, 2112, 1, 0, 0, 0, 310, 2115, 1, 0, 0, 0, 312, 2121, 1, 0, 0, 0, 314, 2131, 1, 0, 0, 0, 316, 2133, 1, 0, 0, 0, 318, 2137, 1, 0, 0, 0, 320, 2148, 1, 0, 0, 0, 322, 2150, 1, 0, 0, 0, 324, 2152, 1, 0, 0, 0, 326, 2154, 1, 0, 0, 0, 328, 2159, 1, 0, 0, 0, 330, 2161, 1, 0, 0, 0, 332, 2163, 1, 0, 0, 0, 334, 2168, 1, 0, 0, 0, 336, 2185, 1, 0, 0, 0, 338, 2199, 1, 0, 0, 0, 340, 2213, 1, 0, 0, 0, 342, 2227, 1, 0, 0, 0, 344, 2229, 1, 0, 0, 0, 346, 2237, 1, 0, 0, 0, 348, 2240, 1, 0, 0, 0, 350, 2244, 1, 0, 0, 0, 352, 2247, 1, 0, 0, 0, 354, 2258, 1, 0, 0, 0, 356, 2268, 1, 0, 0, 0, 358, 2274, 1, 0, 0, 0, 360, 2282, 1, 0, 0, 0, 362, 2298, 1, 0, 0, 0, 364, 2307, 1, 0, 0, 0, 366, 2309, 1, 0, 0, 0, 368, 2311, 1, 0, 0, 0, 370, 2327, 1, 0, 0, 0, 372, 2329, 1, 0, 0, 0, 374, 2332, 1, 0, 0, 0, 376, 2334, 1, 0, 0, 0, 378, 2336, 1, 0, 0, 0, 380, 2338, 1, 0, 0, 0, 382, 2340, 1, 0, 0, 0, 384, 2342, 1, 0, 0, 0, 386, 2344, 1, 0, 0, 0, 388, 2346, 1, 0, 0, 0, 390, 2348, 1, 0, 0, 0, 392, 394, 3, 2, 1, 0, 393, 392, 1, 0, 0, 0, 394, 397, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 398, 399, 5, 0, 0, 1, 399, 1, 1, 0, 0, 0, 400, 402, 3, 4, 2, 0, 401, 403, 5, 521, 0, 0, 402, 401, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 406, 1, 0, 0, 0, 404, 406, 3, 6, 3, 0, 405, 400, 1, 0, 0, 0, 405, 404, 1, 0, 0, 0, 406, 3, 1, 0, 0, 0, 407, 420, 3, 8, 4, 0, 408, 420, 3, 10, 5, 0, 409, 420, 3, 12, 6, 0, 410, 420, 3, 14, 7, 0, 411, 420, 3, 20, 10, 0, 412, 420, 3, 24, 12, 0, 413, 420, 3, 26, 13, 0, 414, 420, 3, 28, 14, 0, 415, 420, 3, 30, 15, 0, 416, 420, 3, 32, 16, 0, 417, 420, 3, 34, 17, 0, 418, 420, 3, 36, 18, 0, 419, 407, 1, 0, 0, 0, 419, 408, 1, 0, 0, 0, 419, 409, 1, 0, 0, 0, 419, 410, 1, 0, 0, 0, 419, 411, 1, 0, 0, 0, 419, 412, 1, 0, 0, 0, 419, 413, 1, 0, 0, 0, 419, 414, 1, 0, 0, 0, 419, 415, 1, 0, 0, 0, 419, 416, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 5, 1, 0, 0, 0, 421, 422, 5, 521, 0, 0, 422, 7, 1, 0, 0, 0, 423, 438, 3, 40, 20, 0, 424, 438, 3, 102, 51, 0, 425, 438, 3, 104, 52, 0, 426, 438, 3, 106, 53, 0, 427, 438, 3, 100, 50, 0, 428, 438, 3, 112, 56, 0, 429, 438, 3, 126, 63, 0, 430, 438, 3, 128, 64, 0, 431, 438, 3, 130, 65, 0, 432, 438, 3, 132, 66, 0, 433, 438, 3, 134, 67, 0, 434, 438, 3, 136, 68, 0, 435, 438, 3, 138, 69, 0, 436, 438, 3, 140, 70, 0, 437, 423, 1, 0, 0, 0, 437, 424, 1, 0, 0, 0, 437, 425, 1, 0, 0, 0, 437, 426, 1, 0, 0, 0, 437, 427, 1, 0, 0, 0, 437, 428, 1, 0, 0, 0, 437, 429, 1, 0, 0, 0, 437, 430, 1, 0, 0, 0, 437, 431, 1, 0, 0, 0, 437, 432, 1, 0, 0, 0, 437, 433, 1, 0, 0, 0, 437, 434, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 9, 1, 0, 0, 0, 439, 442, 3, 156, 78, 0, 440, 442, 3, 142, 71, 0, 441, 439, 1, 0, 0, 0, 441, 440, 1, 0, 0, 0, 442, 11, 1, 0, 0, 0, 443, 444, 7, 0, 0, 0, 444, 445, 3, 338, 169, 0, 445, 13, 1, 0, 0, 0, 446, 450, 5, 135, 0, 0, 447, 451, 3, 16, 8, 0, 448, 449, 5, 479, 0, 0, 449, 451, 5, 146, 0, 0, 450, 447, 1, 0, 0, 0, 450, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 455, 1, 0, 0, 0, 452, 456, 3, 10, 5, 0, 453, 456, 3, 144, 72, 0, 454, 456, 3, 154, 77, 0, 455, 452, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455, 454, 1, 0, 0, 0, 456, 15, 1, 0, 0, 0, 457, 462, 3, 18, 9, 0, 458, 459, 5, 520, 0, 0, 459, 461, 3, 18, 9, 0, 460, 458, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 17, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 465, 466, 7, 1, 0, 0, 466, 19, 1, 0, 0, 0, 467, 468, 5, 410, 0, 0, 468, 469, 5, 441, 0, 0, 469, 474, 3, 328, 164, 0, 470, 471, 5, 410, 0, 0, 471, 474, 3, 332, 166, 0, 472, 474, 3, 22, 11, 0, 473, 467, 1, 0, 0, 0, 473, 470, 1, 0, 0, 0, 473, 472, 1, 0, 0, 0, 474, 21, 1, 0, 0, 0, 475, 476, 5, 410, 0, 0, 476, 477, 5, 227, 0, 0, 477, 482, 3, 344, 172, 0, 478, 479, 5, 520, 0, 0, 479, 481, 3, 344, 172, 0, 480, 478, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 23, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 485, 486, 5, 341, 0, 0, 486, 528, 7, 2, 0, 0, 487, 488, 5, 341, 0, 0, 488, 489, 5, 76, 0, 0, 489, 528, 7, 3, 0, 0, 490, 491, 5, 341, 0, 0, 491, 494, 5, 374, 0, 0, 492, 493, 7, 4, 0, 0, 493, 495, 3, 332, 166, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 497, 1, 0, 0, 0, 496, 498, 3, 280, 140, 0, 497, 496, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 528, 1, 0, 0, 0, 499, 500, 5, 341, 0, 0, 500, 501, 5, 58, 0, 0, 501, 504, 7, 4, 0, 0, 502, 505, 3, 340, 170, 0, 503, 505, 3, 338, 169, 0, 504, 502, 1, 0, 0, 0, 504, 503, 1, 0, 0, 0, 505, 507, 1, 0, 0, 0, 506, 508, 3, 280, 140, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 528, 1, 0, 0, 0, 509, 510, 5, 341, 0, 0, 510, 515, 5, 72, 0, 0, 511, 512, 5, 373, 0, 0, 512, 516, 3, 338, 169, 0, 513, 514, 5, 501, 0, 0, 514, 516, 3, 340, 170, 0, 515, 511, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 516, 528, 1, 0, 0, 0, 517, 519, 5, 341, 0, 0, 518, 520, 5, 411, 0, 0, 519, 518, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 528, 5, 154, 0, 0, 522, 524, 5, 341, 0, 0, 523, 525, 5, 152, 0, 0, 524, 523, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 528, 5, 227, 0, 0, 527, 485, 1, 0, 0, 0, 527, 487, 1, 0, 0, 0, 527, 490, 1, 0, 0, 0, 527, 499, 1, 0, 0, 0, 527, 509, 1, 0, 0, 0, 527, 517, 1, 0, 0, 0, 527, 522, 1, 0, 0, 0, 528, 25, 1, 0, 0, 0, 529, 530, 5, 468, 0, 0, 530, 531, 5, 226, 0, 0, 531, 534, 3, 344, 172, 0, 532, 533, 5, 433, 0, 0, 533, 535, 3, 352, 176, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 27, 1, 0, 0, 0, 536, 537, 5, 500, 0, 0, 537, 538, 5, 226, 0, 0, 538, 539, 3, 344, 172, 0, 539, 29, 1, 0, 0, 0, 540, 542, 5, 340, 0, 0, 541, 543, 3, 354, 177, 0, 542, 541, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 31, 1, 0, 0, 0, 544, 546, 5, 312, 0, 0, 545, 547, 3, 356, 178, 0, 546, 545, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 33, 1, 0, 0, 0, 548, 549, 7, 5, 0, 0, 549, 550, 5, 463, 0, 0, 550, 551, 3, 110, 55, 0, 551, 35, 1, 0, 0, 0, 552, 553, 5, 437, 0, 0, 553, 554, 5, 463, 0, 0, 554, 555, 5, 433, 0, 0, 555, 558, 3, 38, 19, 0, 556, 557, 5, 17, 0, 0, 557, 559, 3, 344, 172, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 603, 1, 0, 0, 0, 560, 561, 5, 437, 0, 0, 561, 562, 5, 456, 0, 0, 562, 563, 5, 433, 0, 0, 563, 566, 3, 38, 19, 0, 564, 565, 5, 17, 0, 0, 565, 567, 3, 344, 172, 0, 566, 564, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 570, 1, 0, 0, 0, 568, 569, 5, 311, 0, 0, 569, 571, 3, 344, 172, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 603, 1, 0, 0, 0, 572, 573, 5, 437, 0, 0, 573, 574, 7, 6, 0, 0, 574, 575, 5, 433, 0, 0, 575, 576, 3, 38, 19, 0, 576, 577, 5, 311, 0, 0, 577, 578, 3, 344, 172, 0, 578, 603, 1, 0, 0, 0, 579, 580, 5, 437, 0, 0, 580, 581, 5, 486, 0, 0, 581, 603, 3, 38, 19, 0, 582, 583, 5, 437, 0, 0, 583, 584, 5, 453, 0, 0, 584, 585, 5, 456, 0, 0, 585, 586, 5, 433, 0, 0, 586, 587, 3, 38, 19, 0, 587, 588, 5, 311, 0, 0, 588, 589, 3, 344, 172, 0, 589, 590, 5, 466, 0, 0, 590, 591, 3, 344, 172, 0, 591, 603, 1, 0, 0, 0, 592, 593, 5, 437, 0, 0, 593, 594, 5, 443, 0, 0, 594, 595, 5, 456, 0, 0, 595, 596, 5, 433, 0, 0, 596, 597, 3, 38, 19, 0, 597, 598, 5, 146, 0, 0, 598, 599, 3, 344, 172, 0, 599, 600, 5, 17, 0, 0, 600, 601, 3, 344, 172, 0, 601, 603, 1, 0, 0, 0, 602, 552, 1, 0, 0, 0, 602, 560, 1, 0, 0, 0, 602, 572, 1, 0, 0, 0, 602, 579, 1, 0, 0, 0, 602, 582, 1, 0, 0, 0, 602, 592, 1, 0, 0, 0, 603, 37, 1, 0, 0, 0, 604, 606, 5, 534, 0, 0, 605, 604, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 609, 3, 344, 172, 0, 608, 605, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 39, 1, 0, 0, 0, 612, 615, 3, 42, 21, 0, 613, 615, 3, 44, 22, 0, 614, 612, 1, 0, 0, 0, 614, 613, 1, 0, 0, 0, 615, 41, 1, 0, 0, 0, 616, 618, 5, 72, 0, 0, 617, 619, 5, 497, 0, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 622, 5, 373, 0, 0, 621, 623, 3, 348, 174, 0, 622, 621, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 3, 336, 168, 0, 625, 626, 5, 516, 0, 0, 626, 631, 3, 46, 23, 0, 627, 628, 5, 520, 0, 0, 628, 630, 3, 46, 23, 0, 629, 627, 1, 0, 0, 0, 630, 633, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 636, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 634, 635, 5, 520, 0, 0, 635, 637, 3, 80, 40, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 639, 5, 520, 0, 0, 639, 641, 3, 82, 41, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 644, 1, 0, 0, 0, 642, 643, 5, 520, 0, 0, 643, 645, 3, 86, 43, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 649, 5, 517, 0, 0, 647, 648, 5, 59, 0, 0, 648, 650, 5, 537, 0, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 1, 0, 0, 0, 651, 653, 3, 88, 44, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 656, 3, 346, 173, 0, 655, 657, 3, 96, 48, 0, 656, 655, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 43, 1, 0, 0, 0, 658, 659, 5, 72, 0, 0, 659, 661, 5, 373, 0, 0, 660, 662, 3, 348, 174, 0, 661, 660, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 3, 336, 168, 0, 664, 667, 3, 346, 173, 0, 665, 666, 5, 17, 0, 0, 666, 668, 3, 156, 78, 0, 667, 665, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 45, 1, 0, 0, 0, 669, 673, 3, 48, 24, 0, 670, 673, 3, 72, 36, 0, 671, 673, 3, 76, 38, 0, 672, 669, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 671, 1, 0, 0, 0, 673, 47, 1, 0, 0, 0, 674, 675, 3, 50, 25, 0, 675, 677, 3, 56, 28, 0, 676, 678, 3, 70, 35, 0, 677, 676, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 680, 5, 59, 0, 0, 680, 682, 5, 537, 0, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 49, 1, 0, 0, 0, 683, 686, 3, 344, 172, 0, 684, 686, 3, 274, 137, 0, 685, 683, 1, 0, 0, 0, 685, 684, 1, 0, 0, 0, 686, 51, 1, 0, 0, 0, 687, 690, 3, 344, 172, 0, 688, 690, 4, 26, 0, 0, 689, 687, 1, 0, 0, 0, 689, 688, 1, 0, 0, 0, 690, 53, 1, 0, 0, 0, 691, 692, 5, 516, 0, 0, 692, 697, 3, 52, 26, 0, 693, 694, 5, 520, 0, 0, 694, 696, 3, 52, 26, 0, 695, 693, 1, 0, 0, 0, 696, 699, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 700, 1, 0, 0, 0, 699, 697, 1, 0, 0, 0, 700, 701, 5, 517, 0, 0, 701, 55, 1, 0, 0, 0, 702, 740, 7, 7, 0, 0, 703, 705, 7, 8, 0, 0, 704, 706, 3, 58, 29, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 740, 1, 0, 0, 0, 707, 709, 5, 379, 0, 0, 708, 710, 3, 58, 29, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 717, 1, 0, 0, 0, 711, 713, 7, 9, 0, 0, 712, 714, 5, 206, 0, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 5, 378, 0, 0, 716, 718, 5, 504, 0, 0, 717, 711, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 740, 1, 0, 0, 0, 719, 721, 7, 10, 0, 0, 720, 722, 3, 60, 30, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 740, 1, 0, 0, 0, 723, 725, 7, 11, 0, 0, 724, 726, 3, 64, 32, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 740, 1, 0, 0, 0, 727, 729, 5, 469, 0, 0, 728, 730, 3, 66, 33, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 740, 1, 0, 0, 0, 731, 733, 5, 321, 0, 0, 732, 734, 3, 68, 34, 0, 733, 732, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 740, 1, 0, 0, 0, 735, 737, 5, 294, 0, 0, 736, 738, 3, 62, 31, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 740, 1, 0, 0, 0, 739, 702, 1, 0, 0, 0, 739, 703, 1, 0, 0, 0, 739, 707, 1, 0, 0, 0, 739, 719, 1, 0, 0, 0, 739, 723, 1, 0, 0, 0, 739, 727, 1, 0, 0, 0, 739, 731, 1, 0, 0, 0, 739, 735, 1, 0, 0, 0, 740, 57, 1, 0, 0, 0, 741, 742, 5, 516, 0, 0, 742, 743, 3, 376, 188, 0, 743, 744, 5, 517, 0, 0, 744, 59, 1, 0, 0, 0, 745, 746, 5, 516, 0, 0, 746, 749, 3, 376, 188, 0, 747, 748, 5, 520, 0, 0, 748, 750, 3, 376, 188, 0, 749, 747, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 5, 517, 0, 0, 752, 61, 1, 0, 0, 0, 753, 754, 5, 516, 0, 0, 754, 757, 3, 374, 187, 0, 755, 756, 5, 520, 0, 0, 756, 758, 3, 374, 187, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 5, 517, 0, 0, 760, 63, 1, 0, 0, 0, 761, 762, 5, 507, 0, 0, 762, 763, 3, 56, 28, 0, 763, 764, 5, 506, 0, 0, 764, 65, 1, 0, 0, 0, 765, 766, 5, 507, 0, 0, 766, 767, 3, 56, 28, 0, 767, 768, 5, 520, 0, 0, 768, 769, 3, 56, 28, 0, 769, 770, 1, 0, 0, 0, 770, 771, 5, 506, 0, 0, 771, 67, 1, 0, 0, 0, 772, 773, 5, 507, 0, 0, 773, 774, 3, 52, 26, 0, 774, 781, 3, 56, 28, 0, 775, 776, 5, 520, 0, 0, 776, 777, 3, 52, 26, 0, 777, 778, 3, 56, 28, 0, 778, 780, 1, 0, 0, 0, 779, 775, 1, 0, 0, 0, 780, 783, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 784, 1, 0, 0, 0, 783, 781, 1, 0, 0, 0, 784, 785, 5, 506, 0, 0, 785, 801, 1, 0, 0, 0, 786, 787, 5, 516, 0, 0, 787, 788, 3, 52, 26, 0, 788, 795, 3, 56, 28, 0, 789, 790, 5, 520, 0, 0, 790, 791, 3, 52, 26, 0, 791, 792, 3, 56, 28, 0, 792, 794, 1, 0, 0, 0, 793, 789, 1, 0, 0, 0, 794, 797, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 798, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 798, 799, 5, 517, 0, 0, 799, 801, 1, 0, 0, 0, 800, 772, 1, 0, 0, 0, 800, 786, 1, 0, 0, 0, 801, 69, 1, 0, 0, 0, 802, 803, 5, 64, 0, 0, 803, 805, 3, 84, 42, 0, 804, 802, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 5, 288, 0, 0, 807, 810, 5, 466, 0, 0, 808, 809, 5, 241, 0, 0, 809, 811, 5, 125, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 817, 1, 0, 0, 0, 812, 814, 5, 241, 0, 0, 813, 812, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 817, 5, 244, 0, 0, 816, 804, 1, 0, 0, 0, 816, 813, 1, 0, 0, 0, 817, 71, 1, 0, 0, 0, 818, 819, 3, 50, 25, 0, 819, 820, 3, 56, 28, 0, 820, 823, 5, 218, 0, 0, 821, 822, 5, 151, 0, 0, 822, 824, 3, 74, 37, 0, 823, 821, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 826, 1, 0, 0, 0, 825, 827, 5, 423, 0, 0, 826, 825, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 73, 1, 0, 0, 0, 828, 829, 5, 537, 0, 0, 829, 75, 1, 0, 0, 0, 830, 831, 3, 50, 25, 0, 831, 832, 5, 17, 0, 0, 832, 835, 3, 78, 39, 0, 833, 834, 5, 59, 0, 0, 834, 836, 5, 537, 0, 0, 835, 833, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 77, 1, 0, 0, 0, 837, 838, 3, 274, 137, 0, 838, 79, 1, 0, 0, 0, 839, 840, 5, 424, 0, 0, 840, 841, 5, 146, 0, 0, 841, 842, 3, 52, 26, 0, 842, 843, 5, 17, 0, 0, 843, 844, 3, 274, 137, 0, 844, 81, 1, 0, 0, 0, 845, 846, 5, 64, 0, 0, 846, 848, 3, 84, 42, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 5, 288, 0, 0, 850, 851, 5, 466, 0, 0, 851, 852, 3, 54, 27, 0, 852, 853, 5, 241, 0, 0, 853, 854, 5, 125, 0, 0, 854, 83, 1, 0, 0, 0, 855, 856, 3, 320, 160, 0, 856, 85, 1, 0, 0, 0, 857, 858, 5, 277, 0, 0, 858, 859, 5, 146, 0, 0, 859, 860, 5, 371, 0, 0, 860, 87, 1, 0, 0, 0, 861, 862, 5, 269, 0, 0, 862, 863, 5, 34, 0, 0, 863, 864, 3, 90, 45, 0, 864, 89, 1, 0, 0, 0, 865, 866, 5, 516, 0, 0, 866, 871, 3, 92, 46, 0, 867, 868, 5, 520, 0, 0, 868, 870, 3, 92, 46, 0, 869, 867, 1, 0, 0, 0, 870, 873, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 874, 875, 5, 517, 0, 0, 875, 91, 1, 0, 0, 0, 876, 889, 3, 52, 26, 0, 877, 878, 5, 516, 0, 0, 878, 883, 3, 94, 47, 0, 879, 880, 5, 520, 0, 0, 880, 882, 3, 94, 47, 0, 881, 879, 1, 0, 0, 0, 882, 885, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 886, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 886, 887, 5, 517, 0, 0, 887, 889, 1, 0, 0, 0, 888, 876, 1, 0, 0, 0, 888, 877, 1, 0, 0, 0, 889, 93, 1, 0, 0, 0, 890, 893, 3, 296, 148, 0, 891, 893, 3, 370, 185, 0, 892, 890, 1, 0, 0, 0, 892, 891, 1, 0, 0, 0, 893, 95, 1, 0, 0, 0, 894, 895, 5, 202, 0, 0, 895, 904, 3, 338, 169, 0, 896, 900, 5, 516, 0, 0, 897, 899, 3, 98, 49, 0, 898, 897, 1, 0, 0, 0, 899, 902, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 903, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 903, 905, 5, 517, 0, 0, 904, 896, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 97, 1, 0, 0, 0, 906, 907, 7, 12, 0, 0, 907, 911, 7, 13, 0, 0, 908, 909, 7, 14, 0, 0, 909, 911, 7, 15, 0, 0, 910, 906, 1, 0, 0, 0, 910, 908, 1, 0, 0, 0, 911, 99, 1, 0, 0, 0, 912, 913, 5, 72, 0, 0, 913, 914, 5, 441, 0, 0, 914, 915, 3, 330, 165, 0, 915, 916, 3, 346, 173, 0, 916, 101, 1, 0, 0, 0, 917, 918, 5, 72, 0, 0, 918, 920, 5, 447, 0, 0, 919, 921, 3, 348, 174, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 925, 3, 334, 167, 0, 923, 924, 5, 59, 0, 0, 924, 926, 5, 537, 0, 0, 925, 923, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 3, 346, 173, 0, 928, 103, 1, 0, 0, 0, 929, 931, 5, 72, 0, 0, 930, 932, 5, 497, 0, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 935, 5, 501, 0, 0, 934, 936, 3, 348, 174, 0, 935, 934, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 939, 3, 342, 171, 0, 938, 940, 3, 54, 27, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 943, 1, 0, 0, 0, 941, 942, 5, 59, 0, 0, 942, 944, 5, 537, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 946, 5, 17, 0, 0, 946, 947, 3, 156, 78, 0, 947, 105, 1, 0, 0, 0, 948, 952, 5, 72, 0, 0, 949, 953, 5, 497, 0, 0, 950, 951, 5, 497, 0, 0, 951, 953, 5, 370, 0, 0, 952, 949, 1, 0, 0, 0, 952, 950, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 954, 1, 0, 0, 0, 954, 956, 5, 153, 0, 0, 955, 957, 3, 348, 174, 0, 956, 955, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 3, 286, 143, 0, 959, 960, 5, 17, 0, 0, 960, 963, 3, 320, 160, 0, 961, 962, 5, 195, 0, 0, 962, 964, 7, 16, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 966, 1, 0, 0, 0, 965, 967, 3, 108, 54, 0, 966, 965, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 107, 1, 0, 0, 0, 968, 969, 5, 412, 0, 0, 969, 970, 5, 463, 0, 0, 970, 976, 3, 110, 55, 0, 971, 972, 5, 520, 0, 0, 972, 973, 5, 463, 0, 0, 973, 975, 3, 110, 55, 0, 974, 971, 1, 0, 0, 0, 975, 978, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 109, 1, 0, 0, 0, 978, 976, 1, 0, 0, 0, 979, 980, 5, 537, 0, 0, 980, 111, 1, 0, 0, 0, 981, 982, 5, 8, 0, 0, 982, 984, 5, 373, 0, 0, 983, 985, 3, 350, 175, 0, 984, 983, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 992, 3, 338, 169, 0, 987, 993, 3, 114, 57, 0, 988, 993, 3, 116, 58, 0, 989, 993, 3, 118, 59, 0, 990, 993, 3, 120, 60, 0, 991, 993, 3, 122, 61, 0, 992, 987, 1, 0, 0, 0, 992, 988, 1, 0, 0, 0, 992, 989, 1, 0, 0, 0, 992, 990, 1, 0, 0, 0, 992, 991, 1, 0, 0, 0, 993, 113, 1, 0, 0, 0, 994, 996, 5, 311, 0, 0, 995, 997, 3, 344, 172, 0, 996, 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 999, 5, 388, 0, 0, 999, 1000, 3, 344, 172, 0, 1000, 115, 1, 0, 0, 0, 1001, 1002, 5, 340, 0, 0, 1002, 1003, 3, 352, 176, 0, 1003, 117, 1, 0, 0, 0, 1004, 1005, 5, 437, 0, 0, 1005, 1006, 5, 64, 0, 0, 1006, 1007, 3, 84, 42, 0, 1007, 1008, 5, 288, 0, 0, 1008, 1009, 5, 466, 0, 0, 1009, 1011, 3, 54, 27, 0, 1010, 1012, 3, 124, 62, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 119, 1, 0, 0, 0, 1013, 1014, 5, 116, 0, 0, 1014, 1015, 5, 64, 0, 0, 1015, 1016, 3, 84, 42, 0, 1016, 121, 1, 0, 0, 0, 1017, 1018, 5, 437, 0, 0, 1018, 1019, 5, 403, 0, 0, 1019, 1020, 3, 54, 27, 0, 1020, 123, 1, 0, 0, 0, 1021, 1022, 5, 241, 0, 0, 1022, 1023, 5, 125, 0, 0, 1023, 125, 1, 0, 0, 0, 1024, 1025, 5, 8, 0, 0, 1025, 1026, 5, 501, 0, 0, 1026, 1030, 3, 340, 170, 0, 1027, 1031, 3, 114, 57, 0, 1028, 1029, 5, 17, 0, 0, 1029, 1031, 3, 156, 78, 0, 1030, 1027, 1, 0, 0, 0, 1030, 1028, 1, 0, 0, 0, 1031, 127, 1, 0, 0, 0, 1032, 1033, 5, 8, 0, 0, 1033, 1034, 5, 447, 0, 0, 1034, 1035, 3, 332, 166, 0, 1035, 1036, 3, 116, 58, 0, 1036, 129, 1, 0, 0, 0, 1037, 1041, 5, 8, 0, 0, 1038, 1042, 5, 497, 0, 0, 1039, 1040, 5, 497, 0, 0, 1040, 1042, 5, 370, 0, 0, 1041, 1038, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1045, 5, 153, 0, 0, 1044, 1046, 3, 350, 175, 0, 1045, 1044, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 3, 288, 144, 0, 1048, 1049, 5, 17, 0, 0, 1049, 1052, 3, 320, 160, 0, 1050, 1051, 5, 195, 0, 0, 1051, 1053, 7, 16, 0, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 131, 1, 0, 0, 0, 1054, 1055, 5, 116, 0, 0, 1055, 1057, 5, 441, 0, 0, 1056, 1058, 3, 350, 175, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 3, 328, 164, 0, 1060, 133, 1, 0, 0, 0, 1061, 1063, 5, 116, 0, 0, 1062, 1064, 5, 497, 0, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1067, 5, 373, 0, 0, 1066, 1068, 3, 350, 175, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 3, 338, 169, 0, 1070, 135, 1, 0, 0, 0, 1071, 1072, 5, 116, 0, 0, 1072, 1074, 5, 447, 0, 0, 1073, 1075, 3, 350, 175, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1078, 3, 332, 166, 0, 1077, 1079, 7, 17, 0, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 137, 1, 0, 0, 0, 1080, 1082, 5, 116, 0, 0, 1081, 1083, 5, 497, 0, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1086, 5, 501, 0, 0, 1085, 1087, 3, 350, 175, 0, 1086, 1085, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 3, 340, 170, 0, 1089, 139, 1, 0, 0, 0, 1090, 1094, 5, 116, 0, 0, 1091, 1095, 5, 497, 0, 0, 1092, 1093, 5, 497, 0, 0, 1093, 1095, 5, 370, 0, 0, 1094, 1091, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 5, 153, 0, 0, 1097, 1099, 3, 350, 175, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 3, 288, 144, 0, 1101, 141, 1, 0, 0, 0, 1102, 1104, 5, 132, 0, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1110, 3, 144, 72, 0, 1106, 1110, 3, 152, 76, 0, 1107, 1108, 5, 132, 0, 0, 1108, 1110, 3, 154, 77, 0, 1109, 1103, 1, 0, 0, 0, 1109, 1106, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1110, 143, 1, 0, 0, 0, 1111, 1112, 5, 177, 0, 0, 1112, 1113, 7, 18, 0, 0, 1113, 1122, 3, 338, 169, 0, 1114, 1116, 3, 146, 73, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1118, 1, 0, 0, 0, 1117, 1119, 3, 54, 27, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1123, 3, 156, 78, 0, 1121, 1123, 3, 148, 74, 0, 1122, 1115, 1, 0, 0, 0, 1122, 1121, 1, 0, 0, 0, 1123, 145, 1, 0, 0, 0, 1124, 1125, 5, 268, 0, 0, 1125, 1126, 3, 352, 176, 0, 1126, 147, 1, 0, 0, 0, 1127, 1128, 5, 414, 0, 0, 1128, 1133, 3, 150, 75, 0, 1129, 1130, 5, 520, 0, 0, 1130, 1132, 3, 150, 75, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 149, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1137, 5, 516, 0, 0, 1137, 1142, 3, 370, 185, 0, 1138, 1139, 5, 520, 0, 0, 1139, 1141, 3, 370, 185, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1144, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1145, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1145, 1146, 5, 517, 0, 0, 1146, 151, 1, 0, 0, 0, 1147, 1148, 5, 24, 0, 0, 1148, 1149, 5, 354, 0, 0, 1149, 1150, 5, 340, 0, 0, 1150, 1154, 5, 521, 0, 0, 1151, 1152, 3, 144, 72, 0, 1152, 1153, 5, 521, 0, 0, 1153, 1155, 1, 0, 0, 0, 1154, 1151, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 5, 122, 0, 0, 1159, 153, 1, 0, 0, 0, 1160, 1161, 5, 354, 0, 0, 1161, 1162, 5, 340, 0, 0, 1162, 1166, 5, 24, 0, 0, 1163, 1164, 3, 144, 72, 0, 1164, 1165, 5, 521, 0, 0, 1165, 1167, 1, 0, 0, 0, 1166, 1163, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 5, 122, 0, 0, 1171, 155, 1, 0, 0, 0, 1172, 1173, 6, 78, -1, 0, 1173, 1196, 3, 158, 79, 0, 1174, 1175, 3, 160, 80, 0, 1175, 1176, 3, 156, 78, 5, 1176, 1196, 1, 0, 0, 0, 1177, 1178, 5, 516, 0, 0, 1178, 1179, 3, 156, 78, 0, 1179, 1180, 5, 517, 0, 0, 1180, 1196, 1, 0, 0, 0, 1181, 1183, 3, 168, 84, 0, 1182, 1184, 3, 246, 123, 0, 1183, 1182, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1187, 3, 250, 125, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1196, 1, 0, 0, 0, 1188, 1190, 3, 166, 83, 0, 1189, 1191, 3, 246, 123, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1193, 1, 0, 0, 0, 1192, 1194, 3, 250, 125, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1196, 1, 0, 0, 0, 1195, 1172, 1, 0, 0, 0, 1195, 1174, 1, 0, 0, 0, 1195, 1177, 1, 0, 0, 0, 1195, 1181, 1, 0, 0, 0, 1195, 1188, 1, 0, 0, 0, 1196, 1211, 1, 0, 0, 0, 1197, 1198, 10, 3, 0, 0, 1198, 1200, 7, 19, 0, 0, 1199, 1201, 5, 5, 0, 0, 1200, 1199, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1204, 3, 156, 78, 0, 1203, 1205, 3, 246, 123, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1207, 1, 0, 0, 0, 1206, 1208, 3, 250, 125, 0, 1207, 1206, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1210, 1, 0, 0, 0, 1209, 1197, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 157, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1215, 5, 414, 0, 0, 1215, 1220, 3, 274, 137, 0, 1216, 1217, 5, 520, 0, 0, 1217, 1219, 3, 274, 137, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1222, 1, 0, 0, 0, 1220, 1218, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 159, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1223, 1224, 5, 433, 0, 0, 1224, 1229, 3, 162, 81, 0, 1225, 1226, 5, 520, 0, 0, 1226, 1228, 3, 162, 81, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1231, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 161, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1232, 1244, 3, 164, 82, 0, 1233, 1234, 5, 516, 0, 0, 1234, 1239, 3, 52, 26, 0, 1235, 1236, 5, 520, 0, 0, 1236, 1238, 3, 52, 26, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1241, 1, 0, 0, 0, 1239, 1237, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1242, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1242, 1243, 5, 517, 0, 0, 1243, 1245, 1, 0, 0, 0, 1244, 1233, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1247, 5, 17, 0, 0, 1247, 1248, 5, 516, 0, 0, 1248, 1249, 3, 156, 78, 0, 1249, 1250, 5, 517, 0, 0, 1250, 163, 1, 0, 0, 0, 1251, 1252, 3, 320, 160, 0, 1252, 165, 1, 0, 0, 0, 1253, 1255, 3, 168, 84, 0, 1254, 1256, 3, 188, 94, 0, 1255, 1254, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1258, 1, 0, 0, 0, 1257, 1259, 3, 220, 110, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1261, 1, 0, 0, 0, 1260, 1262, 3, 222, 111, 0, 1261, 1260, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1264, 1, 0, 0, 0, 1263, 1265, 3, 236, 118, 0, 1264, 1263, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1267, 1, 0, 0, 0, 1266, 1268, 3, 238, 119, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1274, 1, 0, 0, 0, 1269, 1270, 3, 168, 84, 0, 1270, 1271, 3, 188, 94, 0, 1271, 1272, 3, 244, 122, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1253, 1, 0, 0, 0, 1273, 1269, 1, 0, 0, 0, 1274, 167, 1, 0, 0, 0, 1275, 1277, 5, 336, 0, 0, 1276, 1278, 3, 380, 190, 0, 1277, 1276, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1280, 3, 170, 85, 0, 1280, 169, 1, 0, 0, 0, 1281, 1286, 3, 172, 86, 0, 1282, 1283, 5, 520, 0, 0, 1283, 1285, 3, 172, 86, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1288, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 171, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1289, 1311, 3, 174, 87, 0, 1290, 1296, 3, 178, 89, 0, 1291, 1297, 3, 180, 90, 0, 1292, 1294, 5, 17, 0, 0, 1293, 1292, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 3, 274, 137, 0, 1296, 1291, 1, 0, 0, 0, 1296, 1293, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1311, 1, 0, 0, 0, 1298, 1304, 3, 176, 88, 0, 1299, 1305, 3, 180, 90, 0, 1300, 1302, 5, 17, 0, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1305, 3, 52, 26, 0, 1304, 1299, 1, 0, 0, 0, 1304, 1301, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1311, 1, 0, 0, 0, 1306, 1308, 3, 184, 92, 0, 1307, 1309, 3, 180, 90, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1289, 1, 0, 0, 0, 1310, 1290, 1, 0, 0, 0, 1310, 1298, 1, 0, 0, 0, 1310, 1306, 1, 0, 0, 0, 1311, 173, 1, 0, 0, 0, 1312, 1313, 3, 186, 93, 0, 1313, 175, 1, 0, 0, 0, 1314, 1315, 3, 274, 137, 0, 1315, 177, 1, 0, 0, 0, 1316, 1317, 3, 52, 26, 0, 1317, 179, 1, 0, 0, 0, 1318, 1320, 5, 17, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 3, 320, 160, 0, 1322, 181, 1, 0, 0, 0, 1323, 1339, 3, 186, 93, 0, 1324, 1329, 3, 52, 26, 0, 1325, 1327, 5, 17, 0, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1330, 3, 274, 137, 0, 1329, 1326, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1339, 1, 0, 0, 0, 1331, 1336, 3, 274, 137, 0, 1332, 1334, 5, 17, 0, 0, 1333, 1332, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 3, 52, 26, 0, 1336, 1333, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1339, 1, 0, 0, 0, 1338, 1323, 1, 0, 0, 0, 1338, 1324, 1, 0, 0, 0, 1338, 1331, 1, 0, 0, 0, 1339, 183, 1, 0, 0, 0, 1340, 1345, 3, 320, 160, 0, 1341, 1342, 5, 513, 0, 0, 1342, 1344, 3, 320, 160, 0, 1343, 1341, 1, 0, 0, 0, 1344, 1347, 1, 0, 0, 0, 1345, 1343, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1345, 1, 0, 0, 0, 1348, 1349, 5, 513, 0, 0, 1349, 1351, 1, 0, 0, 0, 1350, 1340, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 5, 527, 0, 0, 1353, 185, 1, 0, 0, 0, 1354, 1355, 3, 284, 142, 0, 1355, 1356, 5, 262, 0, 0, 1356, 1357, 3, 242, 121, 0, 1357, 1358, 5, 17, 0, 0, 1358, 1359, 3, 320, 160, 0, 1359, 1367, 1, 0, 0, 0, 1360, 1361, 3, 284, 142, 0, 1361, 1362, 5, 262, 0, 0, 1362, 1363, 3, 312, 156, 0, 1363, 1364, 5, 17, 0, 0, 1364, 1365, 3, 320, 160, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1354, 1, 0, 0, 0, 1366, 1360, 1, 0, 0, 0, 1367, 187, 1, 0, 0, 0, 1368, 1369, 5, 151, 0, 0, 1369, 1370, 3, 190, 95, 0, 1370, 189, 1, 0, 0, 0, 1371, 1372, 6, 95, -1, 0, 1372, 1377, 3, 192, 96, 0, 1373, 1374, 5, 520, 0, 0, 1374, 1376, 3, 192, 96, 0, 1375, 1373, 1, 0, 0, 0, 1376, 1379, 1, 0, 0, 0, 1377, 1375, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1383, 1, 0, 0, 0, 1379, 1377, 1, 0, 0, 0, 1380, 1383, 3, 204, 102, 0, 1381, 1383, 3, 206, 103, 0, 1382, 1371, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 1405, 1, 0, 0, 0, 1384, 1385, 10, 3, 0, 0, 1385, 1386, 5, 73, 0, 0, 1386, 1387, 5, 185, 0, 0, 1387, 1404, 3, 190, 95, 4, 1388, 1390, 10, 4, 0, 0, 1389, 1391, 5, 233, 0, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1393, 1, 0, 0, 0, 1392, 1394, 7, 20, 0, 0, 1393, 1392, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1396, 1, 0, 0, 0, 1395, 1397, 5, 261, 0, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 5, 185, 0, 0, 1399, 1401, 3, 190, 95, 0, 1400, 1402, 3, 218, 109, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1404, 1, 0, 0, 0, 1403, 1384, 1, 0, 0, 0, 1403, 1388, 1, 0, 0, 0, 1404, 1407, 1, 0, 0, 0, 1405, 1403, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 191, 1, 0, 0, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1410, 3, 194, 97, 0, 1409, 1411, 3, 310, 155, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 193, 1, 0, 0, 0, 1412, 1414, 5, 373, 0, 0, 1413, 1412, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1417, 3, 338, 169, 0, 1416, 1418, 3, 200, 100, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1426, 1, 0, 0, 0, 1419, 1421, 3, 340, 170, 0, 1420, 1422, 3, 200, 100, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1426, 1, 0, 0, 0, 1423, 1426, 3, 196, 98, 0, 1424, 1426, 3, 198, 99, 0, 1425, 1413, 1, 0, 0, 0, 1425, 1419, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1424, 1, 0, 0, 0, 1426, 195, 1, 0, 0, 0, 1427, 1428, 5, 198, 0, 0, 1428, 1429, 5, 373, 0, 0, 1429, 1430, 5, 516, 0, 0, 1430, 1431, 3, 288, 144, 0, 1431, 1432, 5, 516, 0, 0, 1432, 1437, 3, 290, 145, 0, 1433, 1434, 5, 520, 0, 0, 1434, 1436, 3, 290, 145, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1439, 1, 0, 0, 0, 1437, 1435, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1441, 5, 517, 0, 0, 1441, 1442, 5, 517, 0, 0, 1442, 197, 1, 0, 0, 0, 1443, 1445, 5, 198, 0, 0, 1444, 1443, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 5, 516, 0, 0, 1447, 1448, 3, 156, 78, 0, 1448, 1449, 5, 517, 0, 0, 1449, 1456, 1, 0, 0, 0, 1450, 1451, 5, 405, 0, 0, 1451, 1452, 5, 516, 0, 0, 1452, 1453, 3, 274, 137, 0, 1453, 1454, 5, 517, 0, 0, 1454, 1456, 1, 0, 0, 0, 1455, 1444, 1, 0, 0, 0, 1455, 1450, 1, 0, 0, 0, 1456, 199, 1, 0, 0, 0, 1457, 1458, 5, 146, 0, 0, 1458, 1459, 5, 371, 0, 0, 1459, 1460, 5, 17, 0, 0, 1460, 1461, 5, 249, 0, 0, 1461, 1462, 3, 202, 101, 0, 1462, 201, 1, 0, 0, 0, 1463, 1464, 3, 274, 137, 0, 1464, 203, 1, 0, 0, 0, 1465, 1466, 5, 516, 0, 0, 1466, 1467, 3, 148, 74, 0, 1467, 1468, 5, 517, 0, 0, 1468, 1469, 3, 310, 155, 0, 1469, 205, 1, 0, 0, 0, 1470, 1471, 5, 373, 0, 0, 1471, 1472, 5, 516, 0, 0, 1472, 1473, 3, 208, 104, 0, 1473, 1474, 5, 517, 0, 0, 1474, 207, 1, 0, 0, 0, 1475, 1476, 3, 210, 105, 0, 1476, 1477, 5, 516, 0, 0, 1477, 1482, 3, 212, 106, 0, 1478, 1479, 5, 520, 0, 0, 1479, 1481, 3, 212, 106, 0, 1480, 1478, 1, 0, 0, 0, 1481, 1484, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1485, 1, 0, 0, 0, 1484, 1482, 1, 0, 0, 0, 1485, 1486, 5, 517, 0, 0, 1486, 209, 1, 0, 0, 0, 1487, 1488, 7, 21, 0, 0, 1488, 211, 1, 0, 0, 0, 1489, 1490, 5, 373, 0, 0, 1490, 1505, 3, 234, 117, 0, 1491, 1505, 3, 216, 108, 0, 1492, 1505, 3, 298, 149, 0, 1493, 1494, 5, 446, 0, 0, 1494, 1495, 5, 536, 0, 0, 1495, 1496, 5, 373, 0, 0, 1496, 1505, 3, 234, 117, 0, 1497, 1498, 5, 498, 0, 0, 1498, 1499, 5, 536, 0, 0, 1499, 1505, 3, 216, 108, 0, 1500, 1501, 3, 214, 107, 0, 1501, 1502, 5, 536, 0, 0, 1502, 1503, 3, 298, 149, 0, 1503, 1505, 1, 0, 0, 0, 1504, 1489, 1, 0, 0, 0, 1504, 1491, 1, 0, 0, 0, 1504, 1492, 1, 0, 0, 0, 1504, 1493, 1, 0, 0, 0, 1504, 1497, 1, 0, 0, 0, 1504, 1500, 1, 0, 0, 0, 1505, 213, 1, 0, 0, 0, 1506, 1507, 7, 22, 0, 0, 1507, 215, 1, 0, 0, 0, 1508, 1509, 5, 451, 0, 0, 1509, 1510, 5, 516, 0, 0, 1510, 1511, 3, 52, 26, 0, 1511, 1512, 5, 517, 0, 0, 1512, 217, 1, 0, 0, 0, 1513, 1514, 5, 253, 0, 0, 1514, 1518, 3, 276, 138, 0, 1515, 1516, 5, 412, 0, 0, 1516, 1518, 3, 54, 27, 0, 1517, 1513, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1518, 219, 1, 0, 0, 0, 1519, 1520, 5, 430, 0, 0, 1520, 1521, 3, 276, 138, 0, 1521, 221, 1, 0, 0, 0, 1522, 1523, 5, 159, 0, 0, 1523, 1524, 5, 34, 0, 0, 1524, 1529, 3, 224, 112, 0, 1525, 1526, 5, 520, 0, 0, 1526, 1528, 3, 224, 112, 0, 1527, 1525, 1, 0, 0, 0, 1528, 1531, 1, 0, 0, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 223, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1573, 3, 52, 26, 0, 1533, 1573, 3, 230, 115, 0, 1534, 1535, 5, 516, 0, 0, 1535, 1573, 5, 517, 0, 0, 1536, 1537, 5, 516, 0, 0, 1537, 1542, 3, 274, 137, 0, 1538, 1539, 5, 520, 0, 0, 1539, 1541, 3, 274, 137, 0, 1540, 1538, 1, 0, 0, 0, 1541, 1544, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1545, 1546, 5, 517, 0, 0, 1546, 1573, 1, 0, 0, 0, 1547, 1548, 3, 228, 114, 0, 1548, 1549, 5, 516, 0, 0, 1549, 1554, 3, 274, 137, 0, 1550, 1551, 5, 520, 0, 0, 1551, 1553, 3, 274, 137, 0, 1552, 1550, 1, 0, 0, 0, 1553, 1556, 1, 0, 0, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 1, 0, 0, 0, 1556, 1554, 1, 0, 0, 0, 1557, 1558, 5, 517, 0, 0, 1558, 1573, 1, 0, 0, 0, 1559, 1560, 3, 226, 113, 0, 1560, 1561, 5, 516, 0, 0, 1561, 1566, 3, 224, 112, 0, 1562, 1563, 5, 520, 0, 0, 1563, 1565, 3, 224, 112, 0, 1564, 1562, 1, 0, 0, 0, 1565, 1568, 1, 0, 0, 0, 1566, 1564, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1569, 1, 0, 0, 0, 1568, 1566, 1, 0, 0, 0, 1569, 1570, 5, 517, 0, 0, 1570, 1573, 1, 0, 0, 0, 1571, 1573, 3, 274, 137, 0, 1572, 1532, 1, 0, 0, 0, 1572, 1533, 1, 0, 0, 0, 1572, 1534, 1, 0, 0, 0, 1572, 1536, 1, 0, 0, 0, 1572, 1547, 1, 0, 0, 0, 1572, 1559, 1, 0, 0, 0, 1572, 1571, 1, 0, 0, 0, 1573, 225, 1, 0, 0, 0, 1574, 1575, 5, 160, 0, 0, 1575, 1576, 5, 493, 0, 0, 1576, 227, 1, 0, 0, 0, 1577, 1578, 7, 23, 0, 0, 1578, 229, 1, 0, 0, 0, 1579, 1580, 3, 232, 116, 0, 1580, 1581, 5, 516, 0, 0, 1581, 1582, 3, 234, 117, 0, 1582, 1583, 5, 520, 0, 0, 1583, 1584, 3, 298, 149, 0, 1584, 1585, 5, 517, 0, 0, 1585, 231, 1, 0, 0, 0, 1586, 1587, 7, 24, 0, 0, 1587, 233, 1, 0, 0, 0, 1588, 1589, 3, 344, 172, 0, 1589, 235, 1, 0, 0, 0, 1590, 1591, 5, 163, 0, 0, 1591, 1592, 3, 276, 138, 0, 1592, 237, 1, 0, 0, 0, 1593, 1594, 5, 432, 0, 0, 1594, 1599, 3, 240, 120, 0, 1595, 1596, 5, 520, 0, 0, 1596, 1598, 3, 240, 120, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1601, 1, 0, 0, 0, 1599, 1597, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 239, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 1603, 3, 312, 156, 0, 1603, 1604, 5, 17, 0, 0, 1604, 1605, 3, 242, 121, 0, 1605, 241, 1, 0, 0, 0, 1606, 1608, 3, 312, 156, 0, 1607, 1606, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1611, 5, 516, 0, 0, 1610, 1612, 3, 252, 126, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1615, 3, 246, 123, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 1, 0, 0, 0, 1616, 1618, 3, 268, 134, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 5, 517, 0, 0, 1620, 243, 1, 0, 0, 0, 1621, 1622, 5, 213, 0, 0, 1622, 1624, 5, 516, 0, 0, 1623, 1625, 3, 252, 126, 0, 1624, 1623, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1627, 1, 0, 0, 0, 1626, 1628, 3, 246, 123, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1630, 1, 0, 0, 0, 1629, 1631, 3, 256, 128, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 1, 0, 0, 0, 1632, 1634, 3, 262, 131, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1637, 3, 264, 132, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1640, 3, 258, 129, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 3, 266, 133, 0, 1642, 1647, 5, 517, 0, 0, 1643, 1645, 5, 17, 0, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1648, 3, 320, 160, 0, 1647, 1644, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 245, 1, 0, 0, 0, 1649, 1650, 5, 258, 0, 0, 1650, 1651, 5, 34, 0, 0, 1651, 1656, 3, 248, 124, 0, 1652, 1653, 5, 520, 0, 0, 1653, 1655, 3, 248, 124, 0, 1654, 1652, 1, 0, 0, 0, 1655, 1658, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 247, 1, 0, 0, 0, 1658, 1656, 1, 0, 0, 0, 1659, 1661, 3, 52, 26, 0, 1660, 1662, 7, 25, 0, 0, 1661, 1660, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1665, 1, 0, 0, 0, 1663, 1664, 5, 476, 0, 0, 1664, 1666, 7, 26, 0, 0, 1665, 1663, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 249, 1, 0, 0, 0, 1667, 1670, 5, 204, 0, 0, 1668, 1671, 5, 5, 0, 0, 1669, 1671, 3, 274, 137, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1669, 1, 0, 0, 0, 1671, 251, 1, 0, 0, 0, 1672, 1673, 5, 268, 0, 0, 1673, 1676, 5, 34, 0, 0, 1674, 1677, 3, 52, 26, 0, 1675, 1677, 3, 284, 142, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1675, 1, 0, 0, 0, 1677, 1685, 1, 0, 0, 0, 1678, 1681, 5, 520, 0, 0, 1679, 1682, 3, 52, 26, 0, 1680, 1682, 3, 284, 142, 0, 1681, 1679, 1, 0, 0, 0, 1681, 1680, 1, 0, 0, 0, 1682, 1684, 1, 0, 0, 0, 1683, 1678, 1, 0, 0, 0, 1684, 1687, 1, 0, 0, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 253, 1, 0, 0, 0, 1687, 1685, 1, 0, 0, 0, 1688, 1705, 5, 527, 0, 0, 1689, 1705, 5, 530, 0, 0, 1690, 1705, 5, 535, 0, 0, 1691, 1692, 5, 518, 0, 0, 1692, 1693, 5, 538, 0, 0, 1693, 1694, 5, 520, 0, 0, 1694, 1695, 5, 538, 0, 0, 1695, 1705, 5, 519, 0, 0, 1696, 1697, 5, 518, 0, 0, 1697, 1698, 5, 538, 0, 0, 1698, 1699, 5, 520, 0, 0, 1699, 1705, 5, 519, 0, 0, 1700, 1701, 5, 518, 0, 0, 1701, 1702, 5, 520, 0, 0, 1702, 1703, 5, 538, 0, 0, 1703, 1705, 5, 519, 0, 0, 1704, 1688, 1, 0, 0, 0, 1704, 1689, 1, 0, 0, 0, 1704, 1690, 1, 0, 0, 0, 1704, 1691, 1, 0, 0, 0, 1704, 1696, 1, 0, 0, 0, 1704, 1700, 1, 0, 0, 0, 1705, 255, 1, 0, 0, 0, 1706, 1707, 5, 215, 0, 0, 1707, 1712, 3, 182, 91, 0, 1708, 1709, 5, 520, 0, 0, 1709, 1711, 3, 182, 91, 0, 1710, 1708, 1, 0, 0, 0, 1711, 1714, 1, 0, 0, 0, 1712, 1710, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 257, 1, 0, 0, 0, 1714, 1712, 1, 0, 0, 0, 1715, 1716, 5, 271, 0, 0, 1716, 1718, 5, 516, 0, 0, 1717, 1719, 3, 260, 130, 0, 1718, 1717, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1724, 5, 517, 0, 0, 1723, 1725, 3, 272, 136, 0, 1724, 1723, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 259, 1, 0, 0, 0, 1726, 1728, 3, 322, 161, 0, 1727, 1729, 3, 254, 127, 0, 1728, 1727, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 261, 1, 0, 0, 0, 1730, 1731, 5, 5, 0, 0, 1731, 1732, 5, 322, 0, 0, 1732, 1733, 5, 272, 0, 0, 1733, 1739, 5, 210, 0, 0, 1734, 1735, 5, 254, 0, 0, 1735, 1736, 5, 321, 0, 0, 1736, 1737, 5, 272, 0, 0, 1737, 1739, 5, 210, 0, 0, 1738, 1730, 1, 0, 0, 0, 1738, 1734, 1, 0, 0, 0, 1739, 263, 1, 0, 0, 0, 1740, 1741, 5, 438, 0, 0, 1741, 1742, 5, 210, 0, 0, 1742, 1743, 5, 343, 0, 0, 1743, 1744, 5, 478, 0, 0, 1744, 1745, 5, 467, 0, 0, 1745, 1765, 5, 321, 0, 0, 1746, 1747, 5, 438, 0, 0, 1747, 1748, 5, 210, 0, 0, 1748, 1749, 5, 343, 0, 0, 1749, 1750, 5, 388, 0, 0, 1750, 1751, 5, 237, 0, 0, 1751, 1765, 5, 321, 0, 0, 1752, 1753, 5, 438, 0, 0, 1753, 1754, 5, 210, 0, 0, 1754, 1755, 5, 343, 0, 0, 1755, 1756, 5, 388, 0, 0, 1756, 1757, 5, 467, 0, 0, 1757, 1765, 3, 322, 161, 0, 1758, 1759, 5, 438, 0, 0, 1759, 1760, 5, 210, 0, 0, 1760, 1761, 5, 343, 0, 0, 1761, 1762, 5, 388, 0, 0, 1762, 1763, 5, 457, 0, 0, 1763, 1765, 3, 322, 161, 0, 1764, 1740, 1, 0, 0, 0, 1764, 1746, 1, 0, 0, 0, 1764, 1752, 1, 0, 0, 0, 1764, 1758, 1, 0, 0, 0, 1765, 265, 1, 0, 0, 0, 1766, 1767, 5, 105, 0, 0, 1767, 1772, 3, 182, 91, 0, 1768, 1769, 5, 520, 0, 0, 1769, 1771, 3, 182, 91, 0, 1770, 1768, 1, 0, 0, 0, 1771, 1774, 1, 0, 0, 0, 1772, 1770, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 267, 1, 0, 0, 0, 1774, 1772, 1, 0, 0, 0, 1775, 1776, 5, 292, 0, 0, 1776, 1777, 5, 27, 0, 0, 1777, 1778, 3, 298, 149, 0, 1778, 1779, 3, 270, 135, 0, 1779, 1785, 1, 0, 0, 0, 1780, 1781, 5, 322, 0, 0, 1781, 1782, 5, 27, 0, 0, 1782, 1783, 5, 538, 0, 0, 1783, 1785, 3, 270, 135, 0, 1784, 1775, 1, 0, 0, 0, 1784, 1780, 1, 0, 0, 0, 1785, 269, 1, 0, 0, 0, 1786, 1787, 5, 480, 0, 0, 1787, 1788, 5, 10, 0, 0, 1788, 1789, 5, 76, 0, 0, 1789, 1790, 5, 321, 0, 0, 1790, 271, 1, 0, 0, 0, 1791, 1792, 5, 434, 0, 0, 1792, 1793, 3, 298, 149, 0, 1793, 273, 1, 0, 0, 0, 1794, 1795, 3, 276, 138, 0, 1795, 275, 1, 0, 0, 0, 1796, 1797, 6, 138, -1, 0, 1797, 1798, 5, 241, 0, 0, 1798, 1809, 3, 276, 138, 6, 1799, 1800, 5, 133, 0, 0, 1800, 1801, 5, 516, 0, 0, 1801, 1802, 3, 156, 78, 0, 1802, 1803, 5, 517, 0, 0, 1803, 1809, 1, 0, 0, 0, 1804, 1806, 3, 282, 141, 0, 1805, 1807, 3, 278, 139, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1809, 1, 0, 0, 0, 1808, 1796, 1, 0, 0, 0, 1808, 1799, 1, 0, 0, 0, 1808, 1804, 1, 0, 0, 0, 1809, 1824, 1, 0, 0, 0, 1810, 1811, 10, 3, 0, 0, 1811, 1812, 5, 10, 0, 0, 1812, 1823, 3, 276, 138, 4, 1813, 1814, 10, 2, 0, 0, 1814, 1815, 5, 257, 0, 0, 1815, 1823, 3, 276, 138, 3, 1816, 1817, 10, 1, 0, 0, 1817, 1819, 5, 184, 0, 0, 1818, 1820, 5, 241, 0, 0, 1819, 1818, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1823, 7, 27, 0, 0, 1822, 1810, 1, 0, 0, 0, 1822, 1813, 1, 0, 0, 0, 1822, 1816, 1, 0, 0, 0, 1823, 1826, 1, 0, 0, 0, 1824, 1822, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 277, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1827, 1829, 5, 241, 0, 0, 1828, 1827, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1832, 5, 27, 0, 0, 1831, 1833, 7, 28, 0, 0, 1832, 1831, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1835, 3, 282, 141, 0, 1835, 1836, 5, 10, 0, 0, 1836, 1837, 3, 282, 141, 0, 1837, 1895, 1, 0, 0, 0, 1838, 1840, 5, 241, 0, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 5, 170, 0, 0, 1842, 1843, 5, 516, 0, 0, 1843, 1848, 3, 274, 137, 0, 1844, 1845, 5, 520, 0, 0, 1845, 1847, 3, 274, 137, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1850, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1851, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 1852, 5, 517, 0, 0, 1852, 1895, 1, 0, 0, 0, 1853, 1855, 5, 241, 0, 0, 1854, 1853, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 5, 170, 0, 0, 1857, 1858, 5, 516, 0, 0, 1858, 1859, 3, 156, 78, 0, 1859, 1860, 5, 517, 0, 0, 1860, 1895, 1, 0, 0, 0, 1861, 1862, 5, 133, 0, 0, 1862, 1863, 5, 516, 0, 0, 1863, 1864, 3, 156, 78, 0, 1864, 1865, 5, 517, 0, 0, 1865, 1895, 1, 0, 0, 0, 1866, 1868, 5, 241, 0, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1870, 5, 318, 0, 0, 1870, 1895, 3, 282, 141, 0, 1871, 1895, 3, 280, 140, 0, 1872, 1874, 5, 184, 0, 0, 1873, 1875, 5, 241, 0, 0, 1874, 1873, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1895, 7, 27, 0, 0, 1877, 1879, 5, 184, 0, 0, 1878, 1880, 5, 241, 0, 0, 1879, 1878, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 5, 113, 0, 0, 1882, 1883, 5, 151, 0, 0, 1883, 1895, 3, 282, 141, 0, 1884, 1886, 5, 241, 0, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 5, 342, 0, 0, 1888, 1889, 5, 388, 0, 0, 1889, 1892, 3, 282, 141, 0, 1890, 1891, 5, 127, 0, 0, 1891, 1893, 3, 374, 187, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1895, 1, 0, 0, 0, 1894, 1828, 1, 0, 0, 0, 1894, 1839, 1, 0, 0, 0, 1894, 1854, 1, 0, 0, 0, 1894, 1861, 1, 0, 0, 0, 1894, 1867, 1, 0, 0, 0, 1894, 1871, 1, 0, 0, 0, 1894, 1872, 1, 0, 0, 0, 1894, 1877, 1, 0, 0, 0, 1894, 1885, 1, 0, 0, 0, 1895, 279, 1, 0, 0, 0, 1896, 1898, 5, 241, 0, 0, 1897, 1896, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 5, 202, 0, 0, 1900, 1914, 7, 29, 0, 0, 1901, 1902, 5, 516, 0, 0, 1902, 1915, 5, 517, 0, 0, 1903, 1904, 5, 516, 0, 0, 1904, 1909, 3, 274, 137, 0, 1905, 1906, 5, 520, 0, 0, 1906, 1908, 3, 274, 137, 0, 1907, 1905, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1912, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1912, 1913, 5, 517, 0, 0, 1913, 1915, 1, 0, 0, 0, 1914, 1901, 1, 0, 0, 0, 1914, 1903, 1, 0, 0, 0, 1915, 1926, 1, 0, 0, 0, 1916, 1918, 5, 241, 0, 0, 1917, 1916, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 5, 202, 0, 0, 1920, 1923, 3, 282, 141, 0, 1921, 1922, 5, 127, 0, 0, 1922, 1924, 3, 374, 187, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1926, 1, 0, 0, 0, 1925, 1897, 1, 0, 0, 0, 1925, 1917, 1, 0, 0, 0, 1926, 281, 1, 0, 0, 0, 1927, 1928, 6, 141, -1, 0, 1928, 1932, 3, 284, 142, 0, 1929, 1930, 7, 30, 0, 0, 1930, 1932, 3, 282, 141, 7, 1931, 1927, 1, 0, 0, 0, 1931, 1929, 1, 0, 0, 0, 1932, 1954, 1, 0, 0, 0, 1933, 1934, 10, 6, 0, 0, 1934, 1935, 7, 31, 0, 0, 1935, 1953, 3, 282, 141, 7, 1936, 1937, 10, 5, 0, 0, 1937, 1938, 7, 32, 0, 0, 1938, 1953, 3, 282, 141, 6, 1939, 1940, 10, 4, 0, 0, 1940, 1941, 5, 511, 0, 0, 1941, 1953, 3, 282, 141, 5, 1942, 1943, 10, 3, 0, 0, 1943, 1944, 5, 512, 0, 0, 1944, 1953, 3, 282, 141, 4, 1945, 1946, 10, 2, 0, 0, 1946, 1947, 5, 510, 0, 0, 1947, 1953, 3, 282, 141, 3, 1948, 1949, 10, 1, 0, 0, 1949, 1950, 3, 362, 181, 0, 1950, 1951, 3, 282, 141, 2, 1951, 1953, 1, 0, 0, 0, 1952, 1933, 1, 0, 0, 0, 1952, 1936, 1, 0, 0, 0, 1952, 1939, 1, 0, 0, 0, 1952, 1942, 1, 0, 0, 0, 1952, 1945, 1, 0, 0, 0, 1952, 1948, 1, 0, 0, 0, 1953, 1956, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 283, 1, 0, 0, 0, 1956, 1954, 1, 0, 0, 0, 1957, 1958, 6, 142, -1, 0, 1958, 1960, 5, 40, 0, 0, 1959, 1961, 3, 326, 163, 0, 1960, 1959, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1966, 1, 0, 0, 0, 1964, 1965, 5, 120, 0, 0, 1965, 1967, 3, 274, 137, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 5, 122, 0, 0, 1969, 2050, 1, 0, 0, 0, 1970, 1971, 5, 40, 0, 0, 1971, 1973, 3, 274, 137, 0, 1972, 1974, 3, 326, 163, 0, 1973, 1972, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1973, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1979, 1, 0, 0, 0, 1977, 1978, 5, 120, 0, 0, 1978, 1980, 3, 274, 137, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 5, 122, 0, 0, 1982, 2050, 1, 0, 0, 0, 1983, 1984, 5, 41, 0, 0, 1984, 1985, 5, 516, 0, 0, 1985, 1986, 3, 274, 137, 0, 1986, 1987, 5, 17, 0, 0, 1987, 1988, 3, 56, 28, 0, 1988, 1989, 5, 517, 0, 0, 1989, 2050, 1, 0, 0, 0, 1990, 1991, 5, 457, 0, 0, 1991, 1992, 5, 516, 0, 0, 1992, 1995, 3, 274, 137, 0, 1993, 1994, 5, 461, 0, 0, 1994, 1996, 5, 476, 0, 0, 1995, 1993, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1998, 5, 517, 0, 0, 1998, 2050, 1, 0, 0, 0, 1999, 2000, 5, 467, 0, 0, 2000, 2001, 5, 516, 0, 0, 2001, 2004, 3, 274, 137, 0, 2002, 2003, 5, 461, 0, 0, 2003, 2005, 5, 476, 0, 0, 2004, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 5, 517, 0, 0, 2007, 2050, 1, 0, 0, 0, 2008, 2009, 5, 281, 0, 0, 2009, 2010, 5, 516, 0, 0, 2010, 2011, 3, 282, 141, 0, 2011, 2012, 5, 170, 0, 0, 2012, 2013, 3, 282, 141, 0, 2013, 2014, 5, 517, 0, 0, 2014, 2050, 1, 0, 0, 0, 2015, 2050, 3, 370, 185, 0, 2016, 2050, 5, 527, 0, 0, 2017, 2018, 3, 344, 172, 0, 2018, 2019, 5, 513, 0, 0, 2019, 2020, 5, 527, 0, 0, 2020, 2050, 1, 0, 0, 0, 2021, 2022, 5, 516, 0, 0, 2022, 2023, 3, 156, 78, 0, 2023, 2024, 5, 517, 0, 0, 2024, 2050, 1, 0, 0, 0, 2025, 2026, 3, 288, 144, 0, 2026, 2038, 5, 516, 0, 0, 2027, 2029, 3, 380, 190, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2035, 3, 290, 145, 0, 2031, 2032, 5, 520, 0, 0, 2032, 2034, 3, 290, 145, 0, 2033, 2031, 1, 0, 0, 0, 2034, 2037, 1, 0, 0, 0, 2035, 2033, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2039, 1, 0, 0, 0, 2037, 2035, 1, 0, 0, 0, 2038, 2028, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 5, 517, 0, 0, 2041, 2050, 1, 0, 0, 0, 2042, 2050, 3, 320, 160, 0, 2043, 2050, 3, 292, 146, 0, 2044, 2045, 5, 516, 0, 0, 2045, 2046, 3, 274, 137, 0, 2046, 2047, 5, 517, 0, 0, 2047, 2050, 1, 0, 0, 0, 2048, 2050, 5, 85, 0, 0, 2049, 1957, 1, 0, 0, 0, 2049, 1970, 1, 0, 0, 0, 2049, 1983, 1, 0, 0, 0, 2049, 1990, 1, 0, 0, 0, 2049, 1999, 1, 0, 0, 0, 2049, 2008, 1, 0, 0, 0, 2049, 2015, 1, 0, 0, 0, 2049, 2016, 1, 0, 0, 0, 2049, 2017, 1, 0, 0, 0, 2049, 2021, 1, 0, 0, 0, 2049, 2025, 1, 0, 0, 0, 2049, 2042, 1, 0, 0, 0, 2049, 2043, 1, 0, 0, 0, 2049, 2044, 1, 0, 0, 0, 2049, 2048, 1, 0, 0, 0, 2050, 2058, 1, 0, 0, 0, 2051, 2052, 10, 5, 0, 0, 2052, 2053, 5, 514, 0, 0, 2053, 2054, 3, 282, 141, 0, 2054, 2055, 5, 515, 0, 0, 2055, 2057, 1, 0, 0, 0, 2056, 2051, 1, 0, 0, 0, 2057, 2060, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 285, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2062, 3, 344, 172, 0, 2062, 287, 1, 0, 0, 0, 2063, 2066, 3, 388, 194, 0, 2064, 2066, 3, 344, 172, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2064, 1, 0, 0, 0, 2066, 289, 1, 0, 0, 0, 2067, 2072, 3, 386, 193, 0, 2068, 2072, 3, 384, 192, 0, 2069, 2072, 3, 382, 191, 0, 2070, 2072, 3, 274, 137, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2068, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2070, 1, 0, 0, 0, 2072, 291, 1, 0, 0, 0, 2073, 2074, 3, 344, 172, 0, 2074, 293, 1, 0, 0, 0, 2075, 2076, 3, 320, 160, 0, 2076, 295, 1, 0, 0, 0, 2077, 2080, 3, 320, 160, 0, 2078, 2080, 3, 292, 146, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2078, 1, 0, 0, 0, 2080, 297, 1, 0, 0, 0, 2081, 2084, 5, 182, 0, 0, 2082, 2085, 3, 300, 150, 0, 2083, 2085, 3, 304, 152, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2083, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 299, 1, 0, 0, 0, 2086, 2088, 3, 302, 151, 0, 2087, 2089, 3, 306, 153, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 301, 1, 0, 0, 0, 2090, 2091, 3, 308, 154, 0, 2091, 2092, 3, 384, 192, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2090, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2093, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 303, 1, 0, 0, 0, 2097, 2100, 3, 306, 153, 0, 2098, 2101, 3, 302, 151, 0, 2099, 2101, 3, 306, 153, 0, 2100, 2098, 1, 0, 0, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 305, 1, 0, 0, 0, 2102, 2103, 3, 308, 154, 0, 2103, 2104, 3, 384, 192, 0, 2104, 2105, 5, 388, 0, 0, 2105, 2106, 3, 384, 192, 0, 2106, 307, 1, 0, 0, 0, 2107, 2109, 7, 33, 0, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2113, 7, 34, 0, 0, 2111, 2113, 5, 537, 0, 0, 2112, 2108, 1, 0, 0, 0, 2112, 2111, 1, 0, 0, 0, 2113, 309, 1, 0, 0, 0, 2114, 2116, 5, 17, 0, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 3, 320, 160, 0, 2118, 2120, 3, 316, 158, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 311, 1, 0, 0, 0, 2121, 2122, 3, 320, 160, 0, 2122, 2123, 3, 314, 157, 0, 2123, 313, 1, 0, 0, 0, 2124, 2125, 5, 221, 0, 0, 2125, 2127, 3, 320, 160, 0, 2126, 2124, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2126, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2132, 1, 0, 0, 0, 2130, 2132, 1, 0, 0, 0, 2131, 2126, 1, 0, 0, 0, 2131, 2130, 1, 0, 0, 0, 2132, 315, 1, 0, 0, 0, 2133, 2134, 5, 516, 0, 0, 2134, 2135, 3, 318, 159, 0, 2135, 2136, 5, 517, 0, 0, 2136, 317, 1, 0, 0, 0, 2137, 2142, 3, 320, 160, 0, 2138, 2139, 5, 520, 0, 0, 2139, 2141, 3, 320, 160, 0, 2140, 2138, 1, 0, 0, 0, 2141, 2144, 1, 0, 0, 0, 2142, 2140, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 319, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2145, 2149, 3, 322, 161, 0, 2146, 2149, 3, 324, 162, 0, 2147, 2149, 3, 390, 195, 0, 2148, 2145, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2147, 1, 0, 0, 0, 2149, 321, 1, 0, 0, 0, 2150, 2151, 7, 35, 0, 0, 2151, 323, 1, 0, 0, 0, 2152, 2153, 5, 537, 0, 0, 2153, 325, 1, 0, 0, 0, 2154, 2155, 5, 428, 0, 0, 2155, 2156, 3, 274, 137, 0, 2156, 2157, 5, 376, 0, 0, 2157, 2158, 3, 274, 137, 0, 2158, 327, 1, 0, 0, 0, 2159, 2160, 3, 320, 160, 0, 2160, 329, 1, 0, 0, 0, 2161, 2162, 3, 320, 160, 0, 2162, 331, 1, 0, 0, 0, 2163, 2166, 3, 320, 160, 0, 2164, 2165, 5, 513, 0, 0, 2165, 2167, 3, 320, 160, 0, 2166, 2164, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 333, 1, 0, 0, 0, 2168, 2171, 3, 320, 160, 0, 2169, 2170, 5, 513, 0, 0, 2170, 2172, 3, 320, 160, 0, 2171, 2169, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 335, 1, 0, 0, 0, 2173, 2176, 3, 320, 160, 0, 2174, 2175, 5, 513, 0, 0, 2175, 2177, 3, 320, 160, 0, 2176, 2174, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2186, 1, 0, 0, 0, 2178, 2179, 3, 320, 160, 0, 2179, 2180, 5, 513, 0, 0, 2180, 2183, 3, 320, 160, 0, 2181, 2182, 5, 513, 0, 0, 2182, 2184, 3, 320, 160, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2186, 1, 0, 0, 0, 2185, 2173, 1, 0, 0, 0, 2185, 2178, 1, 0, 0, 0, 2186, 337, 1, 0, 0, 0, 2187, 2190, 3, 320, 160, 0, 2188, 2189, 5, 513, 0, 0, 2189, 2191, 3, 320, 160, 0, 2190, 2188, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2200, 1, 0, 0, 0, 2192, 2193, 3, 320, 160, 0, 2193, 2194, 5, 513, 0, 0, 2194, 2197, 3, 320, 160, 0, 2195, 2196, 5, 513, 0, 0, 2196, 2198, 3, 320, 160, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2200, 1, 0, 0, 0, 2199, 2187, 1, 0, 0, 0, 2199, 2192, 1, 0, 0, 0, 2200, 339, 1, 0, 0, 0, 2201, 2204, 3, 320, 160, 0, 2202, 2203, 5, 513, 0, 0, 2203, 2205, 3, 320, 160, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 2214, 1, 0, 0, 0, 2206, 2207, 3, 320, 160, 0, 2207, 2208, 5, 513, 0, 0, 2208, 2211, 3, 320, 160, 0, 2209, 2210, 5, 513, 0, 0, 2210, 2212, 3, 320, 160, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2214, 1, 0, 0, 0, 2213, 2201, 1, 0, 0, 0, 2213, 2206, 1, 0, 0, 0, 2214, 341, 1, 0, 0, 0, 2215, 2218, 3, 320, 160, 0, 2216, 2217, 5, 513, 0, 0, 2217, 2219, 3, 320, 160, 0, 2218, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2228, 1, 0, 0, 0, 2220, 2221, 3, 320, 160, 0, 2221, 2222, 5, 513, 0, 0, 2222, 2225, 3, 320, 160, 0, 2223, 2224, 5, 513, 0, 0, 2224, 2226, 3, 320, 160, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 1, 0, 0, 0, 2227, 2215, 1, 0, 0, 0, 2227, 2220, 1, 0, 0, 0, 2228, 343, 1, 0, 0, 0, 2229, 2234, 3, 320, 160, 0, 2230, 2231, 5, 513, 0, 0, 2231, 2233, 3, 320, 160, 0, 2232, 2230, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 345, 1, 0, 0, 0, 2236, 2234, 1, 0, 0, 0, 2237, 2238, 5, 433, 0, 0, 2238, 2239, 3, 352, 176, 0, 2239, 347, 1, 0, 0, 0, 2240, 2241, 5, 167, 0, 0, 2241, 2242, 5, 241, 0, 0, 2242, 2243, 5, 133, 0, 0, 2243, 349, 1, 0, 0, 0, 2244, 2245, 5, 167, 0, 0, 2245, 2246, 5, 133, 0, 0, 2246, 351, 1, 0, 0, 0, 2247, 2248, 5, 516, 0, 0, 2248, 2253, 3, 354, 177, 0, 2249, 2250, 5, 520, 0, 0, 2250, 2252, 3, 354, 177, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 517, 0, 0, 2257, 353, 1, 0, 0, 0, 2258, 2263, 3, 356, 178, 0, 2259, 2261, 5, 505, 0, 0, 2260, 2259, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2264, 3, 358, 179, 0, 2263, 2260, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 355, 1, 0, 0, 0, 2265, 2269, 3, 320, 160, 0, 2266, 2269, 3, 292, 146, 0, 2267, 2269, 5, 537, 0, 0, 2268, 2265, 1, 0, 0, 0, 2268, 2266, 1, 0, 0, 0, 2268, 2267, 1, 0, 0, 0, 2269, 357, 1, 0, 0, 0, 2270, 2275, 5, 538, 0, 0, 2271, 2275, 5, 539, 0, 0, 2272, 2275, 3, 378, 189, 0, 2273, 2275, 5, 537, 0, 0, 2274, 2270, 1, 0, 0, 0, 2274, 2271, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2273, 1, 0, 0, 0, 2275, 359, 1, 0, 0, 0, 2276, 2283, 5, 10, 0, 0, 2277, 2278, 5, 511, 0, 0, 2278, 2283, 5, 511, 0, 0, 2279, 2283, 5, 257, 0, 0, 2280, 2281, 5, 510, 0, 0, 2281, 2283, 5, 510, 0, 0, 2282, 2276, 1, 0, 0, 0, 2282, 2277, 1, 0, 0, 0, 2282, 2279, 1, 0, 0, 0, 2282, 2280, 1, 0, 0, 0, 2283, 361, 1, 0, 0, 0, 2284, 2299, 5, 505, 0, 0, 2285, 2299, 5, 506, 0, 0, 2286, 2299, 5, 507, 0, 0, 2287, 2288, 5, 507, 0, 0, 2288, 2299, 5, 505, 0, 0, 2289, 2290, 5, 506, 0, 0, 2290, 2299, 5, 505, 0, 0, 2291, 2292, 5, 507, 0, 0, 2292, 2299, 5, 506, 0, 0, 2293, 2294, 5, 508, 0, 0, 2294, 2299, 5, 505, 0, 0, 2295, 2296, 5, 507, 0, 0, 2296, 2297, 5, 505, 0, 0, 2297, 2299, 5, 506, 0, 0, 2298, 2284, 1, 0, 0, 0, 2298, 2285, 1, 0, 0, 0, 2298, 2286, 1, 0, 0, 0, 2298, 2287, 1, 0, 0, 0, 2298, 2289, 1, 0, 0, 0, 2298, 2291, 1, 0, 0, 0, 2298, 2293, 1, 0, 0, 0, 2298, 2295, 1, 0, 0, 0, 2299, 363, 1, 0, 0, 0, 2300, 2301, 5, 507, 0, 0, 2301, 2308, 5, 507, 0, 0, 2302, 2303, 5, 506, 0, 0, 2303, 2308, 5, 506, 0, 0, 2304, 2308, 5, 511, 0, 0, 2305, 2308, 5, 512, 0, 0, 2306, 2308, 5, 510, 0, 0, 2307, 2300, 1, 0, 0, 0, 2307, 2302, 1, 0, 0, 0, 2307, 2304, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2307, 2306, 1, 0, 0, 0, 2308, 365, 1, 0, 0, 0, 2309, 2310, 7, 36, 0, 0, 2310, 367, 1, 0, 0, 0, 2311, 2312, 7, 37, 0, 0, 2312, 369, 1, 0, 0, 0, 2313, 2328, 3, 298, 149, 0, 2314, 2328, 3, 372, 186, 0, 2315, 2328, 3, 374, 187, 0, 2316, 2318, 5, 529, 0, 0, 2317, 2316, 1, 0, 0, 0, 2317, 2318, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2328, 3, 376, 188, 0, 2320, 2328, 3, 378, 189, 0, 2321, 2328, 5, 539, 0, 0, 2322, 2328, 5, 540, 0, 0, 2323, 2325, 5, 241, 0, 0, 2324, 2323, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2328, 5, 244, 0, 0, 2327, 2313, 1, 0, 0, 0, 2327, 2314, 1, 0, 0, 0, 2327, 2315, 1, 0, 0, 0, 2327, 2317, 1, 0, 0, 0, 2327, 2320, 1, 0, 0, 0, 2327, 2321, 1, 0, 0, 0, 2327, 2322, 1, 0, 0, 0, 2327, 2324, 1, 0, 0, 0, 2328, 371, 1, 0, 0, 0, 2329, 2330, 3, 382, 191, 0, 2330, 2331, 3, 374, 187, 0, 2331, 373, 1, 0, 0, 0, 2332, 2333, 5, 537, 0, 0, 2333, 375, 1, 0, 0, 0, 2334, 2335, 5, 538, 0, 0, 2335, 377, 1, 0, 0, 0, 2336, 2337, 7, 38, 0, 0, 2337, 379, 1, 0, 0, 0, 2338, 2339, 7, 39, 0, 0, 2339, 381, 1, 0, 0, 0, 2340, 2341, 7, 40, 0, 0, 2341, 383, 1, 0, 0, 0, 2342, 2343, 7, 41, 0, 0, 2343, 385, 1, 0, 0, 0, 2344, 2345, 7, 42, 0, 0, 2345, 387, 1, 0, 0, 0, 2346, 2347, 7, 43, 0, 0, 2347, 389, 1, 0, 0, 0, 2348, 2349, 7, 44, 0, 0, 2349, 391, 1, 0, 0, 0, 279, 395, 402, 405, 419, 437, 441, 450, 455, 462, 473, 482, 494, 497, 504, 507, 515, 519, 524, 527, 534, 542, 546, 558, 566, 570, 602, 605, 610, 614, 618, 622, 631, 636, 640, 644, 649, 652, 656, 661, 667, 672, 677, 681, 685, 689, 697, 705, 709, 713, 717, 721, 725, 729, 733, 737, 739, 749, 757, 781, 795, 800, 804, 810, 813, 816, 823, 826, 835, 847, 871, 883, 888, 892, 900, 904, 910, 920, 925, 931, 935, 939, 943, 952, 956, 963, 966, 976, 984, 992, 996, 1011, 1030, 1041, 1045, 1052, 1057, 1063, 1067, 1074, 1078, 1082, 1086, 1094, 1098, 1103, 1109, 1115, 1118, 1122, 1133, 1142, 1156, 1168, 1183, 1186, 1190, 1193, 1195, 1200, 1204, 1207, 1211, 1220, 1229, 1239, 1244, 1255, 1258, 1261, 1264, 1267, 1273, 1277, 1286, 1293, 1296, 1301, 1304, 1308, 1310, 1319, 1326, 1329, 1333, 1336, 1338, 1345, 1350, 1366, 1377, 1382, 1390, 1393, 1396, 1401, 1403, 1405, 1410, 1413, 1417, 1421, 1425, 1437, 1444, 1455, 1482, 1504, 1517, 1529, 1542, 1554, 1566, 1572, 1599, 1607, 1611, 1614, 1617, 1624, 1627, 1630, 1633, 1636, 1639, 1644, 1647, 1656, 1661, 1665, 1670, 1676, 1681, 1685, 1704, 1712, 1720, 1724, 1728, 1738, 1764, 1772, 1784, 1806, 1808, 1819, 1822, 1824, 1828, 1832, 1839, 1848, 1854, 1867, 1874, 1879, 1885, 1892, 1894, 1897, 1909, 1914, 1917, 1923, 1925, 1931, 1952, 1954, 1962, 1966, 1975, 1979, 1995, 2004, 2028, 2035, 2038, 2049, 2058, 2065, 2071, 2079, 2084, 2088, 2095, 2100, 2108, 2112, 2115, 2119, 2128, 2131, 2142, 2148, 2166, 2171, 2176, 2183, 2185, 2190, 2197, 2199, 2204, 2211, 2213, 2218, 2225, 2227, 2234, 2253, 2260, 2263, 2268, 2274, 2282, 2298, 2307, 2317, 2324, 2327] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 30e7d500d..3cf847264 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -643,108 +643,117 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_withItemName = 82; public static readonly RULE_selectStatement = 83; public static readonly RULE_selectClause = 84; - public static readonly RULE_projectItemDefinition = 85; - public static readonly RULE_overWindowItem = 86; - public static readonly RULE_fromClause = 87; - public static readonly RULE_tableExpression = 88; - public static readonly RULE_tableReference = 89; - public static readonly RULE_tablePrimary = 90; - public static readonly RULE_systemTimePeriod = 91; - public static readonly RULE_dateTimeExpression = 92; - public static readonly RULE_inlineDataValueClause = 93; - public static readonly RULE_windoTVFClause = 94; - public static readonly RULE_windowTVFExression = 95; - public static readonly RULE_windoTVFName = 96; - public static readonly RULE_windowTVFParam = 97; - public static readonly RULE_timeIntervalParamName = 98; - public static readonly RULE_columnDescriptor = 99; - public static readonly RULE_joinCondition = 100; - public static readonly RULE_whereClause = 101; - public static readonly RULE_groupByClause = 102; - public static readonly RULE_groupItemDefinition = 103; - public static readonly RULE_groupingSets = 104; - public static readonly RULE_groupingSetsNotaionName = 105; - public static readonly RULE_groupWindowFunction = 106; - public static readonly RULE_groupWindowFunctionName = 107; - public static readonly RULE_timeAttrColumn = 108; - public static readonly RULE_havingClause = 109; - public static readonly RULE_windowClause = 110; - public static readonly RULE_namedWindow = 111; - public static readonly RULE_windowSpec = 112; - public static readonly RULE_matchRecognizeClause = 113; - public static readonly RULE_orderByCaluse = 114; - public static readonly RULE_orderItemDefition = 115; - public static readonly RULE_limitClause = 116; - public static readonly RULE_partitionByClause = 117; - public static readonly RULE_quantifiers = 118; - public static readonly RULE_measuresClause = 119; - public static readonly RULE_patternDefination = 120; - public static readonly RULE_patternVariable = 121; - public static readonly RULE_outputMode = 122; - public static readonly RULE_afterMatchStrategy = 123; - public static readonly RULE_patternVariablesDefination = 124; - public static readonly RULE_windowFrame = 125; - public static readonly RULE_frameBound = 126; - public static readonly RULE_withinClause = 127; - public static readonly RULE_expression = 128; - public static readonly RULE_booleanExpression = 129; - public static readonly RULE_predicate = 130; - public static readonly RULE_likePredicate = 131; - public static readonly RULE_valueExpression = 132; - public static readonly RULE_primaryExpression = 133; - public static readonly RULE_functionNameCreate = 134; - public static readonly RULE_functionName = 135; - public static readonly RULE_functionParam = 136; - public static readonly RULE_dereferenceDefinition = 137; - public static readonly RULE_correlationName = 138; - public static readonly RULE_qualifiedName = 139; - public static readonly RULE_timeIntervalExpression = 140; - public static readonly RULE_errorCapturingMultiUnitsInterval = 141; - public static readonly RULE_multiUnitsInterval = 142; - public static readonly RULE_errorCapturingUnitToUnitInterval = 143; - public static readonly RULE_unitToUnitInterval = 144; - public static readonly RULE_intervalValue = 145; - public static readonly RULE_tableAlias = 146; - public static readonly RULE_errorCapturingIdentifier = 147; - public static readonly RULE_errorCapturingIdentifierExtra = 148; - public static readonly RULE_identifierList = 149; - public static readonly RULE_identifierSeq = 150; - public static readonly RULE_identifier = 151; - public static readonly RULE_unquotedIdentifier = 152; - public static readonly RULE_quotedIdentifier = 153; - public static readonly RULE_whenClause = 154; - public static readonly RULE_catalogPath = 155; - public static readonly RULE_catalogPathCreate = 156; - public static readonly RULE_databasePath = 157; - public static readonly RULE_databasePathCreate = 158; - public static readonly RULE_tablePathCreate = 159; - public static readonly RULE_tablePath = 160; - public static readonly RULE_viewPath = 161; - public static readonly RULE_viewPathCreate = 162; - public static readonly RULE_uid = 163; - public static readonly RULE_withOption = 164; - public static readonly RULE_ifNotExists = 165; - public static readonly RULE_ifExists = 166; - public static readonly RULE_tablePropertyList = 167; - public static readonly RULE_tableProperty = 168; - public static readonly RULE_tablePropertyKey = 169; - public static readonly RULE_tablePropertyValue = 170; - public static readonly RULE_logicalOperator = 171; - public static readonly RULE_comparisonOperator = 172; - public static readonly RULE_bitOperator = 173; - public static readonly RULE_mathOperator = 174; - public static readonly RULE_unaryOperator = 175; - public static readonly RULE_constant = 176; - public static readonly RULE_timePointLiteral = 177; - public static readonly RULE_stringLiteral = 178; - public static readonly RULE_decimalLiteral = 179; - public static readonly RULE_booleanLiteral = 180; - public static readonly RULE_setQuantifier = 181; - public static readonly RULE_timePointUnit = 182; - public static readonly RULE_timeIntervalUnit = 183; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 184; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 185; - public static readonly RULE_nonReservedKeywords = 186; + public static readonly RULE_selectList = 85; + public static readonly RULE_columnProjectItem = 86; + public static readonly RULE_selectWindowItemColumnName = 87; + public static readonly RULE_selectExpressionColumnName = 88; + public static readonly RULE_selectLiteralColumnName = 89; + public static readonly RULE_columnAlias = 90; + public static readonly RULE_projectItemDefinition = 91; + public static readonly RULE_tableAllColumns = 92; + public static readonly RULE_overWindowItem = 93; + public static readonly RULE_fromClause = 94; + public static readonly RULE_tableExpression = 95; + public static readonly RULE_tableReference = 96; + public static readonly RULE_tablePrimary = 97; + public static readonly RULE_atomFunctionTable = 98; + public static readonly RULE_atomExpressionTable = 99; + public static readonly RULE_systemTimePeriod = 100; + public static readonly RULE_dateTimeExpression = 101; + public static readonly RULE_inlineDataValueClause = 102; + public static readonly RULE_windoTVFClause = 103; + public static readonly RULE_windowTVFExression = 104; + public static readonly RULE_windoTVFName = 105; + public static readonly RULE_windowTVFParam = 106; + public static readonly RULE_timeIntervalParamName = 107; + public static readonly RULE_columnDescriptor = 108; + public static readonly RULE_joinCondition = 109; + public static readonly RULE_whereClause = 110; + public static readonly RULE_groupByClause = 111; + public static readonly RULE_groupItemDefinition = 112; + public static readonly RULE_groupingSets = 113; + public static readonly RULE_groupingSetsNotaionName = 114; + public static readonly RULE_groupWindowFunction = 115; + public static readonly RULE_groupWindowFunctionName = 116; + public static readonly RULE_timeAttrColumn = 117; + public static readonly RULE_havingClause = 118; + public static readonly RULE_windowClause = 119; + public static readonly RULE_namedWindow = 120; + public static readonly RULE_windowSpec = 121; + public static readonly RULE_matchRecognizeClause = 122; + public static readonly RULE_orderByCaluse = 123; + public static readonly RULE_orderItemDefition = 124; + public static readonly RULE_limitClause = 125; + public static readonly RULE_partitionByClause = 126; + public static readonly RULE_quantifiers = 127; + public static readonly RULE_measuresClause = 128; + public static readonly RULE_patternDefination = 129; + public static readonly RULE_patternVariable = 130; + public static readonly RULE_outputMode = 131; + public static readonly RULE_afterMatchStrategy = 132; + public static readonly RULE_patternVariablesDefination = 133; + public static readonly RULE_windowFrame = 134; + public static readonly RULE_frameBound = 135; + public static readonly RULE_withinClause = 136; + public static readonly RULE_expression = 137; + public static readonly RULE_booleanExpression = 138; + public static readonly RULE_predicate = 139; + public static readonly RULE_likePredicate = 140; + public static readonly RULE_valueExpression = 141; + public static readonly RULE_primaryExpression = 142; + public static readonly RULE_functionNameCreate = 143; + public static readonly RULE_functionName = 144; + public static readonly RULE_functionParam = 145; + public static readonly RULE_dereferenceDefinition = 146; + public static readonly RULE_correlationName = 147; + public static readonly RULE_qualifiedName = 148; + public static readonly RULE_timeIntervalExpression = 149; + public static readonly RULE_errorCapturingMultiUnitsInterval = 150; + public static readonly RULE_multiUnitsInterval = 151; + public static readonly RULE_errorCapturingUnitToUnitInterval = 152; + public static readonly RULE_unitToUnitInterval = 153; + public static readonly RULE_intervalValue = 154; + public static readonly RULE_tableAlias = 155; + public static readonly RULE_errorCapturingIdentifier = 156; + public static readonly RULE_errorCapturingIdentifierExtra = 157; + public static readonly RULE_identifierList = 158; + public static readonly RULE_identifierSeq = 159; + public static readonly RULE_identifier = 160; + public static readonly RULE_unquotedIdentifier = 161; + public static readonly RULE_quotedIdentifier = 162; + public static readonly RULE_whenClause = 163; + public static readonly RULE_catalogPath = 164; + public static readonly RULE_catalogPathCreate = 165; + public static readonly RULE_databasePath = 166; + public static readonly RULE_databasePathCreate = 167; + public static readonly RULE_tablePathCreate = 168; + public static readonly RULE_tablePath = 169; + public static readonly RULE_viewPath = 170; + public static readonly RULE_viewPathCreate = 171; + public static readonly RULE_uid = 172; + public static readonly RULE_withOption = 173; + public static readonly RULE_ifNotExists = 174; + public static readonly RULE_ifExists = 175; + public static readonly RULE_tablePropertyList = 176; + public static readonly RULE_tableProperty = 177; + public static readonly RULE_tablePropertyKey = 178; + public static readonly RULE_tablePropertyValue = 179; + public static readonly RULE_logicalOperator = 180; + public static readonly RULE_comparisonOperator = 181; + public static readonly RULE_bitOperator = 182; + public static readonly RULE_mathOperator = 183; + public static readonly RULE_unaryOperator = 184; + public static readonly RULE_constant = 185; + public static readonly RULE_timePointLiteral = 186; + public static readonly RULE_stringLiteral = 187; + public static readonly RULE_decimalLiteral = 188; + public static readonly RULE_booleanLiteral = 189; + public static readonly RULE_setQuantifier = 190; + public static readonly RULE_timePointUnit = 191; + public static readonly RULE_timeIntervalUnit = 192; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 193; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 194; + public static readonly RULE_nonReservedKeywords = 195; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -979,9 +988,12 @@ export class FlinkSqlParser extends SQLParserBase { "insertStatement", "insertSimpleStatement", "insertPartitionDefinition", "valuesDefinition", "valuesRowDefinition", "insertMulStatementCompatibility", "insertMulStatement", "queryStatement", "valuesCaluse", "withClause", - "withItem", "withItemName", "selectStatement", "selectClause", "projectItemDefinition", - "overWindowItem", "fromClause", "tableExpression", "tableReference", - "tablePrimary", "systemTimePeriod", "dateTimeExpression", "inlineDataValueClause", + "withItem", "withItemName", "selectStatement", "selectClause", "selectList", + "columnProjectItem", "selectWindowItemColumnName", "selectExpressionColumnName", + "selectLiteralColumnName", "columnAlias", "projectItemDefinition", + "tableAllColumns", "overWindowItem", "fromClause", "tableExpression", + "tableReference", "tablePrimary", "atomFunctionTable", "atomExpressionTable", + "systemTimePeriod", "dateTimeExpression", "inlineDataValueClause", "windoTVFClause", "windowTVFExression", "windoTVFName", "windowTVFParam", "timeIntervalParamName", "columnDescriptor", "joinCondition", "whereClause", "groupByClause", "groupItemDefinition", "groupingSets", "groupingSetsNotaionName", @@ -1029,21 +1041,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 377; + this.state = 395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 177 || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 822083585) !== 0) || ((((_la - 410)) & ~0x1F) === 0 && ((1 << (_la - 410)) & 142606353) !== 0) || _la === 450 || _la === 468 || ((((_la - 489)) & ~0x1F) === 0 && ((1 << (_la - 489)) & 134219777) !== 0) || _la === 521) { { { - this.state = 374; + this.state = 392; this.singleStatement(); } } - this.state = 379; + this.state = 397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 380; + this.state = 398; this.match(FlinkSqlParser.EOF); } } @@ -1065,7 +1077,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 387; + this.state = 405; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1091,14 +1103,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 382; + this.state = 400; this.sqlStatement(); - this.state = 384; + this.state = 402; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 383; + this.state = 401; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1108,7 +1120,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 386; + this.state = 404; this.emptyStatement(); } break; @@ -1134,90 +1146,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 401; + this.state = 419; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 389; + this.state = 407; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 390; + this.state = 408; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 391; + this.state = 409; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 392; + this.state = 410; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 393; + this.state = 411; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 394; + this.state = 412; this.showStatememt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 395; + this.state = 413; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 396; + this.state = 414; this.unloadStatememt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 397; + this.state = 415; this.setStatememt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 398; + this.state = 416; this.resetStatememt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 399; + this.state = 417; this.jarStatememt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 400; + this.state = 418; this.dtAddStatement(); } break; @@ -1243,7 +1255,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 421; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1265,104 +1277,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 419; + this.state = 437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 405; + this.state = 423; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 406; + this.state = 424; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 407; + this.state = 425; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 408; + this.state = 426; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 409; + this.state = 427; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 410; + this.state = 428; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 411; + this.state = 429; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 412; + this.state = 430; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 413; + this.state = 431; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 414; + this.state = 432; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 415; + this.state = 433; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 416; + this.state = 434; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 417; + this.state = 435; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 418; + this.state = 436; this.dropFunction(); } break; @@ -1386,7 +1398,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 423; + this.state = 441; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1395,7 +1407,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 421; + this.state = 439; this.queryStatement(0); } break; @@ -1404,7 +1416,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 422; + this.state = 440; this.insertStatement(); } break; @@ -1433,7 +1445,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 425; + this.state = 443; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -1442,7 +1454,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 426; + this.state = 444; this.tablePath(); } } @@ -1466,24 +1478,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 428; + this.state = 446; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 432; + this.state = 450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CHANGELOG_MODE: case FlinkSqlParser.KW_ESTIMATED_COST: case FlinkSqlParser.KW_JSON_EXECUTION_PLAN: { - this.state = 429; + this.state = 447; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 430; + this.state = 448; this.match(FlinkSqlParser.KW_PLAN); - this.state = 431; + this.state = 449; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1499,24 +1511,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 437; + this.state = 455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 434; + this.state = 452; this.dmlStatement(); } break; case 2: { - this.state = 435; + this.state = 453; this.insertSimpleStatement(); } break; case 3: { - this.state = 436; + this.state = 454; this.insertMulStatement(); } break; @@ -1544,21 +1556,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 439; + this.state = 457; this.explainDetail(); - this.state = 444; + this.state = 462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 440; + this.state = 458; this.match(FlinkSqlParser.COMMA); - this.state = 441; + this.state = 459; this.explainDetail(); } } - this.state = 446; + this.state = 464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1585,7 +1597,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 447; + this.state = 465; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -1614,33 +1626,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 455; + this.state = 473; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 449; + this.state = 467; this.match(FlinkSqlParser.KW_USE); - this.state = 450; + this.state = 468; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 451; + this.state = 469; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 452; + this.state = 470; this.match(FlinkSqlParser.KW_USE); - this.state = 453; + this.state = 471; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 454; + this.state = 472; this.useModuleStatement(); } break; @@ -1667,25 +1679,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 457; + this.state = 475; this.match(FlinkSqlParser.KW_USE); - this.state = 458; + this.state = 476; this.match(FlinkSqlParser.KW_MODULES); - this.state = 459; + this.state = 477; this.uid(); - this.state = 464; + this.state = 482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 460; + this.state = 478; this.match(FlinkSqlParser.COMMA); - this.state = 461; + this.state = 479; this.uid(); } } - this.state = 466; + this.state = 484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1710,15 +1722,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatememt); let _la: number; try { - this.state = 509; + this.state = 527; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 467; + this.state = 485; this.match(FlinkSqlParser.KW_SHOW); - this.state = 468; + this.state = 486; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 422 || _la === 464)) { this.errorHandler.recoverInline(this); @@ -1732,11 +1744,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 469; + this.state = 487; this.match(FlinkSqlParser.KW_SHOW); - this.state = 470; + this.state = 488; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 471; + this.state = 489; _la = this.tokenStream.LA(1); if(!(_la === 441 || _la === 447)) { this.errorHandler.recoverInline(this); @@ -1750,16 +1762,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 472; + this.state = 490; this.match(FlinkSqlParser.KW_SHOW); - this.state = 473; + this.state = 491; this.match(FlinkSqlParser.KW_TABLES); - this.state = 476; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 170) { { - this.state = 474; + this.state = 492; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1768,17 +1780,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 475; + this.state = 493; this.databasePath(); } } - this.state = 479; + this.state = 497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 241) { { - this.state = 478; + this.state = 496; this.likePredicate(); } } @@ -1788,11 +1800,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 481; + this.state = 499; this.match(FlinkSqlParser.KW_SHOW); - this.state = 482; + this.state = 500; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 483; + this.state = 501; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1801,28 +1813,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 486; + this.state = 504; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 484; + this.state = 502; this.viewPath(); } break; case 2: { - this.state = 485; + this.state = 503; this.tablePath(); } break; } - this.state = 489; + this.state = 507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 241) { { - this.state = 488; + this.state = 506; this.likePredicate(); } } @@ -1832,26 +1844,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 491; + this.state = 509; this.match(FlinkSqlParser.KW_SHOW); - this.state = 492; + this.state = 510; this.match(FlinkSqlParser.KW_CREATE); - this.state = 497; + this.state = 515; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 493; + this.state = 511; this.match(FlinkSqlParser.KW_TABLE); - this.state = 494; + this.state = 512; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 495; + this.state = 513; this.match(FlinkSqlParser.KW_VIEW); - this.state = 496; + this.state = 514; this.viewPath(); } break; @@ -1863,38 +1875,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 499; + this.state = 517; this.match(FlinkSqlParser.KW_SHOW); - this.state = 501; + this.state = 519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 411) { { - this.state = 500; + this.state = 518; this.match(FlinkSqlParser.KW_USER); } } - this.state = 503; + this.state = 521; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 504; + this.state = 522; this.match(FlinkSqlParser.KW_SHOW); - this.state = 506; + this.state = 524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 505; + this.state = 523; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 508; + this.state = 526; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1920,20 +1932,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 511; + this.state = 529; this.match(FlinkSqlParser.KW_LOAD); - this.state = 512; + this.state = 530; this.match(FlinkSqlParser.KW_MODULE); - this.state = 513; + this.state = 531; this.uid(); - this.state = 516; + this.state = 534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 514; + this.state = 532; this.match(FlinkSqlParser.KW_WITH); - this.state = 515; + this.state = 533; this.tablePropertyList(); } break; @@ -1960,11 +1972,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 518; + this.state = 536; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 519; + this.state = 537; this.match(FlinkSqlParser.KW_MODULE); - this.state = 520; + this.state = 538; this.uid(); } } @@ -1988,14 +2000,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 522; + this.state = 540; this.match(FlinkSqlParser.KW_SET); - this.state = 524; + this.state = 542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 523; + this.state = 541; this.tableProperty(); } break; @@ -2022,14 +2034,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 526; + this.state = 544; this.match(FlinkSqlParser.KW_RESET); - this.state = 528; + this.state = 546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 527; + this.state = 545; this.tablePropertyKey(); } break; @@ -2057,7 +2069,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 530; + this.state = 548; _la = this.tokenStream.LA(1); if(!(_la === 437 || _la === 489)) { this.errorHandler.recoverInline(this); @@ -2066,9 +2078,9 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 531; + this.state = 549; this.match(FlinkSqlParser.KW_JAR); - this.state = 532; + this.state = 550; this.jarFileName(); } } @@ -2091,28 +2103,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 584; + this.state = 602; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 534; + this.state = 552; this.match(FlinkSqlParser.KW_ADD); - this.state = 535; + this.state = 553; this.match(FlinkSqlParser.KW_JAR); - this.state = 536; + this.state = 554; this.match(FlinkSqlParser.KW_WITH); - this.state = 537; + this.state = 555; this.dtFilePath(); - this.state = 540; + this.state = 558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 538; + this.state = 556; this.match(FlinkSqlParser.KW_AS); - this.state = 539; + this.state = 557; this.uid(); } } @@ -2122,34 +2134,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 542; + this.state = 560; this.match(FlinkSqlParser.KW_ADD); - this.state = 543; + this.state = 561; this.match(FlinkSqlParser.KW_FILE); - this.state = 544; + this.state = 562; this.match(FlinkSqlParser.KW_WITH); - this.state = 545; + this.state = 563; this.dtFilePath(); - this.state = 548; + this.state = 566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 546; + this.state = 564; this.match(FlinkSqlParser.KW_AS); - this.state = 547; + this.state = 565; this.uid(); } } - this.state = 552; + this.state = 570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 311) { { - this.state = 550; + this.state = 568; this.match(FlinkSqlParser.KW_RENAME); - this.state = 551; + this.state = 569; this.uid(); } } @@ -2159,9 +2171,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 554; + this.state = 572; this.match(FlinkSqlParser.KW_ADD); - this.state = 555; + this.state = 573; _la = this.tokenStream.LA(1); if(!(((((_la - 482)) & ~0x1F) === 0 && ((1 << (_la - 482)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2170,70 +2182,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 556; + this.state = 574; this.match(FlinkSqlParser.KW_WITH); - this.state = 557; + this.state = 575; this.dtFilePath(); - this.state = 558; + this.state = 576; this.match(FlinkSqlParser.KW_RENAME); - this.state = 559; + this.state = 577; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 561; + this.state = 579; this.match(FlinkSqlParser.KW_ADD); - this.state = 562; + this.state = 580; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 563; + this.state = 581; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 564; + this.state = 582; this.match(FlinkSqlParser.KW_ADD); - this.state = 565; + this.state = 583; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 566; + this.state = 584; this.match(FlinkSqlParser.KW_FILE); - this.state = 567; + this.state = 585; this.match(FlinkSqlParser.KW_WITH); - this.state = 568; + this.state = 586; this.dtFilePath(); - this.state = 569; + this.state = 587; this.match(FlinkSqlParser.KW_RENAME); - this.state = 570; + this.state = 588; this.uid(); - this.state = 571; + this.state = 589; this.match(FlinkSqlParser.KW_KEY); - this.state = 572; + this.state = 590; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 574; + this.state = 592; this.match(FlinkSqlParser.KW_ADD); - this.state = 575; + this.state = 593; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 576; + this.state = 594; this.match(FlinkSqlParser.KW_FILE); - this.state = 577; + this.state = 595; this.match(FlinkSqlParser.KW_WITH); - this.state = 578; + this.state = 596; this.dtFilePath(); - this.state = 579; + this.state = 597; this.match(FlinkSqlParser.KW_FOR); - this.state = 580; + this.state = 598; this.uid(); - this.state = 581; + this.state = 599; this.match(FlinkSqlParser.KW_AS); - this.state = 582; + this.state = 600; this.uid(); } break; @@ -2261,7 +2273,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 590; + this.state = 608; this.errorHandler.sync(this); alternative = 1; do { @@ -2269,17 +2281,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 587; + this.state = 605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 534) { { - this.state = 586; + this.state = 604; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 589; + this.state = 607; this.uid(); } } @@ -2287,7 +2299,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 592; + this.state = 610; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2313,18 +2325,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 596; + this.state = 614; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 594; + this.state = 612; this.simpleCreateTable(); } break; case 2: { - this.state = 595; + this.state = 613; this.createTableAsSelect(); } break; @@ -2353,122 +2365,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 598; + this.state = 616; this.match(FlinkSqlParser.KW_CREATE); - this.state = 600; + this.state = 618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 599; + this.state = 617; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 602; + this.state = 620; this.match(FlinkSqlParser.KW_TABLE); - this.state = 604; + this.state = 622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 603; + this.state = 621; this.ifNotExists(); } } - this.state = 606; + this.state = 624; this.tablePathCreate(); - this.state = 607; + this.state = 625; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 608; + this.state = 626; this.columnOptionDefinition(); - this.state = 613; + this.state = 631; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 609; + this.state = 627; this.match(FlinkSqlParser.COMMA); - this.state = 610; + this.state = 628; this.columnOptionDefinition(); } } } - this.state = 615; + this.state = 633; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 618; + this.state = 636; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 616; + this.state = 634; this.match(FlinkSqlParser.COMMA); - this.state = 617; + this.state = 635; this.watermarkDefinition(); } break; } - this.state = 622; + this.state = 640; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 620; + this.state = 638; this.match(FlinkSqlParser.COMMA); - this.state = 621; + this.state = 639; this.tableConstraint(); } break; } - this.state = 626; + this.state = 644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 520) { { - this.state = 624; + this.state = 642; this.match(FlinkSqlParser.COMMA); - this.state = 625; + this.state = 643; this.selfDefinitionClause(); } } - this.state = 628; + this.state = 646; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 631; + this.state = 649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 629; + this.state = 647; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 630; + this.state = 648; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 634; + this.state = 652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 633; + this.state = 651; this.partitionDefinition(); } } - this.state = 636; + this.state = 654; this.withOption(); - this.state = 638; + this.state = 656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202) { { - this.state = 637; + this.state = 655; this.likeDefinition(); } } @@ -2496,32 +2508,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 640; + this.state = 658; this.match(FlinkSqlParser.KW_CREATE); - this.state = 641; + this.state = 659; this.match(FlinkSqlParser.KW_TABLE); - this.state = 643; + this.state = 661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 642; + this.state = 660; this.ifNotExists(); } } - this.state = 645; + this.state = 663; this.tablePathCreate(); - this.state = 646; + this.state = 664; this.withOption(); - this.state = 649; + this.state = 667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 647; + this.state = 665; this.match(FlinkSqlParser.KW_AS); - this.state = 648; + this.state = 666; this.queryStatement(0); } } @@ -2546,27 +2558,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 654; + this.state = 672; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 651; + this.state = 669; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 652; + this.state = 670; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 653; + this.state = 671; this.computedColumnDefinition(); } break; @@ -2593,28 +2605,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 656; + this.state = 674; this.columnNameCreate(); - this.state = 657; + this.state = 675; this.columnType(); - this.state = 659; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 241 || _la === 244 || _la === 288) { { - this.state = 658; + this.state = 676; this.columnConstraint(); } } - this.state = 663; + this.state = 681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 661; + this.state = 679; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 662; + this.state = 680; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2639,20 +2651,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 667; + this.state = 685; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 665; + this.state = 683; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 666; + this.state = 684; this.expression(); } break; @@ -2676,20 +2688,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 671; + this.state = 689; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 669; + this.state = 687; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 670; + this.state = 688; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -2718,27 +2730,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 673; + this.state = 691; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 674; + this.state = 692; this.columnName(); - this.state = 679; + this.state = 697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 675; + this.state = 693; this.match(FlinkSqlParser.COMMA); - this.state = 676; + this.state = 694; this.columnName(); } } - this.state = 681; + this.state = 699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 682; + this.state = 700; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2761,7 +2773,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 56, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 721; + this.state = 739; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2769,7 +2781,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 684; + this.state = 702; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 244)) { @@ -2797,7 +2809,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 685; + this.state = 703; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 178 || _la === 179 || _la === 344 || _la === 360 || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 521) !== 0) || _la === 416 || _la === 417)) { @@ -2807,12 +2819,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 687; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 686; + this.state = 704; this.lengthOneDimension(); } } @@ -2822,24 +2834,24 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 689; + this.state = 707; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 691; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 690; + this.state = 708; this.lengthOneDimension(); } } - this.state = 699; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 433 || _la === 435) { { - this.state = 693; + this.state = 711; _la = this.tokenStream.LA(1); if(!(_la === 433 || _la === 435)) { this.errorHandler.recoverInline(this); @@ -2848,19 +2860,19 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 695; + this.state = 713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 694; + this.state = 712; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 697; + this.state = 715; this.match(FlinkSqlParser.KW_TIME); - this.state = 698; + this.state = 716; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2874,7 +2886,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 701; + this.state = 719; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 246)) { @@ -2884,12 +2896,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 703; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 702; + this.state = 720; this.lengthTwoOptionalDimension(); } } @@ -2900,7 +2912,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 705; + this.state = 723; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 231)) { @@ -2910,12 +2922,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 707; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 507) { { - this.state = 706; + this.state = 724; this.lengthOneTypeDimension(); } } @@ -2925,14 +2937,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 709; + this.state = 727; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 711; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 507) { { - this.state = 710; + this.state = 728; this.mapTypeDimension(); } } @@ -2942,14 +2954,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 713; + this.state = 731; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 715; + this.state = 733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 507 || _la === 516) { { - this.state = 714; + this.state = 732; this.rowTypeDimension(); } } @@ -2959,14 +2971,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 717; + this.state = 735; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 719; + this.state = 737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 718; + this.state = 736; this.lengthTwoStringDimension(); } } @@ -2997,11 +3009,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 723; + this.state = 741; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 724; + this.state = 742; this.decimalLiteral(); - this.state = 725; + this.state = 743; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3026,23 +3038,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 727; + this.state = 745; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 728; + this.state = 746; this.decimalLiteral(); - this.state = 731; + this.state = 749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 520) { { - this.state = 729; + this.state = 747; this.match(FlinkSqlParser.COMMA); - this.state = 730; + this.state = 748; this.decimalLiteral(); } } - this.state = 733; + this.state = 751; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3067,23 +3079,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 735; + this.state = 753; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 736; + this.state = 754; this.stringLiteral(); - this.state = 739; + this.state = 757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 520) { { - this.state = 737; + this.state = 755; this.match(FlinkSqlParser.COMMA); - this.state = 738; + this.state = 756; this.stringLiteral(); } } - this.state = 741; + this.state = 759; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3107,11 +3119,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 743; + this.state = 761; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 744; + this.state = 762; this.columnType(); - this.state = 745; + this.state = 763; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3135,17 +3147,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 747; + this.state = 765; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 748; + this.state = 766; this.columnType(); { - this.state = 749; + this.state = 767; this.match(FlinkSqlParser.COMMA); - this.state = 750; + this.state = 768; this.columnType(); } - this.state = 752; + this.state = 770; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3168,68 +3180,68 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 68, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 782; + this.state = 800; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 754; + this.state = 772; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 755; + this.state = 773; this.columnName(); - this.state = 756; + this.state = 774; this.columnType(); - this.state = 763; + this.state = 781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 757; + this.state = 775; this.match(FlinkSqlParser.COMMA); - this.state = 758; + this.state = 776; this.columnName(); - this.state = 759; + this.state = 777; this.columnType(); } } - this.state = 765; + this.state = 783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 766; + this.state = 784; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 768; + this.state = 786; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 769; + this.state = 787; this.columnName(); - this.state = 770; + this.state = 788; this.columnType(); - this.state = 777; + this.state = 795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 771; + this.state = 789; this.match(FlinkSqlParser.COMMA); - this.state = 772; + this.state = 790; this.columnName(); - this.state = 773; + this.state = 791; this.columnType(); } } - this.state = 779; + this.state = 797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 780; + this.state = 798; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3256,37 +3268,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 70, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 798; + this.state = 816; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 786; + this.state = 804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 784; + this.state = 802; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 785; + this.state = 803; this.constraintName(); } } - this.state = 788; + this.state = 806; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 789; + this.state = 807; this.match(FlinkSqlParser.KW_KEY); - this.state = 792; + this.state = 810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 790; + this.state = 808; this.match(FlinkSqlParser.KW_NOT); - this.state = 791; + this.state = 809; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3297,17 +3309,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 795; + this.state = 813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 794; + this.state = 812; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 797; + this.state = 815; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3336,30 +3348,30 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 800; + this.state = 818; this.columnNameCreate(); - this.state = 801; + this.state = 819; this.columnType(); - this.state = 802; + this.state = 820; this.match(FlinkSqlParser.KW_METADATA); - this.state = 805; + this.state = 823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 803; + this.state = 821; this.match(FlinkSqlParser.KW_FROM); - this.state = 804; + this.state = 822; this.metadataKey(); } } - this.state = 808; + this.state = 826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 807; + this.state = 825; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3386,7 +3398,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 810; + this.state = 828; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3411,20 +3423,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 812; + this.state = 830; this.columnNameCreate(); - this.state = 813; + this.state = 831; this.match(FlinkSqlParser.KW_AS); - this.state = 814; + this.state = 832; this.computedColumnExpression(); - this.state = 817; + this.state = 835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 815; + this.state = 833; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 816; + this.state = 834; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3451,7 +3463,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 819; + this.state = 837; this.expression(); } } @@ -3475,15 +3487,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 821; + this.state = 839; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 822; + this.state = 840; this.match(FlinkSqlParser.KW_FOR); - this.state = 823; + this.state = 841; this.columnName(); - this.state = 824; + this.state = 842; this.match(FlinkSqlParser.KW_AS); - this.state = 825; + this.state = 843; this.expression(); } } @@ -3508,27 +3520,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 829; + this.state = 847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 827; + this.state = 845; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 828; + this.state = 846; this.constraintName(); } } - this.state = 831; + this.state = 849; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 832; + this.state = 850; this.match(FlinkSqlParser.KW_KEY); - this.state = 833; + this.state = 851; this.columnNameList(); - this.state = 834; + this.state = 852; this.match(FlinkSqlParser.KW_NOT); - this.state = 835; + this.state = 853; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3552,7 +3564,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 837; + this.state = 855; this.identifier(); } } @@ -3576,11 +3588,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 839; + this.state = 857; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 840; + this.state = 858; this.match(FlinkSqlParser.KW_FOR); - this.state = 841; + this.state = 859; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3604,11 +3616,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 843; + this.state = 861; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 844; + this.state = 862; this.match(FlinkSqlParser.KW_BY); - this.state = 845; + this.state = 863; this.transformList(); } } @@ -3633,27 +3645,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 847; + this.state = 865; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 848; + this.state = 866; this.transform(); - this.state = 853; + this.state = 871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 849; + this.state = 867; this.match(FlinkSqlParser.COMMA); - this.state = 850; + this.state = 868; this.transform(); } } - this.state = 855; + this.state = 873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 856; + this.state = 874; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3676,14 +3688,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 92, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 870; + this.state = 888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 858; + this.state = 876; this.columnName(); } break; @@ -3691,27 +3703,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 859; + this.state = 877; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 860; + this.state = 878; this.transformArgument(); - this.state = 865; + this.state = 883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 861; + this.state = 879; this.match(FlinkSqlParser.COMMA); - this.state = 862; + this.state = 880; this.transformArgument(); } } - this.state = 867; + this.state = 885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 868; + this.state = 886; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3735,20 +3747,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 94, FlinkSqlParser.RULE_transformArgument); try { - this.state = 874; + this.state = 892; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 872; + this.state = 890; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 873; + this.state = 891; this.constant(); } break; @@ -3775,32 +3787,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 876; + this.state = 894; this.match(FlinkSqlParser.KW_LIKE); - this.state = 877; + this.state = 895; this.tablePath(); - this.state = 886; + this.state = 904; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 878; + this.state = 896; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 882; + this.state = 900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 266 || _la === 455 || _la === 462) { { { - this.state = 879; + this.state = 897; this.likeOption(); } } - this.state = 884; + this.state = 902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 885; + this.state = 903; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3826,14 +3838,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 98, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 892; + this.state = 910; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 888; + this.state = 906; _la = this.tokenStream.LA(1); if(!(_la === 455 || _la === 462)) { this.errorHandler.recoverInline(this); @@ -3842,7 +3854,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 889; + this.state = 907; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 270 || _la === 444)) { this.errorHandler.recoverInline(this); @@ -3858,7 +3870,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 890; + this.state = 908; _la = this.tokenStream.LA(1); if(!(_la === 266 || _la === 455 || _la === 462)) { this.errorHandler.recoverInline(this); @@ -3867,7 +3879,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 891; + this.state = 909; _la = this.tokenStream.LA(1); if(!(_la === 425 || _la === 458 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -3901,13 +3913,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 894; + this.state = 912; this.match(FlinkSqlParser.KW_CREATE); - this.state = 895; + this.state = 913; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 896; + this.state = 914; this.catalogPathCreate(); - this.state = 897; + this.state = 915; this.withOption(); } } @@ -3932,35 +3944,35 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 899; + this.state = 917; this.match(FlinkSqlParser.KW_CREATE); - this.state = 900; + this.state = 918; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 902; + this.state = 920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 901; + this.state = 919; this.ifNotExists(); } } - this.state = 904; + this.state = 922; this.databasePathCreate(); - this.state = 907; + this.state = 925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 905; + this.state = 923; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 906; + this.state = 924; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 909; + this.state = 927; this.withOption(); } } @@ -3985,57 +3997,57 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 911; + this.state = 929; this.match(FlinkSqlParser.KW_CREATE); - this.state = 913; + this.state = 931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 912; + this.state = 930; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 915; + this.state = 933; this.match(FlinkSqlParser.KW_VIEW); - this.state = 917; + this.state = 935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 916; + this.state = 934; this.ifNotExists(); } } - this.state = 919; + this.state = 937; this.viewPathCreate(); - this.state = 921; + this.state = 939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 920; + this.state = 938; this.columnNameList(); } } - this.state = 925; + this.state = 943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 923; + this.state = 941; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 924; + this.state = 942; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 927; + this.state = 945; this.match(FlinkSqlParser.KW_AS); - this.state = 928; + this.state = 946; this.queryStatement(0); } } @@ -4060,52 +4072,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 930; + this.state = 948; this.match(FlinkSqlParser.KW_CREATE); - this.state = 934; + this.state = 952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 931; + this.state = 949; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 932; + this.state = 950; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 933; + this.state = 951; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 936; + this.state = 954; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 938; + this.state = 956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 937; + this.state = 955; this.ifNotExists(); } } - this.state = 940; + this.state = 958; this.functionNameCreate(); - this.state = 941; + this.state = 959; this.match(FlinkSqlParser.KW_AS); - this.state = 942; + this.state = 960; this.identifier(); - this.state = 945; + this.state = 963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 943; + this.state = 961; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 944; + this.state = 962; _la = this.tokenStream.LA(1); if(!(_la === 330 || _la === 465 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -4117,12 +4129,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 948; + this.state = 966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 412) { { - this.state = 947; + this.state = 965; this.usingClause(); } } @@ -4150,27 +4162,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 950; + this.state = 968; this.match(FlinkSqlParser.KW_USING); - this.state = 951; + this.state = 969; this.match(FlinkSqlParser.KW_JAR); - this.state = 952; + this.state = 970; this.jarFileName(); - this.state = 958; + this.state = 976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 953; + this.state = 971; this.match(FlinkSqlParser.COMMA); - this.state = 954; + this.state = 972; this.match(FlinkSqlParser.KW_JAR); - this.state = 955; + this.state = 973; this.jarFileName(); } } - this.state = 960; + this.state = 978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4196,7 +4208,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 961; + this.state = 979; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4221,52 +4233,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 963; + this.state = 981; this.match(FlinkSqlParser.KW_ALTER); - this.state = 964; + this.state = 982; this.match(FlinkSqlParser.KW_TABLE); - this.state = 966; + this.state = 984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 965; + this.state = 983; this.ifExists(); } } - this.state = 968; + this.state = 986; this.tablePath(); - this.state = 974; + this.state = 992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 969; + this.state = 987; this.renameDefinition(); } break; case 2: { - this.state = 970; + this.state = 988; this.setKeyValueDefinition(); } break; case 3: { - this.state = 971; + this.state = 989; this.addConstraint(); } break; case 4: { - this.state = 972; + this.state = 990; this.dropConstraint(); } break; case 5: { - this.state = 973; + this.state = 991; this.addUnique(); } break; @@ -4294,21 +4306,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; + this.state = 994; this.match(FlinkSqlParser.KW_RENAME); - this.state = 978; + this.state = 996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0) || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 19) !== 0)) { { - this.state = 977; + this.state = 995; this.uid(); } } - this.state = 980; + this.state = 998; this.match(FlinkSqlParser.KW_TO); - this.state = 981; + this.state = 999; this.uid(); } } @@ -4332,9 +4344,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 983; + this.state = 1001; this.match(FlinkSqlParser.KW_SET); - this.state = 984; + this.state = 1002; this.tablePropertyList(); } } @@ -4359,24 +4371,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 986; + this.state = 1004; this.match(FlinkSqlParser.KW_ADD); - this.state = 987; + this.state = 1005; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 988; + this.state = 1006; this.constraintName(); - this.state = 989; + this.state = 1007; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 990; + this.state = 1008; this.match(FlinkSqlParser.KW_KEY); - this.state = 991; + this.state = 1009; this.columnNameList(); - this.state = 993; + this.state = 1011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 992; + this.state = 1010; this.notForced(); } } @@ -4403,11 +4415,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 995; + this.state = 1013; this.match(FlinkSqlParser.KW_DROP); - this.state = 996; + this.state = 1014; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 997; + this.state = 1015; this.constraintName(); } } @@ -4431,11 +4443,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 999; + this.state = 1017; this.match(FlinkSqlParser.KW_ADD); - this.state = 1000; + this.state = 1018; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1001; + this.state = 1019; this.columnNameList(); } } @@ -4459,9 +4471,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1003; + this.state = 1021; this.match(FlinkSqlParser.KW_NOT); - this.state = 1004; + this.state = 1022; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4485,26 +4497,26 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1006; + this.state = 1024; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1007; + this.state = 1025; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1008; + this.state = 1026; this.viewPath(); - this.state = 1012; + this.state = 1030; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1009; + this.state = 1027; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1010; + this.state = 1028; this.match(FlinkSqlParser.KW_AS); - this.state = 1011; + this.state = 1029; this.queryStatement(0); } break; @@ -4533,13 +4545,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1014; + this.state = 1032; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1015; + this.state = 1033; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1016; + this.state = 1034; this.databasePath(); - this.state = 1017; + this.state = 1035; this.setKeyValueDefinition(); } } @@ -4564,52 +4576,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1019; + this.state = 1037; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1023; + this.state = 1041; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1020; + this.state = 1038; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1021; + this.state = 1039; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1022; + this.state = 1040; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1025; + this.state = 1043; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1027; + this.state = 1045; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1026; + this.state = 1044; this.ifExists(); } break; } - this.state = 1029; + this.state = 1047; this.functionName(); - this.state = 1030; + this.state = 1048; this.match(FlinkSqlParser.KW_AS); - this.state = 1031; + this.state = 1049; this.identifier(); - this.state = 1034; + this.state = 1052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1032; + this.state = 1050; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1033; + this.state = 1051; _la = this.tokenStream.LA(1); if(!(_la === 330 || _la === 465 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -4644,21 +4656,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1036; + this.state = 1054; this.match(FlinkSqlParser.KW_DROP); - this.state = 1037; + this.state = 1055; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1039; + this.state = 1057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1038; + this.state = 1056; this.ifExists(); } } - this.state = 1041; + this.state = 1059; this.catalogPath(); } } @@ -4683,31 +4695,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1043; + this.state = 1061; this.match(FlinkSqlParser.KW_DROP); - this.state = 1045; + this.state = 1063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 1044; + this.state = 1062; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1047; + this.state = 1065; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1049; + this.state = 1067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1048; + this.state = 1066; this.ifExists(); } } - this.state = 1051; + this.state = 1069; this.tablePath(); } } @@ -4732,28 +4744,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1053; + this.state = 1071; this.match(FlinkSqlParser.KW_DROP); - this.state = 1054; + this.state = 1072; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1056; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1055; + this.state = 1073; this.ifExists(); } } - this.state = 1058; + this.state = 1076; this.databasePath(); - this.state = 1060; + this.state = 1078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 440 || _la === 490) { { - this.state = 1059; + this.state = 1077; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 490)) { @@ -4789,31 +4801,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1062; + this.state = 1080; this.match(FlinkSqlParser.KW_DROP); - this.state = 1064; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 1063; + this.state = 1081; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1066; + this.state = 1084; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1068; + this.state = 1086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1067; + this.state = 1085; this.ifExists(); } } - this.state = 1070; + this.state = 1088; this.viewPath(); } } @@ -4837,39 +4849,39 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1072; + this.state = 1090; this.match(FlinkSqlParser.KW_DROP); - this.state = 1076; + this.state = 1094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1073; + this.state = 1091; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1074; + this.state = 1092; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1075; + this.state = 1093; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1078; + this.state = 1096; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1080; + this.state = 1098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1079; + this.state = 1097; this.ifExists(); } break; } - this.state = 1082; + this.state = 1100; this.functionName(); } } @@ -4892,24 +4904,24 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 142, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1091; + this.state = 1109; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1085; + this.state = 1103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1084; + this.state = 1102; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1087; + this.state = 1105; this.insertSimpleStatement(); } } @@ -4917,7 +4929,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1088; + this.state = 1106; this.insertMulStatementCompatibility(); } break; @@ -4925,9 +4937,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1089; + this.state = 1107; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1090; + this.state = 1108; this.insertMulStatement(); } } @@ -4955,9 +4967,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1093; + this.state = 1111; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1094; + this.state = 1112; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 265)) { this.errorHandler.recoverInline(this); @@ -4966,40 +4978,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1095; + this.state = 1113; this.tablePath(); - this.state = 1104; + this.state = 1122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1097; + this.state = 1115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1096; + this.state = 1114; this.insertPartitionDefinition(); } } - this.state = 1100; + this.state = 1118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1099; + this.state = 1117; this.columnNameList(); } break; } - this.state = 1102; + this.state = 1120; this.queryStatement(0); } break; case 2: { - this.state = 1103; + this.state = 1121; this.valuesDefinition(); } break; @@ -5026,9 +5038,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1106; + this.state = 1124; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1107; + this.state = 1125; this.tablePropertyList(); } } @@ -5053,23 +5065,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1109; + this.state = 1127; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1110; + this.state = 1128; this.valuesRowDefinition(); - this.state = 1115; + this.state = 1133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1111; + this.state = 1129; this.match(FlinkSqlParser.COMMA); - this.state = 1112; + this.state = 1130; this.valuesRowDefinition(); } } - this.state = 1117; + this.state = 1135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5096,27 +5108,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1118; + this.state = 1136; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1119; + this.state = 1137; this.constant(); - this.state = 1124; + this.state = 1142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1120; + this.state = 1138; this.match(FlinkSqlParser.COMMA); - this.state = 1121; + this.state = 1139; this.constant(); } } - this.state = 1126; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1127; + this.state = 1145; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5141,31 +5153,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1129; + this.state = 1147; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1130; + this.state = 1148; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1131; + this.state = 1149; this.match(FlinkSqlParser.KW_SET); - this.state = 1132; + this.state = 1150; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1136; + this.state = 1154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1133; + this.state = 1151; this.insertSimpleStatement(); - this.state = 1134; + this.state = 1152; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1138; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1140; + this.state = 1158; this.match(FlinkSqlParser.KW_END); } } @@ -5190,29 +5202,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1142; + this.state = 1160; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1143; + this.state = 1161; this.match(FlinkSqlParser.KW_SET); - this.state = 1144; + this.state = 1162; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1148; + this.state = 1166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1145; + this.state = 1163; this.insertSimpleStatement(); - this.state = 1146; + this.state = 1164; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1150; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1152; + this.state = 1170; this.match(FlinkSqlParser.KW_END); } } @@ -5249,53 +5261,53 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1177; + this.state = 1195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1155; + this.state = 1173; this.valuesCaluse(); } break; case 2: { - this.state = 1156; + this.state = 1174; this.withClause(); - this.state = 1157; + this.state = 1175; this.queryStatement(5); } break; case 3: { - this.state = 1159; + this.state = 1177; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1160; + this.state = 1178; this.queryStatement(0); - this.state = 1161; + this.state = 1179; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1163; + this.state = 1181; this.selectClause(); - this.state = 1165; + this.state = 1183; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1164; + this.state = 1182; this.orderByCaluse(); } break; } - this.state = 1168; + this.state = 1186; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1167; + this.state = 1185; this.limitClause(); } break; @@ -5304,24 +5316,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1170; + this.state = 1188; this.selectStatement(); - this.state = 1172; + this.state = 1190; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1171; + this.state = 1189; this.orderByCaluse(); } break; } - this.state = 1175; + this.state = 1193; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1174; + this.state = 1192; this.limitClause(); } break; @@ -5330,7 +5342,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1193; + this.state = 1211; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5344,11 +5356,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1179; + this.state = 1197; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1180; + this.state = 1198; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 180 || _la === 402)) { @@ -5358,34 +5370,34 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1182; + this.state = 1200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1181; + this.state = 1199; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1184; + this.state = 1202; localContext._right = this.queryStatement(0); - this.state = 1186; + this.state = 1204; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1185; + this.state = 1203; this.orderByCaluse(); } break; } - this.state = 1189; + this.state = 1207; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1188; + this.state = 1206; this.limitClause(); } break; @@ -5393,7 +5405,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1195; + this.state = 1213; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); } @@ -5420,25 +5432,25 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1196; + this.state = 1214; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1197; + this.state = 1215; this.expression(); - this.state = 1202; + this.state = 1220; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1198; + this.state = 1216; this.match(FlinkSqlParser.COMMA); - this.state = 1199; + this.state = 1217; this.expression(); } } } - this.state = 1204; + this.state = 1222; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); } @@ -5465,23 +5477,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1205; + this.state = 1223; this.match(FlinkSqlParser.KW_WITH); - this.state = 1206; + this.state = 1224; this.withItem(); - this.state = 1211; + this.state = 1229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1207; + this.state = 1225; this.match(FlinkSqlParser.COMMA); - this.state = 1208; + this.state = 1226; this.withItem(); } } - this.state = 1213; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5508,45 +5520,45 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1214; + this.state = 1232; this.withItemName(); - this.state = 1226; + this.state = 1244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 1215; + this.state = 1233; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1216; + this.state = 1234; this.columnName(); - this.state = 1221; + this.state = 1239; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1217; + this.state = 1235; this.match(FlinkSqlParser.COMMA); - this.state = 1218; + this.state = 1236; this.columnName(); } } - this.state = 1223; + this.state = 1241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1224; + this.state = 1242; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1228; + this.state = 1246; this.match(FlinkSqlParser.KW_AS); - this.state = 1229; + this.state = 1247; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1230; + this.state = 1248; this.queryStatement(0); - this.state = 1231; + this.state = 1249; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5570,7 +5582,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1233; + this.state = 1251; this.identifier(); } } @@ -5592,60 +5604,60 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SelectStatementContext(this.context, this.state); this.enterRule(localContext, 166, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1255; + this.state = 1273; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1235; + this.state = 1253; this.selectClause(); - this.state = 1237; + this.state = 1255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1236; + this.state = 1254; this.fromClause(); } break; } - this.state = 1240; + this.state = 1258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1239; + this.state = 1257; this.whereClause(); } break; } - this.state = 1243; + this.state = 1261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1242; + this.state = 1260; this.groupByClause(); } break; } - this.state = 1246; + this.state = 1264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1245; + this.state = 1263; this.havingClause(); } break; } - this.state = 1249; + this.state = 1267; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1248; + this.state = 1266; this.windowClause(); } break; @@ -5655,11 +5667,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1251; + this.state = 1269; this.selectClause(); - this.state = 1252; + this.state = 1270; this.fromClause(); - this.state = 1253; + this.state = 1271; this.matchRecognizeClause(); } break; @@ -5683,55 +5695,22 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SelectClauseContext(this.context, this.state); this.enterRule(localContext, 168, FlinkSqlParser.RULE_selectClause); try { - let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1257; + this.state = 1275; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1259; + this.state = 1277; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1258; + this.state = 1276; this.setQuantifier(); } break; } - this.state = 1270; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { - case 1: - { - this.state = 1261; - this.match(FlinkSqlParser.ASTERISK_SIGN); - } - break; - case 2: - { - this.state = 1262; - this.projectItemDefinition(); - this.state = 1267; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1263; - this.match(FlinkSqlParser.COMMA); - this.state = 1264; - this.projectItemDefinition(); - } - } - } - this.state = 1269; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); - } - } - break; - } + this.state = 1279; + this.selectList(); } } catch (re) { @@ -5748,42 +5727,91 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public projectItemDefinition(): ProjectItemDefinitionContext { - let localContext = new ProjectItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 170, FlinkSqlParser.RULE_projectItemDefinition); - let _la: number; + public selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectList); try { - this.state = 1287; + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1281; + this.columnProjectItem(); + this.state = 1286; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 1272; - this.overWindowItem(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 1273; - this.columnName(); - this.state = 1278; + alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1282; + this.match(FlinkSqlParser.COMMA); + this.state = 1283; + this.columnProjectItem(); + } + } + } + this.state = 1288; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, 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 columnProjectItem(): ColumnProjectItemContext { + let localContext = new ColumnProjectItemContext(this.context, this.state); + this.enterRule(localContext, 172, FlinkSqlParser.RULE_columnProjectItem); + let _la: number; + try { + this.state = 1310; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1289; + this.selectWindowItemColumnName(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1290; + this.selectLiteralColumnName(); + this.state = 1296; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { case 1: { - this.state = 1275; + this.state = 1291; + this.columnAlias(); + } + break; + case 2: + { + this.state = 1293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1274; + this.state = 1292; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1277; + this.state = 1295; this.expression(); } break; @@ -5793,24 +5821,239 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1280; - this.expression(); - this.state = 1285; + this.state = 1298; + this.selectExpressionColumnName(); + this.state = 1304; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { + case 1: + { + this.state = 1299; + this.columnAlias(); + } + break; + case 2: + { + this.state = 1301; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { + case 1: + { + this.state = 1300; + this.match(FlinkSqlParser.KW_AS); + } + break; + } + this.state = 1303; + this.columnName(); + } + break; + } + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 1306; + this.tableAllColumns(); + this.state = 1308; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1282; + this.state = 1307; + this.columnAlias(); + } + 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 selectWindowItemColumnName(): SelectWindowItemColumnNameContext { + let localContext = new SelectWindowItemColumnNameContext(this.context, this.state); + this.enterRule(localContext, 174, FlinkSqlParser.RULE_selectWindowItemColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1312; + this.overWindowItem(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 176, FlinkSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1314; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 178, FlinkSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1316; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public columnAlias(): ColumnAliasContext { + let localContext = new ColumnAliasContext(this.context, this.state); + this.enterRule(localContext, 180, FlinkSqlParser.RULE_columnAlias); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1319; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 17) { + { + this.state = 1318; + this.match(FlinkSqlParser.KW_AS); + } + } + + this.state = 1321; + localContext._alias = this.identifier(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public projectItemDefinition(): ProjectItemDefinitionContext { + let localContext = new ProjectItemDefinitionContext(this.context, this.state); + this.enterRule(localContext, 182, FlinkSqlParser.RULE_projectItemDefinition); + let _la: number; + try { + this.state = 1338; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1323; + this.overWindowItem(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1324; + this.columnName(); + this.state = 1329; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { + case 1: + { + this.state = 1326; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 17) { + { + this.state = 1325; + this.match(FlinkSqlParser.KW_AS); + } + } + + this.state = 1328; + this.expression(); + } + break; + } + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1331; + this.expression(); + this.state = 1336; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { + case 1: + { + this.state = 1333; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1281; + this.state = 1332; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1284; + this.state = 1335; this.columnName(); } break; @@ -5833,41 +6076,97 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 184, FlinkSqlParser.RULE_tableAllColumns); + let _la: number; + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1350; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0) || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 19) !== 0)) { + { + this.state = 1340; + this.identifier(); + this.state = 1345; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 146, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1341; + this.match(FlinkSqlParser.DOT); + this.state = 1342; + this.identifier(); + } + } + } + this.state = 1347; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 146, this.context); + } + this.state = 1348; + this.match(FlinkSqlParser.DOT); + } + } + + this.state = 1352; + this.match(FlinkSqlParser.ASTERISK_SIGN); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public overWindowItem(): OverWindowItemContext { let localContext = new OverWindowItemContext(this.context, this.state); - this.enterRule(localContext, 172, FlinkSqlParser.RULE_overWindowItem); + this.enterRule(localContext, 186, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1301; + this.state = 1366; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1289; + this.state = 1354; this.primaryExpression(0); - this.state = 1290; + this.state = 1355; this.match(FlinkSqlParser.KW_OVER); - this.state = 1291; + this.state = 1356; this.windowSpec(); - this.state = 1292; + this.state = 1357; this.match(FlinkSqlParser.KW_AS); - this.state = 1293; - this.identifier(); + this.state = 1358; + localContext._alias = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1295; + this.state = 1360; this.primaryExpression(0); - this.state = 1296; + this.state = 1361; this.match(FlinkSqlParser.KW_OVER); - this.state = 1297; + this.state = 1362; this.errorCapturingIdentifier(); - this.state = 1298; + this.state = 1363; this.match(FlinkSqlParser.KW_AS); - this.state = 1299; - this.identifier(); + this.state = 1364; + localContext._alias = this.identifier(); } break; } @@ -5888,13 +6187,13 @@ export class FlinkSqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 174, FlinkSqlParser.RULE_fromClause); + this.enterRule(localContext, 188, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1303; + this.state = 1368; this.match(FlinkSqlParser.KW_FROM); - this.state = 1304; + this.state = 1369; this.tableExpression(0); } } @@ -5924,57 +6223,57 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TableExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 176; - this.enterRecursionRule(localContext, 176, FlinkSqlParser.RULE_tableExpression, _p); + let _startState = 190; + this.enterRecursionRule(localContext, 190, FlinkSqlParser.RULE_tableExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1317; + this.state = 1382; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: { - this.state = 1307; + this.state = 1372; this.tableReference(); - this.state = 1312; + this.state = 1377; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1308; + this.state = 1373; this.match(FlinkSqlParser.COMMA); - this.state = 1309; + this.state = 1374; this.tableReference(); } } } - this.state = 1314; + this.state = 1379; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } } break; case 2: { - this.state = 1315; + this.state = 1380; this.inlineDataValueClause(); } break; case 3: { - this.state = 1316; + this.state = 1381; this.windoTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1340; + this.state = 1405; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -5982,22 +6281,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1338; + this.state = 1403; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1319; + this.state = 1384; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1320; + this.state = 1385; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1321; + this.state = 1386; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1322; + this.state = 1387; this.tableExpression(4); } break; @@ -6005,26 +6304,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1323; + this.state = 1388; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1325; + this.state = 1390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233) { { - this.state = 1324; + this.state = 1389; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1328; + this.state = 1393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 201 || _la === 317) { { - this.state = 1327; + this.state = 1392; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 201 || _la === 317)) { this.errorHandler.recoverInline(this); @@ -6036,26 +6335,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1331; + this.state = 1396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 261) { { - this.state = 1330; + this.state = 1395; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1333; + this.state = 1398; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1334; + this.state = 1399; this.tableExpression(0); - this.state = 1336; + this.state = 1401; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { case 1: { - this.state = 1335; + this.state = 1400; this.joinCondition(); } break; @@ -6065,9 +6364,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1342; + this.state = 1407; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); } } } @@ -6087,18 +6386,18 @@ export class FlinkSqlParser extends SQLParserBase { } public tableReference(): TableReferenceContext { let localContext = new TableReferenceContext(this.context, this.state); - this.enterRule(localContext, 178, FlinkSqlParser.RULE_tableReference); + this.enterRule(localContext, 192, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1408; this.tablePrimary(); - this.state = 1345; + this.state = 1410; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { - this.state = 1344; + this.state = 1409; this.tableAlias(); } break; @@ -6121,33 +6420,33 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePrimary(): TablePrimaryContext { let localContext = new TablePrimaryContext(this.context, this.state); - this.enterRule(localContext, 180, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localContext, 194, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1386; + this.state = 1425; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1348; + this.state = 1413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 373) { { - this.state = 1347; + this.state = 1412; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1350; + this.state = 1415; this.tablePath(); - this.state = 1352; + this.state = 1417; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1351; + this.state = 1416; this.systemTimePeriod(); } break; @@ -6157,14 +6456,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1354; + this.state = 1419; this.viewPath(); - this.state = 1356; + this.state = 1421; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1355; + this.state = 1420; this.systemTimePeriod(); } break; @@ -6174,74 +6473,133 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1358; - this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1359; - this.match(FlinkSqlParser.KW_TABLE); - this.state = 1360; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1361; - this.functionName(); - this.state = 1362; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1363; - this.functionParam(); - this.state = 1368; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 520) { - { - { - this.state = 1364; - this.match(FlinkSqlParser.COMMA); - this.state = 1365; - this.functionParam(); - } - } - this.state = 1370; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 1371; - this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1372; - this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1423; + this.atomFunctionTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1375; + this.state = 1424; + this.atomExpressionTable(); + } + 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 atomFunctionTable(): AtomFunctionTableContext { + let localContext = new AtomFunctionTableContext(this.context, this.state); + this.enterRule(localContext, 196, FlinkSqlParser.RULE_atomFunctionTable); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1427; + this.match(FlinkSqlParser.KW_LATERAL); + this.state = 1428; + this.match(FlinkSqlParser.KW_TABLE); + this.state = 1429; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1430; + this.functionName(); + this.state = 1431; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1432; + this.functionParam(); + this.state = 1437; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 520) { + { + { + this.state = 1433; + this.match(FlinkSqlParser.COMMA); + this.state = 1434; + this.functionParam(); + } + } + this.state = 1439; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 1440; + this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1441; + this.match(FlinkSqlParser.RR_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 atomExpressionTable(): AtomExpressionTableContext { + let localContext = new AtomExpressionTableContext(this.context, this.state); + this.enterRule(localContext, 198, FlinkSqlParser.RULE_atomExpressionTable); + let _la: number; + try { + this.state = 1455; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_LATERAL: + case FlinkSqlParser.LR_BRACKET: + this.enterOuterAlt(localContext, 1); + { + this.state = 1444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 198) { { - this.state = 1374; + this.state = 1443; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1377; + this.state = 1446; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1378; + this.state = 1447; this.queryStatement(0); - this.state = 1379; + this.state = 1448; this.match(FlinkSqlParser.RR_BRACKET); } break; - case 5: - this.enterOuterAlt(localContext, 5); + case FlinkSqlParser.KW_UNNEST: + this.enterOuterAlt(localContext, 2); { - this.state = 1381; + this.state = 1450; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1382; + this.state = 1451; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1383; + this.state = 1452; this.expression(); - this.state = 1384; + this.state = 1453; this.match(FlinkSqlParser.RR_BRACKET); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -6260,19 +6618,19 @@ export class FlinkSqlParser extends SQLParserBase { } public systemTimePeriod(): SystemTimePeriodContext { let localContext = new SystemTimePeriodContext(this.context, this.state); - this.enterRule(localContext, 182, FlinkSqlParser.RULE_systemTimePeriod); + this.enterRule(localContext, 200, FlinkSqlParser.RULE_systemTimePeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 1388; + this.state = 1457; this.match(FlinkSqlParser.KW_FOR); - this.state = 1389; + this.state = 1458; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1390; + this.state = 1459; this.match(FlinkSqlParser.KW_AS); - this.state = 1391; + this.state = 1460; this.match(FlinkSqlParser.KW_OF); - this.state = 1392; + this.state = 1461; this.dateTimeExpression(); } } @@ -6292,11 +6650,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dateTimeExpression(): DateTimeExpressionContext { let localContext = new DateTimeExpressionContext(this.context, this.state); - this.enterRule(localContext, 184, FlinkSqlParser.RULE_dateTimeExpression); + this.enterRule(localContext, 202, FlinkSqlParser.RULE_dateTimeExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1394; + this.state = 1463; this.expression(); } } @@ -6316,17 +6674,17 @@ export class FlinkSqlParser extends SQLParserBase { } public inlineDataValueClause(): InlineDataValueClauseContext { let localContext = new InlineDataValueClauseContext(this.context, this.state); - this.enterRule(localContext, 186, FlinkSqlParser.RULE_inlineDataValueClause); + this.enterRule(localContext, 204, FlinkSqlParser.RULE_inlineDataValueClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1396; + this.state = 1465; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1397; + this.state = 1466; this.valuesDefinition(); - this.state = 1398; + this.state = 1467; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1399; + this.state = 1468; this.tableAlias(); } } @@ -6346,17 +6704,17 @@ export class FlinkSqlParser extends SQLParserBase { } public windoTVFClause(): WindoTVFClauseContext { let localContext = new WindoTVFClauseContext(this.context, this.state); - this.enterRule(localContext, 188, FlinkSqlParser.RULE_windoTVFClause); + this.enterRule(localContext, 206, FlinkSqlParser.RULE_windoTVFClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1401; + this.state = 1470; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1402; + this.state = 1471; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1403; + this.state = 1472; this.windowTVFExression(); - this.state = 1404; + this.state = 1473; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6376,34 +6734,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFExression(): WindowTVFExressionContext { let localContext = new WindowTVFExressionContext(this.context, this.state); - this.enterRule(localContext, 190, FlinkSqlParser.RULE_windowTVFExression); + this.enterRule(localContext, 208, FlinkSqlParser.RULE_windowTVFExression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1406; + this.state = 1475; this.windoTVFName(); - this.state = 1407; + this.state = 1476; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1408; + this.state = 1477; this.windowTVFParam(); - this.state = 1413; + this.state = 1482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1409; + this.state = 1478; this.match(FlinkSqlParser.COMMA); - this.state = 1410; + this.state = 1479; this.windowTVFParam(); } } - this.state = 1415; + this.state = 1484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1416; + this.state = 1485; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6423,12 +6781,12 @@ export class FlinkSqlParser extends SQLParserBase { } public windoTVFName(): WindoTVFNameContext { let localContext = new WindoTVFNameContext(this.context, this.state); - this.enterRule(localContext, 192, FlinkSqlParser.RULE_windoTVFName); + this.enterRule(localContext, 210, FlinkSqlParser.RULE_windoTVFName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1418; + this.state = 1487; _la = this.tokenStream.LA(1); if(!(_la === 445 || _la === 459 || _la === 499)) { this.errorHandler.recoverInline(this); @@ -6455,66 +6813,66 @@ export class FlinkSqlParser extends SQLParserBase { } public windowTVFParam(): WindowTVFParamContext { let localContext = new WindowTVFParamContext(this.context, this.state); - this.enterRule(localContext, 194, FlinkSqlParser.RULE_windowTVFParam); + this.enterRule(localContext, 212, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1435; + this.state = 1504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1420; + this.state = 1489; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1421; + this.state = 1490; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1422; + this.state = 1491; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1423; + this.state = 1492; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1424; + this.state = 1493; this.match(FlinkSqlParser.KW_DATA); - this.state = 1425; + this.state = 1494; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1426; + this.state = 1495; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1427; + this.state = 1496; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1428; + this.state = 1497; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1429; + this.state = 1498; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1430; + this.state = 1499; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1431; + this.state = 1500; this.timeIntervalParamName(); - this.state = 1432; + this.state = 1501; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1433; + this.state = 1502; this.timeIntervalExpression(); } break; @@ -6536,12 +6894,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalParamName(): TimeIntervalParamNameContext { let localContext = new TimeIntervalParamNameContext(this.context, this.state); - this.enterRule(localContext, 196, FlinkSqlParser.RULE_timeIntervalParamName); + this.enterRule(localContext, 214, FlinkSqlParser.RULE_timeIntervalParamName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1437; + this.state = 1506; _la = this.tokenStream.LA(1); if(!(_la === 250 || _la === 446 || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -6568,17 +6926,17 @@ export class FlinkSqlParser extends SQLParserBase { } public columnDescriptor(): ColumnDescriptorContext { let localContext = new ColumnDescriptorContext(this.context, this.state); - this.enterRule(localContext, 198, FlinkSqlParser.RULE_columnDescriptor); + this.enterRule(localContext, 216, FlinkSqlParser.RULE_columnDescriptor); try { this.enterOuterAlt(localContext, 1); { - this.state = 1439; + this.state = 1508; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1440; + this.state = 1509; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1441; + this.state = 1510; this.columnName(); - this.state = 1442; + this.state = 1511; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6598,26 +6956,26 @@ export class FlinkSqlParser extends SQLParserBase { } public joinCondition(): JoinConditionContext { let localContext = new JoinConditionContext(this.context, this.state); - this.enterRule(localContext, 200, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localContext, 218, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1448; + this.state = 1517; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1444; + this.state = 1513; this.match(FlinkSqlParser.KW_ON); - this.state = 1445; + this.state = 1514; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1446; + this.state = 1515; this.match(FlinkSqlParser.KW_USING); - this.state = 1447; + this.state = 1516; this.columnNameList(); } break; @@ -6641,13 +6999,13 @@ export class FlinkSqlParser extends SQLParserBase { } public whereClause(): WhereClauseContext { let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 202, FlinkSqlParser.RULE_whereClause); + this.enterRule(localContext, 220, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1450; + this.state = 1519; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1451; + this.state = 1520; this.booleanExpression(0); } } @@ -6667,34 +7025,34 @@ export class FlinkSqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 204, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localContext, 222, FlinkSqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1453; + this.state = 1522; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1454; + this.state = 1523; this.match(FlinkSqlParser.KW_BY); - this.state = 1455; + this.state = 1524; this.groupItemDefinition(); - this.state = 1460; + this.state = 1529; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 168, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1456; + this.state = 1525; this.match(FlinkSqlParser.COMMA); - this.state = 1457; + this.state = 1526; this.groupItemDefinition(); } } } - this.state = 1462; + this.state = 1531; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 168, this.context); } } } @@ -6714,124 +7072,124 @@ export class FlinkSqlParser extends SQLParserBase { } public groupItemDefinition(): GroupItemDefinitionContext { let localContext = new GroupItemDefinitionContext(this.context, this.state); - this.enterRule(localContext, 206, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localContext, 224, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1503; + this.state = 1572; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1463; + this.state = 1532; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1464; + this.state = 1533; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1465; + this.state = 1534; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1466; + this.state = 1535; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1467; + this.state = 1536; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1468; + this.state = 1537; this.expression(); - this.state = 1473; + this.state = 1542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1469; + this.state = 1538; this.match(FlinkSqlParser.COMMA); - this.state = 1470; + this.state = 1539; this.expression(); } } - this.state = 1475; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1476; + this.state = 1545; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1478; + this.state = 1547; this.groupingSetsNotaionName(); - this.state = 1479; + this.state = 1548; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1480; + this.state = 1549; this.expression(); - this.state = 1485; + this.state = 1554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1481; + this.state = 1550; this.match(FlinkSqlParser.COMMA); - this.state = 1482; + this.state = 1551; this.expression(); } } - this.state = 1487; + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1488; + this.state = 1557; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1490; + this.state = 1559; this.groupingSets(); - this.state = 1491; + this.state = 1560; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1492; + this.state = 1561; this.groupItemDefinition(); - this.state = 1497; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1493; + this.state = 1562; this.match(FlinkSqlParser.COMMA); - this.state = 1494; + this.state = 1563; this.groupItemDefinition(); } } - this.state = 1499; + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1500; + this.state = 1569; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1502; + this.state = 1571; this.expression(); } break; @@ -6853,13 +7211,13 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSets(): GroupingSetsContext { let localContext = new GroupingSetsContext(this.context, this.state); - this.enterRule(localContext, 208, FlinkSqlParser.RULE_groupingSets); + this.enterRule(localContext, 226, FlinkSqlParser.RULE_groupingSets); try { this.enterOuterAlt(localContext, 1); { - this.state = 1505; + this.state = 1574; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1506; + this.state = 1575; this.match(FlinkSqlParser.KW_SETS); } } @@ -6879,12 +7237,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupingSetsNotaionName(): GroupingSetsNotaionNameContext { let localContext = new GroupingSetsNotaionNameContext(this.context, this.state); - this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupingSetsNotaionName); + this.enterRule(localContext, 228, FlinkSqlParser.RULE_groupingSetsNotaionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1508; + this.state = 1577; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 320)) { this.errorHandler.recoverInline(this); @@ -6911,21 +7269,21 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunction(): GroupWindowFunctionContext { let localContext = new GroupWindowFunctionContext(this.context, this.state); - this.enterRule(localContext, 212, FlinkSqlParser.RULE_groupWindowFunction); + this.enterRule(localContext, 230, FlinkSqlParser.RULE_groupWindowFunction); try { this.enterOuterAlt(localContext, 1); { - this.state = 1510; + this.state = 1579; this.groupWindowFunctionName(); - this.state = 1511; + this.state = 1580; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1512; + this.state = 1581; this.timeAttrColumn(); - this.state = 1513; + this.state = 1582; this.match(FlinkSqlParser.COMMA); - this.state = 1514; + this.state = 1583; this.timeIntervalExpression(); - this.state = 1515; + this.state = 1584; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6945,12 +7303,12 @@ export class FlinkSqlParser extends SQLParserBase { } public groupWindowFunctionName(): GroupWindowFunctionNameContext { let localContext = new GroupWindowFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 214, FlinkSqlParser.RULE_groupWindowFunctionName); + this.enterRule(localContext, 232, FlinkSqlParser.RULE_groupWindowFunctionName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1517; + this.state = 1586; _la = this.tokenStream.LA(1); if(!(_la === 459 || _la === 492 || _la === 499)) { this.errorHandler.recoverInline(this); @@ -6977,11 +7335,11 @@ export class FlinkSqlParser extends SQLParserBase { } public timeAttrColumn(): TimeAttrColumnContext { let localContext = new TimeAttrColumnContext(this.context, this.state); - this.enterRule(localContext, 216, FlinkSqlParser.RULE_timeAttrColumn); + this.enterRule(localContext, 234, FlinkSqlParser.RULE_timeAttrColumn); try { this.enterOuterAlt(localContext, 1); { - this.state = 1519; + this.state = 1588; this.uid(); } } @@ -7001,13 +7359,13 @@ export class FlinkSqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 218, FlinkSqlParser.RULE_havingClause); + this.enterRule(localContext, 236, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1521; + this.state = 1590; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1522; + this.state = 1591; this.booleanExpression(0); } } @@ -7027,32 +7385,32 @@ export class FlinkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 220, FlinkSqlParser.RULE_windowClause); + this.enterRule(localContext, 238, FlinkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1524; + this.state = 1593; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1525; + this.state = 1594; this.namedWindow(); - this.state = 1530; + this.state = 1599; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 173, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1526; + this.state = 1595; this.match(FlinkSqlParser.COMMA); - this.state = 1527; + this.state = 1596; this.namedWindow(); } } } - this.state = 1532; + this.state = 1601; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 173, this.context); } } } @@ -7072,15 +7430,15 @@ export class FlinkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 222, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 240, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 1533; + this.state = 1602; localContext._name = this.errorCapturingIdentifier(); - this.state = 1534; + this.state = 1603; this.match(FlinkSqlParser.KW_AS); - this.state = 1535; + this.state = 1604; this.windowSpec(); } } @@ -7100,54 +7458,54 @@ export class FlinkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 224, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 242, FlinkSqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1538; + this.state = 1607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0) || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 19) !== 0)) { { - this.state = 1537; + this.state = 1606; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1540; + this.state = 1609; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1542; + this.state = 1611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1541; + this.state = 1610; this.partitionByClause(); } } - this.state = 1545; + this.state = 1614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 258) { { - this.state = 1544; + this.state = 1613; this.orderByCaluse(); } } - this.state = 1548; + this.state = 1617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 322) { { - this.state = 1547; + this.state = 1616; this.windowFrame(); } } - this.state = 1550; + this.state = 1619; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7167,95 +7525,95 @@ export class FlinkSqlParser extends SQLParserBase { } public matchRecognizeClause(): MatchRecognizeClauseContext { let localContext = new MatchRecognizeClauseContext(this.context, this.state); - this.enterRule(localContext, 226, FlinkSqlParser.RULE_matchRecognizeClause); + this.enterRule(localContext, 244, FlinkSqlParser.RULE_matchRecognizeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1552; + this.state = 1621; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1553; + this.state = 1622; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1555; + this.state = 1624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1554; + this.state = 1623; this.partitionByClause(); } } - this.state = 1558; + this.state = 1627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 258) { { - this.state = 1557; + this.state = 1626; this.orderByCaluse(); } } - this.state = 1561; + this.state = 1630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1560; + this.state = 1629; this.measuresClause(); } } - this.state = 1564; + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 254) { { - this.state = 1563; + this.state = 1632; this.outputMode(); } } - this.state = 1567; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438) { { - this.state = 1566; + this.state = 1635; this.afterMatchStrategy(); } } - this.state = 1570; + this.state = 1639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 271) { { - this.state = 1569; + this.state = 1638; this.patternDefination(); } } - this.state = 1572; + this.state = 1641; this.patternVariablesDefination(); - this.state = 1573; + this.state = 1642; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1578; + this.state = 1647; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1575; + this.state = 1644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1574; + this.state = 1643; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1577; + this.state = 1646; this.identifier(); } break; @@ -7278,34 +7636,34 @@ export class FlinkSqlParser extends SQLParserBase { } public orderByCaluse(): OrderByCaluseContext { let localContext = new OrderByCaluseContext(this.context, this.state); - this.enterRule(localContext, 228, FlinkSqlParser.RULE_orderByCaluse); + this.enterRule(localContext, 246, FlinkSqlParser.RULE_orderByCaluse); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1580; + this.state = 1649; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1581; + this.state = 1650; this.match(FlinkSqlParser.KW_BY); - this.state = 1582; + this.state = 1651; this.orderItemDefition(); - this.state = 1587; + this.state = 1656; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1583; + this.state = 1652; this.match(FlinkSqlParser.COMMA); - this.state = 1584; + this.state = 1653; this.orderItemDefition(); } } } - this.state = 1589; + this.state = 1658; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 186, this.context); } } } @@ -7325,19 +7683,19 @@ export class FlinkSqlParser extends SQLParserBase { } public orderItemDefition(): OrderItemDefitionContext { let localContext = new OrderItemDefitionContext(this.context, this.state); - this.enterRule(localContext, 230, FlinkSqlParser.RULE_orderItemDefition); + this.enterRule(localContext, 248, FlinkSqlParser.RULE_orderItemDefition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1590; + this.state = 1659; this.columnName(); - this.state = 1592; + this.state = 1661; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1591; + this.state = 1660; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 439 || _la === 450)) { @@ -7350,14 +7708,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1596; + this.state = 1665; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 1594; + this.state = 1663; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1595; + this.state = 1664; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 457 || _la === 467)) { @@ -7388,18 +7746,18 @@ export class FlinkSqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 232, FlinkSqlParser.RULE_limitClause); + this.enterRule(localContext, 250, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1598; + this.state = 1667; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1601; + this.state = 1670; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1599; + this.state = 1668; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7555,7 +7913,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1600; + this.state = 1669; localContext._limit = this.expression(); } break; @@ -7580,58 +7938,58 @@ export class FlinkSqlParser extends SQLParserBase { } public partitionByClause(): PartitionByClauseContext { let localContext = new PartitionByClauseContext(this.context, this.state); - this.enterRule(localContext, 234, FlinkSqlParser.RULE_partitionByClause); + this.enterRule(localContext, 252, FlinkSqlParser.RULE_partitionByClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1603; + this.state = 1672; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1604; + this.state = 1673; this.match(FlinkSqlParser.KW_BY); - this.state = 1607; + this.state = 1676; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1605; + this.state = 1674; this.columnName(); } break; case 2: { - this.state = 1606; + this.state = 1675; this.primaryExpression(0); } break; } - this.state = 1616; + this.state = 1685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1609; + this.state = 1678; this.match(FlinkSqlParser.COMMA); - this.state = 1612; + this.state = 1681; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 1610; + this.state = 1679; this.columnName(); } break; case 2: { - this.state = 1611; + this.state = 1680; this.primaryExpression(0); } break; } } } - this.state = 1618; + this.state = 1687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7653,16 +8011,16 @@ export class FlinkSqlParser extends SQLParserBase { } public quantifiers(): QuantifiersContext { let localContext = new QuantifiersContext(this.context, this.state); - this.enterRule(localContext, 236, FlinkSqlParser.RULE_quantifiers); + this.enterRule(localContext, 254, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1635; + this.state = 1704; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1619; + this.state = 1688; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7671,7 +8029,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1620; + this.state = 1689; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7680,7 +8038,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1621; + this.state = 1690; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7689,15 +8047,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1622; + this.state = 1691; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1623; + this.state = 1692; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1624; + this.state = 1693; this.match(FlinkSqlParser.COMMA); - this.state = 1625; + this.state = 1694; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1626; + this.state = 1695; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7706,13 +8064,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1627; + this.state = 1696; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1628; + this.state = 1697; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1629; + this.state = 1698; this.match(FlinkSqlParser.COMMA); - this.state = 1630; + this.state = 1699; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7721,13 +8079,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1631; + this.state = 1700; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1632; + this.state = 1701; this.match(FlinkSqlParser.COMMA); - this.state = 1633; + this.state = 1702; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1634; + this.state = 1703; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7750,28 +8108,28 @@ export class FlinkSqlParser extends SQLParserBase { } public measuresClause(): MeasuresClauseContext { let localContext = new MeasuresClauseContext(this.context, this.state); - this.enterRule(localContext, 238, FlinkSqlParser.RULE_measuresClause); + this.enterRule(localContext, 256, FlinkSqlParser.RULE_measuresClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1637; + this.state = 1706; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1638; + this.state = 1707; this.projectItemDefinition(); - this.state = 1643; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1639; + this.state = 1708; this.match(FlinkSqlParser.COMMA); - this.state = 1640; + this.state = 1709; this.projectItemDefinition(); } } - this.state = 1645; + this.state = 1714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7793,37 +8151,37 @@ export class FlinkSqlParser extends SQLParserBase { } public patternDefination(): PatternDefinationContext { let localContext = new PatternDefinationContext(this.context, this.state); - this.enterRule(localContext, 240, FlinkSqlParser.RULE_patternDefination); + this.enterRule(localContext, 258, FlinkSqlParser.RULE_patternDefination); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1646; + this.state = 1715; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1647; + this.state = 1716; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1649; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1648; + this.state = 1717; this.patternVariable(); } } - this.state = 1651; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 538 || _la === 541); - this.state = 1653; + this.state = 1722; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1655; + this.state = 1724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434) { { - this.state = 1654; + this.state = 1723; this.withinClause(); } } @@ -7846,19 +8204,19 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariable(): PatternVariableContext { let localContext = new PatternVariableContext(this.context, this.state); - this.enterRule(localContext, 242, FlinkSqlParser.RULE_patternVariable); + this.enterRule(localContext, 260, FlinkSqlParser.RULE_patternVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1726; this.unquotedIdentifier(); - this.state = 1659; + this.state = 1728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 518)) & ~0x1F) === 0 && ((1 << (_la - 518)) & 135681) !== 0)) { { - this.state = 1658; + this.state = 1727; this.quantifiers(); } } @@ -7881,34 +8239,34 @@ export class FlinkSqlParser extends SQLParserBase { } public outputMode(): OutputModeContext { let localContext = new OutputModeContext(this.context, this.state); - this.enterRule(localContext, 244, FlinkSqlParser.RULE_outputMode); + this.enterRule(localContext, 262, FlinkSqlParser.RULE_outputMode); try { - this.state = 1669; + this.state = 1738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1661; + this.state = 1730; this.match(FlinkSqlParser.KW_ALL); - this.state = 1662; + this.state = 1731; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1663; + this.state = 1732; this.match(FlinkSqlParser.KW_PER); - this.state = 1664; + this.state = 1733; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1665; + this.state = 1734; this.match(FlinkSqlParser.KW_ONE); - this.state = 1666; + this.state = 1735; this.match(FlinkSqlParser.KW_ROW); - this.state = 1667; + this.state = 1736; this.match(FlinkSqlParser.KW_PER); - this.state = 1668; + this.state = 1737; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7932,76 +8290,76 @@ export class FlinkSqlParser extends SQLParserBase { } public afterMatchStrategy(): AfterMatchStrategyContext { let localContext = new AfterMatchStrategyContext(this.context, this.state); - this.enterRule(localContext, 246, FlinkSqlParser.RULE_afterMatchStrategy); + this.enterRule(localContext, 264, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1695; + this.state = 1764; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1671; + this.state = 1740; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1672; + this.state = 1741; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1673; + this.state = 1742; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1674; + this.state = 1743; this.match(FlinkSqlParser.KW_PAST); - this.state = 1675; + this.state = 1744; this.match(FlinkSqlParser.KW_LAST); - this.state = 1676; + this.state = 1745; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1677; + this.state = 1746; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1678; + this.state = 1747; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1679; + this.state = 1748; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1680; + this.state = 1749; this.match(FlinkSqlParser.KW_TO); - this.state = 1681; + this.state = 1750; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1682; + this.state = 1751; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1683; + this.state = 1752; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1684; + this.state = 1753; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1685; + this.state = 1754; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1686; + this.state = 1755; this.match(FlinkSqlParser.KW_TO); - this.state = 1687; + this.state = 1756; this.match(FlinkSqlParser.KW_LAST); - this.state = 1688; + this.state = 1757; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1689; + this.state = 1758; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1690; + this.state = 1759; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1691; + this.state = 1760; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1692; + this.state = 1761; this.match(FlinkSqlParser.KW_TO); - this.state = 1693; + this.state = 1762; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1694; + this.state = 1763; this.unquotedIdentifier(); } break; @@ -8023,28 +8381,28 @@ export class FlinkSqlParser extends SQLParserBase { } public patternVariablesDefination(): PatternVariablesDefinationContext { let localContext = new PatternVariablesDefinationContext(this.context, this.state); - this.enterRule(localContext, 248, FlinkSqlParser.RULE_patternVariablesDefination); + this.enterRule(localContext, 266, FlinkSqlParser.RULE_patternVariablesDefination); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1697; + this.state = 1766; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1698; + this.state = 1767; this.projectItemDefinition(); - this.state = 1703; + this.state = 1772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1699; + this.state = 1768; this.match(FlinkSqlParser.COMMA); - this.state = 1700; + this.state = 1769; this.projectItemDefinition(); } } - this.state = 1705; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8066,34 +8424,34 @@ export class FlinkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 250, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1715; + this.state = 1784; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1706; + this.state = 1775; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1707; + this.state = 1776; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1708; + this.state = 1777; this.timeIntervalExpression(); - this.state = 1709; + this.state = 1778; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1711; + this.state = 1780; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1712; + this.state = 1781; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1713; + this.state = 1782; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1714; + this.state = 1783; this.frameBound(); } break; @@ -8117,17 +8475,17 @@ export class FlinkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 252, FlinkSqlParser.RULE_frameBound); + this.enterRule(localContext, 270, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localContext, 1); { - this.state = 1717; + this.state = 1786; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1718; + this.state = 1787; this.match(FlinkSqlParser.KW_AND); - this.state = 1719; + this.state = 1788; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1720; + this.state = 1789; this.match(FlinkSqlParser.KW_ROW); } } @@ -8147,13 +8505,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withinClause(): WithinClauseContext { let localContext = new WithinClauseContext(this.context, this.state); - this.enterRule(localContext, 254, FlinkSqlParser.RULE_withinClause); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_withinClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 1722; + this.state = 1791; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1723; + this.state = 1792; this.timeIntervalExpression(); } } @@ -8173,11 +8531,11 @@ export class FlinkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 256, FlinkSqlParser.RULE_expression); + this.enterRule(localContext, 274, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 1725; + this.state = 1794; this.booleanExpression(0); } } @@ -8207,25 +8565,25 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 258; - this.enterRecursionRule(localContext, 258, FlinkSqlParser.RULE_booleanExpression, _p); + let _startState = 276; + this.enterRecursionRule(localContext, 276, FlinkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1739; + this.state = 1808; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1728; + this.state = 1797; this.match(FlinkSqlParser.KW_NOT); - this.state = 1729; + this.state = 1798; this.booleanExpression(6); } break; @@ -8234,13 +8592,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1730; + this.state = 1799; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1731; + this.state = 1800; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1732; + this.state = 1801; this.queryStatement(0); - this.state = 1733; + this.state = 1802; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8249,14 +8607,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1735; + this.state = 1804; this.valueExpression(0); - this.state = 1737; + this.state = 1806; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1736; + this.state = 1805; this.predicate(); } break; @@ -8265,9 +8623,9 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1755; + this.state = 1824; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 206, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8275,21 +8633,21 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1753; + this.state = 1822; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1741; + this.state = 1810; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1742; + this.state = 1811; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1743; + this.state = 1812; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8298,13 +8656,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1744; + this.state = 1813; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1745; + this.state = 1814; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1746; + this.state = 1815; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8312,23 +8670,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1747; + this.state = 1816; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1748; + this.state = 1817; this.match(FlinkSqlParser.KW_IS); - this.state = 1750; + this.state = 1819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1749; + this.state = 1818; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1752; + this.state = 1821; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 244 || _la === 397 || _la === 404)) { @@ -8343,9 +8701,9 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1757; + this.state = 1826; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 206, this.context); } } } @@ -8365,33 +8723,33 @@ export class FlinkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 260, FlinkSqlParser.RULE_predicate); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1825; + this.state = 1894; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1758; + this.state = 1827; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1761; + this.state = 1830; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1763; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 369) { { - this.state = 1762; + this.state = 1831; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -8403,131 +8761,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1765; + this.state = 1834; localContext._lower = this.valueExpression(0); - this.state = 1766; + this.state = 1835; this.match(FlinkSqlParser.KW_AND); - this.state = 1767; + this.state = 1836; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1770; + this.state = 1839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1769; + this.state = 1838; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1772; + this.state = 1841; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1773; + this.state = 1842; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1774; + this.state = 1843; this.expression(); - this.state = 1779; + this.state = 1848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1775; + this.state = 1844; this.match(FlinkSqlParser.COMMA); - this.state = 1776; + this.state = 1845; this.expression(); } } - this.state = 1781; + this.state = 1850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1782; + this.state = 1851; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1785; + this.state = 1854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1784; + this.state = 1853; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1787; + this.state = 1856; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1788; + this.state = 1857; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1789; + this.state = 1858; this.queryStatement(0); - this.state = 1790; + this.state = 1859; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1792; + this.state = 1861; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1793; + this.state = 1862; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1794; + this.state = 1863; this.queryStatement(0); - this.state = 1795; + this.state = 1864; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1798; + this.state = 1867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1797; + this.state = 1866; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1800; + this.state = 1869; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1801; + this.state = 1870; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1802; + this.state = 1871; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1803; + this.state = 1872; this.match(FlinkSqlParser.KW_IS); - this.state = 1805; + this.state = 1874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1804; + this.state = 1873; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1807; + this.state = 1876; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 244 || _la === 397 || _la === 404)) { @@ -8542,53 +8900,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1808; + this.state = 1877; this.match(FlinkSqlParser.KW_IS); - this.state = 1810; + this.state = 1879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1809; + this.state = 1878; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1812; + this.state = 1881; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1813; + this.state = 1882; this.match(FlinkSqlParser.KW_FROM); - this.state = 1814; + this.state = 1883; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1816; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1815; + this.state = 1884; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1818; + this.state = 1887; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1819; + this.state = 1888; this.match(FlinkSqlParser.KW_TO); - this.state = 1820; + this.state = 1889; localContext._right = this.valueExpression(0); - this.state = 1823; + this.state = 1892; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1821; + this.state = 1890; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1822; + this.state = 1891; this.stringLiteral(); } break; @@ -8613,28 +8971,28 @@ export class FlinkSqlParser extends SQLParserBase { } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 262, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1856; + this.state = 1925; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1828; + this.state = 1897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1827; + this.state = 1896; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1830; + this.state = 1899; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1831; + this.state = 1900; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8644,40 +9002,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1845; + this.state = 1914; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 1832; + this.state = 1901; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1833; + this.state = 1902; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1834; + this.state = 1903; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1835; + this.state = 1904; this.expression(); - this.state = 1840; + this.state = 1909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1836; + this.state = 1905; this.match(FlinkSqlParser.COMMA); - this.state = 1837; + this.state = 1906; this.expression(); } } - this.state = 1842; + this.state = 1911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1843; + this.state = 1912; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8687,28 +9045,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1848; + this.state = 1917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 1847; + this.state = 1916; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1850; + this.state = 1919; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1851; + this.state = 1920; localContext._pattern = this.valueExpression(0); - this.state = 1854; + this.state = 1923; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 1852; + this.state = 1921; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1853; + this.state = 1922; this.stringLiteral(); } break; @@ -8743,23 +9101,23 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 264; - this.enterRecursionRule(localContext, 264, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 282; + this.enterRecursionRule(localContext, 282, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1862; + this.state = 1931; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1859; + this.state = 1928; this.primaryExpression(0); } break; @@ -8768,7 +9126,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1860; + this.state = 1929; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 3145729) !== 0))) { @@ -8778,15 +9136,15 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1861; + this.state = 1930; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1885; + this.state = 1954; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 226, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8794,19 +9152,19 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1883; + this.state = 1952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1864; + this.state = 1933; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1865; + this.state = 1934; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 452 || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 145) !== 0))) { @@ -8816,7 +9174,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1866; + this.state = 1935; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8825,11 +9183,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1867; + this.state = 1936; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1868; + this.state = 1937; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 11) !== 0))) { @@ -8839,7 +9197,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1869; + this.state = 1938; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8848,13 +9206,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1870; + this.state = 1939; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1871; + this.state = 1940; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1872; + this.state = 1941; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8863,13 +9221,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1873; + this.state = 1942; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1874; + this.state = 1943; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1875; + this.state = 1944; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8878,13 +9236,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1876; + this.state = 1945; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1877; + this.state = 1946; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1878; + this.state = 1947; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -8893,22 +9251,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1879; + this.state = 1948; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1880; + this.state = 1949; this.comparisonOperator(); - this.state = 1881; + this.state = 1950; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1887; + this.state = 1956; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 226, this.context); } } } @@ -8938,51 +9296,51 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 266; - this.enterRecursionRule(localContext, 266, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 284; + this.enterRecursionRule(localContext, 284, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1980; + this.state = 2049; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1889; + this.state = 1958; this.match(FlinkSqlParser.KW_CASE); - this.state = 1891; + this.state = 1960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1890; + this.state = 1959; this.whenClause(); } } - this.state = 1893; + this.state = 1962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 428); - this.state = 1897; + this.state = 1966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1895; + this.state = 1964; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1896; + this.state = 1965; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1899; + this.state = 1968; this.match(FlinkSqlParser.KW_END); } break; @@ -8991,37 +9349,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1901; + this.state = 1970; this.match(FlinkSqlParser.KW_CASE); - this.state = 1902; + this.state = 1971; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1904; + this.state = 1973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1903; + this.state = 1972; this.whenClause(); } } - this.state = 1906; + this.state = 1975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 428); - this.state = 1910; + this.state = 1979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1908; + this.state = 1977; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1909; + this.state = 1978; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1912; + this.state = 1981; this.match(FlinkSqlParser.KW_END); } break; @@ -9030,17 +9388,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1914; + this.state = 1983; this.match(FlinkSqlParser.KW_CAST); - this.state = 1915; + this.state = 1984; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1916; + this.state = 1985; this.expression(); - this.state = 1917; + this.state = 1986; this.match(FlinkSqlParser.KW_AS); - this.state = 1918; + this.state = 1987; this.columnType(); - this.state = 1919; + this.state = 1988; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9049,25 +9407,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1921; + this.state = 1990; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1922; + this.state = 1991; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1923; + this.state = 1992; this.expression(); - this.state = 1926; + this.state = 1995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 461) { { - this.state = 1924; + this.state = 1993; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1925; + this.state = 1994; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1928; + this.state = 1997; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9076,25 +9434,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1930; + this.state = 1999; this.match(FlinkSqlParser.KW_LAST); - this.state = 1931; + this.state = 2000; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1932; + this.state = 2001; this.expression(); - this.state = 1935; + this.state = 2004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 461) { { - this.state = 1933; + this.state = 2002; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1934; + this.state = 2003; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1937; + this.state = 2006; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9103,17 +9461,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1939; + this.state = 2008; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1940; + this.state = 2009; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1941; + this.state = 2010; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1942; + this.state = 2011; this.match(FlinkSqlParser.KW_IN); - this.state = 1943; + this.state = 2012; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1944; + this.state = 2013; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9122,7 +9480,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1946; + this.state = 2015; this.constant(); } break; @@ -9131,7 +9489,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1947; + this.state = 2016; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9140,11 +9498,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1948; + this.state = 2017; this.uid(); - this.state = 1949; + this.state = 2018; this.match(FlinkSqlParser.DOT); - this.state = 1950; + this.state = 2019; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9153,11 +9511,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1952; + this.state = 2021; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1953; + this.state = 2022; this.queryStatement(0); - this.state = 1954; + this.state = 2023; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9166,47 +9524,47 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1956; + this.state = 2025; this.functionName(); - this.state = 1957; + this.state = 2026; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1969; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396848) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 10489249) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 1883341377) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 201330753) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 244224001) !== 0) || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 3892347713) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 3238528833) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4294966785) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 33832959) !== 0) || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 31757) !== 0)) { { - this.state = 1959; + this.state = 2028; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 1958; + this.state = 2027; this.setQuantifier(); } break; } - this.state = 1961; + this.state = 2030; this.functionParam(); - this.state = 1966; + this.state = 2035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1962; + this.state = 2031; this.match(FlinkSqlParser.COMMA); - this.state = 1963; + this.state = 2032; this.functionParam(); } } - this.state = 1968; + this.state = 2037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1971; + this.state = 2040; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9215,7 +9573,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1973; + this.state = 2042; this.identifier(); } break; @@ -9224,7 +9582,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1974; + this.state = 2043; this.dereferenceDefinition(); } break; @@ -9233,11 +9591,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1975; + this.state = 2044; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1976; + this.state = 2045; this.expression(); - this.state = 1977; + this.state = 2046; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9246,15 +9604,15 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DateFunctionExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1979; + this.state = 2048; this.match(FlinkSqlParser.KW_CURRENT_TIMESTAMP); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1989; + this.state = 2058; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9266,22 +9624,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 1982; + this.state = 2051; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1983; + this.state = 2052; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1984; + this.state = 2053; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 1985; + this.state = 2054; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 1991; + this.state = 2060; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } } } @@ -9301,11 +9659,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 268, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1992; + this.state = 2061; this.uid(); } } @@ -9325,22 +9683,22 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_functionName); try { - this.state = 1996; + this.state = 2065; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1994; + this.state = 2063; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1995; + this.state = 2064; this.uid(); } break; @@ -9362,36 +9720,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_functionParam); try { - this.state = 2002; + this.state = 2071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 2067; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1999; + this.state = 2068; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2000; + this.state = 2069; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2001; + this.state = 2070; this.expression(); } break; @@ -9413,11 +9771,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2004; + this.state = 2073; this.uid(); } } @@ -9437,11 +9795,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2006; + this.state = 2075; this.identifier(); } } @@ -9461,22 +9819,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2010; + this.state = 2079; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2008; + this.state = 2077; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2009; + this.state = 2078; this.dereferenceDefinition(); } break; @@ -9498,24 +9856,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2012; + this.state = 2081; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2015; + this.state = 2084; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2013; + this.state = 2082; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2014; + this.state = 2083; this.errorCapturingUnitToUnitInterval(); } break; @@ -9538,18 +9896,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2017; + this.state = 2086; this.multiUnitsInterval(); - this.state = 2019; + this.state = 2088; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2018; + this.state = 2087; this.unitToUnitInterval(); } break; @@ -9572,12 +9930,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2024; + this.state = 2093; this.errorHandler.sync(this); alternative = 1; do { @@ -9585,9 +9943,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2021; + this.state = 2090; this.intervalValue(); - this.state = 2022; + this.state = 2091; this.timeIntervalUnit(); } } @@ -9595,9 +9953,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2026; + this.state = 2095; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -9617,24 +9975,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2028; + this.state = 2097; localContext._body = this.unitToUnitInterval(); - this.state = 2031; + this.state = 2100; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 2029; + this.state = 2098; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2030; + this.state = 2099; localContext._error2 = this.unitToUnitInterval(); } break; @@ -9657,17 +10015,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2102; localContext._value = this.intervalValue(); - this.state = 2034; + this.state = 2103; localContext._from_ = this.timeIntervalUnit(); - this.state = 2035; + this.state = 2104; this.match(FlinkSqlParser.KW_TO); - this.state = 2036; + this.state = 2105; localContext._to = this.timeIntervalUnit(); } } @@ -9687,10 +10045,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2043; + this.state = 2112; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPNEN_SIGN: @@ -9699,12 +10057,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 2108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 529 || _la === 530) { { - this.state = 2038; + this.state = 2107; _la = this.tokenStream.LA(1); if(!(_la === 529 || _la === 530)) { this.errorHandler.recoverInline(this); @@ -9716,7 +10074,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2041; + this.state = 2110; _la = this.tokenStream.LA(1); if(!(_la === 538 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -9730,7 +10088,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2042; + this.state = 2111; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -9754,29 +10112,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2046; + this.state = 2115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2045; + this.state = 2114; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2048; + this.state = 2117; localContext._alias = this.identifier(); - this.state = 2050; + this.state = 2119; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2049; + this.state = 2118; this.identifierList(); } break; @@ -9799,13 +10157,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2052; + this.state = 2121; this.identifier(); - this.state = 2053; + this.state = 2122; this.errorCapturingIdentifierExtra(); } } @@ -9825,29 +10183,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2062; + this.state = 2131; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2057; + this.state = 2126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2055; + this.state = 2124; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2056; + this.state = 2125; this.identifier(); } } - this.state = 2059; + this.state = 2128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 221); @@ -9881,15 +10239,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2133; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2065; + this.state = 2134; this.identifierSeq(); - this.state = 2066; + this.state = 2135; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -9909,26 +10267,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2068; + this.state = 2137; this.identifier(); - this.state = 2073; + this.state = 2142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 2069; + this.state = 2138; this.match(FlinkSqlParser.COMMA); - this.state = 2070; + this.state = 2139; this.identifier(); } } - this.state = 2075; + this.state = 2144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9950,9 +10308,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_identifier); try { - this.state = 2079; + this.state = 2148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -9960,7 +10318,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2076; + this.state = 2145; this.unquotedIdentifier(); } break; @@ -9968,7 +10326,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2077; + this.state = 2146; this.quotedIdentifier(); } break; @@ -10043,7 +10401,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2078; + this.state = 2147; this.nonReservedKeywords(); } break; @@ -10067,12 +10425,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2081; + this.state = 2150; _la = this.tokenStream.LA(1); if(!(_la === 538 || _la === 541)) { this.errorHandler.recoverInline(this); @@ -10099,11 +10457,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2083; + this.state = 2152; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10123,17 +10481,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2085; + this.state = 2154; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2086; + this.state = 2155; localContext._condition = this.expression(); - this.state = 2087; + this.state = 2156; this.match(FlinkSqlParser.KW_THEN); - this.state = 2088; + this.state = 2157; localContext._result = this.expression(); } } @@ -10153,11 +10511,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2090; + this.state = 2159; this.identifier(); } } @@ -10177,11 +10535,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2092; + this.state = 2161; this.identifier(); } } @@ -10201,21 +10559,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2094; + this.state = 2163; this.identifier(); - this.state = 2097; + this.state = 2166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2095; + this.state = 2164; this.match(FlinkSqlParser.DOT); - this.state = 2096; + this.state = 2165; this.identifier(); } } @@ -10238,21 +10596,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2099; + this.state = 2168; this.identifier(); - this.state = 2102; + this.state = 2171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2100; + this.state = 2169; this.match(FlinkSqlParser.DOT); - this.state = 2101; + this.state = 2170; this.identifier(); } } @@ -10275,25 +10633,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2116; + this.state = 2185; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2104; + this.state = 2173; this.identifier(); - this.state = 2107; + this.state = 2176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2105; + this.state = 2174; this.match(FlinkSqlParser.DOT); - this.state = 2106; + this.state = 2175; this.identifier(); } } @@ -10303,20 +10661,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2109; + this.state = 2178; this.identifier(); - this.state = 2110; + this.state = 2179; this.match(FlinkSqlParser.DOT); - this.state = 2111; + this.state = 2180; this.identifier(); - this.state = 2114; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2112; + this.state = 2181; this.match(FlinkSqlParser.DOT); - this.state = 2113; + this.state = 2182; this.identifier(); } } @@ -10341,24 +10699,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_tablePath); try { - this.state = 2130; + this.state = 2199; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2118; + this.state = 2187; this.identifier(); - this.state = 2121; + this.state = 2190; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2119; + this.state = 2188; this.match(FlinkSqlParser.DOT); - this.state = 2120; + this.state = 2189; this.identifier(); } break; @@ -10368,20 +10726,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2123; + this.state = 2192; this.identifier(); - this.state = 2124; + this.state = 2193; this.match(FlinkSqlParser.DOT); - this.state = 2125; + this.state = 2194; this.identifier(); - this.state = 2128; + this.state = 2197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2126; + this.state = 2195; this.match(FlinkSqlParser.DOT); - this.state = 2127; + this.state = 2196; this.identifier(); } break; @@ -10406,24 +10764,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_viewPath); try { - this.state = 2144; + this.state = 2213; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2132; + this.state = 2201; this.identifier(); - this.state = 2135; + this.state = 2204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2133; + this.state = 2202; this.match(FlinkSqlParser.DOT); - this.state = 2134; + this.state = 2203; this.identifier(); } break; @@ -10433,20 +10791,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2137; + this.state = 2206; this.identifier(); - this.state = 2138; + this.state = 2207; this.match(FlinkSqlParser.DOT); - this.state = 2139; + this.state = 2208; this.identifier(); - this.state = 2142; + this.state = 2211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2140; + this.state = 2209; this.match(FlinkSqlParser.DOT); - this.state = 2141; + this.state = 2210; this.identifier(); } break; @@ -10471,25 +10829,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2158; + this.state = 2227; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2146; + this.state = 2215; this.identifier(); - this.state = 2149; + this.state = 2218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2147; + this.state = 2216; this.match(FlinkSqlParser.DOT); - this.state = 2148; + this.state = 2217; this.identifier(); } } @@ -10499,20 +10857,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2151; + this.state = 2220; this.identifier(); - this.state = 2152; + this.state = 2221; this.match(FlinkSqlParser.DOT); - this.state = 2153; + this.state = 2222; this.identifier(); - this.state = 2156; + this.state = 2225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2154; + this.state = 2223; this.match(FlinkSqlParser.DOT); - this.state = 2155; + this.state = 2224; this.identifier(); } } @@ -10537,30 +10895,30 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2229; this.identifier(); - this.state = 2165; + this.state = 2234; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); - while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1 + 1) { + alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { { { - this.state = 2161; + this.state = 2230; this.match(FlinkSqlParser.DOT); - this.state = 2162; + this.state = 2231; this.identifier(); } } } - this.state = 2167; + this.state = 2236; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); } } } @@ -10580,13 +10938,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2168; + this.state = 2237; this.match(FlinkSqlParser.KW_WITH); - this.state = 2169; + this.state = 2238; this.tablePropertyList(); } } @@ -10606,15 +10964,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2240; this.match(FlinkSqlParser.KW_IF); - this.state = 2172; + this.state = 2241; this.match(FlinkSqlParser.KW_NOT); - this.state = 2173; + this.state = 2242; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10634,13 +10992,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2244; this.match(FlinkSqlParser.KW_IF); - this.state = 2176; + this.state = 2245; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10660,32 +11018,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2178; + this.state = 2247; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2179; + this.state = 2248; this.tableProperty(); - this.state = 2184; + this.state = 2253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 2180; + this.state = 2249; this.match(FlinkSqlParser.COMMA); - this.state = 2181; + this.state = 2250; this.tableProperty(); } } - this.state = 2186; + this.state = 2255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2187; + this.state = 2256; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10705,29 +11063,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2189; + this.state = 2258; localContext._key = this.tablePropertyKey(); - this.state = 2194; + this.state = 2263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 397 || _la === 505 || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 7) !== 0)) { { - this.state = 2191; + this.state = 2260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 505) { { - this.state = 2190; + this.state = 2259; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2193; + this.state = 2262; localContext._value = this.tablePropertyValue(); } } @@ -10750,29 +11108,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2199; + this.state = 2268; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2265; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2197; + this.state = 2266; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2198; + this.state = 2267; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10794,22 +11152,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2205; + this.state = 2274; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2270; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2202; + this.state = 2271; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -10817,14 +11175,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2203; + this.state = 2272; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2204; + this.state = 2273; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10848,40 +11206,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2213; + this.state = 2282; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2207; + this.state = 2276; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2208; + this.state = 2277; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2209; + this.state = 2278; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2210; + this.state = 2279; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2211; + this.state = 2280; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2212; + this.state = 2281; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -10905,76 +11263,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2229; + this.state = 2298; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2215; + this.state = 2284; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2216; + this.state = 2285; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2217; + this.state = 2286; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2218; + this.state = 2287; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2219; + this.state = 2288; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2220; + this.state = 2289; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2221; + this.state = 2290; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2222; + this.state = 2291; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2223; + this.state = 2292; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2224; + this.state = 2293; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2225; + this.state = 2294; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2226; + this.state = 2295; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2227; + this.state = 2296; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2228; + this.state = 2297; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -10996,47 +11354,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2238; + this.state = 2307; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2231; + this.state = 2300; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2232; + this.state = 2301; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2233; + this.state = 2302; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2234; + this.state = 2303; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2235; + this.state = 2304; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2236; + this.state = 2305; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2237; + this.state = 2306; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11060,12 +11418,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2309; _la = this.tokenStream.LA(1); if(!(_la === 452 || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11092,12 +11450,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2242; + this.state = 2311; _la = this.tokenStream.LA(1); if(!(_la === 241 || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11124,16 +11482,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2258; + this.state = 2327; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2244; + this.state = 2313; this.timeIntervalExpression(); } break; @@ -11149,14 +11507,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2245; + this.state = 2314; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2246; + this.state = 2315; this.stringLiteral(); } break; @@ -11164,17 +11522,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2248; + this.state = 2317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 529) { { - this.state = 2247; + this.state = 2316; this.match(FlinkSqlParser.HYPNEN_SIGN); } } - this.state = 2250; + this.state = 2319; this.decimalLiteral(); } break; @@ -11182,21 +11540,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2251; + this.state = 2320; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2252; + this.state = 2321; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2253; + this.state = 2322; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11204,17 +11562,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2255; + this.state = 2324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 2254; + this.state = 2323; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2257; + this.state = 2326; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11238,13 +11596,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2260; + this.state = 2329; this.timePointUnit(); - this.state = 2261; + this.state = 2330; this.stringLiteral(); } } @@ -11264,11 +11622,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2263; + this.state = 2332; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11288,11 +11646,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2265; + this.state = 2334; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11312,12 +11670,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2336; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 397)) { this.errorHandler.recoverInline(this); @@ -11344,12 +11702,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2338; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11376,12 +11734,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2340; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 222 || _la === 229 || _la === 334 || _la === 436 || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 262149) !== 0) || _la === 502)) { this.errorHandler.recoverInline(this); @@ -11408,12 +11766,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2273; + this.state = 2342; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 222 || _la === 229 || _la === 334 || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 140542465) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 2415983617) !== 0) || _la === 502 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11440,12 +11798,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 386, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2275; + this.state = 2344; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 385) !== 0) || _la === 389 || _la === 413 || _la === 527)) { this.errorHandler.recoverInline(this); @@ -11472,12 +11830,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 388, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2277; + this.state = 2346; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25232905) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 873523369) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 81921) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 50339865) !== 0) || _la === 436 || _la === 469 || _la === 488 || _la === 502)) { this.errorHandler.recoverInline(this); @@ -11504,12 +11862,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 390, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2279; + this.state = 2348; _la = this.tokenStream.LA(1); if(!(((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11541,13 +11899,13 @@ export class FlinkSqlParser extends SQLParserBase { return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 78: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); - case 88: + case 95: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); - case 129: + case 138: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 132: + case 141: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 133: + case 142: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -11612,7 +11970,7 @@ export class FlinkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,541,2282,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,541,2351,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, @@ -11643,943 +12001,973 @@ export class FlinkSqlParser extends SQLParserBase { 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,1,0,5,0,376,8,0,10,0,12,0,379,9,0,1,0,1,0,1,1,1,1,3,1,385, - 8,1,1,1,3,1,388,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,3,2,402,8,2,1,3,1,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,1,4,3,4,420,8,4,1,5,1,5,3,5,424,8,5,1,6,1,6,1,6,1,7, - 1,7,1,7,1,7,3,7,433,8,7,1,7,1,7,1,7,3,7,438,8,7,1,8,1,8,1,8,5,8, - 443,8,8,10,8,12,8,446,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10, - 3,10,456,8,10,1,11,1,11,1,11,1,11,1,11,5,11,463,8,11,10,11,12,11, - 466,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,477,8, - 12,1,12,3,12,480,8,12,1,12,1,12,1,12,1,12,1,12,3,12,487,8,12,1,12, - 3,12,490,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,498,8,12,1,12,1, - 12,3,12,502,8,12,1,12,1,12,1,12,3,12,507,8,12,1,12,3,12,510,8,12, - 1,13,1,13,1,13,1,13,1,13,3,13,517,8,13,1,14,1,14,1,14,1,14,1,15, - 1,15,3,15,525,8,15,1,16,1,16,3,16,529,8,16,1,17,1,17,1,17,1,17,1, - 18,1,18,1,18,1,18,1,18,1,18,3,18,541,8,18,1,18,1,18,1,18,1,18,1, - 18,1,18,3,18,549,8,18,1,18,1,18,3,18,553,8,18,1,18,1,18,1,18,1,18, + 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,1,0,5,0,394,8,0, + 10,0,12,0,397,9,0,1,0,1,0,1,1,1,1,3,1,403,8,1,1,1,3,1,406,8,1,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,420,8,2,1,3,1, + 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,1,4,3,4,438, + 8,4,1,5,1,5,3,5,442,8,5,1,6,1,6,1,6,1,7,1,7,1,7,1,7,3,7,451,8,7, + 1,7,1,7,1,7,3,7,456,8,7,1,8,1,8,1,8,5,8,461,8,8,10,8,12,8,464,9, + 8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,474,8,10,1,11,1,11, + 1,11,1,11,1,11,5,11,481,8,11,10,11,12,11,484,9,11,1,12,1,12,1,12, + 1,12,1,12,1,12,1,12,1,12,1,12,3,12,495,8,12,1,12,3,12,498,8,12,1, + 12,1,12,1,12,1,12,1,12,3,12,505,8,12,1,12,3,12,508,8,12,1,12,1,12, + 1,12,1,12,1,12,1,12,3,12,516,8,12,1,12,1,12,3,12,520,8,12,1,12,1, + 12,1,12,3,12,525,8,12,1,12,3,12,528,8,12,1,13,1,13,1,13,1,13,1,13, + 3,13,535,8,13,1,14,1,14,1,14,1,14,1,15,1,15,3,15,543,8,15,1,16,1, + 16,3,16,547,8,16,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1, + 18,3,18,559,8,18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,567,8,18,1,18, + 1,18,3,18,571,8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 3,18,585,8,18,1,19,3,19,588,8,19,1,19,4,19,591,8,19,11,19,12,19, - 592,1,20,1,20,3,20,597,8,20,1,21,1,21,3,21,601,8,21,1,21,1,21,3, - 21,605,8,21,1,21,1,21,1,21,1,21,1,21,5,21,612,8,21,10,21,12,21,615, - 9,21,1,21,1,21,3,21,619,8,21,1,21,1,21,3,21,623,8,21,1,21,1,21,3, - 21,627,8,21,1,21,1,21,1,21,3,21,632,8,21,1,21,3,21,635,8,21,1,21, - 1,21,3,21,639,8,21,1,22,1,22,1,22,3,22,644,8,22,1,22,1,22,1,22,1, - 22,3,22,650,8,22,1,23,1,23,1,23,3,23,655,8,23,1,24,1,24,1,24,3,24, - 660,8,24,1,24,1,24,3,24,664,8,24,1,25,1,25,3,25,668,8,25,1,26,1, - 26,3,26,672,8,26,1,27,1,27,1,27,1,27,5,27,678,8,27,10,27,12,27,681, - 9,27,1,27,1,27,1,28,1,28,1,28,3,28,688,8,28,1,28,1,28,3,28,692,8, - 28,1,28,1,28,3,28,696,8,28,1,28,1,28,3,28,700,8,28,1,28,1,28,3,28, - 704,8,28,1,28,1,28,3,28,708,8,28,1,28,1,28,3,28,712,8,28,1,28,1, - 28,3,28,716,8,28,1,28,1,28,3,28,720,8,28,3,28,722,8,28,1,29,1,29, - 1,29,1,29,1,30,1,30,1,30,1,30,3,30,732,8,30,1,30,1,30,1,31,1,31, - 1,31,1,31,3,31,740,8,31,1,31,1,31,1,32,1,32,1,32,1,32,1,33,1,33, - 1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34, - 762,8,34,10,34,12,34,765,9,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,34,1,34,5,34,776,8,34,10,34,12,34,779,9,34,1,34,1,34,3,34,783, - 8,34,1,35,1,35,3,35,787,8,35,1,35,1,35,1,35,1,35,3,35,793,8,35,1, - 35,3,35,796,8,35,1,35,3,35,799,8,35,1,36,1,36,1,36,1,36,1,36,3,36, - 806,8,36,1,36,3,36,809,8,36,1,37,1,37,1,38,1,38,1,38,1,38,1,38,3, - 38,818,8,38,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,3, - 41,830,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1, - 43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,5,45,852,8,45,10, - 45,12,45,855,9,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,5,46,864,8, - 46,10,46,12,46,867,9,46,1,46,1,46,3,46,871,8,46,1,47,1,47,3,47,875, - 8,47,1,48,1,48,1,48,1,48,5,48,881,8,48,10,48,12,48,884,9,48,1,48, - 3,48,887,8,48,1,49,1,49,1,49,1,49,3,49,893,8,49,1,50,1,50,1,50,1, - 50,1,50,1,51,1,51,1,51,3,51,903,8,51,1,51,1,51,1,51,3,51,908,8,51, - 1,51,1,51,1,52,1,52,3,52,914,8,52,1,52,1,52,3,52,918,8,52,1,52,1, - 52,3,52,922,8,52,1,52,1,52,3,52,926,8,52,1,52,1,52,1,52,1,53,1,53, - 1,53,1,53,3,53,935,8,53,1,53,1,53,3,53,939,8,53,1,53,1,53,1,53,1, - 53,1,53,3,53,946,8,53,1,53,3,53,949,8,53,1,54,1,54,1,54,1,54,1,54, - 1,54,5,54,957,8,54,10,54,12,54,960,9,54,1,55,1,55,1,56,1,56,1,56, - 3,56,967,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,975,8,56,1,57,1, - 57,3,57,979,8,57,1,57,1,57,1,57,1,58,1,58,1,58,1,59,1,59,1,59,1, - 59,1,59,1,59,1,59,3,59,994,8,59,1,60,1,60,1,60,1,60,1,61,1,61,1, - 61,1,61,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1013,8, - 63,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,3,65,1024,8,65,1, - 65,1,65,3,65,1028,8,65,1,65,1,65,1,65,1,65,1,65,3,65,1035,8,65,1, - 66,1,66,1,66,3,66,1040,8,66,1,66,1,66,1,67,1,67,3,67,1046,8,67,1, - 67,1,67,3,67,1050,8,67,1,67,1,67,1,68,1,68,1,68,3,68,1057,8,68,1, - 68,1,68,3,68,1061,8,68,1,69,1,69,3,69,1065,8,69,1,69,1,69,3,69,1069, - 8,69,1,69,1,69,1,70,1,70,1,70,1,70,3,70,1077,8,70,1,70,1,70,3,70, - 1081,8,70,1,70,1,70,1,71,3,71,1086,8,71,1,71,1,71,1,71,1,71,3,71, - 1092,8,71,1,72,1,72,1,72,1,72,3,72,1098,8,72,1,72,3,72,1101,8,72, - 1,72,1,72,3,72,1105,8,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,5,74, - 1114,8,74,10,74,12,74,1117,9,74,1,75,1,75,1,75,1,75,5,75,1123,8, - 75,10,75,12,75,1126,9,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,4,76,1137,8,76,11,76,12,76,1138,1,76,1,76,1,77,1,77,1,77,1, - 77,1,77,1,77,4,77,1149,8,77,11,77,12,77,1150,1,77,1,77,1,78,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1166,8,78,1,78, - 3,78,1169,8,78,1,78,1,78,3,78,1173,8,78,1,78,3,78,1176,8,78,3,78, - 1178,8,78,1,78,1,78,1,78,3,78,1183,8,78,1,78,1,78,3,78,1187,8,78, - 1,78,3,78,1190,8,78,5,78,1192,8,78,10,78,12,78,1195,9,78,1,79,1, - 79,1,79,1,79,5,79,1201,8,79,10,79,12,79,1204,9,79,1,80,1,80,1,80, - 1,80,5,80,1210,8,80,10,80,12,80,1213,9,80,1,81,1,81,1,81,1,81,1, - 81,5,81,1220,8,81,10,81,12,81,1223,9,81,1,81,1,81,3,81,1227,8,81, - 1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,3,83,1238,8,83,1,83, - 3,83,1241,8,83,1,83,3,83,1244,8,83,1,83,3,83,1247,8,83,1,83,3,83, - 1250,8,83,1,83,1,83,1,83,1,83,3,83,1256,8,83,1,84,1,84,3,84,1260, - 8,84,1,84,1,84,1,84,1,84,5,84,1266,8,84,10,84,12,84,1269,9,84,3, - 84,1271,8,84,1,85,1,85,1,85,3,85,1276,8,85,1,85,3,85,1279,8,85,1, - 85,1,85,3,85,1283,8,85,1,85,3,85,1286,8,85,3,85,1288,8,85,1,86,1, - 86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,3,86,1302,8, - 86,1,87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,1311,8,88,10,88,12,88, - 1314,9,88,1,88,1,88,3,88,1318,8,88,1,88,1,88,1,88,1,88,1,88,1,88, - 3,88,1326,8,88,1,88,3,88,1329,8,88,1,88,3,88,1332,8,88,1,88,1,88, - 1,88,3,88,1337,8,88,5,88,1339,8,88,10,88,12,88,1342,9,88,1,89,1, - 89,3,89,1346,8,89,1,90,3,90,1349,8,90,1,90,1,90,3,90,1353,8,90,1, - 90,1,90,3,90,1357,8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,5, - 90,1367,8,90,10,90,12,90,1370,9,90,1,90,1,90,1,90,1,90,3,90,1376, - 8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1387,8,90, - 1,91,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,93,1,93,1,93,1,93,1,93, - 1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,5,95,1412,8,95, - 10,95,12,95,1415,9,95,1,95,1,95,1,96,1,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,3,97,1436,8, - 97,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,3, - 100,1449,8,100,1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102,5, - 102,1459,8,102,10,102,12,102,1462,9,102,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,5,103,1472,8,103,10,103,12,103,1475,9,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,5,103,1484,8,103,10,103, - 12,103,1487,9,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,5,103, - 1496,8,103,10,103,12,103,1499,9,103,1,103,1,103,1,103,3,103,1504, - 8,103,1,104,1,104,1,104,1,105,1,105,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,1,107,1,107,1,108,1,108,1,109,1,109,1,109,1,110,1,110, - 1,110,1,110,5,110,1529,8,110,10,110,12,110,1532,9,110,1,111,1,111, - 1,111,1,111,1,112,3,112,1539,8,112,1,112,1,112,3,112,1543,8,112, - 1,112,3,112,1546,8,112,1,112,3,112,1549,8,112,1,112,1,112,1,113, - 1,113,1,113,3,113,1556,8,113,1,113,3,113,1559,8,113,1,113,3,113, - 1562,8,113,1,113,3,113,1565,8,113,1,113,3,113,1568,8,113,1,113,3, - 113,1571,8,113,1,113,1,113,1,113,3,113,1576,8,113,1,113,3,113,1579, - 8,113,1,114,1,114,1,114,1,114,1,114,5,114,1586,8,114,10,114,12,114, - 1589,9,114,1,115,1,115,3,115,1593,8,115,1,115,1,115,3,115,1597,8, - 115,1,116,1,116,1,116,3,116,1602,8,116,1,117,1,117,1,117,1,117,3, - 117,1608,8,117,1,117,1,117,1,117,3,117,1613,8,117,5,117,1615,8,117, - 10,117,12,117,1618,9,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,1636, - 8,118,1,119,1,119,1,119,1,119,5,119,1642,8,119,10,119,12,119,1645, - 9,119,1,120,1,120,1,120,4,120,1650,8,120,11,120,12,120,1651,1,120, - 1,120,3,120,1656,8,120,1,121,1,121,3,121,1660,8,121,1,122,1,122, - 1,122,1,122,1,122,1,122,1,122,1,122,3,122,1670,8,122,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 3,123,1696,8,123,1,124,1,124,1,124,1,124,5,124,1702,8,124,10,124, - 12,124,1705,9,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 1,125,3,125,1716,8,125,1,126,1,126,1,126,1,126,1,126,1,127,1,127, - 1,127,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, - 1,129,1,129,3,129,1738,8,129,3,129,1740,8,129,1,129,1,129,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,3,129,1751,8,129,1,129,5,129, - 1754,8,129,10,129,12,129,1757,9,129,1,130,3,130,1760,8,130,1,130, - 1,130,3,130,1764,8,130,1,130,1,130,1,130,1,130,1,130,3,130,1771, - 8,130,1,130,1,130,1,130,1,130,1,130,5,130,1778,8,130,10,130,12,130, - 1781,9,130,1,130,1,130,1,130,3,130,1786,8,130,1,130,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1799,8,130, - 1,130,1,130,1,130,1,130,1,130,3,130,1806,8,130,1,130,1,130,1,130, - 3,130,1811,8,130,1,130,1,130,1,130,1,130,3,130,1817,8,130,1,130, - 1,130,1,130,1,130,1,130,3,130,1824,8,130,3,130,1826,8,130,1,131, - 3,131,1829,8,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 5,131,1839,8,131,10,131,12,131,1842,9,131,1,131,1,131,3,131,1846, - 8,131,1,131,3,131,1849,8,131,1,131,1,131,1,131,1,131,3,131,1855, - 8,131,3,131,1857,8,131,1,132,1,132,1,132,1,132,3,132,1863,8,132, + 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,3,18,603,8,18,1,19,3,19, + 606,8,19,1,19,4,19,609,8,19,11,19,12,19,610,1,20,1,20,3,20,615,8, + 20,1,21,1,21,3,21,619,8,21,1,21,1,21,3,21,623,8,21,1,21,1,21,1,21, + 1,21,1,21,5,21,630,8,21,10,21,12,21,633,9,21,1,21,1,21,3,21,637, + 8,21,1,21,1,21,3,21,641,8,21,1,21,1,21,3,21,645,8,21,1,21,1,21,1, + 21,3,21,650,8,21,1,21,3,21,653,8,21,1,21,1,21,3,21,657,8,21,1,22, + 1,22,1,22,3,22,662,8,22,1,22,1,22,1,22,1,22,3,22,668,8,22,1,23,1, + 23,1,23,3,23,673,8,23,1,24,1,24,1,24,3,24,678,8,24,1,24,1,24,3,24, + 682,8,24,1,25,1,25,3,25,686,8,25,1,26,1,26,3,26,690,8,26,1,27,1, + 27,1,27,1,27,5,27,696,8,27,10,27,12,27,699,9,27,1,27,1,27,1,28,1, + 28,1,28,3,28,706,8,28,1,28,1,28,3,28,710,8,28,1,28,1,28,3,28,714, + 8,28,1,28,1,28,3,28,718,8,28,1,28,1,28,3,28,722,8,28,1,28,1,28,3, + 28,726,8,28,1,28,1,28,3,28,730,8,28,1,28,1,28,3,28,734,8,28,1,28, + 1,28,3,28,738,8,28,3,28,740,8,28,1,29,1,29,1,29,1,29,1,30,1,30,1, + 30,1,30,3,30,750,8,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,758,8,31, + 1,31,1,31,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33, + 1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34,780,8,34,10,34,12,34,783, + 9,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34,794,8,34, + 10,34,12,34,797,9,34,1,34,1,34,3,34,801,8,34,1,35,1,35,3,35,805, + 8,35,1,35,1,35,1,35,1,35,3,35,811,8,35,1,35,3,35,814,8,35,1,35,3, + 35,817,8,35,1,36,1,36,1,36,1,36,1,36,3,36,824,8,36,1,36,3,36,827, + 8,36,1,37,1,37,1,38,1,38,1,38,1,38,1,38,3,38,836,8,38,1,39,1,39, + 1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,3,41,848,8,41,1,41,1,41, + 1,41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1,43,1,43,1,44,1,44,1,44, + 1,44,1,45,1,45,1,45,1,45,5,45,870,8,45,10,45,12,45,873,9,45,1,45, + 1,45,1,46,1,46,1,46,1,46,1,46,5,46,882,8,46,10,46,12,46,885,9,46, + 1,46,1,46,3,46,889,8,46,1,47,1,47,3,47,893,8,47,1,48,1,48,1,48,1, + 48,5,48,899,8,48,10,48,12,48,902,9,48,1,48,3,48,905,8,48,1,49,1, + 49,1,49,1,49,3,49,911,8,49,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1, + 51,3,51,921,8,51,1,51,1,51,1,51,3,51,926,8,51,1,51,1,51,1,52,1,52, + 3,52,932,8,52,1,52,1,52,3,52,936,8,52,1,52,1,52,3,52,940,8,52,1, + 52,1,52,3,52,944,8,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53,3,53,953, + 8,53,1,53,1,53,3,53,957,8,53,1,53,1,53,1,53,1,53,1,53,3,53,964,8, + 53,1,53,3,53,967,8,53,1,54,1,54,1,54,1,54,1,54,1,54,5,54,975,8,54, + 10,54,12,54,978,9,54,1,55,1,55,1,56,1,56,1,56,3,56,985,8,56,1,56, + 1,56,1,56,1,56,1,56,1,56,3,56,993,8,56,1,57,1,57,3,57,997,8,57,1, + 57,1,57,1,57,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,3, + 59,1012,8,59,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,62,1,62,1, + 62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1031,8,63,1,64,1,64,1,64,1, + 64,1,64,1,65,1,65,1,65,1,65,3,65,1042,8,65,1,65,1,65,3,65,1046,8, + 65,1,65,1,65,1,65,1,65,1,65,3,65,1053,8,65,1,66,1,66,1,66,3,66,1058, + 8,66,1,66,1,66,1,67,1,67,3,67,1064,8,67,1,67,1,67,3,67,1068,8,67, + 1,67,1,67,1,68,1,68,1,68,3,68,1075,8,68,1,68,1,68,3,68,1079,8,68, + 1,69,1,69,3,69,1083,8,69,1,69,1,69,3,69,1087,8,69,1,69,1,69,1,70, + 1,70,1,70,1,70,3,70,1095,8,70,1,70,1,70,3,70,1099,8,70,1,70,1,70, + 1,71,3,71,1104,8,71,1,71,1,71,1,71,1,71,3,71,1110,8,71,1,72,1,72, + 1,72,1,72,3,72,1116,8,72,1,72,3,72,1119,8,72,1,72,1,72,3,72,1123, + 8,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,5,74,1132,8,74,10,74,12, + 74,1135,9,74,1,75,1,75,1,75,1,75,5,75,1141,8,75,10,75,12,75,1144, + 9,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,4,76,1155,8,76, + 11,76,12,76,1156,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,4,77,1167, + 8,77,11,77,12,77,1168,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,1,78,3,78,1184,8,78,1,78,3,78,1187,8,78,1,78,1, + 78,3,78,1191,8,78,1,78,3,78,1194,8,78,3,78,1196,8,78,1,78,1,78,1, + 78,3,78,1201,8,78,1,78,1,78,3,78,1205,8,78,1,78,3,78,1208,8,78,5, + 78,1210,8,78,10,78,12,78,1213,9,78,1,79,1,79,1,79,1,79,5,79,1219, + 8,79,10,79,12,79,1222,9,79,1,80,1,80,1,80,1,80,5,80,1228,8,80,10, + 80,12,80,1231,9,80,1,81,1,81,1,81,1,81,1,81,5,81,1238,8,81,10,81, + 12,81,1241,9,81,1,81,1,81,3,81,1245,8,81,1,81,1,81,1,81,1,81,1,81, + 1,82,1,82,1,83,1,83,3,83,1256,8,83,1,83,3,83,1259,8,83,1,83,3,83, + 1262,8,83,1,83,3,83,1265,8,83,1,83,3,83,1268,8,83,1,83,1,83,1,83, + 1,83,3,83,1274,8,83,1,84,1,84,3,84,1278,8,84,1,84,1,84,1,85,1,85, + 1,85,5,85,1285,8,85,10,85,12,85,1288,9,85,1,86,1,86,1,86,1,86,3, + 86,1294,8,86,1,86,3,86,1297,8,86,1,86,1,86,1,86,3,86,1302,8,86,1, + 86,3,86,1305,8,86,1,86,1,86,3,86,1309,8,86,3,86,1311,8,86,1,87,1, + 87,1,88,1,88,1,89,1,89,1,90,3,90,1320,8,90,1,90,1,90,1,91,1,91,1, + 91,3,91,1327,8,91,1,91,3,91,1330,8,91,1,91,1,91,3,91,1334,8,91,1, + 91,3,91,1337,8,91,3,91,1339,8,91,1,92,1,92,1,92,5,92,1344,8,92,10, + 92,12,92,1347,9,92,1,92,1,92,3,92,1351,8,92,1,92,1,92,1,93,1,93, + 1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,93,3,93,1367,8,93, + 1,94,1,94,1,94,1,95,1,95,1,95,1,95,5,95,1376,8,95,10,95,12,95,1379, + 9,95,1,95,1,95,3,95,1383,8,95,1,95,1,95,1,95,1,95,1,95,1,95,3,95, + 1391,8,95,1,95,3,95,1394,8,95,1,95,3,95,1397,8,95,1,95,1,95,1,95, + 3,95,1402,8,95,5,95,1404,8,95,10,95,12,95,1407,9,95,1,96,1,96,3, + 96,1411,8,96,1,97,3,97,1414,8,97,1,97,1,97,3,97,1418,8,97,1,97,1, + 97,3,97,1422,8,97,1,97,1,97,3,97,1426,8,97,1,98,1,98,1,98,1,98,1, + 98,1,98,1,98,1,98,5,98,1436,8,98,10,98,12,98,1439,9,98,1,98,1,98, + 1,98,1,99,3,99,1445,8,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99, + 1,99,3,99,1456,8,99,1,100,1,100,1,100,1,100,1,100,1,100,1,101,1, + 101,1,102,1,102,1,102,1,102,1,102,1,103,1,103,1,103,1,103,1,103, + 1,104,1,104,1,104,1,104,1,104,5,104,1481,8,104,10,104,12,104,1484, + 9,104,1,104,1,104,1,105,1,105,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,3,106,1505, + 8,106,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109, + 1,109,3,109,1518,8,109,1,110,1,110,1,110,1,111,1,111,1,111,1,111, + 1,111,5,111,1528,8,111,10,111,12,111,1531,9,111,1,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,5,112,1541,8,112,10,112,12,112,1544, + 9,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,5,112,1553,8,112, + 10,112,12,112,1556,9,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112, + 5,112,1565,8,112,10,112,12,112,1568,9,112,1,112,1,112,1,112,3,112, + 1573,8,112,1,113,1,113,1,113,1,114,1,114,1,115,1,115,1,115,1,115, + 1,115,1,115,1,115,1,116,1,116,1,117,1,117,1,118,1,118,1,118,1,119, + 1,119,1,119,1,119,5,119,1598,8,119,10,119,12,119,1601,9,119,1,120, + 1,120,1,120,1,120,1,121,3,121,1608,8,121,1,121,1,121,3,121,1612, + 8,121,1,121,3,121,1615,8,121,1,121,3,121,1618,8,121,1,121,1,121, + 1,122,1,122,1,122,3,122,1625,8,122,1,122,3,122,1628,8,122,1,122, + 3,122,1631,8,122,1,122,3,122,1634,8,122,1,122,3,122,1637,8,122,1, + 122,3,122,1640,8,122,1,122,1,122,1,122,3,122,1645,8,122,1,122,3, + 122,1648,8,122,1,123,1,123,1,123,1,123,1,123,5,123,1655,8,123,10, + 123,12,123,1658,9,123,1,124,1,124,3,124,1662,8,124,1,124,1,124,3, + 124,1666,8,124,1,125,1,125,1,125,3,125,1671,8,125,1,126,1,126,1, + 126,1,126,3,126,1677,8,126,1,126,1,126,1,126,3,126,1682,8,126,5, + 126,1684,8,126,10,126,12,126,1687,9,126,1,127,1,127,1,127,1,127, + 1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, + 1,127,3,127,1705,8,127,1,128,1,128,1,128,1,128,5,128,1711,8,128, + 10,128,12,128,1714,9,128,1,129,1,129,1,129,4,129,1719,8,129,11,129, + 12,129,1720,1,129,1,129,3,129,1725,8,129,1,130,1,130,3,130,1729, + 8,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,1739, + 8,131,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,5,132,1884,8,132, - 10,132,12,132,1887,9,132,1,133,1,133,1,133,4,133,1892,8,133,11,133, - 12,133,1893,1,133,1,133,3,133,1898,8,133,1,133,1,133,1,133,1,133, - 1,133,4,133,1905,8,133,11,133,12,133,1906,1,133,1,133,3,133,1911, - 8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,3,133,1927,8,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,3,133,1936,8,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,1,133,1,133,3,133,1960,8,133,1,133,1,133, - 1,133,5,133,1965,8,133,10,133,12,133,1968,9,133,3,133,1970,8,133, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,1981, - 8,133,1,133,1,133,1,133,1,133,1,133,5,133,1988,8,133,10,133,12,133, - 1991,9,133,1,134,1,134,1,135,1,135,3,135,1997,8,135,1,136,1,136, - 1,136,1,136,3,136,2003,8,136,1,137,1,137,1,138,1,138,1,139,1,139, - 3,139,2011,8,139,1,140,1,140,1,140,3,140,2016,8,140,1,141,1,141, - 3,141,2020,8,141,1,142,1,142,1,142,4,142,2025,8,142,11,142,12,142, - 2026,1,143,1,143,1,143,3,143,2032,8,143,1,144,1,144,1,144,1,144, - 1,144,1,145,3,145,2040,8,145,1,145,1,145,3,145,2044,8,145,1,146, - 3,146,2047,8,146,1,146,1,146,3,146,2051,8,146,1,147,1,147,1,147, - 1,148,1,148,4,148,2058,8,148,11,148,12,148,2059,1,148,3,148,2063, - 8,148,1,149,1,149,1,149,1,149,1,150,1,150,1,150,5,150,2072,8,150, - 10,150,12,150,2075,9,150,1,151,1,151,1,151,3,151,2080,8,151,1,152, - 1,152,1,153,1,153,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,156, - 1,156,1,157,1,157,1,157,3,157,2098,8,157,1,158,1,158,1,158,3,158, - 2103,8,158,1,159,1,159,1,159,3,159,2108,8,159,1,159,1,159,1,159, - 1,159,1,159,3,159,2115,8,159,3,159,2117,8,159,1,160,1,160,1,160, - 3,160,2122,8,160,1,160,1,160,1,160,1,160,1,160,3,160,2129,8,160, - 3,160,2131,8,160,1,161,1,161,1,161,3,161,2136,8,161,1,161,1,161, - 1,161,1,161,1,161,3,161,2143,8,161,3,161,2145,8,161,1,162,1,162, - 1,162,3,162,2150,8,162,1,162,1,162,1,162,1,162,1,162,3,162,2157, - 8,162,3,162,2159,8,162,1,163,1,163,1,163,5,163,2164,8,163,10,163, - 12,163,2167,9,163,1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,166, - 1,166,1,166,1,167,1,167,1,167,1,167,5,167,2183,8,167,10,167,12,167, - 2186,9,167,1,167,1,167,1,168,1,168,3,168,2192,8,168,1,168,3,168, - 2195,8,168,1,169,1,169,1,169,3,169,2200,8,169,1,170,1,170,1,170, - 1,170,3,170,2206,8,170,1,171,1,171,1,171,1,171,1,171,1,171,3,171, - 2214,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,3,172,2230,8,172,1,173,1,173,1,173, - 1,173,1,173,1,173,1,173,3,173,2239,8,173,1,174,1,174,1,175,1,175, - 1,176,1,176,1,176,1,176,3,176,2249,8,176,1,176,1,176,1,176,1,176, - 1,176,3,176,2256,8,176,1,176,3,176,2259,8,176,1,177,1,177,1,177, - 1,178,1,178,1,179,1,179,1,180,1,180,1,181,1,181,1,182,1,182,1,183, - 1,183,1,184,1,184,1,185,1,185,1,186,1,186,1,186,1,2165,5,156,176, - 258,264,266,187,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, - 0,45,2,0,109,109,450,450,3,0,45,45,128,128,188,188,4,0,42,42,90, - 90,422,422,464,464,2,0,441,441,447,447,2,0,151,151,170,170,2,0,437, - 437,489,489,2,0,482,485,487,487,3,0,32,32,91,91,244,244,11,0,28, - 29,35,35,46,46,92,92,178,179,344,344,360,360,378,378,381,381,387, - 387,416,417,2,0,433,433,435,435,4,0,101,102,115,115,144,144,246, - 246,2,0,13,13,231,231,2,0,455,455,462,462,3,0,5,5,270,270,444,444, - 3,0,266,266,455,455,462,462,3,0,425,425,458,458,477,477,3,0,330, - 330,465,465,481,481,2,0,440,440,490,490,2,0,183,183,265,265,3,0, - 130,130,180,180,402,402,4,0,152,152,174,174,201,201,317,317,3,0, - 445,445,459,459,499,499,4,0,250,250,446,446,494,496,498,498,2,0, - 74,74,320,320,3,0,459,459,492,492,499,499,2,0,439,439,450,450,2, - 0,457,457,467,467,4,0,140,140,244,244,397,397,404,404,2,0,19,19, - 369,369,2,0,5,5,11,11,2,0,509,509,529,530,4,0,452,452,527,527,531, - 531,534,534,2,0,529,530,532,532,1,0,529,530,1,0,538,539,2,0,538, - 538,541,541,4,0,452,452,527,527,529,531,533,534,3,0,241,241,508, - 509,529,530,2,0,140,140,397,397,2,0,5,5,113,113,10,0,97,97,165,165, - 222,222,229,229,334,334,436,436,470,470,472,472,488,488,502,502, - 15,0,97,97,165,165,222,222,229,229,334,334,427,427,436,436,442,442, - 448,449,454,454,460,460,470,475,488,488,491,491,502,503,11,0,5,5, - 13,13,33,33,78,78,84,85,113,113,200,200,207,208,389,389,413,413, - 527,527,55,0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69, - 75,75,78,78,84,85,91,91,98,99,107,107,119,119,134,134,139,139,143, - 143,145,145,160,160,165,165,167,167,194,194,197,197,199,199,201, - 201,205,205,207,209,214,214,220,220,222,223,229,229,243,243,245, - 245,264,264,276,276,281,281,283,283,293,293,317,317,321,323,334, - 334,357,358,364,364,367,367,378,380,395,395,398,399,408,408,419, - 420,436,436,469,469,488,488,502,502,1,0,437,504,2486,0,377,1,0,0, - 0,2,387,1,0,0,0,4,401,1,0,0,0,6,403,1,0,0,0,8,419,1,0,0,0,10,423, - 1,0,0,0,12,425,1,0,0,0,14,428,1,0,0,0,16,439,1,0,0,0,18,447,1,0, - 0,0,20,455,1,0,0,0,22,457,1,0,0,0,24,509,1,0,0,0,26,511,1,0,0,0, - 28,518,1,0,0,0,30,522,1,0,0,0,32,526,1,0,0,0,34,530,1,0,0,0,36,584, - 1,0,0,0,38,590,1,0,0,0,40,596,1,0,0,0,42,598,1,0,0,0,44,640,1,0, - 0,0,46,654,1,0,0,0,48,656,1,0,0,0,50,667,1,0,0,0,52,671,1,0,0,0, - 54,673,1,0,0,0,56,721,1,0,0,0,58,723,1,0,0,0,60,727,1,0,0,0,62,735, - 1,0,0,0,64,743,1,0,0,0,66,747,1,0,0,0,68,782,1,0,0,0,70,798,1,0, - 0,0,72,800,1,0,0,0,74,810,1,0,0,0,76,812,1,0,0,0,78,819,1,0,0,0, - 80,821,1,0,0,0,82,829,1,0,0,0,84,837,1,0,0,0,86,839,1,0,0,0,88,843, - 1,0,0,0,90,847,1,0,0,0,92,870,1,0,0,0,94,874,1,0,0,0,96,876,1,0, - 0,0,98,892,1,0,0,0,100,894,1,0,0,0,102,899,1,0,0,0,104,911,1,0,0, - 0,106,930,1,0,0,0,108,950,1,0,0,0,110,961,1,0,0,0,112,963,1,0,0, - 0,114,976,1,0,0,0,116,983,1,0,0,0,118,986,1,0,0,0,120,995,1,0,0, - 0,122,999,1,0,0,0,124,1003,1,0,0,0,126,1006,1,0,0,0,128,1014,1,0, - 0,0,130,1019,1,0,0,0,132,1036,1,0,0,0,134,1043,1,0,0,0,136,1053, - 1,0,0,0,138,1062,1,0,0,0,140,1072,1,0,0,0,142,1091,1,0,0,0,144,1093, - 1,0,0,0,146,1106,1,0,0,0,148,1109,1,0,0,0,150,1118,1,0,0,0,152,1129, - 1,0,0,0,154,1142,1,0,0,0,156,1177,1,0,0,0,158,1196,1,0,0,0,160,1205, - 1,0,0,0,162,1214,1,0,0,0,164,1233,1,0,0,0,166,1255,1,0,0,0,168,1257, - 1,0,0,0,170,1287,1,0,0,0,172,1301,1,0,0,0,174,1303,1,0,0,0,176,1317, - 1,0,0,0,178,1343,1,0,0,0,180,1386,1,0,0,0,182,1388,1,0,0,0,184,1394, - 1,0,0,0,186,1396,1,0,0,0,188,1401,1,0,0,0,190,1406,1,0,0,0,192,1418, - 1,0,0,0,194,1435,1,0,0,0,196,1437,1,0,0,0,198,1439,1,0,0,0,200,1448, - 1,0,0,0,202,1450,1,0,0,0,204,1453,1,0,0,0,206,1503,1,0,0,0,208,1505, - 1,0,0,0,210,1508,1,0,0,0,212,1510,1,0,0,0,214,1517,1,0,0,0,216,1519, - 1,0,0,0,218,1521,1,0,0,0,220,1524,1,0,0,0,222,1533,1,0,0,0,224,1538, - 1,0,0,0,226,1552,1,0,0,0,228,1580,1,0,0,0,230,1590,1,0,0,0,232,1598, - 1,0,0,0,234,1603,1,0,0,0,236,1635,1,0,0,0,238,1637,1,0,0,0,240,1646, - 1,0,0,0,242,1657,1,0,0,0,244,1669,1,0,0,0,246,1695,1,0,0,0,248,1697, - 1,0,0,0,250,1715,1,0,0,0,252,1717,1,0,0,0,254,1722,1,0,0,0,256,1725, - 1,0,0,0,258,1739,1,0,0,0,260,1825,1,0,0,0,262,1856,1,0,0,0,264,1862, - 1,0,0,0,266,1980,1,0,0,0,268,1992,1,0,0,0,270,1996,1,0,0,0,272,2002, - 1,0,0,0,274,2004,1,0,0,0,276,2006,1,0,0,0,278,2010,1,0,0,0,280,2012, - 1,0,0,0,282,2017,1,0,0,0,284,2024,1,0,0,0,286,2028,1,0,0,0,288,2033, - 1,0,0,0,290,2043,1,0,0,0,292,2046,1,0,0,0,294,2052,1,0,0,0,296,2062, - 1,0,0,0,298,2064,1,0,0,0,300,2068,1,0,0,0,302,2079,1,0,0,0,304,2081, - 1,0,0,0,306,2083,1,0,0,0,308,2085,1,0,0,0,310,2090,1,0,0,0,312,2092, - 1,0,0,0,314,2094,1,0,0,0,316,2099,1,0,0,0,318,2116,1,0,0,0,320,2130, - 1,0,0,0,322,2144,1,0,0,0,324,2158,1,0,0,0,326,2160,1,0,0,0,328,2168, - 1,0,0,0,330,2171,1,0,0,0,332,2175,1,0,0,0,334,2178,1,0,0,0,336,2189, - 1,0,0,0,338,2199,1,0,0,0,340,2205,1,0,0,0,342,2213,1,0,0,0,344,2229, - 1,0,0,0,346,2238,1,0,0,0,348,2240,1,0,0,0,350,2242,1,0,0,0,352,2258, - 1,0,0,0,354,2260,1,0,0,0,356,2263,1,0,0,0,358,2265,1,0,0,0,360,2267, - 1,0,0,0,362,2269,1,0,0,0,364,2271,1,0,0,0,366,2273,1,0,0,0,368,2275, - 1,0,0,0,370,2277,1,0,0,0,372,2279,1,0,0,0,374,376,3,2,1,0,375,374, - 1,0,0,0,376,379,1,0,0,0,377,375,1,0,0,0,377,378,1,0,0,0,378,380, - 1,0,0,0,379,377,1,0,0,0,380,381,5,0,0,1,381,1,1,0,0,0,382,384,3, - 4,2,0,383,385,5,521,0,0,384,383,1,0,0,0,384,385,1,0,0,0,385,388, - 1,0,0,0,386,388,3,6,3,0,387,382,1,0,0,0,387,386,1,0,0,0,388,3,1, - 0,0,0,389,402,3,8,4,0,390,402,3,10,5,0,391,402,3,12,6,0,392,402, - 3,14,7,0,393,402,3,20,10,0,394,402,3,24,12,0,395,402,3,26,13,0,396, - 402,3,28,14,0,397,402,3,30,15,0,398,402,3,32,16,0,399,402,3,34,17, - 0,400,402,3,36,18,0,401,389,1,0,0,0,401,390,1,0,0,0,401,391,1,0, - 0,0,401,392,1,0,0,0,401,393,1,0,0,0,401,394,1,0,0,0,401,395,1,0, - 0,0,401,396,1,0,0,0,401,397,1,0,0,0,401,398,1,0,0,0,401,399,1,0, - 0,0,401,400,1,0,0,0,402,5,1,0,0,0,403,404,5,521,0,0,404,7,1,0,0, - 0,405,420,3,40,20,0,406,420,3,102,51,0,407,420,3,104,52,0,408,420, - 3,106,53,0,409,420,3,100,50,0,410,420,3,112,56,0,411,420,3,126,63, - 0,412,420,3,128,64,0,413,420,3,130,65,0,414,420,3,132,66,0,415,420, - 3,134,67,0,416,420,3,136,68,0,417,420,3,138,69,0,418,420,3,140,70, - 0,419,405,1,0,0,0,419,406,1,0,0,0,419,407,1,0,0,0,419,408,1,0,0, - 0,419,409,1,0,0,0,419,410,1,0,0,0,419,411,1,0,0,0,419,412,1,0,0, - 0,419,413,1,0,0,0,419,414,1,0,0,0,419,415,1,0,0,0,419,416,1,0,0, - 0,419,417,1,0,0,0,419,418,1,0,0,0,420,9,1,0,0,0,421,424,3,156,78, - 0,422,424,3,142,71,0,423,421,1,0,0,0,423,422,1,0,0,0,424,11,1,0, - 0,0,425,426,7,0,0,0,426,427,3,320,160,0,427,13,1,0,0,0,428,432,5, - 135,0,0,429,433,3,16,8,0,430,431,5,479,0,0,431,433,5,146,0,0,432, - 429,1,0,0,0,432,430,1,0,0,0,432,433,1,0,0,0,433,437,1,0,0,0,434, - 438,3,10,5,0,435,438,3,144,72,0,436,438,3,154,77,0,437,434,1,0,0, - 0,437,435,1,0,0,0,437,436,1,0,0,0,438,15,1,0,0,0,439,444,3,18,9, - 0,440,441,5,520,0,0,441,443,3,18,9,0,442,440,1,0,0,0,443,446,1,0, - 0,0,444,442,1,0,0,0,444,445,1,0,0,0,445,17,1,0,0,0,446,444,1,0,0, - 0,447,448,7,1,0,0,448,19,1,0,0,0,449,450,5,410,0,0,450,451,5,441, - 0,0,451,456,3,310,155,0,452,453,5,410,0,0,453,456,3,314,157,0,454, - 456,3,22,11,0,455,449,1,0,0,0,455,452,1,0,0,0,455,454,1,0,0,0,456, - 21,1,0,0,0,457,458,5,410,0,0,458,459,5,227,0,0,459,464,3,326,163, - 0,460,461,5,520,0,0,461,463,3,326,163,0,462,460,1,0,0,0,463,466, - 1,0,0,0,464,462,1,0,0,0,464,465,1,0,0,0,465,23,1,0,0,0,466,464,1, - 0,0,0,467,468,5,341,0,0,468,510,7,2,0,0,469,470,5,341,0,0,470,471, - 5,76,0,0,471,510,7,3,0,0,472,473,5,341,0,0,473,476,5,374,0,0,474, - 475,7,4,0,0,475,477,3,314,157,0,476,474,1,0,0,0,476,477,1,0,0,0, - 477,479,1,0,0,0,478,480,3,262,131,0,479,478,1,0,0,0,479,480,1,0, - 0,0,480,510,1,0,0,0,481,482,5,341,0,0,482,483,5,58,0,0,483,486,7, - 4,0,0,484,487,3,322,161,0,485,487,3,320,160,0,486,484,1,0,0,0,486, - 485,1,0,0,0,487,489,1,0,0,0,488,490,3,262,131,0,489,488,1,0,0,0, - 489,490,1,0,0,0,490,510,1,0,0,0,491,492,5,341,0,0,492,497,5,72,0, - 0,493,494,5,373,0,0,494,498,3,320,160,0,495,496,5,501,0,0,496,498, - 3,322,161,0,497,493,1,0,0,0,497,495,1,0,0,0,498,510,1,0,0,0,499, - 501,5,341,0,0,500,502,5,411,0,0,501,500,1,0,0,0,501,502,1,0,0,0, - 502,503,1,0,0,0,503,510,5,154,0,0,504,506,5,341,0,0,505,507,5,152, - 0,0,506,505,1,0,0,0,506,507,1,0,0,0,507,508,1,0,0,0,508,510,5,227, - 0,0,509,467,1,0,0,0,509,469,1,0,0,0,509,472,1,0,0,0,509,481,1,0, - 0,0,509,491,1,0,0,0,509,499,1,0,0,0,509,504,1,0,0,0,510,25,1,0,0, - 0,511,512,5,468,0,0,512,513,5,226,0,0,513,516,3,326,163,0,514,515, - 5,433,0,0,515,517,3,334,167,0,516,514,1,0,0,0,516,517,1,0,0,0,517, - 27,1,0,0,0,518,519,5,500,0,0,519,520,5,226,0,0,520,521,3,326,163, - 0,521,29,1,0,0,0,522,524,5,340,0,0,523,525,3,336,168,0,524,523,1, - 0,0,0,524,525,1,0,0,0,525,31,1,0,0,0,526,528,5,312,0,0,527,529,3, - 338,169,0,528,527,1,0,0,0,528,529,1,0,0,0,529,33,1,0,0,0,530,531, - 7,5,0,0,531,532,5,463,0,0,532,533,3,110,55,0,533,35,1,0,0,0,534, - 535,5,437,0,0,535,536,5,463,0,0,536,537,5,433,0,0,537,540,3,38,19, - 0,538,539,5,17,0,0,539,541,3,326,163,0,540,538,1,0,0,0,540,541,1, - 0,0,0,541,585,1,0,0,0,542,543,5,437,0,0,543,544,5,456,0,0,544,545, - 5,433,0,0,545,548,3,38,19,0,546,547,5,17,0,0,547,549,3,326,163,0, - 548,546,1,0,0,0,548,549,1,0,0,0,549,552,1,0,0,0,550,551,5,311,0, - 0,551,553,3,326,163,0,552,550,1,0,0,0,552,553,1,0,0,0,553,585,1, - 0,0,0,554,555,5,437,0,0,555,556,7,6,0,0,556,557,5,433,0,0,557,558, - 3,38,19,0,558,559,5,311,0,0,559,560,3,326,163,0,560,585,1,0,0,0, - 561,562,5,437,0,0,562,563,5,486,0,0,563,585,3,38,19,0,564,565,5, - 437,0,0,565,566,5,453,0,0,566,567,5,456,0,0,567,568,5,433,0,0,568, - 569,3,38,19,0,569,570,5,311,0,0,570,571,3,326,163,0,571,572,5,466, - 0,0,572,573,3,326,163,0,573,585,1,0,0,0,574,575,5,437,0,0,575,576, - 5,443,0,0,576,577,5,456,0,0,577,578,5,433,0,0,578,579,3,38,19,0, - 579,580,5,146,0,0,580,581,3,326,163,0,581,582,5,17,0,0,582,583,3, - 326,163,0,583,585,1,0,0,0,584,534,1,0,0,0,584,542,1,0,0,0,584,554, - 1,0,0,0,584,561,1,0,0,0,584,564,1,0,0,0,584,574,1,0,0,0,585,37,1, - 0,0,0,586,588,5,534,0,0,587,586,1,0,0,0,587,588,1,0,0,0,588,589, - 1,0,0,0,589,591,3,326,163,0,590,587,1,0,0,0,591,592,1,0,0,0,592, - 590,1,0,0,0,592,593,1,0,0,0,593,39,1,0,0,0,594,597,3,42,21,0,595, - 597,3,44,22,0,596,594,1,0,0,0,596,595,1,0,0,0,597,41,1,0,0,0,598, - 600,5,72,0,0,599,601,5,497,0,0,600,599,1,0,0,0,600,601,1,0,0,0,601, - 602,1,0,0,0,602,604,5,373,0,0,603,605,3,330,165,0,604,603,1,0,0, - 0,604,605,1,0,0,0,605,606,1,0,0,0,606,607,3,318,159,0,607,608,5, - 516,0,0,608,613,3,46,23,0,609,610,5,520,0,0,610,612,3,46,23,0,611, - 609,1,0,0,0,612,615,1,0,0,0,613,611,1,0,0,0,613,614,1,0,0,0,614, - 618,1,0,0,0,615,613,1,0,0,0,616,617,5,520,0,0,617,619,3,80,40,0, - 618,616,1,0,0,0,618,619,1,0,0,0,619,622,1,0,0,0,620,621,5,520,0, - 0,621,623,3,82,41,0,622,620,1,0,0,0,622,623,1,0,0,0,623,626,1,0, - 0,0,624,625,5,520,0,0,625,627,3,86,43,0,626,624,1,0,0,0,626,627, - 1,0,0,0,627,628,1,0,0,0,628,631,5,517,0,0,629,630,5,59,0,0,630,632, - 5,537,0,0,631,629,1,0,0,0,631,632,1,0,0,0,632,634,1,0,0,0,633,635, - 3,88,44,0,634,633,1,0,0,0,634,635,1,0,0,0,635,636,1,0,0,0,636,638, - 3,328,164,0,637,639,3,96,48,0,638,637,1,0,0,0,638,639,1,0,0,0,639, - 43,1,0,0,0,640,641,5,72,0,0,641,643,5,373,0,0,642,644,3,330,165, - 0,643,642,1,0,0,0,643,644,1,0,0,0,644,645,1,0,0,0,645,646,3,318, - 159,0,646,649,3,328,164,0,647,648,5,17,0,0,648,650,3,156,78,0,649, - 647,1,0,0,0,649,650,1,0,0,0,650,45,1,0,0,0,651,655,3,48,24,0,652, - 655,3,72,36,0,653,655,3,76,38,0,654,651,1,0,0,0,654,652,1,0,0,0, - 654,653,1,0,0,0,655,47,1,0,0,0,656,657,3,50,25,0,657,659,3,56,28, - 0,658,660,3,70,35,0,659,658,1,0,0,0,659,660,1,0,0,0,660,663,1,0, - 0,0,661,662,5,59,0,0,662,664,5,537,0,0,663,661,1,0,0,0,663,664,1, - 0,0,0,664,49,1,0,0,0,665,668,3,326,163,0,666,668,3,256,128,0,667, - 665,1,0,0,0,667,666,1,0,0,0,668,51,1,0,0,0,669,672,3,326,163,0,670, - 672,4,26,0,0,671,669,1,0,0,0,671,670,1,0,0,0,672,53,1,0,0,0,673, - 674,5,516,0,0,674,679,3,52,26,0,675,676,5,520,0,0,676,678,3,52,26, - 0,677,675,1,0,0,0,678,681,1,0,0,0,679,677,1,0,0,0,679,680,1,0,0, - 0,680,682,1,0,0,0,681,679,1,0,0,0,682,683,5,517,0,0,683,55,1,0,0, - 0,684,722,7,7,0,0,685,687,7,8,0,0,686,688,3,58,29,0,687,686,1,0, - 0,0,687,688,1,0,0,0,688,722,1,0,0,0,689,691,5,379,0,0,690,692,3, - 58,29,0,691,690,1,0,0,0,691,692,1,0,0,0,692,699,1,0,0,0,693,695, - 7,9,0,0,694,696,5,206,0,0,695,694,1,0,0,0,695,696,1,0,0,0,696,697, - 1,0,0,0,697,698,5,378,0,0,698,700,5,504,0,0,699,693,1,0,0,0,699, - 700,1,0,0,0,700,722,1,0,0,0,701,703,7,10,0,0,702,704,3,60,30,0,703, - 702,1,0,0,0,703,704,1,0,0,0,704,722,1,0,0,0,705,707,7,11,0,0,706, - 708,3,64,32,0,707,706,1,0,0,0,707,708,1,0,0,0,708,722,1,0,0,0,709, - 711,5,469,0,0,710,712,3,66,33,0,711,710,1,0,0,0,711,712,1,0,0,0, - 712,722,1,0,0,0,713,715,5,321,0,0,714,716,3,68,34,0,715,714,1,0, - 0,0,715,716,1,0,0,0,716,722,1,0,0,0,717,719,5,294,0,0,718,720,3, - 62,31,0,719,718,1,0,0,0,719,720,1,0,0,0,720,722,1,0,0,0,721,684, - 1,0,0,0,721,685,1,0,0,0,721,689,1,0,0,0,721,701,1,0,0,0,721,705, - 1,0,0,0,721,709,1,0,0,0,721,713,1,0,0,0,721,717,1,0,0,0,722,57,1, - 0,0,0,723,724,5,516,0,0,724,725,3,358,179,0,725,726,5,517,0,0,726, - 59,1,0,0,0,727,728,5,516,0,0,728,731,3,358,179,0,729,730,5,520,0, - 0,730,732,3,358,179,0,731,729,1,0,0,0,731,732,1,0,0,0,732,733,1, - 0,0,0,733,734,5,517,0,0,734,61,1,0,0,0,735,736,5,516,0,0,736,739, - 3,356,178,0,737,738,5,520,0,0,738,740,3,356,178,0,739,737,1,0,0, - 0,739,740,1,0,0,0,740,741,1,0,0,0,741,742,5,517,0,0,742,63,1,0,0, - 0,743,744,5,507,0,0,744,745,3,56,28,0,745,746,5,506,0,0,746,65,1, - 0,0,0,747,748,5,507,0,0,748,749,3,56,28,0,749,750,5,520,0,0,750, - 751,3,56,28,0,751,752,1,0,0,0,752,753,5,506,0,0,753,67,1,0,0,0,754, - 755,5,507,0,0,755,756,3,52,26,0,756,763,3,56,28,0,757,758,5,520, - 0,0,758,759,3,52,26,0,759,760,3,56,28,0,760,762,1,0,0,0,761,757, - 1,0,0,0,762,765,1,0,0,0,763,761,1,0,0,0,763,764,1,0,0,0,764,766, - 1,0,0,0,765,763,1,0,0,0,766,767,5,506,0,0,767,783,1,0,0,0,768,769, - 5,516,0,0,769,770,3,52,26,0,770,777,3,56,28,0,771,772,5,520,0,0, - 772,773,3,52,26,0,773,774,3,56,28,0,774,776,1,0,0,0,775,771,1,0, - 0,0,776,779,1,0,0,0,777,775,1,0,0,0,777,778,1,0,0,0,778,780,1,0, - 0,0,779,777,1,0,0,0,780,781,5,517,0,0,781,783,1,0,0,0,782,754,1, - 0,0,0,782,768,1,0,0,0,783,69,1,0,0,0,784,785,5,64,0,0,785,787,3, - 84,42,0,786,784,1,0,0,0,786,787,1,0,0,0,787,788,1,0,0,0,788,789, - 5,288,0,0,789,792,5,466,0,0,790,791,5,241,0,0,791,793,5,125,0,0, - 792,790,1,0,0,0,792,793,1,0,0,0,793,799,1,0,0,0,794,796,5,241,0, - 0,795,794,1,0,0,0,795,796,1,0,0,0,796,797,1,0,0,0,797,799,5,244, - 0,0,798,786,1,0,0,0,798,795,1,0,0,0,799,71,1,0,0,0,800,801,3,50, - 25,0,801,802,3,56,28,0,802,805,5,218,0,0,803,804,5,151,0,0,804,806, - 3,74,37,0,805,803,1,0,0,0,805,806,1,0,0,0,806,808,1,0,0,0,807,809, - 5,423,0,0,808,807,1,0,0,0,808,809,1,0,0,0,809,73,1,0,0,0,810,811, - 5,537,0,0,811,75,1,0,0,0,812,813,3,50,25,0,813,814,5,17,0,0,814, - 817,3,78,39,0,815,816,5,59,0,0,816,818,5,537,0,0,817,815,1,0,0,0, - 817,818,1,0,0,0,818,77,1,0,0,0,819,820,3,256,128,0,820,79,1,0,0, - 0,821,822,5,424,0,0,822,823,5,146,0,0,823,824,3,52,26,0,824,825, - 5,17,0,0,825,826,3,256,128,0,826,81,1,0,0,0,827,828,5,64,0,0,828, - 830,3,84,42,0,829,827,1,0,0,0,829,830,1,0,0,0,830,831,1,0,0,0,831, - 832,5,288,0,0,832,833,5,466,0,0,833,834,3,54,27,0,834,835,5,241, - 0,0,835,836,5,125,0,0,836,83,1,0,0,0,837,838,3,302,151,0,838,85, - 1,0,0,0,839,840,5,277,0,0,840,841,5,146,0,0,841,842,5,371,0,0,842, - 87,1,0,0,0,843,844,5,269,0,0,844,845,5,34,0,0,845,846,3,90,45,0, - 846,89,1,0,0,0,847,848,5,516,0,0,848,853,3,92,46,0,849,850,5,520, - 0,0,850,852,3,92,46,0,851,849,1,0,0,0,852,855,1,0,0,0,853,851,1, - 0,0,0,853,854,1,0,0,0,854,856,1,0,0,0,855,853,1,0,0,0,856,857,5, - 517,0,0,857,91,1,0,0,0,858,871,3,52,26,0,859,860,5,516,0,0,860,865, - 3,94,47,0,861,862,5,520,0,0,862,864,3,94,47,0,863,861,1,0,0,0,864, - 867,1,0,0,0,865,863,1,0,0,0,865,866,1,0,0,0,866,868,1,0,0,0,867, - 865,1,0,0,0,868,869,5,517,0,0,869,871,1,0,0,0,870,858,1,0,0,0,870, - 859,1,0,0,0,871,93,1,0,0,0,872,875,3,278,139,0,873,875,3,352,176, - 0,874,872,1,0,0,0,874,873,1,0,0,0,875,95,1,0,0,0,876,877,5,202,0, - 0,877,886,3,320,160,0,878,882,5,516,0,0,879,881,3,98,49,0,880,879, - 1,0,0,0,881,884,1,0,0,0,882,880,1,0,0,0,882,883,1,0,0,0,883,885, - 1,0,0,0,884,882,1,0,0,0,885,887,5,517,0,0,886,878,1,0,0,0,886,887, - 1,0,0,0,887,97,1,0,0,0,888,889,7,12,0,0,889,893,7,13,0,0,890,891, - 7,14,0,0,891,893,7,15,0,0,892,888,1,0,0,0,892,890,1,0,0,0,893,99, - 1,0,0,0,894,895,5,72,0,0,895,896,5,441,0,0,896,897,3,312,156,0,897, - 898,3,328,164,0,898,101,1,0,0,0,899,900,5,72,0,0,900,902,5,447,0, - 0,901,903,3,330,165,0,902,901,1,0,0,0,902,903,1,0,0,0,903,904,1, - 0,0,0,904,907,3,316,158,0,905,906,5,59,0,0,906,908,5,537,0,0,907, - 905,1,0,0,0,907,908,1,0,0,0,908,909,1,0,0,0,909,910,3,328,164,0, - 910,103,1,0,0,0,911,913,5,72,0,0,912,914,5,497,0,0,913,912,1,0,0, - 0,913,914,1,0,0,0,914,915,1,0,0,0,915,917,5,501,0,0,916,918,3,330, - 165,0,917,916,1,0,0,0,917,918,1,0,0,0,918,919,1,0,0,0,919,921,3, - 324,162,0,920,922,3,54,27,0,921,920,1,0,0,0,921,922,1,0,0,0,922, - 925,1,0,0,0,923,924,5,59,0,0,924,926,5,537,0,0,925,923,1,0,0,0,925, - 926,1,0,0,0,926,927,1,0,0,0,927,928,5,17,0,0,928,929,3,156,78,0, - 929,105,1,0,0,0,930,934,5,72,0,0,931,935,5,497,0,0,932,933,5,497, - 0,0,933,935,5,370,0,0,934,931,1,0,0,0,934,932,1,0,0,0,934,935,1, - 0,0,0,935,936,1,0,0,0,936,938,5,153,0,0,937,939,3,330,165,0,938, - 937,1,0,0,0,938,939,1,0,0,0,939,940,1,0,0,0,940,941,3,268,134,0, - 941,942,5,17,0,0,942,945,3,302,151,0,943,944,5,195,0,0,944,946,7, - 16,0,0,945,943,1,0,0,0,945,946,1,0,0,0,946,948,1,0,0,0,947,949,3, - 108,54,0,948,947,1,0,0,0,948,949,1,0,0,0,949,107,1,0,0,0,950,951, - 5,412,0,0,951,952,5,463,0,0,952,958,3,110,55,0,953,954,5,520,0,0, - 954,955,5,463,0,0,955,957,3,110,55,0,956,953,1,0,0,0,957,960,1,0, - 0,0,958,956,1,0,0,0,958,959,1,0,0,0,959,109,1,0,0,0,960,958,1,0, - 0,0,961,962,5,537,0,0,962,111,1,0,0,0,963,964,5,8,0,0,964,966,5, - 373,0,0,965,967,3,332,166,0,966,965,1,0,0,0,966,967,1,0,0,0,967, - 968,1,0,0,0,968,974,3,320,160,0,969,975,3,114,57,0,970,975,3,116, - 58,0,971,975,3,118,59,0,972,975,3,120,60,0,973,975,3,122,61,0,974, - 969,1,0,0,0,974,970,1,0,0,0,974,971,1,0,0,0,974,972,1,0,0,0,974, - 973,1,0,0,0,975,113,1,0,0,0,976,978,5,311,0,0,977,979,3,326,163, - 0,978,977,1,0,0,0,978,979,1,0,0,0,979,980,1,0,0,0,980,981,5,388, - 0,0,981,982,3,326,163,0,982,115,1,0,0,0,983,984,5,340,0,0,984,985, - 3,334,167,0,985,117,1,0,0,0,986,987,5,437,0,0,987,988,5,64,0,0,988, - 989,3,84,42,0,989,990,5,288,0,0,990,991,5,466,0,0,991,993,3,54,27, - 0,992,994,3,124,62,0,993,992,1,0,0,0,993,994,1,0,0,0,994,119,1,0, - 0,0,995,996,5,116,0,0,996,997,5,64,0,0,997,998,3,84,42,0,998,121, - 1,0,0,0,999,1000,5,437,0,0,1000,1001,5,403,0,0,1001,1002,3,54,27, - 0,1002,123,1,0,0,0,1003,1004,5,241,0,0,1004,1005,5,125,0,0,1005, - 125,1,0,0,0,1006,1007,5,8,0,0,1007,1008,5,501,0,0,1008,1012,3,322, - 161,0,1009,1013,3,114,57,0,1010,1011,5,17,0,0,1011,1013,3,156,78, - 0,1012,1009,1,0,0,0,1012,1010,1,0,0,0,1013,127,1,0,0,0,1014,1015, - 5,8,0,0,1015,1016,5,447,0,0,1016,1017,3,314,157,0,1017,1018,3,116, - 58,0,1018,129,1,0,0,0,1019,1023,5,8,0,0,1020,1024,5,497,0,0,1021, - 1022,5,497,0,0,1022,1024,5,370,0,0,1023,1020,1,0,0,0,1023,1021,1, - 0,0,0,1023,1024,1,0,0,0,1024,1025,1,0,0,0,1025,1027,5,153,0,0,1026, - 1028,3,332,166,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,1029,1, - 0,0,0,1029,1030,3,270,135,0,1030,1031,5,17,0,0,1031,1034,3,302,151, - 0,1032,1033,5,195,0,0,1033,1035,7,16,0,0,1034,1032,1,0,0,0,1034, - 1035,1,0,0,0,1035,131,1,0,0,0,1036,1037,5,116,0,0,1037,1039,5,441, - 0,0,1038,1040,3,332,166,0,1039,1038,1,0,0,0,1039,1040,1,0,0,0,1040, - 1041,1,0,0,0,1041,1042,3,310,155,0,1042,133,1,0,0,0,1043,1045,5, - 116,0,0,1044,1046,5,497,0,0,1045,1044,1,0,0,0,1045,1046,1,0,0,0, - 1046,1047,1,0,0,0,1047,1049,5,373,0,0,1048,1050,3,332,166,0,1049, - 1048,1,0,0,0,1049,1050,1,0,0,0,1050,1051,1,0,0,0,1051,1052,3,320, - 160,0,1052,135,1,0,0,0,1053,1054,5,116,0,0,1054,1056,5,447,0,0,1055, - 1057,3,332,166,0,1056,1055,1,0,0,0,1056,1057,1,0,0,0,1057,1058,1, - 0,0,0,1058,1060,3,314,157,0,1059,1061,7,17,0,0,1060,1059,1,0,0,0, - 1060,1061,1,0,0,0,1061,137,1,0,0,0,1062,1064,5,116,0,0,1063,1065, - 5,497,0,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,1066,1,0,0,0, - 1066,1068,5,501,0,0,1067,1069,3,332,166,0,1068,1067,1,0,0,0,1068, - 1069,1,0,0,0,1069,1070,1,0,0,0,1070,1071,3,322,161,0,1071,139,1, - 0,0,0,1072,1076,5,116,0,0,1073,1077,5,497,0,0,1074,1075,5,497,0, - 0,1075,1077,5,370,0,0,1076,1073,1,0,0,0,1076,1074,1,0,0,0,1076,1077, - 1,0,0,0,1077,1078,1,0,0,0,1078,1080,5,153,0,0,1079,1081,3,332,166, - 0,1080,1079,1,0,0,0,1080,1081,1,0,0,0,1081,1082,1,0,0,0,1082,1083, - 3,270,135,0,1083,141,1,0,0,0,1084,1086,5,132,0,0,1085,1084,1,0,0, - 0,1085,1086,1,0,0,0,1086,1087,1,0,0,0,1087,1092,3,144,72,0,1088, - 1092,3,152,76,0,1089,1090,5,132,0,0,1090,1092,3,154,77,0,1091,1085, - 1,0,0,0,1091,1088,1,0,0,0,1091,1089,1,0,0,0,1092,143,1,0,0,0,1093, - 1094,5,177,0,0,1094,1095,7,18,0,0,1095,1104,3,320,160,0,1096,1098, - 3,146,73,0,1097,1096,1,0,0,0,1097,1098,1,0,0,0,1098,1100,1,0,0,0, - 1099,1101,3,54,27,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1102, - 1,0,0,0,1102,1105,3,156,78,0,1103,1105,3,148,74,0,1104,1097,1,0, - 0,0,1104,1103,1,0,0,0,1105,145,1,0,0,0,1106,1107,5,268,0,0,1107, - 1108,3,334,167,0,1108,147,1,0,0,0,1109,1110,5,414,0,0,1110,1115, - 3,150,75,0,1111,1112,5,520,0,0,1112,1114,3,150,75,0,1113,1111,1, - 0,0,0,1114,1117,1,0,0,0,1115,1113,1,0,0,0,1115,1116,1,0,0,0,1116, - 149,1,0,0,0,1117,1115,1,0,0,0,1118,1119,5,516,0,0,1119,1124,3,352, - 176,0,1120,1121,5,520,0,0,1121,1123,3,352,176,0,1122,1120,1,0,0, - 0,1123,1126,1,0,0,0,1124,1122,1,0,0,0,1124,1125,1,0,0,0,1125,1127, - 1,0,0,0,1126,1124,1,0,0,0,1127,1128,5,517,0,0,1128,151,1,0,0,0,1129, - 1130,5,24,0,0,1130,1131,5,354,0,0,1131,1132,5,340,0,0,1132,1136, - 5,521,0,0,1133,1134,3,144,72,0,1134,1135,5,521,0,0,1135,1137,1,0, - 0,0,1136,1133,1,0,0,0,1137,1138,1,0,0,0,1138,1136,1,0,0,0,1138,1139, - 1,0,0,0,1139,1140,1,0,0,0,1140,1141,5,122,0,0,1141,153,1,0,0,0,1142, - 1143,5,354,0,0,1143,1144,5,340,0,0,1144,1148,5,24,0,0,1145,1146, - 3,144,72,0,1146,1147,5,521,0,0,1147,1149,1,0,0,0,1148,1145,1,0,0, - 0,1149,1150,1,0,0,0,1150,1148,1,0,0,0,1150,1151,1,0,0,0,1151,1152, - 1,0,0,0,1152,1153,5,122,0,0,1153,155,1,0,0,0,1154,1155,6,78,-1,0, - 1155,1178,3,158,79,0,1156,1157,3,160,80,0,1157,1158,3,156,78,5,1158, - 1178,1,0,0,0,1159,1160,5,516,0,0,1160,1161,3,156,78,0,1161,1162, - 5,517,0,0,1162,1178,1,0,0,0,1163,1165,3,168,84,0,1164,1166,3,228, - 114,0,1165,1164,1,0,0,0,1165,1166,1,0,0,0,1166,1168,1,0,0,0,1167, - 1169,3,232,116,0,1168,1167,1,0,0,0,1168,1169,1,0,0,0,1169,1178,1, - 0,0,0,1170,1172,3,166,83,0,1171,1173,3,228,114,0,1172,1171,1,0,0, - 0,1172,1173,1,0,0,0,1173,1175,1,0,0,0,1174,1176,3,232,116,0,1175, - 1174,1,0,0,0,1175,1176,1,0,0,0,1176,1178,1,0,0,0,1177,1154,1,0,0, - 0,1177,1156,1,0,0,0,1177,1159,1,0,0,0,1177,1163,1,0,0,0,1177,1170, - 1,0,0,0,1178,1193,1,0,0,0,1179,1180,10,3,0,0,1180,1182,7,19,0,0, - 1181,1183,5,5,0,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183,1184, - 1,0,0,0,1184,1186,3,156,78,0,1185,1187,3,228,114,0,1186,1185,1,0, - 0,0,1186,1187,1,0,0,0,1187,1189,1,0,0,0,1188,1190,3,232,116,0,1189, - 1188,1,0,0,0,1189,1190,1,0,0,0,1190,1192,1,0,0,0,1191,1179,1,0,0, - 0,1192,1195,1,0,0,0,1193,1191,1,0,0,0,1193,1194,1,0,0,0,1194,157, - 1,0,0,0,1195,1193,1,0,0,0,1196,1197,5,414,0,0,1197,1202,3,256,128, - 0,1198,1199,5,520,0,0,1199,1201,3,256,128,0,1200,1198,1,0,0,0,1201, - 1204,1,0,0,0,1202,1200,1,0,0,0,1202,1203,1,0,0,0,1203,159,1,0,0, - 0,1204,1202,1,0,0,0,1205,1206,5,433,0,0,1206,1211,3,162,81,0,1207, - 1208,5,520,0,0,1208,1210,3,162,81,0,1209,1207,1,0,0,0,1210,1213, - 1,0,0,0,1211,1209,1,0,0,0,1211,1212,1,0,0,0,1212,161,1,0,0,0,1213, - 1211,1,0,0,0,1214,1226,3,164,82,0,1215,1216,5,516,0,0,1216,1221, - 3,52,26,0,1217,1218,5,520,0,0,1218,1220,3,52,26,0,1219,1217,1,0, - 0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1221,1222,1,0,0,0,1222,1224, - 1,0,0,0,1223,1221,1,0,0,0,1224,1225,5,517,0,0,1225,1227,1,0,0,0, - 1226,1215,1,0,0,0,1226,1227,1,0,0,0,1227,1228,1,0,0,0,1228,1229, - 5,17,0,0,1229,1230,5,516,0,0,1230,1231,3,156,78,0,1231,1232,5,517, - 0,0,1232,163,1,0,0,0,1233,1234,3,302,151,0,1234,165,1,0,0,0,1235, - 1237,3,168,84,0,1236,1238,3,174,87,0,1237,1236,1,0,0,0,1237,1238, - 1,0,0,0,1238,1240,1,0,0,0,1239,1241,3,202,101,0,1240,1239,1,0,0, - 0,1240,1241,1,0,0,0,1241,1243,1,0,0,0,1242,1244,3,204,102,0,1243, - 1242,1,0,0,0,1243,1244,1,0,0,0,1244,1246,1,0,0,0,1245,1247,3,218, - 109,0,1246,1245,1,0,0,0,1246,1247,1,0,0,0,1247,1249,1,0,0,0,1248, - 1250,3,220,110,0,1249,1248,1,0,0,0,1249,1250,1,0,0,0,1250,1256,1, - 0,0,0,1251,1252,3,168,84,0,1252,1253,3,174,87,0,1253,1254,3,226, - 113,0,1254,1256,1,0,0,0,1255,1235,1,0,0,0,1255,1251,1,0,0,0,1256, - 167,1,0,0,0,1257,1259,5,336,0,0,1258,1260,3,362,181,0,1259,1258, - 1,0,0,0,1259,1260,1,0,0,0,1260,1270,1,0,0,0,1261,1271,5,527,0,0, - 1262,1267,3,170,85,0,1263,1264,5,520,0,0,1264,1266,3,170,85,0,1265, - 1263,1,0,0,0,1266,1269,1,0,0,0,1267,1265,1,0,0,0,1267,1268,1,0,0, - 0,1268,1271,1,0,0,0,1269,1267,1,0,0,0,1270,1261,1,0,0,0,1270,1262, - 1,0,0,0,1271,169,1,0,0,0,1272,1288,3,172,86,0,1273,1278,3,52,26, - 0,1274,1276,5,17,0,0,1275,1274,1,0,0,0,1275,1276,1,0,0,0,1276,1277, - 1,0,0,0,1277,1279,3,256,128,0,1278,1275,1,0,0,0,1278,1279,1,0,0, - 0,1279,1288,1,0,0,0,1280,1285,3,256,128,0,1281,1283,5,17,0,0,1282, - 1281,1,0,0,0,1282,1283,1,0,0,0,1283,1284,1,0,0,0,1284,1286,3,52, - 26,0,1285,1282,1,0,0,0,1285,1286,1,0,0,0,1286,1288,1,0,0,0,1287, - 1272,1,0,0,0,1287,1273,1,0,0,0,1287,1280,1,0,0,0,1288,171,1,0,0, - 0,1289,1290,3,266,133,0,1290,1291,5,262,0,0,1291,1292,3,224,112, - 0,1292,1293,5,17,0,0,1293,1294,3,302,151,0,1294,1302,1,0,0,0,1295, - 1296,3,266,133,0,1296,1297,5,262,0,0,1297,1298,3,294,147,0,1298, - 1299,5,17,0,0,1299,1300,3,302,151,0,1300,1302,1,0,0,0,1301,1289, - 1,0,0,0,1301,1295,1,0,0,0,1302,173,1,0,0,0,1303,1304,5,151,0,0,1304, - 1305,3,176,88,0,1305,175,1,0,0,0,1306,1307,6,88,-1,0,1307,1312,3, - 178,89,0,1308,1309,5,520,0,0,1309,1311,3,178,89,0,1310,1308,1,0, - 0,0,1311,1314,1,0,0,0,1312,1310,1,0,0,0,1312,1313,1,0,0,0,1313,1318, - 1,0,0,0,1314,1312,1,0,0,0,1315,1318,3,186,93,0,1316,1318,3,188,94, - 0,1317,1306,1,0,0,0,1317,1315,1,0,0,0,1317,1316,1,0,0,0,1318,1340, - 1,0,0,0,1319,1320,10,3,0,0,1320,1321,5,73,0,0,1321,1322,5,185,0, - 0,1322,1339,3,176,88,4,1323,1325,10,4,0,0,1324,1326,5,233,0,0,1325, - 1324,1,0,0,0,1325,1326,1,0,0,0,1326,1328,1,0,0,0,1327,1329,7,20, - 0,0,1328,1327,1,0,0,0,1328,1329,1,0,0,0,1329,1331,1,0,0,0,1330,1332, - 5,261,0,0,1331,1330,1,0,0,0,1331,1332,1,0,0,0,1332,1333,1,0,0,0, - 1333,1334,5,185,0,0,1334,1336,3,176,88,0,1335,1337,3,200,100,0,1336, - 1335,1,0,0,0,1336,1337,1,0,0,0,1337,1339,1,0,0,0,1338,1319,1,0,0, - 0,1338,1323,1,0,0,0,1339,1342,1,0,0,0,1340,1338,1,0,0,0,1340,1341, - 1,0,0,0,1341,177,1,0,0,0,1342,1340,1,0,0,0,1343,1345,3,180,90,0, - 1344,1346,3,292,146,0,1345,1344,1,0,0,0,1345,1346,1,0,0,0,1346,179, - 1,0,0,0,1347,1349,5,373,0,0,1348,1347,1,0,0,0,1348,1349,1,0,0,0, - 1349,1350,1,0,0,0,1350,1352,3,320,160,0,1351,1353,3,182,91,0,1352, - 1351,1,0,0,0,1352,1353,1,0,0,0,1353,1387,1,0,0,0,1354,1356,3,322, - 161,0,1355,1357,3,182,91,0,1356,1355,1,0,0,0,1356,1357,1,0,0,0,1357, - 1387,1,0,0,0,1358,1359,5,198,0,0,1359,1360,5,373,0,0,1360,1361,5, - 516,0,0,1361,1362,3,270,135,0,1362,1363,5,516,0,0,1363,1368,3,272, - 136,0,1364,1365,5,520,0,0,1365,1367,3,272,136,0,1366,1364,1,0,0, - 0,1367,1370,1,0,0,0,1368,1366,1,0,0,0,1368,1369,1,0,0,0,1369,1371, - 1,0,0,0,1370,1368,1,0,0,0,1371,1372,5,517,0,0,1372,1373,5,517,0, - 0,1373,1387,1,0,0,0,1374,1376,5,198,0,0,1375,1374,1,0,0,0,1375,1376, - 1,0,0,0,1376,1377,1,0,0,0,1377,1378,5,516,0,0,1378,1379,3,156,78, - 0,1379,1380,5,517,0,0,1380,1387,1,0,0,0,1381,1382,5,405,0,0,1382, - 1383,5,516,0,0,1383,1384,3,256,128,0,1384,1385,5,517,0,0,1385,1387, - 1,0,0,0,1386,1348,1,0,0,0,1386,1354,1,0,0,0,1386,1358,1,0,0,0,1386, - 1375,1,0,0,0,1386,1381,1,0,0,0,1387,181,1,0,0,0,1388,1389,5,146, - 0,0,1389,1390,5,371,0,0,1390,1391,5,17,0,0,1391,1392,5,249,0,0,1392, - 1393,3,184,92,0,1393,183,1,0,0,0,1394,1395,3,256,128,0,1395,185, - 1,0,0,0,1396,1397,5,516,0,0,1397,1398,3,148,74,0,1398,1399,5,517, - 0,0,1399,1400,3,292,146,0,1400,187,1,0,0,0,1401,1402,5,373,0,0,1402, - 1403,5,516,0,0,1403,1404,3,190,95,0,1404,1405,5,517,0,0,1405,189, - 1,0,0,0,1406,1407,3,192,96,0,1407,1408,5,516,0,0,1408,1413,3,194, - 97,0,1409,1410,5,520,0,0,1410,1412,3,194,97,0,1411,1409,1,0,0,0, - 1412,1415,1,0,0,0,1413,1411,1,0,0,0,1413,1414,1,0,0,0,1414,1416, - 1,0,0,0,1415,1413,1,0,0,0,1416,1417,5,517,0,0,1417,191,1,0,0,0,1418, - 1419,7,21,0,0,1419,193,1,0,0,0,1420,1421,5,373,0,0,1421,1436,3,216, - 108,0,1422,1436,3,198,99,0,1423,1436,3,280,140,0,1424,1425,5,446, - 0,0,1425,1426,5,536,0,0,1426,1427,5,373,0,0,1427,1436,3,216,108, - 0,1428,1429,5,498,0,0,1429,1430,5,536,0,0,1430,1436,3,198,99,0,1431, - 1432,3,196,98,0,1432,1433,5,536,0,0,1433,1434,3,280,140,0,1434,1436, - 1,0,0,0,1435,1420,1,0,0,0,1435,1422,1,0,0,0,1435,1423,1,0,0,0,1435, - 1424,1,0,0,0,1435,1428,1,0,0,0,1435,1431,1,0,0,0,1436,195,1,0,0, - 0,1437,1438,7,22,0,0,1438,197,1,0,0,0,1439,1440,5,451,0,0,1440,1441, - 5,516,0,0,1441,1442,3,52,26,0,1442,1443,5,517,0,0,1443,199,1,0,0, - 0,1444,1445,5,253,0,0,1445,1449,3,258,129,0,1446,1447,5,412,0,0, - 1447,1449,3,54,27,0,1448,1444,1,0,0,0,1448,1446,1,0,0,0,1449,201, - 1,0,0,0,1450,1451,5,430,0,0,1451,1452,3,258,129,0,1452,203,1,0,0, - 0,1453,1454,5,159,0,0,1454,1455,5,34,0,0,1455,1460,3,206,103,0,1456, - 1457,5,520,0,0,1457,1459,3,206,103,0,1458,1456,1,0,0,0,1459,1462, - 1,0,0,0,1460,1458,1,0,0,0,1460,1461,1,0,0,0,1461,205,1,0,0,0,1462, - 1460,1,0,0,0,1463,1504,3,52,26,0,1464,1504,3,212,106,0,1465,1466, - 5,516,0,0,1466,1504,5,517,0,0,1467,1468,5,516,0,0,1468,1473,3,256, - 128,0,1469,1470,5,520,0,0,1470,1472,3,256,128,0,1471,1469,1,0,0, - 0,1472,1475,1,0,0,0,1473,1471,1,0,0,0,1473,1474,1,0,0,0,1474,1476, - 1,0,0,0,1475,1473,1,0,0,0,1476,1477,5,517,0,0,1477,1504,1,0,0,0, - 1478,1479,3,210,105,0,1479,1480,5,516,0,0,1480,1485,3,256,128,0, - 1481,1482,5,520,0,0,1482,1484,3,256,128,0,1483,1481,1,0,0,0,1484, - 1487,1,0,0,0,1485,1483,1,0,0,0,1485,1486,1,0,0,0,1486,1488,1,0,0, - 0,1487,1485,1,0,0,0,1488,1489,5,517,0,0,1489,1504,1,0,0,0,1490,1491, - 3,208,104,0,1491,1492,5,516,0,0,1492,1497,3,206,103,0,1493,1494, - 5,520,0,0,1494,1496,3,206,103,0,1495,1493,1,0,0,0,1496,1499,1,0, - 0,0,1497,1495,1,0,0,0,1497,1498,1,0,0,0,1498,1500,1,0,0,0,1499,1497, - 1,0,0,0,1500,1501,5,517,0,0,1501,1504,1,0,0,0,1502,1504,3,256,128, - 0,1503,1463,1,0,0,0,1503,1464,1,0,0,0,1503,1465,1,0,0,0,1503,1467, - 1,0,0,0,1503,1478,1,0,0,0,1503,1490,1,0,0,0,1503,1502,1,0,0,0,1504, - 207,1,0,0,0,1505,1506,5,160,0,0,1506,1507,5,493,0,0,1507,209,1,0, - 0,0,1508,1509,7,23,0,0,1509,211,1,0,0,0,1510,1511,3,214,107,0,1511, - 1512,5,516,0,0,1512,1513,3,216,108,0,1513,1514,5,520,0,0,1514,1515, - 3,280,140,0,1515,1516,5,517,0,0,1516,213,1,0,0,0,1517,1518,7,24, - 0,0,1518,215,1,0,0,0,1519,1520,3,326,163,0,1520,217,1,0,0,0,1521, - 1522,5,163,0,0,1522,1523,3,258,129,0,1523,219,1,0,0,0,1524,1525, - 5,432,0,0,1525,1530,3,222,111,0,1526,1527,5,520,0,0,1527,1529,3, - 222,111,0,1528,1526,1,0,0,0,1529,1532,1,0,0,0,1530,1528,1,0,0,0, - 1530,1531,1,0,0,0,1531,221,1,0,0,0,1532,1530,1,0,0,0,1533,1534,3, - 294,147,0,1534,1535,5,17,0,0,1535,1536,3,224,112,0,1536,223,1,0, - 0,0,1537,1539,3,294,147,0,1538,1537,1,0,0,0,1538,1539,1,0,0,0,1539, - 1540,1,0,0,0,1540,1542,5,516,0,0,1541,1543,3,234,117,0,1542,1541, - 1,0,0,0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1546,3,228,114, - 0,1545,1544,1,0,0,0,1545,1546,1,0,0,0,1546,1548,1,0,0,0,1547,1549, - 3,250,125,0,1548,1547,1,0,0,0,1548,1549,1,0,0,0,1549,1550,1,0,0, - 0,1550,1551,5,517,0,0,1551,225,1,0,0,0,1552,1553,5,213,0,0,1553, - 1555,5,516,0,0,1554,1556,3,234,117,0,1555,1554,1,0,0,0,1555,1556, - 1,0,0,0,1556,1558,1,0,0,0,1557,1559,3,228,114,0,1558,1557,1,0,0, - 0,1558,1559,1,0,0,0,1559,1561,1,0,0,0,1560,1562,3,238,119,0,1561, - 1560,1,0,0,0,1561,1562,1,0,0,0,1562,1564,1,0,0,0,1563,1565,3,244, - 122,0,1564,1563,1,0,0,0,1564,1565,1,0,0,0,1565,1567,1,0,0,0,1566, - 1568,3,246,123,0,1567,1566,1,0,0,0,1567,1568,1,0,0,0,1568,1570,1, - 0,0,0,1569,1571,3,240,120,0,1570,1569,1,0,0,0,1570,1571,1,0,0,0, - 1571,1572,1,0,0,0,1572,1573,3,248,124,0,1573,1578,5,517,0,0,1574, - 1576,5,17,0,0,1575,1574,1,0,0,0,1575,1576,1,0,0,0,1576,1577,1,0, - 0,0,1577,1579,3,302,151,0,1578,1575,1,0,0,0,1578,1579,1,0,0,0,1579, - 227,1,0,0,0,1580,1581,5,258,0,0,1581,1582,5,34,0,0,1582,1587,3,230, - 115,0,1583,1584,5,520,0,0,1584,1586,3,230,115,0,1585,1583,1,0,0, - 0,1586,1589,1,0,0,0,1587,1585,1,0,0,0,1587,1588,1,0,0,0,1588,229, - 1,0,0,0,1589,1587,1,0,0,0,1590,1592,3,52,26,0,1591,1593,7,25,0,0, - 1592,1591,1,0,0,0,1592,1593,1,0,0,0,1593,1596,1,0,0,0,1594,1595, - 5,476,0,0,1595,1597,7,26,0,0,1596,1594,1,0,0,0,1596,1597,1,0,0,0, - 1597,231,1,0,0,0,1598,1601,5,204,0,0,1599,1602,5,5,0,0,1600,1602, - 3,256,128,0,1601,1599,1,0,0,0,1601,1600,1,0,0,0,1602,233,1,0,0,0, - 1603,1604,5,268,0,0,1604,1607,5,34,0,0,1605,1608,3,52,26,0,1606, - 1608,3,266,133,0,1607,1605,1,0,0,0,1607,1606,1,0,0,0,1608,1616,1, - 0,0,0,1609,1612,5,520,0,0,1610,1613,3,52,26,0,1611,1613,3,266,133, - 0,1612,1610,1,0,0,0,1612,1611,1,0,0,0,1613,1615,1,0,0,0,1614,1609, - 1,0,0,0,1615,1618,1,0,0,0,1616,1614,1,0,0,0,1616,1617,1,0,0,0,1617, - 235,1,0,0,0,1618,1616,1,0,0,0,1619,1636,5,527,0,0,1620,1636,5,530, - 0,0,1621,1636,5,535,0,0,1622,1623,5,518,0,0,1623,1624,5,538,0,0, - 1624,1625,5,520,0,0,1625,1626,5,538,0,0,1626,1636,5,519,0,0,1627, - 1628,5,518,0,0,1628,1629,5,538,0,0,1629,1630,5,520,0,0,1630,1636, - 5,519,0,0,1631,1632,5,518,0,0,1632,1633,5,520,0,0,1633,1634,5,538, - 0,0,1634,1636,5,519,0,0,1635,1619,1,0,0,0,1635,1620,1,0,0,0,1635, - 1621,1,0,0,0,1635,1622,1,0,0,0,1635,1627,1,0,0,0,1635,1631,1,0,0, - 0,1636,237,1,0,0,0,1637,1638,5,215,0,0,1638,1643,3,170,85,0,1639, - 1640,5,520,0,0,1640,1642,3,170,85,0,1641,1639,1,0,0,0,1642,1645, - 1,0,0,0,1643,1641,1,0,0,0,1643,1644,1,0,0,0,1644,239,1,0,0,0,1645, - 1643,1,0,0,0,1646,1647,5,271,0,0,1647,1649,5,516,0,0,1648,1650,3, - 242,121,0,1649,1648,1,0,0,0,1650,1651,1,0,0,0,1651,1649,1,0,0,0, - 1651,1652,1,0,0,0,1652,1653,1,0,0,0,1653,1655,5,517,0,0,1654,1656, - 3,254,127,0,1655,1654,1,0,0,0,1655,1656,1,0,0,0,1656,241,1,0,0,0, - 1657,1659,3,304,152,0,1658,1660,3,236,118,0,1659,1658,1,0,0,0,1659, - 1660,1,0,0,0,1660,243,1,0,0,0,1661,1662,5,5,0,0,1662,1663,5,322, - 0,0,1663,1664,5,272,0,0,1664,1670,5,210,0,0,1665,1666,5,254,0,0, - 1666,1667,5,321,0,0,1667,1668,5,272,0,0,1668,1670,5,210,0,0,1669, - 1661,1,0,0,0,1669,1665,1,0,0,0,1670,245,1,0,0,0,1671,1672,5,438, - 0,0,1672,1673,5,210,0,0,1673,1674,5,343,0,0,1674,1675,5,478,0,0, - 1675,1676,5,467,0,0,1676,1696,5,321,0,0,1677,1678,5,438,0,0,1678, - 1679,5,210,0,0,1679,1680,5,343,0,0,1680,1681,5,388,0,0,1681,1682, - 5,237,0,0,1682,1696,5,321,0,0,1683,1684,5,438,0,0,1684,1685,5,210, - 0,0,1685,1686,5,343,0,0,1686,1687,5,388,0,0,1687,1688,5,467,0,0, - 1688,1696,3,304,152,0,1689,1690,5,438,0,0,1690,1691,5,210,0,0,1691, - 1692,5,343,0,0,1692,1693,5,388,0,0,1693,1694,5,457,0,0,1694,1696, - 3,304,152,0,1695,1671,1,0,0,0,1695,1677,1,0,0,0,1695,1683,1,0,0, - 0,1695,1689,1,0,0,0,1696,247,1,0,0,0,1697,1698,5,105,0,0,1698,1703, - 3,170,85,0,1699,1700,5,520,0,0,1700,1702,3,170,85,0,1701,1699,1, - 0,0,0,1702,1705,1,0,0,0,1703,1701,1,0,0,0,1703,1704,1,0,0,0,1704, - 249,1,0,0,0,1705,1703,1,0,0,0,1706,1707,5,292,0,0,1707,1708,5,27, - 0,0,1708,1709,3,280,140,0,1709,1710,3,252,126,0,1710,1716,1,0,0, - 0,1711,1712,5,322,0,0,1712,1713,5,27,0,0,1713,1714,5,538,0,0,1714, - 1716,3,252,126,0,1715,1706,1,0,0,0,1715,1711,1,0,0,0,1716,251,1, - 0,0,0,1717,1718,5,480,0,0,1718,1719,5,10,0,0,1719,1720,5,76,0,0, - 1720,1721,5,321,0,0,1721,253,1,0,0,0,1722,1723,5,434,0,0,1723,1724, - 3,280,140,0,1724,255,1,0,0,0,1725,1726,3,258,129,0,1726,257,1,0, - 0,0,1727,1728,6,129,-1,0,1728,1729,5,241,0,0,1729,1740,3,258,129, - 6,1730,1731,5,133,0,0,1731,1732,5,516,0,0,1732,1733,3,156,78,0,1733, - 1734,5,517,0,0,1734,1740,1,0,0,0,1735,1737,3,264,132,0,1736,1738, - 3,260,130,0,1737,1736,1,0,0,0,1737,1738,1,0,0,0,1738,1740,1,0,0, - 0,1739,1727,1,0,0,0,1739,1730,1,0,0,0,1739,1735,1,0,0,0,1740,1755, - 1,0,0,0,1741,1742,10,3,0,0,1742,1743,5,10,0,0,1743,1754,3,258,129, - 4,1744,1745,10,2,0,0,1745,1746,5,257,0,0,1746,1754,3,258,129,3,1747, - 1748,10,1,0,0,1748,1750,5,184,0,0,1749,1751,5,241,0,0,1750,1749, - 1,0,0,0,1750,1751,1,0,0,0,1751,1752,1,0,0,0,1752,1754,7,27,0,0,1753, - 1741,1,0,0,0,1753,1744,1,0,0,0,1753,1747,1,0,0,0,1754,1757,1,0,0, - 0,1755,1753,1,0,0,0,1755,1756,1,0,0,0,1756,259,1,0,0,0,1757,1755, - 1,0,0,0,1758,1760,5,241,0,0,1759,1758,1,0,0,0,1759,1760,1,0,0,0, - 1760,1761,1,0,0,0,1761,1763,5,27,0,0,1762,1764,7,28,0,0,1763,1762, - 1,0,0,0,1763,1764,1,0,0,0,1764,1765,1,0,0,0,1765,1766,3,264,132, - 0,1766,1767,5,10,0,0,1767,1768,3,264,132,0,1768,1826,1,0,0,0,1769, - 1771,5,241,0,0,1770,1769,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0, - 0,0,1772,1773,5,170,0,0,1773,1774,5,516,0,0,1774,1779,3,256,128, - 0,1775,1776,5,520,0,0,1776,1778,3,256,128,0,1777,1775,1,0,0,0,1778, - 1781,1,0,0,0,1779,1777,1,0,0,0,1779,1780,1,0,0,0,1780,1782,1,0,0, - 0,1781,1779,1,0,0,0,1782,1783,5,517,0,0,1783,1826,1,0,0,0,1784,1786, - 5,241,0,0,1785,1784,1,0,0,0,1785,1786,1,0,0,0,1786,1787,1,0,0,0, - 1787,1788,5,170,0,0,1788,1789,5,516,0,0,1789,1790,3,156,78,0,1790, - 1791,5,517,0,0,1791,1826,1,0,0,0,1792,1793,5,133,0,0,1793,1794,5, - 516,0,0,1794,1795,3,156,78,0,1795,1796,5,517,0,0,1796,1826,1,0,0, - 0,1797,1799,5,241,0,0,1798,1797,1,0,0,0,1798,1799,1,0,0,0,1799,1800, - 1,0,0,0,1800,1801,5,318,0,0,1801,1826,3,264,132,0,1802,1826,3,262, - 131,0,1803,1805,5,184,0,0,1804,1806,5,241,0,0,1805,1804,1,0,0,0, - 1805,1806,1,0,0,0,1806,1807,1,0,0,0,1807,1826,7,27,0,0,1808,1810, - 5,184,0,0,1809,1811,5,241,0,0,1810,1809,1,0,0,0,1810,1811,1,0,0, - 0,1811,1812,1,0,0,0,1812,1813,5,113,0,0,1813,1814,5,151,0,0,1814, - 1826,3,264,132,0,1815,1817,5,241,0,0,1816,1815,1,0,0,0,1816,1817, - 1,0,0,0,1817,1818,1,0,0,0,1818,1819,5,342,0,0,1819,1820,5,388,0, - 0,1820,1823,3,264,132,0,1821,1822,5,127,0,0,1822,1824,3,356,178, - 0,1823,1821,1,0,0,0,1823,1824,1,0,0,0,1824,1826,1,0,0,0,1825,1759, - 1,0,0,0,1825,1770,1,0,0,0,1825,1785,1,0,0,0,1825,1792,1,0,0,0,1825, - 1798,1,0,0,0,1825,1802,1,0,0,0,1825,1803,1,0,0,0,1825,1808,1,0,0, - 0,1825,1816,1,0,0,0,1826,261,1,0,0,0,1827,1829,5,241,0,0,1828,1827, - 1,0,0,0,1828,1829,1,0,0,0,1829,1830,1,0,0,0,1830,1831,5,202,0,0, - 1831,1845,7,29,0,0,1832,1833,5,516,0,0,1833,1846,5,517,0,0,1834, - 1835,5,516,0,0,1835,1840,3,256,128,0,1836,1837,5,520,0,0,1837,1839, - 3,256,128,0,1838,1836,1,0,0,0,1839,1842,1,0,0,0,1840,1838,1,0,0, - 0,1840,1841,1,0,0,0,1841,1843,1,0,0,0,1842,1840,1,0,0,0,1843,1844, - 5,517,0,0,1844,1846,1,0,0,0,1845,1832,1,0,0,0,1845,1834,1,0,0,0, - 1846,1857,1,0,0,0,1847,1849,5,241,0,0,1848,1847,1,0,0,0,1848,1849, - 1,0,0,0,1849,1850,1,0,0,0,1850,1851,5,202,0,0,1851,1854,3,264,132, - 0,1852,1853,5,127,0,0,1853,1855,3,356,178,0,1854,1852,1,0,0,0,1854, - 1855,1,0,0,0,1855,1857,1,0,0,0,1856,1828,1,0,0,0,1856,1848,1,0,0, - 0,1857,263,1,0,0,0,1858,1859,6,132,-1,0,1859,1863,3,266,133,0,1860, - 1861,7,30,0,0,1861,1863,3,264,132,7,1862,1858,1,0,0,0,1862,1860, - 1,0,0,0,1863,1885,1,0,0,0,1864,1865,10,6,0,0,1865,1866,7,31,0,0, - 1866,1884,3,264,132,7,1867,1868,10,5,0,0,1868,1869,7,32,0,0,1869, - 1884,3,264,132,6,1870,1871,10,4,0,0,1871,1872,5,511,0,0,1872,1884, - 3,264,132,5,1873,1874,10,3,0,0,1874,1875,5,512,0,0,1875,1884,3,264, - 132,4,1876,1877,10,2,0,0,1877,1878,5,510,0,0,1878,1884,3,264,132, - 3,1879,1880,10,1,0,0,1880,1881,3,344,172,0,1881,1882,3,264,132,2, - 1882,1884,1,0,0,0,1883,1864,1,0,0,0,1883,1867,1,0,0,0,1883,1870, - 1,0,0,0,1883,1873,1,0,0,0,1883,1876,1,0,0,0,1883,1879,1,0,0,0,1884, - 1887,1,0,0,0,1885,1883,1,0,0,0,1885,1886,1,0,0,0,1886,265,1,0,0, - 0,1887,1885,1,0,0,0,1888,1889,6,133,-1,0,1889,1891,5,40,0,0,1890, - 1892,3,308,154,0,1891,1890,1,0,0,0,1892,1893,1,0,0,0,1893,1891,1, - 0,0,0,1893,1894,1,0,0,0,1894,1897,1,0,0,0,1895,1896,5,120,0,0,1896, - 1898,3,256,128,0,1897,1895,1,0,0,0,1897,1898,1,0,0,0,1898,1899,1, - 0,0,0,1899,1900,5,122,0,0,1900,1981,1,0,0,0,1901,1902,5,40,0,0,1902, - 1904,3,256,128,0,1903,1905,3,308,154,0,1904,1903,1,0,0,0,1905,1906, - 1,0,0,0,1906,1904,1,0,0,0,1906,1907,1,0,0,0,1907,1910,1,0,0,0,1908, - 1909,5,120,0,0,1909,1911,3,256,128,0,1910,1908,1,0,0,0,1910,1911, - 1,0,0,0,1911,1912,1,0,0,0,1912,1913,5,122,0,0,1913,1981,1,0,0,0, - 1914,1915,5,41,0,0,1915,1916,5,516,0,0,1916,1917,3,256,128,0,1917, - 1918,5,17,0,0,1918,1919,3,56,28,0,1919,1920,5,517,0,0,1920,1981, - 1,0,0,0,1921,1922,5,457,0,0,1922,1923,5,516,0,0,1923,1926,3,256, - 128,0,1924,1925,5,461,0,0,1925,1927,5,476,0,0,1926,1924,1,0,0,0, - 1926,1927,1,0,0,0,1927,1928,1,0,0,0,1928,1929,5,517,0,0,1929,1981, - 1,0,0,0,1930,1931,5,467,0,0,1931,1932,5,516,0,0,1932,1935,3,256, - 128,0,1933,1934,5,461,0,0,1934,1936,5,476,0,0,1935,1933,1,0,0,0, - 1935,1936,1,0,0,0,1936,1937,1,0,0,0,1937,1938,5,517,0,0,1938,1981, - 1,0,0,0,1939,1940,5,281,0,0,1940,1941,5,516,0,0,1941,1942,3,264, - 132,0,1942,1943,5,170,0,0,1943,1944,3,264,132,0,1944,1945,5,517, - 0,0,1945,1981,1,0,0,0,1946,1981,3,352,176,0,1947,1981,5,527,0,0, - 1948,1949,3,326,163,0,1949,1950,5,513,0,0,1950,1951,5,527,0,0,1951, - 1981,1,0,0,0,1952,1953,5,516,0,0,1953,1954,3,156,78,0,1954,1955, - 5,517,0,0,1955,1981,1,0,0,0,1956,1957,3,270,135,0,1957,1969,5,516, - 0,0,1958,1960,3,362,181,0,1959,1958,1,0,0,0,1959,1960,1,0,0,0,1960, - 1961,1,0,0,0,1961,1966,3,272,136,0,1962,1963,5,520,0,0,1963,1965, - 3,272,136,0,1964,1962,1,0,0,0,1965,1968,1,0,0,0,1966,1964,1,0,0, - 0,1966,1967,1,0,0,0,1967,1970,1,0,0,0,1968,1966,1,0,0,0,1969,1959, - 1,0,0,0,1969,1970,1,0,0,0,1970,1971,1,0,0,0,1971,1972,5,517,0,0, - 1972,1981,1,0,0,0,1973,1981,3,302,151,0,1974,1981,3,274,137,0,1975, - 1976,5,516,0,0,1976,1977,3,256,128,0,1977,1978,5,517,0,0,1978,1981, - 1,0,0,0,1979,1981,5,85,0,0,1980,1888,1,0,0,0,1980,1901,1,0,0,0,1980, - 1914,1,0,0,0,1980,1921,1,0,0,0,1980,1930,1,0,0,0,1980,1939,1,0,0, - 0,1980,1946,1,0,0,0,1980,1947,1,0,0,0,1980,1948,1,0,0,0,1980,1952, - 1,0,0,0,1980,1956,1,0,0,0,1980,1973,1,0,0,0,1980,1974,1,0,0,0,1980, - 1975,1,0,0,0,1980,1979,1,0,0,0,1981,1989,1,0,0,0,1982,1983,10,5, - 0,0,1983,1984,5,514,0,0,1984,1985,3,264,132,0,1985,1986,5,515,0, - 0,1986,1988,1,0,0,0,1987,1982,1,0,0,0,1988,1991,1,0,0,0,1989,1987, - 1,0,0,0,1989,1990,1,0,0,0,1990,267,1,0,0,0,1991,1989,1,0,0,0,1992, - 1993,3,326,163,0,1993,269,1,0,0,0,1994,1997,3,370,185,0,1995,1997, - 3,326,163,0,1996,1994,1,0,0,0,1996,1995,1,0,0,0,1997,271,1,0,0,0, - 1998,2003,3,368,184,0,1999,2003,3,366,183,0,2000,2003,3,364,182, - 0,2001,2003,3,256,128,0,2002,1998,1,0,0,0,2002,1999,1,0,0,0,2002, - 2000,1,0,0,0,2002,2001,1,0,0,0,2003,273,1,0,0,0,2004,2005,3,326, - 163,0,2005,275,1,0,0,0,2006,2007,3,302,151,0,2007,277,1,0,0,0,2008, - 2011,3,302,151,0,2009,2011,3,274,137,0,2010,2008,1,0,0,0,2010,2009, - 1,0,0,0,2011,279,1,0,0,0,2012,2015,5,182,0,0,2013,2016,3,282,141, - 0,2014,2016,3,286,143,0,2015,2013,1,0,0,0,2015,2014,1,0,0,0,2015, - 2016,1,0,0,0,2016,281,1,0,0,0,2017,2019,3,284,142,0,2018,2020,3, - 288,144,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,283,1,0,0,0,2021, - 2022,3,290,145,0,2022,2023,3,366,183,0,2023,2025,1,0,0,0,2024,2021, - 1,0,0,0,2025,2026,1,0,0,0,2026,2024,1,0,0,0,2026,2027,1,0,0,0,2027, - 285,1,0,0,0,2028,2031,3,288,144,0,2029,2032,3,284,142,0,2030,2032, - 3,288,144,0,2031,2029,1,0,0,0,2031,2030,1,0,0,0,2031,2032,1,0,0, - 0,2032,287,1,0,0,0,2033,2034,3,290,145,0,2034,2035,3,366,183,0,2035, - 2036,5,388,0,0,2036,2037,3,366,183,0,2037,289,1,0,0,0,2038,2040, - 7,33,0,0,2039,2038,1,0,0,0,2039,2040,1,0,0,0,2040,2041,1,0,0,0,2041, - 2044,7,34,0,0,2042,2044,5,537,0,0,2043,2039,1,0,0,0,2043,2042,1, - 0,0,0,2044,291,1,0,0,0,2045,2047,5,17,0,0,2046,2045,1,0,0,0,2046, - 2047,1,0,0,0,2047,2048,1,0,0,0,2048,2050,3,302,151,0,2049,2051,3, - 298,149,0,2050,2049,1,0,0,0,2050,2051,1,0,0,0,2051,293,1,0,0,0,2052, - 2053,3,302,151,0,2053,2054,3,296,148,0,2054,295,1,0,0,0,2055,2056, - 5,221,0,0,2056,2058,3,302,151,0,2057,2055,1,0,0,0,2058,2059,1,0, - 0,0,2059,2057,1,0,0,0,2059,2060,1,0,0,0,2060,2063,1,0,0,0,2061,2063, - 1,0,0,0,2062,2057,1,0,0,0,2062,2061,1,0,0,0,2063,297,1,0,0,0,2064, - 2065,5,516,0,0,2065,2066,3,300,150,0,2066,2067,5,517,0,0,2067,299, - 1,0,0,0,2068,2073,3,302,151,0,2069,2070,5,520,0,0,2070,2072,3,302, - 151,0,2071,2069,1,0,0,0,2072,2075,1,0,0,0,2073,2071,1,0,0,0,2073, - 2074,1,0,0,0,2074,301,1,0,0,0,2075,2073,1,0,0,0,2076,2080,3,304, - 152,0,2077,2080,3,306,153,0,2078,2080,3,372,186,0,2079,2076,1,0, - 0,0,2079,2077,1,0,0,0,2079,2078,1,0,0,0,2080,303,1,0,0,0,2081,2082, - 7,35,0,0,2082,305,1,0,0,0,2083,2084,5,537,0,0,2084,307,1,0,0,0,2085, - 2086,5,428,0,0,2086,2087,3,256,128,0,2087,2088,5,376,0,0,2088,2089, - 3,256,128,0,2089,309,1,0,0,0,2090,2091,3,302,151,0,2091,311,1,0, - 0,0,2092,2093,3,302,151,0,2093,313,1,0,0,0,2094,2097,3,302,151,0, - 2095,2096,5,513,0,0,2096,2098,3,302,151,0,2097,2095,1,0,0,0,2097, - 2098,1,0,0,0,2098,315,1,0,0,0,2099,2102,3,302,151,0,2100,2101,5, - 513,0,0,2101,2103,3,302,151,0,2102,2100,1,0,0,0,2102,2103,1,0,0, - 0,2103,317,1,0,0,0,2104,2107,3,302,151,0,2105,2106,5,513,0,0,2106, - 2108,3,302,151,0,2107,2105,1,0,0,0,2107,2108,1,0,0,0,2108,2117,1, - 0,0,0,2109,2110,3,302,151,0,2110,2111,5,513,0,0,2111,2114,3,302, - 151,0,2112,2113,5,513,0,0,2113,2115,3,302,151,0,2114,2112,1,0,0, - 0,2114,2115,1,0,0,0,2115,2117,1,0,0,0,2116,2104,1,0,0,0,2116,2109, - 1,0,0,0,2117,319,1,0,0,0,2118,2121,3,302,151,0,2119,2120,5,513,0, - 0,2120,2122,3,302,151,0,2121,2119,1,0,0,0,2121,2122,1,0,0,0,2122, - 2131,1,0,0,0,2123,2124,3,302,151,0,2124,2125,5,513,0,0,2125,2128, - 3,302,151,0,2126,2127,5,513,0,0,2127,2129,3,302,151,0,2128,2126, - 1,0,0,0,2128,2129,1,0,0,0,2129,2131,1,0,0,0,2130,2118,1,0,0,0,2130, - 2123,1,0,0,0,2131,321,1,0,0,0,2132,2135,3,302,151,0,2133,2134,5, - 513,0,0,2134,2136,3,302,151,0,2135,2133,1,0,0,0,2135,2136,1,0,0, - 0,2136,2145,1,0,0,0,2137,2138,3,302,151,0,2138,2139,5,513,0,0,2139, - 2142,3,302,151,0,2140,2141,5,513,0,0,2141,2143,3,302,151,0,2142, - 2140,1,0,0,0,2142,2143,1,0,0,0,2143,2145,1,0,0,0,2144,2132,1,0,0, - 0,2144,2137,1,0,0,0,2145,323,1,0,0,0,2146,2149,3,302,151,0,2147, - 2148,5,513,0,0,2148,2150,3,302,151,0,2149,2147,1,0,0,0,2149,2150, - 1,0,0,0,2150,2159,1,0,0,0,2151,2152,3,302,151,0,2152,2153,5,513, - 0,0,2153,2156,3,302,151,0,2154,2155,5,513,0,0,2155,2157,3,302,151, - 0,2156,2154,1,0,0,0,2156,2157,1,0,0,0,2157,2159,1,0,0,0,2158,2146, - 1,0,0,0,2158,2151,1,0,0,0,2159,325,1,0,0,0,2160,2165,3,302,151,0, - 2161,2162,5,513,0,0,2162,2164,3,302,151,0,2163,2161,1,0,0,0,2164, - 2167,1,0,0,0,2165,2166,1,0,0,0,2165,2163,1,0,0,0,2166,327,1,0,0, - 0,2167,2165,1,0,0,0,2168,2169,5,433,0,0,2169,2170,3,334,167,0,2170, - 329,1,0,0,0,2171,2172,5,167,0,0,2172,2173,5,241,0,0,2173,2174,5, - 133,0,0,2174,331,1,0,0,0,2175,2176,5,167,0,0,2176,2177,5,133,0,0, - 2177,333,1,0,0,0,2178,2179,5,516,0,0,2179,2184,3,336,168,0,2180, - 2181,5,520,0,0,2181,2183,3,336,168,0,2182,2180,1,0,0,0,2183,2186, - 1,0,0,0,2184,2182,1,0,0,0,2184,2185,1,0,0,0,2185,2187,1,0,0,0,2186, - 2184,1,0,0,0,2187,2188,5,517,0,0,2188,335,1,0,0,0,2189,2194,3,338, - 169,0,2190,2192,5,505,0,0,2191,2190,1,0,0,0,2191,2192,1,0,0,0,2192, - 2193,1,0,0,0,2193,2195,3,340,170,0,2194,2191,1,0,0,0,2194,2195,1, - 0,0,0,2195,337,1,0,0,0,2196,2200,3,302,151,0,2197,2200,3,274,137, - 0,2198,2200,5,537,0,0,2199,2196,1,0,0,0,2199,2197,1,0,0,0,2199,2198, - 1,0,0,0,2200,339,1,0,0,0,2201,2206,5,538,0,0,2202,2206,5,539,0,0, - 2203,2206,3,360,180,0,2204,2206,5,537,0,0,2205,2201,1,0,0,0,2205, - 2202,1,0,0,0,2205,2203,1,0,0,0,2205,2204,1,0,0,0,2206,341,1,0,0, - 0,2207,2214,5,10,0,0,2208,2209,5,511,0,0,2209,2214,5,511,0,0,2210, - 2214,5,257,0,0,2211,2212,5,510,0,0,2212,2214,5,510,0,0,2213,2207, - 1,0,0,0,2213,2208,1,0,0,0,2213,2210,1,0,0,0,2213,2211,1,0,0,0,2214, - 343,1,0,0,0,2215,2230,5,505,0,0,2216,2230,5,506,0,0,2217,2230,5, - 507,0,0,2218,2219,5,507,0,0,2219,2230,5,505,0,0,2220,2221,5,506, - 0,0,2221,2230,5,505,0,0,2222,2223,5,507,0,0,2223,2230,5,506,0,0, - 2224,2225,5,508,0,0,2225,2230,5,505,0,0,2226,2227,5,507,0,0,2227, - 2228,5,505,0,0,2228,2230,5,506,0,0,2229,2215,1,0,0,0,2229,2216,1, - 0,0,0,2229,2217,1,0,0,0,2229,2218,1,0,0,0,2229,2220,1,0,0,0,2229, - 2222,1,0,0,0,2229,2224,1,0,0,0,2229,2226,1,0,0,0,2230,345,1,0,0, - 0,2231,2232,5,507,0,0,2232,2239,5,507,0,0,2233,2234,5,506,0,0,2234, - 2239,5,506,0,0,2235,2239,5,511,0,0,2236,2239,5,512,0,0,2237,2239, - 5,510,0,0,2238,2231,1,0,0,0,2238,2233,1,0,0,0,2238,2235,1,0,0,0, - 2238,2236,1,0,0,0,2238,2237,1,0,0,0,2239,347,1,0,0,0,2240,2241,7, - 36,0,0,2241,349,1,0,0,0,2242,2243,7,37,0,0,2243,351,1,0,0,0,2244, - 2259,3,280,140,0,2245,2259,3,354,177,0,2246,2259,3,356,178,0,2247, - 2249,5,529,0,0,2248,2247,1,0,0,0,2248,2249,1,0,0,0,2249,2250,1,0, - 0,0,2250,2259,3,358,179,0,2251,2259,3,360,180,0,2252,2259,5,539, - 0,0,2253,2259,5,540,0,0,2254,2256,5,241,0,0,2255,2254,1,0,0,0,2255, - 2256,1,0,0,0,2256,2257,1,0,0,0,2257,2259,5,244,0,0,2258,2244,1,0, - 0,0,2258,2245,1,0,0,0,2258,2246,1,0,0,0,2258,2248,1,0,0,0,2258,2251, - 1,0,0,0,2258,2252,1,0,0,0,2258,2253,1,0,0,0,2258,2255,1,0,0,0,2259, - 353,1,0,0,0,2260,2261,3,364,182,0,2261,2262,3,356,178,0,2262,355, - 1,0,0,0,2263,2264,5,537,0,0,2264,357,1,0,0,0,2265,2266,5,538,0,0, - 2266,359,1,0,0,0,2267,2268,7,38,0,0,2268,361,1,0,0,0,2269,2270,7, - 39,0,0,2270,363,1,0,0,0,2271,2272,7,40,0,0,2272,365,1,0,0,0,2273, - 2274,7,41,0,0,2274,367,1,0,0,0,2275,2276,7,42,0,0,2276,369,1,0,0, - 0,2277,2278,7,43,0,0,2278,371,1,0,0,0,2279,2280,7,44,0,0,2280,373, - 1,0,0,0,270,377,384,387,401,419,423,432,437,444,455,464,476,479, - 486,489,497,501,506,509,516,524,528,540,548,552,584,587,592,596, - 600,604,613,618,622,626,631,634,638,643,649,654,659,663,667,671, - 679,687,691,695,699,703,707,711,715,719,721,731,739,763,777,782, - 786,792,795,798,805,808,817,829,853,865,870,874,882,886,892,902, - 907,913,917,921,925,934,938,945,948,958,966,974,978,993,1012,1023, - 1027,1034,1039,1045,1049,1056,1060,1064,1068,1076,1080,1085,1091, - 1097,1100,1104,1115,1124,1138,1150,1165,1168,1172,1175,1177,1182, - 1186,1189,1193,1202,1211,1221,1226,1237,1240,1243,1246,1249,1255, - 1259,1267,1270,1275,1278,1282,1285,1287,1301,1312,1317,1325,1328, - 1331,1336,1338,1340,1345,1348,1352,1356,1368,1375,1386,1413,1435, - 1448,1460,1473,1485,1497,1503,1530,1538,1542,1545,1548,1555,1558, - 1561,1564,1567,1570,1575,1578,1587,1592,1596,1601,1607,1612,1616, - 1635,1643,1651,1655,1659,1669,1695,1703,1715,1737,1739,1750,1753, - 1755,1759,1763,1770,1779,1785,1798,1805,1810,1816,1823,1825,1828, - 1840,1845,1848,1854,1856,1862,1883,1885,1893,1897,1906,1910,1926, - 1935,1959,1966,1969,1980,1989,1996,2002,2010,2015,2019,2026,2031, - 2039,2043,2046,2050,2059,2062,2073,2079,2097,2102,2107,2114,2116, - 2121,2128,2130,2135,2142,2144,2149,2156,2158,2165,2184,2191,2194, - 2199,2205,2213,2229,2238,2248,2255,2258 + 1,132,1,132,1,132,3,132,1765,8,132,1,133,1,133,1,133,1,133,5,133, + 1771,8,133,10,133,12,133,1774,9,133,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,3,134,1785,8,134,1,135,1,135,1,135,1,135, + 1,135,1,136,1,136,1,136,1,137,1,137,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,3,138,1807,8,138,3,138,1809,8,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,1820, + 8,138,1,138,5,138,1823,8,138,10,138,12,138,1826,9,138,1,139,3,139, + 1829,8,139,1,139,1,139,3,139,1833,8,139,1,139,1,139,1,139,1,139, + 1,139,3,139,1840,8,139,1,139,1,139,1,139,1,139,1,139,5,139,1847, + 8,139,10,139,12,139,1850,9,139,1,139,1,139,1,139,3,139,1855,8,139, + 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, + 3,139,1868,8,139,1,139,1,139,1,139,1,139,1,139,3,139,1875,8,139, + 1,139,1,139,1,139,3,139,1880,8,139,1,139,1,139,1,139,1,139,3,139, + 1886,8,139,1,139,1,139,1,139,1,139,1,139,3,139,1893,8,139,3,139, + 1895,8,139,1,140,3,140,1898,8,140,1,140,1,140,1,140,1,140,1,140, + 1,140,1,140,1,140,5,140,1908,8,140,10,140,12,140,1911,9,140,1,140, + 1,140,3,140,1915,8,140,1,140,3,140,1918,8,140,1,140,1,140,1,140, + 1,140,3,140,1924,8,140,3,140,1926,8,140,1,141,1,141,1,141,1,141, + 3,141,1932,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 5,141,1953,8,141,10,141,12,141,1956,9,141,1,142,1,142,1,142,4,142, + 1961,8,142,11,142,12,142,1962,1,142,1,142,3,142,1967,8,142,1,142, + 1,142,1,142,1,142,1,142,4,142,1974,8,142,11,142,12,142,1975,1,142, + 1,142,3,142,1980,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,1996,8,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,3,142,2005,8,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,2029, + 8,142,1,142,1,142,1,142,5,142,2034,8,142,10,142,12,142,2037,9,142, + 3,142,2039,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 1,142,3,142,2050,8,142,1,142,1,142,1,142,1,142,1,142,5,142,2057, + 8,142,10,142,12,142,2060,9,142,1,143,1,143,1,144,1,144,3,144,2066, + 8,144,1,145,1,145,1,145,1,145,3,145,2072,8,145,1,146,1,146,1,147, + 1,147,1,148,1,148,3,148,2080,8,148,1,149,1,149,1,149,3,149,2085, + 8,149,1,150,1,150,3,150,2089,8,150,1,151,1,151,1,151,4,151,2094, + 8,151,11,151,12,151,2095,1,152,1,152,1,152,3,152,2101,8,152,1,153, + 1,153,1,153,1,153,1,153,1,154,3,154,2109,8,154,1,154,1,154,3,154, + 2113,8,154,1,155,3,155,2116,8,155,1,155,1,155,3,155,2120,8,155,1, + 156,1,156,1,156,1,157,1,157,4,157,2127,8,157,11,157,12,157,2128, + 1,157,3,157,2132,8,157,1,158,1,158,1,158,1,158,1,159,1,159,1,159, + 5,159,2141,8,159,10,159,12,159,2144,9,159,1,160,1,160,1,160,3,160, + 2149,8,160,1,161,1,161,1,162,1,162,1,163,1,163,1,163,1,163,1,163, + 1,164,1,164,1,165,1,165,1,166,1,166,1,166,3,166,2167,8,166,1,167, + 1,167,1,167,3,167,2172,8,167,1,168,1,168,1,168,3,168,2177,8,168, + 1,168,1,168,1,168,1,168,1,168,3,168,2184,8,168,3,168,2186,8,168, + 1,169,1,169,1,169,3,169,2191,8,169,1,169,1,169,1,169,1,169,1,169, + 3,169,2198,8,169,3,169,2200,8,169,1,170,1,170,1,170,3,170,2205,8, + 170,1,170,1,170,1,170,1,170,1,170,3,170,2212,8,170,3,170,2214,8, + 170,1,171,1,171,1,171,3,171,2219,8,171,1,171,1,171,1,171,1,171,1, + 171,3,171,2226,8,171,3,171,2228,8,171,1,172,1,172,1,172,5,172,2233, + 8,172,10,172,12,172,2236,9,172,1,173,1,173,1,173,1,174,1,174,1,174, + 1,174,1,175,1,175,1,175,1,176,1,176,1,176,1,176,5,176,2252,8,176, + 10,176,12,176,2255,9,176,1,176,1,176,1,177,1,177,3,177,2261,8,177, + 1,177,3,177,2264,8,177,1,178,1,178,1,178,3,178,2269,8,178,1,179, + 1,179,1,179,1,179,3,179,2275,8,179,1,180,1,180,1,180,1,180,1,180, + 1,180,3,180,2283,8,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,3,181,2299,8,181,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,3,182,2308,8,182,1,183,1,183, + 1,184,1,184,1,185,1,185,1,185,1,185,3,185,2318,8,185,1,185,1,185, + 1,185,1,185,1,185,3,185,2325,8,185,1,185,3,185,2328,8,185,1,186, + 1,186,1,186,1,187,1,187,1,188,1,188,1,189,1,189,1,190,1,190,1,191, + 1,191,1,192,1,192,1,193,1,193,1,194,1,194,1,195,1,195,1,195,0,5, + 156,190,276,282,284,196,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,0,45,2,0,109,109,450, + 450,3,0,45,45,128,128,188,188,4,0,42,42,90,90,422,422,464,464,2, + 0,441,441,447,447,2,0,151,151,170,170,2,0,437,437,489,489,2,0,482, + 485,487,487,3,0,32,32,91,91,244,244,11,0,28,29,35,35,46,46,92,92, + 178,179,344,344,360,360,378,378,381,381,387,387,416,417,2,0,433, + 433,435,435,4,0,101,102,115,115,144,144,246,246,2,0,13,13,231,231, + 2,0,455,455,462,462,3,0,5,5,270,270,444,444,3,0,266,266,455,455, + 462,462,3,0,425,425,458,458,477,477,3,0,330,330,465,465,481,481, + 2,0,440,440,490,490,2,0,183,183,265,265,3,0,130,130,180,180,402, + 402,4,0,152,152,174,174,201,201,317,317,3,0,445,445,459,459,499, + 499,4,0,250,250,446,446,494,496,498,498,2,0,74,74,320,320,3,0,459, + 459,492,492,499,499,2,0,439,439,450,450,2,0,457,457,467,467,4,0, + 140,140,244,244,397,397,404,404,2,0,19,19,369,369,2,0,5,5,11,11, + 2,0,509,509,529,530,4,0,452,452,527,527,531,531,534,534,2,0,529, + 530,532,532,1,0,529,530,1,0,538,539,2,0,538,538,541,541,4,0,452, + 452,527,527,529,531,533,534,3,0,241,241,508,509,529,530,2,0,140, + 140,397,397,2,0,5,5,113,113,10,0,97,97,165,165,222,222,229,229,334, + 334,436,436,470,470,472,472,488,488,502,502,15,0,97,97,165,165,222, + 222,229,229,334,334,427,427,436,436,442,442,448,449,454,454,460, + 460,470,475,488,488,491,491,502,503,11,0,5,5,13,13,33,33,78,78,84, + 85,113,113,200,200,207,208,389,389,413,413,527,527,55,0,4,4,13,13, + 23,23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,78,78,84,85,91,91, + 98,99,107,107,119,119,134,134,139,139,143,143,145,145,160,160,165, + 165,167,167,194,194,197,197,199,199,201,201,205,205,207,209,214, + 214,220,220,222,223,229,229,243,243,245,245,264,264,276,276,281, + 281,283,283,293,293,317,317,321,323,334,334,357,358,364,364,367, + 367,378,380,395,395,398,399,408,408,419,420,436,436,469,469,488, + 488,502,502,1,0,437,504,2558,0,395,1,0,0,0,2,405,1,0,0,0,4,419,1, + 0,0,0,6,421,1,0,0,0,8,437,1,0,0,0,10,441,1,0,0,0,12,443,1,0,0,0, + 14,446,1,0,0,0,16,457,1,0,0,0,18,465,1,0,0,0,20,473,1,0,0,0,22,475, + 1,0,0,0,24,527,1,0,0,0,26,529,1,0,0,0,28,536,1,0,0,0,30,540,1,0, + 0,0,32,544,1,0,0,0,34,548,1,0,0,0,36,602,1,0,0,0,38,608,1,0,0,0, + 40,614,1,0,0,0,42,616,1,0,0,0,44,658,1,0,0,0,46,672,1,0,0,0,48,674, + 1,0,0,0,50,685,1,0,0,0,52,689,1,0,0,0,54,691,1,0,0,0,56,739,1,0, + 0,0,58,741,1,0,0,0,60,745,1,0,0,0,62,753,1,0,0,0,64,761,1,0,0,0, + 66,765,1,0,0,0,68,800,1,0,0,0,70,816,1,0,0,0,72,818,1,0,0,0,74,828, + 1,0,0,0,76,830,1,0,0,0,78,837,1,0,0,0,80,839,1,0,0,0,82,847,1,0, + 0,0,84,855,1,0,0,0,86,857,1,0,0,0,88,861,1,0,0,0,90,865,1,0,0,0, + 92,888,1,0,0,0,94,892,1,0,0,0,96,894,1,0,0,0,98,910,1,0,0,0,100, + 912,1,0,0,0,102,917,1,0,0,0,104,929,1,0,0,0,106,948,1,0,0,0,108, + 968,1,0,0,0,110,979,1,0,0,0,112,981,1,0,0,0,114,994,1,0,0,0,116, + 1001,1,0,0,0,118,1004,1,0,0,0,120,1013,1,0,0,0,122,1017,1,0,0,0, + 124,1021,1,0,0,0,126,1024,1,0,0,0,128,1032,1,0,0,0,130,1037,1,0, + 0,0,132,1054,1,0,0,0,134,1061,1,0,0,0,136,1071,1,0,0,0,138,1080, + 1,0,0,0,140,1090,1,0,0,0,142,1109,1,0,0,0,144,1111,1,0,0,0,146,1124, + 1,0,0,0,148,1127,1,0,0,0,150,1136,1,0,0,0,152,1147,1,0,0,0,154,1160, + 1,0,0,0,156,1195,1,0,0,0,158,1214,1,0,0,0,160,1223,1,0,0,0,162,1232, + 1,0,0,0,164,1251,1,0,0,0,166,1273,1,0,0,0,168,1275,1,0,0,0,170,1281, + 1,0,0,0,172,1310,1,0,0,0,174,1312,1,0,0,0,176,1314,1,0,0,0,178,1316, + 1,0,0,0,180,1319,1,0,0,0,182,1338,1,0,0,0,184,1350,1,0,0,0,186,1366, + 1,0,0,0,188,1368,1,0,0,0,190,1382,1,0,0,0,192,1408,1,0,0,0,194,1425, + 1,0,0,0,196,1427,1,0,0,0,198,1455,1,0,0,0,200,1457,1,0,0,0,202,1463, + 1,0,0,0,204,1465,1,0,0,0,206,1470,1,0,0,0,208,1475,1,0,0,0,210,1487, + 1,0,0,0,212,1504,1,0,0,0,214,1506,1,0,0,0,216,1508,1,0,0,0,218,1517, + 1,0,0,0,220,1519,1,0,0,0,222,1522,1,0,0,0,224,1572,1,0,0,0,226,1574, + 1,0,0,0,228,1577,1,0,0,0,230,1579,1,0,0,0,232,1586,1,0,0,0,234,1588, + 1,0,0,0,236,1590,1,0,0,0,238,1593,1,0,0,0,240,1602,1,0,0,0,242,1607, + 1,0,0,0,244,1621,1,0,0,0,246,1649,1,0,0,0,248,1659,1,0,0,0,250,1667, + 1,0,0,0,252,1672,1,0,0,0,254,1704,1,0,0,0,256,1706,1,0,0,0,258,1715, + 1,0,0,0,260,1726,1,0,0,0,262,1738,1,0,0,0,264,1764,1,0,0,0,266,1766, + 1,0,0,0,268,1784,1,0,0,0,270,1786,1,0,0,0,272,1791,1,0,0,0,274,1794, + 1,0,0,0,276,1808,1,0,0,0,278,1894,1,0,0,0,280,1925,1,0,0,0,282,1931, + 1,0,0,0,284,2049,1,0,0,0,286,2061,1,0,0,0,288,2065,1,0,0,0,290,2071, + 1,0,0,0,292,2073,1,0,0,0,294,2075,1,0,0,0,296,2079,1,0,0,0,298,2081, + 1,0,0,0,300,2086,1,0,0,0,302,2093,1,0,0,0,304,2097,1,0,0,0,306,2102, + 1,0,0,0,308,2112,1,0,0,0,310,2115,1,0,0,0,312,2121,1,0,0,0,314,2131, + 1,0,0,0,316,2133,1,0,0,0,318,2137,1,0,0,0,320,2148,1,0,0,0,322,2150, + 1,0,0,0,324,2152,1,0,0,0,326,2154,1,0,0,0,328,2159,1,0,0,0,330,2161, + 1,0,0,0,332,2163,1,0,0,0,334,2168,1,0,0,0,336,2185,1,0,0,0,338,2199, + 1,0,0,0,340,2213,1,0,0,0,342,2227,1,0,0,0,344,2229,1,0,0,0,346,2237, + 1,0,0,0,348,2240,1,0,0,0,350,2244,1,0,0,0,352,2247,1,0,0,0,354,2258, + 1,0,0,0,356,2268,1,0,0,0,358,2274,1,0,0,0,360,2282,1,0,0,0,362,2298, + 1,0,0,0,364,2307,1,0,0,0,366,2309,1,0,0,0,368,2311,1,0,0,0,370,2327, + 1,0,0,0,372,2329,1,0,0,0,374,2332,1,0,0,0,376,2334,1,0,0,0,378,2336, + 1,0,0,0,380,2338,1,0,0,0,382,2340,1,0,0,0,384,2342,1,0,0,0,386,2344, + 1,0,0,0,388,2346,1,0,0,0,390,2348,1,0,0,0,392,394,3,2,1,0,393,392, + 1,0,0,0,394,397,1,0,0,0,395,393,1,0,0,0,395,396,1,0,0,0,396,398, + 1,0,0,0,397,395,1,0,0,0,398,399,5,0,0,1,399,1,1,0,0,0,400,402,3, + 4,2,0,401,403,5,521,0,0,402,401,1,0,0,0,402,403,1,0,0,0,403,406, + 1,0,0,0,404,406,3,6,3,0,405,400,1,0,0,0,405,404,1,0,0,0,406,3,1, + 0,0,0,407,420,3,8,4,0,408,420,3,10,5,0,409,420,3,12,6,0,410,420, + 3,14,7,0,411,420,3,20,10,0,412,420,3,24,12,0,413,420,3,26,13,0,414, + 420,3,28,14,0,415,420,3,30,15,0,416,420,3,32,16,0,417,420,3,34,17, + 0,418,420,3,36,18,0,419,407,1,0,0,0,419,408,1,0,0,0,419,409,1,0, + 0,0,419,410,1,0,0,0,419,411,1,0,0,0,419,412,1,0,0,0,419,413,1,0, + 0,0,419,414,1,0,0,0,419,415,1,0,0,0,419,416,1,0,0,0,419,417,1,0, + 0,0,419,418,1,0,0,0,420,5,1,0,0,0,421,422,5,521,0,0,422,7,1,0,0, + 0,423,438,3,40,20,0,424,438,3,102,51,0,425,438,3,104,52,0,426,438, + 3,106,53,0,427,438,3,100,50,0,428,438,3,112,56,0,429,438,3,126,63, + 0,430,438,3,128,64,0,431,438,3,130,65,0,432,438,3,132,66,0,433,438, + 3,134,67,0,434,438,3,136,68,0,435,438,3,138,69,0,436,438,3,140,70, + 0,437,423,1,0,0,0,437,424,1,0,0,0,437,425,1,0,0,0,437,426,1,0,0, + 0,437,427,1,0,0,0,437,428,1,0,0,0,437,429,1,0,0,0,437,430,1,0,0, + 0,437,431,1,0,0,0,437,432,1,0,0,0,437,433,1,0,0,0,437,434,1,0,0, + 0,437,435,1,0,0,0,437,436,1,0,0,0,438,9,1,0,0,0,439,442,3,156,78, + 0,440,442,3,142,71,0,441,439,1,0,0,0,441,440,1,0,0,0,442,11,1,0, + 0,0,443,444,7,0,0,0,444,445,3,338,169,0,445,13,1,0,0,0,446,450,5, + 135,0,0,447,451,3,16,8,0,448,449,5,479,0,0,449,451,5,146,0,0,450, + 447,1,0,0,0,450,448,1,0,0,0,450,451,1,0,0,0,451,455,1,0,0,0,452, + 456,3,10,5,0,453,456,3,144,72,0,454,456,3,154,77,0,455,452,1,0,0, + 0,455,453,1,0,0,0,455,454,1,0,0,0,456,15,1,0,0,0,457,462,3,18,9, + 0,458,459,5,520,0,0,459,461,3,18,9,0,460,458,1,0,0,0,461,464,1,0, + 0,0,462,460,1,0,0,0,462,463,1,0,0,0,463,17,1,0,0,0,464,462,1,0,0, + 0,465,466,7,1,0,0,466,19,1,0,0,0,467,468,5,410,0,0,468,469,5,441, + 0,0,469,474,3,328,164,0,470,471,5,410,0,0,471,474,3,332,166,0,472, + 474,3,22,11,0,473,467,1,0,0,0,473,470,1,0,0,0,473,472,1,0,0,0,474, + 21,1,0,0,0,475,476,5,410,0,0,476,477,5,227,0,0,477,482,3,344,172, + 0,478,479,5,520,0,0,479,481,3,344,172,0,480,478,1,0,0,0,481,484, + 1,0,0,0,482,480,1,0,0,0,482,483,1,0,0,0,483,23,1,0,0,0,484,482,1, + 0,0,0,485,486,5,341,0,0,486,528,7,2,0,0,487,488,5,341,0,0,488,489, + 5,76,0,0,489,528,7,3,0,0,490,491,5,341,0,0,491,494,5,374,0,0,492, + 493,7,4,0,0,493,495,3,332,166,0,494,492,1,0,0,0,494,495,1,0,0,0, + 495,497,1,0,0,0,496,498,3,280,140,0,497,496,1,0,0,0,497,498,1,0, + 0,0,498,528,1,0,0,0,499,500,5,341,0,0,500,501,5,58,0,0,501,504,7, + 4,0,0,502,505,3,340,170,0,503,505,3,338,169,0,504,502,1,0,0,0,504, + 503,1,0,0,0,505,507,1,0,0,0,506,508,3,280,140,0,507,506,1,0,0,0, + 507,508,1,0,0,0,508,528,1,0,0,0,509,510,5,341,0,0,510,515,5,72,0, + 0,511,512,5,373,0,0,512,516,3,338,169,0,513,514,5,501,0,0,514,516, + 3,340,170,0,515,511,1,0,0,0,515,513,1,0,0,0,516,528,1,0,0,0,517, + 519,5,341,0,0,518,520,5,411,0,0,519,518,1,0,0,0,519,520,1,0,0,0, + 520,521,1,0,0,0,521,528,5,154,0,0,522,524,5,341,0,0,523,525,5,152, + 0,0,524,523,1,0,0,0,524,525,1,0,0,0,525,526,1,0,0,0,526,528,5,227, + 0,0,527,485,1,0,0,0,527,487,1,0,0,0,527,490,1,0,0,0,527,499,1,0, + 0,0,527,509,1,0,0,0,527,517,1,0,0,0,527,522,1,0,0,0,528,25,1,0,0, + 0,529,530,5,468,0,0,530,531,5,226,0,0,531,534,3,344,172,0,532,533, + 5,433,0,0,533,535,3,352,176,0,534,532,1,0,0,0,534,535,1,0,0,0,535, + 27,1,0,0,0,536,537,5,500,0,0,537,538,5,226,0,0,538,539,3,344,172, + 0,539,29,1,0,0,0,540,542,5,340,0,0,541,543,3,354,177,0,542,541,1, + 0,0,0,542,543,1,0,0,0,543,31,1,0,0,0,544,546,5,312,0,0,545,547,3, + 356,178,0,546,545,1,0,0,0,546,547,1,0,0,0,547,33,1,0,0,0,548,549, + 7,5,0,0,549,550,5,463,0,0,550,551,3,110,55,0,551,35,1,0,0,0,552, + 553,5,437,0,0,553,554,5,463,0,0,554,555,5,433,0,0,555,558,3,38,19, + 0,556,557,5,17,0,0,557,559,3,344,172,0,558,556,1,0,0,0,558,559,1, + 0,0,0,559,603,1,0,0,0,560,561,5,437,0,0,561,562,5,456,0,0,562,563, + 5,433,0,0,563,566,3,38,19,0,564,565,5,17,0,0,565,567,3,344,172,0, + 566,564,1,0,0,0,566,567,1,0,0,0,567,570,1,0,0,0,568,569,5,311,0, + 0,569,571,3,344,172,0,570,568,1,0,0,0,570,571,1,0,0,0,571,603,1, + 0,0,0,572,573,5,437,0,0,573,574,7,6,0,0,574,575,5,433,0,0,575,576, + 3,38,19,0,576,577,5,311,0,0,577,578,3,344,172,0,578,603,1,0,0,0, + 579,580,5,437,0,0,580,581,5,486,0,0,581,603,3,38,19,0,582,583,5, + 437,0,0,583,584,5,453,0,0,584,585,5,456,0,0,585,586,5,433,0,0,586, + 587,3,38,19,0,587,588,5,311,0,0,588,589,3,344,172,0,589,590,5,466, + 0,0,590,591,3,344,172,0,591,603,1,0,0,0,592,593,5,437,0,0,593,594, + 5,443,0,0,594,595,5,456,0,0,595,596,5,433,0,0,596,597,3,38,19,0, + 597,598,5,146,0,0,598,599,3,344,172,0,599,600,5,17,0,0,600,601,3, + 344,172,0,601,603,1,0,0,0,602,552,1,0,0,0,602,560,1,0,0,0,602,572, + 1,0,0,0,602,579,1,0,0,0,602,582,1,0,0,0,602,592,1,0,0,0,603,37,1, + 0,0,0,604,606,5,534,0,0,605,604,1,0,0,0,605,606,1,0,0,0,606,607, + 1,0,0,0,607,609,3,344,172,0,608,605,1,0,0,0,609,610,1,0,0,0,610, + 608,1,0,0,0,610,611,1,0,0,0,611,39,1,0,0,0,612,615,3,42,21,0,613, + 615,3,44,22,0,614,612,1,0,0,0,614,613,1,0,0,0,615,41,1,0,0,0,616, + 618,5,72,0,0,617,619,5,497,0,0,618,617,1,0,0,0,618,619,1,0,0,0,619, + 620,1,0,0,0,620,622,5,373,0,0,621,623,3,348,174,0,622,621,1,0,0, + 0,622,623,1,0,0,0,623,624,1,0,0,0,624,625,3,336,168,0,625,626,5, + 516,0,0,626,631,3,46,23,0,627,628,5,520,0,0,628,630,3,46,23,0,629, + 627,1,0,0,0,630,633,1,0,0,0,631,629,1,0,0,0,631,632,1,0,0,0,632, + 636,1,0,0,0,633,631,1,0,0,0,634,635,5,520,0,0,635,637,3,80,40,0, + 636,634,1,0,0,0,636,637,1,0,0,0,637,640,1,0,0,0,638,639,5,520,0, + 0,639,641,3,82,41,0,640,638,1,0,0,0,640,641,1,0,0,0,641,644,1,0, + 0,0,642,643,5,520,0,0,643,645,3,86,43,0,644,642,1,0,0,0,644,645, + 1,0,0,0,645,646,1,0,0,0,646,649,5,517,0,0,647,648,5,59,0,0,648,650, + 5,537,0,0,649,647,1,0,0,0,649,650,1,0,0,0,650,652,1,0,0,0,651,653, + 3,88,44,0,652,651,1,0,0,0,652,653,1,0,0,0,653,654,1,0,0,0,654,656, + 3,346,173,0,655,657,3,96,48,0,656,655,1,0,0,0,656,657,1,0,0,0,657, + 43,1,0,0,0,658,659,5,72,0,0,659,661,5,373,0,0,660,662,3,348,174, + 0,661,660,1,0,0,0,661,662,1,0,0,0,662,663,1,0,0,0,663,664,3,336, + 168,0,664,667,3,346,173,0,665,666,5,17,0,0,666,668,3,156,78,0,667, + 665,1,0,0,0,667,668,1,0,0,0,668,45,1,0,0,0,669,673,3,48,24,0,670, + 673,3,72,36,0,671,673,3,76,38,0,672,669,1,0,0,0,672,670,1,0,0,0, + 672,671,1,0,0,0,673,47,1,0,0,0,674,675,3,50,25,0,675,677,3,56,28, + 0,676,678,3,70,35,0,677,676,1,0,0,0,677,678,1,0,0,0,678,681,1,0, + 0,0,679,680,5,59,0,0,680,682,5,537,0,0,681,679,1,0,0,0,681,682,1, + 0,0,0,682,49,1,0,0,0,683,686,3,344,172,0,684,686,3,274,137,0,685, + 683,1,0,0,0,685,684,1,0,0,0,686,51,1,0,0,0,687,690,3,344,172,0,688, + 690,4,26,0,0,689,687,1,0,0,0,689,688,1,0,0,0,690,53,1,0,0,0,691, + 692,5,516,0,0,692,697,3,52,26,0,693,694,5,520,0,0,694,696,3,52,26, + 0,695,693,1,0,0,0,696,699,1,0,0,0,697,695,1,0,0,0,697,698,1,0,0, + 0,698,700,1,0,0,0,699,697,1,0,0,0,700,701,5,517,0,0,701,55,1,0,0, + 0,702,740,7,7,0,0,703,705,7,8,0,0,704,706,3,58,29,0,705,704,1,0, + 0,0,705,706,1,0,0,0,706,740,1,0,0,0,707,709,5,379,0,0,708,710,3, + 58,29,0,709,708,1,0,0,0,709,710,1,0,0,0,710,717,1,0,0,0,711,713, + 7,9,0,0,712,714,5,206,0,0,713,712,1,0,0,0,713,714,1,0,0,0,714,715, + 1,0,0,0,715,716,5,378,0,0,716,718,5,504,0,0,717,711,1,0,0,0,717, + 718,1,0,0,0,718,740,1,0,0,0,719,721,7,10,0,0,720,722,3,60,30,0,721, + 720,1,0,0,0,721,722,1,0,0,0,722,740,1,0,0,0,723,725,7,11,0,0,724, + 726,3,64,32,0,725,724,1,0,0,0,725,726,1,0,0,0,726,740,1,0,0,0,727, + 729,5,469,0,0,728,730,3,66,33,0,729,728,1,0,0,0,729,730,1,0,0,0, + 730,740,1,0,0,0,731,733,5,321,0,0,732,734,3,68,34,0,733,732,1,0, + 0,0,733,734,1,0,0,0,734,740,1,0,0,0,735,737,5,294,0,0,736,738,3, + 62,31,0,737,736,1,0,0,0,737,738,1,0,0,0,738,740,1,0,0,0,739,702, + 1,0,0,0,739,703,1,0,0,0,739,707,1,0,0,0,739,719,1,0,0,0,739,723, + 1,0,0,0,739,727,1,0,0,0,739,731,1,0,0,0,739,735,1,0,0,0,740,57,1, + 0,0,0,741,742,5,516,0,0,742,743,3,376,188,0,743,744,5,517,0,0,744, + 59,1,0,0,0,745,746,5,516,0,0,746,749,3,376,188,0,747,748,5,520,0, + 0,748,750,3,376,188,0,749,747,1,0,0,0,749,750,1,0,0,0,750,751,1, + 0,0,0,751,752,5,517,0,0,752,61,1,0,0,0,753,754,5,516,0,0,754,757, + 3,374,187,0,755,756,5,520,0,0,756,758,3,374,187,0,757,755,1,0,0, + 0,757,758,1,0,0,0,758,759,1,0,0,0,759,760,5,517,0,0,760,63,1,0,0, + 0,761,762,5,507,0,0,762,763,3,56,28,0,763,764,5,506,0,0,764,65,1, + 0,0,0,765,766,5,507,0,0,766,767,3,56,28,0,767,768,5,520,0,0,768, + 769,3,56,28,0,769,770,1,0,0,0,770,771,5,506,0,0,771,67,1,0,0,0,772, + 773,5,507,0,0,773,774,3,52,26,0,774,781,3,56,28,0,775,776,5,520, + 0,0,776,777,3,52,26,0,777,778,3,56,28,0,778,780,1,0,0,0,779,775, + 1,0,0,0,780,783,1,0,0,0,781,779,1,0,0,0,781,782,1,0,0,0,782,784, + 1,0,0,0,783,781,1,0,0,0,784,785,5,506,0,0,785,801,1,0,0,0,786,787, + 5,516,0,0,787,788,3,52,26,0,788,795,3,56,28,0,789,790,5,520,0,0, + 790,791,3,52,26,0,791,792,3,56,28,0,792,794,1,0,0,0,793,789,1,0, + 0,0,794,797,1,0,0,0,795,793,1,0,0,0,795,796,1,0,0,0,796,798,1,0, + 0,0,797,795,1,0,0,0,798,799,5,517,0,0,799,801,1,0,0,0,800,772,1, + 0,0,0,800,786,1,0,0,0,801,69,1,0,0,0,802,803,5,64,0,0,803,805,3, + 84,42,0,804,802,1,0,0,0,804,805,1,0,0,0,805,806,1,0,0,0,806,807, + 5,288,0,0,807,810,5,466,0,0,808,809,5,241,0,0,809,811,5,125,0,0, + 810,808,1,0,0,0,810,811,1,0,0,0,811,817,1,0,0,0,812,814,5,241,0, + 0,813,812,1,0,0,0,813,814,1,0,0,0,814,815,1,0,0,0,815,817,5,244, + 0,0,816,804,1,0,0,0,816,813,1,0,0,0,817,71,1,0,0,0,818,819,3,50, + 25,0,819,820,3,56,28,0,820,823,5,218,0,0,821,822,5,151,0,0,822,824, + 3,74,37,0,823,821,1,0,0,0,823,824,1,0,0,0,824,826,1,0,0,0,825,827, + 5,423,0,0,826,825,1,0,0,0,826,827,1,0,0,0,827,73,1,0,0,0,828,829, + 5,537,0,0,829,75,1,0,0,0,830,831,3,50,25,0,831,832,5,17,0,0,832, + 835,3,78,39,0,833,834,5,59,0,0,834,836,5,537,0,0,835,833,1,0,0,0, + 835,836,1,0,0,0,836,77,1,0,0,0,837,838,3,274,137,0,838,79,1,0,0, + 0,839,840,5,424,0,0,840,841,5,146,0,0,841,842,3,52,26,0,842,843, + 5,17,0,0,843,844,3,274,137,0,844,81,1,0,0,0,845,846,5,64,0,0,846, + 848,3,84,42,0,847,845,1,0,0,0,847,848,1,0,0,0,848,849,1,0,0,0,849, + 850,5,288,0,0,850,851,5,466,0,0,851,852,3,54,27,0,852,853,5,241, + 0,0,853,854,5,125,0,0,854,83,1,0,0,0,855,856,3,320,160,0,856,85, + 1,0,0,0,857,858,5,277,0,0,858,859,5,146,0,0,859,860,5,371,0,0,860, + 87,1,0,0,0,861,862,5,269,0,0,862,863,5,34,0,0,863,864,3,90,45,0, + 864,89,1,0,0,0,865,866,5,516,0,0,866,871,3,92,46,0,867,868,5,520, + 0,0,868,870,3,92,46,0,869,867,1,0,0,0,870,873,1,0,0,0,871,869,1, + 0,0,0,871,872,1,0,0,0,872,874,1,0,0,0,873,871,1,0,0,0,874,875,5, + 517,0,0,875,91,1,0,0,0,876,889,3,52,26,0,877,878,5,516,0,0,878,883, + 3,94,47,0,879,880,5,520,0,0,880,882,3,94,47,0,881,879,1,0,0,0,882, + 885,1,0,0,0,883,881,1,0,0,0,883,884,1,0,0,0,884,886,1,0,0,0,885, + 883,1,0,0,0,886,887,5,517,0,0,887,889,1,0,0,0,888,876,1,0,0,0,888, + 877,1,0,0,0,889,93,1,0,0,0,890,893,3,296,148,0,891,893,3,370,185, + 0,892,890,1,0,0,0,892,891,1,0,0,0,893,95,1,0,0,0,894,895,5,202,0, + 0,895,904,3,338,169,0,896,900,5,516,0,0,897,899,3,98,49,0,898,897, + 1,0,0,0,899,902,1,0,0,0,900,898,1,0,0,0,900,901,1,0,0,0,901,903, + 1,0,0,0,902,900,1,0,0,0,903,905,5,517,0,0,904,896,1,0,0,0,904,905, + 1,0,0,0,905,97,1,0,0,0,906,907,7,12,0,0,907,911,7,13,0,0,908,909, + 7,14,0,0,909,911,7,15,0,0,910,906,1,0,0,0,910,908,1,0,0,0,911,99, + 1,0,0,0,912,913,5,72,0,0,913,914,5,441,0,0,914,915,3,330,165,0,915, + 916,3,346,173,0,916,101,1,0,0,0,917,918,5,72,0,0,918,920,5,447,0, + 0,919,921,3,348,174,0,920,919,1,0,0,0,920,921,1,0,0,0,921,922,1, + 0,0,0,922,925,3,334,167,0,923,924,5,59,0,0,924,926,5,537,0,0,925, + 923,1,0,0,0,925,926,1,0,0,0,926,927,1,0,0,0,927,928,3,346,173,0, + 928,103,1,0,0,0,929,931,5,72,0,0,930,932,5,497,0,0,931,930,1,0,0, + 0,931,932,1,0,0,0,932,933,1,0,0,0,933,935,5,501,0,0,934,936,3,348, + 174,0,935,934,1,0,0,0,935,936,1,0,0,0,936,937,1,0,0,0,937,939,3, + 342,171,0,938,940,3,54,27,0,939,938,1,0,0,0,939,940,1,0,0,0,940, + 943,1,0,0,0,941,942,5,59,0,0,942,944,5,537,0,0,943,941,1,0,0,0,943, + 944,1,0,0,0,944,945,1,0,0,0,945,946,5,17,0,0,946,947,3,156,78,0, + 947,105,1,0,0,0,948,952,5,72,0,0,949,953,5,497,0,0,950,951,5,497, + 0,0,951,953,5,370,0,0,952,949,1,0,0,0,952,950,1,0,0,0,952,953,1, + 0,0,0,953,954,1,0,0,0,954,956,5,153,0,0,955,957,3,348,174,0,956, + 955,1,0,0,0,956,957,1,0,0,0,957,958,1,0,0,0,958,959,3,286,143,0, + 959,960,5,17,0,0,960,963,3,320,160,0,961,962,5,195,0,0,962,964,7, + 16,0,0,963,961,1,0,0,0,963,964,1,0,0,0,964,966,1,0,0,0,965,967,3, + 108,54,0,966,965,1,0,0,0,966,967,1,0,0,0,967,107,1,0,0,0,968,969, + 5,412,0,0,969,970,5,463,0,0,970,976,3,110,55,0,971,972,5,520,0,0, + 972,973,5,463,0,0,973,975,3,110,55,0,974,971,1,0,0,0,975,978,1,0, + 0,0,976,974,1,0,0,0,976,977,1,0,0,0,977,109,1,0,0,0,978,976,1,0, + 0,0,979,980,5,537,0,0,980,111,1,0,0,0,981,982,5,8,0,0,982,984,5, + 373,0,0,983,985,3,350,175,0,984,983,1,0,0,0,984,985,1,0,0,0,985, + 986,1,0,0,0,986,992,3,338,169,0,987,993,3,114,57,0,988,993,3,116, + 58,0,989,993,3,118,59,0,990,993,3,120,60,0,991,993,3,122,61,0,992, + 987,1,0,0,0,992,988,1,0,0,0,992,989,1,0,0,0,992,990,1,0,0,0,992, + 991,1,0,0,0,993,113,1,0,0,0,994,996,5,311,0,0,995,997,3,344,172, + 0,996,995,1,0,0,0,996,997,1,0,0,0,997,998,1,0,0,0,998,999,5,388, + 0,0,999,1000,3,344,172,0,1000,115,1,0,0,0,1001,1002,5,340,0,0,1002, + 1003,3,352,176,0,1003,117,1,0,0,0,1004,1005,5,437,0,0,1005,1006, + 5,64,0,0,1006,1007,3,84,42,0,1007,1008,5,288,0,0,1008,1009,5,466, + 0,0,1009,1011,3,54,27,0,1010,1012,3,124,62,0,1011,1010,1,0,0,0,1011, + 1012,1,0,0,0,1012,119,1,0,0,0,1013,1014,5,116,0,0,1014,1015,5,64, + 0,0,1015,1016,3,84,42,0,1016,121,1,0,0,0,1017,1018,5,437,0,0,1018, + 1019,5,403,0,0,1019,1020,3,54,27,0,1020,123,1,0,0,0,1021,1022,5, + 241,0,0,1022,1023,5,125,0,0,1023,125,1,0,0,0,1024,1025,5,8,0,0,1025, + 1026,5,501,0,0,1026,1030,3,340,170,0,1027,1031,3,114,57,0,1028,1029, + 5,17,0,0,1029,1031,3,156,78,0,1030,1027,1,0,0,0,1030,1028,1,0,0, + 0,1031,127,1,0,0,0,1032,1033,5,8,0,0,1033,1034,5,447,0,0,1034,1035, + 3,332,166,0,1035,1036,3,116,58,0,1036,129,1,0,0,0,1037,1041,5,8, + 0,0,1038,1042,5,497,0,0,1039,1040,5,497,0,0,1040,1042,5,370,0,0, + 1041,1038,1,0,0,0,1041,1039,1,0,0,0,1041,1042,1,0,0,0,1042,1043, + 1,0,0,0,1043,1045,5,153,0,0,1044,1046,3,350,175,0,1045,1044,1,0, + 0,0,1045,1046,1,0,0,0,1046,1047,1,0,0,0,1047,1048,3,288,144,0,1048, + 1049,5,17,0,0,1049,1052,3,320,160,0,1050,1051,5,195,0,0,1051,1053, + 7,16,0,0,1052,1050,1,0,0,0,1052,1053,1,0,0,0,1053,131,1,0,0,0,1054, + 1055,5,116,0,0,1055,1057,5,441,0,0,1056,1058,3,350,175,0,1057,1056, + 1,0,0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1060,3,328,164, + 0,1060,133,1,0,0,0,1061,1063,5,116,0,0,1062,1064,5,497,0,0,1063, + 1062,1,0,0,0,1063,1064,1,0,0,0,1064,1065,1,0,0,0,1065,1067,5,373, + 0,0,1066,1068,3,350,175,0,1067,1066,1,0,0,0,1067,1068,1,0,0,0,1068, + 1069,1,0,0,0,1069,1070,3,338,169,0,1070,135,1,0,0,0,1071,1072,5, + 116,0,0,1072,1074,5,447,0,0,1073,1075,3,350,175,0,1074,1073,1,0, + 0,0,1074,1075,1,0,0,0,1075,1076,1,0,0,0,1076,1078,3,332,166,0,1077, + 1079,7,17,0,0,1078,1077,1,0,0,0,1078,1079,1,0,0,0,1079,137,1,0,0, + 0,1080,1082,5,116,0,0,1081,1083,5,497,0,0,1082,1081,1,0,0,0,1082, + 1083,1,0,0,0,1083,1084,1,0,0,0,1084,1086,5,501,0,0,1085,1087,3,350, + 175,0,1086,1085,1,0,0,0,1086,1087,1,0,0,0,1087,1088,1,0,0,0,1088, + 1089,3,340,170,0,1089,139,1,0,0,0,1090,1094,5,116,0,0,1091,1095, + 5,497,0,0,1092,1093,5,497,0,0,1093,1095,5,370,0,0,1094,1091,1,0, + 0,0,1094,1092,1,0,0,0,1094,1095,1,0,0,0,1095,1096,1,0,0,0,1096,1098, + 5,153,0,0,1097,1099,3,350,175,0,1098,1097,1,0,0,0,1098,1099,1,0, + 0,0,1099,1100,1,0,0,0,1100,1101,3,288,144,0,1101,141,1,0,0,0,1102, + 1104,5,132,0,0,1103,1102,1,0,0,0,1103,1104,1,0,0,0,1104,1105,1,0, + 0,0,1105,1110,3,144,72,0,1106,1110,3,152,76,0,1107,1108,5,132,0, + 0,1108,1110,3,154,77,0,1109,1103,1,0,0,0,1109,1106,1,0,0,0,1109, + 1107,1,0,0,0,1110,143,1,0,0,0,1111,1112,5,177,0,0,1112,1113,7,18, + 0,0,1113,1122,3,338,169,0,1114,1116,3,146,73,0,1115,1114,1,0,0,0, + 1115,1116,1,0,0,0,1116,1118,1,0,0,0,1117,1119,3,54,27,0,1118,1117, + 1,0,0,0,1118,1119,1,0,0,0,1119,1120,1,0,0,0,1120,1123,3,156,78,0, + 1121,1123,3,148,74,0,1122,1115,1,0,0,0,1122,1121,1,0,0,0,1123,145, + 1,0,0,0,1124,1125,5,268,0,0,1125,1126,3,352,176,0,1126,147,1,0,0, + 0,1127,1128,5,414,0,0,1128,1133,3,150,75,0,1129,1130,5,520,0,0,1130, + 1132,3,150,75,0,1131,1129,1,0,0,0,1132,1135,1,0,0,0,1133,1131,1, + 0,0,0,1133,1134,1,0,0,0,1134,149,1,0,0,0,1135,1133,1,0,0,0,1136, + 1137,5,516,0,0,1137,1142,3,370,185,0,1138,1139,5,520,0,0,1139,1141, + 3,370,185,0,1140,1138,1,0,0,0,1141,1144,1,0,0,0,1142,1140,1,0,0, + 0,1142,1143,1,0,0,0,1143,1145,1,0,0,0,1144,1142,1,0,0,0,1145,1146, + 5,517,0,0,1146,151,1,0,0,0,1147,1148,5,24,0,0,1148,1149,5,354,0, + 0,1149,1150,5,340,0,0,1150,1154,5,521,0,0,1151,1152,3,144,72,0,1152, + 1153,5,521,0,0,1153,1155,1,0,0,0,1154,1151,1,0,0,0,1155,1156,1,0, + 0,0,1156,1154,1,0,0,0,1156,1157,1,0,0,0,1157,1158,1,0,0,0,1158,1159, + 5,122,0,0,1159,153,1,0,0,0,1160,1161,5,354,0,0,1161,1162,5,340,0, + 0,1162,1166,5,24,0,0,1163,1164,3,144,72,0,1164,1165,5,521,0,0,1165, + 1167,1,0,0,0,1166,1163,1,0,0,0,1167,1168,1,0,0,0,1168,1166,1,0,0, + 0,1168,1169,1,0,0,0,1169,1170,1,0,0,0,1170,1171,5,122,0,0,1171,155, + 1,0,0,0,1172,1173,6,78,-1,0,1173,1196,3,158,79,0,1174,1175,3,160, + 80,0,1175,1176,3,156,78,5,1176,1196,1,0,0,0,1177,1178,5,516,0,0, + 1178,1179,3,156,78,0,1179,1180,5,517,0,0,1180,1196,1,0,0,0,1181, + 1183,3,168,84,0,1182,1184,3,246,123,0,1183,1182,1,0,0,0,1183,1184, + 1,0,0,0,1184,1186,1,0,0,0,1185,1187,3,250,125,0,1186,1185,1,0,0, + 0,1186,1187,1,0,0,0,1187,1196,1,0,0,0,1188,1190,3,166,83,0,1189, + 1191,3,246,123,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1193,1, + 0,0,0,1192,1194,3,250,125,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, + 1194,1196,1,0,0,0,1195,1172,1,0,0,0,1195,1174,1,0,0,0,1195,1177, + 1,0,0,0,1195,1181,1,0,0,0,1195,1188,1,0,0,0,1196,1211,1,0,0,0,1197, + 1198,10,3,0,0,1198,1200,7,19,0,0,1199,1201,5,5,0,0,1200,1199,1,0, + 0,0,1200,1201,1,0,0,0,1201,1202,1,0,0,0,1202,1204,3,156,78,0,1203, + 1205,3,246,123,0,1204,1203,1,0,0,0,1204,1205,1,0,0,0,1205,1207,1, + 0,0,0,1206,1208,3,250,125,0,1207,1206,1,0,0,0,1207,1208,1,0,0,0, + 1208,1210,1,0,0,0,1209,1197,1,0,0,0,1210,1213,1,0,0,0,1211,1209, + 1,0,0,0,1211,1212,1,0,0,0,1212,157,1,0,0,0,1213,1211,1,0,0,0,1214, + 1215,5,414,0,0,1215,1220,3,274,137,0,1216,1217,5,520,0,0,1217,1219, + 3,274,137,0,1218,1216,1,0,0,0,1219,1222,1,0,0,0,1220,1218,1,0,0, + 0,1220,1221,1,0,0,0,1221,159,1,0,0,0,1222,1220,1,0,0,0,1223,1224, + 5,433,0,0,1224,1229,3,162,81,0,1225,1226,5,520,0,0,1226,1228,3,162, + 81,0,1227,1225,1,0,0,0,1228,1231,1,0,0,0,1229,1227,1,0,0,0,1229, + 1230,1,0,0,0,1230,161,1,0,0,0,1231,1229,1,0,0,0,1232,1244,3,164, + 82,0,1233,1234,5,516,0,0,1234,1239,3,52,26,0,1235,1236,5,520,0,0, + 1236,1238,3,52,26,0,1237,1235,1,0,0,0,1238,1241,1,0,0,0,1239,1237, + 1,0,0,0,1239,1240,1,0,0,0,1240,1242,1,0,0,0,1241,1239,1,0,0,0,1242, + 1243,5,517,0,0,1243,1245,1,0,0,0,1244,1233,1,0,0,0,1244,1245,1,0, + 0,0,1245,1246,1,0,0,0,1246,1247,5,17,0,0,1247,1248,5,516,0,0,1248, + 1249,3,156,78,0,1249,1250,5,517,0,0,1250,163,1,0,0,0,1251,1252,3, + 320,160,0,1252,165,1,0,0,0,1253,1255,3,168,84,0,1254,1256,3,188, + 94,0,1255,1254,1,0,0,0,1255,1256,1,0,0,0,1256,1258,1,0,0,0,1257, + 1259,3,220,110,0,1258,1257,1,0,0,0,1258,1259,1,0,0,0,1259,1261,1, + 0,0,0,1260,1262,3,222,111,0,1261,1260,1,0,0,0,1261,1262,1,0,0,0, + 1262,1264,1,0,0,0,1263,1265,3,236,118,0,1264,1263,1,0,0,0,1264,1265, + 1,0,0,0,1265,1267,1,0,0,0,1266,1268,3,238,119,0,1267,1266,1,0,0, + 0,1267,1268,1,0,0,0,1268,1274,1,0,0,0,1269,1270,3,168,84,0,1270, + 1271,3,188,94,0,1271,1272,3,244,122,0,1272,1274,1,0,0,0,1273,1253, + 1,0,0,0,1273,1269,1,0,0,0,1274,167,1,0,0,0,1275,1277,5,336,0,0,1276, + 1278,3,380,190,0,1277,1276,1,0,0,0,1277,1278,1,0,0,0,1278,1279,1, + 0,0,0,1279,1280,3,170,85,0,1280,169,1,0,0,0,1281,1286,3,172,86,0, + 1282,1283,5,520,0,0,1283,1285,3,172,86,0,1284,1282,1,0,0,0,1285, + 1288,1,0,0,0,1286,1284,1,0,0,0,1286,1287,1,0,0,0,1287,171,1,0,0, + 0,1288,1286,1,0,0,0,1289,1311,3,174,87,0,1290,1296,3,178,89,0,1291, + 1297,3,180,90,0,1292,1294,5,17,0,0,1293,1292,1,0,0,0,1293,1294,1, + 0,0,0,1294,1295,1,0,0,0,1295,1297,3,274,137,0,1296,1291,1,0,0,0, + 1296,1293,1,0,0,0,1296,1297,1,0,0,0,1297,1311,1,0,0,0,1298,1304, + 3,176,88,0,1299,1305,3,180,90,0,1300,1302,5,17,0,0,1301,1300,1,0, + 0,0,1301,1302,1,0,0,0,1302,1303,1,0,0,0,1303,1305,3,52,26,0,1304, + 1299,1,0,0,0,1304,1301,1,0,0,0,1304,1305,1,0,0,0,1305,1311,1,0,0, + 0,1306,1308,3,184,92,0,1307,1309,3,180,90,0,1308,1307,1,0,0,0,1308, + 1309,1,0,0,0,1309,1311,1,0,0,0,1310,1289,1,0,0,0,1310,1290,1,0,0, + 0,1310,1298,1,0,0,0,1310,1306,1,0,0,0,1311,173,1,0,0,0,1312,1313, + 3,186,93,0,1313,175,1,0,0,0,1314,1315,3,274,137,0,1315,177,1,0,0, + 0,1316,1317,3,52,26,0,1317,179,1,0,0,0,1318,1320,5,17,0,0,1319,1318, + 1,0,0,0,1319,1320,1,0,0,0,1320,1321,1,0,0,0,1321,1322,3,320,160, + 0,1322,181,1,0,0,0,1323,1339,3,186,93,0,1324,1329,3,52,26,0,1325, + 1327,5,17,0,0,1326,1325,1,0,0,0,1326,1327,1,0,0,0,1327,1328,1,0, + 0,0,1328,1330,3,274,137,0,1329,1326,1,0,0,0,1329,1330,1,0,0,0,1330, + 1339,1,0,0,0,1331,1336,3,274,137,0,1332,1334,5,17,0,0,1333,1332, + 1,0,0,0,1333,1334,1,0,0,0,1334,1335,1,0,0,0,1335,1337,3,52,26,0, + 1336,1333,1,0,0,0,1336,1337,1,0,0,0,1337,1339,1,0,0,0,1338,1323, + 1,0,0,0,1338,1324,1,0,0,0,1338,1331,1,0,0,0,1339,183,1,0,0,0,1340, + 1345,3,320,160,0,1341,1342,5,513,0,0,1342,1344,3,320,160,0,1343, + 1341,1,0,0,0,1344,1347,1,0,0,0,1345,1343,1,0,0,0,1345,1346,1,0,0, + 0,1346,1348,1,0,0,0,1347,1345,1,0,0,0,1348,1349,5,513,0,0,1349,1351, + 1,0,0,0,1350,1340,1,0,0,0,1350,1351,1,0,0,0,1351,1352,1,0,0,0,1352, + 1353,5,527,0,0,1353,185,1,0,0,0,1354,1355,3,284,142,0,1355,1356, + 5,262,0,0,1356,1357,3,242,121,0,1357,1358,5,17,0,0,1358,1359,3,320, + 160,0,1359,1367,1,0,0,0,1360,1361,3,284,142,0,1361,1362,5,262,0, + 0,1362,1363,3,312,156,0,1363,1364,5,17,0,0,1364,1365,3,320,160,0, + 1365,1367,1,0,0,0,1366,1354,1,0,0,0,1366,1360,1,0,0,0,1367,187,1, + 0,0,0,1368,1369,5,151,0,0,1369,1370,3,190,95,0,1370,189,1,0,0,0, + 1371,1372,6,95,-1,0,1372,1377,3,192,96,0,1373,1374,5,520,0,0,1374, + 1376,3,192,96,0,1375,1373,1,0,0,0,1376,1379,1,0,0,0,1377,1375,1, + 0,0,0,1377,1378,1,0,0,0,1378,1383,1,0,0,0,1379,1377,1,0,0,0,1380, + 1383,3,204,102,0,1381,1383,3,206,103,0,1382,1371,1,0,0,0,1382,1380, + 1,0,0,0,1382,1381,1,0,0,0,1383,1405,1,0,0,0,1384,1385,10,3,0,0,1385, + 1386,5,73,0,0,1386,1387,5,185,0,0,1387,1404,3,190,95,4,1388,1390, + 10,4,0,0,1389,1391,5,233,0,0,1390,1389,1,0,0,0,1390,1391,1,0,0,0, + 1391,1393,1,0,0,0,1392,1394,7,20,0,0,1393,1392,1,0,0,0,1393,1394, + 1,0,0,0,1394,1396,1,0,0,0,1395,1397,5,261,0,0,1396,1395,1,0,0,0, + 1396,1397,1,0,0,0,1397,1398,1,0,0,0,1398,1399,5,185,0,0,1399,1401, + 3,190,95,0,1400,1402,3,218,109,0,1401,1400,1,0,0,0,1401,1402,1,0, + 0,0,1402,1404,1,0,0,0,1403,1384,1,0,0,0,1403,1388,1,0,0,0,1404,1407, + 1,0,0,0,1405,1403,1,0,0,0,1405,1406,1,0,0,0,1406,191,1,0,0,0,1407, + 1405,1,0,0,0,1408,1410,3,194,97,0,1409,1411,3,310,155,0,1410,1409, + 1,0,0,0,1410,1411,1,0,0,0,1411,193,1,0,0,0,1412,1414,5,373,0,0,1413, + 1412,1,0,0,0,1413,1414,1,0,0,0,1414,1415,1,0,0,0,1415,1417,3,338, + 169,0,1416,1418,3,200,100,0,1417,1416,1,0,0,0,1417,1418,1,0,0,0, + 1418,1426,1,0,0,0,1419,1421,3,340,170,0,1420,1422,3,200,100,0,1421, + 1420,1,0,0,0,1421,1422,1,0,0,0,1422,1426,1,0,0,0,1423,1426,3,196, + 98,0,1424,1426,3,198,99,0,1425,1413,1,0,0,0,1425,1419,1,0,0,0,1425, + 1423,1,0,0,0,1425,1424,1,0,0,0,1426,195,1,0,0,0,1427,1428,5,198, + 0,0,1428,1429,5,373,0,0,1429,1430,5,516,0,0,1430,1431,3,288,144, + 0,1431,1432,5,516,0,0,1432,1437,3,290,145,0,1433,1434,5,520,0,0, + 1434,1436,3,290,145,0,1435,1433,1,0,0,0,1436,1439,1,0,0,0,1437,1435, + 1,0,0,0,1437,1438,1,0,0,0,1438,1440,1,0,0,0,1439,1437,1,0,0,0,1440, + 1441,5,517,0,0,1441,1442,5,517,0,0,1442,197,1,0,0,0,1443,1445,5, + 198,0,0,1444,1443,1,0,0,0,1444,1445,1,0,0,0,1445,1446,1,0,0,0,1446, + 1447,5,516,0,0,1447,1448,3,156,78,0,1448,1449,5,517,0,0,1449,1456, + 1,0,0,0,1450,1451,5,405,0,0,1451,1452,5,516,0,0,1452,1453,3,274, + 137,0,1453,1454,5,517,0,0,1454,1456,1,0,0,0,1455,1444,1,0,0,0,1455, + 1450,1,0,0,0,1456,199,1,0,0,0,1457,1458,5,146,0,0,1458,1459,5,371, + 0,0,1459,1460,5,17,0,0,1460,1461,5,249,0,0,1461,1462,3,202,101,0, + 1462,201,1,0,0,0,1463,1464,3,274,137,0,1464,203,1,0,0,0,1465,1466, + 5,516,0,0,1466,1467,3,148,74,0,1467,1468,5,517,0,0,1468,1469,3,310, + 155,0,1469,205,1,0,0,0,1470,1471,5,373,0,0,1471,1472,5,516,0,0,1472, + 1473,3,208,104,0,1473,1474,5,517,0,0,1474,207,1,0,0,0,1475,1476, + 3,210,105,0,1476,1477,5,516,0,0,1477,1482,3,212,106,0,1478,1479, + 5,520,0,0,1479,1481,3,212,106,0,1480,1478,1,0,0,0,1481,1484,1,0, + 0,0,1482,1480,1,0,0,0,1482,1483,1,0,0,0,1483,1485,1,0,0,0,1484,1482, + 1,0,0,0,1485,1486,5,517,0,0,1486,209,1,0,0,0,1487,1488,7,21,0,0, + 1488,211,1,0,0,0,1489,1490,5,373,0,0,1490,1505,3,234,117,0,1491, + 1505,3,216,108,0,1492,1505,3,298,149,0,1493,1494,5,446,0,0,1494, + 1495,5,536,0,0,1495,1496,5,373,0,0,1496,1505,3,234,117,0,1497,1498, + 5,498,0,0,1498,1499,5,536,0,0,1499,1505,3,216,108,0,1500,1501,3, + 214,107,0,1501,1502,5,536,0,0,1502,1503,3,298,149,0,1503,1505,1, + 0,0,0,1504,1489,1,0,0,0,1504,1491,1,0,0,0,1504,1492,1,0,0,0,1504, + 1493,1,0,0,0,1504,1497,1,0,0,0,1504,1500,1,0,0,0,1505,213,1,0,0, + 0,1506,1507,7,22,0,0,1507,215,1,0,0,0,1508,1509,5,451,0,0,1509,1510, + 5,516,0,0,1510,1511,3,52,26,0,1511,1512,5,517,0,0,1512,217,1,0,0, + 0,1513,1514,5,253,0,0,1514,1518,3,276,138,0,1515,1516,5,412,0,0, + 1516,1518,3,54,27,0,1517,1513,1,0,0,0,1517,1515,1,0,0,0,1518,219, + 1,0,0,0,1519,1520,5,430,0,0,1520,1521,3,276,138,0,1521,221,1,0,0, + 0,1522,1523,5,159,0,0,1523,1524,5,34,0,0,1524,1529,3,224,112,0,1525, + 1526,5,520,0,0,1526,1528,3,224,112,0,1527,1525,1,0,0,0,1528,1531, + 1,0,0,0,1529,1527,1,0,0,0,1529,1530,1,0,0,0,1530,223,1,0,0,0,1531, + 1529,1,0,0,0,1532,1573,3,52,26,0,1533,1573,3,230,115,0,1534,1535, + 5,516,0,0,1535,1573,5,517,0,0,1536,1537,5,516,0,0,1537,1542,3,274, + 137,0,1538,1539,5,520,0,0,1539,1541,3,274,137,0,1540,1538,1,0,0, + 0,1541,1544,1,0,0,0,1542,1540,1,0,0,0,1542,1543,1,0,0,0,1543,1545, + 1,0,0,0,1544,1542,1,0,0,0,1545,1546,5,517,0,0,1546,1573,1,0,0,0, + 1547,1548,3,228,114,0,1548,1549,5,516,0,0,1549,1554,3,274,137,0, + 1550,1551,5,520,0,0,1551,1553,3,274,137,0,1552,1550,1,0,0,0,1553, + 1556,1,0,0,0,1554,1552,1,0,0,0,1554,1555,1,0,0,0,1555,1557,1,0,0, + 0,1556,1554,1,0,0,0,1557,1558,5,517,0,0,1558,1573,1,0,0,0,1559,1560, + 3,226,113,0,1560,1561,5,516,0,0,1561,1566,3,224,112,0,1562,1563, + 5,520,0,0,1563,1565,3,224,112,0,1564,1562,1,0,0,0,1565,1568,1,0, + 0,0,1566,1564,1,0,0,0,1566,1567,1,0,0,0,1567,1569,1,0,0,0,1568,1566, + 1,0,0,0,1569,1570,5,517,0,0,1570,1573,1,0,0,0,1571,1573,3,274,137, + 0,1572,1532,1,0,0,0,1572,1533,1,0,0,0,1572,1534,1,0,0,0,1572,1536, + 1,0,0,0,1572,1547,1,0,0,0,1572,1559,1,0,0,0,1572,1571,1,0,0,0,1573, + 225,1,0,0,0,1574,1575,5,160,0,0,1575,1576,5,493,0,0,1576,227,1,0, + 0,0,1577,1578,7,23,0,0,1578,229,1,0,0,0,1579,1580,3,232,116,0,1580, + 1581,5,516,0,0,1581,1582,3,234,117,0,1582,1583,5,520,0,0,1583,1584, + 3,298,149,0,1584,1585,5,517,0,0,1585,231,1,0,0,0,1586,1587,7,24, + 0,0,1587,233,1,0,0,0,1588,1589,3,344,172,0,1589,235,1,0,0,0,1590, + 1591,5,163,0,0,1591,1592,3,276,138,0,1592,237,1,0,0,0,1593,1594, + 5,432,0,0,1594,1599,3,240,120,0,1595,1596,5,520,0,0,1596,1598,3, + 240,120,0,1597,1595,1,0,0,0,1598,1601,1,0,0,0,1599,1597,1,0,0,0, + 1599,1600,1,0,0,0,1600,239,1,0,0,0,1601,1599,1,0,0,0,1602,1603,3, + 312,156,0,1603,1604,5,17,0,0,1604,1605,3,242,121,0,1605,241,1,0, + 0,0,1606,1608,3,312,156,0,1607,1606,1,0,0,0,1607,1608,1,0,0,0,1608, + 1609,1,0,0,0,1609,1611,5,516,0,0,1610,1612,3,252,126,0,1611,1610, + 1,0,0,0,1611,1612,1,0,0,0,1612,1614,1,0,0,0,1613,1615,3,246,123, + 0,1614,1613,1,0,0,0,1614,1615,1,0,0,0,1615,1617,1,0,0,0,1616,1618, + 3,268,134,0,1617,1616,1,0,0,0,1617,1618,1,0,0,0,1618,1619,1,0,0, + 0,1619,1620,5,517,0,0,1620,243,1,0,0,0,1621,1622,5,213,0,0,1622, + 1624,5,516,0,0,1623,1625,3,252,126,0,1624,1623,1,0,0,0,1624,1625, + 1,0,0,0,1625,1627,1,0,0,0,1626,1628,3,246,123,0,1627,1626,1,0,0, + 0,1627,1628,1,0,0,0,1628,1630,1,0,0,0,1629,1631,3,256,128,0,1630, + 1629,1,0,0,0,1630,1631,1,0,0,0,1631,1633,1,0,0,0,1632,1634,3,262, + 131,0,1633,1632,1,0,0,0,1633,1634,1,0,0,0,1634,1636,1,0,0,0,1635, + 1637,3,264,132,0,1636,1635,1,0,0,0,1636,1637,1,0,0,0,1637,1639,1, + 0,0,0,1638,1640,3,258,129,0,1639,1638,1,0,0,0,1639,1640,1,0,0,0, + 1640,1641,1,0,0,0,1641,1642,3,266,133,0,1642,1647,5,517,0,0,1643, + 1645,5,17,0,0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645,1646,1,0, + 0,0,1646,1648,3,320,160,0,1647,1644,1,0,0,0,1647,1648,1,0,0,0,1648, + 245,1,0,0,0,1649,1650,5,258,0,0,1650,1651,5,34,0,0,1651,1656,3,248, + 124,0,1652,1653,5,520,0,0,1653,1655,3,248,124,0,1654,1652,1,0,0, + 0,1655,1658,1,0,0,0,1656,1654,1,0,0,0,1656,1657,1,0,0,0,1657,247, + 1,0,0,0,1658,1656,1,0,0,0,1659,1661,3,52,26,0,1660,1662,7,25,0,0, + 1661,1660,1,0,0,0,1661,1662,1,0,0,0,1662,1665,1,0,0,0,1663,1664, + 5,476,0,0,1664,1666,7,26,0,0,1665,1663,1,0,0,0,1665,1666,1,0,0,0, + 1666,249,1,0,0,0,1667,1670,5,204,0,0,1668,1671,5,5,0,0,1669,1671, + 3,274,137,0,1670,1668,1,0,0,0,1670,1669,1,0,0,0,1671,251,1,0,0,0, + 1672,1673,5,268,0,0,1673,1676,5,34,0,0,1674,1677,3,52,26,0,1675, + 1677,3,284,142,0,1676,1674,1,0,0,0,1676,1675,1,0,0,0,1677,1685,1, + 0,0,0,1678,1681,5,520,0,0,1679,1682,3,52,26,0,1680,1682,3,284,142, + 0,1681,1679,1,0,0,0,1681,1680,1,0,0,0,1682,1684,1,0,0,0,1683,1678, + 1,0,0,0,1684,1687,1,0,0,0,1685,1683,1,0,0,0,1685,1686,1,0,0,0,1686, + 253,1,0,0,0,1687,1685,1,0,0,0,1688,1705,5,527,0,0,1689,1705,5,530, + 0,0,1690,1705,5,535,0,0,1691,1692,5,518,0,0,1692,1693,5,538,0,0, + 1693,1694,5,520,0,0,1694,1695,5,538,0,0,1695,1705,5,519,0,0,1696, + 1697,5,518,0,0,1697,1698,5,538,0,0,1698,1699,5,520,0,0,1699,1705, + 5,519,0,0,1700,1701,5,518,0,0,1701,1702,5,520,0,0,1702,1703,5,538, + 0,0,1703,1705,5,519,0,0,1704,1688,1,0,0,0,1704,1689,1,0,0,0,1704, + 1690,1,0,0,0,1704,1691,1,0,0,0,1704,1696,1,0,0,0,1704,1700,1,0,0, + 0,1705,255,1,0,0,0,1706,1707,5,215,0,0,1707,1712,3,182,91,0,1708, + 1709,5,520,0,0,1709,1711,3,182,91,0,1710,1708,1,0,0,0,1711,1714, + 1,0,0,0,1712,1710,1,0,0,0,1712,1713,1,0,0,0,1713,257,1,0,0,0,1714, + 1712,1,0,0,0,1715,1716,5,271,0,0,1716,1718,5,516,0,0,1717,1719,3, + 260,130,0,1718,1717,1,0,0,0,1719,1720,1,0,0,0,1720,1718,1,0,0,0, + 1720,1721,1,0,0,0,1721,1722,1,0,0,0,1722,1724,5,517,0,0,1723,1725, + 3,272,136,0,1724,1723,1,0,0,0,1724,1725,1,0,0,0,1725,259,1,0,0,0, + 1726,1728,3,322,161,0,1727,1729,3,254,127,0,1728,1727,1,0,0,0,1728, + 1729,1,0,0,0,1729,261,1,0,0,0,1730,1731,5,5,0,0,1731,1732,5,322, + 0,0,1732,1733,5,272,0,0,1733,1739,5,210,0,0,1734,1735,5,254,0,0, + 1735,1736,5,321,0,0,1736,1737,5,272,0,0,1737,1739,5,210,0,0,1738, + 1730,1,0,0,0,1738,1734,1,0,0,0,1739,263,1,0,0,0,1740,1741,5,438, + 0,0,1741,1742,5,210,0,0,1742,1743,5,343,0,0,1743,1744,5,478,0,0, + 1744,1745,5,467,0,0,1745,1765,5,321,0,0,1746,1747,5,438,0,0,1747, + 1748,5,210,0,0,1748,1749,5,343,0,0,1749,1750,5,388,0,0,1750,1751, + 5,237,0,0,1751,1765,5,321,0,0,1752,1753,5,438,0,0,1753,1754,5,210, + 0,0,1754,1755,5,343,0,0,1755,1756,5,388,0,0,1756,1757,5,467,0,0, + 1757,1765,3,322,161,0,1758,1759,5,438,0,0,1759,1760,5,210,0,0,1760, + 1761,5,343,0,0,1761,1762,5,388,0,0,1762,1763,5,457,0,0,1763,1765, + 3,322,161,0,1764,1740,1,0,0,0,1764,1746,1,0,0,0,1764,1752,1,0,0, + 0,1764,1758,1,0,0,0,1765,265,1,0,0,0,1766,1767,5,105,0,0,1767,1772, + 3,182,91,0,1768,1769,5,520,0,0,1769,1771,3,182,91,0,1770,1768,1, + 0,0,0,1771,1774,1,0,0,0,1772,1770,1,0,0,0,1772,1773,1,0,0,0,1773, + 267,1,0,0,0,1774,1772,1,0,0,0,1775,1776,5,292,0,0,1776,1777,5,27, + 0,0,1777,1778,3,298,149,0,1778,1779,3,270,135,0,1779,1785,1,0,0, + 0,1780,1781,5,322,0,0,1781,1782,5,27,0,0,1782,1783,5,538,0,0,1783, + 1785,3,270,135,0,1784,1775,1,0,0,0,1784,1780,1,0,0,0,1785,269,1, + 0,0,0,1786,1787,5,480,0,0,1787,1788,5,10,0,0,1788,1789,5,76,0,0, + 1789,1790,5,321,0,0,1790,271,1,0,0,0,1791,1792,5,434,0,0,1792,1793, + 3,298,149,0,1793,273,1,0,0,0,1794,1795,3,276,138,0,1795,275,1,0, + 0,0,1796,1797,6,138,-1,0,1797,1798,5,241,0,0,1798,1809,3,276,138, + 6,1799,1800,5,133,0,0,1800,1801,5,516,0,0,1801,1802,3,156,78,0,1802, + 1803,5,517,0,0,1803,1809,1,0,0,0,1804,1806,3,282,141,0,1805,1807, + 3,278,139,0,1806,1805,1,0,0,0,1806,1807,1,0,0,0,1807,1809,1,0,0, + 0,1808,1796,1,0,0,0,1808,1799,1,0,0,0,1808,1804,1,0,0,0,1809,1824, + 1,0,0,0,1810,1811,10,3,0,0,1811,1812,5,10,0,0,1812,1823,3,276,138, + 4,1813,1814,10,2,0,0,1814,1815,5,257,0,0,1815,1823,3,276,138,3,1816, + 1817,10,1,0,0,1817,1819,5,184,0,0,1818,1820,5,241,0,0,1819,1818, + 1,0,0,0,1819,1820,1,0,0,0,1820,1821,1,0,0,0,1821,1823,7,27,0,0,1822, + 1810,1,0,0,0,1822,1813,1,0,0,0,1822,1816,1,0,0,0,1823,1826,1,0,0, + 0,1824,1822,1,0,0,0,1824,1825,1,0,0,0,1825,277,1,0,0,0,1826,1824, + 1,0,0,0,1827,1829,5,241,0,0,1828,1827,1,0,0,0,1828,1829,1,0,0,0, + 1829,1830,1,0,0,0,1830,1832,5,27,0,0,1831,1833,7,28,0,0,1832,1831, + 1,0,0,0,1832,1833,1,0,0,0,1833,1834,1,0,0,0,1834,1835,3,282,141, + 0,1835,1836,5,10,0,0,1836,1837,3,282,141,0,1837,1895,1,0,0,0,1838, + 1840,5,241,0,0,1839,1838,1,0,0,0,1839,1840,1,0,0,0,1840,1841,1,0, + 0,0,1841,1842,5,170,0,0,1842,1843,5,516,0,0,1843,1848,3,274,137, + 0,1844,1845,5,520,0,0,1845,1847,3,274,137,0,1846,1844,1,0,0,0,1847, + 1850,1,0,0,0,1848,1846,1,0,0,0,1848,1849,1,0,0,0,1849,1851,1,0,0, + 0,1850,1848,1,0,0,0,1851,1852,5,517,0,0,1852,1895,1,0,0,0,1853,1855, + 5,241,0,0,1854,1853,1,0,0,0,1854,1855,1,0,0,0,1855,1856,1,0,0,0, + 1856,1857,5,170,0,0,1857,1858,5,516,0,0,1858,1859,3,156,78,0,1859, + 1860,5,517,0,0,1860,1895,1,0,0,0,1861,1862,5,133,0,0,1862,1863,5, + 516,0,0,1863,1864,3,156,78,0,1864,1865,5,517,0,0,1865,1895,1,0,0, + 0,1866,1868,5,241,0,0,1867,1866,1,0,0,0,1867,1868,1,0,0,0,1868,1869, + 1,0,0,0,1869,1870,5,318,0,0,1870,1895,3,282,141,0,1871,1895,3,280, + 140,0,1872,1874,5,184,0,0,1873,1875,5,241,0,0,1874,1873,1,0,0,0, + 1874,1875,1,0,0,0,1875,1876,1,0,0,0,1876,1895,7,27,0,0,1877,1879, + 5,184,0,0,1878,1880,5,241,0,0,1879,1878,1,0,0,0,1879,1880,1,0,0, + 0,1880,1881,1,0,0,0,1881,1882,5,113,0,0,1882,1883,5,151,0,0,1883, + 1895,3,282,141,0,1884,1886,5,241,0,0,1885,1884,1,0,0,0,1885,1886, + 1,0,0,0,1886,1887,1,0,0,0,1887,1888,5,342,0,0,1888,1889,5,388,0, + 0,1889,1892,3,282,141,0,1890,1891,5,127,0,0,1891,1893,3,374,187, + 0,1892,1890,1,0,0,0,1892,1893,1,0,0,0,1893,1895,1,0,0,0,1894,1828, + 1,0,0,0,1894,1839,1,0,0,0,1894,1854,1,0,0,0,1894,1861,1,0,0,0,1894, + 1867,1,0,0,0,1894,1871,1,0,0,0,1894,1872,1,0,0,0,1894,1877,1,0,0, + 0,1894,1885,1,0,0,0,1895,279,1,0,0,0,1896,1898,5,241,0,0,1897,1896, + 1,0,0,0,1897,1898,1,0,0,0,1898,1899,1,0,0,0,1899,1900,5,202,0,0, + 1900,1914,7,29,0,0,1901,1902,5,516,0,0,1902,1915,5,517,0,0,1903, + 1904,5,516,0,0,1904,1909,3,274,137,0,1905,1906,5,520,0,0,1906,1908, + 3,274,137,0,1907,1905,1,0,0,0,1908,1911,1,0,0,0,1909,1907,1,0,0, + 0,1909,1910,1,0,0,0,1910,1912,1,0,0,0,1911,1909,1,0,0,0,1912,1913, + 5,517,0,0,1913,1915,1,0,0,0,1914,1901,1,0,0,0,1914,1903,1,0,0,0, + 1915,1926,1,0,0,0,1916,1918,5,241,0,0,1917,1916,1,0,0,0,1917,1918, + 1,0,0,0,1918,1919,1,0,0,0,1919,1920,5,202,0,0,1920,1923,3,282,141, + 0,1921,1922,5,127,0,0,1922,1924,3,374,187,0,1923,1921,1,0,0,0,1923, + 1924,1,0,0,0,1924,1926,1,0,0,0,1925,1897,1,0,0,0,1925,1917,1,0,0, + 0,1926,281,1,0,0,0,1927,1928,6,141,-1,0,1928,1932,3,284,142,0,1929, + 1930,7,30,0,0,1930,1932,3,282,141,7,1931,1927,1,0,0,0,1931,1929, + 1,0,0,0,1932,1954,1,0,0,0,1933,1934,10,6,0,0,1934,1935,7,31,0,0, + 1935,1953,3,282,141,7,1936,1937,10,5,0,0,1937,1938,7,32,0,0,1938, + 1953,3,282,141,6,1939,1940,10,4,0,0,1940,1941,5,511,0,0,1941,1953, + 3,282,141,5,1942,1943,10,3,0,0,1943,1944,5,512,0,0,1944,1953,3,282, + 141,4,1945,1946,10,2,0,0,1946,1947,5,510,0,0,1947,1953,3,282,141, + 3,1948,1949,10,1,0,0,1949,1950,3,362,181,0,1950,1951,3,282,141,2, + 1951,1953,1,0,0,0,1952,1933,1,0,0,0,1952,1936,1,0,0,0,1952,1939, + 1,0,0,0,1952,1942,1,0,0,0,1952,1945,1,0,0,0,1952,1948,1,0,0,0,1953, + 1956,1,0,0,0,1954,1952,1,0,0,0,1954,1955,1,0,0,0,1955,283,1,0,0, + 0,1956,1954,1,0,0,0,1957,1958,6,142,-1,0,1958,1960,5,40,0,0,1959, + 1961,3,326,163,0,1960,1959,1,0,0,0,1961,1962,1,0,0,0,1962,1960,1, + 0,0,0,1962,1963,1,0,0,0,1963,1966,1,0,0,0,1964,1965,5,120,0,0,1965, + 1967,3,274,137,0,1966,1964,1,0,0,0,1966,1967,1,0,0,0,1967,1968,1, + 0,0,0,1968,1969,5,122,0,0,1969,2050,1,0,0,0,1970,1971,5,40,0,0,1971, + 1973,3,274,137,0,1972,1974,3,326,163,0,1973,1972,1,0,0,0,1974,1975, + 1,0,0,0,1975,1973,1,0,0,0,1975,1976,1,0,0,0,1976,1979,1,0,0,0,1977, + 1978,5,120,0,0,1978,1980,3,274,137,0,1979,1977,1,0,0,0,1979,1980, + 1,0,0,0,1980,1981,1,0,0,0,1981,1982,5,122,0,0,1982,2050,1,0,0,0, + 1983,1984,5,41,0,0,1984,1985,5,516,0,0,1985,1986,3,274,137,0,1986, + 1987,5,17,0,0,1987,1988,3,56,28,0,1988,1989,5,517,0,0,1989,2050, + 1,0,0,0,1990,1991,5,457,0,0,1991,1992,5,516,0,0,1992,1995,3,274, + 137,0,1993,1994,5,461,0,0,1994,1996,5,476,0,0,1995,1993,1,0,0,0, + 1995,1996,1,0,0,0,1996,1997,1,0,0,0,1997,1998,5,517,0,0,1998,2050, + 1,0,0,0,1999,2000,5,467,0,0,2000,2001,5,516,0,0,2001,2004,3,274, + 137,0,2002,2003,5,461,0,0,2003,2005,5,476,0,0,2004,2002,1,0,0,0, + 2004,2005,1,0,0,0,2005,2006,1,0,0,0,2006,2007,5,517,0,0,2007,2050, + 1,0,0,0,2008,2009,5,281,0,0,2009,2010,5,516,0,0,2010,2011,3,282, + 141,0,2011,2012,5,170,0,0,2012,2013,3,282,141,0,2013,2014,5,517, + 0,0,2014,2050,1,0,0,0,2015,2050,3,370,185,0,2016,2050,5,527,0,0, + 2017,2018,3,344,172,0,2018,2019,5,513,0,0,2019,2020,5,527,0,0,2020, + 2050,1,0,0,0,2021,2022,5,516,0,0,2022,2023,3,156,78,0,2023,2024, + 5,517,0,0,2024,2050,1,0,0,0,2025,2026,3,288,144,0,2026,2038,5,516, + 0,0,2027,2029,3,380,190,0,2028,2027,1,0,0,0,2028,2029,1,0,0,0,2029, + 2030,1,0,0,0,2030,2035,3,290,145,0,2031,2032,5,520,0,0,2032,2034, + 3,290,145,0,2033,2031,1,0,0,0,2034,2037,1,0,0,0,2035,2033,1,0,0, + 0,2035,2036,1,0,0,0,2036,2039,1,0,0,0,2037,2035,1,0,0,0,2038,2028, + 1,0,0,0,2038,2039,1,0,0,0,2039,2040,1,0,0,0,2040,2041,5,517,0,0, + 2041,2050,1,0,0,0,2042,2050,3,320,160,0,2043,2050,3,292,146,0,2044, + 2045,5,516,0,0,2045,2046,3,274,137,0,2046,2047,5,517,0,0,2047,2050, + 1,0,0,0,2048,2050,5,85,0,0,2049,1957,1,0,0,0,2049,1970,1,0,0,0,2049, + 1983,1,0,0,0,2049,1990,1,0,0,0,2049,1999,1,0,0,0,2049,2008,1,0,0, + 0,2049,2015,1,0,0,0,2049,2016,1,0,0,0,2049,2017,1,0,0,0,2049,2021, + 1,0,0,0,2049,2025,1,0,0,0,2049,2042,1,0,0,0,2049,2043,1,0,0,0,2049, + 2044,1,0,0,0,2049,2048,1,0,0,0,2050,2058,1,0,0,0,2051,2052,10,5, + 0,0,2052,2053,5,514,0,0,2053,2054,3,282,141,0,2054,2055,5,515,0, + 0,2055,2057,1,0,0,0,2056,2051,1,0,0,0,2057,2060,1,0,0,0,2058,2056, + 1,0,0,0,2058,2059,1,0,0,0,2059,285,1,0,0,0,2060,2058,1,0,0,0,2061, + 2062,3,344,172,0,2062,287,1,0,0,0,2063,2066,3,388,194,0,2064,2066, + 3,344,172,0,2065,2063,1,0,0,0,2065,2064,1,0,0,0,2066,289,1,0,0,0, + 2067,2072,3,386,193,0,2068,2072,3,384,192,0,2069,2072,3,382,191, + 0,2070,2072,3,274,137,0,2071,2067,1,0,0,0,2071,2068,1,0,0,0,2071, + 2069,1,0,0,0,2071,2070,1,0,0,0,2072,291,1,0,0,0,2073,2074,3,344, + 172,0,2074,293,1,0,0,0,2075,2076,3,320,160,0,2076,295,1,0,0,0,2077, + 2080,3,320,160,0,2078,2080,3,292,146,0,2079,2077,1,0,0,0,2079,2078, + 1,0,0,0,2080,297,1,0,0,0,2081,2084,5,182,0,0,2082,2085,3,300,150, + 0,2083,2085,3,304,152,0,2084,2082,1,0,0,0,2084,2083,1,0,0,0,2084, + 2085,1,0,0,0,2085,299,1,0,0,0,2086,2088,3,302,151,0,2087,2089,3, + 306,153,0,2088,2087,1,0,0,0,2088,2089,1,0,0,0,2089,301,1,0,0,0,2090, + 2091,3,308,154,0,2091,2092,3,384,192,0,2092,2094,1,0,0,0,2093,2090, + 1,0,0,0,2094,2095,1,0,0,0,2095,2093,1,0,0,0,2095,2096,1,0,0,0,2096, + 303,1,0,0,0,2097,2100,3,306,153,0,2098,2101,3,302,151,0,2099,2101, + 3,306,153,0,2100,2098,1,0,0,0,2100,2099,1,0,0,0,2100,2101,1,0,0, + 0,2101,305,1,0,0,0,2102,2103,3,308,154,0,2103,2104,3,384,192,0,2104, + 2105,5,388,0,0,2105,2106,3,384,192,0,2106,307,1,0,0,0,2107,2109, + 7,33,0,0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2110,1,0,0,0,2110, + 2113,7,34,0,0,2111,2113,5,537,0,0,2112,2108,1,0,0,0,2112,2111,1, + 0,0,0,2113,309,1,0,0,0,2114,2116,5,17,0,0,2115,2114,1,0,0,0,2115, + 2116,1,0,0,0,2116,2117,1,0,0,0,2117,2119,3,320,160,0,2118,2120,3, + 316,158,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0,2120,311,1,0,0,0,2121, + 2122,3,320,160,0,2122,2123,3,314,157,0,2123,313,1,0,0,0,2124,2125, + 5,221,0,0,2125,2127,3,320,160,0,2126,2124,1,0,0,0,2127,2128,1,0, + 0,0,2128,2126,1,0,0,0,2128,2129,1,0,0,0,2129,2132,1,0,0,0,2130,2132, + 1,0,0,0,2131,2126,1,0,0,0,2131,2130,1,0,0,0,2132,315,1,0,0,0,2133, + 2134,5,516,0,0,2134,2135,3,318,159,0,2135,2136,5,517,0,0,2136,317, + 1,0,0,0,2137,2142,3,320,160,0,2138,2139,5,520,0,0,2139,2141,3,320, + 160,0,2140,2138,1,0,0,0,2141,2144,1,0,0,0,2142,2140,1,0,0,0,2142, + 2143,1,0,0,0,2143,319,1,0,0,0,2144,2142,1,0,0,0,2145,2149,3,322, + 161,0,2146,2149,3,324,162,0,2147,2149,3,390,195,0,2148,2145,1,0, + 0,0,2148,2146,1,0,0,0,2148,2147,1,0,0,0,2149,321,1,0,0,0,2150,2151, + 7,35,0,0,2151,323,1,0,0,0,2152,2153,5,537,0,0,2153,325,1,0,0,0,2154, + 2155,5,428,0,0,2155,2156,3,274,137,0,2156,2157,5,376,0,0,2157,2158, + 3,274,137,0,2158,327,1,0,0,0,2159,2160,3,320,160,0,2160,329,1,0, + 0,0,2161,2162,3,320,160,0,2162,331,1,0,0,0,2163,2166,3,320,160,0, + 2164,2165,5,513,0,0,2165,2167,3,320,160,0,2166,2164,1,0,0,0,2166, + 2167,1,0,0,0,2167,333,1,0,0,0,2168,2171,3,320,160,0,2169,2170,5, + 513,0,0,2170,2172,3,320,160,0,2171,2169,1,0,0,0,2171,2172,1,0,0, + 0,2172,335,1,0,0,0,2173,2176,3,320,160,0,2174,2175,5,513,0,0,2175, + 2177,3,320,160,0,2176,2174,1,0,0,0,2176,2177,1,0,0,0,2177,2186,1, + 0,0,0,2178,2179,3,320,160,0,2179,2180,5,513,0,0,2180,2183,3,320, + 160,0,2181,2182,5,513,0,0,2182,2184,3,320,160,0,2183,2181,1,0,0, + 0,2183,2184,1,0,0,0,2184,2186,1,0,0,0,2185,2173,1,0,0,0,2185,2178, + 1,0,0,0,2186,337,1,0,0,0,2187,2190,3,320,160,0,2188,2189,5,513,0, + 0,2189,2191,3,320,160,0,2190,2188,1,0,0,0,2190,2191,1,0,0,0,2191, + 2200,1,0,0,0,2192,2193,3,320,160,0,2193,2194,5,513,0,0,2194,2197, + 3,320,160,0,2195,2196,5,513,0,0,2196,2198,3,320,160,0,2197,2195, + 1,0,0,0,2197,2198,1,0,0,0,2198,2200,1,0,0,0,2199,2187,1,0,0,0,2199, + 2192,1,0,0,0,2200,339,1,0,0,0,2201,2204,3,320,160,0,2202,2203,5, + 513,0,0,2203,2205,3,320,160,0,2204,2202,1,0,0,0,2204,2205,1,0,0, + 0,2205,2214,1,0,0,0,2206,2207,3,320,160,0,2207,2208,5,513,0,0,2208, + 2211,3,320,160,0,2209,2210,5,513,0,0,2210,2212,3,320,160,0,2211, + 2209,1,0,0,0,2211,2212,1,0,0,0,2212,2214,1,0,0,0,2213,2201,1,0,0, + 0,2213,2206,1,0,0,0,2214,341,1,0,0,0,2215,2218,3,320,160,0,2216, + 2217,5,513,0,0,2217,2219,3,320,160,0,2218,2216,1,0,0,0,2218,2219, + 1,0,0,0,2219,2228,1,0,0,0,2220,2221,3,320,160,0,2221,2222,5,513, + 0,0,2222,2225,3,320,160,0,2223,2224,5,513,0,0,2224,2226,3,320,160, + 0,2225,2223,1,0,0,0,2225,2226,1,0,0,0,2226,2228,1,0,0,0,2227,2215, + 1,0,0,0,2227,2220,1,0,0,0,2228,343,1,0,0,0,2229,2234,3,320,160,0, + 2230,2231,5,513,0,0,2231,2233,3,320,160,0,2232,2230,1,0,0,0,2233, + 2236,1,0,0,0,2234,2232,1,0,0,0,2234,2235,1,0,0,0,2235,345,1,0,0, + 0,2236,2234,1,0,0,0,2237,2238,5,433,0,0,2238,2239,3,352,176,0,2239, + 347,1,0,0,0,2240,2241,5,167,0,0,2241,2242,5,241,0,0,2242,2243,5, + 133,0,0,2243,349,1,0,0,0,2244,2245,5,167,0,0,2245,2246,5,133,0,0, + 2246,351,1,0,0,0,2247,2248,5,516,0,0,2248,2253,3,354,177,0,2249, + 2250,5,520,0,0,2250,2252,3,354,177,0,2251,2249,1,0,0,0,2252,2255, + 1,0,0,0,2253,2251,1,0,0,0,2253,2254,1,0,0,0,2254,2256,1,0,0,0,2255, + 2253,1,0,0,0,2256,2257,5,517,0,0,2257,353,1,0,0,0,2258,2263,3,356, + 178,0,2259,2261,5,505,0,0,2260,2259,1,0,0,0,2260,2261,1,0,0,0,2261, + 2262,1,0,0,0,2262,2264,3,358,179,0,2263,2260,1,0,0,0,2263,2264,1, + 0,0,0,2264,355,1,0,0,0,2265,2269,3,320,160,0,2266,2269,3,292,146, + 0,2267,2269,5,537,0,0,2268,2265,1,0,0,0,2268,2266,1,0,0,0,2268,2267, + 1,0,0,0,2269,357,1,0,0,0,2270,2275,5,538,0,0,2271,2275,5,539,0,0, + 2272,2275,3,378,189,0,2273,2275,5,537,0,0,2274,2270,1,0,0,0,2274, + 2271,1,0,0,0,2274,2272,1,0,0,0,2274,2273,1,0,0,0,2275,359,1,0,0, + 0,2276,2283,5,10,0,0,2277,2278,5,511,0,0,2278,2283,5,511,0,0,2279, + 2283,5,257,0,0,2280,2281,5,510,0,0,2281,2283,5,510,0,0,2282,2276, + 1,0,0,0,2282,2277,1,0,0,0,2282,2279,1,0,0,0,2282,2280,1,0,0,0,2283, + 361,1,0,0,0,2284,2299,5,505,0,0,2285,2299,5,506,0,0,2286,2299,5, + 507,0,0,2287,2288,5,507,0,0,2288,2299,5,505,0,0,2289,2290,5,506, + 0,0,2290,2299,5,505,0,0,2291,2292,5,507,0,0,2292,2299,5,506,0,0, + 2293,2294,5,508,0,0,2294,2299,5,505,0,0,2295,2296,5,507,0,0,2296, + 2297,5,505,0,0,2297,2299,5,506,0,0,2298,2284,1,0,0,0,2298,2285,1, + 0,0,0,2298,2286,1,0,0,0,2298,2287,1,0,0,0,2298,2289,1,0,0,0,2298, + 2291,1,0,0,0,2298,2293,1,0,0,0,2298,2295,1,0,0,0,2299,363,1,0,0, + 0,2300,2301,5,507,0,0,2301,2308,5,507,0,0,2302,2303,5,506,0,0,2303, + 2308,5,506,0,0,2304,2308,5,511,0,0,2305,2308,5,512,0,0,2306,2308, + 5,510,0,0,2307,2300,1,0,0,0,2307,2302,1,0,0,0,2307,2304,1,0,0,0, + 2307,2305,1,0,0,0,2307,2306,1,0,0,0,2308,365,1,0,0,0,2309,2310,7, + 36,0,0,2310,367,1,0,0,0,2311,2312,7,37,0,0,2312,369,1,0,0,0,2313, + 2328,3,298,149,0,2314,2328,3,372,186,0,2315,2328,3,374,187,0,2316, + 2318,5,529,0,0,2317,2316,1,0,0,0,2317,2318,1,0,0,0,2318,2319,1,0, + 0,0,2319,2328,3,376,188,0,2320,2328,3,378,189,0,2321,2328,5,539, + 0,0,2322,2328,5,540,0,0,2323,2325,5,241,0,0,2324,2323,1,0,0,0,2324, + 2325,1,0,0,0,2325,2326,1,0,0,0,2326,2328,5,244,0,0,2327,2313,1,0, + 0,0,2327,2314,1,0,0,0,2327,2315,1,0,0,0,2327,2317,1,0,0,0,2327,2320, + 1,0,0,0,2327,2321,1,0,0,0,2327,2322,1,0,0,0,2327,2324,1,0,0,0,2328, + 371,1,0,0,0,2329,2330,3,382,191,0,2330,2331,3,374,187,0,2331,373, + 1,0,0,0,2332,2333,5,537,0,0,2333,375,1,0,0,0,2334,2335,5,538,0,0, + 2335,377,1,0,0,0,2336,2337,7,38,0,0,2337,379,1,0,0,0,2338,2339,7, + 39,0,0,2339,381,1,0,0,0,2340,2341,7,40,0,0,2341,383,1,0,0,0,2342, + 2343,7,41,0,0,2343,385,1,0,0,0,2344,2345,7,42,0,0,2345,387,1,0,0, + 0,2346,2347,7,43,0,0,2347,389,1,0,0,0,2348,2349,7,44,0,0,2349,391, + 1,0,0,0,279,395,402,405,419,437,441,450,455,462,473,482,494,497, + 504,507,515,519,524,527,534,542,546,558,566,570,602,605,610,614, + 618,622,631,636,640,644,649,652,656,661,667,672,677,681,685,689, + 697,705,709,713,717,721,725,729,733,737,739,749,757,781,795,800, + 804,810,813,816,823,826,835,847,871,883,888,892,900,904,910,920, + 925,931,935,939,943,952,956,963,966,976,984,992,996,1011,1030,1041, + 1045,1052,1057,1063,1067,1074,1078,1082,1086,1094,1098,1103,1109, + 1115,1118,1122,1133,1142,1156,1168,1183,1186,1190,1193,1195,1200, + 1204,1207,1211,1220,1229,1239,1244,1255,1258,1261,1264,1267,1273, + 1277,1286,1293,1296,1301,1304,1308,1310,1319,1326,1329,1333,1336, + 1338,1345,1350,1366,1377,1382,1390,1393,1396,1401,1403,1405,1410, + 1413,1417,1421,1425,1437,1444,1455,1482,1504,1517,1529,1542,1554, + 1566,1572,1599,1607,1611,1614,1617,1624,1627,1630,1633,1636,1639, + 1644,1647,1656,1661,1665,1670,1676,1681,1685,1704,1712,1720,1724, + 1728,1738,1764,1772,1784,1806,1808,1819,1822,1824,1828,1832,1839, + 1848,1854,1867,1874,1879,1885,1892,1894,1897,1909,1914,1917,1923, + 1925,1931,1952,1954,1962,1966,1975,1979,1995,2004,2028,2035,2038, + 2049,2058,2065,2071,2079,2084,2088,2095,2100,2108,2112,2115,2119, + 2128,2131,2142,2148,2166,2171,2176,2183,2185,2190,2197,2199,2204, + 2211,2213,2218,2225,2227,2234,2253,2260,2263,2268,2274,2282,2298, + 2307,2317,2324,2327 ]; private static __ATN: antlr.ATN; @@ -16448,26 +16836,185 @@ export class WithItemContext extends antlr.ParserRuleContext { return this.getToken(FlinkSqlParser.LR_BRACKET, i); } } - public queryStatement(): QueryStatementContext { - return this.getRuleContext(0, QueryStatementContext)!; + public queryStatement(): QueryStatementContext { + return this.getRuleContext(0, QueryStatementContext)!; + } + public RR_BRACKET(): antlr.TerminalNode[]; + public RR_BRACKET(i: number): antlr.TerminalNode | null; + public RR_BRACKET(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.RR_BRACKET); + } else { + return this.getToken(FlinkSqlParser.RR_BRACKET, i); + } + } + public columnName(): ColumnNameContext[]; + public columnName(i: number): ColumnNameContext | null; + public columnName(i?: number): ColumnNameContext[] | ColumnNameContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnNameContext); + } + + return this.getRuleContext(i, ColumnNameContext); + } + 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(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_withItem; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterWithItem) { + listener.enterWithItem(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitWithItem) { + listener.exitWithItem(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitWithItem) { + return visitor.visitWithItem(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class WithItemNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_withItemName; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterWithItemName) { + listener.enterWithItemName(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitWithItemName) { + listener.exitWithItemName(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitWithItemName) { + return visitor.visitWithItemName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectStatementContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public selectClause(): SelectClauseContext { + return this.getRuleContext(0, SelectClauseContext)!; + } + public fromClause(): FromClauseContext | null { + return this.getRuleContext(0, FromClauseContext); + } + public whereClause(): WhereClauseContext | null { + return this.getRuleContext(0, WhereClauseContext); + } + public groupByClause(): GroupByClauseContext | null { + return this.getRuleContext(0, GroupByClauseContext); + } + public havingClause(): HavingClauseContext | null { + return this.getRuleContext(0, HavingClauseContext); + } + public windowClause(): WindowClauseContext | null { + return this.getRuleContext(0, WindowClauseContext); + } + public matchRecognizeClause(): MatchRecognizeClauseContext | null { + return this.getRuleContext(0, MatchRecognizeClauseContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_selectStatement; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterSelectStatement) { + listener.enterSelectStatement(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitSelectStatement) { + listener.exitSelectStatement(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitSelectStatement) { + return visitor.visitSelectStatement(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectClauseContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_SELECT(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_SELECT, 0)!; + } + public selectList(): SelectListContext { + return this.getRuleContext(0, SelectListContext)!; + } + public setQuantifier(): SetQuantifierContext | null { + return this.getRuleContext(0, SetQuantifierContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_selectClause; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterSelectClause) { + listener.enterSelectClause(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitSelectClause) { + listener.exitSelectClause(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitSelectClause) { + return visitor.visitSelectClause(this); + } else { + return visitor.visitChildren(this); + } } - public RR_BRACKET(): antlr.TerminalNode[]; - public RR_BRACKET(i: number): antlr.TerminalNode | null; - public RR_BRACKET(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(FlinkSqlParser.RR_BRACKET); - } else { - return this.getToken(FlinkSqlParser.RR_BRACKET, i); - } +} + + +export class SelectListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public columnName(): ColumnNameContext[]; - public columnName(i: number): ColumnNameContext | null; - public columnName(i?: number): ColumnNameContext[] | ColumnNameContext | null { + public columnProjectItem(): ColumnProjectItemContext[]; + public columnProjectItem(i: number): ColumnProjectItemContext | null; + public columnProjectItem(i?: number): ColumnProjectItemContext[] | ColumnProjectItemContext | null { if (i === undefined) { - return this.getRuleContexts(ColumnNameContext); + return this.getRuleContexts(ColumnProjectItemContext); } - return this.getRuleContext(i, ColumnNameContext); + return this.getRuleContext(i, ColumnProjectItemContext); } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; @@ -16479,21 +17026,21 @@ export class WithItemContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_withItem; + return FlinkSqlParser.RULE_selectList; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterWithItem) { - listener.enterWithItem(this); + if(listener.enterSelectList) { + listener.enterSelectList(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitWithItem) { - listener.exitWithItem(this); + if(listener.exitSelectList) { + listener.exitSelectList(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitWithItem) { - return visitor.visitWithItem(this); + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); } else { return visitor.visitChildren(this); } @@ -16501,29 +17048,50 @@ export class WithItemContext extends antlr.ParserRuleContext { } -export class WithItemNameContext extends antlr.ParserRuleContext { +export class ColumnProjectItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public identifier(): IdentifierContext { - return this.getRuleContext(0, IdentifierContext)!; + public selectWindowItemColumnName(): SelectWindowItemColumnNameContext | null { + return this.getRuleContext(0, SelectWindowItemColumnNameContext); + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public columnAlias(): ColumnAliasContext | null { + return this.getRuleContext(0, ColumnAliasContext); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_AS, 0); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); + } + public columnName(): ColumnNameContext | null { + return this.getRuleContext(0, ColumnNameContext); + } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_withItemName; + return FlinkSqlParser.RULE_columnProjectItem; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterWithItemName) { - listener.enterWithItemName(this); + if(listener.enterColumnProjectItem) { + listener.enterColumnProjectItem(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitWithItemName) { - listener.exitWithItemName(this); + if(listener.exitColumnProjectItem) { + listener.exitColumnProjectItem(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitWithItemName) { - return visitor.visitWithItemName(this); + if (visitor.visitColumnProjectItem) { + return visitor.visitColumnProjectItem(this); } else { return visitor.visitChildren(this); } @@ -16531,47 +17099,59 @@ export class WithItemNameContext extends antlr.ParserRuleContext { } -export class SelectStatementContext extends antlr.ParserRuleContext { +export class SelectWindowItemColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public selectClause(): SelectClauseContext { - return this.getRuleContext(0, SelectClauseContext)!; + public overWindowItem(): OverWindowItemContext { + return this.getRuleContext(0, OverWindowItemContext)!; } - public fromClause(): FromClauseContext | null { - return this.getRuleContext(0, FromClauseContext); + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_selectWindowItemColumnName; } - public whereClause(): WhereClauseContext | null { - return this.getRuleContext(0, WhereClauseContext); + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterSelectWindowItemColumnName) { + listener.enterSelectWindowItemColumnName(this); + } } - public groupByClause(): GroupByClauseContext | null { - return this.getRuleContext(0, GroupByClauseContext); + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitSelectWindowItemColumnName) { + listener.exitSelectWindowItemColumnName(this); + } } - public havingClause(): HavingClauseContext | null { - return this.getRuleContext(0, HavingClauseContext); + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitSelectWindowItemColumnName) { + return visitor.visitSelectWindowItemColumnName(this); + } else { + return visitor.visitChildren(this); + } } - public windowClause(): WindowClauseContext | null { - return this.getRuleContext(0, WindowClauseContext); +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public matchRecognizeClause(): MatchRecognizeClauseContext | null { - return this.getRuleContext(0, MatchRecognizeClauseContext); + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_selectStatement; + return FlinkSqlParser.RULE_selectExpressionColumnName; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterSelectStatement) { - listener.enterSelectStatement(this); + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitSelectStatement) { - listener.exitSelectStatement(this); + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitSelectStatement) { - return visitor.visitSelectStatement(this); + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); } else { return visitor.visitChildren(this); } @@ -16579,53 +17159,63 @@ export class SelectStatementContext extends antlr.ParserRuleContext { } -export class SelectClauseContext extends antlr.ParserRuleContext { +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public KW_SELECT(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_SELECT, 0)!; + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; } - public ASTERISK_SIGN(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0); + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_selectLiteralColumnName; } - public projectItemDefinition(): ProjectItemDefinitionContext[]; - public projectItemDefinition(i: number): ProjectItemDefinitionContext | null; - public projectItemDefinition(i?: number): ProjectItemDefinitionContext[] | ProjectItemDefinitionContext | null { - if (i === undefined) { - return this.getRuleContexts(ProjectItemDefinitionContext); + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} - return this.getRuleContext(i, ProjectItemDefinitionContext); + +export class ColumnAliasContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public setQuantifier(): SetQuantifierContext | null { - return this.getRuleContext(0, SetQuantifierContext); + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } - 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(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_AS, 0); } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_selectClause; + return FlinkSqlParser.RULE_columnAlias; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterSelectClause) { - listener.enterSelectClause(this); + if(listener.enterColumnAlias) { + listener.enterColumnAlias(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitSelectClause) { - listener.exitSelectClause(this); + if(listener.exitColumnAlias) { + listener.exitColumnAlias(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitSelectClause) { - return visitor.visitSelectClause(this); + if (visitor.visitColumnAlias) { + return visitor.visitColumnAlias(this); } else { return visitor.visitChildren(this); } @@ -16672,7 +17262,56 @@ export class ProjectItemDefinitionContext extends antlr.ParserRuleContext { } +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public ASTERISK_SIGN(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0)!; + } + 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 DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.DOT); + } else { + return this.getToken(FlinkSqlParser.DOT, i); + } + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_tableAllColumns; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class OverWindowItemContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -16886,8 +17525,44 @@ export class TablePrimaryContext extends antlr.ParserRuleContext { public viewPath(): ViewPathContext | null { return this.getRuleContext(0, ViewPathContext); } - public KW_LATERAL(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_LATERAL, 0); + public atomFunctionTable(): AtomFunctionTableContext | null { + return this.getRuleContext(0, AtomFunctionTableContext); + } + public atomExpressionTable(): AtomExpressionTableContext | null { + return this.getRuleContext(0, AtomExpressionTableContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_tablePrimary; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterTablePrimary) { + listener.enterTablePrimary(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitTablePrimary) { + listener.exitTablePrimary(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitTablePrimary) { + return visitor.visitTablePrimary(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomFunctionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_LATERAL(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_LATERAL, 0)!; + } + public KW_TABLE(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.KW_TABLE, 0)!; } public LR_BRACKET(): antlr.TerminalNode[]; public LR_BRACKET(i: number): antlr.TerminalNode | null; @@ -16898,8 +17573,8 @@ export class TablePrimaryContext extends antlr.ParserRuleContext { return this.getToken(FlinkSqlParser.LR_BRACKET, i); } } - public functionName(): FunctionNameContext | null { - return this.getRuleContext(0, FunctionNameContext); + public functionName(): FunctionNameContext { + return this.getRuleContext(0, FunctionNameContext)!; } public functionParam(): FunctionParamContext[]; public functionParam(i: number): FunctionParamContext | null; @@ -16928,9 +17603,45 @@ export class TablePrimaryContext extends antlr.ParserRuleContext { return this.getToken(FlinkSqlParser.COMMA, i); } } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_atomFunctionTable; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterAtomFunctionTable) { + listener.enterAtomFunctionTable(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitAtomFunctionTable) { + listener.exitAtomFunctionTable(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitAtomFunctionTable) { + return visitor.visitAtomFunctionTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomExpressionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public LR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; + } public queryStatement(): QueryStatementContext | null { return this.getRuleContext(0, QueryStatementContext); } + public RR_BRACKET(): antlr.TerminalNode { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; + } + public KW_LATERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_LATERAL, 0); + } public KW_UNNEST(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_UNNEST, 0); } @@ -16938,21 +17649,21 @@ export class TablePrimaryContext extends antlr.ParserRuleContext { return this.getRuleContext(0, ExpressionContext); } public override get ruleIndex(): number { - return FlinkSqlParser.RULE_tablePrimary; + return FlinkSqlParser.RULE_atomExpressionTable; } public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterTablePrimary) { - listener.enterTablePrimary(this); + if(listener.enterAtomExpressionTable) { + listener.enterAtomExpressionTable(this); } } public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitTablePrimary) { - listener.exitTablePrimary(this); + if(listener.exitAtomExpressionTable) { + listener.exitAtomExpressionTable(this); } } public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitTablePrimary) { - return visitor.visitTablePrimary(this); + if (visitor.visitAtomExpressionTable) { + return visitor.visitAtomExpressionTable(this); } else { return visitor.visitChildren(this); } diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index d348207e0..7af70304c 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -94,12 +94,21 @@ import { WithItemContext } from "./FlinkSqlParser.js"; import { WithItemNameContext } from "./FlinkSqlParser.js"; import { SelectStatementContext } from "./FlinkSqlParser.js"; import { SelectClauseContext } from "./FlinkSqlParser.js"; +import { SelectListContext } from "./FlinkSqlParser.js"; +import { ColumnProjectItemContext } from "./FlinkSqlParser.js"; +import { SelectWindowItemColumnNameContext } from "./FlinkSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./FlinkSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./FlinkSqlParser.js"; +import { ColumnAliasContext } from "./FlinkSqlParser.js"; import { ProjectItemDefinitionContext } from "./FlinkSqlParser.js"; +import { TableAllColumnsContext } from "./FlinkSqlParser.js"; import { OverWindowItemContext } from "./FlinkSqlParser.js"; import { FromClauseContext } from "./FlinkSqlParser.js"; import { TableExpressionContext } from "./FlinkSqlParser.js"; import { TableReferenceContext } from "./FlinkSqlParser.js"; import { TablePrimaryContext } from "./FlinkSqlParser.js"; +import { AtomFunctionTableContext } from "./FlinkSqlParser.js"; +import { AtomExpressionTableContext } from "./FlinkSqlParser.js"; import { SystemTimePeriodContext } from "./FlinkSqlParser.js"; import { DateTimeExpressionContext } from "./FlinkSqlParser.js"; import { InlineDataValueClauseContext } from "./FlinkSqlParser.js"; @@ -1091,6 +1100,66 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSelectClause?: (ctx: SelectClauseContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.columnProjectItem`. + * @param ctx the parse tree + */ + enterColumnProjectItem?: (ctx: ColumnProjectItemContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.columnProjectItem`. + * @param ctx the parse tree + */ + exitColumnProjectItem?: (ctx: ColumnProjectItemContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.selectWindowItemColumnName`. + * @param ctx the parse tree + */ + enterSelectWindowItemColumnName?: (ctx: SelectWindowItemColumnNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.selectWindowItemColumnName`. + * @param ctx the parse tree + */ + exitSelectWindowItemColumnName?: (ctx: SelectWindowItemColumnNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.columnAlias`. + * @param ctx the parse tree + */ + enterColumnAlias?: (ctx: ColumnAliasContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.columnAlias`. + * @param ctx the parse tree + */ + exitColumnAlias?: (ctx: ColumnAliasContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.projectItemDefinition`. * @param ctx the parse tree @@ -1101,6 +1170,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitProjectItemDefinition?: (ctx: ProjectItemDefinitionContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.overWindowItem`. * @param ctx the parse tree @@ -1151,6 +1230,26 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTablePrimary?: (ctx: TablePrimaryContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + */ + enterAtomFunctionTable?: (ctx: AtomFunctionTableContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + */ + exitAtomFunctionTable?: (ctx: AtomFunctionTableContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.atomExpressionTable`. + * @param ctx the parse tree + */ + enterAtomExpressionTable?: (ctx: AtomExpressionTableContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.atomExpressionTable`. + * @param ctx the parse tree + */ + exitAtomExpressionTable?: (ctx: AtomExpressionTableContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.systemTimePeriod`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index d8064813c..7c79bf572 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -94,12 +94,21 @@ import { WithItemContext } from "./FlinkSqlParser.js"; import { WithItemNameContext } from "./FlinkSqlParser.js"; import { SelectStatementContext } from "./FlinkSqlParser.js"; import { SelectClauseContext } from "./FlinkSqlParser.js"; +import { SelectListContext } from "./FlinkSqlParser.js"; +import { ColumnProjectItemContext } from "./FlinkSqlParser.js"; +import { SelectWindowItemColumnNameContext } from "./FlinkSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./FlinkSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./FlinkSqlParser.js"; +import { ColumnAliasContext } from "./FlinkSqlParser.js"; import { ProjectItemDefinitionContext } from "./FlinkSqlParser.js"; +import { TableAllColumnsContext } from "./FlinkSqlParser.js"; import { OverWindowItemContext } from "./FlinkSqlParser.js"; import { FromClauseContext } from "./FlinkSqlParser.js"; import { TableExpressionContext } from "./FlinkSqlParser.js"; import { TableReferenceContext } from "./FlinkSqlParser.js"; import { TablePrimaryContext } from "./FlinkSqlParser.js"; +import { AtomFunctionTableContext } from "./FlinkSqlParser.js"; +import { AtomExpressionTableContext } from "./FlinkSqlParser.js"; import { SystemTimePeriodContext } from "./FlinkSqlParser.js"; import { DateTimeExpressionContext } from "./FlinkSqlParser.js"; import { InlineDataValueClauseContext } from "./FlinkSqlParser.js"; @@ -748,12 +757,54 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.columnProjectItem`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnProjectItem?: (ctx: ColumnProjectItemContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.selectWindowItemColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectWindowItemColumnName?: (ctx: SelectWindowItemColumnNameContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.columnAlias`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnAlias?: (ctx: ColumnAliasContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.projectItemDefinition`. * @param ctx the parse tree * @return the visitor result */ visitProjectItemDefinition?: (ctx: ProjectItemDefinitionContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.tableAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.overWindowItem`. * @param ctx the parse tree @@ -784,6 +835,18 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomFunctionTable?: (ctx: AtomFunctionTableContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.atomExpressionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomExpressionTable?: (ctx: AtomExpressionTableContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.systemTimePeriod`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index 6c98fc59e..21f67f79e 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -719,12 +719,17 @@ queryTerm queryPrimary sortItem querySpecification +selectList groupBy groupingElement groupingSet namedQuery setQuantifier selectItem +columnAlias +selectLiteralColumnName +selectExpressionColumnName +tableAllColumns relation joinType joinCriteria @@ -733,6 +738,7 @@ sampleType aliasedRelation columnAliases relationPrimary +atomSubQueryTableSource subQueryRelation unnest parenthesizedRelation @@ -771,4 +777,4 @@ nonReserved atn: -[4, 1, 289, 2772, 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, 1, 0, 5, 0, 372, 8, 0, 10, 0, 12, 0, 375, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 381, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 405, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 418, 8, 4, 1, 5, 1, 5, 3, 5, 422, 8, 5, 1, 5, 1, 5, 3, 5, 426, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 433, 8, 5, 10, 5, 12, 5, 436, 9, 5, 1, 5, 1, 5, 3, 5, 440, 8, 5, 1, 5, 1, 5, 3, 5, 444, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 450, 8, 5, 3, 5, 452, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 457, 8, 5, 1, 6, 1, 6, 3, 6, 461, 8, 6, 1, 6, 1, 6, 3, 6, 465, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 472, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 477, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 483, 8, 7, 1, 7, 1, 7, 3, 7, 487, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 494, 8, 7, 10, 7, 12, 7, 497, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 503, 8, 7, 1, 7, 1, 7, 3, 7, 507, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 512, 8, 7, 3, 7, 514, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 519, 8, 7, 1, 7, 3, 7, 522, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 529, 8, 7, 1, 7, 1, 7, 3, 7, 533, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 538, 8, 8, 1, 8, 1, 8, 3, 8, 542, 8, 8, 1, 8, 3, 8, 545, 8, 8, 1, 8, 1, 8, 3, 8, 549, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 557, 8, 9, 1, 9, 1, 9, 3, 9, 561, 8, 9, 1, 9, 1, 9, 3, 9, 565, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 573, 8, 11, 1, 11, 1, 11, 3, 11, 577, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 584, 8, 11, 10, 11, 12, 11, 587, 9, 11, 3, 11, 589, 8, 11, 1, 11, 3, 11, 592, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 598, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 605, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 616, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 621, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 626, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 631, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 636, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 643, 8, 12, 10, 12, 12, 12, 646, 9, 12, 3, 12, 648, 8, 12, 1, 12, 3, 12, 651, 8, 12, 1, 12, 1, 12, 3, 12, 655, 8, 12, 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, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 681, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 707, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 716, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 726, 8, 16, 1, 16, 3, 16, 729, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 743, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 761, 8, 20, 3, 20, 763, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 770, 8, 20, 10, 20, 12, 20, 773, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 783, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 792, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 799, 8, 22, 1, 22, 1, 22, 3, 22, 803, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 810, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 816, 8, 23, 1, 23, 3, 23, 819, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 824, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 831, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 845, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 858, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 863, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 868, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 874, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 910, 8, 32, 1, 32, 3, 32, 913, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 919, 8, 33, 1, 33, 3, 33, 922, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 928, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 934, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 946, 8, 35, 3, 35, 948, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 959, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 967, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 972, 8, 38, 1, 38, 1, 38, 3, 38, 976, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 981, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 988, 8, 40, 1, 40, 1, 40, 3, 40, 992, 8, 40, 1, 41, 1, 41, 3, 41, 996, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1002, 8, 41, 1, 42, 1, 42, 3, 42, 1006, 8, 42, 1, 42, 1, 42, 3, 42, 1010, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1017, 8, 42, 10, 42, 12, 42, 1020, 9, 42, 3, 42, 1022, 8, 42, 1, 42, 3, 42, 1025, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1033, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1047, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1054, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1067, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1073, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1078, 8, 49, 1, 49, 3, 49, 1081, 8, 49, 1, 50, 3, 50, 1084, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1089, 8, 50, 1, 50, 1, 50, 3, 50, 1093, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1100, 8, 50, 10, 50, 12, 50, 1103, 9, 50, 1, 50, 1, 50, 3, 50, 1107, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1113, 8, 51, 1, 52, 1, 52, 3, 52, 1117, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1122, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1127, 8, 53, 1, 53, 3, 53, 1130, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1136, 8, 53, 10, 53, 12, 53, 1139, 9, 53, 3, 53, 1141, 8, 53, 1, 53, 1, 53, 3, 53, 1145, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1155, 8, 54, 10, 54, 12, 54, 1158, 9, 54, 3, 54, 1160, 8, 54, 1, 54, 1, 54, 3, 54, 1164, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1169, 8, 55, 1, 55, 1, 55, 3, 55, 1173, 8, 55, 1, 55, 1, 55, 1, 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, 1189, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1194, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1199, 8, 57, 10, 57, 12, 57, 1202, 9, 57, 3, 57, 1204, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1210, 8, 58, 1, 58, 3, 58, 1213, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1218, 8, 58, 10, 58, 12, 58, 1221, 9, 58, 3, 58, 1223, 8, 58, 1, 59, 1, 59, 3, 59, 1227, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1232, 8, 59, 1, 59, 3, 59, 1235, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1240, 8, 59, 10, 59, 12, 59, 1243, 9, 59, 3, 59, 1245, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1269, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1283, 8, 65, 1, 65, 1, 65, 3, 65, 1287, 8, 65, 1, 66, 1, 66, 3, 66, 1291, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1311, 8, 68, 3, 68, 1313, 8, 68, 3, 68, 1315, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1324, 8, 69, 3, 69, 1326, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1335, 8, 70, 3, 70, 1337, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1346, 8, 71, 3, 71, 1348, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1353, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1362, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1371, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1380, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1391, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1397, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1402, 8, 78, 1, 78, 3, 78, 1405, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1418, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1428, 8, 80, 1, 80, 1, 80, 3, 80, 1432, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1437, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1446, 8, 82, 10, 82, 12, 82, 1449, 9, 82, 1, 82, 1, 82, 3, 82, 1453, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1484, 8, 93, 10, 93, 12, 93, 1487, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1492, 8, 94, 10, 94, 12, 94, 1495, 9, 94, 1, 95, 1, 95, 3, 95, 1499, 8, 95, 1, 96, 1, 96, 3, 96, 1503, 8, 96, 1, 97, 1, 97, 3, 97, 1507, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1512, 8, 98, 1, 98, 3, 98, 1515, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1520, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1525, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1530, 8, 98, 1, 98, 1, 98, 3, 98, 1534, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1543, 8, 98, 1, 98, 3, 98, 1546, 8, 98, 1, 98, 1, 98, 3, 98, 1550, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1555, 8, 99, 10, 99, 12, 99, 1558, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 3, 101, 1566, 8, 101, 1, 101, 1, 101, 3, 101, 1570, 8, 101, 5, 101, 1572, 8, 101, 10, 101, 12, 101, 1575, 9, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1581, 8, 102, 1, 103, 3, 103, 1584, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1592, 8, 104, 10, 104, 12, 104, 1595, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1601, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1606, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1611, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1616, 8, 105, 1, 105, 1, 105, 5, 105, 1620, 8, 105, 10, 105, 12, 105, 1623, 9, 105, 3, 105, 1625, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1634, 8, 106, 1, 106, 3, 106, 1637, 8, 106, 1, 106, 3, 106, 1640, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1646, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 1651, 8, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1659, 8, 110, 10, 110, 12, 110, 1662, 9, 110, 3, 110, 1664, 8, 110, 1, 110, 3, 110, 1667, 8, 110, 1, 110, 1, 110, 3, 110, 1671, 8, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1679, 8, 112, 10, 112, 12, 112, 1682, 9, 112, 3, 112, 1684, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1690, 8, 113, 1, 113, 1, 113, 5, 113, 1694, 8, 113, 10, 113, 12, 113, 1697, 9, 113, 3, 113, 1699, 8, 113, 1, 114, 3, 114, 1702, 8, 114, 1, 114, 1, 114, 3, 114, 1706, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1716, 8, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 5, 118, 1725, 8, 118, 10, 118, 12, 118, 1728, 9, 118, 1, 118, 1, 118, 3, 118, 1732, 8, 118, 1, 118, 3, 118, 1735, 8, 118, 1, 119, 1, 119, 3, 119, 1739, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 3, 120, 1746, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1754, 8, 120, 10, 120, 12, 120, 1757, 9, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1768, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1774, 8, 121, 3, 121, 1776, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1785, 8, 122, 1, 122, 3, 122, 1788, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1795, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1805, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1811, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1817, 8, 126, 10, 126, 12, 126, 1820, 9, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1828, 8, 127, 10, 127, 12, 127, 1831, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 5, 128, 1838, 8, 128, 10, 128, 12, 128, 1841, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1851, 8, 129, 3, 129, 1853, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1859, 8, 129, 1, 130, 1, 130, 1, 130, 3, 130, 1864, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1872, 8, 131, 10, 131, 12, 131, 1875, 9, 131, 3, 131, 1877, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1883, 8, 131, 3, 131, 1885, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1893, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1899, 8, 132, 1, 132, 5, 132, 1902, 8, 132, 10, 132, 12, 132, 1905, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1914, 8, 133, 10, 133, 12, 133, 1917, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1923, 8, 133, 1, 134, 1, 134, 3, 134, 1927, 8, 134, 1, 134, 1, 134, 3, 134, 1931, 8, 134, 1, 135, 1, 135, 3, 135, 1935, 8, 135, 1, 135, 3, 135, 1938, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1943, 8, 135, 10, 135, 12, 135, 1946, 9, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1952, 8, 135, 10, 135, 12, 135, 1955, 9, 135, 3, 135, 1957, 8, 135, 1, 135, 1, 135, 3, 135, 1961, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1966, 8, 135, 1, 135, 1, 135, 3, 135, 1970, 8, 135, 1, 136, 3, 136, 1973, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1978, 8, 136, 10, 136, 12, 136, 1981, 9, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 1989, 8, 138, 10, 138, 12, 138, 1992, 9, 138, 3, 138, 1994, 8, 138, 1, 138, 1, 138, 3, 138, 1998, 8, 138, 1, 139, 1, 139, 3, 139, 2002, 8, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 3, 141, 2011, 8, 141, 1, 141, 3, 141, 2014, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2021, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2035, 8, 142, 5, 142, 2037, 8, 142, 10, 142, 12, 142, 2040, 9, 142, 1, 143, 3, 143, 2043, 8, 143, 1, 143, 1, 143, 3, 143, 2047, 8, 143, 1, 143, 1, 143, 3, 143, 2051, 8, 143, 1, 143, 1, 143, 3, 143, 2055, 8, 143, 1, 143, 1, 143, 3, 143, 2059, 8, 143, 1, 143, 1, 143, 3, 143, 2063, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2073, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 2082, 8, 144, 10, 144, 12, 144, 2085, 9, 144, 1, 144, 1, 144, 3, 144, 2089, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2102, 8, 145, 3, 145, 2104, 8, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2110, 8, 147, 1, 147, 1, 147, 3, 147, 2114, 8, 147, 3, 147, 2116, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 2122, 8, 148, 10, 148, 12, 148, 2125, 9, 148, 1, 148, 1, 148, 1, 149, 1, 149, 3, 149, 2131, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2136, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 2147, 8, 151, 10, 151, 12, 151, 2150, 9, 151, 1, 151, 1, 151, 1, 151, 3, 151, 2155, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2163, 8, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2170, 8, 155, 1, 155, 1, 155, 3, 155, 2174, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2182, 8, 155, 10, 155, 12, 155, 2185, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2195, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2203, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2210, 8, 156, 10, 156, 12, 156, 2213, 9, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2218, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2223, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2229, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2235, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2240, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2245, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2251, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 2262, 8, 157, 10, 157, 12, 157, 2265, 9, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2291, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2297, 8, 158, 5, 158, 2299, 8, 158, 10, 158, 12, 158, 2302, 9, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2311, 8, 158, 10, 158, 12, 158, 2314, 9, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2323, 8, 158, 1, 158, 3, 158, 2326, 8, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2331, 8, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2336, 8, 158, 10, 158, 12, 158, 2339, 9, 158, 3, 158, 2341, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2348, 8, 158, 10, 158, 12, 158, 2351, 9, 158, 3, 158, 2353, 8, 158, 1, 158, 1, 158, 3, 158, 2357, 8, 158, 1, 158, 3, 158, 2360, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2370, 8, 158, 10, 158, 12, 158, 2373, 9, 158, 3, 158, 2375, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 4, 158, 2392, 8, 158, 11, 158, 12, 158, 2393, 1, 158, 1, 158, 3, 158, 2398, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 4, 158, 2404, 8, 158, 11, 158, 12, 158, 2405, 1, 158, 1, 158, 3, 158, 2410, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2433, 8, 158, 10, 158, 12, 158, 2436, 9, 158, 3, 158, 2438, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2447, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2453, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2459, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2465, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2476, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 2485, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2505, 8, 158, 10, 158, 12, 158, 2508, 9, 158, 3, 158, 2510, 8, 158, 1, 158, 3, 158, 2513, 8, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2523, 8, 158, 10, 158, 12, 158, 2526, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2532, 8, 159, 3, 159, 2534, 8, 159, 1, 160, 1, 160, 1, 161, 1, 161, 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, 3, 163, 2556, 8, 163, 1, 164, 1, 164, 1, 165, 1, 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, 5, 166, 2583, 8, 166, 10, 166, 12, 166, 2586, 9, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2592, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2598, 8, 166, 10, 166, 12, 166, 2601, 9, 166, 1, 166, 1, 166, 3, 166, 2605, 8, 166, 3, 166, 2607, 8, 166, 1, 166, 1, 166, 5, 166, 2611, 8, 166, 10, 166, 12, 166, 2614, 9, 166, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 2620, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2626, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2646, 8, 172, 10, 172, 12, 172, 2649, 9, 172, 3, 172, 2651, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2658, 8, 172, 10, 172, 12, 172, 2661, 9, 172, 3, 172, 2663, 8, 172, 1, 172, 3, 172, 2666, 8, 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, 3, 173, 2686, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2697, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2704, 8, 175, 1, 176, 1, 176, 1, 176, 5, 176, 2709, 8, 176, 10, 176, 12, 176, 2712, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2725, 8, 177, 3, 177, 2727, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 5, 179, 2734, 8, 179, 10, 179, 12, 179, 2737, 9, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2745, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2752, 8, 181, 1, 182, 3, 182, 2755, 8, 182, 1, 182, 1, 182, 3, 182, 2759, 8, 182, 1, 182, 1, 182, 3, 182, 2763, 8, 182, 1, 182, 3, 182, 2766, 8, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 10, 771, 1447, 1621, 1660, 1680, 1695, 1726, 1755, 1829, 2300, 6, 264, 284, 310, 314, 316, 332, 185, 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, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3093, 0, 373, 1, 0, 0, 0, 2, 378, 1, 0, 0, 0, 4, 404, 1, 0, 0, 0, 6, 406, 1, 0, 0, 0, 8, 417, 1, 0, 0, 0, 10, 419, 1, 0, 0, 0, 12, 458, 1, 0, 0, 0, 14, 480, 1, 0, 0, 0, 16, 534, 1, 0, 0, 0, 18, 553, 1, 0, 0, 0, 20, 566, 1, 0, 0, 0, 22, 570, 1, 0, 0, 0, 24, 632, 1, 0, 0, 0, 26, 680, 1, 0, 0, 0, 28, 682, 1, 0, 0, 0, 30, 690, 1, 0, 0, 0, 32, 710, 1, 0, 0, 0, 34, 730, 1, 0, 0, 0, 36, 737, 1, 0, 0, 0, 38, 746, 1, 0, 0, 0, 40, 754, 1, 0, 0, 0, 42, 776, 1, 0, 0, 0, 44, 786, 1, 0, 0, 0, 46, 804, 1, 0, 0, 0, 48, 825, 1, 0, 0, 0, 50, 846, 1, 0, 0, 0, 52, 852, 1, 0, 0, 0, 54, 869, 1, 0, 0, 0, 56, 878, 1, 0, 0, 0, 58, 885, 1, 0, 0, 0, 60, 893, 1, 0, 0, 0, 62, 900, 1, 0, 0, 0, 64, 907, 1, 0, 0, 0, 66, 916, 1, 0, 0, 0, 68, 927, 1, 0, 0, 0, 70, 929, 1, 0, 0, 0, 72, 949, 1, 0, 0, 0, 74, 966, 1, 0, 0, 0, 76, 968, 1, 0, 0, 0, 78, 977, 1, 0, 0, 0, 80, 984, 1, 0, 0, 0, 82, 993, 1, 0, 0, 0, 84, 1003, 1, 0, 0, 0, 86, 1026, 1, 0, 0, 0, 88, 1032, 1, 0, 0, 0, 90, 1034, 1, 0, 0, 0, 92, 1041, 1, 0, 0, 0, 94, 1053, 1, 0, 0, 0, 96, 1055, 1, 0, 0, 0, 98, 1062, 1, 0, 0, 0, 100, 1083, 1, 0, 0, 0, 102, 1112, 1, 0, 0, 0, 104, 1114, 1, 0, 0, 0, 106, 1123, 1, 0, 0, 0, 108, 1146, 1, 0, 0, 0, 110, 1165, 1, 0, 0, 0, 112, 1188, 1, 0, 0, 0, 114, 1190, 1, 0, 0, 0, 116, 1205, 1, 0, 0, 0, 118, 1224, 1, 0, 0, 0, 120, 1246, 1, 0, 0, 0, 122, 1251, 1, 0, 0, 0, 124, 1256, 1, 0, 0, 0, 126, 1261, 1, 0, 0, 0, 128, 1266, 1, 0, 0, 0, 130, 1273, 1, 0, 0, 0, 132, 1288, 1, 0, 0, 0, 134, 1294, 1, 0, 0, 0, 136, 1314, 1, 0, 0, 0, 138, 1316, 1, 0, 0, 0, 140, 1327, 1, 0, 0, 0, 142, 1338, 1, 0, 0, 0, 144, 1352, 1, 0, 0, 0, 146, 1354, 1, 0, 0, 0, 148, 1363, 1, 0, 0, 0, 150, 1372, 1, 0, 0, 0, 152, 1381, 1, 0, 0, 0, 154, 1384, 1, 0, 0, 0, 156, 1392, 1, 0, 0, 0, 158, 1408, 1, 0, 0, 0, 160, 1412, 1, 0, 0, 0, 162, 1436, 1, 0, 0, 0, 164, 1438, 1, 0, 0, 0, 166, 1454, 1, 0, 0, 0, 168, 1457, 1, 0, 0, 0, 170, 1461, 1, 0, 0, 0, 172, 1464, 1, 0, 0, 0, 174, 1468, 1, 0, 0, 0, 176, 1470, 1, 0, 0, 0, 178, 1472, 1, 0, 0, 0, 180, 1474, 1, 0, 0, 0, 182, 1476, 1, 0, 0, 0, 184, 1478, 1, 0, 0, 0, 186, 1480, 1, 0, 0, 0, 188, 1488, 1, 0, 0, 0, 190, 1498, 1, 0, 0, 0, 192, 1502, 1, 0, 0, 0, 194, 1506, 1, 0, 0, 0, 196, 1511, 1, 0, 0, 0, 198, 1551, 1, 0, 0, 0, 200, 1559, 1, 0, 0, 0, 202, 1563, 1, 0, 0, 0, 204, 1578, 1, 0, 0, 0, 206, 1583, 1, 0, 0, 0, 208, 1587, 1, 0, 0, 0, 210, 1596, 1, 0, 0, 0, 212, 1626, 1, 0, 0, 0, 214, 1641, 1, 0, 0, 0, 216, 1647, 1, 0, 0, 0, 218, 1652, 1, 0, 0, 0, 220, 1654, 1, 0, 0, 0, 222, 1672, 1, 0, 0, 0, 224, 1675, 1, 0, 0, 0, 226, 1685, 1, 0, 0, 0, 228, 1705, 1, 0, 0, 0, 230, 1715, 1, 0, 0, 0, 232, 1717, 1, 0, 0, 0, 234, 1719, 1, 0, 0, 0, 236, 1734, 1, 0, 0, 0, 238, 1736, 1, 0, 0, 0, 240, 1743, 1, 0, 0, 0, 242, 1775, 1, 0, 0, 0, 244, 1787, 1, 0, 0, 0, 246, 1794, 1, 0, 0, 0, 248, 1804, 1, 0, 0, 0, 250, 1806, 1, 0, 0, 0, 252, 1812, 1, 0, 0, 0, 254, 1823, 1, 0, 0, 0, 256, 1834, 1, 0, 0, 0, 258, 1842, 1, 0, 0, 0, 260, 1860, 1, 0, 0, 0, 262, 1865, 1, 0, 0, 0, 264, 1886, 1, 0, 0, 0, 266, 1922, 1, 0, 0, 0, 268, 1924, 1, 0, 0, 0, 270, 1932, 1, 0, 0, 0, 272, 1972, 1, 0, 0, 0, 274, 1982, 1, 0, 0, 0, 276, 1997, 1, 0, 0, 0, 278, 1999, 1, 0, 0, 0, 280, 2006, 1, 0, 0, 0, 282, 2020, 1, 0, 0, 0, 284, 2022, 1, 0, 0, 0, 286, 2072, 1, 0, 0, 0, 288, 2088, 1, 0, 0, 0, 290, 2090, 1, 0, 0, 0, 292, 2105, 1, 0, 0, 0, 294, 2107, 1, 0, 0, 0, 296, 2117, 1, 0, 0, 0, 298, 2135, 1, 0, 0, 0, 300, 2137, 1, 0, 0, 0, 302, 2141, 1, 0, 0, 0, 304, 2156, 1, 0, 0, 0, 306, 2162, 1, 0, 0, 0, 308, 2164, 1, 0, 0, 0, 310, 2173, 1, 0, 0, 0, 312, 2244, 1, 0, 0, 0, 314, 2250, 1, 0, 0, 0, 316, 2512, 1, 0, 0, 0, 318, 2533, 1, 0, 0, 0, 320, 2535, 1, 0, 0, 0, 322, 2537, 1, 0, 0, 0, 324, 2539, 1, 0, 0, 0, 326, 2555, 1, 0, 0, 0, 328, 2557, 1, 0, 0, 0, 330, 2559, 1, 0, 0, 0, 332, 2606, 1, 0, 0, 0, 334, 2615, 1, 0, 0, 0, 336, 2619, 1, 0, 0, 0, 338, 2625, 1, 0, 0, 0, 340, 2627, 1, 0, 0, 0, 342, 2632, 1, 0, 0, 0, 344, 2638, 1, 0, 0, 0, 346, 2685, 1, 0, 0, 0, 348, 2696, 1, 0, 0, 0, 350, 2703, 1, 0, 0, 0, 352, 2705, 1, 0, 0, 0, 354, 2726, 1, 0, 0, 0, 356, 2728, 1, 0, 0, 0, 358, 2730, 1, 0, 0, 0, 360, 2744, 1, 0, 0, 0, 362, 2751, 1, 0, 0, 0, 364, 2765, 1, 0, 0, 0, 366, 2767, 1, 0, 0, 0, 368, 2769, 1, 0, 0, 0, 370, 372, 3, 2, 1, 0, 371, 370, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 376, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 377, 5, 0, 0, 1, 377, 1, 1, 0, 0, 0, 378, 380, 3, 4, 2, 0, 379, 381, 5, 262, 0, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 3, 1, 0, 0, 0, 382, 405, 3, 206, 103, 0, 383, 405, 3, 6, 3, 0, 384, 405, 3, 8, 4, 0, 385, 405, 3, 26, 13, 0, 386, 405, 3, 64, 32, 0, 387, 405, 3, 66, 33, 0, 388, 405, 3, 68, 34, 0, 389, 405, 3, 74, 37, 0, 390, 405, 3, 88, 44, 0, 391, 405, 3, 94, 47, 0, 392, 405, 3, 100, 50, 0, 393, 405, 3, 102, 51, 0, 394, 405, 3, 108, 54, 0, 395, 405, 3, 110, 55, 0, 396, 405, 3, 112, 56, 0, 397, 405, 3, 144, 72, 0, 398, 405, 3, 152, 76, 0, 399, 405, 3, 154, 77, 0, 400, 405, 3, 156, 78, 0, 401, 405, 3, 158, 79, 0, 402, 405, 3, 160, 80, 0, 403, 405, 3, 162, 81, 0, 404, 382, 1, 0, 0, 0, 404, 383, 1, 0, 0, 0, 404, 384, 1, 0, 0, 0, 404, 385, 1, 0, 0, 0, 404, 386, 1, 0, 0, 0, 404, 387, 1, 0, 0, 0, 404, 388, 1, 0, 0, 0, 404, 389, 1, 0, 0, 0, 404, 390, 1, 0, 0, 0, 404, 391, 1, 0, 0, 0, 404, 392, 1, 0, 0, 0, 404, 393, 1, 0, 0, 0, 404, 394, 1, 0, 0, 0, 404, 395, 1, 0, 0, 0, 404, 396, 1, 0, 0, 0, 404, 397, 1, 0, 0, 0, 404, 398, 1, 0, 0, 0, 404, 399, 1, 0, 0, 0, 404, 400, 1, 0, 0, 0, 404, 401, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 404, 403, 1, 0, 0, 0, 405, 5, 1, 0, 0, 0, 406, 407, 5, 203, 0, 0, 407, 408, 3, 184, 92, 0, 408, 7, 1, 0, 0, 0, 409, 418, 3, 18, 9, 0, 410, 418, 3, 20, 10, 0, 411, 418, 3, 22, 11, 0, 412, 418, 3, 24, 12, 0, 413, 418, 3, 16, 8, 0, 414, 418, 3, 14, 7, 0, 415, 418, 3, 12, 6, 0, 416, 418, 3, 10, 5, 0, 417, 409, 1, 0, 0, 0, 417, 410, 1, 0, 0, 0, 417, 411, 1, 0, 0, 0, 417, 412, 1, 0, 0, 0, 417, 413, 1, 0, 0, 0, 417, 414, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 417, 416, 1, 0, 0, 0, 418, 9, 1, 0, 0, 0, 419, 421, 5, 37, 0, 0, 420, 422, 5, 19, 0, 0, 421, 420, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 425, 5, 188, 0, 0, 424, 426, 3, 172, 86, 0, 425, 424, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 443, 3, 174, 87, 0, 428, 429, 5, 265, 0, 0, 429, 434, 3, 216, 108, 0, 430, 431, 5, 263, 0, 0, 431, 433, 3, 216, 108, 0, 432, 430, 1, 0, 0, 0, 433, 436, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 437, 438, 5, 263, 0, 0, 438, 440, 3, 210, 105, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 5, 266, 0, 0, 442, 444, 1, 0, 0, 0, 443, 428, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 451, 1, 0, 0, 0, 445, 446, 5, 17, 0, 0, 446, 449, 5, 26, 0, 0, 447, 450, 3, 296, 148, 0, 448, 450, 3, 254, 127, 0, 449, 447, 1, 0, 0, 0, 449, 448, 1, 0, 0, 0, 450, 452, 1, 0, 0, 0, 451, 445, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 456, 3, 196, 98, 0, 454, 455, 5, 9, 0, 0, 455, 457, 3, 206, 103, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 11, 1, 0, 0, 0, 458, 460, 5, 37, 0, 0, 459, 461, 5, 19, 0, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 5, 188, 0, 0, 463, 465, 3, 172, 86, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 3, 174, 87, 0, 467, 471, 5, 115, 0, 0, 468, 472, 3, 186, 93, 0, 469, 470, 5, 147, 0, 0, 470, 472, 3, 318, 159, 0, 471, 468, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 476, 1, 0, 0, 0, 473, 474, 5, 17, 0, 0, 474, 475, 5, 26, 0, 0, 475, 477, 3, 254, 127, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 3, 196, 98, 0, 479, 13, 1, 0, 0, 0, 480, 482, 5, 37, 0, 0, 481, 483, 5, 19, 0, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 5, 188, 0, 0, 485, 487, 3, 172, 86, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 506, 3, 174, 87, 0, 489, 490, 5, 265, 0, 0, 490, 495, 3, 218, 109, 0, 491, 492, 5, 263, 0, 0, 492, 494, 3, 218, 109, 0, 493, 491, 1, 0, 0, 0, 494, 497, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 502, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 499, 5, 263, 0, 0, 499, 500, 5, 150, 0, 0, 500, 501, 5, 110, 0, 0, 501, 503, 3, 296, 148, 0, 502, 498, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 5, 266, 0, 0, 505, 507, 1, 0, 0, 0, 506, 489, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 513, 1, 0, 0, 0, 508, 509, 5, 150, 0, 0, 509, 511, 5, 110, 0, 0, 510, 512, 3, 296, 148, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 1, 0, 0, 0, 513, 508, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 518, 1, 0, 0, 0, 515, 516, 5, 145, 0, 0, 516, 517, 5, 26, 0, 0, 517, 519, 3, 236, 118, 0, 518, 515, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 522, 3, 222, 111, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 23, 0, 0, 524, 525, 5, 9, 0, 0, 525, 528, 5, 111, 0, 0, 526, 527, 5, 25, 0, 0, 527, 529, 3, 252, 126, 0, 528, 526, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 531, 5, 9, 0, 0, 531, 533, 3, 206, 103, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 15, 1, 0, 0, 0, 534, 535, 5, 37, 0, 0, 535, 537, 5, 212, 0, 0, 536, 538, 3, 172, 86, 0, 537, 536, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 541, 3, 178, 89, 0, 540, 542, 3, 202, 101, 0, 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 544, 1, 0, 0, 0, 543, 545, 3, 222, 111, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 548, 1, 0, 0, 0, 546, 547, 5, 25, 0, 0, 547, 549, 3, 252, 126, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 9, 0, 0, 551, 552, 3, 206, 103, 0, 552, 17, 1, 0, 0, 0, 553, 554, 5, 37, 0, 0, 554, 556, 7, 0, 0, 0, 555, 557, 3, 172, 86, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 560, 3, 176, 88, 0, 559, 561, 3, 222, 111, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 564, 1, 0, 0, 0, 562, 563, 5, 24, 0, 0, 563, 565, 3, 318, 159, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 19, 1, 0, 0, 0, 566, 567, 5, 37, 0, 0, 567, 568, 5, 166, 0, 0, 568, 569, 3, 362, 181, 0, 569, 21, 1, 0, 0, 0, 570, 572, 5, 37, 0, 0, 571, 573, 5, 12, 0, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 576, 5, 84, 0, 0, 575, 577, 3, 172, 86, 0, 576, 575, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 591, 3, 180, 90, 0, 579, 588, 5, 265, 0, 0, 580, 585, 3, 332, 166, 0, 581, 582, 5, 263, 0, 0, 582, 584, 3, 332, 166, 0, 583, 581, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 589, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 588, 580, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 592, 5, 266, 0, 0, 591, 579, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 5, 160, 0, 0, 594, 597, 3, 332, 166, 0, 595, 596, 5, 102, 0, 0, 596, 598, 3, 332, 166, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 5, 24, 0, 0, 600, 604, 5, 274, 0, 0, 601, 602, 5, 104, 0, 0, 602, 603, 5, 249, 0, 0, 603, 605, 5, 274, 0, 0, 604, 601, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 5, 206, 0, 0, 607, 608, 5, 249, 0, 0, 608, 609, 5, 274, 0, 0, 609, 610, 5, 126, 0, 0, 610, 611, 5, 249, 0, 0, 611, 615, 5, 274, 0, 0, 612, 613, 5, 18, 0, 0, 613, 614, 5, 249, 0, 0, 614, 616, 5, 274, 0, 0, 615, 612, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 618, 5, 20, 0, 0, 618, 619, 5, 249, 0, 0, 619, 621, 5, 274, 0, 0, 620, 617, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 625, 1, 0, 0, 0, 622, 623, 5, 187, 0, 0, 623, 624, 5, 249, 0, 0, 624, 626, 5, 274, 0, 0, 625, 622, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 628, 5, 76, 0, 0, 628, 629, 5, 249, 0, 0, 629, 631, 5, 274, 0, 0, 630, 627, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 23, 1, 0, 0, 0, 632, 633, 5, 37, 0, 0, 633, 635, 5, 84, 0, 0, 634, 636, 3, 172, 86, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 650, 3, 180, 90, 0, 638, 647, 5, 265, 0, 0, 639, 644, 3, 332, 166, 0, 640, 641, 5, 263, 0, 0, 641, 643, 3, 332, 166, 0, 642, 640, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 639, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 651, 5, 266, 0, 0, 650, 638, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 654, 1, 0, 0, 0, 652, 653, 5, 160, 0, 0, 653, 655, 3, 332, 166, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 5, 24, 0, 0, 657, 658, 5, 274, 0, 0, 658, 659, 5, 186, 0, 0, 659, 660, 5, 249, 0, 0, 660, 661, 3, 318, 159, 0, 661, 25, 1, 0, 0, 0, 662, 681, 3, 28, 14, 0, 663, 681, 3, 62, 31, 0, 664, 681, 3, 60, 30, 0, 665, 681, 3, 58, 29, 0, 666, 681, 3, 54, 27, 0, 667, 681, 3, 56, 28, 0, 668, 681, 3, 52, 26, 0, 669, 681, 3, 48, 24, 0, 670, 681, 3, 50, 25, 0, 671, 681, 3, 46, 23, 0, 672, 681, 3, 44, 22, 0, 673, 681, 3, 42, 21, 0, 674, 681, 3, 40, 20, 0, 675, 681, 3, 34, 17, 0, 676, 681, 3, 30, 15, 0, 677, 681, 3, 32, 16, 0, 678, 681, 3, 36, 18, 0, 679, 681, 3, 38, 19, 0, 680, 662, 1, 0, 0, 0, 680, 663, 1, 0, 0, 0, 680, 664, 1, 0, 0, 0, 680, 665, 1, 0, 0, 0, 680, 666, 1, 0, 0, 0, 680, 667, 1, 0, 0, 0, 680, 668, 1, 0, 0, 0, 680, 669, 1, 0, 0, 0, 680, 670, 1, 0, 0, 0, 680, 671, 1, 0, 0, 0, 680, 672, 1, 0, 0, 0, 680, 673, 1, 0, 0, 0, 680, 674, 1, 0, 0, 0, 680, 675, 1, 0, 0, 0, 680, 676, 1, 0, 0, 0, 680, 677, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 680, 679, 1, 0, 0, 0, 681, 27, 1, 0, 0, 0, 682, 683, 5, 4, 0, 0, 683, 684, 5, 46, 0, 0, 684, 685, 3, 184, 92, 0, 685, 686, 5, 176, 0, 0, 686, 687, 5, 142, 0, 0, 687, 688, 7, 1, 0, 0, 688, 689, 3, 362, 181, 0, 689, 29, 1, 0, 0, 0, 690, 691, 5, 4, 0, 0, 691, 692, 5, 188, 0, 0, 692, 693, 3, 186, 93, 0, 693, 694, 5, 176, 0, 0, 694, 695, 5, 32, 0, 0, 695, 696, 5, 182, 0, 0, 696, 697, 3, 192, 96, 0, 697, 698, 5, 265, 0, 0, 698, 699, 3, 232, 116, 0, 699, 700, 5, 249, 0, 0, 700, 706, 3, 318, 159, 0, 701, 702, 5, 263, 0, 0, 702, 703, 3, 232, 116, 0, 703, 704, 5, 249, 0, 0, 704, 705, 3, 318, 159, 0, 705, 707, 1, 0, 0, 0, 706, 701, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 5, 266, 0, 0, 709, 31, 1, 0, 0, 0, 710, 711, 5, 4, 0, 0, 711, 712, 5, 188, 0, 0, 712, 715, 3, 186, 93, 0, 713, 714, 5, 145, 0, 0, 714, 716, 3, 308, 154, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 728, 5, 176, 0, 0, 718, 719, 5, 30, 0, 0, 719, 720, 5, 94, 0, 0, 720, 725, 3, 318, 159, 0, 721, 722, 5, 216, 0, 0, 722, 723, 5, 151, 0, 0, 723, 724, 5, 249, 0, 0, 724, 726, 3, 364, 182, 0, 725, 721, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 729, 5, 197, 0, 0, 728, 718, 1, 0, 0, 0, 728, 727, 1, 0, 0, 0, 729, 33, 1, 0, 0, 0, 730, 731, 5, 4, 0, 0, 731, 732, 5, 188, 0, 0, 732, 733, 3, 186, 93, 0, 733, 734, 5, 31, 0, 0, 734, 735, 3, 192, 96, 0, 735, 736, 3, 224, 112, 0, 736, 35, 1, 0, 0, 0, 737, 738, 5, 4, 0, 0, 738, 739, 5, 188, 0, 0, 739, 740, 3, 186, 93, 0, 740, 742, 5, 58, 0, 0, 741, 743, 5, 32, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 3, 192, 96, 0, 745, 37, 1, 0, 0, 0, 746, 747, 5, 4, 0, 0, 747, 748, 5, 188, 0, 0, 748, 749, 3, 186, 93, 0, 749, 750, 5, 176, 0, 0, 750, 751, 5, 142, 0, 0, 751, 752, 7, 1, 0, 0, 752, 753, 3, 362, 181, 0, 753, 39, 1, 0, 0, 0, 754, 755, 5, 4, 0, 0, 755, 756, 5, 188, 0, 0, 756, 762, 3, 186, 93, 0, 757, 763, 5, 158, 0, 0, 758, 760, 5, 1, 0, 0, 759, 761, 3, 172, 86, 0, 760, 759, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 763, 1, 0, 0, 0, 762, 757, 1, 0, 0, 0, 762, 758, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 5, 33, 0, 0, 765, 766, 5, 265, 0, 0, 766, 771, 3, 224, 112, 0, 767, 768, 5, 263, 0, 0, 768, 770, 3, 224, 112, 0, 769, 767, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 774, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 774, 775, 5, 266, 0, 0, 775, 41, 1, 0, 0, 0, 776, 777, 5, 4, 0, 0, 777, 778, 5, 188, 0, 0, 778, 779, 3, 186, 93, 0, 779, 780, 5, 1, 0, 0, 780, 782, 5, 32, 0, 0, 781, 783, 3, 172, 86, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 3, 226, 113, 0, 785, 43, 1, 0, 0, 0, 786, 787, 5, 4, 0, 0, 787, 788, 5, 188, 0, 0, 788, 789, 3, 186, 93, 0, 789, 791, 5, 4, 0, 0, 790, 792, 5, 32, 0, 0, 791, 790, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 802, 3, 192, 96, 0, 794, 798, 5, 176, 0, 0, 795, 799, 3, 230, 115, 0, 796, 797, 5, 34, 0, 0, 797, 799, 3, 318, 159, 0, 798, 795, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 799, 803, 1, 0, 0, 0, 800, 801, 5, 58, 0, 0, 801, 803, 5, 51, 0, 0, 802, 794, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, 803, 45, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 806, 5, 188, 0, 0, 806, 807, 3, 186, 93, 0, 807, 809, 5, 1, 0, 0, 808, 810, 3, 172, 86, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 823, 1, 0, 0, 0, 811, 812, 5, 145, 0, 0, 812, 815, 3, 308, 154, 0, 813, 814, 5, 24, 0, 0, 814, 816, 3, 318, 159, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 1, 0, 0, 0, 817, 819, 3, 244, 122, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 824, 1, 0, 0, 0, 820, 821, 5, 154, 0, 0, 821, 822, 5, 145, 0, 0, 822, 824, 3, 242, 121, 0, 823, 811, 1, 0, 0, 0, 823, 820, 1, 0, 0, 0, 824, 47, 1, 0, 0, 0, 825, 826, 5, 4, 0, 0, 826, 827, 5, 188, 0, 0, 827, 830, 3, 186, 93, 0, 828, 829, 5, 145, 0, 0, 829, 831, 3, 308, 154, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 844, 5, 176, 0, 0, 833, 834, 5, 72, 0, 0, 834, 845, 3, 234, 117, 0, 835, 836, 5, 168, 0, 0, 836, 837, 5, 79, 0, 0, 837, 845, 3, 258, 129, 0, 838, 839, 5, 24, 0, 0, 839, 845, 3, 318, 159, 0, 840, 841, 5, 25, 0, 0, 841, 845, 3, 252, 126, 0, 842, 843, 5, 175, 0, 0, 843, 845, 3, 252, 126, 0, 844, 833, 1, 0, 0, 0, 844, 835, 1, 0, 0, 0, 844, 838, 1, 0, 0, 0, 844, 840, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 49, 1, 0, 0, 0, 846, 847, 5, 4, 0, 0, 847, 848, 5, 188, 0, 0, 848, 849, 3, 186, 93, 0, 849, 850, 5, 155, 0, 0, 850, 851, 5, 146, 0, 0, 851, 51, 1, 0, 0, 0, 852, 853, 5, 4, 0, 0, 853, 854, 5, 188, 0, 0, 854, 855, 3, 186, 93, 0, 855, 857, 5, 58, 0, 0, 856, 858, 3, 170, 85, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 867, 1, 0, 0, 0, 859, 860, 5, 145, 0, 0, 860, 862, 3, 308, 154, 0, 861, 863, 5, 22, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 868, 1, 0, 0, 0, 864, 865, 5, 154, 0, 0, 865, 866, 5, 145, 0, 0, 866, 868, 3, 242, 121, 0, 867, 859, 1, 0, 0, 0, 867, 864, 1, 0, 0, 0, 868, 53, 1, 0, 0, 0, 869, 870, 5, 4, 0, 0, 870, 871, 5, 212, 0, 0, 871, 873, 3, 188, 94, 0, 872, 874, 3, 202, 101, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 9, 0, 0, 876, 877, 3, 206, 103, 0, 877, 55, 1, 0, 0, 0, 878, 879, 5, 4, 0, 0, 879, 880, 5, 212, 0, 0, 880, 881, 3, 188, 94, 0, 881, 882, 5, 156, 0, 0, 882, 883, 5, 193, 0, 0, 883, 884, 3, 188, 94, 0, 884, 57, 1, 0, 0, 0, 885, 886, 5, 4, 0, 0, 886, 887, 5, 212, 0, 0, 887, 888, 3, 188, 94, 0, 888, 889, 5, 176, 0, 0, 889, 890, 5, 142, 0, 0, 890, 891, 7, 1, 0, 0, 891, 892, 3, 358, 179, 0, 892, 59, 1, 0, 0, 0, 893, 894, 5, 4, 0, 0, 894, 895, 5, 188, 0, 0, 895, 896, 3, 186, 93, 0, 896, 897, 5, 156, 0, 0, 897, 898, 5, 193, 0, 0, 898, 899, 3, 186, 93, 0, 899, 61, 1, 0, 0, 0, 900, 901, 5, 4, 0, 0, 901, 902, 5, 212, 0, 0, 902, 903, 3, 188, 94, 0, 903, 904, 7, 2, 0, 0, 904, 905, 5, 25, 0, 0, 905, 906, 3, 252, 126, 0, 906, 63, 1, 0, 0, 0, 907, 909, 5, 196, 0, 0, 908, 910, 5, 188, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 1, 0, 0, 0, 911, 913, 3, 170, 85, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 3, 186, 93, 0, 915, 65, 1, 0, 0, 0, 916, 918, 5, 56, 0, 0, 917, 919, 5, 46, 0, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 1, 0, 0, 0, 920, 922, 7, 3, 0, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 3, 358, 179, 0, 924, 67, 1, 0, 0, 0, 925, 928, 3, 70, 35, 0, 926, 928, 3, 72, 36, 0, 927, 925, 1, 0, 0, 0, 927, 926, 1, 0, 0, 0, 928, 69, 1, 0, 0, 0, 929, 930, 5, 36, 0, 0, 930, 931, 5, 182, 0, 0, 931, 933, 3, 186, 93, 0, 932, 934, 3, 296, 148, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 947, 1, 0, 0, 0, 935, 936, 5, 190, 0, 0, 936, 937, 5, 185, 0, 0, 937, 938, 5, 265, 0, 0, 938, 939, 3, 364, 182, 0, 939, 945, 5, 266, 0, 0, 940, 941, 5, 157, 0, 0, 941, 942, 5, 265, 0, 0, 942, 943, 3, 364, 182, 0, 943, 944, 5, 266, 0, 0, 944, 946, 1, 0, 0, 0, 945, 940, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 935, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 71, 1, 0, 0, 0, 949, 950, 5, 36, 0, 0, 950, 951, 5, 96, 0, 0, 951, 952, 5, 182, 0, 0, 952, 958, 3, 186, 93, 0, 953, 954, 5, 145, 0, 0, 954, 955, 5, 265, 0, 0, 955, 956, 3, 308, 154, 0, 956, 957, 5, 266, 0, 0, 957, 959, 1, 0, 0, 0, 958, 953, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 73, 1, 0, 0, 0, 960, 967, 3, 86, 43, 0, 961, 967, 3, 84, 42, 0, 962, 967, 3, 82, 41, 0, 963, 967, 3, 78, 39, 0, 964, 967, 3, 80, 40, 0, 965, 967, 3, 76, 38, 0, 966, 960, 1, 0, 0, 0, 966, 961, 1, 0, 0, 0, 966, 962, 1, 0, 0, 0, 966, 963, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 965, 1, 0, 0, 0, 967, 75, 1, 0, 0, 0, 968, 969, 5, 58, 0, 0, 969, 971, 7, 0, 0, 0, 970, 972, 3, 170, 85, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 975, 3, 184, 92, 0, 974, 976, 7, 4, 0, 0, 975, 974, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 77, 1, 0, 0, 0, 977, 978, 5, 58, 0, 0, 978, 980, 5, 212, 0, 0, 979, 981, 3, 170, 85, 0, 980, 979, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 3, 188, 94, 0, 983, 79, 1, 0, 0, 0, 984, 985, 5, 58, 0, 0, 985, 987, 5, 188, 0, 0, 986, 988, 3, 170, 85, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 991, 3, 186, 93, 0, 990, 992, 5, 22, 0, 0, 991, 990, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 81, 1, 0, 0, 0, 993, 995, 5, 58, 0, 0, 994, 996, 5, 96, 0, 0, 995, 994, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 5, 182, 0, 0, 998, 1001, 3, 186, 93, 0, 999, 1000, 5, 145, 0, 0, 1000, 1002, 3, 308, 154, 0, 1001, 999, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 83, 1, 0, 0, 0, 1003, 1005, 5, 58, 0, 0, 1004, 1006, 5, 12, 0, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1009, 5, 84, 0, 0, 1008, 1010, 3, 170, 85, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1024, 3, 190, 95, 0, 1012, 1021, 5, 265, 0, 0, 1013, 1018, 3, 332, 166, 0, 1014, 1015, 5, 263, 0, 0, 1015, 1017, 3, 332, 166, 0, 1016, 1014, 1, 0, 0, 0, 1017, 1020, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1022, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1021, 1013, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 5, 266, 0, 0, 1024, 1012, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 85, 1, 0, 0, 0, 1026, 1027, 5, 58, 0, 0, 1027, 1028, 5, 166, 0, 0, 1028, 1029, 3, 362, 181, 0, 1029, 87, 1, 0, 0, 0, 1030, 1033, 3, 90, 45, 0, 1031, 1033, 3, 92, 46, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1031, 1, 0, 0, 0, 1033, 89, 1, 0, 0, 0, 1034, 1035, 5, 86, 0, 0, 1035, 1036, 5, 166, 0, 0, 1036, 1037, 3, 362, 181, 0, 1037, 1038, 5, 193, 0, 0, 1038, 1039, 5, 87, 0, 0, 1039, 1040, 3, 362, 181, 0, 1040, 91, 1, 0, 0, 0, 1041, 1042, 5, 86, 0, 0, 1042, 1043, 3, 354, 177, 0, 1043, 1044, 5, 136, 0, 0, 1044, 1046, 3, 356, 178, 0, 1045, 1047, 3, 358, 179, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 5, 193, 0, 0, 1049, 1050, 3, 360, 180, 0, 1050, 93, 1, 0, 0, 0, 1051, 1054, 3, 96, 48, 0, 1052, 1054, 3, 98, 49, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1052, 1, 0, 0, 0, 1054, 95, 1, 0, 0, 0, 1055, 1056, 5, 161, 0, 0, 1056, 1057, 5, 166, 0, 0, 1057, 1058, 3, 362, 181, 0, 1058, 1059, 5, 82, 0, 0, 1059, 1060, 5, 87, 0, 0, 1060, 1061, 3, 362, 181, 0, 1061, 97, 1, 0, 0, 0, 1062, 1066, 5, 161, 0, 0, 1063, 1064, 5, 86, 0, 0, 1064, 1065, 5, 137, 0, 0, 1065, 1067, 5, 78, 0, 0, 1066, 1063, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 3, 354, 177, 0, 1069, 1070, 5, 136, 0, 0, 1070, 1072, 3, 356, 178, 0, 1071, 1073, 3, 358, 179, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1080, 5, 82, 0, 0, 1075, 1081, 3, 360, 180, 0, 1076, 1078, 5, 166, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1081, 3, 362, 181, 0, 1080, 1075, 1, 0, 0, 0, 1080, 1077, 1, 0, 0, 0, 1081, 99, 1, 0, 0, 0, 1082, 1084, 3, 208, 104, 0, 1083, 1082, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 5, 99, 0, 0, 1086, 1088, 7, 5, 0, 0, 1087, 1089, 5, 188, 0, 0, 1088, 1087, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 3, 186, 93, 0, 1091, 1093, 3, 296, 148, 0, 1092, 1091, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1106, 1, 0, 0, 0, 1094, 1095, 5, 145, 0, 0, 1095, 1096, 5, 265, 0, 0, 1096, 1101, 3, 308, 154, 0, 1097, 1098, 5, 263, 0, 0, 1098, 1100, 3, 308, 154, 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, 266, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1094, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 3, 206, 103, 0, 1109, 101, 1, 0, 0, 0, 1110, 1113, 3, 104, 52, 0, 1111, 1113, 3, 106, 53, 0, 1112, 1110, 1, 0, 0, 0, 1112, 1111, 1, 0, 0, 0, 1113, 103, 1, 0, 0, 0, 1114, 1116, 5, 50, 0, 0, 1115, 1117, 5, 82, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1121, 3, 186, 93, 0, 1119, 1120, 5, 215, 0, 0, 1120, 1122, 3, 310, 155, 0, 1121, 1119, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 105, 1, 0, 0, 0, 1123, 1124, 5, 50, 0, 0, 1124, 1129, 3, 186, 93, 0, 1125, 1127, 5, 9, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 3, 362, 181, 0, 1129, 1126, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1140, 5, 82, 0, 0, 1132, 1137, 3, 284, 142, 0, 1133, 1134, 5, 263, 0, 0, 1134, 1136, 3, 284, 142, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1132, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1144, 1, 0, 0, 0, 1142, 1143, 5, 215, 0, 0, 1143, 1145, 3, 310, 155, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 107, 1, 0, 0, 0, 1146, 1147, 5, 54, 0, 0, 1147, 1148, 3, 186, 93, 0, 1148, 1149, 5, 176, 0, 0, 1149, 1159, 3, 198, 99, 0, 1150, 1151, 5, 82, 0, 0, 1151, 1156, 3, 284, 142, 0, 1152, 1153, 5, 263, 0, 0, 1153, 1155, 3, 284, 142, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1158, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1160, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1150, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1163, 1, 0, 0, 0, 1161, 1162, 5, 215, 0, 0, 1162, 1164, 3, 310, 155, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 109, 1, 0, 0, 0, 1165, 1166, 5, 207, 0, 0, 1166, 1168, 5, 103, 0, 0, 1167, 1169, 5, 188, 0, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1172, 3, 186, 93, 0, 1171, 1173, 3, 296, 148, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 3, 206, 103, 0, 1175, 111, 1, 0, 0, 0, 1176, 1189, 3, 132, 66, 0, 1177, 1189, 3, 134, 67, 0, 1178, 1189, 3, 136, 68, 0, 1179, 1189, 3, 130, 65, 0, 1180, 1189, 3, 128, 64, 0, 1181, 1189, 3, 126, 63, 0, 1182, 1189, 3, 124, 62, 0, 1183, 1189, 3, 122, 61, 0, 1184, 1189, 3, 120, 60, 0, 1185, 1189, 3, 118, 59, 0, 1186, 1189, 3, 116, 58, 0, 1187, 1189, 3, 114, 57, 0, 1188, 1176, 1, 0, 0, 0, 1188, 1177, 1, 0, 0, 0, 1188, 1178, 1, 0, 0, 0, 1188, 1179, 1, 0, 0, 0, 1188, 1180, 1, 0, 0, 0, 1188, 1181, 1, 0, 0, 0, 1188, 1182, 1, 0, 0, 0, 1188, 1183, 1, 0, 0, 0, 1188, 1184, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1187, 1, 0, 0, 0, 1189, 113, 1, 0, 0, 0, 1190, 1191, 5, 179, 0, 0, 1191, 1203, 7, 6, 0, 0, 1192, 1194, 5, 115, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1200, 3, 318, 159, 0, 1196, 1197, 5, 271, 0, 0, 1197, 1199, 3, 318, 159, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1193, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 115, 1, 0, 0, 0, 1205, 1206, 5, 179, 0, 0, 1206, 1209, 5, 189, 0, 0, 1207, 1208, 5, 94, 0, 0, 1208, 1210, 3, 186, 93, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1222, 1, 0, 0, 0, 1211, 1213, 5, 115, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1219, 3, 318, 159, 0, 1215, 1216, 5, 271, 0, 0, 1216, 1218, 3, 318, 159, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1212, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 117, 1, 0, 0, 0, 1224, 1226, 5, 179, 0, 0, 1225, 1227, 7, 7, 0, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1231, 5, 85, 0, 0, 1229, 1230, 5, 94, 0, 0, 1230, 1232, 3, 184, 92, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1244, 1, 0, 0, 0, 1233, 1235, 5, 115, 0, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1241, 3, 318, 159, 0, 1237, 1238, 5, 271, 0, 0, 1238, 1240, 3, 318, 159, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1234, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 119, 1, 0, 0, 0, 1246, 1247, 5, 179, 0, 0, 1247, 1248, 5, 37, 0, 0, 1248, 1249, 5, 188, 0, 0, 1249, 1250, 3, 186, 93, 0, 1250, 121, 1, 0, 0, 0, 1251, 1252, 5, 179, 0, 0, 1252, 1253, 5, 37, 0, 0, 1253, 1254, 5, 212, 0, 0, 1254, 1255, 3, 188, 94, 0, 1255, 123, 1, 0, 0, 0, 1256, 1257, 5, 179, 0, 0, 1257, 1258, 5, 188, 0, 0, 1258, 1259, 5, 182, 0, 0, 1259, 1260, 3, 186, 93, 0, 1260, 125, 1, 0, 0, 0, 1261, 1262, 5, 179, 0, 0, 1262, 1263, 5, 32, 0, 0, 1263, 1264, 5, 182, 0, 0, 1264, 1265, 3, 186, 93, 0, 1265, 127, 1, 0, 0, 0, 1266, 1268, 5, 179, 0, 0, 1267, 1269, 5, 154, 0, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1271, 5, 146, 0, 0, 1271, 1272, 3, 186, 93, 0, 1272, 129, 1, 0, 0, 0, 1273, 1274, 5, 179, 0, 0, 1274, 1275, 5, 73, 0, 0, 1275, 1276, 5, 94, 0, 0, 1276, 1286, 3, 186, 93, 0, 1277, 1278, 5, 145, 0, 0, 1278, 1279, 5, 265, 0, 0, 1279, 1282, 3, 308, 154, 0, 1280, 1281, 5, 263, 0, 0, 1281, 1283, 3, 308, 154, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 5, 266, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1277, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 131, 1, 0, 0, 0, 1288, 1290, 5, 179, 0, 0, 1289, 1291, 5, 39, 0, 0, 1290, 1289, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 5, 167, 0, 0, 1293, 133, 1, 0, 0, 0, 1294, 1295, 5, 179, 0, 0, 1295, 1296, 5, 166, 0, 0, 1296, 1297, 5, 86, 0, 0, 1297, 1298, 5, 87, 0, 0, 1298, 1299, 3, 362, 181, 0, 1299, 135, 1, 0, 0, 0, 1300, 1315, 3, 138, 69, 0, 1301, 1315, 3, 140, 70, 0, 1302, 1315, 3, 142, 71, 0, 1303, 1304, 5, 179, 0, 0, 1304, 1305, 5, 86, 0, 0, 1305, 1306, 7, 8, 0, 0, 1306, 1312, 3, 362, 181, 0, 1307, 1308, 5, 136, 0, 0, 1308, 1310, 7, 9, 0, 0, 1309, 1311, 3, 358, 179, 0, 1310, 1309, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1313, 1, 0, 0, 0, 1312, 1307, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1300, 1, 0, 0, 0, 1314, 1301, 1, 0, 0, 0, 1314, 1302, 1, 0, 0, 0, 1314, 1303, 1, 0, 0, 0, 1315, 137, 1, 0, 0, 0, 1316, 1317, 5, 179, 0, 0, 1317, 1318, 5, 86, 0, 0, 1318, 1319, 7, 8, 0, 0, 1319, 1325, 3, 362, 181, 0, 1320, 1321, 5, 136, 0, 0, 1321, 1323, 5, 46, 0, 0, 1322, 1324, 3, 184, 92, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1326, 1, 0, 0, 0, 1325, 1320, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 139, 1, 0, 0, 0, 1327, 1328, 5, 179, 0, 0, 1328, 1329, 5, 86, 0, 0, 1329, 1330, 7, 8, 0, 0, 1330, 1336, 3, 362, 181, 0, 1331, 1332, 5, 136, 0, 0, 1332, 1334, 5, 188, 0, 0, 1333, 1335, 3, 186, 93, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 1, 0, 0, 0, 1336, 1331, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 141, 1, 0, 0, 0, 1338, 1339, 5, 179, 0, 0, 1339, 1340, 5, 86, 0, 0, 1340, 1341, 7, 8, 0, 0, 1341, 1347, 3, 362, 181, 0, 1342, 1343, 5, 136, 0, 0, 1343, 1345, 5, 32, 0, 0, 1344, 1346, 3, 192, 96, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1342, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 143, 1, 0, 0, 0, 1349, 1353, 3, 146, 73, 0, 1350, 1353, 3, 148, 74, 0, 1351, 1353, 3, 150, 75, 0, 1352, 1349, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1352, 1351, 1, 0, 0, 0, 1353, 145, 1, 0, 0, 0, 1354, 1355, 5, 34, 0, 0, 1355, 1356, 5, 136, 0, 0, 1356, 1357, 5, 46, 0, 0, 1357, 1358, 3, 184, 92, 0, 1358, 1361, 5, 108, 0, 0, 1359, 1362, 3, 318, 159, 0, 1360, 1362, 5, 133, 0, 0, 1361, 1359, 1, 0, 0, 0, 1361, 1360, 1, 0, 0, 0, 1362, 147, 1, 0, 0, 0, 1363, 1364, 5, 34, 0, 0, 1364, 1365, 5, 136, 0, 0, 1365, 1366, 5, 188, 0, 0, 1366, 1367, 3, 186, 93, 0, 1367, 1370, 5, 108, 0, 0, 1368, 1371, 3, 318, 159, 0, 1369, 1371, 5, 133, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1369, 1, 0, 0, 0, 1371, 149, 1, 0, 0, 0, 1372, 1373, 5, 34, 0, 0, 1373, 1374, 5, 136, 0, 0, 1374, 1375, 5, 32, 0, 0, 1375, 1376, 3, 192, 96, 0, 1376, 1379, 5, 108, 0, 0, 1377, 1380, 3, 318, 159, 0, 1378, 1380, 5, 133, 0, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1378, 1, 0, 0, 0, 1380, 151, 1, 0, 0, 0, 1381, 1382, 5, 67, 0, 0, 1382, 1383, 3, 4, 2, 0, 1383, 153, 1, 0, 0, 0, 1384, 1390, 5, 176, 0, 0, 1385, 1391, 5, 2, 0, 0, 1386, 1387, 3, 362, 181, 0, 1387, 1388, 5, 249, 0, 0, 1388, 1389, 3, 308, 154, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1385, 1, 0, 0, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 155, 1, 0, 0, 0, 1392, 1393, 5, 264, 0, 0, 1393, 1394, 5, 180, 0, 0, 1394, 1404, 5, 265, 0, 0, 1395, 1397, 3, 318, 159, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1405, 1, 0, 0, 0, 1398, 1401, 3, 318, 159, 0, 1399, 1400, 5, 263, 0, 0, 1400, 1402, 3, 308, 154, 0, 1401, 1399, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1405, 1, 0, 0, 0, 1403, 1405, 3, 308, 154, 0, 1404, 1396, 1, 0, 0, 0, 1404, 1398, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 5, 266, 0, 0, 1407, 157, 1, 0, 0, 0, 1408, 1409, 5, 107, 0, 0, 1409, 1410, 5, 121, 0, 0, 1410, 1411, 3, 186, 93, 0, 1411, 159, 1, 0, 0, 0, 1412, 1413, 5, 118, 0, 0, 1413, 1414, 5, 45, 0, 0, 1414, 1415, 5, 98, 0, 0, 1415, 1417, 5, 274, 0, 0, 1416, 1418, 5, 144, 0, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 5, 103, 0, 0, 1420, 1421, 5, 188, 0, 0, 1421, 1431, 3, 186, 93, 0, 1422, 1423, 5, 145, 0, 0, 1423, 1424, 5, 265, 0, 0, 1424, 1427, 3, 308, 154, 0, 1425, 1426, 5, 263, 0, 0, 1426, 1428, 3, 308, 154, 0, 1427, 1425, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 5, 266, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1422, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 161, 1, 0, 0, 0, 1433, 1437, 3, 164, 82, 0, 1434, 1437, 3, 166, 83, 0, 1435, 1437, 3, 168, 84, 0, 1436, 1433, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 163, 1, 0, 0, 0, 1438, 1439, 5, 162, 0, 0, 1439, 1452, 3, 186, 93, 0, 1440, 1441, 5, 145, 0, 0, 1441, 1442, 5, 265, 0, 0, 1442, 1447, 3, 308, 154, 0, 1443, 1444, 5, 263, 0, 0, 1444, 1446, 3, 308, 154, 0, 1445, 1443, 1, 0, 0, 0, 1446, 1449, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1447, 1445, 1, 0, 0, 0, 1448, 1450, 1, 0, 0, 0, 1449, 1447, 1, 0, 0, 0, 1450, 1451, 5, 266, 0, 0, 1451, 1453, 1, 0, 0, 0, 1452, 1440, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 165, 1, 0, 0, 0, 1454, 1455, 5, 162, 0, 0, 1455, 1456, 5, 13, 0, 0, 1456, 167, 1, 0, 0, 0, 1457, 1458, 5, 162, 0, 0, 1458, 1459, 5, 85, 0, 0, 1459, 1460, 3, 190, 95, 0, 1460, 169, 1, 0, 0, 0, 1461, 1462, 5, 93, 0, 0, 1462, 1463, 5, 66, 0, 0, 1463, 171, 1, 0, 0, 0, 1464, 1465, 5, 93, 0, 0, 1465, 1466, 5, 132, 0, 0, 1466, 1467, 5, 66, 0, 0, 1467, 173, 1, 0, 0, 0, 1468, 1469, 3, 358, 179, 0, 1469, 175, 1, 0, 0, 0, 1470, 1471, 3, 358, 179, 0, 1471, 177, 1, 0, 0, 0, 1472, 1473, 3, 358, 179, 0, 1473, 179, 1, 0, 0, 0, 1474, 1475, 3, 358, 179, 0, 1475, 181, 1, 0, 0, 0, 1476, 1477, 3, 358, 179, 0, 1477, 183, 1, 0, 0, 0, 1478, 1479, 3, 358, 179, 0, 1479, 185, 1, 0, 0, 0, 1480, 1485, 3, 362, 181, 0, 1481, 1482, 5, 261, 0, 0, 1482, 1484, 3, 362, 181, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 187, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1493, 3, 362, 181, 0, 1489, 1490, 5, 261, 0, 0, 1490, 1492, 3, 362, 181, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 189, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 3, 366, 183, 0, 1497, 1499, 3, 358, 179, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1497, 1, 0, 0, 0, 1499, 191, 1, 0, 0, 0, 1500, 1503, 3, 358, 179, 0, 1501, 1503, 4, 96, 0, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1501, 1, 0, 0, 0, 1503, 193, 1, 0, 0, 0, 1504, 1507, 3, 186, 93, 0, 1505, 1507, 3, 188, 94, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1505, 1, 0, 0, 0, 1507, 195, 1, 0, 0, 0, 1508, 1509, 5, 21, 0, 0, 1509, 1510, 5, 26, 0, 0, 1510, 1512, 3, 296, 148, 0, 1511, 1508, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1515, 3, 222, 111, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1517, 5, 168, 0, 0, 1517, 1518, 5, 79, 0, 0, 1518, 1520, 3, 258, 129, 0, 1519, 1516, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1524, 1, 0, 0, 0, 1521, 1522, 5, 216, 0, 0, 1522, 1523, 5, 175, 0, 0, 1523, 1525, 3, 252, 126, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1529, 1, 0, 0, 0, 1526, 1527, 5, 23, 0, 0, 1527, 1528, 5, 9, 0, 0, 1528, 1530, 3, 234, 117, 0, 1529, 1526, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1532, 5, 24, 0, 0, 1532, 1534, 3, 318, 159, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1545, 1, 0, 0, 0, 1535, 1536, 5, 30, 0, 0, 1536, 1537, 5, 94, 0, 0, 1537, 1542, 3, 358, 179, 0, 1538, 1539, 5, 216, 0, 0, 1539, 1540, 5, 151, 0, 0, 1540, 1541, 5, 249, 0, 0, 1541, 1543, 5, 277, 0, 0, 1542, 1538, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1546, 5, 197, 0, 0, 1545, 1535, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1548, 5, 25, 0, 0, 1548, 1550, 3, 252, 126, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 197, 1, 0, 0, 0, 1551, 1556, 3, 200, 100, 0, 1552, 1553, 5, 263, 0, 0, 1553, 1555, 3, 200, 100, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1558, 1, 0, 0, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1560, 3, 358, 179, 0, 1560, 1561, 5, 249, 0, 0, 1561, 1562, 3, 308, 154, 0, 1562, 201, 1, 0, 0, 0, 1563, 1565, 5, 265, 0, 0, 1564, 1566, 3, 204, 102, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1573, 1, 0, 0, 0, 1567, 1569, 5, 263, 0, 0, 1568, 1570, 3, 204, 102, 0, 1569, 1568, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1572, 1, 0, 0, 0, 1571, 1567, 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, 266, 0, 0, 1577, 203, 1, 0, 0, 0, 1578, 1580, 3, 182, 91, 0, 1579, 1581, 3, 222, 111, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 205, 1, 0, 0, 0, 1582, 1584, 3, 208, 104, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 3, 262, 131, 0, 1586, 207, 1, 0, 0, 0, 1587, 1588, 5, 216, 0, 0, 1588, 1593, 3, 278, 139, 0, 1589, 1590, 5, 263, 0, 0, 1590, 1592, 3, 278, 139, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 209, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 5, 150, 0, 0, 1597, 1598, 5, 110, 0, 0, 1598, 1600, 3, 296, 148, 0, 1599, 1601, 5, 53, 0, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1605, 1, 0, 0, 0, 1602, 1606, 5, 225, 0, 0, 1603, 1604, 5, 263, 0, 0, 1604, 1606, 5, 225, 0, 0, 1605, 1602, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1610, 1, 0, 0, 0, 1607, 1611, 5, 226, 0, 0, 1608, 1609, 5, 263, 0, 0, 1609, 1611, 5, 226, 0, 0, 1610, 1607, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1624, 1, 0, 0, 0, 1612, 1613, 5, 263, 0, 0, 1613, 1616, 3, 212, 106, 0, 1614, 1616, 3, 212, 106, 0, 1615, 1612, 1, 0, 0, 0, 1615, 1614, 1, 0, 0, 0, 1616, 1621, 1, 0, 0, 0, 1617, 1618, 5, 263, 0, 0, 1618, 1620, 3, 212, 106, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1622, 1625, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1615, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 211, 1, 0, 0, 0, 1626, 1627, 5, 81, 0, 0, 1627, 1628, 5, 110, 0, 0, 1628, 1629, 3, 296, 148, 0, 1629, 1630, 5, 224, 0, 0, 1630, 1631, 3, 186, 93, 0, 1631, 1633, 3, 296, 148, 0, 1632, 1634, 5, 53, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1637, 5, 225, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1640, 5, 226, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 213, 1, 0, 0, 0, 1641, 1642, 3, 192, 96, 0, 1642, 1645, 3, 332, 166, 0, 1643, 1644, 5, 34, 0, 0, 1644, 1646, 3, 318, 159, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 215, 1, 0, 0, 0, 1647, 1648, 3, 182, 91, 0, 1648, 1650, 3, 332, 166, 0, 1649, 1651, 3, 222, 111, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 217, 1, 0, 0, 0, 1652, 1653, 3, 220, 110, 0, 1653, 219, 1, 0, 0, 0, 1654, 1655, 3, 182, 91, 0, 1655, 1663, 3, 332, 166, 0, 1656, 1660, 3, 228, 114, 0, 1657, 1659, 3, 228, 114, 0, 1658, 1657, 1, 0, 0, 0, 1659, 1662, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1660, 1658, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1656, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1667, 3, 222, 111, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1670, 1, 0, 0, 0, 1668, 1669, 5, 150, 0, 0, 1669, 1671, 5, 110, 0, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 221, 1, 0, 0, 0, 1672, 1673, 5, 34, 0, 0, 1673, 1674, 3, 318, 159, 0, 1674, 223, 1, 0, 0, 0, 1675, 1683, 3, 214, 107, 0, 1676, 1680, 3, 228, 114, 0, 1677, 1679, 3, 228, 114, 0, 1678, 1677, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1676, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 225, 1, 0, 0, 0, 1685, 1686, 3, 182, 91, 0, 1686, 1689, 3, 332, 166, 0, 1687, 1688, 5, 34, 0, 0, 1688, 1690, 3, 318, 159, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1698, 1, 0, 0, 0, 1691, 1695, 3, 228, 114, 0, 1692, 1694, 3, 228, 114, 0, 1693, 1692, 1, 0, 0, 0, 1694, 1697, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1695, 1693, 1, 0, 0, 0, 1696, 1699, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1698, 1691, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 227, 1, 0, 0, 0, 1700, 1702, 5, 132, 0, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1706, 5, 133, 0, 0, 1704, 1706, 3, 230, 115, 0, 1705, 1701, 1, 0, 0, 0, 1705, 1704, 1, 0, 0, 0, 1706, 229, 1, 0, 0, 0, 1707, 1708, 5, 60, 0, 0, 1708, 1716, 3, 308, 154, 0, 1709, 1710, 5, 35, 0, 0, 1710, 1716, 3, 308, 154, 0, 1711, 1712, 5, 51, 0, 0, 1712, 1716, 3, 308, 154, 0, 1713, 1714, 5, 16, 0, 0, 1714, 1716, 3, 364, 182, 0, 1715, 1707, 1, 0, 0, 0, 1715, 1709, 1, 0, 0, 0, 1715, 1711, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 231, 1, 0, 0, 0, 1717, 1718, 7, 10, 0, 0, 1718, 233, 1, 0, 0, 0, 1719, 1720, 7, 11, 0, 0, 1720, 235, 1, 0, 0, 0, 1721, 1726, 3, 238, 119, 0, 1722, 1723, 5, 263, 0, 0, 1723, 1725, 3, 238, 119, 0, 1724, 1722, 1, 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1731, 1, 0, 0, 0, 1728, 1726, 1, 0, 0, 0, 1729, 1730, 5, 263, 0, 0, 1730, 1732, 3, 240, 120, 0, 1731, 1729, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1735, 3, 240, 120, 0, 1734, 1721, 1, 0, 0, 0, 1734, 1733, 1, 0, 0, 0, 1735, 237, 1, 0, 0, 0, 1736, 1738, 5, 89, 0, 0, 1737, 1739, 3, 296, 148, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1741, 5, 146, 0, 0, 1741, 1742, 3, 364, 182, 0, 1742, 239, 1, 0, 0, 0, 1743, 1745, 5, 154, 0, 0, 1744, 1746, 3, 296, 148, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 5, 265, 0, 0, 1748, 1749, 5, 145, 0, 0, 1749, 1755, 3, 242, 121, 0, 1750, 1751, 5, 263, 0, 0, 1751, 1752, 5, 145, 0, 0, 1752, 1754, 3, 242, 121, 0, 1753, 1750, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1758, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1759, 5, 266, 0, 0, 1759, 241, 1, 0, 0, 0, 1760, 1761, 5, 210, 0, 0, 1761, 1762, 3, 248, 124, 0, 1762, 1763, 3, 308, 154, 0, 1763, 1776, 1, 0, 0, 0, 1764, 1765, 3, 308, 154, 0, 1765, 1766, 3, 246, 123, 0, 1766, 1768, 1, 0, 0, 0, 1767, 1764, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1773, 5, 211, 0, 0, 1770, 1771, 3, 246, 123, 0, 1771, 1772, 3, 308, 154, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1770, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1760, 1, 0, 0, 0, 1775, 1767, 1, 0, 0, 0, 1776, 243, 1, 0, 0, 0, 1777, 1778, 5, 30, 0, 0, 1778, 1779, 5, 94, 0, 0, 1779, 1784, 3, 362, 181, 0, 1780, 1781, 5, 216, 0, 0, 1781, 1782, 5, 151, 0, 0, 1782, 1783, 5, 249, 0, 0, 1783, 1785, 3, 364, 182, 0, 1784, 1780, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1788, 1, 0, 0, 0, 1786, 1788, 5, 197, 0, 0, 1787, 1777, 1, 0, 0, 0, 1787, 1786, 1, 0, 0, 0, 1788, 245, 1, 0, 0, 0, 1789, 1795, 1, 0, 0, 0, 1790, 1795, 5, 251, 0, 0, 1791, 1795, 5, 252, 0, 0, 1792, 1795, 5, 253, 0, 0, 1793, 1795, 5, 254, 0, 0, 1794, 1789, 1, 0, 0, 0, 1794, 1790, 1, 0, 0, 0, 1794, 1791, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1793, 1, 0, 0, 0, 1795, 247, 1, 0, 0, 0, 1796, 1805, 5, 249, 0, 0, 1797, 1805, 5, 250, 0, 0, 1798, 1805, 5, 115, 0, 0, 1799, 1805, 5, 164, 0, 0, 1800, 1805, 5, 163, 0, 0, 1801, 1805, 5, 15, 0, 0, 1802, 1805, 5, 94, 0, 0, 1803, 1805, 3, 246, 123, 0, 1804, 1796, 1, 0, 0, 0, 1804, 1797, 1, 0, 0, 0, 1804, 1798, 1, 0, 0, 0, 1804, 1799, 1, 0, 0, 0, 1804, 1800, 1, 0, 0, 0, 1804, 1801, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1804, 1803, 1, 0, 0, 0, 1805, 249, 1, 0, 0, 0, 1806, 1807, 5, 115, 0, 0, 1807, 1810, 3, 358, 179, 0, 1808, 1809, 7, 12, 0, 0, 1809, 1811, 5, 153, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 251, 1, 0, 0, 0, 1812, 1813, 5, 265, 0, 0, 1813, 1818, 3, 260, 130, 0, 1814, 1815, 5, 263, 0, 0, 1815, 1817, 3, 260, 130, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1820, 1, 0, 0, 0, 1818, 1816, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1821, 1, 0, 0, 0, 1820, 1818, 1, 0, 0, 0, 1821, 1822, 5, 266, 0, 0, 1822, 253, 1, 0, 0, 0, 1823, 1824, 5, 265, 0, 0, 1824, 1829, 3, 214, 107, 0, 1825, 1826, 5, 263, 0, 0, 1826, 1828, 3, 214, 107, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1831, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1832, 1, 0, 0, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1833, 5, 266, 0, 0, 1833, 255, 1, 0, 0, 0, 1834, 1839, 3, 308, 154, 0, 1835, 1836, 5, 263, 0, 0, 1836, 1838, 3, 308, 154, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1841, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 257, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1852, 5, 52, 0, 0, 1843, 1844, 5, 71, 0, 0, 1844, 1845, 5, 191, 0, 0, 1845, 1846, 5, 26, 0, 0, 1846, 1850, 3, 318, 159, 0, 1847, 1848, 5, 63, 0, 0, 1848, 1849, 5, 26, 0, 0, 1849, 1851, 3, 318, 159, 0, 1850, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1843, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1858, 1, 0, 0, 0, 1854, 1855, 5, 117, 0, 0, 1855, 1856, 5, 191, 0, 0, 1856, 1857, 5, 26, 0, 0, 1857, 1859, 3, 318, 159, 0, 1858, 1854, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 259, 1, 0, 0, 0, 1860, 1863, 3, 362, 181, 0, 1861, 1862, 5, 249, 0, 0, 1862, 1864, 3, 308, 154, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 261, 1, 0, 0, 0, 1865, 1876, 3, 264, 132, 0, 1866, 1867, 5, 139, 0, 0, 1867, 1868, 5, 26, 0, 0, 1868, 1873, 3, 268, 134, 0, 1869, 1870, 5, 263, 0, 0, 1870, 1872, 3, 268, 134, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1875, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1866, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1884, 1, 0, 0, 0, 1878, 1879, 5, 116, 0, 0, 1879, 1882, 3, 308, 154, 0, 1880, 1881, 5, 135, 0, 0, 1881, 1883, 5, 277, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1878, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 263, 1, 0, 0, 0, 1886, 1887, 6, 132, -1, 0, 1887, 1888, 3, 266, 133, 0, 1888, 1903, 1, 0, 0, 0, 1889, 1890, 10, 2, 0, 0, 1890, 1892, 5, 100, 0, 0, 1891, 1893, 3, 280, 140, 0, 1892, 1891, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1902, 3, 264, 132, 3, 1895, 1896, 10, 1, 0, 0, 1896, 1898, 7, 13, 0, 0, 1897, 1899, 3, 280, 140, 0, 1898, 1897, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1902, 3, 264, 132, 2, 1901, 1889, 1, 0, 0, 0, 1901, 1895, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 265, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1923, 3, 270, 135, 0, 1907, 1908, 5, 188, 0, 0, 1908, 1923, 3, 186, 93, 0, 1909, 1910, 5, 211, 0, 0, 1910, 1915, 3, 308, 154, 0, 1911, 1912, 5, 263, 0, 0, 1912, 1914, 3, 308, 154, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1923, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1919, 5, 265, 0, 0, 1919, 1920, 3, 262, 131, 0, 1920, 1921, 5, 266, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1906, 1, 0, 0, 0, 1922, 1907, 1, 0, 0, 0, 1922, 1909, 1, 0, 0, 0, 1922, 1918, 1, 0, 0, 0, 1923, 267, 1, 0, 0, 0, 1924, 1926, 3, 306, 153, 0, 1925, 1927, 7, 14, 0, 0, 1926, 1925, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1930, 1, 0, 0, 0, 1928, 1929, 5, 134, 0, 0, 1929, 1931, 7, 15, 0, 0, 1930, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 269, 1, 0, 0, 0, 1932, 1934, 5, 174, 0, 0, 1933, 1935, 3, 280, 140, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1937, 1, 0, 0, 0, 1936, 1938, 5, 183, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1944, 3, 282, 141, 0, 1940, 1941, 5, 263, 0, 0, 1941, 1943, 3, 282, 141, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1946, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1956, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1947, 1948, 5, 82, 0, 0, 1948, 1953, 3, 284, 142, 0, 1949, 1950, 5, 263, 0, 0, 1950, 1952, 3, 284, 142, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1955, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1956, 1947, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1959, 5, 215, 0, 0, 1959, 1961, 3, 310, 155, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1965, 1, 0, 0, 0, 1962, 1963, 5, 87, 0, 0, 1963, 1964, 5, 26, 0, 0, 1964, 1966, 3, 272, 136, 0, 1965, 1962, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1968, 5, 90, 0, 0, 1968, 1970, 3, 310, 155, 0, 1969, 1967, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 271, 1, 0, 0, 0, 1971, 1973, 3, 280, 140, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1979, 3, 274, 137, 0, 1975, 1976, 5, 263, 0, 0, 1976, 1978, 3, 274, 137, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 273, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1983, 3, 276, 138, 0, 1983, 275, 1, 0, 0, 0, 1984, 1993, 5, 265, 0, 0, 1985, 1990, 3, 306, 153, 0, 1986, 1987, 5, 263, 0, 0, 1987, 1989, 3, 306, 153, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1992, 1, 0, 0, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1994, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1993, 1985, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1998, 5, 266, 0, 0, 1996, 1998, 3, 306, 153, 0, 1997, 1984, 1, 0, 0, 0, 1997, 1996, 1, 0, 0, 0, 1998, 277, 1, 0, 0, 0, 1999, 2001, 3, 362, 181, 0, 2000, 2002, 3, 296, 148, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 5, 9, 0, 0, 2004, 2005, 3, 300, 150, 0, 2005, 279, 1, 0, 0, 0, 2006, 2007, 7, 16, 0, 0, 2007, 281, 1, 0, 0, 0, 2008, 2013, 3, 306, 153, 0, 2009, 2011, 5, 9, 0, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2014, 3, 362, 181, 0, 2013, 2010, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2021, 1, 0, 0, 0, 2015, 2016, 3, 358, 179, 0, 2016, 2017, 5, 261, 0, 0, 2017, 2018, 5, 257, 0, 0, 2018, 2021, 1, 0, 0, 0, 2019, 2021, 5, 257, 0, 0, 2020, 2008, 1, 0, 0, 0, 2020, 2015, 1, 0, 0, 0, 2020, 2019, 1, 0, 0, 0, 2021, 283, 1, 0, 0, 0, 2022, 2023, 6, 142, -1, 0, 2023, 2024, 3, 290, 145, 0, 2024, 2038, 1, 0, 0, 0, 2025, 2034, 10, 2, 0, 0, 2026, 2027, 5, 38, 0, 0, 2027, 2028, 5, 109, 0, 0, 2028, 2035, 3, 290, 145, 0, 2029, 2030, 3, 286, 143, 0, 2030, 2031, 5, 109, 0, 0, 2031, 2032, 3, 284, 142, 0, 2032, 2033, 3, 288, 144, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2026, 1, 0, 0, 0, 2034, 2029, 1, 0, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2025, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 285, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2043, 5, 97, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2073, 1, 0, 0, 0, 2044, 2046, 5, 114, 0, 0, 2045, 2047, 5, 97, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2073, 1, 0, 0, 0, 2048, 2050, 5, 165, 0, 0, 2049, 2051, 5, 97, 0, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2073, 1, 0, 0, 0, 2052, 2054, 5, 114, 0, 0, 2053, 2055, 5, 141, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2073, 1, 0, 0, 0, 2056, 2058, 5, 165, 0, 0, 2057, 2059, 5, 141, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2073, 1, 0, 0, 0, 2060, 2062, 5, 83, 0, 0, 2061, 2063, 5, 141, 0, 0, 2062, 2061, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2073, 1, 0, 0, 0, 2064, 2065, 5, 114, 0, 0, 2065, 2073, 5, 177, 0, 0, 2066, 2067, 5, 165, 0, 0, 2067, 2073, 5, 177, 0, 0, 2068, 2069, 5, 114, 0, 0, 2069, 2073, 5, 7, 0, 0, 2070, 2071, 5, 165, 0, 0, 2071, 2073, 5, 7, 0, 0, 2072, 2042, 1, 0, 0, 0, 2072, 2044, 1, 0, 0, 0, 2072, 2048, 1, 0, 0, 0, 2072, 2052, 1, 0, 0, 0, 2072, 2056, 1, 0, 0, 0, 2072, 2060, 1, 0, 0, 0, 2072, 2064, 1, 0, 0, 0, 2072, 2066, 1, 0, 0, 0, 2072, 2068, 1, 0, 0, 0, 2072, 2070, 1, 0, 0, 0, 2073, 287, 1, 0, 0, 0, 2074, 2075, 5, 136, 0, 0, 2075, 2089, 3, 310, 155, 0, 2076, 2077, 5, 205, 0, 0, 2077, 2078, 5, 265, 0, 0, 2078, 2083, 3, 362, 181, 0, 2079, 2080, 5, 263, 0, 0, 2080, 2082, 3, 362, 181, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2085, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2086, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2086, 2087, 5, 266, 0, 0, 2087, 2089, 1, 0, 0, 0, 2088, 2074, 1, 0, 0, 0, 2088, 2076, 1, 0, 0, 0, 2089, 289, 1, 0, 0, 0, 2090, 2103, 3, 294, 147, 0, 2091, 2092, 5, 190, 0, 0, 2092, 2093, 3, 292, 146, 0, 2093, 2094, 5, 265, 0, 0, 2094, 2095, 3, 308, 154, 0, 2095, 2101, 5, 266, 0, 0, 2096, 2097, 5, 157, 0, 0, 2097, 2098, 5, 265, 0, 0, 2098, 2099, 3, 308, 154, 0, 2099, 2100, 5, 266, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2096, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2091, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 291, 1, 0, 0, 0, 2105, 2106, 7, 17, 0, 0, 2106, 293, 1, 0, 0, 0, 2107, 2115, 3, 298, 149, 0, 2108, 2110, 5, 9, 0, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 3, 362, 181, 0, 2112, 2114, 3, 296, 148, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2109, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 295, 1, 0, 0, 0, 2117, 2118, 5, 265, 0, 0, 2118, 2123, 3, 192, 96, 0, 2119, 2120, 5, 263, 0, 0, 2120, 2122, 3, 192, 96, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2125, 1, 0, 0, 0, 2123, 2121, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2126, 2127, 5, 266, 0, 0, 2127, 297, 1, 0, 0, 0, 2128, 2136, 3, 194, 97, 0, 2129, 2131, 5, 113, 0, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2136, 3, 300, 150, 0, 2133, 2136, 3, 302, 151, 0, 2134, 2136, 3, 304, 152, 0, 2135, 2128, 1, 0, 0, 0, 2135, 2130, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2134, 1, 0, 0, 0, 2136, 299, 1, 0, 0, 0, 2137, 2138, 5, 265, 0, 0, 2138, 2139, 3, 206, 103, 0, 2139, 2140, 5, 266, 0, 0, 2140, 301, 1, 0, 0, 0, 2141, 2142, 5, 201, 0, 0, 2142, 2143, 5, 265, 0, 0, 2143, 2148, 3, 308, 154, 0, 2144, 2145, 5, 263, 0, 0, 2145, 2147, 3, 308, 154, 0, 2146, 2144, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2154, 5, 266, 0, 0, 2152, 2153, 5, 216, 0, 0, 2153, 2155, 5, 140, 0, 0, 2154, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 303, 1, 0, 0, 0, 2156, 2157, 5, 265, 0, 0, 2157, 2158, 3, 284, 142, 0, 2158, 2159, 5, 266, 0, 0, 2159, 305, 1, 0, 0, 0, 2160, 2163, 3, 192, 96, 0, 2161, 2163, 3, 308, 154, 0, 2162, 2160, 1, 0, 0, 0, 2162, 2161, 1, 0, 0, 0, 2163, 307, 1, 0, 0, 0, 2164, 2165, 3, 310, 155, 0, 2165, 309, 1, 0, 0, 0, 2166, 2167, 6, 155, -1, 0, 2167, 2169, 3, 314, 157, 0, 2168, 2170, 3, 312, 156, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2174, 1, 0, 0, 0, 2171, 2172, 5, 132, 0, 0, 2172, 2174, 3, 310, 155, 3, 2173, 2166, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2183, 1, 0, 0, 0, 2175, 2176, 10, 2, 0, 0, 2176, 2177, 5, 5, 0, 0, 2177, 2182, 3, 310, 155, 3, 2178, 2179, 10, 1, 0, 0, 2179, 2180, 5, 138, 0, 0, 2180, 2182, 3, 310, 155, 2, 2181, 2175, 1, 0, 0, 0, 2181, 2178, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 311, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 3, 320, 160, 0, 2187, 2188, 3, 314, 157, 0, 2188, 2245, 1, 0, 0, 0, 2189, 2190, 3, 320, 160, 0, 2190, 2191, 3, 322, 161, 0, 2191, 2192, 3, 300, 150, 0, 2192, 2245, 1, 0, 0, 0, 2193, 2195, 5, 132, 0, 0, 2194, 2193, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 5, 15, 0, 0, 2197, 2198, 3, 314, 157, 0, 2198, 2199, 5, 5, 0, 0, 2199, 2200, 3, 314, 157, 0, 2200, 2245, 1, 0, 0, 0, 2201, 2203, 5, 132, 0, 0, 2202, 2201, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2205, 5, 94, 0, 0, 2205, 2206, 5, 265, 0, 0, 2206, 2211, 3, 308, 154, 0, 2207, 2208, 5, 263, 0, 0, 2208, 2210, 3, 308, 154, 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, 266, 0, 0, 2215, 2245, 1, 0, 0, 0, 2216, 2218, 5, 132, 0, 0, 2217, 2216, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 5, 94, 0, 0, 2220, 2245, 3, 300, 150, 0, 2221, 2223, 5, 132, 0, 0, 2222, 2221, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 7, 18, 0, 0, 2225, 2228, 3, 314, 157, 0, 2226, 2227, 5, 62, 0, 0, 2227, 2229, 3, 314, 157, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2245, 1, 0, 0, 0, 2230, 2231, 7, 19, 0, 0, 2231, 2245, 3, 314, 157, 0, 2232, 2234, 5, 108, 0, 0, 2233, 2235, 5, 132, 0, 0, 2234, 2233, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2245, 7, 20, 0, 0, 2237, 2239, 5, 108, 0, 0, 2238, 2240, 5, 132, 0, 0, 2239, 2238, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2242, 5, 57, 0, 0, 2242, 2243, 5, 82, 0, 0, 2243, 2245, 3, 314, 157, 0, 2244, 2186, 1, 0, 0, 0, 2244, 2189, 1, 0, 0, 0, 2244, 2194, 1, 0, 0, 0, 2244, 2202, 1, 0, 0, 0, 2244, 2217, 1, 0, 0, 0, 2244, 2222, 1, 0, 0, 0, 2244, 2230, 1, 0, 0, 0, 2244, 2232, 1, 0, 0, 0, 2244, 2237, 1, 0, 0, 0, 2245, 313, 1, 0, 0, 0, 2246, 2247, 6, 157, -1, 0, 2247, 2251, 3, 316, 158, 0, 2248, 2249, 7, 21, 0, 0, 2249, 2251, 3, 314, 157, 4, 2250, 2246, 1, 0, 0, 0, 2250, 2248, 1, 0, 0, 0, 2251, 2263, 1, 0, 0, 0, 2252, 2253, 10, 3, 0, 0, 2253, 2254, 7, 22, 0, 0, 2254, 2262, 3, 314, 157, 4, 2255, 2256, 10, 2, 0, 0, 2256, 2257, 7, 21, 0, 0, 2257, 2262, 3, 314, 157, 3, 2258, 2259, 10, 1, 0, 0, 2259, 2260, 5, 260, 0, 0, 2260, 2262, 3, 314, 157, 2, 2261, 2252, 1, 0, 0, 0, 2261, 2255, 1, 0, 0, 0, 2261, 2258, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 315, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 6, 158, -1, 0, 2267, 2513, 5, 133, 0, 0, 2268, 2513, 3, 326, 163, 0, 2269, 2270, 3, 362, 181, 0, 2270, 2271, 3, 318, 159, 0, 2271, 2513, 1, 0, 0, 0, 2272, 2273, 5, 286, 0, 0, 2273, 2513, 3, 318, 159, 0, 2274, 2513, 3, 364, 182, 0, 2275, 2513, 3, 324, 162, 0, 2276, 2513, 3, 318, 159, 0, 2277, 2513, 5, 276, 0, 0, 2278, 2513, 5, 272, 0, 0, 2279, 2280, 5, 148, 0, 0, 2280, 2281, 5, 265, 0, 0, 2281, 2282, 3, 314, 157, 0, 2282, 2283, 5, 94, 0, 0, 2283, 2284, 3, 314, 157, 0, 2284, 2285, 5, 266, 0, 0, 2285, 2513, 1, 0, 0, 0, 2286, 2287, 5, 265, 0, 0, 2287, 2290, 3, 308, 154, 0, 2288, 2289, 5, 9, 0, 0, 2289, 2291, 3, 332, 166, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2300, 1, 0, 0, 0, 2292, 2293, 5, 263, 0, 0, 2293, 2296, 3, 308, 154, 0, 2294, 2295, 5, 9, 0, 0, 2295, 2297, 3, 332, 166, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2292, 1, 0, 0, 0, 2299, 2302, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2304, 5, 266, 0, 0, 2304, 2513, 1, 0, 0, 0, 2305, 2306, 5, 168, 0, 0, 2306, 2307, 5, 265, 0, 0, 2307, 2312, 3, 308, 154, 0, 2308, 2309, 5, 263, 0, 0, 2309, 2311, 3, 308, 154, 0, 2310, 2308, 1, 0, 0, 0, 2311, 2314, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2315, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2315, 2316, 5, 266, 0, 0, 2316, 2513, 1, 0, 0, 0, 2317, 2318, 3, 190, 95, 0, 2318, 2319, 5, 265, 0, 0, 2319, 2320, 5, 257, 0, 0, 2320, 2322, 5, 266, 0, 0, 2321, 2323, 3, 342, 171, 0, 2322, 2321, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2325, 1, 0, 0, 0, 2324, 2326, 3, 344, 172, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2513, 1, 0, 0, 0, 2327, 2328, 3, 190, 95, 0, 2328, 2340, 5, 265, 0, 0, 2329, 2331, 3, 280, 140, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2337, 3, 308, 154, 0, 2333, 2334, 5, 263, 0, 0, 2334, 2336, 3, 308, 154, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2339, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2341, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2330, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2352, 1, 0, 0, 0, 2342, 2343, 5, 139, 0, 0, 2343, 2344, 5, 26, 0, 0, 2344, 2349, 3, 268, 134, 0, 2345, 2346, 5, 263, 0, 0, 2346, 2348, 3, 268, 134, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2351, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2353, 1, 0, 0, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2342, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 5, 266, 0, 0, 2355, 2357, 3, 342, 171, 0, 2356, 2355, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2360, 3, 344, 172, 0, 2359, 2358, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2513, 1, 0, 0, 0, 2361, 2362, 3, 362, 181, 0, 2362, 2363, 5, 273, 0, 0, 2363, 2364, 3, 308, 154, 0, 2364, 2513, 1, 0, 0, 0, 2365, 2374, 5, 265, 0, 0, 2366, 2371, 3, 362, 181, 0, 2367, 2368, 5, 263, 0, 0, 2368, 2370, 3, 362, 181, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2373, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2375, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2366, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 5, 266, 0, 0, 2377, 2378, 5, 273, 0, 0, 2378, 2513, 3, 308, 154, 0, 2379, 2380, 5, 265, 0, 0, 2380, 2381, 3, 206, 103, 0, 2381, 2382, 5, 266, 0, 0, 2382, 2513, 1, 0, 0, 0, 2383, 2384, 5, 66, 0, 0, 2384, 2385, 5, 265, 0, 0, 2385, 2386, 3, 206, 103, 0, 2386, 2387, 5, 266, 0, 0, 2387, 2513, 1, 0, 0, 0, 2388, 2389, 5, 28, 0, 0, 2389, 2391, 3, 314, 157, 0, 2390, 2392, 3, 340, 170, 0, 2391, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2396, 5, 59, 0, 0, 2396, 2398, 3, 308, 154, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2400, 5, 61, 0, 0, 2400, 2513, 1, 0, 0, 0, 2401, 2403, 5, 28, 0, 0, 2402, 2404, 3, 340, 170, 0, 2403, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2409, 1, 0, 0, 0, 2407, 2408, 5, 59, 0, 0, 2408, 2410, 3, 308, 154, 0, 2409, 2407, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 5, 61, 0, 0, 2412, 2513, 1, 0, 0, 0, 2413, 2414, 5, 29, 0, 0, 2414, 2415, 5, 265, 0, 0, 2415, 2416, 3, 308, 154, 0, 2416, 2417, 5, 9, 0, 0, 2417, 2418, 3, 332, 166, 0, 2418, 2419, 5, 266, 0, 0, 2419, 2513, 1, 0, 0, 0, 2420, 2421, 5, 195, 0, 0, 2421, 2422, 5, 265, 0, 0, 2422, 2423, 3, 308, 154, 0, 2423, 2424, 5, 9, 0, 0, 2424, 2425, 3, 332, 166, 0, 2425, 2426, 5, 266, 0, 0, 2426, 2513, 1, 0, 0, 0, 2427, 2428, 5, 8, 0, 0, 2428, 2437, 5, 267, 0, 0, 2429, 2434, 3, 308, 154, 0, 2430, 2431, 5, 263, 0, 0, 2431, 2433, 3, 308, 154, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2436, 1, 0, 0, 0, 2434, 2432, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2429, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2513, 5, 268, 0, 0, 2440, 2513, 3, 362, 181, 0, 2441, 2513, 5, 40, 0, 0, 2442, 2446, 5, 42, 0, 0, 2443, 2444, 5, 265, 0, 0, 2444, 2445, 5, 277, 0, 0, 2445, 2447, 5, 266, 0, 0, 2446, 2443, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2513, 1, 0, 0, 0, 2448, 2452, 5, 43, 0, 0, 2449, 2450, 5, 265, 0, 0, 2450, 2451, 5, 277, 0, 0, 2451, 2453, 5, 266, 0, 0, 2452, 2449, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2513, 1, 0, 0, 0, 2454, 2458, 5, 119, 0, 0, 2455, 2456, 5, 265, 0, 0, 2456, 2457, 5, 277, 0, 0, 2457, 2459, 5, 266, 0, 0, 2458, 2455, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2513, 1, 0, 0, 0, 2460, 2464, 5, 120, 0, 0, 2461, 2462, 5, 265, 0, 0, 2462, 2463, 5, 277, 0, 0, 2463, 2465, 5, 266, 0, 0, 2464, 2461, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2513, 1, 0, 0, 0, 2466, 2513, 5, 44, 0, 0, 2467, 2513, 5, 41, 0, 0, 2468, 2469, 5, 184, 0, 0, 2469, 2470, 5, 265, 0, 0, 2470, 2471, 3, 314, 157, 0, 2471, 2472, 5, 82, 0, 0, 2472, 2475, 3, 314, 157, 0, 2473, 2474, 5, 78, 0, 0, 2474, 2476, 3, 314, 157, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 5, 266, 0, 0, 2478, 2513, 1, 0, 0, 0, 2479, 2480, 5, 131, 0, 0, 2480, 2481, 5, 265, 0, 0, 2481, 2484, 3, 314, 157, 0, 2482, 2483, 5, 263, 0, 0, 2483, 2485, 3, 330, 165, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 5, 266, 0, 0, 2487, 2513, 1, 0, 0, 0, 2488, 2489, 5, 68, 0, 0, 2489, 2490, 5, 265, 0, 0, 2490, 2491, 3, 362, 181, 0, 2491, 2492, 5, 82, 0, 0, 2492, 2493, 3, 314, 157, 0, 2493, 2494, 5, 266, 0, 0, 2494, 2513, 1, 0, 0, 0, 2495, 2496, 5, 265, 0, 0, 2496, 2497, 3, 308, 154, 0, 2497, 2498, 5, 266, 0, 0, 2498, 2513, 1, 0, 0, 0, 2499, 2500, 5, 88, 0, 0, 2500, 2509, 5, 265, 0, 0, 2501, 2506, 3, 358, 179, 0, 2502, 2503, 5, 263, 0, 0, 2503, 2505, 3, 358, 179, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2508, 1, 0, 0, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2509, 2501, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2513, 5, 266, 0, 0, 2512, 2266, 1, 0, 0, 0, 2512, 2268, 1, 0, 0, 0, 2512, 2269, 1, 0, 0, 0, 2512, 2272, 1, 0, 0, 0, 2512, 2274, 1, 0, 0, 0, 2512, 2275, 1, 0, 0, 0, 2512, 2276, 1, 0, 0, 0, 2512, 2277, 1, 0, 0, 0, 2512, 2278, 1, 0, 0, 0, 2512, 2279, 1, 0, 0, 0, 2512, 2286, 1, 0, 0, 0, 2512, 2305, 1, 0, 0, 0, 2512, 2317, 1, 0, 0, 0, 2512, 2327, 1, 0, 0, 0, 2512, 2361, 1, 0, 0, 0, 2512, 2365, 1, 0, 0, 0, 2512, 2379, 1, 0, 0, 0, 2512, 2383, 1, 0, 0, 0, 2512, 2388, 1, 0, 0, 0, 2512, 2401, 1, 0, 0, 0, 2512, 2413, 1, 0, 0, 0, 2512, 2420, 1, 0, 0, 0, 2512, 2427, 1, 0, 0, 0, 2512, 2440, 1, 0, 0, 0, 2512, 2441, 1, 0, 0, 0, 2512, 2442, 1, 0, 0, 0, 2512, 2448, 1, 0, 0, 0, 2512, 2454, 1, 0, 0, 0, 2512, 2460, 1, 0, 0, 0, 2512, 2466, 1, 0, 0, 0, 2512, 2467, 1, 0, 0, 0, 2512, 2468, 1, 0, 0, 0, 2512, 2479, 1, 0, 0, 0, 2512, 2488, 1, 0, 0, 0, 2512, 2495, 1, 0, 0, 0, 2512, 2499, 1, 0, 0, 0, 2513, 2524, 1, 0, 0, 0, 2514, 2515, 10, 15, 0, 0, 2515, 2516, 5, 267, 0, 0, 2516, 2517, 3, 314, 157, 0, 2517, 2518, 5, 268, 0, 0, 2518, 2523, 1, 0, 0, 0, 2519, 2520, 10, 13, 0, 0, 2520, 2521, 5, 261, 0, 0, 2521, 2523, 3, 362, 181, 0, 2522, 2514, 1, 0, 0, 0, 2522, 2519, 1, 0, 0, 0, 2523, 2526, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 317, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2527, 2534, 5, 274, 0, 0, 2528, 2531, 5, 275, 0, 0, 2529, 2530, 5, 198, 0, 0, 2530, 2532, 5, 274, 0, 0, 2531, 2529, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2534, 1, 0, 0, 0, 2533, 2527, 1, 0, 0, 0, 2533, 2528, 1, 0, 0, 0, 2534, 319, 1, 0, 0, 0, 2535, 2536, 7, 23, 0, 0, 2536, 321, 1, 0, 0, 0, 2537, 2538, 7, 24, 0, 0, 2538, 323, 1, 0, 0, 0, 2539, 2540, 7, 25, 0, 0, 2540, 325, 1, 0, 0, 0, 2541, 2542, 5, 277, 0, 0, 2542, 2556, 3, 328, 164, 0, 2543, 2544, 5, 265, 0, 0, 2544, 2545, 5, 277, 0, 0, 2545, 2546, 5, 266, 0, 0, 2546, 2556, 3, 328, 164, 0, 2547, 2548, 5, 101, 0, 0, 2548, 2549, 5, 277, 0, 0, 2549, 2556, 3, 328, 164, 0, 2550, 2551, 5, 101, 0, 0, 2551, 2552, 5, 265, 0, 0, 2552, 2553, 5, 277, 0, 0, 2553, 2554, 5, 266, 0, 0, 2554, 2556, 3, 328, 164, 0, 2555, 2541, 1, 0, 0, 0, 2555, 2543, 1, 0, 0, 0, 2555, 2547, 1, 0, 0, 0, 2555, 2550, 1, 0, 0, 0, 2556, 327, 1, 0, 0, 0, 2557, 2558, 7, 26, 0, 0, 2558, 329, 1, 0, 0, 0, 2559, 2560, 7, 27, 0, 0, 2560, 331, 1, 0, 0, 0, 2561, 2562, 6, 166, -1, 0, 2562, 2563, 5, 8, 0, 0, 2563, 2564, 5, 251, 0, 0, 2564, 2565, 3, 332, 166, 0, 2565, 2566, 5, 253, 0, 0, 2566, 2607, 1, 0, 0, 0, 2567, 2568, 5, 235, 0, 0, 2568, 2569, 5, 251, 0, 0, 2569, 2570, 3, 332, 166, 0, 2570, 2571, 5, 263, 0, 0, 2571, 2572, 3, 332, 166, 0, 2572, 2573, 5, 253, 0, 0, 2573, 2607, 1, 0, 0, 0, 2574, 2575, 5, 240, 0, 0, 2575, 2576, 5, 251, 0, 0, 2576, 2577, 3, 362, 181, 0, 2577, 2584, 3, 332, 166, 0, 2578, 2579, 5, 263, 0, 0, 2579, 2580, 3, 362, 181, 0, 2580, 2581, 3, 332, 166, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2578, 1, 0, 0, 0, 2583, 2586, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2584, 2585, 1, 0, 0, 0, 2585, 2587, 1, 0, 0, 0, 2586, 2584, 1, 0, 0, 0, 2587, 2588, 5, 253, 0, 0, 2588, 2607, 1, 0, 0, 0, 2589, 2592, 3, 338, 169, 0, 2590, 2592, 3, 334, 167, 0, 2591, 2589, 1, 0, 0, 0, 2591, 2590, 1, 0, 0, 0, 2592, 2604, 1, 0, 0, 0, 2593, 2594, 5, 265, 0, 0, 2594, 2599, 3, 336, 168, 0, 2595, 2596, 5, 263, 0, 0, 2596, 2598, 3, 336, 168, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2601, 1, 0, 0, 0, 2599, 2597, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2602, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2603, 5, 266, 0, 0, 2603, 2605, 1, 0, 0, 0, 2604, 2593, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2607, 1, 0, 0, 0, 2606, 2561, 1, 0, 0, 0, 2606, 2567, 1, 0, 0, 0, 2606, 2574, 1, 0, 0, 0, 2606, 2591, 1, 0, 0, 0, 2607, 2612, 1, 0, 0, 0, 2608, 2609, 10, 5, 0, 0, 2609, 2611, 5, 8, 0, 0, 2610, 2608, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 333, 1, 0, 0, 0, 2614, 2612, 1, 0, 0, 0, 2615, 2616, 7, 28, 0, 0, 2616, 335, 1, 0, 0, 0, 2617, 2620, 5, 277, 0, 0, 2618, 2620, 3, 332, 166, 0, 2619, 2617, 1, 0, 0, 0, 2619, 2618, 1, 0, 0, 0, 2620, 337, 1, 0, 0, 0, 2621, 2626, 5, 284, 0, 0, 2622, 2626, 5, 285, 0, 0, 2623, 2626, 5, 286, 0, 0, 2624, 2626, 3, 362, 181, 0, 2625, 2621, 1, 0, 0, 0, 2625, 2622, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2624, 1, 0, 0, 0, 2626, 339, 1, 0, 0, 0, 2627, 2628, 5, 214, 0, 0, 2628, 2629, 3, 308, 154, 0, 2629, 2630, 5, 192, 0, 0, 2630, 2631, 3, 308, 154, 0, 2631, 341, 1, 0, 0, 0, 2632, 2633, 5, 74, 0, 0, 2633, 2634, 5, 265, 0, 0, 2634, 2635, 5, 215, 0, 0, 2635, 2636, 3, 310, 155, 0, 2636, 2637, 5, 266, 0, 0, 2637, 343, 1, 0, 0, 0, 2638, 2639, 5, 143, 0, 0, 2639, 2650, 5, 265, 0, 0, 2640, 2641, 5, 145, 0, 0, 2641, 2642, 5, 26, 0, 0, 2642, 2647, 3, 308, 154, 0, 2643, 2644, 5, 263, 0, 0, 2644, 2646, 3, 308, 154, 0, 2645, 2643, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2640, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2662, 1, 0, 0, 0, 2652, 2653, 5, 139, 0, 0, 2653, 2654, 5, 26, 0, 0, 2654, 2659, 3, 268, 134, 0, 2655, 2656, 5, 263, 0, 0, 2656, 2658, 3, 268, 134, 0, 2657, 2655, 1, 0, 0, 0, 2658, 2661, 1, 0, 0, 0, 2659, 2657, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2663, 1, 0, 0, 0, 2661, 2659, 1, 0, 0, 0, 2662, 2652, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 346, 173, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2668, 5, 266, 0, 0, 2668, 345, 1, 0, 0, 0, 2669, 2670, 5, 154, 0, 0, 2670, 2686, 3, 348, 174, 0, 2671, 2672, 5, 169, 0, 0, 2672, 2686, 3, 348, 174, 0, 2673, 2674, 5, 154, 0, 0, 2674, 2675, 5, 15, 0, 0, 2675, 2676, 3, 348, 174, 0, 2676, 2677, 5, 5, 0, 0, 2677, 2678, 3, 348, 174, 0, 2678, 2686, 1, 0, 0, 0, 2679, 2680, 5, 169, 0, 0, 2680, 2681, 5, 15, 0, 0, 2681, 2682, 3, 348, 174, 0, 2682, 2683, 5, 5, 0, 0, 2683, 2684, 3, 348, 174, 0, 2684, 2686, 1, 0, 0, 0, 2685, 2669, 1, 0, 0, 0, 2685, 2671, 1, 0, 0, 0, 2685, 2673, 1, 0, 0, 0, 2685, 2679, 1, 0, 0, 0, 2686, 347, 1, 0, 0, 0, 2687, 2688, 5, 199, 0, 0, 2688, 2697, 5, 149, 0, 0, 2689, 2690, 5, 199, 0, 0, 2690, 2697, 5, 77, 0, 0, 2691, 2692, 5, 39, 0, 0, 2692, 2697, 5, 168, 0, 0, 2693, 2694, 3, 308, 154, 0, 2694, 2695, 7, 29, 0, 0, 2695, 2697, 1, 0, 0, 0, 2696, 2687, 1, 0, 0, 0, 2696, 2689, 1, 0, 0, 0, 2696, 2691, 1, 0, 0, 0, 2696, 2693, 1, 0, 0, 0, 2697, 349, 1, 0, 0, 0, 2698, 2699, 3, 362, 181, 0, 2699, 2700, 5, 261, 0, 0, 2700, 2701, 3, 362, 181, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2704, 3, 362, 181, 0, 2703, 2698, 1, 0, 0, 0, 2703, 2702, 1, 0, 0, 0, 2704, 351, 1, 0, 0, 0, 2705, 2710, 3, 350, 175, 0, 2706, 2707, 5, 263, 0, 0, 2707, 2709, 3, 350, 175, 0, 2708, 2706, 1, 0, 0, 0, 2709, 2712, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 353, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2713, 2727, 5, 2, 0, 0, 2714, 2727, 5, 4, 0, 0, 2715, 2727, 5, 58, 0, 0, 2716, 2727, 5, 37, 0, 0, 2717, 2727, 5, 99, 0, 0, 2718, 2727, 5, 162, 0, 0, 2719, 2724, 5, 174, 0, 0, 2720, 2721, 5, 265, 0, 0, 2721, 2722, 3, 362, 181, 0, 2722, 2723, 5, 266, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2720, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 2727, 1, 0, 0, 0, 2726, 2713, 1, 0, 0, 0, 2726, 2714, 1, 0, 0, 0, 2726, 2715, 1, 0, 0, 0, 2726, 2716, 1, 0, 0, 0, 2726, 2717, 1, 0, 0, 0, 2726, 2718, 1, 0, 0, 0, 2726, 2719, 1, 0, 0, 0, 2727, 355, 1, 0, 0, 0, 2728, 2729, 7, 30, 0, 0, 2729, 357, 1, 0, 0, 0, 2730, 2735, 3, 362, 181, 0, 2731, 2732, 5, 261, 0, 0, 2732, 2734, 3, 362, 181, 0, 2733, 2731, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 359, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2739, 5, 166, 0, 0, 2739, 2745, 3, 362, 181, 0, 2740, 2741, 5, 204, 0, 0, 2741, 2745, 3, 362, 181, 0, 2742, 2743, 5, 87, 0, 0, 2743, 2745, 3, 362, 181, 0, 2744, 2738, 1, 0, 0, 0, 2744, 2740, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 361, 1, 0, 0, 0, 2746, 2752, 5, 280, 0, 0, 2747, 2752, 5, 274, 0, 0, 2748, 2752, 3, 368, 184, 0, 2749, 2752, 5, 283, 0, 0, 2750, 2752, 5, 281, 0, 0, 2751, 2746, 1, 0, 0, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2748, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2751, 2750, 1, 0, 0, 0, 2752, 363, 1, 0, 0, 0, 2753, 2755, 5, 256, 0, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2766, 5, 278, 0, 0, 2757, 2759, 5, 256, 0, 0, 2758, 2757, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2766, 5, 279, 0, 0, 2761, 2763, 5, 256, 0, 0, 2762, 2761, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2766, 5, 277, 0, 0, 2765, 2754, 1, 0, 0, 0, 2765, 2758, 1, 0, 0, 0, 2765, 2762, 1, 0, 0, 0, 2766, 365, 1, 0, 0, 0, 2767, 2768, 7, 31, 0, 0, 2768, 367, 1, 0, 0, 0, 2769, 2770, 7, 32, 0, 0, 2770, 369, 1, 0, 0, 0, 353, 373, 380, 404, 417, 421, 425, 434, 439, 443, 449, 451, 456, 460, 464, 471, 476, 482, 486, 495, 502, 506, 511, 513, 518, 521, 528, 532, 537, 541, 544, 548, 556, 560, 564, 572, 576, 585, 588, 591, 597, 604, 615, 620, 625, 630, 635, 644, 647, 650, 654, 680, 706, 715, 725, 728, 742, 760, 762, 771, 782, 791, 798, 802, 809, 815, 818, 823, 830, 844, 857, 862, 867, 873, 909, 912, 918, 921, 927, 933, 945, 947, 958, 966, 971, 975, 980, 987, 991, 995, 1001, 1005, 1009, 1018, 1021, 1024, 1032, 1046, 1053, 1066, 1072, 1077, 1080, 1083, 1088, 1092, 1101, 1106, 1112, 1116, 1121, 1126, 1129, 1137, 1140, 1144, 1156, 1159, 1163, 1168, 1172, 1188, 1193, 1200, 1203, 1209, 1212, 1219, 1222, 1226, 1231, 1234, 1241, 1244, 1268, 1282, 1286, 1290, 1310, 1312, 1314, 1323, 1325, 1334, 1336, 1345, 1347, 1352, 1361, 1370, 1379, 1390, 1396, 1401, 1404, 1417, 1427, 1431, 1436, 1447, 1452, 1485, 1493, 1498, 1502, 1506, 1511, 1514, 1519, 1524, 1529, 1533, 1542, 1545, 1549, 1556, 1565, 1569, 1573, 1580, 1583, 1593, 1600, 1605, 1610, 1615, 1621, 1624, 1633, 1636, 1639, 1645, 1650, 1660, 1663, 1666, 1670, 1680, 1683, 1689, 1695, 1698, 1701, 1705, 1715, 1726, 1731, 1734, 1738, 1745, 1755, 1767, 1773, 1775, 1784, 1787, 1794, 1804, 1810, 1818, 1829, 1839, 1850, 1852, 1858, 1863, 1873, 1876, 1882, 1884, 1892, 1898, 1901, 1903, 1915, 1922, 1926, 1930, 1934, 1937, 1944, 1953, 1956, 1960, 1965, 1969, 1972, 1979, 1990, 1993, 1997, 2001, 2010, 2013, 2020, 2034, 2038, 2042, 2046, 2050, 2054, 2058, 2062, 2072, 2083, 2088, 2101, 2103, 2109, 2113, 2115, 2123, 2130, 2135, 2148, 2154, 2162, 2169, 2173, 2181, 2183, 2194, 2202, 2211, 2217, 2222, 2228, 2234, 2239, 2244, 2250, 2261, 2263, 2290, 2296, 2300, 2312, 2322, 2325, 2330, 2337, 2340, 2349, 2352, 2356, 2359, 2371, 2374, 2393, 2397, 2405, 2409, 2434, 2437, 2446, 2452, 2458, 2464, 2475, 2484, 2506, 2509, 2512, 2522, 2524, 2531, 2533, 2555, 2584, 2591, 2599, 2604, 2606, 2612, 2619, 2625, 2647, 2650, 2659, 2662, 2665, 2685, 2696, 2703, 2710, 2724, 2726, 2735, 2744, 2751, 2754, 2758, 2762, 2765] \ No newline at end of file +[4, 1, 289, 2803, 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, 1, 0, 5, 0, 384, 8, 0, 10, 0, 12, 0, 387, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 393, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 417, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 430, 8, 4, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 5, 1, 5, 3, 5, 438, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 445, 8, 5, 10, 5, 12, 5, 448, 9, 5, 1, 5, 1, 5, 3, 5, 452, 8, 5, 1, 5, 1, 5, 3, 5, 456, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 462, 8, 5, 3, 5, 464, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 469, 8, 5, 1, 6, 1, 6, 3, 6, 473, 8, 6, 1, 6, 1, 6, 3, 6, 477, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 484, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 489, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 495, 8, 7, 1, 7, 1, 7, 3, 7, 499, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 506, 8, 7, 10, 7, 12, 7, 509, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 3, 7, 519, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 524, 8, 7, 3, 7, 526, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 531, 8, 7, 1, 7, 3, 7, 534, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 541, 8, 7, 1, 7, 1, 7, 3, 7, 545, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 550, 8, 8, 1, 8, 1, 8, 3, 8, 554, 8, 8, 1, 8, 3, 8, 557, 8, 8, 1, 8, 1, 8, 3, 8, 561, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 569, 8, 9, 1, 9, 1, 9, 3, 9, 573, 8, 9, 1, 9, 1, 9, 3, 9, 577, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 585, 8, 11, 1, 11, 1, 11, 3, 11, 589, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 596, 8, 11, 10, 11, 12, 11, 599, 9, 11, 3, 11, 601, 8, 11, 1, 11, 3, 11, 604, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 610, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 617, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 628, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 633, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 638, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 643, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 648, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 655, 8, 12, 10, 12, 12, 12, 658, 9, 12, 3, 12, 660, 8, 12, 1, 12, 3, 12, 663, 8, 12, 1, 12, 1, 12, 3, 12, 667, 8, 12, 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, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 693, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 719, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 728, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 738, 8, 16, 1, 16, 3, 16, 741, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 755, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 773, 8, 20, 3, 20, 775, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 782, 8, 20, 10, 20, 12, 20, 785, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 795, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 804, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 811, 8, 22, 1, 22, 1, 22, 3, 22, 815, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 822, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 828, 8, 23, 1, 23, 3, 23, 831, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 836, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 843, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 857, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 870, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 875, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 880, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 886, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 922, 8, 32, 1, 32, 3, 32, 925, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 931, 8, 33, 1, 33, 3, 33, 934, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 940, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 946, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 958, 8, 35, 3, 35, 960, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 971, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 979, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 984, 8, 38, 1, 38, 1, 38, 3, 38, 988, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 993, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1000, 8, 40, 1, 40, 1, 40, 3, 40, 1004, 8, 40, 1, 41, 1, 41, 3, 41, 1008, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1014, 8, 41, 1, 42, 1, 42, 3, 42, 1018, 8, 42, 1, 42, 1, 42, 3, 42, 1022, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1029, 8, 42, 10, 42, 12, 42, 1032, 9, 42, 3, 42, 1034, 8, 42, 1, 42, 3, 42, 1037, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1045, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1059, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1066, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1079, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1085, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1090, 8, 49, 1, 49, 3, 49, 1093, 8, 49, 1, 50, 3, 50, 1096, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1101, 8, 50, 1, 50, 1, 50, 3, 50, 1105, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1112, 8, 50, 10, 50, 12, 50, 1115, 9, 50, 1, 50, 1, 50, 3, 50, 1119, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1125, 8, 51, 1, 52, 1, 52, 3, 52, 1129, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1134, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1139, 8, 53, 1, 53, 3, 53, 1142, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1148, 8, 53, 10, 53, 12, 53, 1151, 9, 53, 3, 53, 1153, 8, 53, 1, 53, 1, 53, 3, 53, 1157, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1167, 8, 54, 10, 54, 12, 54, 1170, 9, 54, 3, 54, 1172, 8, 54, 1, 54, 1, 54, 3, 54, 1176, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1181, 8, 55, 1, 55, 1, 55, 3, 55, 1185, 8, 55, 1, 55, 1, 55, 1, 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, 1201, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1206, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1211, 8, 57, 10, 57, 12, 57, 1214, 9, 57, 3, 57, 1216, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1222, 8, 58, 1, 58, 3, 58, 1225, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1230, 8, 58, 10, 58, 12, 58, 1233, 9, 58, 3, 58, 1235, 8, 58, 1, 59, 1, 59, 3, 59, 1239, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1244, 8, 59, 1, 59, 3, 59, 1247, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1252, 8, 59, 10, 59, 12, 59, 1255, 9, 59, 3, 59, 1257, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1281, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1295, 8, 65, 1, 65, 1, 65, 3, 65, 1299, 8, 65, 1, 66, 1, 66, 3, 66, 1303, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1323, 8, 68, 3, 68, 1325, 8, 68, 3, 68, 1327, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1336, 8, 69, 3, 69, 1338, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1347, 8, 70, 3, 70, 1349, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1358, 8, 71, 3, 71, 1360, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1365, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1374, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1383, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1392, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1403, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1409, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1414, 8, 78, 1, 78, 3, 78, 1417, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1430, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1440, 8, 80, 1, 80, 1, 80, 3, 80, 1444, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1449, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1458, 8, 82, 10, 82, 12, 82, 1461, 9, 82, 1, 82, 1, 82, 3, 82, 1465, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1496, 8, 93, 10, 93, 12, 93, 1499, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1504, 8, 94, 10, 94, 12, 94, 1507, 9, 94, 1, 95, 1, 95, 3, 95, 1511, 8, 95, 1, 96, 1, 96, 3, 96, 1515, 8, 96, 1, 97, 1, 97, 3, 97, 1519, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1524, 8, 98, 1, 98, 3, 98, 1527, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1532, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1537, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1542, 8, 98, 1, 98, 1, 98, 3, 98, 1546, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1555, 8, 98, 1, 98, 3, 98, 1558, 8, 98, 1, 98, 1, 98, 3, 98, 1562, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1567, 8, 99, 10, 99, 12, 99, 1570, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 3, 101, 1578, 8, 101, 1, 101, 1, 101, 3, 101, 1582, 8, 101, 5, 101, 1584, 8, 101, 10, 101, 12, 101, 1587, 9, 101, 1, 101, 1, 101, 1, 102, 1, 102, 3, 102, 1593, 8, 102, 1, 103, 3, 103, 1596, 8, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1604, 8, 104, 10, 104, 12, 104, 1607, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1613, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1618, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1623, 8, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1628, 8, 105, 1, 105, 1, 105, 5, 105, 1632, 8, 105, 10, 105, 12, 105, 1635, 9, 105, 3, 105, 1637, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1646, 8, 106, 1, 106, 3, 106, 1649, 8, 106, 1, 106, 3, 106, 1652, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1658, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 1663, 8, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1671, 8, 110, 10, 110, 12, 110, 1674, 9, 110, 3, 110, 1676, 8, 110, 1, 110, 3, 110, 1679, 8, 110, 1, 110, 1, 110, 3, 110, 1683, 8, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 5, 112, 1691, 8, 112, 10, 112, 12, 112, 1694, 9, 112, 3, 112, 1696, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1702, 8, 113, 1, 113, 1, 113, 5, 113, 1706, 8, 113, 10, 113, 12, 113, 1709, 9, 113, 3, 113, 1711, 8, 113, 1, 114, 3, 114, 1714, 8, 114, 1, 114, 1, 114, 3, 114, 1718, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1728, 8, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 5, 118, 1737, 8, 118, 10, 118, 12, 118, 1740, 9, 118, 1, 118, 1, 118, 3, 118, 1744, 8, 118, 1, 118, 3, 118, 1747, 8, 118, 1, 119, 1, 119, 3, 119, 1751, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 3, 120, 1758, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 1766, 8, 120, 10, 120, 12, 120, 1769, 9, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1780, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1786, 8, 121, 3, 121, 1788, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1797, 8, 122, 1, 122, 3, 122, 1800, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1807, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1817, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1823, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1829, 8, 126, 10, 126, 12, 126, 1832, 9, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1840, 8, 127, 10, 127, 12, 127, 1843, 9, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 5, 128, 1850, 8, 128, 10, 128, 12, 128, 1853, 9, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1863, 8, 129, 3, 129, 1865, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1871, 8, 129, 1, 130, 1, 130, 1, 130, 3, 130, 1876, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1884, 8, 131, 10, 131, 12, 131, 1887, 9, 131, 3, 131, 1889, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1895, 8, 131, 3, 131, 1897, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1905, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1911, 8, 132, 1, 132, 5, 132, 1914, 8, 132, 10, 132, 12, 132, 1917, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1926, 8, 133, 10, 133, 12, 133, 1929, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1935, 8, 133, 1, 134, 1, 134, 3, 134, 1939, 8, 134, 1, 134, 1, 134, 3, 134, 1943, 8, 134, 1, 135, 1, 135, 3, 135, 1947, 8, 135, 1, 135, 3, 135, 1950, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1957, 8, 135, 10, 135, 12, 135, 1960, 9, 135, 3, 135, 1962, 8, 135, 1, 135, 1, 135, 3, 135, 1966, 8, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1971, 8, 135, 1, 135, 1, 135, 3, 135, 1975, 8, 135, 1, 136, 1, 136, 1, 136, 5, 136, 1980, 8, 136, 10, 136, 12, 136, 1983, 9, 136, 1, 137, 3, 137, 1986, 8, 137, 1, 137, 1, 137, 1, 137, 5, 137, 1991, 8, 137, 10, 137, 12, 137, 1994, 9, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 2002, 8, 139, 10, 139, 12, 139, 2005, 9, 139, 3, 139, 2007, 8, 139, 1, 139, 1, 139, 3, 139, 2011, 8, 139, 1, 140, 1, 140, 3, 140, 2015, 8, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 3, 142, 2024, 8, 142, 1, 142, 1, 142, 3, 142, 2028, 8, 142, 1, 142, 1, 142, 3, 142, 2032, 8, 142, 3, 142, 2034, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2041, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 3, 146, 2048, 8, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2064, 8, 147, 5, 147, 2066, 8, 147, 10, 147, 12, 147, 2069, 9, 147, 1, 148, 3, 148, 2072, 8, 148, 1, 148, 1, 148, 3, 148, 2076, 8, 148, 1, 148, 1, 148, 3, 148, 2080, 8, 148, 1, 148, 1, 148, 3, 148, 2084, 8, 148, 1, 148, 1, 148, 3, 148, 2088, 8, 148, 1, 148, 1, 148, 3, 148, 2092, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2102, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 2111, 8, 149, 10, 149, 12, 149, 2114, 9, 149, 1, 149, 1, 149, 3, 149, 2118, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2131, 8, 150, 3, 150, 2133, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 3, 152, 2139, 8, 152, 1, 152, 1, 152, 3, 152, 2143, 8, 152, 3, 152, 2145, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 5, 153, 2151, 8, 153, 10, 153, 12, 153, 2154, 9, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2162, 8, 154, 1, 155, 3, 155, 2165, 8, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 2178, 8, 157, 10, 157, 12, 157, 2181, 9, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2186, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 3, 159, 2194, 8, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2201, 8, 161, 1, 161, 1, 161, 3, 161, 2205, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 2213, 8, 161, 10, 161, 12, 161, 2216, 9, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2226, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2234, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 5, 162, 2241, 8, 162, 10, 162, 12, 162, 2244, 9, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2249, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2254, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2260, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2266, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2271, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2276, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2282, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 5, 163, 2293, 8, 163, 10, 163, 12, 163, 2296, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2322, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2328, 8, 164, 5, 164, 2330, 8, 164, 10, 164, 12, 164, 2333, 9, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2342, 8, 164, 10, 164, 12, 164, 2345, 9, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2354, 8, 164, 1, 164, 3, 164, 2357, 8, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2362, 8, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2367, 8, 164, 10, 164, 12, 164, 2370, 9, 164, 3, 164, 2372, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2379, 8, 164, 10, 164, 12, 164, 2382, 9, 164, 3, 164, 2384, 8, 164, 1, 164, 1, 164, 3, 164, 2388, 8, 164, 1, 164, 3, 164, 2391, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2401, 8, 164, 10, 164, 12, 164, 2404, 9, 164, 3, 164, 2406, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 4, 164, 2423, 8, 164, 11, 164, 12, 164, 2424, 1, 164, 1, 164, 3, 164, 2429, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 4, 164, 2435, 8, 164, 11, 164, 12, 164, 2436, 1, 164, 1, 164, 3, 164, 2441, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2464, 8, 164, 10, 164, 12, 164, 2467, 9, 164, 3, 164, 2469, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2478, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2484, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2490, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2496, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2507, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2516, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2536, 8, 164, 10, 164, 12, 164, 2539, 9, 164, 3, 164, 2541, 8, 164, 1, 164, 3, 164, 2544, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2554, 8, 164, 10, 164, 12, 164, 2557, 9, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2563, 8, 165, 3, 165, 2565, 8, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2587, 8, 169, 1, 170, 1, 170, 1, 171, 1, 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, 1, 172, 1, 172, 1, 172, 5, 172, 2614, 8, 172, 10, 172, 12, 172, 2617, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2623, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2629, 8, 172, 10, 172, 12, 172, 2632, 9, 172, 1, 172, 1, 172, 3, 172, 2636, 8, 172, 3, 172, 2638, 8, 172, 1, 172, 1, 172, 5, 172, 2642, 8, 172, 10, 172, 12, 172, 2645, 9, 172, 1, 173, 1, 173, 1, 174, 1, 174, 3, 174, 2651, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2657, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 2677, 8, 178, 10, 178, 12, 178, 2680, 9, 178, 3, 178, 2682, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 2689, 8, 178, 10, 178, 12, 178, 2692, 9, 178, 3, 178, 2694, 8, 178, 1, 178, 3, 178, 2697, 8, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2717, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2728, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2735, 8, 181, 1, 182, 1, 182, 1, 182, 5, 182, 2740, 8, 182, 10, 182, 12, 182, 2743, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2756, 8, 183, 3, 183, 2758, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 2765, 8, 185, 10, 185, 12, 185, 2768, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2776, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2783, 8, 187, 1, 188, 3, 188, 2786, 8, 188, 1, 188, 1, 188, 3, 188, 2790, 8, 188, 1, 188, 1, 188, 3, 188, 2794, 8, 188, 1, 188, 3, 188, 2797, 8, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 10, 783, 1459, 1633, 1672, 1692, 1707, 1738, 1767, 1841, 2331, 6, 264, 294, 322, 326, 328, 344, 191, 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, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3121, 0, 385, 1, 0, 0, 0, 2, 390, 1, 0, 0, 0, 4, 416, 1, 0, 0, 0, 6, 418, 1, 0, 0, 0, 8, 429, 1, 0, 0, 0, 10, 431, 1, 0, 0, 0, 12, 470, 1, 0, 0, 0, 14, 492, 1, 0, 0, 0, 16, 546, 1, 0, 0, 0, 18, 565, 1, 0, 0, 0, 20, 578, 1, 0, 0, 0, 22, 582, 1, 0, 0, 0, 24, 644, 1, 0, 0, 0, 26, 692, 1, 0, 0, 0, 28, 694, 1, 0, 0, 0, 30, 702, 1, 0, 0, 0, 32, 722, 1, 0, 0, 0, 34, 742, 1, 0, 0, 0, 36, 749, 1, 0, 0, 0, 38, 758, 1, 0, 0, 0, 40, 766, 1, 0, 0, 0, 42, 788, 1, 0, 0, 0, 44, 798, 1, 0, 0, 0, 46, 816, 1, 0, 0, 0, 48, 837, 1, 0, 0, 0, 50, 858, 1, 0, 0, 0, 52, 864, 1, 0, 0, 0, 54, 881, 1, 0, 0, 0, 56, 890, 1, 0, 0, 0, 58, 897, 1, 0, 0, 0, 60, 905, 1, 0, 0, 0, 62, 912, 1, 0, 0, 0, 64, 919, 1, 0, 0, 0, 66, 928, 1, 0, 0, 0, 68, 939, 1, 0, 0, 0, 70, 941, 1, 0, 0, 0, 72, 961, 1, 0, 0, 0, 74, 978, 1, 0, 0, 0, 76, 980, 1, 0, 0, 0, 78, 989, 1, 0, 0, 0, 80, 996, 1, 0, 0, 0, 82, 1005, 1, 0, 0, 0, 84, 1015, 1, 0, 0, 0, 86, 1038, 1, 0, 0, 0, 88, 1044, 1, 0, 0, 0, 90, 1046, 1, 0, 0, 0, 92, 1053, 1, 0, 0, 0, 94, 1065, 1, 0, 0, 0, 96, 1067, 1, 0, 0, 0, 98, 1074, 1, 0, 0, 0, 100, 1095, 1, 0, 0, 0, 102, 1124, 1, 0, 0, 0, 104, 1126, 1, 0, 0, 0, 106, 1135, 1, 0, 0, 0, 108, 1158, 1, 0, 0, 0, 110, 1177, 1, 0, 0, 0, 112, 1200, 1, 0, 0, 0, 114, 1202, 1, 0, 0, 0, 116, 1217, 1, 0, 0, 0, 118, 1236, 1, 0, 0, 0, 120, 1258, 1, 0, 0, 0, 122, 1263, 1, 0, 0, 0, 124, 1268, 1, 0, 0, 0, 126, 1273, 1, 0, 0, 0, 128, 1278, 1, 0, 0, 0, 130, 1285, 1, 0, 0, 0, 132, 1300, 1, 0, 0, 0, 134, 1306, 1, 0, 0, 0, 136, 1326, 1, 0, 0, 0, 138, 1328, 1, 0, 0, 0, 140, 1339, 1, 0, 0, 0, 142, 1350, 1, 0, 0, 0, 144, 1364, 1, 0, 0, 0, 146, 1366, 1, 0, 0, 0, 148, 1375, 1, 0, 0, 0, 150, 1384, 1, 0, 0, 0, 152, 1393, 1, 0, 0, 0, 154, 1396, 1, 0, 0, 0, 156, 1404, 1, 0, 0, 0, 158, 1420, 1, 0, 0, 0, 160, 1424, 1, 0, 0, 0, 162, 1448, 1, 0, 0, 0, 164, 1450, 1, 0, 0, 0, 166, 1466, 1, 0, 0, 0, 168, 1469, 1, 0, 0, 0, 170, 1473, 1, 0, 0, 0, 172, 1476, 1, 0, 0, 0, 174, 1480, 1, 0, 0, 0, 176, 1482, 1, 0, 0, 0, 178, 1484, 1, 0, 0, 0, 180, 1486, 1, 0, 0, 0, 182, 1488, 1, 0, 0, 0, 184, 1490, 1, 0, 0, 0, 186, 1492, 1, 0, 0, 0, 188, 1500, 1, 0, 0, 0, 190, 1510, 1, 0, 0, 0, 192, 1514, 1, 0, 0, 0, 194, 1518, 1, 0, 0, 0, 196, 1523, 1, 0, 0, 0, 198, 1563, 1, 0, 0, 0, 200, 1571, 1, 0, 0, 0, 202, 1575, 1, 0, 0, 0, 204, 1590, 1, 0, 0, 0, 206, 1595, 1, 0, 0, 0, 208, 1599, 1, 0, 0, 0, 210, 1608, 1, 0, 0, 0, 212, 1638, 1, 0, 0, 0, 214, 1653, 1, 0, 0, 0, 216, 1659, 1, 0, 0, 0, 218, 1664, 1, 0, 0, 0, 220, 1666, 1, 0, 0, 0, 222, 1684, 1, 0, 0, 0, 224, 1687, 1, 0, 0, 0, 226, 1697, 1, 0, 0, 0, 228, 1717, 1, 0, 0, 0, 230, 1727, 1, 0, 0, 0, 232, 1729, 1, 0, 0, 0, 234, 1731, 1, 0, 0, 0, 236, 1746, 1, 0, 0, 0, 238, 1748, 1, 0, 0, 0, 240, 1755, 1, 0, 0, 0, 242, 1787, 1, 0, 0, 0, 244, 1799, 1, 0, 0, 0, 246, 1806, 1, 0, 0, 0, 248, 1816, 1, 0, 0, 0, 250, 1818, 1, 0, 0, 0, 252, 1824, 1, 0, 0, 0, 254, 1835, 1, 0, 0, 0, 256, 1846, 1, 0, 0, 0, 258, 1854, 1, 0, 0, 0, 260, 1872, 1, 0, 0, 0, 262, 1877, 1, 0, 0, 0, 264, 1898, 1, 0, 0, 0, 266, 1934, 1, 0, 0, 0, 268, 1936, 1, 0, 0, 0, 270, 1944, 1, 0, 0, 0, 272, 1976, 1, 0, 0, 0, 274, 1985, 1, 0, 0, 0, 276, 1995, 1, 0, 0, 0, 278, 2010, 1, 0, 0, 0, 280, 2012, 1, 0, 0, 0, 282, 2019, 1, 0, 0, 0, 284, 2033, 1, 0, 0, 0, 286, 2035, 1, 0, 0, 0, 288, 2038, 1, 0, 0, 0, 290, 2042, 1, 0, 0, 0, 292, 2047, 1, 0, 0, 0, 294, 2051, 1, 0, 0, 0, 296, 2101, 1, 0, 0, 0, 298, 2117, 1, 0, 0, 0, 300, 2119, 1, 0, 0, 0, 302, 2134, 1, 0, 0, 0, 304, 2136, 1, 0, 0, 0, 306, 2146, 1, 0, 0, 0, 308, 2161, 1, 0, 0, 0, 310, 2164, 1, 0, 0, 0, 312, 2168, 1, 0, 0, 0, 314, 2172, 1, 0, 0, 0, 316, 2187, 1, 0, 0, 0, 318, 2193, 1, 0, 0, 0, 320, 2195, 1, 0, 0, 0, 322, 2204, 1, 0, 0, 0, 324, 2275, 1, 0, 0, 0, 326, 2281, 1, 0, 0, 0, 328, 2543, 1, 0, 0, 0, 330, 2564, 1, 0, 0, 0, 332, 2566, 1, 0, 0, 0, 334, 2568, 1, 0, 0, 0, 336, 2570, 1, 0, 0, 0, 338, 2586, 1, 0, 0, 0, 340, 2588, 1, 0, 0, 0, 342, 2590, 1, 0, 0, 0, 344, 2637, 1, 0, 0, 0, 346, 2646, 1, 0, 0, 0, 348, 2650, 1, 0, 0, 0, 350, 2656, 1, 0, 0, 0, 352, 2658, 1, 0, 0, 0, 354, 2663, 1, 0, 0, 0, 356, 2669, 1, 0, 0, 0, 358, 2716, 1, 0, 0, 0, 360, 2727, 1, 0, 0, 0, 362, 2734, 1, 0, 0, 0, 364, 2736, 1, 0, 0, 0, 366, 2757, 1, 0, 0, 0, 368, 2759, 1, 0, 0, 0, 370, 2761, 1, 0, 0, 0, 372, 2775, 1, 0, 0, 0, 374, 2782, 1, 0, 0, 0, 376, 2796, 1, 0, 0, 0, 378, 2798, 1, 0, 0, 0, 380, 2800, 1, 0, 0, 0, 382, 384, 3, 2, 1, 0, 383, 382, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 388, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 388, 389, 5, 0, 0, 1, 389, 1, 1, 0, 0, 0, 390, 392, 3, 4, 2, 0, 391, 393, 5, 262, 0, 0, 392, 391, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 3, 1, 0, 0, 0, 394, 417, 3, 206, 103, 0, 395, 417, 3, 6, 3, 0, 396, 417, 3, 8, 4, 0, 397, 417, 3, 26, 13, 0, 398, 417, 3, 64, 32, 0, 399, 417, 3, 66, 33, 0, 400, 417, 3, 68, 34, 0, 401, 417, 3, 74, 37, 0, 402, 417, 3, 88, 44, 0, 403, 417, 3, 94, 47, 0, 404, 417, 3, 100, 50, 0, 405, 417, 3, 102, 51, 0, 406, 417, 3, 108, 54, 0, 407, 417, 3, 110, 55, 0, 408, 417, 3, 112, 56, 0, 409, 417, 3, 144, 72, 0, 410, 417, 3, 152, 76, 0, 411, 417, 3, 154, 77, 0, 412, 417, 3, 156, 78, 0, 413, 417, 3, 158, 79, 0, 414, 417, 3, 160, 80, 0, 415, 417, 3, 162, 81, 0, 416, 394, 1, 0, 0, 0, 416, 395, 1, 0, 0, 0, 416, 396, 1, 0, 0, 0, 416, 397, 1, 0, 0, 0, 416, 398, 1, 0, 0, 0, 416, 399, 1, 0, 0, 0, 416, 400, 1, 0, 0, 0, 416, 401, 1, 0, 0, 0, 416, 402, 1, 0, 0, 0, 416, 403, 1, 0, 0, 0, 416, 404, 1, 0, 0, 0, 416, 405, 1, 0, 0, 0, 416, 406, 1, 0, 0, 0, 416, 407, 1, 0, 0, 0, 416, 408, 1, 0, 0, 0, 416, 409, 1, 0, 0, 0, 416, 410, 1, 0, 0, 0, 416, 411, 1, 0, 0, 0, 416, 412, 1, 0, 0, 0, 416, 413, 1, 0, 0, 0, 416, 414, 1, 0, 0, 0, 416, 415, 1, 0, 0, 0, 417, 5, 1, 0, 0, 0, 418, 419, 5, 203, 0, 0, 419, 420, 3, 184, 92, 0, 420, 7, 1, 0, 0, 0, 421, 430, 3, 18, 9, 0, 422, 430, 3, 20, 10, 0, 423, 430, 3, 22, 11, 0, 424, 430, 3, 24, 12, 0, 425, 430, 3, 16, 8, 0, 426, 430, 3, 14, 7, 0, 427, 430, 3, 12, 6, 0, 428, 430, 3, 10, 5, 0, 429, 421, 1, 0, 0, 0, 429, 422, 1, 0, 0, 0, 429, 423, 1, 0, 0, 0, 429, 424, 1, 0, 0, 0, 429, 425, 1, 0, 0, 0, 429, 426, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 428, 1, 0, 0, 0, 430, 9, 1, 0, 0, 0, 431, 433, 5, 37, 0, 0, 432, 434, 5, 19, 0, 0, 433, 432, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 437, 5, 188, 0, 0, 436, 438, 3, 172, 86, 0, 437, 436, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 455, 3, 174, 87, 0, 440, 441, 5, 265, 0, 0, 441, 446, 3, 216, 108, 0, 442, 443, 5, 263, 0, 0, 443, 445, 3, 216, 108, 0, 444, 442, 1, 0, 0, 0, 445, 448, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 451, 1, 0, 0, 0, 448, 446, 1, 0, 0, 0, 449, 450, 5, 263, 0, 0, 450, 452, 3, 210, 105, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 454, 5, 266, 0, 0, 454, 456, 1, 0, 0, 0, 455, 440, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 463, 1, 0, 0, 0, 457, 458, 5, 17, 0, 0, 458, 461, 5, 26, 0, 0, 459, 462, 3, 306, 153, 0, 460, 462, 3, 254, 127, 0, 461, 459, 1, 0, 0, 0, 461, 460, 1, 0, 0, 0, 462, 464, 1, 0, 0, 0, 463, 457, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 468, 3, 196, 98, 0, 466, 467, 5, 9, 0, 0, 467, 469, 3, 206, 103, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 11, 1, 0, 0, 0, 470, 472, 5, 37, 0, 0, 471, 473, 5, 19, 0, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 5, 188, 0, 0, 475, 477, 3, 172, 86, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 3, 174, 87, 0, 479, 483, 5, 115, 0, 0, 480, 484, 3, 186, 93, 0, 481, 482, 5, 147, 0, 0, 482, 484, 3, 330, 165, 0, 483, 480, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 484, 488, 1, 0, 0, 0, 485, 486, 5, 17, 0, 0, 486, 487, 5, 26, 0, 0, 487, 489, 3, 254, 127, 0, 488, 485, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 3, 196, 98, 0, 491, 13, 1, 0, 0, 0, 492, 494, 5, 37, 0, 0, 493, 495, 5, 19, 0, 0, 494, 493, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 498, 5, 188, 0, 0, 497, 499, 3, 172, 86, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 518, 3, 174, 87, 0, 501, 502, 5, 265, 0, 0, 502, 507, 3, 218, 109, 0, 503, 504, 5, 263, 0, 0, 504, 506, 3, 218, 109, 0, 505, 503, 1, 0, 0, 0, 506, 509, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 514, 1, 0, 0, 0, 509, 507, 1, 0, 0, 0, 510, 511, 5, 263, 0, 0, 511, 512, 5, 150, 0, 0, 512, 513, 5, 110, 0, 0, 513, 515, 3, 306, 153, 0, 514, 510, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 5, 266, 0, 0, 517, 519, 1, 0, 0, 0, 518, 501, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 525, 1, 0, 0, 0, 520, 521, 5, 150, 0, 0, 521, 523, 5, 110, 0, 0, 522, 524, 3, 306, 153, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 526, 1, 0, 0, 0, 525, 520, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 530, 1, 0, 0, 0, 527, 528, 5, 145, 0, 0, 528, 529, 5, 26, 0, 0, 529, 531, 3, 236, 118, 0, 530, 527, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 533, 1, 0, 0, 0, 532, 534, 3, 222, 111, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 5, 23, 0, 0, 536, 537, 5, 9, 0, 0, 537, 540, 5, 111, 0, 0, 538, 539, 5, 25, 0, 0, 539, 541, 3, 252, 126, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 543, 5, 9, 0, 0, 543, 545, 3, 206, 103, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 15, 1, 0, 0, 0, 546, 547, 5, 37, 0, 0, 547, 549, 5, 212, 0, 0, 548, 550, 3, 172, 86, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 553, 3, 178, 89, 0, 552, 554, 3, 202, 101, 0, 553, 552, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 556, 1, 0, 0, 0, 555, 557, 3, 222, 111, 0, 556, 555, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 559, 5, 25, 0, 0, 559, 561, 3, 252, 126, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 5, 9, 0, 0, 563, 564, 3, 206, 103, 0, 564, 17, 1, 0, 0, 0, 565, 566, 5, 37, 0, 0, 566, 568, 7, 0, 0, 0, 567, 569, 3, 172, 86, 0, 568, 567, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 572, 3, 176, 88, 0, 571, 573, 3, 222, 111, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 576, 1, 0, 0, 0, 574, 575, 5, 24, 0, 0, 575, 577, 3, 330, 165, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 19, 1, 0, 0, 0, 578, 579, 5, 37, 0, 0, 579, 580, 5, 166, 0, 0, 580, 581, 3, 374, 187, 0, 581, 21, 1, 0, 0, 0, 582, 584, 5, 37, 0, 0, 583, 585, 5, 12, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 588, 5, 84, 0, 0, 587, 589, 3, 172, 86, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 603, 3, 180, 90, 0, 591, 600, 5, 265, 0, 0, 592, 597, 3, 344, 172, 0, 593, 594, 5, 263, 0, 0, 594, 596, 3, 344, 172, 0, 595, 593, 1, 0, 0, 0, 596, 599, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 601, 1, 0, 0, 0, 599, 597, 1, 0, 0, 0, 600, 592, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 604, 5, 266, 0, 0, 603, 591, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 5, 160, 0, 0, 606, 609, 3, 344, 172, 0, 607, 608, 5, 102, 0, 0, 608, 610, 3, 344, 172, 0, 609, 607, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 5, 24, 0, 0, 612, 616, 5, 274, 0, 0, 613, 614, 5, 104, 0, 0, 614, 615, 5, 249, 0, 0, 615, 617, 5, 274, 0, 0, 616, 613, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 5, 206, 0, 0, 619, 620, 5, 249, 0, 0, 620, 621, 5, 274, 0, 0, 621, 622, 5, 126, 0, 0, 622, 623, 5, 249, 0, 0, 623, 627, 5, 274, 0, 0, 624, 625, 5, 18, 0, 0, 625, 626, 5, 249, 0, 0, 626, 628, 5, 274, 0, 0, 627, 624, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 632, 1, 0, 0, 0, 629, 630, 5, 20, 0, 0, 630, 631, 5, 249, 0, 0, 631, 633, 5, 274, 0, 0, 632, 629, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 637, 1, 0, 0, 0, 634, 635, 5, 187, 0, 0, 635, 636, 5, 249, 0, 0, 636, 638, 5, 274, 0, 0, 637, 634, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 642, 1, 0, 0, 0, 639, 640, 5, 76, 0, 0, 640, 641, 5, 249, 0, 0, 641, 643, 5, 274, 0, 0, 642, 639, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 23, 1, 0, 0, 0, 644, 645, 5, 37, 0, 0, 645, 647, 5, 84, 0, 0, 646, 648, 3, 172, 86, 0, 647, 646, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 662, 3, 180, 90, 0, 650, 659, 5, 265, 0, 0, 651, 656, 3, 344, 172, 0, 652, 653, 5, 263, 0, 0, 653, 655, 3, 344, 172, 0, 654, 652, 1, 0, 0, 0, 655, 658, 1, 0, 0, 0, 656, 654, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 1, 0, 0, 0, 658, 656, 1, 0, 0, 0, 659, 651, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 663, 5, 266, 0, 0, 662, 650, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 665, 5, 160, 0, 0, 665, 667, 3, 344, 172, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 5, 24, 0, 0, 669, 670, 5, 274, 0, 0, 670, 671, 5, 186, 0, 0, 671, 672, 5, 249, 0, 0, 672, 673, 3, 330, 165, 0, 673, 25, 1, 0, 0, 0, 674, 693, 3, 28, 14, 0, 675, 693, 3, 62, 31, 0, 676, 693, 3, 60, 30, 0, 677, 693, 3, 58, 29, 0, 678, 693, 3, 54, 27, 0, 679, 693, 3, 56, 28, 0, 680, 693, 3, 52, 26, 0, 681, 693, 3, 48, 24, 0, 682, 693, 3, 50, 25, 0, 683, 693, 3, 46, 23, 0, 684, 693, 3, 44, 22, 0, 685, 693, 3, 42, 21, 0, 686, 693, 3, 40, 20, 0, 687, 693, 3, 34, 17, 0, 688, 693, 3, 30, 15, 0, 689, 693, 3, 32, 16, 0, 690, 693, 3, 36, 18, 0, 691, 693, 3, 38, 19, 0, 692, 674, 1, 0, 0, 0, 692, 675, 1, 0, 0, 0, 692, 676, 1, 0, 0, 0, 692, 677, 1, 0, 0, 0, 692, 678, 1, 0, 0, 0, 692, 679, 1, 0, 0, 0, 692, 680, 1, 0, 0, 0, 692, 681, 1, 0, 0, 0, 692, 682, 1, 0, 0, 0, 692, 683, 1, 0, 0, 0, 692, 684, 1, 0, 0, 0, 692, 685, 1, 0, 0, 0, 692, 686, 1, 0, 0, 0, 692, 687, 1, 0, 0, 0, 692, 688, 1, 0, 0, 0, 692, 689, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 692, 691, 1, 0, 0, 0, 693, 27, 1, 0, 0, 0, 694, 695, 5, 4, 0, 0, 695, 696, 5, 46, 0, 0, 696, 697, 3, 184, 92, 0, 697, 698, 5, 176, 0, 0, 698, 699, 5, 142, 0, 0, 699, 700, 7, 1, 0, 0, 700, 701, 3, 374, 187, 0, 701, 29, 1, 0, 0, 0, 702, 703, 5, 4, 0, 0, 703, 704, 5, 188, 0, 0, 704, 705, 3, 186, 93, 0, 705, 706, 5, 176, 0, 0, 706, 707, 5, 32, 0, 0, 707, 708, 5, 182, 0, 0, 708, 709, 3, 192, 96, 0, 709, 710, 5, 265, 0, 0, 710, 711, 3, 232, 116, 0, 711, 712, 5, 249, 0, 0, 712, 718, 3, 330, 165, 0, 713, 714, 5, 263, 0, 0, 714, 715, 3, 232, 116, 0, 715, 716, 5, 249, 0, 0, 716, 717, 3, 330, 165, 0, 717, 719, 1, 0, 0, 0, 718, 713, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 5, 266, 0, 0, 721, 31, 1, 0, 0, 0, 722, 723, 5, 4, 0, 0, 723, 724, 5, 188, 0, 0, 724, 727, 3, 186, 93, 0, 725, 726, 5, 145, 0, 0, 726, 728, 3, 320, 160, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 740, 5, 176, 0, 0, 730, 731, 5, 30, 0, 0, 731, 732, 5, 94, 0, 0, 732, 737, 3, 330, 165, 0, 733, 734, 5, 216, 0, 0, 734, 735, 5, 151, 0, 0, 735, 736, 5, 249, 0, 0, 736, 738, 3, 376, 188, 0, 737, 733, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 741, 5, 197, 0, 0, 740, 730, 1, 0, 0, 0, 740, 739, 1, 0, 0, 0, 741, 33, 1, 0, 0, 0, 742, 743, 5, 4, 0, 0, 743, 744, 5, 188, 0, 0, 744, 745, 3, 186, 93, 0, 745, 746, 5, 31, 0, 0, 746, 747, 3, 192, 96, 0, 747, 748, 3, 224, 112, 0, 748, 35, 1, 0, 0, 0, 749, 750, 5, 4, 0, 0, 750, 751, 5, 188, 0, 0, 751, 752, 3, 186, 93, 0, 752, 754, 5, 58, 0, 0, 753, 755, 5, 32, 0, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 3, 192, 96, 0, 757, 37, 1, 0, 0, 0, 758, 759, 5, 4, 0, 0, 759, 760, 5, 188, 0, 0, 760, 761, 3, 186, 93, 0, 761, 762, 5, 176, 0, 0, 762, 763, 5, 142, 0, 0, 763, 764, 7, 1, 0, 0, 764, 765, 3, 374, 187, 0, 765, 39, 1, 0, 0, 0, 766, 767, 5, 4, 0, 0, 767, 768, 5, 188, 0, 0, 768, 774, 3, 186, 93, 0, 769, 775, 5, 158, 0, 0, 770, 772, 5, 1, 0, 0, 771, 773, 3, 172, 86, 0, 772, 771, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 775, 1, 0, 0, 0, 774, 769, 1, 0, 0, 0, 774, 770, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 5, 33, 0, 0, 777, 778, 5, 265, 0, 0, 778, 783, 3, 224, 112, 0, 779, 780, 5, 263, 0, 0, 780, 782, 3, 224, 112, 0, 781, 779, 1, 0, 0, 0, 782, 785, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 783, 781, 1, 0, 0, 0, 784, 786, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 786, 787, 5, 266, 0, 0, 787, 41, 1, 0, 0, 0, 788, 789, 5, 4, 0, 0, 789, 790, 5, 188, 0, 0, 790, 791, 3, 186, 93, 0, 791, 792, 5, 1, 0, 0, 792, 794, 5, 32, 0, 0, 793, 795, 3, 172, 86, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 3, 226, 113, 0, 797, 43, 1, 0, 0, 0, 798, 799, 5, 4, 0, 0, 799, 800, 5, 188, 0, 0, 800, 801, 3, 186, 93, 0, 801, 803, 5, 4, 0, 0, 802, 804, 5, 32, 0, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 814, 3, 192, 96, 0, 806, 810, 5, 176, 0, 0, 807, 811, 3, 230, 115, 0, 808, 809, 5, 34, 0, 0, 809, 811, 3, 330, 165, 0, 810, 807, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 811, 815, 1, 0, 0, 0, 812, 813, 5, 58, 0, 0, 813, 815, 5, 51, 0, 0, 814, 806, 1, 0, 0, 0, 814, 812, 1, 0, 0, 0, 815, 45, 1, 0, 0, 0, 816, 817, 5, 4, 0, 0, 817, 818, 5, 188, 0, 0, 818, 819, 3, 186, 93, 0, 819, 821, 5, 1, 0, 0, 820, 822, 3, 172, 86, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 835, 1, 0, 0, 0, 823, 824, 5, 145, 0, 0, 824, 827, 3, 320, 160, 0, 825, 826, 5, 24, 0, 0, 826, 828, 3, 330, 165, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 830, 1, 0, 0, 0, 829, 831, 3, 244, 122, 0, 830, 829, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 836, 1, 0, 0, 0, 832, 833, 5, 154, 0, 0, 833, 834, 5, 145, 0, 0, 834, 836, 3, 242, 121, 0, 835, 823, 1, 0, 0, 0, 835, 832, 1, 0, 0, 0, 836, 47, 1, 0, 0, 0, 837, 838, 5, 4, 0, 0, 838, 839, 5, 188, 0, 0, 839, 842, 3, 186, 93, 0, 840, 841, 5, 145, 0, 0, 841, 843, 3, 320, 160, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 856, 5, 176, 0, 0, 845, 846, 5, 72, 0, 0, 846, 857, 3, 234, 117, 0, 847, 848, 5, 168, 0, 0, 848, 849, 5, 79, 0, 0, 849, 857, 3, 258, 129, 0, 850, 851, 5, 24, 0, 0, 851, 857, 3, 330, 165, 0, 852, 853, 5, 25, 0, 0, 853, 857, 3, 252, 126, 0, 854, 855, 5, 175, 0, 0, 855, 857, 3, 252, 126, 0, 856, 845, 1, 0, 0, 0, 856, 847, 1, 0, 0, 0, 856, 850, 1, 0, 0, 0, 856, 852, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 857, 49, 1, 0, 0, 0, 858, 859, 5, 4, 0, 0, 859, 860, 5, 188, 0, 0, 860, 861, 3, 186, 93, 0, 861, 862, 5, 155, 0, 0, 862, 863, 5, 146, 0, 0, 863, 51, 1, 0, 0, 0, 864, 865, 5, 4, 0, 0, 865, 866, 5, 188, 0, 0, 866, 867, 3, 186, 93, 0, 867, 869, 5, 58, 0, 0, 868, 870, 3, 170, 85, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 879, 1, 0, 0, 0, 871, 872, 5, 145, 0, 0, 872, 874, 3, 320, 160, 0, 873, 875, 5, 22, 0, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 880, 1, 0, 0, 0, 876, 877, 5, 154, 0, 0, 877, 878, 5, 145, 0, 0, 878, 880, 3, 242, 121, 0, 879, 871, 1, 0, 0, 0, 879, 876, 1, 0, 0, 0, 880, 53, 1, 0, 0, 0, 881, 882, 5, 4, 0, 0, 882, 883, 5, 212, 0, 0, 883, 885, 3, 188, 94, 0, 884, 886, 3, 202, 101, 0, 885, 884, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 888, 5, 9, 0, 0, 888, 889, 3, 206, 103, 0, 889, 55, 1, 0, 0, 0, 890, 891, 5, 4, 0, 0, 891, 892, 5, 212, 0, 0, 892, 893, 3, 188, 94, 0, 893, 894, 5, 156, 0, 0, 894, 895, 5, 193, 0, 0, 895, 896, 3, 188, 94, 0, 896, 57, 1, 0, 0, 0, 897, 898, 5, 4, 0, 0, 898, 899, 5, 212, 0, 0, 899, 900, 3, 188, 94, 0, 900, 901, 5, 176, 0, 0, 901, 902, 5, 142, 0, 0, 902, 903, 7, 1, 0, 0, 903, 904, 3, 370, 185, 0, 904, 59, 1, 0, 0, 0, 905, 906, 5, 4, 0, 0, 906, 907, 5, 188, 0, 0, 907, 908, 3, 186, 93, 0, 908, 909, 5, 156, 0, 0, 909, 910, 5, 193, 0, 0, 910, 911, 3, 186, 93, 0, 911, 61, 1, 0, 0, 0, 912, 913, 5, 4, 0, 0, 913, 914, 5, 212, 0, 0, 914, 915, 3, 188, 94, 0, 915, 916, 7, 2, 0, 0, 916, 917, 5, 25, 0, 0, 917, 918, 3, 252, 126, 0, 918, 63, 1, 0, 0, 0, 919, 921, 5, 196, 0, 0, 920, 922, 5, 188, 0, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 924, 1, 0, 0, 0, 923, 925, 3, 170, 85, 0, 924, 923, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 3, 186, 93, 0, 927, 65, 1, 0, 0, 0, 928, 930, 5, 56, 0, 0, 929, 931, 5, 46, 0, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 1, 0, 0, 0, 932, 934, 7, 3, 0, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 3, 370, 185, 0, 936, 67, 1, 0, 0, 0, 937, 940, 3, 70, 35, 0, 938, 940, 3, 72, 36, 0, 939, 937, 1, 0, 0, 0, 939, 938, 1, 0, 0, 0, 940, 69, 1, 0, 0, 0, 941, 942, 5, 36, 0, 0, 942, 943, 5, 182, 0, 0, 943, 945, 3, 186, 93, 0, 944, 946, 3, 306, 153, 0, 945, 944, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 959, 1, 0, 0, 0, 947, 948, 5, 190, 0, 0, 948, 949, 5, 185, 0, 0, 949, 950, 5, 265, 0, 0, 950, 951, 3, 376, 188, 0, 951, 957, 5, 266, 0, 0, 952, 953, 5, 157, 0, 0, 953, 954, 5, 265, 0, 0, 954, 955, 3, 376, 188, 0, 955, 956, 5, 266, 0, 0, 956, 958, 1, 0, 0, 0, 957, 952, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 960, 1, 0, 0, 0, 959, 947, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 71, 1, 0, 0, 0, 961, 962, 5, 36, 0, 0, 962, 963, 5, 96, 0, 0, 963, 964, 5, 182, 0, 0, 964, 970, 3, 186, 93, 0, 965, 966, 5, 145, 0, 0, 966, 967, 5, 265, 0, 0, 967, 968, 3, 320, 160, 0, 968, 969, 5, 266, 0, 0, 969, 971, 1, 0, 0, 0, 970, 965, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 73, 1, 0, 0, 0, 972, 979, 3, 86, 43, 0, 973, 979, 3, 84, 42, 0, 974, 979, 3, 82, 41, 0, 975, 979, 3, 78, 39, 0, 976, 979, 3, 80, 40, 0, 977, 979, 3, 76, 38, 0, 978, 972, 1, 0, 0, 0, 978, 973, 1, 0, 0, 0, 978, 974, 1, 0, 0, 0, 978, 975, 1, 0, 0, 0, 978, 976, 1, 0, 0, 0, 978, 977, 1, 0, 0, 0, 979, 75, 1, 0, 0, 0, 980, 981, 5, 58, 0, 0, 981, 983, 7, 0, 0, 0, 982, 984, 3, 170, 85, 0, 983, 982, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 987, 3, 184, 92, 0, 986, 988, 7, 4, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 77, 1, 0, 0, 0, 989, 990, 5, 58, 0, 0, 990, 992, 5, 212, 0, 0, 991, 993, 3, 170, 85, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 3, 188, 94, 0, 995, 79, 1, 0, 0, 0, 996, 997, 5, 58, 0, 0, 997, 999, 5, 188, 0, 0, 998, 1000, 3, 170, 85, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 3, 186, 93, 0, 1002, 1004, 5, 22, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 81, 1, 0, 0, 0, 1005, 1007, 5, 58, 0, 0, 1006, 1008, 5, 96, 0, 0, 1007, 1006, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 5, 182, 0, 0, 1010, 1013, 3, 186, 93, 0, 1011, 1012, 5, 145, 0, 0, 1012, 1014, 3, 320, 160, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 83, 1, 0, 0, 0, 1015, 1017, 5, 58, 0, 0, 1016, 1018, 5, 12, 0, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1021, 5, 84, 0, 0, 1020, 1022, 3, 170, 85, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1036, 3, 190, 95, 0, 1024, 1033, 5, 265, 0, 0, 1025, 1030, 3, 344, 172, 0, 1026, 1027, 5, 263, 0, 0, 1027, 1029, 3, 344, 172, 0, 1028, 1026, 1, 0, 0, 0, 1029, 1032, 1, 0, 0, 0, 1030, 1028, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1034, 1, 0, 0, 0, 1032, 1030, 1, 0, 0, 0, 1033, 1025, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 5, 266, 0, 0, 1036, 1024, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 85, 1, 0, 0, 0, 1038, 1039, 5, 58, 0, 0, 1039, 1040, 5, 166, 0, 0, 1040, 1041, 3, 374, 187, 0, 1041, 87, 1, 0, 0, 0, 1042, 1045, 3, 90, 45, 0, 1043, 1045, 3, 92, 46, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1043, 1, 0, 0, 0, 1045, 89, 1, 0, 0, 0, 1046, 1047, 5, 86, 0, 0, 1047, 1048, 5, 166, 0, 0, 1048, 1049, 3, 374, 187, 0, 1049, 1050, 5, 193, 0, 0, 1050, 1051, 5, 87, 0, 0, 1051, 1052, 3, 374, 187, 0, 1052, 91, 1, 0, 0, 0, 1053, 1054, 5, 86, 0, 0, 1054, 1055, 3, 366, 183, 0, 1055, 1056, 5, 136, 0, 0, 1056, 1058, 3, 368, 184, 0, 1057, 1059, 3, 370, 185, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 5, 193, 0, 0, 1061, 1062, 3, 372, 186, 0, 1062, 93, 1, 0, 0, 0, 1063, 1066, 3, 96, 48, 0, 1064, 1066, 3, 98, 49, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1064, 1, 0, 0, 0, 1066, 95, 1, 0, 0, 0, 1067, 1068, 5, 161, 0, 0, 1068, 1069, 5, 166, 0, 0, 1069, 1070, 3, 374, 187, 0, 1070, 1071, 5, 82, 0, 0, 1071, 1072, 5, 87, 0, 0, 1072, 1073, 3, 374, 187, 0, 1073, 97, 1, 0, 0, 0, 1074, 1078, 5, 161, 0, 0, 1075, 1076, 5, 86, 0, 0, 1076, 1077, 5, 137, 0, 0, 1077, 1079, 5, 78, 0, 0, 1078, 1075, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 3, 366, 183, 0, 1081, 1082, 5, 136, 0, 0, 1082, 1084, 3, 368, 184, 0, 1083, 1085, 3, 370, 185, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1092, 5, 82, 0, 0, 1087, 1093, 3, 372, 186, 0, 1088, 1090, 5, 166, 0, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1093, 3, 374, 187, 0, 1092, 1087, 1, 0, 0, 0, 1092, 1089, 1, 0, 0, 0, 1093, 99, 1, 0, 0, 0, 1094, 1096, 3, 208, 104, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 5, 99, 0, 0, 1098, 1100, 7, 5, 0, 0, 1099, 1101, 5, 188, 0, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 3, 186, 93, 0, 1103, 1105, 3, 306, 153, 0, 1104, 1103, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1118, 1, 0, 0, 0, 1106, 1107, 5, 145, 0, 0, 1107, 1108, 5, 265, 0, 0, 1108, 1113, 3, 320, 160, 0, 1109, 1110, 5, 263, 0, 0, 1110, 1112, 3, 320, 160, 0, 1111, 1109, 1, 0, 0, 0, 1112, 1115, 1, 0, 0, 0, 1113, 1111, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1113, 1, 0, 0, 0, 1116, 1117, 5, 266, 0, 0, 1117, 1119, 1, 0, 0, 0, 1118, 1106, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 3, 206, 103, 0, 1121, 101, 1, 0, 0, 0, 1122, 1125, 3, 104, 52, 0, 1123, 1125, 3, 106, 53, 0, 1124, 1122, 1, 0, 0, 0, 1124, 1123, 1, 0, 0, 0, 1125, 103, 1, 0, 0, 0, 1126, 1128, 5, 50, 0, 0, 1127, 1129, 5, 82, 0, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1133, 3, 186, 93, 0, 1131, 1132, 5, 215, 0, 0, 1132, 1134, 3, 322, 161, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 105, 1, 0, 0, 0, 1135, 1136, 5, 50, 0, 0, 1136, 1141, 3, 186, 93, 0, 1137, 1139, 5, 9, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1142, 3, 374, 187, 0, 1141, 1138, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1152, 5, 82, 0, 0, 1144, 1149, 3, 294, 147, 0, 1145, 1146, 5, 263, 0, 0, 1146, 1148, 3, 294, 147, 0, 1147, 1145, 1, 0, 0, 0, 1148, 1151, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1153, 1, 0, 0, 0, 1151, 1149, 1, 0, 0, 0, 1152, 1144, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1156, 1, 0, 0, 0, 1154, 1155, 5, 215, 0, 0, 1155, 1157, 3, 322, 161, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 107, 1, 0, 0, 0, 1158, 1159, 5, 54, 0, 0, 1159, 1160, 3, 186, 93, 0, 1160, 1161, 5, 176, 0, 0, 1161, 1171, 3, 198, 99, 0, 1162, 1163, 5, 82, 0, 0, 1163, 1168, 3, 294, 147, 0, 1164, 1165, 5, 263, 0, 0, 1165, 1167, 3, 294, 147, 0, 1166, 1164, 1, 0, 0, 0, 1167, 1170, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1172, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1171, 1162, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1175, 1, 0, 0, 0, 1173, 1174, 5, 215, 0, 0, 1174, 1176, 3, 322, 161, 0, 1175, 1173, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 109, 1, 0, 0, 0, 1177, 1178, 5, 207, 0, 0, 1178, 1180, 5, 103, 0, 0, 1179, 1181, 5, 188, 0, 0, 1180, 1179, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1184, 3, 186, 93, 0, 1183, 1185, 3, 306, 153, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 3, 206, 103, 0, 1187, 111, 1, 0, 0, 0, 1188, 1201, 3, 132, 66, 0, 1189, 1201, 3, 134, 67, 0, 1190, 1201, 3, 136, 68, 0, 1191, 1201, 3, 130, 65, 0, 1192, 1201, 3, 128, 64, 0, 1193, 1201, 3, 126, 63, 0, 1194, 1201, 3, 124, 62, 0, 1195, 1201, 3, 122, 61, 0, 1196, 1201, 3, 120, 60, 0, 1197, 1201, 3, 118, 59, 0, 1198, 1201, 3, 116, 58, 0, 1199, 1201, 3, 114, 57, 0, 1200, 1188, 1, 0, 0, 0, 1200, 1189, 1, 0, 0, 0, 1200, 1190, 1, 0, 0, 0, 1200, 1191, 1, 0, 0, 0, 1200, 1192, 1, 0, 0, 0, 1200, 1193, 1, 0, 0, 0, 1200, 1194, 1, 0, 0, 0, 1200, 1195, 1, 0, 0, 0, 1200, 1196, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1199, 1, 0, 0, 0, 1201, 113, 1, 0, 0, 0, 1202, 1203, 5, 179, 0, 0, 1203, 1215, 7, 6, 0, 0, 1204, 1206, 5, 115, 0, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1212, 3, 330, 165, 0, 1208, 1209, 5, 271, 0, 0, 1209, 1211, 3, 330, 165, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1216, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1205, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 115, 1, 0, 0, 0, 1217, 1218, 5, 179, 0, 0, 1218, 1221, 5, 189, 0, 0, 1219, 1220, 5, 94, 0, 0, 1220, 1222, 3, 186, 93, 0, 1221, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1234, 1, 0, 0, 0, 1223, 1225, 5, 115, 0, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1231, 3, 330, 165, 0, 1227, 1228, 5, 271, 0, 0, 1228, 1230, 3, 330, 165, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1235, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1224, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 117, 1, 0, 0, 0, 1236, 1238, 5, 179, 0, 0, 1237, 1239, 7, 7, 0, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1243, 5, 85, 0, 0, 1241, 1242, 5, 94, 0, 0, 1242, 1244, 3, 184, 92, 0, 1243, 1241, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1256, 1, 0, 0, 0, 1245, 1247, 5, 115, 0, 0, 1246, 1245, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1253, 3, 330, 165, 0, 1249, 1250, 5, 271, 0, 0, 1250, 1252, 3, 330, 165, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1257, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1246, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 119, 1, 0, 0, 0, 1258, 1259, 5, 179, 0, 0, 1259, 1260, 5, 37, 0, 0, 1260, 1261, 5, 188, 0, 0, 1261, 1262, 3, 186, 93, 0, 1262, 121, 1, 0, 0, 0, 1263, 1264, 5, 179, 0, 0, 1264, 1265, 5, 37, 0, 0, 1265, 1266, 5, 212, 0, 0, 1266, 1267, 3, 188, 94, 0, 1267, 123, 1, 0, 0, 0, 1268, 1269, 5, 179, 0, 0, 1269, 1270, 5, 188, 0, 0, 1270, 1271, 5, 182, 0, 0, 1271, 1272, 3, 186, 93, 0, 1272, 125, 1, 0, 0, 0, 1273, 1274, 5, 179, 0, 0, 1274, 1275, 5, 32, 0, 0, 1275, 1276, 5, 182, 0, 0, 1276, 1277, 3, 186, 93, 0, 1277, 127, 1, 0, 0, 0, 1278, 1280, 5, 179, 0, 0, 1279, 1281, 5, 154, 0, 0, 1280, 1279, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 5, 146, 0, 0, 1283, 1284, 3, 186, 93, 0, 1284, 129, 1, 0, 0, 0, 1285, 1286, 5, 179, 0, 0, 1286, 1287, 5, 73, 0, 0, 1287, 1288, 5, 94, 0, 0, 1288, 1298, 3, 186, 93, 0, 1289, 1290, 5, 145, 0, 0, 1290, 1291, 5, 265, 0, 0, 1291, 1294, 3, 320, 160, 0, 1292, 1293, 5, 263, 0, 0, 1293, 1295, 3, 320, 160, 0, 1294, 1292, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 5, 266, 0, 0, 1297, 1299, 1, 0, 0, 0, 1298, 1289, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 131, 1, 0, 0, 0, 1300, 1302, 5, 179, 0, 0, 1301, 1303, 5, 39, 0, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 5, 167, 0, 0, 1305, 133, 1, 0, 0, 0, 1306, 1307, 5, 179, 0, 0, 1307, 1308, 5, 166, 0, 0, 1308, 1309, 5, 86, 0, 0, 1309, 1310, 5, 87, 0, 0, 1310, 1311, 3, 374, 187, 0, 1311, 135, 1, 0, 0, 0, 1312, 1327, 3, 138, 69, 0, 1313, 1327, 3, 140, 70, 0, 1314, 1327, 3, 142, 71, 0, 1315, 1316, 5, 179, 0, 0, 1316, 1317, 5, 86, 0, 0, 1317, 1318, 7, 8, 0, 0, 1318, 1324, 3, 374, 187, 0, 1319, 1320, 5, 136, 0, 0, 1320, 1322, 7, 9, 0, 0, 1321, 1323, 3, 370, 185, 0, 1322, 1321, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1325, 1, 0, 0, 0, 1324, 1319, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1327, 1, 0, 0, 0, 1326, 1312, 1, 0, 0, 0, 1326, 1313, 1, 0, 0, 0, 1326, 1314, 1, 0, 0, 0, 1326, 1315, 1, 0, 0, 0, 1327, 137, 1, 0, 0, 0, 1328, 1329, 5, 179, 0, 0, 1329, 1330, 5, 86, 0, 0, 1330, 1331, 7, 8, 0, 0, 1331, 1337, 3, 374, 187, 0, 1332, 1333, 5, 136, 0, 0, 1333, 1335, 5, 46, 0, 0, 1334, 1336, 3, 184, 92, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1338, 1, 0, 0, 0, 1337, 1332, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 139, 1, 0, 0, 0, 1339, 1340, 5, 179, 0, 0, 1340, 1341, 5, 86, 0, 0, 1341, 1342, 7, 8, 0, 0, 1342, 1348, 3, 374, 187, 0, 1343, 1344, 5, 136, 0, 0, 1344, 1346, 5, 188, 0, 0, 1345, 1347, 3, 186, 93, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1349, 1, 0, 0, 0, 1348, 1343, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 141, 1, 0, 0, 0, 1350, 1351, 5, 179, 0, 0, 1351, 1352, 5, 86, 0, 0, 1352, 1353, 7, 8, 0, 0, 1353, 1359, 3, 374, 187, 0, 1354, 1355, 5, 136, 0, 0, 1355, 1357, 5, 32, 0, 0, 1356, 1358, 3, 192, 96, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1360, 1, 0, 0, 0, 1359, 1354, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 143, 1, 0, 0, 0, 1361, 1365, 3, 146, 73, 0, 1362, 1365, 3, 148, 74, 0, 1363, 1365, 3, 150, 75, 0, 1364, 1361, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1363, 1, 0, 0, 0, 1365, 145, 1, 0, 0, 0, 1366, 1367, 5, 34, 0, 0, 1367, 1368, 5, 136, 0, 0, 1368, 1369, 5, 46, 0, 0, 1369, 1370, 3, 184, 92, 0, 1370, 1373, 5, 108, 0, 0, 1371, 1374, 3, 330, 165, 0, 1372, 1374, 5, 133, 0, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 147, 1, 0, 0, 0, 1375, 1376, 5, 34, 0, 0, 1376, 1377, 5, 136, 0, 0, 1377, 1378, 5, 188, 0, 0, 1378, 1379, 3, 186, 93, 0, 1379, 1382, 5, 108, 0, 0, 1380, 1383, 3, 330, 165, 0, 1381, 1383, 5, 133, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1381, 1, 0, 0, 0, 1383, 149, 1, 0, 0, 0, 1384, 1385, 5, 34, 0, 0, 1385, 1386, 5, 136, 0, 0, 1386, 1387, 5, 32, 0, 0, 1387, 1388, 3, 192, 96, 0, 1388, 1391, 5, 108, 0, 0, 1389, 1392, 3, 330, 165, 0, 1390, 1392, 5, 133, 0, 0, 1391, 1389, 1, 0, 0, 0, 1391, 1390, 1, 0, 0, 0, 1392, 151, 1, 0, 0, 0, 1393, 1394, 5, 67, 0, 0, 1394, 1395, 3, 4, 2, 0, 1395, 153, 1, 0, 0, 0, 1396, 1402, 5, 176, 0, 0, 1397, 1403, 5, 2, 0, 0, 1398, 1399, 3, 374, 187, 0, 1399, 1400, 5, 249, 0, 0, 1400, 1401, 3, 320, 160, 0, 1401, 1403, 1, 0, 0, 0, 1402, 1397, 1, 0, 0, 0, 1402, 1398, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 155, 1, 0, 0, 0, 1404, 1405, 5, 264, 0, 0, 1405, 1406, 5, 180, 0, 0, 1406, 1416, 5, 265, 0, 0, 1407, 1409, 3, 330, 165, 0, 1408, 1407, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1417, 1, 0, 0, 0, 1410, 1413, 3, 330, 165, 0, 1411, 1412, 5, 263, 0, 0, 1412, 1414, 3, 320, 160, 0, 1413, 1411, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1417, 1, 0, 0, 0, 1415, 1417, 3, 320, 160, 0, 1416, 1408, 1, 0, 0, 0, 1416, 1410, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 5, 266, 0, 0, 1419, 157, 1, 0, 0, 0, 1420, 1421, 5, 107, 0, 0, 1421, 1422, 5, 121, 0, 0, 1422, 1423, 3, 186, 93, 0, 1423, 159, 1, 0, 0, 0, 1424, 1425, 5, 118, 0, 0, 1425, 1426, 5, 45, 0, 0, 1426, 1427, 5, 98, 0, 0, 1427, 1429, 5, 274, 0, 0, 1428, 1430, 5, 144, 0, 0, 1429, 1428, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 5, 103, 0, 0, 1432, 1433, 5, 188, 0, 0, 1433, 1443, 3, 186, 93, 0, 1434, 1435, 5, 145, 0, 0, 1435, 1436, 5, 265, 0, 0, 1436, 1439, 3, 320, 160, 0, 1437, 1438, 5, 263, 0, 0, 1438, 1440, 3, 320, 160, 0, 1439, 1437, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 5, 266, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1434, 1, 0, 0, 0, 1443, 1444, 1, 0, 0, 0, 1444, 161, 1, 0, 0, 0, 1445, 1449, 3, 164, 82, 0, 1446, 1449, 3, 166, 83, 0, 1447, 1449, 3, 168, 84, 0, 1448, 1445, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1448, 1447, 1, 0, 0, 0, 1449, 163, 1, 0, 0, 0, 1450, 1451, 5, 162, 0, 0, 1451, 1464, 3, 186, 93, 0, 1452, 1453, 5, 145, 0, 0, 1453, 1454, 5, 265, 0, 0, 1454, 1459, 3, 320, 160, 0, 1455, 1456, 5, 263, 0, 0, 1456, 1458, 3, 320, 160, 0, 1457, 1455, 1, 0, 0, 0, 1458, 1461, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1460, 1462, 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1462, 1463, 5, 266, 0, 0, 1463, 1465, 1, 0, 0, 0, 1464, 1452, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 165, 1, 0, 0, 0, 1466, 1467, 5, 162, 0, 0, 1467, 1468, 5, 13, 0, 0, 1468, 167, 1, 0, 0, 0, 1469, 1470, 5, 162, 0, 0, 1470, 1471, 5, 85, 0, 0, 1471, 1472, 3, 190, 95, 0, 1472, 169, 1, 0, 0, 0, 1473, 1474, 5, 93, 0, 0, 1474, 1475, 5, 66, 0, 0, 1475, 171, 1, 0, 0, 0, 1476, 1477, 5, 93, 0, 0, 1477, 1478, 5, 132, 0, 0, 1478, 1479, 5, 66, 0, 0, 1479, 173, 1, 0, 0, 0, 1480, 1481, 3, 370, 185, 0, 1481, 175, 1, 0, 0, 0, 1482, 1483, 3, 370, 185, 0, 1483, 177, 1, 0, 0, 0, 1484, 1485, 3, 370, 185, 0, 1485, 179, 1, 0, 0, 0, 1486, 1487, 3, 370, 185, 0, 1487, 181, 1, 0, 0, 0, 1488, 1489, 3, 370, 185, 0, 1489, 183, 1, 0, 0, 0, 1490, 1491, 3, 370, 185, 0, 1491, 185, 1, 0, 0, 0, 1492, 1497, 3, 374, 187, 0, 1493, 1494, 5, 261, 0, 0, 1494, 1496, 3, 374, 187, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 1, 0, 0, 0, 1497, 1495, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 187, 1, 0, 0, 0, 1499, 1497, 1, 0, 0, 0, 1500, 1505, 3, 374, 187, 0, 1501, 1502, 5, 261, 0, 0, 1502, 1504, 3, 374, 187, 0, 1503, 1501, 1, 0, 0, 0, 1504, 1507, 1, 0, 0, 0, 1505, 1503, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 189, 1, 0, 0, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1511, 3, 378, 189, 0, 1509, 1511, 3, 370, 185, 0, 1510, 1508, 1, 0, 0, 0, 1510, 1509, 1, 0, 0, 0, 1511, 191, 1, 0, 0, 0, 1512, 1515, 3, 370, 185, 0, 1513, 1515, 4, 96, 0, 0, 1514, 1512, 1, 0, 0, 0, 1514, 1513, 1, 0, 0, 0, 1515, 193, 1, 0, 0, 0, 1516, 1519, 3, 186, 93, 0, 1517, 1519, 3, 188, 94, 0, 1518, 1516, 1, 0, 0, 0, 1518, 1517, 1, 0, 0, 0, 1519, 195, 1, 0, 0, 0, 1520, 1521, 5, 21, 0, 0, 1521, 1522, 5, 26, 0, 0, 1522, 1524, 3, 306, 153, 0, 1523, 1520, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 1, 0, 0, 0, 1525, 1527, 3, 222, 111, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1531, 1, 0, 0, 0, 1528, 1529, 5, 168, 0, 0, 1529, 1530, 5, 79, 0, 0, 1530, 1532, 3, 258, 129, 0, 1531, 1528, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1536, 1, 0, 0, 0, 1533, 1534, 5, 216, 0, 0, 1534, 1535, 5, 175, 0, 0, 1535, 1537, 3, 252, 126, 0, 1536, 1533, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1541, 1, 0, 0, 0, 1538, 1539, 5, 23, 0, 0, 1539, 1540, 5, 9, 0, 0, 1540, 1542, 3, 234, 117, 0, 1541, 1538, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1545, 1, 0, 0, 0, 1543, 1544, 5, 24, 0, 0, 1544, 1546, 3, 330, 165, 0, 1545, 1543, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1557, 1, 0, 0, 0, 1547, 1548, 5, 30, 0, 0, 1548, 1549, 5, 94, 0, 0, 1549, 1554, 3, 370, 185, 0, 1550, 1551, 5, 216, 0, 0, 1551, 1552, 5, 151, 0, 0, 1552, 1553, 5, 249, 0, 0, 1553, 1555, 5, 277, 0, 0, 1554, 1550, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1558, 1, 0, 0, 0, 1556, 1558, 5, 197, 0, 0, 1557, 1547, 1, 0, 0, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1561, 1, 0, 0, 0, 1559, 1560, 5, 25, 0, 0, 1560, 1562, 3, 252, 126, 0, 1561, 1559, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 197, 1, 0, 0, 0, 1563, 1568, 3, 200, 100, 0, 1564, 1565, 5, 263, 0, 0, 1565, 1567, 3, 200, 100, 0, 1566, 1564, 1, 0, 0, 0, 1567, 1570, 1, 0, 0, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 199, 1, 0, 0, 0, 1570, 1568, 1, 0, 0, 0, 1571, 1572, 3, 370, 185, 0, 1572, 1573, 5, 249, 0, 0, 1573, 1574, 3, 320, 160, 0, 1574, 201, 1, 0, 0, 0, 1575, 1577, 5, 265, 0, 0, 1576, 1578, 3, 204, 102, 0, 1577, 1576, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1585, 1, 0, 0, 0, 1579, 1581, 5, 263, 0, 0, 1580, 1582, 3, 204, 102, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1584, 1, 0, 0, 0, 1583, 1579, 1, 0, 0, 0, 1584, 1587, 1, 0, 0, 0, 1585, 1583, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1588, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1589, 5, 266, 0, 0, 1589, 203, 1, 0, 0, 0, 1590, 1592, 3, 182, 91, 0, 1591, 1593, 3, 222, 111, 0, 1592, 1591, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 205, 1, 0, 0, 0, 1594, 1596, 3, 208, 104, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 3, 262, 131, 0, 1598, 207, 1, 0, 0, 0, 1599, 1600, 5, 216, 0, 0, 1600, 1605, 3, 280, 140, 0, 1601, 1602, 5, 263, 0, 0, 1602, 1604, 3, 280, 140, 0, 1603, 1601, 1, 0, 0, 0, 1604, 1607, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 209, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1608, 1609, 5, 150, 0, 0, 1609, 1610, 5, 110, 0, 0, 1610, 1612, 3, 306, 153, 0, 1611, 1613, 5, 53, 0, 0, 1612, 1611, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1617, 1, 0, 0, 0, 1614, 1618, 5, 225, 0, 0, 1615, 1616, 5, 263, 0, 0, 1616, 1618, 5, 225, 0, 0, 1617, 1614, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1622, 1, 0, 0, 0, 1619, 1623, 5, 226, 0, 0, 1620, 1621, 5, 263, 0, 0, 1621, 1623, 5, 226, 0, 0, 1622, 1619, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1636, 1, 0, 0, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1628, 3, 212, 106, 0, 1626, 1628, 3, 212, 106, 0, 1627, 1624, 1, 0, 0, 0, 1627, 1626, 1, 0, 0, 0, 1628, 1633, 1, 0, 0, 0, 1629, 1630, 5, 263, 0, 0, 1630, 1632, 3, 212, 106, 0, 1631, 1629, 1, 0, 0, 0, 1632, 1635, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1633, 1631, 1, 0, 0, 0, 1634, 1637, 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1627, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 211, 1, 0, 0, 0, 1638, 1639, 5, 81, 0, 0, 1639, 1640, 5, 110, 0, 0, 1640, 1641, 3, 306, 153, 0, 1641, 1642, 5, 224, 0, 0, 1642, 1643, 3, 186, 93, 0, 1643, 1645, 3, 306, 153, 0, 1644, 1646, 5, 53, 0, 0, 1645, 1644, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1648, 1, 0, 0, 0, 1647, 1649, 5, 225, 0, 0, 1648, 1647, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1651, 1, 0, 0, 0, 1650, 1652, 5, 226, 0, 0, 1651, 1650, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 213, 1, 0, 0, 0, 1653, 1654, 3, 192, 96, 0, 1654, 1657, 3, 344, 172, 0, 1655, 1656, 5, 34, 0, 0, 1656, 1658, 3, 330, 165, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 215, 1, 0, 0, 0, 1659, 1660, 3, 182, 91, 0, 1660, 1662, 3, 344, 172, 0, 1661, 1663, 3, 222, 111, 0, 1662, 1661, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 217, 1, 0, 0, 0, 1664, 1665, 3, 220, 110, 0, 1665, 219, 1, 0, 0, 0, 1666, 1667, 3, 182, 91, 0, 1667, 1675, 3, 344, 172, 0, 1668, 1672, 3, 228, 114, 0, 1669, 1671, 3, 228, 114, 0, 1670, 1669, 1, 0, 0, 0, 1671, 1674, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1672, 1670, 1, 0, 0, 0, 1673, 1676, 1, 0, 0, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1668, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 222, 111, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1681, 5, 150, 0, 0, 1681, 1683, 5, 110, 0, 0, 1682, 1680, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 221, 1, 0, 0, 0, 1684, 1685, 5, 34, 0, 0, 1685, 1686, 3, 330, 165, 0, 1686, 223, 1, 0, 0, 0, 1687, 1695, 3, 214, 107, 0, 1688, 1692, 3, 228, 114, 0, 1689, 1691, 3, 228, 114, 0, 1690, 1689, 1, 0, 0, 0, 1691, 1694, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1692, 1690, 1, 0, 0, 0, 1693, 1696, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1688, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 225, 1, 0, 0, 0, 1697, 1698, 3, 182, 91, 0, 1698, 1701, 3, 344, 172, 0, 1699, 1700, 5, 34, 0, 0, 1700, 1702, 3, 330, 165, 0, 1701, 1699, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1710, 1, 0, 0, 0, 1703, 1707, 3, 228, 114, 0, 1704, 1706, 3, 228, 114, 0, 1705, 1704, 1, 0, 0, 0, 1706, 1709, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1711, 1, 0, 0, 0, 1709, 1707, 1, 0, 0, 0, 1710, 1703, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 227, 1, 0, 0, 0, 1712, 1714, 5, 132, 0, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1718, 5, 133, 0, 0, 1716, 1718, 3, 230, 115, 0, 1717, 1713, 1, 0, 0, 0, 1717, 1716, 1, 0, 0, 0, 1718, 229, 1, 0, 0, 0, 1719, 1720, 5, 60, 0, 0, 1720, 1728, 3, 320, 160, 0, 1721, 1722, 5, 35, 0, 0, 1722, 1728, 3, 320, 160, 0, 1723, 1724, 5, 51, 0, 0, 1724, 1728, 3, 320, 160, 0, 1725, 1726, 5, 16, 0, 0, 1726, 1728, 3, 376, 188, 0, 1727, 1719, 1, 0, 0, 0, 1727, 1721, 1, 0, 0, 0, 1727, 1723, 1, 0, 0, 0, 1727, 1725, 1, 0, 0, 0, 1728, 231, 1, 0, 0, 0, 1729, 1730, 7, 10, 0, 0, 1730, 233, 1, 0, 0, 0, 1731, 1732, 7, 11, 0, 0, 1732, 235, 1, 0, 0, 0, 1733, 1738, 3, 238, 119, 0, 1734, 1735, 5, 263, 0, 0, 1735, 1737, 3, 238, 119, 0, 1736, 1734, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1743, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 263, 0, 0, 1742, 1744, 3, 240, 120, 0, 1743, 1741, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1747, 1, 0, 0, 0, 1745, 1747, 3, 240, 120, 0, 1746, 1733, 1, 0, 0, 0, 1746, 1745, 1, 0, 0, 0, 1747, 237, 1, 0, 0, 0, 1748, 1750, 5, 89, 0, 0, 1749, 1751, 3, 306, 153, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1753, 5, 146, 0, 0, 1753, 1754, 3, 376, 188, 0, 1754, 239, 1, 0, 0, 0, 1755, 1757, 5, 154, 0, 0, 1756, 1758, 3, 306, 153, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 5, 265, 0, 0, 1760, 1761, 5, 145, 0, 0, 1761, 1767, 3, 242, 121, 0, 1762, 1763, 5, 263, 0, 0, 1763, 1764, 5, 145, 0, 0, 1764, 1766, 3, 242, 121, 0, 1765, 1762, 1, 0, 0, 0, 1766, 1769, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1768, 1770, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1770, 1771, 5, 266, 0, 0, 1771, 241, 1, 0, 0, 0, 1772, 1773, 5, 210, 0, 0, 1773, 1774, 3, 248, 124, 0, 1774, 1775, 3, 320, 160, 0, 1775, 1788, 1, 0, 0, 0, 1776, 1777, 3, 320, 160, 0, 1777, 1778, 3, 246, 123, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1776, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1785, 5, 211, 0, 0, 1782, 1783, 3, 246, 123, 0, 1783, 1784, 3, 320, 160, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1782, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1788, 1, 0, 0, 0, 1787, 1772, 1, 0, 0, 0, 1787, 1779, 1, 0, 0, 0, 1788, 243, 1, 0, 0, 0, 1789, 1790, 5, 30, 0, 0, 1790, 1791, 5, 94, 0, 0, 1791, 1796, 3, 374, 187, 0, 1792, 1793, 5, 216, 0, 0, 1793, 1794, 5, 151, 0, 0, 1794, 1795, 5, 249, 0, 0, 1795, 1797, 3, 376, 188, 0, 1796, 1792, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1800, 1, 0, 0, 0, 1798, 1800, 5, 197, 0, 0, 1799, 1789, 1, 0, 0, 0, 1799, 1798, 1, 0, 0, 0, 1800, 245, 1, 0, 0, 0, 1801, 1807, 1, 0, 0, 0, 1802, 1807, 5, 251, 0, 0, 1803, 1807, 5, 252, 0, 0, 1804, 1807, 5, 253, 0, 0, 1805, 1807, 5, 254, 0, 0, 1806, 1801, 1, 0, 0, 0, 1806, 1802, 1, 0, 0, 0, 1806, 1803, 1, 0, 0, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1805, 1, 0, 0, 0, 1807, 247, 1, 0, 0, 0, 1808, 1817, 5, 249, 0, 0, 1809, 1817, 5, 250, 0, 0, 1810, 1817, 5, 115, 0, 0, 1811, 1817, 5, 164, 0, 0, 1812, 1817, 5, 163, 0, 0, 1813, 1817, 5, 15, 0, 0, 1814, 1817, 5, 94, 0, 0, 1815, 1817, 3, 246, 123, 0, 1816, 1808, 1, 0, 0, 0, 1816, 1809, 1, 0, 0, 0, 1816, 1810, 1, 0, 0, 0, 1816, 1811, 1, 0, 0, 0, 1816, 1812, 1, 0, 0, 0, 1816, 1813, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1816, 1815, 1, 0, 0, 0, 1817, 249, 1, 0, 0, 0, 1818, 1819, 5, 115, 0, 0, 1819, 1822, 3, 370, 185, 0, 1820, 1821, 7, 12, 0, 0, 1821, 1823, 5, 153, 0, 0, 1822, 1820, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 251, 1, 0, 0, 0, 1824, 1825, 5, 265, 0, 0, 1825, 1830, 3, 260, 130, 0, 1826, 1827, 5, 263, 0, 0, 1827, 1829, 3, 260, 130, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1834, 5, 266, 0, 0, 1834, 253, 1, 0, 0, 0, 1835, 1836, 5, 265, 0, 0, 1836, 1841, 3, 214, 107, 0, 1837, 1838, 5, 263, 0, 0, 1838, 1840, 3, 214, 107, 0, 1839, 1837, 1, 0, 0, 0, 1840, 1843, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1844, 1, 0, 0, 0, 1843, 1841, 1, 0, 0, 0, 1844, 1845, 5, 266, 0, 0, 1845, 255, 1, 0, 0, 0, 1846, 1851, 3, 320, 160, 0, 1847, 1848, 5, 263, 0, 0, 1848, 1850, 3, 320, 160, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 257, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1854, 1864, 5, 52, 0, 0, 1855, 1856, 5, 71, 0, 0, 1856, 1857, 5, 191, 0, 0, 1857, 1858, 5, 26, 0, 0, 1858, 1862, 3, 330, 165, 0, 1859, 1860, 5, 63, 0, 0, 1860, 1861, 5, 26, 0, 0, 1861, 1863, 3, 330, 165, 0, 1862, 1859, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1865, 1, 0, 0, 0, 1864, 1855, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1870, 1, 0, 0, 0, 1866, 1867, 5, 117, 0, 0, 1867, 1868, 5, 191, 0, 0, 1868, 1869, 5, 26, 0, 0, 1869, 1871, 3, 330, 165, 0, 1870, 1866, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 259, 1, 0, 0, 0, 1872, 1875, 3, 374, 187, 0, 1873, 1874, 5, 249, 0, 0, 1874, 1876, 3, 320, 160, 0, 1875, 1873, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 261, 1, 0, 0, 0, 1877, 1888, 3, 264, 132, 0, 1878, 1879, 5, 139, 0, 0, 1879, 1880, 5, 26, 0, 0, 1880, 1885, 3, 268, 134, 0, 1881, 1882, 5, 263, 0, 0, 1882, 1884, 3, 268, 134, 0, 1883, 1881, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1889, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1878, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1896, 1, 0, 0, 0, 1890, 1891, 5, 116, 0, 0, 1891, 1894, 3, 320, 160, 0, 1892, 1893, 5, 135, 0, 0, 1893, 1895, 5, 277, 0, 0, 1894, 1892, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1897, 1, 0, 0, 0, 1896, 1890, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 263, 1, 0, 0, 0, 1898, 1899, 6, 132, -1, 0, 1899, 1900, 3, 266, 133, 0, 1900, 1915, 1, 0, 0, 0, 1901, 1902, 10, 2, 0, 0, 1902, 1904, 5, 100, 0, 0, 1903, 1905, 3, 282, 141, 0, 1904, 1903, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1914, 3, 264, 132, 3, 1907, 1908, 10, 1, 0, 0, 1908, 1910, 7, 13, 0, 0, 1909, 1911, 3, 282, 141, 0, 1910, 1909, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1914, 3, 264, 132, 2, 1913, 1901, 1, 0, 0, 0, 1913, 1907, 1, 0, 0, 0, 1914, 1917, 1, 0, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 265, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1918, 1935, 3, 270, 135, 0, 1919, 1920, 5, 188, 0, 0, 1920, 1935, 3, 186, 93, 0, 1921, 1922, 5, 211, 0, 0, 1922, 1927, 3, 320, 160, 0, 1923, 1924, 5, 263, 0, 0, 1924, 1926, 3, 320, 160, 0, 1925, 1923, 1, 0, 0, 0, 1926, 1929, 1, 0, 0, 0, 1927, 1925, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1935, 1, 0, 0, 0, 1929, 1927, 1, 0, 0, 0, 1930, 1931, 5, 265, 0, 0, 1931, 1932, 3, 262, 131, 0, 1932, 1933, 5, 266, 0, 0, 1933, 1935, 1, 0, 0, 0, 1934, 1918, 1, 0, 0, 0, 1934, 1919, 1, 0, 0, 0, 1934, 1921, 1, 0, 0, 0, 1934, 1930, 1, 0, 0, 0, 1935, 267, 1, 0, 0, 0, 1936, 1938, 3, 318, 159, 0, 1937, 1939, 7, 14, 0, 0, 1938, 1937, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1941, 5, 134, 0, 0, 1941, 1943, 7, 15, 0, 0, 1942, 1940, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 269, 1, 0, 0, 0, 1944, 1946, 5, 174, 0, 0, 1945, 1947, 3, 282, 141, 0, 1946, 1945, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1949, 1, 0, 0, 0, 1948, 1950, 5, 183, 0, 0, 1949, 1948, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1961, 3, 272, 136, 0, 1952, 1953, 5, 82, 0, 0, 1953, 1958, 3, 294, 147, 0, 1954, 1955, 5, 263, 0, 0, 1955, 1957, 3, 294, 147, 0, 1956, 1954, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1962, 1, 0, 0, 0, 1960, 1958, 1, 0, 0, 0, 1961, 1952, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1965, 1, 0, 0, 0, 1963, 1964, 5, 215, 0, 0, 1964, 1966, 3, 322, 161, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1970, 1, 0, 0, 0, 1967, 1968, 5, 87, 0, 0, 1968, 1969, 5, 26, 0, 0, 1969, 1971, 3, 274, 137, 0, 1970, 1967, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1974, 1, 0, 0, 0, 1972, 1973, 5, 90, 0, 0, 1973, 1975, 3, 322, 161, 0, 1974, 1972, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 271, 1, 0, 0, 0, 1976, 1981, 3, 284, 142, 0, 1977, 1978, 5, 263, 0, 0, 1978, 1980, 3, 284, 142, 0, 1979, 1977, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 273, 1, 0, 0, 0, 1983, 1981, 1, 0, 0, 0, 1984, 1986, 3, 282, 141, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1992, 3, 276, 138, 0, 1988, 1989, 5, 263, 0, 0, 1989, 1991, 3, 276, 138, 0, 1990, 1988, 1, 0, 0, 0, 1991, 1994, 1, 0, 0, 0, 1992, 1990, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 275, 1, 0, 0, 0, 1994, 1992, 1, 0, 0, 0, 1995, 1996, 3, 278, 139, 0, 1996, 277, 1, 0, 0, 0, 1997, 2006, 5, 265, 0, 0, 1998, 2003, 3, 318, 159, 0, 1999, 2000, 5, 263, 0, 0, 2000, 2002, 3, 318, 159, 0, 2001, 1999, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2007, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2006, 1998, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2011, 5, 266, 0, 0, 2009, 2011, 3, 318, 159, 0, 2010, 1997, 1, 0, 0, 0, 2010, 2009, 1, 0, 0, 0, 2011, 279, 1, 0, 0, 0, 2012, 2014, 3, 374, 187, 0, 2013, 2015, 3, 306, 153, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2017, 5, 9, 0, 0, 2017, 2018, 3, 312, 156, 0, 2018, 281, 1, 0, 0, 0, 2019, 2020, 7, 16, 0, 0, 2020, 283, 1, 0, 0, 0, 2021, 2023, 3, 288, 144, 0, 2022, 2024, 3, 286, 143, 0, 2023, 2022, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2034, 1, 0, 0, 0, 2025, 2027, 3, 290, 145, 0, 2026, 2028, 3, 286, 143, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2034, 1, 0, 0, 0, 2029, 2031, 3, 292, 146, 0, 2030, 2032, 3, 286, 143, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2034, 1, 0, 0, 0, 2033, 2021, 1, 0, 0, 0, 2033, 2025, 1, 0, 0, 0, 2033, 2029, 1, 0, 0, 0, 2034, 285, 1, 0, 0, 0, 2035, 2036, 5, 9, 0, 0, 2036, 2037, 3, 374, 187, 0, 2037, 287, 1, 0, 0, 0, 2038, 2040, 3, 192, 96, 0, 2039, 2041, 3, 286, 143, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 289, 1, 0, 0, 0, 2042, 2043, 3, 320, 160, 0, 2043, 291, 1, 0, 0, 0, 2044, 2045, 3, 370, 185, 0, 2045, 2046, 5, 261, 0, 0, 2046, 2048, 1, 0, 0, 0, 2047, 2044, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 5, 257, 0, 0, 2050, 293, 1, 0, 0, 0, 2051, 2052, 6, 147, -1, 0, 2052, 2053, 3, 300, 150, 0, 2053, 2067, 1, 0, 0, 0, 2054, 2063, 10, 2, 0, 0, 2055, 2056, 5, 38, 0, 0, 2056, 2057, 5, 109, 0, 0, 2057, 2064, 3, 300, 150, 0, 2058, 2059, 3, 296, 148, 0, 2059, 2060, 5, 109, 0, 0, 2060, 2061, 3, 294, 147, 0, 2061, 2062, 3, 298, 149, 0, 2062, 2064, 1, 0, 0, 0, 2063, 2055, 1, 0, 0, 0, 2063, 2058, 1, 0, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2054, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 295, 1, 0, 0, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2072, 5, 97, 0, 0, 2071, 2070, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2102, 1, 0, 0, 0, 2073, 2075, 5, 114, 0, 0, 2074, 2076, 5, 97, 0, 0, 2075, 2074, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2102, 1, 0, 0, 0, 2077, 2079, 5, 165, 0, 0, 2078, 2080, 5, 97, 0, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2102, 1, 0, 0, 0, 2081, 2083, 5, 114, 0, 0, 2082, 2084, 5, 141, 0, 0, 2083, 2082, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2102, 1, 0, 0, 0, 2085, 2087, 5, 165, 0, 0, 2086, 2088, 5, 141, 0, 0, 2087, 2086, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2102, 1, 0, 0, 0, 2089, 2091, 5, 83, 0, 0, 2090, 2092, 5, 141, 0, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2102, 1, 0, 0, 0, 2093, 2094, 5, 114, 0, 0, 2094, 2102, 5, 177, 0, 0, 2095, 2096, 5, 165, 0, 0, 2096, 2102, 5, 177, 0, 0, 2097, 2098, 5, 114, 0, 0, 2098, 2102, 5, 7, 0, 0, 2099, 2100, 5, 165, 0, 0, 2100, 2102, 5, 7, 0, 0, 2101, 2071, 1, 0, 0, 0, 2101, 2073, 1, 0, 0, 0, 2101, 2077, 1, 0, 0, 0, 2101, 2081, 1, 0, 0, 0, 2101, 2085, 1, 0, 0, 0, 2101, 2089, 1, 0, 0, 0, 2101, 2093, 1, 0, 0, 0, 2101, 2095, 1, 0, 0, 0, 2101, 2097, 1, 0, 0, 0, 2101, 2099, 1, 0, 0, 0, 2102, 297, 1, 0, 0, 0, 2103, 2104, 5, 136, 0, 0, 2104, 2118, 3, 322, 161, 0, 2105, 2106, 5, 205, 0, 0, 2106, 2107, 5, 265, 0, 0, 2107, 2112, 3, 374, 187, 0, 2108, 2109, 5, 263, 0, 0, 2109, 2111, 3, 374, 187, 0, 2110, 2108, 1, 0, 0, 0, 2111, 2114, 1, 0, 0, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2112, 1, 0, 0, 0, 2115, 2116, 5, 266, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2103, 1, 0, 0, 0, 2117, 2105, 1, 0, 0, 0, 2118, 299, 1, 0, 0, 0, 2119, 2132, 3, 304, 152, 0, 2120, 2121, 5, 190, 0, 0, 2121, 2122, 3, 302, 151, 0, 2122, 2123, 5, 265, 0, 0, 2123, 2124, 3, 320, 160, 0, 2124, 2130, 5, 266, 0, 0, 2125, 2126, 5, 157, 0, 0, 2126, 2127, 5, 265, 0, 0, 2127, 2128, 3, 320, 160, 0, 2128, 2129, 5, 266, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2125, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2120, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 301, 1, 0, 0, 0, 2134, 2135, 7, 17, 0, 0, 2135, 303, 1, 0, 0, 0, 2136, 2144, 3, 308, 154, 0, 2137, 2139, 5, 9, 0, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 3, 374, 187, 0, 2141, 2143, 3, 306, 153, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2138, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 305, 1, 0, 0, 0, 2146, 2147, 5, 265, 0, 0, 2147, 2152, 3, 192, 96, 0, 2148, 2149, 5, 263, 0, 0, 2149, 2151, 3, 192, 96, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2154, 1, 0, 0, 0, 2152, 2150, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2155, 1, 0, 0, 0, 2154, 2152, 1, 0, 0, 0, 2155, 2156, 5, 266, 0, 0, 2156, 307, 1, 0, 0, 0, 2157, 2162, 3, 194, 97, 0, 2158, 2162, 3, 310, 155, 0, 2159, 2162, 3, 314, 157, 0, 2160, 2162, 3, 316, 158, 0, 2161, 2157, 1, 0, 0, 0, 2161, 2158, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2160, 1, 0, 0, 0, 2162, 309, 1, 0, 0, 0, 2163, 2165, 5, 113, 0, 0, 2164, 2163, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2167, 3, 312, 156, 0, 2167, 311, 1, 0, 0, 0, 2168, 2169, 5, 265, 0, 0, 2169, 2170, 3, 206, 103, 0, 2170, 2171, 5, 266, 0, 0, 2171, 313, 1, 0, 0, 0, 2172, 2173, 5, 201, 0, 0, 2173, 2174, 5, 265, 0, 0, 2174, 2179, 3, 320, 160, 0, 2175, 2176, 5, 263, 0, 0, 2176, 2178, 3, 320, 160, 0, 2177, 2175, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2182, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2185, 5, 266, 0, 0, 2183, 2184, 5, 216, 0, 0, 2184, 2186, 5, 140, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 315, 1, 0, 0, 0, 2187, 2188, 5, 265, 0, 0, 2188, 2189, 3, 294, 147, 0, 2189, 2190, 5, 266, 0, 0, 2190, 317, 1, 0, 0, 0, 2191, 2194, 3, 192, 96, 0, 2192, 2194, 3, 320, 160, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2192, 1, 0, 0, 0, 2194, 319, 1, 0, 0, 0, 2195, 2196, 3, 322, 161, 0, 2196, 321, 1, 0, 0, 0, 2197, 2198, 6, 161, -1, 0, 2198, 2200, 3, 326, 163, 0, 2199, 2201, 3, 324, 162, 0, 2200, 2199, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2205, 1, 0, 0, 0, 2202, 2203, 5, 132, 0, 0, 2203, 2205, 3, 322, 161, 3, 2204, 2197, 1, 0, 0, 0, 2204, 2202, 1, 0, 0, 0, 2205, 2214, 1, 0, 0, 0, 2206, 2207, 10, 2, 0, 0, 2207, 2208, 5, 5, 0, 0, 2208, 2213, 3, 322, 161, 3, 2209, 2210, 10, 1, 0, 0, 2210, 2211, 5, 138, 0, 0, 2211, 2213, 3, 322, 161, 2, 2212, 2206, 1, 0, 0, 0, 2212, 2209, 1, 0, 0, 0, 2213, 2216, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 323, 1, 0, 0, 0, 2216, 2214, 1, 0, 0, 0, 2217, 2218, 3, 332, 166, 0, 2218, 2219, 3, 326, 163, 0, 2219, 2276, 1, 0, 0, 0, 2220, 2221, 3, 332, 166, 0, 2221, 2222, 3, 334, 167, 0, 2222, 2223, 3, 312, 156, 0, 2223, 2276, 1, 0, 0, 0, 2224, 2226, 5, 132, 0, 0, 2225, 2224, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 5, 15, 0, 0, 2228, 2229, 3, 326, 163, 0, 2229, 2230, 5, 5, 0, 0, 2230, 2231, 3, 326, 163, 0, 2231, 2276, 1, 0, 0, 0, 2232, 2234, 5, 132, 0, 0, 2233, 2232, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2236, 5, 94, 0, 0, 2236, 2237, 5, 265, 0, 0, 2237, 2242, 3, 320, 160, 0, 2238, 2239, 5, 263, 0, 0, 2239, 2241, 3, 320, 160, 0, 2240, 2238, 1, 0, 0, 0, 2241, 2244, 1, 0, 0, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2245, 1, 0, 0, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2246, 5, 266, 0, 0, 2246, 2276, 1, 0, 0, 0, 2247, 2249, 5, 132, 0, 0, 2248, 2247, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 2251, 5, 94, 0, 0, 2251, 2276, 3, 312, 156, 0, 2252, 2254, 5, 132, 0, 0, 2253, 2252, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 2256, 7, 18, 0, 0, 2256, 2259, 3, 326, 163, 0, 2257, 2258, 5, 62, 0, 0, 2258, 2260, 3, 326, 163, 0, 2259, 2257, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2276, 1, 0, 0, 0, 2261, 2262, 7, 19, 0, 0, 2262, 2276, 3, 326, 163, 0, 2263, 2265, 5, 108, 0, 0, 2264, 2266, 5, 132, 0, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 2276, 7, 20, 0, 0, 2268, 2270, 5, 108, 0, 0, 2269, 2271, 5, 132, 0, 0, 2270, 2269, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 5, 57, 0, 0, 2273, 2274, 5, 82, 0, 0, 2274, 2276, 3, 326, 163, 0, 2275, 2217, 1, 0, 0, 0, 2275, 2220, 1, 0, 0, 0, 2275, 2225, 1, 0, 0, 0, 2275, 2233, 1, 0, 0, 0, 2275, 2248, 1, 0, 0, 0, 2275, 2253, 1, 0, 0, 0, 2275, 2261, 1, 0, 0, 0, 2275, 2263, 1, 0, 0, 0, 2275, 2268, 1, 0, 0, 0, 2276, 325, 1, 0, 0, 0, 2277, 2278, 6, 163, -1, 0, 2278, 2282, 3, 328, 164, 0, 2279, 2280, 7, 21, 0, 0, 2280, 2282, 3, 326, 163, 4, 2281, 2277, 1, 0, 0, 0, 2281, 2279, 1, 0, 0, 0, 2282, 2294, 1, 0, 0, 0, 2283, 2284, 10, 3, 0, 0, 2284, 2285, 7, 22, 0, 0, 2285, 2293, 3, 326, 163, 4, 2286, 2287, 10, 2, 0, 0, 2287, 2288, 7, 21, 0, 0, 2288, 2293, 3, 326, 163, 3, 2289, 2290, 10, 1, 0, 0, 2290, 2291, 5, 260, 0, 0, 2291, 2293, 3, 326, 163, 2, 2292, 2283, 1, 0, 0, 0, 2292, 2286, 1, 0, 0, 0, 2292, 2289, 1, 0, 0, 0, 2293, 2296, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 327, 1, 0, 0, 0, 2296, 2294, 1, 0, 0, 0, 2297, 2298, 6, 164, -1, 0, 2298, 2544, 5, 133, 0, 0, 2299, 2544, 3, 338, 169, 0, 2300, 2301, 3, 374, 187, 0, 2301, 2302, 3, 330, 165, 0, 2302, 2544, 1, 0, 0, 0, 2303, 2304, 5, 286, 0, 0, 2304, 2544, 3, 330, 165, 0, 2305, 2544, 3, 376, 188, 0, 2306, 2544, 3, 336, 168, 0, 2307, 2544, 3, 330, 165, 0, 2308, 2544, 5, 276, 0, 0, 2309, 2544, 5, 272, 0, 0, 2310, 2311, 5, 148, 0, 0, 2311, 2312, 5, 265, 0, 0, 2312, 2313, 3, 326, 163, 0, 2313, 2314, 5, 94, 0, 0, 2314, 2315, 3, 326, 163, 0, 2315, 2316, 5, 266, 0, 0, 2316, 2544, 1, 0, 0, 0, 2317, 2318, 5, 265, 0, 0, 2318, 2321, 3, 320, 160, 0, 2319, 2320, 5, 9, 0, 0, 2320, 2322, 3, 344, 172, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2331, 1, 0, 0, 0, 2323, 2324, 5, 263, 0, 0, 2324, 2327, 3, 320, 160, 0, 2325, 2326, 5, 9, 0, 0, 2326, 2328, 3, 344, 172, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2330, 1, 0, 0, 0, 2329, 2323, 1, 0, 0, 0, 2330, 2333, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2331, 2329, 1, 0, 0, 0, 2332, 2334, 1, 0, 0, 0, 2333, 2331, 1, 0, 0, 0, 2334, 2335, 5, 266, 0, 0, 2335, 2544, 1, 0, 0, 0, 2336, 2337, 5, 168, 0, 0, 2337, 2338, 5, 265, 0, 0, 2338, 2343, 3, 320, 160, 0, 2339, 2340, 5, 263, 0, 0, 2340, 2342, 3, 320, 160, 0, 2341, 2339, 1, 0, 0, 0, 2342, 2345, 1, 0, 0, 0, 2343, 2341, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2346, 2347, 5, 266, 0, 0, 2347, 2544, 1, 0, 0, 0, 2348, 2349, 3, 190, 95, 0, 2349, 2350, 5, 265, 0, 0, 2350, 2351, 5, 257, 0, 0, 2351, 2353, 5, 266, 0, 0, 2352, 2354, 3, 354, 177, 0, 2353, 2352, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 1, 0, 0, 0, 2355, 2357, 3, 356, 178, 0, 2356, 2355, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2544, 1, 0, 0, 0, 2358, 2359, 3, 190, 95, 0, 2359, 2371, 5, 265, 0, 0, 2360, 2362, 3, 282, 141, 0, 2361, 2360, 1, 0, 0, 0, 2361, 2362, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 2368, 3, 320, 160, 0, 2364, 2365, 5, 263, 0, 0, 2365, 2367, 3, 320, 160, 0, 2366, 2364, 1, 0, 0, 0, 2367, 2370, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2372, 1, 0, 0, 0, 2370, 2368, 1, 0, 0, 0, 2371, 2361, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2383, 1, 0, 0, 0, 2373, 2374, 5, 139, 0, 0, 2374, 2375, 5, 26, 0, 0, 2375, 2380, 3, 268, 134, 0, 2376, 2377, 5, 263, 0, 0, 2377, 2379, 3, 268, 134, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2382, 1, 0, 0, 0, 2380, 2378, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2384, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2373, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2387, 5, 266, 0, 0, 2386, 2388, 3, 354, 177, 0, 2387, 2386, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2391, 3, 356, 178, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2544, 1, 0, 0, 0, 2392, 2393, 3, 374, 187, 0, 2393, 2394, 5, 273, 0, 0, 2394, 2395, 3, 320, 160, 0, 2395, 2544, 1, 0, 0, 0, 2396, 2405, 5, 265, 0, 0, 2397, 2402, 3, 374, 187, 0, 2398, 2399, 5, 263, 0, 0, 2399, 2401, 3, 374, 187, 0, 2400, 2398, 1, 0, 0, 0, 2401, 2404, 1, 0, 0, 0, 2402, 2400, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2406, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2405, 2397, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2408, 5, 266, 0, 0, 2408, 2409, 5, 273, 0, 0, 2409, 2544, 3, 320, 160, 0, 2410, 2411, 5, 265, 0, 0, 2411, 2412, 3, 206, 103, 0, 2412, 2413, 5, 266, 0, 0, 2413, 2544, 1, 0, 0, 0, 2414, 2415, 5, 66, 0, 0, 2415, 2416, 5, 265, 0, 0, 2416, 2417, 3, 206, 103, 0, 2417, 2418, 5, 266, 0, 0, 2418, 2544, 1, 0, 0, 0, 2419, 2420, 5, 28, 0, 0, 2420, 2422, 3, 326, 163, 0, 2421, 2423, 3, 352, 176, 0, 2422, 2421, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2422, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2428, 1, 0, 0, 0, 2426, 2427, 5, 59, 0, 0, 2427, 2429, 3, 320, 160, 0, 2428, 2426, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2431, 5, 61, 0, 0, 2431, 2544, 1, 0, 0, 0, 2432, 2434, 5, 28, 0, 0, 2433, 2435, 3, 352, 176, 0, 2434, 2433, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2440, 1, 0, 0, 0, 2438, 2439, 5, 59, 0, 0, 2439, 2441, 3, 320, 160, 0, 2440, 2438, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 5, 61, 0, 0, 2443, 2544, 1, 0, 0, 0, 2444, 2445, 5, 29, 0, 0, 2445, 2446, 5, 265, 0, 0, 2446, 2447, 3, 320, 160, 0, 2447, 2448, 5, 9, 0, 0, 2448, 2449, 3, 344, 172, 0, 2449, 2450, 5, 266, 0, 0, 2450, 2544, 1, 0, 0, 0, 2451, 2452, 5, 195, 0, 0, 2452, 2453, 5, 265, 0, 0, 2453, 2454, 3, 320, 160, 0, 2454, 2455, 5, 9, 0, 0, 2455, 2456, 3, 344, 172, 0, 2456, 2457, 5, 266, 0, 0, 2457, 2544, 1, 0, 0, 0, 2458, 2459, 5, 8, 0, 0, 2459, 2468, 5, 267, 0, 0, 2460, 2465, 3, 320, 160, 0, 2461, 2462, 5, 263, 0, 0, 2462, 2464, 3, 320, 160, 0, 2463, 2461, 1, 0, 0, 0, 2464, 2467, 1, 0, 0, 0, 2465, 2463, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2469, 1, 0, 0, 0, 2467, 2465, 1, 0, 0, 0, 2468, 2460, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2544, 5, 268, 0, 0, 2471, 2544, 3, 374, 187, 0, 2472, 2544, 5, 40, 0, 0, 2473, 2477, 5, 42, 0, 0, 2474, 2475, 5, 265, 0, 0, 2475, 2476, 5, 277, 0, 0, 2476, 2478, 5, 266, 0, 0, 2477, 2474, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2544, 1, 0, 0, 0, 2479, 2483, 5, 43, 0, 0, 2480, 2481, 5, 265, 0, 0, 2481, 2482, 5, 277, 0, 0, 2482, 2484, 5, 266, 0, 0, 2483, 2480, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2544, 1, 0, 0, 0, 2485, 2489, 5, 119, 0, 0, 2486, 2487, 5, 265, 0, 0, 2487, 2488, 5, 277, 0, 0, 2488, 2490, 5, 266, 0, 0, 2489, 2486, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2544, 1, 0, 0, 0, 2491, 2495, 5, 120, 0, 0, 2492, 2493, 5, 265, 0, 0, 2493, 2494, 5, 277, 0, 0, 2494, 2496, 5, 266, 0, 0, 2495, 2492, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2544, 1, 0, 0, 0, 2497, 2544, 5, 44, 0, 0, 2498, 2544, 5, 41, 0, 0, 2499, 2500, 5, 184, 0, 0, 2500, 2501, 5, 265, 0, 0, 2501, 2502, 3, 326, 163, 0, 2502, 2503, 5, 82, 0, 0, 2503, 2506, 3, 326, 163, 0, 2504, 2505, 5, 78, 0, 0, 2505, 2507, 3, 326, 163, 0, 2506, 2504, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2509, 5, 266, 0, 0, 2509, 2544, 1, 0, 0, 0, 2510, 2511, 5, 131, 0, 0, 2511, 2512, 5, 265, 0, 0, 2512, 2515, 3, 326, 163, 0, 2513, 2514, 5, 263, 0, 0, 2514, 2516, 3, 342, 171, 0, 2515, 2513, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2518, 5, 266, 0, 0, 2518, 2544, 1, 0, 0, 0, 2519, 2520, 5, 68, 0, 0, 2520, 2521, 5, 265, 0, 0, 2521, 2522, 3, 374, 187, 0, 2522, 2523, 5, 82, 0, 0, 2523, 2524, 3, 326, 163, 0, 2524, 2525, 5, 266, 0, 0, 2525, 2544, 1, 0, 0, 0, 2526, 2527, 5, 265, 0, 0, 2527, 2528, 3, 320, 160, 0, 2528, 2529, 5, 266, 0, 0, 2529, 2544, 1, 0, 0, 0, 2530, 2531, 5, 88, 0, 0, 2531, 2540, 5, 265, 0, 0, 2532, 2537, 3, 370, 185, 0, 2533, 2534, 5, 263, 0, 0, 2534, 2536, 3, 370, 185, 0, 2535, 2533, 1, 0, 0, 0, 2536, 2539, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2541, 1, 0, 0, 0, 2539, 2537, 1, 0, 0, 0, 2540, 2532, 1, 0, 0, 0, 2540, 2541, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2544, 5, 266, 0, 0, 2543, 2297, 1, 0, 0, 0, 2543, 2299, 1, 0, 0, 0, 2543, 2300, 1, 0, 0, 0, 2543, 2303, 1, 0, 0, 0, 2543, 2305, 1, 0, 0, 0, 2543, 2306, 1, 0, 0, 0, 2543, 2307, 1, 0, 0, 0, 2543, 2308, 1, 0, 0, 0, 2543, 2309, 1, 0, 0, 0, 2543, 2310, 1, 0, 0, 0, 2543, 2317, 1, 0, 0, 0, 2543, 2336, 1, 0, 0, 0, 2543, 2348, 1, 0, 0, 0, 2543, 2358, 1, 0, 0, 0, 2543, 2392, 1, 0, 0, 0, 2543, 2396, 1, 0, 0, 0, 2543, 2410, 1, 0, 0, 0, 2543, 2414, 1, 0, 0, 0, 2543, 2419, 1, 0, 0, 0, 2543, 2432, 1, 0, 0, 0, 2543, 2444, 1, 0, 0, 0, 2543, 2451, 1, 0, 0, 0, 2543, 2458, 1, 0, 0, 0, 2543, 2471, 1, 0, 0, 0, 2543, 2472, 1, 0, 0, 0, 2543, 2473, 1, 0, 0, 0, 2543, 2479, 1, 0, 0, 0, 2543, 2485, 1, 0, 0, 0, 2543, 2491, 1, 0, 0, 0, 2543, 2497, 1, 0, 0, 0, 2543, 2498, 1, 0, 0, 0, 2543, 2499, 1, 0, 0, 0, 2543, 2510, 1, 0, 0, 0, 2543, 2519, 1, 0, 0, 0, 2543, 2526, 1, 0, 0, 0, 2543, 2530, 1, 0, 0, 0, 2544, 2555, 1, 0, 0, 0, 2545, 2546, 10, 15, 0, 0, 2546, 2547, 5, 267, 0, 0, 2547, 2548, 3, 326, 163, 0, 2548, 2549, 5, 268, 0, 0, 2549, 2554, 1, 0, 0, 0, 2550, 2551, 10, 13, 0, 0, 2551, 2552, 5, 261, 0, 0, 2552, 2554, 3, 374, 187, 0, 2553, 2545, 1, 0, 0, 0, 2553, 2550, 1, 0, 0, 0, 2554, 2557, 1, 0, 0, 0, 2555, 2553, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 329, 1, 0, 0, 0, 2557, 2555, 1, 0, 0, 0, 2558, 2565, 5, 274, 0, 0, 2559, 2562, 5, 275, 0, 0, 2560, 2561, 5, 198, 0, 0, 2561, 2563, 5, 274, 0, 0, 2562, 2560, 1, 0, 0, 0, 2562, 2563, 1, 0, 0, 0, 2563, 2565, 1, 0, 0, 0, 2564, 2558, 1, 0, 0, 0, 2564, 2559, 1, 0, 0, 0, 2565, 331, 1, 0, 0, 0, 2566, 2567, 7, 23, 0, 0, 2567, 333, 1, 0, 0, 0, 2568, 2569, 7, 24, 0, 0, 2569, 335, 1, 0, 0, 0, 2570, 2571, 7, 25, 0, 0, 2571, 337, 1, 0, 0, 0, 2572, 2573, 5, 277, 0, 0, 2573, 2587, 3, 340, 170, 0, 2574, 2575, 5, 265, 0, 0, 2575, 2576, 5, 277, 0, 0, 2576, 2577, 5, 266, 0, 0, 2577, 2587, 3, 340, 170, 0, 2578, 2579, 5, 101, 0, 0, 2579, 2580, 5, 277, 0, 0, 2580, 2587, 3, 340, 170, 0, 2581, 2582, 5, 101, 0, 0, 2582, 2583, 5, 265, 0, 0, 2583, 2584, 5, 277, 0, 0, 2584, 2585, 5, 266, 0, 0, 2585, 2587, 3, 340, 170, 0, 2586, 2572, 1, 0, 0, 0, 2586, 2574, 1, 0, 0, 0, 2586, 2578, 1, 0, 0, 0, 2586, 2581, 1, 0, 0, 0, 2587, 339, 1, 0, 0, 0, 2588, 2589, 7, 26, 0, 0, 2589, 341, 1, 0, 0, 0, 2590, 2591, 7, 27, 0, 0, 2591, 343, 1, 0, 0, 0, 2592, 2593, 6, 172, -1, 0, 2593, 2594, 5, 8, 0, 0, 2594, 2595, 5, 251, 0, 0, 2595, 2596, 3, 344, 172, 0, 2596, 2597, 5, 253, 0, 0, 2597, 2638, 1, 0, 0, 0, 2598, 2599, 5, 235, 0, 0, 2599, 2600, 5, 251, 0, 0, 2600, 2601, 3, 344, 172, 0, 2601, 2602, 5, 263, 0, 0, 2602, 2603, 3, 344, 172, 0, 2603, 2604, 5, 253, 0, 0, 2604, 2638, 1, 0, 0, 0, 2605, 2606, 5, 240, 0, 0, 2606, 2607, 5, 251, 0, 0, 2607, 2608, 3, 374, 187, 0, 2608, 2615, 3, 344, 172, 0, 2609, 2610, 5, 263, 0, 0, 2610, 2611, 3, 374, 187, 0, 2611, 2612, 3, 344, 172, 0, 2612, 2614, 1, 0, 0, 0, 2613, 2609, 1, 0, 0, 0, 2614, 2617, 1, 0, 0, 0, 2615, 2613, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2618, 1, 0, 0, 0, 2617, 2615, 1, 0, 0, 0, 2618, 2619, 5, 253, 0, 0, 2619, 2638, 1, 0, 0, 0, 2620, 2623, 3, 350, 175, 0, 2621, 2623, 3, 346, 173, 0, 2622, 2620, 1, 0, 0, 0, 2622, 2621, 1, 0, 0, 0, 2623, 2635, 1, 0, 0, 0, 2624, 2625, 5, 265, 0, 0, 2625, 2630, 3, 348, 174, 0, 2626, 2627, 5, 263, 0, 0, 2627, 2629, 3, 348, 174, 0, 2628, 2626, 1, 0, 0, 0, 2629, 2632, 1, 0, 0, 0, 2630, 2628, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2633, 1, 0, 0, 0, 2632, 2630, 1, 0, 0, 0, 2633, 2634, 5, 266, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2624, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2638, 1, 0, 0, 0, 2637, 2592, 1, 0, 0, 0, 2637, 2598, 1, 0, 0, 0, 2637, 2605, 1, 0, 0, 0, 2637, 2622, 1, 0, 0, 0, 2638, 2643, 1, 0, 0, 0, 2639, 2640, 10, 5, 0, 0, 2640, 2642, 5, 8, 0, 0, 2641, 2639, 1, 0, 0, 0, 2642, 2645, 1, 0, 0, 0, 2643, 2641, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 345, 1, 0, 0, 0, 2645, 2643, 1, 0, 0, 0, 2646, 2647, 7, 28, 0, 0, 2647, 347, 1, 0, 0, 0, 2648, 2651, 5, 277, 0, 0, 2649, 2651, 3, 344, 172, 0, 2650, 2648, 1, 0, 0, 0, 2650, 2649, 1, 0, 0, 0, 2651, 349, 1, 0, 0, 0, 2652, 2657, 5, 284, 0, 0, 2653, 2657, 5, 285, 0, 0, 2654, 2657, 5, 286, 0, 0, 2655, 2657, 3, 374, 187, 0, 2656, 2652, 1, 0, 0, 0, 2656, 2653, 1, 0, 0, 0, 2656, 2654, 1, 0, 0, 0, 2656, 2655, 1, 0, 0, 0, 2657, 351, 1, 0, 0, 0, 2658, 2659, 5, 214, 0, 0, 2659, 2660, 3, 320, 160, 0, 2660, 2661, 5, 192, 0, 0, 2661, 2662, 3, 320, 160, 0, 2662, 353, 1, 0, 0, 0, 2663, 2664, 5, 74, 0, 0, 2664, 2665, 5, 265, 0, 0, 2665, 2666, 5, 215, 0, 0, 2666, 2667, 3, 322, 161, 0, 2667, 2668, 5, 266, 0, 0, 2668, 355, 1, 0, 0, 0, 2669, 2670, 5, 143, 0, 0, 2670, 2681, 5, 265, 0, 0, 2671, 2672, 5, 145, 0, 0, 2672, 2673, 5, 26, 0, 0, 2673, 2678, 3, 320, 160, 0, 2674, 2675, 5, 263, 0, 0, 2675, 2677, 3, 320, 160, 0, 2676, 2674, 1, 0, 0, 0, 2677, 2680, 1, 0, 0, 0, 2678, 2676, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2682, 1, 0, 0, 0, 2680, 2678, 1, 0, 0, 0, 2681, 2671, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2693, 1, 0, 0, 0, 2683, 2684, 5, 139, 0, 0, 2684, 2685, 5, 26, 0, 0, 2685, 2690, 3, 268, 134, 0, 2686, 2687, 5, 263, 0, 0, 2687, 2689, 3, 268, 134, 0, 2688, 2686, 1, 0, 0, 0, 2689, 2692, 1, 0, 0, 0, 2690, 2688, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2694, 1, 0, 0, 0, 2692, 2690, 1, 0, 0, 0, 2693, 2683, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2696, 1, 0, 0, 0, 2695, 2697, 3, 358, 179, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 5, 266, 0, 0, 2699, 357, 1, 0, 0, 0, 2700, 2701, 5, 154, 0, 0, 2701, 2717, 3, 360, 180, 0, 2702, 2703, 5, 169, 0, 0, 2703, 2717, 3, 360, 180, 0, 2704, 2705, 5, 154, 0, 0, 2705, 2706, 5, 15, 0, 0, 2706, 2707, 3, 360, 180, 0, 2707, 2708, 5, 5, 0, 0, 2708, 2709, 3, 360, 180, 0, 2709, 2717, 1, 0, 0, 0, 2710, 2711, 5, 169, 0, 0, 2711, 2712, 5, 15, 0, 0, 2712, 2713, 3, 360, 180, 0, 2713, 2714, 5, 5, 0, 0, 2714, 2715, 3, 360, 180, 0, 2715, 2717, 1, 0, 0, 0, 2716, 2700, 1, 0, 0, 0, 2716, 2702, 1, 0, 0, 0, 2716, 2704, 1, 0, 0, 0, 2716, 2710, 1, 0, 0, 0, 2717, 359, 1, 0, 0, 0, 2718, 2719, 5, 199, 0, 0, 2719, 2728, 5, 149, 0, 0, 2720, 2721, 5, 199, 0, 0, 2721, 2728, 5, 77, 0, 0, 2722, 2723, 5, 39, 0, 0, 2723, 2728, 5, 168, 0, 0, 2724, 2725, 3, 320, 160, 0, 2725, 2726, 7, 29, 0, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2718, 1, 0, 0, 0, 2727, 2720, 1, 0, 0, 0, 2727, 2722, 1, 0, 0, 0, 2727, 2724, 1, 0, 0, 0, 2728, 361, 1, 0, 0, 0, 2729, 2730, 3, 374, 187, 0, 2730, 2731, 5, 261, 0, 0, 2731, 2732, 3, 374, 187, 0, 2732, 2735, 1, 0, 0, 0, 2733, 2735, 3, 374, 187, 0, 2734, 2729, 1, 0, 0, 0, 2734, 2733, 1, 0, 0, 0, 2735, 363, 1, 0, 0, 0, 2736, 2741, 3, 362, 181, 0, 2737, 2738, 5, 263, 0, 0, 2738, 2740, 3, 362, 181, 0, 2739, 2737, 1, 0, 0, 0, 2740, 2743, 1, 0, 0, 0, 2741, 2739, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 365, 1, 0, 0, 0, 2743, 2741, 1, 0, 0, 0, 2744, 2758, 5, 2, 0, 0, 2745, 2758, 5, 4, 0, 0, 2746, 2758, 5, 58, 0, 0, 2747, 2758, 5, 37, 0, 0, 2748, 2758, 5, 99, 0, 0, 2749, 2758, 5, 162, 0, 0, 2750, 2755, 5, 174, 0, 0, 2751, 2752, 5, 265, 0, 0, 2752, 2753, 3, 374, 187, 0, 2753, 2754, 5, 266, 0, 0, 2754, 2756, 1, 0, 0, 0, 2755, 2751, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2758, 1, 0, 0, 0, 2757, 2744, 1, 0, 0, 0, 2757, 2745, 1, 0, 0, 0, 2757, 2746, 1, 0, 0, 0, 2757, 2747, 1, 0, 0, 0, 2757, 2748, 1, 0, 0, 0, 2757, 2749, 1, 0, 0, 0, 2757, 2750, 1, 0, 0, 0, 2758, 367, 1, 0, 0, 0, 2759, 2760, 7, 30, 0, 0, 2760, 369, 1, 0, 0, 0, 2761, 2766, 3, 374, 187, 0, 2762, 2763, 5, 261, 0, 0, 2763, 2765, 3, 374, 187, 0, 2764, 2762, 1, 0, 0, 0, 2765, 2768, 1, 0, 0, 0, 2766, 2764, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 371, 1, 0, 0, 0, 2768, 2766, 1, 0, 0, 0, 2769, 2770, 5, 166, 0, 0, 2770, 2776, 3, 374, 187, 0, 2771, 2772, 5, 204, 0, 0, 2772, 2776, 3, 374, 187, 0, 2773, 2774, 5, 87, 0, 0, 2774, 2776, 3, 374, 187, 0, 2775, 2769, 1, 0, 0, 0, 2775, 2771, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2776, 373, 1, 0, 0, 0, 2777, 2783, 5, 280, 0, 0, 2778, 2783, 5, 274, 0, 0, 2779, 2783, 3, 380, 190, 0, 2780, 2783, 5, 283, 0, 0, 2781, 2783, 5, 281, 0, 0, 2782, 2777, 1, 0, 0, 0, 2782, 2778, 1, 0, 0, 0, 2782, 2779, 1, 0, 0, 0, 2782, 2780, 1, 0, 0, 0, 2782, 2781, 1, 0, 0, 0, 2783, 375, 1, 0, 0, 0, 2784, 2786, 5, 256, 0, 0, 2785, 2784, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 2797, 5, 278, 0, 0, 2788, 2790, 5, 256, 0, 0, 2789, 2788, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2797, 5, 279, 0, 0, 2792, 2794, 5, 256, 0, 0, 2793, 2792, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 5, 277, 0, 0, 2796, 2785, 1, 0, 0, 0, 2796, 2789, 1, 0, 0, 0, 2796, 2793, 1, 0, 0, 0, 2797, 377, 1, 0, 0, 0, 2798, 2799, 7, 31, 0, 0, 2799, 379, 1, 0, 0, 0, 2800, 2801, 7, 32, 0, 0, 2801, 381, 1, 0, 0, 0, 356, 385, 392, 416, 429, 433, 437, 446, 451, 455, 461, 463, 468, 472, 476, 483, 488, 494, 498, 507, 514, 518, 523, 525, 530, 533, 540, 544, 549, 553, 556, 560, 568, 572, 576, 584, 588, 597, 600, 603, 609, 616, 627, 632, 637, 642, 647, 656, 659, 662, 666, 692, 718, 727, 737, 740, 754, 772, 774, 783, 794, 803, 810, 814, 821, 827, 830, 835, 842, 856, 869, 874, 879, 885, 921, 924, 930, 933, 939, 945, 957, 959, 970, 978, 983, 987, 992, 999, 1003, 1007, 1013, 1017, 1021, 1030, 1033, 1036, 1044, 1058, 1065, 1078, 1084, 1089, 1092, 1095, 1100, 1104, 1113, 1118, 1124, 1128, 1133, 1138, 1141, 1149, 1152, 1156, 1168, 1171, 1175, 1180, 1184, 1200, 1205, 1212, 1215, 1221, 1224, 1231, 1234, 1238, 1243, 1246, 1253, 1256, 1280, 1294, 1298, 1302, 1322, 1324, 1326, 1335, 1337, 1346, 1348, 1357, 1359, 1364, 1373, 1382, 1391, 1402, 1408, 1413, 1416, 1429, 1439, 1443, 1448, 1459, 1464, 1497, 1505, 1510, 1514, 1518, 1523, 1526, 1531, 1536, 1541, 1545, 1554, 1557, 1561, 1568, 1577, 1581, 1585, 1592, 1595, 1605, 1612, 1617, 1622, 1627, 1633, 1636, 1645, 1648, 1651, 1657, 1662, 1672, 1675, 1678, 1682, 1692, 1695, 1701, 1707, 1710, 1713, 1717, 1727, 1738, 1743, 1746, 1750, 1757, 1767, 1779, 1785, 1787, 1796, 1799, 1806, 1816, 1822, 1830, 1841, 1851, 1862, 1864, 1870, 1875, 1885, 1888, 1894, 1896, 1904, 1910, 1913, 1915, 1927, 1934, 1938, 1942, 1946, 1949, 1958, 1961, 1965, 1970, 1974, 1981, 1985, 1992, 2003, 2006, 2010, 2014, 2023, 2027, 2031, 2033, 2040, 2047, 2063, 2067, 2071, 2075, 2079, 2083, 2087, 2091, 2101, 2112, 2117, 2130, 2132, 2138, 2142, 2144, 2152, 2161, 2164, 2179, 2185, 2193, 2200, 2204, 2212, 2214, 2225, 2233, 2242, 2248, 2253, 2259, 2265, 2270, 2275, 2281, 2292, 2294, 2321, 2327, 2331, 2343, 2353, 2356, 2361, 2368, 2371, 2380, 2383, 2387, 2390, 2402, 2405, 2424, 2428, 2436, 2440, 2465, 2468, 2477, 2483, 2489, 2495, 2506, 2515, 2537, 2540, 2543, 2553, 2555, 2562, 2564, 2586, 2615, 2622, 2630, 2635, 2637, 2643, 2650, 2656, 2678, 2681, 2690, 2693, 2696, 2716, 2727, 2734, 2741, 2755, 2757, 2766, 2775, 2782, 2785, 2789, 2793, 2796] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index 06c61db8f..6593c06b3 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -442,55 +442,61 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly RULE_queryPrimary = 133; public static readonly RULE_sortItem = 134; public static readonly RULE_querySpecification = 135; - public static readonly RULE_groupBy = 136; - public static readonly RULE_groupingElement = 137; - public static readonly RULE_groupingSet = 138; - public static readonly RULE_namedQuery = 139; - public static readonly RULE_setQuantifier = 140; - public static readonly RULE_selectItem = 141; - public static readonly RULE_relation = 142; - public static readonly RULE_joinType = 143; - public static readonly RULE_joinCriteria = 144; - public static readonly RULE_sampledRelation = 145; - public static readonly RULE_sampleType = 146; - public static readonly RULE_aliasedRelation = 147; - public static readonly RULE_columnAliases = 148; - public static readonly RULE_relationPrimary = 149; - public static readonly RULE_subQueryRelation = 150; - public static readonly RULE_unnest = 151; - public static readonly RULE_parenthesizedRelation = 152; - public static readonly RULE_columnItem = 153; - public static readonly RULE_expression = 154; - public static readonly RULE_booleanExpression = 155; - public static readonly RULE_predicate = 156; - public static readonly RULE_valueExpression = 157; - public static readonly RULE_primaryExpression = 158; - public static readonly RULE_stringLiteral = 159; - public static readonly RULE_comparisonOperator = 160; - public static readonly RULE_comparisonQuantifier = 161; - public static readonly RULE_booleanValue = 162; - public static readonly RULE_interval = 163; - public static readonly RULE_intervalField = 164; - public static readonly RULE_normalForm = 165; - public static readonly RULE_type = 166; - public static readonly RULE_dataType = 167; - public static readonly RULE_typeParameter = 168; - public static readonly RULE_baseType = 169; - public static readonly RULE_whenClause = 170; - public static readonly RULE_filter = 171; - public static readonly RULE_over = 172; - public static readonly RULE_windowFrame = 173; - public static readonly RULE_frameBound = 174; - public static readonly RULE_pathElement = 175; - public static readonly RULE_pathSpecification = 176; - public static readonly RULE_privilege = 177; - public static readonly RULE_objectType = 178; - public static readonly RULE_qualifiedName = 179; - public static readonly RULE_principal = 180; - public static readonly RULE_identifier = 181; - public static readonly RULE_number = 182; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 183; - public static readonly RULE_nonReserved = 184; + public static readonly RULE_selectList = 136; + public static readonly RULE_groupBy = 137; + public static readonly RULE_groupingElement = 138; + public static readonly RULE_groupingSet = 139; + public static readonly RULE_namedQuery = 140; + public static readonly RULE_setQuantifier = 141; + public static readonly RULE_selectItem = 142; + public static readonly RULE_columnAlias = 143; + public static readonly RULE_selectLiteralColumnName = 144; + public static readonly RULE_selectExpressionColumnName = 145; + public static readonly RULE_tableAllColumns = 146; + public static readonly RULE_relation = 147; + public static readonly RULE_joinType = 148; + public static readonly RULE_joinCriteria = 149; + public static readonly RULE_sampledRelation = 150; + public static readonly RULE_sampleType = 151; + public static readonly RULE_aliasedRelation = 152; + public static readonly RULE_columnAliases = 153; + public static readonly RULE_relationPrimary = 154; + public static readonly RULE_atomSubQueryTableSource = 155; + public static readonly RULE_subQueryRelation = 156; + public static readonly RULE_unnest = 157; + public static readonly RULE_parenthesizedRelation = 158; + public static readonly RULE_columnItem = 159; + public static readonly RULE_expression = 160; + public static readonly RULE_booleanExpression = 161; + public static readonly RULE_predicate = 162; + public static readonly RULE_valueExpression = 163; + public static readonly RULE_primaryExpression = 164; + public static readonly RULE_stringLiteral = 165; + public static readonly RULE_comparisonOperator = 166; + public static readonly RULE_comparisonQuantifier = 167; + public static readonly RULE_booleanValue = 168; + public static readonly RULE_interval = 169; + public static readonly RULE_intervalField = 170; + public static readonly RULE_normalForm = 171; + public static readonly RULE_type = 172; + public static readonly RULE_dataType = 173; + public static readonly RULE_typeParameter = 174; + public static readonly RULE_baseType = 175; + public static readonly RULE_whenClause = 176; + public static readonly RULE_filter = 177; + public static readonly RULE_over = 178; + public static readonly RULE_windowFrame = 179; + public static readonly RULE_frameBound = 180; + public static readonly RULE_pathElement = 181; + public static readonly RULE_pathSpecification = 182; + public static readonly RULE_privilege = 183; + public static readonly RULE_objectType = 184; + public static readonly RULE_qualifiedName = 185; + public static readonly RULE_principal = 186; + public static readonly RULE_identifier = 187; + public static readonly RULE_number = 188; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 189; + public static readonly RULE_nonReserved = 190; public static readonly literalNames = [ null, "'ADD'", "'ALL'", "'ANALYTIC'", "'ALTER'", "'AND'", "'ANY'", @@ -635,18 +641,19 @@ export class ImpalaSqlParser extends SQLParserBase { "hashClause", "rangeClause", "kuduPartitionSpec", "cacheSpec", "rangeOperator", "partitionCol", "likeClause", "properties", "partitionedBy", "sortedBy", "rowFormat", "property", "queryNoWith", "queryTerm", "queryPrimary", - "sortItem", "querySpecification", "groupBy", "groupingElement", - "groupingSet", "namedQuery", "setQuantifier", "selectItem", "relation", - "joinType", "joinCriteria", "sampledRelation", "sampleType", "aliasedRelation", - "columnAliases", "relationPrimary", "subQueryRelation", "unnest", - "parenthesizedRelation", "columnItem", "expression", "booleanExpression", - "predicate", "valueExpression", "primaryExpression", "stringLiteral", - "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", - "intervalField", "normalForm", "type", "dataType", "typeParameter", - "baseType", "whenClause", "filter", "over", "windowFrame", "frameBound", - "pathElement", "pathSpecification", "privilege", "objectType", "qualifiedName", - "principal", "identifier", "number", "reservedKeywordsUsedAsFuncName", - "nonReserved", + "sortItem", "querySpecification", "selectList", "groupBy", "groupingElement", + "groupingSet", "namedQuery", "setQuantifier", "selectItem", "columnAlias", + "selectLiteralColumnName", "selectExpressionColumnName", "tableAllColumns", + "relation", "joinType", "joinCriteria", "sampledRelation", "sampleType", + "aliasedRelation", "columnAliases", "relationPrimary", "atomSubQueryTableSource", + "subQueryRelation", "unnest", "parenthesizedRelation", "columnItem", + "expression", "booleanExpression", "predicate", "valueExpression", + "primaryExpression", "stringLiteral", "comparisonOperator", "comparisonQuantifier", + "booleanValue", "interval", "intervalField", "normalForm", "type", + "dataType", "typeParameter", "baseType", "whenClause", "filter", + "over", "windowFrame", "frameBound", "pathElement", "pathSpecification", + "privilege", "objectType", "qualifiedName", "principal", "identifier", + "number", "reservedKeywordsUsedAsFuncName", "nonReserved", ]; public get grammarFileName(): string { return "ImpalaSqlParser.g4"; } @@ -670,21 +677,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 373; + this.state = 385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4 || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 22085645) !== 0) || _la === 67 || _la === 86 || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 524545) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 134520835) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 1083521) !== 0) || _la === 264 || _la === 265) { { { - this.state = 370; + this.state = 382; this.singleStatement(); } } - this.state = 375; + this.state = 387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 376; + this.state = 388; this.match(ImpalaSqlParser.EOF); } } @@ -709,14 +716,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 378; + this.state = 390; this.sqlStatement(); - this.state = 380; + this.state = 392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 379; + this.state = 391; this.match(ImpalaSqlParser.SEMICOLON); } } @@ -741,160 +748,160 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, ImpalaSqlParser.RULE_sqlStatement); try { - this.state = 404; + this.state = 416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 382; + this.state = 394; this.queryStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 383; + this.state = 395; this.useStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 384; + this.state = 396; this.createStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 385; + this.state = 397; this.alterStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 386; + this.state = 398; this.truncateTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 387; + this.state = 399; this.describeStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 388; + this.state = 400; this.computeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 389; + this.state = 401; this.dropStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 390; + this.state = 402; this.grantStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 391; + this.state = 403; this.revokeStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 392; + this.state = 404; this.insertStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 393; + this.state = 405; this.deleteStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 394; + this.state = 406; this.updateStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 395; + this.state = 407; this.upsertStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 396; + this.state = 408; this.showStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 397; + this.state = 409; this.addCommentStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 398; + this.state = 410; this.explainStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 399; + this.state = 411; this.setStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 400; + this.state = 412; this.shutdownStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 401; + this.state = 413; this.invalidateMetaStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 402; + this.state = 414; this.loadDataStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 403; + this.state = 415; this.refreshStatement(); } break; @@ -920,9 +927,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 406; + this.state = 418; this.match(ImpalaSqlParser.KW_USE); - this.state = 407; + this.state = 419; this.databaseNamePath(); } } @@ -944,62 +951,62 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CreateStatementContext(this.context, this.state); this.enterRule(localContext, 8, ImpalaSqlParser.RULE_createStatement); try { - this.state = 417; + this.state = 429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 409; + this.state = 421; this.createSchema(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 410; + this.state = 422; this.createRole(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 411; + this.state = 423; this.createAggregateFunction(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 412; + this.state = 424; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 413; + this.state = 425; this.createView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 414; + this.state = 426; this.createKuduTableAsSelect(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 415; + this.state = 427; this.createTableLike(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 416; + this.state = 428; this.createTableSelect(); } break; @@ -1027,97 +1034,97 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 419; + this.state = 431; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 421; + this.state = 433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 420; + this.state = 432; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 423; + this.state = 435; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 425; + this.state = 437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 424; + this.state = 436; this.ifNotExists(); } } - this.state = 427; + this.state = 439; this.tableNameCreate(); - this.state = 443; + this.state = 455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 428; + this.state = 440; this.match(ImpalaSqlParser.LPAREN); - this.state = 429; + this.state = 441; this.columnDefinition(); - this.state = 434; + this.state = 446; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 430; + this.state = 442; this.match(ImpalaSqlParser.COMMA); - this.state = 431; + this.state = 443; this.columnDefinition(); } } } - this.state = 436; + this.state = 448; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } - this.state = 439; + this.state = 451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 437; + this.state = 449; this.match(ImpalaSqlParser.COMMA); - this.state = 438; + this.state = 450; this.constraintSpecification(); } } - this.state = 441; + this.state = 453; this.match(ImpalaSqlParser.RPAREN); } break; } - this.state = 451; + this.state = 463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 445; + this.state = 457; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 446; + this.state = 458; this.match(ImpalaSqlParser.KW_BY); - this.state = 449; + this.state = 461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 447; + this.state = 459; this.columnAliases(); } break; case 2: { - this.state = 448; + this.state = 460; this.partitionedBy(); } break; @@ -1125,16 +1132,16 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 453; + this.state = 465; this.createCommonItem(); - this.state = 456; + this.state = 468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 454; + this.state = 466; this.match(ImpalaSqlParser.KW_AS); - this.state = 455; + this.state = 467; this.queryStatement(); } } @@ -1162,35 +1169,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 458; + this.state = 470; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 460; + this.state = 472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 459; + this.state = 471; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 462; + this.state = 474; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 464; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 463; + this.state = 475; this.ifNotExists(); } } - this.state = 466; + this.state = 478; this.tableNameCreate(); - this.state = 467; + this.state = 479; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 471; + this.state = 483; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BERNOULLI: @@ -1232,36 +1239,36 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 468; + this.state = 480; this.tableNamePath(); } break; case ImpalaSqlParser.KW_PARQUET: { - this.state = 469; + this.state = 481; this.match(ImpalaSqlParser.KW_PARQUET); - this.state = 470; + this.state = 482; localContext._parquet = this.stringLiteral(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 476; + this.state = 488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 473; + this.state = 485; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 474; + this.state = 486; this.match(ImpalaSqlParser.KW_BY); - this.state = 475; + this.state = 487; this.partitionedBy(); } } - this.state = 478; + this.state = 490; this.createCommonItem(); } } @@ -1287,95 +1294,95 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 480; + this.state = 492; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 482; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 481; + this.state = 493; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 484; + this.state = 496; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 486; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 485; + this.state = 497; this.ifNotExists(); } } - this.state = 488; + this.state = 500; this.tableNameCreate(); - this.state = 506; + this.state = 518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 489; + this.state = 501; this.match(ImpalaSqlParser.LPAREN); - this.state = 490; + this.state = 502; this.kuduTableElement(); - this.state = 495; + this.state = 507; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 491; + this.state = 503; this.match(ImpalaSqlParser.COMMA); - this.state = 492; + this.state = 504; this.kuduTableElement(); } } } - this.state = 497; + this.state = 509; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } - this.state = 502; + this.state = 514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 498; + this.state = 510; this.match(ImpalaSqlParser.COMMA); - this.state = 499; + this.state = 511; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 500; + this.state = 512; this.match(ImpalaSqlParser.KW_KEY); - this.state = 501; + this.state = 513; this.columnAliases(); } } - this.state = 504; + this.state = 516; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 513; + this.state = 525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 508; + this.state = 520; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 509; + this.state = 521; this.match(ImpalaSqlParser.KW_KEY); - this.state = 511; + this.state = 523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 510; + this.state = 522; this.columnAliases(); } } @@ -1383,56 +1390,56 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 518; + this.state = 530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 515; + this.state = 527; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 516; + this.state = 528; this.match(ImpalaSqlParser.KW_BY); - this.state = 517; + this.state = 529; this.kuduPartitionClause(); } } - this.state = 521; + this.state = 533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 520; + this.state = 532; this.commentClause(); } } - this.state = 523; + this.state = 535; this.match(ImpalaSqlParser.KW_STORED); - this.state = 524; + this.state = 536; this.match(ImpalaSqlParser.KW_AS); - this.state = 525; + this.state = 537; this.match(ImpalaSqlParser.KW_KUDU); - this.state = 528; + this.state = 540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 526; + this.state = 538; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 527; + this.state = 539; localContext._tblProp = this.properties(); } } - this.state = 532; + this.state = 544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 530; + this.state = 542; this.match(ImpalaSqlParser.KW_AS); - this.state = 531; + this.state = 543; this.queryStatement(); } } @@ -1460,57 +1467,57 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 534; + this.state = 546; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 535; + this.state = 547; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 537; + this.state = 549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 536; + this.state = 548; this.ifNotExists(); } } - this.state = 539; + this.state = 551; this.viewNameCreate(); - this.state = 541; + this.state = 553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 540; + this.state = 552; this.viewColumns(); } } - this.state = 544; + this.state = 556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 543; + this.state = 555; this.commentClause(); } } - this.state = 548; + this.state = 560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 546; + this.state = 558; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 547; + this.state = 559; localContext._tblProp = this.properties(); } } - this.state = 550; + this.state = 562; this.match(ImpalaSqlParser.KW_AS); - this.state = 551; + this.state = 563; this.queryStatement(); } } @@ -1535,9 +1542,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 553; + this.state = 565; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 554; + this.state = 566; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1546,36 +1553,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 556; + this.state = 568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 555; + this.state = 567; this.ifNotExists(); } } - this.state = 558; + this.state = 570; this.databaseNameCreate(); - this.state = 560; + this.state = 572; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 559; + this.state = 571; this.commentClause(); } break; } - this.state = 564; + this.state = 576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 562; + this.state = 574; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 563; + this.state = 575; localContext._location = this.stringLiteral(); } } @@ -1602,11 +1609,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 566; + this.state = 578; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 567; + this.state = 579; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 568; + this.state = 580; localContext._name = this.identifier(); } } @@ -1631,168 +1638,168 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 570; + this.state = 582; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 572; + this.state = 584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 571; + this.state = 583; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 574; + this.state = 586; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 576; + this.state = 588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 575; + this.state = 587; this.ifNotExists(); } } - this.state = 578; + this.state = 590; this.functionNameCreate(); - this.state = 591; + this.state = 603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 579; + this.state = 591; this.match(ImpalaSqlParser.LPAREN); - this.state = 588; + this.state = 600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 580; + this.state = 592; this.type_(0); - this.state = 585; + this.state = 597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 581; + this.state = 593; this.match(ImpalaSqlParser.COMMA); - this.state = 582; + this.state = 594; this.type_(0); } } - this.state = 587; + this.state = 599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 590; + this.state = 602; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 593; + this.state = 605; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 594; + this.state = 606; localContext._returnType = this.type_(0); - this.state = 597; + this.state = 609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 595; + this.state = 607; this.match(ImpalaSqlParser.KW_INTERMEDIATE); - this.state = 596; + this.state = 608; this.type_(0); } } - this.state = 599; + this.state = 611; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 600; + this.state = 612; this.match(ImpalaSqlParser.STRING); - this.state = 604; + this.state = 616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 601; + this.state = 613; this.match(ImpalaSqlParser.KW_INIT_FN); - this.state = 602; + this.state = 614; this.match(ImpalaSqlParser.EQ); - this.state = 603; + this.state = 615; this.match(ImpalaSqlParser.STRING); } } - this.state = 606; + this.state = 618; this.match(ImpalaSqlParser.KW_UPDATE_FN); - this.state = 607; + this.state = 619; this.match(ImpalaSqlParser.EQ); - this.state = 608; + this.state = 620; this.match(ImpalaSqlParser.STRING); - this.state = 609; + this.state = 621; this.match(ImpalaSqlParser.KW_MERGE_FN); - this.state = 610; + this.state = 622; this.match(ImpalaSqlParser.EQ); - this.state = 611; + this.state = 623; this.match(ImpalaSqlParser.STRING); - this.state = 615; + this.state = 627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 612; + this.state = 624; this.match(ImpalaSqlParser.KW_PREPARE_FN); - this.state = 613; + this.state = 625; this.match(ImpalaSqlParser.EQ); - this.state = 614; + this.state = 626; this.match(ImpalaSqlParser.STRING); } } - this.state = 620; + this.state = 632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 617; + this.state = 629; this.match(ImpalaSqlParser.KW_CLOSEFN); - this.state = 618; + this.state = 630; this.match(ImpalaSqlParser.EQ); - this.state = 619; + this.state = 631; this.match(ImpalaSqlParser.STRING); } } - this.state = 625; + this.state = 637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 187) { { - this.state = 622; + this.state = 634; this.match(ImpalaSqlParser.KW_SERIALIZE_FN); - this.state = 623; + this.state = 635; this.match(ImpalaSqlParser.EQ); - this.state = 624; + this.state = 636; this.match(ImpalaSqlParser.STRING); } } - this.state = 630; + this.state = 642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 76) { { - this.state = 627; + this.state = 639; this.match(ImpalaSqlParser.KW_FINALIZE_FN); - this.state = 628; + this.state = 640; this.match(ImpalaSqlParser.EQ); - this.state = 629; + this.state = 641; this.match(ImpalaSqlParser.STRING); } } @@ -1820,81 +1827,81 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 632; + this.state = 644; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 633; + this.state = 645; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 635; + this.state = 647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 634; + this.state = 646; this.ifNotExists(); } } - this.state = 637; + this.state = 649; this.functionNameCreate(); - this.state = 650; + this.state = 662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 638; + this.state = 650; this.match(ImpalaSqlParser.LPAREN); - this.state = 647; + this.state = 659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 639; + this.state = 651; this.type_(0); - this.state = 644; + this.state = 656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 640; + this.state = 652; this.match(ImpalaSqlParser.COMMA); - this.state = 641; + this.state = 653; this.type_(0); } } - this.state = 646; + this.state = 658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 649; + this.state = 661; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 654; + this.state = 666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 652; + this.state = 664; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 653; + this.state = 665; localContext._returnType = this.type_(0); } } - this.state = 656; + this.state = 668; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 657; + this.state = 669; this.match(ImpalaSqlParser.STRING); - this.state = 658; + this.state = 670; this.match(ImpalaSqlParser.KW_SYMBOL); - this.state = 659; + this.state = 671; this.match(ImpalaSqlParser.EQ); - this.state = 660; + this.state = 672; localContext._symbol_ = this.stringLiteral(); } } @@ -1916,132 +1923,132 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AlterStatementContext(this.context, this.state); this.enterRule(localContext, 26, ImpalaSqlParser.RULE_alterStatement); try { - this.state = 680; + this.state = 692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 662; + this.state = 674; this.alterDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 663; + this.state = 675; this.alterUnSetOrSetViewTblproperties(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 664; + this.state = 676; this.renameTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 665; + this.state = 677; this.alterViewOwner(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 666; + this.state = 678; this.alterView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 667; + this.state = 679; this.renameView(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 668; + this.state = 680; this.dropPartitionByRangeOrValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 669; + this.state = 681; this.alterFormat(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 670; + this.state = 682; this.recoverPartitions(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 671; + this.state = 683; this.addPartitionByRangeOrValue(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 672; + this.state = 684; this.alterTableNonKuduOrKuduOnly(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 673; + this.state = 685; this.addSingleColumn(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 674; + this.state = 686; this.replaceOrAddColumns(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 675; + this.state = 687; this.changeColumnDefine(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 676; + this.state = 688; this.alterStatsKey(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 677; + this.state = 689; this.alterPartitionCache(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 678; + this.state = 690; this.alterDropSingleColumn(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 679; + this.state = 691; this.alterTableOwner(); } break; @@ -2068,17 +2075,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 682; + this.state = 694; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 683; + this.state = 695; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 684; + this.state = 696; this.databaseNamePath(); - this.state = 685; + this.state = 697; this.match(ImpalaSqlParser.KW_SET); - this.state = 686; + this.state = 698; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 687; + this.state = 699; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2087,7 +2094,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 688; + this.state = 700; this.identifier(); } } @@ -2112,45 +2119,45 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 690; + this.state = 702; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 691; + this.state = 703; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 692; + this.state = 704; this.tableNamePath(); - this.state = 693; + this.state = 705; this.match(ImpalaSqlParser.KW_SET); - this.state = 694; + this.state = 706; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 695; + this.state = 707; this.match(ImpalaSqlParser.KW_STATS); - this.state = 696; + this.state = 708; this.columnNamePath(); - this.state = 697; + this.state = 709; this.match(ImpalaSqlParser.LPAREN); - this.state = 698; + this.state = 710; this.statsKey(); - this.state = 699; + this.state = 711; this.match(ImpalaSqlParser.EQ); - this.state = 700; + this.state = 712; this.stringLiteral(); - this.state = 706; + this.state = 718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 701; + this.state = 713; this.match(ImpalaSqlParser.COMMA); - this.state = 702; + this.state = 714; this.statsKey(); - this.state = 703; + this.state = 715; this.match(ImpalaSqlParser.EQ); - this.state = 704; + this.state = 716; this.stringLiteral(); } } - this.state = 708; + this.state = 720; this.match(ImpalaSqlParser.RPAREN); } } @@ -2175,50 +2182,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 710; + this.state = 722; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 711; + this.state = 723; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 712; + this.state = 724; this.tableNamePath(); - this.state = 715; + this.state = 727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 713; + this.state = 725; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 714; + this.state = 726; this.expression(); } } - this.state = 717; + this.state = 729; this.match(ImpalaSqlParser.KW_SET); - this.state = 728; + this.state = 740; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { { - this.state = 718; + this.state = 730; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 719; + this.state = 731; this.match(ImpalaSqlParser.KW_IN); - this.state = 720; + this.state = 732; this.stringLiteral(); - this.state = 725; + this.state = 737; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 721; + this.state = 733; this.match(ImpalaSqlParser.KW_WITH); - this.state = 722; + this.state = 734; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 723; + this.state = 735; this.match(ImpalaSqlParser.EQ); - this.state = 724; + this.state = 736; this.number_(); } break; @@ -2228,7 +2235,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 727; + this.state = 739; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -2257,17 +2264,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 730; + this.state = 742; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 731; + this.state = 743; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 732; + this.state = 744; this.tableNamePath(); - this.state = 733; + this.state = 745; this.match(ImpalaSqlParser.KW_CHANGE); - this.state = 734; + this.state = 746; this.columnNamePath(); - this.state = 735; + this.state = 747; this.columnSpecWithKudu(); } } @@ -2291,25 +2298,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 737; + this.state = 749; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 738; + this.state = 750; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 739; + this.state = 751; this.tableNamePath(); - this.state = 740; + this.state = 752; this.match(ImpalaSqlParser.KW_DROP); - this.state = 742; + this.state = 754; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 741; + this.state = 753; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 744; + this.state = 756; this.columnNamePath(); } } @@ -2334,17 +2341,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 746; + this.state = 758; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 747; + this.state = 759; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 748; + this.state = 760; this.tableNamePath(); - this.state = 749; + this.state = 761; this.match(ImpalaSqlParser.KW_SET); - this.state = 750; + this.state = 762; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 751; + this.state = 763; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2353,7 +2360,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 752; + this.state = 764; this.identifier(); } } @@ -2379,31 +2386,31 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 754; + this.state = 766; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 755; + this.state = 767; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 756; + this.state = 768; this.tableNamePath(); - this.state = 762; + this.state = 774; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_REPLACE: { - this.state = 757; + this.state = 769; this.match(ImpalaSqlParser.KW_REPLACE); } break; case ImpalaSqlParser.KW_ADD: { - this.state = 758; + this.state = 770; this.match(ImpalaSqlParser.KW_ADD); - this.state = 760; + this.state = 772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 759; + this.state = 771; this.ifNotExists(); } } @@ -2413,31 +2420,31 @@ export class ImpalaSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 764; + this.state = 776; this.match(ImpalaSqlParser.KW_COLUMNS); - this.state = 765; + this.state = 777; this.match(ImpalaSqlParser.LPAREN); - this.state = 766; + this.state = 778; this.columnSpecWithKudu(); - this.state = 771; + this.state = 783; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 767; + this.state = 779; this.match(ImpalaSqlParser.COMMA); - this.state = 768; + this.state = 780; this.columnSpecWithKudu(); } } } - this.state = 773; + this.state = 785; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); } - this.state = 774; + this.state = 786; this.match(ImpalaSqlParser.RPAREN); } } @@ -2462,27 +2469,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 776; + this.state = 788; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 777; + this.state = 789; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 778; + this.state = 790; this.tableNamePath(); - this.state = 779; + this.state = 791; this.match(ImpalaSqlParser.KW_ADD); - this.state = 780; + this.state = 792; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 782; + this.state = 794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 781; + this.state = 793; this.ifNotExists(); } } - this.state = 784; + this.state = 796; this.createColumnSpecWithKudu(); } } @@ -2506,34 +2513,34 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 786; + this.state = 798; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 787; + this.state = 799; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 788; + this.state = 800; this.tableNamePath(); - this.state = 789; + this.state = 801; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 791; + this.state = 803; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 790; + this.state = 802; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 793; + this.state = 805; this.columnNamePath(); - this.state = 802; + this.state = 814; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SET: { - this.state = 794; + this.state = 806; this.match(ImpalaSqlParser.KW_SET); - this.state = 798; + this.state = 810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BLOCK_SIZE: @@ -2541,15 +2548,15 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 795; + this.state = 807; this.kuduStorageAttr(); } break; case ImpalaSqlParser.KW_COMMENT: { - this.state = 796; + this.state = 808; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 797; + this.state = 809; this.stringLiteral(); } break; @@ -2560,9 +2567,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_DROP: { - this.state = 800; + this.state = 812; this.match(ImpalaSqlParser.KW_DROP); - this.state = 801; + this.state = 813; this.match(ImpalaSqlParser.KW_DEFAULT); } break; @@ -2592,51 +2599,51 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 804; + this.state = 816; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 805; + this.state = 817; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 806; + this.state = 818; this.tableNamePath(); - this.state = 807; + this.state = 819; this.match(ImpalaSqlParser.KW_ADD); - this.state = 809; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 808; + this.state = 820; this.ifNotExists(); } } - this.state = 823; + this.state = 835; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 811; + this.state = 823; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 812; + this.state = 824; this.expression(); - this.state = 815; + this.state = 827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 813; + this.state = 825; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 814; + this.state = 826; this.stringLiteral(); } } - this.state = 818; + this.state = 830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 197) { { - this.state = 817; + this.state = 829; this.cacheSpec(); } } @@ -2645,11 +2652,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 820; + this.state = 832; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 821; + this.state = 833; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 822; + this.state = 834; this.kuduPartitionSpec(); } break; @@ -2679,35 +2686,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 825; + this.state = 837; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 826; + this.state = 838; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 827; + this.state = 839; this.tableNamePath(); - this.state = 830; + this.state = 842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 828; + this.state = 840; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 829; + this.state = 841; this.expression(); } } - this.state = 832; - this.match(ImpalaSqlParser.KW_SET); this.state = 844; + this.match(ImpalaSqlParser.KW_SET); + this.state = 856; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_FILEFORMAT: { { - this.state = 833; + this.state = 845; this.match(ImpalaSqlParser.KW_FILEFORMAT); - this.state = 834; + this.state = 846; this.fileFormat(); } } @@ -2715,11 +2722,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_ROW: { { - this.state = 835; + this.state = 847; this.match(ImpalaSqlParser.KW_ROW); - this.state = 836; + this.state = 848; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 837; + this.state = 849; this.rowFormat(); } } @@ -2727,9 +2734,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LOCATION: { { - this.state = 838; + this.state = 850; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 839; + this.state = 851; this.stringLiteral(); } } @@ -2737,9 +2744,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_TBLPROPERTIES: { { - this.state = 840; + this.state = 852; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 841; + this.state = 853; localContext._tblProp = this.properties(); } } @@ -2747,9 +2754,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_SERDEPROPERTIES: { { - this.state = 842; + this.state = 854; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 843; + this.state = 855; localContext._tblProp = this.properties(); } } @@ -2779,15 +2786,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 846; + this.state = 858; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 847; + this.state = 859; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 848; + this.state = 860; this.tableNamePath(); - this.state = 849; + this.state = 861; this.match(ImpalaSqlParser.KW_RECOVER); - this.state = 850; + this.state = 862; this.match(ImpalaSqlParser.KW_PARTITIONS); } } @@ -2812,39 +2819,39 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 852; + this.state = 864; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 853; + this.state = 865; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 854; + this.state = 866; this.tableNamePath(); - this.state = 855; + this.state = 867; this.match(ImpalaSqlParser.KW_DROP); - this.state = 857; + this.state = 869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 856; + this.state = 868; this.ifExists(); } } - this.state = 867; + this.state = 879; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 859; + this.state = 871; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 860; + this.state = 872; this.expression(); - this.state = 862; + this.state = 874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 861; + this.state = 873; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -2853,11 +2860,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 864; + this.state = 876; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 865; + this.state = 877; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 866; + this.state = 878; this.kuduPartitionSpec(); } break; @@ -2887,25 +2894,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 869; + this.state = 881; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 870; + this.state = 882; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 871; + this.state = 883; this.viewNamePath(); - this.state = 873; + this.state = 885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 872; + this.state = 884; this.viewColumns(); } } - this.state = 875; + this.state = 887; this.match(ImpalaSqlParser.KW_AS); - this.state = 876; + this.state = 888; this.queryStatement(); } } @@ -2929,17 +2936,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 878; + this.state = 890; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 879; + this.state = 891; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 880; + this.state = 892; this.viewNamePath(); - this.state = 881; + this.state = 893; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 882; + this.state = 894; this.match(ImpalaSqlParser.KW_TO); - this.state = 883; + this.state = 895; this.viewNamePath(); } } @@ -2964,17 +2971,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 885; + this.state = 897; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 886; + this.state = 898; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 887; + this.state = 899; this.viewNamePath(); - this.state = 888; + this.state = 900; this.match(ImpalaSqlParser.KW_SET); - this.state = 889; + this.state = 901; this.match(ImpalaSqlParser.KW_OWNER); - this.state = 890; + this.state = 902; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -2983,7 +2990,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 891; + this.state = 903; this.qualifiedName(); } } @@ -3007,17 +3014,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 893; + this.state = 905; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 894; + this.state = 906; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 895; + this.state = 907; this.tableNamePath(); - this.state = 896; + this.state = 908; this.match(ImpalaSqlParser.KW_RENAME); - this.state = 897; + this.state = 909; this.match(ImpalaSqlParser.KW_TO); - this.state = 898; + this.state = 910; this.tableNamePath(); } } @@ -3042,13 +3049,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 900; + this.state = 912; this.match(ImpalaSqlParser.KW_ALTER); - this.state = 901; + this.state = 913; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 902; + this.state = 914; this.viewNamePath(); - this.state = 903; + this.state = 915; _la = this.tokenStream.LA(1); if(!(_la === 176 || _la === 202)) { this.errorHandler.recoverInline(this); @@ -3057,9 +3064,9 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 904; + this.state = 916; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 905; + this.state = 917; localContext._tblProp = this.properties(); } } @@ -3084,29 +3091,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 907; + this.state = 919; this.match(ImpalaSqlParser.KW_TRUNCATE); - this.state = 909; + this.state = 921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 908; + this.state = 920; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 912; + this.state = 924; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 911; + this.state = 923; this.ifExists(); } } - this.state = 914; + this.state = 926; this.tableNamePath(); } } @@ -3131,24 +3138,24 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 916; + this.state = 928; this.match(ImpalaSqlParser.KW_DESCRIBE); - this.state = 918; + this.state = 930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 917; + this.state = 929; this.match(ImpalaSqlParser.KW_DATABASE); } } - this.state = 921; + this.state = 933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 80) { { - this.state = 920; + this.state = 932; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -3160,7 +3167,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 923; + this.state = 935; this.qualifiedName(); } } @@ -3182,20 +3189,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ComputeStatementContext(this.context, this.state); this.enterRule(localContext, 68, ImpalaSqlParser.RULE_computeStatement); try { - this.state = 927; + this.state = 939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 937; this.computeStats(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 926; + this.state = 938; this.computeIncrementalStats(); } break; @@ -3222,49 +3229,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 929; + this.state = 941; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 930; + this.state = 942; this.match(ImpalaSqlParser.KW_STATS); - this.state = 931; + this.state = 943; this.tableNamePath(); - this.state = 933; + this.state = 945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 932; + this.state = 944; this.columnAliases(); } break; } - this.state = 947; + this.state = 959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 935; + this.state = 947; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 936; + this.state = 948; this.match(ImpalaSqlParser.KW_SYSTEM); - this.state = 937; + this.state = 949; this.match(ImpalaSqlParser.LPAREN); - this.state = 938; + this.state = 950; this.number_(); - this.state = 939; + this.state = 951; this.match(ImpalaSqlParser.RPAREN); - this.state = 945; + this.state = 957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 157) { { - this.state = 940; + this.state = 952; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 941; + this.state = 953; this.match(ImpalaSqlParser.LPAREN); - this.state = 942; + this.state = 954; this.number_(); - this.state = 943; + this.state = 955; this.match(ImpalaSqlParser.RPAREN); } } @@ -3295,26 +3302,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 949; + this.state = 961; this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 950; + this.state = 962; this.match(ImpalaSqlParser.KW_INCREMENTAL); - this.state = 951; + this.state = 963; this.match(ImpalaSqlParser.KW_STATS); - this.state = 952; + this.state = 964; this.tableNamePath(); - this.state = 958; + this.state = 970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 953; + this.state = 965; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 954; + this.state = 966; this.match(ImpalaSqlParser.LPAREN); - this.state = 955; + this.state = 967; this.expression(); - this.state = 956; + this.state = 968; this.match(ImpalaSqlParser.RPAREN); } } @@ -3339,48 +3346,48 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DropStatementContext(this.context, this.state); this.enterRule(localContext, 74, ImpalaSqlParser.RULE_dropStatement); try { - this.state = 966; + this.state = 978; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 960; + this.state = 972; this.dropRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 961; + this.state = 973; this.dropFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 962; + this.state = 974; this.dropIncrementalStats(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 963; + this.state = 975; this.dropView(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 964; + this.state = 976; this.dropTable(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 965; + this.state = 977; this.dropSchema(); } break; @@ -3407,9 +3414,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 968; + this.state = 980; this.match(ImpalaSqlParser.KW_DROP); - this.state = 969; + this.state = 981; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -3418,24 +3425,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 971; + this.state = 983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 970; + this.state = 982; this.ifExists(); } } - this.state = 973; + this.state = 985; this.databaseNamePath(); - this.state = 975; + this.state = 987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27 || _la === 159) { { - this.state = 974; + this.state = 986; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 159)) { this.errorHandler.recoverInline(this); @@ -3470,21 +3477,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 977; + this.state = 989; this.match(ImpalaSqlParser.KW_DROP); - this.state = 978; + this.state = 990; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 980; + this.state = 992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 979; + this.state = 991; this.ifExists(); } } - this.state = 982; + this.state = 994; this.viewNamePath(); } } @@ -3509,28 +3516,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 984; + this.state = 996; this.match(ImpalaSqlParser.KW_DROP); - this.state = 985; + this.state = 997; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 987; + this.state = 999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 986; + this.state = 998; this.ifExists(); } } - this.state = 989; + this.state = 1001; this.tableNamePath(); - this.state = 991; + this.state = 1003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 990; + this.state = 1002; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -3558,30 +3565,30 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 993; + this.state = 1005; this.match(ImpalaSqlParser.KW_DROP); - this.state = 995; + this.state = 1007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 96) { { - this.state = 994; + this.state = 1006; this.match(ImpalaSqlParser.KW_INCREMENTAL); } } - this.state = 997; + this.state = 1009; this.match(ImpalaSqlParser.KW_STATS); - this.state = 998; + this.state = 1010; this.tableNamePath(); - this.state = 1001; + this.state = 1013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 999; + this.state = 1011; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1000; + this.state = 1012; this.expression(); } } @@ -3609,66 +3616,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1003; + this.state = 1015; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1005; + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 1004; + this.state = 1016; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 1007; + this.state = 1019; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 1009; + this.state = 1021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1008; + this.state = 1020; this.ifExists(); } } - this.state = 1011; + this.state = 1023; this.functionNamePath(); - this.state = 1024; + this.state = 1036; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1012; + this.state = 1024; this.match(ImpalaSqlParser.LPAREN); - this.state = 1021; + this.state = 1033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 1013; + this.state = 1025; this.type_(0); - this.state = 1018; + this.state = 1030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1014; + this.state = 1026; this.match(ImpalaSqlParser.COMMA); - this.state = 1015; + this.state = 1027; this.type_(0); } } - this.state = 1020; + this.state = 1032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1023; + this.state = 1035; this.match(ImpalaSqlParser.RPAREN); } break; @@ -3695,11 +3702,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1026; + this.state = 1038; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1027; + this.state = 1039; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1028; + this.state = 1040; localContext._name = this.identifier(); } } @@ -3721,20 +3728,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new GrantStatementContext(this.context, this.state); this.enterRule(localContext, 88, ImpalaSqlParser.RULE_grantStatement); try { - this.state = 1032; + this.state = 1044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1030; + this.state = 1042; this.grantRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1031; + this.state = 1043; this.grant(); } break; @@ -3760,17 +3767,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1034; + this.state = 1046; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1035; + this.state = 1047; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1036; + this.state = 1048; this.identifier(); - this.state = 1037; + this.state = 1049; this.match(ImpalaSqlParser.KW_TO); - this.state = 1038; + this.state = 1050; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1039; + this.state = 1051; this.identifier(); } } @@ -3795,27 +3802,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1041; + this.state = 1053; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1042; + this.state = 1054; this.privilege(); - this.state = 1043; + this.state = 1055; this.match(ImpalaSqlParser.KW_ON); - this.state = 1044; + this.state = 1056; this.objectType(); - this.state = 1046; + this.state = 1058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1045; + this.state = 1057; this.qualifiedName(); } } - this.state = 1048; + this.state = 1060; this.match(ImpalaSqlParser.KW_TO); - this.state = 1049; + this.state = 1061; localContext._grantee = this.principal(); } } @@ -3837,20 +3844,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RevokeStatementContext(this.context, this.state); this.enterRule(localContext, 94, ImpalaSqlParser.RULE_revokeStatement); try { - this.state = 1053; + this.state = 1065; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1051; + this.state = 1063; this.revokeRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1052; + this.state = 1064; this.revoke(); } break; @@ -3876,17 +3883,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1055; + this.state = 1067; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1056; + this.state = 1068; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1057; + this.state = 1069; this.identifier(); - this.state = 1058; + this.state = 1070; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1059; + this.state = 1071; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1060; + this.state = 1072; this.identifier(); } } @@ -3911,62 +3918,62 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1062; + this.state = 1074; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1066; + this.state = 1078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86) { { - this.state = 1063; + this.state = 1075; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1064; + this.state = 1076; this.match(ImpalaSqlParser.KW_OPTION); - this.state = 1065; + this.state = 1077; this.match(ImpalaSqlParser.KW_FOR); } } - this.state = 1068; + this.state = 1080; this.privilege(); - this.state = 1069; + this.state = 1081; this.match(ImpalaSqlParser.KW_ON); - this.state = 1070; + this.state = 1082; this.objectType(); - this.state = 1072; + this.state = 1084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1071; + this.state = 1083; this.qualifiedName(); } } - this.state = 1074; + this.state = 1086; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1080; + this.state = 1092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1075; + this.state = 1087; localContext._grantee = this.principal(); } break; case 2: { - this.state = 1077; + this.state = 1089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 1076; + this.state = 1088; this.match(ImpalaSqlParser.KW_ROLE); } } - this.state = 1079; + this.state = 1091; this.identifier(); } break; @@ -3994,19 +4001,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1083; + this.state = 1095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1082; + this.state = 1094; this.with_(); } } - this.state = 1085; + this.state = 1097; this.match(ImpalaSqlParser.KW_INSERT); - this.state = 1086; + this.state = 1098; _la = this.tokenStream.LA(1); if(!(_la === 103 || _la === 144)) { this.errorHandler.recoverInline(this); @@ -4015,61 +4022,61 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1087; + this.state = 1099; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1090; + this.state = 1102; this.tableNamePath(); - this.state = 1092; + this.state = 1104; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1091; + this.state = 1103; this.columnAliases(); } break; } - this.state = 1106; + this.state = 1118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1094; + this.state = 1106; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1095; + this.state = 1107; this.match(ImpalaSqlParser.LPAREN); - this.state = 1096; + this.state = 1108; this.expression(); - this.state = 1101; + this.state = 1113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1097; + this.state = 1109; this.match(ImpalaSqlParser.COMMA); - this.state = 1098; + this.state = 1110; this.expression(); } } - this.state = 1103; + this.state = 1115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1104; + this.state = 1116; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 1108; + this.state = 1120; this.queryStatement(); } } @@ -4091,20 +4098,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 102, ImpalaSqlParser.RULE_deleteStatement); try { - this.state = 1112; + this.state = 1124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1110; + this.state = 1122; this.delete_(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1111; + this.state = 1123; this.deleteTableRef(); } break; @@ -4131,28 +4138,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1114; + this.state = 1126; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1116; + this.state = 1128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1115; + this.state = 1127; this.match(ImpalaSqlParser.KW_FROM); } } - this.state = 1118; + this.state = 1130; this.tableNamePath(); - this.state = 1121; + this.state = 1133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1119; + this.state = 1131; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1120; + this.state = 1132; this.booleanExpression(0); } } @@ -4180,66 +4187,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1123; + this.state = 1135; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1124; + this.state = 1136; this.tableNamePath(); - this.state = 1129; + this.state = 1141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1126; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 1125; + this.state = 1137; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 1128; + this.state = 1140; this.identifier(); } } - this.state = 1131; + this.state = 1143; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1140; + this.state = 1152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1132; + this.state = 1144; this.relation(0); - this.state = 1137; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1133; + this.state = 1145; this.match(ImpalaSqlParser.COMMA); - this.state = 1134; + this.state = 1146; this.relation(0); } } - this.state = 1139; + this.state = 1151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1144; + this.state = 1156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1142; + this.state = 1154; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1143; + this.state = 1155; this.booleanExpression(0); } } @@ -4267,50 +4274,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1146; + this.state = 1158; this.match(ImpalaSqlParser.KW_UPDATE); - this.state = 1147; + this.state = 1159; this.tableNamePath(); - this.state = 1148; + this.state = 1160; this.match(ImpalaSqlParser.KW_SET); - this.state = 1149; + this.state = 1161; this.assignmentList(); - this.state = 1159; + this.state = 1171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1150; + this.state = 1162; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1151; + this.state = 1163; this.relation(0); - this.state = 1156; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1152; + this.state = 1164; this.match(ImpalaSqlParser.COMMA); - this.state = 1153; + this.state = 1165; this.relation(0); } } - this.state = 1158; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1163; + this.state = 1175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215) { { - this.state = 1161; + this.state = 1173; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1162; + this.state = 1174; this.booleanExpression(0); } } @@ -4338,33 +4345,33 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1165; + this.state = 1177; this.match(ImpalaSqlParser.KW_UPSERT); - this.state = 1166; + this.state = 1178; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1168; + this.state = 1180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1167; + this.state = 1179; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1170; + this.state = 1182; this.tableNamePath(); - this.state = 1172; + this.state = 1184; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1171; + this.state = 1183; this.columnAliases(); } break; } - this.state = 1174; + this.state = 1186; this.queryStatement(); } } @@ -4386,90 +4393,90 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ShowStatementContext(this.context, this.state); this.enterRule(localContext, 112, ImpalaSqlParser.RULE_showStatement); try { - this.state = 1188; + this.state = 1200; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1176; + this.state = 1188; this.showRoles(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1177; + this.state = 1189; this.showRoleGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1178; + this.state = 1190; this.showGrants(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1179; + this.state = 1191; this.showFiles(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1180; + this.state = 1192; this.showPartitions(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1181; + this.state = 1193; this.showColumnStats(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1182; + this.state = 1194; this.showTableStats(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1183; + this.state = 1195; this.showCreateView(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1184; + this.state = 1196; this.showCreateTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1185; + this.state = 1197; this.showFunctions(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1186; + this.state = 1198; this.showTables(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1187; + this.state = 1199; this.showSchemas(); } break; @@ -4496,9 +4503,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1190; + this.state = 1202; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1191; + this.state = 1203; _la = this.tokenStream.LA(1); if(!(_la === 47 || _la === 171)) { this.errorHandler.recoverInline(this); @@ -4507,36 +4514,36 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1203; + this.state = 1215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1193; + this.state = 1205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1192; + this.state = 1204; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1195; + this.state = 1207; localContext._pattern = this.stringLiteral(); - this.state = 1200; + this.state = 1212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1196; + this.state = 1208; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1197; + this.state = 1209; this.stringLiteral(); } } - this.state = 1202; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4566,52 +4573,52 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1205; + this.state = 1217; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1206; + this.state = 1218; this.match(ImpalaSqlParser.KW_TABLES); - this.state = 1209; + this.state = 1221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1207; + this.state = 1219; this.match(ImpalaSqlParser.KW_IN); - this.state = 1208; + this.state = 1220; this.tableNamePath(); } } - this.state = 1222; + this.state = 1234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1212; + this.state = 1224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1211; + this.state = 1223; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1214; + this.state = 1226; localContext._pattern = this.stringLiteral(); - this.state = 1219; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1215; + this.state = 1227; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1216; + this.state = 1228; this.stringLiteral(); } } - this.state = 1221; + this.state = 1233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4641,14 +4648,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1224; + this.state = 1236; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1226; + this.state = 1238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3 || _la === 12) { { - this.state = 1225; + this.state = 1237; _la = this.tokenStream.LA(1); if(!(_la === 3 || _la === 12)) { this.errorHandler.recoverInline(this); @@ -4660,50 +4667,50 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1228; + this.state = 1240; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1231; + this.state = 1243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1229; + this.state = 1241; this.match(ImpalaSqlParser.KW_IN); - this.state = 1230; + this.state = 1242; this.databaseNamePath(); } } - this.state = 1244; + this.state = 1256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1234; + this.state = 1246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1233; + this.state = 1245; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1236; + this.state = 1248; localContext._pattern = this.stringLiteral(); - this.state = 1241; + this.state = 1253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 271) { { { - this.state = 1237; + this.state = 1249; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1238; + this.state = 1250; this.stringLiteral(); } } - this.state = 1243; + this.state = 1255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4732,13 +4739,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1246; + this.state = 1258; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1247; + this.state = 1259; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1248; + this.state = 1260; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1249; + this.state = 1261; this.tableNamePath(); } } @@ -4762,13 +4769,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1251; + this.state = 1263; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1252; + this.state = 1264; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1253; + this.state = 1265; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 1254; + this.state = 1266; this.viewNamePath(); } } @@ -4792,13 +4799,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1256; + this.state = 1268; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1257; + this.state = 1269; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1258; + this.state = 1270; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1259; + this.state = 1271; this.tableNamePath(); } } @@ -4822,13 +4829,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1261; + this.state = 1273; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1262; + this.state = 1274; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1263; + this.state = 1275; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1264; + this.state = 1276; this.tableNamePath(); } } @@ -4853,21 +4860,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1278; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1268; + this.state = 1280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1267; + this.state = 1279; this.match(ImpalaSqlParser.KW_RANGE); } } - this.state = 1270; + this.state = 1282; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1271; + this.state = 1283; this.tableNamePath(); } } @@ -4892,38 +4899,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1273; + this.state = 1285; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1274; + this.state = 1286; this.match(ImpalaSqlParser.KW_FILES); - this.state = 1275; + this.state = 1287; this.match(ImpalaSqlParser.KW_IN); - this.state = 1276; + this.state = 1288; this.tableNamePath(); - this.state = 1286; + this.state = 1298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1277; + this.state = 1289; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1278; + this.state = 1290; this.match(ImpalaSqlParser.LPAREN); - this.state = 1279; + this.state = 1291; this.expression(); - this.state = 1282; + this.state = 1294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1280; + this.state = 1292; this.match(ImpalaSqlParser.COMMA); - this.state = 1281; + this.state = 1293; this.expression(); } } - this.state = 1284; + this.state = 1296; this.match(ImpalaSqlParser.RPAREN); } } @@ -4951,19 +4958,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1288; + this.state = 1300; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1290; + this.state = 1302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 1289; + this.state = 1301; this.match(ImpalaSqlParser.KW_CURRENT); } } - this.state = 1292; + this.state = 1304; this.match(ImpalaSqlParser.KW_ROLES); } } @@ -4987,15 +4994,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1306; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1295; + this.state = 1307; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1296; + this.state = 1308; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1297; + this.state = 1309; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1298; + this.state = 1310; this.identifier(); } } @@ -5018,38 +5025,38 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 136, ImpalaSqlParser.RULE_showGrants); let _la: number; try { - this.state = 1314; + this.state = 1326; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1300; + this.state = 1312; this.showDatabaseGrant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1301; + this.state = 1313; this.showTableGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1302; + this.state = 1314; this.showColumnGrant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1303; + this.state = 1315; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1304; + this.state = 1316; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1305; + this.state = 1317; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5058,16 +5065,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1306; + this.state = 1318; this.identifier(); - this.state = 1312; + this.state = 1324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1307; + this.state = 1319; this.match(ImpalaSqlParser.KW_ON); - this.state = 1308; + this.state = 1320; _la = this.tokenStream.LA(1); if(!(_la === 178 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -5076,12 +5083,12 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1310; + this.state = 1322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1309; + this.state = 1321; this.qualifiedName(); } } @@ -5114,11 +5121,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1316; + this.state = 1328; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1317; + this.state = 1329; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1318; + this.state = 1330; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5127,23 +5134,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1319; + this.state = 1331; this.identifier(); - this.state = 1325; + this.state = 1337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1320; + this.state = 1332; this.match(ImpalaSqlParser.KW_ON); - this.state = 1321; + this.state = 1333; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1323; + this.state = 1335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1322; + this.state = 1334; this.databaseNamePath(); } } @@ -5174,11 +5181,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1327; + this.state = 1339; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1328; + this.state = 1340; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1329; + this.state = 1341; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5187,23 +5194,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1330; + this.state = 1342; this.identifier(); - this.state = 1336; + this.state = 1348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1331; + this.state = 1343; this.match(ImpalaSqlParser.KW_ON); - this.state = 1332; + this.state = 1344; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1334; + this.state = 1346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1333; + this.state = 1345; this.tableNamePath(); } } @@ -5234,11 +5241,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1338; + this.state = 1350; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1339; + this.state = 1351; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1340; + this.state = 1352; _la = this.tokenStream.LA(1); if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); @@ -5247,23 +5254,23 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1341; + this.state = 1353; this.identifier(); - this.state = 1347; + this.state = 1359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 136) { { - this.state = 1342; + this.state = 1354; this.match(ImpalaSqlParser.KW_ON); - this.state = 1343; + this.state = 1355; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1345; + this.state = 1357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1344; + this.state = 1356; this.columnNamePath(); } break; @@ -5291,27 +5298,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AddCommentStatementContext(this.context, this.state); this.enterRule(localContext, 144, ImpalaSqlParser.RULE_addCommentStatement); try { - this.state = 1352; + this.state = 1364; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1361; this.addDatabaseComments(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1350; + this.state = 1362; this.addTableComments(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1351; + this.state = 1363; this.addColumnComments(); } break; @@ -5337,29 +5344,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1354; + this.state = 1366; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1355; + this.state = 1367; this.match(ImpalaSqlParser.KW_ON); - this.state = 1356; + this.state = 1368; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1357; + this.state = 1369; this.databaseNamePath(); - this.state = 1358; + this.state = 1370; this.match(ImpalaSqlParser.KW_IS); - this.state = 1361; + this.state = 1373; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1359; + this.state = 1371; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1360; + this.state = 1372; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5388,29 +5395,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1375; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1364; + this.state = 1376; this.match(ImpalaSqlParser.KW_ON); - this.state = 1365; + this.state = 1377; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1366; + this.state = 1378; this.tableNamePath(); - this.state = 1367; + this.state = 1379; this.match(ImpalaSqlParser.KW_IS); - this.state = 1370; + this.state = 1382; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1368; + this.state = 1380; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1369; + this.state = 1381; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5439,29 +5446,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1372; + this.state = 1384; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1373; + this.state = 1385; this.match(ImpalaSqlParser.KW_ON); - this.state = 1374; + this.state = 1386; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1375; + this.state = 1387; this.columnNamePath(); - this.state = 1376; + this.state = 1388; this.match(ImpalaSqlParser.KW_IS); - this.state = 1379; + this.state = 1391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1377; + this.state = 1389; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1378; + this.state = 1390; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5490,9 +5497,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1381; + this.state = 1393; this.match(ImpalaSqlParser.KW_EXPLAIN); - this.state = 1382; + this.state = 1394; this.sqlStatement(); } } @@ -5516,14 +5523,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1396; this.match(ImpalaSqlParser.KW_SET); - this.state = 1390; + this.state = 1402; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: { - this.state = 1385; + this.state = 1397; this.match(ImpalaSqlParser.KW_ALL); } break; @@ -5566,11 +5573,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1386; + this.state = 1398; this.identifier(); - this.state = 1387; + this.state = 1399; this.match(ImpalaSqlParser.EQ); - this.state = 1388; + this.state = 1400; this.expression(); } break; @@ -5629,23 +5636,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1404; this.match(ImpalaSqlParser.COLON); - this.state = 1393; + this.state = 1405; this.match(ImpalaSqlParser.KW_SHUTDOWN); - this.state = 1394; + this.state = 1406; this.match(ImpalaSqlParser.LPAREN); - this.state = 1404; + this.state = 1416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1396; + this.state = 1408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 274 || _la === 275) { { - this.state = 1395; + this.state = 1407; this.stringLiteral(); } } @@ -5654,16 +5661,16 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 2: { - this.state = 1398; + this.state = 1410; this.stringLiteral(); - this.state = 1401; + this.state = 1413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1399; + this.state = 1411; this.match(ImpalaSqlParser.COMMA); - this.state = 1400; + this.state = 1412; this.expression(); } } @@ -5672,12 +5679,12 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 3: { - this.state = 1403; + this.state = 1415; this.expression(); } break; } - this.state = 1406; + this.state = 1418; this.match(ImpalaSqlParser.RPAREN); } } @@ -5701,11 +5708,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1420; this.match(ImpalaSqlParser.KW_INVALIDATE); - this.state = 1409; + this.state = 1421; this.match(ImpalaSqlParser.KW_METADATA); - this.state = 1410; + this.state = 1422; this.tableNamePath(); } } @@ -5730,54 +5737,54 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1412; + this.state = 1424; this.match(ImpalaSqlParser.KW_LOAD); - this.state = 1413; + this.state = 1425; this.match(ImpalaSqlParser.KW_DATA); - this.state = 1414; + this.state = 1426; this.match(ImpalaSqlParser.KW_INPATH); - this.state = 1415; + this.state = 1427; this.match(ImpalaSqlParser.STRING); - this.state = 1417; + this.state = 1429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 1416; + this.state = 1428; this.match(ImpalaSqlParser.KW_OVERWRITE); } } - this.state = 1419; + this.state = 1431; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1420; + this.state = 1432; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1421; + this.state = 1433; this.tableNamePath(); - this.state = 1431; + this.state = 1443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1422; + this.state = 1434; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1423; + this.state = 1435; this.match(ImpalaSqlParser.LPAREN); - this.state = 1424; + this.state = 1436; this.expression(); - this.state = 1427; + this.state = 1439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1425; + this.state = 1437; this.match(ImpalaSqlParser.COMMA); - this.state = 1426; + this.state = 1438; this.expression(); } } - this.state = 1429; + this.state = 1441; this.match(ImpalaSqlParser.RPAREN); } } @@ -5802,27 +5809,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RefreshStatementContext(this.context, this.state); this.enterRule(localContext, 162, ImpalaSqlParser.RULE_refreshStatement); try { - this.state = 1436; + this.state = 1448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1433; + this.state = 1445; this.refreshMeta(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1434; + this.state = 1446; this.refreshAuth(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1435; + this.state = 1447; this.refreshFunction(); } break; @@ -5850,40 +5857,40 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1438; + this.state = 1450; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1439; + this.state = 1451; this.tableNamePath(); - this.state = 1452; + this.state = 1464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 1440; + this.state = 1452; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1441; + this.state = 1453; this.match(ImpalaSqlParser.LPAREN); - this.state = 1442; + this.state = 1454; this.expression(); - this.state = 1447; + this.state = 1459; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1443; + this.state = 1455; this.match(ImpalaSqlParser.COMMA); - this.state = 1444; + this.state = 1456; this.expression(); } } } - this.state = 1449; + this.state = 1461; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } - this.state = 1450; + this.state = 1462; this.match(ImpalaSqlParser.RPAREN); } } @@ -5910,9 +5917,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1466; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1455; + this.state = 1467; this.match(ImpalaSqlParser.KW_AUTHORIZATION); } } @@ -5936,11 +5943,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1457; + this.state = 1469; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1458; + this.state = 1470; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1459; + this.state = 1471; this.functionNamePath(); } } @@ -5964,9 +5971,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1461; + this.state = 1473; this.match(ImpalaSqlParser.KW_IF); - this.state = 1462; + this.state = 1474; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -5990,11 +5997,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1476; this.match(ImpalaSqlParser.KW_IF); - this.state = 1465; + this.state = 1477; this.match(ImpalaSqlParser.KW_NOT); - this.state = 1466; + this.state = 1478; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -6018,7 +6025,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1468; + this.state = 1480; this.qualifiedName(); } } @@ -6042,7 +6049,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1482; this.qualifiedName(); } } @@ -6066,7 +6073,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1472; + this.state = 1484; this.qualifiedName(); } } @@ -6090,7 +6097,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1474; + this.state = 1486; this.qualifiedName(); } } @@ -6114,7 +6121,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1476; + this.state = 1488; this.qualifiedName(); } } @@ -6138,7 +6145,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1478; + this.state = 1490; this.qualifiedName(); } } @@ -6163,23 +6170,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1480; + this.state = 1492; this.identifier(); - this.state = 1485; + this.state = 1497; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1481; + this.state = 1493; this.match(ImpalaSqlParser.DOT); - this.state = 1482; + this.state = 1494; this.identifier(); } } } - this.state = 1487; + this.state = 1499; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); } @@ -6206,23 +6213,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1488; + this.state = 1500; this.identifier(); - this.state = 1493; + this.state = 1505; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1489; + this.state = 1501; this.match(ImpalaSqlParser.DOT); - this.state = 1490; + this.state = 1502; this.identifier(); } } } - this.state = 1495; + this.state = 1507; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -6246,20 +6253,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new FunctionNamePathContext(this.context, this.state); this.enterRule(localContext, 190, ImpalaSqlParser.RULE_functionNamePath); try { - this.state = 1498; + this.state = 1510; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1496; + this.state = 1508; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1497; + this.state = 1509; this.qualifiedName(); } break; @@ -6283,20 +6290,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 192, ImpalaSqlParser.RULE_columnNamePath); try { - this.state = 1502; + this.state = 1514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1500; + this.state = 1512; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1501; + this.state = 1513; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -6322,20 +6329,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new TableOrViewPathContext(this.context, this.state); this.enterRule(localContext, 194, ImpalaSqlParser.RULE_tableOrViewPath); try { - this.state = 1506; + this.state = 1518; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1504; + this.state = 1516; this.tableNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1505; + this.state = 1517; this.viewNamePath(); } break; @@ -6362,107 +6369,107 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1511; + this.state = 1523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1508; + this.state = 1520; this.match(ImpalaSqlParser.KW_SORT); - this.state = 1509; + this.state = 1521; this.match(ImpalaSqlParser.KW_BY); - this.state = 1510; + this.state = 1522; this.columnAliases(); } } - this.state = 1514; + this.state = 1526; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 1513; + this.state = 1525; this.commentClause(); } break; } - this.state = 1519; + this.state = 1531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1516; + this.state = 1528; this.match(ImpalaSqlParser.KW_ROW); - this.state = 1517; + this.state = 1529; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 1518; + this.state = 1530; this.rowFormat(); } } - this.state = 1524; + this.state = 1536; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1521; + this.state = 1533; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1522; + this.state = 1534; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 1523; + this.state = 1535; localContext._serdProp = this.properties(); } break; } - this.state = 1529; + this.state = 1541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 23) { { - this.state = 1526; + this.state = 1538; this.match(ImpalaSqlParser.KW_STORED); - this.state = 1527; + this.state = 1539; this.match(ImpalaSqlParser.KW_AS); - this.state = 1528; + this.state = 1540; this.fileFormat(); } } - this.state = 1533; + this.state = 1545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 1531; + this.state = 1543; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 1532; + this.state = 1544; localContext._location = this.stringLiteral(); } } - this.state = 1545; + this.state = 1557; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { - this.state = 1535; + this.state = 1547; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1536; + this.state = 1548; this.match(ImpalaSqlParser.KW_IN); - this.state = 1537; + this.state = 1549; localContext._cacheName = this.qualifiedName(); - this.state = 1542; + this.state = 1554; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1538; + this.state = 1550; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1539; + this.state = 1551; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1540; + this.state = 1552; this.match(ImpalaSqlParser.EQ); - this.state = 1541; + this.state = 1553; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -6471,7 +6478,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 1544; + this.state = 1556; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -6509,14 +6516,14 @@ export class ImpalaSqlParser extends SQLParserBase { default: break; } - this.state = 1549; + this.state = 1561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 1547; + this.state = 1559; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 1548; + this.state = 1560; localContext._tblProp = this.properties(); } } @@ -6544,21 +6551,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1551; + this.state = 1563; this.assignmentItem(); - this.state = 1556; + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1552; + this.state = 1564; this.match(ImpalaSqlParser.COMMA); - this.state = 1553; + this.state = 1565; this.assignmentItem(); } } - this.state = 1558; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6584,11 +6591,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1559; + this.state = 1571; this.qualifiedName(); - this.state = 1560; + this.state = 1572; this.match(ImpalaSqlParser.EQ); - this.state = 1561; + this.state = 1573; this.expression(); } } @@ -6613,43 +6620,43 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1563; + this.state = 1575; this.match(ImpalaSqlParser.LPAREN); - this.state = 1565; + this.state = 1577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1564; + this.state = 1576; this.viewColumnItem(); } } - this.state = 1573; + this.state = 1585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1567; + this.state = 1579; this.match(ImpalaSqlParser.COMMA); - this.state = 1569; + this.state = 1581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1568; + this.state = 1580; this.viewColumnItem(); } } } } - this.state = 1575; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1576; + this.state = 1588; this.match(ImpalaSqlParser.RPAREN); } } @@ -6674,14 +6681,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1590; this.columnNamePathCreate(); - this.state = 1580; + this.state = 1592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1579; + this.state = 1591; this.commentClause(); } } @@ -6709,17 +6716,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1583; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1582; + this.state = 1594; this.with_(); } } - this.state = 1585; + this.state = 1597; this.queryNoWith(); } } @@ -6744,23 +6751,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1587; + this.state = 1599; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1588; + this.state = 1600; this.namedQuery(); - this.state = 1593; + this.state = 1605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1589; + this.state = 1601; this.match(ImpalaSqlParser.COMMA); - this.state = 1590; + this.state = 1602; this.namedQuery(); } } - this.state = 1595; + this.state = 1607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6788,98 +6795,98 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1608; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1597; + this.state = 1609; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1598; + this.state = 1610; this.columnAliases(); - this.state = 1600; + this.state = 1612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1599; + this.state = 1611; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1605; + this.state = 1617; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1602; + this.state = 1614; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; case 2: { - this.state = 1603; + this.state = 1615; this.match(ImpalaSqlParser.COMMA); - this.state = 1604; + this.state = 1616; this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; } - this.state = 1610; + this.state = 1622; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1607; + this.state = 1619; this.match(ImpalaSqlParser.KW_RELY); } break; case 2: { - this.state = 1608; + this.state = 1620; this.match(ImpalaSqlParser.COMMA); - this.state = 1609; + this.state = 1621; this.match(ImpalaSqlParser.KW_RELY); } break; } - this.state = 1624; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81 || _la === 263) { { - this.state = 1615; + this.state = 1627; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.COMMA: { - this.state = 1612; + this.state = 1624; this.match(ImpalaSqlParser.COMMA); - this.state = 1613; + this.state = 1625; this.foreignKeySpecification(); } break; case ImpalaSqlParser.KW_FOREIGN: { - this.state = 1614; + this.state = 1626; this.foreignKeySpecification(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1621; + this.state = 1633; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1617; + this.state = 1629; this.match(ImpalaSqlParser.COMMA); - this.state = 1618; + this.state = 1630; this.foreignKeySpecification(); } } } - this.state = 1623; + this.state = 1635; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 185, this.context); } @@ -6909,44 +6916,44 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1626; + this.state = 1638; this.match(ImpalaSqlParser.KW_FOREIGN); - this.state = 1627; + this.state = 1639; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1628; + this.state = 1640; this.columnAliases(); - this.state = 1629; + this.state = 1641; this.match(ImpalaSqlParser.KW_REFERENCES); - this.state = 1630; + this.state = 1642; this.tableNamePath(); - this.state = 1631; + this.state = 1643; this.columnAliases(); - this.state = 1633; + this.state = 1645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1632; + this.state = 1644; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1636; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 1635; + this.state = 1647; this.match(ImpalaSqlParser.KW_NOVALIDATE); } } - this.state = 1639; + this.state = 1651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 226) { { - this.state = 1638; + this.state = 1650; this.match(ImpalaSqlParser.KW_RELY); } } @@ -6973,18 +6980,18 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1641; + this.state = 1653; this.columnNamePath(); - this.state = 1642; + this.state = 1654; this.type_(0); - this.state = 1645; + this.state = 1657; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 1643; + this.state = 1655; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1644; + this.state = 1656; this.stringLiteral(); } break; @@ -7012,16 +7019,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1647; + this.state = 1659; this.columnNamePathCreate(); - this.state = 1648; + this.state = 1660; localContext._colType = this.type_(0); - this.state = 1650; + this.state = 1662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1649; + this.state = 1661; this.commentClause(); } } @@ -7048,7 +7055,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1652; + this.state = 1664; this.kuduColumnDefinition(); } } @@ -7074,54 +7081,54 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1666; this.columnNamePathCreate(); - this.state = 1655; + this.state = 1667; localContext._colType = this.type_(0); - this.state = 1663; + this.state = 1675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1656; + this.state = 1668; this.kuduAttributes(); - this.state = 1660; + this.state = 1672; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1657; + this.state = 1669; this.kuduAttributes(); } } } - this.state = 1662; + this.state = 1674; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } } } - this.state = 1666; + this.state = 1678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1665; + this.state = 1677; this.commentClause(); } } - this.state = 1670; + this.state = 1682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1668; + this.state = 1680; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1669; + this.state = 1681; this.match(ImpalaSqlParser.KW_KEY); } } @@ -7148,9 +7155,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1672; + this.state = 1684; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1673; + this.state = 1685; localContext._comment = this.stringLiteral(); } } @@ -7176,28 +7183,28 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1675; + this.state = 1687; this.columnSpec(); - this.state = 1683; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1676; + this.state = 1688; this.kuduAttributes(); - this.state = 1680; + this.state = 1692; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1677; + this.state = 1689; this.kuduAttributes(); } } } - this.state = 1682; + this.state = 1694; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } @@ -7228,42 +7235,42 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1685; + this.state = 1697; this.columnNamePathCreate(); - this.state = 1686; + this.state = 1698; this.type_(0); - this.state = 1689; + this.state = 1701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 1687; + this.state = 1699; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1688; + this.state = 1700; this.stringLiteral(); } break; } - this.state = 1698; + this.state = 1710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1691; + this.state = 1703; this.kuduAttributes(); - this.state = 1695; + this.state = 1707; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1692; + this.state = 1704; this.kuduAttributes(); } } } - this.state = 1697; + this.state = 1709; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); } @@ -7293,23 +7300,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1705; + this.state = 1717; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_NOT: case ImpalaSqlParser.KW_NULL: { - this.state = 1701; + this.state = 1713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1700; + this.state = 1712; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 1703; + this.state = 1715; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -7318,7 +7325,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 1704; + this.state = 1716; this.kuduStorageAttr(); } break; @@ -7345,42 +7352,42 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new KuduStorageAttrContext(this.context, this.state); this.enterRule(localContext, 230, ImpalaSqlParser.RULE_kuduStorageAttr); try { - this.state = 1715; + this.state = 1727; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ENCODING: this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1719; this.match(ImpalaSqlParser.KW_ENCODING); - this.state = 1708; + this.state = 1720; this.expression(); } break; case ImpalaSqlParser.KW_COMPRESSION: this.enterOuterAlt(localContext, 2); { - this.state = 1709; + this.state = 1721; this.match(ImpalaSqlParser.KW_COMPRESSION); - this.state = 1710; + this.state = 1722; this.expression(); } break; case ImpalaSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 1711; + this.state = 1723; this.match(ImpalaSqlParser.KW_DEFAULT); - this.state = 1712; + this.state = 1724; this.expression(); } break; case ImpalaSqlParser.KW_BLOCK_SIZE: this.enterOuterAlt(localContext, 4); { - this.state = 1713; + this.state = 1725; this.match(ImpalaSqlParser.KW_BLOCK_SIZE); - this.state = 1714; + this.state = 1726; this.number_(); } break; @@ -7409,7 +7416,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1717; + this.state = 1729; _la = this.tokenStream.LA(1); if(!(((((_la - 245)) & ~0x1F) === 0 && ((1 << (_la - 245)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -7441,7 +7448,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1719; + this.state = 1731; _la = this.tokenStream.LA(1); if(!(_la === 147 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 31) !== 0))) { this.errorHandler.recoverInline(this); @@ -7472,41 +7479,41 @@ export class ImpalaSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1734; + this.state = 1746; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_HASH: this.enterOuterAlt(localContext, 1); { { - this.state = 1721; + this.state = 1733; this.hashClause(); - this.state = 1726; + this.state = 1738; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1722; + this.state = 1734; this.match(ImpalaSqlParser.COMMA); - this.state = 1723; + this.state = 1735; this.hashClause(); } } } - this.state = 1728; + this.state = 1740; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); } - this.state = 1731; + this.state = 1743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 1729; + this.state = 1741; this.match(ImpalaSqlParser.COMMA); - this.state = 1730; + this.state = 1742; this.rangeClause(); } } @@ -7517,7 +7524,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 1733; + this.state = 1745; this.rangeClause(); } break; @@ -7546,21 +7553,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1736; + this.state = 1748; this.match(ImpalaSqlParser.KW_HASH); - this.state = 1738; + this.state = 1750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 1737; + this.state = 1749; this.columnAliases(); } } - this.state = 1740; + this.state = 1752; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1741; + this.state = 1753; this.number_(); } } @@ -7585,47 +7592,47 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1743; + this.state = 1755; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 1745; + this.state = 1757; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1744; + this.state = 1756; this.columnAliases(); } break; } - this.state = 1747; + this.state = 1759; this.match(ImpalaSqlParser.LPAREN); { - this.state = 1748; + this.state = 1760; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1749; + this.state = 1761; this.kuduPartitionSpec(); - this.state = 1755; + this.state = 1767; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1750; + this.state = 1762; this.match(ImpalaSqlParser.COMMA); - this.state = 1751; + this.state = 1763; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1752; + this.state = 1764; this.kuduPartitionSpec(); } } } - this.state = 1757; + this.state = 1769; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); } } - this.state = 1758; + this.state = 1770; this.match(ImpalaSqlParser.RPAREN); } } @@ -7648,17 +7655,17 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 242, ImpalaSqlParser.RULE_kuduPartitionSpec); let _la: number; try { - this.state = 1775; + this.state = 1787; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1760; + this.state = 1772; this.match(ImpalaSqlParser.KW_VALUE); - this.state = 1761; + this.state = 1773; this.partitionCol(); - this.state = 1762; + this.state = 1774; this.expression(); } break; @@ -7734,28 +7741,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 1767; + this.state = 1779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 1764; + this.state = 1776; this.expression(); - this.state = 1765; + this.state = 1777; this.rangeOperator(); } } - this.state = 1769; + this.state = 1781; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1773; + this.state = 1785; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1770; + this.state = 1782; this.rangeOperator(); - this.state = 1771; + this.state = 1783; this.expression(); } break; @@ -7784,30 +7791,30 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CacheSpecContext(this.context, this.state); this.enterRule(localContext, 244, ImpalaSqlParser.RULE_cacheSpec); try { - this.state = 1787; + this.state = 1799; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: this.enterOuterAlt(localContext, 1); { - this.state = 1777; + this.state = 1789; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1778; + this.state = 1790; this.match(ImpalaSqlParser.KW_IN); - this.state = 1779; + this.state = 1791; this.identifier(); - this.state = 1784; + this.state = 1796; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1780; + this.state = 1792; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1781; + this.state = 1793; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1782; + this.state = 1794; this.match(ImpalaSqlParser.EQ); - this.state = 1783; + this.state = 1795; this.number_(); } break; @@ -7817,7 +7824,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_UNCACHED: this.enterOuterAlt(localContext, 2); { - this.state = 1786; + this.state = 1798; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -7843,7 +7850,7 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RangeOperatorContext(this.context, this.state); this.enterRule(localContext, 246, ImpalaSqlParser.RULE_rangeOperator); try { - this.state = 1794; + this.state = 1806; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -7924,28 +7931,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.LT: this.enterOuterAlt(localContext, 2); { - this.state = 1790; + this.state = 1802; this.match(ImpalaSqlParser.LT); } break; case ImpalaSqlParser.LTE: this.enterOuterAlt(localContext, 3); { - this.state = 1791; + this.state = 1803; this.match(ImpalaSqlParser.LTE); } break; case ImpalaSqlParser.GT: this.enterOuterAlt(localContext, 4); { - this.state = 1792; + this.state = 1804; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.GTE: this.enterOuterAlt(localContext, 5); { - this.state = 1793; + this.state = 1805; this.match(ImpalaSqlParser.GTE); } break; @@ -7971,55 +7978,55 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new PartitionColContext(this.context, this.state); this.enterRule(localContext, 248, ImpalaSqlParser.RULE_partitionCol); try { - this.state = 1804; + this.state = 1816; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.EQ: this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1808; this.match(ImpalaSqlParser.EQ); } break; case ImpalaSqlParser.NEQ: this.enterOuterAlt(localContext, 2); { - this.state = 1797; + this.state = 1809; this.match(ImpalaSqlParser.NEQ); } break; case ImpalaSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 1798; + this.state = 1810; this.match(ImpalaSqlParser.KW_LIKE); } break; case ImpalaSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 4); { - this.state = 1799; + this.state = 1811; this.match(ImpalaSqlParser.KW_RLIKE); } break; case ImpalaSqlParser.KW_REGEXP: this.enterOuterAlt(localContext, 5); { - this.state = 1800; + this.state = 1812; this.match(ImpalaSqlParser.KW_REGEXP); } break; case ImpalaSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 6); { - this.state = 1801; + this.state = 1813; this.match(ImpalaSqlParser.KW_BETWEEN); } break; case ImpalaSqlParser.KW_IN: this.enterOuterAlt(localContext, 7); { - this.state = 1802; + this.state = 1814; this.match(ImpalaSqlParser.KW_IN); } break; @@ -8098,7 +8105,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 8); { - this.state = 1803; + this.state = 1815; this.rangeOperator(); } break; @@ -8127,16 +8134,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1806; + this.state = 1818; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 1807; + this.state = 1819; this.qualifiedName(); - this.state = 1810; + this.state = 1822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 95) { { - this.state = 1808; + this.state = 1820; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 95)) { @@ -8146,7 +8153,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1809; + this.state = 1821; this.match(ImpalaSqlParser.KW_PROPERTIES); } } @@ -8174,27 +8181,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1812; + this.state = 1824; this.match(ImpalaSqlParser.LPAREN); - this.state = 1813; + this.state = 1825; this.property(); - this.state = 1818; + this.state = 1830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1814; + this.state = 1826; this.match(ImpalaSqlParser.COMMA); - this.state = 1815; + this.state = 1827; this.property(); } } - this.state = 1820; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1821; + this.state = 1833; this.match(ImpalaSqlParser.RPAREN); } } @@ -8219,29 +8226,29 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1823; + this.state = 1835; this.match(ImpalaSqlParser.LPAREN); - this.state = 1824; + this.state = 1836; this.columnSpec(); - this.state = 1829; + this.state = 1841; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1825; + this.state = 1837; this.match(ImpalaSqlParser.COMMA); - this.state = 1826; + this.state = 1838; this.columnSpec(); } } } - this.state = 1831; + this.state = 1843; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } - this.state = 1832; + this.state = 1844; this.match(ImpalaSqlParser.RPAREN); } } @@ -8266,21 +8273,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1834; + this.state = 1846; this.expression(); - this.state = 1839; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1835; + this.state = 1847; this.match(ImpalaSqlParser.COMMA); - this.state = 1836; + this.state = 1848; this.expression(); } } - this.state = 1841; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8307,31 +8314,31 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1842; + this.state = 1854; this.match(ImpalaSqlParser.KW_DELIMITED); - this.state = 1852; + this.state = 1864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1843; + this.state = 1855; this.match(ImpalaSqlParser.KW_FIELDS); - this.state = 1844; + this.state = 1856; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1845; + this.state = 1857; this.match(ImpalaSqlParser.KW_BY); - this.state = 1846; + this.state = 1858; this.stringLiteral(); - this.state = 1850; + this.state = 1862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 1847; + this.state = 1859; this.match(ImpalaSqlParser.KW_ESCAPED); - this.state = 1848; + this.state = 1860; this.match(ImpalaSqlParser.KW_BY); - this.state = 1849; + this.state = 1861; this.stringLiteral(); } } @@ -8339,18 +8346,18 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1858; + this.state = 1870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117) { { - this.state = 1854; + this.state = 1866; this.match(ImpalaSqlParser.KW_LINES); - this.state = 1855; + this.state = 1867; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1856; + this.state = 1868; this.match(ImpalaSqlParser.KW_BY); - this.state = 1857; + this.state = 1869; this.stringLiteral(); } } @@ -8378,16 +8385,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1860; + this.state = 1872; this.identifier(); - this.state = 1863; + this.state = 1875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 249) { { - this.state = 1861; + this.state = 1873; this.match(ImpalaSqlParser.EQ); - this.state = 1862; + this.state = 1874; this.expression(); } } @@ -8415,55 +8422,55 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1865; + this.state = 1877; this.queryTerm(0); - this.state = 1876; + this.state = 1888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 1866; + this.state = 1878; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 1867; + this.state = 1879; this.match(ImpalaSqlParser.KW_BY); - this.state = 1868; + this.state = 1880; this.sortItem(); - this.state = 1873; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1869; + this.state = 1881; this.match(ImpalaSqlParser.COMMA); - this.state = 1870; + this.state = 1882; this.sortItem(); } } - this.state = 1875; + this.state = 1887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1884; + this.state = 1896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1878; + this.state = 1890; this.match(ImpalaSqlParser.KW_LIMIT); - this.state = 1879; + this.state = 1891; localContext._rows = this.expression(); - this.state = 1882; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1880; + this.state = 1892; this.match(ImpalaSqlParser.KW_OFFSET); - this.state = 1881; + this.state = 1893; localContext._offset = this.match(ImpalaSqlParser.INTEGER_VALUE); } } @@ -8511,11 +8518,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1887; + this.state = 1899; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1903; + this.state = 1915; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8525,7 +8532,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1901; + this.state = 1913; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: @@ -8533,23 +8540,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1889; + this.state = 1901; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1890; + this.state = 1902; (localContext as SetOperationContext)._operator = this.match(ImpalaSqlParser.KW_INTERSECT); - this.state = 1892; + this.state = 1904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1891; + this.state = 1903; this.setQuantifier(); } } - this.state = 1894; + this.state = 1906; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -8558,11 +8565,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1895; + this.state = 1907; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1896; + this.state = 1908; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 200)) { @@ -8572,24 +8579,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1898; + this.state = 1910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1897; + this.state = 1909; this.setQuantifier(); } } - this.state = 1900; + this.state = 1912; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1905; + this.state = 1917; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } @@ -8614,14 +8621,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 266, ImpalaSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1922; + this.state = 1934; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1918; this.querySpecification(); } break; @@ -8629,9 +8636,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1907; + this.state = 1919; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1908; + this.state = 1920; this.tableNamePath(); } break; @@ -8639,25 +8646,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1909; + this.state = 1921; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1910; + this.state = 1922; this.expression(); - this.state = 1915; + this.state = 1927; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1911; + this.state = 1923; this.match(ImpalaSqlParser.COMMA); - this.state = 1912; + this.state = 1924; this.expression(); } } } - this.state = 1917; + this.state = 1929; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } @@ -8667,11 +8674,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1918; + this.state = 1930; this.match(ImpalaSqlParser.LPAREN); - this.state = 1919; + this.state = 1931; this.queryNoWith(); - this.state = 1920; + this.state = 1932; this.match(ImpalaSqlParser.RPAREN); } break; @@ -8700,14 +8707,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1924; + this.state = 1936; this.columnItem(); - this.state = 1926; + this.state = 1938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 55) { { - this.state = 1925; + this.state = 1937; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 55)) { @@ -8720,14 +8727,14 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1930; + this.state = 1942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1928; + this.state = 1940; this.match(ImpalaSqlParser.KW_NULLS); - this.state = 1929; + this.state = 1941; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 75 || _la === 112)) { @@ -8763,112 +8770,94 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1932; + this.state = 1944; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 1934; + this.state = 1946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 1933; + this.state = 1945; this.setQuantifier(); } break; } - this.state = 1937; + this.state = 1949; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1936; + this.state = 1948; this.match(ImpalaSqlParser.KW_STRAIGHT_JOIN); } break; } - this.state = 1939; - this.selectItem(); - this.state = 1944; + this.state = 1951; + this.selectList(); + this.state = 1961; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1940; - this.match(ImpalaSqlParser.COMMA); - this.state = 1941; - this.selectItem(); - } - } - } - this.state = 1946; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); - } - this.state = 1956; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 1947; + this.state = 1952; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1948; - this.relation(0); this.state = 1953; + this.relation(0); + this.state = 1958; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1949; + this.state = 1954; this.match(ImpalaSqlParser.COMMA); - this.state = 1950; + this.state = 1955; this.relation(0); } } } - this.state = 1955; + this.state = 1960; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); } } break; } - this.state = 1960; + this.state = 1965; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1958; + this.state = 1963; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1959; + this.state = 1964; localContext._where = this.booleanExpression(0); } break; } - this.state = 1965; + this.state = 1970; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1962; + this.state = 1967; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1963; + this.state = 1968; this.match(ImpalaSqlParser.KW_BY); - this.state = 1964; + this.state = 1969; this.groupBy(); } break; } - this.state = 1969; + this.state = 1974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 1967; + this.state = 1972; this.match(ImpalaSqlParser.KW_HAVING); - this.state = 1968; + this.state = 1973; localContext._having = this.booleanExpression(0); } break; @@ -8889,40 +8878,83 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 272, ImpalaSqlParser.RULE_selectList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1976; + this.selectItem(); + this.state = 1981; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1977; + this.match(ImpalaSqlParser.COMMA); + this.state = 1978; + this.selectItem(); + } + } + } + this.state = 1983; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, 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 groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 272, ImpalaSqlParser.RULE_groupBy); + this.enterRule(localContext, 274, ImpalaSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1972; + this.state = 1985; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 1971; + this.state = 1984; this.setQuantifier(); } break; } - this.state = 1974; + this.state = 1987; this.groupingElement(); - this.state = 1979; + this.state = 1992; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1975; + this.state = 1988; this.match(ImpalaSqlParser.COMMA); - this.state = 1976; + this.state = 1989; this.groupingElement(); } } } - this.state = 1981; + this.state = 1994; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); } @@ -8944,12 +8976,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 274, ImpalaSqlParser.RULE_groupingElement); + this.enterRule(localContext, 276, ImpalaSqlParser.RULE_groupingElement); try { localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1982; + this.state = 1995; this.groupingSet(); } } @@ -8969,51 +9001,51 @@ export class ImpalaSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 276, ImpalaSqlParser.RULE_groupingSet); + this.enterRule(localContext, 278, ImpalaSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1997; + this.state = 2010; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1984; + this.state = 1997; this.match(ImpalaSqlParser.LPAREN); - this.state = 1993; + this.state = 2006; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1985; + this.state = 1998; this.columnItem(); - this.state = 1990; + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 1986; + this.state = 1999; this.match(ImpalaSqlParser.COMMA); - this.state = 1987; + this.state = 2000; this.columnItem(); } } - this.state = 1992; + this.state = 2005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1995; + this.state = 2008; this.match(ImpalaSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1996; + this.state = 2009; this.columnItem(); } break; @@ -9035,26 +9067,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 278, ImpalaSqlParser.RULE_namedQuery); + this.enterRule(localContext, 280, ImpalaSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1999; + this.state = 2012; localContext._name = this.identifier(); - this.state = 2001; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2000; + this.state = 2013; this.columnAliases(); } } - this.state = 2003; + this.state = 2016; this.match(ImpalaSqlParser.KW_AS); - this.state = 2004; + this.state = 2017; this.subQueryRelation(); } } @@ -9074,12 +9106,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 280, ImpalaSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 282, ImpalaSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2006; + this.state = 2019; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 57)) { this.errorHandler.recoverInline(this); @@ -9106,60 +9138,183 @@ export class ImpalaSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 282, ImpalaSqlParser.RULE_selectItem); - let _la: number; + this.enterRule(localContext, 284, ImpalaSqlParser.RULE_selectItem); try { - this.state = 2020; + this.state = 2033; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: - localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2008; - this.columnItem(); - this.state = 2013; + this.state = 2021; + this.selectLiteralColumnName(); + this.state = 2023; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2010; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 9) { - { - this.state = 2009; - this.match(ImpalaSqlParser.KW_AS); - } - } - - this.state = 2012; - this.identifier(); + this.state = 2022; + this.columnAlias(); } break; } } break; case 2: - localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2015; - this.qualifiedName(); - this.state = 2016; - this.match(ImpalaSqlParser.DOT); - this.state = 2017; - this.match(ImpalaSqlParser.ASTERISK); + this.state = 2025; + this.selectExpressionColumnName(); + this.state = 2027; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + case 1: + { + this.state = 2026; + this.columnAlias(); + } + break; + } } break; case 3: - localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2019; - this.match(ImpalaSqlParser.ASTERISK); + this.state = 2029; + this.tableAllColumns(); + this.state = 2031; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + case 1: + { + this.state = 2030; + this.columnAlias(); + } + 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 columnAlias(): ColumnAliasContext { + let localContext = new ColumnAliasContext(this.context, this.state); + this.enterRule(localContext, 286, ImpalaSqlParser.RULE_columnAlias); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2035; + this.match(ImpalaSqlParser.KW_AS); + this.state = 2036; + localContext._alias = this.identifier(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 288, ImpalaSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2038; + this.columnNamePath(); + this.state = 2040; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + case 1: + { + this.state = 2039; + this.columnAlias(); + } + 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 selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 290, ImpalaSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2042; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 292, ImpalaSqlParser.RULE_tableAllColumns); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2047; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { + { + this.state = 2044; + this.qualifiedName(); + this.state = 2045; + this.match(ImpalaSqlParser.DOT); } - break; + } + + this.state = 2049; + this.match(ImpalaSqlParser.ASTERISK); } } catch (re) { @@ -9188,8 +9343,8 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 284; - this.enterRecursionRule(localContext, 284, ImpalaSqlParser.RULE_relation, _p); + let _startState = 294; + this.enterRecursionRule(localContext, 294, ImpalaSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -9199,13 +9354,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2023; + this.state = 2052; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2038; + this.state = 2067; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9217,20 +9372,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_relation); - this.state = 2025; + this.state = 2054; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2034; + this.state = 2063; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2026; + this.state = 2055; this.match(ImpalaSqlParser.KW_CROSS); - this.state = 2027; + this.state = 2056; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2028; + this.state = 2057; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9240,13 +9395,13 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2029; + this.state = 2058; this.joinType(); - this.state = 2030; + this.state = 2059; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2031; + this.state = 2060; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 2032; + this.state = 2061; this.joinCriteria(); } break; @@ -9256,9 +9411,9 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2040; + this.state = 2069; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); } } } @@ -9278,21 +9433,21 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 286, ImpalaSqlParser.RULE_joinType); + this.enterRule(localContext, 296, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2072; + this.state = 2101; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2042; + this.state = 2071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2041; + this.state = 2070; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9302,14 +9457,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2044; + this.state = 2073; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2046; + this.state = 2075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2045; + this.state = 2074; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9319,14 +9474,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2048; + this.state = 2077; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2050; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2049; + this.state = 2078; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9336,14 +9491,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2052; + this.state = 2081; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2054; + this.state = 2083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2053; + this.state = 2082; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9353,14 +9508,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2056; + this.state = 2085; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2058; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2057; + this.state = 2086; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9370,14 +9525,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2060; + this.state = 2089; this.match(ImpalaSqlParser.KW_FULL); - this.state = 2062; + this.state = 2091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2061; + this.state = 2090; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9387,36 +9542,36 @@ export class ImpalaSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2064; + this.state = 2093; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2065; + this.state = 2094; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2066; + this.state = 2095; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2067; + this.state = 2096; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2068; + this.state = 2097; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2069; + this.state = 2098; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2070; + this.state = 2099; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2071; + this.state = 2100; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9438,47 +9593,47 @@ export class ImpalaSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 288, ImpalaSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 298, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2088; + this.state = 2117; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2074; + this.state = 2103; this.match(ImpalaSqlParser.KW_ON); - this.state = 2075; + this.state = 2104; this.booleanExpression(0); } break; case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2076; + this.state = 2105; this.match(ImpalaSqlParser.KW_USING); - this.state = 2077; + this.state = 2106; this.match(ImpalaSqlParser.LPAREN); - this.state = 2078; + this.state = 2107; this.identifier(); - this.state = 2083; + this.state = 2112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2079; + this.state = 2108; this.match(ImpalaSqlParser.COMMA); - this.state = 2080; + this.state = 2109; this.identifier(); } } - this.state = 2085; + this.state = 2114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2086; + this.state = 2115; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9502,39 +9657,39 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 290, ImpalaSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 300, ImpalaSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2090; + this.state = 2119; this.aliasedRelation(); - this.state = 2103; + this.state = 2132; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2091; + this.state = 2120; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 2092; + this.state = 2121; this.sampleType(); - this.state = 2093; + this.state = 2122; this.match(ImpalaSqlParser.LPAREN); - this.state = 2094; + this.state = 2123; localContext._percentage = this.expression(); - this.state = 2095; + this.state = 2124; this.match(ImpalaSqlParser.RPAREN); - this.state = 2101; + this.state = 2130; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2096; + this.state = 2125; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 2097; + this.state = 2126; this.match(ImpalaSqlParser.LPAREN); - this.state = 2098; + this.state = 2127; localContext._seed = this.expression(); - this.state = 2099; + this.state = 2128; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9560,12 +9715,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 292, ImpalaSqlParser.RULE_sampleType); + this.enterRule(localContext, 302, ImpalaSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2105; + this.state = 2134; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -9592,36 +9747,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 294, ImpalaSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 304, ImpalaSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2107; + this.state = 2136; this.relationPrimary(); - this.state = 2115; + this.state = 2144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2109; + this.state = 2138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2108; + this.state = 2137; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2111; + this.state = 2140; localContext._alias = this.identifier(); - this.state = 2113; + this.state = 2142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2112; + this.state = 2141; this.columnAliases(); } break; @@ -9647,32 +9802,32 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 296, ImpalaSqlParser.RULE_columnAliases); + this.enterRule(localContext, 306, ImpalaSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2117; + this.state = 2146; this.match(ImpalaSqlParser.LPAREN); - this.state = 2118; + this.state = 2147; this.columnNamePath(); - this.state = 2123; + this.state = 2152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2119; + this.state = 2148; this.match(ImpalaSqlParser.COMMA); - this.state = 2120; + this.state = 2149; this.columnNamePath(); } } - this.state = 2125; + this.state = 2154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2126; + this.state = 2155; this.match(ImpalaSqlParser.RPAREN); } } @@ -9692,47 +9847,36 @@ export class ImpalaSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 298, ImpalaSqlParser.RULE_relationPrimary); - let _la: number; + this.enterRule(localContext, 308, ImpalaSqlParser.RULE_relationPrimary); try { - this.state = 2135; + this.state = 2161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2128; + this.state = 2157; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2130; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 113) { - { - this.state = 2129; - this.match(ImpalaSqlParser.KW_LATERAL); - } - } - - this.state = 2132; - this.subQueryRelation(); + this.state = 2158; + this.atomSubQueryTableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2133; + this.state = 2159; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2134; + this.state = 2160; this.parenthesizedRelation(); } break; @@ -9752,17 +9896,52 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); + this.enterRule(localContext, 310, ImpalaSqlParser.RULE_atomSubQueryTableSource); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2164; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 113) { + { + this.state = 2163; + this.match(ImpalaSqlParser.KW_LATERAL); + } + } + + this.state = 2166; + this.subQueryRelation(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public subQueryRelation(): SubQueryRelationContext { let localContext = new SubQueryRelationContext(this.context, this.state); - this.enterRule(localContext, 300, ImpalaSqlParser.RULE_subQueryRelation); + this.enterRule(localContext, 312, ImpalaSqlParser.RULE_subQueryRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2137; + this.state = 2168; this.match(ImpalaSqlParser.LPAREN); - this.state = 2138; + this.state = 2169; this.queryStatement(); - this.state = 2139; + this.state = 2170; this.match(ImpalaSqlParser.RPAREN); } } @@ -9782,43 +9961,43 @@ export class ImpalaSqlParser extends SQLParserBase { } public unnest(): UnnestContext { let localContext = new UnnestContext(this.context, this.state); - this.enterRule(localContext, 302, ImpalaSqlParser.RULE_unnest); + this.enterRule(localContext, 314, ImpalaSqlParser.RULE_unnest); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2172; this.match(ImpalaSqlParser.KW_UNNEST); - this.state = 2142; + this.state = 2173; this.match(ImpalaSqlParser.LPAREN); - this.state = 2143; + this.state = 2174; this.expression(); - this.state = 2148; + this.state = 2179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2144; + this.state = 2175; this.match(ImpalaSqlParser.COMMA); - this.state = 2145; + this.state = 2176; this.expression(); } } - this.state = 2150; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2151; + this.state = 2182; this.match(ImpalaSqlParser.RPAREN); - this.state = 2154; + this.state = 2185; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2152; + this.state = 2183; this.match(ImpalaSqlParser.KW_WITH); - this.state = 2153; + this.state = 2184; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -9841,15 +10020,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public parenthesizedRelation(): ParenthesizedRelationContext { let localContext = new ParenthesizedRelationContext(this.context, this.state); - this.enterRule(localContext, 304, ImpalaSqlParser.RULE_parenthesizedRelation); + this.enterRule(localContext, 316, ImpalaSqlParser.RULE_parenthesizedRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 2156; + this.state = 2187; this.match(ImpalaSqlParser.LPAREN); - this.state = 2157; + this.state = 2188; this.relation(0); - this.state = 2158; + this.state = 2189; this.match(ImpalaSqlParser.RPAREN); } } @@ -9869,22 +10048,22 @@ export class ImpalaSqlParser extends SQLParserBase { } public columnItem(): ColumnItemContext { let localContext = new ColumnItemContext(this.context, this.state); - this.enterRule(localContext, 306, ImpalaSqlParser.RULE_columnItem); + this.enterRule(localContext, 318, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2162; + this.state = 2193; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2191; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2161; + this.state = 2192; this.expression(); } break; @@ -9906,11 +10085,11 @@ export class ImpalaSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 308, ImpalaSqlParser.RULE_expression); + this.enterRule(localContext, 320, ImpalaSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2164; + this.state = 2195; this.booleanExpression(0); } } @@ -9940,13 +10119,13 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 310; - this.enterRecursionRule(localContext, 310, ImpalaSqlParser.RULE_booleanExpression, _p); + let _startState = 322; + this.enterRecursionRule(localContext, 322, ImpalaSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2204; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -10022,14 +10201,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2167; + this.state = 2198; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2169; + this.state = 2200; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 279, this.context) ) { case 1: { - this.state = 2168; + this.state = 2199; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -10041,9 +10220,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2171; + this.state = 2202; this.match(ImpalaSqlParser.KW_NOT); - this.state = 2172; + this.state = 2203; this.booleanExpression(3); } break; @@ -10051,9 +10230,9 @@ export class ImpalaSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2183; + this.state = 2214; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10061,21 +10240,21 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2181; + this.state = 2212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2175; + this.state = 2206; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2176; + this.state = 2207; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); - this.state = 2177; + this.state = 2208; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10084,22 +10263,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2178; + this.state = 2209; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2179; + this.state = 2210; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); - this.state = 2180; + this.state = 2211; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2185; + this.state = 2216; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); } } } @@ -10119,19 +10298,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 312, ImpalaSqlParser.RULE_predicate); + this.enterRule(localContext, 324, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2244; + this.state = 2275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2186; + this.state = 2217; this.comparisonOperator(); - this.state = 2187; + this.state = 2218; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10139,11 +10318,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2189; + this.state = 2220; this.comparisonOperator(); - this.state = 2190; + this.state = 2221; this.comparisonQuantifier(); - this.state = 2191; + this.state = 2222; this.subQueryRelation(); } break; @@ -10151,23 +10330,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2194; + this.state = 2225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2193; + this.state = 2224; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2196; + this.state = 2227; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2197; + this.state = 2228; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2198; + this.state = 2229; this.match(ImpalaSqlParser.KW_AND); - this.state = 2199; + this.state = 2230; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10175,39 +10354,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2202; + this.state = 2233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2201; + this.state = 2232; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2204; + this.state = 2235; this.match(ImpalaSqlParser.KW_IN); - this.state = 2205; + this.state = 2236; this.match(ImpalaSqlParser.LPAREN); - this.state = 2206; + this.state = 2237; this.expression(); - this.state = 2211; + this.state = 2242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2207; + this.state = 2238; this.match(ImpalaSqlParser.COMMA); - this.state = 2208; + this.state = 2239; this.expression(); } } - this.state = 2213; + this.state = 2244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2214; + this.state = 2245; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10215,19 +10394,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2217; + this.state = 2248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2216; + this.state = 2247; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2219; + this.state = 2250; this.match(ImpalaSqlParser.KW_IN); - this.state = 2220; + this.state = 2251; this.subQueryRelation(); } break; @@ -10235,17 +10414,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2222; + this.state = 2253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2221; + this.state = 2252; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2224; + this.state = 2255; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 115 || _la === 164)) { this.errorHandler.recoverInline(this); @@ -10254,16 +10433,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2225; + this.state = 2256; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2228; + this.state = 2259; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: { - this.state = 2226; + this.state = 2257; this.match(ImpalaSqlParser.KW_ESCAPE); - this.state = 2227; + this.state = 2258; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10274,7 +10453,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2230; + this.state = 2261; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 163)) { this.errorHandler.recoverInline(this); @@ -10283,7 +10462,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2231; + this.state = 2262; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10291,19 +10470,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2232; + this.state = 2263; this.match(ImpalaSqlParser.KW_IS); - this.state = 2234; + this.state = 2265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2233; + this.state = 2264; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2236; + this.state = 2267; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 133 || _la === 194 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -10318,23 +10497,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2237; + this.state = 2268; this.match(ImpalaSqlParser.KW_IS); - this.state = 2239; + this.state = 2270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2238; + this.state = 2269; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2241; + this.state = 2272; this.match(ImpalaSqlParser.KW_DISTINCT); - this.state = 2242; + this.state = 2273; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2243; + this.state = 2274; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10366,23 +10545,23 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 314; - this.enterRecursionRule(localContext, 314, ImpalaSqlParser.RULE_valueExpression, _p); + let _startState = 326; + this.enterRecursionRule(localContext, 326, ImpalaSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2250; + this.state = 2281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2247; + this.state = 2278; this.primaryExpression(0); } break; @@ -10391,7 +10570,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2248; + this.state = 2279; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10401,15 +10580,15 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2249; + this.state = 2280; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2263; + this.state = 2294; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10417,19 +10596,19 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2261; + this.state = 2292; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2252; + this.state = 2283; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2253; + this.state = 2284; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 7) !== 0))) { @@ -10439,7 +10618,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2254; + this.state = 2285; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10448,11 +10627,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2255; + this.state = 2286; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2256; + this.state = 2287; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10462,7 +10641,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2257; + this.state = 2288; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10471,22 +10650,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2258; + this.state = 2289; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2259; + this.state = 2290; this.match(ImpalaSqlParser.CONCAT); - this.state = 2260; + this.state = 2291; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2265; + this.state = 2296; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); } } } @@ -10516,23 +10695,23 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 316; - this.enterRecursionRule(localContext, 316, ImpalaSqlParser.RULE_primaryExpression, _p); + let _startState = 328; + this.enterRecursionRule(localContext, 328, ImpalaSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2512; + this.state = 2543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2267; + this.state = 2298; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -10541,7 +10720,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2268; + this.state = 2299; this.interval(); } break; @@ -10550,9 +10729,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2269; + this.state = 2300; this.identifier(); - this.state = 2270; + this.state = 2301; this.stringLiteral(); } break; @@ -10561,9 +10740,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2272; + this.state = 2303; this.match(ImpalaSqlParser.DOUBLE_PRECISION); - this.state = 2273; + this.state = 2304; this.stringLiteral(); } break; @@ -10572,7 +10751,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2274; + this.state = 2305; this.number_(); } break; @@ -10581,7 +10760,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2275; + this.state = 2306; this.booleanValue(); } break; @@ -10590,7 +10769,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2276; + this.state = 2307; this.stringLiteral(); } break; @@ -10599,7 +10778,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2277; + this.state = 2308; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -10608,7 +10787,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2278; + this.state = 2309; this.match(ImpalaSqlParser.QUESTION); } break; @@ -10617,17 +10796,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2279; + this.state = 2310; this.match(ImpalaSqlParser.KW_POSITION); - this.state = 2280; + this.state = 2311; this.match(ImpalaSqlParser.LPAREN); - this.state = 2281; + this.state = 2312; this.valueExpression(0); - this.state = 2282; + this.state = 2313; this.match(ImpalaSqlParser.KW_IN); - this.state = 2283; + this.state = 2314; this.valueExpression(0); - this.state = 2284; + this.state = 2315; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10636,41 +10815,41 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2286; + this.state = 2317; this.match(ImpalaSqlParser.LPAREN); - this.state = 2287; + this.state = 2318; this.expression(); - this.state = 2290; + this.state = 2321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2288; + this.state = 2319; this.match(ImpalaSqlParser.KW_AS); - this.state = 2289; + this.state = 2320; this.type_(0); } } - this.state = 2300; + this.state = 2331; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2292; + this.state = 2323; this.match(ImpalaSqlParser.COMMA); - this.state = 2293; + this.state = 2324; this.expression(); - this.state = 2296; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2294; + this.state = 2325; this.match(ImpalaSqlParser.KW_AS); - this.state = 2295; + this.state = 2326; this.type_(0); } } @@ -10678,11 +10857,11 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2302; + this.state = 2333; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); } - this.state = 2303; + this.state = 2334; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10691,29 +10870,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2305; + this.state = 2336; this.match(ImpalaSqlParser.KW_ROW); - this.state = 2306; + this.state = 2337; this.match(ImpalaSqlParser.LPAREN); - this.state = 2307; + this.state = 2338; this.expression(); - this.state = 2312; + this.state = 2343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2308; + this.state = 2339; this.match(ImpalaSqlParser.COMMA); - this.state = 2309; + this.state = 2340; this.expression(); } } - this.state = 2314; + this.state = 2345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2315; + this.state = 2346; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10722,30 +10901,30 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2317; + this.state = 2348; this.functionNamePath(); - this.state = 2318; + this.state = 2349; this.match(ImpalaSqlParser.LPAREN); - this.state = 2319; + this.state = 2350; this.match(ImpalaSqlParser.ASTERISK); - this.state = 2320; + this.state = 2351; this.match(ImpalaSqlParser.RPAREN); - this.state = 2322; + this.state = 2353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2321; + this.state = 2352; this.filter(); } break; } - this.state = 2325; + this.state = 2356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { case 1: { - this.state = 2324; + this.state = 2355; this.over(); } break; @@ -10757,94 +10936,94 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2327; + this.state = 2358; this.functionNamePath(); - this.state = 2328; + this.state = 2359; this.match(ImpalaSqlParser.LPAREN); - this.state = 2340; + this.state = 2371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2330; + this.state = 2361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 2329; + this.state = 2360; this.setQuantifier(); } } - this.state = 2332; + this.state = 2363; this.expression(); - this.state = 2337; + this.state = 2368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2333; + this.state = 2364; this.match(ImpalaSqlParser.COMMA); - this.state = 2334; + this.state = 2365; this.expression(); } } - this.state = 2339; + this.state = 2370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2352; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2342; + this.state = 2373; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2343; + this.state = 2374; this.match(ImpalaSqlParser.KW_BY); - this.state = 2344; + this.state = 2375; this.sortItem(); - this.state = 2349; + this.state = 2380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2345; + this.state = 2376; this.match(ImpalaSqlParser.COMMA); - this.state = 2346; + this.state = 2377; this.sortItem(); } } - this.state = 2351; + this.state = 2382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2354; + this.state = 2385; this.match(ImpalaSqlParser.RPAREN); - this.state = 2356; + this.state = 2387; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2355; + this.state = 2386; this.filter(); } break; } - this.state = 2359; + this.state = 2390; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2358; + this.state = 2389; this.over(); } break; @@ -10856,11 +11035,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2361; + this.state = 2392; this.identifier(); - this.state = 2362; + this.state = 2393; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2363; + this.state = 2394; this.expression(); } break; @@ -10869,39 +11048,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2365; + this.state = 2396; this.match(ImpalaSqlParser.LPAREN); - this.state = 2374; + this.state = 2405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2366; + this.state = 2397; this.identifier(); - this.state = 2371; + this.state = 2402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2367; + this.state = 2398; this.match(ImpalaSqlParser.COMMA); - this.state = 2368; + this.state = 2399; this.identifier(); } } - this.state = 2373; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2376; + this.state = 2407; this.match(ImpalaSqlParser.RPAREN); - this.state = 2377; + this.state = 2408; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2378; + this.state = 2409; this.expression(); } break; @@ -10910,11 +11089,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2379; + this.state = 2410; this.match(ImpalaSqlParser.LPAREN); - this.state = 2380; + this.state = 2411; this.queryStatement(); - this.state = 2381; + this.state = 2412; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10923,13 +11102,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2383; + this.state = 2414; this.match(ImpalaSqlParser.KW_EXISTS); - this.state = 2384; + this.state = 2415; this.match(ImpalaSqlParser.LPAREN); - this.state = 2385; + this.state = 2416; this.queryStatement(); - this.state = 2386; + this.state = 2417; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10938,37 +11117,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2388; + this.state = 2419; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2389; + this.state = 2420; this.valueExpression(0); - this.state = 2391; + this.state = 2422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2390; + this.state = 2421; this.whenClause(); } } - this.state = 2393; + this.state = 2424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2397; + this.state = 2428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2395; + this.state = 2426; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2396; + this.state = 2427; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2399; + this.state = 2430; this.match(ImpalaSqlParser.KW_END); } break; @@ -10977,35 +11156,35 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2401; + this.state = 2432; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2403; + this.state = 2434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2402; + this.state = 2433; this.whenClause(); } } - this.state = 2405; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2409; + this.state = 2440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2407; + this.state = 2438; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2408; + this.state = 2439; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2411; + this.state = 2442; this.match(ImpalaSqlParser.KW_END); } break; @@ -11014,17 +11193,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2413; + this.state = 2444; this.match(ImpalaSqlParser.KW_CAST); - this.state = 2414; + this.state = 2445; this.match(ImpalaSqlParser.LPAREN); - this.state = 2415; + this.state = 2446; this.expression(); - this.state = 2416; + this.state = 2447; this.match(ImpalaSqlParser.KW_AS); - this.state = 2417; + this.state = 2448; this.type_(0); - this.state = 2418; + this.state = 2449; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11033,17 +11212,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2420; + this.state = 2451; this.match(ImpalaSqlParser.KW_TRY_CAST); - this.state = 2421; + this.state = 2452; this.match(ImpalaSqlParser.LPAREN); - this.state = 2422; + this.state = 2453; this.expression(); - this.state = 2423; + this.state = 2454; this.match(ImpalaSqlParser.KW_AS); - this.state = 2424; + this.state = 2455; this.type_(0); - this.state = 2425; + this.state = 2456; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11052,37 +11231,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2427; + this.state = 2458; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2428; + this.state = 2459; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2437; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2429; + this.state = 2460; this.expression(); - this.state = 2434; + this.state = 2465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2430; + this.state = 2461; this.match(ImpalaSqlParser.COMMA); - this.state = 2431; + this.state = 2462; this.expression(); } } - this.state = 2436; + this.state = 2467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2439; + this.state = 2470; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11091,7 +11270,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2440; + this.state = 2471; this.identifier(); } break; @@ -11100,7 +11279,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2441; + this.state = 2472; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11109,18 +11288,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2442; + this.state = 2473; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); - this.state = 2446; + this.state = 2477; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2443; + this.state = 2474; this.match(ImpalaSqlParser.LPAREN); - this.state = 2444; + this.state = 2475; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2445; + this.state = 2476; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11132,18 +11311,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2448; + this.state = 2479; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2452; + this.state = 2483; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 2449; + this.state = 2480; this.match(ImpalaSqlParser.LPAREN); - this.state = 2450; + this.state = 2481; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2451; + this.state = 2482; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11155,18 +11334,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2454; + this.state = 2485; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); - this.state = 2458; + this.state = 2489; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2455; + this.state = 2486; this.match(ImpalaSqlParser.LPAREN); - this.state = 2456; + this.state = 2487; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2457; + this.state = 2488; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11178,18 +11357,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2460; + this.state = 2491; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2464; + this.state = 2495; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { case 1: { - this.state = 2461; + this.state = 2492; this.match(ImpalaSqlParser.LPAREN); - this.state = 2462; + this.state = 2493; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2463; + this.state = 2494; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11201,7 +11380,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2466; + this.state = 2497; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11210,7 +11389,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2467; + this.state = 2498; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11219,29 +11398,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2468; + this.state = 2499; this.match(ImpalaSqlParser.KW_SUBSTRING); - this.state = 2469; + this.state = 2500; this.match(ImpalaSqlParser.LPAREN); - this.state = 2470; + this.state = 2501; this.valueExpression(0); - this.state = 2471; + this.state = 2502; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2472; + this.state = 2503; this.valueExpression(0); - this.state = 2475; + this.state = 2506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2473; + this.state = 2504; this.match(ImpalaSqlParser.KW_FOR); - this.state = 2474; + this.state = 2505; this.valueExpression(0); } } - this.state = 2477; + this.state = 2508; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11250,25 +11429,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2479; + this.state = 2510; this.match(ImpalaSqlParser.KW_NORMALIZE); - this.state = 2480; + this.state = 2511; this.match(ImpalaSqlParser.LPAREN); - this.state = 2481; + this.state = 2512; this.valueExpression(0); - this.state = 2484; + this.state = 2515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 2482; + this.state = 2513; this.match(ImpalaSqlParser.COMMA); - this.state = 2483; + this.state = 2514; this.normalForm(); } } - this.state = 2486; + this.state = 2517; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11277,17 +11456,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2488; + this.state = 2519; this.match(ImpalaSqlParser.KW_EXTRACT); - this.state = 2489; + this.state = 2520; this.match(ImpalaSqlParser.LPAREN); - this.state = 2490; + this.state = 2521; this.identifier(); - this.state = 2491; + this.state = 2522; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2492; + this.state = 2523; this.valueExpression(0); - this.state = 2493; + this.state = 2524; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11296,11 +11475,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2495; + this.state = 2526; this.match(ImpalaSqlParser.LPAREN); - this.state = 2496; + this.state = 2527; this.expression(); - this.state = 2497; + this.state = 2528; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11309,45 +11488,45 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2499; + this.state = 2530; this.match(ImpalaSqlParser.KW_GROUPING); - this.state = 2500; + this.state = 2531; this.match(ImpalaSqlParser.LPAREN); - this.state = 2509; + this.state = 2540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2501; + this.state = 2532; this.qualifiedName(); - this.state = 2506; + this.state = 2537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2502; + this.state = 2533; this.match(ImpalaSqlParser.COMMA); - this.state = 2503; + this.state = 2534; this.qualifiedName(); } } - this.state = 2508; + this.state = 2539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2511; + this.state = 2542; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2524; + this.state = 2555; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11355,23 +11534,23 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2522; + this.state = 2553; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2514; + this.state = 2545; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2515; + this.state = 2546; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2516; + this.state = 2547; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2517; + this.state = 2548; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11380,22 +11559,22 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2519; + this.state = 2550; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2520; + this.state = 2551; this.match(ImpalaSqlParser.DOT); - this.state = 2521; + this.state = 2552; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2526; + this.state = 2557; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); } } } @@ -11415,16 +11594,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 318, ImpalaSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 330, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2533; + this.state = 2564; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2527; + this.state = 2558; this.match(ImpalaSqlParser.STRING); } break; @@ -11432,16 +11611,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2528; + this.state = 2559; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2531; + this.state = 2562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2529; + this.state = 2560; this.match(ImpalaSqlParser.KW_UESCAPE); - this.state = 2530; + this.state = 2561; this.match(ImpalaSqlParser.STRING); } break; @@ -11468,12 +11647,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 320, ImpalaSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 332, ImpalaSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2535; + this.state = 2566; _la = this.tokenStream.LA(1); if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11500,12 +11679,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 322, ImpalaSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 334, ImpalaSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2537; + this.state = 2568; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 6 || _la === 181)) { this.errorHandler.recoverInline(this); @@ -11532,12 +11711,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 324, ImpalaSqlParser.RULE_booleanValue); + this.enterRule(localContext, 336, ImpalaSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2539; + this.state = 2570; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 194)) { this.errorHandler.recoverInline(this); @@ -11564,56 +11743,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 326, ImpalaSqlParser.RULE_interval); + this.enterRule(localContext, 338, ImpalaSqlParser.RULE_interval); try { - this.state = 2555; + this.state = 2586; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2541; + this.state = 2572; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2542; + this.state = 2573; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2543; + this.state = 2574; this.match(ImpalaSqlParser.LPAREN); - this.state = 2544; + this.state = 2575; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2545; + this.state = 2576; this.match(ImpalaSqlParser.RPAREN); - this.state = 2546; + this.state = 2577; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2547; + this.state = 2578; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2548; + this.state = 2579; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2549; + this.state = 2580; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2550; + this.state = 2581; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2551; + this.state = 2582; this.match(ImpalaSqlParser.LPAREN); - this.state = 2552; + this.state = 2583; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2553; + this.state = 2584; this.match(ImpalaSqlParser.RPAREN); - this.state = 2554; + this.state = 2585; this.intervalField(); } break; @@ -11635,12 +11814,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 328, ImpalaSqlParser.RULE_intervalField); + this.enterRule(localContext, 340, ImpalaSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2557; + this.state = 2588; _la = this.tokenStream.LA(1); if(!(_la === 48 || _la === 49 || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2147483651) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 7) !== 0) || _la === 172 || _la === 173 || _la === 217 || _la === 218)) { this.errorHandler.recoverInline(this); @@ -11667,12 +11846,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 330, ImpalaSqlParser.RULE_normalForm); + this.enterRule(localContext, 342, ImpalaSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2559; + this.state = 2590; _la = this.tokenStream.LA(1); if(!(((((_la - 127)) & ~0x1F) === 0 && ((1 << (_la - 127)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11709,120 +11888,120 @@ export class ImpalaSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 332; - this.enterRecursionRule(localContext, 332, ImpalaSqlParser.RULE_type, _p); + let _startState = 344; + this.enterRecursionRule(localContext, 344, ImpalaSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2606; + this.state = 2637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 2562; + this.state = 2593; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2563; + this.state = 2594; this.match(ImpalaSqlParser.LT); - this.state = 2564; + this.state = 2595; this.type_(0); - this.state = 2565; + this.state = 2596; this.match(ImpalaSqlParser.GT); } break; case 2: { - this.state = 2567; + this.state = 2598; this.match(ImpalaSqlParser.KW_MAP); - this.state = 2568; + this.state = 2599; this.match(ImpalaSqlParser.LT); - this.state = 2569; + this.state = 2600; this.type_(0); - this.state = 2570; + this.state = 2601; this.match(ImpalaSqlParser.COMMA); - this.state = 2571; + this.state = 2602; this.type_(0); - this.state = 2572; + this.state = 2603; this.match(ImpalaSqlParser.GT); } break; case 3: { - this.state = 2574; + this.state = 2605; this.match(ImpalaSqlParser.KW_STRUCT); - this.state = 2575; + this.state = 2606; this.match(ImpalaSqlParser.LT); - this.state = 2576; + this.state = 2607; this.identifier(); - this.state = 2577; + this.state = 2608; this.type_(0); - this.state = 2584; + this.state = 2615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2578; + this.state = 2609; this.match(ImpalaSqlParser.COMMA); - this.state = 2579; + this.state = 2610; this.identifier(); - this.state = 2580; + this.state = 2611; this.type_(0); } } - this.state = 2586; + this.state = 2617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2587; + this.state = 2618; this.match(ImpalaSqlParser.GT); } break; case 4: { - this.state = 2591; + this.state = 2622; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2589; + this.state = 2620; this.baseType(); } break; case 2: { - this.state = 2590; + this.state = 2621; this.dataType(); } break; } - this.state = 2604; + this.state = 2635; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 2593; + this.state = 2624; this.match(ImpalaSqlParser.LPAREN); - this.state = 2594; + this.state = 2625; this.typeParameter(); - this.state = 2599; + this.state = 2630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2595; + this.state = 2626; this.match(ImpalaSqlParser.COMMA); - this.state = 2596; + this.state = 2627; this.typeParameter(); } } - this.state = 2601; + this.state = 2632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2602; + this.state = 2633; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11831,9 +12010,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2612; + this.state = 2643; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 335, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11844,18 +12023,18 @@ export class ImpalaSqlParser extends SQLParserBase { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2608; + this.state = 2639; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2609; + this.state = 2640; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2614; + this.state = 2645; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 335, this.context); } } } @@ -11875,12 +12054,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 334, ImpalaSqlParser.RULE_dataType); + this.enterRule(localContext, 346, ImpalaSqlParser.RULE_dataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2646; _la = this.tokenStream.LA(1); if(!(_la === 8 || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 262143) !== 0))) { this.errorHandler.recoverInline(this); @@ -11907,15 +12086,15 @@ export class ImpalaSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 336, ImpalaSqlParser.RULE_typeParameter); + this.enterRule(localContext, 348, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2619; + this.state = 2650; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2648; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -11980,7 +12159,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2618; + this.state = 2649; this.type_(0); } break; @@ -12004,29 +12183,29 @@ export class ImpalaSqlParser extends SQLParserBase { } public baseType(): BaseTypeContext { let localContext = new BaseTypeContext(this.context, this.state); - this.enterRule(localContext, 338, ImpalaSqlParser.RULE_baseType); + this.enterRule(localContext, 350, ImpalaSqlParser.RULE_baseType); try { - this.state = 2625; + this.state = 2656; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2621; + this.state = 2652; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2622; + this.state = 2653; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2623; + this.state = 2654; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -12070,7 +12249,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2624; + this.state = 2655; this.identifier(); } break; @@ -12094,17 +12273,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 340, ImpalaSqlParser.RULE_whenClause); + this.enterRule(localContext, 352, ImpalaSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2627; + this.state = 2658; this.match(ImpalaSqlParser.KW_WHEN); - this.state = 2628; + this.state = 2659; localContext._condition = this.expression(); - this.state = 2629; + this.state = 2660; this.match(ImpalaSqlParser.KW_THEN); - this.state = 2630; + this.state = 2661; localContext._result = this.expression(); } } @@ -12124,19 +12303,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 342, ImpalaSqlParser.RULE_filter); + this.enterRule(localContext, 354, ImpalaSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 2632; + this.state = 2663; this.match(ImpalaSqlParser.KW_FILTER); - this.state = 2633; + this.state = 2664; this.match(ImpalaSqlParser.LPAREN); - this.state = 2634; + this.state = 2665; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 2635; + this.state = 2666; this.booleanExpression(0); - this.state = 2636; + this.state = 2667; this.match(ImpalaSqlParser.RPAREN); } } @@ -12156,88 +12335,88 @@ export class ImpalaSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 344, ImpalaSqlParser.RULE_over); + this.enterRule(localContext, 356, ImpalaSqlParser.RULE_over); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2638; + this.state = 2669; this.match(ImpalaSqlParser.KW_OVER); - this.state = 2639; + this.state = 2670; this.match(ImpalaSqlParser.LPAREN); - this.state = 2650; + this.state = 2681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 2640; + this.state = 2671; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 2641; + this.state = 2672; this.match(ImpalaSqlParser.KW_BY); - this.state = 2642; + this.state = 2673; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2647; + this.state = 2678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2643; + this.state = 2674; this.match(ImpalaSqlParser.COMMA); - this.state = 2644; + this.state = 2675; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2649; + this.state = 2680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2662; + this.state = 2693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2652; + this.state = 2683; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2653; + this.state = 2684; this.match(ImpalaSqlParser.KW_BY); - this.state = 2654; + this.state = 2685; this.sortItem(); - this.state = 2659; + this.state = 2690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2655; + this.state = 2686; this.match(ImpalaSqlParser.COMMA); - this.state = 2656; + this.state = 2687; this.sortItem(); } } - this.state = 2661; + this.state = 2692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2665; + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154 || _la === 169) { { - this.state = 2664; + this.state = 2695; this.windowFrame(); } } - this.state = 2667; + this.state = 2698; this.match(ImpalaSqlParser.RPAREN); } } @@ -12257,56 +12436,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 346, ImpalaSqlParser.RULE_windowFrame); + this.enterRule(localContext, 358, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2685; + this.state = 2716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2669; + this.state = 2700; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2670; + this.state = 2701; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2671; + this.state = 2702; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2672; + this.state = 2703; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2673; + this.state = 2704; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2674; + this.state = 2705; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2675; + this.state = 2706; localContext._start_ = this.frameBound(); - this.state = 2676; + this.state = 2707; this.match(ImpalaSqlParser.KW_AND); - this.state = 2677; + this.state = 2708; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2679; + this.state = 2710; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2680; + this.state = 2711; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2681; + this.state = 2712; localContext._start_ = this.frameBound(); - this.state = 2682; + this.state = 2713; this.match(ImpalaSqlParser.KW_AND); - this.state = 2683; + this.state = 2714; localContext._end = this.frameBound(); } break; @@ -12328,19 +12507,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 348, ImpalaSqlParser.RULE_frameBound); + this.enterRule(localContext, 360, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2696; + this.state = 2727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2687; + this.state = 2718; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2688; + this.state = 2719; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12348,9 +12527,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2689; + this.state = 2720; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2690; + this.state = 2721; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12358,9 +12537,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2691; + this.state = 2722; this.match(ImpalaSqlParser.KW_CURRENT); - this.state = 2692; + this.state = 2723; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12368,9 +12547,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2693; + this.state = 2724; this.expression(); - this.state = 2694; + this.state = 2725; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 77 || _la === 149)) { @@ -12400,20 +12579,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 350, ImpalaSqlParser.RULE_pathElement); + this.enterRule(localContext, 362, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2703; + this.state = 2734; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2698; + this.state = 2729; this.identifier(); - this.state = 2699; + this.state = 2730; this.match(ImpalaSqlParser.DOT); - this.state = 2700; + this.state = 2731; this.identifier(); } break; @@ -12421,7 +12600,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2702; + this.state = 2733; this.identifier(); } break; @@ -12443,26 +12622,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 352, ImpalaSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 364, ImpalaSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2705; + this.state = 2736; this.pathElement(); - this.state = 2710; + this.state = 2741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2706; + this.state = 2737; this.match(ImpalaSqlParser.COMMA); - this.state = 2707; + this.state = 2738; this.pathElement(); } } - this.state = 2712; + this.state = 2743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12484,69 +12663,69 @@ export class ImpalaSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 354, ImpalaSqlParser.RULE_privilege); + this.enterRule(localContext, 366, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2726; + this.state = 2757; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2713; + this.state = 2744; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2714; + this.state = 2745; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2715; + this.state = 2746; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2716; + this.state = 2747; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2717; + this.state = 2748; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2718; + this.state = 2749; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2719; + this.state = 2750; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2724; + this.state = 2755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2720; + this.state = 2751; this.match(ImpalaSqlParser.LPAREN); - this.state = 2721; + this.state = 2752; localContext._columnName = this.identifier(); - this.state = 2722; + this.state = 2753; this.match(ImpalaSqlParser.RPAREN); } } @@ -12573,12 +12752,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public objectType(): ObjectTypeContext { let localContext = new ObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 356, ImpalaSqlParser.RULE_objectType); + this.enterRule(localContext, 368, ImpalaSqlParser.RULE_objectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2728; + this.state = 2759; _la = this.tokenStream.LA(1); if(!(_la === 46 || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 2147484673) !== 0))) { this.errorHandler.recoverInline(this); @@ -12605,30 +12784,30 @@ export class ImpalaSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 358, ImpalaSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 370, ImpalaSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2730; + this.state = 2761; this.identifier(); - this.state = 2735; + this.state = 2766; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2731; + this.state = 2762; this.match(ImpalaSqlParser.DOT); - this.state = 2732; + this.state = 2763; this.identifier(); } } } - this.state = 2737; + this.state = 2768; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); } } } @@ -12648,18 +12827,18 @@ export class ImpalaSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 360, ImpalaSqlParser.RULE_principal); + this.enterRule(localContext, 372, ImpalaSqlParser.RULE_principal); try { - this.state = 2744; + this.state = 2775; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2738; + this.state = 2769; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 2739; + this.state = 2770; this.identifier(); } break; @@ -12667,9 +12846,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2740; + this.state = 2771; this.match(ImpalaSqlParser.KW_USER); - this.state = 2741; + this.state = 2772; this.identifier(); } break; @@ -12677,9 +12856,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2742; + this.state = 2773; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 2743; + this.state = 2774; this.identifier(); } break; @@ -12703,16 +12882,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 362, ImpalaSqlParser.RULE_identifier); + this.enterRule(localContext, 374, ImpalaSqlParser.RULE_identifier); try { - this.state = 2751; + this.state = 2782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2746; + this.state = 2777; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -12720,7 +12899,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2747; + this.state = 2778; this.match(ImpalaSqlParser.STRING); } break; @@ -12761,7 +12940,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2748; + this.state = 2779; this.nonReserved(); } break; @@ -12769,7 +12948,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2749; + this.state = 2780; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -12777,7 +12956,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2750; + this.state = 2781; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -12801,27 +12980,27 @@ export class ImpalaSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 364, ImpalaSqlParser.RULE_number); + this.enterRule(localContext, 376, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2765; + this.state = 2796; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2754; + this.state = 2785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2753; + this.state = 2784; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2756; + this.state = 2787; this.match(ImpalaSqlParser.DECIMAL_VALUE); } break; @@ -12829,17 +13008,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2758; + this.state = 2789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2757; + this.state = 2788; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2760; + this.state = 2791; this.match(ImpalaSqlParser.DOUBLE_VALUE); } break; @@ -12847,17 +13026,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2762; + this.state = 2793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2761; + this.state = 2792; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2764; + this.state = 2795; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12879,12 +13058,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 366, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 378, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2767; + this.state = 2798; _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 1085443) !== 0) || _la === 68 || _la === 91 || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 1281) !== 0) || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 67125377) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 2097409) !== 0))) { this.errorHandler.recoverInline(this); @@ -12911,12 +13090,12 @@ export class ImpalaSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 368, ImpalaSqlParser.RULE_nonReserved); + this.enterRule(localContext, 380, ImpalaSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2800; _la = this.tokenStream.LA(1); if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0))) { this.errorHandler.recoverInline(this); @@ -12948,15 +13127,15 @@ export class ImpalaSqlParser extends SQLParserBase { return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); case 132: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 142: + case 147: return this.relation_sempred(localContext as RelationContext, predIndex); - case 155: + case 161: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 157: + case 163: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 158: + case 164: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 166: + case 172: return this.type_sempred(localContext as TypeContext, predIndex); } return true; @@ -13022,7 +13201,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,289,2772,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,289,2803,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, @@ -13052,241 +13231,244 @@ export class ImpalaSqlParser extends SQLParserBase { 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,1,0,5,0,372,8,0, - 10,0,12,0,375,9,0,1,0,1,0,1,1,1,1,3,1,381,8,1,1,2,1,2,1,2,1,2,1, + 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,1,0,5,0,384, + 8,0,10,0,12,0,387,9,0,1,0,1,0,1,1,1,1,3,1,393,8,1,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,3,2,405,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3, - 4,418,8,4,1,5,1,5,3,5,422,8,5,1,5,1,5,3,5,426,8,5,1,5,1,5,1,5,1, - 5,1,5,5,5,433,8,5,10,5,12,5,436,9,5,1,5,1,5,3,5,440,8,5,1,5,1,5, - 3,5,444,8,5,1,5,1,5,1,5,1,5,3,5,450,8,5,3,5,452,8,5,1,5,1,5,1,5, - 3,5,457,8,5,1,6,1,6,3,6,461,8,6,1,6,1,6,3,6,465,8,6,1,6,1,6,1,6, - 1,6,1,6,3,6,472,8,6,1,6,1,6,1,6,3,6,477,8,6,1,6,1,6,1,7,1,7,3,7, - 483,8,7,1,7,1,7,3,7,487,8,7,1,7,1,7,1,7,1,7,1,7,5,7,494,8,7,10,7, - 12,7,497,9,7,1,7,1,7,1,7,1,7,3,7,503,8,7,1,7,1,7,3,7,507,8,7,1,7, - 1,7,1,7,3,7,512,8,7,3,7,514,8,7,1,7,1,7,1,7,3,7,519,8,7,1,7,3,7, - 522,8,7,1,7,1,7,1,7,1,7,1,7,3,7,529,8,7,1,7,1,7,3,7,533,8,7,1,8, - 1,8,1,8,3,8,538,8,8,1,8,1,8,3,8,542,8,8,1,8,3,8,545,8,8,1,8,1,8, - 3,8,549,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,557,8,9,1,9,1,9,3,9,561, - 8,9,1,9,1,9,3,9,565,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,573,8, - 11,1,11,1,11,3,11,577,8,11,1,11,1,11,1,11,1,11,1,11,5,11,584,8,11, - 10,11,12,11,587,9,11,3,11,589,8,11,1,11,3,11,592,8,11,1,11,1,11, - 1,11,1,11,3,11,598,8,11,1,11,1,11,1,11,1,11,1,11,3,11,605,8,11,1, - 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,616,8,11,1,11,1, - 11,1,11,3,11,621,8,11,1,11,1,11,1,11,3,11,626,8,11,1,11,1,11,1,11, - 3,11,631,8,11,1,12,1,12,1,12,3,12,636,8,12,1,12,1,12,1,12,1,12,1, - 12,5,12,643,8,12,10,12,12,12,646,9,12,3,12,648,8,12,1,12,3,12,651, - 8,12,1,12,1,12,3,12,655,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13, + 2,1,2,1,2,3,2,417,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, + 4,3,4,430,8,4,1,5,1,5,3,5,434,8,5,1,5,1,5,3,5,438,8,5,1,5,1,5,1, + 5,1,5,1,5,5,5,445,8,5,10,5,12,5,448,9,5,1,5,1,5,3,5,452,8,5,1,5, + 1,5,3,5,456,8,5,1,5,1,5,1,5,1,5,3,5,462,8,5,3,5,464,8,5,1,5,1,5, + 1,5,3,5,469,8,5,1,6,1,6,3,6,473,8,6,1,6,1,6,3,6,477,8,6,1,6,1,6, + 1,6,1,6,1,6,3,6,484,8,6,1,6,1,6,1,6,3,6,489,8,6,1,6,1,6,1,7,1,7, + 3,7,495,8,7,1,7,1,7,3,7,499,8,7,1,7,1,7,1,7,1,7,1,7,5,7,506,8,7, + 10,7,12,7,509,9,7,1,7,1,7,1,7,1,7,3,7,515,8,7,1,7,1,7,3,7,519,8, + 7,1,7,1,7,1,7,3,7,524,8,7,3,7,526,8,7,1,7,1,7,1,7,3,7,531,8,7,1, + 7,3,7,534,8,7,1,7,1,7,1,7,1,7,1,7,3,7,541,8,7,1,7,1,7,3,7,545,8, + 7,1,8,1,8,1,8,3,8,550,8,8,1,8,1,8,3,8,554,8,8,1,8,3,8,557,8,8,1, + 8,1,8,3,8,561,8,8,1,8,1,8,1,8,1,9,1,9,1,9,3,9,569,8,9,1,9,1,9,3, + 9,573,8,9,1,9,1,9,3,9,577,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11, + 585,8,11,1,11,1,11,3,11,589,8,11,1,11,1,11,1,11,1,11,1,11,5,11,596, + 8,11,10,11,12,11,599,9,11,3,11,601,8,11,1,11,3,11,604,8,11,1,11, + 1,11,1,11,1,11,3,11,610,8,11,1,11,1,11,1,11,1,11,1,11,3,11,617,8, + 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,628,8,11,1, + 11,1,11,1,11,3,11,633,8,11,1,11,1,11,1,11,3,11,638,8,11,1,11,1,11, + 1,11,3,11,643,8,11,1,12,1,12,1,12,3,12,648,8,12,1,12,1,12,1,12,1, + 12,1,12,5,12,655,8,12,10,12,12,12,658,9,12,3,12,660,8,12,1,12,3, + 12,663,8,12,1,12,1,12,3,12,667,8,12,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,13,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,3,13,681,8,13,1,14,1,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 1,15,1,15,1,15,1,15,1,15,3,15,707,8,15,1,15,1,15,1,16,1,16,1,16, - 1,16,1,16,3,16,716,8,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16, - 3,16,726,8,16,1,16,3,16,729,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1, - 17,1,18,1,18,1,18,1,18,1,18,3,18,743,8,18,1,18,1,18,1,19,1,19,1, - 19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,761, - 8,20,3,20,763,8,20,1,20,1,20,1,20,1,20,1,20,5,20,770,8,20,10,20, - 12,20,773,9,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,783, - 8,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,3,22,792,8,22,1,22,1,22, - 1,22,1,22,1,22,3,22,799,8,22,1,22,1,22,3,22,803,8,22,1,23,1,23,1, - 23,1,23,1,23,3,23,810,8,23,1,23,1,23,1,23,1,23,3,23,816,8,23,1,23, - 3,23,819,8,23,1,23,1,23,1,23,3,23,824,8,23,1,24,1,24,1,24,1,24,1, - 24,3,24,831,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1, - 24,1,24,1,24,3,24,845,8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1, - 26,1,26,1,26,1,26,3,26,858,8,26,1,26,1,26,1,26,3,26,863,8,26,1,26, - 1,26,1,26,3,26,868,8,26,1,27,1,27,1,27,1,27,3,27,874,8,27,1,27,1, - 27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1, - 29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1, - 31,1,31,1,31,1,31,1,31,1,32,1,32,3,32,910,8,32,1,32,3,32,913,8,32, - 1,32,1,32,1,33,1,33,3,33,919,8,33,1,33,3,33,922,8,33,1,33,1,33,1, - 34,1,34,3,34,928,8,34,1,35,1,35,1,35,1,35,3,35,934,8,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,946,8,35,3,35,948,8, - 35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,959,8,36,1, - 37,1,37,1,37,1,37,1,37,1,37,3,37,967,8,37,1,38,1,38,1,38,3,38,972, - 8,38,1,38,1,38,3,38,976,8,38,1,39,1,39,1,39,3,39,981,8,39,1,39,1, - 39,1,40,1,40,1,40,3,40,988,8,40,1,40,1,40,3,40,992,8,40,1,41,1,41, - 3,41,996,8,41,1,41,1,41,1,41,1,41,3,41,1002,8,41,1,42,1,42,3,42, - 1006,8,42,1,42,1,42,3,42,1010,8,42,1,42,1,42,1,42,1,42,1,42,5,42, - 1017,8,42,10,42,12,42,1020,9,42,3,42,1022,8,42,1,42,3,42,1025,8, - 42,1,43,1,43,1,43,1,43,1,44,1,44,3,44,1033,8,44,1,45,1,45,1,45,1, - 45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,3,46,1047,8,46,1,46,1, - 46,1,46,1,47,1,47,3,47,1054,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1, - 48,1,49,1,49,1,49,1,49,3,49,1067,8,49,1,49,1,49,1,49,1,49,3,49,1073, - 8,49,1,49,1,49,1,49,3,49,1078,8,49,1,49,3,49,1081,8,49,1,50,3,50, - 1084,8,50,1,50,1,50,1,50,3,50,1089,8,50,1,50,1,50,3,50,1093,8,50, - 1,50,1,50,1,50,1,50,1,50,5,50,1100,8,50,10,50,12,50,1103,9,50,1, - 50,1,50,3,50,1107,8,50,1,50,1,50,1,51,1,51,3,51,1113,8,51,1,52,1, - 52,3,52,1117,8,52,1,52,1,52,1,52,3,52,1122,8,52,1,53,1,53,1,53,3, - 53,1127,8,53,1,53,3,53,1130,8,53,1,53,1,53,1,53,1,53,5,53,1136,8, - 53,10,53,12,53,1139,9,53,3,53,1141,8,53,1,53,1,53,3,53,1145,8,53, - 1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,5,54,1155,8,54,10,54,12, - 54,1158,9,54,3,54,1160,8,54,1,54,1,54,3,54,1164,8,54,1,55,1,55,1, - 55,3,55,1169,8,55,1,55,1,55,3,55,1173,8,55,1,55,1,55,1,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,1189,8,56,1, - 57,1,57,1,57,3,57,1194,8,57,1,57,1,57,1,57,5,57,1199,8,57,10,57, - 12,57,1202,9,57,3,57,1204,8,57,1,58,1,58,1,58,1,58,3,58,1210,8,58, - 1,58,3,58,1213,8,58,1,58,1,58,1,58,5,58,1218,8,58,10,58,12,58,1221, - 9,58,3,58,1223,8,58,1,59,1,59,3,59,1227,8,59,1,59,1,59,1,59,3,59, - 1232,8,59,1,59,3,59,1235,8,59,1,59,1,59,1,59,5,59,1240,8,59,10,59, - 12,59,1243,9,59,3,59,1245,8,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61, + 1,13,1,13,1,13,1,13,1,13,3,13,693,8,13,1,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,15,1,15,1,15,1,15,1,15,3,15,719,8,15,1,15,1,15,1,16,1,16, + 1,16,1,16,1,16,3,16,728,8,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16, + 1,16,3,16,738,8,16,1,16,3,16,741,8,16,1,17,1,17,1,17,1,17,1,17,1, + 17,1,17,1,18,1,18,1,18,1,18,1,18,3,18,755,8,18,1,18,1,18,1,19,1, + 19,1,19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3, + 20,773,8,20,3,20,775,8,20,1,20,1,20,1,20,1,20,1,20,5,20,782,8,20, + 10,20,12,20,785,9,20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21, + 795,8,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,3,22,804,8,22,1,22,1, + 22,1,22,1,22,1,22,3,22,811,8,22,1,22,1,22,3,22,815,8,22,1,23,1,23, + 1,23,1,23,1,23,3,23,822,8,23,1,23,1,23,1,23,1,23,3,23,828,8,23,1, + 23,3,23,831,8,23,1,23,1,23,1,23,3,23,836,8,23,1,24,1,24,1,24,1,24, + 1,24,3,24,843,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, + 1,24,1,24,1,24,3,24,857,8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26, + 1,26,1,26,1,26,1,26,3,26,870,8,26,1,26,1,26,1,26,3,26,875,8,26,1, + 26,1,26,1,26,3,26,880,8,26,1,27,1,27,1,27,1,27,3,27,886,8,27,1,27, + 1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29, + 1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31, + 1,31,1,31,1,31,1,31,1,31,1,32,1,32,3,32,922,8,32,1,32,3,32,925,8, + 32,1,32,1,32,1,33,1,33,3,33,931,8,33,1,33,3,33,934,8,33,1,33,1,33, + 1,34,1,34,3,34,940,8,34,1,35,1,35,1,35,1,35,3,35,946,8,35,1,35,1, + 35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,958,8,35,3,35,960, + 8,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,971,8,36, + 1,37,1,37,1,37,1,37,1,37,1,37,3,37,979,8,37,1,38,1,38,1,38,3,38, + 984,8,38,1,38,1,38,3,38,988,8,38,1,39,1,39,1,39,3,39,993,8,39,1, + 39,1,39,1,40,1,40,1,40,3,40,1000,8,40,1,40,1,40,3,40,1004,8,40,1, + 41,1,41,3,41,1008,8,41,1,41,1,41,1,41,1,41,3,41,1014,8,41,1,42,1, + 42,3,42,1018,8,42,1,42,1,42,3,42,1022,8,42,1,42,1,42,1,42,1,42,1, + 42,5,42,1029,8,42,10,42,12,42,1032,9,42,3,42,1034,8,42,1,42,3,42, + 1037,8,42,1,43,1,43,1,43,1,43,1,44,1,44,3,44,1045,8,44,1,45,1,45, + 1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,3,46,1059,8,46, + 1,46,1,46,1,46,1,47,1,47,3,47,1066,8,47,1,48,1,48,1,48,1,48,1,48, + 1,48,1,48,1,49,1,49,1,49,1,49,3,49,1079,8,49,1,49,1,49,1,49,1,49, + 3,49,1085,8,49,1,49,1,49,1,49,3,49,1090,8,49,1,49,3,49,1093,8,49, + 1,50,3,50,1096,8,50,1,50,1,50,1,50,3,50,1101,8,50,1,50,1,50,3,50, + 1105,8,50,1,50,1,50,1,50,1,50,1,50,5,50,1112,8,50,10,50,12,50,1115, + 9,50,1,50,1,50,3,50,1119,8,50,1,50,1,50,1,51,1,51,3,51,1125,8,51, + 1,52,1,52,3,52,1129,8,52,1,52,1,52,1,52,3,52,1134,8,52,1,53,1,53, + 1,53,3,53,1139,8,53,1,53,3,53,1142,8,53,1,53,1,53,1,53,1,53,5,53, + 1148,8,53,10,53,12,53,1151,9,53,3,53,1153,8,53,1,53,1,53,3,53,1157, + 8,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,5,54,1167,8,54,10,54, + 12,54,1170,9,54,3,54,1172,8,54,1,54,1,54,3,54,1176,8,54,1,55,1,55, + 1,55,3,55,1181,8,55,1,55,1,55,3,55,1185,8,55,1,55,1,55,1,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,1201,8,56, + 1,57,1,57,1,57,3,57,1206,8,57,1,57,1,57,1,57,5,57,1211,8,57,10,57, + 12,57,1214,9,57,3,57,1216,8,57,1,58,1,58,1,58,1,58,3,58,1222,8,58, + 1,58,3,58,1225,8,58,1,58,1,58,1,58,5,58,1230,8,58,10,58,12,58,1233, + 9,58,3,58,1235,8,58,1,59,1,59,3,59,1239,8,59,1,59,1,59,1,59,3,59, + 1244,8,59,1,59,3,59,1247,8,59,1,59,1,59,1,59,5,59,1252,8,59,10,59, + 12,59,1255,9,59,3,59,1257,8,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61, 1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63, - 1,64,1,64,3,64,1269,8,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65, - 1,65,1,65,1,65,1,65,3,65,1283,8,65,1,65,1,65,3,65,1287,8,65,1,66, - 1,66,3,66,1291,8,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,68, - 1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,1311,8,68,3,68, - 1313,8,68,3,68,1315,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69, - 1324,8,69,3,69,1326,8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70, - 1335,8,70,3,70,1337,8,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71, - 1346,8,71,3,71,1348,8,71,1,72,1,72,1,72,3,72,1353,8,72,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,3,73,1362,8,73,1,74,1,74,1,74,1,74,1,74, - 1,74,1,74,3,74,1371,8,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75, - 1380,8,75,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,3,77,1391, - 8,77,1,78,1,78,1,78,1,78,3,78,1397,8,78,1,78,1,78,1,78,3,78,1402, - 8,78,1,78,3,78,1405,8,78,1,78,1,78,1,79,1,79,1,79,1,79,1,80,1,80, - 1,80,1,80,1,80,3,80,1418,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, - 1,80,3,80,1428,8,80,1,80,1,80,3,80,1432,8,80,1,81,1,81,1,81,3,81, - 1437,8,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,5,82,1446,8,82,10,82, - 12,82,1449,9,82,1,82,1,82,3,82,1453,8,82,1,83,1,83,1,83,1,84,1,84, + 1,64,1,64,3,64,1281,8,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65, + 1,65,1,65,1,65,1,65,3,65,1295,8,65,1,65,1,65,3,65,1299,8,65,1,66, + 1,66,3,66,1303,8,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,68, + 1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,1323,8,68,3,68, + 1325,8,68,3,68,1327,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69, + 1336,8,69,3,69,1338,8,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70, + 1347,8,70,3,70,1349,8,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71, + 1358,8,71,3,71,1360,8,71,1,72,1,72,1,72,3,72,1365,8,72,1,73,1,73, + 1,73,1,73,1,73,1,73,1,73,3,73,1374,8,73,1,74,1,74,1,74,1,74,1,74, + 1,74,1,74,3,74,1383,8,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75, + 1392,8,75,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,3,77,1403, + 8,77,1,78,1,78,1,78,1,78,3,78,1409,8,78,1,78,1,78,1,78,3,78,1414, + 8,78,1,78,3,78,1417,8,78,1,78,1,78,1,79,1,79,1,79,1,79,1,80,1,80, + 1,80,1,80,1,80,3,80,1430,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, + 1,80,3,80,1440,8,80,1,80,1,80,3,80,1444,8,80,1,81,1,81,1,81,3,81, + 1449,8,81,1,82,1,82,1,82,1,82,1,82,1,82,1,82,5,82,1458,8,82,10,82, + 12,82,1461,9,82,1,82,1,82,3,82,1465,8,82,1,83,1,83,1,83,1,84,1,84, 1,84,1,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,87,1,87,1,88,1,88, - 1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,1,93,1,93,1,93,5,93,1484, - 8,93,10,93,12,93,1487,9,93,1,94,1,94,1,94,5,94,1492,8,94,10,94,12, - 94,1495,9,94,1,95,1,95,3,95,1499,8,95,1,96,1,96,3,96,1503,8,96,1, - 97,1,97,3,97,1507,8,97,1,98,1,98,1,98,3,98,1512,8,98,1,98,3,98,1515, - 8,98,1,98,1,98,1,98,3,98,1520,8,98,1,98,1,98,1,98,3,98,1525,8,98, - 1,98,1,98,1,98,3,98,1530,8,98,1,98,1,98,3,98,1534,8,98,1,98,1,98, - 1,98,1,98,1,98,1,98,1,98,3,98,1543,8,98,1,98,3,98,1546,8,98,1,98, - 1,98,3,98,1550,8,98,1,99,1,99,1,99,5,99,1555,8,99,10,99,12,99,1558, - 9,99,1,100,1,100,1,100,1,100,1,101,1,101,3,101,1566,8,101,1,101, - 1,101,3,101,1570,8,101,5,101,1572,8,101,10,101,12,101,1575,9,101, - 1,101,1,101,1,102,1,102,3,102,1581,8,102,1,103,3,103,1584,8,103, - 1,103,1,103,1,104,1,104,1,104,1,104,5,104,1592,8,104,10,104,12,104, - 1595,9,104,1,105,1,105,1,105,1,105,3,105,1601,8,105,1,105,1,105, - 1,105,3,105,1606,8,105,1,105,1,105,1,105,3,105,1611,8,105,1,105, - 1,105,1,105,3,105,1616,8,105,1,105,1,105,5,105,1620,8,105,10,105, - 12,105,1623,9,105,3,105,1625,8,105,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,3,106,1634,8,106,1,106,3,106,1637,8,106,1,106,3,106, - 1640,8,106,1,107,1,107,1,107,1,107,3,107,1646,8,107,1,108,1,108, - 1,108,3,108,1651,8,108,1,109,1,109,1,110,1,110,1,110,1,110,5,110, - 1659,8,110,10,110,12,110,1662,9,110,3,110,1664,8,110,1,110,3,110, - 1667,8,110,1,110,1,110,3,110,1671,8,110,1,111,1,111,1,111,1,112, - 1,112,1,112,5,112,1679,8,112,10,112,12,112,1682,9,112,3,112,1684, - 8,112,1,113,1,113,1,113,1,113,3,113,1690,8,113,1,113,1,113,5,113, - 1694,8,113,10,113,12,113,1697,9,113,3,113,1699,8,113,1,114,3,114, - 1702,8,114,1,114,1,114,3,114,1706,8,114,1,115,1,115,1,115,1,115, - 1,115,1,115,1,115,1,115,3,115,1716,8,115,1,116,1,116,1,117,1,117, - 1,118,1,118,1,118,5,118,1725,8,118,10,118,12,118,1728,9,118,1,118, - 1,118,3,118,1732,8,118,1,118,3,118,1735,8,118,1,119,1,119,3,119, - 1739,8,119,1,119,1,119,1,119,1,120,1,120,3,120,1746,8,120,1,120, - 1,120,1,120,1,120,1,120,1,120,5,120,1754,8,120,10,120,12,120,1757, + 1,89,1,89,1,90,1,90,1,91,1,91,1,92,1,92,1,93,1,93,1,93,5,93,1496, + 8,93,10,93,12,93,1499,9,93,1,94,1,94,1,94,5,94,1504,8,94,10,94,12, + 94,1507,9,94,1,95,1,95,3,95,1511,8,95,1,96,1,96,3,96,1515,8,96,1, + 97,1,97,3,97,1519,8,97,1,98,1,98,1,98,3,98,1524,8,98,1,98,3,98,1527, + 8,98,1,98,1,98,1,98,3,98,1532,8,98,1,98,1,98,1,98,3,98,1537,8,98, + 1,98,1,98,1,98,3,98,1542,8,98,1,98,1,98,3,98,1546,8,98,1,98,1,98, + 1,98,1,98,1,98,1,98,1,98,3,98,1555,8,98,1,98,3,98,1558,8,98,1,98, + 1,98,3,98,1562,8,98,1,99,1,99,1,99,5,99,1567,8,99,10,99,12,99,1570, + 9,99,1,100,1,100,1,100,1,100,1,101,1,101,3,101,1578,8,101,1,101, + 1,101,3,101,1582,8,101,5,101,1584,8,101,10,101,12,101,1587,9,101, + 1,101,1,101,1,102,1,102,3,102,1593,8,102,1,103,3,103,1596,8,103, + 1,103,1,103,1,104,1,104,1,104,1,104,5,104,1604,8,104,10,104,12,104, + 1607,9,104,1,105,1,105,1,105,1,105,3,105,1613,8,105,1,105,1,105, + 1,105,3,105,1618,8,105,1,105,1,105,1,105,3,105,1623,8,105,1,105, + 1,105,1,105,3,105,1628,8,105,1,105,1,105,5,105,1632,8,105,10,105, + 12,105,1635,9,105,3,105,1637,8,105,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,3,106,1646,8,106,1,106,3,106,1649,8,106,1,106,3,106, + 1652,8,106,1,107,1,107,1,107,1,107,3,107,1658,8,107,1,108,1,108, + 1,108,3,108,1663,8,108,1,109,1,109,1,110,1,110,1,110,1,110,5,110, + 1671,8,110,10,110,12,110,1674,9,110,3,110,1676,8,110,1,110,3,110, + 1679,8,110,1,110,1,110,3,110,1683,8,110,1,111,1,111,1,111,1,112, + 1,112,1,112,5,112,1691,8,112,10,112,12,112,1694,9,112,3,112,1696, + 8,112,1,113,1,113,1,113,1,113,3,113,1702,8,113,1,113,1,113,5,113, + 1706,8,113,10,113,12,113,1709,9,113,3,113,1711,8,113,1,114,3,114, + 1714,8,114,1,114,1,114,3,114,1718,8,114,1,115,1,115,1,115,1,115, + 1,115,1,115,1,115,1,115,3,115,1728,8,115,1,116,1,116,1,117,1,117, + 1,118,1,118,1,118,5,118,1737,8,118,10,118,12,118,1740,9,118,1,118, + 1,118,3,118,1744,8,118,1,118,3,118,1747,8,118,1,119,1,119,3,119, + 1751,8,119,1,119,1,119,1,119,1,120,1,120,3,120,1758,8,120,1,120, + 1,120,1,120,1,120,1,120,1,120,5,120,1766,8,120,10,120,12,120,1769, 9,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, - 1768,8,121,1,121,1,121,1,121,1,121,3,121,1774,8,121,3,121,1776,8, - 121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1785,8,122,1, - 122,3,122,1788,8,122,1,123,1,123,1,123,1,123,1,123,3,123,1795,8, - 123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124,1805,8, - 124,1,125,1,125,1,125,1,125,3,125,1811,8,125,1,126,1,126,1,126,1, - 126,5,126,1817,8,126,10,126,12,126,1820,9,126,1,126,1,126,1,127, - 1,127,1,127,1,127,5,127,1828,8,127,10,127,12,127,1831,9,127,1,127, - 1,127,1,128,1,128,1,128,5,128,1838,8,128,10,128,12,128,1841,9,128, - 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,1851,8,129, - 3,129,1853,8,129,1,129,1,129,1,129,1,129,3,129,1859,8,129,1,130, - 1,130,1,130,3,130,1864,8,130,1,131,1,131,1,131,1,131,1,131,1,131, - 5,131,1872,8,131,10,131,12,131,1875,9,131,3,131,1877,8,131,1,131, - 1,131,1,131,1,131,3,131,1883,8,131,3,131,1885,8,131,1,132,1,132, - 1,132,1,132,1,132,1,132,3,132,1893,8,132,1,132,1,132,1,132,1,132, - 3,132,1899,8,132,1,132,5,132,1902,8,132,10,132,12,132,1905,9,132, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1914,8,133,10,133, - 12,133,1917,9,133,1,133,1,133,1,133,1,133,3,133,1923,8,133,1,134, - 1,134,3,134,1927,8,134,1,134,1,134,3,134,1931,8,134,1,135,1,135, - 3,135,1935,8,135,1,135,3,135,1938,8,135,1,135,1,135,1,135,5,135, - 1943,8,135,10,135,12,135,1946,9,135,1,135,1,135,1,135,1,135,5,135, - 1952,8,135,10,135,12,135,1955,9,135,3,135,1957,8,135,1,135,1,135, - 3,135,1961,8,135,1,135,1,135,1,135,3,135,1966,8,135,1,135,1,135, - 3,135,1970,8,135,1,136,3,136,1973,8,136,1,136,1,136,1,136,5,136, - 1978,8,136,10,136,12,136,1981,9,136,1,137,1,137,1,138,1,138,1,138, - 1,138,5,138,1989,8,138,10,138,12,138,1992,9,138,3,138,1994,8,138, - 1,138,1,138,3,138,1998,8,138,1,139,1,139,3,139,2002,8,139,1,139, - 1,139,1,139,1,140,1,140,1,141,1,141,3,141,2011,8,141,1,141,3,141, - 2014,8,141,1,141,1,141,1,141,1,141,1,141,3,141,2021,8,141,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,2035,8,142,5,142,2037,8,142,10,142,12,142,2040,9,142,1,143, - 3,143,2043,8,143,1,143,1,143,3,143,2047,8,143,1,143,1,143,3,143, - 2051,8,143,1,143,1,143,3,143,2055,8,143,1,143,1,143,3,143,2059,8, - 143,1,143,1,143,3,143,2063,8,143,1,143,1,143,1,143,1,143,1,143,1, - 143,1,143,1,143,3,143,2073,8,143,1,144,1,144,1,144,1,144,1,144,1, - 144,1,144,5,144,2082,8,144,10,144,12,144,2085,9,144,1,144,1,144, - 3,144,2089,8,144,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,3,145,2102,8,145,3,145,2104,8,145,1,146,1,146, - 1,147,1,147,3,147,2110,8,147,1,147,1,147,3,147,2114,8,147,3,147, - 2116,8,147,1,148,1,148,1,148,1,148,5,148,2122,8,148,10,148,12,148, - 2125,9,148,1,148,1,148,1,149,1,149,3,149,2131,8,149,1,149,1,149, - 1,149,3,149,2136,8,149,1,150,1,150,1,150,1,150,1,151,1,151,1,151, - 1,151,1,151,5,151,2147,8,151,10,151,12,151,2150,9,151,1,151,1,151, - 1,151,3,151,2155,8,151,1,152,1,152,1,152,1,152,1,153,1,153,3,153, - 2163,8,153,1,154,1,154,1,155,1,155,1,155,3,155,2170,8,155,1,155, - 1,155,3,155,2174,8,155,1,155,1,155,1,155,1,155,1,155,1,155,5,155, - 2182,8,155,10,155,12,155,2185,9,155,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,3,156,2195,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,3,156,2203,8,156,1,156,1,156,1,156,1,156,1,156,5,156,2210, - 8,156,10,156,12,156,2213,9,156,1,156,1,156,1,156,3,156,2218,8,156, - 1,156,1,156,1,156,3,156,2223,8,156,1,156,1,156,1,156,1,156,3,156, - 2229,8,156,1,156,1,156,1,156,1,156,3,156,2235,8,156,1,156,1,156, - 1,156,3,156,2240,8,156,1,156,1,156,1,156,3,156,2245,8,156,1,157, - 1,157,1,157,1,157,3,157,2251,8,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,5,157,2262,8,157,10,157,12,157,2265,9,157, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,3,158,2291,8,158,1,158,1,158,1,158,1,158,3,158,2297, - 8,158,5,158,2299,8,158,10,158,12,158,2302,9,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,5,158,2311,8,158,10,158,12,158,2314,9,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158,2323,8,158,1,158, - 3,158,2326,8,158,1,158,1,158,1,158,3,158,2331,8,158,1,158,1,158, - 1,158,5,158,2336,8,158,10,158,12,158,2339,9,158,3,158,2341,8,158, - 1,158,1,158,1,158,1,158,1,158,5,158,2348,8,158,10,158,12,158,2351, - 9,158,3,158,2353,8,158,1,158,1,158,3,158,2357,8,158,1,158,3,158, - 2360,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158, - 2370,8,158,10,158,12,158,2373,9,158,3,158,2375,8,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,4,158,2392,8,158,11,158,12,158,2393,1,158,1,158,3,158, - 2398,8,158,1,158,1,158,1,158,1,158,4,158,2404,8,158,11,158,12,158, - 2405,1,158,1,158,3,158,2410,8,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,5,158,2433,8,158,10,158,12,158,2436, - 9,158,3,158,2438,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 3,158,2447,8,158,1,158,1,158,1,158,1,158,3,158,2453,8,158,1,158, - 1,158,1,158,1,158,3,158,2459,8,158,1,158,1,158,1,158,1,158,3,158, - 2465,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 3,158,2476,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,3,158, - 2485,8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158,2505, - 8,158,10,158,12,158,2508,9,158,3,158,2510,8,158,1,158,3,158,2513, - 8,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,5,158,2523, - 8,158,10,158,12,158,2526,9,158,1,159,1,159,1,159,1,159,3,159,2532, - 8,159,3,159,2534,8,159,1,160,1,160,1,161,1,161,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,3,163,2556,8,163,1,164,1,164,1,165,1,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,5,166,2583,8,166, - 10,166,12,166,2586,9,166,1,166,1,166,1,166,1,166,3,166,2592,8,166, - 1,166,1,166,1,166,1,166,5,166,2598,8,166,10,166,12,166,2601,9,166, - 1,166,1,166,3,166,2605,8,166,3,166,2607,8,166,1,166,1,166,5,166, - 2611,8,166,10,166,12,166,2614,9,166,1,167,1,167,1,168,1,168,3,168, - 2620,8,168,1,169,1,169,1,169,1,169,3,169,2626,8,169,1,170,1,170, - 1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172, - 1,172,1,172,1,172,1,172,1,172,5,172,2646,8,172,10,172,12,172,2649, - 9,172,3,172,2651,8,172,1,172,1,172,1,172,1,172,1,172,5,172,2658, - 8,172,10,172,12,172,2661,9,172,3,172,2663,8,172,1,172,3,172,2666, - 8,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,3,173,2686,8,173, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2697, - 8,174,1,175,1,175,1,175,1,175,1,175,3,175,2704,8,175,1,176,1,176, - 1,176,5,176,2709,8,176,10,176,12,176,2712,9,176,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,2725,8,177, - 3,177,2727,8,177,1,178,1,178,1,179,1,179,1,179,5,179,2734,8,179, - 10,179,12,179,2737,9,179,1,180,1,180,1,180,1,180,1,180,1,180,3,180, - 2745,8,180,1,181,1,181,1,181,1,181,1,181,3,181,2752,8,181,1,182, - 3,182,2755,8,182,1,182,1,182,3,182,2759,8,182,1,182,1,182,3,182, - 2763,8,182,1,182,3,182,2766,8,182,1,183,1,183,1,184,1,184,1,184, - 10,771,1447,1621,1660,1680,1695,1726,1755,1829,2300,6,264,284,310, - 314,316,332,185,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, + 1780,8,121,1,121,1,121,1,121,1,121,3,121,1786,8,121,3,121,1788,8, + 121,1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1797,8,122,1, + 122,3,122,1800,8,122,1,123,1,123,1,123,1,123,1,123,3,123,1807,8, + 123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124,1817,8, + 124,1,125,1,125,1,125,1,125,3,125,1823,8,125,1,126,1,126,1,126,1, + 126,5,126,1829,8,126,10,126,12,126,1832,9,126,1,126,1,126,1,127, + 1,127,1,127,1,127,5,127,1840,8,127,10,127,12,127,1843,9,127,1,127, + 1,127,1,128,1,128,1,128,5,128,1850,8,128,10,128,12,128,1853,9,128, + 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,1863,8,129, + 3,129,1865,8,129,1,129,1,129,1,129,1,129,3,129,1871,8,129,1,130, + 1,130,1,130,3,130,1876,8,130,1,131,1,131,1,131,1,131,1,131,1,131, + 5,131,1884,8,131,10,131,12,131,1887,9,131,3,131,1889,8,131,1,131, + 1,131,1,131,1,131,3,131,1895,8,131,3,131,1897,8,131,1,132,1,132, + 1,132,1,132,1,132,1,132,3,132,1905,8,132,1,132,1,132,1,132,1,132, + 3,132,1911,8,132,1,132,5,132,1914,8,132,10,132,12,132,1917,9,132, + 1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1926,8,133,10,133, + 12,133,1929,9,133,1,133,1,133,1,133,1,133,3,133,1935,8,133,1,134, + 1,134,3,134,1939,8,134,1,134,1,134,3,134,1943,8,134,1,135,1,135, + 3,135,1947,8,135,1,135,3,135,1950,8,135,1,135,1,135,1,135,1,135, + 1,135,5,135,1957,8,135,10,135,12,135,1960,9,135,3,135,1962,8,135, + 1,135,1,135,3,135,1966,8,135,1,135,1,135,1,135,3,135,1971,8,135, + 1,135,1,135,3,135,1975,8,135,1,136,1,136,1,136,5,136,1980,8,136, + 10,136,12,136,1983,9,136,1,137,3,137,1986,8,137,1,137,1,137,1,137, + 5,137,1991,8,137,10,137,12,137,1994,9,137,1,138,1,138,1,139,1,139, + 1,139,1,139,5,139,2002,8,139,10,139,12,139,2005,9,139,3,139,2007, + 8,139,1,139,1,139,3,139,2011,8,139,1,140,1,140,3,140,2015,8,140, + 1,140,1,140,1,140,1,141,1,141,1,142,1,142,3,142,2024,8,142,1,142, + 1,142,3,142,2028,8,142,1,142,1,142,3,142,2032,8,142,3,142,2034,8, + 142,1,143,1,143,1,143,1,144,1,144,3,144,2041,8,144,1,145,1,145,1, + 146,1,146,1,146,3,146,2048,8,146,1,146,1,146,1,147,1,147,1,147,1, + 147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,3,147,2064,8, + 147,5,147,2066,8,147,10,147,12,147,2069,9,147,1,148,3,148,2072,8, + 148,1,148,1,148,3,148,2076,8,148,1,148,1,148,3,148,2080,8,148,1, + 148,1,148,3,148,2084,8,148,1,148,1,148,3,148,2088,8,148,1,148,1, + 148,3,148,2092,8,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1, + 148,3,148,2102,8,148,1,149,1,149,1,149,1,149,1,149,1,149,1,149,5, + 149,2111,8,149,10,149,12,149,2114,9,149,1,149,1,149,3,149,2118,8, + 149,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, + 1,150,3,150,2131,8,150,3,150,2133,8,150,1,151,1,151,1,152,1,152, + 3,152,2139,8,152,1,152,1,152,3,152,2143,8,152,3,152,2145,8,152,1, + 153,1,153,1,153,1,153,5,153,2151,8,153,10,153,12,153,2154,9,153, + 1,153,1,153,1,154,1,154,1,154,1,154,3,154,2162,8,154,1,155,3,155, + 2165,8,155,1,155,1,155,1,156,1,156,1,156,1,156,1,157,1,157,1,157, + 1,157,1,157,5,157,2178,8,157,10,157,12,157,2181,9,157,1,157,1,157, + 1,157,3,157,2186,8,157,1,158,1,158,1,158,1,158,1,159,1,159,3,159, + 2194,8,159,1,160,1,160,1,161,1,161,1,161,3,161,2201,8,161,1,161, + 1,161,3,161,2205,8,161,1,161,1,161,1,161,1,161,1,161,1,161,5,161, + 2213,8,161,10,161,12,161,2216,9,161,1,162,1,162,1,162,1,162,1,162, + 1,162,1,162,1,162,3,162,2226,8,162,1,162,1,162,1,162,1,162,1,162, + 1,162,3,162,2234,8,162,1,162,1,162,1,162,1,162,1,162,5,162,2241, + 8,162,10,162,12,162,2244,9,162,1,162,1,162,1,162,3,162,2249,8,162, + 1,162,1,162,1,162,3,162,2254,8,162,1,162,1,162,1,162,1,162,3,162, + 2260,8,162,1,162,1,162,1,162,1,162,3,162,2266,8,162,1,162,1,162, + 1,162,3,162,2271,8,162,1,162,1,162,1,162,3,162,2276,8,162,1,163, + 1,163,1,163,1,163,3,163,2282,8,163,1,163,1,163,1,163,1,163,1,163, + 1,163,1,163,1,163,1,163,5,163,2293,8,163,10,163,12,163,2296,9,163, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,3,164,2322,8,164,1,164,1,164,1,164,1,164,3,164,2328, + 8,164,5,164,2330,8,164,10,164,12,164,2333,9,164,1,164,1,164,1,164, + 1,164,1,164,1,164,1,164,5,164,2342,8,164,10,164,12,164,2345,9,164, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,3,164,2354,8,164,1,164, + 3,164,2357,8,164,1,164,1,164,1,164,3,164,2362,8,164,1,164,1,164, + 1,164,5,164,2367,8,164,10,164,12,164,2370,9,164,3,164,2372,8,164, + 1,164,1,164,1,164,1,164,1,164,5,164,2379,8,164,10,164,12,164,2382, + 9,164,3,164,2384,8,164,1,164,1,164,3,164,2388,8,164,1,164,3,164, + 2391,8,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,5,164, + 2401,8,164,10,164,12,164,2404,9,164,3,164,2406,8,164,1,164,1,164, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,4,164,2423,8,164,11,164,12,164,2424,1,164,1,164,3,164, + 2429,8,164,1,164,1,164,1,164,1,164,4,164,2435,8,164,11,164,12,164, + 2436,1,164,1,164,3,164,2441,8,164,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,1,164,1,164,1,164,5,164,2464,8,164,10,164,12,164,2467, + 9,164,3,164,2469,8,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 3,164,2478,8,164,1,164,1,164,1,164,1,164,3,164,2484,8,164,1,164, + 1,164,1,164,1,164,3,164,2490,8,164,1,164,1,164,1,164,1,164,3,164, + 2496,8,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 3,164,2507,8,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,3,164, + 2516,8,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,5,164,2536, + 8,164,10,164,12,164,2539,9,164,3,164,2541,8,164,1,164,3,164,2544, + 8,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,5,164,2554, + 8,164,10,164,12,164,2557,9,164,1,165,1,165,1,165,1,165,3,165,2563, + 8,165,3,165,2565,8,165,1,166,1,166,1,167,1,167,1,168,1,168,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,3,169,2587,8,169,1,170,1,170,1,171,1,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,1,172,1,172,1,172,5,172,2614,8,172, + 10,172,12,172,2617,9,172,1,172,1,172,1,172,1,172,3,172,2623,8,172, + 1,172,1,172,1,172,1,172,5,172,2629,8,172,10,172,12,172,2632,9,172, + 1,172,1,172,3,172,2636,8,172,3,172,2638,8,172,1,172,1,172,5,172, + 2642,8,172,10,172,12,172,2645,9,172,1,173,1,173,1,174,1,174,3,174, + 2651,8,174,1,175,1,175,1,175,1,175,3,175,2657,8,175,1,176,1,176, + 1,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,178,1,178, + 1,178,1,178,1,178,1,178,1,178,5,178,2677,8,178,10,178,12,178,2680, + 9,178,3,178,2682,8,178,1,178,1,178,1,178,1,178,1,178,5,178,2689, + 8,178,10,178,12,178,2692,9,178,3,178,2694,8,178,1,178,3,178,2697, + 8,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, + 1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,3,179,2717,8,179, + 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,2728, + 8,180,1,181,1,181,1,181,1,181,1,181,3,181,2735,8,181,1,182,1,182, + 1,182,5,182,2740,8,182,10,182,12,182,2743,9,182,1,183,1,183,1,183, + 1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,3,183,2756,8,183, + 3,183,2758,8,183,1,184,1,184,1,185,1,185,1,185,5,185,2765,8,185, + 10,185,12,185,2768,9,185,1,186,1,186,1,186,1,186,1,186,1,186,3,186, + 2776,8,186,1,187,1,187,1,187,1,187,1,187,3,187,2783,8,187,1,188, + 3,188,2786,8,188,1,188,1,188,3,188,2790,8,188,1,188,1,188,3,188, + 2794,8,188,1,188,3,188,2797,8,188,1,189,1,189,1,190,1,190,1,190, + 10,783,1459,1633,1672,1692,1707,1738,1767,1841,2331,6,264,294,322, + 326,328,344,191,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, @@ -13296,919 +13478,928 @@ export class ImpalaSqlParser extends SQLParserBase { 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,0,33,2,0, - 46,46,170,170,2,0,166,166,204,204,2,0,176,176,202,202,2,0,69,69, - 80,80,2,0,27,27,159,159,2,0,103,103,144,144,2,0,47,47,171,171,2, - 0,3,3,12,12,3,0,87,87,166,166,204,204,2,0,178,178,209,209,1,0,245, - 248,2,0,147,147,219,223,2,0,65,65,95,95,2,0,64,64,200,200,2,0,10, - 10,55,55,2,0,75,75,112,112,2,0,2,2,57,57,2,0,14,14,185,185,3,0,106, - 106,115,115,164,164,2,0,105,105,163,163,4,0,70,70,133,133,194,194, - 208,208,1,0,255,256,1,0,257,259,1,0,249,254,3,0,2,2,6,6,181,181, - 2,0,70,70,194,194,5,0,48,49,91,92,122,125,172,173,217,218,1,0,127, - 130,2,0,8,8,227,244,2,0,77,77,149,149,4,0,46,46,178,178,188,188, - 209,209,16,0,28,29,40,40,43,43,48,48,68,68,91,91,114,114,122,122, - 124,124,158,158,165,165,172,172,184,184,196,196,204,204,217,217, - 23,0,14,14,43,44,48,49,65,65,68,68,91,91,95,95,110,110,119,119,122, - 125,127,130,137,137,140,140,152,153,172,173,180,180,184,185,195, - 195,204,204,213,213,217,217,220,220,231,231,3093,0,373,1,0,0,0,2, - 378,1,0,0,0,4,404,1,0,0,0,6,406,1,0,0,0,8,417,1,0,0,0,10,419,1,0, - 0,0,12,458,1,0,0,0,14,480,1,0,0,0,16,534,1,0,0,0,18,553,1,0,0,0, - 20,566,1,0,0,0,22,570,1,0,0,0,24,632,1,0,0,0,26,680,1,0,0,0,28,682, - 1,0,0,0,30,690,1,0,0,0,32,710,1,0,0,0,34,730,1,0,0,0,36,737,1,0, - 0,0,38,746,1,0,0,0,40,754,1,0,0,0,42,776,1,0,0,0,44,786,1,0,0,0, - 46,804,1,0,0,0,48,825,1,0,0,0,50,846,1,0,0,0,52,852,1,0,0,0,54,869, - 1,0,0,0,56,878,1,0,0,0,58,885,1,0,0,0,60,893,1,0,0,0,62,900,1,0, - 0,0,64,907,1,0,0,0,66,916,1,0,0,0,68,927,1,0,0,0,70,929,1,0,0,0, - 72,949,1,0,0,0,74,966,1,0,0,0,76,968,1,0,0,0,78,977,1,0,0,0,80,984, - 1,0,0,0,82,993,1,0,0,0,84,1003,1,0,0,0,86,1026,1,0,0,0,88,1032,1, - 0,0,0,90,1034,1,0,0,0,92,1041,1,0,0,0,94,1053,1,0,0,0,96,1055,1, - 0,0,0,98,1062,1,0,0,0,100,1083,1,0,0,0,102,1112,1,0,0,0,104,1114, - 1,0,0,0,106,1123,1,0,0,0,108,1146,1,0,0,0,110,1165,1,0,0,0,112,1188, - 1,0,0,0,114,1190,1,0,0,0,116,1205,1,0,0,0,118,1224,1,0,0,0,120,1246, - 1,0,0,0,122,1251,1,0,0,0,124,1256,1,0,0,0,126,1261,1,0,0,0,128,1266, - 1,0,0,0,130,1273,1,0,0,0,132,1288,1,0,0,0,134,1294,1,0,0,0,136,1314, - 1,0,0,0,138,1316,1,0,0,0,140,1327,1,0,0,0,142,1338,1,0,0,0,144,1352, - 1,0,0,0,146,1354,1,0,0,0,148,1363,1,0,0,0,150,1372,1,0,0,0,152,1381, - 1,0,0,0,154,1384,1,0,0,0,156,1392,1,0,0,0,158,1408,1,0,0,0,160,1412, - 1,0,0,0,162,1436,1,0,0,0,164,1438,1,0,0,0,166,1454,1,0,0,0,168,1457, - 1,0,0,0,170,1461,1,0,0,0,172,1464,1,0,0,0,174,1468,1,0,0,0,176,1470, - 1,0,0,0,178,1472,1,0,0,0,180,1474,1,0,0,0,182,1476,1,0,0,0,184,1478, - 1,0,0,0,186,1480,1,0,0,0,188,1488,1,0,0,0,190,1498,1,0,0,0,192,1502, - 1,0,0,0,194,1506,1,0,0,0,196,1511,1,0,0,0,198,1551,1,0,0,0,200,1559, - 1,0,0,0,202,1563,1,0,0,0,204,1578,1,0,0,0,206,1583,1,0,0,0,208,1587, - 1,0,0,0,210,1596,1,0,0,0,212,1626,1,0,0,0,214,1641,1,0,0,0,216,1647, - 1,0,0,0,218,1652,1,0,0,0,220,1654,1,0,0,0,222,1672,1,0,0,0,224,1675, - 1,0,0,0,226,1685,1,0,0,0,228,1705,1,0,0,0,230,1715,1,0,0,0,232,1717, - 1,0,0,0,234,1719,1,0,0,0,236,1734,1,0,0,0,238,1736,1,0,0,0,240,1743, - 1,0,0,0,242,1775,1,0,0,0,244,1787,1,0,0,0,246,1794,1,0,0,0,248,1804, - 1,0,0,0,250,1806,1,0,0,0,252,1812,1,0,0,0,254,1823,1,0,0,0,256,1834, - 1,0,0,0,258,1842,1,0,0,0,260,1860,1,0,0,0,262,1865,1,0,0,0,264,1886, - 1,0,0,0,266,1922,1,0,0,0,268,1924,1,0,0,0,270,1932,1,0,0,0,272,1972, - 1,0,0,0,274,1982,1,0,0,0,276,1997,1,0,0,0,278,1999,1,0,0,0,280,2006, - 1,0,0,0,282,2020,1,0,0,0,284,2022,1,0,0,0,286,2072,1,0,0,0,288,2088, - 1,0,0,0,290,2090,1,0,0,0,292,2105,1,0,0,0,294,2107,1,0,0,0,296,2117, - 1,0,0,0,298,2135,1,0,0,0,300,2137,1,0,0,0,302,2141,1,0,0,0,304,2156, - 1,0,0,0,306,2162,1,0,0,0,308,2164,1,0,0,0,310,2173,1,0,0,0,312,2244, - 1,0,0,0,314,2250,1,0,0,0,316,2512,1,0,0,0,318,2533,1,0,0,0,320,2535, - 1,0,0,0,322,2537,1,0,0,0,324,2539,1,0,0,0,326,2555,1,0,0,0,328,2557, - 1,0,0,0,330,2559,1,0,0,0,332,2606,1,0,0,0,334,2615,1,0,0,0,336,2619, - 1,0,0,0,338,2625,1,0,0,0,340,2627,1,0,0,0,342,2632,1,0,0,0,344,2638, - 1,0,0,0,346,2685,1,0,0,0,348,2696,1,0,0,0,350,2703,1,0,0,0,352,2705, - 1,0,0,0,354,2726,1,0,0,0,356,2728,1,0,0,0,358,2730,1,0,0,0,360,2744, - 1,0,0,0,362,2751,1,0,0,0,364,2765,1,0,0,0,366,2767,1,0,0,0,368,2769, - 1,0,0,0,370,372,3,2,1,0,371,370,1,0,0,0,372,375,1,0,0,0,373,371, - 1,0,0,0,373,374,1,0,0,0,374,376,1,0,0,0,375,373,1,0,0,0,376,377, - 5,0,0,1,377,1,1,0,0,0,378,380,3,4,2,0,379,381,5,262,0,0,380,379, - 1,0,0,0,380,381,1,0,0,0,381,3,1,0,0,0,382,405,3,206,103,0,383,405, - 3,6,3,0,384,405,3,8,4,0,385,405,3,26,13,0,386,405,3,64,32,0,387, - 405,3,66,33,0,388,405,3,68,34,0,389,405,3,74,37,0,390,405,3,88,44, - 0,391,405,3,94,47,0,392,405,3,100,50,0,393,405,3,102,51,0,394,405, - 3,108,54,0,395,405,3,110,55,0,396,405,3,112,56,0,397,405,3,144,72, - 0,398,405,3,152,76,0,399,405,3,154,77,0,400,405,3,156,78,0,401,405, - 3,158,79,0,402,405,3,160,80,0,403,405,3,162,81,0,404,382,1,0,0,0, - 404,383,1,0,0,0,404,384,1,0,0,0,404,385,1,0,0,0,404,386,1,0,0,0, - 404,387,1,0,0,0,404,388,1,0,0,0,404,389,1,0,0,0,404,390,1,0,0,0, - 404,391,1,0,0,0,404,392,1,0,0,0,404,393,1,0,0,0,404,394,1,0,0,0, - 404,395,1,0,0,0,404,396,1,0,0,0,404,397,1,0,0,0,404,398,1,0,0,0, - 404,399,1,0,0,0,404,400,1,0,0,0,404,401,1,0,0,0,404,402,1,0,0,0, - 404,403,1,0,0,0,405,5,1,0,0,0,406,407,5,203,0,0,407,408,3,184,92, - 0,408,7,1,0,0,0,409,418,3,18,9,0,410,418,3,20,10,0,411,418,3,22, - 11,0,412,418,3,24,12,0,413,418,3,16,8,0,414,418,3,14,7,0,415,418, - 3,12,6,0,416,418,3,10,5,0,417,409,1,0,0,0,417,410,1,0,0,0,417,411, - 1,0,0,0,417,412,1,0,0,0,417,413,1,0,0,0,417,414,1,0,0,0,417,415, - 1,0,0,0,417,416,1,0,0,0,418,9,1,0,0,0,419,421,5,37,0,0,420,422,5, - 19,0,0,421,420,1,0,0,0,421,422,1,0,0,0,422,423,1,0,0,0,423,425,5, - 188,0,0,424,426,3,172,86,0,425,424,1,0,0,0,425,426,1,0,0,0,426,427, - 1,0,0,0,427,443,3,174,87,0,428,429,5,265,0,0,429,434,3,216,108,0, - 430,431,5,263,0,0,431,433,3,216,108,0,432,430,1,0,0,0,433,436,1, - 0,0,0,434,432,1,0,0,0,434,435,1,0,0,0,435,439,1,0,0,0,436,434,1, - 0,0,0,437,438,5,263,0,0,438,440,3,210,105,0,439,437,1,0,0,0,439, - 440,1,0,0,0,440,441,1,0,0,0,441,442,5,266,0,0,442,444,1,0,0,0,443, - 428,1,0,0,0,443,444,1,0,0,0,444,451,1,0,0,0,445,446,5,17,0,0,446, - 449,5,26,0,0,447,450,3,296,148,0,448,450,3,254,127,0,449,447,1,0, - 0,0,449,448,1,0,0,0,450,452,1,0,0,0,451,445,1,0,0,0,451,452,1,0, - 0,0,452,453,1,0,0,0,453,456,3,196,98,0,454,455,5,9,0,0,455,457,3, - 206,103,0,456,454,1,0,0,0,456,457,1,0,0,0,457,11,1,0,0,0,458,460, - 5,37,0,0,459,461,5,19,0,0,460,459,1,0,0,0,460,461,1,0,0,0,461,462, - 1,0,0,0,462,464,5,188,0,0,463,465,3,172,86,0,464,463,1,0,0,0,464, - 465,1,0,0,0,465,466,1,0,0,0,466,467,3,174,87,0,467,471,5,115,0,0, - 468,472,3,186,93,0,469,470,5,147,0,0,470,472,3,318,159,0,471,468, - 1,0,0,0,471,469,1,0,0,0,472,476,1,0,0,0,473,474,5,17,0,0,474,475, - 5,26,0,0,475,477,3,254,127,0,476,473,1,0,0,0,476,477,1,0,0,0,477, - 478,1,0,0,0,478,479,3,196,98,0,479,13,1,0,0,0,480,482,5,37,0,0,481, - 483,5,19,0,0,482,481,1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484, - 486,5,188,0,0,485,487,3,172,86,0,486,485,1,0,0,0,486,487,1,0,0,0, - 487,488,1,0,0,0,488,506,3,174,87,0,489,490,5,265,0,0,490,495,3,218, - 109,0,491,492,5,263,0,0,492,494,3,218,109,0,493,491,1,0,0,0,494, - 497,1,0,0,0,495,493,1,0,0,0,495,496,1,0,0,0,496,502,1,0,0,0,497, - 495,1,0,0,0,498,499,5,263,0,0,499,500,5,150,0,0,500,501,5,110,0, - 0,501,503,3,296,148,0,502,498,1,0,0,0,502,503,1,0,0,0,503,504,1, - 0,0,0,504,505,5,266,0,0,505,507,1,0,0,0,506,489,1,0,0,0,506,507, - 1,0,0,0,507,513,1,0,0,0,508,509,5,150,0,0,509,511,5,110,0,0,510, - 512,3,296,148,0,511,510,1,0,0,0,511,512,1,0,0,0,512,514,1,0,0,0, - 513,508,1,0,0,0,513,514,1,0,0,0,514,518,1,0,0,0,515,516,5,145,0, - 0,516,517,5,26,0,0,517,519,3,236,118,0,518,515,1,0,0,0,518,519,1, - 0,0,0,519,521,1,0,0,0,520,522,3,222,111,0,521,520,1,0,0,0,521,522, - 1,0,0,0,522,523,1,0,0,0,523,524,5,23,0,0,524,525,5,9,0,0,525,528, - 5,111,0,0,526,527,5,25,0,0,527,529,3,252,126,0,528,526,1,0,0,0,528, - 529,1,0,0,0,529,532,1,0,0,0,530,531,5,9,0,0,531,533,3,206,103,0, - 532,530,1,0,0,0,532,533,1,0,0,0,533,15,1,0,0,0,534,535,5,37,0,0, - 535,537,5,212,0,0,536,538,3,172,86,0,537,536,1,0,0,0,537,538,1,0, - 0,0,538,539,1,0,0,0,539,541,3,178,89,0,540,542,3,202,101,0,541,540, - 1,0,0,0,541,542,1,0,0,0,542,544,1,0,0,0,543,545,3,222,111,0,544, - 543,1,0,0,0,544,545,1,0,0,0,545,548,1,0,0,0,546,547,5,25,0,0,547, - 549,3,252,126,0,548,546,1,0,0,0,548,549,1,0,0,0,549,550,1,0,0,0, - 550,551,5,9,0,0,551,552,3,206,103,0,552,17,1,0,0,0,553,554,5,37, - 0,0,554,556,7,0,0,0,555,557,3,172,86,0,556,555,1,0,0,0,556,557,1, - 0,0,0,557,558,1,0,0,0,558,560,3,176,88,0,559,561,3,222,111,0,560, - 559,1,0,0,0,560,561,1,0,0,0,561,564,1,0,0,0,562,563,5,24,0,0,563, - 565,3,318,159,0,564,562,1,0,0,0,564,565,1,0,0,0,565,19,1,0,0,0,566, - 567,5,37,0,0,567,568,5,166,0,0,568,569,3,362,181,0,569,21,1,0,0, - 0,570,572,5,37,0,0,571,573,5,12,0,0,572,571,1,0,0,0,572,573,1,0, - 0,0,573,574,1,0,0,0,574,576,5,84,0,0,575,577,3,172,86,0,576,575, - 1,0,0,0,576,577,1,0,0,0,577,578,1,0,0,0,578,591,3,180,90,0,579,588, - 5,265,0,0,580,585,3,332,166,0,581,582,5,263,0,0,582,584,3,332,166, - 0,583,581,1,0,0,0,584,587,1,0,0,0,585,583,1,0,0,0,585,586,1,0,0, - 0,586,589,1,0,0,0,587,585,1,0,0,0,588,580,1,0,0,0,588,589,1,0,0, - 0,589,590,1,0,0,0,590,592,5,266,0,0,591,579,1,0,0,0,591,592,1,0, - 0,0,592,593,1,0,0,0,593,594,5,160,0,0,594,597,3,332,166,0,595,596, - 5,102,0,0,596,598,3,332,166,0,597,595,1,0,0,0,597,598,1,0,0,0,598, - 599,1,0,0,0,599,600,5,24,0,0,600,604,5,274,0,0,601,602,5,104,0,0, - 602,603,5,249,0,0,603,605,5,274,0,0,604,601,1,0,0,0,604,605,1,0, - 0,0,605,606,1,0,0,0,606,607,5,206,0,0,607,608,5,249,0,0,608,609, - 5,274,0,0,609,610,5,126,0,0,610,611,5,249,0,0,611,615,5,274,0,0, - 612,613,5,18,0,0,613,614,5,249,0,0,614,616,5,274,0,0,615,612,1,0, - 0,0,615,616,1,0,0,0,616,620,1,0,0,0,617,618,5,20,0,0,618,619,5,249, - 0,0,619,621,5,274,0,0,620,617,1,0,0,0,620,621,1,0,0,0,621,625,1, - 0,0,0,622,623,5,187,0,0,623,624,5,249,0,0,624,626,5,274,0,0,625, - 622,1,0,0,0,625,626,1,0,0,0,626,630,1,0,0,0,627,628,5,76,0,0,628, - 629,5,249,0,0,629,631,5,274,0,0,630,627,1,0,0,0,630,631,1,0,0,0, - 631,23,1,0,0,0,632,633,5,37,0,0,633,635,5,84,0,0,634,636,3,172,86, - 0,635,634,1,0,0,0,635,636,1,0,0,0,636,637,1,0,0,0,637,650,3,180, - 90,0,638,647,5,265,0,0,639,644,3,332,166,0,640,641,5,263,0,0,641, - 643,3,332,166,0,642,640,1,0,0,0,643,646,1,0,0,0,644,642,1,0,0,0, - 644,645,1,0,0,0,645,648,1,0,0,0,646,644,1,0,0,0,647,639,1,0,0,0, - 647,648,1,0,0,0,648,649,1,0,0,0,649,651,5,266,0,0,650,638,1,0,0, - 0,650,651,1,0,0,0,651,654,1,0,0,0,652,653,5,160,0,0,653,655,3,332, - 166,0,654,652,1,0,0,0,654,655,1,0,0,0,655,656,1,0,0,0,656,657,5, - 24,0,0,657,658,5,274,0,0,658,659,5,186,0,0,659,660,5,249,0,0,660, - 661,3,318,159,0,661,25,1,0,0,0,662,681,3,28,14,0,663,681,3,62,31, - 0,664,681,3,60,30,0,665,681,3,58,29,0,666,681,3,54,27,0,667,681, - 3,56,28,0,668,681,3,52,26,0,669,681,3,48,24,0,670,681,3,50,25,0, - 671,681,3,46,23,0,672,681,3,44,22,0,673,681,3,42,21,0,674,681,3, - 40,20,0,675,681,3,34,17,0,676,681,3,30,15,0,677,681,3,32,16,0,678, - 681,3,36,18,0,679,681,3,38,19,0,680,662,1,0,0,0,680,663,1,0,0,0, - 680,664,1,0,0,0,680,665,1,0,0,0,680,666,1,0,0,0,680,667,1,0,0,0, - 680,668,1,0,0,0,680,669,1,0,0,0,680,670,1,0,0,0,680,671,1,0,0,0, - 680,672,1,0,0,0,680,673,1,0,0,0,680,674,1,0,0,0,680,675,1,0,0,0, - 680,676,1,0,0,0,680,677,1,0,0,0,680,678,1,0,0,0,680,679,1,0,0,0, - 681,27,1,0,0,0,682,683,5,4,0,0,683,684,5,46,0,0,684,685,3,184,92, - 0,685,686,5,176,0,0,686,687,5,142,0,0,687,688,7,1,0,0,688,689,3, - 362,181,0,689,29,1,0,0,0,690,691,5,4,0,0,691,692,5,188,0,0,692,693, - 3,186,93,0,693,694,5,176,0,0,694,695,5,32,0,0,695,696,5,182,0,0, - 696,697,3,192,96,0,697,698,5,265,0,0,698,699,3,232,116,0,699,700, - 5,249,0,0,700,706,3,318,159,0,701,702,5,263,0,0,702,703,3,232,116, - 0,703,704,5,249,0,0,704,705,3,318,159,0,705,707,1,0,0,0,706,701, - 1,0,0,0,706,707,1,0,0,0,707,708,1,0,0,0,708,709,5,266,0,0,709,31, - 1,0,0,0,710,711,5,4,0,0,711,712,5,188,0,0,712,715,3,186,93,0,713, - 714,5,145,0,0,714,716,3,308,154,0,715,713,1,0,0,0,715,716,1,0,0, - 0,716,717,1,0,0,0,717,728,5,176,0,0,718,719,5,30,0,0,719,720,5,94, - 0,0,720,725,3,318,159,0,721,722,5,216,0,0,722,723,5,151,0,0,723, - 724,5,249,0,0,724,726,3,364,182,0,725,721,1,0,0,0,725,726,1,0,0, - 0,726,729,1,0,0,0,727,729,5,197,0,0,728,718,1,0,0,0,728,727,1,0, - 0,0,729,33,1,0,0,0,730,731,5,4,0,0,731,732,5,188,0,0,732,733,3,186, - 93,0,733,734,5,31,0,0,734,735,3,192,96,0,735,736,3,224,112,0,736, - 35,1,0,0,0,737,738,5,4,0,0,738,739,5,188,0,0,739,740,3,186,93,0, - 740,742,5,58,0,0,741,743,5,32,0,0,742,741,1,0,0,0,742,743,1,0,0, - 0,743,744,1,0,0,0,744,745,3,192,96,0,745,37,1,0,0,0,746,747,5,4, - 0,0,747,748,5,188,0,0,748,749,3,186,93,0,749,750,5,176,0,0,750,751, - 5,142,0,0,751,752,7,1,0,0,752,753,3,362,181,0,753,39,1,0,0,0,754, - 755,5,4,0,0,755,756,5,188,0,0,756,762,3,186,93,0,757,763,5,158,0, - 0,758,760,5,1,0,0,759,761,3,172,86,0,760,759,1,0,0,0,760,761,1,0, - 0,0,761,763,1,0,0,0,762,757,1,0,0,0,762,758,1,0,0,0,763,764,1,0, - 0,0,764,765,5,33,0,0,765,766,5,265,0,0,766,771,3,224,112,0,767,768, - 5,263,0,0,768,770,3,224,112,0,769,767,1,0,0,0,770,773,1,0,0,0,771, - 772,1,0,0,0,771,769,1,0,0,0,772,774,1,0,0,0,773,771,1,0,0,0,774, - 775,5,266,0,0,775,41,1,0,0,0,776,777,5,4,0,0,777,778,5,188,0,0,778, - 779,3,186,93,0,779,780,5,1,0,0,780,782,5,32,0,0,781,783,3,172,86, - 0,782,781,1,0,0,0,782,783,1,0,0,0,783,784,1,0,0,0,784,785,3,226, - 113,0,785,43,1,0,0,0,786,787,5,4,0,0,787,788,5,188,0,0,788,789,3, - 186,93,0,789,791,5,4,0,0,790,792,5,32,0,0,791,790,1,0,0,0,791,792, - 1,0,0,0,792,793,1,0,0,0,793,802,3,192,96,0,794,798,5,176,0,0,795, - 799,3,230,115,0,796,797,5,34,0,0,797,799,3,318,159,0,798,795,1,0, - 0,0,798,796,1,0,0,0,799,803,1,0,0,0,800,801,5,58,0,0,801,803,5,51, - 0,0,802,794,1,0,0,0,802,800,1,0,0,0,803,45,1,0,0,0,804,805,5,4,0, - 0,805,806,5,188,0,0,806,807,3,186,93,0,807,809,5,1,0,0,808,810,3, - 172,86,0,809,808,1,0,0,0,809,810,1,0,0,0,810,823,1,0,0,0,811,812, - 5,145,0,0,812,815,3,308,154,0,813,814,5,24,0,0,814,816,3,318,159, - 0,815,813,1,0,0,0,815,816,1,0,0,0,816,818,1,0,0,0,817,819,3,244, - 122,0,818,817,1,0,0,0,818,819,1,0,0,0,819,824,1,0,0,0,820,821,5, - 154,0,0,821,822,5,145,0,0,822,824,3,242,121,0,823,811,1,0,0,0,823, - 820,1,0,0,0,824,47,1,0,0,0,825,826,5,4,0,0,826,827,5,188,0,0,827, - 830,3,186,93,0,828,829,5,145,0,0,829,831,3,308,154,0,830,828,1,0, - 0,0,830,831,1,0,0,0,831,832,1,0,0,0,832,844,5,176,0,0,833,834,5, - 72,0,0,834,845,3,234,117,0,835,836,5,168,0,0,836,837,5,79,0,0,837, - 845,3,258,129,0,838,839,5,24,0,0,839,845,3,318,159,0,840,841,5,25, - 0,0,841,845,3,252,126,0,842,843,5,175,0,0,843,845,3,252,126,0,844, - 833,1,0,0,0,844,835,1,0,0,0,844,838,1,0,0,0,844,840,1,0,0,0,844, - 842,1,0,0,0,845,49,1,0,0,0,846,847,5,4,0,0,847,848,5,188,0,0,848, - 849,3,186,93,0,849,850,5,155,0,0,850,851,5,146,0,0,851,51,1,0,0, - 0,852,853,5,4,0,0,853,854,5,188,0,0,854,855,3,186,93,0,855,857,5, - 58,0,0,856,858,3,170,85,0,857,856,1,0,0,0,857,858,1,0,0,0,858,867, - 1,0,0,0,859,860,5,145,0,0,860,862,3,308,154,0,861,863,5,22,0,0,862, - 861,1,0,0,0,862,863,1,0,0,0,863,868,1,0,0,0,864,865,5,154,0,0,865, - 866,5,145,0,0,866,868,3,242,121,0,867,859,1,0,0,0,867,864,1,0,0, - 0,868,53,1,0,0,0,869,870,5,4,0,0,870,871,5,212,0,0,871,873,3,188, - 94,0,872,874,3,202,101,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875, - 1,0,0,0,875,876,5,9,0,0,876,877,3,206,103,0,877,55,1,0,0,0,878,879, - 5,4,0,0,879,880,5,212,0,0,880,881,3,188,94,0,881,882,5,156,0,0,882, - 883,5,193,0,0,883,884,3,188,94,0,884,57,1,0,0,0,885,886,5,4,0,0, - 886,887,5,212,0,0,887,888,3,188,94,0,888,889,5,176,0,0,889,890,5, - 142,0,0,890,891,7,1,0,0,891,892,3,358,179,0,892,59,1,0,0,0,893,894, - 5,4,0,0,894,895,5,188,0,0,895,896,3,186,93,0,896,897,5,156,0,0,897, - 898,5,193,0,0,898,899,3,186,93,0,899,61,1,0,0,0,900,901,5,4,0,0, - 901,902,5,212,0,0,902,903,3,188,94,0,903,904,7,2,0,0,904,905,5,25, - 0,0,905,906,3,252,126,0,906,63,1,0,0,0,907,909,5,196,0,0,908,910, - 5,188,0,0,909,908,1,0,0,0,909,910,1,0,0,0,910,912,1,0,0,0,911,913, - 3,170,85,0,912,911,1,0,0,0,912,913,1,0,0,0,913,914,1,0,0,0,914,915, - 3,186,93,0,915,65,1,0,0,0,916,918,5,56,0,0,917,919,5,46,0,0,918, - 917,1,0,0,0,918,919,1,0,0,0,919,921,1,0,0,0,920,922,7,3,0,0,921, - 920,1,0,0,0,921,922,1,0,0,0,922,923,1,0,0,0,923,924,3,358,179,0, - 924,67,1,0,0,0,925,928,3,70,35,0,926,928,3,72,36,0,927,925,1,0,0, - 0,927,926,1,0,0,0,928,69,1,0,0,0,929,930,5,36,0,0,930,931,5,182, - 0,0,931,933,3,186,93,0,932,934,3,296,148,0,933,932,1,0,0,0,933,934, - 1,0,0,0,934,947,1,0,0,0,935,936,5,190,0,0,936,937,5,185,0,0,937, - 938,5,265,0,0,938,939,3,364,182,0,939,945,5,266,0,0,940,941,5,157, - 0,0,941,942,5,265,0,0,942,943,3,364,182,0,943,944,5,266,0,0,944, - 946,1,0,0,0,945,940,1,0,0,0,945,946,1,0,0,0,946,948,1,0,0,0,947, - 935,1,0,0,0,947,948,1,0,0,0,948,71,1,0,0,0,949,950,5,36,0,0,950, - 951,5,96,0,0,951,952,5,182,0,0,952,958,3,186,93,0,953,954,5,145, - 0,0,954,955,5,265,0,0,955,956,3,308,154,0,956,957,5,266,0,0,957, - 959,1,0,0,0,958,953,1,0,0,0,958,959,1,0,0,0,959,73,1,0,0,0,960,967, - 3,86,43,0,961,967,3,84,42,0,962,967,3,82,41,0,963,967,3,78,39,0, - 964,967,3,80,40,0,965,967,3,76,38,0,966,960,1,0,0,0,966,961,1,0, - 0,0,966,962,1,0,0,0,966,963,1,0,0,0,966,964,1,0,0,0,966,965,1,0, - 0,0,967,75,1,0,0,0,968,969,5,58,0,0,969,971,7,0,0,0,970,972,3,170, - 85,0,971,970,1,0,0,0,971,972,1,0,0,0,972,973,1,0,0,0,973,975,3,184, - 92,0,974,976,7,4,0,0,975,974,1,0,0,0,975,976,1,0,0,0,976,77,1,0, - 0,0,977,978,5,58,0,0,978,980,5,212,0,0,979,981,3,170,85,0,980,979, - 1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983,3,188,94,0,983,79, - 1,0,0,0,984,985,5,58,0,0,985,987,5,188,0,0,986,988,3,170,85,0,987, - 986,1,0,0,0,987,988,1,0,0,0,988,989,1,0,0,0,989,991,3,186,93,0,990, - 992,5,22,0,0,991,990,1,0,0,0,991,992,1,0,0,0,992,81,1,0,0,0,993, - 995,5,58,0,0,994,996,5,96,0,0,995,994,1,0,0,0,995,996,1,0,0,0,996, - 997,1,0,0,0,997,998,5,182,0,0,998,1001,3,186,93,0,999,1000,5,145, - 0,0,1000,1002,3,308,154,0,1001,999,1,0,0,0,1001,1002,1,0,0,0,1002, - 83,1,0,0,0,1003,1005,5,58,0,0,1004,1006,5,12,0,0,1005,1004,1,0,0, - 0,1005,1006,1,0,0,0,1006,1007,1,0,0,0,1007,1009,5,84,0,0,1008,1010, - 3,170,85,0,1009,1008,1,0,0,0,1009,1010,1,0,0,0,1010,1011,1,0,0,0, - 1011,1024,3,190,95,0,1012,1021,5,265,0,0,1013,1018,3,332,166,0,1014, - 1015,5,263,0,0,1015,1017,3,332,166,0,1016,1014,1,0,0,0,1017,1020, - 1,0,0,0,1018,1016,1,0,0,0,1018,1019,1,0,0,0,1019,1022,1,0,0,0,1020, - 1018,1,0,0,0,1021,1013,1,0,0,0,1021,1022,1,0,0,0,1022,1023,1,0,0, - 0,1023,1025,5,266,0,0,1024,1012,1,0,0,0,1024,1025,1,0,0,0,1025,85, - 1,0,0,0,1026,1027,5,58,0,0,1027,1028,5,166,0,0,1028,1029,3,362,181, - 0,1029,87,1,0,0,0,1030,1033,3,90,45,0,1031,1033,3,92,46,0,1032,1030, - 1,0,0,0,1032,1031,1,0,0,0,1033,89,1,0,0,0,1034,1035,5,86,0,0,1035, - 1036,5,166,0,0,1036,1037,3,362,181,0,1037,1038,5,193,0,0,1038,1039, - 5,87,0,0,1039,1040,3,362,181,0,1040,91,1,0,0,0,1041,1042,5,86,0, - 0,1042,1043,3,354,177,0,1043,1044,5,136,0,0,1044,1046,3,356,178, - 0,1045,1047,3,358,179,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047, - 1048,1,0,0,0,1048,1049,5,193,0,0,1049,1050,3,360,180,0,1050,93,1, - 0,0,0,1051,1054,3,96,48,0,1052,1054,3,98,49,0,1053,1051,1,0,0,0, - 1053,1052,1,0,0,0,1054,95,1,0,0,0,1055,1056,5,161,0,0,1056,1057, - 5,166,0,0,1057,1058,3,362,181,0,1058,1059,5,82,0,0,1059,1060,5,87, - 0,0,1060,1061,3,362,181,0,1061,97,1,0,0,0,1062,1066,5,161,0,0,1063, - 1064,5,86,0,0,1064,1065,5,137,0,0,1065,1067,5,78,0,0,1066,1063,1, - 0,0,0,1066,1067,1,0,0,0,1067,1068,1,0,0,0,1068,1069,3,354,177,0, - 1069,1070,5,136,0,0,1070,1072,3,356,178,0,1071,1073,3,358,179,0, - 1072,1071,1,0,0,0,1072,1073,1,0,0,0,1073,1074,1,0,0,0,1074,1080, - 5,82,0,0,1075,1081,3,360,180,0,1076,1078,5,166,0,0,1077,1076,1,0, - 0,0,1077,1078,1,0,0,0,1078,1079,1,0,0,0,1079,1081,3,362,181,0,1080, - 1075,1,0,0,0,1080,1077,1,0,0,0,1081,99,1,0,0,0,1082,1084,3,208,104, - 0,1083,1082,1,0,0,0,1083,1084,1,0,0,0,1084,1085,1,0,0,0,1085,1086, - 5,99,0,0,1086,1088,7,5,0,0,1087,1089,5,188,0,0,1088,1087,1,0,0,0, - 1088,1089,1,0,0,0,1089,1090,1,0,0,0,1090,1092,3,186,93,0,1091,1093, - 3,296,148,0,1092,1091,1,0,0,0,1092,1093,1,0,0,0,1093,1106,1,0,0, - 0,1094,1095,5,145,0,0,1095,1096,5,265,0,0,1096,1101,3,308,154,0, - 1097,1098,5,263,0,0,1098,1100,3,308,154,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,266,0,0,1105,1107,1,0,0,0,1106,1094, - 1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1109,3,206,103, - 0,1109,101,1,0,0,0,1110,1113,3,104,52,0,1111,1113,3,106,53,0,1112, - 1110,1,0,0,0,1112,1111,1,0,0,0,1113,103,1,0,0,0,1114,1116,5,50,0, - 0,1115,1117,5,82,0,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117,1118, - 1,0,0,0,1118,1121,3,186,93,0,1119,1120,5,215,0,0,1120,1122,3,310, - 155,0,1121,1119,1,0,0,0,1121,1122,1,0,0,0,1122,105,1,0,0,0,1123, - 1124,5,50,0,0,1124,1129,3,186,93,0,1125,1127,5,9,0,0,1126,1125,1, - 0,0,0,1126,1127,1,0,0,0,1127,1128,1,0,0,0,1128,1130,3,362,181,0, - 1129,1126,1,0,0,0,1129,1130,1,0,0,0,1130,1131,1,0,0,0,1131,1140, - 5,82,0,0,1132,1137,3,284,142,0,1133,1134,5,263,0,0,1134,1136,3,284, - 142,0,1135,1133,1,0,0,0,1136,1139,1,0,0,0,1137,1135,1,0,0,0,1137, - 1138,1,0,0,0,1138,1141,1,0,0,0,1139,1137,1,0,0,0,1140,1132,1,0,0, - 0,1140,1141,1,0,0,0,1141,1144,1,0,0,0,1142,1143,5,215,0,0,1143,1145, - 3,310,155,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145,107,1,0,0,0, - 1146,1147,5,54,0,0,1147,1148,3,186,93,0,1148,1149,5,176,0,0,1149, - 1159,3,198,99,0,1150,1151,5,82,0,0,1151,1156,3,284,142,0,1152,1153, - 5,263,0,0,1153,1155,3,284,142,0,1154,1152,1,0,0,0,1155,1158,1,0, - 0,0,1156,1154,1,0,0,0,1156,1157,1,0,0,0,1157,1160,1,0,0,0,1158,1156, - 1,0,0,0,1159,1150,1,0,0,0,1159,1160,1,0,0,0,1160,1163,1,0,0,0,1161, - 1162,5,215,0,0,1162,1164,3,310,155,0,1163,1161,1,0,0,0,1163,1164, - 1,0,0,0,1164,109,1,0,0,0,1165,1166,5,207,0,0,1166,1168,5,103,0,0, - 1167,1169,5,188,0,0,1168,1167,1,0,0,0,1168,1169,1,0,0,0,1169,1170, - 1,0,0,0,1170,1172,3,186,93,0,1171,1173,3,296,148,0,1172,1171,1,0, - 0,0,1172,1173,1,0,0,0,1173,1174,1,0,0,0,1174,1175,3,206,103,0,1175, - 111,1,0,0,0,1176,1189,3,132,66,0,1177,1189,3,134,67,0,1178,1189, - 3,136,68,0,1179,1189,3,130,65,0,1180,1189,3,128,64,0,1181,1189,3, - 126,63,0,1182,1189,3,124,62,0,1183,1189,3,122,61,0,1184,1189,3,120, - 60,0,1185,1189,3,118,59,0,1186,1189,3,116,58,0,1187,1189,3,114,57, - 0,1188,1176,1,0,0,0,1188,1177,1,0,0,0,1188,1178,1,0,0,0,1188,1179, - 1,0,0,0,1188,1180,1,0,0,0,1188,1181,1,0,0,0,1188,1182,1,0,0,0,1188, - 1183,1,0,0,0,1188,1184,1,0,0,0,1188,1185,1,0,0,0,1188,1186,1,0,0, - 0,1188,1187,1,0,0,0,1189,113,1,0,0,0,1190,1191,5,179,0,0,1191,1203, - 7,6,0,0,1192,1194,5,115,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, - 1194,1195,1,0,0,0,1195,1200,3,318,159,0,1196,1197,5,271,0,0,1197, - 1199,3,318,159,0,1198,1196,1,0,0,0,1199,1202,1,0,0,0,1200,1198,1, - 0,0,0,1200,1201,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1203, - 1193,1,0,0,0,1203,1204,1,0,0,0,1204,115,1,0,0,0,1205,1206,5,179, - 0,0,1206,1209,5,189,0,0,1207,1208,5,94,0,0,1208,1210,3,186,93,0, - 1209,1207,1,0,0,0,1209,1210,1,0,0,0,1210,1222,1,0,0,0,1211,1213, - 5,115,0,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0, - 1214,1219,3,318,159,0,1215,1216,5,271,0,0,1216,1218,3,318,159,0, - 1217,1215,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219,1220, - 1,0,0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1222,1212,1,0,0,0,1222, - 1223,1,0,0,0,1223,117,1,0,0,0,1224,1226,5,179,0,0,1225,1227,7,7, - 0,0,1226,1225,1,0,0,0,1226,1227,1,0,0,0,1227,1228,1,0,0,0,1228,1231, - 5,85,0,0,1229,1230,5,94,0,0,1230,1232,3,184,92,0,1231,1229,1,0,0, - 0,1231,1232,1,0,0,0,1232,1244,1,0,0,0,1233,1235,5,115,0,0,1234,1233, - 1,0,0,0,1234,1235,1,0,0,0,1235,1236,1,0,0,0,1236,1241,3,318,159, - 0,1237,1238,5,271,0,0,1238,1240,3,318,159,0,1239,1237,1,0,0,0,1240, - 1243,1,0,0,0,1241,1239,1,0,0,0,1241,1242,1,0,0,0,1242,1245,1,0,0, - 0,1243,1241,1,0,0,0,1244,1234,1,0,0,0,1244,1245,1,0,0,0,1245,119, - 1,0,0,0,1246,1247,5,179,0,0,1247,1248,5,37,0,0,1248,1249,5,188,0, - 0,1249,1250,3,186,93,0,1250,121,1,0,0,0,1251,1252,5,179,0,0,1252, - 1253,5,37,0,0,1253,1254,5,212,0,0,1254,1255,3,188,94,0,1255,123, - 1,0,0,0,1256,1257,5,179,0,0,1257,1258,5,188,0,0,1258,1259,5,182, - 0,0,1259,1260,3,186,93,0,1260,125,1,0,0,0,1261,1262,5,179,0,0,1262, - 1263,5,32,0,0,1263,1264,5,182,0,0,1264,1265,3,186,93,0,1265,127, - 1,0,0,0,1266,1268,5,179,0,0,1267,1269,5,154,0,0,1268,1267,1,0,0, - 0,1268,1269,1,0,0,0,1269,1270,1,0,0,0,1270,1271,5,146,0,0,1271,1272, - 3,186,93,0,1272,129,1,0,0,0,1273,1274,5,179,0,0,1274,1275,5,73,0, - 0,1275,1276,5,94,0,0,1276,1286,3,186,93,0,1277,1278,5,145,0,0,1278, - 1279,5,265,0,0,1279,1282,3,308,154,0,1280,1281,5,263,0,0,1281,1283, - 3,308,154,0,1282,1280,1,0,0,0,1282,1283,1,0,0,0,1283,1284,1,0,0, - 0,1284,1285,5,266,0,0,1285,1287,1,0,0,0,1286,1277,1,0,0,0,1286,1287, - 1,0,0,0,1287,131,1,0,0,0,1288,1290,5,179,0,0,1289,1291,5,39,0,0, - 1290,1289,1,0,0,0,1290,1291,1,0,0,0,1291,1292,1,0,0,0,1292,1293, - 5,167,0,0,1293,133,1,0,0,0,1294,1295,5,179,0,0,1295,1296,5,166,0, - 0,1296,1297,5,86,0,0,1297,1298,5,87,0,0,1298,1299,3,362,181,0,1299, - 135,1,0,0,0,1300,1315,3,138,69,0,1301,1315,3,140,70,0,1302,1315, - 3,142,71,0,1303,1304,5,179,0,0,1304,1305,5,86,0,0,1305,1306,7,8, - 0,0,1306,1312,3,362,181,0,1307,1308,5,136,0,0,1308,1310,7,9,0,0, - 1309,1311,3,358,179,0,1310,1309,1,0,0,0,1310,1311,1,0,0,0,1311,1313, - 1,0,0,0,1312,1307,1,0,0,0,1312,1313,1,0,0,0,1313,1315,1,0,0,0,1314, - 1300,1,0,0,0,1314,1301,1,0,0,0,1314,1302,1,0,0,0,1314,1303,1,0,0, - 0,1315,137,1,0,0,0,1316,1317,5,179,0,0,1317,1318,5,86,0,0,1318,1319, - 7,8,0,0,1319,1325,3,362,181,0,1320,1321,5,136,0,0,1321,1323,5,46, - 0,0,1322,1324,3,184,92,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324, - 1326,1,0,0,0,1325,1320,1,0,0,0,1325,1326,1,0,0,0,1326,139,1,0,0, - 0,1327,1328,5,179,0,0,1328,1329,5,86,0,0,1329,1330,7,8,0,0,1330, - 1336,3,362,181,0,1331,1332,5,136,0,0,1332,1334,5,188,0,0,1333,1335, - 3,186,93,0,1334,1333,1,0,0,0,1334,1335,1,0,0,0,1335,1337,1,0,0,0, - 1336,1331,1,0,0,0,1336,1337,1,0,0,0,1337,141,1,0,0,0,1338,1339,5, - 179,0,0,1339,1340,5,86,0,0,1340,1341,7,8,0,0,1341,1347,3,362,181, - 0,1342,1343,5,136,0,0,1343,1345,5,32,0,0,1344,1346,3,192,96,0,1345, - 1344,1,0,0,0,1345,1346,1,0,0,0,1346,1348,1,0,0,0,1347,1342,1,0,0, - 0,1347,1348,1,0,0,0,1348,143,1,0,0,0,1349,1353,3,146,73,0,1350,1353, - 3,148,74,0,1351,1353,3,150,75,0,1352,1349,1,0,0,0,1352,1350,1,0, - 0,0,1352,1351,1,0,0,0,1353,145,1,0,0,0,1354,1355,5,34,0,0,1355,1356, - 5,136,0,0,1356,1357,5,46,0,0,1357,1358,3,184,92,0,1358,1361,5,108, - 0,0,1359,1362,3,318,159,0,1360,1362,5,133,0,0,1361,1359,1,0,0,0, - 1361,1360,1,0,0,0,1362,147,1,0,0,0,1363,1364,5,34,0,0,1364,1365, - 5,136,0,0,1365,1366,5,188,0,0,1366,1367,3,186,93,0,1367,1370,5,108, - 0,0,1368,1371,3,318,159,0,1369,1371,5,133,0,0,1370,1368,1,0,0,0, - 1370,1369,1,0,0,0,1371,149,1,0,0,0,1372,1373,5,34,0,0,1373,1374, - 5,136,0,0,1374,1375,5,32,0,0,1375,1376,3,192,96,0,1376,1379,5,108, - 0,0,1377,1380,3,318,159,0,1378,1380,5,133,0,0,1379,1377,1,0,0,0, - 1379,1378,1,0,0,0,1380,151,1,0,0,0,1381,1382,5,67,0,0,1382,1383, - 3,4,2,0,1383,153,1,0,0,0,1384,1390,5,176,0,0,1385,1391,5,2,0,0,1386, - 1387,3,362,181,0,1387,1388,5,249,0,0,1388,1389,3,308,154,0,1389, - 1391,1,0,0,0,1390,1385,1,0,0,0,1390,1386,1,0,0,0,1390,1391,1,0,0, - 0,1391,155,1,0,0,0,1392,1393,5,264,0,0,1393,1394,5,180,0,0,1394, - 1404,5,265,0,0,1395,1397,3,318,159,0,1396,1395,1,0,0,0,1396,1397, - 1,0,0,0,1397,1405,1,0,0,0,1398,1401,3,318,159,0,1399,1400,5,263, - 0,0,1400,1402,3,308,154,0,1401,1399,1,0,0,0,1401,1402,1,0,0,0,1402, - 1405,1,0,0,0,1403,1405,3,308,154,0,1404,1396,1,0,0,0,1404,1398,1, - 0,0,0,1404,1403,1,0,0,0,1405,1406,1,0,0,0,1406,1407,5,266,0,0,1407, - 157,1,0,0,0,1408,1409,5,107,0,0,1409,1410,5,121,0,0,1410,1411,3, - 186,93,0,1411,159,1,0,0,0,1412,1413,5,118,0,0,1413,1414,5,45,0,0, - 1414,1415,5,98,0,0,1415,1417,5,274,0,0,1416,1418,5,144,0,0,1417, - 1416,1,0,0,0,1417,1418,1,0,0,0,1418,1419,1,0,0,0,1419,1420,5,103, - 0,0,1420,1421,5,188,0,0,1421,1431,3,186,93,0,1422,1423,5,145,0,0, - 1423,1424,5,265,0,0,1424,1427,3,308,154,0,1425,1426,5,263,0,0,1426, - 1428,3,308,154,0,1427,1425,1,0,0,0,1427,1428,1,0,0,0,1428,1429,1, - 0,0,0,1429,1430,5,266,0,0,1430,1432,1,0,0,0,1431,1422,1,0,0,0,1431, - 1432,1,0,0,0,1432,161,1,0,0,0,1433,1437,3,164,82,0,1434,1437,3,166, - 83,0,1435,1437,3,168,84,0,1436,1433,1,0,0,0,1436,1434,1,0,0,0,1436, - 1435,1,0,0,0,1437,163,1,0,0,0,1438,1439,5,162,0,0,1439,1452,3,186, - 93,0,1440,1441,5,145,0,0,1441,1442,5,265,0,0,1442,1447,3,308,154, - 0,1443,1444,5,263,0,0,1444,1446,3,308,154,0,1445,1443,1,0,0,0,1446, - 1449,1,0,0,0,1447,1448,1,0,0,0,1447,1445,1,0,0,0,1448,1450,1,0,0, - 0,1449,1447,1,0,0,0,1450,1451,5,266,0,0,1451,1453,1,0,0,0,1452,1440, - 1,0,0,0,1452,1453,1,0,0,0,1453,165,1,0,0,0,1454,1455,5,162,0,0,1455, - 1456,5,13,0,0,1456,167,1,0,0,0,1457,1458,5,162,0,0,1458,1459,5,85, - 0,0,1459,1460,3,190,95,0,1460,169,1,0,0,0,1461,1462,5,93,0,0,1462, - 1463,5,66,0,0,1463,171,1,0,0,0,1464,1465,5,93,0,0,1465,1466,5,132, - 0,0,1466,1467,5,66,0,0,1467,173,1,0,0,0,1468,1469,3,358,179,0,1469, - 175,1,0,0,0,1470,1471,3,358,179,0,1471,177,1,0,0,0,1472,1473,3,358, - 179,0,1473,179,1,0,0,0,1474,1475,3,358,179,0,1475,181,1,0,0,0,1476, - 1477,3,358,179,0,1477,183,1,0,0,0,1478,1479,3,358,179,0,1479,185, - 1,0,0,0,1480,1485,3,362,181,0,1481,1482,5,261,0,0,1482,1484,3,362, - 181,0,1483,1481,1,0,0,0,1484,1487,1,0,0,0,1485,1483,1,0,0,0,1485, - 1486,1,0,0,0,1486,187,1,0,0,0,1487,1485,1,0,0,0,1488,1493,3,362, - 181,0,1489,1490,5,261,0,0,1490,1492,3,362,181,0,1491,1489,1,0,0, - 0,1492,1495,1,0,0,0,1493,1491,1,0,0,0,1493,1494,1,0,0,0,1494,189, - 1,0,0,0,1495,1493,1,0,0,0,1496,1499,3,366,183,0,1497,1499,3,358, - 179,0,1498,1496,1,0,0,0,1498,1497,1,0,0,0,1499,191,1,0,0,0,1500, - 1503,3,358,179,0,1501,1503,4,96,0,0,1502,1500,1,0,0,0,1502,1501, - 1,0,0,0,1503,193,1,0,0,0,1504,1507,3,186,93,0,1505,1507,3,188,94, - 0,1506,1504,1,0,0,0,1506,1505,1,0,0,0,1507,195,1,0,0,0,1508,1509, - 5,21,0,0,1509,1510,5,26,0,0,1510,1512,3,296,148,0,1511,1508,1,0, - 0,0,1511,1512,1,0,0,0,1512,1514,1,0,0,0,1513,1515,3,222,111,0,1514, - 1513,1,0,0,0,1514,1515,1,0,0,0,1515,1519,1,0,0,0,1516,1517,5,168, - 0,0,1517,1518,5,79,0,0,1518,1520,3,258,129,0,1519,1516,1,0,0,0,1519, - 1520,1,0,0,0,1520,1524,1,0,0,0,1521,1522,5,216,0,0,1522,1523,5,175, - 0,0,1523,1525,3,252,126,0,1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525, - 1529,1,0,0,0,1526,1527,5,23,0,0,1527,1528,5,9,0,0,1528,1530,3,234, - 117,0,1529,1526,1,0,0,0,1529,1530,1,0,0,0,1530,1533,1,0,0,0,1531, - 1532,5,24,0,0,1532,1534,3,318,159,0,1533,1531,1,0,0,0,1533,1534, - 1,0,0,0,1534,1545,1,0,0,0,1535,1536,5,30,0,0,1536,1537,5,94,0,0, - 1537,1542,3,358,179,0,1538,1539,5,216,0,0,1539,1540,5,151,0,0,1540, - 1541,5,249,0,0,1541,1543,5,277,0,0,1542,1538,1,0,0,0,1542,1543,1, - 0,0,0,1543,1546,1,0,0,0,1544,1546,5,197,0,0,1545,1535,1,0,0,0,1545, - 1544,1,0,0,0,1545,1546,1,0,0,0,1546,1549,1,0,0,0,1547,1548,5,25, - 0,0,1548,1550,3,252,126,0,1549,1547,1,0,0,0,1549,1550,1,0,0,0,1550, - 197,1,0,0,0,1551,1556,3,200,100,0,1552,1553,5,263,0,0,1553,1555, - 3,200,100,0,1554,1552,1,0,0,0,1555,1558,1,0,0,0,1556,1554,1,0,0, - 0,1556,1557,1,0,0,0,1557,199,1,0,0,0,1558,1556,1,0,0,0,1559,1560, - 3,358,179,0,1560,1561,5,249,0,0,1561,1562,3,308,154,0,1562,201,1, - 0,0,0,1563,1565,5,265,0,0,1564,1566,3,204,102,0,1565,1564,1,0,0, - 0,1565,1566,1,0,0,0,1566,1573,1,0,0,0,1567,1569,5,263,0,0,1568,1570, - 3,204,102,0,1569,1568,1,0,0,0,1569,1570,1,0,0,0,1570,1572,1,0,0, - 0,1571,1567,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,266,0,0, - 1577,203,1,0,0,0,1578,1580,3,182,91,0,1579,1581,3,222,111,0,1580, - 1579,1,0,0,0,1580,1581,1,0,0,0,1581,205,1,0,0,0,1582,1584,3,208, - 104,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584,1585,1,0,0,0,1585, - 1586,3,262,131,0,1586,207,1,0,0,0,1587,1588,5,216,0,0,1588,1593, - 3,278,139,0,1589,1590,5,263,0,0,1590,1592,3,278,139,0,1591,1589, - 1,0,0,0,1592,1595,1,0,0,0,1593,1591,1,0,0,0,1593,1594,1,0,0,0,1594, - 209,1,0,0,0,1595,1593,1,0,0,0,1596,1597,5,150,0,0,1597,1598,5,110, - 0,0,1598,1600,3,296,148,0,1599,1601,5,53,0,0,1600,1599,1,0,0,0,1600, - 1601,1,0,0,0,1601,1605,1,0,0,0,1602,1606,5,225,0,0,1603,1604,5,263, - 0,0,1604,1606,5,225,0,0,1605,1602,1,0,0,0,1605,1603,1,0,0,0,1605, - 1606,1,0,0,0,1606,1610,1,0,0,0,1607,1611,5,226,0,0,1608,1609,5,263, - 0,0,1609,1611,5,226,0,0,1610,1607,1,0,0,0,1610,1608,1,0,0,0,1610, - 1611,1,0,0,0,1611,1624,1,0,0,0,1612,1613,5,263,0,0,1613,1616,3,212, - 106,0,1614,1616,3,212,106,0,1615,1612,1,0,0,0,1615,1614,1,0,0,0, - 1616,1621,1,0,0,0,1617,1618,5,263,0,0,1618,1620,3,212,106,0,1619, - 1617,1,0,0,0,1620,1623,1,0,0,0,1621,1622,1,0,0,0,1621,1619,1,0,0, - 0,1622,1625,1,0,0,0,1623,1621,1,0,0,0,1624,1615,1,0,0,0,1624,1625, - 1,0,0,0,1625,211,1,0,0,0,1626,1627,5,81,0,0,1627,1628,5,110,0,0, - 1628,1629,3,296,148,0,1629,1630,5,224,0,0,1630,1631,3,186,93,0,1631, - 1633,3,296,148,0,1632,1634,5,53,0,0,1633,1632,1,0,0,0,1633,1634, - 1,0,0,0,1634,1636,1,0,0,0,1635,1637,5,225,0,0,1636,1635,1,0,0,0, - 1636,1637,1,0,0,0,1637,1639,1,0,0,0,1638,1640,5,226,0,0,1639,1638, - 1,0,0,0,1639,1640,1,0,0,0,1640,213,1,0,0,0,1641,1642,3,192,96,0, - 1642,1645,3,332,166,0,1643,1644,5,34,0,0,1644,1646,3,318,159,0,1645, - 1643,1,0,0,0,1645,1646,1,0,0,0,1646,215,1,0,0,0,1647,1648,3,182, - 91,0,1648,1650,3,332,166,0,1649,1651,3,222,111,0,1650,1649,1,0,0, - 0,1650,1651,1,0,0,0,1651,217,1,0,0,0,1652,1653,3,220,110,0,1653, - 219,1,0,0,0,1654,1655,3,182,91,0,1655,1663,3,332,166,0,1656,1660, - 3,228,114,0,1657,1659,3,228,114,0,1658,1657,1,0,0,0,1659,1662,1, - 0,0,0,1660,1661,1,0,0,0,1660,1658,1,0,0,0,1661,1664,1,0,0,0,1662, - 1660,1,0,0,0,1663,1656,1,0,0,0,1663,1664,1,0,0,0,1664,1666,1,0,0, - 0,1665,1667,3,222,111,0,1666,1665,1,0,0,0,1666,1667,1,0,0,0,1667, - 1670,1,0,0,0,1668,1669,5,150,0,0,1669,1671,5,110,0,0,1670,1668,1, - 0,0,0,1670,1671,1,0,0,0,1671,221,1,0,0,0,1672,1673,5,34,0,0,1673, - 1674,3,318,159,0,1674,223,1,0,0,0,1675,1683,3,214,107,0,1676,1680, - 3,228,114,0,1677,1679,3,228,114,0,1678,1677,1,0,0,0,1679,1682,1, - 0,0,0,1680,1681,1,0,0,0,1680,1678,1,0,0,0,1681,1684,1,0,0,0,1682, - 1680,1,0,0,0,1683,1676,1,0,0,0,1683,1684,1,0,0,0,1684,225,1,0,0, - 0,1685,1686,3,182,91,0,1686,1689,3,332,166,0,1687,1688,5,34,0,0, - 1688,1690,3,318,159,0,1689,1687,1,0,0,0,1689,1690,1,0,0,0,1690,1698, - 1,0,0,0,1691,1695,3,228,114,0,1692,1694,3,228,114,0,1693,1692,1, - 0,0,0,1694,1697,1,0,0,0,1695,1696,1,0,0,0,1695,1693,1,0,0,0,1696, - 1699,1,0,0,0,1697,1695,1,0,0,0,1698,1691,1,0,0,0,1698,1699,1,0,0, - 0,1699,227,1,0,0,0,1700,1702,5,132,0,0,1701,1700,1,0,0,0,1701,1702, - 1,0,0,0,1702,1703,1,0,0,0,1703,1706,5,133,0,0,1704,1706,3,230,115, - 0,1705,1701,1,0,0,0,1705,1704,1,0,0,0,1706,229,1,0,0,0,1707,1708, - 5,60,0,0,1708,1716,3,308,154,0,1709,1710,5,35,0,0,1710,1716,3,308, - 154,0,1711,1712,5,51,0,0,1712,1716,3,308,154,0,1713,1714,5,16,0, - 0,1714,1716,3,364,182,0,1715,1707,1,0,0,0,1715,1709,1,0,0,0,1715, - 1711,1,0,0,0,1715,1713,1,0,0,0,1716,231,1,0,0,0,1717,1718,7,10,0, - 0,1718,233,1,0,0,0,1719,1720,7,11,0,0,1720,235,1,0,0,0,1721,1726, - 3,238,119,0,1722,1723,5,263,0,0,1723,1725,3,238,119,0,1724,1722, - 1,0,0,0,1725,1728,1,0,0,0,1726,1727,1,0,0,0,1726,1724,1,0,0,0,1727, - 1731,1,0,0,0,1728,1726,1,0,0,0,1729,1730,5,263,0,0,1730,1732,3,240, - 120,0,1731,1729,1,0,0,0,1731,1732,1,0,0,0,1732,1735,1,0,0,0,1733, - 1735,3,240,120,0,1734,1721,1,0,0,0,1734,1733,1,0,0,0,1735,237,1, - 0,0,0,1736,1738,5,89,0,0,1737,1739,3,296,148,0,1738,1737,1,0,0,0, - 1738,1739,1,0,0,0,1739,1740,1,0,0,0,1740,1741,5,146,0,0,1741,1742, - 3,364,182,0,1742,239,1,0,0,0,1743,1745,5,154,0,0,1744,1746,3,296, - 148,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747, - 1748,5,265,0,0,1748,1749,5,145,0,0,1749,1755,3,242,121,0,1750,1751, - 5,263,0,0,1751,1752,5,145,0,0,1752,1754,3,242,121,0,1753,1750,1, - 0,0,0,1754,1757,1,0,0,0,1755,1756,1,0,0,0,1755,1753,1,0,0,0,1756, - 1758,1,0,0,0,1757,1755,1,0,0,0,1758,1759,5,266,0,0,1759,241,1,0, - 0,0,1760,1761,5,210,0,0,1761,1762,3,248,124,0,1762,1763,3,308,154, - 0,1763,1776,1,0,0,0,1764,1765,3,308,154,0,1765,1766,3,246,123,0, - 1766,1768,1,0,0,0,1767,1764,1,0,0,0,1767,1768,1,0,0,0,1768,1769, - 1,0,0,0,1769,1773,5,211,0,0,1770,1771,3,246,123,0,1771,1772,3,308, - 154,0,1772,1774,1,0,0,0,1773,1770,1,0,0,0,1773,1774,1,0,0,0,1774, - 1776,1,0,0,0,1775,1760,1,0,0,0,1775,1767,1,0,0,0,1776,243,1,0,0, - 0,1777,1778,5,30,0,0,1778,1779,5,94,0,0,1779,1784,3,362,181,0,1780, - 1781,5,216,0,0,1781,1782,5,151,0,0,1782,1783,5,249,0,0,1783,1785, - 3,364,182,0,1784,1780,1,0,0,0,1784,1785,1,0,0,0,1785,1788,1,0,0, - 0,1786,1788,5,197,0,0,1787,1777,1,0,0,0,1787,1786,1,0,0,0,1788,245, - 1,0,0,0,1789,1795,1,0,0,0,1790,1795,5,251,0,0,1791,1795,5,252,0, - 0,1792,1795,5,253,0,0,1793,1795,5,254,0,0,1794,1789,1,0,0,0,1794, - 1790,1,0,0,0,1794,1791,1,0,0,0,1794,1792,1,0,0,0,1794,1793,1,0,0, - 0,1795,247,1,0,0,0,1796,1805,5,249,0,0,1797,1805,5,250,0,0,1798, - 1805,5,115,0,0,1799,1805,5,164,0,0,1800,1805,5,163,0,0,1801,1805, - 5,15,0,0,1802,1805,5,94,0,0,1803,1805,3,246,123,0,1804,1796,1,0, - 0,0,1804,1797,1,0,0,0,1804,1798,1,0,0,0,1804,1799,1,0,0,0,1804,1800, - 1,0,0,0,1804,1801,1,0,0,0,1804,1802,1,0,0,0,1804,1803,1,0,0,0,1805, - 249,1,0,0,0,1806,1807,5,115,0,0,1807,1810,3,358,179,0,1808,1809, - 7,12,0,0,1809,1811,5,153,0,0,1810,1808,1,0,0,0,1810,1811,1,0,0,0, - 1811,251,1,0,0,0,1812,1813,5,265,0,0,1813,1818,3,260,130,0,1814, - 1815,5,263,0,0,1815,1817,3,260,130,0,1816,1814,1,0,0,0,1817,1820, - 1,0,0,0,1818,1816,1,0,0,0,1818,1819,1,0,0,0,1819,1821,1,0,0,0,1820, - 1818,1,0,0,0,1821,1822,5,266,0,0,1822,253,1,0,0,0,1823,1824,5,265, - 0,0,1824,1829,3,214,107,0,1825,1826,5,263,0,0,1826,1828,3,214,107, - 0,1827,1825,1,0,0,0,1828,1831,1,0,0,0,1829,1830,1,0,0,0,1829,1827, - 1,0,0,0,1830,1832,1,0,0,0,1831,1829,1,0,0,0,1832,1833,5,266,0,0, - 1833,255,1,0,0,0,1834,1839,3,308,154,0,1835,1836,5,263,0,0,1836, - 1838,3,308,154,0,1837,1835,1,0,0,0,1838,1841,1,0,0,0,1839,1837,1, - 0,0,0,1839,1840,1,0,0,0,1840,257,1,0,0,0,1841,1839,1,0,0,0,1842, - 1852,5,52,0,0,1843,1844,5,71,0,0,1844,1845,5,191,0,0,1845,1846,5, - 26,0,0,1846,1850,3,318,159,0,1847,1848,5,63,0,0,1848,1849,5,26,0, - 0,1849,1851,3,318,159,0,1850,1847,1,0,0,0,1850,1851,1,0,0,0,1851, - 1853,1,0,0,0,1852,1843,1,0,0,0,1852,1853,1,0,0,0,1853,1858,1,0,0, - 0,1854,1855,5,117,0,0,1855,1856,5,191,0,0,1856,1857,5,26,0,0,1857, - 1859,3,318,159,0,1858,1854,1,0,0,0,1858,1859,1,0,0,0,1859,259,1, - 0,0,0,1860,1863,3,362,181,0,1861,1862,5,249,0,0,1862,1864,3,308, - 154,0,1863,1861,1,0,0,0,1863,1864,1,0,0,0,1864,261,1,0,0,0,1865, - 1876,3,264,132,0,1866,1867,5,139,0,0,1867,1868,5,26,0,0,1868,1873, - 3,268,134,0,1869,1870,5,263,0,0,1870,1872,3,268,134,0,1871,1869, - 1,0,0,0,1872,1875,1,0,0,0,1873,1871,1,0,0,0,1873,1874,1,0,0,0,1874, - 1877,1,0,0,0,1875,1873,1,0,0,0,1876,1866,1,0,0,0,1876,1877,1,0,0, - 0,1877,1884,1,0,0,0,1878,1879,5,116,0,0,1879,1882,3,308,154,0,1880, - 1881,5,135,0,0,1881,1883,5,277,0,0,1882,1880,1,0,0,0,1882,1883,1, - 0,0,0,1883,1885,1,0,0,0,1884,1878,1,0,0,0,1884,1885,1,0,0,0,1885, - 263,1,0,0,0,1886,1887,6,132,-1,0,1887,1888,3,266,133,0,1888,1903, - 1,0,0,0,1889,1890,10,2,0,0,1890,1892,5,100,0,0,1891,1893,3,280,140, - 0,1892,1891,1,0,0,0,1892,1893,1,0,0,0,1893,1894,1,0,0,0,1894,1902, - 3,264,132,3,1895,1896,10,1,0,0,1896,1898,7,13,0,0,1897,1899,3,280, - 140,0,1898,1897,1,0,0,0,1898,1899,1,0,0,0,1899,1900,1,0,0,0,1900, - 1902,3,264,132,2,1901,1889,1,0,0,0,1901,1895,1,0,0,0,1902,1905,1, - 0,0,0,1903,1901,1,0,0,0,1903,1904,1,0,0,0,1904,265,1,0,0,0,1905, - 1903,1,0,0,0,1906,1923,3,270,135,0,1907,1908,5,188,0,0,1908,1923, - 3,186,93,0,1909,1910,5,211,0,0,1910,1915,3,308,154,0,1911,1912,5, - 263,0,0,1912,1914,3,308,154,0,1913,1911,1,0,0,0,1914,1917,1,0,0, - 0,1915,1913,1,0,0,0,1915,1916,1,0,0,0,1916,1923,1,0,0,0,1917,1915, - 1,0,0,0,1918,1919,5,265,0,0,1919,1920,3,262,131,0,1920,1921,5,266, - 0,0,1921,1923,1,0,0,0,1922,1906,1,0,0,0,1922,1907,1,0,0,0,1922,1909, - 1,0,0,0,1922,1918,1,0,0,0,1923,267,1,0,0,0,1924,1926,3,306,153,0, - 1925,1927,7,14,0,0,1926,1925,1,0,0,0,1926,1927,1,0,0,0,1927,1930, - 1,0,0,0,1928,1929,5,134,0,0,1929,1931,7,15,0,0,1930,1928,1,0,0,0, - 1930,1931,1,0,0,0,1931,269,1,0,0,0,1932,1934,5,174,0,0,1933,1935, - 3,280,140,0,1934,1933,1,0,0,0,1934,1935,1,0,0,0,1935,1937,1,0,0, - 0,1936,1938,5,183,0,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939, - 1,0,0,0,1939,1944,3,282,141,0,1940,1941,5,263,0,0,1941,1943,3,282, - 141,0,1942,1940,1,0,0,0,1943,1946,1,0,0,0,1944,1942,1,0,0,0,1944, - 1945,1,0,0,0,1945,1956,1,0,0,0,1946,1944,1,0,0,0,1947,1948,5,82, - 0,0,1948,1953,3,284,142,0,1949,1950,5,263,0,0,1950,1952,3,284,142, - 0,1951,1949,1,0,0,0,1952,1955,1,0,0,0,1953,1951,1,0,0,0,1953,1954, - 1,0,0,0,1954,1957,1,0,0,0,1955,1953,1,0,0,0,1956,1947,1,0,0,0,1956, - 1957,1,0,0,0,1957,1960,1,0,0,0,1958,1959,5,215,0,0,1959,1961,3,310, - 155,0,1960,1958,1,0,0,0,1960,1961,1,0,0,0,1961,1965,1,0,0,0,1962, - 1963,5,87,0,0,1963,1964,5,26,0,0,1964,1966,3,272,136,0,1965,1962, - 1,0,0,0,1965,1966,1,0,0,0,1966,1969,1,0,0,0,1967,1968,5,90,0,0,1968, - 1970,3,310,155,0,1969,1967,1,0,0,0,1969,1970,1,0,0,0,1970,271,1, - 0,0,0,1971,1973,3,280,140,0,1972,1971,1,0,0,0,1972,1973,1,0,0,0, - 1973,1974,1,0,0,0,1974,1979,3,274,137,0,1975,1976,5,263,0,0,1976, - 1978,3,274,137,0,1977,1975,1,0,0,0,1978,1981,1,0,0,0,1979,1977,1, - 0,0,0,1979,1980,1,0,0,0,1980,273,1,0,0,0,1981,1979,1,0,0,0,1982, - 1983,3,276,138,0,1983,275,1,0,0,0,1984,1993,5,265,0,0,1985,1990, - 3,306,153,0,1986,1987,5,263,0,0,1987,1989,3,306,153,0,1988,1986, - 1,0,0,0,1989,1992,1,0,0,0,1990,1988,1,0,0,0,1990,1991,1,0,0,0,1991, - 1994,1,0,0,0,1992,1990,1,0,0,0,1993,1985,1,0,0,0,1993,1994,1,0,0, - 0,1994,1995,1,0,0,0,1995,1998,5,266,0,0,1996,1998,3,306,153,0,1997, - 1984,1,0,0,0,1997,1996,1,0,0,0,1998,277,1,0,0,0,1999,2001,3,362, - 181,0,2000,2002,3,296,148,0,2001,2000,1,0,0,0,2001,2002,1,0,0,0, - 2002,2003,1,0,0,0,2003,2004,5,9,0,0,2004,2005,3,300,150,0,2005,279, - 1,0,0,0,2006,2007,7,16,0,0,2007,281,1,0,0,0,2008,2013,3,306,153, - 0,2009,2011,5,9,0,0,2010,2009,1,0,0,0,2010,2011,1,0,0,0,2011,2012, - 1,0,0,0,2012,2014,3,362,181,0,2013,2010,1,0,0,0,2013,2014,1,0,0, - 0,2014,2021,1,0,0,0,2015,2016,3,358,179,0,2016,2017,5,261,0,0,2017, - 2018,5,257,0,0,2018,2021,1,0,0,0,2019,2021,5,257,0,0,2020,2008,1, - 0,0,0,2020,2015,1,0,0,0,2020,2019,1,0,0,0,2021,283,1,0,0,0,2022, - 2023,6,142,-1,0,2023,2024,3,290,145,0,2024,2038,1,0,0,0,2025,2034, - 10,2,0,0,2026,2027,5,38,0,0,2027,2028,5,109,0,0,2028,2035,3,290, - 145,0,2029,2030,3,286,143,0,2030,2031,5,109,0,0,2031,2032,3,284, - 142,0,2032,2033,3,288,144,0,2033,2035,1,0,0,0,2034,2026,1,0,0,0, - 2034,2029,1,0,0,0,2035,2037,1,0,0,0,2036,2025,1,0,0,0,2037,2040, - 1,0,0,0,2038,2036,1,0,0,0,2038,2039,1,0,0,0,2039,285,1,0,0,0,2040, - 2038,1,0,0,0,2041,2043,5,97,0,0,2042,2041,1,0,0,0,2042,2043,1,0, - 0,0,2043,2073,1,0,0,0,2044,2046,5,114,0,0,2045,2047,5,97,0,0,2046, - 2045,1,0,0,0,2046,2047,1,0,0,0,2047,2073,1,0,0,0,2048,2050,5,165, - 0,0,2049,2051,5,97,0,0,2050,2049,1,0,0,0,2050,2051,1,0,0,0,2051, - 2073,1,0,0,0,2052,2054,5,114,0,0,2053,2055,5,141,0,0,2054,2053,1, - 0,0,0,2054,2055,1,0,0,0,2055,2073,1,0,0,0,2056,2058,5,165,0,0,2057, - 2059,5,141,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2073,1,0, - 0,0,2060,2062,5,83,0,0,2061,2063,5,141,0,0,2062,2061,1,0,0,0,2062, - 2063,1,0,0,0,2063,2073,1,0,0,0,2064,2065,5,114,0,0,2065,2073,5,177, - 0,0,2066,2067,5,165,0,0,2067,2073,5,177,0,0,2068,2069,5,114,0,0, - 2069,2073,5,7,0,0,2070,2071,5,165,0,0,2071,2073,5,7,0,0,2072,2042, - 1,0,0,0,2072,2044,1,0,0,0,2072,2048,1,0,0,0,2072,2052,1,0,0,0,2072, - 2056,1,0,0,0,2072,2060,1,0,0,0,2072,2064,1,0,0,0,2072,2066,1,0,0, - 0,2072,2068,1,0,0,0,2072,2070,1,0,0,0,2073,287,1,0,0,0,2074,2075, - 5,136,0,0,2075,2089,3,310,155,0,2076,2077,5,205,0,0,2077,2078,5, - 265,0,0,2078,2083,3,362,181,0,2079,2080,5,263,0,0,2080,2082,3,362, - 181,0,2081,2079,1,0,0,0,2082,2085,1,0,0,0,2083,2081,1,0,0,0,2083, - 2084,1,0,0,0,2084,2086,1,0,0,0,2085,2083,1,0,0,0,2086,2087,5,266, - 0,0,2087,2089,1,0,0,0,2088,2074,1,0,0,0,2088,2076,1,0,0,0,2089,289, - 1,0,0,0,2090,2103,3,294,147,0,2091,2092,5,190,0,0,2092,2093,3,292, - 146,0,2093,2094,5,265,0,0,2094,2095,3,308,154,0,2095,2101,5,266, - 0,0,2096,2097,5,157,0,0,2097,2098,5,265,0,0,2098,2099,3,308,154, - 0,2099,2100,5,266,0,0,2100,2102,1,0,0,0,2101,2096,1,0,0,0,2101,2102, - 1,0,0,0,2102,2104,1,0,0,0,2103,2091,1,0,0,0,2103,2104,1,0,0,0,2104, - 291,1,0,0,0,2105,2106,7,17,0,0,2106,293,1,0,0,0,2107,2115,3,298, - 149,0,2108,2110,5,9,0,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110, - 2111,1,0,0,0,2111,2113,3,362,181,0,2112,2114,3,296,148,0,2113,2112, - 1,0,0,0,2113,2114,1,0,0,0,2114,2116,1,0,0,0,2115,2109,1,0,0,0,2115, - 2116,1,0,0,0,2116,295,1,0,0,0,2117,2118,5,265,0,0,2118,2123,3,192, - 96,0,2119,2120,5,263,0,0,2120,2122,3,192,96,0,2121,2119,1,0,0,0, - 2122,2125,1,0,0,0,2123,2121,1,0,0,0,2123,2124,1,0,0,0,2124,2126, - 1,0,0,0,2125,2123,1,0,0,0,2126,2127,5,266,0,0,2127,297,1,0,0,0,2128, - 2136,3,194,97,0,2129,2131,5,113,0,0,2130,2129,1,0,0,0,2130,2131, - 1,0,0,0,2131,2132,1,0,0,0,2132,2136,3,300,150,0,2133,2136,3,302, - 151,0,2134,2136,3,304,152,0,2135,2128,1,0,0,0,2135,2130,1,0,0,0, - 2135,2133,1,0,0,0,2135,2134,1,0,0,0,2136,299,1,0,0,0,2137,2138,5, - 265,0,0,2138,2139,3,206,103,0,2139,2140,5,266,0,0,2140,301,1,0,0, - 0,2141,2142,5,201,0,0,2142,2143,5,265,0,0,2143,2148,3,308,154,0, - 2144,2145,5,263,0,0,2145,2147,3,308,154,0,2146,2144,1,0,0,0,2147, - 2150,1,0,0,0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2151,1,0,0, - 0,2150,2148,1,0,0,0,2151,2154,5,266,0,0,2152,2153,5,216,0,0,2153, - 2155,5,140,0,0,2154,2152,1,0,0,0,2154,2155,1,0,0,0,2155,303,1,0, - 0,0,2156,2157,5,265,0,0,2157,2158,3,284,142,0,2158,2159,5,266,0, - 0,2159,305,1,0,0,0,2160,2163,3,192,96,0,2161,2163,3,308,154,0,2162, - 2160,1,0,0,0,2162,2161,1,0,0,0,2163,307,1,0,0,0,2164,2165,3,310, - 155,0,2165,309,1,0,0,0,2166,2167,6,155,-1,0,2167,2169,3,314,157, - 0,2168,2170,3,312,156,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170, - 2174,1,0,0,0,2171,2172,5,132,0,0,2172,2174,3,310,155,3,2173,2166, - 1,0,0,0,2173,2171,1,0,0,0,2174,2183,1,0,0,0,2175,2176,10,2,0,0,2176, - 2177,5,5,0,0,2177,2182,3,310,155,3,2178,2179,10,1,0,0,2179,2180, - 5,138,0,0,2180,2182,3,310,155,2,2181,2175,1,0,0,0,2181,2178,1,0, - 0,0,2182,2185,1,0,0,0,2183,2181,1,0,0,0,2183,2184,1,0,0,0,2184,311, - 1,0,0,0,2185,2183,1,0,0,0,2186,2187,3,320,160,0,2187,2188,3,314, - 157,0,2188,2245,1,0,0,0,2189,2190,3,320,160,0,2190,2191,3,322,161, - 0,2191,2192,3,300,150,0,2192,2245,1,0,0,0,2193,2195,5,132,0,0,2194, - 2193,1,0,0,0,2194,2195,1,0,0,0,2195,2196,1,0,0,0,2196,2197,5,15, - 0,0,2197,2198,3,314,157,0,2198,2199,5,5,0,0,2199,2200,3,314,157, - 0,2200,2245,1,0,0,0,2201,2203,5,132,0,0,2202,2201,1,0,0,0,2202,2203, - 1,0,0,0,2203,2204,1,0,0,0,2204,2205,5,94,0,0,2205,2206,5,265,0,0, - 2206,2211,3,308,154,0,2207,2208,5,263,0,0,2208,2210,3,308,154,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,266,0,0, - 2215,2245,1,0,0,0,2216,2218,5,132,0,0,2217,2216,1,0,0,0,2217,2218, - 1,0,0,0,2218,2219,1,0,0,0,2219,2220,5,94,0,0,2220,2245,3,300,150, - 0,2221,2223,5,132,0,0,2222,2221,1,0,0,0,2222,2223,1,0,0,0,2223,2224, - 1,0,0,0,2224,2225,7,18,0,0,2225,2228,3,314,157,0,2226,2227,5,62, - 0,0,2227,2229,3,314,157,0,2228,2226,1,0,0,0,2228,2229,1,0,0,0,2229, - 2245,1,0,0,0,2230,2231,7,19,0,0,2231,2245,3,314,157,0,2232,2234, - 5,108,0,0,2233,2235,5,132,0,0,2234,2233,1,0,0,0,2234,2235,1,0,0, - 0,2235,2236,1,0,0,0,2236,2245,7,20,0,0,2237,2239,5,108,0,0,2238, - 2240,5,132,0,0,2239,2238,1,0,0,0,2239,2240,1,0,0,0,2240,2241,1,0, - 0,0,2241,2242,5,57,0,0,2242,2243,5,82,0,0,2243,2245,3,314,157,0, - 2244,2186,1,0,0,0,2244,2189,1,0,0,0,2244,2194,1,0,0,0,2244,2202, - 1,0,0,0,2244,2217,1,0,0,0,2244,2222,1,0,0,0,2244,2230,1,0,0,0,2244, - 2232,1,0,0,0,2244,2237,1,0,0,0,2245,313,1,0,0,0,2246,2247,6,157, - -1,0,2247,2251,3,316,158,0,2248,2249,7,21,0,0,2249,2251,3,314,157, - 4,2250,2246,1,0,0,0,2250,2248,1,0,0,0,2251,2263,1,0,0,0,2252,2253, - 10,3,0,0,2253,2254,7,22,0,0,2254,2262,3,314,157,4,2255,2256,10,2, - 0,0,2256,2257,7,21,0,0,2257,2262,3,314,157,3,2258,2259,10,1,0,0, - 2259,2260,5,260,0,0,2260,2262,3,314,157,2,2261,2252,1,0,0,0,2261, - 2255,1,0,0,0,2261,2258,1,0,0,0,2262,2265,1,0,0,0,2263,2261,1,0,0, - 0,2263,2264,1,0,0,0,2264,315,1,0,0,0,2265,2263,1,0,0,0,2266,2267, - 6,158,-1,0,2267,2513,5,133,0,0,2268,2513,3,326,163,0,2269,2270,3, - 362,181,0,2270,2271,3,318,159,0,2271,2513,1,0,0,0,2272,2273,5,286, - 0,0,2273,2513,3,318,159,0,2274,2513,3,364,182,0,2275,2513,3,324, - 162,0,2276,2513,3,318,159,0,2277,2513,5,276,0,0,2278,2513,5,272, - 0,0,2279,2280,5,148,0,0,2280,2281,5,265,0,0,2281,2282,3,314,157, - 0,2282,2283,5,94,0,0,2283,2284,3,314,157,0,2284,2285,5,266,0,0,2285, - 2513,1,0,0,0,2286,2287,5,265,0,0,2287,2290,3,308,154,0,2288,2289, - 5,9,0,0,2289,2291,3,332,166,0,2290,2288,1,0,0,0,2290,2291,1,0,0, - 0,2291,2300,1,0,0,0,2292,2293,5,263,0,0,2293,2296,3,308,154,0,2294, - 2295,5,9,0,0,2295,2297,3,332,166,0,2296,2294,1,0,0,0,2296,2297,1, - 0,0,0,2297,2299,1,0,0,0,2298,2292,1,0,0,0,2299,2302,1,0,0,0,2300, - 2301,1,0,0,0,2300,2298,1,0,0,0,2301,2303,1,0,0,0,2302,2300,1,0,0, - 0,2303,2304,5,266,0,0,2304,2513,1,0,0,0,2305,2306,5,168,0,0,2306, - 2307,5,265,0,0,2307,2312,3,308,154,0,2308,2309,5,263,0,0,2309,2311, - 3,308,154,0,2310,2308,1,0,0,0,2311,2314,1,0,0,0,2312,2310,1,0,0, - 0,2312,2313,1,0,0,0,2313,2315,1,0,0,0,2314,2312,1,0,0,0,2315,2316, - 5,266,0,0,2316,2513,1,0,0,0,2317,2318,3,190,95,0,2318,2319,5,265, - 0,0,2319,2320,5,257,0,0,2320,2322,5,266,0,0,2321,2323,3,342,171, - 0,2322,2321,1,0,0,0,2322,2323,1,0,0,0,2323,2325,1,0,0,0,2324,2326, - 3,344,172,0,2325,2324,1,0,0,0,2325,2326,1,0,0,0,2326,2513,1,0,0, - 0,2327,2328,3,190,95,0,2328,2340,5,265,0,0,2329,2331,3,280,140,0, - 2330,2329,1,0,0,0,2330,2331,1,0,0,0,2331,2332,1,0,0,0,2332,2337, - 3,308,154,0,2333,2334,5,263,0,0,2334,2336,3,308,154,0,2335,2333, - 1,0,0,0,2336,2339,1,0,0,0,2337,2335,1,0,0,0,2337,2338,1,0,0,0,2338, - 2341,1,0,0,0,2339,2337,1,0,0,0,2340,2330,1,0,0,0,2340,2341,1,0,0, - 0,2341,2352,1,0,0,0,2342,2343,5,139,0,0,2343,2344,5,26,0,0,2344, - 2349,3,268,134,0,2345,2346,5,263,0,0,2346,2348,3,268,134,0,2347, - 2345,1,0,0,0,2348,2351,1,0,0,0,2349,2347,1,0,0,0,2349,2350,1,0,0, - 0,2350,2353,1,0,0,0,2351,2349,1,0,0,0,2352,2342,1,0,0,0,2352,2353, - 1,0,0,0,2353,2354,1,0,0,0,2354,2356,5,266,0,0,2355,2357,3,342,171, - 0,2356,2355,1,0,0,0,2356,2357,1,0,0,0,2357,2359,1,0,0,0,2358,2360, - 3,344,172,0,2359,2358,1,0,0,0,2359,2360,1,0,0,0,2360,2513,1,0,0, - 0,2361,2362,3,362,181,0,2362,2363,5,273,0,0,2363,2364,3,308,154, - 0,2364,2513,1,0,0,0,2365,2374,5,265,0,0,2366,2371,3,362,181,0,2367, - 2368,5,263,0,0,2368,2370,3,362,181,0,2369,2367,1,0,0,0,2370,2373, - 1,0,0,0,2371,2369,1,0,0,0,2371,2372,1,0,0,0,2372,2375,1,0,0,0,2373, - 2371,1,0,0,0,2374,2366,1,0,0,0,2374,2375,1,0,0,0,2375,2376,1,0,0, - 0,2376,2377,5,266,0,0,2377,2378,5,273,0,0,2378,2513,3,308,154,0, - 2379,2380,5,265,0,0,2380,2381,3,206,103,0,2381,2382,5,266,0,0,2382, - 2513,1,0,0,0,2383,2384,5,66,0,0,2384,2385,5,265,0,0,2385,2386,3, - 206,103,0,2386,2387,5,266,0,0,2387,2513,1,0,0,0,2388,2389,5,28,0, - 0,2389,2391,3,314,157,0,2390,2392,3,340,170,0,2391,2390,1,0,0,0, - 2392,2393,1,0,0,0,2393,2391,1,0,0,0,2393,2394,1,0,0,0,2394,2397, - 1,0,0,0,2395,2396,5,59,0,0,2396,2398,3,308,154,0,2397,2395,1,0,0, - 0,2397,2398,1,0,0,0,2398,2399,1,0,0,0,2399,2400,5,61,0,0,2400,2513, - 1,0,0,0,2401,2403,5,28,0,0,2402,2404,3,340,170,0,2403,2402,1,0,0, - 0,2404,2405,1,0,0,0,2405,2403,1,0,0,0,2405,2406,1,0,0,0,2406,2409, - 1,0,0,0,2407,2408,5,59,0,0,2408,2410,3,308,154,0,2409,2407,1,0,0, - 0,2409,2410,1,0,0,0,2410,2411,1,0,0,0,2411,2412,5,61,0,0,2412,2513, - 1,0,0,0,2413,2414,5,29,0,0,2414,2415,5,265,0,0,2415,2416,3,308,154, - 0,2416,2417,5,9,0,0,2417,2418,3,332,166,0,2418,2419,5,266,0,0,2419, - 2513,1,0,0,0,2420,2421,5,195,0,0,2421,2422,5,265,0,0,2422,2423,3, - 308,154,0,2423,2424,5,9,0,0,2424,2425,3,332,166,0,2425,2426,5,266, - 0,0,2426,2513,1,0,0,0,2427,2428,5,8,0,0,2428,2437,5,267,0,0,2429, - 2434,3,308,154,0,2430,2431,5,263,0,0,2431,2433,3,308,154,0,2432, - 2430,1,0,0,0,2433,2436,1,0,0,0,2434,2432,1,0,0,0,2434,2435,1,0,0, - 0,2435,2438,1,0,0,0,2436,2434,1,0,0,0,2437,2429,1,0,0,0,2437,2438, - 1,0,0,0,2438,2439,1,0,0,0,2439,2513,5,268,0,0,2440,2513,3,362,181, - 0,2441,2513,5,40,0,0,2442,2446,5,42,0,0,2443,2444,5,265,0,0,2444, - 2445,5,277,0,0,2445,2447,5,266,0,0,2446,2443,1,0,0,0,2446,2447,1, - 0,0,0,2447,2513,1,0,0,0,2448,2452,5,43,0,0,2449,2450,5,265,0,0,2450, - 2451,5,277,0,0,2451,2453,5,266,0,0,2452,2449,1,0,0,0,2452,2453,1, - 0,0,0,2453,2513,1,0,0,0,2454,2458,5,119,0,0,2455,2456,5,265,0,0, - 2456,2457,5,277,0,0,2457,2459,5,266,0,0,2458,2455,1,0,0,0,2458,2459, - 1,0,0,0,2459,2513,1,0,0,0,2460,2464,5,120,0,0,2461,2462,5,265,0, - 0,2462,2463,5,277,0,0,2463,2465,5,266,0,0,2464,2461,1,0,0,0,2464, - 2465,1,0,0,0,2465,2513,1,0,0,0,2466,2513,5,44,0,0,2467,2513,5,41, - 0,0,2468,2469,5,184,0,0,2469,2470,5,265,0,0,2470,2471,3,314,157, - 0,2471,2472,5,82,0,0,2472,2475,3,314,157,0,2473,2474,5,78,0,0,2474, - 2476,3,314,157,0,2475,2473,1,0,0,0,2475,2476,1,0,0,0,2476,2477,1, - 0,0,0,2477,2478,5,266,0,0,2478,2513,1,0,0,0,2479,2480,5,131,0,0, - 2480,2481,5,265,0,0,2481,2484,3,314,157,0,2482,2483,5,263,0,0,2483, - 2485,3,330,165,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1, - 0,0,0,2486,2487,5,266,0,0,2487,2513,1,0,0,0,2488,2489,5,68,0,0,2489, - 2490,5,265,0,0,2490,2491,3,362,181,0,2491,2492,5,82,0,0,2492,2493, - 3,314,157,0,2493,2494,5,266,0,0,2494,2513,1,0,0,0,2495,2496,5,265, - 0,0,2496,2497,3,308,154,0,2497,2498,5,266,0,0,2498,2513,1,0,0,0, - 2499,2500,5,88,0,0,2500,2509,5,265,0,0,2501,2506,3,358,179,0,2502, - 2503,5,263,0,0,2503,2505,3,358,179,0,2504,2502,1,0,0,0,2505,2508, - 1,0,0,0,2506,2504,1,0,0,0,2506,2507,1,0,0,0,2507,2510,1,0,0,0,2508, - 2506,1,0,0,0,2509,2501,1,0,0,0,2509,2510,1,0,0,0,2510,2511,1,0,0, - 0,2511,2513,5,266,0,0,2512,2266,1,0,0,0,2512,2268,1,0,0,0,2512,2269, - 1,0,0,0,2512,2272,1,0,0,0,2512,2274,1,0,0,0,2512,2275,1,0,0,0,2512, - 2276,1,0,0,0,2512,2277,1,0,0,0,2512,2278,1,0,0,0,2512,2279,1,0,0, - 0,2512,2286,1,0,0,0,2512,2305,1,0,0,0,2512,2317,1,0,0,0,2512,2327, - 1,0,0,0,2512,2361,1,0,0,0,2512,2365,1,0,0,0,2512,2379,1,0,0,0,2512, - 2383,1,0,0,0,2512,2388,1,0,0,0,2512,2401,1,0,0,0,2512,2413,1,0,0, - 0,2512,2420,1,0,0,0,2512,2427,1,0,0,0,2512,2440,1,0,0,0,2512,2441, - 1,0,0,0,2512,2442,1,0,0,0,2512,2448,1,0,0,0,2512,2454,1,0,0,0,2512, - 2460,1,0,0,0,2512,2466,1,0,0,0,2512,2467,1,0,0,0,2512,2468,1,0,0, - 0,2512,2479,1,0,0,0,2512,2488,1,0,0,0,2512,2495,1,0,0,0,2512,2499, - 1,0,0,0,2513,2524,1,0,0,0,2514,2515,10,15,0,0,2515,2516,5,267,0, - 0,2516,2517,3,314,157,0,2517,2518,5,268,0,0,2518,2523,1,0,0,0,2519, - 2520,10,13,0,0,2520,2521,5,261,0,0,2521,2523,3,362,181,0,2522,2514, - 1,0,0,0,2522,2519,1,0,0,0,2523,2526,1,0,0,0,2524,2522,1,0,0,0,2524, - 2525,1,0,0,0,2525,317,1,0,0,0,2526,2524,1,0,0,0,2527,2534,5,274, - 0,0,2528,2531,5,275,0,0,2529,2530,5,198,0,0,2530,2532,5,274,0,0, - 2531,2529,1,0,0,0,2531,2532,1,0,0,0,2532,2534,1,0,0,0,2533,2527, - 1,0,0,0,2533,2528,1,0,0,0,2534,319,1,0,0,0,2535,2536,7,23,0,0,2536, - 321,1,0,0,0,2537,2538,7,24,0,0,2538,323,1,0,0,0,2539,2540,7,25,0, - 0,2540,325,1,0,0,0,2541,2542,5,277,0,0,2542,2556,3,328,164,0,2543, - 2544,5,265,0,0,2544,2545,5,277,0,0,2545,2546,5,266,0,0,2546,2556, - 3,328,164,0,2547,2548,5,101,0,0,2548,2549,5,277,0,0,2549,2556,3, - 328,164,0,2550,2551,5,101,0,0,2551,2552,5,265,0,0,2552,2553,5,277, - 0,0,2553,2554,5,266,0,0,2554,2556,3,328,164,0,2555,2541,1,0,0,0, - 2555,2543,1,0,0,0,2555,2547,1,0,0,0,2555,2550,1,0,0,0,2556,327,1, - 0,0,0,2557,2558,7,26,0,0,2558,329,1,0,0,0,2559,2560,7,27,0,0,2560, - 331,1,0,0,0,2561,2562,6,166,-1,0,2562,2563,5,8,0,0,2563,2564,5,251, - 0,0,2564,2565,3,332,166,0,2565,2566,5,253,0,0,2566,2607,1,0,0,0, - 2567,2568,5,235,0,0,2568,2569,5,251,0,0,2569,2570,3,332,166,0,2570, - 2571,5,263,0,0,2571,2572,3,332,166,0,2572,2573,5,253,0,0,2573,2607, - 1,0,0,0,2574,2575,5,240,0,0,2575,2576,5,251,0,0,2576,2577,3,362, - 181,0,2577,2584,3,332,166,0,2578,2579,5,263,0,0,2579,2580,3,362, - 181,0,2580,2581,3,332,166,0,2581,2583,1,0,0,0,2582,2578,1,0,0,0, - 2583,2586,1,0,0,0,2584,2582,1,0,0,0,2584,2585,1,0,0,0,2585,2587, - 1,0,0,0,2586,2584,1,0,0,0,2587,2588,5,253,0,0,2588,2607,1,0,0,0, - 2589,2592,3,338,169,0,2590,2592,3,334,167,0,2591,2589,1,0,0,0,2591, - 2590,1,0,0,0,2592,2604,1,0,0,0,2593,2594,5,265,0,0,2594,2599,3,336, - 168,0,2595,2596,5,263,0,0,2596,2598,3,336,168,0,2597,2595,1,0,0, - 0,2598,2601,1,0,0,0,2599,2597,1,0,0,0,2599,2600,1,0,0,0,2600,2602, - 1,0,0,0,2601,2599,1,0,0,0,2602,2603,5,266,0,0,2603,2605,1,0,0,0, - 2604,2593,1,0,0,0,2604,2605,1,0,0,0,2605,2607,1,0,0,0,2606,2561, - 1,0,0,0,2606,2567,1,0,0,0,2606,2574,1,0,0,0,2606,2591,1,0,0,0,2607, - 2612,1,0,0,0,2608,2609,10,5,0,0,2609,2611,5,8,0,0,2610,2608,1,0, - 0,0,2611,2614,1,0,0,0,2612,2610,1,0,0,0,2612,2613,1,0,0,0,2613,333, - 1,0,0,0,2614,2612,1,0,0,0,2615,2616,7,28,0,0,2616,335,1,0,0,0,2617, - 2620,5,277,0,0,2618,2620,3,332,166,0,2619,2617,1,0,0,0,2619,2618, - 1,0,0,0,2620,337,1,0,0,0,2621,2626,5,284,0,0,2622,2626,5,285,0,0, - 2623,2626,5,286,0,0,2624,2626,3,362,181,0,2625,2621,1,0,0,0,2625, - 2622,1,0,0,0,2625,2623,1,0,0,0,2625,2624,1,0,0,0,2626,339,1,0,0, - 0,2627,2628,5,214,0,0,2628,2629,3,308,154,0,2629,2630,5,192,0,0, - 2630,2631,3,308,154,0,2631,341,1,0,0,0,2632,2633,5,74,0,0,2633,2634, - 5,265,0,0,2634,2635,5,215,0,0,2635,2636,3,310,155,0,2636,2637,5, - 266,0,0,2637,343,1,0,0,0,2638,2639,5,143,0,0,2639,2650,5,265,0,0, - 2640,2641,5,145,0,0,2641,2642,5,26,0,0,2642,2647,3,308,154,0,2643, - 2644,5,263,0,0,2644,2646,3,308,154,0,2645,2643,1,0,0,0,2646,2649, - 1,0,0,0,2647,2645,1,0,0,0,2647,2648,1,0,0,0,2648,2651,1,0,0,0,2649, - 2647,1,0,0,0,2650,2640,1,0,0,0,2650,2651,1,0,0,0,2651,2662,1,0,0, - 0,2652,2653,5,139,0,0,2653,2654,5,26,0,0,2654,2659,3,268,134,0,2655, - 2656,5,263,0,0,2656,2658,3,268,134,0,2657,2655,1,0,0,0,2658,2661, - 1,0,0,0,2659,2657,1,0,0,0,2659,2660,1,0,0,0,2660,2663,1,0,0,0,2661, - 2659,1,0,0,0,2662,2652,1,0,0,0,2662,2663,1,0,0,0,2663,2665,1,0,0, - 0,2664,2666,3,346,173,0,2665,2664,1,0,0,0,2665,2666,1,0,0,0,2666, - 2667,1,0,0,0,2667,2668,5,266,0,0,2668,345,1,0,0,0,2669,2670,5,154, - 0,0,2670,2686,3,348,174,0,2671,2672,5,169,0,0,2672,2686,3,348,174, - 0,2673,2674,5,154,0,0,2674,2675,5,15,0,0,2675,2676,3,348,174,0,2676, - 2677,5,5,0,0,2677,2678,3,348,174,0,2678,2686,1,0,0,0,2679,2680,5, - 169,0,0,2680,2681,5,15,0,0,2681,2682,3,348,174,0,2682,2683,5,5,0, - 0,2683,2684,3,348,174,0,2684,2686,1,0,0,0,2685,2669,1,0,0,0,2685, - 2671,1,0,0,0,2685,2673,1,0,0,0,2685,2679,1,0,0,0,2686,347,1,0,0, - 0,2687,2688,5,199,0,0,2688,2697,5,149,0,0,2689,2690,5,199,0,0,2690, - 2697,5,77,0,0,2691,2692,5,39,0,0,2692,2697,5,168,0,0,2693,2694,3, - 308,154,0,2694,2695,7,29,0,0,2695,2697,1,0,0,0,2696,2687,1,0,0,0, - 2696,2689,1,0,0,0,2696,2691,1,0,0,0,2696,2693,1,0,0,0,2697,349,1, - 0,0,0,2698,2699,3,362,181,0,2699,2700,5,261,0,0,2700,2701,3,362, - 181,0,2701,2704,1,0,0,0,2702,2704,3,362,181,0,2703,2698,1,0,0,0, - 2703,2702,1,0,0,0,2704,351,1,0,0,0,2705,2710,3,350,175,0,2706,2707, - 5,263,0,0,2707,2709,3,350,175,0,2708,2706,1,0,0,0,2709,2712,1,0, - 0,0,2710,2708,1,0,0,0,2710,2711,1,0,0,0,2711,353,1,0,0,0,2712,2710, - 1,0,0,0,2713,2727,5,2,0,0,2714,2727,5,4,0,0,2715,2727,5,58,0,0,2716, - 2727,5,37,0,0,2717,2727,5,99,0,0,2718,2727,5,162,0,0,2719,2724,5, - 174,0,0,2720,2721,5,265,0,0,2721,2722,3,362,181,0,2722,2723,5,266, - 0,0,2723,2725,1,0,0,0,2724,2720,1,0,0,0,2724,2725,1,0,0,0,2725,2727, - 1,0,0,0,2726,2713,1,0,0,0,2726,2714,1,0,0,0,2726,2715,1,0,0,0,2726, - 2716,1,0,0,0,2726,2717,1,0,0,0,2726,2718,1,0,0,0,2726,2719,1,0,0, - 0,2727,355,1,0,0,0,2728,2729,7,30,0,0,2729,357,1,0,0,0,2730,2735, - 3,362,181,0,2731,2732,5,261,0,0,2732,2734,3,362,181,0,2733,2731, - 1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0,2735,2736,1,0,0,0,2736, - 359,1,0,0,0,2737,2735,1,0,0,0,2738,2739,5,166,0,0,2739,2745,3,362, - 181,0,2740,2741,5,204,0,0,2741,2745,3,362,181,0,2742,2743,5,87,0, - 0,2743,2745,3,362,181,0,2744,2738,1,0,0,0,2744,2740,1,0,0,0,2744, - 2742,1,0,0,0,2745,361,1,0,0,0,2746,2752,5,280,0,0,2747,2752,5,274, - 0,0,2748,2752,3,368,184,0,2749,2752,5,283,0,0,2750,2752,5,281,0, - 0,2751,2746,1,0,0,0,2751,2747,1,0,0,0,2751,2748,1,0,0,0,2751,2749, - 1,0,0,0,2751,2750,1,0,0,0,2752,363,1,0,0,0,2753,2755,5,256,0,0,2754, - 2753,1,0,0,0,2754,2755,1,0,0,0,2755,2756,1,0,0,0,2756,2766,5,278, - 0,0,2757,2759,5,256,0,0,2758,2757,1,0,0,0,2758,2759,1,0,0,0,2759, - 2760,1,0,0,0,2760,2766,5,279,0,0,2761,2763,5,256,0,0,2762,2761,1, - 0,0,0,2762,2763,1,0,0,0,2763,2764,1,0,0,0,2764,2766,5,277,0,0,2765, - 2754,1,0,0,0,2765,2758,1,0,0,0,2765,2762,1,0,0,0,2766,365,1,0,0, - 0,2767,2768,7,31,0,0,2768,367,1,0,0,0,2769,2770,7,32,0,0,2770,369, - 1,0,0,0,353,373,380,404,417,421,425,434,439,443,449,451,456,460, - 464,471,476,482,486,495,502,506,511,513,518,521,528,532,537,541, - 544,548,556,560,564,572,576,585,588,591,597,604,615,620,625,630, - 635,644,647,650,654,680,706,715,725,728,742,760,762,771,782,791, - 798,802,809,815,818,823,830,844,857,862,867,873,909,912,918,921, - 927,933,945,947,958,966,971,975,980,987,991,995,1001,1005,1009,1018, - 1021,1024,1032,1046,1053,1066,1072,1077,1080,1083,1088,1092,1101, - 1106,1112,1116,1121,1126,1129,1137,1140,1144,1156,1159,1163,1168, - 1172,1188,1193,1200,1203,1209,1212,1219,1222,1226,1231,1234,1241, - 1244,1268,1282,1286,1290,1310,1312,1314,1323,1325,1334,1336,1345, - 1347,1352,1361,1370,1379,1390,1396,1401,1404,1417,1427,1431,1436, - 1447,1452,1485,1493,1498,1502,1506,1511,1514,1519,1524,1529,1533, - 1542,1545,1549,1556,1565,1569,1573,1580,1583,1593,1600,1605,1610, - 1615,1621,1624,1633,1636,1639,1645,1650,1660,1663,1666,1670,1680, - 1683,1689,1695,1698,1701,1705,1715,1726,1731,1734,1738,1745,1755, - 1767,1773,1775,1784,1787,1794,1804,1810,1818,1829,1839,1850,1852, - 1858,1863,1873,1876,1882,1884,1892,1898,1901,1903,1915,1922,1926, - 1930,1934,1937,1944,1953,1956,1960,1965,1969,1972,1979,1990,1993, - 1997,2001,2010,2013,2020,2034,2038,2042,2046,2050,2054,2058,2062, - 2072,2083,2088,2101,2103,2109,2113,2115,2123,2130,2135,2148,2154, - 2162,2169,2173,2181,2183,2194,2202,2211,2217,2222,2228,2234,2239, - 2244,2250,2261,2263,2290,2296,2300,2312,2322,2325,2330,2337,2340, - 2349,2352,2356,2359,2371,2374,2393,2397,2405,2409,2434,2437,2446, - 2452,2458,2464,2475,2484,2506,2509,2512,2522,2524,2531,2533,2555, - 2584,2591,2599,2604,2606,2612,2619,2625,2647,2650,2659,2662,2665, - 2685,2696,2703,2710,2724,2726,2735,2744,2751,2754,2758,2762,2765 + 342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372, + 374,376,378,380,0,33,2,0,46,46,170,170,2,0,166,166,204,204,2,0,176, + 176,202,202,2,0,69,69,80,80,2,0,27,27,159,159,2,0,103,103,144,144, + 2,0,47,47,171,171,2,0,3,3,12,12,3,0,87,87,166,166,204,204,2,0,178, + 178,209,209,1,0,245,248,2,0,147,147,219,223,2,0,65,65,95,95,2,0, + 64,64,200,200,2,0,10,10,55,55,2,0,75,75,112,112,2,0,2,2,57,57,2, + 0,14,14,185,185,3,0,106,106,115,115,164,164,2,0,105,105,163,163, + 4,0,70,70,133,133,194,194,208,208,1,0,255,256,1,0,257,259,1,0,249, + 254,3,0,2,2,6,6,181,181,2,0,70,70,194,194,5,0,48,49,91,92,122,125, + 172,173,217,218,1,0,127,130,2,0,8,8,227,244,2,0,77,77,149,149,4, + 0,46,46,178,178,188,188,209,209,16,0,28,29,40,40,43,43,48,48,68, + 68,91,91,114,114,122,122,124,124,158,158,165,165,172,172,184,184, + 196,196,204,204,217,217,23,0,14,14,43,44,48,49,65,65,68,68,91,91, + 95,95,110,110,119,119,122,125,127,130,137,137,140,140,152,153,172, + 173,180,180,184,185,195,195,204,204,213,213,217,217,220,220,231, + 231,3121,0,385,1,0,0,0,2,390,1,0,0,0,4,416,1,0,0,0,6,418,1,0,0,0, + 8,429,1,0,0,0,10,431,1,0,0,0,12,470,1,0,0,0,14,492,1,0,0,0,16,546, + 1,0,0,0,18,565,1,0,0,0,20,578,1,0,0,0,22,582,1,0,0,0,24,644,1,0, + 0,0,26,692,1,0,0,0,28,694,1,0,0,0,30,702,1,0,0,0,32,722,1,0,0,0, + 34,742,1,0,0,0,36,749,1,0,0,0,38,758,1,0,0,0,40,766,1,0,0,0,42,788, + 1,0,0,0,44,798,1,0,0,0,46,816,1,0,0,0,48,837,1,0,0,0,50,858,1,0, + 0,0,52,864,1,0,0,0,54,881,1,0,0,0,56,890,1,0,0,0,58,897,1,0,0,0, + 60,905,1,0,0,0,62,912,1,0,0,0,64,919,1,0,0,0,66,928,1,0,0,0,68,939, + 1,0,0,0,70,941,1,0,0,0,72,961,1,0,0,0,74,978,1,0,0,0,76,980,1,0, + 0,0,78,989,1,0,0,0,80,996,1,0,0,0,82,1005,1,0,0,0,84,1015,1,0,0, + 0,86,1038,1,0,0,0,88,1044,1,0,0,0,90,1046,1,0,0,0,92,1053,1,0,0, + 0,94,1065,1,0,0,0,96,1067,1,0,0,0,98,1074,1,0,0,0,100,1095,1,0,0, + 0,102,1124,1,0,0,0,104,1126,1,0,0,0,106,1135,1,0,0,0,108,1158,1, + 0,0,0,110,1177,1,0,0,0,112,1200,1,0,0,0,114,1202,1,0,0,0,116,1217, + 1,0,0,0,118,1236,1,0,0,0,120,1258,1,0,0,0,122,1263,1,0,0,0,124,1268, + 1,0,0,0,126,1273,1,0,0,0,128,1278,1,0,0,0,130,1285,1,0,0,0,132,1300, + 1,0,0,0,134,1306,1,0,0,0,136,1326,1,0,0,0,138,1328,1,0,0,0,140,1339, + 1,0,0,0,142,1350,1,0,0,0,144,1364,1,0,0,0,146,1366,1,0,0,0,148,1375, + 1,0,0,0,150,1384,1,0,0,0,152,1393,1,0,0,0,154,1396,1,0,0,0,156,1404, + 1,0,0,0,158,1420,1,0,0,0,160,1424,1,0,0,0,162,1448,1,0,0,0,164,1450, + 1,0,0,0,166,1466,1,0,0,0,168,1469,1,0,0,0,170,1473,1,0,0,0,172,1476, + 1,0,0,0,174,1480,1,0,0,0,176,1482,1,0,0,0,178,1484,1,0,0,0,180,1486, + 1,0,0,0,182,1488,1,0,0,0,184,1490,1,0,0,0,186,1492,1,0,0,0,188,1500, + 1,0,0,0,190,1510,1,0,0,0,192,1514,1,0,0,0,194,1518,1,0,0,0,196,1523, + 1,0,0,0,198,1563,1,0,0,0,200,1571,1,0,0,0,202,1575,1,0,0,0,204,1590, + 1,0,0,0,206,1595,1,0,0,0,208,1599,1,0,0,0,210,1608,1,0,0,0,212,1638, + 1,0,0,0,214,1653,1,0,0,0,216,1659,1,0,0,0,218,1664,1,0,0,0,220,1666, + 1,0,0,0,222,1684,1,0,0,0,224,1687,1,0,0,0,226,1697,1,0,0,0,228,1717, + 1,0,0,0,230,1727,1,0,0,0,232,1729,1,0,0,0,234,1731,1,0,0,0,236,1746, + 1,0,0,0,238,1748,1,0,0,0,240,1755,1,0,0,0,242,1787,1,0,0,0,244,1799, + 1,0,0,0,246,1806,1,0,0,0,248,1816,1,0,0,0,250,1818,1,0,0,0,252,1824, + 1,0,0,0,254,1835,1,0,0,0,256,1846,1,0,0,0,258,1854,1,0,0,0,260,1872, + 1,0,0,0,262,1877,1,0,0,0,264,1898,1,0,0,0,266,1934,1,0,0,0,268,1936, + 1,0,0,0,270,1944,1,0,0,0,272,1976,1,0,0,0,274,1985,1,0,0,0,276,1995, + 1,0,0,0,278,2010,1,0,0,0,280,2012,1,0,0,0,282,2019,1,0,0,0,284,2033, + 1,0,0,0,286,2035,1,0,0,0,288,2038,1,0,0,0,290,2042,1,0,0,0,292,2047, + 1,0,0,0,294,2051,1,0,0,0,296,2101,1,0,0,0,298,2117,1,0,0,0,300,2119, + 1,0,0,0,302,2134,1,0,0,0,304,2136,1,0,0,0,306,2146,1,0,0,0,308,2161, + 1,0,0,0,310,2164,1,0,0,0,312,2168,1,0,0,0,314,2172,1,0,0,0,316,2187, + 1,0,0,0,318,2193,1,0,0,0,320,2195,1,0,0,0,322,2204,1,0,0,0,324,2275, + 1,0,0,0,326,2281,1,0,0,0,328,2543,1,0,0,0,330,2564,1,0,0,0,332,2566, + 1,0,0,0,334,2568,1,0,0,0,336,2570,1,0,0,0,338,2586,1,0,0,0,340,2588, + 1,0,0,0,342,2590,1,0,0,0,344,2637,1,0,0,0,346,2646,1,0,0,0,348,2650, + 1,0,0,0,350,2656,1,0,0,0,352,2658,1,0,0,0,354,2663,1,0,0,0,356,2669, + 1,0,0,0,358,2716,1,0,0,0,360,2727,1,0,0,0,362,2734,1,0,0,0,364,2736, + 1,0,0,0,366,2757,1,0,0,0,368,2759,1,0,0,0,370,2761,1,0,0,0,372,2775, + 1,0,0,0,374,2782,1,0,0,0,376,2796,1,0,0,0,378,2798,1,0,0,0,380,2800, + 1,0,0,0,382,384,3,2,1,0,383,382,1,0,0,0,384,387,1,0,0,0,385,383, + 1,0,0,0,385,386,1,0,0,0,386,388,1,0,0,0,387,385,1,0,0,0,388,389, + 5,0,0,1,389,1,1,0,0,0,390,392,3,4,2,0,391,393,5,262,0,0,392,391, + 1,0,0,0,392,393,1,0,0,0,393,3,1,0,0,0,394,417,3,206,103,0,395,417, + 3,6,3,0,396,417,3,8,4,0,397,417,3,26,13,0,398,417,3,64,32,0,399, + 417,3,66,33,0,400,417,3,68,34,0,401,417,3,74,37,0,402,417,3,88,44, + 0,403,417,3,94,47,0,404,417,3,100,50,0,405,417,3,102,51,0,406,417, + 3,108,54,0,407,417,3,110,55,0,408,417,3,112,56,0,409,417,3,144,72, + 0,410,417,3,152,76,0,411,417,3,154,77,0,412,417,3,156,78,0,413,417, + 3,158,79,0,414,417,3,160,80,0,415,417,3,162,81,0,416,394,1,0,0,0, + 416,395,1,0,0,0,416,396,1,0,0,0,416,397,1,0,0,0,416,398,1,0,0,0, + 416,399,1,0,0,0,416,400,1,0,0,0,416,401,1,0,0,0,416,402,1,0,0,0, + 416,403,1,0,0,0,416,404,1,0,0,0,416,405,1,0,0,0,416,406,1,0,0,0, + 416,407,1,0,0,0,416,408,1,0,0,0,416,409,1,0,0,0,416,410,1,0,0,0, + 416,411,1,0,0,0,416,412,1,0,0,0,416,413,1,0,0,0,416,414,1,0,0,0, + 416,415,1,0,0,0,417,5,1,0,0,0,418,419,5,203,0,0,419,420,3,184,92, + 0,420,7,1,0,0,0,421,430,3,18,9,0,422,430,3,20,10,0,423,430,3,22, + 11,0,424,430,3,24,12,0,425,430,3,16,8,0,426,430,3,14,7,0,427,430, + 3,12,6,0,428,430,3,10,5,0,429,421,1,0,0,0,429,422,1,0,0,0,429,423, + 1,0,0,0,429,424,1,0,0,0,429,425,1,0,0,0,429,426,1,0,0,0,429,427, + 1,0,0,0,429,428,1,0,0,0,430,9,1,0,0,0,431,433,5,37,0,0,432,434,5, + 19,0,0,433,432,1,0,0,0,433,434,1,0,0,0,434,435,1,0,0,0,435,437,5, + 188,0,0,436,438,3,172,86,0,437,436,1,0,0,0,437,438,1,0,0,0,438,439, + 1,0,0,0,439,455,3,174,87,0,440,441,5,265,0,0,441,446,3,216,108,0, + 442,443,5,263,0,0,443,445,3,216,108,0,444,442,1,0,0,0,445,448,1, + 0,0,0,446,444,1,0,0,0,446,447,1,0,0,0,447,451,1,0,0,0,448,446,1, + 0,0,0,449,450,5,263,0,0,450,452,3,210,105,0,451,449,1,0,0,0,451, + 452,1,0,0,0,452,453,1,0,0,0,453,454,5,266,0,0,454,456,1,0,0,0,455, + 440,1,0,0,0,455,456,1,0,0,0,456,463,1,0,0,0,457,458,5,17,0,0,458, + 461,5,26,0,0,459,462,3,306,153,0,460,462,3,254,127,0,461,459,1,0, + 0,0,461,460,1,0,0,0,462,464,1,0,0,0,463,457,1,0,0,0,463,464,1,0, + 0,0,464,465,1,0,0,0,465,468,3,196,98,0,466,467,5,9,0,0,467,469,3, + 206,103,0,468,466,1,0,0,0,468,469,1,0,0,0,469,11,1,0,0,0,470,472, + 5,37,0,0,471,473,5,19,0,0,472,471,1,0,0,0,472,473,1,0,0,0,473,474, + 1,0,0,0,474,476,5,188,0,0,475,477,3,172,86,0,476,475,1,0,0,0,476, + 477,1,0,0,0,477,478,1,0,0,0,478,479,3,174,87,0,479,483,5,115,0,0, + 480,484,3,186,93,0,481,482,5,147,0,0,482,484,3,330,165,0,483,480, + 1,0,0,0,483,481,1,0,0,0,484,488,1,0,0,0,485,486,5,17,0,0,486,487, + 5,26,0,0,487,489,3,254,127,0,488,485,1,0,0,0,488,489,1,0,0,0,489, + 490,1,0,0,0,490,491,3,196,98,0,491,13,1,0,0,0,492,494,5,37,0,0,493, + 495,5,19,0,0,494,493,1,0,0,0,494,495,1,0,0,0,495,496,1,0,0,0,496, + 498,5,188,0,0,497,499,3,172,86,0,498,497,1,0,0,0,498,499,1,0,0,0, + 499,500,1,0,0,0,500,518,3,174,87,0,501,502,5,265,0,0,502,507,3,218, + 109,0,503,504,5,263,0,0,504,506,3,218,109,0,505,503,1,0,0,0,506, + 509,1,0,0,0,507,505,1,0,0,0,507,508,1,0,0,0,508,514,1,0,0,0,509, + 507,1,0,0,0,510,511,5,263,0,0,511,512,5,150,0,0,512,513,5,110,0, + 0,513,515,3,306,153,0,514,510,1,0,0,0,514,515,1,0,0,0,515,516,1, + 0,0,0,516,517,5,266,0,0,517,519,1,0,0,0,518,501,1,0,0,0,518,519, + 1,0,0,0,519,525,1,0,0,0,520,521,5,150,0,0,521,523,5,110,0,0,522, + 524,3,306,153,0,523,522,1,0,0,0,523,524,1,0,0,0,524,526,1,0,0,0, + 525,520,1,0,0,0,525,526,1,0,0,0,526,530,1,0,0,0,527,528,5,145,0, + 0,528,529,5,26,0,0,529,531,3,236,118,0,530,527,1,0,0,0,530,531,1, + 0,0,0,531,533,1,0,0,0,532,534,3,222,111,0,533,532,1,0,0,0,533,534, + 1,0,0,0,534,535,1,0,0,0,535,536,5,23,0,0,536,537,5,9,0,0,537,540, + 5,111,0,0,538,539,5,25,0,0,539,541,3,252,126,0,540,538,1,0,0,0,540, + 541,1,0,0,0,541,544,1,0,0,0,542,543,5,9,0,0,543,545,3,206,103,0, + 544,542,1,0,0,0,544,545,1,0,0,0,545,15,1,0,0,0,546,547,5,37,0,0, + 547,549,5,212,0,0,548,550,3,172,86,0,549,548,1,0,0,0,549,550,1,0, + 0,0,550,551,1,0,0,0,551,553,3,178,89,0,552,554,3,202,101,0,553,552, + 1,0,0,0,553,554,1,0,0,0,554,556,1,0,0,0,555,557,3,222,111,0,556, + 555,1,0,0,0,556,557,1,0,0,0,557,560,1,0,0,0,558,559,5,25,0,0,559, + 561,3,252,126,0,560,558,1,0,0,0,560,561,1,0,0,0,561,562,1,0,0,0, + 562,563,5,9,0,0,563,564,3,206,103,0,564,17,1,0,0,0,565,566,5,37, + 0,0,566,568,7,0,0,0,567,569,3,172,86,0,568,567,1,0,0,0,568,569,1, + 0,0,0,569,570,1,0,0,0,570,572,3,176,88,0,571,573,3,222,111,0,572, + 571,1,0,0,0,572,573,1,0,0,0,573,576,1,0,0,0,574,575,5,24,0,0,575, + 577,3,330,165,0,576,574,1,0,0,0,576,577,1,0,0,0,577,19,1,0,0,0,578, + 579,5,37,0,0,579,580,5,166,0,0,580,581,3,374,187,0,581,21,1,0,0, + 0,582,584,5,37,0,0,583,585,5,12,0,0,584,583,1,0,0,0,584,585,1,0, + 0,0,585,586,1,0,0,0,586,588,5,84,0,0,587,589,3,172,86,0,588,587, + 1,0,0,0,588,589,1,0,0,0,589,590,1,0,0,0,590,603,3,180,90,0,591,600, + 5,265,0,0,592,597,3,344,172,0,593,594,5,263,0,0,594,596,3,344,172, + 0,595,593,1,0,0,0,596,599,1,0,0,0,597,595,1,0,0,0,597,598,1,0,0, + 0,598,601,1,0,0,0,599,597,1,0,0,0,600,592,1,0,0,0,600,601,1,0,0, + 0,601,602,1,0,0,0,602,604,5,266,0,0,603,591,1,0,0,0,603,604,1,0, + 0,0,604,605,1,0,0,0,605,606,5,160,0,0,606,609,3,344,172,0,607,608, + 5,102,0,0,608,610,3,344,172,0,609,607,1,0,0,0,609,610,1,0,0,0,610, + 611,1,0,0,0,611,612,5,24,0,0,612,616,5,274,0,0,613,614,5,104,0,0, + 614,615,5,249,0,0,615,617,5,274,0,0,616,613,1,0,0,0,616,617,1,0, + 0,0,617,618,1,0,0,0,618,619,5,206,0,0,619,620,5,249,0,0,620,621, + 5,274,0,0,621,622,5,126,0,0,622,623,5,249,0,0,623,627,5,274,0,0, + 624,625,5,18,0,0,625,626,5,249,0,0,626,628,5,274,0,0,627,624,1,0, + 0,0,627,628,1,0,0,0,628,632,1,0,0,0,629,630,5,20,0,0,630,631,5,249, + 0,0,631,633,5,274,0,0,632,629,1,0,0,0,632,633,1,0,0,0,633,637,1, + 0,0,0,634,635,5,187,0,0,635,636,5,249,0,0,636,638,5,274,0,0,637, + 634,1,0,0,0,637,638,1,0,0,0,638,642,1,0,0,0,639,640,5,76,0,0,640, + 641,5,249,0,0,641,643,5,274,0,0,642,639,1,0,0,0,642,643,1,0,0,0, + 643,23,1,0,0,0,644,645,5,37,0,0,645,647,5,84,0,0,646,648,3,172,86, + 0,647,646,1,0,0,0,647,648,1,0,0,0,648,649,1,0,0,0,649,662,3,180, + 90,0,650,659,5,265,0,0,651,656,3,344,172,0,652,653,5,263,0,0,653, + 655,3,344,172,0,654,652,1,0,0,0,655,658,1,0,0,0,656,654,1,0,0,0, + 656,657,1,0,0,0,657,660,1,0,0,0,658,656,1,0,0,0,659,651,1,0,0,0, + 659,660,1,0,0,0,660,661,1,0,0,0,661,663,5,266,0,0,662,650,1,0,0, + 0,662,663,1,0,0,0,663,666,1,0,0,0,664,665,5,160,0,0,665,667,3,344, + 172,0,666,664,1,0,0,0,666,667,1,0,0,0,667,668,1,0,0,0,668,669,5, + 24,0,0,669,670,5,274,0,0,670,671,5,186,0,0,671,672,5,249,0,0,672, + 673,3,330,165,0,673,25,1,0,0,0,674,693,3,28,14,0,675,693,3,62,31, + 0,676,693,3,60,30,0,677,693,3,58,29,0,678,693,3,54,27,0,679,693, + 3,56,28,0,680,693,3,52,26,0,681,693,3,48,24,0,682,693,3,50,25,0, + 683,693,3,46,23,0,684,693,3,44,22,0,685,693,3,42,21,0,686,693,3, + 40,20,0,687,693,3,34,17,0,688,693,3,30,15,0,689,693,3,32,16,0,690, + 693,3,36,18,0,691,693,3,38,19,0,692,674,1,0,0,0,692,675,1,0,0,0, + 692,676,1,0,0,0,692,677,1,0,0,0,692,678,1,0,0,0,692,679,1,0,0,0, + 692,680,1,0,0,0,692,681,1,0,0,0,692,682,1,0,0,0,692,683,1,0,0,0, + 692,684,1,0,0,0,692,685,1,0,0,0,692,686,1,0,0,0,692,687,1,0,0,0, + 692,688,1,0,0,0,692,689,1,0,0,0,692,690,1,0,0,0,692,691,1,0,0,0, + 693,27,1,0,0,0,694,695,5,4,0,0,695,696,5,46,0,0,696,697,3,184,92, + 0,697,698,5,176,0,0,698,699,5,142,0,0,699,700,7,1,0,0,700,701,3, + 374,187,0,701,29,1,0,0,0,702,703,5,4,0,0,703,704,5,188,0,0,704,705, + 3,186,93,0,705,706,5,176,0,0,706,707,5,32,0,0,707,708,5,182,0,0, + 708,709,3,192,96,0,709,710,5,265,0,0,710,711,3,232,116,0,711,712, + 5,249,0,0,712,718,3,330,165,0,713,714,5,263,0,0,714,715,3,232,116, + 0,715,716,5,249,0,0,716,717,3,330,165,0,717,719,1,0,0,0,718,713, + 1,0,0,0,718,719,1,0,0,0,719,720,1,0,0,0,720,721,5,266,0,0,721,31, + 1,0,0,0,722,723,5,4,0,0,723,724,5,188,0,0,724,727,3,186,93,0,725, + 726,5,145,0,0,726,728,3,320,160,0,727,725,1,0,0,0,727,728,1,0,0, + 0,728,729,1,0,0,0,729,740,5,176,0,0,730,731,5,30,0,0,731,732,5,94, + 0,0,732,737,3,330,165,0,733,734,5,216,0,0,734,735,5,151,0,0,735, + 736,5,249,0,0,736,738,3,376,188,0,737,733,1,0,0,0,737,738,1,0,0, + 0,738,741,1,0,0,0,739,741,5,197,0,0,740,730,1,0,0,0,740,739,1,0, + 0,0,741,33,1,0,0,0,742,743,5,4,0,0,743,744,5,188,0,0,744,745,3,186, + 93,0,745,746,5,31,0,0,746,747,3,192,96,0,747,748,3,224,112,0,748, + 35,1,0,0,0,749,750,5,4,0,0,750,751,5,188,0,0,751,752,3,186,93,0, + 752,754,5,58,0,0,753,755,5,32,0,0,754,753,1,0,0,0,754,755,1,0,0, + 0,755,756,1,0,0,0,756,757,3,192,96,0,757,37,1,0,0,0,758,759,5,4, + 0,0,759,760,5,188,0,0,760,761,3,186,93,0,761,762,5,176,0,0,762,763, + 5,142,0,0,763,764,7,1,0,0,764,765,3,374,187,0,765,39,1,0,0,0,766, + 767,5,4,0,0,767,768,5,188,0,0,768,774,3,186,93,0,769,775,5,158,0, + 0,770,772,5,1,0,0,771,773,3,172,86,0,772,771,1,0,0,0,772,773,1,0, + 0,0,773,775,1,0,0,0,774,769,1,0,0,0,774,770,1,0,0,0,775,776,1,0, + 0,0,776,777,5,33,0,0,777,778,5,265,0,0,778,783,3,224,112,0,779,780, + 5,263,0,0,780,782,3,224,112,0,781,779,1,0,0,0,782,785,1,0,0,0,783, + 784,1,0,0,0,783,781,1,0,0,0,784,786,1,0,0,0,785,783,1,0,0,0,786, + 787,5,266,0,0,787,41,1,0,0,0,788,789,5,4,0,0,789,790,5,188,0,0,790, + 791,3,186,93,0,791,792,5,1,0,0,792,794,5,32,0,0,793,795,3,172,86, + 0,794,793,1,0,0,0,794,795,1,0,0,0,795,796,1,0,0,0,796,797,3,226, + 113,0,797,43,1,0,0,0,798,799,5,4,0,0,799,800,5,188,0,0,800,801,3, + 186,93,0,801,803,5,4,0,0,802,804,5,32,0,0,803,802,1,0,0,0,803,804, + 1,0,0,0,804,805,1,0,0,0,805,814,3,192,96,0,806,810,5,176,0,0,807, + 811,3,230,115,0,808,809,5,34,0,0,809,811,3,330,165,0,810,807,1,0, + 0,0,810,808,1,0,0,0,811,815,1,0,0,0,812,813,5,58,0,0,813,815,5,51, + 0,0,814,806,1,0,0,0,814,812,1,0,0,0,815,45,1,0,0,0,816,817,5,4,0, + 0,817,818,5,188,0,0,818,819,3,186,93,0,819,821,5,1,0,0,820,822,3, + 172,86,0,821,820,1,0,0,0,821,822,1,0,0,0,822,835,1,0,0,0,823,824, + 5,145,0,0,824,827,3,320,160,0,825,826,5,24,0,0,826,828,3,330,165, + 0,827,825,1,0,0,0,827,828,1,0,0,0,828,830,1,0,0,0,829,831,3,244, + 122,0,830,829,1,0,0,0,830,831,1,0,0,0,831,836,1,0,0,0,832,833,5, + 154,0,0,833,834,5,145,0,0,834,836,3,242,121,0,835,823,1,0,0,0,835, + 832,1,0,0,0,836,47,1,0,0,0,837,838,5,4,0,0,838,839,5,188,0,0,839, + 842,3,186,93,0,840,841,5,145,0,0,841,843,3,320,160,0,842,840,1,0, + 0,0,842,843,1,0,0,0,843,844,1,0,0,0,844,856,5,176,0,0,845,846,5, + 72,0,0,846,857,3,234,117,0,847,848,5,168,0,0,848,849,5,79,0,0,849, + 857,3,258,129,0,850,851,5,24,0,0,851,857,3,330,165,0,852,853,5,25, + 0,0,853,857,3,252,126,0,854,855,5,175,0,0,855,857,3,252,126,0,856, + 845,1,0,0,0,856,847,1,0,0,0,856,850,1,0,0,0,856,852,1,0,0,0,856, + 854,1,0,0,0,857,49,1,0,0,0,858,859,5,4,0,0,859,860,5,188,0,0,860, + 861,3,186,93,0,861,862,5,155,0,0,862,863,5,146,0,0,863,51,1,0,0, + 0,864,865,5,4,0,0,865,866,5,188,0,0,866,867,3,186,93,0,867,869,5, + 58,0,0,868,870,3,170,85,0,869,868,1,0,0,0,869,870,1,0,0,0,870,879, + 1,0,0,0,871,872,5,145,0,0,872,874,3,320,160,0,873,875,5,22,0,0,874, + 873,1,0,0,0,874,875,1,0,0,0,875,880,1,0,0,0,876,877,5,154,0,0,877, + 878,5,145,0,0,878,880,3,242,121,0,879,871,1,0,0,0,879,876,1,0,0, + 0,880,53,1,0,0,0,881,882,5,4,0,0,882,883,5,212,0,0,883,885,3,188, + 94,0,884,886,3,202,101,0,885,884,1,0,0,0,885,886,1,0,0,0,886,887, + 1,0,0,0,887,888,5,9,0,0,888,889,3,206,103,0,889,55,1,0,0,0,890,891, + 5,4,0,0,891,892,5,212,0,0,892,893,3,188,94,0,893,894,5,156,0,0,894, + 895,5,193,0,0,895,896,3,188,94,0,896,57,1,0,0,0,897,898,5,4,0,0, + 898,899,5,212,0,0,899,900,3,188,94,0,900,901,5,176,0,0,901,902,5, + 142,0,0,902,903,7,1,0,0,903,904,3,370,185,0,904,59,1,0,0,0,905,906, + 5,4,0,0,906,907,5,188,0,0,907,908,3,186,93,0,908,909,5,156,0,0,909, + 910,5,193,0,0,910,911,3,186,93,0,911,61,1,0,0,0,912,913,5,4,0,0, + 913,914,5,212,0,0,914,915,3,188,94,0,915,916,7,2,0,0,916,917,5,25, + 0,0,917,918,3,252,126,0,918,63,1,0,0,0,919,921,5,196,0,0,920,922, + 5,188,0,0,921,920,1,0,0,0,921,922,1,0,0,0,922,924,1,0,0,0,923,925, + 3,170,85,0,924,923,1,0,0,0,924,925,1,0,0,0,925,926,1,0,0,0,926,927, + 3,186,93,0,927,65,1,0,0,0,928,930,5,56,0,0,929,931,5,46,0,0,930, + 929,1,0,0,0,930,931,1,0,0,0,931,933,1,0,0,0,932,934,7,3,0,0,933, + 932,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935,936,3,370,185,0, + 936,67,1,0,0,0,937,940,3,70,35,0,938,940,3,72,36,0,939,937,1,0,0, + 0,939,938,1,0,0,0,940,69,1,0,0,0,941,942,5,36,0,0,942,943,5,182, + 0,0,943,945,3,186,93,0,944,946,3,306,153,0,945,944,1,0,0,0,945,946, + 1,0,0,0,946,959,1,0,0,0,947,948,5,190,0,0,948,949,5,185,0,0,949, + 950,5,265,0,0,950,951,3,376,188,0,951,957,5,266,0,0,952,953,5,157, + 0,0,953,954,5,265,0,0,954,955,3,376,188,0,955,956,5,266,0,0,956, + 958,1,0,0,0,957,952,1,0,0,0,957,958,1,0,0,0,958,960,1,0,0,0,959, + 947,1,0,0,0,959,960,1,0,0,0,960,71,1,0,0,0,961,962,5,36,0,0,962, + 963,5,96,0,0,963,964,5,182,0,0,964,970,3,186,93,0,965,966,5,145, + 0,0,966,967,5,265,0,0,967,968,3,320,160,0,968,969,5,266,0,0,969, + 971,1,0,0,0,970,965,1,0,0,0,970,971,1,0,0,0,971,73,1,0,0,0,972,979, + 3,86,43,0,973,979,3,84,42,0,974,979,3,82,41,0,975,979,3,78,39,0, + 976,979,3,80,40,0,977,979,3,76,38,0,978,972,1,0,0,0,978,973,1,0, + 0,0,978,974,1,0,0,0,978,975,1,0,0,0,978,976,1,0,0,0,978,977,1,0, + 0,0,979,75,1,0,0,0,980,981,5,58,0,0,981,983,7,0,0,0,982,984,3,170, + 85,0,983,982,1,0,0,0,983,984,1,0,0,0,984,985,1,0,0,0,985,987,3,184, + 92,0,986,988,7,4,0,0,987,986,1,0,0,0,987,988,1,0,0,0,988,77,1,0, + 0,0,989,990,5,58,0,0,990,992,5,212,0,0,991,993,3,170,85,0,992,991, + 1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0,994,995,3,188,94,0,995,79, + 1,0,0,0,996,997,5,58,0,0,997,999,5,188,0,0,998,1000,3,170,85,0,999, + 998,1,0,0,0,999,1000,1,0,0,0,1000,1001,1,0,0,0,1001,1003,3,186,93, + 0,1002,1004,5,22,0,0,1003,1002,1,0,0,0,1003,1004,1,0,0,0,1004,81, + 1,0,0,0,1005,1007,5,58,0,0,1006,1008,5,96,0,0,1007,1006,1,0,0,0, + 1007,1008,1,0,0,0,1008,1009,1,0,0,0,1009,1010,5,182,0,0,1010,1013, + 3,186,93,0,1011,1012,5,145,0,0,1012,1014,3,320,160,0,1013,1011,1, + 0,0,0,1013,1014,1,0,0,0,1014,83,1,0,0,0,1015,1017,5,58,0,0,1016, + 1018,5,12,0,0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1,0, + 0,0,1019,1021,5,84,0,0,1020,1022,3,170,85,0,1021,1020,1,0,0,0,1021, + 1022,1,0,0,0,1022,1023,1,0,0,0,1023,1036,3,190,95,0,1024,1033,5, + 265,0,0,1025,1030,3,344,172,0,1026,1027,5,263,0,0,1027,1029,3,344, + 172,0,1028,1026,1,0,0,0,1029,1032,1,0,0,0,1030,1028,1,0,0,0,1030, + 1031,1,0,0,0,1031,1034,1,0,0,0,1032,1030,1,0,0,0,1033,1025,1,0,0, + 0,1033,1034,1,0,0,0,1034,1035,1,0,0,0,1035,1037,5,266,0,0,1036,1024, + 1,0,0,0,1036,1037,1,0,0,0,1037,85,1,0,0,0,1038,1039,5,58,0,0,1039, + 1040,5,166,0,0,1040,1041,3,374,187,0,1041,87,1,0,0,0,1042,1045,3, + 90,45,0,1043,1045,3,92,46,0,1044,1042,1,0,0,0,1044,1043,1,0,0,0, + 1045,89,1,0,0,0,1046,1047,5,86,0,0,1047,1048,5,166,0,0,1048,1049, + 3,374,187,0,1049,1050,5,193,0,0,1050,1051,5,87,0,0,1051,1052,3,374, + 187,0,1052,91,1,0,0,0,1053,1054,5,86,0,0,1054,1055,3,366,183,0,1055, + 1056,5,136,0,0,1056,1058,3,368,184,0,1057,1059,3,370,185,0,1058, + 1057,1,0,0,0,1058,1059,1,0,0,0,1059,1060,1,0,0,0,1060,1061,5,193, + 0,0,1061,1062,3,372,186,0,1062,93,1,0,0,0,1063,1066,3,96,48,0,1064, + 1066,3,98,49,0,1065,1063,1,0,0,0,1065,1064,1,0,0,0,1066,95,1,0,0, + 0,1067,1068,5,161,0,0,1068,1069,5,166,0,0,1069,1070,3,374,187,0, + 1070,1071,5,82,0,0,1071,1072,5,87,0,0,1072,1073,3,374,187,0,1073, + 97,1,0,0,0,1074,1078,5,161,0,0,1075,1076,5,86,0,0,1076,1077,5,137, + 0,0,1077,1079,5,78,0,0,1078,1075,1,0,0,0,1078,1079,1,0,0,0,1079, + 1080,1,0,0,0,1080,1081,3,366,183,0,1081,1082,5,136,0,0,1082,1084, + 3,368,184,0,1083,1085,3,370,185,0,1084,1083,1,0,0,0,1084,1085,1, + 0,0,0,1085,1086,1,0,0,0,1086,1092,5,82,0,0,1087,1093,3,372,186,0, + 1088,1090,5,166,0,0,1089,1088,1,0,0,0,1089,1090,1,0,0,0,1090,1091, + 1,0,0,0,1091,1093,3,374,187,0,1092,1087,1,0,0,0,1092,1089,1,0,0, + 0,1093,99,1,0,0,0,1094,1096,3,208,104,0,1095,1094,1,0,0,0,1095,1096, + 1,0,0,0,1096,1097,1,0,0,0,1097,1098,5,99,0,0,1098,1100,7,5,0,0,1099, + 1101,5,188,0,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1102,1,0, + 0,0,1102,1104,3,186,93,0,1103,1105,3,306,153,0,1104,1103,1,0,0,0, + 1104,1105,1,0,0,0,1105,1118,1,0,0,0,1106,1107,5,145,0,0,1107,1108, + 5,265,0,0,1108,1113,3,320,160,0,1109,1110,5,263,0,0,1110,1112,3, + 320,160,0,1111,1109,1,0,0,0,1112,1115,1,0,0,0,1113,1111,1,0,0,0, + 1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1113,1,0,0,0,1116,1117, + 5,266,0,0,1117,1119,1,0,0,0,1118,1106,1,0,0,0,1118,1119,1,0,0,0, + 1119,1120,1,0,0,0,1120,1121,3,206,103,0,1121,101,1,0,0,0,1122,1125, + 3,104,52,0,1123,1125,3,106,53,0,1124,1122,1,0,0,0,1124,1123,1,0, + 0,0,1125,103,1,0,0,0,1126,1128,5,50,0,0,1127,1129,5,82,0,0,1128, + 1127,1,0,0,0,1128,1129,1,0,0,0,1129,1130,1,0,0,0,1130,1133,3,186, + 93,0,1131,1132,5,215,0,0,1132,1134,3,322,161,0,1133,1131,1,0,0,0, + 1133,1134,1,0,0,0,1134,105,1,0,0,0,1135,1136,5,50,0,0,1136,1141, + 3,186,93,0,1137,1139,5,9,0,0,1138,1137,1,0,0,0,1138,1139,1,0,0,0, + 1139,1140,1,0,0,0,1140,1142,3,374,187,0,1141,1138,1,0,0,0,1141,1142, + 1,0,0,0,1142,1143,1,0,0,0,1143,1152,5,82,0,0,1144,1149,3,294,147, + 0,1145,1146,5,263,0,0,1146,1148,3,294,147,0,1147,1145,1,0,0,0,1148, + 1151,1,0,0,0,1149,1147,1,0,0,0,1149,1150,1,0,0,0,1150,1153,1,0,0, + 0,1151,1149,1,0,0,0,1152,1144,1,0,0,0,1152,1153,1,0,0,0,1153,1156, + 1,0,0,0,1154,1155,5,215,0,0,1155,1157,3,322,161,0,1156,1154,1,0, + 0,0,1156,1157,1,0,0,0,1157,107,1,0,0,0,1158,1159,5,54,0,0,1159,1160, + 3,186,93,0,1160,1161,5,176,0,0,1161,1171,3,198,99,0,1162,1163,5, + 82,0,0,1163,1168,3,294,147,0,1164,1165,5,263,0,0,1165,1167,3,294, + 147,0,1166,1164,1,0,0,0,1167,1170,1,0,0,0,1168,1166,1,0,0,0,1168, + 1169,1,0,0,0,1169,1172,1,0,0,0,1170,1168,1,0,0,0,1171,1162,1,0,0, + 0,1171,1172,1,0,0,0,1172,1175,1,0,0,0,1173,1174,5,215,0,0,1174,1176, + 3,322,161,0,1175,1173,1,0,0,0,1175,1176,1,0,0,0,1176,109,1,0,0,0, + 1177,1178,5,207,0,0,1178,1180,5,103,0,0,1179,1181,5,188,0,0,1180, + 1179,1,0,0,0,1180,1181,1,0,0,0,1181,1182,1,0,0,0,1182,1184,3,186, + 93,0,1183,1185,3,306,153,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185, + 1186,1,0,0,0,1186,1187,3,206,103,0,1187,111,1,0,0,0,1188,1201,3, + 132,66,0,1189,1201,3,134,67,0,1190,1201,3,136,68,0,1191,1201,3,130, + 65,0,1192,1201,3,128,64,0,1193,1201,3,126,63,0,1194,1201,3,124,62, + 0,1195,1201,3,122,61,0,1196,1201,3,120,60,0,1197,1201,3,118,59,0, + 1198,1201,3,116,58,0,1199,1201,3,114,57,0,1200,1188,1,0,0,0,1200, + 1189,1,0,0,0,1200,1190,1,0,0,0,1200,1191,1,0,0,0,1200,1192,1,0,0, + 0,1200,1193,1,0,0,0,1200,1194,1,0,0,0,1200,1195,1,0,0,0,1200,1196, + 1,0,0,0,1200,1197,1,0,0,0,1200,1198,1,0,0,0,1200,1199,1,0,0,0,1201, + 113,1,0,0,0,1202,1203,5,179,0,0,1203,1215,7,6,0,0,1204,1206,5,115, + 0,0,1205,1204,1,0,0,0,1205,1206,1,0,0,0,1206,1207,1,0,0,0,1207,1212, + 3,330,165,0,1208,1209,5,271,0,0,1209,1211,3,330,165,0,1210,1208, + 1,0,0,0,1211,1214,1,0,0,0,1212,1210,1,0,0,0,1212,1213,1,0,0,0,1213, + 1216,1,0,0,0,1214,1212,1,0,0,0,1215,1205,1,0,0,0,1215,1216,1,0,0, + 0,1216,115,1,0,0,0,1217,1218,5,179,0,0,1218,1221,5,189,0,0,1219, + 1220,5,94,0,0,1220,1222,3,186,93,0,1221,1219,1,0,0,0,1221,1222,1, + 0,0,0,1222,1234,1,0,0,0,1223,1225,5,115,0,0,1224,1223,1,0,0,0,1224, + 1225,1,0,0,0,1225,1226,1,0,0,0,1226,1231,3,330,165,0,1227,1228,5, + 271,0,0,1228,1230,3,330,165,0,1229,1227,1,0,0,0,1230,1233,1,0,0, + 0,1231,1229,1,0,0,0,1231,1232,1,0,0,0,1232,1235,1,0,0,0,1233,1231, + 1,0,0,0,1234,1224,1,0,0,0,1234,1235,1,0,0,0,1235,117,1,0,0,0,1236, + 1238,5,179,0,0,1237,1239,7,7,0,0,1238,1237,1,0,0,0,1238,1239,1,0, + 0,0,1239,1240,1,0,0,0,1240,1243,5,85,0,0,1241,1242,5,94,0,0,1242, + 1244,3,184,92,0,1243,1241,1,0,0,0,1243,1244,1,0,0,0,1244,1256,1, + 0,0,0,1245,1247,5,115,0,0,1246,1245,1,0,0,0,1246,1247,1,0,0,0,1247, + 1248,1,0,0,0,1248,1253,3,330,165,0,1249,1250,5,271,0,0,1250,1252, + 3,330,165,0,1251,1249,1,0,0,0,1252,1255,1,0,0,0,1253,1251,1,0,0, + 0,1253,1254,1,0,0,0,1254,1257,1,0,0,0,1255,1253,1,0,0,0,1256,1246, + 1,0,0,0,1256,1257,1,0,0,0,1257,119,1,0,0,0,1258,1259,5,179,0,0,1259, + 1260,5,37,0,0,1260,1261,5,188,0,0,1261,1262,3,186,93,0,1262,121, + 1,0,0,0,1263,1264,5,179,0,0,1264,1265,5,37,0,0,1265,1266,5,212,0, + 0,1266,1267,3,188,94,0,1267,123,1,0,0,0,1268,1269,5,179,0,0,1269, + 1270,5,188,0,0,1270,1271,5,182,0,0,1271,1272,3,186,93,0,1272,125, + 1,0,0,0,1273,1274,5,179,0,0,1274,1275,5,32,0,0,1275,1276,5,182,0, + 0,1276,1277,3,186,93,0,1277,127,1,0,0,0,1278,1280,5,179,0,0,1279, + 1281,5,154,0,0,1280,1279,1,0,0,0,1280,1281,1,0,0,0,1281,1282,1,0, + 0,0,1282,1283,5,146,0,0,1283,1284,3,186,93,0,1284,129,1,0,0,0,1285, + 1286,5,179,0,0,1286,1287,5,73,0,0,1287,1288,5,94,0,0,1288,1298,3, + 186,93,0,1289,1290,5,145,0,0,1290,1291,5,265,0,0,1291,1294,3,320, + 160,0,1292,1293,5,263,0,0,1293,1295,3,320,160,0,1294,1292,1,0,0, + 0,1294,1295,1,0,0,0,1295,1296,1,0,0,0,1296,1297,5,266,0,0,1297,1299, + 1,0,0,0,1298,1289,1,0,0,0,1298,1299,1,0,0,0,1299,131,1,0,0,0,1300, + 1302,5,179,0,0,1301,1303,5,39,0,0,1302,1301,1,0,0,0,1302,1303,1, + 0,0,0,1303,1304,1,0,0,0,1304,1305,5,167,0,0,1305,133,1,0,0,0,1306, + 1307,5,179,0,0,1307,1308,5,166,0,0,1308,1309,5,86,0,0,1309,1310, + 5,87,0,0,1310,1311,3,374,187,0,1311,135,1,0,0,0,1312,1327,3,138, + 69,0,1313,1327,3,140,70,0,1314,1327,3,142,71,0,1315,1316,5,179,0, + 0,1316,1317,5,86,0,0,1317,1318,7,8,0,0,1318,1324,3,374,187,0,1319, + 1320,5,136,0,0,1320,1322,7,9,0,0,1321,1323,3,370,185,0,1322,1321, + 1,0,0,0,1322,1323,1,0,0,0,1323,1325,1,0,0,0,1324,1319,1,0,0,0,1324, + 1325,1,0,0,0,1325,1327,1,0,0,0,1326,1312,1,0,0,0,1326,1313,1,0,0, + 0,1326,1314,1,0,0,0,1326,1315,1,0,0,0,1327,137,1,0,0,0,1328,1329, + 5,179,0,0,1329,1330,5,86,0,0,1330,1331,7,8,0,0,1331,1337,3,374,187, + 0,1332,1333,5,136,0,0,1333,1335,5,46,0,0,1334,1336,3,184,92,0,1335, + 1334,1,0,0,0,1335,1336,1,0,0,0,1336,1338,1,0,0,0,1337,1332,1,0,0, + 0,1337,1338,1,0,0,0,1338,139,1,0,0,0,1339,1340,5,179,0,0,1340,1341, + 5,86,0,0,1341,1342,7,8,0,0,1342,1348,3,374,187,0,1343,1344,5,136, + 0,0,1344,1346,5,188,0,0,1345,1347,3,186,93,0,1346,1345,1,0,0,0,1346, + 1347,1,0,0,0,1347,1349,1,0,0,0,1348,1343,1,0,0,0,1348,1349,1,0,0, + 0,1349,141,1,0,0,0,1350,1351,5,179,0,0,1351,1352,5,86,0,0,1352,1353, + 7,8,0,0,1353,1359,3,374,187,0,1354,1355,5,136,0,0,1355,1357,5,32, + 0,0,1356,1358,3,192,96,0,1357,1356,1,0,0,0,1357,1358,1,0,0,0,1358, + 1360,1,0,0,0,1359,1354,1,0,0,0,1359,1360,1,0,0,0,1360,143,1,0,0, + 0,1361,1365,3,146,73,0,1362,1365,3,148,74,0,1363,1365,3,150,75,0, + 1364,1361,1,0,0,0,1364,1362,1,0,0,0,1364,1363,1,0,0,0,1365,145,1, + 0,0,0,1366,1367,5,34,0,0,1367,1368,5,136,0,0,1368,1369,5,46,0,0, + 1369,1370,3,184,92,0,1370,1373,5,108,0,0,1371,1374,3,330,165,0,1372, + 1374,5,133,0,0,1373,1371,1,0,0,0,1373,1372,1,0,0,0,1374,147,1,0, + 0,0,1375,1376,5,34,0,0,1376,1377,5,136,0,0,1377,1378,5,188,0,0,1378, + 1379,3,186,93,0,1379,1382,5,108,0,0,1380,1383,3,330,165,0,1381,1383, + 5,133,0,0,1382,1380,1,0,0,0,1382,1381,1,0,0,0,1383,149,1,0,0,0,1384, + 1385,5,34,0,0,1385,1386,5,136,0,0,1386,1387,5,32,0,0,1387,1388,3, + 192,96,0,1388,1391,5,108,0,0,1389,1392,3,330,165,0,1390,1392,5,133, + 0,0,1391,1389,1,0,0,0,1391,1390,1,0,0,0,1392,151,1,0,0,0,1393,1394, + 5,67,0,0,1394,1395,3,4,2,0,1395,153,1,0,0,0,1396,1402,5,176,0,0, + 1397,1403,5,2,0,0,1398,1399,3,374,187,0,1399,1400,5,249,0,0,1400, + 1401,3,320,160,0,1401,1403,1,0,0,0,1402,1397,1,0,0,0,1402,1398,1, + 0,0,0,1402,1403,1,0,0,0,1403,155,1,0,0,0,1404,1405,5,264,0,0,1405, + 1406,5,180,0,0,1406,1416,5,265,0,0,1407,1409,3,330,165,0,1408,1407, + 1,0,0,0,1408,1409,1,0,0,0,1409,1417,1,0,0,0,1410,1413,3,330,165, + 0,1411,1412,5,263,0,0,1412,1414,3,320,160,0,1413,1411,1,0,0,0,1413, + 1414,1,0,0,0,1414,1417,1,0,0,0,1415,1417,3,320,160,0,1416,1408,1, + 0,0,0,1416,1410,1,0,0,0,1416,1415,1,0,0,0,1417,1418,1,0,0,0,1418, + 1419,5,266,0,0,1419,157,1,0,0,0,1420,1421,5,107,0,0,1421,1422,5, + 121,0,0,1422,1423,3,186,93,0,1423,159,1,0,0,0,1424,1425,5,118,0, + 0,1425,1426,5,45,0,0,1426,1427,5,98,0,0,1427,1429,5,274,0,0,1428, + 1430,5,144,0,0,1429,1428,1,0,0,0,1429,1430,1,0,0,0,1430,1431,1,0, + 0,0,1431,1432,5,103,0,0,1432,1433,5,188,0,0,1433,1443,3,186,93,0, + 1434,1435,5,145,0,0,1435,1436,5,265,0,0,1436,1439,3,320,160,0,1437, + 1438,5,263,0,0,1438,1440,3,320,160,0,1439,1437,1,0,0,0,1439,1440, + 1,0,0,0,1440,1441,1,0,0,0,1441,1442,5,266,0,0,1442,1444,1,0,0,0, + 1443,1434,1,0,0,0,1443,1444,1,0,0,0,1444,161,1,0,0,0,1445,1449,3, + 164,82,0,1446,1449,3,166,83,0,1447,1449,3,168,84,0,1448,1445,1,0, + 0,0,1448,1446,1,0,0,0,1448,1447,1,0,0,0,1449,163,1,0,0,0,1450,1451, + 5,162,0,0,1451,1464,3,186,93,0,1452,1453,5,145,0,0,1453,1454,5,265, + 0,0,1454,1459,3,320,160,0,1455,1456,5,263,0,0,1456,1458,3,320,160, + 0,1457,1455,1,0,0,0,1458,1461,1,0,0,0,1459,1460,1,0,0,0,1459,1457, + 1,0,0,0,1460,1462,1,0,0,0,1461,1459,1,0,0,0,1462,1463,5,266,0,0, + 1463,1465,1,0,0,0,1464,1452,1,0,0,0,1464,1465,1,0,0,0,1465,165,1, + 0,0,0,1466,1467,5,162,0,0,1467,1468,5,13,0,0,1468,167,1,0,0,0,1469, + 1470,5,162,0,0,1470,1471,5,85,0,0,1471,1472,3,190,95,0,1472,169, + 1,0,0,0,1473,1474,5,93,0,0,1474,1475,5,66,0,0,1475,171,1,0,0,0,1476, + 1477,5,93,0,0,1477,1478,5,132,0,0,1478,1479,5,66,0,0,1479,173,1, + 0,0,0,1480,1481,3,370,185,0,1481,175,1,0,0,0,1482,1483,3,370,185, + 0,1483,177,1,0,0,0,1484,1485,3,370,185,0,1485,179,1,0,0,0,1486,1487, + 3,370,185,0,1487,181,1,0,0,0,1488,1489,3,370,185,0,1489,183,1,0, + 0,0,1490,1491,3,370,185,0,1491,185,1,0,0,0,1492,1497,3,374,187,0, + 1493,1494,5,261,0,0,1494,1496,3,374,187,0,1495,1493,1,0,0,0,1496, + 1499,1,0,0,0,1497,1495,1,0,0,0,1497,1498,1,0,0,0,1498,187,1,0,0, + 0,1499,1497,1,0,0,0,1500,1505,3,374,187,0,1501,1502,5,261,0,0,1502, + 1504,3,374,187,0,1503,1501,1,0,0,0,1504,1507,1,0,0,0,1505,1503,1, + 0,0,0,1505,1506,1,0,0,0,1506,189,1,0,0,0,1507,1505,1,0,0,0,1508, + 1511,3,378,189,0,1509,1511,3,370,185,0,1510,1508,1,0,0,0,1510,1509, + 1,0,0,0,1511,191,1,0,0,0,1512,1515,3,370,185,0,1513,1515,4,96,0, + 0,1514,1512,1,0,0,0,1514,1513,1,0,0,0,1515,193,1,0,0,0,1516,1519, + 3,186,93,0,1517,1519,3,188,94,0,1518,1516,1,0,0,0,1518,1517,1,0, + 0,0,1519,195,1,0,0,0,1520,1521,5,21,0,0,1521,1522,5,26,0,0,1522, + 1524,3,306,153,0,1523,1520,1,0,0,0,1523,1524,1,0,0,0,1524,1526,1, + 0,0,0,1525,1527,3,222,111,0,1526,1525,1,0,0,0,1526,1527,1,0,0,0, + 1527,1531,1,0,0,0,1528,1529,5,168,0,0,1529,1530,5,79,0,0,1530,1532, + 3,258,129,0,1531,1528,1,0,0,0,1531,1532,1,0,0,0,1532,1536,1,0,0, + 0,1533,1534,5,216,0,0,1534,1535,5,175,0,0,1535,1537,3,252,126,0, + 1536,1533,1,0,0,0,1536,1537,1,0,0,0,1537,1541,1,0,0,0,1538,1539, + 5,23,0,0,1539,1540,5,9,0,0,1540,1542,3,234,117,0,1541,1538,1,0,0, + 0,1541,1542,1,0,0,0,1542,1545,1,0,0,0,1543,1544,5,24,0,0,1544,1546, + 3,330,165,0,1545,1543,1,0,0,0,1545,1546,1,0,0,0,1546,1557,1,0,0, + 0,1547,1548,5,30,0,0,1548,1549,5,94,0,0,1549,1554,3,370,185,0,1550, + 1551,5,216,0,0,1551,1552,5,151,0,0,1552,1553,5,249,0,0,1553,1555, + 5,277,0,0,1554,1550,1,0,0,0,1554,1555,1,0,0,0,1555,1558,1,0,0,0, + 1556,1558,5,197,0,0,1557,1547,1,0,0,0,1557,1556,1,0,0,0,1557,1558, + 1,0,0,0,1558,1561,1,0,0,0,1559,1560,5,25,0,0,1560,1562,3,252,126, + 0,1561,1559,1,0,0,0,1561,1562,1,0,0,0,1562,197,1,0,0,0,1563,1568, + 3,200,100,0,1564,1565,5,263,0,0,1565,1567,3,200,100,0,1566,1564, + 1,0,0,0,1567,1570,1,0,0,0,1568,1566,1,0,0,0,1568,1569,1,0,0,0,1569, + 199,1,0,0,0,1570,1568,1,0,0,0,1571,1572,3,370,185,0,1572,1573,5, + 249,0,0,1573,1574,3,320,160,0,1574,201,1,0,0,0,1575,1577,5,265,0, + 0,1576,1578,3,204,102,0,1577,1576,1,0,0,0,1577,1578,1,0,0,0,1578, + 1585,1,0,0,0,1579,1581,5,263,0,0,1580,1582,3,204,102,0,1581,1580, + 1,0,0,0,1581,1582,1,0,0,0,1582,1584,1,0,0,0,1583,1579,1,0,0,0,1584, + 1587,1,0,0,0,1585,1583,1,0,0,0,1585,1586,1,0,0,0,1586,1588,1,0,0, + 0,1587,1585,1,0,0,0,1588,1589,5,266,0,0,1589,203,1,0,0,0,1590,1592, + 3,182,91,0,1591,1593,3,222,111,0,1592,1591,1,0,0,0,1592,1593,1,0, + 0,0,1593,205,1,0,0,0,1594,1596,3,208,104,0,1595,1594,1,0,0,0,1595, + 1596,1,0,0,0,1596,1597,1,0,0,0,1597,1598,3,262,131,0,1598,207,1, + 0,0,0,1599,1600,5,216,0,0,1600,1605,3,280,140,0,1601,1602,5,263, + 0,0,1602,1604,3,280,140,0,1603,1601,1,0,0,0,1604,1607,1,0,0,0,1605, + 1603,1,0,0,0,1605,1606,1,0,0,0,1606,209,1,0,0,0,1607,1605,1,0,0, + 0,1608,1609,5,150,0,0,1609,1610,5,110,0,0,1610,1612,3,306,153,0, + 1611,1613,5,53,0,0,1612,1611,1,0,0,0,1612,1613,1,0,0,0,1613,1617, + 1,0,0,0,1614,1618,5,225,0,0,1615,1616,5,263,0,0,1616,1618,5,225, + 0,0,1617,1614,1,0,0,0,1617,1615,1,0,0,0,1617,1618,1,0,0,0,1618,1622, + 1,0,0,0,1619,1623,5,226,0,0,1620,1621,5,263,0,0,1621,1623,5,226, + 0,0,1622,1619,1,0,0,0,1622,1620,1,0,0,0,1622,1623,1,0,0,0,1623,1636, + 1,0,0,0,1624,1625,5,263,0,0,1625,1628,3,212,106,0,1626,1628,3,212, + 106,0,1627,1624,1,0,0,0,1627,1626,1,0,0,0,1628,1633,1,0,0,0,1629, + 1630,5,263,0,0,1630,1632,3,212,106,0,1631,1629,1,0,0,0,1632,1635, + 1,0,0,0,1633,1634,1,0,0,0,1633,1631,1,0,0,0,1634,1637,1,0,0,0,1635, + 1633,1,0,0,0,1636,1627,1,0,0,0,1636,1637,1,0,0,0,1637,211,1,0,0, + 0,1638,1639,5,81,0,0,1639,1640,5,110,0,0,1640,1641,3,306,153,0,1641, + 1642,5,224,0,0,1642,1643,3,186,93,0,1643,1645,3,306,153,0,1644,1646, + 5,53,0,0,1645,1644,1,0,0,0,1645,1646,1,0,0,0,1646,1648,1,0,0,0,1647, + 1649,5,225,0,0,1648,1647,1,0,0,0,1648,1649,1,0,0,0,1649,1651,1,0, + 0,0,1650,1652,5,226,0,0,1651,1650,1,0,0,0,1651,1652,1,0,0,0,1652, + 213,1,0,0,0,1653,1654,3,192,96,0,1654,1657,3,344,172,0,1655,1656, + 5,34,0,0,1656,1658,3,330,165,0,1657,1655,1,0,0,0,1657,1658,1,0,0, + 0,1658,215,1,0,0,0,1659,1660,3,182,91,0,1660,1662,3,344,172,0,1661, + 1663,3,222,111,0,1662,1661,1,0,0,0,1662,1663,1,0,0,0,1663,217,1, + 0,0,0,1664,1665,3,220,110,0,1665,219,1,0,0,0,1666,1667,3,182,91, + 0,1667,1675,3,344,172,0,1668,1672,3,228,114,0,1669,1671,3,228,114, + 0,1670,1669,1,0,0,0,1671,1674,1,0,0,0,1672,1673,1,0,0,0,1672,1670, + 1,0,0,0,1673,1676,1,0,0,0,1674,1672,1,0,0,0,1675,1668,1,0,0,0,1675, + 1676,1,0,0,0,1676,1678,1,0,0,0,1677,1679,3,222,111,0,1678,1677,1, + 0,0,0,1678,1679,1,0,0,0,1679,1682,1,0,0,0,1680,1681,5,150,0,0,1681, + 1683,5,110,0,0,1682,1680,1,0,0,0,1682,1683,1,0,0,0,1683,221,1,0, + 0,0,1684,1685,5,34,0,0,1685,1686,3,330,165,0,1686,223,1,0,0,0,1687, + 1695,3,214,107,0,1688,1692,3,228,114,0,1689,1691,3,228,114,0,1690, + 1689,1,0,0,0,1691,1694,1,0,0,0,1692,1693,1,0,0,0,1692,1690,1,0,0, + 0,1693,1696,1,0,0,0,1694,1692,1,0,0,0,1695,1688,1,0,0,0,1695,1696, + 1,0,0,0,1696,225,1,0,0,0,1697,1698,3,182,91,0,1698,1701,3,344,172, + 0,1699,1700,5,34,0,0,1700,1702,3,330,165,0,1701,1699,1,0,0,0,1701, + 1702,1,0,0,0,1702,1710,1,0,0,0,1703,1707,3,228,114,0,1704,1706,3, + 228,114,0,1705,1704,1,0,0,0,1706,1709,1,0,0,0,1707,1708,1,0,0,0, + 1707,1705,1,0,0,0,1708,1711,1,0,0,0,1709,1707,1,0,0,0,1710,1703, + 1,0,0,0,1710,1711,1,0,0,0,1711,227,1,0,0,0,1712,1714,5,132,0,0,1713, + 1712,1,0,0,0,1713,1714,1,0,0,0,1714,1715,1,0,0,0,1715,1718,5,133, + 0,0,1716,1718,3,230,115,0,1717,1713,1,0,0,0,1717,1716,1,0,0,0,1718, + 229,1,0,0,0,1719,1720,5,60,0,0,1720,1728,3,320,160,0,1721,1722,5, + 35,0,0,1722,1728,3,320,160,0,1723,1724,5,51,0,0,1724,1728,3,320, + 160,0,1725,1726,5,16,0,0,1726,1728,3,376,188,0,1727,1719,1,0,0,0, + 1727,1721,1,0,0,0,1727,1723,1,0,0,0,1727,1725,1,0,0,0,1728,231,1, + 0,0,0,1729,1730,7,10,0,0,1730,233,1,0,0,0,1731,1732,7,11,0,0,1732, + 235,1,0,0,0,1733,1738,3,238,119,0,1734,1735,5,263,0,0,1735,1737, + 3,238,119,0,1736,1734,1,0,0,0,1737,1740,1,0,0,0,1738,1739,1,0,0, + 0,1738,1736,1,0,0,0,1739,1743,1,0,0,0,1740,1738,1,0,0,0,1741,1742, + 5,263,0,0,1742,1744,3,240,120,0,1743,1741,1,0,0,0,1743,1744,1,0, + 0,0,1744,1747,1,0,0,0,1745,1747,3,240,120,0,1746,1733,1,0,0,0,1746, + 1745,1,0,0,0,1747,237,1,0,0,0,1748,1750,5,89,0,0,1749,1751,3,306, + 153,0,1750,1749,1,0,0,0,1750,1751,1,0,0,0,1751,1752,1,0,0,0,1752, + 1753,5,146,0,0,1753,1754,3,376,188,0,1754,239,1,0,0,0,1755,1757, + 5,154,0,0,1756,1758,3,306,153,0,1757,1756,1,0,0,0,1757,1758,1,0, + 0,0,1758,1759,1,0,0,0,1759,1760,5,265,0,0,1760,1761,5,145,0,0,1761, + 1767,3,242,121,0,1762,1763,5,263,0,0,1763,1764,5,145,0,0,1764,1766, + 3,242,121,0,1765,1762,1,0,0,0,1766,1769,1,0,0,0,1767,1768,1,0,0, + 0,1767,1765,1,0,0,0,1768,1770,1,0,0,0,1769,1767,1,0,0,0,1770,1771, + 5,266,0,0,1771,241,1,0,0,0,1772,1773,5,210,0,0,1773,1774,3,248,124, + 0,1774,1775,3,320,160,0,1775,1788,1,0,0,0,1776,1777,3,320,160,0, + 1777,1778,3,246,123,0,1778,1780,1,0,0,0,1779,1776,1,0,0,0,1779,1780, + 1,0,0,0,1780,1781,1,0,0,0,1781,1785,5,211,0,0,1782,1783,3,246,123, + 0,1783,1784,3,320,160,0,1784,1786,1,0,0,0,1785,1782,1,0,0,0,1785, + 1786,1,0,0,0,1786,1788,1,0,0,0,1787,1772,1,0,0,0,1787,1779,1,0,0, + 0,1788,243,1,0,0,0,1789,1790,5,30,0,0,1790,1791,5,94,0,0,1791,1796, + 3,374,187,0,1792,1793,5,216,0,0,1793,1794,5,151,0,0,1794,1795,5, + 249,0,0,1795,1797,3,376,188,0,1796,1792,1,0,0,0,1796,1797,1,0,0, + 0,1797,1800,1,0,0,0,1798,1800,5,197,0,0,1799,1789,1,0,0,0,1799,1798, + 1,0,0,0,1800,245,1,0,0,0,1801,1807,1,0,0,0,1802,1807,5,251,0,0,1803, + 1807,5,252,0,0,1804,1807,5,253,0,0,1805,1807,5,254,0,0,1806,1801, + 1,0,0,0,1806,1802,1,0,0,0,1806,1803,1,0,0,0,1806,1804,1,0,0,0,1806, + 1805,1,0,0,0,1807,247,1,0,0,0,1808,1817,5,249,0,0,1809,1817,5,250, + 0,0,1810,1817,5,115,0,0,1811,1817,5,164,0,0,1812,1817,5,163,0,0, + 1813,1817,5,15,0,0,1814,1817,5,94,0,0,1815,1817,3,246,123,0,1816, + 1808,1,0,0,0,1816,1809,1,0,0,0,1816,1810,1,0,0,0,1816,1811,1,0,0, + 0,1816,1812,1,0,0,0,1816,1813,1,0,0,0,1816,1814,1,0,0,0,1816,1815, + 1,0,0,0,1817,249,1,0,0,0,1818,1819,5,115,0,0,1819,1822,3,370,185, + 0,1820,1821,7,12,0,0,1821,1823,5,153,0,0,1822,1820,1,0,0,0,1822, + 1823,1,0,0,0,1823,251,1,0,0,0,1824,1825,5,265,0,0,1825,1830,3,260, + 130,0,1826,1827,5,263,0,0,1827,1829,3,260,130,0,1828,1826,1,0,0, + 0,1829,1832,1,0,0,0,1830,1828,1,0,0,0,1830,1831,1,0,0,0,1831,1833, + 1,0,0,0,1832,1830,1,0,0,0,1833,1834,5,266,0,0,1834,253,1,0,0,0,1835, + 1836,5,265,0,0,1836,1841,3,214,107,0,1837,1838,5,263,0,0,1838,1840, + 3,214,107,0,1839,1837,1,0,0,0,1840,1843,1,0,0,0,1841,1842,1,0,0, + 0,1841,1839,1,0,0,0,1842,1844,1,0,0,0,1843,1841,1,0,0,0,1844,1845, + 5,266,0,0,1845,255,1,0,0,0,1846,1851,3,320,160,0,1847,1848,5,263, + 0,0,1848,1850,3,320,160,0,1849,1847,1,0,0,0,1850,1853,1,0,0,0,1851, + 1849,1,0,0,0,1851,1852,1,0,0,0,1852,257,1,0,0,0,1853,1851,1,0,0, + 0,1854,1864,5,52,0,0,1855,1856,5,71,0,0,1856,1857,5,191,0,0,1857, + 1858,5,26,0,0,1858,1862,3,330,165,0,1859,1860,5,63,0,0,1860,1861, + 5,26,0,0,1861,1863,3,330,165,0,1862,1859,1,0,0,0,1862,1863,1,0,0, + 0,1863,1865,1,0,0,0,1864,1855,1,0,0,0,1864,1865,1,0,0,0,1865,1870, + 1,0,0,0,1866,1867,5,117,0,0,1867,1868,5,191,0,0,1868,1869,5,26,0, + 0,1869,1871,3,330,165,0,1870,1866,1,0,0,0,1870,1871,1,0,0,0,1871, + 259,1,0,0,0,1872,1875,3,374,187,0,1873,1874,5,249,0,0,1874,1876, + 3,320,160,0,1875,1873,1,0,0,0,1875,1876,1,0,0,0,1876,261,1,0,0,0, + 1877,1888,3,264,132,0,1878,1879,5,139,0,0,1879,1880,5,26,0,0,1880, + 1885,3,268,134,0,1881,1882,5,263,0,0,1882,1884,3,268,134,0,1883, + 1881,1,0,0,0,1884,1887,1,0,0,0,1885,1883,1,0,0,0,1885,1886,1,0,0, + 0,1886,1889,1,0,0,0,1887,1885,1,0,0,0,1888,1878,1,0,0,0,1888,1889, + 1,0,0,0,1889,1896,1,0,0,0,1890,1891,5,116,0,0,1891,1894,3,320,160, + 0,1892,1893,5,135,0,0,1893,1895,5,277,0,0,1894,1892,1,0,0,0,1894, + 1895,1,0,0,0,1895,1897,1,0,0,0,1896,1890,1,0,0,0,1896,1897,1,0,0, + 0,1897,263,1,0,0,0,1898,1899,6,132,-1,0,1899,1900,3,266,133,0,1900, + 1915,1,0,0,0,1901,1902,10,2,0,0,1902,1904,5,100,0,0,1903,1905,3, + 282,141,0,1904,1903,1,0,0,0,1904,1905,1,0,0,0,1905,1906,1,0,0,0, + 1906,1914,3,264,132,3,1907,1908,10,1,0,0,1908,1910,7,13,0,0,1909, + 1911,3,282,141,0,1910,1909,1,0,0,0,1910,1911,1,0,0,0,1911,1912,1, + 0,0,0,1912,1914,3,264,132,2,1913,1901,1,0,0,0,1913,1907,1,0,0,0, + 1914,1917,1,0,0,0,1915,1913,1,0,0,0,1915,1916,1,0,0,0,1916,265,1, + 0,0,0,1917,1915,1,0,0,0,1918,1935,3,270,135,0,1919,1920,5,188,0, + 0,1920,1935,3,186,93,0,1921,1922,5,211,0,0,1922,1927,3,320,160,0, + 1923,1924,5,263,0,0,1924,1926,3,320,160,0,1925,1923,1,0,0,0,1926, + 1929,1,0,0,0,1927,1925,1,0,0,0,1927,1928,1,0,0,0,1928,1935,1,0,0, + 0,1929,1927,1,0,0,0,1930,1931,5,265,0,0,1931,1932,3,262,131,0,1932, + 1933,5,266,0,0,1933,1935,1,0,0,0,1934,1918,1,0,0,0,1934,1919,1,0, + 0,0,1934,1921,1,0,0,0,1934,1930,1,0,0,0,1935,267,1,0,0,0,1936,1938, + 3,318,159,0,1937,1939,7,14,0,0,1938,1937,1,0,0,0,1938,1939,1,0,0, + 0,1939,1942,1,0,0,0,1940,1941,5,134,0,0,1941,1943,7,15,0,0,1942, + 1940,1,0,0,0,1942,1943,1,0,0,0,1943,269,1,0,0,0,1944,1946,5,174, + 0,0,1945,1947,3,282,141,0,1946,1945,1,0,0,0,1946,1947,1,0,0,0,1947, + 1949,1,0,0,0,1948,1950,5,183,0,0,1949,1948,1,0,0,0,1949,1950,1,0, + 0,0,1950,1951,1,0,0,0,1951,1961,3,272,136,0,1952,1953,5,82,0,0,1953, + 1958,3,294,147,0,1954,1955,5,263,0,0,1955,1957,3,294,147,0,1956, + 1954,1,0,0,0,1957,1960,1,0,0,0,1958,1956,1,0,0,0,1958,1959,1,0,0, + 0,1959,1962,1,0,0,0,1960,1958,1,0,0,0,1961,1952,1,0,0,0,1961,1962, + 1,0,0,0,1962,1965,1,0,0,0,1963,1964,5,215,0,0,1964,1966,3,322,161, + 0,1965,1963,1,0,0,0,1965,1966,1,0,0,0,1966,1970,1,0,0,0,1967,1968, + 5,87,0,0,1968,1969,5,26,0,0,1969,1971,3,274,137,0,1970,1967,1,0, + 0,0,1970,1971,1,0,0,0,1971,1974,1,0,0,0,1972,1973,5,90,0,0,1973, + 1975,3,322,161,0,1974,1972,1,0,0,0,1974,1975,1,0,0,0,1975,271,1, + 0,0,0,1976,1981,3,284,142,0,1977,1978,5,263,0,0,1978,1980,3,284, + 142,0,1979,1977,1,0,0,0,1980,1983,1,0,0,0,1981,1979,1,0,0,0,1981, + 1982,1,0,0,0,1982,273,1,0,0,0,1983,1981,1,0,0,0,1984,1986,3,282, + 141,0,1985,1984,1,0,0,0,1985,1986,1,0,0,0,1986,1987,1,0,0,0,1987, + 1992,3,276,138,0,1988,1989,5,263,0,0,1989,1991,3,276,138,0,1990, + 1988,1,0,0,0,1991,1994,1,0,0,0,1992,1990,1,0,0,0,1992,1993,1,0,0, + 0,1993,275,1,0,0,0,1994,1992,1,0,0,0,1995,1996,3,278,139,0,1996, + 277,1,0,0,0,1997,2006,5,265,0,0,1998,2003,3,318,159,0,1999,2000, + 5,263,0,0,2000,2002,3,318,159,0,2001,1999,1,0,0,0,2002,2005,1,0, + 0,0,2003,2001,1,0,0,0,2003,2004,1,0,0,0,2004,2007,1,0,0,0,2005,2003, + 1,0,0,0,2006,1998,1,0,0,0,2006,2007,1,0,0,0,2007,2008,1,0,0,0,2008, + 2011,5,266,0,0,2009,2011,3,318,159,0,2010,1997,1,0,0,0,2010,2009, + 1,0,0,0,2011,279,1,0,0,0,2012,2014,3,374,187,0,2013,2015,3,306,153, + 0,2014,2013,1,0,0,0,2014,2015,1,0,0,0,2015,2016,1,0,0,0,2016,2017, + 5,9,0,0,2017,2018,3,312,156,0,2018,281,1,0,0,0,2019,2020,7,16,0, + 0,2020,283,1,0,0,0,2021,2023,3,288,144,0,2022,2024,3,286,143,0,2023, + 2022,1,0,0,0,2023,2024,1,0,0,0,2024,2034,1,0,0,0,2025,2027,3,290, + 145,0,2026,2028,3,286,143,0,2027,2026,1,0,0,0,2027,2028,1,0,0,0, + 2028,2034,1,0,0,0,2029,2031,3,292,146,0,2030,2032,3,286,143,0,2031, + 2030,1,0,0,0,2031,2032,1,0,0,0,2032,2034,1,0,0,0,2033,2021,1,0,0, + 0,2033,2025,1,0,0,0,2033,2029,1,0,0,0,2034,285,1,0,0,0,2035,2036, + 5,9,0,0,2036,2037,3,374,187,0,2037,287,1,0,0,0,2038,2040,3,192,96, + 0,2039,2041,3,286,143,0,2040,2039,1,0,0,0,2040,2041,1,0,0,0,2041, + 289,1,0,0,0,2042,2043,3,320,160,0,2043,291,1,0,0,0,2044,2045,3,370, + 185,0,2045,2046,5,261,0,0,2046,2048,1,0,0,0,2047,2044,1,0,0,0,2047, + 2048,1,0,0,0,2048,2049,1,0,0,0,2049,2050,5,257,0,0,2050,293,1,0, + 0,0,2051,2052,6,147,-1,0,2052,2053,3,300,150,0,2053,2067,1,0,0,0, + 2054,2063,10,2,0,0,2055,2056,5,38,0,0,2056,2057,5,109,0,0,2057,2064, + 3,300,150,0,2058,2059,3,296,148,0,2059,2060,5,109,0,0,2060,2061, + 3,294,147,0,2061,2062,3,298,149,0,2062,2064,1,0,0,0,2063,2055,1, + 0,0,0,2063,2058,1,0,0,0,2064,2066,1,0,0,0,2065,2054,1,0,0,0,2066, + 2069,1,0,0,0,2067,2065,1,0,0,0,2067,2068,1,0,0,0,2068,295,1,0,0, + 0,2069,2067,1,0,0,0,2070,2072,5,97,0,0,2071,2070,1,0,0,0,2071,2072, + 1,0,0,0,2072,2102,1,0,0,0,2073,2075,5,114,0,0,2074,2076,5,97,0,0, + 2075,2074,1,0,0,0,2075,2076,1,0,0,0,2076,2102,1,0,0,0,2077,2079, + 5,165,0,0,2078,2080,5,97,0,0,2079,2078,1,0,0,0,2079,2080,1,0,0,0, + 2080,2102,1,0,0,0,2081,2083,5,114,0,0,2082,2084,5,141,0,0,2083,2082, + 1,0,0,0,2083,2084,1,0,0,0,2084,2102,1,0,0,0,2085,2087,5,165,0,0, + 2086,2088,5,141,0,0,2087,2086,1,0,0,0,2087,2088,1,0,0,0,2088,2102, + 1,0,0,0,2089,2091,5,83,0,0,2090,2092,5,141,0,0,2091,2090,1,0,0,0, + 2091,2092,1,0,0,0,2092,2102,1,0,0,0,2093,2094,5,114,0,0,2094,2102, + 5,177,0,0,2095,2096,5,165,0,0,2096,2102,5,177,0,0,2097,2098,5,114, + 0,0,2098,2102,5,7,0,0,2099,2100,5,165,0,0,2100,2102,5,7,0,0,2101, + 2071,1,0,0,0,2101,2073,1,0,0,0,2101,2077,1,0,0,0,2101,2081,1,0,0, + 0,2101,2085,1,0,0,0,2101,2089,1,0,0,0,2101,2093,1,0,0,0,2101,2095, + 1,0,0,0,2101,2097,1,0,0,0,2101,2099,1,0,0,0,2102,297,1,0,0,0,2103, + 2104,5,136,0,0,2104,2118,3,322,161,0,2105,2106,5,205,0,0,2106,2107, + 5,265,0,0,2107,2112,3,374,187,0,2108,2109,5,263,0,0,2109,2111,3, + 374,187,0,2110,2108,1,0,0,0,2111,2114,1,0,0,0,2112,2110,1,0,0,0, + 2112,2113,1,0,0,0,2113,2115,1,0,0,0,2114,2112,1,0,0,0,2115,2116, + 5,266,0,0,2116,2118,1,0,0,0,2117,2103,1,0,0,0,2117,2105,1,0,0,0, + 2118,299,1,0,0,0,2119,2132,3,304,152,0,2120,2121,5,190,0,0,2121, + 2122,3,302,151,0,2122,2123,5,265,0,0,2123,2124,3,320,160,0,2124, + 2130,5,266,0,0,2125,2126,5,157,0,0,2126,2127,5,265,0,0,2127,2128, + 3,320,160,0,2128,2129,5,266,0,0,2129,2131,1,0,0,0,2130,2125,1,0, + 0,0,2130,2131,1,0,0,0,2131,2133,1,0,0,0,2132,2120,1,0,0,0,2132,2133, + 1,0,0,0,2133,301,1,0,0,0,2134,2135,7,17,0,0,2135,303,1,0,0,0,2136, + 2144,3,308,154,0,2137,2139,5,9,0,0,2138,2137,1,0,0,0,2138,2139,1, + 0,0,0,2139,2140,1,0,0,0,2140,2142,3,374,187,0,2141,2143,3,306,153, + 0,2142,2141,1,0,0,0,2142,2143,1,0,0,0,2143,2145,1,0,0,0,2144,2138, + 1,0,0,0,2144,2145,1,0,0,0,2145,305,1,0,0,0,2146,2147,5,265,0,0,2147, + 2152,3,192,96,0,2148,2149,5,263,0,0,2149,2151,3,192,96,0,2150,2148, + 1,0,0,0,2151,2154,1,0,0,0,2152,2150,1,0,0,0,2152,2153,1,0,0,0,2153, + 2155,1,0,0,0,2154,2152,1,0,0,0,2155,2156,5,266,0,0,2156,307,1,0, + 0,0,2157,2162,3,194,97,0,2158,2162,3,310,155,0,2159,2162,3,314,157, + 0,2160,2162,3,316,158,0,2161,2157,1,0,0,0,2161,2158,1,0,0,0,2161, + 2159,1,0,0,0,2161,2160,1,0,0,0,2162,309,1,0,0,0,2163,2165,5,113, + 0,0,2164,2163,1,0,0,0,2164,2165,1,0,0,0,2165,2166,1,0,0,0,2166,2167, + 3,312,156,0,2167,311,1,0,0,0,2168,2169,5,265,0,0,2169,2170,3,206, + 103,0,2170,2171,5,266,0,0,2171,313,1,0,0,0,2172,2173,5,201,0,0,2173, + 2174,5,265,0,0,2174,2179,3,320,160,0,2175,2176,5,263,0,0,2176,2178, + 3,320,160,0,2177,2175,1,0,0,0,2178,2181,1,0,0,0,2179,2177,1,0,0, + 0,2179,2180,1,0,0,0,2180,2182,1,0,0,0,2181,2179,1,0,0,0,2182,2185, + 5,266,0,0,2183,2184,5,216,0,0,2184,2186,5,140,0,0,2185,2183,1,0, + 0,0,2185,2186,1,0,0,0,2186,315,1,0,0,0,2187,2188,5,265,0,0,2188, + 2189,3,294,147,0,2189,2190,5,266,0,0,2190,317,1,0,0,0,2191,2194, + 3,192,96,0,2192,2194,3,320,160,0,2193,2191,1,0,0,0,2193,2192,1,0, + 0,0,2194,319,1,0,0,0,2195,2196,3,322,161,0,2196,321,1,0,0,0,2197, + 2198,6,161,-1,0,2198,2200,3,326,163,0,2199,2201,3,324,162,0,2200, + 2199,1,0,0,0,2200,2201,1,0,0,0,2201,2205,1,0,0,0,2202,2203,5,132, + 0,0,2203,2205,3,322,161,3,2204,2197,1,0,0,0,2204,2202,1,0,0,0,2205, + 2214,1,0,0,0,2206,2207,10,2,0,0,2207,2208,5,5,0,0,2208,2213,3,322, + 161,3,2209,2210,10,1,0,0,2210,2211,5,138,0,0,2211,2213,3,322,161, + 2,2212,2206,1,0,0,0,2212,2209,1,0,0,0,2213,2216,1,0,0,0,2214,2212, + 1,0,0,0,2214,2215,1,0,0,0,2215,323,1,0,0,0,2216,2214,1,0,0,0,2217, + 2218,3,332,166,0,2218,2219,3,326,163,0,2219,2276,1,0,0,0,2220,2221, + 3,332,166,0,2221,2222,3,334,167,0,2222,2223,3,312,156,0,2223,2276, + 1,0,0,0,2224,2226,5,132,0,0,2225,2224,1,0,0,0,2225,2226,1,0,0,0, + 2226,2227,1,0,0,0,2227,2228,5,15,0,0,2228,2229,3,326,163,0,2229, + 2230,5,5,0,0,2230,2231,3,326,163,0,2231,2276,1,0,0,0,2232,2234,5, + 132,0,0,2233,2232,1,0,0,0,2233,2234,1,0,0,0,2234,2235,1,0,0,0,2235, + 2236,5,94,0,0,2236,2237,5,265,0,0,2237,2242,3,320,160,0,2238,2239, + 5,263,0,0,2239,2241,3,320,160,0,2240,2238,1,0,0,0,2241,2244,1,0, + 0,0,2242,2240,1,0,0,0,2242,2243,1,0,0,0,2243,2245,1,0,0,0,2244,2242, + 1,0,0,0,2245,2246,5,266,0,0,2246,2276,1,0,0,0,2247,2249,5,132,0, + 0,2248,2247,1,0,0,0,2248,2249,1,0,0,0,2249,2250,1,0,0,0,2250,2251, + 5,94,0,0,2251,2276,3,312,156,0,2252,2254,5,132,0,0,2253,2252,1,0, + 0,0,2253,2254,1,0,0,0,2254,2255,1,0,0,0,2255,2256,7,18,0,0,2256, + 2259,3,326,163,0,2257,2258,5,62,0,0,2258,2260,3,326,163,0,2259,2257, + 1,0,0,0,2259,2260,1,0,0,0,2260,2276,1,0,0,0,2261,2262,7,19,0,0,2262, + 2276,3,326,163,0,2263,2265,5,108,0,0,2264,2266,5,132,0,0,2265,2264, + 1,0,0,0,2265,2266,1,0,0,0,2266,2267,1,0,0,0,2267,2276,7,20,0,0,2268, + 2270,5,108,0,0,2269,2271,5,132,0,0,2270,2269,1,0,0,0,2270,2271,1, + 0,0,0,2271,2272,1,0,0,0,2272,2273,5,57,0,0,2273,2274,5,82,0,0,2274, + 2276,3,326,163,0,2275,2217,1,0,0,0,2275,2220,1,0,0,0,2275,2225,1, + 0,0,0,2275,2233,1,0,0,0,2275,2248,1,0,0,0,2275,2253,1,0,0,0,2275, + 2261,1,0,0,0,2275,2263,1,0,0,0,2275,2268,1,0,0,0,2276,325,1,0,0, + 0,2277,2278,6,163,-1,0,2278,2282,3,328,164,0,2279,2280,7,21,0,0, + 2280,2282,3,326,163,4,2281,2277,1,0,0,0,2281,2279,1,0,0,0,2282,2294, + 1,0,0,0,2283,2284,10,3,0,0,2284,2285,7,22,0,0,2285,2293,3,326,163, + 4,2286,2287,10,2,0,0,2287,2288,7,21,0,0,2288,2293,3,326,163,3,2289, + 2290,10,1,0,0,2290,2291,5,260,0,0,2291,2293,3,326,163,2,2292,2283, + 1,0,0,0,2292,2286,1,0,0,0,2292,2289,1,0,0,0,2293,2296,1,0,0,0,2294, + 2292,1,0,0,0,2294,2295,1,0,0,0,2295,327,1,0,0,0,2296,2294,1,0,0, + 0,2297,2298,6,164,-1,0,2298,2544,5,133,0,0,2299,2544,3,338,169,0, + 2300,2301,3,374,187,0,2301,2302,3,330,165,0,2302,2544,1,0,0,0,2303, + 2304,5,286,0,0,2304,2544,3,330,165,0,2305,2544,3,376,188,0,2306, + 2544,3,336,168,0,2307,2544,3,330,165,0,2308,2544,5,276,0,0,2309, + 2544,5,272,0,0,2310,2311,5,148,0,0,2311,2312,5,265,0,0,2312,2313, + 3,326,163,0,2313,2314,5,94,0,0,2314,2315,3,326,163,0,2315,2316,5, + 266,0,0,2316,2544,1,0,0,0,2317,2318,5,265,0,0,2318,2321,3,320,160, + 0,2319,2320,5,9,0,0,2320,2322,3,344,172,0,2321,2319,1,0,0,0,2321, + 2322,1,0,0,0,2322,2331,1,0,0,0,2323,2324,5,263,0,0,2324,2327,3,320, + 160,0,2325,2326,5,9,0,0,2326,2328,3,344,172,0,2327,2325,1,0,0,0, + 2327,2328,1,0,0,0,2328,2330,1,0,0,0,2329,2323,1,0,0,0,2330,2333, + 1,0,0,0,2331,2332,1,0,0,0,2331,2329,1,0,0,0,2332,2334,1,0,0,0,2333, + 2331,1,0,0,0,2334,2335,5,266,0,0,2335,2544,1,0,0,0,2336,2337,5,168, + 0,0,2337,2338,5,265,0,0,2338,2343,3,320,160,0,2339,2340,5,263,0, + 0,2340,2342,3,320,160,0,2341,2339,1,0,0,0,2342,2345,1,0,0,0,2343, + 2341,1,0,0,0,2343,2344,1,0,0,0,2344,2346,1,0,0,0,2345,2343,1,0,0, + 0,2346,2347,5,266,0,0,2347,2544,1,0,0,0,2348,2349,3,190,95,0,2349, + 2350,5,265,0,0,2350,2351,5,257,0,0,2351,2353,5,266,0,0,2352,2354, + 3,354,177,0,2353,2352,1,0,0,0,2353,2354,1,0,0,0,2354,2356,1,0,0, + 0,2355,2357,3,356,178,0,2356,2355,1,0,0,0,2356,2357,1,0,0,0,2357, + 2544,1,0,0,0,2358,2359,3,190,95,0,2359,2371,5,265,0,0,2360,2362, + 3,282,141,0,2361,2360,1,0,0,0,2361,2362,1,0,0,0,2362,2363,1,0,0, + 0,2363,2368,3,320,160,0,2364,2365,5,263,0,0,2365,2367,3,320,160, + 0,2366,2364,1,0,0,0,2367,2370,1,0,0,0,2368,2366,1,0,0,0,2368,2369, + 1,0,0,0,2369,2372,1,0,0,0,2370,2368,1,0,0,0,2371,2361,1,0,0,0,2371, + 2372,1,0,0,0,2372,2383,1,0,0,0,2373,2374,5,139,0,0,2374,2375,5,26, + 0,0,2375,2380,3,268,134,0,2376,2377,5,263,0,0,2377,2379,3,268,134, + 0,2378,2376,1,0,0,0,2379,2382,1,0,0,0,2380,2378,1,0,0,0,2380,2381, + 1,0,0,0,2381,2384,1,0,0,0,2382,2380,1,0,0,0,2383,2373,1,0,0,0,2383, + 2384,1,0,0,0,2384,2385,1,0,0,0,2385,2387,5,266,0,0,2386,2388,3,354, + 177,0,2387,2386,1,0,0,0,2387,2388,1,0,0,0,2388,2390,1,0,0,0,2389, + 2391,3,356,178,0,2390,2389,1,0,0,0,2390,2391,1,0,0,0,2391,2544,1, + 0,0,0,2392,2393,3,374,187,0,2393,2394,5,273,0,0,2394,2395,3,320, + 160,0,2395,2544,1,0,0,0,2396,2405,5,265,0,0,2397,2402,3,374,187, + 0,2398,2399,5,263,0,0,2399,2401,3,374,187,0,2400,2398,1,0,0,0,2401, + 2404,1,0,0,0,2402,2400,1,0,0,0,2402,2403,1,0,0,0,2403,2406,1,0,0, + 0,2404,2402,1,0,0,0,2405,2397,1,0,0,0,2405,2406,1,0,0,0,2406,2407, + 1,0,0,0,2407,2408,5,266,0,0,2408,2409,5,273,0,0,2409,2544,3,320, + 160,0,2410,2411,5,265,0,0,2411,2412,3,206,103,0,2412,2413,5,266, + 0,0,2413,2544,1,0,0,0,2414,2415,5,66,0,0,2415,2416,5,265,0,0,2416, + 2417,3,206,103,0,2417,2418,5,266,0,0,2418,2544,1,0,0,0,2419,2420, + 5,28,0,0,2420,2422,3,326,163,0,2421,2423,3,352,176,0,2422,2421,1, + 0,0,0,2423,2424,1,0,0,0,2424,2422,1,0,0,0,2424,2425,1,0,0,0,2425, + 2428,1,0,0,0,2426,2427,5,59,0,0,2427,2429,3,320,160,0,2428,2426, + 1,0,0,0,2428,2429,1,0,0,0,2429,2430,1,0,0,0,2430,2431,5,61,0,0,2431, + 2544,1,0,0,0,2432,2434,5,28,0,0,2433,2435,3,352,176,0,2434,2433, + 1,0,0,0,2435,2436,1,0,0,0,2436,2434,1,0,0,0,2436,2437,1,0,0,0,2437, + 2440,1,0,0,0,2438,2439,5,59,0,0,2439,2441,3,320,160,0,2440,2438, + 1,0,0,0,2440,2441,1,0,0,0,2441,2442,1,0,0,0,2442,2443,5,61,0,0,2443, + 2544,1,0,0,0,2444,2445,5,29,0,0,2445,2446,5,265,0,0,2446,2447,3, + 320,160,0,2447,2448,5,9,0,0,2448,2449,3,344,172,0,2449,2450,5,266, + 0,0,2450,2544,1,0,0,0,2451,2452,5,195,0,0,2452,2453,5,265,0,0,2453, + 2454,3,320,160,0,2454,2455,5,9,0,0,2455,2456,3,344,172,0,2456,2457, + 5,266,0,0,2457,2544,1,0,0,0,2458,2459,5,8,0,0,2459,2468,5,267,0, + 0,2460,2465,3,320,160,0,2461,2462,5,263,0,0,2462,2464,3,320,160, + 0,2463,2461,1,0,0,0,2464,2467,1,0,0,0,2465,2463,1,0,0,0,2465,2466, + 1,0,0,0,2466,2469,1,0,0,0,2467,2465,1,0,0,0,2468,2460,1,0,0,0,2468, + 2469,1,0,0,0,2469,2470,1,0,0,0,2470,2544,5,268,0,0,2471,2544,3,374, + 187,0,2472,2544,5,40,0,0,2473,2477,5,42,0,0,2474,2475,5,265,0,0, + 2475,2476,5,277,0,0,2476,2478,5,266,0,0,2477,2474,1,0,0,0,2477,2478, + 1,0,0,0,2478,2544,1,0,0,0,2479,2483,5,43,0,0,2480,2481,5,265,0,0, + 2481,2482,5,277,0,0,2482,2484,5,266,0,0,2483,2480,1,0,0,0,2483,2484, + 1,0,0,0,2484,2544,1,0,0,0,2485,2489,5,119,0,0,2486,2487,5,265,0, + 0,2487,2488,5,277,0,0,2488,2490,5,266,0,0,2489,2486,1,0,0,0,2489, + 2490,1,0,0,0,2490,2544,1,0,0,0,2491,2495,5,120,0,0,2492,2493,5,265, + 0,0,2493,2494,5,277,0,0,2494,2496,5,266,0,0,2495,2492,1,0,0,0,2495, + 2496,1,0,0,0,2496,2544,1,0,0,0,2497,2544,5,44,0,0,2498,2544,5,41, + 0,0,2499,2500,5,184,0,0,2500,2501,5,265,0,0,2501,2502,3,326,163, + 0,2502,2503,5,82,0,0,2503,2506,3,326,163,0,2504,2505,5,78,0,0,2505, + 2507,3,326,163,0,2506,2504,1,0,0,0,2506,2507,1,0,0,0,2507,2508,1, + 0,0,0,2508,2509,5,266,0,0,2509,2544,1,0,0,0,2510,2511,5,131,0,0, + 2511,2512,5,265,0,0,2512,2515,3,326,163,0,2513,2514,5,263,0,0,2514, + 2516,3,342,171,0,2515,2513,1,0,0,0,2515,2516,1,0,0,0,2516,2517,1, + 0,0,0,2517,2518,5,266,0,0,2518,2544,1,0,0,0,2519,2520,5,68,0,0,2520, + 2521,5,265,0,0,2521,2522,3,374,187,0,2522,2523,5,82,0,0,2523,2524, + 3,326,163,0,2524,2525,5,266,0,0,2525,2544,1,0,0,0,2526,2527,5,265, + 0,0,2527,2528,3,320,160,0,2528,2529,5,266,0,0,2529,2544,1,0,0,0, + 2530,2531,5,88,0,0,2531,2540,5,265,0,0,2532,2537,3,370,185,0,2533, + 2534,5,263,0,0,2534,2536,3,370,185,0,2535,2533,1,0,0,0,2536,2539, + 1,0,0,0,2537,2535,1,0,0,0,2537,2538,1,0,0,0,2538,2541,1,0,0,0,2539, + 2537,1,0,0,0,2540,2532,1,0,0,0,2540,2541,1,0,0,0,2541,2542,1,0,0, + 0,2542,2544,5,266,0,0,2543,2297,1,0,0,0,2543,2299,1,0,0,0,2543,2300, + 1,0,0,0,2543,2303,1,0,0,0,2543,2305,1,0,0,0,2543,2306,1,0,0,0,2543, + 2307,1,0,0,0,2543,2308,1,0,0,0,2543,2309,1,0,0,0,2543,2310,1,0,0, + 0,2543,2317,1,0,0,0,2543,2336,1,0,0,0,2543,2348,1,0,0,0,2543,2358, + 1,0,0,0,2543,2392,1,0,0,0,2543,2396,1,0,0,0,2543,2410,1,0,0,0,2543, + 2414,1,0,0,0,2543,2419,1,0,0,0,2543,2432,1,0,0,0,2543,2444,1,0,0, + 0,2543,2451,1,0,0,0,2543,2458,1,0,0,0,2543,2471,1,0,0,0,2543,2472, + 1,0,0,0,2543,2473,1,0,0,0,2543,2479,1,0,0,0,2543,2485,1,0,0,0,2543, + 2491,1,0,0,0,2543,2497,1,0,0,0,2543,2498,1,0,0,0,2543,2499,1,0,0, + 0,2543,2510,1,0,0,0,2543,2519,1,0,0,0,2543,2526,1,0,0,0,2543,2530, + 1,0,0,0,2544,2555,1,0,0,0,2545,2546,10,15,0,0,2546,2547,5,267,0, + 0,2547,2548,3,326,163,0,2548,2549,5,268,0,0,2549,2554,1,0,0,0,2550, + 2551,10,13,0,0,2551,2552,5,261,0,0,2552,2554,3,374,187,0,2553,2545, + 1,0,0,0,2553,2550,1,0,0,0,2554,2557,1,0,0,0,2555,2553,1,0,0,0,2555, + 2556,1,0,0,0,2556,329,1,0,0,0,2557,2555,1,0,0,0,2558,2565,5,274, + 0,0,2559,2562,5,275,0,0,2560,2561,5,198,0,0,2561,2563,5,274,0,0, + 2562,2560,1,0,0,0,2562,2563,1,0,0,0,2563,2565,1,0,0,0,2564,2558, + 1,0,0,0,2564,2559,1,0,0,0,2565,331,1,0,0,0,2566,2567,7,23,0,0,2567, + 333,1,0,0,0,2568,2569,7,24,0,0,2569,335,1,0,0,0,2570,2571,7,25,0, + 0,2571,337,1,0,0,0,2572,2573,5,277,0,0,2573,2587,3,340,170,0,2574, + 2575,5,265,0,0,2575,2576,5,277,0,0,2576,2577,5,266,0,0,2577,2587, + 3,340,170,0,2578,2579,5,101,0,0,2579,2580,5,277,0,0,2580,2587,3, + 340,170,0,2581,2582,5,101,0,0,2582,2583,5,265,0,0,2583,2584,5,277, + 0,0,2584,2585,5,266,0,0,2585,2587,3,340,170,0,2586,2572,1,0,0,0, + 2586,2574,1,0,0,0,2586,2578,1,0,0,0,2586,2581,1,0,0,0,2587,339,1, + 0,0,0,2588,2589,7,26,0,0,2589,341,1,0,0,0,2590,2591,7,27,0,0,2591, + 343,1,0,0,0,2592,2593,6,172,-1,0,2593,2594,5,8,0,0,2594,2595,5,251, + 0,0,2595,2596,3,344,172,0,2596,2597,5,253,0,0,2597,2638,1,0,0,0, + 2598,2599,5,235,0,0,2599,2600,5,251,0,0,2600,2601,3,344,172,0,2601, + 2602,5,263,0,0,2602,2603,3,344,172,0,2603,2604,5,253,0,0,2604,2638, + 1,0,0,0,2605,2606,5,240,0,0,2606,2607,5,251,0,0,2607,2608,3,374, + 187,0,2608,2615,3,344,172,0,2609,2610,5,263,0,0,2610,2611,3,374, + 187,0,2611,2612,3,344,172,0,2612,2614,1,0,0,0,2613,2609,1,0,0,0, + 2614,2617,1,0,0,0,2615,2613,1,0,0,0,2615,2616,1,0,0,0,2616,2618, + 1,0,0,0,2617,2615,1,0,0,0,2618,2619,5,253,0,0,2619,2638,1,0,0,0, + 2620,2623,3,350,175,0,2621,2623,3,346,173,0,2622,2620,1,0,0,0,2622, + 2621,1,0,0,0,2623,2635,1,0,0,0,2624,2625,5,265,0,0,2625,2630,3,348, + 174,0,2626,2627,5,263,0,0,2627,2629,3,348,174,0,2628,2626,1,0,0, + 0,2629,2632,1,0,0,0,2630,2628,1,0,0,0,2630,2631,1,0,0,0,2631,2633, + 1,0,0,0,2632,2630,1,0,0,0,2633,2634,5,266,0,0,2634,2636,1,0,0,0, + 2635,2624,1,0,0,0,2635,2636,1,0,0,0,2636,2638,1,0,0,0,2637,2592, + 1,0,0,0,2637,2598,1,0,0,0,2637,2605,1,0,0,0,2637,2622,1,0,0,0,2638, + 2643,1,0,0,0,2639,2640,10,5,0,0,2640,2642,5,8,0,0,2641,2639,1,0, + 0,0,2642,2645,1,0,0,0,2643,2641,1,0,0,0,2643,2644,1,0,0,0,2644,345, + 1,0,0,0,2645,2643,1,0,0,0,2646,2647,7,28,0,0,2647,347,1,0,0,0,2648, + 2651,5,277,0,0,2649,2651,3,344,172,0,2650,2648,1,0,0,0,2650,2649, + 1,0,0,0,2651,349,1,0,0,0,2652,2657,5,284,0,0,2653,2657,5,285,0,0, + 2654,2657,5,286,0,0,2655,2657,3,374,187,0,2656,2652,1,0,0,0,2656, + 2653,1,0,0,0,2656,2654,1,0,0,0,2656,2655,1,0,0,0,2657,351,1,0,0, + 0,2658,2659,5,214,0,0,2659,2660,3,320,160,0,2660,2661,5,192,0,0, + 2661,2662,3,320,160,0,2662,353,1,0,0,0,2663,2664,5,74,0,0,2664,2665, + 5,265,0,0,2665,2666,5,215,0,0,2666,2667,3,322,161,0,2667,2668,5, + 266,0,0,2668,355,1,0,0,0,2669,2670,5,143,0,0,2670,2681,5,265,0,0, + 2671,2672,5,145,0,0,2672,2673,5,26,0,0,2673,2678,3,320,160,0,2674, + 2675,5,263,0,0,2675,2677,3,320,160,0,2676,2674,1,0,0,0,2677,2680, + 1,0,0,0,2678,2676,1,0,0,0,2678,2679,1,0,0,0,2679,2682,1,0,0,0,2680, + 2678,1,0,0,0,2681,2671,1,0,0,0,2681,2682,1,0,0,0,2682,2693,1,0,0, + 0,2683,2684,5,139,0,0,2684,2685,5,26,0,0,2685,2690,3,268,134,0,2686, + 2687,5,263,0,0,2687,2689,3,268,134,0,2688,2686,1,0,0,0,2689,2692, + 1,0,0,0,2690,2688,1,0,0,0,2690,2691,1,0,0,0,2691,2694,1,0,0,0,2692, + 2690,1,0,0,0,2693,2683,1,0,0,0,2693,2694,1,0,0,0,2694,2696,1,0,0, + 0,2695,2697,3,358,179,0,2696,2695,1,0,0,0,2696,2697,1,0,0,0,2697, + 2698,1,0,0,0,2698,2699,5,266,0,0,2699,357,1,0,0,0,2700,2701,5,154, + 0,0,2701,2717,3,360,180,0,2702,2703,5,169,0,0,2703,2717,3,360,180, + 0,2704,2705,5,154,0,0,2705,2706,5,15,0,0,2706,2707,3,360,180,0,2707, + 2708,5,5,0,0,2708,2709,3,360,180,0,2709,2717,1,0,0,0,2710,2711,5, + 169,0,0,2711,2712,5,15,0,0,2712,2713,3,360,180,0,2713,2714,5,5,0, + 0,2714,2715,3,360,180,0,2715,2717,1,0,0,0,2716,2700,1,0,0,0,2716, + 2702,1,0,0,0,2716,2704,1,0,0,0,2716,2710,1,0,0,0,2717,359,1,0,0, + 0,2718,2719,5,199,0,0,2719,2728,5,149,0,0,2720,2721,5,199,0,0,2721, + 2728,5,77,0,0,2722,2723,5,39,0,0,2723,2728,5,168,0,0,2724,2725,3, + 320,160,0,2725,2726,7,29,0,0,2726,2728,1,0,0,0,2727,2718,1,0,0,0, + 2727,2720,1,0,0,0,2727,2722,1,0,0,0,2727,2724,1,0,0,0,2728,361,1, + 0,0,0,2729,2730,3,374,187,0,2730,2731,5,261,0,0,2731,2732,3,374, + 187,0,2732,2735,1,0,0,0,2733,2735,3,374,187,0,2734,2729,1,0,0,0, + 2734,2733,1,0,0,0,2735,363,1,0,0,0,2736,2741,3,362,181,0,2737,2738, + 5,263,0,0,2738,2740,3,362,181,0,2739,2737,1,0,0,0,2740,2743,1,0, + 0,0,2741,2739,1,0,0,0,2741,2742,1,0,0,0,2742,365,1,0,0,0,2743,2741, + 1,0,0,0,2744,2758,5,2,0,0,2745,2758,5,4,0,0,2746,2758,5,58,0,0,2747, + 2758,5,37,0,0,2748,2758,5,99,0,0,2749,2758,5,162,0,0,2750,2755,5, + 174,0,0,2751,2752,5,265,0,0,2752,2753,3,374,187,0,2753,2754,5,266, + 0,0,2754,2756,1,0,0,0,2755,2751,1,0,0,0,2755,2756,1,0,0,0,2756,2758, + 1,0,0,0,2757,2744,1,0,0,0,2757,2745,1,0,0,0,2757,2746,1,0,0,0,2757, + 2747,1,0,0,0,2757,2748,1,0,0,0,2757,2749,1,0,0,0,2757,2750,1,0,0, + 0,2758,367,1,0,0,0,2759,2760,7,30,0,0,2760,369,1,0,0,0,2761,2766, + 3,374,187,0,2762,2763,5,261,0,0,2763,2765,3,374,187,0,2764,2762, + 1,0,0,0,2765,2768,1,0,0,0,2766,2764,1,0,0,0,2766,2767,1,0,0,0,2767, + 371,1,0,0,0,2768,2766,1,0,0,0,2769,2770,5,166,0,0,2770,2776,3,374, + 187,0,2771,2772,5,204,0,0,2772,2776,3,374,187,0,2773,2774,5,87,0, + 0,2774,2776,3,374,187,0,2775,2769,1,0,0,0,2775,2771,1,0,0,0,2775, + 2773,1,0,0,0,2776,373,1,0,0,0,2777,2783,5,280,0,0,2778,2783,5,274, + 0,0,2779,2783,3,380,190,0,2780,2783,5,283,0,0,2781,2783,5,281,0, + 0,2782,2777,1,0,0,0,2782,2778,1,0,0,0,2782,2779,1,0,0,0,2782,2780, + 1,0,0,0,2782,2781,1,0,0,0,2783,375,1,0,0,0,2784,2786,5,256,0,0,2785, + 2784,1,0,0,0,2785,2786,1,0,0,0,2786,2787,1,0,0,0,2787,2797,5,278, + 0,0,2788,2790,5,256,0,0,2789,2788,1,0,0,0,2789,2790,1,0,0,0,2790, + 2791,1,0,0,0,2791,2797,5,279,0,0,2792,2794,5,256,0,0,2793,2792,1, + 0,0,0,2793,2794,1,0,0,0,2794,2795,1,0,0,0,2795,2797,5,277,0,0,2796, + 2785,1,0,0,0,2796,2789,1,0,0,0,2796,2793,1,0,0,0,2797,377,1,0,0, + 0,2798,2799,7,31,0,0,2799,379,1,0,0,0,2800,2801,7,32,0,0,2801,381, + 1,0,0,0,356,385,392,416,429,433,437,446,451,455,461,463,468,472, + 476,483,488,494,498,507,514,518,523,525,530,533,540,544,549,553, + 556,560,568,572,576,584,588,597,600,603,609,616,627,632,637,642, + 647,656,659,662,666,692,718,727,737,740,754,772,774,783,794,803, + 810,814,821,827,830,835,842,856,869,874,879,885,921,924,930,933, + 939,945,957,959,970,978,983,987,992,999,1003,1007,1013,1017,1021, + 1030,1033,1036,1044,1058,1065,1078,1084,1089,1092,1095,1100,1104, + 1113,1118,1124,1128,1133,1138,1141,1149,1152,1156,1168,1171,1175, + 1180,1184,1200,1205,1212,1215,1221,1224,1231,1234,1238,1243,1246, + 1253,1256,1280,1294,1298,1302,1322,1324,1326,1335,1337,1346,1348, + 1357,1359,1364,1373,1382,1391,1402,1408,1413,1416,1429,1439,1443, + 1448,1459,1464,1497,1505,1510,1514,1518,1523,1526,1531,1536,1541, + 1545,1554,1557,1561,1568,1577,1581,1585,1592,1595,1605,1612,1617, + 1622,1627,1633,1636,1645,1648,1651,1657,1662,1672,1675,1678,1682, + 1692,1695,1701,1707,1710,1713,1717,1727,1738,1743,1746,1750,1757, + 1767,1779,1785,1787,1796,1799,1806,1816,1822,1830,1841,1851,1862, + 1864,1870,1875,1885,1888,1894,1896,1904,1910,1913,1915,1927,1934, + 1938,1942,1946,1949,1958,1961,1965,1970,1974,1981,1985,1992,2003, + 2006,2010,2014,2023,2027,2031,2033,2040,2047,2063,2067,2071,2075, + 2079,2083,2087,2091,2101,2112,2117,2130,2132,2138,2142,2144,2152, + 2161,2164,2179,2185,2193,2200,2204,2212,2214,2225,2233,2242,2248, + 2253,2259,2265,2270,2275,2281,2292,2294,2321,2327,2331,2343,2353, + 2356,2361,2368,2371,2380,2383,2387,2390,2402,2405,2424,2428,2436, + 2440,2465,2468,2477,2483,2489,2495,2506,2515,2537,2540,2543,2553, + 2555,2562,2564,2586,2615,2622,2630,2635,2637,2643,2650,2656,2678, + 2681,2690,2693,2696,2716,2727,2734,2741,2755,2757,2766,2775,2782, + 2785,2789,2793,2796 ]; private static __ATN: antlr.ATN; @@ -21106,14 +21297,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public KW_SELECT(): antlr.TerminalNode { return this.getToken(ImpalaSqlParser.KW_SELECT, 0)!; } - public selectItem(): SelectItemContext[]; - public selectItem(i: number): SelectItemContext | null; - public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SelectItemContext); - } - - return this.getRuleContext(i, SelectItemContext); + public selectList(): SelectListContext { + return this.getRuleContext(0, SelectListContext)!; } public setQuantifier(): SetQuantifierContext | null { return this.getRuleContext(0, SetQuantifierContext); @@ -21121,15 +21306,6 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public KW_STRAIGHT_JOIN(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_STRAIGHT_JOIN, 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(ImpalaSqlParser.COMMA); - } else { - return this.getToken(ImpalaSqlParser.COMMA, i); - } - } public KW_FROM(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_FROM, 0); } @@ -21166,6 +21342,15 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, BooleanExpressionContext); } + 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(ImpalaSqlParser.COMMA); + } else { + return this.getToken(ImpalaSqlParser.COMMA, i); + } + } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_querySpecification; } @@ -21189,6 +21374,51 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { } +export class SelectListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public selectItem(): SelectItemContext[]; + public selectItem(i: number): SelectItemContext | null; + public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { + if (i === undefined) { + return this.getRuleContexts(SelectItemContext); + } + + return this.getRuleContext(i, SelectItemContext); + } + 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(ImpalaSqlParser.COMMA); + } else { + return this.getToken(ImpalaSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_selectList; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterSelectList) { + listener.enterSelectList(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitSelectList) { + listener.exitSelectList(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class GroupByContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -21404,72 +21634,167 @@ export class SelectItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public columnAlias(): ColumnAliasContext | null { + return this.getRuleContext(0, ColumnAliasContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); + } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_selectItem; } - public override copyFrom(ctx: SelectItemContext): void { - super.copyFrom(ctx); + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterSelectItem) { + listener.enterSelectItem(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitSelectItem) { + listener.exitSelectItem(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitSelectItem) { + return visitor.visitSelectItem(this); + } else { + return visitor.visitChildren(this); + } } } -export class SelectAllContext extends SelectItemContext { - public constructor(ctx: SelectItemContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class ColumnAliasContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public qualifiedName(): QualifiedNameContext | null { - return this.getRuleContext(0, QualifiedNameContext); + public KW_AS(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.KW_AS, 0)!; } - public DOT(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.DOT, 0); + public identifier(): IdentifierContext { + return this.getRuleContext(0, IdentifierContext)!; } - public ASTERISK(): antlr.TerminalNode { - return this.getToken(ImpalaSqlParser.ASTERISK, 0)!; + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_columnAlias; } public override enterRule(listener: ImpalaSqlParserListener): void { - if(listener.enterSelectAll) { - listener.enterSelectAll(this); + if(listener.enterColumnAlias) { + listener.enterColumnAlias(this); } } public override exitRule(listener: ImpalaSqlParserListener): void { - if(listener.exitSelectAll) { - listener.exitSelectAll(this); + if(listener.exitColumnAlias) { + listener.exitColumnAlias(this); } } public override accept(visitor: ImpalaSqlParserVisitor): Result | null { - if (visitor.visitSelectAll) { - return visitor.visitSelectAll(this); + if (visitor.visitColumnAlias) { + return visitor.visitColumnAlias(this); } else { return visitor.visitChildren(this); } } } -export class SelectSingleContext extends SelectItemContext { - public constructor(ctx: SelectItemContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public columnItem(): ColumnItemContext { - return this.getRuleContext(0, ColumnItemContext)!; + public columnNamePath(): ColumnNamePathContext { + return this.getRuleContext(0, ColumnNamePathContext)!; } - public identifier(): IdentifierContext | null { - return this.getRuleContext(0, IdentifierContext); + public columnAlias(): ColumnAliasContext | null { + return this.getRuleContext(0, ColumnAliasContext); } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_AS, 0); + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_selectLiteralColumnName; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_selectExpressionColumnName; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public ASTERISK(): antlr.TerminalNode { + return this.getToken(ImpalaSqlParser.ASTERISK, 0)!; + } + public qualifiedName(): QualifiedNameContext | null { + return this.getRuleContext(0, QualifiedNameContext); + } + public DOT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.DOT, 0); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_tableAllColumns; } public override enterRule(listener: ImpalaSqlParserListener): void { - if(listener.enterSelectSingle) { - listener.enterSelectSingle(this); + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); } } public override exitRule(listener: ImpalaSqlParserListener): void { - if(listener.exitSelectSingle) { - listener.exitSelectSingle(this); + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); } } public override accept(visitor: ImpalaSqlParserVisitor): Result | null { - if (visitor.visitSelectSingle) { - return visitor.visitSelectSingle(this); + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); } else { return visitor.visitChildren(this); } @@ -21873,11 +22198,8 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { public tableOrViewPath(): TableOrViewPathContext | null { return this.getRuleContext(0, TableOrViewPathContext); } - public subQueryRelation(): SubQueryRelationContext | null { - return this.getRuleContext(0, SubQueryRelationContext); - } - public KW_LATERAL(): antlr.TerminalNode | null { - return this.getToken(ImpalaSqlParser.KW_LATERAL, 0); + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext | null { + return this.getRuleContext(0, AtomSubQueryTableSourceContext); } public unnest(): UnnestContext | null { return this.getRuleContext(0, UnnestContext); @@ -21908,6 +22230,39 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { } +export class AtomSubQueryTableSourceContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public subQueryRelation(): SubQueryRelationContext { + return this.getRuleContext(0, SubQueryRelationContext)!; + } + public KW_LATERAL(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_LATERAL, 0); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_atomSubQueryTableSource; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterAtomSubQueryTableSource) { + listener.enterAtomSubQueryTableSource(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitAtomSubQueryTableSource) { + listener.exitAtomSubQueryTableSource(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitAtomSubQueryTableSource) { + return visitor.visitAtomSubQueryTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class SubQueryRelationContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/impala/ImpalaSqlParserListener.ts b/src/lib/impala/ImpalaSqlParserListener.ts index bb825fcfc..ce39a06ef 100644 --- a/src/lib/impala/ImpalaSqlParserListener.ts +++ b/src/lib/impala/ImpalaSqlParserListener.ts @@ -148,13 +148,17 @@ import { InlineTableContext } from "./ImpalaSqlParser.js"; import { SubqueryContext } from "./ImpalaSqlParser.js"; import { SortItemContext } from "./ImpalaSqlParser.js"; import { QuerySpecificationContext } from "./ImpalaSqlParser.js"; +import { SelectListContext } from "./ImpalaSqlParser.js"; import { GroupByContext } from "./ImpalaSqlParser.js"; import { SingleGroupingSetContext } from "./ImpalaSqlParser.js"; import { GroupingSetContext } from "./ImpalaSqlParser.js"; import { NamedQueryContext } from "./ImpalaSqlParser.js"; import { SetQuantifierContext } from "./ImpalaSqlParser.js"; -import { SelectSingleContext } from "./ImpalaSqlParser.js"; -import { SelectAllContext } from "./ImpalaSqlParser.js"; +import { SelectItemContext } from "./ImpalaSqlParser.js"; +import { ColumnAliasContext } from "./ImpalaSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./ImpalaSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./ImpalaSqlParser.js"; +import { TableAllColumnsContext } from "./ImpalaSqlParser.js"; import { RelationDefaultContext } from "./ImpalaSqlParser.js"; import { JoinRelationContext } from "./ImpalaSqlParser.js"; import { JoinTypeContext } from "./ImpalaSqlParser.js"; @@ -164,6 +168,7 @@ import { SampleTypeContext } from "./ImpalaSqlParser.js"; import { AliasedRelationContext } from "./ImpalaSqlParser.js"; import { ColumnAliasesContext } from "./ImpalaSqlParser.js"; import { RelationPrimaryContext } from "./ImpalaSqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./ImpalaSqlParser.js"; import { SubQueryRelationContext } from "./ImpalaSqlParser.js"; import { UnnestContext } from "./ImpalaSqlParser.js"; import { ParenthesizedRelationContext } from "./ImpalaSqlParser.js"; @@ -1670,6 +1675,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuerySpecification?: (ctx: QuerySpecificationContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.groupBy`. * @param ctx the parse tree @@ -1723,29 +1738,55 @@ export class ImpalaSqlParserListener implements ParseTreeListener { */ exitSetQuantifier?: (ctx: SetQuantifierContext) => void; /** - * Enter a parse tree produced by the `selectSingle` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Enter a parse tree produced by `ImpalaSqlParser.selectItem`. + * @param ctx the parse tree + */ + enterSelectItem?: (ctx: SelectItemContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.selectItem`. + * @param ctx the parse tree + */ + exitSelectItem?: (ctx: SelectItemContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.columnAlias`. + * @param ctx the parse tree + */ + enterColumnAlias?: (ctx: ColumnAliasContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.columnAlias`. * @param ctx the parse tree */ - enterSelectSingle?: (ctx: SelectSingleContext) => void; + exitColumnAlias?: (ctx: ColumnAliasContext) => void; /** - * Exit a parse tree produced by the `selectSingle` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Enter a parse tree produced by `ImpalaSqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - exitSelectSingle?: (ctx: SelectSingleContext) => void; + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** - * Enter a parse tree produced by the `selectAll` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Exit a parse tree produced by `ImpalaSqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - enterSelectAll?: (ctx: SelectAllContext) => void; + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** - * Exit a parse tree produced by the `selectAll` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Enter a parse tree produced by `ImpalaSqlParser.selectExpressionColumnName`. * @param ctx the parse tree */ - exitSelectAll?: (ctx: SelectAllContext) => void; + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** * Enter a parse tree produced by the `relationDefault` * labeled alternative in `ImpalaSqlParser.relation`. @@ -1840,6 +1881,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitRelationPrimary?: (ctx: RelationPrimaryContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + enterAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + exitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.subQueryRelation`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParserVisitor.ts b/src/lib/impala/ImpalaSqlParserVisitor.ts index b97a37641..01bc2e741 100644 --- a/src/lib/impala/ImpalaSqlParserVisitor.ts +++ b/src/lib/impala/ImpalaSqlParserVisitor.ts @@ -148,13 +148,17 @@ import { InlineTableContext } from "./ImpalaSqlParser.js"; import { SubqueryContext } from "./ImpalaSqlParser.js"; import { SortItemContext } from "./ImpalaSqlParser.js"; import { QuerySpecificationContext } from "./ImpalaSqlParser.js"; +import { SelectListContext } from "./ImpalaSqlParser.js"; import { GroupByContext } from "./ImpalaSqlParser.js"; import { SingleGroupingSetContext } from "./ImpalaSqlParser.js"; import { GroupingSetContext } from "./ImpalaSqlParser.js"; import { NamedQueryContext } from "./ImpalaSqlParser.js"; import { SetQuantifierContext } from "./ImpalaSqlParser.js"; -import { SelectSingleContext } from "./ImpalaSqlParser.js"; -import { SelectAllContext } from "./ImpalaSqlParser.js"; +import { SelectItemContext } from "./ImpalaSqlParser.js"; +import { ColumnAliasContext } from "./ImpalaSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./ImpalaSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./ImpalaSqlParser.js"; +import { TableAllColumnsContext } from "./ImpalaSqlParser.js"; import { RelationDefaultContext } from "./ImpalaSqlParser.js"; import { JoinRelationContext } from "./ImpalaSqlParser.js"; import { JoinTypeContext } from "./ImpalaSqlParser.js"; @@ -164,6 +168,7 @@ import { SampleTypeContext } from "./ImpalaSqlParser.js"; import { AliasedRelationContext } from "./ImpalaSqlParser.js"; import { ColumnAliasesContext } from "./ImpalaSqlParser.js"; import { RelationPrimaryContext } from "./ImpalaSqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./ImpalaSqlParser.js"; import { SubQueryRelationContext } from "./ImpalaSqlParser.js"; import { UnnestContext } from "./ImpalaSqlParser.js"; import { ParenthesizedRelationContext } from "./ImpalaSqlParser.js"; @@ -1107,6 +1112,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.groupBy`. * @param ctx the parse tree @@ -1139,19 +1150,35 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `selectSingle` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Visit a parse tree produced by `ImpalaSqlParser.selectItem`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectItem?: (ctx: SelectItemContext) => Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.columnAlias`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnAlias?: (ctx: ColumnAliasContext) => Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.selectExpressionColumnName`. * @param ctx the parse tree * @return the visitor result */ - visitSelectSingle?: (ctx: SelectSingleContext) => Result; + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; /** - * Visit a parse tree produced by the `selectAll` - * labeled alternative in `ImpalaSqlParser.selectItem`. + * Visit a parse tree produced by `ImpalaSqlParser.tableAllColumns`. * @param ctx the parse tree * @return the visitor result */ - visitSelectAll?: (ctx: SelectAllContext) => Result; + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; /** * Visit a parse tree produced by the `relationDefault` * labeled alternative in `ImpalaSqlParser.relation`. @@ -1208,6 +1235,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.subQueryRelation`. * @param ctx the parse tree diff --git a/src/lib/mysql/MySqlParser.interp b/src/lib/mysql/MySqlParser.interp index 3c8fce42f..7513d3970 100644 --- a/src/lib/mysql/MySqlParser.interp +++ b/src/lib/mysql/MySqlParser.interp @@ -1929,6 +1929,7 @@ orderByExpression tableSources tableSource tableSourceItem +atomSubQueryTableSource fullColumnNames indexHint indexHintType @@ -1946,6 +1947,10 @@ jsonOnError selectSpec selectElements selectElement +tableAllColumns +pureAllColumns +selectLiteralColumnName +selectExpressionColumnName intoClause selectFieldsInto selectLinesInto @@ -2217,4 +2222,4 @@ functionNameBase atn: -[4, 1, 895, 8072, 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, 1, 0, 5, 0, 840, 8, 0, 10, 0, 12, 0, 843, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 849, 8, 1, 1, 1, 3, 1, 852, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 861, 8, 2, 1, 3, 1, 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, 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, 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, 1, 4, 3, 4, 905, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 924, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 935, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 951, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 956, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 968, 8, 9, 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, 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, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1003, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1013, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1018, 8, 12, 1, 12, 1, 12, 5, 12, 1022, 8, 12, 10, 12, 12, 12, 1025, 9, 12, 1, 13, 1, 13, 3, 13, 1029, 8, 13, 1, 13, 1, 13, 3, 13, 1033, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1042, 8, 13, 1, 13, 3, 13, 1045, 8, 13, 1, 13, 3, 13, 1048, 8, 13, 1, 13, 1, 13, 3, 13, 1052, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1059, 8, 14, 1, 14, 3, 14, 1062, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1067, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1073, 8, 14, 10, 14, 12, 14, 1076, 9, 14, 1, 14, 1, 14, 3, 14, 1080, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1085, 8, 14, 1, 14, 5, 14, 1088, 8, 14, 10, 14, 12, 14, 1091, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1102, 8, 15, 1, 15, 3, 15, 1105, 8, 15, 1, 15, 1, 15, 3, 15, 1109, 8, 15, 1, 15, 3, 15, 1112, 8, 15, 1, 15, 1, 15, 3, 15, 1116, 8, 15, 1, 15, 3, 15, 1119, 8, 15, 1, 15, 1, 15, 3, 15, 1123, 8, 15, 1, 15, 3, 15, 1126, 8, 15, 1, 15, 3, 15, 1129, 8, 15, 1, 15, 1, 15, 3, 15, 1133, 8, 15, 1, 15, 3, 15, 1136, 8, 15, 1, 15, 1, 15, 3, 15, 1140, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1146, 8, 16, 1, 16, 1, 16, 3, 16, 1150, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1155, 8, 16, 1, 16, 1, 16, 5, 16, 1159, 8, 16, 10, 16, 12, 16, 1162, 9, 16, 1, 16, 1, 16, 5, 16, 1166, 8, 16, 10, 16, 12, 16, 1169, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1175, 8, 17, 1, 17, 3, 17, 1178, 8, 17, 1, 17, 1, 17, 3, 17, 1182, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1187, 8, 17, 1, 17, 1, 17, 5, 17, 1191, 8, 17, 10, 17, 12, 17, 1194, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1200, 8, 17, 10, 17, 12, 17, 1203, 9, 17, 1, 17, 1, 17, 3, 17, 1207, 8, 17, 1, 18, 1, 18, 3, 18, 1211, 8, 18, 1, 18, 1, 18, 3, 18, 1215, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 3, 19, 1226, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1242, 8, 20, 10, 20, 12, 20, 1245, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1251, 8, 21, 1, 21, 1, 21, 3, 21, 1255, 8, 21, 1, 21, 1, 21, 3, 21, 1259, 8, 21, 1, 21, 1, 21, 3, 21, 1263, 8, 21, 1, 21, 5, 21, 1266, 8, 21, 10, 21, 12, 21, 1269, 9, 21, 3, 21, 1271, 8, 21, 1, 21, 3, 21, 1274, 8, 21, 1, 21, 3, 21, 1277, 8, 21, 1, 21, 3, 21, 1280, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1286, 8, 21, 1, 21, 1, 21, 3, 21, 1290, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1300, 8, 21, 1, 21, 1, 21, 3, 21, 1304, 8, 21, 1, 21, 1, 21, 3, 21, 1308, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1314, 8, 21, 1, 21, 5, 21, 1317, 8, 21, 10, 21, 12, 21, 1320, 9, 21, 3, 21, 1322, 8, 21, 1, 21, 3, 21, 1325, 8, 21, 3, 21, 1327, 8, 21, 1, 22, 1, 22, 3, 22, 1331, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1338, 8, 22, 1, 22, 1, 22, 3, 22, 1342, 8, 22, 1, 22, 3, 22, 1345, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1350, 8, 22, 1, 22, 1, 22, 3, 22, 1354, 8, 22, 1, 22, 3, 22, 1357, 8, 22, 1, 22, 1, 22, 3, 22, 1361, 8, 22, 1, 22, 3, 22, 1364, 8, 22, 1, 23, 1, 23, 3, 23, 1368, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1381, 8, 23, 1, 23, 3, 23, 1384, 8, 23, 1, 23, 1, 23, 3, 23, 1388, 8, 23, 1, 23, 3, 23, 1391, 8, 23, 1, 23, 1, 23, 3, 23, 1395, 8, 23, 1, 23, 3, 23, 1398, 8, 23, 1, 23, 1, 23, 3, 23, 1402, 8, 23, 1, 23, 3, 23, 1405, 8, 23, 1, 23, 1, 23, 3, 23, 1409, 8, 23, 1, 23, 3, 23, 1412, 8, 23, 1, 23, 3, 23, 1415, 8, 23, 1, 23, 1, 23, 3, 23, 1419, 8, 23, 1, 23, 3, 23, 1422, 8, 23, 1, 23, 1, 23, 3, 23, 1426, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1432, 8, 24, 1, 24, 3, 24, 1435, 8, 24, 1, 24, 1, 24, 3, 24, 1439, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1451, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 1457, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1466, 8, 26, 10, 26, 12, 26, 1469, 9, 26, 1, 26, 1, 26, 3, 26, 1473, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1481, 8, 26, 1, 27, 1, 27, 3, 27, 1485, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1490, 8, 27, 1, 27, 3, 27, 1493, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1498, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1506, 8, 27, 10, 27, 12, 27, 1509, 9, 27, 1, 27, 1, 27, 3, 27, 1513, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1518, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1524, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1529, 8, 27, 1, 27, 1, 27, 3, 27, 1533, 8, 27, 3, 27, 1535, 8, 27, 1, 28, 3, 28, 1538, 8, 28, 1, 28, 1, 28, 3, 28, 1542, 8, 28, 1, 28, 1, 28, 3, 28, 1546, 8, 28, 1, 28, 3, 28, 1549, 8, 28, 1, 28, 1, 28, 3, 28, 1553, 8, 28, 1, 28, 1, 28, 3, 28, 1557, 8, 28, 1, 28, 1, 28, 3, 28, 1561, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1567, 8, 28, 1, 28, 3, 28, 1570, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1577, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1582, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1588, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1593, 8, 32, 10, 32, 12, 32, 1596, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1601, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1607, 8, 32, 10, 32, 12, 32, 1610, 9, 32, 3, 32, 1612, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1617, 8, 32, 10, 32, 12, 32, 1620, 9, 32, 3, 32, 1622, 8, 32, 3, 32, 1624, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1630, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1636, 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, 1653, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1660, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1667, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1679, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1684, 8, 38, 1, 38, 3, 38, 1687, 8, 38, 1, 39, 3, 39, 1690, 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, 1703, 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, 1716, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1721, 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, 1737, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1743, 8, 43, 10, 43, 12, 43, 1746, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1755, 8, 44, 1, 44, 3, 44, 1758, 8, 44, 1, 44, 1, 44, 5, 44, 1762, 8, 44, 10, 44, 12, 44, 1765, 9, 44, 1, 44, 1, 44, 3, 44, 1769, 8, 44, 1, 44, 3, 44, 1772, 8, 44, 1, 44, 1, 44, 5, 44, 1776, 8, 44, 10, 44, 12, 44, 1779, 9, 44, 1, 44, 3, 44, 1782, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1787, 8, 44, 1, 44, 1, 44, 5, 44, 1791, 8, 44, 10, 44, 12, 44, 1794, 9, 44, 1, 44, 3, 44, 1797, 8, 44, 1, 44, 1, 44, 3, 44, 1801, 8, 44, 1, 44, 3, 44, 1804, 8, 44, 1, 44, 3, 44, 1807, 8, 44, 1, 44, 1, 44, 5, 44, 1811, 8, 44, 10, 44, 12, 44, 1814, 9, 44, 1, 44, 3, 44, 1817, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1822, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1833, 8, 44, 1, 45, 3, 45, 1836, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1843, 8, 45, 1, 45, 3, 45, 1846, 8, 45, 1, 46, 1, 46, 3, 46, 1850, 8, 46, 1, 47, 1, 47, 5, 47, 1854, 8, 47, 10, 47, 12, 47, 1857, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1868, 8, 48, 1, 48, 3, 48, 1871, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1876, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1889, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1896, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1902, 8, 48, 1, 49, 1, 49, 1, 49, 3, 49, 1907, 8, 49, 1, 49, 1, 49, 3, 49, 1911, 8, 49, 1, 49, 3, 49, 1914, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1922, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1930, 8, 50, 3, 50, 1932, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1942, 8, 51, 1, 52, 1, 52, 3, 52, 1946, 8, 52, 1, 52, 3, 52, 1949, 8, 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, 1, 52, 3, 52, 1963, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1968, 8, 52, 1, 52, 1, 52, 3, 52, 1972, 8, 52, 1, 52, 1, 52, 3, 52, 1976, 8, 52, 1, 52, 1, 52, 3, 52, 1980, 8, 52, 1, 52, 1, 52, 3, 52, 1984, 8, 52, 1, 52, 1, 52, 3, 52, 1988, 8, 52, 1, 52, 1, 52, 3, 52, 1992, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1997, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2002, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2007, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2013, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2018, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2023, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2028, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2033, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2038, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2044, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2049, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2054, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2059, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2064, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2069, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2074, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2079, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2086, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2091, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2096, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2101, 8, 52, 1, 52, 1, 52, 3, 52, 2105, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2110, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2118, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2123, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2129, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2141, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2148, 8, 55, 3, 55, 2150, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2156, 8, 55, 10, 55, 12, 55, 2159, 9, 55, 1, 55, 1, 55, 3, 55, 2163, 8, 55, 1, 56, 3, 56, 2166, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2174, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2180, 8, 56, 1, 56, 1, 56, 3, 56, 2184, 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, 2197, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2209, 8, 56, 3, 56, 2211, 8, 56, 1, 57, 3, 57, 2214, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2222, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2228, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2234, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2245, 8, 58, 10, 58, 12, 58, 2248, 9, 58, 1, 58, 1, 58, 5, 58, 2252, 8, 58, 10, 58, 12, 58, 2255, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2261, 8, 58, 10, 58, 12, 58, 2264, 9, 58, 1, 58, 1, 58, 3, 58, 2268, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2277, 8, 58, 10, 58, 12, 58, 2280, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2286, 8, 58, 10, 58, 12, 58, 2289, 9, 58, 1, 58, 1, 58, 3, 58, 2293, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2303, 8, 58, 10, 58, 12, 58, 2306, 9, 58, 1, 58, 1, 58, 5, 58, 2310, 8, 58, 10, 58, 12, 58, 2313, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2319, 8, 58, 10, 58, 12, 58, 2322, 9, 58, 1, 58, 1, 58, 3, 58, 2326, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2336, 8, 58, 10, 58, 12, 58, 2339, 9, 58, 1, 58, 1, 58, 5, 58, 2343, 8, 58, 10, 58, 12, 58, 2346, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2352, 8, 58, 10, 58, 12, 58, 2355, 9, 58, 1, 58, 1, 58, 3, 58, 2359, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2364, 8, 58, 10, 58, 12, 58, 2367, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2373, 8, 58, 10, 58, 12, 58, 2376, 9, 58, 1, 58, 1, 58, 3, 58, 2380, 8, 58, 3, 58, 2382, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2387, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2393, 8, 60, 11, 60, 12, 60, 2394, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2402, 8, 61, 10, 61, 12, 61, 2405, 9, 61, 1, 62, 3, 62, 2408, 8, 62, 1, 62, 3, 62, 2411, 8, 62, 1, 62, 1, 62, 3, 62, 2415, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2420, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2426, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2432, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2437, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2442, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2447, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2452, 8, 62, 1, 62, 3, 62, 2455, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2460, 8, 63, 1, 63, 4, 63, 2463, 8, 63, 11, 63, 12, 63, 2464, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2475, 8, 63, 1, 64, 1, 64, 3, 64, 2479, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2486, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2491, 8, 64, 1, 64, 3, 64, 2494, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2499, 8, 64, 1, 64, 3, 64, 2502, 8, 64, 1, 64, 1, 64, 3, 64, 2506, 8, 64, 1, 64, 1, 64, 3, 64, 2510, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2516, 8, 65, 10, 65, 12, 65, 2519, 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, 2537, 8, 67, 1, 67, 3, 67, 2540, 8, 67, 1, 67, 3, 67, 2543, 8, 67, 1, 67, 1, 67, 3, 67, 2547, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2555, 8, 68, 10, 68, 12, 68, 2558, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2568, 8, 69, 10, 69, 12, 69, 2571, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2581, 8, 70, 10, 70, 12, 70, 2584, 9, 70, 3, 70, 2586, 8, 70, 1, 70, 1, 70, 5, 70, 2590, 8, 70, 10, 70, 12, 70, 2593, 9, 70, 3, 70, 2595, 8, 70, 1, 71, 1, 71, 3, 71, 2599, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2608, 8, 71, 1, 71, 3, 71, 2611, 8, 71, 1, 71, 3, 71, 2614, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2619, 8, 71, 1, 71, 1, 71, 3, 71, 2623, 8, 71, 1, 71, 3, 71, 2626, 8, 71, 1, 71, 1, 71, 3, 71, 2630, 8, 71, 1, 71, 1, 71, 3, 71, 2634, 8, 71, 1, 71, 3, 71, 2637, 8, 71, 1, 71, 1, 71, 3, 71, 2641, 8, 71, 1, 71, 3, 71, 2644, 8, 71, 1, 71, 1, 71, 3, 71, 2648, 8, 71, 1, 71, 3, 71, 2651, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2657, 8, 72, 1, 72, 3, 72, 2660, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2665, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2673, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2679, 8, 72, 1, 72, 1, 72, 3, 72, 2683, 8, 72, 1, 73, 1, 73, 3, 73, 2687, 8, 73, 1, 73, 5, 73, 2690, 8, 73, 10, 73, 12, 73, 2693, 9, 73, 1, 73, 1, 73, 3, 73, 2697, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2704, 8, 73, 1, 73, 1, 73, 3, 73, 2708, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2717, 8, 73, 10, 73, 12, 73, 2720, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2727, 8, 73, 1, 73, 3, 73, 2730, 8, 73, 1, 73, 1, 73, 5, 73, 2734, 8, 73, 10, 73, 12, 73, 2737, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2742, 8, 73, 1, 73, 3, 73, 2745, 8, 73, 1, 73, 1, 73, 5, 73, 2749, 8, 73, 10, 73, 12, 73, 2752, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2757, 8, 73, 3, 73, 2759, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2764, 8, 73, 1, 73, 1, 73, 5, 73, 2768, 8, 73, 10, 73, 12, 73, 2771, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2776, 8, 73, 3, 73, 2778, 8, 73, 1, 73, 1, 73, 3, 73, 2782, 8, 73, 1, 73, 3, 73, 2785, 8, 73, 1, 73, 3, 73, 2788, 8, 73, 1, 73, 1, 73, 5, 73, 2792, 8, 73, 10, 73, 12, 73, 2795, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2800, 8, 73, 3, 73, 2802, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2807, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2814, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2823, 8, 73, 1, 73, 3, 73, 2826, 8, 73, 1, 73, 1, 73, 3, 73, 2830, 8, 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, 3, 73, 2845, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2854, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2862, 8, 73, 1, 73, 3, 73, 2865, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2873, 8, 73, 1, 73, 3, 73, 2876, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2883, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2888, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2896, 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, 3, 73, 2912, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2917, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2924, 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, 2943, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2949, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2957, 8, 74, 10, 74, 12, 74, 2960, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2971, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2978, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2985, 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, 2998, 8, 74, 10, 74, 12, 74, 3001, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3013, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3019, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3025, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3031, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3037, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3043, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3049, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 3054, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3061, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3068, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3075, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3080, 8, 77, 1, 77, 5, 77, 3083, 8, 77, 10, 77, 12, 77, 3086, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 3094, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3101, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3108, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3115, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 3124, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 3130, 8, 83, 1, 83, 1, 83, 3, 83, 3134, 8, 83, 1, 83, 1, 83, 3, 83, 3138, 8, 83, 1, 84, 1, 84, 3, 84, 3142, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 3148, 8, 84, 1, 84, 3, 84, 3151, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3156, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3163, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3168, 8, 86, 10, 86, 12, 86, 3171, 9, 86, 1, 86, 3, 86, 3174, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 3179, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3189, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3195, 8, 88, 10, 88, 12, 88, 3198, 9, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3203, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 3210, 8, 89, 10, 89, 12, 89, 3213, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 3221, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3230, 8, 92, 1, 92, 3, 92, 3233, 8, 92, 1, 93, 1, 93, 3, 93, 3237, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3246, 8, 95, 1, 96, 1, 96, 3, 96, 3250, 8, 96, 1, 96, 3, 96, 3253, 8, 96, 1, 96, 3, 96, 3256, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3262, 8, 96, 1, 96, 3, 96, 3265, 8, 96, 1, 96, 3, 96, 3268, 8, 96, 1, 96, 1, 96, 3, 96, 3272, 8, 96, 1, 96, 3, 96, 3275, 8, 96, 1, 96, 3, 96, 3278, 8, 96, 1, 96, 3, 96, 3281, 8, 96, 1, 96, 1, 96, 1, 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, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3306, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3311, 8, 99, 1, 99, 4, 99, 3314, 8, 99, 11, 99, 12, 99, 3315, 1, 100, 3, 100, 3319, 8, 100, 1, 100, 1, 100, 3, 100, 3323, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3328, 8, 101, 1, 101, 3, 101, 3331, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3336, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3346, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3351, 8, 101, 1, 101, 1, 101, 4, 101, 3355, 8, 101, 11, 101, 12, 101, 3356, 3, 101, 3359, 8, 101, 1, 101, 1, 101, 4, 101, 3363, 8, 101, 11, 101, 12, 101, 3364, 3, 101, 3367, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3373, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3379, 8, 101, 10, 101, 12, 101, 3382, 9, 101, 1, 101, 1, 101, 3, 101, 3386, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3392, 8, 101, 10, 101, 12, 101, 3395, 9, 101, 3, 101, 3397, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3402, 8, 102, 1, 102, 3, 102, 3405, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3410, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3418, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3424, 8, 102, 1, 102, 1, 102, 3, 102, 3428, 8, 102, 3, 102, 3430, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3436, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3442, 8, 102, 10, 102, 12, 102, 3445, 9, 102, 1, 102, 1, 102, 3, 102, 3449, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3455, 8, 102, 10, 102, 12, 102, 3458, 9, 102, 3, 102, 3460, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3465, 8, 103, 1, 103, 3, 103, 3468, 8, 103, 1, 103, 1, 103, 3, 103, 3472, 8, 103, 1, 103, 3, 103, 3475, 8, 103, 1, 103, 3, 103, 3478, 8, 103, 1, 104, 1, 104, 3, 104, 3482, 8, 104, 1, 104, 3, 104, 3485, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3493, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3499, 8, 104, 1, 104, 1, 104, 3, 104, 3503, 8, 104, 1, 105, 1, 105, 5, 105, 3507, 8, 105, 10, 105, 12, 105, 3510, 9, 105, 1, 105, 1, 105, 3, 105, 3514, 8, 105, 1, 105, 1, 105, 3, 105, 3518, 8, 105, 3, 105, 3520, 8, 105, 1, 105, 1, 105, 5, 105, 3524, 8, 105, 10, 105, 12, 105, 3527, 9, 105, 1, 105, 3, 105, 3530, 8, 105, 1, 105, 3, 105, 3533, 8, 105, 1, 105, 3, 105, 3536, 8, 105, 1, 105, 3, 105, 3539, 8, 105, 1, 105, 1, 105, 5, 105, 3543, 8, 105, 10, 105, 12, 105, 3546, 9, 105, 1, 105, 1, 105, 3, 105, 3550, 8, 105, 1, 105, 3, 105, 3553, 8, 105, 1, 105, 3, 105, 3556, 8, 105, 1, 105, 3, 105, 3559, 8, 105, 1, 105, 3, 105, 3562, 8, 105, 3, 105, 3564, 8, 105, 1, 106, 3, 106, 3567, 8, 106, 1, 106, 1, 106, 3, 106, 3571, 8, 106, 1, 106, 3, 106, 3574, 8, 106, 1, 106, 3, 106, 3577, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3585, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3591, 8, 107, 1, 107, 5, 107, 3594, 8, 107, 10, 107, 12, 107, 3597, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3605, 8, 108, 1, 108, 5, 108, 3608, 8, 108, 10, 108, 12, 108, 3611, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3617, 8, 109, 1, 109, 3, 109, 3620, 8, 109, 1, 109, 3, 109, 3623, 8, 109, 1, 109, 1, 109, 3, 109, 3627, 8, 109, 1, 110, 1, 110, 3, 110, 3631, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3637, 8, 111, 1, 111, 1, 111, 3, 111, 3641, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3646, 8, 112, 10, 112, 12, 112, 3649, 9, 112, 1, 112, 3, 112, 3652, 8, 112, 1, 112, 3, 112, 3655, 8, 112, 1, 112, 3, 112, 3658, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3663, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3670, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3678, 8, 115, 10, 115, 12, 115, 3681, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3687, 8, 116, 10, 116, 12, 116, 3690, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 3698, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3706, 8, 119, 10, 119, 12, 119, 3709, 9, 119, 3, 119, 3711, 8, 119, 1, 119, 1, 119, 3, 119, 3715, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3721, 8, 119, 1, 120, 1, 120, 3, 120, 3725, 8, 120, 1, 120, 3, 120, 3728, 8, 120, 1, 120, 3, 120, 3731, 8, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3736, 8, 120, 1, 120, 3, 120, 3739, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3746, 8, 120, 1, 120, 1, 120, 3, 120, 3750, 8, 120, 1, 120, 3, 120, 3753, 8, 120, 1, 120, 1, 120, 3, 120, 3757, 8, 120, 1, 121, 1, 121, 3, 121, 3761, 8, 121, 1, 121, 3, 121, 3764, 8, 121, 1, 121, 3, 121, 3767, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3772, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3778, 8, 121, 5, 121, 3780, 8, 121, 10, 121, 12, 121, 3783, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3792, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3798, 8, 121, 5, 121, 3800, 8, 121, 10, 121, 12, 121, 3803, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3808, 8, 121, 1, 121, 1, 121, 3, 121, 3812, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3818, 8, 122, 1, 122, 3, 122, 3821, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3833, 8, 123, 1, 123, 1, 123, 3, 123, 3837, 8, 123, 1, 123, 1, 123, 3, 123, 3841, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3849, 8, 124, 1, 124, 1, 124, 3, 124, 3853, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3865, 8, 126, 10, 126, 12, 126, 3868, 9, 126, 1, 127, 1, 127, 3, 127, 3872, 8, 127, 1, 127, 3, 127, 3875, 8, 127, 1, 127, 1, 127, 3, 127, 3879, 8, 127, 1, 127, 3, 127, 3882, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3888, 8, 127, 10, 127, 12, 127, 3891, 9, 127, 1, 127, 1, 127, 3, 127, 3895, 8, 127, 1, 127, 3, 127, 3898, 8, 127, 1, 127, 3, 127, 3901, 8, 127, 1, 128, 1, 128, 3, 128, 3905, 8, 128, 1, 128, 3, 128, 3908, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3915, 8, 128, 10, 128, 12, 128, 3918, 9, 128, 1, 128, 1, 128, 3, 128, 3922, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3929, 8, 129, 10, 129, 12, 129, 3932, 9, 129, 1, 130, 1, 130, 3, 130, 3936, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3941, 8, 131, 10, 131, 12, 131, 3944, 9, 131, 1, 132, 1, 132, 5, 132, 3948, 8, 132, 10, 132, 12, 132, 3951, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3956, 8, 132, 10, 132, 12, 132, 3959, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3964, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3972, 8, 133, 1, 133, 3, 133, 3975, 8, 133, 1, 133, 3, 133, 3978, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3983, 8, 133, 10, 133, 12, 133, 3986, 9, 133, 3, 133, 3988, 8, 133, 1, 133, 3, 133, 3991, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3998, 8, 133, 1, 133, 3, 133, 4001, 8, 133, 1, 133, 1, 133, 3, 133, 4005, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4011, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 4021, 8, 135, 1, 135, 1, 135, 3, 135, 4025, 8, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4034, 8, 136, 1, 137, 3, 137, 4037, 8, 137, 1, 137, 1, 137, 3, 137, 4041, 8, 137, 1, 137, 1, 137, 5, 137, 4045, 8, 137, 10, 137, 12, 137, 4048, 9, 137, 1, 137, 1, 137, 1, 137, 5, 137, 4053, 8, 137, 10, 137, 12, 137, 4056, 9, 137, 1, 137, 1, 137, 3, 137, 4060, 8, 137, 1, 137, 1, 137, 3, 137, 4064, 8, 137, 1, 137, 1, 137, 5, 137, 4068, 8, 137, 10, 137, 12, 137, 4071, 9, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4076, 8, 137, 1, 137, 3, 137, 4079, 8, 137, 3, 137, 4081, 8, 137, 1, 137, 1, 137, 3, 137, 4085, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4094, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4104, 8, 139, 1, 140, 1, 140, 5, 140, 4108, 8, 140, 10, 140, 12, 140, 4111, 9, 140, 1, 140, 1, 140, 3, 140, 4115, 8, 140, 1, 140, 1, 140, 3, 140, 4119, 8, 140, 1, 140, 3, 140, 4122, 8, 140, 1, 140, 3, 140, 4125, 8, 140, 1, 140, 3, 140, 4128, 8, 140, 1, 140, 3, 140, 4131, 8, 140, 1, 140, 3, 140, 4134, 8, 140, 1, 140, 3, 140, 4137, 8, 140, 1, 141, 1, 141, 3, 141, 4141, 8, 141, 1, 141, 1, 141, 3, 141, 4145, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 4153, 8, 142, 1, 142, 1, 142, 3, 142, 4157, 8, 142, 1, 142, 3, 142, 4160, 8, 142, 3, 142, 4162, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4175, 8, 143, 1, 143, 3, 143, 4178, 8, 143, 1, 144, 1, 144, 1, 144, 5, 144, 4183, 8, 144, 10, 144, 12, 144, 4186, 9, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4195, 8, 145, 1, 145, 3, 145, 4198, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4203, 8, 145, 3, 145, 4205, 8, 145, 1, 145, 1, 145, 3, 145, 4209, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 4217, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4223, 8, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4232, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4245, 8, 148, 1, 149, 1, 149, 3, 149, 4249, 8, 149, 1, 149, 1, 149, 5, 149, 4253, 8, 149, 10, 149, 12, 149, 4256, 9, 149, 1, 150, 1, 150, 3, 150, 4260, 8, 150, 1, 150, 1, 150, 3, 150, 4264, 8, 150, 1, 150, 3, 150, 4267, 8, 150, 1, 150, 1, 150, 3, 150, 4271, 8, 150, 1, 150, 3, 150, 4274, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 4282, 8, 150, 1, 150, 3, 150, 4285, 8, 150, 3, 150, 4287, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 4293, 8, 151, 10, 151, 12, 151, 4296, 9, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 4307, 8, 151, 1, 151, 1, 151, 4, 151, 4311, 8, 151, 11, 151, 12, 151, 4312, 3, 151, 4315, 8, 151, 1, 151, 1, 151, 4, 151, 4319, 8, 151, 11, 151, 12, 151, 4320, 3, 151, 4323, 8, 151, 3, 151, 4325, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 4331, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 4339, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 4347, 8, 153, 1, 154, 1, 154, 3, 154, 4351, 8, 154, 1, 154, 1, 154, 3, 154, 4355, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 4362, 8, 155, 10, 155, 12, 155, 4365, 9, 155, 1, 155, 1, 155, 3, 155, 4369, 8, 155, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 5, 157, 4387, 8, 157, 10, 157, 12, 157, 4390, 9, 157, 1, 158, 1, 158, 3, 158, 4394, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4400, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4407, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 4412, 8, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 5, 161, 4419, 8, 161, 10, 161, 12, 161, 4422, 9, 161, 3, 161, 4424, 8, 161, 1, 162, 1, 162, 3, 162, 4428, 8, 162, 1, 163, 1, 163, 3, 163, 4432, 8, 163, 1, 163, 1, 163, 3, 163, 4436, 8, 163, 1, 163, 3, 163, 4439, 8, 163, 1, 163, 3, 163, 4442, 8, 163, 1, 163, 3, 163, 4445, 8, 163, 1, 164, 1, 164, 3, 164, 4449, 8, 164, 1, 164, 1, 164, 3, 164, 4453, 8, 164, 1, 164, 3, 164, 4456, 8, 164, 1, 164, 3, 164, 4459, 8, 164, 1, 164, 3, 164, 4462, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 3, 166, 4469, 8, 166, 1, 166, 1, 166, 3, 166, 4473, 8, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 4486, 8, 168, 10, 168, 12, 168, 4489, 9, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4501, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4507, 8, 171, 10, 171, 12, 171, 4510, 9, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4519, 8, 172, 1, 173, 1, 173, 3, 173, 4523, 8, 173, 1, 173, 3, 173, 4526, 8, 173, 1, 173, 1, 173, 1, 174, 1, 174, 3, 174, 4532, 8, 174, 1, 174, 3, 174, 4535, 8, 174, 1, 174, 3, 174, 4538, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4547, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4556, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4564, 8, 177, 10, 177, 12, 177, 4567, 9, 177, 1, 177, 3, 177, 4570, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 4578, 8, 178, 10, 178, 12, 178, 4581, 9, 178, 1, 178, 3, 178, 4584, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4593, 8, 179, 10, 179, 12, 179, 4596, 9, 179, 1, 179, 3, 179, 4599, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4608, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 5, 181, 4615, 8, 181, 10, 181, 12, 181, 4618, 9, 181, 3, 181, 4620, 8, 181, 1, 181, 1, 181, 3, 181, 4624, 8, 181, 1, 181, 5, 181, 4627, 8, 181, 10, 181, 12, 181, 4630, 9, 181, 1, 181, 3, 181, 4633, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4640, 8, 182, 10, 182, 12, 182, 4643, 9, 182, 3, 182, 4645, 8, 182, 1, 182, 3, 182, 4648, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4655, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4661, 8, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 4667, 8, 183, 1, 184, 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, 5, 185, 4691, 8, 185, 10, 185, 12, 185, 4694, 9, 185, 3, 185, 4696, 8, 185, 1, 185, 3, 185, 4699, 8, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4718, 8, 189, 3, 189, 4720, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4741, 8, 190, 10, 190, 12, 190, 4744, 9, 190, 3, 190, 4746, 8, 190, 1, 190, 3, 190, 4749, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4768, 8, 194, 3, 194, 4770, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4782, 8, 196, 10, 196, 12, 196, 4785, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4795, 8, 196, 10, 196, 12, 196, 4798, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4832, 8, 196, 10, 196, 12, 196, 4835, 9, 196, 1, 196, 1, 196, 3, 196, 4839, 8, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4874, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4888, 8, 200, 1, 201, 1, 201, 1, 201, 5, 201, 4893, 8, 201, 10, 201, 12, 201, 4896, 9, 201, 1, 201, 3, 201, 4899, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4905, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4913, 8, 203, 3, 203, 4915, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4926, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4936, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4943, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4949, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 3, 211, 4957, 8, 211, 1, 212, 1, 212, 1, 212, 3, 212, 4962, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4968, 8, 212, 10, 212, 12, 212, 4971, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4976, 8, 212, 10, 212, 12, 212, 4979, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4984, 8, 212, 10, 212, 12, 212, 4987, 9, 212, 1, 212, 1, 212, 1, 212, 5, 212, 4992, 8, 212, 10, 212, 12, 212, 4995, 9, 212, 1, 212, 5, 212, 4998, 8, 212, 10, 212, 12, 212, 5001, 9, 212, 1, 212, 1, 212, 3, 212, 5005, 8, 212, 1, 213, 1, 213, 1, 213, 3, 213, 5010, 8, 213, 1, 213, 4, 213, 5013, 8, 213, 11, 213, 12, 213, 5014, 1, 213, 1, 213, 4, 213, 5019, 8, 213, 11, 213, 12, 213, 5020, 3, 213, 5023, 8, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 4, 214, 5032, 8, 214, 11, 214, 12, 214, 5033, 1, 214, 5, 214, 5037, 8, 214, 10, 214, 12, 214, 5040, 9, 214, 1, 214, 1, 214, 4, 214, 5044, 8, 214, 11, 214, 12, 214, 5045, 3, 214, 5048, 8, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 3, 217, 5062, 8, 217, 1, 217, 1, 217, 4, 217, 5066, 8, 217, 11, 217, 12, 217, 5067, 1, 217, 1, 217, 1, 217, 3, 217, 5073, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5078, 8, 218, 1, 218, 1, 218, 4, 218, 5082, 8, 218, 11, 218, 12, 218, 5083, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5091, 8, 218, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 3, 220, 5099, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 4, 220, 5105, 8, 220, 11, 220, 12, 220, 5106, 1, 220, 1, 220, 1, 220, 3, 220, 5112, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5118, 8, 221, 1, 221, 3, 221, 5121, 8, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5129, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 5136, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5145, 8, 223, 1, 223, 3, 223, 5148, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 5163, 8, 225, 10, 225, 12, 225, 5166, 9, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 3, 226, 5173, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5181, 8, 226, 1, 227, 1, 227, 3, 227, 5185, 8, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 3, 228, 5192, 8, 228, 1, 228, 1, 228, 4, 228, 5196, 8, 228, 11, 228, 12, 228, 5197, 1, 229, 1, 229, 1, 229, 1, 229, 4, 229, 5204, 8, 229, 11, 229, 12, 229, 5205, 1, 230, 1, 230, 1, 230, 3, 230, 5211, 8, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5216, 8, 230, 10, 230, 12, 230, 5219, 9, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5224, 8, 230, 10, 230, 12, 230, 5227, 9, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5233, 8, 230, 1, 230, 5, 230, 5236, 8, 230, 10, 230, 12, 230, 5239, 9, 230, 3, 230, 5241, 8, 230, 3, 230, 5243, 8, 230, 1, 230, 1, 230, 4, 230, 5247, 8, 230, 11, 230, 12, 230, 5248, 3, 230, 5251, 8, 230, 1, 230, 1, 230, 5, 230, 5255, 8, 230, 10, 230, 12, 230, 5258, 9, 230, 1, 230, 1, 230, 3, 230, 5262, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 5269, 8, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5274, 8, 231, 1, 231, 1, 231, 3, 231, 5278, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5283, 8, 231, 5, 231, 5285, 8, 231, 10, 231, 12, 231, 5288, 9, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5293, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5299, 8, 231, 1, 231, 5, 231, 5302, 8, 231, 10, 231, 12, 231, 5305, 9, 231, 3, 231, 5307, 8, 231, 3, 231, 5309, 8, 231, 1, 231, 1, 231, 4, 231, 5313, 8, 231, 11, 231, 12, 231, 5314, 3, 231, 5317, 8, 231, 1, 231, 1, 231, 5, 231, 5321, 8, 231, 10, 231, 12, 231, 5324, 9, 231, 1, 231, 1, 231, 3, 231, 5328, 8, 231, 1, 232, 1, 232, 1, 232, 3, 232, 5333, 8, 232, 1, 232, 1, 232, 1, 232, 5, 232, 5338, 8, 232, 10, 232, 12, 232, 5341, 9, 232, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5347, 8, 233, 10, 233, 12, 233, 5350, 9, 233, 1, 233, 1, 233, 3, 233, 5354, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5361, 8, 233, 10, 233, 12, 233, 5364, 9, 233, 1, 233, 3, 233, 5367, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5373, 8, 233, 1, 233, 5, 233, 5376, 8, 233, 10, 233, 12, 233, 5379, 9, 233, 3, 233, 5381, 8, 233, 3, 233, 5383, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5389, 8, 233, 10, 233, 12, 233, 5392, 9, 233, 3, 233, 5394, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5401, 8, 233, 3, 233, 5403, 8, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5408, 8, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5413, 8, 233, 10, 233, 12, 233, 5416, 9, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 5422, 8, 233, 10, 233, 12, 233, 5425, 9, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5430, 8, 233, 3, 233, 5432, 8, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5439, 8, 234, 1, 234, 3, 234, 5442, 8, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5452, 8, 235, 10, 235, 12, 235, 5455, 9, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5460, 8, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5468, 8, 236, 1, 236, 3, 236, 5471, 8, 236, 1, 236, 1, 236, 3, 236, 5475, 8, 236, 1, 236, 3, 236, 5478, 8, 236, 1, 236, 1, 236, 3, 236, 5482, 8, 236, 3, 236, 5484, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5495, 8, 237, 1, 237, 3, 237, 5498, 8, 237, 1, 237, 1, 237, 3, 237, 5502, 8, 237, 1, 237, 3, 237, 5505, 8, 237, 1, 237, 3, 237, 5508, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5515, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 5, 239, 5525, 8, 239, 10, 239, 12, 239, 5528, 9, 239, 3, 239, 5530, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5537, 8, 240, 1, 240, 1, 240, 5, 240, 5541, 8, 240, 10, 240, 12, 240, 5544, 9, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 5, 241, 5551, 8, 241, 10, 241, 12, 241, 5554, 9, 241, 1, 242, 1, 242, 3, 242, 5558, 8, 242, 1, 242, 1, 242, 1, 242, 5, 242, 5563, 8, 242, 10, 242, 12, 242, 5566, 9, 242, 1, 242, 1, 242, 3, 242, 5570, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5576, 8, 242, 1, 242, 1, 242, 3, 242, 5580, 8, 242, 1, 242, 1, 242, 3, 242, 5584, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5592, 8, 242, 1, 242, 1, 242, 3, 242, 5596, 8, 242, 1, 242, 1, 242, 3, 242, 5600, 8, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5606, 8, 242, 3, 242, 5608, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5620, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5625, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5631, 8, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5637, 8, 245, 1, 245, 1, 245, 3, 245, 5641, 8, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5646, 8, 245, 3, 245, 5648, 8, 245, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5672, 8, 247, 4, 247, 5674, 8, 247, 11, 247, 12, 247, 5675, 1, 247, 3, 247, 5679, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5688, 8, 248, 1, 248, 1, 248, 3, 248, 5692, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5701, 8, 248, 1, 248, 1, 248, 3, 248, 5705, 8, 248, 1, 248, 1, 248, 3, 248, 5709, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5715, 8, 248, 3, 248, 5717, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5726, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5736, 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, 3, 250, 5763, 8, 250, 1, 251, 1, 251, 3, 251, 5767, 8, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5772, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5779, 8, 252, 1, 252, 3, 252, 5782, 8, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5788, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5798, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5808, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5818, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5824, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5833, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5839, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5846, 8, 255, 3, 255, 5848, 8, 255, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5856, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5862, 8, 257, 1, 257, 1, 257, 3, 257, 5866, 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, 3, 258, 5883, 8, 258, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5893, 8, 260, 1, 261, 1, 261, 3, 261, 5897, 8, 261, 1, 261, 1, 261, 3, 261, 5901, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5911, 8, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5916, 8, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5988, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 6006, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 3, 264, 6014, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6020, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6032, 8, 264, 1, 264, 1, 264, 3, 264, 6036, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6047, 8, 264, 1, 264, 1, 264, 3, 264, 6051, 8, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 1, 264, 3, 264, 6060, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 5, 265, 6066, 8, 265, 10, 265, 12, 265, 6069, 9, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6075, 8, 266, 1, 267, 1, 267, 3, 267, 6079, 8, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 6086, 8, 268, 1, 268, 1, 268, 1, 268, 3, 268, 6091, 8, 268, 1, 268, 3, 268, 6094, 8, 268, 1, 268, 3, 268, 6097, 8, 268, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 6108, 8, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6115, 8, 271, 10, 271, 12, 271, 6118, 9, 271, 1, 271, 1, 271, 1, 271, 1, 271, 5, 271, 6124, 8, 271, 10, 271, 12, 271, 6127, 9, 271, 3, 271, 6129, 8, 271, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 5, 273, 6141, 8, 273, 10, 273, 12, 273, 6144, 9, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6161, 8, 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, 6174, 8, 276, 1, 276, 3, 276, 6177, 8, 276, 1, 276, 1, 276, 3, 276, 6181, 8, 276, 1, 276, 3, 276, 6184, 8, 276, 3, 276, 6186, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6193, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6200, 8, 277, 5, 277, 6202, 8, 277, 10, 277, 12, 277, 6205, 9, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6211, 8, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 6218, 8, 277, 1, 277, 3, 277, 6221, 8, 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, 5, 277, 6235, 8, 277, 10, 277, 12, 277, 6238, 9, 277, 3, 277, 6240, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6250, 8, 278, 1, 278, 1, 278, 3, 278, 6254, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6260, 8, 278, 1, 278, 3, 278, 6263, 8, 278, 1, 278, 3, 278, 6266, 8, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6271, 8, 278, 1, 278, 1, 278, 3, 278, 6275, 8, 278, 1, 278, 3, 278, 6278, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6285, 8, 278, 1, 278, 3, 278, 6288, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6294, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6330, 8, 278, 1, 278, 3, 278, 6333, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6345, 8, 278, 1, 278, 3, 278, 6348, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6364, 8, 278, 3, 278, 6366, 8, 278, 1, 278, 1, 278, 3, 278, 6370, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6377, 8, 278, 1, 278, 1, 278, 3, 278, 6381, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6388, 8, 278, 1, 278, 3, 278, 6391, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6398, 8, 278, 10, 278, 12, 278, 6401, 9, 278, 3, 278, 6403, 8, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6408, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6414, 8, 278, 3, 278, 6416, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6422, 8, 278, 1, 278, 1, 278, 3, 278, 6426, 8, 278, 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6432, 8, 279, 1, 279, 3, 279, 6435, 8, 279, 1, 279, 3, 279, 6438, 8, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 1, 280, 3, 280, 6451, 8, 280, 1, 280, 3, 280, 6454, 8, 280, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6460, 8, 281, 1, 282, 3, 282, 6463, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6471, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6479, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6485, 8, 283, 1, 283, 3, 283, 6488, 8, 283, 1, 283, 1, 283, 3, 283, 6492, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6506, 8, 284, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 5, 286, 6516, 8, 286, 10, 286, 12, 286, 6519, 9, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6526, 8, 286, 1, 286, 1, 286, 3, 286, 6530, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6537, 8, 287, 1, 287, 1, 287, 1, 287, 5, 287, 6542, 8, 287, 10, 287, 12, 287, 6545, 9, 287, 1, 288, 1, 288, 3, 288, 6549, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 5, 289, 6560, 8, 289, 10, 289, 12, 289, 6563, 9, 289, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6569, 8, 290, 10, 290, 12, 290, 6572, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6579, 8, 291, 1, 292, 1, 292, 1, 292, 3, 292, 6584, 8, 292, 1, 292, 3, 292, 6587, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6592, 8, 293, 1, 293, 3, 293, 6595, 8, 293, 1, 294, 1, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6607, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6612, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6625, 8, 297, 3, 297, 6627, 8, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6632, 8, 297, 1, 297, 1, 297, 3, 297, 6636, 8, 297, 1, 297, 3, 297, 6639, 8, 297, 3, 297, 6641, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6648, 8, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6655, 8, 299, 1, 299, 3, 299, 6658, 8, 299, 1, 299, 3, 299, 6661, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6667, 8, 299, 1, 299, 1, 299, 3, 299, 6671, 8, 299, 1, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6677, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6685, 8, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6694, 8, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 1, 304, 1, 304, 1, 304, 1, 305, 1, 305, 1, 305, 3, 305, 6707, 8, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6712, 8, 305, 1, 305, 1, 305, 1, 305, 1, 305, 5, 305, 6718, 8, 305, 10, 305, 12, 305, 6721, 9, 305, 3, 305, 6723, 8, 305, 1, 306, 1, 306, 1, 306, 3, 306, 6728, 8, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6733, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 5, 306, 6739, 8, 306, 10, 306, 12, 306, 6742, 9, 306, 3, 306, 6744, 8, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6752, 8, 307, 1, 308, 1, 308, 3, 308, 6756, 8, 308, 1, 308, 1, 308, 1, 308, 5, 308, 6761, 8, 308, 10, 308, 12, 308, 6764, 9, 308, 1, 309, 1, 309, 1, 309, 3, 309, 6769, 8, 309, 1, 309, 3, 309, 6772, 8, 309, 1, 310, 1, 310, 3, 310, 6776, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6787, 8, 310, 10, 310, 12, 310, 6790, 9, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6795, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6805, 8, 310, 10, 310, 12, 310, 6808, 9, 310, 3, 310, 6810, 8, 310, 1, 311, 1, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6819, 8, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6824, 8, 312, 1, 313, 1, 313, 1, 314, 1, 314, 1, 315, 1, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 5, 320, 6843, 8, 320, 10, 320, 12, 320, 6846, 9, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6859, 8, 325, 10, 325, 12, 325, 6862, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 5, 327, 6869, 8, 327, 10, 327, 12, 327, 6872, 9, 327, 1, 328, 1, 328, 3, 328, 6876, 8, 328, 1, 329, 1, 329, 1, 329, 3, 329, 6881, 8, 329, 3, 329, 6883, 8, 329, 1, 329, 3, 329, 6886, 8, 329, 1, 329, 1, 329, 3, 329, 6890, 8, 329, 3, 329, 6892, 8, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6897, 8, 330, 10, 330, 12, 330, 6900, 9, 330, 1, 331, 1, 331, 1, 331, 3, 331, 6905, 8, 331, 3, 331, 6907, 8, 331, 1, 331, 3, 331, 6910, 8, 331, 1, 331, 1, 331, 3, 331, 6914, 8, 331, 1, 331, 3, 331, 6917, 8, 331, 1, 332, 1, 332, 1, 333, 1, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6928, 8, 335, 10, 335, 12, 335, 6931, 9, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6940, 8, 337, 1, 337, 3, 337, 6943, 8, 337, 1, 337, 3, 337, 6946, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6959, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 3, 342, 6965, 8, 342, 1, 342, 3, 342, 6968, 8, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 6976, 8, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 346, 3, 346, 6983, 8, 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, 4, 348, 7001, 8, 348, 11, 348, 12, 348, 7002, 1, 349, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 7010, 8, 349, 3, 349, 7012, 8, 349, 1, 350, 1, 350, 1, 350, 4, 350, 7017, 8, 350, 11, 350, 12, 350, 7018, 3, 350, 7021, 8, 350, 1, 351, 1, 351, 3, 351, 7025, 8, 351, 1, 352, 1, 352, 1, 352, 5, 352, 7030, 8, 352, 10, 352, 12, 352, 7033, 9, 352, 1, 353, 1, 353, 1, 353, 3, 353, 7038, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7049, 8, 354, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7055, 8, 355, 1, 356, 1, 356, 1, 357, 1, 357, 3, 357, 7061, 8, 357, 1, 358, 3, 358, 7064, 8, 358, 1, 358, 1, 358, 3, 358, 7068, 8, 358, 1, 358, 4, 358, 7071, 8, 358, 11, 358, 12, 358, 7072, 1, 358, 3, 358, 7076, 8, 358, 1, 358, 1, 358, 3, 358, 7080, 8, 358, 1, 358, 1, 358, 3, 358, 7084, 8, 358, 3, 358, 7086, 8, 358, 1, 359, 1, 359, 1, 360, 3, 360, 7091, 8, 360, 1, 360, 1, 360, 1, 361, 3, 361, 7096, 8, 361, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7109, 8, 362, 1, 362, 3, 362, 7112, 8, 362, 1, 363, 1, 363, 3, 363, 7116, 8, 363, 1, 363, 3, 363, 7119, 8, 363, 1, 363, 3, 363, 7122, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7127, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7132, 8, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7138, 8, 363, 1, 363, 3, 363, 7141, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7146, 8, 363, 1, 363, 3, 363, 7149, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7154, 8, 363, 1, 363, 3, 363, 7157, 8, 363, 1, 363, 1, 363, 3, 363, 7161, 8, 363, 1, 363, 5, 363, 7164, 8, 363, 10, 363, 12, 363, 7167, 9, 363, 1, 363, 1, 363, 3, 363, 7171, 8, 363, 1, 363, 5, 363, 7174, 8, 363, 10, 363, 12, 363, 7177, 9, 363, 1, 363, 1, 363, 3, 363, 7181, 8, 363, 1, 363, 3, 363, 7184, 8, 363, 1, 363, 5, 363, 7187, 8, 363, 10, 363, 12, 363, 7190, 9, 363, 1, 363, 1, 363, 3, 363, 7194, 8, 363, 1, 363, 5, 363, 7197, 8, 363, 10, 363, 12, 363, 7200, 9, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7205, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7210, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7215, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7220, 8, 363, 1, 363, 1, 363, 3, 363, 7224, 8, 363, 1, 363, 3, 363, 7227, 8, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7232, 8, 363, 1, 363, 1, 363, 3, 363, 7236, 8, 363, 1, 363, 1, 363, 3, 363, 7240, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 5, 364, 7246, 8, 364, 10, 364, 12, 364, 7249, 9, 364, 1, 364, 1, 364, 1, 365, 1, 365, 3, 365, 7255, 8, 365, 1, 365, 1, 365, 3, 365, 7259, 8, 365, 1, 365, 1, 365, 1, 365, 3, 365, 7264, 8, 365, 1, 365, 1, 365, 1, 365, 3, 365, 7269, 8, 365, 1, 365, 1, 365, 3, 365, 7273, 8, 365, 3, 365, 7275, 8, 365, 1, 365, 3, 365, 7278, 8, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7294, 8, 368, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 5, 369, 7302, 8, 369, 10, 369, 12, 369, 7305, 9, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 5, 370, 7312, 8, 370, 10, 370, 12, 370, 7315, 9, 370, 1, 371, 1, 371, 1, 371, 1, 371, 5, 371, 7321, 8, 371, 10, 371, 12, 371, 7324, 9, 371, 1, 372, 1, 372, 1, 372, 1, 372, 5, 372, 7330, 8, 372, 10, 372, 12, 372, 7333, 9, 372, 1, 372, 1, 372, 1, 373, 1, 373, 3, 373, 7339, 8, 373, 1, 374, 1, 374, 1, 374, 5, 374, 7344, 8, 374, 10, 374, 12, 374, 7347, 9, 374, 1, 375, 1, 375, 1, 375, 5, 375, 7352, 8, 375, 10, 375, 12, 375, 7355, 9, 375, 1, 376, 1, 376, 1, 376, 5, 376, 7360, 8, 376, 10, 376, 12, 376, 7363, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7374, 8, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7381, 8, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7391, 8, 377, 1, 378, 1, 378, 1, 378, 3, 378, 7396, 8, 378, 1, 378, 3, 378, 7399, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7404, 8, 378, 1, 378, 3, 378, 7407, 8, 378, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7429, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7438, 8, 382, 1, 382, 3, 382, 7441, 8, 382, 1, 383, 1, 383, 1, 383, 3, 383, 7446, 8, 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, 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, 1, 383, 1, 383, 1, 383, 1, 383, 4, 383, 7477, 8, 383, 11, 383, 12, 383, 7478, 1, 383, 1, 383, 3, 383, 7483, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 4, 383, 7490, 8, 383, 11, 383, 12, 383, 7491, 1, 383, 1, 383, 3, 383, 7496, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7505, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7513, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7518, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7526, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7531, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7536, 8, 383, 3, 383, 7538, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7547, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7552, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7560, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7565, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7573, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7581, 8, 383, 1, 383, 3, 383, 7584, 8, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7594, 8, 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, 1, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7612, 8, 383, 1, 383, 3, 383, 7615, 8, 383, 1, 383, 3, 383, 7618, 8, 383, 1, 383, 1, 383, 3, 383, 7622, 8, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 5, 385, 7633, 8, 385, 10, 385, 12, 385, 7636, 9, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7643, 8, 385, 1, 386, 1, 386, 3, 386, 7647, 8, 386, 1, 387, 1, 387, 1, 387, 3, 387, 7652, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7657, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7663, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7668, 8, 387, 1, 387, 1, 387, 3, 387, 7672, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7677, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7682, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7687, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 5, 387, 7695, 8, 387, 10, 387, 12, 387, 7698, 9, 387, 3, 387, 7700, 8, 387, 1, 387, 1, 387, 3, 387, 7704, 8, 387, 1, 387, 1, 387, 3, 387, 7708, 8, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7715, 8, 388, 1, 388, 1, 388, 3, 388, 7719, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7748, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 7756, 8, 389, 1, 390, 3, 390, 7759, 8, 390, 1, 390, 3, 390, 7762, 8, 390, 1, 390, 3, 390, 7765, 8, 390, 1, 390, 3, 390, 7768, 8, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 394, 1, 394, 3, 394, 7779, 8, 394, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7793, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 5, 397, 7800, 8, 397, 10, 397, 12, 397, 7803, 9, 397, 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, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7829, 8, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 5, 400, 7839, 8, 400, 10, 400, 12, 400, 7842, 9, 400, 1, 401, 1, 401, 1, 401, 3, 401, 7847, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7855, 8, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7860, 8, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7866, 8, 402, 10, 402, 12, 402, 7869, 9, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7876, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7889, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7895, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7901, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7916, 8, 403, 1, 403, 1, 403, 3, 403, 7920, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7926, 8, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 5, 403, 7935, 8, 403, 10, 403, 12, 403, 7938, 9, 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, 5, 404, 7956, 8, 404, 10, 404, 12, 404, 7959, 9, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 4, 404, 7968, 8, 404, 11, 404, 12, 404, 7969, 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, 7988, 8, 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, 5, 404, 8005, 8, 404, 10, 404, 12, 404, 8008, 9, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 8020, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 8029, 8, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 8038, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 8047, 8, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 8056, 8, 411, 1, 412, 1, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 0, 5, 214, 216, 804, 806, 808, 419, 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, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 75, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9440, 0, 841, 1, 0, 0, 0, 2, 851, 1, 0, 0, 0, 4, 860, 1, 0, 0, 0, 6, 862, 1, 0, 0, 0, 8, 904, 1, 0, 0, 0, 10, 923, 1, 0, 0, 0, 12, 934, 1, 0, 0, 0, 14, 950, 1, 0, 0, 0, 16, 955, 1, 0, 0, 0, 18, 967, 1, 0, 0, 0, 20, 1002, 1, 0, 0, 0, 22, 1012, 1, 0, 0, 0, 24, 1014, 1, 0, 0, 0, 26, 1026, 1, 0, 0, 0, 28, 1056, 1, 0, 0, 0, 30, 1092, 1, 0, 0, 0, 32, 1143, 1, 0, 0, 0, 34, 1172, 1, 0, 0, 0, 36, 1208, 1, 0, 0, 0, 38, 1222, 1, 0, 0, 0, 40, 1229, 1, 0, 0, 0, 42, 1326, 1, 0, 0, 0, 44, 1328, 1, 0, 0, 0, 46, 1365, 1, 0, 0, 0, 48, 1429, 1, 0, 0, 0, 50, 1454, 1, 0, 0, 0, 52, 1460, 1, 0, 0, 0, 54, 1482, 1, 0, 0, 0, 56, 1569, 1, 0, 0, 0, 58, 1576, 1, 0, 0, 0, 60, 1578, 1, 0, 0, 0, 62, 1583, 1, 0, 0, 0, 64, 1623, 1, 0, 0, 0, 66, 1629, 1, 0, 0, 0, 68, 1631, 1, 0, 0, 0, 70, 1652, 1, 0, 0, 0, 72, 1659, 1, 0, 0, 0, 74, 1661, 1, 0, 0, 0, 76, 1686, 1, 0, 0, 0, 78, 1689, 1, 0, 0, 0, 80, 1694, 1, 0, 0, 0, 82, 1720, 1, 0, 0, 0, 84, 1736, 1, 0, 0, 0, 86, 1738, 1, 0, 0, 0, 88, 1832, 1, 0, 0, 0, 90, 1835, 1, 0, 0, 0, 92, 1847, 1, 0, 0, 0, 94, 1851, 1, 0, 0, 0, 96, 1901, 1, 0, 0, 0, 98, 1903, 1, 0, 0, 0, 100, 1931, 1, 0, 0, 0, 102, 1941, 1, 0, 0, 0, 104, 2128, 1, 0, 0, 0, 106, 2130, 1, 0, 0, 0, 108, 2132, 1, 0, 0, 0, 110, 2135, 1, 0, 0, 0, 112, 2210, 1, 0, 0, 0, 114, 2233, 1, 0, 0, 0, 116, 2381, 1, 0, 0, 0, 118, 2386, 1, 0, 0, 0, 120, 2388, 1, 0, 0, 0, 122, 2398, 1, 0, 0, 0, 124, 2454, 1, 0, 0, 0, 126, 2474, 1, 0, 0, 0, 128, 2476, 1, 0, 0, 0, 130, 2511, 1, 0, 0, 0, 132, 2520, 1, 0, 0, 0, 134, 2527, 1, 0, 0, 0, 136, 2550, 1, 0, 0, 0, 138, 2559, 1, 0, 0, 0, 140, 2574, 1, 0, 0, 0, 142, 2596, 1, 0, 0, 0, 144, 2652, 1, 0, 0, 0, 146, 2948, 1, 0, 0, 0, 148, 3048, 1, 0, 0, 0, 150, 3050, 1, 0, 0, 0, 152, 3057, 1, 0, 0, 0, 154, 3064, 1, 0, 0, 0, 156, 3087, 1, 0, 0, 0, 158, 3097, 1, 0, 0, 0, 160, 3104, 1, 0, 0, 0, 162, 3111, 1, 0, 0, 0, 164, 3118, 1, 0, 0, 0, 166, 3127, 1, 0, 0, 0, 168, 3139, 1, 0, 0, 0, 170, 3152, 1, 0, 0, 0, 172, 3159, 1, 0, 0, 0, 174, 3175, 1, 0, 0, 0, 176, 3202, 1, 0, 0, 0, 178, 3204, 1, 0, 0, 0, 180, 3214, 1, 0, 0, 0, 182, 3218, 1, 0, 0, 0, 184, 3224, 1, 0, 0, 0, 186, 3236, 1, 0, 0, 0, 188, 3238, 1, 0, 0, 0, 190, 3245, 1, 0, 0, 0, 192, 3247, 1, 0, 0, 0, 194, 3296, 1, 0, 0, 0, 196, 3305, 1, 0, 0, 0, 198, 3307, 1, 0, 0, 0, 200, 3318, 1, 0, 0, 0, 202, 3324, 1, 0, 0, 0, 204, 3398, 1, 0, 0, 0, 206, 3461, 1, 0, 0, 0, 208, 3479, 1, 0, 0, 0, 210, 3563, 1, 0, 0, 0, 212, 3566, 1, 0, 0, 0, 214, 3578, 1, 0, 0, 0, 216, 3598, 1, 0, 0, 0, 218, 3626, 1, 0, 0, 0, 220, 3630, 1, 0, 0, 0, 222, 3632, 1, 0, 0, 0, 224, 3642, 1, 0, 0, 0, 226, 3662, 1, 0, 0, 0, 228, 3669, 1, 0, 0, 0, 230, 3671, 1, 0, 0, 0, 232, 3682, 1, 0, 0, 0, 234, 3691, 1, 0, 0, 0, 236, 3697, 1, 0, 0, 0, 238, 3720, 1, 0, 0, 0, 240, 3722, 1, 0, 0, 0, 242, 3758, 1, 0, 0, 0, 244, 3813, 1, 0, 0, 0, 246, 3822, 1, 0, 0, 0, 248, 3842, 1, 0, 0, 0, 250, 3854, 1, 0, 0, 0, 252, 3858, 1, 0, 0, 0, 254, 3869, 1, 0, 0, 0, 256, 3902, 1, 0, 0, 0, 258, 3923, 1, 0, 0, 0, 260, 3933, 1, 0, 0, 0, 262, 3937, 1, 0, 0, 0, 264, 3963, 1, 0, 0, 0, 266, 4010, 1, 0, 0, 0, 268, 4012, 1, 0, 0, 0, 270, 4016, 1, 0, 0, 0, 272, 4033, 1, 0, 0, 0, 274, 4084, 1, 0, 0, 0, 276, 4093, 1, 0, 0, 0, 278, 4103, 1, 0, 0, 0, 280, 4105, 1, 0, 0, 0, 282, 4138, 1, 0, 0, 0, 284, 4146, 1, 0, 0, 0, 286, 4163, 1, 0, 0, 0, 288, 4179, 1, 0, 0, 0, 290, 4216, 1, 0, 0, 0, 292, 4222, 1, 0, 0, 0, 294, 4231, 1, 0, 0, 0, 296, 4244, 1, 0, 0, 0, 298, 4248, 1, 0, 0, 0, 300, 4286, 1, 0, 0, 0, 302, 4324, 1, 0, 0, 0, 304, 4338, 1, 0, 0, 0, 306, 4346, 1, 0, 0, 0, 308, 4350, 1, 0, 0, 0, 310, 4356, 1, 0, 0, 0, 312, 4370, 1, 0, 0, 0, 314, 4373, 1, 0, 0, 0, 316, 4391, 1, 0, 0, 0, 318, 4395, 1, 0, 0, 0, 320, 4411, 1, 0, 0, 0, 322, 4413, 1, 0, 0, 0, 324, 4425, 1, 0, 0, 0, 326, 4429, 1, 0, 0, 0, 328, 4446, 1, 0, 0, 0, 330, 4463, 1, 0, 0, 0, 332, 4466, 1, 0, 0, 0, 334, 4476, 1, 0, 0, 0, 336, 4480, 1, 0, 0, 0, 338, 4490, 1, 0, 0, 0, 340, 4493, 1, 0, 0, 0, 342, 4498, 1, 0, 0, 0, 344, 4518, 1, 0, 0, 0, 346, 4520, 1, 0, 0, 0, 348, 4537, 1, 0, 0, 0, 350, 4546, 1, 0, 0, 0, 352, 4555, 1, 0, 0, 0, 354, 4557, 1, 0, 0, 0, 356, 4571, 1, 0, 0, 0, 358, 4585, 1, 0, 0, 0, 360, 4600, 1, 0, 0, 0, 362, 4609, 1, 0, 0, 0, 364, 4634, 1, 0, 0, 0, 366, 4649, 1, 0, 0, 0, 368, 4668, 1, 0, 0, 0, 370, 4698, 1, 0, 0, 0, 372, 4700, 1, 0, 0, 0, 374, 4702, 1, 0, 0, 0, 376, 4704, 1, 0, 0, 0, 378, 4719, 1, 0, 0, 0, 380, 4748, 1, 0, 0, 0, 382, 4750, 1, 0, 0, 0, 384, 4752, 1, 0, 0, 0, 386, 4754, 1, 0, 0, 0, 388, 4769, 1, 0, 0, 0, 390, 4771, 1, 0, 0, 0, 392, 4838, 1, 0, 0, 0, 394, 4840, 1, 0, 0, 0, 396, 4846, 1, 0, 0, 0, 398, 4873, 1, 0, 0, 0, 400, 4887, 1, 0, 0, 0, 402, 4898, 1, 0, 0, 0, 404, 4900, 1, 0, 0, 0, 406, 4906, 1, 0, 0, 0, 408, 4916, 1, 0, 0, 0, 410, 4920, 1, 0, 0, 0, 412, 4927, 1, 0, 0, 0, 414, 4931, 1, 0, 0, 0, 416, 4937, 1, 0, 0, 0, 418, 4944, 1, 0, 0, 0, 420, 4950, 1, 0, 0, 0, 422, 4956, 1, 0, 0, 0, 424, 4961, 1, 0, 0, 0, 426, 5006, 1, 0, 0, 0, 428, 5027, 1, 0, 0, 0, 430, 5052, 1, 0, 0, 0, 432, 5055, 1, 0, 0, 0, 434, 5061, 1, 0, 0, 0, 436, 5077, 1, 0, 0, 0, 438, 5092, 1, 0, 0, 0, 440, 5098, 1, 0, 0, 0, 442, 5128, 1, 0, 0, 0, 444, 5130, 1, 0, 0, 0, 446, 5137, 1, 0, 0, 0, 448, 5149, 1, 0, 0, 0, 450, 5155, 1, 0, 0, 0, 452, 5180, 1, 0, 0, 0, 454, 5184, 1, 0, 0, 0, 456, 5188, 1, 0, 0, 0, 458, 5199, 1, 0, 0, 0, 460, 5207, 1, 0, 0, 0, 462, 5270, 1, 0, 0, 0, 464, 5329, 1, 0, 0, 0, 466, 5431, 1, 0, 0, 0, 468, 5441, 1, 0, 0, 0, 470, 5443, 1, 0, 0, 0, 472, 5461, 1, 0, 0, 0, 474, 5485, 1, 0, 0, 0, 476, 5509, 1, 0, 0, 0, 478, 5516, 1, 0, 0, 0, 480, 5536, 1, 0, 0, 0, 482, 5545, 1, 0, 0, 0, 484, 5607, 1, 0, 0, 0, 486, 5609, 1, 0, 0, 0, 488, 5613, 1, 0, 0, 0, 490, 5647, 1, 0, 0, 0, 492, 5649, 1, 0, 0, 0, 494, 5652, 1, 0, 0, 0, 496, 5716, 1, 0, 0, 0, 498, 5735, 1, 0, 0, 0, 500, 5762, 1, 0, 0, 0, 502, 5766, 1, 0, 0, 0, 504, 5787, 1, 0, 0, 0, 506, 5797, 1, 0, 0, 0, 508, 5807, 1, 0, 0, 0, 510, 5847, 1, 0, 0, 0, 512, 5849, 1, 0, 0, 0, 514, 5852, 1, 0, 0, 0, 516, 5882, 1, 0, 0, 0, 518, 5884, 1, 0, 0, 0, 520, 5887, 1, 0, 0, 0, 522, 5987, 1, 0, 0, 0, 524, 6005, 1, 0, 0, 0, 526, 6007, 1, 0, 0, 0, 528, 6059, 1, 0, 0, 0, 530, 6061, 1, 0, 0, 0, 532, 6070, 1, 0, 0, 0, 534, 6076, 1, 0, 0, 0, 536, 6083, 1, 0, 0, 0, 538, 6098, 1, 0, 0, 0, 540, 6107, 1, 0, 0, 0, 542, 6109, 1, 0, 0, 0, 544, 6130, 1, 0, 0, 0, 546, 6135, 1, 0, 0, 0, 548, 6145, 1, 0, 0, 0, 550, 6151, 1, 0, 0, 0, 552, 6185, 1, 0, 0, 0, 554, 6239, 1, 0, 0, 0, 556, 6425, 1, 0, 0, 0, 558, 6437, 1, 0, 0, 0, 560, 6453, 1, 0, 0, 0, 562, 6459, 1, 0, 0, 0, 564, 6478, 1, 0, 0, 0, 566, 6491, 1, 0, 0, 0, 568, 6505, 1, 0, 0, 0, 570, 6507, 1, 0, 0, 0, 572, 6510, 1, 0, 0, 0, 574, 6534, 1, 0, 0, 0, 576, 6546, 1, 0, 0, 0, 578, 6552, 1, 0, 0, 0, 580, 6564, 1, 0, 0, 0, 582, 6578, 1, 0, 0, 0, 584, 6580, 1, 0, 0, 0, 586, 6588, 1, 0, 0, 0, 588, 6596, 1, 0, 0, 0, 590, 6598, 1, 0, 0, 0, 592, 6600, 1, 0, 0, 0, 594, 6640, 1, 0, 0, 0, 596, 6647, 1, 0, 0, 0, 598, 6649, 1, 0, 0, 0, 600, 6672, 1, 0, 0, 0, 602, 6678, 1, 0, 0, 0, 604, 6688, 1, 0, 0, 0, 606, 6697, 1, 0, 0, 0, 608, 6700, 1, 0, 0, 0, 610, 6703, 1, 0, 0, 0, 612, 6724, 1, 0, 0, 0, 614, 6745, 1, 0, 0, 0, 616, 6753, 1, 0, 0, 0, 618, 6765, 1, 0, 0, 0, 620, 6773, 1, 0, 0, 0, 622, 6811, 1, 0, 0, 0, 624, 6823, 1, 0, 0, 0, 626, 6825, 1, 0, 0, 0, 628, 6827, 1, 0, 0, 0, 630, 6829, 1, 0, 0, 0, 632, 6831, 1, 0, 0, 0, 634, 6833, 1, 0, 0, 0, 636, 6835, 1, 0, 0, 0, 638, 6837, 1, 0, 0, 0, 640, 6839, 1, 0, 0, 0, 642, 6847, 1, 0, 0, 0, 644, 6849, 1, 0, 0, 0, 646, 6851, 1, 0, 0, 0, 648, 6853, 1, 0, 0, 0, 650, 6855, 1, 0, 0, 0, 652, 6863, 1, 0, 0, 0, 654, 6865, 1, 0, 0, 0, 656, 6875, 1, 0, 0, 0, 658, 6891, 1, 0, 0, 0, 660, 6893, 1, 0, 0, 0, 662, 6916, 1, 0, 0, 0, 664, 6918, 1, 0, 0, 0, 666, 6920, 1, 0, 0, 0, 668, 6922, 1, 0, 0, 0, 670, 6924, 1, 0, 0, 0, 672, 6932, 1, 0, 0, 0, 674, 6942, 1, 0, 0, 0, 676, 6947, 1, 0, 0, 0, 678, 6951, 1, 0, 0, 0, 680, 6958, 1, 0, 0, 0, 682, 6960, 1, 0, 0, 0, 684, 6967, 1, 0, 0, 0, 686, 6969, 1, 0, 0, 0, 688, 6975, 1, 0, 0, 0, 690, 6977, 1, 0, 0, 0, 692, 6982, 1, 0, 0, 0, 694, 6984, 1, 0, 0, 0, 696, 6986, 1, 0, 0, 0, 698, 7004, 1, 0, 0, 0, 700, 7020, 1, 0, 0, 0, 702, 7022, 1, 0, 0, 0, 704, 7026, 1, 0, 0, 0, 706, 7037, 1, 0, 0, 0, 708, 7048, 1, 0, 0, 0, 710, 7054, 1, 0, 0, 0, 712, 7056, 1, 0, 0, 0, 714, 7060, 1, 0, 0, 0, 716, 7085, 1, 0, 0, 0, 718, 7087, 1, 0, 0, 0, 720, 7090, 1, 0, 0, 0, 722, 7095, 1, 0, 0, 0, 724, 7111, 1, 0, 0, 0, 726, 7239, 1, 0, 0, 0, 728, 7241, 1, 0, 0, 0, 730, 7274, 1, 0, 0, 0, 732, 7279, 1, 0, 0, 0, 734, 7283, 1, 0, 0, 0, 736, 7289, 1, 0, 0, 0, 738, 7297, 1, 0, 0, 0, 740, 7308, 1, 0, 0, 0, 742, 7316, 1, 0, 0, 0, 744, 7325, 1, 0, 0, 0, 746, 7338, 1, 0, 0, 0, 748, 7340, 1, 0, 0, 0, 750, 7348, 1, 0, 0, 0, 752, 7356, 1, 0, 0, 0, 754, 7390, 1, 0, 0, 0, 756, 7406, 1, 0, 0, 0, 758, 7408, 1, 0, 0, 0, 760, 7411, 1, 0, 0, 0, 762, 7415, 1, 0, 0, 0, 764, 7440, 1, 0, 0, 0, 766, 7621, 1, 0, 0, 0, 768, 7623, 1, 0, 0, 0, 770, 7642, 1, 0, 0, 0, 772, 7644, 1, 0, 0, 0, 774, 7707, 1, 0, 0, 0, 776, 7747, 1, 0, 0, 0, 778, 7749, 1, 0, 0, 0, 780, 7758, 1, 0, 0, 0, 782, 7769, 1, 0, 0, 0, 784, 7771, 1, 0, 0, 0, 786, 7774, 1, 0, 0, 0, 788, 7778, 1, 0, 0, 0, 790, 7780, 1, 0, 0, 0, 792, 7792, 1, 0, 0, 0, 794, 7794, 1, 0, 0, 0, 796, 7828, 1, 0, 0, 0, 798, 7830, 1, 0, 0, 0, 800, 7835, 1, 0, 0, 0, 802, 7846, 1, 0, 0, 0, 804, 7859, 1, 0, 0, 0, 806, 7870, 1, 0, 0, 0, 808, 7987, 1, 0, 0, 0, 810, 8009, 1, 0, 0, 0, 812, 8019, 1, 0, 0, 0, 814, 8028, 1, 0, 0, 0, 816, 8037, 1, 0, 0, 0, 818, 8046, 1, 0, 0, 0, 820, 8048, 1, 0, 0, 0, 822, 8055, 1, 0, 0, 0, 824, 8057, 1, 0, 0, 0, 826, 8059, 1, 0, 0, 0, 828, 8061, 1, 0, 0, 0, 830, 8063, 1, 0, 0, 0, 832, 8065, 1, 0, 0, 0, 834, 8067, 1, 0, 0, 0, 836, 8069, 1, 0, 0, 0, 838, 840, 3, 2, 1, 0, 839, 838, 1, 0, 0, 0, 840, 843, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 844, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 844, 845, 5, 0, 0, 1, 845, 1, 1, 0, 0, 0, 846, 848, 3, 4, 2, 0, 847, 849, 5, 869, 0, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 852, 1, 0, 0, 0, 850, 852, 3, 6, 3, 0, 851, 846, 1, 0, 0, 0, 851, 850, 1, 0, 0, 0, 852, 3, 1, 0, 0, 0, 853, 861, 3, 8, 4, 0, 854, 861, 3, 10, 5, 0, 855, 861, 3, 12, 6, 0, 856, 861, 3, 14, 7, 0, 857, 861, 3, 16, 8, 0, 858, 861, 3, 20, 10, 0, 859, 861, 3, 22, 11, 0, 860, 853, 1, 0, 0, 0, 860, 854, 1, 0, 0, 0, 860, 855, 1, 0, 0, 0, 860, 856, 1, 0, 0, 0, 860, 857, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 859, 1, 0, 0, 0, 861, 5, 1, 0, 0, 0, 862, 863, 5, 869, 0, 0, 863, 7, 1, 0, 0, 0, 864, 905, 3, 24, 12, 0, 865, 905, 3, 26, 13, 0, 866, 905, 3, 28, 14, 0, 867, 905, 3, 30, 15, 0, 868, 905, 3, 32, 16, 0, 869, 905, 3, 34, 17, 0, 870, 905, 3, 36, 18, 0, 871, 905, 3, 40, 20, 0, 872, 905, 3, 42, 21, 0, 873, 905, 3, 44, 22, 0, 874, 905, 3, 46, 23, 0, 875, 905, 3, 48, 24, 0, 876, 905, 3, 54, 27, 0, 877, 905, 3, 38, 19, 0, 878, 905, 3, 126, 63, 0, 879, 905, 3, 128, 64, 0, 880, 905, 3, 130, 65, 0, 881, 905, 3, 132, 66, 0, 882, 905, 3, 134, 67, 0, 883, 905, 3, 136, 68, 0, 884, 905, 3, 138, 69, 0, 885, 905, 3, 140, 70, 0, 886, 905, 3, 142, 71, 0, 887, 905, 3, 144, 72, 0, 888, 905, 3, 150, 75, 0, 889, 905, 3, 152, 76, 0, 890, 905, 3, 154, 77, 0, 891, 905, 3, 156, 78, 0, 892, 905, 3, 158, 79, 0, 893, 905, 3, 160, 80, 0, 894, 905, 3, 162, 81, 0, 895, 905, 3, 164, 82, 0, 896, 905, 3, 166, 83, 0, 897, 905, 3, 168, 84, 0, 898, 905, 3, 170, 85, 0, 899, 905, 3, 172, 86, 0, 900, 905, 3, 174, 87, 0, 901, 905, 3, 176, 88, 0, 902, 905, 3, 178, 89, 0, 903, 905, 3, 182, 91, 0, 904, 864, 1, 0, 0, 0, 904, 865, 1, 0, 0, 0, 904, 866, 1, 0, 0, 0, 904, 867, 1, 0, 0, 0, 904, 868, 1, 0, 0, 0, 904, 869, 1, 0, 0, 0, 904, 870, 1, 0, 0, 0, 904, 871, 1, 0, 0, 0, 904, 872, 1, 0, 0, 0, 904, 873, 1, 0, 0, 0, 904, 874, 1, 0, 0, 0, 904, 875, 1, 0, 0, 0, 904, 876, 1, 0, 0, 0, 904, 877, 1, 0, 0, 0, 904, 878, 1, 0, 0, 0, 904, 879, 1, 0, 0, 0, 904, 880, 1, 0, 0, 0, 904, 881, 1, 0, 0, 0, 904, 882, 1, 0, 0, 0, 904, 883, 1, 0, 0, 0, 904, 884, 1, 0, 0, 0, 904, 885, 1, 0, 0, 0, 904, 886, 1, 0, 0, 0, 904, 887, 1, 0, 0, 0, 904, 888, 1, 0, 0, 0, 904, 889, 1, 0, 0, 0, 904, 890, 1, 0, 0, 0, 904, 891, 1, 0, 0, 0, 904, 892, 1, 0, 0, 0, 904, 893, 1, 0, 0, 0, 904, 894, 1, 0, 0, 0, 904, 895, 1, 0, 0, 0, 904, 896, 1, 0, 0, 0, 904, 897, 1, 0, 0, 0, 904, 898, 1, 0, 0, 0, 904, 899, 1, 0, 0, 0, 904, 900, 1, 0, 0, 0, 904, 901, 1, 0, 0, 0, 904, 902, 1, 0, 0, 0, 904, 903, 1, 0, 0, 0, 905, 9, 1, 0, 0, 0, 906, 924, 3, 210, 105, 0, 907, 924, 3, 212, 106, 0, 908, 924, 3, 192, 96, 0, 909, 924, 3, 220, 110, 0, 910, 924, 3, 186, 93, 0, 911, 924, 3, 208, 104, 0, 912, 924, 3, 184, 92, 0, 913, 924, 3, 198, 99, 0, 914, 924, 3, 202, 101, 0, 915, 924, 3, 204, 102, 0, 916, 924, 3, 206, 103, 0, 917, 924, 3, 188, 94, 0, 918, 924, 3, 190, 95, 0, 919, 924, 3, 252, 126, 0, 920, 924, 3, 222, 111, 0, 921, 924, 3, 616, 308, 0, 922, 924, 3, 618, 309, 0, 923, 906, 1, 0, 0, 0, 923, 907, 1, 0, 0, 0, 923, 908, 1, 0, 0, 0, 923, 909, 1, 0, 0, 0, 923, 910, 1, 0, 0, 0, 923, 911, 1, 0, 0, 0, 923, 912, 1, 0, 0, 0, 923, 913, 1, 0, 0, 0, 923, 914, 1, 0, 0, 0, 923, 915, 1, 0, 0, 0, 923, 916, 1, 0, 0, 0, 923, 917, 1, 0, 0, 0, 923, 918, 1, 0, 0, 0, 923, 919, 1, 0, 0, 0, 923, 920, 1, 0, 0, 0, 923, 921, 1, 0, 0, 0, 923, 922, 1, 0, 0, 0, 924, 11, 1, 0, 0, 0, 925, 935, 3, 322, 161, 0, 926, 935, 3, 324, 162, 0, 927, 935, 3, 326, 163, 0, 928, 935, 3, 328, 164, 0, 929, 935, 3, 330, 165, 0, 930, 935, 3, 332, 166, 0, 931, 935, 3, 334, 167, 0, 932, 935, 3, 336, 168, 0, 933, 935, 3, 338, 169, 0, 934, 925, 1, 0, 0, 0, 934, 926, 1, 0, 0, 0, 934, 927, 1, 0, 0, 0, 934, 928, 1, 0, 0, 0, 934, 929, 1, 0, 0, 0, 934, 930, 1, 0, 0, 0, 934, 931, 1, 0, 0, 0, 934, 932, 1, 0, 0, 0, 934, 933, 1, 0, 0, 0, 935, 13, 1, 0, 0, 0, 936, 951, 3, 354, 177, 0, 937, 951, 3, 356, 178, 0, 938, 951, 3, 358, 179, 0, 939, 951, 3, 360, 180, 0, 940, 951, 3, 362, 181, 0, 941, 951, 3, 364, 182, 0, 942, 951, 3, 366, 183, 0, 943, 951, 3, 368, 184, 0, 944, 951, 3, 404, 202, 0, 945, 951, 3, 406, 203, 0, 946, 951, 3, 408, 204, 0, 947, 951, 3, 410, 205, 0, 948, 951, 3, 412, 206, 0, 949, 951, 3, 414, 207, 0, 950, 936, 1, 0, 0, 0, 950, 937, 1, 0, 0, 0, 950, 938, 1, 0, 0, 0, 950, 939, 1, 0, 0, 0, 950, 940, 1, 0, 0, 0, 950, 941, 1, 0, 0, 0, 950, 942, 1, 0, 0, 0, 950, 943, 1, 0, 0, 0, 950, 944, 1, 0, 0, 0, 950, 945, 1, 0, 0, 0, 950, 946, 1, 0, 0, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 15, 1, 0, 0, 0, 952, 956, 3, 416, 208, 0, 953, 956, 3, 418, 209, 0, 954, 956, 3, 420, 210, 0, 955, 952, 1, 0, 0, 0, 955, 953, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 17, 1, 0, 0, 0, 957, 968, 3, 424, 212, 0, 958, 968, 3, 426, 213, 0, 959, 968, 3, 428, 214, 0, 960, 968, 3, 432, 216, 0, 961, 968, 3, 434, 217, 0, 962, 968, 3, 436, 218, 0, 963, 968, 3, 440, 220, 0, 964, 968, 3, 430, 215, 0, 965, 968, 3, 438, 219, 0, 966, 968, 3, 442, 221, 0, 967, 957, 1, 0, 0, 0, 967, 958, 1, 0, 0, 0, 967, 959, 1, 0, 0, 0, 967, 960, 1, 0, 0, 0, 967, 961, 1, 0, 0, 0, 967, 962, 1, 0, 0, 0, 967, 963, 1, 0, 0, 0, 967, 964, 1, 0, 0, 0, 967, 965, 1, 0, 0, 0, 967, 966, 1, 0, 0, 0, 968, 19, 1, 0, 0, 0, 969, 1003, 3, 460, 230, 0, 970, 1003, 3, 462, 231, 0, 971, 1003, 3, 464, 232, 0, 972, 1003, 3, 466, 233, 0, 973, 1003, 3, 470, 235, 0, 974, 1003, 3, 482, 241, 0, 975, 1003, 3, 484, 242, 0, 976, 1003, 3, 472, 236, 0, 977, 1003, 3, 474, 237, 0, 978, 1003, 3, 476, 238, 0, 979, 1003, 3, 478, 239, 0, 980, 1003, 3, 528, 264, 0, 981, 1003, 3, 530, 265, 0, 982, 1003, 3, 532, 266, 0, 983, 1003, 3, 534, 267, 0, 984, 1003, 3, 536, 268, 0, 985, 1003, 3, 542, 271, 0, 986, 1003, 3, 546, 273, 0, 987, 1003, 3, 548, 274, 0, 988, 1003, 3, 550, 275, 0, 989, 1003, 3, 552, 276, 0, 990, 1003, 3, 554, 277, 0, 991, 1003, 3, 556, 278, 0, 992, 1003, 3, 570, 285, 0, 993, 1003, 3, 572, 286, 0, 994, 1003, 3, 574, 287, 0, 995, 1003, 3, 576, 288, 0, 996, 1003, 3, 578, 289, 0, 997, 1003, 3, 580, 290, 0, 998, 1003, 3, 584, 292, 0, 999, 1003, 3, 586, 293, 0, 1000, 1003, 3, 588, 294, 0, 1001, 1003, 3, 590, 295, 0, 1002, 969, 1, 0, 0, 0, 1002, 970, 1, 0, 0, 0, 1002, 971, 1, 0, 0, 0, 1002, 972, 1, 0, 0, 0, 1002, 973, 1, 0, 0, 0, 1002, 974, 1, 0, 0, 0, 1002, 975, 1, 0, 0, 0, 1002, 976, 1, 0, 0, 0, 1002, 977, 1, 0, 0, 0, 1002, 978, 1, 0, 0, 0, 1002, 979, 1, 0, 0, 0, 1002, 980, 1, 0, 0, 0, 1002, 981, 1, 0, 0, 0, 1002, 982, 1, 0, 0, 0, 1002, 983, 1, 0, 0, 0, 1002, 984, 1, 0, 0, 0, 1002, 985, 1, 0, 0, 0, 1002, 986, 1, 0, 0, 0, 1002, 987, 1, 0, 0, 0, 1002, 988, 1, 0, 0, 0, 1002, 989, 1, 0, 0, 0, 1002, 990, 1, 0, 0, 0, 1002, 991, 1, 0, 0, 0, 1002, 992, 1, 0, 0, 0, 1002, 993, 1, 0, 0, 0, 1002, 994, 1, 0, 0, 0, 1002, 995, 1, 0, 0, 0, 1002, 996, 1, 0, 0, 0, 1002, 997, 1, 0, 0, 0, 1002, 998, 1, 0, 0, 0, 1002, 999, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1001, 1, 0, 0, 0, 1003, 21, 1, 0, 0, 0, 1004, 1013, 3, 602, 301, 0, 1005, 1013, 3, 600, 300, 0, 1006, 1013, 3, 604, 302, 0, 1007, 1013, 3, 606, 303, 0, 1008, 1013, 3, 608, 304, 0, 1009, 1013, 3, 610, 305, 0, 1010, 1013, 3, 612, 306, 0, 1011, 1013, 3, 620, 310, 0, 1012, 1004, 1, 0, 0, 0, 1012, 1005, 1, 0, 0, 0, 1012, 1006, 1, 0, 0, 0, 1012, 1007, 1, 0, 0, 0, 1012, 1008, 1, 0, 0, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1011, 1, 0, 0, 0, 1013, 23, 1, 0, 0, 0, 1014, 1015, 5, 34, 0, 0, 1015, 1017, 7, 0, 0, 0, 1016, 1018, 3, 760, 380, 0, 1017, 1016, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1023, 3, 626, 313, 0, 1020, 1022, 3, 56, 28, 0, 1021, 1020, 1, 0, 0, 0, 1022, 1025, 1, 0, 0, 0, 1023, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 25, 1, 0, 0, 0, 1025, 1023, 1, 0, 0, 0, 1026, 1028, 5, 34, 0, 0, 1027, 1029, 3, 62, 31, 0, 1028, 1027, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1032, 5, 385, 0, 0, 1031, 1033, 3, 760, 380, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 3, 702, 351, 0, 1035, 1036, 5, 119, 0, 0, 1036, 1037, 5, 590, 0, 0, 1037, 1044, 3, 64, 32, 0, 1038, 1039, 5, 119, 0, 0, 1039, 1041, 5, 343, 0, 0, 1040, 1042, 5, 114, 0, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1045, 5, 541, 0, 0, 1044, 1038, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 1, 0, 0, 0, 1046, 1048, 3, 72, 36, 0, 1047, 1046, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1051, 1, 0, 0, 0, 1049, 1050, 5, 340, 0, 0, 1050, 1052, 5, 882, 0, 0, 1051, 1049, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 5, 371, 0, 0, 1054, 1055, 3, 422, 211, 0, 1055, 27, 1, 0, 0, 0, 1056, 1058, 5, 34, 0, 0, 1057, 1059, 7, 1, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1062, 7, 2, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 5, 82, 0, 0, 1064, 1066, 3, 638, 319, 0, 1065, 1067, 3, 74, 37, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 5, 119, 0, 0, 1069, 1070, 3, 652, 326, 0, 1070, 1074, 3, 738, 369, 0, 1071, 1073, 3, 76, 38, 0, 1072, 1071, 1, 0, 0, 0, 1073, 1076, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1089, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1077, 1079, 5, 308, 0, 0, 1078, 1080, 5, 857, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1088, 7, 3, 0, 0, 1082, 1084, 5, 104, 0, 0, 1083, 1085, 5, 857, 0, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1088, 7, 4, 0, 0, 1087, 1077, 1, 0, 0, 0, 1087, 1082, 1, 0, 0, 0, 1088, 1091, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 29, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1092, 1093, 5, 34, 0, 0, 1093, 1094, 5, 451, 0, 0, 1094, 1095, 5, 74, 0, 0, 1095, 1096, 3, 706, 353, 0, 1096, 1097, 5, 6, 0, 0, 1097, 1098, 5, 671, 0, 0, 1098, 1104, 5, 882, 0, 0, 1099, 1101, 5, 428, 0, 0, 1100, 1102, 5, 857, 0, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1105, 3, 714, 357, 0, 1104, 1099, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1111, 1, 0, 0, 0, 1106, 1108, 5, 672, 0, 0, 1107, 1109, 5, 857, 0, 0, 1108, 1107, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1112, 3, 714, 357, 0, 1111, 1106, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1118, 1, 0, 0, 0, 1113, 1115, 5, 553, 0, 0, 1114, 1116, 5, 857, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1119, 3, 714, 357, 0, 1118, 1113, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1125, 1, 0, 0, 0, 1120, 1122, 5, 504, 0, 0, 1121, 1123, 5, 857, 0, 0, 1122, 1121, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1126, 3, 706, 353, 0, 1125, 1120, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 1, 0, 0, 0, 1127, 1129, 5, 687, 0, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1135, 1, 0, 0, 0, 1130, 1132, 5, 340, 0, 0, 1131, 1133, 5, 857, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1136, 5, 882, 0, 0, 1135, 1130, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1139, 5, 380, 0, 0, 1138, 1140, 5, 857, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 3, 692, 346, 0, 1142, 31, 1, 0, 0, 0, 1143, 1145, 5, 34, 0, 0, 1144, 1146, 3, 62, 31, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 5, 132, 0, 0, 1148, 1150, 3, 760, 380, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 3, 702, 351, 0, 1152, 1154, 5, 866, 0, 0, 1153, 1155, 3, 78, 39, 0, 1154, 1153, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1160, 1, 0, 0, 0, 1156, 1157, 5, 868, 0, 0, 1157, 1159, 3, 78, 39, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1163, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1167, 5, 867, 0, 0, 1164, 1166, 3, 82, 41, 0, 1165, 1164, 1, 0, 0, 0, 1166, 1169, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1170, 1171, 3, 422, 211, 0, 1171, 33, 1, 0, 0, 0, 1172, 1174, 5, 34, 0, 0, 1173, 1175, 3, 62, 31, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1177, 1, 0, 0, 0, 1176, 1178, 5, 307, 0, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 5, 409, 0, 0, 1180, 1182, 3, 760, 380, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1184, 3, 630, 315, 0, 1184, 1186, 5, 866, 0, 0, 1185, 1187, 3, 80, 40, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1192, 1, 0, 0, 0, 1188, 1189, 5, 868, 0, 0, 1189, 1191, 3, 80, 40, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1194, 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1195, 1196, 5, 867, 0, 0, 1196, 1197, 5, 580, 0, 0, 1197, 1201, 3, 726, 363, 0, 1198, 1200, 3, 82, 41, 0, 1199, 1198, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1199, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1206, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1204, 1207, 3, 422, 211, 0, 1205, 1207, 3, 438, 219, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 35, 1, 0, 0, 0, 1208, 1210, 5, 34, 0, 0, 1209, 1211, 5, 307, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1214, 5, 409, 0, 0, 1213, 1215, 3, 760, 380, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 3, 630, 315, 0, 1217, 1218, 5, 580, 0, 0, 1218, 1219, 7, 5, 0, 0, 1219, 1220, 5, 603, 0, 0, 1220, 1221, 5, 882, 0, 0, 1221, 37, 1, 0, 0, 0, 1222, 1223, 5, 34, 0, 0, 1223, 1225, 5, 582, 0, 0, 1224, 1226, 3, 760, 380, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 3, 654, 327, 0, 1228, 39, 1, 0, 0, 0, 1229, 1230, 5, 34, 0, 0, 1230, 1231, 5, 592, 0, 0, 1231, 1232, 3, 706, 353, 0, 1232, 1233, 5, 67, 0, 0, 1233, 1234, 5, 360, 0, 0, 1234, 1235, 5, 692, 0, 0, 1235, 1236, 7, 6, 0, 0, 1236, 1237, 5, 518, 0, 0, 1237, 1238, 5, 866, 0, 0, 1238, 1243, 3, 84, 42, 0, 1239, 1240, 5, 868, 0, 0, 1240, 1242, 3, 84, 42, 0, 1241, 1239, 1, 0, 0, 0, 1242, 1245, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1246, 1247, 5, 867, 0, 0, 1247, 41, 1, 0, 0, 0, 1248, 1250, 5, 34, 0, 0, 1249, 1251, 5, 660, 0, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 5, 173, 0, 0, 1253, 1255, 3, 760, 380, 0, 1254, 1253, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1258, 3, 648, 324, 0, 1257, 1259, 3, 86, 43, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1270, 1, 0, 0, 0, 1260, 1267, 3, 104, 52, 0, 1261, 1263, 5, 868, 0, 0, 1262, 1261, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 3, 104, 52, 0, 1265, 1262, 1, 0, 0, 0, 1266, 1269, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1271, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1270, 1260, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1273, 1, 0, 0, 0, 1272, 1274, 3, 110, 55, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1277, 7, 7, 0, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1280, 5, 13, 0, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 3, 210, 105, 0, 1282, 1327, 1, 0, 0, 0, 1283, 1285, 5, 34, 0, 0, 1284, 1286, 5, 660, 0, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 5, 173, 0, 0, 1288, 1290, 3, 760, 380, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1299, 3, 648, 324, 0, 1292, 1293, 5, 99, 0, 0, 1293, 1300, 3, 652, 326, 0, 1294, 1295, 5, 866, 0, 0, 1295, 1296, 5, 99, 0, 0, 1296, 1297, 3, 652, 326, 0, 1297, 1298, 5, 867, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1292, 1, 0, 0, 0, 1299, 1294, 1, 0, 0, 0, 1300, 1327, 1, 0, 0, 0, 1301, 1303, 5, 34, 0, 0, 1302, 1304, 5, 660, 0, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1307, 5, 173, 0, 0, 1306, 1308, 3, 760, 380, 0, 1307, 1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 3, 648, 324, 0, 1310, 1321, 3, 86, 43, 0, 1311, 1318, 3, 104, 52, 0, 1312, 1314, 5, 868, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 3, 104, 52, 0, 1316, 1313, 1, 0, 0, 0, 1317, 1320, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1311, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1325, 3, 110, 55, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1327, 1, 0, 0, 0, 1326, 1248, 1, 0, 0, 0, 1326, 1283, 1, 0, 0, 0, 1326, 1301, 1, 0, 0, 0, 1327, 43, 1, 0, 0, 0, 1328, 1330, 5, 34, 0, 0, 1329, 1331, 5, 180, 0, 0, 1330, 1329, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 5, 658, 0, 0, 1333, 1337, 3, 664, 332, 0, 1334, 1335, 5, 6, 0, 0, 1335, 1336, 5, 361, 0, 0, 1336, 1338, 5, 882, 0, 0, 1337, 1334, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1344, 1, 0, 0, 0, 1339, 1341, 5, 314, 0, 0, 1340, 1342, 5, 857, 0, 0, 1341, 1340, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 3, 714, 357, 0, 1344, 1339, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1349, 1, 0, 0, 0, 1346, 1347, 5, 399, 0, 0, 1347, 1348, 5, 857, 0, 0, 1348, 1350, 3, 714, 357, 0, 1349, 1346, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1356, 1, 0, 0, 0, 1351, 1353, 5, 380, 0, 0, 1352, 1354, 5, 857, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1357, 3, 692, 346, 0, 1356, 1351, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1363, 1, 0, 0, 0, 1358, 1360, 5, 825, 0, 0, 1359, 1361, 5, 857, 0, 0, 1360, 1359, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1364, 5, 882, 0, 0, 1363, 1358, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 45, 1, 0, 0, 0, 1365, 1367, 5, 34, 0, 0, 1366, 1368, 5, 180, 0, 0, 1367, 1366, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 5, 658, 0, 0, 1370, 1371, 3, 664, 332, 0, 1371, 1372, 5, 6, 0, 0, 1372, 1373, 5, 361, 0, 0, 1373, 1374, 5, 882, 0, 0, 1374, 1375, 5, 187, 0, 0, 1375, 1376, 5, 451, 0, 0, 1376, 1377, 5, 74, 0, 0, 1377, 1383, 3, 706, 353, 0, 1378, 1380, 5, 393, 0, 0, 1379, 1381, 5, 857, 0, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1384, 3, 714, 357, 0, 1383, 1378, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1390, 1, 0, 0, 0, 1385, 1387, 5, 428, 0, 0, 1386, 1388, 5, 857, 0, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1391, 3, 714, 357, 0, 1390, 1385, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1397, 1, 0, 0, 0, 1392, 1394, 5, 314, 0, 0, 1393, 1395, 5, 857, 0, 0, 1394, 1393, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1398, 3, 714, 357, 0, 1397, 1392, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1404, 1, 0, 0, 0, 1399, 1401, 5, 481, 0, 0, 1400, 1402, 5, 857, 0, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1405, 3, 714, 357, 0, 1404, 1399, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1411, 1, 0, 0, 0, 1406, 1408, 5, 504, 0, 0, 1407, 1409, 5, 857, 0, 0, 1408, 1407, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1412, 3, 706, 353, 0, 1411, 1406, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1414, 1, 0, 0, 0, 1413, 1415, 5, 687, 0, 0, 1414, 1413, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1421, 1, 0, 0, 0, 1416, 1418, 5, 340, 0, 0, 1417, 1419, 5, 857, 0, 0, 1418, 1417, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1422, 5, 882, 0, 0, 1421, 1416, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1425, 5, 380, 0, 0, 1424, 1426, 5, 857, 0, 0, 1425, 1424, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 3, 692, 346, 0, 1428, 47, 1, 0, 0, 0, 1429, 1431, 5, 34, 0, 0, 1430, 1432, 3, 62, 31, 0, 1431, 1430, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1435, 3, 760, 380, 0, 1434, 1433, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1438, 5, 178, 0, 0, 1437, 1439, 3, 760, 380, 0, 1438, 1437, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 3, 702, 351, 0, 1441, 1442, 7, 8, 0, 0, 1442, 1443, 7, 9, 0, 0, 1443, 1444, 5, 119, 0, 0, 1444, 1445, 3, 652, 326, 0, 1445, 1446, 5, 65, 0, 0, 1446, 1447, 5, 52, 0, 0, 1447, 1450, 5, 586, 0, 0, 1448, 1449, 7, 10, 0, 0, 1449, 1451, 3, 702, 351, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 3, 422, 211, 0, 1453, 49, 1, 0, 0, 0, 1454, 1456, 5, 194, 0, 0, 1455, 1457, 5, 552, 0, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 3, 52, 26, 0, 1459, 51, 1, 0, 0, 0, 1460, 1472, 3, 706, 353, 0, 1461, 1462, 5, 866, 0, 0, 1462, 1467, 3, 706, 353, 0, 1463, 1464, 5, 868, 0, 0, 1464, 1466, 3, 706, 353, 0, 1465, 1463, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1465, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1470, 1, 0, 0, 0, 1469, 1467, 1, 0, 0, 0, 1470, 1471, 5, 867, 0, 0, 1471, 1473, 1, 0, 0, 0, 1472, 1461, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 5, 13, 0, 0, 1475, 1476, 5, 866, 0, 0, 1476, 1477, 3, 10, 5, 0, 1477, 1480, 5, 867, 0, 0, 1478, 1479, 5, 868, 0, 0, 1479, 1481, 3, 52, 26, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 53, 1, 0, 0, 0, 1482, 1484, 5, 34, 0, 0, 1483, 1485, 3, 762, 381, 0, 1484, 1483, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1489, 1, 0, 0, 0, 1486, 1487, 5, 308, 0, 0, 1487, 1488, 5, 857, 0, 0, 1488, 1490, 7, 11, 0, 0, 1489, 1486, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1492, 1, 0, 0, 0, 1491, 1493, 3, 62, 31, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1497, 1, 0, 0, 0, 1494, 1495, 5, 162, 0, 0, 1495, 1496, 5, 591, 0, 0, 1496, 1498, 7, 12, 0, 0, 1497, 1494, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 5, 684, 0, 0, 1500, 1512, 3, 634, 317, 0, 1501, 1502, 5, 866, 0, 0, 1502, 1507, 3, 658, 329, 0, 1503, 1504, 5, 868, 0, 0, 1504, 1506, 3, 658, 329, 0, 1505, 1503, 1, 0, 0, 0, 1506, 1509, 1, 0, 0, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1510, 1511, 5, 867, 0, 0, 1511, 1513, 1, 0, 0, 0, 1512, 1501, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1534, 5, 13, 0, 0, 1515, 1517, 5, 866, 0, 0, 1516, 1518, 3, 50, 25, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 3, 210, 105, 0, 1520, 1521, 5, 867, 0, 0, 1521, 1535, 1, 0, 0, 0, 1522, 1524, 3, 50, 25, 0, 1523, 1522, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1532, 3, 210, 105, 0, 1526, 1528, 5, 194, 0, 0, 1527, 1529, 7, 13, 0, 0, 1528, 1527, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1531, 5, 27, 0, 0, 1531, 1533, 5, 121, 0, 0, 1532, 1526, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1515, 1, 0, 0, 0, 1534, 1523, 1, 0, 0, 0, 1535, 55, 1, 0, 0, 0, 1536, 1538, 5, 42, 0, 0, 1537, 1536, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1541, 3, 58, 29, 0, 1540, 1542, 5, 857, 0, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1545, 1, 0, 0, 0, 1543, 1546, 3, 688, 344, 0, 1544, 1546, 5, 42, 0, 0, 1545, 1543, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1546, 1570, 1, 0, 0, 0, 1547, 1549, 5, 42, 0, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 5, 28, 0, 0, 1551, 1553, 5, 857, 0, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1570, 3, 690, 345, 0, 1555, 1557, 5, 42, 0, 0, 1556, 1555, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1560, 5, 376, 0, 0, 1559, 1561, 5, 857, 0, 0, 1560, 1559, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1570, 5, 882, 0, 0, 1563, 1564, 5, 135, 0, 0, 1564, 1566, 5, 515, 0, 0, 1565, 1567, 5, 857, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 7, 14, 0, 0, 1569, 1537, 1, 0, 0, 0, 1569, 1548, 1, 0, 0, 0, 1569, 1556, 1, 0, 0, 0, 1569, 1563, 1, 0, 0, 0, 1570, 57, 1, 0, 0, 0, 1571, 1572, 5, 26, 0, 0, 1572, 1577, 5, 155, 0, 0, 1573, 1577, 5, 823, 0, 0, 1574, 1575, 5, 224, 0, 0, 1575, 1577, 5, 155, 0, 0, 1576, 1571, 1, 0, 0, 0, 1576, 1573, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1577, 59, 1, 0, 0, 0, 1578, 1581, 7, 15, 0, 0, 1579, 1580, 5, 866, 0, 0, 1580, 1582, 5, 867, 0, 0, 1581, 1579, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 61, 1, 0, 0, 0, 1583, 1584, 5, 364, 0, 0, 1584, 1587, 5, 857, 0, 0, 1585, 1588, 3, 684, 342, 0, 1586, 1588, 3, 60, 30, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1586, 1, 0, 0, 0, 1588, 63, 1, 0, 0, 0, 1589, 1590, 5, 311, 0, 0, 1590, 1594, 3, 66, 33, 0, 1591, 1593, 3, 68, 34, 0, 1592, 1591, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1592, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1624, 1, 0, 0, 0, 1596, 1594, 1, 0, 0, 0, 1597, 1600, 5, 387, 0, 0, 1598, 1601, 3, 712, 356, 0, 1599, 1601, 3, 804, 402, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1611, 3, 70, 35, 0, 1603, 1604, 5, 641, 0, 0, 1604, 1608, 3, 66, 33, 0, 1605, 1607, 3, 68, 34, 0, 1606, 1605, 1, 0, 0, 0, 1607, 1610, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1611, 1603, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1621, 1, 0, 0, 0, 1613, 1614, 5, 379, 0, 0, 1614, 1618, 3, 66, 33, 0, 1615, 1617, 3, 68, 34, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1613, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1589, 1, 0, 0, 0, 1623, 1597, 1, 0, 0, 0, 1624, 65, 1, 0, 0, 0, 1625, 1630, 5, 287, 0, 0, 1626, 1630, 3, 716, 358, 0, 1627, 1630, 3, 712, 356, 0, 1628, 1630, 3, 804, 402, 0, 1629, 1625, 1, 0, 0, 0, 1629, 1626, 1, 0, 0, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1628, 1, 0, 0, 0, 1630, 67, 1, 0, 0, 0, 1631, 1632, 5, 853, 0, 0, 1632, 1635, 5, 87, 0, 0, 1633, 1636, 3, 712, 356, 0, 1634, 1636, 3, 804, 402, 0, 1635, 1633, 1, 0, 0, 0, 1635, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 3, 70, 35, 0, 1638, 69, 1, 0, 0, 0, 1639, 1653, 3, 830, 415, 0, 1640, 1653, 5, 223, 0, 0, 1641, 1653, 5, 242, 0, 0, 1642, 1653, 5, 243, 0, 0, 1643, 1653, 5, 244, 0, 0, 1644, 1653, 5, 245, 0, 0, 1645, 1653, 5, 246, 0, 0, 1646, 1653, 5, 247, 0, 0, 1647, 1653, 5, 248, 0, 0, 1648, 1653, 5, 249, 0, 0, 1649, 1653, 5, 250, 0, 0, 1650, 1653, 5, 251, 0, 0, 1651, 1653, 5, 252, 0, 0, 1652, 1639, 1, 0, 0, 0, 1652, 1640, 1, 0, 0, 0, 1652, 1641, 1, 0, 0, 0, 1652, 1642, 1, 0, 0, 0, 1652, 1643, 1, 0, 0, 0, 1652, 1644, 1, 0, 0, 0, 1652, 1645, 1, 0, 0, 0, 1652, 1646, 1, 0, 0, 0, 1652, 1647, 1, 0, 0, 0, 1652, 1648, 1, 0, 0, 0, 1652, 1649, 1, 0, 0, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1651, 1, 0, 0, 0, 1653, 71, 1, 0, 0, 0, 1654, 1660, 5, 375, 0, 0, 1655, 1660, 5, 368, 0, 0, 1656, 1657, 5, 368, 0, 0, 1657, 1658, 5, 119, 0, 0, 1658, 1660, 5, 598, 0, 0, 1659, 1654, 1, 0, 0, 0, 1659, 1655, 1, 0, 0, 0, 1659, 1656, 1, 0, 0, 0, 1660, 73, 1, 0, 0, 0, 1661, 1662, 5, 188, 0, 0, 1662, 1663, 7, 16, 0, 0, 1663, 75, 1, 0, 0, 0, 1664, 1666, 5, 443, 0, 0, 1665, 1667, 5, 857, 0, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1687, 3, 714, 357, 0, 1669, 1687, 3, 74, 37, 0, 1670, 1671, 5, 194, 0, 0, 1671, 1672, 5, 525, 0, 0, 1672, 1687, 3, 706, 353, 0, 1673, 1674, 5, 340, 0, 0, 1674, 1687, 5, 882, 0, 0, 1675, 1687, 7, 17, 0, 0, 1676, 1678, 5, 825, 0, 0, 1677, 1679, 5, 857, 0, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1687, 5, 882, 0, 0, 1681, 1683, 5, 833, 0, 0, 1682, 1684, 5, 857, 0, 0, 1683, 1682, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1687, 5, 882, 0, 0, 1686, 1664, 1, 0, 0, 0, 1686, 1669, 1, 0, 0, 0, 1686, 1670, 1, 0, 0, 0, 1686, 1673, 1, 0, 0, 0, 1686, 1675, 1, 0, 0, 0, 1686, 1676, 1, 0, 0, 0, 1686, 1681, 1, 0, 0, 0, 1687, 77, 1, 0, 0, 0, 1688, 1690, 7, 18, 0, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 3, 706, 353, 0, 1692, 1693, 3, 726, 363, 0, 1693, 79, 1, 0, 0, 0, 1694, 1695, 3, 706, 353, 0, 1695, 1696, 3, 726, 363, 0, 1696, 81, 1, 0, 0, 0, 1697, 1698, 5, 340, 0, 0, 1698, 1721, 5, 882, 0, 0, 1699, 1700, 5, 444, 0, 0, 1700, 1721, 5, 162, 0, 0, 1701, 1703, 5, 114, 0, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1721, 5, 47, 0, 0, 1705, 1706, 5, 354, 0, 0, 1706, 1716, 5, 162, 0, 0, 1707, 1708, 5, 502, 0, 0, 1708, 1716, 5, 162, 0, 0, 1709, 1710, 5, 136, 0, 0, 1710, 1711, 5, 162, 0, 0, 1711, 1716, 5, 360, 0, 0, 1712, 1713, 5, 112, 0, 0, 1713, 1714, 5, 162, 0, 0, 1714, 1716, 5, 360, 0, 0, 1715, 1705, 1, 0, 0, 0, 1715, 1707, 1, 0, 0, 0, 1715, 1709, 1, 0, 0, 0, 1715, 1712, 1, 0, 0, 0, 1716, 1721, 1, 0, 0, 0, 1717, 1718, 5, 162, 0, 0, 1718, 1719, 5, 591, 0, 0, 1719, 1721, 7, 12, 0, 0, 1720, 1697, 1, 0, 0, 0, 1720, 1699, 1, 0, 0, 0, 1720, 1702, 1, 0, 0, 0, 1720, 1715, 1, 0, 0, 0, 1720, 1717, 1, 0, 0, 0, 1721, 83, 1, 0, 0, 0, 1722, 1723, 5, 421, 0, 0, 1723, 1737, 5, 882, 0, 0, 1724, 1725, 5, 39, 0, 0, 1725, 1737, 5, 882, 0, 0, 1726, 1727, 5, 678, 0, 0, 1727, 1737, 5, 882, 0, 0, 1728, 1729, 5, 529, 0, 0, 1729, 1737, 5, 882, 0, 0, 1730, 1731, 5, 601, 0, 0, 1731, 1737, 5, 882, 0, 0, 1732, 1733, 5, 519, 0, 0, 1733, 1737, 5, 882, 0, 0, 1734, 1735, 5, 537, 0, 0, 1735, 1737, 3, 712, 356, 0, 1736, 1722, 1, 0, 0, 0, 1736, 1724, 1, 0, 0, 0, 1736, 1726, 1, 0, 0, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1734, 1, 0, 0, 0, 1737, 85, 1, 0, 0, 0, 1738, 1739, 5, 866, 0, 0, 1739, 1744, 3, 88, 44, 0, 1740, 1741, 5, 868, 0, 0, 1741, 1743, 3, 88, 44, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1746, 1, 0, 0, 0, 1744, 1742, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1747, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 1748, 5, 867, 0, 0, 1748, 87, 1, 0, 0, 0, 1749, 1750, 3, 658, 329, 0, 1750, 1751, 3, 94, 47, 0, 1751, 1833, 1, 0, 0, 0, 1752, 1754, 7, 19, 0, 0, 1753, 1755, 3, 642, 321, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1758, 3, 74, 37, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1763, 3, 738, 369, 0, 1760, 1762, 3, 76, 38, 0, 1761, 1760, 1, 0, 0, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1833, 1, 0, 0, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1768, 7, 20, 0, 0, 1767, 1769, 7, 19, 0, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 1, 0, 0, 0, 1770, 1772, 3, 642, 321, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1777, 3, 738, 369, 0, 1774, 1776, 3, 76, 38, 0, 1775, 1774, 1, 0, 0, 0, 1776, 1779, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1833, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1780, 1782, 3, 92, 46, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 5, 131, 0, 0, 1784, 1786, 5, 92, 0, 0, 1785, 1787, 3, 74, 37, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1792, 3, 738, 369, 0, 1789, 1791, 3, 76, 38, 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, 1833, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1795, 1797, 3, 92, 46, 0, 1796, 1795, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 5, 182, 0, 0, 1799, 1801, 7, 19, 0, 0, 1800, 1799, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1803, 1, 0, 0, 0, 1802, 1804, 3, 642, 321, 0, 1803, 1802, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1806, 1, 0, 0, 0, 1805, 1807, 3, 74, 37, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1812, 3, 738, 369, 0, 1809, 1811, 3, 76, 38, 0, 1810, 1809, 1, 0, 0, 0, 1811, 1814, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1833, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1817, 3, 92, 46, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 5, 67, 0, 0, 1819, 1821, 5, 92, 0, 0, 1820, 1822, 3, 642, 321, 0, 1821, 1820, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 3, 738, 369, 0, 1824, 1825, 3, 98, 49, 0, 1825, 1833, 1, 0, 0, 0, 1826, 1827, 5, 27, 0, 0, 1827, 1828, 5, 866, 0, 0, 1828, 1829, 3, 804, 402, 0, 1829, 1830, 5, 867, 0, 0, 1830, 1833, 1, 0, 0, 0, 1831, 1833, 3, 90, 45, 0, 1832, 1749, 1, 0, 0, 0, 1832, 1752, 1, 0, 0, 0, 1832, 1766, 1, 0, 0, 0, 1832, 1781, 1, 0, 0, 0, 1832, 1796, 1, 0, 0, 0, 1832, 1816, 1, 0, 0, 0, 1832, 1826, 1, 0, 0, 0, 1832, 1831, 1, 0, 0, 0, 1833, 89, 1, 0, 0, 0, 1834, 1836, 3, 92, 46, 0, 1835, 1834, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, 5, 27, 0, 0, 1838, 1839, 5, 866, 0, 0, 1839, 1840, 3, 804, 402, 0, 1840, 1845, 5, 867, 0, 0, 1841, 1843, 5, 114, 0, 0, 1842, 1841, 1, 0, 0, 0, 1842, 1843, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1846, 5, 57, 0, 0, 1845, 1842, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 91, 1, 0, 0, 0, 1847, 1849, 5, 31, 0, 0, 1848, 1850, 3, 706, 353, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 93, 1, 0, 0, 0, 1851, 1855, 3, 726, 363, 0, 1852, 1854, 3, 96, 48, 0, 1853, 1852, 1, 0, 0, 0, 1854, 1857, 1, 0, 0, 0, 1855, 1853, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 95, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1858, 1902, 3, 722, 361, 0, 1859, 1860, 5, 42, 0, 0, 1860, 1902, 3, 754, 377, 0, 1861, 1902, 5, 686, 0, 0, 1862, 1902, 5, 435, 0, 0, 1863, 1868, 5, 315, 0, 0, 1864, 1865, 5, 119, 0, 0, 1865, 1866, 5, 185, 0, 0, 1866, 1868, 3, 756, 378, 0, 1867, 1863, 1, 0, 0, 0, 1867, 1864, 1, 0, 0, 0, 1868, 1902, 1, 0, 0, 0, 1869, 1871, 5, 131, 0, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1902, 5, 92, 0, 0, 1873, 1875, 5, 182, 0, 0, 1874, 1876, 5, 92, 0, 0, 1875, 1874, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1902, 1, 0, 0, 0, 1877, 1878, 5, 340, 0, 0, 1878, 1902, 5, 882, 0, 0, 1879, 1880, 5, 338, 0, 0, 1880, 1902, 7, 21, 0, 0, 1881, 1882, 5, 647, 0, 0, 1882, 1902, 7, 22, 0, 0, 1883, 1902, 3, 98, 49, 0, 1884, 1885, 5, 28, 0, 0, 1885, 1902, 3, 690, 345, 0, 1886, 1887, 5, 71, 0, 0, 1887, 1889, 5, 9, 0, 0, 1888, 1886, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 5, 13, 0, 0, 1891, 1892, 5, 866, 0, 0, 1892, 1893, 3, 804, 402, 0, 1893, 1895, 5, 867, 0, 0, 1894, 1896, 7, 23, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1902, 1, 0, 0, 0, 1897, 1898, 5, 241, 0, 0, 1898, 1899, 5, 42, 0, 0, 1899, 1902, 5, 682, 0, 0, 1900, 1902, 3, 90, 45, 0, 1901, 1858, 1, 0, 0, 0, 1901, 1859, 1, 0, 0, 0, 1901, 1861, 1, 0, 0, 0, 1901, 1862, 1, 0, 0, 0, 1901, 1867, 1, 0, 0, 0, 1901, 1870, 1, 0, 0, 0, 1901, 1873, 1, 0, 0, 0, 1901, 1877, 1, 0, 0, 0, 1901, 1879, 1, 0, 0, 0, 1901, 1881, 1, 0, 0, 0, 1901, 1883, 1, 0, 0, 0, 1901, 1884, 1, 0, 0, 0, 1901, 1888, 1, 0, 0, 0, 1901, 1897, 1, 0, 0, 0, 1901, 1900, 1, 0, 0, 0, 1902, 97, 1, 0, 0, 0, 1903, 1904, 5, 138, 0, 0, 1904, 1906, 3, 652, 326, 0, 1905, 1907, 3, 738, 369, 0, 1906, 1905, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1909, 5, 110, 0, 0, 1909, 1911, 7, 24, 0, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1913, 1, 0, 0, 0, 1912, 1914, 3, 100, 50, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 99, 1, 0, 0, 0, 1915, 1916, 5, 119, 0, 0, 1916, 1917, 5, 44, 0, 0, 1917, 1921, 3, 102, 51, 0, 1918, 1919, 5, 119, 0, 0, 1919, 1920, 5, 185, 0, 0, 1920, 1922, 3, 102, 51, 0, 1921, 1918, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1932, 1, 0, 0, 0, 1923, 1924, 5, 119, 0, 0, 1924, 1925, 5, 185, 0, 0, 1925, 1929, 3, 102, 51, 0, 1926, 1927, 5, 119, 0, 0, 1927, 1928, 5, 44, 0, 0, 1928, 1930, 3, 102, 51, 0, 1929, 1926, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1932, 1, 0, 0, 0, 1931, 1915, 1, 0, 0, 0, 1931, 1923, 1, 0, 0, 0, 1932, 101, 1, 0, 0, 0, 1933, 1942, 5, 146, 0, 0, 1934, 1942, 5, 22, 0, 0, 1935, 1936, 5, 155, 0, 0, 1936, 1942, 5, 116, 0, 0, 1937, 1938, 5, 502, 0, 0, 1938, 1942, 5, 305, 0, 0, 1939, 1940, 5, 155, 0, 0, 1940, 1942, 5, 42, 0, 0, 1941, 1933, 1, 0, 0, 0, 1941, 1934, 1, 0, 0, 0, 1941, 1935, 1, 0, 0, 0, 1941, 1937, 1, 0, 0, 0, 1941, 1939, 1, 0, 0, 0, 1942, 103, 1, 0, 0, 0, 1943, 1945, 5, 380, 0, 0, 1944, 1946, 5, 857, 0, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1949, 3, 692, 346, 0, 1948, 1947, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 2129, 1, 0, 0, 0, 1950, 1952, 5, 825, 0, 0, 1951, 1953, 5, 857, 0, 0, 1952, 1951, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 2129, 5, 882, 0, 0, 1955, 1957, 5, 314, 0, 0, 1956, 1958, 5, 857, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 2129, 3, 712, 356, 0, 1960, 1962, 5, 315, 0, 0, 1961, 1963, 5, 857, 0, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 2129, 3, 712, 356, 0, 1965, 1967, 5, 316, 0, 0, 1966, 1968, 5, 857, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 2129, 3, 712, 356, 0, 1970, 1972, 5, 42, 0, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1975, 3, 58, 29, 0, 1974, 1976, 5, 857, 0, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1979, 1, 0, 0, 0, 1977, 1980, 3, 688, 344, 0, 1978, 1980, 5, 42, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1978, 1, 0, 0, 0, 1980, 2129, 1, 0, 0, 0, 1981, 1983, 7, 25, 0, 0, 1982, 1984, 5, 857, 0, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 2129, 7, 26, 0, 0, 1986, 1988, 5, 42, 0, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1991, 5, 28, 0, 0, 1990, 1992, 5, 857, 0, 0, 1991, 1990, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 2129, 3, 690, 345, 0, 1994, 1996, 5, 340, 0, 0, 1995, 1997, 5, 857, 0, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2129, 5, 882, 0, 0, 1999, 2001, 5, 346, 0, 0, 2000, 2002, 5, 857, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2129, 7, 27, 0, 0, 2004, 2006, 5, 349, 0, 0, 2005, 2007, 5, 857, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2129, 5, 882, 0, 0, 2009, 2010, 7, 28, 0, 0, 2010, 2012, 5, 367, 0, 0, 2011, 2013, 5, 857, 0, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2129, 5, 882, 0, 0, 2015, 2017, 5, 365, 0, 0, 2016, 2018, 5, 857, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2129, 7, 26, 0, 0, 2020, 2022, 5, 376, 0, 0, 2021, 2023, 5, 857, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2129, 5, 882, 0, 0, 2025, 2027, 7, 29, 0, 0, 2026, 2028, 5, 857, 0, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2129, 7, 26, 0, 0, 2030, 2032, 7, 30, 0, 0, 2031, 2033, 5, 857, 0, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2129, 3, 712, 356, 0, 2035, 2037, 5, 377, 0, 0, 2036, 2038, 5, 857, 0, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2129, 3, 712, 356, 0, 2040, 2041, 5, 82, 0, 0, 2041, 2043, 5, 367, 0, 0, 2042, 2044, 5, 857, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2129, 5, 882, 0, 0, 2046, 2048, 5, 431, 0, 0, 2047, 2049, 5, 857, 0, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2129, 7, 31, 0, 0, 2051, 2053, 5, 443, 0, 0, 2052, 2054, 5, 857, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2129, 3, 714, 357, 0, 2056, 2058, 5, 480, 0, 0, 2057, 2059, 5, 857, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2129, 3, 712, 356, 0, 2061, 2063, 5, 490, 0, 0, 2062, 2064, 5, 857, 0, 0, 2063, 2062, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2129, 3, 712, 356, 0, 2066, 2068, 5, 520, 0, 0, 2067, 2069, 5, 857, 0, 0, 2068, 2067, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2129, 7, 14, 0, 0, 2071, 2073, 5, 529, 0, 0, 2072, 2074, 5, 857, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2129, 5, 882, 0, 0, 2076, 2078, 5, 588, 0, 0, 2077, 2079, 5, 857, 0, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2129, 7, 32, 0, 0, 2081, 2082, 5, 640, 0, 0, 2082, 2129, 5, 664, 0, 0, 2083, 2085, 5, 833, 0, 0, 2084, 2086, 5, 857, 0, 0, 2085, 2084, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2129, 5, 882, 0, 0, 2088, 2090, 5, 642, 0, 0, 2089, 2091, 5, 857, 0, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2129, 7, 14, 0, 0, 2093, 2095, 5, 643, 0, 0, 2094, 2096, 5, 857, 0, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2129, 7, 14, 0, 0, 2098, 2100, 5, 644, 0, 0, 2099, 2101, 5, 857, 0, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2104, 1, 0, 0, 0, 2102, 2105, 5, 42, 0, 0, 2103, 2105, 3, 712, 356, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2103, 1, 0, 0, 0, 2105, 2129, 1, 0, 0, 0, 2106, 2107, 5, 658, 0, 0, 2107, 2109, 3, 666, 333, 0, 2108, 2110, 3, 108, 54, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2129, 1, 0, 0, 0, 2111, 2112, 5, 659, 0, 0, 2112, 2113, 5, 857, 0, 0, 2113, 2129, 3, 106, 53, 0, 2114, 2129, 3, 108, 54, 0, 2115, 2117, 5, 665, 0, 0, 2116, 2118, 5, 857, 0, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2129, 7, 26, 0, 0, 2120, 2122, 5, 181, 0, 0, 2121, 2123, 5, 857, 0, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2125, 5, 866, 0, 0, 2125, 2126, 3, 650, 325, 0, 2126, 2127, 5, 867, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 1943, 1, 0, 0, 0, 2128, 1950, 1, 0, 0, 0, 2128, 1955, 1, 0, 0, 0, 2128, 1960, 1, 0, 0, 0, 2128, 1965, 1, 0, 0, 0, 2128, 1971, 1, 0, 0, 0, 2128, 1981, 1, 0, 0, 0, 2128, 1987, 1, 0, 0, 0, 2128, 1994, 1, 0, 0, 0, 2128, 1999, 1, 0, 0, 0, 2128, 2004, 1, 0, 0, 0, 2128, 2009, 1, 0, 0, 0, 2128, 2015, 1, 0, 0, 0, 2128, 2020, 1, 0, 0, 0, 2128, 2025, 1, 0, 0, 0, 2128, 2030, 1, 0, 0, 0, 2128, 2035, 1, 0, 0, 0, 2128, 2040, 1, 0, 0, 0, 2128, 2046, 1, 0, 0, 0, 2128, 2051, 1, 0, 0, 0, 2128, 2056, 1, 0, 0, 0, 2128, 2061, 1, 0, 0, 0, 2128, 2066, 1, 0, 0, 0, 2128, 2071, 1, 0, 0, 0, 2128, 2076, 1, 0, 0, 0, 2128, 2081, 1, 0, 0, 0, 2128, 2083, 1, 0, 0, 0, 2128, 2088, 1, 0, 0, 0, 2128, 2093, 1, 0, 0, 0, 2128, 2098, 1, 0, 0, 0, 2128, 2106, 1, 0, 0, 0, 2128, 2111, 1, 0, 0, 0, 2128, 2114, 1, 0, 0, 0, 2128, 2115, 1, 0, 0, 0, 2128, 2120, 1, 0, 0, 0, 2129, 105, 1, 0, 0, 0, 2130, 2131, 7, 33, 0, 0, 2131, 107, 1, 0, 0, 0, 2132, 2133, 5, 647, 0, 0, 2133, 2134, 7, 22, 0, 0, 2134, 109, 1, 0, 0, 0, 2135, 2136, 5, 130, 0, 0, 2136, 2137, 5, 20, 0, 0, 2137, 2140, 3, 112, 56, 0, 2138, 2139, 5, 528, 0, 0, 2139, 2141, 3, 712, 356, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2149, 1, 0, 0, 0, 2142, 2143, 5, 652, 0, 0, 2143, 2144, 5, 20, 0, 0, 2144, 2147, 3, 114, 57, 0, 2145, 2146, 5, 653, 0, 0, 2146, 2148, 3, 712, 356, 0, 2147, 2145, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2142, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2162, 1, 0, 0, 0, 2151, 2152, 5, 866, 0, 0, 2152, 2157, 3, 116, 58, 0, 2153, 2154, 5, 868, 0, 0, 2154, 2156, 3, 116, 58, 0, 2155, 2153, 1, 0, 0, 0, 2156, 2159, 1, 0, 0, 0, 2157, 2155, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2160, 2161, 5, 867, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2151, 1, 0, 0, 0, 2162, 2163, 1, 0, 0, 0, 2163, 111, 1, 0, 0, 0, 2164, 2166, 5, 101, 0, 0, 2165, 2164, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 2168, 5, 418, 0, 0, 2168, 2169, 5, 866, 0, 0, 2169, 2170, 3, 804, 402, 0, 2170, 2171, 5, 867, 0, 0, 2171, 2211, 1, 0, 0, 0, 2172, 2174, 5, 101, 0, 0, 2173, 2172, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2179, 5, 92, 0, 0, 2176, 2177, 5, 308, 0, 0, 2177, 2178, 5, 857, 0, 0, 2178, 2180, 7, 34, 0, 0, 2179, 2176, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2183, 5, 866, 0, 0, 2182, 2184, 3, 660, 330, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2211, 5, 867, 0, 0, 2186, 2196, 5, 134, 0, 0, 2187, 2188, 5, 866, 0, 0, 2188, 2189, 3, 804, 402, 0, 2189, 2190, 5, 867, 0, 0, 2190, 2197, 1, 0, 0, 0, 2191, 2192, 5, 337, 0, 0, 2192, 2193, 5, 866, 0, 0, 2193, 2194, 3, 660, 330, 0, 2194, 2195, 5, 867, 0, 0, 2195, 2197, 1, 0, 0, 0, 2196, 2187, 1, 0, 0, 0, 2196, 2191, 1, 0, 0, 0, 2197, 2211, 1, 0, 0, 0, 2198, 2208, 5, 449, 0, 0, 2199, 2200, 5, 866, 0, 0, 2200, 2201, 3, 804, 402, 0, 2201, 2202, 5, 867, 0, 0, 2202, 2209, 1, 0, 0, 0, 2203, 2204, 5, 337, 0, 0, 2204, 2205, 5, 866, 0, 0, 2205, 2206, 3, 660, 330, 0, 2206, 2207, 5, 867, 0, 0, 2207, 2209, 1, 0, 0, 0, 2208, 2199, 1, 0, 0, 0, 2208, 2203, 1, 0, 0, 0, 2209, 2211, 1, 0, 0, 0, 2210, 2165, 1, 0, 0, 0, 2210, 2173, 1, 0, 0, 0, 2210, 2186, 1, 0, 0, 0, 2210, 2198, 1, 0, 0, 0, 2211, 113, 1, 0, 0, 0, 2212, 2214, 5, 101, 0, 0, 2213, 2212, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 5, 418, 0, 0, 2216, 2217, 5, 866, 0, 0, 2217, 2218, 3, 804, 402, 0, 2218, 2219, 5, 867, 0, 0, 2219, 2234, 1, 0, 0, 0, 2220, 2222, 5, 101, 0, 0, 2221, 2220, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2227, 5, 92, 0, 0, 2224, 2225, 5, 308, 0, 0, 2225, 2226, 5, 857, 0, 0, 2226, 2228, 7, 34, 0, 0, 2227, 2224, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2230, 5, 866, 0, 0, 2230, 2231, 3, 660, 330, 0, 2231, 2232, 5, 867, 0, 0, 2232, 2234, 1, 0, 0, 0, 2233, 2213, 1, 0, 0, 0, 2233, 2221, 1, 0, 0, 0, 2234, 115, 1, 0, 0, 0, 2235, 2236, 5, 130, 0, 0, 2236, 2237, 3, 672, 336, 0, 2237, 2238, 5, 189, 0, 0, 2238, 2239, 5, 447, 0, 0, 2239, 2240, 5, 662, 0, 0, 2240, 2241, 5, 866, 0, 0, 2241, 2246, 3, 118, 59, 0, 2242, 2243, 5, 868, 0, 0, 2243, 2245, 3, 118, 59, 0, 2244, 2242, 1, 0, 0, 0, 2245, 2248, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2249, 1, 0, 0, 0, 2248, 2246, 1, 0, 0, 0, 2249, 2253, 5, 867, 0, 0, 2250, 2252, 3, 124, 62, 0, 2251, 2250, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2267, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 866, 0, 0, 2257, 2262, 3, 122, 61, 0, 2258, 2259, 5, 868, 0, 0, 2259, 2261, 3, 122, 61, 0, 2260, 2258, 1, 0, 0, 0, 2261, 2264, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2265, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2266, 5, 867, 0, 0, 2266, 2268, 1, 0, 0, 0, 2267, 2256, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2382, 1, 0, 0, 0, 2269, 2270, 5, 130, 0, 0, 2270, 2271, 3, 672, 336, 0, 2271, 2272, 5, 189, 0, 0, 2272, 2273, 5, 447, 0, 0, 2273, 2274, 5, 662, 0, 0, 2274, 2278, 3, 118, 59, 0, 2275, 2277, 3, 124, 62, 0, 2276, 2275, 1, 0, 0, 0, 2277, 2280, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2292, 1, 0, 0, 0, 2280, 2278, 1, 0, 0, 0, 2281, 2282, 5, 866, 0, 0, 2282, 2287, 3, 122, 61, 0, 2283, 2284, 5, 868, 0, 0, 2284, 2286, 3, 122, 61, 0, 2285, 2283, 1, 0, 0, 0, 2286, 2289, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2290, 1, 0, 0, 0, 2289, 2287, 1, 0, 0, 0, 2290, 2291, 5, 867, 0, 0, 2291, 2293, 1, 0, 0, 0, 2292, 2281, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2382, 1, 0, 0, 0, 2294, 2295, 5, 130, 0, 0, 2295, 2296, 3, 672, 336, 0, 2296, 2297, 5, 189, 0, 0, 2297, 2298, 5, 80, 0, 0, 2298, 2299, 5, 866, 0, 0, 2299, 2304, 3, 118, 59, 0, 2300, 2301, 5, 868, 0, 0, 2301, 2303, 3, 118, 59, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2306, 1, 0, 0, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2307, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2307, 2311, 5, 867, 0, 0, 2308, 2310, 3, 124, 62, 0, 2309, 2308, 1, 0, 0, 0, 2310, 2313, 1, 0, 0, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2325, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2314, 2315, 5, 866, 0, 0, 2315, 2320, 3, 122, 61, 0, 2316, 2317, 5, 868, 0, 0, 2317, 2319, 3, 122, 61, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2322, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2323, 2324, 5, 867, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2314, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2382, 1, 0, 0, 0, 2327, 2328, 5, 130, 0, 0, 2328, 2329, 3, 672, 336, 0, 2329, 2330, 5, 189, 0, 0, 2330, 2331, 5, 80, 0, 0, 2331, 2332, 5, 866, 0, 0, 2332, 2337, 3, 120, 60, 0, 2333, 2334, 5, 868, 0, 0, 2334, 2336, 3, 120, 60, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2339, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2340, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2340, 2344, 5, 867, 0, 0, 2341, 2343, 3, 124, 62, 0, 2342, 2341, 1, 0, 0, 0, 2343, 2346, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2358, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2347, 2348, 5, 866, 0, 0, 2348, 2353, 3, 122, 61, 0, 2349, 2350, 5, 868, 0, 0, 2350, 2352, 3, 122, 61, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2355, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2356, 2357, 5, 867, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2347, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2382, 1, 0, 0, 0, 2360, 2361, 5, 130, 0, 0, 2361, 2365, 3, 672, 336, 0, 2362, 2364, 3, 124, 62, 0, 2363, 2362, 1, 0, 0, 0, 2364, 2367, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2379, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2368, 2369, 5, 866, 0, 0, 2369, 2374, 3, 122, 61, 0, 2370, 2371, 5, 868, 0, 0, 2371, 2373, 3, 122, 61, 0, 2372, 2370, 1, 0, 0, 0, 2373, 2376, 1, 0, 0, 0, 2374, 2372, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2377, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2377, 2378, 5, 867, 0, 0, 2378, 2380, 1, 0, 0, 0, 2379, 2368, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2235, 1, 0, 0, 0, 2381, 2269, 1, 0, 0, 0, 2381, 2294, 1, 0, 0, 0, 2381, 2327, 1, 0, 0, 0, 2381, 2360, 1, 0, 0, 0, 2382, 117, 1, 0, 0, 0, 2383, 2387, 3, 724, 362, 0, 2384, 2387, 3, 804, 402, 0, 2385, 2387, 5, 111, 0, 0, 2386, 2383, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2385, 1, 0, 0, 0, 2387, 119, 1, 0, 0, 0, 2388, 2389, 5, 866, 0, 0, 2389, 2392, 3, 118, 59, 0, 2390, 2391, 5, 868, 0, 0, 2391, 2393, 3, 118, 59, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2397, 5, 867, 0, 0, 2397, 121, 1, 0, 0, 0, 2398, 2399, 5, 652, 0, 0, 2399, 2403, 3, 706, 353, 0, 2400, 2402, 3, 124, 62, 0, 2401, 2400, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 123, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2408, 5, 42, 0, 0, 2407, 2406, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2410, 1, 0, 0, 0, 2409, 2411, 5, 647, 0, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 5, 380, 0, 0, 2413, 2415, 5, 857, 0, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2455, 3, 692, 346, 0, 2417, 2419, 5, 340, 0, 0, 2418, 2420, 5, 857, 0, 0, 2419, 2418, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2455, 5, 882, 0, 0, 2422, 2423, 5, 360, 0, 0, 2423, 2425, 5, 367, 0, 0, 2424, 2426, 5, 857, 0, 0, 2425, 2424, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2455, 5, 882, 0, 0, 2428, 2429, 5, 82, 0, 0, 2429, 2431, 5, 367, 0, 0, 2430, 2432, 5, 857, 0, 0, 2431, 2430, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2455, 5, 882, 0, 0, 2434, 2436, 5, 480, 0, 0, 2435, 2437, 5, 857, 0, 0, 2436, 2435, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2455, 3, 712, 356, 0, 2439, 2441, 5, 490, 0, 0, 2440, 2442, 5, 857, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2455, 3, 712, 356, 0, 2444, 2446, 5, 658, 0, 0, 2445, 2447, 5, 857, 0, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2455, 3, 666, 333, 0, 2449, 2451, 5, 504, 0, 0, 2450, 2452, 5, 857, 0, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2455, 3, 706, 353, 0, 2454, 2407, 1, 0, 0, 0, 2454, 2417, 1, 0, 0, 0, 2454, 2422, 1, 0, 0, 0, 2454, 2428, 1, 0, 0, 0, 2454, 2434, 1, 0, 0, 0, 2454, 2439, 1, 0, 0, 0, 2454, 2444, 1, 0, 0, 0, 2454, 2449, 1, 0, 0, 0, 2455, 125, 1, 0, 0, 0, 2456, 2457, 5, 8, 0, 0, 2457, 2459, 7, 0, 0, 0, 2458, 2460, 3, 628, 314, 0, 2459, 2458, 1, 0, 0, 0, 2459, 2460, 1, 0, 0, 0, 2460, 2462, 1, 0, 0, 0, 2461, 2463, 3, 56, 28, 0, 2462, 2461, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2475, 1, 0, 0, 0, 2466, 2467, 5, 8, 0, 0, 2467, 2468, 7, 0, 0, 0, 2468, 2469, 3, 628, 314, 0, 2469, 2470, 5, 677, 0, 0, 2470, 2471, 5, 360, 0, 0, 2471, 2472, 5, 367, 0, 0, 2472, 2473, 5, 496, 0, 0, 2473, 2475, 1, 0, 0, 0, 2474, 2456, 1, 0, 0, 0, 2474, 2466, 1, 0, 0, 0, 2475, 127, 1, 0, 0, 0, 2476, 2478, 5, 8, 0, 0, 2477, 2479, 3, 62, 31, 0, 2478, 2477, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2481, 5, 385, 0, 0, 2481, 2485, 3, 702, 351, 0, 2482, 2483, 5, 119, 0, 0, 2483, 2484, 5, 590, 0, 0, 2484, 2486, 3, 64, 32, 0, 2485, 2482, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2493, 1, 0, 0, 0, 2487, 2488, 5, 119, 0, 0, 2488, 2490, 5, 343, 0, 0, 2489, 2491, 5, 114, 0, 0, 2490, 2489, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 5, 541, 0, 0, 2493, 2487, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2498, 1, 0, 0, 0, 2495, 2496, 5, 141, 0, 0, 2496, 2497, 5, 176, 0, 0, 2497, 2499, 3, 702, 351, 0, 2498, 2495, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2501, 1, 0, 0, 0, 2500, 2502, 3, 72, 36, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2505, 1, 0, 0, 0, 2503, 2504, 5, 340, 0, 0, 2504, 2506, 5, 882, 0, 0, 2505, 2503, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2509, 1, 0, 0, 0, 2507, 2508, 5, 371, 0, 0, 2508, 2510, 3, 422, 211, 0, 2509, 2507, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 129, 1, 0, 0, 0, 2511, 2512, 5, 8, 0, 0, 2512, 2513, 5, 409, 0, 0, 2513, 2517, 3, 632, 316, 0, 2514, 2516, 3, 82, 41, 0, 2515, 2514, 1, 0, 0, 0, 2516, 2519, 1, 0, 0, 0, 2517, 2515, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 131, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2520, 2521, 5, 8, 0, 0, 2521, 2522, 5, 433, 0, 0, 2522, 2523, 5, 585, 0, 0, 2523, 2524, 5, 801, 0, 0, 2524, 2525, 5, 453, 0, 0, 2525, 2526, 5, 92, 0, 0, 2526, 133, 1, 0, 0, 0, 2527, 2528, 5, 8, 0, 0, 2528, 2529, 5, 451, 0, 0, 2529, 2530, 5, 74, 0, 0, 2530, 2531, 3, 706, 353, 0, 2531, 2532, 5, 6, 0, 0, 2532, 2533, 5, 671, 0, 0, 2533, 2539, 5, 882, 0, 0, 2534, 2536, 5, 428, 0, 0, 2535, 2537, 5, 857, 0, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2540, 3, 714, 357, 0, 2539, 2534, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 5, 687, 0, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 5, 380, 0, 0, 2545, 2547, 5, 857, 0, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2549, 3, 692, 346, 0, 2549, 135, 1, 0, 0, 0, 2550, 2551, 5, 8, 0, 0, 2551, 2552, 5, 132, 0, 0, 2552, 2556, 3, 702, 351, 0, 2553, 2555, 3, 82, 41, 0, 2554, 2553, 1, 0, 0, 0, 2555, 2558, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 137, 1, 0, 0, 0, 2558, 2556, 1, 0, 0, 0, 2559, 2560, 5, 8, 0, 0, 2560, 2561, 5, 592, 0, 0, 2561, 2562, 3, 706, 353, 0, 2562, 2563, 5, 518, 0, 0, 2563, 2564, 5, 866, 0, 0, 2564, 2569, 3, 84, 42, 0, 2565, 2566, 5, 868, 0, 0, 2566, 2568, 3, 84, 42, 0, 2567, 2565, 1, 0, 0, 0, 2568, 2571, 1, 0, 0, 0, 2569, 2567, 1, 0, 0, 0, 2569, 2570, 1, 0, 0, 0, 2570, 2572, 1, 0, 0, 0, 2571, 2569, 1, 0, 0, 0, 2572, 2573, 5, 867, 0, 0, 2573, 139, 1, 0, 0, 0, 2574, 2575, 5, 8, 0, 0, 2575, 2576, 5, 173, 0, 0, 2576, 2585, 3, 652, 326, 0, 2577, 2582, 3, 146, 73, 0, 2578, 2579, 5, 868, 0, 0, 2579, 2581, 3, 146, 73, 0, 2580, 2578, 1, 0, 0, 0, 2581, 2584, 1, 0, 0, 0, 2582, 2580, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2586, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2585, 2577, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2594, 1, 0, 0, 0, 2587, 2591, 3, 148, 74, 0, 2588, 2590, 3, 148, 74, 0, 2589, 2588, 1, 0, 0, 0, 2590, 2593, 1, 0, 0, 0, 2591, 2589, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2595, 1, 0, 0, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2587, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 141, 1, 0, 0, 0, 2596, 2598, 5, 8, 0, 0, 2597, 2599, 5, 180, 0, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 658, 0, 0, 2601, 2602, 3, 666, 333, 0, 2602, 2603, 7, 35, 0, 0, 2603, 2604, 5, 361, 0, 0, 2604, 2610, 5, 882, 0, 0, 2605, 2607, 5, 428, 0, 0, 2606, 2608, 5, 857, 0, 0, 2607, 2606, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2611, 3, 714, 357, 0, 2610, 2605, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 5, 687, 0, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2618, 1, 0, 0, 0, 2615, 2616, 5, 141, 0, 0, 2616, 2617, 5, 176, 0, 0, 2617, 2619, 3, 664, 332, 0, 2618, 2615, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2625, 1, 0, 0, 0, 2620, 2622, 5, 314, 0, 0, 2621, 2623, 5, 857, 0, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2626, 3, 714, 357, 0, 2625, 2620, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2628, 5, 155, 0, 0, 2628, 2630, 7, 36, 0, 0, 2629, 2627, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2636, 1, 0, 0, 0, 2631, 2633, 5, 376, 0, 0, 2632, 2634, 5, 857, 0, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2637, 5, 882, 0, 0, 2636, 2631, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2643, 1, 0, 0, 0, 2638, 2640, 5, 380, 0, 0, 2639, 2641, 5, 857, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 3, 692, 346, 0, 2643, 2638, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2650, 1, 0, 0, 0, 2645, 2647, 5, 825, 0, 0, 2646, 2648, 5, 857, 0, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 5, 882, 0, 0, 2650, 2645, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 143, 1, 0, 0, 0, 2652, 2656, 5, 8, 0, 0, 2653, 2654, 5, 308, 0, 0, 2654, 2655, 5, 857, 0, 0, 2655, 2657, 7, 11, 0, 0, 2656, 2653, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2660, 3, 62, 31, 0, 2659, 2658, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2664, 1, 0, 0, 0, 2661, 2662, 5, 162, 0, 0, 2662, 2663, 5, 591, 0, 0, 2663, 2665, 7, 12, 0, 0, 2664, 2661, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 5, 684, 0, 0, 2667, 2672, 3, 636, 318, 0, 2668, 2669, 5, 866, 0, 0, 2669, 2670, 3, 660, 330, 0, 2670, 2671, 5, 867, 0, 0, 2671, 2673, 1, 0, 0, 0, 2672, 2668, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 5, 13, 0, 0, 2675, 2682, 3, 210, 105, 0, 2676, 2678, 5, 194, 0, 0, 2677, 2679, 7, 13, 0, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2681, 5, 27, 0, 0, 2681, 2683, 5, 121, 0, 0, 2682, 2676, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 145, 1, 0, 0, 0, 2684, 2691, 3, 104, 52, 0, 2685, 2687, 5, 868, 0, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 3, 104, 52, 0, 2689, 2686, 1, 0, 0, 0, 2690, 2693, 1, 0, 0, 0, 2691, 2689, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2949, 1, 0, 0, 0, 2693, 2691, 1, 0, 0, 0, 2694, 2696, 5, 6, 0, 0, 2695, 2697, 5, 29, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 3, 662, 331, 0, 2699, 2703, 3, 94, 47, 0, 2700, 2704, 5, 402, 0, 0, 2701, 2702, 5, 306, 0, 0, 2702, 2704, 3, 662, 331, 0, 2703, 2700, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2949, 1, 0, 0, 0, 2705, 2707, 5, 6, 0, 0, 2706, 2708, 5, 29, 0, 0, 2707, 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2710, 5, 866, 0, 0, 2710, 2711, 3, 662, 331, 0, 2711, 2718, 3, 94, 47, 0, 2712, 2713, 5, 868, 0, 0, 2713, 2714, 3, 662, 331, 0, 2714, 2715, 3, 94, 47, 0, 2715, 2717, 1, 0, 0, 0, 2716, 2712, 1, 0, 0, 0, 2717, 2720, 1, 0, 0, 0, 2718, 2716, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2721, 1, 0, 0, 0, 2720, 2718, 1, 0, 0, 0, 2721, 2722, 5, 867, 0, 0, 2722, 2949, 1, 0, 0, 0, 2723, 2724, 5, 6, 0, 0, 2724, 2726, 7, 19, 0, 0, 2725, 2727, 3, 642, 321, 0, 2726, 2725, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 2729, 1, 0, 0, 0, 2728, 2730, 3, 74, 37, 0, 2729, 2728, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2735, 3, 738, 369, 0, 2732, 2734, 3, 76, 38, 0, 2733, 2732, 1, 0, 0, 0, 2734, 2737, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, 0, 2736, 2949, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 2739, 5, 6, 0, 0, 2739, 2741, 7, 20, 0, 0, 2740, 2742, 7, 19, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2744, 1, 0, 0, 0, 2743, 2745, 3, 642, 321, 0, 2744, 2743, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2750, 3, 738, 369, 0, 2747, 2749, 3, 76, 38, 0, 2748, 2747, 1, 0, 0, 0, 2749, 2752, 1, 0, 0, 0, 2750, 2748, 1, 0, 0, 0, 2750, 2751, 1, 0, 0, 0, 2751, 2949, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2753, 2758, 5, 6, 0, 0, 2754, 2756, 5, 31, 0, 0, 2755, 2757, 3, 706, 353, 0, 2756, 2755, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2759, 1, 0, 0, 0, 2758, 2754, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2761, 5, 131, 0, 0, 2761, 2763, 5, 92, 0, 0, 2762, 2764, 3, 74, 37, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2769, 3, 738, 369, 0, 2766, 2768, 3, 76, 38, 0, 2767, 2766, 1, 0, 0, 0, 2768, 2771, 1, 0, 0, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2949, 1, 0, 0, 0, 2771, 2769, 1, 0, 0, 0, 2772, 2777, 5, 6, 0, 0, 2773, 2775, 5, 31, 0, 0, 2774, 2776, 3, 706, 353, 0, 2775, 2774, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2778, 1, 0, 0, 0, 2777, 2773, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2779, 1, 0, 0, 0, 2779, 2781, 5, 182, 0, 0, 2780, 2782, 7, 19, 0, 0, 2781, 2780, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2784, 1, 0, 0, 0, 2783, 2785, 3, 642, 321, 0, 2784, 2783, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2787, 1, 0, 0, 0, 2786, 2788, 3, 74, 37, 0, 2787, 2786, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2793, 3, 738, 369, 0, 2790, 2792, 3, 76, 38, 0, 2791, 2790, 1, 0, 0, 0, 2792, 2795, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2949, 1, 0, 0, 0, 2795, 2793, 1, 0, 0, 0, 2796, 2801, 5, 6, 0, 0, 2797, 2799, 5, 31, 0, 0, 2798, 2800, 3, 706, 353, 0, 2799, 2798, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2802, 1, 0, 0, 0, 2801, 2797, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2804, 5, 67, 0, 0, 2804, 2806, 5, 92, 0, 0, 2805, 2807, 3, 642, 321, 0, 2806, 2805, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2809, 3, 738, 369, 0, 2809, 2810, 3, 98, 49, 0, 2810, 2949, 1, 0, 0, 0, 2811, 2813, 5, 6, 0, 0, 2812, 2814, 3, 90, 45, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2949, 1, 0, 0, 0, 2815, 2816, 5, 51, 0, 0, 2816, 2817, 7, 37, 0, 0, 2817, 2949, 3, 706, 353, 0, 2818, 2819, 5, 8, 0, 0, 2819, 2820, 7, 37, 0, 0, 2820, 2822, 3, 706, 353, 0, 2821, 2823, 5, 114, 0, 0, 2822, 2821, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2825, 1, 0, 0, 0, 2824, 2826, 5, 57, 0, 0, 2825, 2824, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 2949, 1, 0, 0, 0, 2827, 2829, 5, 308, 0, 0, 2828, 2830, 5, 857, 0, 0, 2829, 2828, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 2831, 1, 0, 0, 0, 2831, 2949, 7, 38, 0, 0, 2832, 2834, 5, 8, 0, 0, 2833, 2835, 5, 29, 0, 0, 2834, 2833, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2844, 3, 662, 331, 0, 2837, 2838, 5, 155, 0, 0, 2838, 2839, 5, 42, 0, 0, 2839, 2845, 3, 754, 377, 0, 2840, 2841, 5, 155, 0, 0, 2841, 2845, 7, 17, 0, 0, 2842, 2843, 5, 51, 0, 0, 2843, 2845, 5, 42, 0, 0, 2844, 2837, 1, 0, 0, 0, 2844, 2840, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2845, 2949, 1, 0, 0, 0, 2846, 2847, 5, 8, 0, 0, 2847, 2848, 5, 82, 0, 0, 2848, 2849, 3, 642, 321, 0, 2849, 2850, 7, 17, 0, 0, 2850, 2949, 1, 0, 0, 0, 2851, 2853, 5, 25, 0, 0, 2852, 2854, 5, 29, 0, 0, 2853, 2852, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, 2856, 3, 662, 331, 0, 2856, 2857, 3, 658, 329, 0, 2857, 2861, 3, 94, 47, 0, 2858, 2862, 5, 402, 0, 0, 2859, 2860, 5, 306, 0, 0, 2860, 2862, 3, 662, 331, 0, 2861, 2858, 1, 0, 0, 0, 2861, 2859, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 2949, 1, 0, 0, 0, 2863, 2865, 5, 42, 0, 0, 2864, 2863, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2866, 1, 0, 0, 0, 2866, 2867, 5, 26, 0, 0, 2867, 2868, 5, 155, 0, 0, 2868, 2869, 5, 857, 0, 0, 2869, 2875, 3, 688, 344, 0, 2870, 2872, 5, 28, 0, 0, 2871, 2873, 5, 857, 0, 0, 2872, 2871, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2876, 3, 690, 345, 0, 2875, 2870, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2949, 1, 0, 0, 0, 2877, 2878, 5, 33, 0, 0, 2878, 2882, 5, 176, 0, 0, 2879, 2883, 5, 823, 0, 0, 2880, 2881, 5, 26, 0, 0, 2881, 2883, 5, 155, 0, 0, 2882, 2879, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2887, 3, 688, 344, 0, 2885, 2886, 5, 28, 0, 0, 2886, 2888, 3, 690, 345, 0, 2887, 2885, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2949, 1, 0, 0, 0, 2889, 2890, 7, 39, 0, 0, 2890, 2949, 5, 93, 0, 0, 2891, 2892, 7, 40, 0, 0, 2892, 2949, 5, 658, 0, 0, 2893, 2895, 5, 51, 0, 0, 2894, 2896, 5, 29, 0, 0, 2895, 2894, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2949, 3, 662, 331, 0, 2898, 2899, 5, 51, 0, 0, 2899, 2900, 7, 19, 0, 0, 2900, 2949, 3, 642, 321, 0, 2901, 2902, 5, 51, 0, 0, 2902, 2903, 5, 131, 0, 0, 2903, 2949, 5, 92, 0, 0, 2904, 2905, 5, 51, 0, 0, 2905, 2906, 5, 67, 0, 0, 2906, 2907, 5, 92, 0, 0, 2907, 2949, 3, 706, 353, 0, 2908, 2949, 5, 66, 0, 0, 2909, 2911, 5, 104, 0, 0, 2910, 2912, 5, 857, 0, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2949, 7, 4, 0, 0, 2914, 2916, 5, 492, 0, 0, 2915, 2917, 5, 29, 0, 0, 2916, 2915, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2919, 3, 662, 331, 0, 2919, 2923, 3, 94, 47, 0, 2920, 2924, 5, 402, 0, 0, 2921, 2922, 5, 306, 0, 0, 2922, 2924, 3, 662, 331, 0, 2923, 2920, 1, 0, 0, 0, 2923, 2921, 1, 0, 0, 0, 2923, 2924, 1, 0, 0, 0, 2924, 2949, 1, 0, 0, 0, 2925, 2926, 5, 125, 0, 0, 2926, 2927, 5, 20, 0, 0, 2927, 2949, 3, 660, 330, 0, 2928, 2929, 5, 141, 0, 0, 2929, 2930, 5, 29, 0, 0, 2930, 2931, 3, 662, 331, 0, 2931, 2932, 5, 176, 0, 0, 2932, 2933, 3, 658, 329, 0, 2933, 2949, 1, 0, 0, 0, 2934, 2935, 5, 141, 0, 0, 2935, 2936, 7, 19, 0, 0, 2936, 2937, 3, 642, 321, 0, 2937, 2938, 5, 176, 0, 0, 2938, 2939, 3, 638, 319, 0, 2939, 2949, 1, 0, 0, 0, 2940, 2942, 5, 141, 0, 0, 2941, 2943, 7, 41, 0, 0, 2942, 2941, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2944, 1, 0, 0, 0, 2944, 2949, 3, 648, 324, 0, 2945, 2946, 7, 42, 0, 0, 2946, 2949, 5, 681, 0, 0, 2947, 2949, 3, 148, 74, 0, 2948, 2684, 1, 0, 0, 0, 2948, 2694, 1, 0, 0, 0, 2948, 2705, 1, 0, 0, 0, 2948, 2723, 1, 0, 0, 0, 2948, 2738, 1, 0, 0, 0, 2948, 2753, 1, 0, 0, 0, 2948, 2772, 1, 0, 0, 0, 2948, 2796, 1, 0, 0, 0, 2948, 2811, 1, 0, 0, 0, 2948, 2815, 1, 0, 0, 0, 2948, 2818, 1, 0, 0, 0, 2948, 2827, 1, 0, 0, 0, 2948, 2832, 1, 0, 0, 0, 2948, 2846, 1, 0, 0, 0, 2948, 2851, 1, 0, 0, 0, 2948, 2864, 1, 0, 0, 0, 2948, 2877, 1, 0, 0, 0, 2948, 2889, 1, 0, 0, 0, 2948, 2891, 1, 0, 0, 0, 2948, 2893, 1, 0, 0, 0, 2948, 2898, 1, 0, 0, 0, 2948, 2901, 1, 0, 0, 0, 2948, 2904, 1, 0, 0, 0, 2948, 2908, 1, 0, 0, 0, 2948, 2909, 1, 0, 0, 0, 2948, 2914, 1, 0, 0, 0, 2948, 2925, 1, 0, 0, 0, 2948, 2928, 1, 0, 0, 0, 2948, 2934, 1, 0, 0, 0, 2948, 2940, 1, 0, 0, 0, 2948, 2945, 1, 0, 0, 0, 2948, 2947, 1, 0, 0, 0, 2949, 147, 1, 0, 0, 0, 2950, 2951, 5, 6, 0, 0, 2951, 2952, 5, 130, 0, 0, 2952, 2953, 5, 866, 0, 0, 2953, 2958, 3, 116, 58, 0, 2954, 2955, 5, 868, 0, 0, 2955, 2957, 3, 116, 58, 0, 2956, 2954, 1, 0, 0, 0, 2957, 2960, 1, 0, 0, 0, 2958, 2956, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2961, 1, 0, 0, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2962, 5, 867, 0, 0, 2962, 3049, 1, 0, 0, 0, 2963, 2964, 5, 51, 0, 0, 2964, 2965, 5, 130, 0, 0, 2965, 3049, 3, 670, 335, 0, 2966, 2967, 5, 369, 0, 0, 2967, 2970, 5, 130, 0, 0, 2968, 2971, 3, 670, 335, 0, 2969, 2971, 5, 7, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2969, 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 3049, 5, 658, 0, 0, 2973, 2974, 5, 425, 0, 0, 2974, 2977, 5, 130, 0, 0, 2975, 2978, 3, 670, 335, 0, 2976, 2978, 5, 7, 0, 0, 2977, 2975, 1, 0, 0, 0, 2977, 2976, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 3049, 5, 658, 0, 0, 2980, 2981, 5, 668, 0, 0, 2981, 2984, 5, 130, 0, 0, 2982, 2985, 3, 670, 335, 0, 2983, 2985, 5, 7, 0, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2983, 1, 0, 0, 0, 2985, 3049, 1, 0, 0, 0, 2986, 2987, 5, 335, 0, 0, 2987, 2988, 5, 130, 0, 0, 2988, 3049, 3, 712, 356, 0, 2989, 2990, 5, 561, 0, 0, 2990, 2991, 5, 130, 0, 0, 2991, 2992, 3, 670, 335, 0, 2992, 2993, 5, 88, 0, 0, 2993, 2994, 5, 866, 0, 0, 2994, 2999, 3, 116, 58, 0, 2995, 2996, 5, 868, 0, 0, 2996, 2998, 3, 116, 58, 0, 2997, 2995, 1, 0, 0, 0, 2998, 3001, 1, 0, 0, 0, 2999, 2997, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3002, 1, 0, 0, 0, 3001, 2999, 1, 0, 0, 0, 3002, 3003, 5, 867, 0, 0, 3003, 3049, 1, 0, 0, 0, 3004, 3005, 5, 388, 0, 0, 3005, 3006, 5, 130, 0, 0, 3006, 3007, 3, 672, 336, 0, 3007, 3008, 5, 194, 0, 0, 3008, 3009, 5, 173, 0, 0, 3009, 3012, 3, 652, 326, 0, 3010, 3011, 7, 42, 0, 0, 3011, 3013, 5, 681, 0, 0, 3012, 3010, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3049, 1, 0, 0, 0, 3014, 3015, 5, 10, 0, 0, 3015, 3018, 5, 130, 0, 0, 3016, 3019, 3, 670, 335, 0, 3017, 3019, 5, 7, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3017, 1, 0, 0, 0, 3019, 3049, 1, 0, 0, 0, 3020, 3021, 5, 27, 0, 0, 3021, 3024, 5, 130, 0, 0, 3022, 3025, 3, 670, 335, 0, 3023, 3025, 5, 7, 0, 0, 3024, 3022, 1, 0, 0, 0, 3024, 3023, 1, 0, 0, 0, 3025, 3049, 1, 0, 0, 0, 3026, 3027, 5, 120, 0, 0, 3027, 3030, 5, 130, 0, 0, 3028, 3031, 3, 670, 335, 0, 3029, 3031, 5, 7, 0, 0, 3030, 3028, 1, 0, 0, 0, 3030, 3029, 1, 0, 0, 0, 3031, 3049, 1, 0, 0, 0, 3032, 3033, 5, 550, 0, 0, 3033, 3036, 5, 130, 0, 0, 3034, 3037, 3, 670, 335, 0, 3035, 3037, 5, 7, 0, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3035, 1, 0, 0, 0, 3037, 3049, 1, 0, 0, 0, 3038, 3039, 5, 562, 0, 0, 3039, 3042, 5, 130, 0, 0, 3040, 3043, 3, 670, 335, 0, 3041, 3043, 5, 7, 0, 0, 3042, 3040, 1, 0, 0, 0, 3042, 3041, 1, 0, 0, 0, 3043, 3049, 1, 0, 0, 0, 3044, 3045, 5, 560, 0, 0, 3045, 3049, 5, 527, 0, 0, 3046, 3047, 5, 677, 0, 0, 3047, 3049, 5, 527, 0, 0, 3048, 2950, 1, 0, 0, 0, 3048, 2963, 1, 0, 0, 0, 3048, 2966, 1, 0, 0, 0, 3048, 2973, 1, 0, 0, 0, 3048, 2980, 1, 0, 0, 0, 3048, 2986, 1, 0, 0, 0, 3048, 2989, 1, 0, 0, 0, 3048, 3004, 1, 0, 0, 0, 3048, 3014, 1, 0, 0, 0, 3048, 3020, 1, 0, 0, 0, 3048, 3026, 1, 0, 0, 0, 3048, 3032, 1, 0, 0, 0, 3048, 3038, 1, 0, 0, 0, 3048, 3044, 1, 0, 0, 0, 3048, 3046, 1, 0, 0, 0, 3049, 149, 1, 0, 0, 0, 3050, 3051, 5, 51, 0, 0, 3051, 3053, 7, 0, 0, 0, 3052, 3054, 3, 758, 379, 0, 3053, 3052, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3056, 3, 628, 314, 0, 3056, 151, 1, 0, 0, 0, 3057, 3058, 5, 51, 0, 0, 3058, 3060, 5, 385, 0, 0, 3059, 3061, 3, 758, 379, 0, 3060, 3059, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 3, 702, 351, 0, 3063, 153, 1, 0, 0, 0, 3064, 3065, 5, 51, 0, 0, 3065, 3067, 5, 82, 0, 0, 3066, 3068, 7, 1, 0, 0, 3067, 3066, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 3, 642, 321, 0, 3070, 3071, 5, 119, 0, 0, 3071, 3084, 3, 652, 326, 0, 3072, 3074, 5, 308, 0, 0, 3073, 3075, 5, 857, 0, 0, 3074, 3073, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3083, 7, 3, 0, 0, 3077, 3079, 5, 104, 0, 0, 3078, 3080, 5, 857, 0, 0, 3079, 3078, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3083, 7, 4, 0, 0, 3082, 3072, 1, 0, 0, 0, 3082, 3077, 1, 0, 0, 0, 3083, 3086, 1, 0, 0, 0, 3084, 3082, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 155, 1, 0, 0, 0, 3086, 3084, 1, 0, 0, 0, 3087, 3088, 5, 51, 0, 0, 3088, 3089, 5, 451, 0, 0, 3089, 3090, 5, 74, 0, 0, 3090, 3091, 3, 706, 353, 0, 3091, 3093, 5, 380, 0, 0, 3092, 3094, 5, 857, 0, 0, 3093, 3092, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3096, 3, 692, 346, 0, 3096, 157, 1, 0, 0, 0, 3097, 3098, 5, 51, 0, 0, 3098, 3100, 5, 132, 0, 0, 3099, 3101, 3, 758, 379, 0, 3100, 3099, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 3103, 3, 702, 351, 0, 3103, 159, 1, 0, 0, 0, 3104, 3105, 5, 51, 0, 0, 3105, 3107, 5, 409, 0, 0, 3106, 3108, 3, 758, 379, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 3, 632, 316, 0, 3110, 161, 1, 0, 0, 0, 3111, 3112, 5, 51, 0, 0, 3112, 3114, 5, 592, 0, 0, 3113, 3115, 3, 758, 379, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3116, 1, 0, 0, 0, 3116, 3117, 3, 706, 353, 0, 3117, 163, 1, 0, 0, 0, 3118, 3119, 5, 51, 0, 0, 3119, 3120, 5, 161, 0, 0, 3120, 3121, 5, 137, 0, 0, 3121, 3123, 5, 835, 0, 0, 3122, 3124, 3, 758, 379, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 5, 883, 0, 0, 3126, 165, 1, 0, 0, 0, 3127, 3129, 5, 51, 0, 0, 3128, 3130, 5, 660, 0, 0, 3129, 3128, 1, 0, 0, 0, 3129, 3130, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3133, 5, 173, 0, 0, 3132, 3134, 3, 758, 379, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3137, 3, 650, 325, 0, 3136, 3138, 7, 43, 0, 0, 3137, 3136, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 167, 1, 0, 0, 0, 3139, 3141, 5, 51, 0, 0, 3140, 3142, 5, 180, 0, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 5, 658, 0, 0, 3144, 3150, 3, 666, 333, 0, 3145, 3147, 5, 380, 0, 0, 3146, 3148, 5, 857, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3151, 3, 692, 346, 0, 3150, 3145, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 169, 1, 0, 0, 0, 3152, 3153, 5, 51, 0, 0, 3153, 3155, 5, 178, 0, 0, 3154, 3156, 3, 758, 379, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 3, 702, 351, 0, 3158, 171, 1, 0, 0, 0, 3159, 3160, 5, 51, 0, 0, 3160, 3162, 5, 684, 0, 0, 3161, 3163, 3, 758, 379, 0, 3162, 3161, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3169, 3, 636, 318, 0, 3165, 3166, 5, 868, 0, 0, 3166, 3168, 3, 636, 318, 0, 3167, 3165, 1, 0, 0, 0, 3168, 3171, 1, 0, 0, 0, 3169, 3167, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3173, 1, 0, 0, 0, 3171, 3169, 1, 0, 0, 0, 3172, 3174, 7, 43, 0, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 173, 1, 0, 0, 0, 3175, 3176, 5, 51, 0, 0, 3176, 3178, 5, 582, 0, 0, 3177, 3179, 3, 758, 379, 0, 3178, 3177, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3181, 3, 654, 327, 0, 3181, 175, 1, 0, 0, 0, 3182, 3183, 5, 155, 0, 0, 3183, 3184, 5, 42, 0, 0, 3184, 3188, 5, 582, 0, 0, 3185, 3189, 5, 505, 0, 0, 3186, 3189, 5, 7, 0, 0, 3187, 3189, 3, 654, 327, 0, 3188, 3185, 1, 0, 0, 0, 3188, 3186, 1, 0, 0, 0, 3188, 3187, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3191, 5, 176, 0, 0, 3191, 3196, 3, 656, 328, 0, 3192, 3193, 5, 868, 0, 0, 3193, 3195, 3, 656, 328, 0, 3194, 3192, 1, 0, 0, 0, 3195, 3198, 1, 0, 0, 0, 3196, 3194, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3203, 1, 0, 0, 0, 3198, 3196, 1, 0, 0, 0, 3199, 3200, 5, 155, 0, 0, 3200, 3201, 5, 582, 0, 0, 3201, 3203, 3, 468, 234, 0, 3202, 3182, 1, 0, 0, 0, 3202, 3199, 1, 0, 0, 0, 3203, 177, 1, 0, 0, 0, 3204, 3205, 5, 141, 0, 0, 3205, 3206, 5, 173, 0, 0, 3206, 3211, 3, 180, 90, 0, 3207, 3208, 5, 868, 0, 0, 3208, 3210, 3, 180, 90, 0, 3209, 3207, 1, 0, 0, 0, 3210, 3213, 1, 0, 0, 0, 3211, 3209, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 179, 1, 0, 0, 0, 3213, 3211, 1, 0, 0, 0, 3214, 3215, 3, 652, 326, 0, 3215, 3216, 5, 176, 0, 0, 3216, 3217, 3, 648, 324, 0, 3217, 181, 1, 0, 0, 0, 3218, 3220, 5, 668, 0, 0, 3219, 3221, 5, 173, 0, 0, 3220, 3219, 1, 0, 0, 0, 3220, 3221, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 3, 652, 326, 0, 3223, 183, 1, 0, 0, 0, 3224, 3225, 5, 21, 0, 0, 3225, 3232, 3, 702, 351, 0, 3226, 3229, 5, 866, 0, 0, 3227, 3230, 3, 748, 374, 0, 3228, 3230, 3, 740, 370, 0, 3229, 3227, 1, 0, 0, 0, 3229, 3228, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3233, 5, 867, 0, 0, 3232, 3226, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 185, 1, 0, 0, 0, 3234, 3237, 3, 240, 120, 0, 3235, 3237, 3, 242, 121, 0, 3236, 3234, 1, 0, 0, 0, 3236, 3235, 1, 0, 0, 0, 3237, 187, 1, 0, 0, 0, 3238, 3239, 5, 371, 0, 0, 3239, 3240, 3, 740, 370, 0, 3240, 189, 1, 0, 0, 0, 3241, 3246, 3, 244, 122, 0, 3242, 3246, 3, 246, 123, 0, 3243, 3246, 3, 248, 124, 0, 3244, 3246, 3, 250, 125, 0, 3245, 3241, 1, 0, 0, 0, 3245, 3242, 1, 0, 0, 0, 3245, 3243, 1, 0, 0, 0, 3245, 3244, 1, 0, 0, 0, 3246, 191, 1, 0, 0, 0, 3247, 3249, 5, 86, 0, 0, 3248, 3250, 7, 44, 0, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 5, 79, 0, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 5, 88, 0, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3264, 3, 652, 326, 0, 3258, 3259, 5, 130, 0, 0, 3259, 3261, 5, 866, 0, 0, 3260, 3262, 3, 670, 335, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 5, 867, 0, 0, 3264, 3258, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3277, 1, 0, 0, 0, 3266, 3268, 3, 268, 134, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3272, 3, 742, 371, 0, 3270, 3272, 3, 196, 98, 0, 3271, 3269, 1, 0, 0, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3275, 3, 194, 97, 0, 3274, 3273, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3278, 1, 0, 0, 0, 3276, 3278, 3, 232, 116, 0, 3277, 3267, 1, 0, 0, 0, 3277, 3276, 1, 0, 0, 0, 3278, 3280, 1, 0, 0, 0, 3279, 3281, 3, 194, 97, 0, 3280, 3279, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3294, 1, 0, 0, 0, 3282, 3283, 5, 119, 0, 0, 3283, 3284, 5, 373, 0, 0, 3284, 3285, 5, 92, 0, 0, 3285, 3286, 5, 185, 0, 0, 3286, 3291, 3, 234, 117, 0, 3287, 3288, 5, 868, 0, 0, 3288, 3290, 3, 234, 117, 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, 3282, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 193, 1, 0, 0, 0, 3296, 3297, 5, 13, 0, 0, 3297, 3299, 3, 706, 353, 0, 3298, 3300, 3, 268, 134, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 195, 1, 0, 0, 0, 3301, 3306, 3, 210, 105, 0, 3302, 3303, 5, 173, 0, 0, 3303, 3306, 3, 652, 326, 0, 3304, 3306, 3, 230, 115, 0, 3305, 3301, 1, 0, 0, 0, 3305, 3302, 1, 0, 0, 0, 3305, 3304, 1, 0, 0, 0, 3306, 197, 1, 0, 0, 0, 3307, 3313, 3, 200, 100, 0, 3308, 3310, 5, 828, 0, 0, 3309, 3311, 7, 45, 0, 0, 3310, 3309, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 3, 200, 100, 0, 3313, 3308, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3315, 3316, 1, 0, 0, 0, 3316, 199, 1, 0, 0, 0, 3317, 3319, 5, 866, 0, 0, 3318, 3317, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 3320, 1, 0, 0, 0, 3320, 3322, 3, 280, 140, 0, 3321, 3323, 5, 867, 0, 0, 3322, 3321, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 201, 1, 0, 0, 0, 3324, 3325, 5, 103, 0, 0, 3325, 3327, 5, 360, 0, 0, 3326, 3328, 7, 46, 0, 0, 3327, 3326, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3330, 1, 0, 0, 0, 3329, 3331, 5, 450, 0, 0, 3330, 3329, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 5, 83, 0, 0, 3333, 3335, 5, 882, 0, 0, 3334, 3336, 7, 7, 0, 0, 3335, 3334, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 5, 88, 0, 0, 3338, 3339, 5, 173, 0, 0, 3339, 3345, 3, 652, 326, 0, 3340, 3341, 5, 130, 0, 0, 3341, 3342, 5, 866, 0, 0, 3342, 3343, 3, 670, 335, 0, 3343, 3344, 5, 867, 0, 0, 3344, 3346, 1, 0, 0, 0, 3345, 3340, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3350, 1, 0, 0, 0, 3347, 3348, 5, 26, 0, 0, 3348, 3349, 5, 155, 0, 0, 3349, 3351, 3, 688, 344, 0, 3350, 3347, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3358, 1, 0, 0, 0, 3352, 3354, 7, 47, 0, 0, 3353, 3355, 3, 304, 152, 0, 3354, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3354, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3359, 1, 0, 0, 0, 3358, 3352, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3366, 1, 0, 0, 0, 3360, 3362, 5, 102, 0, 0, 3361, 3363, 3, 306, 153, 0, 3362, 3361, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3362, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3360, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3372, 1, 0, 0, 0, 3368, 3369, 5, 79, 0, 0, 3369, 3370, 3, 712, 356, 0, 3370, 3371, 7, 48, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3368, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3385, 1, 0, 0, 0, 3374, 3375, 5, 866, 0, 0, 3375, 3380, 3, 236, 118, 0, 3376, 3377, 5, 868, 0, 0, 3377, 3379, 3, 236, 118, 0, 3378, 3376, 1, 0, 0, 0, 3379, 3382, 1, 0, 0, 0, 3380, 3378, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3383, 1, 0, 0, 0, 3382, 3380, 1, 0, 0, 0, 3383, 3384, 5, 867, 0, 0, 3384, 3386, 1, 0, 0, 0, 3385, 3374, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3396, 1, 0, 0, 0, 3387, 3388, 5, 155, 0, 0, 3388, 3393, 3, 234, 117, 0, 3389, 3390, 5, 868, 0, 0, 3390, 3392, 3, 234, 117, 0, 3391, 3389, 1, 0, 0, 0, 3392, 3395, 1, 0, 0, 0, 3393, 3391, 1, 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3396, 3387, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 203, 1, 0, 0, 0, 3398, 3399, 5, 103, 0, 0, 3399, 3401, 5, 695, 0, 0, 3400, 3402, 7, 46, 0, 0, 3401, 3400, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3404, 1, 0, 0, 0, 3403, 3405, 5, 450, 0, 0, 3404, 3403, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3406, 1, 0, 0, 0, 3406, 3407, 5, 83, 0, 0, 3407, 3409, 5, 882, 0, 0, 3408, 3410, 7, 7, 0, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3411, 1, 0, 0, 0, 3411, 3412, 5, 88, 0, 0, 3412, 3413, 5, 173, 0, 0, 3413, 3417, 3, 652, 326, 0, 3414, 3415, 5, 26, 0, 0, 3415, 3416, 5, 155, 0, 0, 3416, 3418, 3, 688, 344, 0, 3417, 3414, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3429, 1, 0, 0, 0, 3419, 3420, 5, 587, 0, 0, 3420, 3421, 5, 423, 0, 0, 3421, 3423, 5, 20, 0, 0, 3422, 3424, 5, 859, 0, 0, 3423, 3422, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3427, 5, 882, 0, 0, 3426, 3428, 5, 858, 0, 0, 3427, 3426, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3430, 1, 0, 0, 0, 3429, 3419, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3435, 1, 0, 0, 0, 3431, 3432, 5, 79, 0, 0, 3432, 3433, 3, 712, 356, 0, 3433, 3434, 7, 48, 0, 0, 3434, 3436, 1, 0, 0, 0, 3435, 3431, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3448, 1, 0, 0, 0, 3437, 3438, 5, 866, 0, 0, 3438, 3443, 3, 236, 118, 0, 3439, 3440, 5, 868, 0, 0, 3440, 3442, 3, 236, 118, 0, 3441, 3439, 1, 0, 0, 0, 3442, 3445, 1, 0, 0, 0, 3443, 3441, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3443, 1, 0, 0, 0, 3446, 3447, 5, 867, 0, 0, 3447, 3449, 1, 0, 0, 0, 3448, 3437, 1, 0, 0, 0, 3448, 3449, 1, 0, 0, 0, 3449, 3459, 1, 0, 0, 0, 3450, 3451, 5, 155, 0, 0, 3451, 3456, 3, 234, 117, 0, 3452, 3453, 5, 868, 0, 0, 3453, 3455, 3, 234, 117, 0, 3454, 3452, 1, 0, 0, 0, 3455, 3458, 1, 0, 0, 0, 3456, 3454, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3460, 1, 0, 0, 0, 3458, 3456, 1, 0, 0, 0, 3459, 3450, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 205, 1, 0, 0, 0, 3461, 3462, 5, 866, 0, 0, 3462, 3464, 3, 224, 112, 0, 3463, 3465, 3, 258, 129, 0, 3464, 3463, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3467, 1, 0, 0, 0, 3466, 3468, 3, 318, 159, 0, 3467, 3466, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3471, 5, 867, 0, 0, 3470, 3472, 3, 258, 129, 0, 3471, 3470, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3474, 1, 0, 0, 0, 3473, 3475, 3, 318, 159, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3478, 3, 302, 151, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 207, 1, 0, 0, 0, 3479, 3481, 5, 143, 0, 0, 3480, 3482, 7, 49, 0, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3485, 5, 88, 0, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3492, 3, 652, 326, 0, 3487, 3488, 5, 130, 0, 0, 3488, 3489, 5, 866, 0, 0, 3489, 3490, 3, 670, 335, 0, 3490, 3491, 5, 867, 0, 0, 3491, 3493, 1, 0, 0, 0, 3492, 3487, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3502, 1, 0, 0, 0, 3494, 3495, 5, 866, 0, 0, 3495, 3496, 3, 660, 330, 0, 3496, 3497, 5, 867, 0, 0, 3497, 3499, 1, 0, 0, 0, 3498, 3494, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3503, 3, 228, 114, 0, 3501, 3503, 3, 232, 116, 0, 3502, 3498, 1, 0, 0, 0, 3502, 3501, 1, 0, 0, 0, 3503, 209, 1, 0, 0, 0, 3504, 3508, 3, 280, 140, 0, 3505, 3507, 3, 282, 141, 0, 3506, 3505, 1, 0, 0, 0, 3507, 3510, 1, 0, 0, 0, 3508, 3506, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3519, 1, 0, 0, 0, 3510, 3508, 1, 0, 0, 0, 3511, 3513, 5, 181, 0, 0, 3512, 3514, 7, 45, 0, 0, 3513, 3512, 1, 0, 0, 0, 3513, 3514, 1, 0, 0, 0, 3514, 3517, 1, 0, 0, 0, 3515, 3518, 3, 280, 140, 0, 3516, 3518, 3, 278, 139, 0, 3517, 3515, 1, 0, 0, 0, 3517, 3516, 1, 0, 0, 0, 3518, 3520, 1, 0, 0, 0, 3519, 3511, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 3525, 1, 0, 0, 0, 3521, 3522, 5, 868, 0, 0, 3522, 3524, 3, 284, 142, 0, 3523, 3521, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3529, 1, 0, 0, 0, 3527, 3525, 1, 0, 0, 0, 3528, 3530, 3, 258, 129, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3532, 1, 0, 0, 0, 3531, 3533, 3, 318, 159, 0, 3532, 3531, 1, 0, 0, 0, 3532, 3533, 1, 0, 0, 0, 3533, 3535, 1, 0, 0, 0, 3534, 3536, 3, 238, 119, 0, 3535, 3534, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3538, 1, 0, 0, 0, 3537, 3539, 3, 302, 151, 0, 3538, 3537, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3564, 1, 0, 0, 0, 3540, 3544, 3, 278, 139, 0, 3541, 3543, 3, 282, 141, 0, 3542, 3541, 1, 0, 0, 0, 3543, 3546, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3552, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3547, 3549, 5, 181, 0, 0, 3548, 3550, 7, 45, 0, 0, 3549, 3548, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3551, 1, 0, 0, 0, 3551, 3553, 3, 278, 139, 0, 3552, 3547, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3555, 1, 0, 0, 0, 3554, 3556, 3, 258, 129, 0, 3555, 3554, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3558, 1, 0, 0, 0, 3557, 3559, 3, 318, 159, 0, 3558, 3557, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 3561, 1, 0, 0, 0, 3560, 3562, 3, 238, 119, 0, 3561, 3560, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3564, 1, 0, 0, 0, 3563, 3504, 1, 0, 0, 0, 3563, 3540, 1, 0, 0, 0, 3564, 211, 1, 0, 0, 0, 3565, 3567, 3, 50, 25, 0, 3566, 3565, 1, 0, 0, 0, 3566, 3567, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3570, 3, 214, 107, 0, 3569, 3571, 3, 258, 129, 0, 3570, 3569, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3574, 3, 318, 159, 0, 3573, 3572, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3576, 1, 0, 0, 0, 3575, 3577, 3, 302, 151, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 213, 1, 0, 0, 0, 3578, 3579, 6, 107, -1, 0, 3579, 3580, 3, 216, 108, 0, 3580, 3595, 1, 0, 0, 0, 3581, 3582, 10, 2, 0, 0, 3582, 3584, 5, 181, 0, 0, 3583, 3585, 7, 45, 0, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3594, 3, 216, 108, 0, 3587, 3588, 10, 1, 0, 0, 3588, 3590, 5, 59, 0, 0, 3589, 3591, 7, 45, 0, 0, 3590, 3589, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3594, 3, 216, 108, 0, 3593, 3581, 1, 0, 0, 0, 3593, 3587, 1, 0, 0, 0, 3594, 3597, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 215, 1, 0, 0, 0, 3597, 3595, 1, 0, 0, 0, 3598, 3599, 6, 108, -1, 0, 3599, 3600, 3, 218, 109, 0, 3600, 3609, 1, 0, 0, 0, 3601, 3602, 10, 1, 0, 0, 3602, 3604, 5, 828, 0, 0, 3603, 3605, 7, 45, 0, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3608, 3, 218, 109, 0, 3607, 3601, 1, 0, 0, 0, 3608, 3611, 1, 0, 0, 0, 3609, 3607, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 217, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3612, 3627, 3, 226, 113, 0, 3613, 3614, 5, 866, 0, 0, 3614, 3616, 3, 214, 107, 0, 3615, 3617, 3, 258, 129, 0, 3616, 3615, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 3619, 1, 0, 0, 0, 3618, 3620, 3, 318, 159, 0, 3619, 3618, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3622, 1, 0, 0, 0, 3621, 3623, 3, 302, 151, 0, 3622, 3621, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3625, 5, 867, 0, 0, 3625, 3627, 1, 0, 0, 0, 3626, 3612, 1, 0, 0, 0, 3626, 3613, 1, 0, 0, 0, 3627, 219, 1, 0, 0, 0, 3628, 3631, 3, 254, 127, 0, 3629, 3631, 3, 256, 128, 0, 3630, 3628, 1, 0, 0, 0, 3630, 3629, 1, 0, 0, 0, 3631, 221, 1, 0, 0, 0, 3632, 3636, 3, 230, 115, 0, 3633, 3634, 5, 125, 0, 0, 3634, 3635, 5, 20, 0, 0, 3635, 3637, 3, 674, 337, 0, 3636, 3633, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 3640, 1, 0, 0, 0, 3638, 3639, 5, 100, 0, 0, 3639, 3641, 3, 320, 160, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 223, 1, 0, 0, 0, 3642, 3647, 3, 226, 113, 0, 3643, 3644, 7, 50, 0, 0, 3644, 3646, 3, 226, 113, 0, 3645, 3643, 1, 0, 0, 0, 3646, 3649, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3647, 3648, 1, 0, 0, 0, 3648, 3651, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3650, 3652, 3, 258, 129, 0, 3651, 3650, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3654, 1, 0, 0, 0, 3653, 3655, 3, 318, 159, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3657, 1, 0, 0, 0, 3656, 3658, 3, 302, 151, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 225, 1, 0, 0, 0, 3659, 3663, 3, 210, 105, 0, 3660, 3663, 3, 618, 309, 0, 3661, 3663, 3, 222, 111, 0, 3662, 3659, 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3662, 3661, 1, 0, 0, 0, 3663, 227, 1, 0, 0, 0, 3664, 3670, 3, 210, 105, 0, 3665, 3666, 5, 173, 0, 0, 3666, 3670, 3, 652, 326, 0, 3667, 3670, 3, 742, 371, 0, 3668, 3670, 3, 230, 115, 0, 3669, 3664, 1, 0, 0, 0, 3669, 3665, 1, 0, 0, 0, 3669, 3667, 1, 0, 0, 0, 3669, 3668, 1, 0, 0, 0, 3670, 229, 1, 0, 0, 0, 3671, 3672, 5, 189, 0, 0, 3672, 3673, 5, 586, 0, 0, 3673, 3679, 3, 744, 372, 0, 3674, 3675, 5, 868, 0, 0, 3675, 3676, 5, 586, 0, 0, 3676, 3678, 3, 744, 372, 0, 3677, 3674, 1, 0, 0, 0, 3678, 3681, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 231, 1, 0, 0, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3683, 5, 155, 0, 0, 3683, 3688, 3, 234, 117, 0, 3684, 3685, 5, 868, 0, 0, 3685, 3687, 3, 234, 117, 0, 3686, 3684, 1, 0, 0, 0, 3687, 3690, 1, 0, 0, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 233, 1, 0, 0, 0, 3690, 3688, 1, 0, 0, 0, 3691, 3692, 3, 662, 331, 0, 3692, 3693, 5, 857, 0, 0, 3693, 3694, 3, 746, 373, 0, 3694, 235, 1, 0, 0, 0, 3695, 3698, 3, 706, 353, 0, 3696, 3698, 5, 892, 0, 0, 3697, 3695, 1, 0, 0, 0, 3697, 3696, 1, 0, 0, 0, 3698, 237, 1, 0, 0, 0, 3699, 3700, 5, 65, 0, 0, 3700, 3710, 7, 51, 0, 0, 3701, 3702, 5, 510, 0, 0, 3702, 3707, 3, 652, 326, 0, 3703, 3704, 5, 868, 0, 0, 3704, 3706, 3, 652, 326, 0, 3705, 3703, 1, 0, 0, 0, 3706, 3709, 1, 0, 0, 0, 3707, 3705, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3711, 1, 0, 0, 0, 3709, 3707, 1, 0, 0, 0, 3710, 3701, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3714, 1, 0, 0, 0, 3712, 3713, 7, 52, 0, 0, 3713, 3715, 5, 105, 0, 0, 3714, 3712, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3721, 1, 0, 0, 0, 3716, 3717, 5, 104, 0, 0, 3717, 3718, 5, 80, 0, 0, 3718, 3719, 5, 594, 0, 0, 3719, 3721, 5, 491, 0, 0, 3720, 3699, 1, 0, 0, 0, 3720, 3716, 1, 0, 0, 0, 3721, 239, 1, 0, 0, 0, 3722, 3724, 5, 44, 0, 0, 3723, 3725, 5, 107, 0, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3727, 1, 0, 0, 0, 3726, 3728, 5, 549, 0, 0, 3727, 3726, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3730, 1, 0, 0, 0, 3729, 3731, 5, 79, 0, 0, 3730, 3729, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3733, 5, 68, 0, 0, 3733, 3738, 3, 652, 326, 0, 3734, 3736, 5, 13, 0, 0, 3735, 3734, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3739, 3, 706, 353, 0, 3738, 3735, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3745, 1, 0, 0, 0, 3740, 3741, 5, 130, 0, 0, 3741, 3742, 5, 866, 0, 0, 3742, 3743, 3, 670, 335, 0, 3743, 3744, 5, 867, 0, 0, 3744, 3746, 1, 0, 0, 0, 3745, 3740, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3749, 1, 0, 0, 0, 3747, 3748, 5, 192, 0, 0, 3748, 3750, 3, 804, 402, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3752, 1, 0, 0, 0, 3751, 3753, 3, 258, 129, 0, 3752, 3751, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3756, 1, 0, 0, 0, 3754, 3755, 5, 100, 0, 0, 3755, 3757, 3, 320, 160, 0, 3756, 3754, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 241, 1, 0, 0, 0, 3758, 3760, 5, 44, 0, 0, 3759, 3761, 5, 107, 0, 0, 3760, 3759, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3763, 1, 0, 0, 0, 3762, 3764, 5, 549, 0, 0, 3763, 3762, 1, 0, 0, 0, 3763, 3764, 1, 0, 0, 0, 3764, 3766, 1, 0, 0, 0, 3765, 3767, 5, 79, 0, 0, 3766, 3765, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 3807, 1, 0, 0, 0, 3768, 3771, 3, 652, 326, 0, 3769, 3770, 5, 865, 0, 0, 3770, 3772, 5, 850, 0, 0, 3771, 3769, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3781, 1, 0, 0, 0, 3773, 3774, 5, 868, 0, 0, 3774, 3777, 3, 652, 326, 0, 3775, 3776, 5, 865, 0, 0, 3776, 3778, 5, 850, 0, 0, 3777, 3775, 1, 0, 0, 0, 3777, 3778, 1, 0, 0, 0, 3778, 3780, 1, 0, 0, 0, 3779, 3773, 1, 0, 0, 0, 3780, 3783, 1, 0, 0, 0, 3781, 3779, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3784, 1, 0, 0, 0, 3783, 3781, 1, 0, 0, 0, 3784, 3785, 5, 68, 0, 0, 3785, 3786, 3, 262, 131, 0, 3786, 3808, 1, 0, 0, 0, 3787, 3788, 5, 68, 0, 0, 3788, 3791, 3, 652, 326, 0, 3789, 3790, 5, 865, 0, 0, 3790, 3792, 5, 850, 0, 0, 3791, 3789, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3801, 1, 0, 0, 0, 3793, 3794, 5, 868, 0, 0, 3794, 3797, 3, 652, 326, 0, 3795, 3796, 5, 865, 0, 0, 3796, 3798, 5, 850, 0, 0, 3797, 3795, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3793, 1, 0, 0, 0, 3800, 3803, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3804, 1, 0, 0, 0, 3803, 3801, 1, 0, 0, 0, 3804, 3805, 5, 188, 0, 0, 3805, 3806, 3, 262, 131, 0, 3806, 3808, 1, 0, 0, 0, 3807, 3768, 1, 0, 0, 0, 3807, 3787, 1, 0, 0, 0, 3808, 3811, 1, 0, 0, 0, 3809, 3810, 5, 192, 0, 0, 3810, 3812, 3, 804, 402, 0, 3811, 3809, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 243, 1, 0, 0, 0, 3813, 3814, 5, 417, 0, 0, 3814, 3815, 3, 652, 326, 0, 3815, 3820, 5, 516, 0, 0, 3816, 3818, 5, 13, 0, 0, 3817, 3816, 1, 0, 0, 0, 3817, 3818, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3821, 3, 706, 353, 0, 3820, 3817, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 245, 1, 0, 0, 0, 3822, 3823, 5, 417, 0, 0, 3823, 3824, 3, 652, 326, 0, 3824, 3825, 5, 135, 0, 0, 3825, 3832, 3, 642, 321, 0, 3826, 3827, 3, 814, 407, 0, 3827, 3828, 5, 866, 0, 0, 3828, 3829, 3, 748, 374, 0, 3829, 3830, 5, 867, 0, 0, 3830, 3833, 1, 0, 0, 0, 3831, 3833, 7, 53, 0, 0, 3832, 3826, 1, 0, 0, 0, 3832, 3831, 1, 0, 0, 0, 3833, 3836, 1, 0, 0, 0, 3834, 3835, 5, 192, 0, 0, 3835, 3837, 3, 804, 402, 0, 3836, 3834, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3840, 1, 0, 0, 0, 3838, 3839, 5, 100, 0, 0, 3839, 3841, 3, 320, 160, 0, 3840, 3838, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 247, 1, 0, 0, 0, 3842, 3843, 5, 417, 0, 0, 3843, 3844, 3, 652, 326, 0, 3844, 3845, 5, 135, 0, 0, 3845, 3848, 7, 54, 0, 0, 3846, 3847, 5, 192, 0, 0, 3847, 3849, 3, 804, 402, 0, 3848, 3846, 1, 0, 0, 0, 3848, 3849, 1, 0, 0, 0, 3849, 3852, 1, 0, 0, 0, 3850, 3851, 5, 100, 0, 0, 3851, 3853, 3, 320, 160, 0, 3852, 3850, 1, 0, 0, 0, 3852, 3853, 1, 0, 0, 0, 3853, 249, 1, 0, 0, 0, 3854, 3855, 5, 417, 0, 0, 3855, 3856, 3, 652, 326, 0, 3856, 3857, 5, 334, 0, 0, 3857, 251, 1, 0, 0, 0, 3858, 3859, 5, 425, 0, 0, 3859, 3860, 5, 173, 0, 0, 3860, 3861, 5, 68, 0, 0, 3861, 3866, 3, 716, 358, 0, 3862, 3863, 5, 868, 0, 0, 3863, 3865, 3, 716, 358, 0, 3864, 3862, 1, 0, 0, 0, 3865, 3868, 1, 0, 0, 0, 3866, 3864, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 253, 1, 0, 0, 0, 3868, 3866, 1, 0, 0, 0, 3869, 3871, 5, 185, 0, 0, 3870, 3872, 5, 107, 0, 0, 3871, 3870, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3874, 1, 0, 0, 0, 3873, 3875, 5, 79, 0, 0, 3874, 3873, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 3881, 3, 652, 326, 0, 3877, 3879, 5, 13, 0, 0, 3878, 3877, 1, 0, 0, 0, 3878, 3879, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3882, 3, 706, 353, 0, 3881, 3878, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 3883, 1, 0, 0, 0, 3883, 3884, 5, 155, 0, 0, 3884, 3889, 3, 234, 117, 0, 3885, 3886, 5, 868, 0, 0, 3886, 3888, 3, 234, 117, 0, 3887, 3885, 1, 0, 0, 0, 3888, 3891, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3894, 1, 0, 0, 0, 3891, 3889, 1, 0, 0, 0, 3892, 3893, 5, 192, 0, 0, 3893, 3895, 3, 804, 402, 0, 3894, 3892, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 3897, 1, 0, 0, 0, 3896, 3898, 3, 258, 129, 0, 3897, 3896, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3900, 1, 0, 0, 0, 3899, 3901, 3, 318, 159, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 255, 1, 0, 0, 0, 3902, 3904, 5, 185, 0, 0, 3903, 3905, 5, 107, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3907, 1, 0, 0, 0, 3906, 3908, 5, 79, 0, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 3, 262, 131, 0, 3910, 3911, 5, 155, 0, 0, 3911, 3916, 3, 234, 117, 0, 3912, 3913, 5, 868, 0, 0, 3913, 3915, 3, 234, 117, 0, 3914, 3912, 1, 0, 0, 0, 3915, 3918, 1, 0, 0, 0, 3916, 3914, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3921, 1, 0, 0, 0, 3918, 3916, 1, 0, 0, 0, 3919, 3920, 5, 192, 0, 0, 3920, 3922, 3, 804, 402, 0, 3921, 3919, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 257, 1, 0, 0, 0, 3923, 3924, 5, 125, 0, 0, 3924, 3925, 5, 20, 0, 0, 3925, 3930, 3, 260, 130, 0, 3926, 3927, 5, 868, 0, 0, 3927, 3929, 3, 260, 130, 0, 3928, 3926, 1, 0, 0, 0, 3929, 3932, 1, 0, 0, 0, 3930, 3928, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 259, 1, 0, 0, 0, 3932, 3930, 1, 0, 0, 0, 3933, 3935, 3, 804, 402, 0, 3934, 3936, 7, 55, 0, 0, 3935, 3934, 1, 0, 0, 0, 3935, 3936, 1, 0, 0, 0, 3936, 261, 1, 0, 0, 0, 3937, 3942, 3, 264, 132, 0, 3938, 3939, 5, 868, 0, 0, 3939, 3941, 3, 264, 132, 0, 3940, 3938, 1, 0, 0, 0, 3941, 3944, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 263, 1, 0, 0, 0, 3944, 3942, 1, 0, 0, 0, 3945, 3949, 3, 266, 133, 0, 3946, 3948, 3, 274, 137, 0, 3947, 3946, 1, 0, 0, 0, 3948, 3951, 1, 0, 0, 0, 3949, 3947, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3964, 1, 0, 0, 0, 3951, 3949, 1, 0, 0, 0, 3952, 3953, 5, 866, 0, 0, 3953, 3957, 3, 266, 133, 0, 3954, 3956, 3, 274, 137, 0, 3955, 3954, 1, 0, 0, 0, 3956, 3959, 1, 0, 0, 0, 3957, 3955, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3960, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3960, 3961, 5, 867, 0, 0, 3961, 3964, 1, 0, 0, 0, 3962, 3964, 3, 286, 143, 0, 3963, 3945, 1, 0, 0, 0, 3963, 3952, 1, 0, 0, 0, 3963, 3962, 1, 0, 0, 0, 3964, 265, 1, 0, 0, 0, 3965, 3971, 3, 652, 326, 0, 3966, 3967, 5, 130, 0, 0, 3967, 3968, 5, 866, 0, 0, 3968, 3969, 3, 670, 335, 0, 3969, 3970, 5, 867, 0, 0, 3970, 3972, 1, 0, 0, 0, 3971, 3966, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3977, 1, 0, 0, 0, 3973, 3975, 5, 13, 0, 0, 3974, 3973, 1, 0, 0, 0, 3974, 3975, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3978, 3, 706, 353, 0, 3977, 3974, 1, 0, 0, 0, 3977, 3978, 1, 0, 0, 0, 3978, 3987, 1, 0, 0, 0, 3979, 3984, 3, 270, 135, 0, 3980, 3981, 5, 868, 0, 0, 3981, 3983, 3, 270, 135, 0, 3982, 3980, 1, 0, 0, 0, 3983, 3986, 1, 0, 0, 0, 3984, 3982, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3988, 1, 0, 0, 0, 3986, 3984, 1, 0, 0, 0, 3987, 3979, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 4011, 1, 0, 0, 0, 3989, 3991, 5, 95, 0, 0, 3990, 3989, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3997, 1, 0, 0, 0, 3992, 3998, 3, 210, 105, 0, 3993, 3994, 5, 866, 0, 0, 3994, 3995, 3, 210, 105, 0, 3995, 3996, 5, 867, 0, 0, 3996, 3998, 1, 0, 0, 0, 3997, 3992, 1, 0, 0, 0, 3997, 3993, 1, 0, 0, 0, 3998, 4000, 1, 0, 0, 0, 3999, 4001, 5, 13, 0, 0, 4000, 3999, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4004, 3, 706, 353, 0, 4003, 4005, 3, 268, 134, 0, 4004, 4003, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 4011, 1, 0, 0, 0, 4006, 4007, 5, 866, 0, 0, 4007, 4008, 3, 262, 131, 0, 4008, 4009, 5, 867, 0, 0, 4009, 4011, 1, 0, 0, 0, 4010, 3965, 1, 0, 0, 0, 4010, 3990, 1, 0, 0, 0, 4010, 4006, 1, 0, 0, 0, 4011, 267, 1, 0, 0, 0, 4012, 4013, 5, 866, 0, 0, 4013, 4014, 3, 660, 330, 0, 4014, 4015, 5, 867, 0, 0, 4015, 269, 1, 0, 0, 0, 4016, 4017, 7, 56, 0, 0, 4017, 4020, 7, 19, 0, 0, 4018, 4019, 5, 65, 0, 0, 4019, 4021, 3, 272, 136, 0, 4020, 4018, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4024, 5, 866, 0, 0, 4023, 4025, 3, 640, 320, 0, 4024, 4023, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4026, 1, 0, 0, 0, 4026, 4027, 5, 867, 0, 0, 4027, 271, 1, 0, 0, 0, 4028, 4034, 5, 91, 0, 0, 4029, 4030, 5, 125, 0, 0, 4030, 4034, 5, 20, 0, 0, 4031, 4032, 5, 74, 0, 0, 4032, 4034, 5, 20, 0, 0, 4033, 4028, 1, 0, 0, 0, 4033, 4029, 1, 0, 0, 0, 4033, 4031, 1, 0, 0, 0, 4034, 273, 1, 0, 0, 0, 4035, 4037, 7, 57, 0, 0, 4036, 4035, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4040, 5, 91, 0, 0, 4039, 4041, 5, 95, 0, 0, 4040, 4039, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4046, 3, 266, 133, 0, 4043, 4045, 3, 276, 138, 0, 4044, 4043, 1, 0, 0, 0, 4045, 4048, 1, 0, 0, 0, 4046, 4044, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4085, 1, 0, 0, 0, 4048, 4046, 1, 0, 0, 0, 4049, 4050, 5, 172, 0, 0, 4050, 4054, 3, 266, 133, 0, 4051, 4053, 3, 276, 138, 0, 4052, 4051, 1, 0, 0, 0, 4053, 4056, 1, 0, 0, 0, 4054, 4052, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4085, 1, 0, 0, 0, 4056, 4054, 1, 0, 0, 0, 4057, 4059, 7, 58, 0, 0, 4058, 4060, 5, 127, 0, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 4063, 5, 91, 0, 0, 4062, 4064, 5, 95, 0, 0, 4063, 4062, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4065, 1, 0, 0, 0, 4065, 4069, 3, 266, 133, 0, 4066, 4068, 3, 276, 138, 0, 4067, 4066, 1, 0, 0, 0, 4068, 4071, 1, 0, 0, 0, 4069, 4067, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4085, 1, 0, 0, 0, 4071, 4069, 1, 0, 0, 0, 4072, 4080, 5, 113, 0, 0, 4073, 4076, 5, 84, 0, 0, 4074, 4076, 7, 58, 0, 0, 4075, 4073, 1, 0, 0, 0, 4075, 4074, 1, 0, 0, 0, 4076, 4078, 1, 0, 0, 0, 4077, 4079, 5, 127, 0, 0, 4078, 4077, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4081, 1, 0, 0, 0, 4080, 4075, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 4083, 5, 91, 0, 0, 4083, 4085, 3, 266, 133, 0, 4084, 4036, 1, 0, 0, 0, 4084, 4049, 1, 0, 0, 0, 4084, 4057, 1, 0, 0, 0, 4084, 4072, 1, 0, 0, 0, 4085, 275, 1, 0, 0, 0, 4086, 4087, 5, 119, 0, 0, 4087, 4094, 3, 804, 402, 0, 4088, 4089, 5, 188, 0, 0, 4089, 4090, 5, 866, 0, 0, 4090, 4091, 3, 660, 330, 0, 4091, 4092, 5, 867, 0, 0, 4092, 4094, 1, 0, 0, 0, 4093, 4086, 1, 0, 0, 0, 4093, 4088, 1, 0, 0, 0, 4094, 277, 1, 0, 0, 0, 4095, 4096, 5, 866, 0, 0, 4096, 4097, 3, 280, 140, 0, 4097, 4098, 5, 867, 0, 0, 4098, 4104, 1, 0, 0, 0, 4099, 4100, 5, 866, 0, 0, 4100, 4101, 3, 278, 139, 0, 4101, 4102, 5, 867, 0, 0, 4102, 4104, 1, 0, 0, 0, 4103, 4095, 1, 0, 0, 0, 4103, 4099, 1, 0, 0, 0, 4104, 279, 1, 0, 0, 0, 4105, 4109, 5, 154, 0, 0, 4106, 4108, 3, 296, 148, 0, 4107, 4106, 1, 0, 0, 0, 4108, 4111, 1, 0, 0, 0, 4109, 4107, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4112, 1, 0, 0, 0, 4111, 4109, 1, 0, 0, 0, 4112, 4114, 3, 298, 149, 0, 4113, 4115, 3, 302, 151, 0, 4114, 4113, 1, 0, 0, 0, 4114, 4115, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4118, 3, 308, 154, 0, 4117, 4119, 3, 310, 155, 0, 4118, 4117, 1, 0, 0, 0, 4118, 4119, 1, 0, 0, 0, 4119, 4121, 1, 0, 0, 0, 4120, 4122, 3, 312, 156, 0, 4121, 4120, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4125, 3, 314, 157, 0, 4124, 4123, 1, 0, 0, 0, 4124, 4125, 1, 0, 0, 0, 4125, 4127, 1, 0, 0, 0, 4126, 4128, 3, 258, 129, 0, 4127, 4126, 1, 0, 0, 0, 4127, 4128, 1, 0, 0, 0, 4128, 4130, 1, 0, 0, 0, 4129, 4131, 3, 318, 159, 0, 4130, 4129, 1, 0, 0, 0, 4130, 4131, 1, 0, 0, 0, 4131, 4133, 1, 0, 0, 0, 4132, 4134, 3, 302, 151, 0, 4133, 4132, 1, 0, 0, 0, 4133, 4134, 1, 0, 0, 0, 4134, 4136, 1, 0, 0, 0, 4135, 4137, 3, 282, 141, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 281, 1, 0, 0, 0, 4138, 4140, 5, 181, 0, 0, 4139, 4141, 7, 45, 0, 0, 4140, 4139, 1, 0, 0, 0, 4140, 4141, 1, 0, 0, 0, 4141, 4144, 1, 0, 0, 0, 4142, 4145, 3, 280, 140, 0, 4143, 4145, 3, 278, 139, 0, 4144, 4142, 1, 0, 0, 0, 4144, 4143, 1, 0, 0, 0, 4145, 283, 1, 0, 0, 0, 4146, 4161, 5, 95, 0, 0, 4147, 4162, 3, 280, 140, 0, 4148, 4162, 3, 278, 139, 0, 4149, 4152, 5, 866, 0, 0, 4150, 4153, 3, 280, 140, 0, 4151, 4153, 3, 278, 139, 0, 4152, 4150, 1, 0, 0, 0, 4152, 4151, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4159, 5, 867, 0, 0, 4155, 4157, 5, 13, 0, 0, 4156, 4155, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4158, 1, 0, 0, 0, 4158, 4160, 3, 706, 353, 0, 4159, 4156, 1, 0, 0, 0, 4159, 4160, 1, 0, 0, 0, 4160, 4162, 1, 0, 0, 0, 4161, 4147, 1, 0, 0, 0, 4161, 4148, 1, 0, 0, 0, 4161, 4149, 1, 0, 0, 0, 4162, 285, 1, 0, 0, 0, 4163, 4164, 5, 253, 0, 0, 4164, 4165, 5, 866, 0, 0, 4165, 4166, 5, 882, 0, 0, 4166, 4167, 5, 868, 0, 0, 4167, 4168, 5, 882, 0, 0, 4168, 4169, 5, 337, 0, 0, 4169, 4170, 5, 866, 0, 0, 4170, 4171, 3, 288, 144, 0, 4171, 4172, 5, 867, 0, 0, 4172, 4177, 5, 867, 0, 0, 4173, 4175, 5, 13, 0, 0, 4174, 4173, 1, 0, 0, 0, 4174, 4175, 1, 0, 0, 0, 4175, 4176, 1, 0, 0, 0, 4176, 4178, 3, 706, 353, 0, 4177, 4174, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 287, 1, 0, 0, 0, 4179, 4184, 3, 290, 145, 0, 4180, 4181, 5, 868, 0, 0, 4181, 4183, 3, 290, 145, 0, 4182, 4180, 1, 0, 0, 0, 4183, 4186, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 289, 1, 0, 0, 0, 4186, 4184, 1, 0, 0, 0, 4187, 4204, 3, 662, 331, 0, 4188, 4189, 5, 65, 0, 0, 4189, 4205, 5, 256, 0, 0, 4190, 4202, 3, 726, 363, 0, 4191, 4192, 5, 257, 0, 0, 4192, 4194, 5, 882, 0, 0, 4193, 4195, 3, 292, 146, 0, 4194, 4193, 1, 0, 0, 0, 4194, 4195, 1, 0, 0, 0, 4195, 4197, 1, 0, 0, 0, 4196, 4198, 3, 294, 147, 0, 4197, 4196, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4203, 1, 0, 0, 0, 4199, 4200, 5, 60, 0, 0, 4200, 4201, 5, 257, 0, 0, 4201, 4203, 5, 882, 0, 0, 4202, 4191, 1, 0, 0, 0, 4202, 4199, 1, 0, 0, 0, 4203, 4205, 1, 0, 0, 0, 4204, 4188, 1, 0, 0, 0, 4204, 4190, 1, 0, 0, 0, 4205, 4217, 1, 0, 0, 0, 4206, 4208, 5, 255, 0, 0, 4207, 4209, 5, 257, 0, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 4210, 1, 0, 0, 0, 4210, 4211, 5, 882, 0, 0, 4211, 4212, 5, 337, 0, 0, 4212, 4213, 5, 866, 0, 0, 4213, 4214, 3, 288, 144, 0, 4214, 4215, 5, 867, 0, 0, 4215, 4217, 1, 0, 0, 0, 4216, 4187, 1, 0, 0, 0, 4216, 4206, 1, 0, 0, 0, 4217, 291, 1, 0, 0, 0, 4218, 4223, 5, 116, 0, 0, 4219, 4223, 5, 382, 0, 0, 4220, 4221, 5, 42, 0, 0, 4221, 4223, 3, 754, 377, 0, 4222, 4218, 1, 0, 0, 0, 4222, 4219, 1, 0, 0, 0, 4222, 4220, 1, 0, 0, 0, 4223, 4224, 1, 0, 0, 0, 4224, 4225, 5, 119, 0, 0, 4225, 4226, 5, 55, 0, 0, 4226, 293, 1, 0, 0, 0, 4227, 4232, 5, 116, 0, 0, 4228, 4232, 5, 382, 0, 0, 4229, 4230, 5, 42, 0, 0, 4230, 4232, 3, 754, 377, 0, 4231, 4227, 1, 0, 0, 0, 4231, 4228, 1, 0, 0, 0, 4231, 4229, 1, 0, 0, 0, 4232, 4233, 1, 0, 0, 0, 4233, 4234, 5, 119, 0, 0, 4234, 4235, 5, 382, 0, 0, 4235, 295, 1, 0, 0, 0, 4236, 4245, 7, 59, 0, 0, 4237, 4245, 5, 76, 0, 0, 4238, 4245, 5, 172, 0, 0, 4239, 4245, 5, 168, 0, 0, 4240, 4245, 5, 166, 0, 0, 4241, 4245, 5, 636, 0, 0, 4242, 4245, 7, 60, 0, 0, 4243, 4245, 5, 167, 0, 0, 4244, 4236, 1, 0, 0, 0, 4244, 4237, 1, 0, 0, 0, 4244, 4238, 1, 0, 0, 0, 4244, 4239, 1, 0, 0, 0, 4244, 4240, 1, 0, 0, 0, 4244, 4241, 1, 0, 0, 0, 4244, 4242, 1, 0, 0, 0, 4244, 4243, 1, 0, 0, 0, 4245, 297, 1, 0, 0, 0, 4246, 4249, 5, 850, 0, 0, 4247, 4249, 3, 300, 150, 0, 4248, 4246, 1, 0, 0, 0, 4248, 4247, 1, 0, 0, 0, 4249, 4254, 1, 0, 0, 0, 4250, 4251, 5, 868, 0, 0, 4251, 4253, 3, 300, 150, 0, 4252, 4250, 1, 0, 0, 0, 4253, 4256, 1, 0, 0, 0, 4254, 4252, 1, 0, 0, 0, 4254, 4255, 1, 0, 0, 0, 4255, 299, 1, 0, 0, 0, 4256, 4254, 1, 0, 0, 0, 4257, 4258, 5, 892, 0, 0, 4258, 4260, 5, 841, 0, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 4261, 1, 0, 0, 0, 4261, 4266, 3, 804, 402, 0, 4262, 4264, 5, 13, 0, 0, 4263, 4262, 1, 0, 0, 0, 4263, 4264, 1, 0, 0, 0, 4264, 4265, 1, 0, 0, 0, 4265, 4267, 3, 706, 353, 0, 4266, 4263, 1, 0, 0, 0, 4266, 4267, 1, 0, 0, 0, 4267, 4287, 1, 0, 0, 0, 4268, 4273, 3, 764, 382, 0, 4269, 4271, 5, 13, 0, 0, 4270, 4269, 1, 0, 0, 0, 4270, 4271, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4274, 3, 706, 353, 0, 4273, 4270, 1, 0, 0, 0, 4273, 4274, 1, 0, 0, 0, 4274, 4287, 1, 0, 0, 0, 4275, 4276, 3, 702, 351, 0, 4276, 4277, 5, 865, 0, 0, 4277, 4278, 5, 850, 0, 0, 4278, 4287, 1, 0, 0, 0, 4279, 4284, 3, 662, 331, 0, 4280, 4282, 5, 13, 0, 0, 4281, 4280, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4285, 3, 706, 353, 0, 4284, 4281, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4287, 1, 0, 0, 0, 4286, 4259, 1, 0, 0, 0, 4286, 4268, 1, 0, 0, 0, 4286, 4275, 1, 0, 0, 0, 4286, 4279, 1, 0, 0, 0, 4287, 301, 1, 0, 0, 0, 4288, 4289, 5, 88, 0, 0, 4289, 4294, 3, 236, 118, 0, 4290, 4291, 5, 868, 0, 0, 4291, 4293, 3, 236, 118, 0, 4292, 4290, 1, 0, 0, 0, 4293, 4296, 1, 0, 0, 0, 4294, 4292, 1, 0, 0, 0, 4294, 4295, 1, 0, 0, 0, 4295, 4325, 1, 0, 0, 0, 4296, 4294, 1, 0, 0, 0, 4297, 4298, 5, 88, 0, 0, 4298, 4299, 5, 372, 0, 0, 4299, 4325, 5, 882, 0, 0, 4300, 4301, 5, 88, 0, 0, 4301, 4302, 5, 128, 0, 0, 4302, 4306, 5, 882, 0, 0, 4303, 4304, 5, 26, 0, 0, 4304, 4305, 5, 155, 0, 0, 4305, 4307, 3, 688, 344, 0, 4306, 4303, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, 0, 4307, 4314, 1, 0, 0, 0, 4308, 4310, 7, 47, 0, 0, 4309, 4311, 3, 304, 152, 0, 4310, 4309, 1, 0, 0, 0, 4311, 4312, 1, 0, 0, 0, 4312, 4310, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4315, 1, 0, 0, 0, 4314, 4308, 1, 0, 0, 0, 4314, 4315, 1, 0, 0, 0, 4315, 4322, 1, 0, 0, 0, 4316, 4318, 5, 102, 0, 0, 4317, 4319, 3, 306, 153, 0, 4318, 4317, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4323, 1, 0, 0, 0, 4322, 4316, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 4325, 1, 0, 0, 0, 4324, 4288, 1, 0, 0, 0, 4324, 4297, 1, 0, 0, 0, 4324, 4300, 1, 0, 0, 0, 4325, 303, 1, 0, 0, 0, 4326, 4327, 5, 174, 0, 0, 4327, 4328, 5, 20, 0, 0, 4328, 4339, 5, 882, 0, 0, 4329, 4331, 5, 123, 0, 0, 4330, 4329, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4333, 5, 56, 0, 0, 4333, 4334, 5, 20, 0, 0, 4334, 4339, 5, 882, 0, 0, 4335, 4336, 5, 58, 0, 0, 4336, 4337, 5, 20, 0, 0, 4337, 4339, 5, 882, 0, 0, 4338, 4326, 1, 0, 0, 0, 4338, 4330, 1, 0, 0, 0, 4338, 4335, 1, 0, 0, 0, 4339, 305, 1, 0, 0, 0, 4340, 4341, 5, 171, 0, 0, 4341, 4342, 5, 20, 0, 0, 4342, 4347, 5, 882, 0, 0, 4343, 4344, 5, 174, 0, 0, 4344, 4345, 5, 20, 0, 0, 4345, 4347, 5, 882, 0, 0, 4346, 4340, 1, 0, 0, 0, 4346, 4343, 1, 0, 0, 0, 4347, 307, 1, 0, 0, 0, 4348, 4349, 5, 68, 0, 0, 4349, 4351, 3, 262, 131, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 4354, 1, 0, 0, 0, 4352, 4353, 5, 192, 0, 0, 4353, 4355, 3, 804, 402, 0, 4354, 4352, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 309, 1, 0, 0, 0, 4356, 4357, 5, 74, 0, 0, 4357, 4358, 5, 20, 0, 0, 4358, 4363, 3, 316, 158, 0, 4359, 4360, 5, 868, 0, 0, 4360, 4362, 3, 316, 158, 0, 4361, 4359, 1, 0, 0, 0, 4362, 4365, 1, 0, 0, 0, 4363, 4361, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 4368, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4366, 4367, 5, 194, 0, 0, 4367, 4369, 5, 584, 0, 0, 4368, 4366, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 311, 1, 0, 0, 0, 4370, 4371, 5, 75, 0, 0, 4371, 4372, 3, 804, 402, 0, 4372, 313, 1, 0, 0, 0, 4373, 4374, 5, 689, 0, 0, 4374, 4375, 3, 782, 391, 0, 4375, 4376, 5, 13, 0, 0, 4376, 4377, 5, 866, 0, 0, 4377, 4378, 3, 780, 390, 0, 4378, 4388, 5, 867, 0, 0, 4379, 4380, 5, 868, 0, 0, 4380, 4381, 3, 782, 391, 0, 4381, 4382, 5, 13, 0, 0, 4382, 4383, 5, 866, 0, 0, 4383, 4384, 3, 780, 390, 0, 4384, 4385, 5, 867, 0, 0, 4385, 4387, 1, 0, 0, 0, 4386, 4379, 1, 0, 0, 0, 4387, 4390, 1, 0, 0, 0, 4388, 4386, 1, 0, 0, 0, 4388, 4389, 1, 0, 0, 0, 4389, 315, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4391, 4393, 3, 804, 402, 0, 4392, 4394, 7, 55, 0, 0, 4393, 4392, 1, 0, 0, 0, 4393, 4394, 1, 0, 0, 0, 4394, 317, 1, 0, 0, 0, 4395, 4406, 5, 100, 0, 0, 4396, 4397, 3, 320, 160, 0, 4397, 4398, 5, 868, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4396, 1, 0, 0, 0, 4399, 4400, 1, 0, 0, 0, 4400, 4401, 1, 0, 0, 0, 4401, 4407, 3, 320, 160, 0, 4402, 4403, 3, 320, 160, 0, 4403, 4404, 5, 509, 0, 0, 4404, 4405, 3, 320, 160, 0, 4405, 4407, 1, 0, 0, 0, 4406, 4399, 1, 0, 0, 0, 4406, 4402, 1, 0, 0, 0, 4407, 319, 1, 0, 0, 0, 4408, 4412, 3, 712, 356, 0, 4409, 4412, 3, 686, 343, 0, 4410, 4412, 3, 708, 354, 0, 4411, 4408, 1, 0, 0, 0, 4411, 4409, 1, 0, 0, 0, 4411, 4410, 1, 0, 0, 0, 4412, 321, 1, 0, 0, 0, 4413, 4414, 5, 640, 0, 0, 4414, 4423, 5, 664, 0, 0, 4415, 4420, 3, 344, 172, 0, 4416, 4417, 5, 868, 0, 0, 4417, 4419, 3, 344, 172, 0, 4418, 4416, 1, 0, 0, 0, 4419, 4422, 1, 0, 0, 0, 4420, 4418, 1, 0, 0, 0, 4420, 4421, 1, 0, 0, 0, 4421, 4424, 1, 0, 0, 0, 4422, 4420, 1, 0, 0, 0, 4423, 4415, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 323, 1, 0, 0, 0, 4425, 4427, 5, 317, 0, 0, 4426, 4428, 5, 691, 0, 0, 4427, 4426, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 325, 1, 0, 0, 0, 4429, 4431, 5, 341, 0, 0, 4430, 4432, 5, 691, 0, 0, 4431, 4430, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 4438, 1, 0, 0, 0, 4433, 4435, 5, 11, 0, 0, 4434, 4436, 5, 502, 0, 0, 4435, 4434, 1, 0, 0, 0, 4435, 4436, 1, 0, 0, 0, 4436, 4437, 1, 0, 0, 0, 4437, 4439, 5, 326, 0, 0, 4438, 4433, 1, 0, 0, 0, 4438, 4439, 1, 0, 0, 0, 4439, 4444, 1, 0, 0, 0, 4440, 4442, 5, 502, 0, 0, 4441, 4440, 1, 0, 0, 0, 4441, 4442, 1, 0, 0, 0, 4442, 4443, 1, 0, 0, 0, 4443, 4445, 5, 140, 0, 0, 4444, 4441, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 327, 1, 0, 0, 0, 4446, 4448, 5, 583, 0, 0, 4447, 4449, 5, 691, 0, 0, 4448, 4447, 1, 0, 0, 0, 4448, 4449, 1, 0, 0, 0, 4449, 4455, 1, 0, 0, 0, 4450, 4452, 5, 11, 0, 0, 4451, 4453, 5, 502, 0, 0, 4452, 4451, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 4454, 1, 0, 0, 0, 4454, 4456, 5, 326, 0, 0, 4455, 4450, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 4461, 1, 0, 0, 0, 4457, 4459, 5, 502, 0, 0, 4458, 4457, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 4460, 1, 0, 0, 0, 4460, 4462, 5, 140, 0, 0, 4461, 4458, 1, 0, 0, 0, 4461, 4462, 1, 0, 0, 0, 4462, 329, 1, 0, 0, 0, 4463, 4464, 5, 589, 0, 0, 4464, 4465, 3, 706, 353, 0, 4465, 331, 1, 0, 0, 0, 4466, 4468, 5, 583, 0, 0, 4467, 4469, 5, 691, 0, 0, 4468, 4467, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4472, 5, 176, 0, 0, 4471, 4473, 5, 589, 0, 0, 4472, 4471, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 4475, 3, 706, 353, 0, 4475, 333, 1, 0, 0, 0, 4476, 4477, 5, 140, 0, 0, 4477, 4478, 5, 589, 0, 0, 4478, 4479, 3, 706, 353, 0, 4479, 335, 1, 0, 0, 0, 4480, 4481, 5, 104, 0, 0, 4481, 4482, 7, 61, 0, 0, 4482, 4487, 3, 346, 173, 0, 4483, 4484, 5, 868, 0, 0, 4484, 4486, 3, 346, 173, 0, 4485, 4483, 1, 0, 0, 0, 4486, 4489, 1, 0, 0, 0, 4487, 4485, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 337, 1, 0, 0, 0, 4489, 4487, 1, 0, 0, 0, 4490, 4491, 5, 183, 0, 0, 4491, 4492, 5, 752, 0, 0, 4492, 339, 1, 0, 0, 0, 4493, 4494, 5, 155, 0, 0, 4494, 4495, 5, 313, 0, 0, 4495, 4496, 5, 857, 0, 0, 4496, 4497, 7, 26, 0, 0, 4497, 341, 1, 0, 0, 0, 4498, 4500, 5, 155, 0, 0, 4499, 4501, 7, 62, 0, 0, 4500, 4499, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 4503, 5, 664, 0, 0, 4503, 4508, 3, 350, 175, 0, 4504, 4505, 5, 868, 0, 0, 4505, 4507, 3, 350, 175, 0, 4506, 4504, 1, 0, 0, 0, 4507, 4510, 1, 0, 0, 0, 4508, 4506, 1, 0, 0, 0, 4508, 4509, 1, 0, 0, 0, 4509, 343, 1, 0, 0, 0, 4510, 4508, 1, 0, 0, 0, 4511, 4512, 5, 194, 0, 0, 4512, 4513, 5, 350, 0, 0, 4513, 4519, 5, 600, 0, 0, 4514, 4515, 5, 135, 0, 0, 4515, 4519, 5, 195, 0, 0, 4516, 4517, 5, 135, 0, 0, 4517, 4519, 5, 515, 0, 0, 4518, 4511, 1, 0, 0, 0, 4518, 4514, 1, 0, 0, 0, 4518, 4516, 1, 0, 0, 0, 4519, 345, 1, 0, 0, 0, 4520, 4525, 3, 652, 326, 0, 4521, 4523, 5, 13, 0, 0, 4522, 4521, 1, 0, 0, 0, 4522, 4523, 1, 0, 0, 0, 4523, 4524, 1, 0, 0, 0, 4524, 4526, 3, 706, 353, 0, 4525, 4522, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4527, 1, 0, 0, 0, 4527, 4528, 3, 348, 174, 0, 4528, 347, 1, 0, 0, 0, 4529, 4531, 5, 135, 0, 0, 4530, 4532, 5, 450, 0, 0, 4531, 4530, 1, 0, 0, 0, 4531, 4532, 1, 0, 0, 0, 4532, 4538, 1, 0, 0, 0, 4533, 4535, 5, 107, 0, 0, 4534, 4533, 1, 0, 0, 0, 4534, 4535, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4538, 5, 195, 0, 0, 4537, 4529, 1, 0, 0, 0, 4537, 4534, 1, 0, 0, 0, 4538, 349, 1, 0, 0, 0, 4539, 4540, 5, 440, 0, 0, 4540, 4541, 5, 448, 0, 0, 4541, 4547, 3, 352, 176, 0, 4542, 4543, 5, 135, 0, 0, 4543, 4547, 5, 195, 0, 0, 4544, 4545, 5, 135, 0, 0, 4545, 4547, 5, 515, 0, 0, 4546, 4539, 1, 0, 0, 0, 4546, 4542, 1, 0, 0, 0, 4546, 4544, 1, 0, 0, 0, 4547, 351, 1, 0, 0, 0, 4548, 4549, 5, 809, 0, 0, 4549, 4556, 5, 135, 0, 0, 4550, 4551, 5, 135, 0, 0, 4551, 4556, 5, 810, 0, 0, 4552, 4553, 5, 135, 0, 0, 4553, 4556, 5, 811, 0, 0, 4554, 4556, 5, 812, 0, 0, 4555, 4548, 1, 0, 0, 0, 4555, 4550, 1, 0, 0, 0, 4555, 4552, 1, 0, 0, 0, 4555, 4554, 1, 0, 0, 0, 4556, 353, 1, 0, 0, 0, 4557, 4558, 5, 25, 0, 0, 4558, 4559, 5, 453, 0, 0, 4559, 4560, 5, 176, 0, 0, 4560, 4565, 3, 370, 185, 0, 4561, 4562, 5, 868, 0, 0, 4562, 4564, 3, 370, 185, 0, 4563, 4561, 1, 0, 0, 0, 4564, 4567, 1, 0, 0, 0, 4565, 4563, 1, 0, 0, 0, 4565, 4566, 1, 0, 0, 0, 4566, 4569, 1, 0, 0, 0, 4567, 4565, 1, 0, 0, 0, 4568, 4570, 3, 390, 195, 0, 4569, 4568, 1, 0, 0, 0, 4569, 4570, 1, 0, 0, 0, 4570, 355, 1, 0, 0, 0, 4571, 4572, 5, 25, 0, 0, 4572, 4573, 5, 572, 0, 0, 4573, 4574, 5, 400, 0, 0, 4574, 4579, 3, 392, 196, 0, 4575, 4576, 5, 868, 0, 0, 4576, 4578, 3, 392, 196, 0, 4577, 4575, 1, 0, 0, 0, 4578, 4581, 1, 0, 0, 0, 4579, 4577, 1, 0, 0, 0, 4579, 4580, 1, 0, 0, 0, 4580, 4583, 1, 0, 0, 0, 4581, 4579, 1, 0, 0, 0, 4582, 4584, 3, 390, 195, 0, 4583, 4582, 1, 0, 0, 0, 4583, 4584, 1, 0, 0, 0, 4584, 357, 1, 0, 0, 0, 4585, 4586, 5, 25, 0, 0, 4586, 4587, 5, 572, 0, 0, 4587, 4588, 5, 605, 0, 0, 4588, 4589, 5, 176, 0, 0, 4589, 4594, 3, 380, 190, 0, 4590, 4591, 5, 868, 0, 0, 4591, 4593, 3, 380, 190, 0, 4592, 4590, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4594, 4595, 1, 0, 0, 0, 4595, 4598, 1, 0, 0, 0, 4596, 4594, 1, 0, 0, 0, 4597, 4599, 3, 390, 195, 0, 4598, 4597, 1, 0, 0, 0, 4598, 4599, 1, 0, 0, 0, 4599, 359, 1, 0, 0, 0, 4600, 4601, 5, 133, 0, 0, 4601, 4602, 7, 63, 0, 0, 4602, 4607, 5, 452, 0, 0, 4603, 4604, 5, 176, 0, 0, 4604, 4608, 5, 882, 0, 0, 4605, 4606, 5, 16, 0, 0, 4606, 4608, 5, 882, 0, 0, 4607, 4603, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4608, 361, 1, 0, 0, 0, 4609, 4610, 5, 640, 0, 0, 4610, 4619, 7, 64, 0, 0, 4611, 4616, 3, 396, 198, 0, 4612, 4613, 5, 868, 0, 0, 4613, 4615, 3, 396, 198, 0, 4614, 4612, 1, 0, 0, 0, 4615, 4618, 1, 0, 0, 0, 4616, 4614, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4620, 1, 0, 0, 0, 4618, 4616, 1, 0, 0, 0, 4619, 4611, 1, 0, 0, 0, 4619, 4620, 1, 0, 0, 0, 4620, 4623, 1, 0, 0, 0, 4621, 4622, 5, 676, 0, 0, 4622, 4624, 3, 398, 199, 0, 4623, 4621, 1, 0, 0, 0, 4623, 4624, 1, 0, 0, 0, 4624, 4628, 1, 0, 0, 0, 4625, 4627, 3, 400, 200, 0, 4626, 4625, 1, 0, 0, 0, 4627, 4630, 1, 0, 0, 0, 4628, 4626, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4632, 1, 0, 0, 0, 4630, 4628, 1, 0, 0, 0, 4631, 4633, 3, 390, 195, 0, 4632, 4631, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 363, 1, 0, 0, 0, 4634, 4635, 5, 646, 0, 0, 4635, 4644, 7, 64, 0, 0, 4636, 4641, 3, 396, 198, 0, 4637, 4638, 5, 868, 0, 0, 4638, 4640, 3, 396, 198, 0, 4639, 4637, 1, 0, 0, 0, 4640, 4643, 1, 0, 0, 0, 4641, 4639, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4644, 4636, 1, 0, 0, 0, 4644, 4645, 1, 0, 0, 0, 4645, 4647, 1, 0, 0, 0, 4646, 4648, 3, 390, 195, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 365, 1, 0, 0, 0, 4649, 4650, 5, 640, 0, 0, 4650, 4654, 5, 415, 0, 0, 4651, 4652, 5, 678, 0, 0, 4652, 4653, 5, 857, 0, 0, 4653, 4655, 5, 882, 0, 0, 4654, 4651, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4660, 1, 0, 0, 0, 4656, 4657, 5, 868, 0, 0, 4657, 4658, 5, 529, 0, 0, 4658, 4659, 5, 857, 0, 0, 4659, 4661, 5, 882, 0, 0, 4660, 4656, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 4666, 1, 0, 0, 0, 4662, 4663, 5, 868, 0, 0, 4663, 4664, 5, 363, 0, 0, 4664, 4665, 5, 857, 0, 0, 4665, 4667, 5, 882, 0, 0, 4666, 4662, 1, 0, 0, 0, 4666, 4667, 1, 0, 0, 0, 4667, 367, 1, 0, 0, 0, 4668, 4669, 5, 646, 0, 0, 4669, 4670, 5, 415, 0, 0, 4670, 369, 1, 0, 0, 0, 4671, 4672, 3, 372, 186, 0, 4672, 4673, 5, 857, 0, 0, 4673, 4674, 5, 882, 0, 0, 4674, 4699, 1, 0, 0, 0, 4675, 4676, 3, 374, 187, 0, 4676, 4677, 5, 857, 0, 0, 4677, 4678, 3, 712, 356, 0, 4678, 4699, 1, 0, 0, 0, 4679, 4680, 3, 376, 188, 0, 4680, 4681, 5, 857, 0, 0, 4681, 4682, 7, 26, 0, 0, 4682, 4699, 1, 0, 0, 0, 4683, 4699, 3, 378, 189, 0, 4684, 4685, 5, 424, 0, 0, 4685, 4686, 5, 857, 0, 0, 4686, 4695, 5, 866, 0, 0, 4687, 4692, 3, 706, 353, 0, 4688, 4689, 5, 868, 0, 0, 4689, 4691, 3, 706, 353, 0, 4690, 4688, 1, 0, 0, 0, 4691, 4694, 1, 0, 0, 0, 4692, 4690, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 4696, 1, 0, 0, 0, 4694, 4692, 1, 0, 0, 0, 4695, 4687, 1, 0, 0, 0, 4695, 4696, 1, 0, 0, 0, 4696, 4697, 1, 0, 0, 0, 4697, 4699, 5, 867, 0, 0, 4698, 4671, 1, 0, 0, 0, 4698, 4675, 1, 0, 0, 0, 4698, 4679, 1, 0, 0, 0, 4698, 4683, 1, 0, 0, 0, 4698, 4684, 1, 0, 0, 0, 4699, 371, 1, 0, 0, 0, 4700, 4701, 7, 65, 0, 0, 4701, 373, 1, 0, 0, 0, 4702, 4703, 7, 66, 0, 0, 4703, 375, 1, 0, 0, 0, 4704, 4705, 7, 67, 0, 0, 4705, 377, 1, 0, 0, 0, 4706, 4707, 5, 543, 0, 0, 4707, 4708, 5, 857, 0, 0, 4708, 4720, 7, 68, 0, 0, 4709, 4710, 5, 574, 0, 0, 4710, 4711, 5, 857, 0, 0, 4711, 4720, 7, 69, 0, 0, 4712, 4713, 5, 310, 0, 0, 4713, 4717, 5, 857, 0, 0, 4714, 4718, 5, 507, 0, 0, 4715, 4718, 5, 450, 0, 0, 4716, 4718, 3, 402, 201, 0, 4717, 4714, 1, 0, 0, 0, 4717, 4715, 1, 0, 0, 0, 4717, 4716, 1, 0, 0, 0, 4718, 4720, 1, 0, 0, 0, 4719, 4706, 1, 0, 0, 0, 4719, 4709, 1, 0, 0, 0, 4719, 4712, 1, 0, 0, 0, 4720, 379, 1, 0, 0, 0, 4721, 4722, 3, 382, 191, 0, 4722, 4723, 5, 857, 0, 0, 4723, 4724, 5, 882, 0, 0, 4724, 4749, 1, 0, 0, 0, 4725, 4726, 3, 384, 192, 0, 4726, 4727, 5, 857, 0, 0, 4727, 4728, 3, 712, 356, 0, 4728, 4749, 1, 0, 0, 0, 4729, 4730, 3, 386, 193, 0, 4730, 4731, 5, 857, 0, 0, 4731, 4732, 7, 26, 0, 0, 4732, 4749, 1, 0, 0, 0, 4733, 4749, 3, 388, 194, 0, 4734, 4735, 5, 424, 0, 0, 4735, 4736, 5, 857, 0, 0, 4736, 4745, 5, 866, 0, 0, 4737, 4742, 3, 706, 353, 0, 4738, 4739, 5, 868, 0, 0, 4739, 4741, 3, 706, 353, 0, 4740, 4738, 1, 0, 0, 0, 4741, 4744, 1, 0, 0, 0, 4742, 4740, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4746, 1, 0, 0, 0, 4744, 4742, 1, 0, 0, 0, 4745, 4737, 1, 0, 0, 0, 4745, 4746, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4749, 5, 867, 0, 0, 4748, 4721, 1, 0, 0, 0, 4748, 4725, 1, 0, 0, 0, 4748, 4729, 1, 0, 0, 0, 4748, 4733, 1, 0, 0, 0, 4748, 4734, 1, 0, 0, 0, 4749, 381, 1, 0, 0, 0, 4750, 4751, 7, 70, 0, 0, 4751, 383, 1, 0, 0, 0, 4752, 4753, 7, 71, 0, 0, 4753, 385, 1, 0, 0, 0, 4754, 4755, 7, 72, 0, 0, 4755, 387, 1, 0, 0, 0, 4756, 4757, 5, 543, 0, 0, 4757, 4758, 5, 857, 0, 0, 4758, 4770, 7, 68, 0, 0, 4759, 4760, 5, 574, 0, 0, 4760, 4761, 5, 857, 0, 0, 4761, 4770, 7, 73, 0, 0, 4762, 4763, 5, 310, 0, 0, 4763, 4767, 5, 857, 0, 0, 4764, 4768, 5, 507, 0, 0, 4765, 4768, 5, 450, 0, 0, 4766, 4768, 3, 402, 201, 0, 4767, 4764, 1, 0, 0, 0, 4767, 4765, 1, 0, 0, 0, 4767, 4766, 1, 0, 0, 0, 4768, 4770, 1, 0, 0, 0, 4769, 4756, 1, 0, 0, 0, 4769, 4759, 1, 0, 0, 0, 4769, 4762, 1, 0, 0, 0, 4770, 389, 1, 0, 0, 0, 4771, 4772, 5, 65, 0, 0, 4772, 4773, 5, 328, 0, 0, 4773, 4774, 5, 882, 0, 0, 4774, 391, 1, 0, 0, 0, 4775, 4776, 5, 565, 0, 0, 4776, 4777, 5, 857, 0, 0, 4777, 4778, 5, 866, 0, 0, 4778, 4783, 3, 628, 314, 0, 4779, 4780, 5, 868, 0, 0, 4780, 4782, 3, 628, 314, 0, 4781, 4779, 1, 0, 0, 0, 4782, 4785, 1, 0, 0, 0, 4783, 4781, 1, 0, 0, 0, 4783, 4784, 1, 0, 0, 0, 4784, 4786, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4786, 4787, 5, 867, 0, 0, 4787, 4839, 1, 0, 0, 0, 4788, 4789, 5, 567, 0, 0, 4789, 4790, 5, 857, 0, 0, 4790, 4791, 5, 866, 0, 0, 4791, 4796, 3, 628, 314, 0, 4792, 4793, 5, 868, 0, 0, 4793, 4795, 3, 628, 314, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4798, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4799, 1, 0, 0, 0, 4798, 4796, 1, 0, 0, 0, 4799, 4800, 5, 867, 0, 0, 4800, 4839, 1, 0, 0, 0, 4801, 4802, 5, 566, 0, 0, 4802, 4803, 5, 857, 0, 0, 4803, 4804, 5, 866, 0, 0, 4804, 4805, 3, 650, 325, 0, 4805, 4806, 5, 867, 0, 0, 4806, 4839, 1, 0, 0, 0, 4807, 4808, 5, 568, 0, 0, 4808, 4809, 5, 857, 0, 0, 4809, 4810, 5, 866, 0, 0, 4810, 4811, 3, 650, 325, 0, 4811, 4812, 5, 867, 0, 0, 4812, 4839, 1, 0, 0, 0, 4813, 4814, 5, 570, 0, 0, 4814, 4815, 5, 857, 0, 0, 4815, 4816, 5, 866, 0, 0, 4816, 4817, 3, 750, 375, 0, 4817, 4818, 5, 867, 0, 0, 4818, 4839, 1, 0, 0, 0, 4819, 4820, 5, 571, 0, 0, 4820, 4821, 5, 857, 0, 0, 4821, 4822, 5, 866, 0, 0, 4822, 4823, 3, 750, 375, 0, 4823, 4824, 5, 867, 0, 0, 4824, 4839, 1, 0, 0, 0, 4825, 4826, 5, 569, 0, 0, 4826, 4827, 5, 857, 0, 0, 4827, 4828, 5, 866, 0, 0, 4828, 4833, 3, 394, 197, 0, 4829, 4830, 5, 868, 0, 0, 4830, 4832, 3, 394, 197, 0, 4831, 4829, 1, 0, 0, 0, 4832, 4835, 1, 0, 0, 0, 4833, 4831, 1, 0, 0, 0, 4833, 4834, 1, 0, 0, 0, 4834, 4836, 1, 0, 0, 0, 4835, 4833, 1, 0, 0, 0, 4836, 4837, 5, 867, 0, 0, 4837, 4839, 1, 0, 0, 0, 4838, 4775, 1, 0, 0, 0, 4838, 4788, 1, 0, 0, 0, 4838, 4801, 1, 0, 0, 0, 4838, 4807, 1, 0, 0, 0, 4838, 4813, 1, 0, 0, 0, 4838, 4819, 1, 0, 0, 0, 4838, 4825, 1, 0, 0, 0, 4839, 393, 1, 0, 0, 0, 4840, 4841, 5, 866, 0, 0, 4841, 4842, 3, 652, 326, 0, 4842, 4843, 5, 868, 0, 0, 4843, 4844, 3, 652, 326, 0, 4844, 4845, 5, 867, 0, 0, 4845, 395, 1, 0, 0, 0, 4846, 4847, 7, 74, 0, 0, 4847, 397, 1, 0, 0, 0, 4848, 4849, 7, 75, 0, 0, 4849, 4850, 5, 857, 0, 0, 4850, 4874, 3, 402, 201, 0, 4851, 4852, 5, 460, 0, 0, 4852, 4853, 5, 857, 0, 0, 4853, 4854, 5, 882, 0, 0, 4854, 4855, 5, 868, 0, 0, 4855, 4856, 5, 461, 0, 0, 4856, 4857, 5, 857, 0, 0, 4857, 4874, 3, 712, 356, 0, 4858, 4859, 5, 611, 0, 0, 4859, 4860, 5, 857, 0, 0, 4860, 4861, 5, 882, 0, 0, 4861, 4862, 5, 868, 0, 0, 4862, 4863, 5, 612, 0, 0, 4863, 4864, 5, 857, 0, 0, 4864, 4874, 3, 712, 356, 0, 4865, 4866, 5, 557, 0, 0, 4866, 4867, 5, 857, 0, 0, 4867, 4868, 5, 882, 0, 0, 4868, 4869, 5, 868, 0, 0, 4869, 4870, 5, 558, 0, 0, 4870, 4871, 5, 857, 0, 0, 4871, 4874, 3, 712, 356, 0, 4872, 4874, 5, 634, 0, 0, 4873, 4848, 1, 0, 0, 0, 4873, 4851, 1, 0, 0, 0, 4873, 4858, 1, 0, 0, 0, 4873, 4865, 1, 0, 0, 0, 4873, 4872, 1, 0, 0, 0, 4874, 399, 1, 0, 0, 0, 4875, 4876, 5, 678, 0, 0, 4876, 4877, 5, 857, 0, 0, 4877, 4888, 5, 882, 0, 0, 4878, 4879, 5, 529, 0, 0, 4879, 4880, 5, 857, 0, 0, 4880, 4888, 5, 882, 0, 0, 4881, 4882, 5, 363, 0, 0, 4882, 4883, 5, 857, 0, 0, 4883, 4888, 5, 882, 0, 0, 4884, 4885, 5, 535, 0, 0, 4885, 4886, 5, 857, 0, 0, 4886, 4888, 5, 882, 0, 0, 4887, 4875, 1, 0, 0, 0, 4887, 4878, 1, 0, 0, 0, 4887, 4881, 1, 0, 0, 0, 4887, 4884, 1, 0, 0, 0, 4888, 401, 1, 0, 0, 0, 4889, 4894, 3, 696, 348, 0, 4890, 4891, 5, 868, 0, 0, 4891, 4893, 3, 696, 348, 0, 4892, 4890, 1, 0, 0, 0, 4893, 4896, 1, 0, 0, 0, 4894, 4892, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4899, 1, 0, 0, 0, 4896, 4894, 1, 0, 0, 0, 4897, 4899, 5, 882, 0, 0, 4898, 4889, 1, 0, 0, 0, 4898, 4897, 1, 0, 0, 0, 4899, 403, 1, 0, 0, 0, 4900, 4901, 5, 694, 0, 0, 4901, 4902, 7, 76, 0, 0, 4902, 4904, 3, 698, 349, 0, 4903, 4905, 7, 77, 0, 0, 4904, 4903, 1, 0, 0, 0, 4904, 4905, 1, 0, 0, 0, 4905, 405, 1, 0, 0, 0, 4906, 4907, 5, 694, 0, 0, 4907, 4908, 5, 378, 0, 0, 4908, 4914, 3, 698, 349, 0, 4909, 4912, 5, 654, 0, 0, 4910, 4911, 5, 65, 0, 0, 4911, 4913, 5, 489, 0, 0, 4912, 4910, 1, 0, 0, 0, 4912, 4913, 1, 0, 0, 0, 4913, 4915, 1, 0, 0, 0, 4914, 4909, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 407, 1, 0, 0, 0, 4916, 4917, 5, 694, 0, 0, 4917, 4918, 5, 540, 0, 0, 4918, 4919, 3, 698, 349, 0, 4919, 409, 1, 0, 0, 0, 4920, 4921, 5, 694, 0, 0, 4921, 4922, 5, 341, 0, 0, 4922, 4925, 3, 698, 349, 0, 4923, 4924, 5, 513, 0, 0, 4924, 4926, 5, 533, 0, 0, 4925, 4923, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 411, 1, 0, 0, 0, 4927, 4928, 5, 694, 0, 0, 4928, 4929, 5, 583, 0, 0, 4929, 4930, 3, 698, 349, 0, 4930, 413, 1, 0, 0, 0, 4931, 4932, 5, 694, 0, 0, 4932, 4935, 5, 551, 0, 0, 4933, 4934, 5, 33, 0, 0, 4934, 4936, 3, 698, 349, 0, 4935, 4933, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 415, 1, 0, 0, 0, 4937, 4938, 5, 540, 0, 0, 4938, 4939, 3, 706, 353, 0, 4939, 4942, 5, 68, 0, 0, 4940, 4943, 5, 882, 0, 0, 4941, 4943, 5, 892, 0, 0, 4942, 4940, 1, 0, 0, 0, 4942, 4941, 1, 0, 0, 0, 4943, 417, 1, 0, 0, 0, 4944, 4945, 5, 717, 0, 0, 4945, 4948, 3, 706, 353, 0, 4946, 4947, 5, 188, 0, 0, 4947, 4949, 3, 752, 376, 0, 4948, 4946, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 419, 1, 0, 0, 0, 4950, 4951, 7, 78, 0, 0, 4951, 4952, 5, 540, 0, 0, 4952, 4953, 3, 706, 353, 0, 4953, 421, 1, 0, 0, 0, 4954, 4957, 3, 424, 212, 0, 4955, 4957, 3, 4, 2, 0, 4956, 4954, 1, 0, 0, 0, 4956, 4955, 1, 0, 0, 0, 4957, 423, 1, 0, 0, 0, 4958, 4959, 3, 706, 353, 0, 4959, 4960, 5, 878, 0, 0, 4960, 4962, 1, 0, 0, 0, 4961, 4958, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 4969, 5, 317, 0, 0, 4964, 4965, 3, 444, 222, 0, 4965, 4966, 5, 869, 0, 0, 4966, 4968, 1, 0, 0, 0, 4967, 4964, 1, 0, 0, 0, 4968, 4971, 1, 0, 0, 0, 4969, 4967, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4977, 1, 0, 0, 0, 4971, 4969, 1, 0, 0, 0, 4972, 4973, 3, 446, 223, 0, 4973, 4974, 5, 869, 0, 0, 4974, 4976, 1, 0, 0, 0, 4975, 4972, 1, 0, 0, 0, 4976, 4979, 1, 0, 0, 0, 4977, 4975, 1, 0, 0, 0, 4977, 4978, 1, 0, 0, 0, 4978, 4985, 1, 0, 0, 0, 4979, 4977, 1, 0, 0, 0, 4980, 4981, 3, 448, 224, 0, 4981, 4982, 5, 869, 0, 0, 4982, 4984, 1, 0, 0, 0, 4983, 4980, 1, 0, 0, 0, 4984, 4987, 1, 0, 0, 0, 4985, 4983, 1, 0, 0, 0, 4985, 4986, 1, 0, 0, 0, 4986, 4993, 1, 0, 0, 0, 4987, 4985, 1, 0, 0, 0, 4988, 4989, 3, 450, 225, 0, 4989, 4990, 5, 869, 0, 0, 4990, 4992, 1, 0, 0, 0, 4991, 4988, 1, 0, 0, 0, 4992, 4995, 1, 0, 0, 0, 4993, 4991, 1, 0, 0, 0, 4993, 4994, 1, 0, 0, 0, 4994, 4999, 1, 0, 0, 0, 4995, 4993, 1, 0, 0, 0, 4996, 4998, 3, 454, 227, 0, 4997, 4996, 1, 0, 0, 0, 4998, 5001, 1, 0, 0, 0, 4999, 4997, 1, 0, 0, 0, 4999, 5000, 1, 0, 0, 0, 5000, 5002, 1, 0, 0, 0, 5001, 4999, 1, 0, 0, 0, 5002, 5004, 5, 378, 0, 0, 5003, 5005, 3, 706, 353, 0, 5004, 5003, 1, 0, 0, 0, 5004, 5005, 1, 0, 0, 0, 5005, 425, 1, 0, 0, 0, 5006, 5009, 5, 23, 0, 0, 5007, 5010, 3, 706, 353, 0, 5008, 5010, 3, 804, 402, 0, 5009, 5007, 1, 0, 0, 0, 5009, 5008, 1, 0, 0, 0, 5009, 5010, 1, 0, 0, 0, 5010, 5012, 1, 0, 0, 0, 5011, 5013, 3, 456, 228, 0, 5012, 5011, 1, 0, 0, 0, 5013, 5014, 1, 0, 0, 0, 5014, 5012, 1, 0, 0, 0, 5014, 5015, 1, 0, 0, 0, 5015, 5022, 1, 0, 0, 0, 5016, 5018, 5, 53, 0, 0, 5017, 5019, 3, 454, 227, 0, 5018, 5017, 1, 0, 0, 0, 5019, 5020, 1, 0, 0, 0, 5020, 5018, 1, 0, 0, 0, 5020, 5021, 1, 0, 0, 0, 5021, 5023, 1, 0, 0, 0, 5022, 5016, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5024, 1, 0, 0, 0, 5024, 5025, 5, 378, 0, 0, 5025, 5026, 5, 23, 0, 0, 5026, 427, 1, 0, 0, 0, 5027, 5028, 5, 78, 0, 0, 5028, 5029, 3, 804, 402, 0, 5029, 5031, 5, 175, 0, 0, 5030, 5032, 3, 454, 227, 0, 5031, 5030, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5031, 1, 0, 0, 0, 5033, 5034, 1, 0, 0, 0, 5034, 5038, 1, 0, 0, 0, 5035, 5037, 3, 458, 229, 0, 5036, 5035, 1, 0, 0, 0, 5037, 5040, 1, 0, 0, 0, 5038, 5036, 1, 0, 0, 0, 5038, 5039, 1, 0, 0, 0, 5039, 5047, 1, 0, 0, 0, 5040, 5038, 1, 0, 0, 0, 5041, 5043, 5, 53, 0, 0, 5042, 5044, 3, 454, 227, 0, 5043, 5042, 1, 0, 0, 0, 5044, 5045, 1, 0, 0, 0, 5045, 5043, 1, 0, 0, 0, 5045, 5046, 1, 0, 0, 0, 5046, 5048, 1, 0, 0, 0, 5047, 5041, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5049, 1, 0, 0, 0, 5049, 5050, 5, 378, 0, 0, 5050, 5051, 5, 78, 0, 0, 5051, 429, 1, 0, 0, 0, 5052, 5053, 5, 90, 0, 0, 5053, 5054, 3, 706, 353, 0, 5054, 431, 1, 0, 0, 0, 5055, 5056, 5, 97, 0, 0, 5056, 5057, 3, 706, 353, 0, 5057, 433, 1, 0, 0, 0, 5058, 5059, 3, 706, 353, 0, 5059, 5060, 5, 878, 0, 0, 5060, 5062, 1, 0, 0, 0, 5061, 5058, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5065, 5, 106, 0, 0, 5064, 5066, 3, 454, 227, 0, 5065, 5064, 1, 0, 0, 0, 5066, 5067, 1, 0, 0, 0, 5067, 5065, 1, 0, 0, 0, 5067, 5068, 1, 0, 0, 0, 5068, 5069, 1, 0, 0, 0, 5069, 5070, 5, 378, 0, 0, 5070, 5072, 5, 106, 0, 0, 5071, 5073, 3, 706, 353, 0, 5072, 5071, 1, 0, 0, 0, 5072, 5073, 1, 0, 0, 0, 5073, 435, 1, 0, 0, 0, 5074, 5075, 3, 706, 353, 0, 5075, 5076, 5, 878, 0, 0, 5076, 5078, 1, 0, 0, 0, 5077, 5074, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5081, 5, 142, 0, 0, 5080, 5082, 3, 454, 227, 0, 5081, 5080, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5081, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 5085, 1, 0, 0, 0, 5085, 5086, 5, 676, 0, 0, 5086, 5087, 3, 804, 402, 0, 5087, 5088, 5, 378, 0, 0, 5088, 5090, 5, 142, 0, 0, 5089, 5091, 3, 706, 353, 0, 5090, 5089, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 437, 1, 0, 0, 0, 5092, 5093, 5, 148, 0, 0, 5093, 5094, 3, 804, 402, 0, 5094, 439, 1, 0, 0, 0, 5095, 5096, 3, 706, 353, 0, 5096, 5097, 5, 878, 0, 0, 5097, 5099, 1, 0, 0, 0, 5098, 5095, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5101, 5, 193, 0, 0, 5101, 5102, 3, 804, 402, 0, 5102, 5104, 5, 371, 0, 0, 5103, 5105, 3, 454, 227, 0, 5104, 5103, 1, 0, 0, 0, 5105, 5106, 1, 0, 0, 0, 5106, 5104, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 5108, 1, 0, 0, 0, 5108, 5109, 5, 378, 0, 0, 5109, 5111, 5, 193, 0, 0, 5110, 5112, 3, 706, 353, 0, 5111, 5110, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 441, 1, 0, 0, 0, 5113, 5114, 5, 334, 0, 0, 5114, 5129, 3, 706, 353, 0, 5115, 5120, 5, 64, 0, 0, 5116, 5118, 5, 501, 0, 0, 5117, 5116, 1, 0, 0, 0, 5117, 5118, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5121, 5, 68, 0, 0, 5120, 5117, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5123, 3, 706, 353, 0, 5123, 5124, 5, 88, 0, 0, 5124, 5125, 3, 704, 352, 0, 5125, 5129, 1, 0, 0, 0, 5126, 5127, 5, 516, 0, 0, 5127, 5129, 3, 706, 353, 0, 5128, 5113, 1, 0, 0, 0, 5128, 5115, 1, 0, 0, 0, 5128, 5126, 1, 0, 0, 0, 5129, 443, 1, 0, 0, 0, 5130, 5131, 5, 41, 0, 0, 5131, 5132, 3, 704, 352, 0, 5132, 5135, 3, 726, 363, 0, 5133, 5134, 5, 42, 0, 0, 5134, 5136, 3, 804, 402, 0, 5135, 5133, 1, 0, 0, 0, 5135, 5136, 1, 0, 0, 0, 5136, 445, 1, 0, 0, 0, 5137, 5138, 5, 41, 0, 0, 5138, 5139, 3, 706, 353, 0, 5139, 5140, 5, 30, 0, 0, 5140, 5147, 5, 65, 0, 0, 5141, 5148, 3, 712, 356, 0, 5142, 5144, 5, 164, 0, 0, 5143, 5145, 5, 682, 0, 0, 5144, 5143, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 5146, 1, 0, 0, 0, 5146, 5148, 5, 882, 0, 0, 5147, 5141, 1, 0, 0, 0, 5147, 5142, 1, 0, 0, 0, 5148, 447, 1, 0, 0, 0, 5149, 5150, 5, 41, 0, 0, 5150, 5151, 3, 706, 353, 0, 5151, 5152, 5, 38, 0, 0, 5152, 5153, 5, 65, 0, 0, 5153, 5154, 3, 210, 105, 0, 5154, 449, 1, 0, 0, 0, 5155, 5156, 5, 41, 0, 0, 5156, 5157, 7, 79, 0, 0, 5157, 5158, 5, 417, 0, 0, 5158, 5159, 5, 65, 0, 0, 5159, 5164, 3, 452, 226, 0, 5160, 5161, 5, 868, 0, 0, 5161, 5163, 3, 452, 226, 0, 5162, 5160, 1, 0, 0, 0, 5163, 5166, 1, 0, 0, 0, 5164, 5162, 1, 0, 0, 0, 5164, 5165, 1, 0, 0, 0, 5165, 5167, 1, 0, 0, 0, 5166, 5164, 1, 0, 0, 0, 5167, 5168, 3, 422, 211, 0, 5168, 451, 1, 0, 0, 0, 5169, 5181, 3, 712, 356, 0, 5170, 5172, 5, 164, 0, 0, 5171, 5173, 5, 682, 0, 0, 5172, 5171, 1, 0, 0, 0, 5172, 5173, 1, 0, 0, 0, 5173, 5174, 1, 0, 0, 0, 5174, 5181, 5, 882, 0, 0, 5175, 5181, 3, 706, 353, 0, 5176, 5181, 5, 165, 0, 0, 5177, 5178, 5, 114, 0, 0, 5178, 5181, 5, 407, 0, 0, 5179, 5181, 5, 163, 0, 0, 5180, 5169, 1, 0, 0, 0, 5180, 5170, 1, 0, 0, 0, 5180, 5175, 1, 0, 0, 0, 5180, 5176, 1, 0, 0, 0, 5180, 5177, 1, 0, 0, 0, 5180, 5179, 1, 0, 0, 0, 5181, 453, 1, 0, 0, 0, 5182, 5185, 3, 18, 9, 0, 5183, 5185, 3, 4, 2, 0, 5184, 5182, 1, 0, 0, 0, 5184, 5183, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5187, 5, 869, 0, 0, 5187, 455, 1, 0, 0, 0, 5188, 5191, 5, 191, 0, 0, 5189, 5192, 3, 724, 362, 0, 5190, 5192, 3, 804, 402, 0, 5191, 5189, 1, 0, 0, 0, 5191, 5190, 1, 0, 0, 0, 5192, 5193, 1, 0, 0, 0, 5193, 5195, 5, 175, 0, 0, 5194, 5196, 3, 454, 227, 0, 5195, 5194, 1, 0, 0, 0, 5196, 5197, 1, 0, 0, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5198, 1, 0, 0, 0, 5198, 457, 1, 0, 0, 0, 5199, 5200, 5, 54, 0, 0, 5200, 5201, 3, 804, 402, 0, 5201, 5203, 5, 175, 0, 0, 5202, 5204, 3, 454, 227, 0, 5203, 5202, 1, 0, 0, 0, 5204, 5205, 1, 0, 0, 0, 5205, 5203, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 459, 1, 0, 0, 0, 5207, 5208, 5, 8, 0, 0, 5208, 5210, 5, 678, 0, 0, 5209, 5211, 3, 758, 379, 0, 5210, 5209, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 5268, 1, 0, 0, 0, 5212, 5217, 3, 492, 246, 0, 5213, 5214, 5, 868, 0, 0, 5214, 5216, 3, 492, 246, 0, 5215, 5213, 1, 0, 0, 0, 5216, 5219, 1, 0, 0, 0, 5217, 5215, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5269, 1, 0, 0, 0, 5219, 5217, 1, 0, 0, 0, 5220, 5225, 3, 494, 247, 0, 5221, 5222, 5, 868, 0, 0, 5222, 5224, 3, 494, 247, 0, 5223, 5221, 1, 0, 0, 0, 5224, 5227, 1, 0, 0, 0, 5225, 5223, 1, 0, 0, 0, 5225, 5226, 1, 0, 0, 0, 5226, 5242, 1, 0, 0, 0, 5227, 5225, 1, 0, 0, 0, 5228, 5240, 5, 144, 0, 0, 5229, 5241, 5, 505, 0, 0, 5230, 5237, 3, 506, 253, 0, 5231, 5233, 5, 11, 0, 0, 5232, 5231, 1, 0, 0, 0, 5232, 5233, 1, 0, 0, 0, 5233, 5234, 1, 0, 0, 0, 5234, 5236, 3, 506, 253, 0, 5235, 5232, 1, 0, 0, 0, 5236, 5239, 1, 0, 0, 0, 5237, 5235, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 5241, 1, 0, 0, 0, 5239, 5237, 1, 0, 0, 0, 5240, 5229, 1, 0, 0, 0, 5240, 5230, 1, 0, 0, 0, 5241, 5243, 1, 0, 0, 0, 5242, 5228, 1, 0, 0, 0, 5242, 5243, 1, 0, 0, 0, 5243, 5250, 1, 0, 0, 0, 5244, 5246, 5, 194, 0, 0, 5245, 5247, 3, 508, 254, 0, 5246, 5245, 1, 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5246, 1, 0, 0, 0, 5248, 5249, 1, 0, 0, 0, 5249, 5251, 1, 0, 0, 0, 5250, 5244, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5256, 1, 0, 0, 0, 5252, 5255, 3, 510, 255, 0, 5253, 5255, 3, 512, 256, 0, 5254, 5252, 1, 0, 0, 0, 5254, 5253, 1, 0, 0, 0, 5255, 5258, 1, 0, 0, 0, 5256, 5254, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, 0, 5257, 5261, 1, 0, 0, 0, 5258, 5256, 1, 0, 0, 0, 5259, 5260, 7, 80, 0, 0, 5260, 5262, 5, 882, 0, 0, 5261, 5259, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5269, 1, 0, 0, 0, 5263, 5264, 3, 656, 328, 0, 5264, 5265, 5, 42, 0, 0, 5265, 5266, 5, 582, 0, 0, 5266, 5267, 3, 468, 234, 0, 5267, 5269, 1, 0, 0, 0, 5268, 5212, 1, 0, 0, 0, 5268, 5220, 1, 0, 0, 0, 5268, 5263, 1, 0, 0, 0, 5269, 461, 1, 0, 0, 0, 5270, 5271, 5, 34, 0, 0, 5271, 5273, 5, 678, 0, 0, 5272, 5274, 3, 760, 380, 0, 5273, 5272, 1, 0, 0, 0, 5273, 5274, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5277, 3, 684, 342, 0, 5276, 5278, 3, 496, 248, 0, 5277, 5276, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5286, 1, 0, 0, 0, 5279, 5280, 5, 868, 0, 0, 5280, 5282, 3, 684, 342, 0, 5281, 5283, 3, 496, 248, 0, 5282, 5281, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 5285, 1, 0, 0, 0, 5284, 5279, 1, 0, 0, 0, 5285, 5288, 1, 0, 0, 0, 5286, 5284, 1, 0, 0, 0, 5286, 5287, 1, 0, 0, 0, 5287, 5292, 1, 0, 0, 0, 5288, 5286, 1, 0, 0, 0, 5289, 5290, 5, 42, 0, 0, 5290, 5291, 5, 582, 0, 0, 5291, 5293, 3, 468, 234, 0, 5292, 5289, 1, 0, 0, 0, 5292, 5293, 1, 0, 0, 0, 5293, 5308, 1, 0, 0, 0, 5294, 5306, 5, 144, 0, 0, 5295, 5307, 5, 505, 0, 0, 5296, 5303, 3, 506, 253, 0, 5297, 5299, 5, 11, 0, 0, 5298, 5297, 1, 0, 0, 0, 5298, 5299, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5300, 5302, 3, 506, 253, 0, 5301, 5298, 1, 0, 0, 0, 5302, 5305, 1, 0, 0, 0, 5303, 5301, 1, 0, 0, 0, 5303, 5304, 1, 0, 0, 0, 5304, 5307, 1, 0, 0, 0, 5305, 5303, 1, 0, 0, 0, 5306, 5295, 1, 0, 0, 0, 5306, 5296, 1, 0, 0, 0, 5307, 5309, 1, 0, 0, 0, 5308, 5294, 1, 0, 0, 0, 5308, 5309, 1, 0, 0, 0, 5309, 5316, 1, 0, 0, 0, 5310, 5312, 5, 194, 0, 0, 5311, 5313, 3, 508, 254, 0, 5312, 5311, 1, 0, 0, 0, 5313, 5314, 1, 0, 0, 0, 5314, 5312, 1, 0, 0, 0, 5314, 5315, 1, 0, 0, 0, 5315, 5317, 1, 0, 0, 0, 5316, 5310, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5322, 1, 0, 0, 0, 5318, 5321, 3, 510, 255, 0, 5319, 5321, 3, 512, 256, 0, 5320, 5318, 1, 0, 0, 0, 5320, 5319, 1, 0, 0, 0, 5321, 5324, 1, 0, 0, 0, 5322, 5320, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5327, 1, 0, 0, 0, 5324, 5322, 1, 0, 0, 0, 5325, 5326, 7, 80, 0, 0, 5326, 5328, 5, 882, 0, 0, 5327, 5325, 1, 0, 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 463, 1, 0, 0, 0, 5329, 5330, 5, 51, 0, 0, 5330, 5332, 5, 678, 0, 0, 5331, 5333, 3, 758, 379, 0, 5332, 5331, 1, 0, 0, 0, 5332, 5333, 1, 0, 0, 0, 5333, 5334, 1, 0, 0, 0, 5334, 5339, 3, 684, 342, 0, 5335, 5336, 5, 868, 0, 0, 5336, 5338, 3, 684, 342, 0, 5337, 5335, 1, 0, 0, 0, 5338, 5341, 1, 0, 0, 0, 5339, 5337, 1, 0, 0, 0, 5339, 5340, 1, 0, 0, 0, 5340, 465, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5342, 5343, 5, 73, 0, 0, 5343, 5348, 3, 520, 260, 0, 5344, 5345, 5, 868, 0, 0, 5345, 5347, 3, 520, 260, 0, 5346, 5344, 1, 0, 0, 0, 5347, 5350, 1, 0, 0, 0, 5348, 5346, 1, 0, 0, 0, 5348, 5349, 1, 0, 0, 0, 5349, 5351, 1, 0, 0, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5353, 5, 119, 0, 0, 5352, 5354, 3, 488, 244, 0, 5353, 5352, 1, 0, 0, 0, 5353, 5354, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5356, 3, 524, 262, 0, 5356, 5366, 5, 176, 0, 0, 5357, 5362, 3, 500, 250, 0, 5358, 5359, 5, 868, 0, 0, 5359, 5361, 3, 500, 250, 0, 5360, 5358, 1, 0, 0, 0, 5361, 5364, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5367, 1, 0, 0, 0, 5364, 5362, 1, 0, 0, 0, 5365, 5367, 3, 654, 327, 0, 5366, 5357, 1, 0, 0, 0, 5366, 5365, 1, 0, 0, 0, 5367, 5382, 1, 0, 0, 0, 5368, 5380, 5, 144, 0, 0, 5369, 5381, 5, 505, 0, 0, 5370, 5377, 3, 506, 253, 0, 5371, 5373, 5, 11, 0, 0, 5372, 5371, 1, 0, 0, 0, 5372, 5373, 1, 0, 0, 0, 5373, 5374, 1, 0, 0, 0, 5374, 5376, 3, 506, 253, 0, 5375, 5372, 1, 0, 0, 0, 5376, 5379, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5377, 5378, 1, 0, 0, 0, 5378, 5381, 1, 0, 0, 0, 5379, 5377, 1, 0, 0, 0, 5380, 5369, 1, 0, 0, 0, 5380, 5370, 1, 0, 0, 0, 5381, 5383, 1, 0, 0, 0, 5382, 5368, 1, 0, 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 5393, 1, 0, 0, 0, 5384, 5390, 5, 194, 0, 0, 5385, 5386, 5, 73, 0, 0, 5386, 5389, 5, 121, 0, 0, 5387, 5389, 3, 508, 254, 0, 5388, 5385, 1, 0, 0, 0, 5388, 5387, 1, 0, 0, 0, 5389, 5392, 1, 0, 0, 0, 5390, 5388, 1, 0, 0, 0, 5390, 5391, 1, 0, 0, 0, 5391, 5394, 1, 0, 0, 0, 5392, 5390, 1, 0, 0, 0, 5393, 5384, 1, 0, 0, 0, 5393, 5394, 1, 0, 0, 0, 5394, 5402, 1, 0, 0, 0, 5395, 5396, 5, 13, 0, 0, 5396, 5400, 3, 684, 342, 0, 5397, 5398, 5, 194, 0, 0, 5398, 5399, 5, 582, 0, 0, 5399, 5401, 3, 468, 234, 0, 5400, 5397, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5403, 1, 0, 0, 0, 5402, 5395, 1, 0, 0, 0, 5402, 5403, 1, 0, 0, 0, 5403, 5432, 1, 0, 0, 0, 5404, 5407, 5, 73, 0, 0, 5405, 5406, 5, 547, 0, 0, 5406, 5408, 5, 119, 0, 0, 5407, 5405, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5409, 1, 0, 0, 0, 5409, 5414, 3, 656, 328, 0, 5410, 5411, 5, 868, 0, 0, 5411, 5413, 3, 656, 328, 0, 5412, 5410, 1, 0, 0, 0, 5413, 5416, 1, 0, 0, 0, 5414, 5412, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5417, 1, 0, 0, 0, 5416, 5414, 1, 0, 0, 0, 5417, 5418, 5, 176, 0, 0, 5418, 5423, 3, 656, 328, 0, 5419, 5420, 5, 868, 0, 0, 5420, 5422, 3, 656, 328, 0, 5421, 5419, 1, 0, 0, 0, 5422, 5425, 1, 0, 0, 0, 5423, 5421, 1, 0, 0, 0, 5423, 5424, 1, 0, 0, 0, 5424, 5429, 1, 0, 0, 0, 5425, 5423, 1, 0, 0, 0, 5426, 5427, 5, 194, 0, 0, 5427, 5428, 5, 704, 0, 0, 5428, 5430, 5, 121, 0, 0, 5429, 5426, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5432, 1, 0, 0, 0, 5431, 5342, 1, 0, 0, 0, 5431, 5404, 1, 0, 0, 0, 5432, 467, 1, 0, 0, 0, 5433, 5442, 5, 42, 0, 0, 5434, 5442, 5, 505, 0, 0, 5435, 5438, 5, 7, 0, 0, 5436, 5437, 5, 59, 0, 0, 5437, 5439, 3, 654, 327, 0, 5438, 5436, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5442, 1, 0, 0, 0, 5440, 5442, 3, 654, 327, 0, 5441, 5433, 1, 0, 0, 0, 5441, 5434, 1, 0, 0, 0, 5441, 5435, 1, 0, 0, 0, 5441, 5440, 1, 0, 0, 0, 5442, 469, 1, 0, 0, 0, 5443, 5444, 5, 73, 0, 0, 5444, 5445, 5, 547, 0, 0, 5445, 5446, 5, 119, 0, 0, 5446, 5447, 3, 684, 342, 0, 5447, 5448, 5, 176, 0, 0, 5448, 5453, 3, 684, 342, 0, 5449, 5450, 5, 868, 0, 0, 5450, 5452, 3, 684, 342, 0, 5451, 5449, 1, 0, 0, 0, 5452, 5455, 1, 0, 0, 0, 5453, 5451, 1, 0, 0, 0, 5453, 5454, 1, 0, 0, 0, 5454, 5459, 1, 0, 0, 0, 5455, 5453, 1, 0, 0, 0, 5456, 5457, 5, 194, 0, 0, 5457, 5458, 5, 73, 0, 0, 5458, 5460, 5, 121, 0, 0, 5459, 5456, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 471, 1, 0, 0, 0, 5461, 5462, 5, 8, 0, 0, 5462, 5463, 5, 739, 0, 0, 5463, 5464, 5, 74, 0, 0, 5464, 5470, 3, 646, 323, 0, 5465, 5467, 5, 190, 0, 0, 5466, 5468, 5, 857, 0, 0, 5467, 5466, 1, 0, 0, 0, 5467, 5468, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 3, 480, 240, 0, 5470, 5465, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5477, 1, 0, 0, 0, 5472, 5474, 5, 837, 0, 0, 5473, 5475, 5, 857, 0, 0, 5474, 5473, 1, 0, 0, 0, 5474, 5475, 1, 0, 0, 0, 5475, 5476, 1, 0, 0, 0, 5476, 5478, 3, 712, 356, 0, 5477, 5472, 1, 0, 0, 0, 5477, 5478, 1, 0, 0, 0, 5478, 5483, 1, 0, 0, 0, 5479, 5481, 7, 39, 0, 0, 5480, 5482, 5, 66, 0, 0, 5481, 5480, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5484, 1, 0, 0, 0, 5483, 5479, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 473, 1, 0, 0, 0, 5485, 5486, 5, 34, 0, 0, 5486, 5487, 5, 739, 0, 0, 5487, 5488, 5, 74, 0, 0, 5488, 5489, 3, 644, 322, 0, 5489, 5490, 5, 839, 0, 0, 5490, 5491, 5, 857, 0, 0, 5491, 5497, 7, 81, 0, 0, 5492, 5494, 5, 190, 0, 0, 5493, 5495, 5, 857, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5498, 3, 480, 240, 0, 5497, 5492, 1, 0, 0, 0, 5497, 5498, 1, 0, 0, 0, 5498, 5504, 1, 0, 0, 0, 5499, 5501, 5, 837, 0, 0, 5500, 5502, 5, 857, 0, 0, 5501, 5500, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 5505, 3, 712, 356, 0, 5504, 5499, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5507, 1, 0, 0, 0, 5506, 5508, 7, 39, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 475, 1, 0, 0, 0, 5509, 5510, 5, 51, 0, 0, 5510, 5511, 5, 739, 0, 0, 5511, 5512, 5, 74, 0, 0, 5512, 5514, 3, 646, 323, 0, 5513, 5515, 5, 66, 0, 0, 5514, 5513, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 477, 1, 0, 0, 0, 5516, 5517, 5, 155, 0, 0, 5517, 5518, 5, 739, 0, 0, 5518, 5519, 5, 74, 0, 0, 5519, 5529, 3, 646, 323, 0, 5520, 5521, 5, 65, 0, 0, 5521, 5526, 3, 712, 356, 0, 5522, 5523, 5, 868, 0, 0, 5523, 5525, 3, 712, 356, 0, 5524, 5522, 1, 0, 0, 0, 5525, 5528, 1, 0, 0, 0, 5526, 5524, 1, 0, 0, 0, 5526, 5527, 1, 0, 0, 0, 5527, 5530, 1, 0, 0, 0, 5528, 5526, 1, 0, 0, 0, 5529, 5520, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 479, 1, 0, 0, 0, 5531, 5537, 3, 712, 356, 0, 5532, 5533, 3, 712, 356, 0, 5533, 5534, 5, 854, 0, 0, 5534, 5535, 3, 712, 356, 0, 5535, 5537, 1, 0, 0, 0, 5536, 5531, 1, 0, 0, 0, 5536, 5532, 1, 0, 0, 0, 5537, 5542, 1, 0, 0, 0, 5538, 5539, 5, 868, 0, 0, 5539, 5541, 3, 480, 240, 0, 5540, 5538, 1, 0, 0, 0, 5541, 5544, 1, 0, 0, 0, 5542, 5540, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 481, 1, 0, 0, 0, 5544, 5542, 1, 0, 0, 0, 5545, 5546, 5, 141, 0, 0, 5546, 5547, 5, 678, 0, 0, 5547, 5552, 3, 526, 263, 0, 5548, 5549, 5, 868, 0, 0, 5549, 5551, 3, 526, 263, 0, 5550, 5548, 1, 0, 0, 0, 5551, 5554, 1, 0, 0, 0, 5552, 5550, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 483, 1, 0, 0, 0, 5554, 5552, 1, 0, 0, 0, 5555, 5557, 5, 149, 0, 0, 5556, 5558, 3, 758, 379, 0, 5557, 5556, 1, 0, 0, 0, 5557, 5558, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, 5564, 3, 520, 260, 0, 5560, 5561, 5, 868, 0, 0, 5561, 5563, 3, 520, 260, 0, 5562, 5560, 1, 0, 0, 0, 5563, 5566, 1, 0, 0, 0, 5564, 5562, 1, 0, 0, 0, 5564, 5565, 1, 0, 0, 0, 5565, 5567, 1, 0, 0, 0, 5566, 5564, 1, 0, 0, 0, 5567, 5569, 5, 119, 0, 0, 5568, 5570, 3, 488, 244, 0, 5569, 5568, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 5571, 1, 0, 0, 0, 5571, 5572, 3, 524, 262, 0, 5572, 5573, 5, 68, 0, 0, 5573, 5575, 3, 654, 327, 0, 5574, 5576, 3, 486, 243, 0, 5575, 5574, 1, 0, 0, 0, 5575, 5576, 1, 0, 0, 0, 5576, 5608, 1, 0, 0, 0, 5577, 5579, 5, 149, 0, 0, 5578, 5580, 3, 758, 379, 0, 5579, 5578, 1, 0, 0, 0, 5579, 5580, 1, 0, 0, 0, 5580, 5581, 1, 0, 0, 0, 5581, 5583, 5, 7, 0, 0, 5582, 5584, 5, 734, 0, 0, 5583, 5582, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5586, 5, 868, 0, 0, 5586, 5587, 5, 73, 0, 0, 5587, 5588, 5, 121, 0, 0, 5588, 5589, 5, 68, 0, 0, 5589, 5591, 3, 654, 327, 0, 5590, 5592, 3, 486, 243, 0, 5591, 5590, 1, 0, 0, 0, 5591, 5592, 1, 0, 0, 0, 5592, 5608, 1, 0, 0, 0, 5593, 5595, 5, 149, 0, 0, 5594, 5596, 3, 758, 379, 0, 5595, 5594, 1, 0, 0, 0, 5595, 5596, 1, 0, 0, 0, 5596, 5599, 1, 0, 0, 0, 5597, 5598, 5, 547, 0, 0, 5598, 5600, 5, 119, 0, 0, 5599, 5597, 1, 0, 0, 0, 5599, 5600, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5602, 3, 654, 327, 0, 5602, 5603, 5, 68, 0, 0, 5603, 5605, 3, 654, 327, 0, 5604, 5606, 3, 486, 243, 0, 5605, 5604, 1, 0, 0, 0, 5605, 5606, 1, 0, 0, 0, 5606, 5608, 1, 0, 0, 0, 5607, 5555, 1, 0, 0, 0, 5607, 5577, 1, 0, 0, 0, 5607, 5593, 1, 0, 0, 0, 5608, 485, 1, 0, 0, 0, 5609, 5610, 5, 79, 0, 0, 5610, 5611, 5, 674, 0, 0, 5611, 5612, 5, 678, 0, 0, 5612, 487, 1, 0, 0, 0, 5613, 5614, 7, 82, 0, 0, 5614, 489, 1, 0, 0, 0, 5615, 5616, 5, 155, 0, 0, 5616, 5619, 5, 529, 0, 0, 5617, 5618, 5, 65, 0, 0, 5618, 5620, 3, 684, 342, 0, 5619, 5617, 1, 0, 0, 0, 5619, 5620, 1, 0, 0, 0, 5620, 5621, 1, 0, 0, 0, 5621, 5624, 5, 857, 0, 0, 5622, 5625, 3, 798, 399, 0, 5623, 5625, 5, 882, 0, 0, 5624, 5622, 1, 0, 0, 0, 5624, 5623, 1, 0, 0, 0, 5625, 5648, 1, 0, 0, 0, 5626, 5627, 5, 155, 0, 0, 5627, 5630, 5, 529, 0, 0, 5628, 5629, 5, 65, 0, 0, 5629, 5631, 3, 684, 342, 0, 5630, 5628, 1, 0, 0, 0, 5630, 5631, 1, 0, 0, 0, 5631, 5636, 1, 0, 0, 0, 5632, 5633, 5, 176, 0, 0, 5633, 5637, 5, 829, 0, 0, 5634, 5635, 5, 857, 0, 0, 5635, 5637, 5, 882, 0, 0, 5636, 5632, 1, 0, 0, 0, 5636, 5634, 1, 0, 0, 0, 5637, 5640, 1, 0, 0, 0, 5638, 5639, 5, 143, 0, 0, 5639, 5641, 5, 882, 0, 0, 5640, 5638, 1, 0, 0, 0, 5640, 5641, 1, 0, 0, 0, 5641, 5645, 1, 0, 0, 0, 5642, 5643, 5, 147, 0, 0, 5643, 5644, 5, 36, 0, 0, 5644, 5646, 5, 529, 0, 0, 5645, 5642, 1, 0, 0, 0, 5645, 5646, 1, 0, 0, 0, 5646, 5648, 1, 0, 0, 0, 5647, 5615, 1, 0, 0, 0, 5647, 5626, 1, 0, 0, 0, 5648, 491, 1, 0, 0, 0, 5649, 5650, 3, 684, 342, 0, 5650, 5651, 3, 510, 255, 0, 5651, 493, 1, 0, 0, 0, 5652, 5678, 3, 684, 342, 0, 5653, 5654, 5, 423, 0, 0, 5654, 5655, 5, 20, 0, 0, 5655, 5656, 5, 882, 0, 0, 5656, 5679, 3, 502, 251, 0, 5657, 5658, 5, 423, 0, 0, 5658, 5659, 5, 20, 0, 0, 5659, 5660, 5, 829, 0, 0, 5660, 5661, 5, 529, 0, 0, 5661, 5679, 3, 502, 251, 0, 5662, 5663, 5, 423, 0, 0, 5663, 5664, 5, 194, 0, 0, 5664, 5679, 3, 504, 252, 0, 5665, 5666, 5, 369, 0, 0, 5666, 5667, 5, 511, 0, 0, 5667, 5679, 5, 529, 0, 0, 5668, 5669, 7, 83, 0, 0, 5669, 5671, 3, 518, 259, 0, 5670, 5672, 3, 514, 257, 0, 5671, 5670, 1, 0, 0, 0, 5671, 5672, 1, 0, 0, 0, 5672, 5674, 1, 0, 0, 0, 5673, 5668, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5673, 1, 0, 0, 0, 5675, 5676, 1, 0, 0, 0, 5676, 5679, 1, 0, 0, 0, 5677, 5679, 3, 516, 258, 0, 5678, 5653, 1, 0, 0, 0, 5678, 5657, 1, 0, 0, 0, 5678, 5662, 1, 0, 0, 0, 5678, 5665, 1, 0, 0, 0, 5678, 5673, 1, 0, 0, 0, 5678, 5677, 1, 0, 0, 0, 5678, 5679, 1, 0, 0, 0, 5679, 495, 1, 0, 0, 0, 5680, 5681, 5, 423, 0, 0, 5681, 5687, 5, 20, 0, 0, 5682, 5688, 5, 882, 0, 0, 5683, 5684, 5, 829, 0, 0, 5684, 5688, 5, 529, 0, 0, 5685, 5686, 5, 529, 0, 0, 5686, 5688, 5, 882, 0, 0, 5687, 5682, 1, 0, 0, 0, 5687, 5683, 1, 0, 0, 0, 5687, 5685, 1, 0, 0, 0, 5688, 5691, 1, 0, 0, 0, 5689, 5690, 5, 11, 0, 0, 5690, 5692, 3, 496, 248, 0, 5691, 5689, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 5717, 1, 0, 0, 0, 5693, 5694, 5, 423, 0, 0, 5694, 5695, 5, 194, 0, 0, 5695, 5704, 3, 706, 353, 0, 5696, 5700, 5, 20, 0, 0, 5697, 5701, 5, 882, 0, 0, 5698, 5699, 5, 829, 0, 0, 5699, 5701, 5, 529, 0, 0, 5700, 5697, 1, 0, 0, 0, 5700, 5698, 1, 0, 0, 0, 5701, 5705, 1, 0, 0, 0, 5702, 5703, 5, 13, 0, 0, 5703, 5705, 5, 882, 0, 0, 5704, 5696, 1, 0, 0, 0, 5704, 5702, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5708, 1, 0, 0, 0, 5706, 5707, 5, 11, 0, 0, 5707, 5709, 3, 496, 248, 0, 5708, 5706, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 5717, 1, 0, 0, 0, 5710, 5711, 5, 423, 0, 0, 5711, 5712, 5, 194, 0, 0, 5712, 5714, 3, 706, 353, 0, 5713, 5715, 3, 498, 249, 0, 5714, 5713, 1, 0, 0, 0, 5714, 5715, 1, 0, 0, 0, 5715, 5717, 1, 0, 0, 0, 5716, 5680, 1, 0, 0, 0, 5716, 5693, 1, 0, 0, 0, 5716, 5710, 1, 0, 0, 0, 5717, 497, 1, 0, 0, 0, 5718, 5719, 5, 427, 0, 0, 5719, 5720, 5, 708, 0, 0, 5720, 5721, 5, 423, 0, 0, 5721, 5725, 5, 20, 0, 0, 5722, 5723, 5, 829, 0, 0, 5723, 5726, 5, 529, 0, 0, 5724, 5726, 5, 882, 0, 0, 5725, 5722, 1, 0, 0, 0, 5725, 5724, 1, 0, 0, 0, 5726, 5736, 1, 0, 0, 0, 5727, 5728, 5, 427, 0, 0, 5728, 5729, 5, 708, 0, 0, 5729, 5730, 5, 423, 0, 0, 5730, 5731, 5, 194, 0, 0, 5731, 5732, 3, 706, 353, 0, 5732, 5733, 5, 13, 0, 0, 5733, 5734, 5, 882, 0, 0, 5734, 5736, 1, 0, 0, 0, 5735, 5718, 1, 0, 0, 0, 5735, 5727, 1, 0, 0, 0, 5736, 499, 1, 0, 0, 0, 5737, 5738, 3, 684, 342, 0, 5738, 5739, 5, 423, 0, 0, 5739, 5740, 5, 20, 0, 0, 5740, 5741, 5, 529, 0, 0, 5741, 5742, 5, 882, 0, 0, 5742, 5763, 1, 0, 0, 0, 5743, 5744, 3, 684, 342, 0, 5744, 5745, 5, 423, 0, 0, 5745, 5746, 5, 20, 0, 0, 5746, 5747, 5, 829, 0, 0, 5747, 5748, 5, 529, 0, 0, 5748, 5749, 3, 502, 251, 0, 5749, 5763, 1, 0, 0, 0, 5750, 5751, 3, 684, 342, 0, 5751, 5752, 5, 423, 0, 0, 5752, 5753, 5, 20, 0, 0, 5753, 5754, 5, 882, 0, 0, 5754, 5755, 3, 502, 251, 0, 5755, 5763, 1, 0, 0, 0, 5756, 5757, 3, 684, 342, 0, 5757, 5758, 5, 423, 0, 0, 5758, 5759, 5, 194, 0, 0, 5759, 5760, 3, 504, 252, 0, 5760, 5763, 1, 0, 0, 0, 5761, 5763, 3, 684, 342, 0, 5762, 5737, 1, 0, 0, 0, 5762, 5743, 1, 0, 0, 0, 5762, 5750, 1, 0, 0, 0, 5762, 5756, 1, 0, 0, 0, 5762, 5761, 1, 0, 0, 0, 5763, 501, 1, 0, 0, 0, 5764, 5765, 5, 143, 0, 0, 5765, 5767, 5, 882, 0, 0, 5766, 5764, 1, 0, 0, 0, 5766, 5767, 1, 0, 0, 0, 5767, 5771, 1, 0, 0, 0, 5768, 5769, 5, 147, 0, 0, 5769, 5770, 5, 36, 0, 0, 5770, 5772, 5, 529, 0, 0, 5771, 5768, 1, 0, 0, 0, 5771, 5772, 1, 0, 0, 0, 5772, 503, 1, 0, 0, 0, 5773, 5781, 3, 706, 353, 0, 5774, 5778, 7, 84, 0, 0, 5775, 5779, 5, 882, 0, 0, 5776, 5777, 5, 829, 0, 0, 5777, 5779, 5, 529, 0, 0, 5778, 5775, 1, 0, 0, 0, 5778, 5776, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5782, 3, 502, 251, 0, 5781, 5774, 1, 0, 0, 0, 5781, 5782, 1, 0, 0, 0, 5782, 5788, 1, 0, 0, 0, 5783, 5784, 3, 706, 353, 0, 5784, 5785, 5, 188, 0, 0, 5785, 5786, 3, 798, 399, 0, 5786, 5788, 1, 0, 0, 0, 5787, 5773, 1, 0, 0, 0, 5787, 5783, 1, 0, 0, 0, 5788, 505, 1, 0, 0, 0, 5789, 5798, 5, 169, 0, 0, 5790, 5798, 5, 693, 0, 0, 5791, 5792, 5, 331, 0, 0, 5792, 5798, 5, 882, 0, 0, 5793, 5794, 5, 441, 0, 0, 5794, 5798, 5, 882, 0, 0, 5795, 5796, 5, 651, 0, 0, 5796, 5798, 5, 882, 0, 0, 5797, 5789, 1, 0, 0, 0, 5797, 5790, 1, 0, 0, 0, 5797, 5791, 1, 0, 0, 0, 5797, 5793, 1, 0, 0, 0, 5797, 5795, 1, 0, 0, 0, 5798, 507, 1, 0, 0, 0, 5799, 5800, 5, 479, 0, 0, 5800, 5808, 3, 712, 356, 0, 5801, 5802, 5, 482, 0, 0, 5802, 5808, 3, 712, 356, 0, 5803, 5804, 5, 478, 0, 0, 5804, 5808, 3, 712, 356, 0, 5805, 5806, 5, 483, 0, 0, 5806, 5808, 3, 712, 356, 0, 5807, 5799, 1, 0, 0, 0, 5807, 5801, 1, 0, 0, 0, 5807, 5803, 1, 0, 0, 0, 5807, 5805, 1, 0, 0, 0, 5808, 509, 1, 0, 0, 0, 5809, 5810, 5, 529, 0, 0, 5810, 5817, 5, 390, 0, 0, 5811, 5818, 5, 42, 0, 0, 5812, 5818, 5, 500, 0, 0, 5813, 5814, 5, 87, 0, 0, 5814, 5815, 3, 712, 356, 0, 5815, 5816, 5, 698, 0, 0, 5816, 5818, 1, 0, 0, 0, 5817, 5811, 1, 0, 0, 0, 5817, 5812, 1, 0, 0, 0, 5817, 5813, 1, 0, 0, 0, 5817, 5818, 1, 0, 0, 0, 5818, 5848, 1, 0, 0, 0, 5819, 5820, 5, 529, 0, 0, 5820, 5823, 5, 420, 0, 0, 5821, 5824, 5, 42, 0, 0, 5822, 5824, 3, 712, 356, 0, 5823, 5821, 1, 0, 0, 0, 5823, 5822, 1, 0, 0, 0, 5824, 5848, 1, 0, 0, 0, 5825, 5826, 5, 529, 0, 0, 5826, 5827, 5, 581, 0, 0, 5827, 5832, 5, 87, 0, 0, 5828, 5833, 5, 42, 0, 0, 5829, 5830, 3, 712, 356, 0, 5830, 5831, 5, 698, 0, 0, 5831, 5833, 1, 0, 0, 0, 5832, 5828, 1, 0, 0, 0, 5832, 5829, 1, 0, 0, 0, 5833, 5848, 1, 0, 0, 0, 5834, 5835, 5, 529, 0, 0, 5835, 5836, 5, 144, 0, 0, 5836, 5838, 5, 36, 0, 0, 5837, 5839, 7, 85, 0, 0, 5838, 5837, 1, 0, 0, 0, 5838, 5839, 1, 0, 0, 0, 5839, 5848, 1, 0, 0, 0, 5840, 5841, 5, 395, 0, 0, 5841, 5848, 3, 712, 356, 0, 5842, 5845, 5, 530, 0, 0, 5843, 5846, 3, 712, 356, 0, 5844, 5846, 5, 669, 0, 0, 5845, 5843, 1, 0, 0, 0, 5845, 5844, 1, 0, 0, 0, 5846, 5848, 1, 0, 0, 0, 5847, 5809, 1, 0, 0, 0, 5847, 5819, 1, 0, 0, 0, 5847, 5825, 1, 0, 0, 0, 5847, 5834, 1, 0, 0, 0, 5847, 5840, 1, 0, 0, 0, 5847, 5842, 1, 0, 0, 0, 5848, 511, 1, 0, 0, 0, 5849, 5850, 5, 304, 0, 0, 5850, 5851, 7, 86, 0, 0, 5851, 513, 1, 0, 0, 0, 5852, 5855, 5, 423, 0, 0, 5853, 5854, 5, 194, 0, 0, 5854, 5856, 3, 706, 353, 0, 5855, 5853, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5865, 1, 0, 0, 0, 5857, 5861, 5, 20, 0, 0, 5858, 5862, 5, 882, 0, 0, 5859, 5860, 5, 829, 0, 0, 5860, 5862, 5, 529, 0, 0, 5861, 5858, 1, 0, 0, 0, 5861, 5859, 1, 0, 0, 0, 5862, 5866, 1, 0, 0, 0, 5863, 5864, 5, 13, 0, 0, 5864, 5866, 5, 882, 0, 0, 5865, 5857, 1, 0, 0, 0, 5865, 5863, 1, 0, 0, 0, 5866, 515, 1, 0, 0, 0, 5867, 5868, 3, 518, 259, 0, 5868, 5869, 5, 429, 0, 0, 5869, 5870, 5, 555, 0, 0, 5870, 5883, 1, 0, 0, 0, 5871, 5872, 3, 518, 259, 0, 5872, 5873, 5, 401, 0, 0, 5873, 5874, 5, 555, 0, 0, 5874, 5875, 5, 155, 0, 0, 5875, 5876, 5, 330, 0, 0, 5876, 5877, 5, 13, 0, 0, 5877, 5878, 5, 882, 0, 0, 5878, 5883, 1, 0, 0, 0, 5879, 5880, 3, 518, 259, 0, 5880, 5881, 5, 675, 0, 0, 5881, 5883, 1, 0, 0, 0, 5882, 5867, 1, 0, 0, 0, 5882, 5871, 1, 0, 0, 0, 5882, 5879, 1, 0, 0, 0, 5883, 517, 1, 0, 0, 0, 5884, 5885, 7, 87, 0, 0, 5885, 5886, 5, 394, 0, 0, 5886, 519, 1, 0, 0, 0, 5887, 5892, 3, 522, 261, 0, 5888, 5889, 5, 866, 0, 0, 5889, 5890, 3, 660, 330, 0, 5890, 5891, 5, 867, 0, 0, 5891, 5893, 1, 0, 0, 0, 5892, 5888, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 521, 1, 0, 0, 0, 5894, 5896, 5, 7, 0, 0, 5895, 5897, 5, 734, 0, 0, 5896, 5895, 1, 0, 0, 0, 5896, 5897, 1, 0, 0, 0, 5897, 5988, 1, 0, 0, 0, 5898, 5900, 5, 8, 0, 0, 5899, 5901, 5, 743, 0, 0, 5900, 5899, 1, 0, 0, 0, 5900, 5901, 1, 0, 0, 0, 5901, 5988, 1, 0, 0, 0, 5902, 5910, 5, 34, 0, 0, 5903, 5904, 5, 660, 0, 0, 5904, 5911, 5, 752, 0, 0, 5905, 5911, 5, 743, 0, 0, 5906, 5911, 5, 684, 0, 0, 5907, 5911, 5, 678, 0, 0, 5908, 5911, 5, 658, 0, 0, 5909, 5911, 5, 582, 0, 0, 5910, 5903, 1, 0, 0, 0, 5910, 5905, 1, 0, 0, 0, 5910, 5906, 1, 0, 0, 0, 5910, 5907, 1, 0, 0, 0, 5910, 5908, 1, 0, 0, 0, 5910, 5909, 1, 0, 0, 0, 5910, 5911, 1, 0, 0, 0, 5911, 5988, 1, 0, 0, 0, 5912, 5988, 5, 44, 0, 0, 5913, 5915, 5, 51, 0, 0, 5914, 5916, 5, 582, 0, 0, 5915, 5914, 1, 0, 0, 0, 5915, 5916, 1, 0, 0, 0, 5916, 5988, 1, 0, 0, 0, 5917, 5988, 5, 385, 0, 0, 5918, 5988, 5, 717, 0, 0, 5919, 5988, 5, 718, 0, 0, 5920, 5921, 5, 73, 0, 0, 5921, 5988, 5, 121, 0, 0, 5922, 5988, 5, 82, 0, 0, 5923, 5988, 5, 86, 0, 0, 5924, 5925, 5, 104, 0, 0, 5925, 5988, 5, 752, 0, 0, 5926, 5988, 5, 735, 0, 0, 5927, 5988, 5, 547, 0, 0, 5928, 5988, 5, 138, 0, 0, 5929, 5988, 5, 736, 0, 0, 5930, 5931, 5, 572, 0, 0, 5931, 5988, 7, 88, 0, 0, 5932, 5988, 5, 154, 0, 0, 5933, 5934, 5, 157, 0, 0, 5934, 5988, 7, 89, 0, 0, 5935, 5988, 5, 749, 0, 0, 5936, 5988, 5, 750, 0, 0, 5937, 5988, 5, 178, 0, 0, 5938, 5988, 5, 185, 0, 0, 5939, 5988, 5, 186, 0, 0, 5940, 5988, 5, 705, 0, 0, 5941, 5988, 5, 706, 0, 0, 5942, 5988, 5, 707, 0, 0, 5943, 5988, 5, 709, 0, 0, 5944, 5988, 5, 710, 0, 0, 5945, 5988, 5, 711, 0, 0, 5946, 5988, 5, 712, 0, 0, 5947, 5988, 5, 714, 0, 0, 5948, 5988, 5, 715, 0, 0, 5949, 5988, 5, 716, 0, 0, 5950, 5988, 5, 719, 0, 0, 5951, 5988, 5, 720, 0, 0, 5952, 5988, 5, 721, 0, 0, 5953, 5988, 5, 722, 0, 0, 5954, 5988, 5, 723, 0, 0, 5955, 5988, 5, 724, 0, 0, 5956, 5988, 5, 725, 0, 0, 5957, 5988, 5, 726, 0, 0, 5958, 5988, 5, 727, 0, 0, 5959, 5988, 5, 728, 0, 0, 5960, 5988, 5, 731, 0, 0, 5961, 5988, 5, 732, 0, 0, 5962, 5988, 5, 733, 0, 0, 5963, 5988, 5, 737, 0, 0, 5964, 5988, 5, 738, 0, 0, 5965, 5988, 5, 740, 0, 0, 5966, 5988, 5, 741, 0, 0, 5967, 5988, 5, 742, 0, 0, 5968, 5988, 5, 745, 0, 0, 5969, 5988, 5, 746, 0, 0, 5970, 5988, 5, 747, 0, 0, 5971, 5988, 5, 160, 0, 0, 5972, 5988, 5, 748, 0, 0, 5973, 5988, 5, 836, 0, 0, 5974, 5988, 5, 751, 0, 0, 5975, 5988, 5, 753, 0, 0, 5976, 5988, 5, 838, 0, 0, 5977, 5988, 5, 754, 0, 0, 5978, 5988, 5, 755, 0, 0, 5979, 5980, 5, 103, 0, 0, 5980, 5981, 5, 68, 0, 0, 5981, 5988, 5, 744, 0, 0, 5982, 5983, 5, 154, 0, 0, 5983, 5984, 5, 88, 0, 0, 5984, 5988, 5, 744, 0, 0, 5985, 5986, 5, 729, 0, 0, 5986, 5988, 5, 730, 0, 0, 5987, 5894, 1, 0, 0, 0, 5987, 5898, 1, 0, 0, 0, 5987, 5902, 1, 0, 0, 0, 5987, 5912, 1, 0, 0, 0, 5987, 5913, 1, 0, 0, 0, 5987, 5917, 1, 0, 0, 0, 5987, 5918, 1, 0, 0, 0, 5987, 5919, 1, 0, 0, 0, 5987, 5920, 1, 0, 0, 0, 5987, 5922, 1, 0, 0, 0, 5987, 5923, 1, 0, 0, 0, 5987, 5924, 1, 0, 0, 0, 5987, 5926, 1, 0, 0, 0, 5987, 5927, 1, 0, 0, 0, 5987, 5928, 1, 0, 0, 0, 5987, 5929, 1, 0, 0, 0, 5987, 5930, 1, 0, 0, 0, 5987, 5932, 1, 0, 0, 0, 5987, 5933, 1, 0, 0, 0, 5987, 5935, 1, 0, 0, 0, 5987, 5936, 1, 0, 0, 0, 5987, 5937, 1, 0, 0, 0, 5987, 5938, 1, 0, 0, 0, 5987, 5939, 1, 0, 0, 0, 5987, 5940, 1, 0, 0, 0, 5987, 5941, 1, 0, 0, 0, 5987, 5942, 1, 0, 0, 0, 5987, 5943, 1, 0, 0, 0, 5987, 5944, 1, 0, 0, 0, 5987, 5945, 1, 0, 0, 0, 5987, 5946, 1, 0, 0, 0, 5987, 5947, 1, 0, 0, 0, 5987, 5948, 1, 0, 0, 0, 5987, 5949, 1, 0, 0, 0, 5987, 5950, 1, 0, 0, 0, 5987, 5951, 1, 0, 0, 0, 5987, 5952, 1, 0, 0, 0, 5987, 5953, 1, 0, 0, 0, 5987, 5954, 1, 0, 0, 0, 5987, 5955, 1, 0, 0, 0, 5987, 5956, 1, 0, 0, 0, 5987, 5957, 1, 0, 0, 0, 5987, 5958, 1, 0, 0, 0, 5987, 5959, 1, 0, 0, 0, 5987, 5960, 1, 0, 0, 0, 5987, 5961, 1, 0, 0, 0, 5987, 5962, 1, 0, 0, 0, 5987, 5963, 1, 0, 0, 0, 5987, 5964, 1, 0, 0, 0, 5987, 5965, 1, 0, 0, 0, 5987, 5966, 1, 0, 0, 0, 5987, 5967, 1, 0, 0, 0, 5987, 5968, 1, 0, 0, 0, 5987, 5969, 1, 0, 0, 0, 5987, 5970, 1, 0, 0, 0, 5987, 5971, 1, 0, 0, 0, 5987, 5972, 1, 0, 0, 0, 5987, 5973, 1, 0, 0, 0, 5987, 5974, 1, 0, 0, 0, 5987, 5975, 1, 0, 0, 0, 5987, 5976, 1, 0, 0, 0, 5987, 5977, 1, 0, 0, 0, 5987, 5978, 1, 0, 0, 0, 5987, 5979, 1, 0, 0, 0, 5987, 5982, 1, 0, 0, 0, 5987, 5985, 1, 0, 0, 0, 5988, 523, 1, 0, 0, 0, 5989, 6006, 5, 850, 0, 0, 5990, 5991, 5, 850, 0, 0, 5991, 5992, 5, 865, 0, 0, 5992, 6006, 5, 850, 0, 0, 5993, 5994, 3, 706, 353, 0, 5994, 5995, 5, 865, 0, 0, 5995, 5996, 5, 850, 0, 0, 5996, 6006, 1, 0, 0, 0, 5997, 5998, 3, 706, 353, 0, 5998, 5999, 5, 865, 0, 0, 5999, 6000, 3, 706, 353, 0, 6000, 6006, 1, 0, 0, 0, 6001, 6002, 3, 706, 353, 0, 6002, 6003, 3, 710, 355, 0, 6003, 6006, 1, 0, 0, 0, 6004, 6006, 3, 706, 353, 0, 6005, 5989, 1, 0, 0, 0, 6005, 5990, 1, 0, 0, 0, 6005, 5993, 1, 0, 0, 0, 6005, 5997, 1, 0, 0, 0, 6005, 6001, 1, 0, 0, 0, 6005, 6004, 1, 0, 0, 0, 6006, 525, 1, 0, 0, 0, 6007, 6008, 3, 684, 342, 0, 6008, 6009, 5, 176, 0, 0, 6009, 6010, 3, 684, 342, 0, 6010, 527, 1, 0, 0, 0, 6011, 6013, 5, 10, 0, 0, 6012, 6014, 3, 538, 269, 0, 6013, 6012, 1, 0, 0, 0, 6013, 6014, 1, 0, 0, 0, 6014, 6015, 1, 0, 0, 0, 6015, 6016, 5, 173, 0, 0, 6016, 6060, 3, 650, 325, 0, 6017, 6019, 5, 10, 0, 0, 6018, 6020, 3, 538, 269, 0, 6019, 6018, 1, 0, 0, 0, 6019, 6020, 1, 0, 0, 0, 6020, 6021, 1, 0, 0, 0, 6021, 6022, 5, 173, 0, 0, 6022, 6023, 3, 652, 326, 0, 6023, 6024, 5, 185, 0, 0, 6024, 6025, 5, 77, 0, 0, 6025, 6026, 5, 119, 0, 0, 6026, 6031, 3, 660, 330, 0, 6027, 6028, 5, 194, 0, 0, 6028, 6029, 3, 712, 356, 0, 6029, 6030, 5, 19, 0, 0, 6030, 6032, 1, 0, 0, 0, 6031, 6027, 1, 0, 0, 0, 6031, 6032, 1, 0, 0, 0, 6032, 6060, 1, 0, 0, 0, 6033, 6035, 5, 10, 0, 0, 6034, 6036, 3, 538, 269, 0, 6035, 6034, 1, 0, 0, 0, 6035, 6036, 1, 0, 0, 0, 6036, 6037, 1, 0, 0, 0, 6037, 6038, 5, 173, 0, 0, 6038, 6039, 3, 652, 326, 0, 6039, 6040, 5, 185, 0, 0, 6040, 6041, 5, 77, 0, 0, 6041, 6042, 5, 119, 0, 0, 6042, 6046, 3, 662, 331, 0, 6043, 6044, 5, 188, 0, 0, 6044, 6045, 5, 360, 0, 0, 6045, 6047, 5, 882, 0, 0, 6046, 6043, 1, 0, 0, 0, 6046, 6047, 1, 0, 0, 0, 6047, 6060, 1, 0, 0, 0, 6048, 6050, 5, 10, 0, 0, 6049, 6051, 3, 538, 269, 0, 6050, 6049, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6053, 5, 173, 0, 0, 6053, 6054, 3, 652, 326, 0, 6054, 6055, 5, 51, 0, 0, 6055, 6056, 5, 77, 0, 0, 6056, 6057, 5, 119, 0, 0, 6057, 6058, 3, 660, 330, 0, 6058, 6060, 1, 0, 0, 0, 6059, 6011, 1, 0, 0, 0, 6059, 6017, 1, 0, 0, 0, 6059, 6033, 1, 0, 0, 0, 6059, 6048, 1, 0, 0, 0, 6060, 529, 1, 0, 0, 0, 6061, 6062, 5, 27, 0, 0, 6062, 6063, 5, 173, 0, 0, 6063, 6067, 3, 650, 325, 0, 6064, 6066, 3, 540, 270, 0, 6065, 6064, 1, 0, 0, 0, 6066, 6069, 1, 0, 0, 0, 6067, 6065, 1, 0, 0, 0, 6067, 6068, 1, 0, 0, 0, 6068, 531, 1, 0, 0, 0, 6069, 6067, 1, 0, 0, 0, 6070, 6071, 5, 329, 0, 0, 6071, 6072, 5, 173, 0, 0, 6072, 6074, 3, 650, 325, 0, 6073, 6075, 7, 90, 0, 0, 6074, 6073, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 533, 1, 0, 0, 0, 6076, 6078, 5, 120, 0, 0, 6077, 6079, 3, 538, 269, 0, 6078, 6077, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6081, 7, 61, 0, 0, 6081, 6082, 3, 650, 325, 0, 6082, 535, 1, 0, 0, 0, 6083, 6085, 5, 562, 0, 0, 6084, 6086, 3, 538, 269, 0, 6085, 6084, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6088, 5, 173, 0, 0, 6088, 6090, 3, 650, 325, 0, 6089, 6091, 5, 549, 0, 0, 6090, 6089, 1, 0, 0, 0, 6090, 6091, 1, 0, 0, 0, 6091, 6093, 1, 0, 0, 0, 6092, 6094, 5, 392, 0, 0, 6093, 6092, 1, 0, 0, 0, 6093, 6094, 1, 0, 0, 0, 6094, 6096, 1, 0, 0, 0, 6095, 6097, 5, 679, 0, 0, 6096, 6095, 1, 0, 0, 0, 6096, 6097, 1, 0, 0, 0, 6097, 537, 1, 0, 0, 0, 6098, 6099, 7, 91, 0, 0, 6099, 539, 1, 0, 0, 0, 6100, 6101, 5, 65, 0, 0, 6101, 6108, 5, 677, 0, 0, 6102, 6108, 5, 549, 0, 0, 6103, 6108, 5, 396, 0, 0, 6104, 6108, 5, 484, 0, 0, 6105, 6108, 5, 392, 0, 0, 6106, 6108, 5, 327, 0, 0, 6107, 6100, 1, 0, 0, 0, 6107, 6102, 1, 0, 0, 0, 6107, 6103, 1, 0, 0, 0, 6107, 6104, 1, 0, 0, 0, 6107, 6105, 1, 0, 0, 0, 6107, 6106, 1, 0, 0, 0, 6108, 541, 1, 0, 0, 0, 6109, 6110, 5, 432, 0, 0, 6110, 6111, 5, 344, 0, 0, 6111, 6116, 3, 706, 353, 0, 6112, 6113, 5, 868, 0, 0, 6113, 6115, 3, 706, 353, 0, 6114, 6112, 1, 0, 0, 0, 6115, 6118, 1, 0, 0, 0, 6116, 6114, 1, 0, 0, 0, 6116, 6117, 1, 0, 0, 0, 6117, 6128, 1, 0, 0, 0, 6118, 6116, 1, 0, 0, 0, 6119, 6120, 5, 155, 0, 0, 6120, 6125, 3, 544, 272, 0, 6121, 6122, 5, 868, 0, 0, 6122, 6124, 3, 544, 272, 0, 6123, 6121, 1, 0, 0, 0, 6124, 6127, 1, 0, 0, 0, 6125, 6123, 1, 0, 0, 0, 6125, 6126, 1, 0, 0, 0, 6126, 6129, 1, 0, 0, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6119, 1, 0, 0, 0, 6128, 6129, 1, 0, 0, 0, 6129, 543, 1, 0, 0, 0, 6130, 6131, 7, 92, 0, 0, 6131, 6132, 3, 702, 351, 0, 6132, 6133, 5, 857, 0, 0, 6133, 6134, 3, 804, 402, 0, 6134, 545, 1, 0, 0, 0, 6135, 6136, 5, 673, 0, 0, 6136, 6137, 5, 344, 0, 0, 6137, 6142, 3, 706, 353, 0, 6138, 6139, 5, 868, 0, 0, 6139, 6141, 3, 706, 353, 0, 6140, 6138, 1, 0, 0, 0, 6141, 6144, 1, 0, 0, 0, 6142, 6140, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 547, 1, 0, 0, 0, 6144, 6142, 1, 0, 0, 0, 6145, 6146, 5, 432, 0, 0, 6146, 6147, 5, 534, 0, 0, 6147, 6148, 3, 706, 353, 0, 6148, 6149, 5, 603, 0, 0, 6149, 6150, 5, 882, 0, 0, 6150, 549, 1, 0, 0, 0, 6151, 6152, 5, 673, 0, 0, 6152, 6153, 5, 534, 0, 0, 6153, 6154, 3, 706, 353, 0, 6154, 551, 1, 0, 0, 0, 6155, 6156, 5, 713, 0, 0, 6156, 6157, 5, 450, 0, 0, 6157, 6158, 5, 360, 0, 0, 6158, 6160, 5, 367, 0, 0, 6159, 6161, 5, 857, 0, 0, 6160, 6159, 1, 0, 0, 0, 6160, 6161, 1, 0, 0, 0, 6161, 6162, 1, 0, 0, 0, 6162, 6186, 5, 882, 0, 0, 6163, 6164, 5, 713, 0, 0, 6164, 6165, 5, 433, 0, 0, 6165, 6166, 5, 68, 0, 0, 6166, 6167, 3, 676, 338, 0, 6167, 6168, 5, 423, 0, 0, 6168, 6169, 5, 20, 0, 0, 6169, 6176, 5, 882, 0, 0, 6170, 6171, 5, 360, 0, 0, 6171, 6173, 5, 367, 0, 0, 6172, 6174, 5, 857, 0, 0, 6173, 6172, 1, 0, 0, 0, 6173, 6174, 1, 0, 0, 0, 6174, 6175, 1, 0, 0, 0, 6175, 6177, 5, 882, 0, 0, 6176, 6170, 1, 0, 0, 0, 6176, 6177, 1, 0, 0, 0, 6177, 6183, 1, 0, 0, 0, 6178, 6180, 5, 144, 0, 0, 6179, 6181, 5, 502, 0, 0, 6180, 6179, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 6182, 1, 0, 0, 0, 6182, 6184, 5, 169, 0, 0, 6183, 6178, 1, 0, 0, 0, 6183, 6184, 1, 0, 0, 0, 6184, 6186, 1, 0, 0, 0, 6185, 6155, 1, 0, 0, 0, 6185, 6163, 1, 0, 0, 0, 6186, 553, 1, 0, 0, 0, 6187, 6188, 5, 155, 0, 0, 6188, 6189, 3, 558, 279, 0, 6189, 6192, 7, 93, 0, 0, 6190, 6193, 3, 804, 402, 0, 6191, 6193, 5, 119, 0, 0, 6192, 6190, 1, 0, 0, 0, 6192, 6191, 1, 0, 0, 0, 6193, 6203, 1, 0, 0, 0, 6194, 6195, 5, 868, 0, 0, 6195, 6196, 3, 558, 279, 0, 6196, 6199, 7, 93, 0, 0, 6197, 6200, 3, 804, 402, 0, 6198, 6200, 5, 119, 0, 0, 6199, 6197, 1, 0, 0, 0, 6199, 6198, 1, 0, 0, 0, 6200, 6202, 1, 0, 0, 0, 6201, 6194, 1, 0, 0, 0, 6202, 6205, 1, 0, 0, 0, 6203, 6201, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6240, 1, 0, 0, 0, 6205, 6203, 1, 0, 0, 0, 6206, 6207, 5, 155, 0, 0, 6207, 6210, 3, 58, 29, 0, 6208, 6211, 3, 688, 344, 0, 6209, 6211, 5, 42, 0, 0, 6210, 6208, 1, 0, 0, 0, 6210, 6209, 1, 0, 0, 0, 6211, 6240, 1, 0, 0, 0, 6212, 6213, 5, 155, 0, 0, 6213, 6220, 5, 497, 0, 0, 6214, 6217, 3, 688, 344, 0, 6215, 6216, 5, 28, 0, 0, 6216, 6218, 3, 690, 345, 0, 6217, 6215, 1, 0, 0, 0, 6217, 6218, 1, 0, 0, 0, 6218, 6221, 1, 0, 0, 0, 6219, 6221, 5, 42, 0, 0, 6220, 6214, 1, 0, 0, 0, 6220, 6219, 1, 0, 0, 0, 6221, 6240, 1, 0, 0, 0, 6222, 6240, 3, 490, 245, 0, 6223, 6240, 3, 342, 171, 0, 6224, 6240, 3, 340, 170, 0, 6225, 6226, 5, 155, 0, 0, 6226, 6227, 3, 702, 351, 0, 6227, 6228, 7, 93, 0, 0, 6228, 6236, 3, 804, 402, 0, 6229, 6230, 5, 868, 0, 0, 6230, 6231, 3, 702, 351, 0, 6231, 6232, 7, 93, 0, 0, 6232, 6233, 3, 804, 402, 0, 6233, 6235, 1, 0, 0, 0, 6234, 6229, 1, 0, 0, 0, 6235, 6238, 1, 0, 0, 0, 6236, 6234, 1, 0, 0, 0, 6236, 6237, 1, 0, 0, 0, 6237, 6240, 1, 0, 0, 0, 6238, 6236, 1, 0, 0, 0, 6239, 6187, 1, 0, 0, 0, 6239, 6206, 1, 0, 0, 0, 6239, 6212, 1, 0, 0, 0, 6239, 6222, 1, 0, 0, 0, 6239, 6223, 1, 0, 0, 0, 6239, 6224, 1, 0, 0, 0, 6239, 6225, 1, 0, 0, 0, 6240, 555, 1, 0, 0, 0, 6241, 6242, 5, 157, 0, 0, 6242, 6243, 7, 63, 0, 0, 6243, 6426, 5, 452, 0, 0, 6244, 6245, 5, 157, 0, 0, 6245, 6246, 7, 94, 0, 0, 6246, 6249, 5, 386, 0, 0, 6247, 6248, 5, 80, 0, 0, 6248, 6250, 5, 882, 0, 0, 6249, 6247, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6253, 1, 0, 0, 0, 6251, 6252, 5, 68, 0, 0, 6252, 6254, 3, 712, 356, 0, 6253, 6251, 1, 0, 0, 0, 6253, 6254, 1, 0, 0, 0, 6254, 6262, 1, 0, 0, 0, 6255, 6259, 5, 100, 0, 0, 6256, 6257, 3, 712, 356, 0, 6257, 6258, 5, 868, 0, 0, 6258, 6260, 1, 0, 0, 0, 6259, 6256, 1, 0, 0, 0, 6259, 6260, 1, 0, 0, 0, 6260, 6261, 1, 0, 0, 0, 6261, 6263, 3, 712, 356, 0, 6262, 6255, 1, 0, 0, 0, 6262, 6263, 1, 0, 0, 0, 6263, 6265, 1, 0, 0, 0, 6264, 6266, 3, 390, 195, 0, 6265, 6264, 1, 0, 0, 0, 6265, 6266, 1, 0, 0, 0, 6266, 6426, 1, 0, 0, 0, 6267, 6268, 5, 157, 0, 0, 6268, 6270, 3, 560, 280, 0, 6269, 6271, 3, 562, 281, 0, 6270, 6269, 1, 0, 0, 0, 6270, 6271, 1, 0, 0, 0, 6271, 6426, 1, 0, 0, 0, 6272, 6274, 5, 157, 0, 0, 6273, 6275, 5, 392, 0, 0, 6274, 6273, 1, 0, 0, 0, 6274, 6275, 1, 0, 0, 0, 6275, 6277, 1, 0, 0, 0, 6276, 6278, 5, 408, 0, 0, 6277, 6276, 1, 0, 0, 0, 6277, 6278, 1, 0, 0, 0, 6278, 6279, 1, 0, 0, 0, 6279, 6280, 7, 47, 0, 0, 6280, 6281, 7, 95, 0, 0, 6281, 6284, 3, 652, 326, 0, 6282, 6283, 7, 95, 0, 0, 6283, 6285, 3, 628, 314, 0, 6284, 6282, 1, 0, 0, 0, 6284, 6285, 1, 0, 0, 0, 6285, 6287, 1, 0, 0, 0, 6286, 6288, 3, 562, 281, 0, 6287, 6286, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6426, 1, 0, 0, 0, 6289, 6290, 5, 157, 0, 0, 6290, 6291, 5, 34, 0, 0, 6291, 6293, 7, 0, 0, 0, 6292, 6294, 3, 760, 380, 0, 6293, 6292, 1, 0, 0, 0, 6293, 6294, 1, 0, 0, 0, 6294, 6295, 1, 0, 0, 0, 6295, 6426, 3, 628, 314, 0, 6296, 6297, 5, 157, 0, 0, 6297, 6298, 5, 34, 0, 0, 6298, 6299, 7, 96, 0, 0, 6299, 6426, 3, 702, 351, 0, 6300, 6301, 5, 157, 0, 0, 6301, 6302, 5, 34, 0, 0, 6302, 6303, 5, 409, 0, 0, 6303, 6426, 3, 632, 316, 0, 6304, 6305, 5, 157, 0, 0, 6305, 6306, 5, 34, 0, 0, 6306, 6307, 5, 684, 0, 0, 6307, 6426, 3, 636, 318, 0, 6308, 6309, 5, 157, 0, 0, 6309, 6310, 5, 34, 0, 0, 6310, 6311, 5, 173, 0, 0, 6311, 6426, 3, 652, 326, 0, 6312, 6313, 5, 157, 0, 0, 6313, 6314, 5, 34, 0, 0, 6314, 6315, 5, 678, 0, 0, 6315, 6426, 3, 684, 342, 0, 6316, 6317, 5, 157, 0, 0, 6317, 6318, 5, 380, 0, 0, 6318, 6319, 3, 692, 346, 0, 6319, 6320, 7, 97, 0, 0, 6320, 6426, 1, 0, 0, 0, 6321, 6322, 5, 157, 0, 0, 6322, 6426, 3, 564, 282, 0, 6323, 6324, 5, 157, 0, 0, 6324, 6332, 7, 98, 0, 0, 6325, 6329, 5, 100, 0, 0, 6326, 6327, 3, 712, 356, 0, 6327, 6328, 5, 868, 0, 0, 6328, 6330, 1, 0, 0, 0, 6329, 6326, 1, 0, 0, 0, 6329, 6330, 1, 0, 0, 0, 6330, 6331, 1, 0, 0, 0, 6331, 6333, 3, 712, 356, 0, 6332, 6325, 1, 0, 0, 0, 6332, 6333, 1, 0, 0, 0, 6333, 6426, 1, 0, 0, 0, 6334, 6335, 5, 157, 0, 0, 6335, 6336, 5, 262, 0, 0, 6336, 6337, 5, 866, 0, 0, 6337, 6338, 5, 850, 0, 0, 6338, 6339, 5, 867, 0, 0, 6339, 6426, 7, 98, 0, 0, 6340, 6341, 5, 157, 0, 0, 6341, 6344, 3, 566, 283, 0, 6342, 6343, 7, 95, 0, 0, 6343, 6345, 3, 628, 314, 0, 6344, 6342, 1, 0, 0, 0, 6344, 6345, 1, 0, 0, 0, 6345, 6347, 1, 0, 0, 0, 6346, 6348, 3, 562, 281, 0, 6347, 6346, 1, 0, 0, 0, 6347, 6348, 1, 0, 0, 0, 6348, 6426, 1, 0, 0, 0, 6349, 6350, 5, 157, 0, 0, 6350, 6351, 5, 132, 0, 0, 6351, 6352, 5, 336, 0, 0, 6352, 6426, 3, 702, 351, 0, 6353, 6354, 5, 157, 0, 0, 6354, 6355, 5, 409, 0, 0, 6355, 6356, 5, 336, 0, 0, 6356, 6426, 3, 632, 316, 0, 6357, 6358, 5, 157, 0, 0, 6358, 6365, 5, 414, 0, 0, 6359, 6360, 5, 65, 0, 0, 6360, 6363, 3, 656, 328, 0, 6361, 6362, 5, 188, 0, 0, 6362, 6364, 3, 654, 327, 0, 6363, 6361, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6366, 1, 0, 0, 0, 6365, 6359, 1, 0, 0, 0, 6365, 6366, 1, 0, 0, 0, 6366, 6426, 1, 0, 0, 0, 6367, 6369, 5, 157, 0, 0, 6368, 6370, 5, 392, 0, 0, 6369, 6368, 1, 0, 0, 0, 6369, 6370, 1, 0, 0, 0, 6370, 6371, 1, 0, 0, 0, 6371, 6372, 7, 99, 0, 0, 6372, 6373, 7, 95, 0, 0, 6373, 6376, 3, 652, 326, 0, 6374, 6375, 7, 95, 0, 0, 6375, 6377, 3, 628, 314, 0, 6376, 6374, 1, 0, 0, 0, 6376, 6377, 1, 0, 0, 0, 6377, 6380, 1, 0, 0, 0, 6378, 6379, 5, 192, 0, 0, 6379, 6381, 3, 804, 402, 0, 6380, 6378, 1, 0, 0, 0, 6380, 6381, 1, 0, 0, 0, 6381, 6426, 1, 0, 0, 0, 6382, 6383, 5, 157, 0, 0, 6383, 6384, 5, 516, 0, 0, 6384, 6387, 5, 752, 0, 0, 6385, 6386, 7, 95, 0, 0, 6386, 6388, 3, 628, 314, 0, 6387, 6385, 1, 0, 0, 0, 6387, 6388, 1, 0, 0, 0, 6388, 6390, 1, 0, 0, 0, 6389, 6391, 3, 562, 281, 0, 6390, 6389, 1, 0, 0, 0, 6390, 6391, 1, 0, 0, 0, 6391, 6426, 1, 0, 0, 0, 6392, 6393, 5, 157, 0, 0, 6393, 6402, 5, 545, 0, 0, 6394, 6399, 3, 568, 284, 0, 6395, 6396, 5, 868, 0, 0, 6396, 6398, 3, 568, 284, 0, 6397, 6395, 1, 0, 0, 0, 6398, 6401, 1, 0, 0, 0, 6399, 6397, 1, 0, 0, 0, 6399, 6400, 1, 0, 0, 0, 6400, 6403, 1, 0, 0, 0, 6401, 6399, 1, 0, 0, 0, 6402, 6394, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6407, 1, 0, 0, 0, 6404, 6405, 5, 65, 0, 0, 6405, 6406, 5, 548, 0, 0, 6406, 6408, 3, 712, 356, 0, 6407, 6404, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6415, 1, 0, 0, 0, 6409, 6410, 5, 100, 0, 0, 6410, 6413, 3, 712, 356, 0, 6411, 6412, 5, 509, 0, 0, 6412, 6414, 3, 712, 356, 0, 6413, 6411, 1, 0, 0, 0, 6413, 6414, 1, 0, 0, 0, 6414, 6416, 1, 0, 0, 0, 6415, 6409, 1, 0, 0, 0, 6415, 6416, 1, 0, 0, 0, 6416, 6426, 1, 0, 0, 0, 6417, 6418, 5, 157, 0, 0, 6418, 6419, 7, 64, 0, 0, 6419, 6421, 5, 645, 0, 0, 6420, 6422, 3, 390, 195, 0, 6421, 6420, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6426, 1, 0, 0, 0, 6423, 6424, 5, 157, 0, 0, 6424, 6426, 5, 564, 0, 0, 6425, 6241, 1, 0, 0, 0, 6425, 6244, 1, 0, 0, 0, 6425, 6267, 1, 0, 0, 0, 6425, 6272, 1, 0, 0, 0, 6425, 6289, 1, 0, 0, 0, 6425, 6296, 1, 0, 0, 0, 6425, 6300, 1, 0, 0, 0, 6425, 6304, 1, 0, 0, 0, 6425, 6308, 1, 0, 0, 0, 6425, 6312, 1, 0, 0, 0, 6425, 6316, 1, 0, 0, 0, 6425, 6321, 1, 0, 0, 0, 6425, 6323, 1, 0, 0, 0, 6425, 6334, 1, 0, 0, 0, 6425, 6340, 1, 0, 0, 0, 6425, 6349, 1, 0, 0, 0, 6425, 6353, 1, 0, 0, 0, 6425, 6357, 1, 0, 0, 0, 6425, 6367, 1, 0, 0, 0, 6425, 6382, 1, 0, 0, 0, 6425, 6392, 1, 0, 0, 0, 6425, 6417, 1, 0, 0, 0, 6425, 6423, 1, 0, 0, 0, 6426, 557, 1, 0, 0, 0, 6427, 6438, 5, 892, 0, 0, 6428, 6438, 5, 893, 0, 0, 6429, 6430, 5, 870, 0, 0, 6430, 6432, 5, 870, 0, 0, 6431, 6429, 1, 0, 0, 0, 6431, 6432, 1, 0, 0, 0, 6432, 6433, 1, 0, 0, 0, 6433, 6435, 7, 100, 0, 0, 6434, 6431, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6436, 1, 0, 0, 0, 6436, 6438, 3, 706, 353, 0, 6437, 6427, 1, 0, 0, 0, 6437, 6428, 1, 0, 0, 0, 6437, 6434, 1, 0, 0, 0, 6438, 559, 1, 0, 0, 0, 6439, 6440, 5, 26, 0, 0, 6440, 6454, 5, 155, 0, 0, 6441, 6454, 5, 823, 0, 0, 6442, 6454, 5, 824, 0, 0, 6443, 6454, 5, 40, 0, 0, 6444, 6454, 5, 153, 0, 0, 6445, 6446, 5, 409, 0, 0, 6446, 6454, 5, 645, 0, 0, 6447, 6448, 5, 132, 0, 0, 6448, 6454, 5, 645, 0, 0, 6449, 6451, 7, 62, 0, 0, 6450, 6449, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6452, 1, 0, 0, 0, 6452, 6454, 7, 101, 0, 0, 6453, 6439, 1, 0, 0, 0, 6453, 6441, 1, 0, 0, 0, 6453, 6442, 1, 0, 0, 0, 6453, 6443, 1, 0, 0, 0, 6453, 6444, 1, 0, 0, 0, 6453, 6445, 1, 0, 0, 0, 6453, 6447, 1, 0, 0, 0, 6453, 6450, 1, 0, 0, 0, 6454, 561, 1, 0, 0, 0, 6455, 6456, 5, 99, 0, 0, 6456, 6460, 5, 882, 0, 0, 6457, 6458, 5, 192, 0, 0, 6458, 6460, 3, 804, 402, 0, 6459, 6455, 1, 0, 0, 0, 6459, 6457, 1, 0, 0, 0, 6460, 563, 1, 0, 0, 0, 6461, 6463, 5, 647, 0, 0, 6462, 6461, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6479, 5, 381, 0, 0, 6465, 6466, 5, 453, 0, 0, 6466, 6479, 5, 645, 0, 0, 6467, 6479, 5, 536, 0, 0, 6468, 6479, 5, 734, 0, 0, 6469, 6471, 5, 408, 0, 0, 6470, 6469, 1, 0, 0, 0, 6470, 6471, 1, 0, 0, 0, 6471, 6472, 1, 0, 0, 0, 6472, 6479, 5, 544, 0, 0, 6473, 6479, 5, 546, 0, 0, 6474, 6475, 5, 598, 0, 0, 6475, 6479, 5, 422, 0, 0, 6476, 6479, 5, 312, 0, 0, 6477, 6479, 5, 356, 0, 0, 6478, 6462, 1, 0, 0, 0, 6478, 6465, 1, 0, 0, 0, 6478, 6467, 1, 0, 0, 0, 6478, 6468, 1, 0, 0, 0, 6478, 6470, 1, 0, 0, 0, 6478, 6473, 1, 0, 0, 0, 6478, 6474, 1, 0, 0, 0, 6478, 6476, 1, 0, 0, 0, 6478, 6477, 1, 0, 0, 0, 6479, 565, 1, 0, 0, 0, 6480, 6492, 5, 386, 0, 0, 6481, 6482, 5, 173, 0, 0, 6482, 6492, 5, 645, 0, 0, 6483, 6485, 5, 392, 0, 0, 6484, 6483, 1, 0, 0, 0, 6484, 6485, 1, 0, 0, 0, 6485, 6487, 1, 0, 0, 0, 6486, 6488, 5, 408, 0, 0, 6487, 6486, 1, 0, 0, 0, 6487, 6488, 1, 0, 0, 0, 6488, 6489, 1, 0, 0, 0, 6489, 6492, 5, 752, 0, 0, 6490, 6492, 5, 667, 0, 0, 6491, 6480, 1, 0, 0, 0, 6491, 6481, 1, 0, 0, 0, 6491, 6484, 1, 0, 0, 0, 6491, 6490, 1, 0, 0, 0, 6492, 567, 1, 0, 0, 0, 6493, 6506, 5, 7, 0, 0, 6494, 6495, 5, 320, 0, 0, 6495, 6506, 5, 437, 0, 0, 6496, 6497, 5, 355, 0, 0, 6497, 6506, 5, 656, 0, 0, 6498, 6506, 5, 358, 0, 0, 6499, 6506, 5, 439, 0, 0, 6500, 6506, 5, 802, 0, 0, 6501, 6502, 5, 521, 0, 0, 6502, 6506, 5, 397, 0, 0, 6503, 6506, 5, 605, 0, 0, 6504, 6506, 5, 655, 0, 0, 6505, 6493, 1, 0, 0, 0, 6505, 6494, 1, 0, 0, 0, 6505, 6496, 1, 0, 0, 0, 6505, 6498, 1, 0, 0, 0, 6505, 6499, 1, 0, 0, 0, 6505, 6500, 1, 0, 0, 0, 6505, 6501, 1, 0, 0, 0, 6505, 6503, 1, 0, 0, 0, 6505, 6504, 1, 0, 0, 0, 6506, 569, 1, 0, 0, 0, 6507, 6508, 5, 318, 0, 0, 6508, 6509, 5, 882, 0, 0, 6509, 571, 1, 0, 0, 0, 6510, 6511, 5, 324, 0, 0, 6511, 6529, 5, 82, 0, 0, 6512, 6517, 3, 592, 296, 0, 6513, 6514, 5, 868, 0, 0, 6514, 6516, 3, 592, 296, 0, 6515, 6513, 1, 0, 0, 0, 6516, 6519, 1, 0, 0, 0, 6517, 6515, 1, 0, 0, 0, 6517, 6518, 1, 0, 0, 0, 6518, 6530, 1, 0, 0, 0, 6519, 6517, 1, 0, 0, 0, 6520, 6521, 3, 652, 326, 0, 6521, 6522, 5, 130, 0, 0, 6522, 6525, 5, 866, 0, 0, 6523, 6526, 3, 670, 335, 0, 6524, 6526, 5, 7, 0, 0, 6525, 6523, 1, 0, 0, 0, 6525, 6524, 1, 0, 0, 0, 6526, 6527, 1, 0, 0, 0, 6527, 6528, 5, 867, 0, 0, 6528, 6530, 1, 0, 0, 0, 6529, 6512, 1, 0, 0, 0, 6529, 6520, 1, 0, 0, 0, 6530, 6531, 1, 0, 0, 0, 6531, 6532, 5, 80, 0, 0, 6532, 6533, 3, 628, 314, 0, 6533, 573, 1, 0, 0, 0, 6534, 6536, 5, 404, 0, 0, 6535, 6537, 3, 538, 269, 0, 6536, 6535, 1, 0, 0, 0, 6536, 6537, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 6543, 3, 594, 297, 0, 6539, 6540, 5, 868, 0, 0, 6540, 6542, 3, 594, 297, 0, 6541, 6539, 1, 0, 0, 0, 6542, 6545, 1, 0, 0, 0, 6543, 6541, 1, 0, 0, 0, 6543, 6544, 1, 0, 0, 0, 6544, 575, 1, 0, 0, 0, 6545, 6543, 1, 0, 0, 0, 6546, 6548, 5, 94, 0, 0, 6547, 6549, 7, 102, 0, 0, 6548, 6547, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 6550, 1, 0, 0, 0, 6550, 6551, 3, 804, 402, 0, 6551, 577, 1, 0, 0, 0, 6552, 6553, 5, 103, 0, 0, 6553, 6554, 5, 82, 0, 0, 6554, 6555, 5, 88, 0, 0, 6555, 6556, 5, 324, 0, 0, 6556, 6561, 3, 598, 299, 0, 6557, 6558, 5, 868, 0, 0, 6558, 6560, 3, 598, 299, 0, 6559, 6557, 1, 0, 0, 0, 6560, 6563, 1, 0, 0, 0, 6561, 6559, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 579, 1, 0, 0, 0, 6563, 6561, 1, 0, 0, 0, 6564, 6565, 5, 575, 0, 0, 6565, 6570, 3, 582, 291, 0, 6566, 6567, 5, 868, 0, 0, 6567, 6569, 3, 582, 291, 0, 6568, 6566, 1, 0, 0, 0, 6569, 6572, 1, 0, 0, 0, 6570, 6568, 1, 0, 0, 0, 6570, 6571, 1, 0, 0, 0, 6571, 581, 1, 0, 0, 0, 6572, 6570, 1, 0, 0, 0, 6573, 6579, 5, 453, 0, 0, 6574, 6579, 5, 563, 0, 0, 6575, 6576, 5, 548, 0, 0, 6576, 6579, 5, 324, 0, 0, 6577, 6579, 5, 598, 0, 0, 6578, 6573, 1, 0, 0, 0, 6578, 6574, 1, 0, 0, 0, 6578, 6575, 1, 0, 0, 0, 6578, 6577, 1, 0, 0, 0, 6579, 583, 1, 0, 0, 0, 6580, 6581, 5, 575, 0, 0, 6581, 6586, 5, 531, 0, 0, 6582, 6584, 3, 758, 379, 0, 6583, 6582, 1, 0, 0, 0, 6583, 6584, 1, 0, 0, 0, 6584, 6585, 1, 0, 0, 0, 6585, 6587, 3, 706, 353, 0, 6586, 6583, 1, 0, 0, 0, 6586, 6587, 1, 0, 0, 0, 6587, 585, 1, 0, 0, 0, 6588, 6589, 5, 575, 0, 0, 6589, 6591, 7, 64, 0, 0, 6590, 6592, 5, 7, 0, 0, 6591, 6590, 1, 0, 0, 0, 6591, 6592, 1, 0, 0, 0, 6592, 6594, 1, 0, 0, 0, 6593, 6595, 3, 390, 195, 0, 6594, 6593, 1, 0, 0, 0, 6594, 6595, 1, 0, 0, 0, 6595, 587, 1, 0, 0, 0, 6596, 6597, 5, 576, 0, 0, 6597, 589, 1, 0, 0, 0, 6598, 6599, 5, 749, 0, 0, 6599, 591, 1, 0, 0, 0, 6600, 6606, 3, 652, 326, 0, 6601, 6602, 7, 19, 0, 0, 6602, 6603, 5, 866, 0, 0, 6603, 6604, 3, 640, 320, 0, 6604, 6605, 5, 867, 0, 0, 6605, 6607, 1, 0, 0, 0, 6606, 6601, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 593, 1, 0, 0, 0, 6608, 6627, 5, 366, 0, 0, 6609, 6627, 5, 422, 0, 0, 6610, 6612, 7, 103, 0, 0, 6611, 6610, 1, 0, 0, 0, 6611, 6612, 1, 0, 0, 0, 6612, 6613, 1, 0, 0, 0, 6613, 6627, 5, 452, 0, 0, 6614, 6627, 5, 517, 0, 0, 6615, 6627, 5, 734, 0, 0, 6616, 6617, 5, 548, 0, 0, 6617, 6627, 5, 324, 0, 0, 6618, 6627, 5, 645, 0, 0, 6619, 6627, 5, 680, 0, 0, 6620, 6624, 5, 752, 0, 0, 6621, 6622, 5, 194, 0, 0, 6622, 6623, 5, 135, 0, 0, 6623, 6625, 5, 104, 0, 0, 6624, 6621, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6627, 1, 0, 0, 0, 6626, 6608, 1, 0, 0, 0, 6626, 6609, 1, 0, 0, 0, 6626, 6611, 1, 0, 0, 0, 6626, 6614, 1, 0, 0, 0, 6626, 6615, 1, 0, 0, 0, 6626, 6616, 1, 0, 0, 0, 6626, 6618, 1, 0, 0, 0, 6626, 6619, 1, 0, 0, 0, 6626, 6620, 1, 0, 0, 0, 6627, 6641, 1, 0, 0, 0, 6628, 6629, 5, 556, 0, 0, 6629, 6631, 5, 452, 0, 0, 6630, 6632, 3, 390, 195, 0, 6631, 6630, 1, 0, 0, 0, 6631, 6632, 1, 0, 0, 0, 6632, 6641, 1, 0, 0, 0, 6633, 6635, 7, 61, 0, 0, 6634, 6636, 3, 650, 325, 0, 6635, 6634, 1, 0, 0, 0, 6635, 6636, 1, 0, 0, 0, 6636, 6638, 1, 0, 0, 0, 6637, 6639, 3, 596, 298, 0, 6638, 6637, 1, 0, 0, 0, 6638, 6639, 1, 0, 0, 0, 6639, 6641, 1, 0, 0, 0, 6640, 6626, 1, 0, 0, 0, 6640, 6628, 1, 0, 0, 0, 6640, 6633, 1, 0, 0, 0, 6641, 595, 1, 0, 0, 0, 6642, 6643, 5, 194, 0, 0, 6643, 6644, 5, 135, 0, 0, 6644, 6648, 5, 104, 0, 0, 6645, 6646, 5, 65, 0, 0, 6646, 6648, 5, 391, 0, 0, 6647, 6642, 1, 0, 0, 0, 6647, 6645, 1, 0, 0, 0, 6648, 597, 1, 0, 0, 0, 6649, 6657, 3, 652, 326, 0, 6650, 6651, 5, 130, 0, 0, 6651, 6654, 5, 866, 0, 0, 6652, 6655, 3, 670, 335, 0, 6653, 6655, 5, 7, 0, 0, 6654, 6652, 1, 0, 0, 0, 6654, 6653, 1, 0, 0, 0, 6655, 6656, 1, 0, 0, 0, 6656, 6658, 5, 867, 0, 0, 6657, 6650, 1, 0, 0, 0, 6657, 6658, 1, 0, 0, 0, 6658, 6666, 1, 0, 0, 0, 6659, 6661, 7, 19, 0, 0, 6660, 6659, 1, 0, 0, 0, 6660, 6661, 1, 0, 0, 0, 6661, 6662, 1, 0, 0, 0, 6662, 6663, 5, 866, 0, 0, 6663, 6664, 3, 640, 320, 0, 6664, 6665, 5, 867, 0, 0, 6665, 6667, 1, 0, 0, 0, 6666, 6660, 1, 0, 0, 0, 6666, 6667, 1, 0, 0, 0, 6667, 6670, 1, 0, 0, 0, 6668, 6669, 5, 79, 0, 0, 6669, 6671, 5, 446, 0, 0, 6670, 6668, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 599, 1, 0, 0, 0, 6672, 6673, 7, 104, 0, 0, 6673, 6676, 3, 652, 326, 0, 6674, 6677, 3, 662, 331, 0, 6675, 6677, 5, 882, 0, 0, 6676, 6674, 1, 0, 0, 0, 6676, 6675, 1, 0, 0, 0, 6676, 6677, 1, 0, 0, 0, 6677, 601, 1, 0, 0, 0, 6678, 6684, 7, 104, 0, 0, 6679, 6685, 5, 392, 0, 0, 6680, 6685, 5, 528, 0, 0, 6681, 6682, 5, 826, 0, 0, 6682, 6683, 5, 857, 0, 0, 6683, 6685, 7, 105, 0, 0, 6684, 6679, 1, 0, 0, 0, 6684, 6680, 1, 0, 0, 0, 6684, 6681, 1, 0, 0, 0, 6684, 6685, 1, 0, 0, 0, 6685, 6686, 1, 0, 0, 0, 6686, 6687, 3, 624, 312, 0, 6687, 603, 1, 0, 0, 0, 6688, 6689, 7, 104, 0, 0, 6689, 6693, 5, 10, 0, 0, 6690, 6691, 5, 826, 0, 0, 6691, 6692, 5, 857, 0, 0, 6692, 6694, 5, 666, 0, 0, 6693, 6690, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6695, 1, 0, 0, 0, 6695, 6696, 3, 210, 105, 0, 6696, 605, 1, 0, 0, 0, 6697, 6698, 5, 419, 0, 0, 6698, 6699, 5, 882, 0, 0, 6699, 607, 1, 0, 0, 0, 6700, 6701, 5, 187, 0, 0, 6701, 6702, 3, 628, 314, 0, 6702, 609, 1, 0, 0, 0, 6703, 6711, 5, 158, 0, 0, 6704, 6706, 5, 164, 0, 0, 6705, 6707, 5, 682, 0, 0, 6706, 6705, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6712, 3, 716, 358, 0, 6709, 6712, 5, 889, 0, 0, 6710, 6712, 5, 890, 0, 0, 6711, 6704, 1, 0, 0, 0, 6711, 6709, 1, 0, 0, 0, 6711, 6710, 1, 0, 0, 0, 6712, 6722, 1, 0, 0, 0, 6713, 6714, 5, 155, 0, 0, 6714, 6719, 3, 614, 307, 0, 6715, 6716, 5, 868, 0, 0, 6716, 6718, 3, 614, 307, 0, 6717, 6715, 1, 0, 0, 0, 6718, 6721, 1, 0, 0, 0, 6719, 6717, 1, 0, 0, 0, 6719, 6720, 1, 0, 0, 0, 6720, 6723, 1, 0, 0, 0, 6721, 6719, 1, 0, 0, 0, 6722, 6713, 1, 0, 0, 0, 6722, 6723, 1, 0, 0, 0, 6723, 611, 1, 0, 0, 0, 6724, 6732, 5, 145, 0, 0, 6725, 6727, 5, 164, 0, 0, 6726, 6728, 5, 682, 0, 0, 6727, 6726, 1, 0, 0, 0, 6727, 6728, 1, 0, 0, 0, 6728, 6729, 1, 0, 0, 0, 6729, 6733, 3, 716, 358, 0, 6730, 6733, 5, 889, 0, 0, 6731, 6733, 5, 890, 0, 0, 6732, 6725, 1, 0, 0, 0, 6732, 6730, 1, 0, 0, 0, 6732, 6731, 1, 0, 0, 0, 6732, 6733, 1, 0, 0, 0, 6733, 6743, 1, 0, 0, 0, 6734, 6735, 5, 155, 0, 0, 6735, 6740, 3, 614, 307, 0, 6736, 6737, 5, 868, 0, 0, 6737, 6739, 3, 614, 307, 0, 6738, 6736, 1, 0, 0, 0, 6739, 6742, 1, 0, 0, 0, 6740, 6738, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 6744, 1, 0, 0, 0, 6742, 6740, 1, 0, 0, 0, 6743, 6734, 1, 0, 0, 0, 6743, 6744, 1, 0, 0, 0, 6744, 613, 1, 0, 0, 0, 6745, 6746, 7, 106, 0, 0, 6746, 6751, 5, 857, 0, 0, 6747, 6752, 3, 716, 358, 0, 6748, 6752, 5, 883, 0, 0, 6749, 6752, 3, 686, 343, 0, 6750, 6752, 3, 708, 354, 0, 6751, 6747, 1, 0, 0, 0, 6751, 6748, 1, 0, 0, 0, 6751, 6749, 1, 0, 0, 0, 6751, 6750, 1, 0, 0, 0, 6752, 615, 1, 0, 0, 0, 6753, 6755, 5, 194, 0, 0, 6754, 6756, 5, 552, 0, 0, 6755, 6754, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 6757, 1, 0, 0, 0, 6757, 6762, 3, 52, 26, 0, 6758, 6759, 5, 868, 0, 0, 6759, 6761, 3, 52, 26, 0, 6760, 6758, 1, 0, 0, 0, 6761, 6764, 1, 0, 0, 0, 6762, 6760, 1, 0, 0, 0, 6762, 6763, 1, 0, 0, 0, 6763, 617, 1, 0, 0, 0, 6764, 6762, 1, 0, 0, 0, 6765, 6766, 5, 173, 0, 0, 6766, 6768, 3, 652, 326, 0, 6767, 6769, 3, 258, 129, 0, 6768, 6767, 1, 0, 0, 0, 6768, 6769, 1, 0, 0, 0, 6769, 6771, 1, 0, 0, 0, 6770, 6772, 3, 318, 159, 0, 6771, 6770, 1, 0, 0, 0, 6771, 6772, 1, 0, 0, 0, 6772, 619, 1, 0, 0, 0, 6773, 6775, 5, 72, 0, 0, 6774, 6776, 7, 107, 0, 0, 6775, 6774, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 6777, 1, 0, 0, 0, 6777, 6809, 5, 48, 0, 0, 6778, 6779, 3, 558, 279, 0, 6779, 6780, 5, 857, 0, 0, 6780, 6788, 7, 108, 0, 0, 6781, 6782, 5, 868, 0, 0, 6782, 6783, 3, 558, 279, 0, 6783, 6784, 5, 857, 0, 0, 6784, 6785, 7, 108, 0, 0, 6785, 6787, 1, 0, 0, 0, 6786, 6781, 1, 0, 0, 0, 6787, 6790, 1, 0, 0, 0, 6788, 6786, 1, 0, 0, 0, 6788, 6789, 1, 0, 0, 0, 6789, 6810, 1, 0, 0, 0, 6790, 6788, 1, 0, 0, 0, 6791, 6794, 5, 30, 0, 0, 6792, 6795, 3, 712, 356, 0, 6793, 6795, 3, 558, 279, 0, 6794, 6792, 1, 0, 0, 0, 6794, 6793, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6797, 3, 558, 279, 0, 6797, 6798, 5, 857, 0, 0, 6798, 6806, 3, 622, 311, 0, 6799, 6800, 5, 868, 0, 0, 6800, 6801, 3, 558, 279, 0, 6801, 6802, 5, 857, 0, 0, 6802, 6803, 3, 622, 311, 0, 6803, 6805, 1, 0, 0, 0, 6804, 6799, 1, 0, 0, 0, 6805, 6808, 1, 0, 0, 0, 6806, 6804, 1, 0, 0, 0, 6806, 6807, 1, 0, 0, 0, 6807, 6810, 1, 0, 0, 0, 6808, 6806, 1, 0, 0, 0, 6809, 6778, 1, 0, 0, 0, 6809, 6791, 1, 0, 0, 0, 6810, 621, 1, 0, 0, 0, 6811, 6812, 7, 109, 0, 0, 6812, 623, 1, 0, 0, 0, 6813, 6819, 3, 210, 105, 0, 6814, 6819, 3, 186, 93, 0, 6815, 6819, 3, 192, 96, 0, 6816, 6819, 3, 208, 104, 0, 6817, 6819, 3, 220, 110, 0, 6818, 6813, 1, 0, 0, 0, 6818, 6814, 1, 0, 0, 0, 6818, 6815, 1, 0, 0, 0, 6818, 6816, 1, 0, 0, 0, 6818, 6817, 1, 0, 0, 0, 6819, 6824, 1, 0, 0, 0, 6820, 6821, 5, 65, 0, 0, 6821, 6822, 5, 349, 0, 0, 6822, 6824, 3, 706, 353, 0, 6823, 6818, 1, 0, 0, 0, 6823, 6820, 1, 0, 0, 0, 6824, 625, 1, 0, 0, 0, 6825, 6826, 3, 702, 351, 0, 6826, 627, 1, 0, 0, 0, 6827, 6828, 3, 702, 351, 0, 6828, 629, 1, 0, 0, 0, 6829, 6830, 3, 702, 351, 0, 6830, 631, 1, 0, 0, 0, 6831, 6832, 3, 702, 351, 0, 6832, 633, 1, 0, 0, 0, 6833, 6834, 3, 702, 351, 0, 6834, 635, 1, 0, 0, 0, 6835, 6836, 3, 702, 351, 0, 6836, 637, 1, 0, 0, 0, 6837, 6838, 3, 706, 353, 0, 6838, 639, 1, 0, 0, 0, 6839, 6844, 3, 642, 321, 0, 6840, 6841, 5, 868, 0, 0, 6841, 6843, 3, 642, 321, 0, 6842, 6840, 1, 0, 0, 0, 6843, 6846, 1, 0, 0, 0, 6844, 6842, 1, 0, 0, 0, 6844, 6845, 1, 0, 0, 0, 6845, 641, 1, 0, 0, 0, 6846, 6844, 1, 0, 0, 0, 6847, 6848, 3, 706, 353, 0, 6848, 643, 1, 0, 0, 0, 6849, 6850, 3, 706, 353, 0, 6850, 645, 1, 0, 0, 0, 6851, 6852, 3, 706, 353, 0, 6852, 647, 1, 0, 0, 0, 6853, 6854, 3, 702, 351, 0, 6854, 649, 1, 0, 0, 0, 6855, 6860, 3, 652, 326, 0, 6856, 6857, 5, 868, 0, 0, 6857, 6859, 3, 652, 326, 0, 6858, 6856, 1, 0, 0, 0, 6859, 6862, 1, 0, 0, 0, 6860, 6858, 1, 0, 0, 0, 6860, 6861, 1, 0, 0, 0, 6861, 651, 1, 0, 0, 0, 6862, 6860, 1, 0, 0, 0, 6863, 6864, 3, 702, 351, 0, 6864, 653, 1, 0, 0, 0, 6865, 6870, 3, 656, 328, 0, 6866, 6867, 5, 868, 0, 0, 6867, 6869, 3, 656, 328, 0, 6868, 6866, 1, 0, 0, 0, 6869, 6872, 1, 0, 0, 0, 6870, 6868, 1, 0, 0, 0, 6870, 6871, 1, 0, 0, 0, 6871, 655, 1, 0, 0, 0, 6872, 6870, 1, 0, 0, 0, 6873, 6876, 3, 684, 342, 0, 6874, 6876, 3, 706, 353, 0, 6875, 6873, 1, 0, 0, 0, 6875, 6874, 1, 0, 0, 0, 6876, 657, 1, 0, 0, 0, 6877, 6882, 3, 706, 353, 0, 6878, 6880, 3, 710, 355, 0, 6879, 6881, 3, 710, 355, 0, 6880, 6879, 1, 0, 0, 0, 6880, 6881, 1, 0, 0, 0, 6881, 6883, 1, 0, 0, 0, 6882, 6878, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6892, 1, 0, 0, 0, 6884, 6886, 9, 0, 0, 0, 6885, 6884, 1, 0, 0, 0, 6885, 6886, 1, 0, 0, 0, 6886, 6887, 1, 0, 0, 0, 6887, 6889, 3, 710, 355, 0, 6888, 6890, 3, 710, 355, 0, 6889, 6888, 1, 0, 0, 0, 6889, 6890, 1, 0, 0, 0, 6890, 6892, 1, 0, 0, 0, 6891, 6877, 1, 0, 0, 0, 6891, 6885, 1, 0, 0, 0, 6892, 659, 1, 0, 0, 0, 6893, 6898, 3, 662, 331, 0, 6894, 6895, 5, 868, 0, 0, 6895, 6897, 3, 662, 331, 0, 6896, 6894, 1, 0, 0, 0, 6897, 6900, 1, 0, 0, 0, 6898, 6896, 1, 0, 0, 0, 6898, 6899, 1, 0, 0, 0, 6899, 661, 1, 0, 0, 0, 6900, 6898, 1, 0, 0, 0, 6901, 6906, 3, 706, 353, 0, 6902, 6904, 3, 710, 355, 0, 6903, 6905, 3, 710, 355, 0, 6904, 6903, 1, 0, 0, 0, 6904, 6905, 1, 0, 0, 0, 6905, 6907, 1, 0, 0, 0, 6906, 6902, 1, 0, 0, 0, 6906, 6907, 1, 0, 0, 0, 6907, 6917, 1, 0, 0, 0, 6908, 6910, 9, 0, 0, 0, 6909, 6908, 1, 0, 0, 0, 6909, 6910, 1, 0, 0, 0, 6910, 6911, 1, 0, 0, 0, 6911, 6913, 3, 710, 355, 0, 6912, 6914, 3, 710, 355, 0, 6913, 6912, 1, 0, 0, 0, 6913, 6914, 1, 0, 0, 0, 6914, 6917, 1, 0, 0, 0, 6915, 6917, 4, 331, 3, 0, 6916, 6901, 1, 0, 0, 0, 6916, 6909, 1, 0, 0, 0, 6916, 6915, 1, 0, 0, 0, 6917, 663, 1, 0, 0, 0, 6918, 6919, 3, 706, 353, 0, 6919, 665, 1, 0, 0, 0, 6920, 6921, 3, 706, 353, 0, 6921, 667, 1, 0, 0, 0, 6922, 6923, 3, 706, 353, 0, 6923, 669, 1, 0, 0, 0, 6924, 6929, 3, 672, 336, 0, 6925, 6926, 5, 868, 0, 0, 6926, 6928, 3, 672, 336, 0, 6927, 6925, 1, 0, 0, 0, 6928, 6931, 1, 0, 0, 0, 6929, 6927, 1, 0, 0, 0, 6929, 6930, 1, 0, 0, 0, 6930, 671, 1, 0, 0, 0, 6931, 6929, 1, 0, 0, 0, 6932, 6933, 3, 706, 353, 0, 6933, 673, 1, 0, 0, 0, 6934, 6939, 3, 706, 353, 0, 6935, 6936, 5, 866, 0, 0, 6936, 6937, 3, 712, 356, 0, 6937, 6938, 5, 867, 0, 0, 6938, 6940, 1, 0, 0, 0, 6939, 6935, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6943, 1, 0, 0, 0, 6941, 6943, 3, 804, 402, 0, 6942, 6934, 1, 0, 0, 0, 6942, 6941, 1, 0, 0, 0, 6943, 6945, 1, 0, 0, 0, 6944, 6946, 7, 55, 0, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 675, 1, 0, 0, 0, 6947, 6948, 3, 678, 339, 0, 6948, 6949, 5, 878, 0, 0, 6949, 6950, 3, 712, 356, 0, 6950, 677, 1, 0, 0, 0, 6951, 6952, 3, 680, 340, 0, 6952, 6953, 5, 891, 0, 0, 6953, 679, 1, 0, 0, 0, 6954, 6959, 5, 882, 0, 0, 6955, 6959, 5, 889, 0, 0, 6956, 6959, 5, 704, 0, 0, 6957, 6959, 3, 834, 417, 0, 6958, 6954, 1, 0, 0, 0, 6958, 6955, 1, 0, 0, 0, 6958, 6956, 1, 0, 0, 0, 6958, 6957, 1, 0, 0, 0, 6959, 681, 1, 0, 0, 0, 6960, 6961, 7, 110, 0, 0, 6961, 683, 1, 0, 0, 0, 6962, 6964, 3, 680, 340, 0, 6963, 6965, 3, 682, 341, 0, 6964, 6963, 1, 0, 0, 0, 6964, 6965, 1, 0, 0, 0, 6965, 6968, 1, 0, 0, 0, 6966, 6968, 3, 60, 30, 0, 6967, 6962, 1, 0, 0, 0, 6967, 6966, 1, 0, 0, 0, 6968, 685, 1, 0, 0, 0, 6969, 6970, 7, 111, 0, 0, 6970, 687, 1, 0, 0, 0, 6971, 6976, 5, 228, 0, 0, 6972, 6976, 3, 824, 412, 0, 6973, 6976, 5, 882, 0, 0, 6974, 6976, 5, 879, 0, 0, 6975, 6971, 1, 0, 0, 0, 6975, 6972, 1, 0, 0, 0, 6975, 6973, 1, 0, 0, 0, 6975, 6974, 1, 0, 0, 0, 6976, 689, 1, 0, 0, 0, 6977, 6978, 3, 706, 353, 0, 6978, 691, 1, 0, 0, 0, 6979, 6983, 3, 694, 347, 0, 6980, 6983, 5, 889, 0, 0, 6981, 6983, 5, 882, 0, 0, 6982, 6979, 1, 0, 0, 0, 6982, 6980, 1, 0, 0, 0, 6982, 6981, 1, 0, 0, 0, 6983, 693, 1, 0, 0, 0, 6984, 6985, 7, 112, 0, 0, 6985, 695, 1, 0, 0, 0, 6986, 6987, 3, 712, 356, 0, 6987, 6988, 5, 854, 0, 0, 6988, 6989, 3, 712, 356, 0, 6989, 6990, 5, 854, 0, 0, 6990, 6991, 3, 712, 356, 0, 6991, 6992, 5, 854, 0, 0, 6992, 6993, 3, 712, 356, 0, 6993, 6994, 5, 854, 0, 0, 6994, 7000, 3, 712, 356, 0, 6995, 6996, 5, 878, 0, 0, 6996, 6997, 3, 712, 356, 0, 6997, 6998, 5, 854, 0, 0, 6998, 6999, 3, 712, 356, 0, 6999, 7001, 1, 0, 0, 0, 7000, 6995, 1, 0, 0, 0, 7001, 7002, 1, 0, 0, 0, 7002, 7000, 1, 0, 0, 0, 7002, 7003, 1, 0, 0, 0, 7003, 697, 1, 0, 0, 0, 7004, 7011, 3, 700, 350, 0, 7005, 7006, 5, 868, 0, 0, 7006, 7009, 3, 700, 350, 0, 7007, 7008, 5, 868, 0, 0, 7008, 7010, 3, 712, 356, 0, 7009, 7007, 1, 0, 0, 0, 7009, 7010, 1, 0, 0, 0, 7010, 7012, 1, 0, 0, 0, 7011, 7005, 1, 0, 0, 0, 7011, 7012, 1, 0, 0, 0, 7012, 699, 1, 0, 0, 0, 7013, 7021, 5, 882, 0, 0, 7014, 7021, 5, 887, 0, 0, 7015, 7017, 5, 884, 0, 0, 7016, 7015, 1, 0, 0, 0, 7017, 7018, 1, 0, 0, 0, 7018, 7016, 1, 0, 0, 0, 7018, 7019, 1, 0, 0, 0, 7019, 7021, 1, 0, 0, 0, 7020, 7013, 1, 0, 0, 0, 7020, 7014, 1, 0, 0, 0, 7020, 7016, 1, 0, 0, 0, 7021, 701, 1, 0, 0, 0, 7022, 7024, 3, 706, 353, 0, 7023, 7025, 3, 710, 355, 0, 7024, 7023, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 703, 1, 0, 0, 0, 7026, 7031, 3, 706, 353, 0, 7027, 7028, 5, 868, 0, 0, 7028, 7030, 3, 706, 353, 0, 7029, 7027, 1, 0, 0, 0, 7030, 7033, 1, 0, 0, 0, 7031, 7029, 1, 0, 0, 0, 7031, 7032, 1, 0, 0, 0, 7032, 705, 1, 0, 0, 0, 7033, 7031, 1, 0, 0, 0, 7034, 7038, 3, 708, 354, 0, 7035, 7038, 5, 879, 0, 0, 7036, 7038, 5, 882, 0, 0, 7037, 7034, 1, 0, 0, 0, 7037, 7035, 1, 0, 0, 0, 7037, 7036, 1, 0, 0, 0, 7038, 707, 1, 0, 0, 0, 7039, 7049, 5, 889, 0, 0, 7040, 7049, 3, 824, 412, 0, 7041, 7049, 3, 826, 413, 0, 7042, 7049, 3, 694, 347, 0, 7043, 7049, 3, 828, 414, 0, 7044, 7049, 3, 830, 415, 0, 7045, 7049, 3, 832, 416, 0, 7046, 7049, 3, 834, 417, 0, 7047, 7049, 3, 796, 398, 0, 7048, 7039, 1, 0, 0, 0, 7048, 7040, 1, 0, 0, 0, 7048, 7041, 1, 0, 0, 0, 7048, 7042, 1, 0, 0, 0, 7048, 7043, 1, 0, 0, 0, 7048, 7044, 1, 0, 0, 0, 7048, 7045, 1, 0, 0, 0, 7048, 7046, 1, 0, 0, 0, 7048, 7047, 1, 0, 0, 0, 7049, 709, 1, 0, 0, 0, 7050, 7051, 5, 865, 0, 0, 7051, 7055, 5, 889, 0, 0, 7052, 7053, 5, 865, 0, 0, 7053, 7055, 3, 706, 353, 0, 7054, 7050, 1, 0, 0, 0, 7054, 7052, 1, 0, 0, 0, 7055, 711, 1, 0, 0, 0, 7056, 7057, 7, 113, 0, 0, 7057, 713, 1, 0, 0, 0, 7058, 7061, 5, 880, 0, 0, 7059, 7061, 3, 712, 356, 0, 7060, 7058, 1, 0, 0, 0, 7060, 7059, 1, 0, 0, 0, 7061, 715, 1, 0, 0, 0, 7062, 7064, 5, 888, 0, 0, 7063, 7062, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7068, 5, 882, 0, 0, 7066, 7068, 5, 881, 0, 0, 7067, 7063, 1, 0, 0, 0, 7067, 7066, 1, 0, 0, 0, 7068, 7070, 1, 0, 0, 0, 7069, 7071, 5, 882, 0, 0, 7070, 7069, 1, 0, 0, 0, 7071, 7072, 1, 0, 0, 0, 7072, 7070, 1, 0, 0, 0, 7072, 7073, 1, 0, 0, 0, 7073, 7086, 1, 0, 0, 0, 7074, 7076, 5, 888, 0, 0, 7075, 7074, 1, 0, 0, 0, 7075, 7076, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7080, 5, 882, 0, 0, 7078, 7080, 5, 881, 0, 0, 7079, 7075, 1, 0, 0, 0, 7079, 7078, 1, 0, 0, 0, 7080, 7083, 1, 0, 0, 0, 7081, 7082, 5, 28, 0, 0, 7082, 7084, 3, 690, 345, 0, 7083, 7081, 1, 0, 0, 0, 7083, 7084, 1, 0, 0, 0, 7084, 7086, 1, 0, 0, 0, 7085, 7067, 1, 0, 0, 0, 7085, 7079, 1, 0, 0, 0, 7086, 717, 1, 0, 0, 0, 7087, 7088, 7, 114, 0, 0, 7088, 719, 1, 0, 0, 0, 7089, 7091, 5, 888, 0, 0, 7090, 7089, 1, 0, 0, 0, 7090, 7091, 1, 0, 0, 0, 7091, 7092, 1, 0, 0, 0, 7092, 7093, 5, 884, 0, 0, 7093, 721, 1, 0, 0, 0, 7094, 7096, 5, 114, 0, 0, 7095, 7094, 1, 0, 0, 0, 7095, 7096, 1, 0, 0, 0, 7096, 7097, 1, 0, 0, 0, 7097, 7098, 7, 115, 0, 0, 7098, 723, 1, 0, 0, 0, 7099, 7112, 3, 716, 358, 0, 7100, 7112, 3, 712, 356, 0, 7101, 7102, 5, 854, 0, 0, 7102, 7112, 3, 712, 356, 0, 7103, 7112, 3, 720, 360, 0, 7104, 7112, 3, 718, 359, 0, 7105, 7112, 5, 885, 0, 0, 7106, 7112, 5, 887, 0, 0, 7107, 7109, 5, 114, 0, 0, 7108, 7107, 1, 0, 0, 0, 7108, 7109, 1, 0, 0, 0, 7109, 7110, 1, 0, 0, 0, 7110, 7112, 7, 115, 0, 0, 7111, 7099, 1, 0, 0, 0, 7111, 7100, 1, 0, 0, 0, 7111, 7101, 1, 0, 0, 0, 7111, 7103, 1, 0, 0, 0, 7111, 7104, 1, 0, 0, 0, 7111, 7105, 1, 0, 0, 0, 7111, 7106, 1, 0, 0, 0, 7111, 7108, 1, 0, 0, 0, 7112, 725, 1, 0, 0, 0, 7113, 7115, 7, 116, 0, 0, 7114, 7116, 5, 240, 0, 0, 7115, 7114, 1, 0, 0, 0, 7115, 7116, 1, 0, 0, 0, 7116, 7118, 1, 0, 0, 0, 7117, 7119, 3, 732, 366, 0, 7118, 7117, 1, 0, 0, 0, 7118, 7119, 1, 0, 0, 0, 7119, 7121, 1, 0, 0, 0, 7120, 7122, 5, 228, 0, 0, 7121, 7120, 1, 0, 0, 0, 7121, 7122, 1, 0, 0, 0, 7122, 7126, 1, 0, 0, 0, 7123, 7124, 3, 58, 29, 0, 7124, 7125, 3, 688, 344, 0, 7125, 7127, 1, 0, 0, 0, 7126, 7123, 1, 0, 0, 0, 7126, 7127, 1, 0, 0, 0, 7127, 7131, 1, 0, 0, 0, 7128, 7129, 5, 28, 0, 0, 7129, 7132, 3, 690, 345, 0, 7130, 7132, 5, 228, 0, 0, 7131, 7128, 1, 0, 0, 0, 7131, 7130, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7240, 1, 0, 0, 0, 7133, 7134, 5, 227, 0, 0, 7134, 7135, 7, 117, 0, 0, 7135, 7137, 5, 240, 0, 0, 7136, 7138, 3, 732, 366, 0, 7137, 7136, 1, 0, 0, 0, 7137, 7138, 1, 0, 0, 0, 7138, 7140, 1, 0, 0, 0, 7139, 7141, 5, 228, 0, 0, 7140, 7139, 1, 0, 0, 0, 7140, 7141, 1, 0, 0, 0, 7141, 7240, 1, 0, 0, 0, 7142, 7143, 5, 227, 0, 0, 7143, 7145, 7, 118, 0, 0, 7144, 7146, 3, 732, 366, 0, 7145, 7144, 1, 0, 0, 0, 7145, 7146, 1, 0, 0, 0, 7146, 7148, 1, 0, 0, 0, 7147, 7149, 5, 228, 0, 0, 7148, 7147, 1, 0, 0, 0, 7148, 7149, 1, 0, 0, 0, 7149, 7240, 1, 0, 0, 0, 7150, 7151, 5, 498, 0, 0, 7151, 7153, 5, 225, 0, 0, 7152, 7154, 3, 732, 366, 0, 7153, 7152, 1, 0, 0, 0, 7153, 7154, 1, 0, 0, 0, 7154, 7156, 1, 0, 0, 0, 7155, 7157, 5, 228, 0, 0, 7156, 7155, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7240, 1, 0, 0, 0, 7158, 7160, 7, 119, 0, 0, 7159, 7161, 3, 732, 366, 0, 7160, 7159, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7165, 1, 0, 0, 0, 7162, 7164, 7, 120, 0, 0, 7163, 7162, 1, 0, 0, 0, 7164, 7167, 1, 0, 0, 0, 7165, 7163, 1, 0, 0, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7240, 1, 0, 0, 0, 7167, 7165, 1, 0, 0, 0, 7168, 7170, 5, 210, 0, 0, 7169, 7171, 3, 734, 367, 0, 7170, 7169, 1, 0, 0, 0, 7170, 7171, 1, 0, 0, 0, 7171, 7175, 1, 0, 0, 0, 7172, 7174, 7, 120, 0, 0, 7173, 7172, 1, 0, 0, 0, 7174, 7177, 1, 0, 0, 0, 7175, 7173, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7240, 1, 0, 0, 0, 7177, 7175, 1, 0, 0, 0, 7178, 7180, 5, 211, 0, 0, 7179, 7181, 5, 212, 0, 0, 7180, 7179, 1, 0, 0, 0, 7180, 7181, 1, 0, 0, 0, 7181, 7183, 1, 0, 0, 0, 7182, 7184, 3, 734, 367, 0, 7183, 7182, 1, 0, 0, 0, 7183, 7184, 1, 0, 0, 0, 7184, 7188, 1, 0, 0, 0, 7185, 7187, 7, 120, 0, 0, 7186, 7185, 1, 0, 0, 0, 7187, 7190, 1, 0, 0, 0, 7188, 7186, 1, 0, 0, 0, 7188, 7189, 1, 0, 0, 0, 7189, 7240, 1, 0, 0, 0, 7190, 7188, 1, 0, 0, 0, 7191, 7193, 7, 121, 0, 0, 7192, 7194, 3, 736, 368, 0, 7193, 7192, 1, 0, 0, 0, 7193, 7194, 1, 0, 0, 0, 7194, 7198, 1, 0, 0, 0, 7195, 7197, 7, 120, 0, 0, 7196, 7195, 1, 0, 0, 0, 7197, 7200, 1, 0, 0, 0, 7198, 7196, 1, 0, 0, 0, 7198, 7199, 1, 0, 0, 0, 7199, 7240, 1, 0, 0, 0, 7200, 7198, 1, 0, 0, 0, 7201, 7240, 7, 122, 0, 0, 7202, 7204, 7, 123, 0, 0, 7203, 7205, 3, 732, 366, 0, 7204, 7203, 1, 0, 0, 0, 7204, 7205, 1, 0, 0, 0, 7205, 7240, 1, 0, 0, 0, 7206, 7207, 7, 124, 0, 0, 7207, 7209, 3, 728, 364, 0, 7208, 7210, 5, 228, 0, 0, 7209, 7208, 1, 0, 0, 0, 7209, 7210, 1, 0, 0, 0, 7210, 7214, 1, 0, 0, 0, 7211, 7212, 3, 58, 29, 0, 7212, 7213, 3, 688, 344, 0, 7213, 7215, 1, 0, 0, 0, 7214, 7211, 1, 0, 0, 0, 7214, 7215, 1, 0, 0, 0, 7215, 7240, 1, 0, 0, 0, 7216, 7219, 7, 125, 0, 0, 7217, 7218, 5, 834, 0, 0, 7218, 7220, 3, 712, 356, 0, 7219, 7217, 1, 0, 0, 0, 7219, 7220, 1, 0, 0, 0, 7220, 7240, 1, 0, 0, 0, 7221, 7223, 5, 233, 0, 0, 7222, 7224, 5, 225, 0, 0, 7223, 7222, 1, 0, 0, 0, 7223, 7224, 1, 0, 0, 0, 7224, 7226, 1, 0, 0, 0, 7225, 7227, 5, 228, 0, 0, 7226, 7225, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7231, 1, 0, 0, 0, 7228, 7229, 3, 58, 29, 0, 7229, 7230, 3, 688, 344, 0, 7230, 7232, 1, 0, 0, 0, 7231, 7228, 1, 0, 0, 0, 7231, 7232, 1, 0, 0, 0, 7232, 7235, 1, 0, 0, 0, 7233, 7234, 5, 28, 0, 0, 7234, 7236, 3, 690, 345, 0, 7235, 7233, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7240, 1, 0, 0, 0, 7237, 7238, 5, 233, 0, 0, 7238, 7240, 5, 229, 0, 0, 7239, 7113, 1, 0, 0, 0, 7239, 7133, 1, 0, 0, 0, 7239, 7142, 1, 0, 0, 0, 7239, 7150, 1, 0, 0, 0, 7239, 7158, 1, 0, 0, 0, 7239, 7168, 1, 0, 0, 0, 7239, 7178, 1, 0, 0, 0, 7239, 7191, 1, 0, 0, 0, 7239, 7201, 1, 0, 0, 0, 7239, 7202, 1, 0, 0, 0, 7239, 7206, 1, 0, 0, 0, 7239, 7216, 1, 0, 0, 0, 7239, 7221, 1, 0, 0, 0, 7239, 7237, 1, 0, 0, 0, 7240, 727, 1, 0, 0, 0, 7241, 7242, 5, 866, 0, 0, 7242, 7247, 5, 882, 0, 0, 7243, 7244, 5, 868, 0, 0, 7244, 7246, 5, 882, 0, 0, 7245, 7243, 1, 0, 0, 0, 7246, 7249, 1, 0, 0, 0, 7247, 7245, 1, 0, 0, 0, 7247, 7248, 1, 0, 0, 0, 7248, 7250, 1, 0, 0, 0, 7249, 7247, 1, 0, 0, 0, 7250, 7251, 5, 867, 0, 0, 7251, 729, 1, 0, 0, 0, 7252, 7254, 7, 126, 0, 0, 7253, 7255, 3, 732, 366, 0, 7254, 7253, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7275, 1, 0, 0, 0, 7256, 7258, 5, 224, 0, 0, 7257, 7259, 3, 732, 366, 0, 7258, 7257, 1, 0, 0, 0, 7258, 7259, 1, 0, 0, 0, 7259, 7263, 1, 0, 0, 0, 7260, 7261, 3, 58, 29, 0, 7261, 7262, 3, 688, 344, 0, 7262, 7264, 1, 0, 0, 0, 7263, 7260, 1, 0, 0, 0, 7263, 7264, 1, 0, 0, 0, 7264, 7275, 1, 0, 0, 0, 7265, 7275, 7, 127, 0, 0, 7266, 7268, 7, 128, 0, 0, 7267, 7269, 3, 736, 368, 0, 7268, 7267, 1, 0, 0, 0, 7268, 7269, 1, 0, 0, 0, 7269, 7275, 1, 0, 0, 0, 7270, 7272, 7, 129, 0, 0, 7271, 7273, 7, 130, 0, 0, 7272, 7271, 1, 0, 0, 0, 7272, 7273, 1, 0, 0, 0, 7273, 7275, 1, 0, 0, 0, 7274, 7252, 1, 0, 0, 0, 7274, 7256, 1, 0, 0, 0, 7274, 7265, 1, 0, 0, 0, 7274, 7266, 1, 0, 0, 0, 7274, 7270, 1, 0, 0, 0, 7275, 7277, 1, 0, 0, 0, 7276, 7278, 5, 12, 0, 0, 7277, 7276, 1, 0, 0, 0, 7277, 7278, 1, 0, 0, 0, 7278, 731, 1, 0, 0, 0, 7279, 7280, 5, 866, 0, 0, 7280, 7281, 3, 712, 356, 0, 7281, 7282, 5, 867, 0, 0, 7282, 733, 1, 0, 0, 0, 7283, 7284, 5, 866, 0, 0, 7284, 7285, 3, 712, 356, 0, 7285, 7286, 5, 868, 0, 0, 7286, 7287, 3, 712, 356, 0, 7287, 7288, 5, 867, 0, 0, 7288, 735, 1, 0, 0, 0, 7289, 7290, 5, 866, 0, 0, 7290, 7293, 3, 712, 356, 0, 7291, 7292, 5, 868, 0, 0, 7292, 7294, 3, 712, 356, 0, 7293, 7291, 1, 0, 0, 0, 7293, 7294, 1, 0, 0, 0, 7294, 7295, 1, 0, 0, 0, 7295, 7296, 5, 867, 0, 0, 7296, 737, 1, 0, 0, 0, 7297, 7298, 5, 866, 0, 0, 7298, 7303, 3, 674, 337, 0, 7299, 7300, 5, 868, 0, 0, 7300, 7302, 3, 674, 337, 0, 7301, 7299, 1, 0, 0, 0, 7302, 7305, 1, 0, 0, 0, 7303, 7301, 1, 0, 0, 0, 7303, 7304, 1, 0, 0, 0, 7304, 7306, 1, 0, 0, 0, 7305, 7303, 1, 0, 0, 0, 7306, 7307, 5, 867, 0, 0, 7307, 739, 1, 0, 0, 0, 7308, 7313, 3, 804, 402, 0, 7309, 7310, 5, 868, 0, 0, 7310, 7312, 3, 804, 402, 0, 7311, 7309, 1, 0, 0, 0, 7312, 7315, 1, 0, 0, 0, 7313, 7311, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 741, 1, 0, 0, 0, 7315, 7313, 1, 0, 0, 0, 7316, 7317, 7, 131, 0, 0, 7317, 7322, 3, 744, 372, 0, 7318, 7319, 5, 868, 0, 0, 7319, 7321, 3, 744, 372, 0, 7320, 7318, 1, 0, 0, 0, 7321, 7324, 1, 0, 0, 0, 7322, 7320, 1, 0, 0, 0, 7322, 7323, 1, 0, 0, 0, 7323, 743, 1, 0, 0, 0, 7324, 7322, 1, 0, 0, 0, 7325, 7326, 5, 866, 0, 0, 7326, 7331, 3, 746, 373, 0, 7327, 7328, 5, 868, 0, 0, 7328, 7330, 3, 746, 373, 0, 7329, 7327, 1, 0, 0, 0, 7330, 7333, 1, 0, 0, 0, 7331, 7329, 1, 0, 0, 0, 7331, 7332, 1, 0, 0, 0, 7332, 7334, 1, 0, 0, 0, 7333, 7331, 1, 0, 0, 0, 7334, 7335, 5, 867, 0, 0, 7335, 745, 1, 0, 0, 0, 7336, 7339, 3, 804, 402, 0, 7337, 7339, 5, 42, 0, 0, 7338, 7336, 1, 0, 0, 0, 7338, 7337, 1, 0, 0, 0, 7339, 747, 1, 0, 0, 0, 7340, 7345, 3, 724, 362, 0, 7341, 7342, 5, 868, 0, 0, 7342, 7344, 3, 724, 362, 0, 7343, 7341, 1, 0, 0, 0, 7344, 7347, 1, 0, 0, 0, 7345, 7343, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 749, 1, 0, 0, 0, 7347, 7345, 1, 0, 0, 0, 7348, 7353, 5, 882, 0, 0, 7349, 7350, 5, 868, 0, 0, 7350, 7352, 5, 882, 0, 0, 7351, 7349, 1, 0, 0, 0, 7352, 7355, 1, 0, 0, 0, 7353, 7351, 1, 0, 0, 0, 7353, 7354, 1, 0, 0, 0, 7354, 751, 1, 0, 0, 0, 7355, 7353, 1, 0, 0, 0, 7356, 7361, 5, 892, 0, 0, 7357, 7358, 5, 868, 0, 0, 7358, 7360, 5, 892, 0, 0, 7359, 7357, 1, 0, 0, 0, 7360, 7363, 1, 0, 0, 0, 7361, 7359, 1, 0, 0, 0, 7361, 7362, 1, 0, 0, 0, 7362, 753, 1, 0, 0, 0, 7363, 7361, 1, 0, 0, 0, 7364, 7391, 5, 116, 0, 0, 7365, 7366, 5, 24, 0, 0, 7366, 7367, 5, 866, 0, 0, 7367, 7368, 3, 804, 402, 0, 7368, 7369, 5, 13, 0, 0, 7369, 7370, 3, 730, 365, 0, 7370, 7371, 5, 867, 0, 0, 7371, 7391, 1, 0, 0, 0, 7372, 7374, 3, 810, 405, 0, 7373, 7372, 1, 0, 0, 0, 7373, 7374, 1, 0, 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 7391, 3, 724, 362, 0, 7376, 7380, 3, 756, 378, 0, 7377, 7378, 5, 119, 0, 0, 7378, 7379, 5, 185, 0, 0, 7379, 7381, 3, 756, 378, 0, 7380, 7377, 1, 0, 0, 0, 7380, 7381, 1, 0, 0, 0, 7381, 7391, 1, 0, 0, 0, 7382, 7383, 5, 866, 0, 0, 7383, 7384, 3, 804, 402, 0, 7384, 7385, 5, 867, 0, 0, 7385, 7391, 1, 0, 0, 0, 7386, 7387, 5, 866, 0, 0, 7387, 7388, 3, 702, 351, 0, 7388, 7389, 5, 867, 0, 0, 7389, 7391, 1, 0, 0, 0, 7390, 7364, 1, 0, 0, 0, 7390, 7365, 1, 0, 0, 0, 7390, 7373, 1, 0, 0, 0, 7390, 7376, 1, 0, 0, 0, 7390, 7382, 1, 0, 0, 0, 7390, 7386, 1, 0, 0, 0, 7391, 755, 1, 0, 0, 0, 7392, 7398, 7, 132, 0, 0, 7393, 7395, 5, 866, 0, 0, 7394, 7396, 3, 712, 356, 0, 7395, 7394, 1, 0, 0, 0, 7395, 7396, 1, 0, 0, 0, 7396, 7397, 1, 0, 0, 0, 7397, 7399, 5, 867, 0, 0, 7398, 7393, 1, 0, 0, 0, 7398, 7399, 1, 0, 0, 0, 7399, 7407, 1, 0, 0, 0, 7400, 7401, 5, 295, 0, 0, 7401, 7403, 5, 866, 0, 0, 7402, 7404, 3, 712, 356, 0, 7403, 7402, 1, 0, 0, 0, 7403, 7404, 1, 0, 0, 0, 7404, 7405, 1, 0, 0, 0, 7405, 7407, 5, 867, 0, 0, 7406, 7392, 1, 0, 0, 0, 7406, 7400, 1, 0, 0, 0, 7407, 757, 1, 0, 0, 0, 7408, 7409, 5, 78, 0, 0, 7409, 7410, 5, 60, 0, 0, 7410, 759, 1, 0, 0, 0, 7411, 7412, 5, 78, 0, 0, 7412, 7413, 5, 114, 0, 0, 7413, 7414, 5, 60, 0, 0, 7414, 761, 1, 0, 0, 0, 7415, 7416, 5, 124, 0, 0, 7416, 7417, 5, 143, 0, 0, 7417, 763, 1, 0, 0, 0, 7418, 7441, 3, 766, 383, 0, 7419, 7441, 3, 774, 387, 0, 7420, 7441, 3, 776, 388, 0, 7421, 7428, 3, 796, 398, 0, 7422, 7423, 5, 866, 0, 0, 7423, 7429, 5, 867, 0, 0, 7424, 7425, 5, 866, 0, 0, 7425, 7426, 3, 800, 400, 0, 7426, 7427, 5, 867, 0, 0, 7427, 7429, 1, 0, 0, 0, 7428, 7422, 1, 0, 0, 0, 7428, 7424, 1, 0, 0, 0, 7429, 7441, 1, 0, 0, 0, 7430, 7437, 3, 632, 316, 0, 7431, 7432, 5, 866, 0, 0, 7432, 7438, 5, 867, 0, 0, 7433, 7434, 5, 866, 0, 0, 7434, 7435, 3, 800, 400, 0, 7435, 7436, 5, 867, 0, 0, 7436, 7438, 1, 0, 0, 0, 7437, 7431, 1, 0, 0, 0, 7437, 7433, 1, 0, 0, 0, 7438, 7441, 1, 0, 0, 0, 7439, 7441, 3, 798, 399, 0, 7440, 7418, 1, 0, 0, 0, 7440, 7419, 1, 0, 0, 0, 7440, 7420, 1, 0, 0, 0, 7440, 7421, 1, 0, 0, 0, 7440, 7430, 1, 0, 0, 0, 7440, 7439, 1, 0, 0, 0, 7441, 765, 1, 0, 0, 0, 7442, 7445, 7, 133, 0, 0, 7443, 7444, 5, 866, 0, 0, 7444, 7446, 5, 867, 0, 0, 7445, 7443, 1, 0, 0, 0, 7445, 7446, 1, 0, 0, 0, 7446, 7622, 1, 0, 0, 0, 7447, 7622, 3, 60, 30, 0, 7448, 7449, 5, 33, 0, 0, 7449, 7450, 5, 866, 0, 0, 7450, 7451, 3, 804, 402, 0, 7451, 7452, 5, 868, 0, 0, 7452, 7453, 3, 730, 365, 0, 7453, 7454, 5, 867, 0, 0, 7454, 7622, 1, 0, 0, 0, 7455, 7456, 5, 33, 0, 0, 7456, 7457, 5, 866, 0, 0, 7457, 7458, 3, 804, 402, 0, 7458, 7459, 5, 188, 0, 0, 7459, 7460, 3, 688, 344, 0, 7460, 7461, 5, 867, 0, 0, 7461, 7622, 1, 0, 0, 0, 7462, 7463, 5, 24, 0, 0, 7463, 7464, 5, 866, 0, 0, 7464, 7465, 3, 804, 402, 0, 7465, 7466, 5, 13, 0, 0, 7466, 7467, 3, 730, 365, 0, 7467, 7468, 5, 867, 0, 0, 7468, 7622, 1, 0, 0, 0, 7469, 7470, 5, 189, 0, 0, 7470, 7471, 5, 866, 0, 0, 7471, 7472, 3, 662, 331, 0, 7472, 7473, 5, 867, 0, 0, 7473, 7622, 1, 0, 0, 0, 7474, 7476, 5, 23, 0, 0, 7475, 7477, 3, 768, 384, 0, 7476, 7475, 1, 0, 0, 0, 7477, 7478, 1, 0, 0, 0, 7478, 7476, 1, 0, 0, 0, 7478, 7479, 1, 0, 0, 0, 7479, 7482, 1, 0, 0, 0, 7480, 7481, 5, 53, 0, 0, 7481, 7483, 3, 802, 401, 0, 7482, 7480, 1, 0, 0, 0, 7482, 7483, 1, 0, 0, 0, 7483, 7484, 1, 0, 0, 0, 7484, 7485, 5, 378, 0, 0, 7485, 7622, 1, 0, 0, 0, 7486, 7487, 5, 23, 0, 0, 7487, 7489, 3, 804, 402, 0, 7488, 7490, 3, 768, 384, 0, 7489, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7489, 1, 0, 0, 0, 7491, 7492, 1, 0, 0, 0, 7492, 7495, 1, 0, 0, 0, 7493, 7494, 5, 53, 0, 0, 7494, 7496, 3, 802, 401, 0, 7495, 7493, 1, 0, 0, 0, 7495, 7496, 1, 0, 0, 0, 7496, 7497, 1, 0, 0, 0, 7497, 7498, 5, 378, 0, 0, 7498, 7622, 1, 0, 0, 0, 7499, 7500, 5, 224, 0, 0, 7500, 7501, 5, 866, 0, 0, 7501, 7504, 3, 800, 400, 0, 7502, 7503, 5, 188, 0, 0, 7503, 7505, 3, 688, 344, 0, 7504, 7502, 1, 0, 0, 0, 7504, 7505, 1, 0, 0, 0, 7505, 7506, 1, 0, 0, 0, 7506, 7507, 5, 867, 0, 0, 7507, 7622, 1, 0, 0, 0, 7508, 7509, 5, 296, 0, 0, 7509, 7512, 5, 866, 0, 0, 7510, 7513, 3, 716, 358, 0, 7511, 7513, 3, 804, 402, 0, 7512, 7510, 1, 0, 0, 0, 7512, 7511, 1, 0, 0, 0, 7513, 7514, 1, 0, 0, 0, 7514, 7517, 5, 80, 0, 0, 7515, 7518, 3, 716, 358, 0, 7516, 7518, 3, 804, 402, 0, 7517, 7515, 1, 0, 0, 0, 7517, 7516, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7520, 5, 867, 0, 0, 7520, 7622, 1, 0, 0, 0, 7521, 7522, 7, 134, 0, 0, 7522, 7525, 5, 866, 0, 0, 7523, 7526, 3, 716, 358, 0, 7524, 7526, 3, 804, 402, 0, 7525, 7523, 1, 0, 0, 0, 7525, 7524, 1, 0, 0, 0, 7526, 7527, 1, 0, 0, 0, 7527, 7530, 5, 68, 0, 0, 7528, 7531, 3, 712, 356, 0, 7529, 7531, 3, 804, 402, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7529, 1, 0, 0, 0, 7531, 7537, 1, 0, 0, 0, 7532, 7535, 5, 65, 0, 0, 7533, 7536, 3, 712, 356, 0, 7534, 7536, 3, 804, 402, 0, 7535, 7533, 1, 0, 0, 0, 7535, 7534, 1, 0, 0, 0, 7536, 7538, 1, 0, 0, 0, 7537, 7532, 1, 0, 0, 0, 7537, 7538, 1, 0, 0, 0, 7538, 7539, 1, 0, 0, 0, 7539, 7540, 5, 867, 0, 0, 7540, 7622, 1, 0, 0, 0, 7541, 7542, 5, 300, 0, 0, 7542, 7543, 5, 866, 0, 0, 7543, 7546, 7, 135, 0, 0, 7544, 7547, 3, 716, 358, 0, 7545, 7547, 3, 804, 402, 0, 7546, 7544, 1, 0, 0, 0, 7546, 7545, 1, 0, 0, 0, 7546, 7547, 1, 0, 0, 0, 7547, 7548, 1, 0, 0, 0, 7548, 7551, 5, 68, 0, 0, 7549, 7552, 3, 716, 358, 0, 7550, 7552, 3, 804, 402, 0, 7551, 7549, 1, 0, 0, 0, 7551, 7550, 1, 0, 0, 0, 7552, 7553, 1, 0, 0, 0, 7553, 7554, 5, 867, 0, 0, 7554, 7622, 1, 0, 0, 0, 7555, 7556, 5, 300, 0, 0, 7556, 7559, 5, 866, 0, 0, 7557, 7560, 3, 716, 358, 0, 7558, 7560, 3, 804, 402, 0, 7559, 7557, 1, 0, 0, 0, 7559, 7558, 1, 0, 0, 0, 7560, 7561, 1, 0, 0, 0, 7561, 7564, 5, 68, 0, 0, 7562, 7565, 3, 716, 358, 0, 7563, 7565, 3, 804, 402, 0, 7564, 7562, 1, 0, 0, 0, 7564, 7563, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7567, 5, 867, 0, 0, 7567, 7622, 1, 0, 0, 0, 7568, 7569, 5, 840, 0, 0, 7569, 7572, 5, 866, 0, 0, 7570, 7573, 3, 716, 358, 0, 7571, 7573, 3, 804, 402, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7571, 1, 0, 0, 0, 7573, 7580, 1, 0, 0, 0, 7574, 7575, 5, 13, 0, 0, 7575, 7576, 7, 136, 0, 0, 7576, 7577, 5, 866, 0, 0, 7577, 7578, 3, 712, 356, 0, 7578, 7579, 5, 867, 0, 0, 7579, 7581, 1, 0, 0, 0, 7580, 7574, 1, 0, 0, 0, 7580, 7581, 1, 0, 0, 0, 7581, 7583, 1, 0, 0, 0, 7582, 7584, 3, 770, 385, 0, 7583, 7582, 1, 0, 0, 0, 7583, 7584, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, 7586, 5, 867, 0, 0, 7586, 7622, 1, 0, 0, 0, 7587, 7588, 5, 293, 0, 0, 7588, 7589, 5, 866, 0, 0, 7589, 7590, 3, 70, 35, 0, 7590, 7593, 5, 68, 0, 0, 7591, 7594, 3, 716, 358, 0, 7592, 7594, 3, 804, 402, 0, 7593, 7591, 1, 0, 0, 0, 7593, 7592, 1, 0, 0, 0, 7594, 7595, 1, 0, 0, 0, 7595, 7596, 5, 867, 0, 0, 7596, 7622, 1, 0, 0, 0, 7597, 7598, 5, 827, 0, 0, 7598, 7599, 5, 866, 0, 0, 7599, 7600, 7, 137, 0, 0, 7600, 7601, 5, 868, 0, 0, 7601, 7602, 3, 716, 358, 0, 7602, 7603, 5, 867, 0, 0, 7603, 7622, 1, 0, 0, 0, 7604, 7605, 5, 254, 0, 0, 7605, 7606, 5, 866, 0, 0, 7606, 7607, 3, 804, 402, 0, 7607, 7608, 5, 868, 0, 0, 7608, 7611, 3, 804, 402, 0, 7609, 7610, 5, 579, 0, 0, 7610, 7612, 3, 730, 365, 0, 7611, 7609, 1, 0, 0, 0, 7611, 7612, 1, 0, 0, 0, 7612, 7614, 1, 0, 0, 0, 7613, 7615, 3, 292, 146, 0, 7614, 7613, 1, 0, 0, 0, 7614, 7615, 1, 0, 0, 0, 7615, 7617, 1, 0, 0, 0, 7616, 7618, 3, 294, 147, 0, 7617, 7616, 1, 0, 0, 0, 7617, 7618, 1, 0, 0, 0, 7618, 7619, 1, 0, 0, 0, 7619, 7620, 5, 867, 0, 0, 7620, 7622, 1, 0, 0, 0, 7621, 7442, 1, 0, 0, 0, 7621, 7447, 1, 0, 0, 0, 7621, 7448, 1, 0, 0, 0, 7621, 7455, 1, 0, 0, 0, 7621, 7462, 1, 0, 0, 0, 7621, 7469, 1, 0, 0, 0, 7621, 7474, 1, 0, 0, 0, 7621, 7486, 1, 0, 0, 0, 7621, 7499, 1, 0, 0, 0, 7621, 7508, 1, 0, 0, 0, 7621, 7521, 1, 0, 0, 0, 7621, 7541, 1, 0, 0, 0, 7621, 7555, 1, 0, 0, 0, 7621, 7568, 1, 0, 0, 0, 7621, 7587, 1, 0, 0, 0, 7621, 7597, 1, 0, 0, 0, 7621, 7604, 1, 0, 0, 0, 7622, 767, 1, 0, 0, 0, 7623, 7624, 5, 191, 0, 0, 7624, 7625, 3, 802, 401, 0, 7625, 7626, 5, 175, 0, 0, 7626, 7627, 3, 802, 401, 0, 7627, 769, 1, 0, 0, 0, 7628, 7629, 5, 448, 0, 0, 7629, 7634, 3, 772, 386, 0, 7630, 7631, 5, 868, 0, 0, 7631, 7633, 3, 772, 386, 0, 7632, 7630, 1, 0, 0, 0, 7633, 7636, 1, 0, 0, 0, 7634, 7632, 1, 0, 0, 0, 7634, 7635, 1, 0, 0, 0, 7635, 7643, 1, 0, 0, 0, 7636, 7634, 1, 0, 0, 0, 7637, 7638, 5, 448, 0, 0, 7638, 7639, 3, 712, 356, 0, 7639, 7640, 5, 854, 0, 0, 7640, 7641, 3, 712, 356, 0, 7641, 7643, 1, 0, 0, 0, 7642, 7628, 1, 0, 0, 0, 7642, 7637, 1, 0, 0, 0, 7643, 771, 1, 0, 0, 0, 7644, 7646, 3, 712, 356, 0, 7645, 7647, 7, 138, 0, 0, 7646, 7645, 1, 0, 0, 0, 7646, 7647, 1, 0, 0, 0, 7647, 773, 1, 0, 0, 0, 7648, 7649, 7, 139, 0, 0, 7649, 7651, 5, 866, 0, 0, 7650, 7652, 7, 45, 0, 0, 7651, 7650, 1, 0, 0, 0, 7651, 7652, 1, 0, 0, 0, 7652, 7653, 1, 0, 0, 0, 7653, 7654, 3, 802, 401, 0, 7654, 7656, 5, 867, 0, 0, 7655, 7657, 3, 778, 389, 0, 7656, 7655, 1, 0, 0, 0, 7656, 7657, 1, 0, 0, 0, 7657, 7708, 1, 0, 0, 0, 7658, 7659, 5, 262, 0, 0, 7659, 7667, 5, 866, 0, 0, 7660, 7668, 5, 850, 0, 0, 7661, 7663, 5, 7, 0, 0, 7662, 7661, 1, 0, 0, 0, 7662, 7663, 1, 0, 0, 0, 7663, 7664, 1, 0, 0, 0, 7664, 7668, 3, 802, 401, 0, 7665, 7666, 5, 49, 0, 0, 7666, 7668, 3, 800, 400, 0, 7667, 7660, 1, 0, 0, 0, 7667, 7662, 1, 0, 0, 0, 7667, 7665, 1, 0, 0, 0, 7668, 7669, 1, 0, 0, 0, 7669, 7671, 5, 867, 0, 0, 7670, 7672, 3, 778, 389, 0, 7671, 7670, 1, 0, 0, 0, 7671, 7672, 1, 0, 0, 0, 7672, 7708, 1, 0, 0, 0, 7673, 7674, 7, 140, 0, 0, 7674, 7676, 5, 866, 0, 0, 7675, 7677, 5, 7, 0, 0, 7676, 7675, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 7678, 1, 0, 0, 0, 7678, 7679, 3, 802, 401, 0, 7679, 7681, 5, 867, 0, 0, 7680, 7682, 3, 778, 389, 0, 7681, 7680, 1, 0, 0, 0, 7681, 7682, 1, 0, 0, 0, 7682, 7708, 1, 0, 0, 0, 7683, 7684, 5, 266, 0, 0, 7684, 7686, 5, 866, 0, 0, 7685, 7687, 5, 49, 0, 0, 7686, 7685, 1, 0, 0, 0, 7686, 7687, 1, 0, 0, 0, 7687, 7688, 1, 0, 0, 0, 7688, 7699, 3, 800, 400, 0, 7689, 7690, 5, 125, 0, 0, 7690, 7691, 5, 20, 0, 0, 7691, 7696, 3, 260, 130, 0, 7692, 7693, 5, 868, 0, 0, 7693, 7695, 3, 260, 130, 0, 7694, 7692, 1, 0, 0, 0, 7695, 7698, 1, 0, 0, 0, 7696, 7694, 1, 0, 0, 0, 7696, 7697, 1, 0, 0, 0, 7697, 7700, 1, 0, 0, 0, 7698, 7696, 1, 0, 0, 0, 7699, 7689, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 7703, 1, 0, 0, 0, 7701, 7702, 5, 156, 0, 0, 7702, 7704, 5, 882, 0, 0, 7703, 7701, 1, 0, 0, 0, 7703, 7704, 1, 0, 0, 0, 7704, 7705, 1, 0, 0, 0, 7705, 7706, 5, 867, 0, 0, 7706, 7708, 1, 0, 0, 0, 7707, 7648, 1, 0, 0, 0, 7707, 7658, 1, 0, 0, 0, 7707, 7673, 1, 0, 0, 0, 7707, 7683, 1, 0, 0, 0, 7708, 775, 1, 0, 0, 0, 7709, 7710, 7, 141, 0, 0, 7710, 7711, 5, 866, 0, 0, 7711, 7714, 3, 804, 402, 0, 7712, 7713, 5, 868, 0, 0, 7713, 7715, 3, 712, 356, 0, 7714, 7712, 1, 0, 0, 0, 7714, 7715, 1, 0, 0, 0, 7715, 7718, 1, 0, 0, 0, 7716, 7717, 5, 868, 0, 0, 7717, 7719, 3, 712, 356, 0, 7718, 7716, 1, 0, 0, 0, 7718, 7719, 1, 0, 0, 0, 7719, 7720, 1, 0, 0, 0, 7720, 7721, 5, 867, 0, 0, 7721, 7722, 3, 778, 389, 0, 7722, 7748, 1, 0, 0, 0, 7723, 7724, 7, 142, 0, 0, 7724, 7725, 5, 866, 0, 0, 7725, 7726, 3, 804, 402, 0, 7726, 7727, 5, 867, 0, 0, 7727, 7728, 3, 778, 389, 0, 7728, 7748, 1, 0, 0, 0, 7729, 7730, 7, 143, 0, 0, 7730, 7731, 5, 866, 0, 0, 7731, 7732, 5, 867, 0, 0, 7732, 7748, 3, 778, 389, 0, 7733, 7734, 5, 273, 0, 0, 7734, 7735, 5, 866, 0, 0, 7735, 7736, 3, 804, 402, 0, 7736, 7737, 5, 868, 0, 0, 7737, 7738, 3, 712, 356, 0, 7738, 7739, 5, 867, 0, 0, 7739, 7740, 3, 778, 389, 0, 7740, 7748, 1, 0, 0, 0, 7741, 7742, 5, 272, 0, 0, 7742, 7743, 5, 866, 0, 0, 7743, 7744, 3, 712, 356, 0, 7744, 7745, 5, 867, 0, 0, 7745, 7746, 3, 778, 389, 0, 7746, 7748, 1, 0, 0, 0, 7747, 7709, 1, 0, 0, 0, 7747, 7723, 1, 0, 0, 0, 7747, 7729, 1, 0, 0, 0, 7747, 7733, 1, 0, 0, 0, 7747, 7741, 1, 0, 0, 0, 7748, 777, 1, 0, 0, 0, 7749, 7755, 5, 129, 0, 0, 7750, 7751, 5, 866, 0, 0, 7751, 7752, 3, 780, 390, 0, 7752, 7753, 5, 867, 0, 0, 7753, 7756, 1, 0, 0, 0, 7754, 7756, 3, 782, 391, 0, 7755, 7750, 1, 0, 0, 0, 7755, 7754, 1, 0, 0, 0, 7756, 779, 1, 0, 0, 0, 7757, 7759, 3, 782, 391, 0, 7758, 7757, 1, 0, 0, 0, 7758, 7759, 1, 0, 0, 0, 7759, 7761, 1, 0, 0, 0, 7760, 7762, 3, 794, 397, 0, 7761, 7760, 1, 0, 0, 0, 7761, 7762, 1, 0, 0, 0, 7762, 7764, 1, 0, 0, 0, 7763, 7765, 3, 258, 129, 0, 7764, 7763, 1, 0, 0, 0, 7764, 7765, 1, 0, 0, 0, 7765, 7767, 1, 0, 0, 0, 7766, 7768, 3, 784, 392, 0, 7767, 7766, 1, 0, 0, 0, 7767, 7768, 1, 0, 0, 0, 7768, 781, 1, 0, 0, 0, 7769, 7770, 3, 706, 353, 0, 7770, 783, 1, 0, 0, 0, 7771, 7772, 3, 786, 393, 0, 7772, 7773, 3, 788, 394, 0, 7773, 785, 1, 0, 0, 0, 7774, 7775, 7, 144, 0, 0, 7775, 787, 1, 0, 0, 0, 7776, 7779, 3, 792, 396, 0, 7777, 7779, 3, 790, 395, 0, 7778, 7776, 1, 0, 0, 0, 7778, 7777, 1, 0, 0, 0, 7779, 789, 1, 0, 0, 0, 7780, 7781, 5, 17, 0, 0, 7781, 7782, 3, 792, 396, 0, 7782, 7783, 5, 11, 0, 0, 7783, 7784, 3, 792, 396, 0, 7784, 791, 1, 0, 0, 0, 7785, 7786, 5, 36, 0, 0, 7786, 7793, 5, 586, 0, 0, 7787, 7788, 5, 669, 0, 0, 7788, 7793, 7, 145, 0, 0, 7789, 7790, 3, 804, 402, 0, 7790, 7791, 7, 145, 0, 0, 7791, 7793, 1, 0, 0, 0, 7792, 7785, 1, 0, 0, 0, 7792, 7787, 1, 0, 0, 0, 7792, 7789, 1, 0, 0, 0, 7793, 793, 1, 0, 0, 0, 7794, 7795, 5, 130, 0, 0, 7795, 7796, 5, 20, 0, 0, 7796, 7801, 3, 804, 402, 0, 7797, 7798, 5, 868, 0, 0, 7798, 7800, 3, 804, 402, 0, 7799, 7797, 1, 0, 0, 0, 7800, 7803, 1, 0, 0, 0, 7801, 7799, 1, 0, 0, 0, 7801, 7802, 1, 0, 0, 0, 7802, 795, 1, 0, 0, 0, 7803, 7801, 1, 0, 0, 0, 7804, 7829, 3, 836, 418, 0, 7805, 7829, 5, 757, 0, 0, 7806, 7829, 5, 289, 0, 0, 7807, 7829, 5, 285, 0, 0, 7808, 7829, 5, 286, 0, 0, 7809, 7829, 5, 287, 0, 0, 7810, 7829, 5, 290, 0, 0, 7811, 7829, 5, 291, 0, 0, 7812, 7829, 5, 292, 0, 0, 7813, 7829, 5, 78, 0, 0, 7814, 7829, 5, 86, 0, 0, 7815, 7829, 5, 288, 0, 0, 7816, 7829, 5, 294, 0, 0, 7817, 7829, 5, 488, 0, 0, 7818, 7829, 5, 295, 0, 0, 7819, 7829, 5, 142, 0, 0, 7820, 7829, 5, 143, 0, 0, 7821, 7829, 5, 297, 0, 0, 7822, 7829, 5, 298, 0, 0, 7823, 7829, 5, 299, 0, 0, 7824, 7829, 5, 300, 0, 0, 7825, 7829, 5, 301, 0, 0, 7826, 7829, 5, 302, 0, 0, 7827, 7829, 5, 303, 0, 0, 7828, 7804, 1, 0, 0, 0, 7828, 7805, 1, 0, 0, 0, 7828, 7806, 1, 0, 0, 0, 7828, 7807, 1, 0, 0, 0, 7828, 7808, 1, 0, 0, 0, 7828, 7809, 1, 0, 0, 0, 7828, 7810, 1, 0, 0, 0, 7828, 7811, 1, 0, 0, 0, 7828, 7812, 1, 0, 0, 0, 7828, 7813, 1, 0, 0, 0, 7828, 7814, 1, 0, 0, 0, 7828, 7815, 1, 0, 0, 0, 7828, 7816, 1, 0, 0, 0, 7828, 7817, 1, 0, 0, 0, 7828, 7818, 1, 0, 0, 0, 7828, 7819, 1, 0, 0, 0, 7828, 7820, 1, 0, 0, 0, 7828, 7821, 1, 0, 0, 0, 7828, 7822, 1, 0, 0, 0, 7828, 7823, 1, 0, 0, 0, 7828, 7824, 1, 0, 0, 0, 7828, 7825, 1, 0, 0, 0, 7828, 7826, 1, 0, 0, 0, 7828, 7827, 1, 0, 0, 0, 7829, 797, 1, 0, 0, 0, 7830, 7831, 7, 146, 0, 0, 7831, 7832, 5, 866, 0, 0, 7832, 7833, 3, 802, 401, 0, 7833, 7834, 5, 867, 0, 0, 7834, 799, 1, 0, 0, 0, 7835, 7840, 3, 802, 401, 0, 7836, 7837, 5, 868, 0, 0, 7837, 7839, 3, 802, 401, 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, 801, 1, 0, 0, 0, 7842, 7840, 1, 0, 0, 0, 7843, 7847, 3, 724, 362, 0, 7844, 7847, 3, 764, 382, 0, 7845, 7847, 3, 804, 402, 0, 7846, 7843, 1, 0, 0, 0, 7846, 7844, 1, 0, 0, 0, 7846, 7845, 1, 0, 0, 0, 7847, 803, 1, 0, 0, 0, 7848, 7849, 6, 402, -1, 0, 7849, 7850, 7, 147, 0, 0, 7850, 7860, 3, 804, 402, 4, 7851, 7852, 3, 806, 403, 0, 7852, 7854, 5, 89, 0, 0, 7853, 7855, 5, 114, 0, 0, 7854, 7853, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 7856, 1, 0, 0, 0, 7856, 7857, 7, 148, 0, 0, 7857, 7860, 1, 0, 0, 0, 7858, 7860, 3, 806, 403, 0, 7859, 7848, 1, 0, 0, 0, 7859, 7851, 1, 0, 0, 0, 7859, 7858, 1, 0, 0, 0, 7860, 7867, 1, 0, 0, 0, 7861, 7862, 10, 3, 0, 0, 7862, 7863, 3, 816, 408, 0, 7863, 7864, 3, 804, 402, 4, 7864, 7866, 1, 0, 0, 0, 7865, 7861, 1, 0, 0, 0, 7866, 7869, 1, 0, 0, 0, 7867, 7865, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 805, 1, 0, 0, 0, 7869, 7867, 1, 0, 0, 0, 7870, 7871, 6, 403, -1, 0, 7871, 7872, 3, 808, 404, 0, 7872, 7936, 1, 0, 0, 0, 7873, 7875, 10, 6, 0, 0, 7874, 7876, 5, 114, 0, 0, 7875, 7874, 1, 0, 0, 0, 7875, 7876, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 7878, 5, 17, 0, 0, 7878, 7879, 3, 806, 403, 0, 7879, 7880, 5, 11, 0, 0, 7880, 7881, 3, 806, 403, 7, 7881, 7935, 1, 0, 0, 0, 7882, 7883, 10, 5, 0, 0, 7883, 7884, 5, 604, 0, 0, 7884, 7885, 5, 99, 0, 0, 7885, 7935, 3, 806, 403, 6, 7886, 7888, 10, 3, 0, 0, 7887, 7889, 5, 114, 0, 0, 7888, 7887, 1, 0, 0, 0, 7888, 7889, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7891, 7, 149, 0, 0, 7891, 7935, 3, 806, 403, 4, 7892, 7894, 10, 9, 0, 0, 7893, 7895, 5, 114, 0, 0, 7894, 7893, 1, 0, 0, 0, 7894, 7895, 1, 0, 0, 0, 7895, 7896, 1, 0, 0, 0, 7896, 7897, 5, 80, 0, 0, 7897, 7900, 5, 866, 0, 0, 7898, 7901, 3, 210, 105, 0, 7899, 7901, 3, 740, 370, 0, 7900, 7898, 1, 0, 0, 0, 7900, 7899, 1, 0, 0, 0, 7901, 7902, 1, 0, 0, 0, 7902, 7903, 5, 867, 0, 0, 7903, 7935, 1, 0, 0, 0, 7904, 7905, 10, 8, 0, 0, 7905, 7906, 5, 89, 0, 0, 7906, 7935, 3, 722, 361, 0, 7907, 7908, 10, 7, 0, 0, 7908, 7915, 3, 812, 406, 0, 7909, 7910, 7, 150, 0, 0, 7910, 7911, 5, 866, 0, 0, 7911, 7912, 3, 210, 105, 0, 7912, 7913, 5, 867, 0, 0, 7913, 7916, 1, 0, 0, 0, 7914, 7916, 3, 806, 403, 0, 7915, 7909, 1, 0, 0, 0, 7915, 7914, 1, 0, 0, 0, 7916, 7935, 1, 0, 0, 0, 7917, 7919, 10, 4, 0, 0, 7918, 7920, 5, 114, 0, 0, 7919, 7918, 1, 0, 0, 0, 7919, 7920, 1, 0, 0, 0, 7920, 7921, 1, 0, 0, 0, 7921, 7922, 5, 99, 0, 0, 7922, 7925, 3, 806, 403, 0, 7923, 7924, 5, 384, 0, 0, 7924, 7926, 5, 882, 0, 0, 7925, 7923, 1, 0, 0, 0, 7925, 7926, 1, 0, 0, 0, 7926, 7935, 1, 0, 0, 0, 7927, 7928, 10, 2, 0, 0, 7928, 7929, 5, 485, 0, 0, 7929, 7930, 5, 510, 0, 0, 7930, 7931, 5, 866, 0, 0, 7931, 7932, 3, 806, 403, 0, 7932, 7933, 5, 867, 0, 0, 7933, 7935, 1, 0, 0, 0, 7934, 7873, 1, 0, 0, 0, 7934, 7882, 1, 0, 0, 0, 7934, 7886, 1, 0, 0, 0, 7934, 7892, 1, 0, 0, 0, 7934, 7904, 1, 0, 0, 0, 7934, 7907, 1, 0, 0, 0, 7934, 7917, 1, 0, 0, 0, 7934, 7927, 1, 0, 0, 0, 7935, 7938, 1, 0, 0, 0, 7936, 7934, 1, 0, 0, 0, 7936, 7937, 1, 0, 0, 0, 7937, 807, 1, 0, 0, 0, 7938, 7936, 1, 0, 0, 0, 7939, 7940, 6, 404, -1, 0, 7940, 7988, 3, 724, 362, 0, 7941, 7988, 3, 764, 382, 0, 7942, 7988, 3, 686, 343, 0, 7943, 7944, 3, 810, 405, 0, 7944, 7945, 3, 808, 404, 12, 7945, 7988, 1, 0, 0, 0, 7946, 7947, 5, 228, 0, 0, 7947, 7988, 3, 808, 404, 11, 7948, 7949, 5, 892, 0, 0, 7949, 7950, 5, 841, 0, 0, 7950, 7988, 3, 808, 404, 10, 7951, 7952, 5, 866, 0, 0, 7952, 7957, 3, 804, 402, 0, 7953, 7954, 5, 868, 0, 0, 7954, 7956, 3, 804, 402, 0, 7955, 7953, 1, 0, 0, 0, 7956, 7959, 1, 0, 0, 0, 7957, 7955, 1, 0, 0, 0, 7957, 7958, 1, 0, 0, 0, 7958, 7960, 1, 0, 0, 0, 7959, 7957, 1, 0, 0, 0, 7960, 7961, 5, 867, 0, 0, 7961, 7988, 1, 0, 0, 0, 7962, 7963, 5, 586, 0, 0, 7963, 7964, 5, 866, 0, 0, 7964, 7967, 3, 804, 402, 0, 7965, 7966, 5, 868, 0, 0, 7966, 7968, 3, 804, 402, 0, 7967, 7965, 1, 0, 0, 0, 7968, 7969, 1, 0, 0, 0, 7969, 7967, 1, 0, 0, 0, 7969, 7970, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 7972, 5, 867, 0, 0, 7972, 7988, 1, 0, 0, 0, 7973, 7974, 5, 60, 0, 0, 7974, 7975, 5, 866, 0, 0, 7975, 7976, 3, 210, 105, 0, 7976, 7977, 5, 867, 0, 0, 7977, 7988, 1, 0, 0, 0, 7978, 7979, 5, 866, 0, 0, 7979, 7980, 3, 210, 105, 0, 7980, 7981, 5, 867, 0, 0, 7981, 7988, 1, 0, 0, 0, 7982, 7983, 5, 87, 0, 0, 7983, 7984, 3, 804, 402, 0, 7984, 7985, 3, 70, 35, 0, 7985, 7988, 1, 0, 0, 0, 7986, 7988, 3, 662, 331, 0, 7987, 7939, 1, 0, 0, 0, 7987, 7941, 1, 0, 0, 0, 7987, 7942, 1, 0, 0, 0, 7987, 7943, 1, 0, 0, 0, 7987, 7946, 1, 0, 0, 0, 7987, 7948, 1, 0, 0, 0, 7987, 7951, 1, 0, 0, 0, 7987, 7962, 1, 0, 0, 0, 7987, 7973, 1, 0, 0, 0, 7987, 7978, 1, 0, 0, 0, 7987, 7982, 1, 0, 0, 0, 7987, 7986, 1, 0, 0, 0, 7988, 8006, 1, 0, 0, 0, 7989, 7990, 10, 4, 0, 0, 7990, 7991, 3, 822, 411, 0, 7991, 7992, 3, 808, 404, 5, 7992, 8005, 1, 0, 0, 0, 7993, 7994, 10, 3, 0, 0, 7994, 7995, 3, 818, 409, 0, 7995, 7996, 3, 808, 404, 4, 7996, 8005, 1, 0, 0, 0, 7997, 7998, 10, 2, 0, 0, 7998, 7999, 3, 820, 410, 0, 7999, 8000, 3, 808, 404, 3, 8000, 8005, 1, 0, 0, 0, 8001, 8002, 10, 14, 0, 0, 8002, 8003, 5, 28, 0, 0, 8003, 8005, 3, 690, 345, 0, 8004, 7989, 1, 0, 0, 0, 8004, 7993, 1, 0, 0, 0, 8004, 7997, 1, 0, 0, 0, 8004, 8001, 1, 0, 0, 0, 8005, 8008, 1, 0, 0, 0, 8006, 8004, 1, 0, 0, 0, 8006, 8007, 1, 0, 0, 0, 8007, 809, 1, 0, 0, 0, 8008, 8006, 1, 0, 0, 0, 8009, 8010, 7, 151, 0, 0, 8010, 811, 1, 0, 0, 0, 8011, 8012, 5, 859, 0, 0, 8012, 8020, 5, 858, 0, 0, 8013, 8014, 5, 860, 0, 0, 8014, 8020, 5, 857, 0, 0, 8015, 8016, 5, 859, 0, 0, 8016, 8017, 5, 857, 0, 0, 8017, 8020, 5, 858, 0, 0, 8018, 8020, 3, 814, 407, 0, 8019, 8011, 1, 0, 0, 0, 8019, 8013, 1, 0, 0, 0, 8019, 8015, 1, 0, 0, 0, 8019, 8018, 1, 0, 0, 0, 8020, 813, 1, 0, 0, 0, 8021, 8022, 5, 859, 0, 0, 8022, 8029, 5, 857, 0, 0, 8023, 8024, 5, 858, 0, 0, 8024, 8029, 5, 857, 0, 0, 8025, 8029, 5, 857, 0, 0, 8026, 8029, 5, 858, 0, 0, 8027, 8029, 5, 859, 0, 0, 8028, 8021, 1, 0, 0, 0, 8028, 8023, 1, 0, 0, 0, 8028, 8025, 1, 0, 0, 0, 8028, 8026, 1, 0, 0, 0, 8028, 8027, 1, 0, 0, 0, 8029, 815, 1, 0, 0, 0, 8030, 8038, 5, 11, 0, 0, 8031, 8032, 5, 863, 0, 0, 8032, 8038, 5, 863, 0, 0, 8033, 8038, 5, 196, 0, 0, 8034, 8038, 5, 124, 0, 0, 8035, 8036, 5, 862, 0, 0, 8036, 8038, 5, 862, 0, 0, 8037, 8030, 1, 0, 0, 0, 8037, 8031, 1, 0, 0, 0, 8037, 8033, 1, 0, 0, 0, 8037, 8034, 1, 0, 0, 0, 8037, 8035, 1, 0, 0, 0, 8038, 817, 1, 0, 0, 0, 8039, 8040, 5, 859, 0, 0, 8040, 8047, 5, 859, 0, 0, 8041, 8042, 5, 858, 0, 0, 8042, 8047, 5, 858, 0, 0, 8043, 8047, 5, 863, 0, 0, 8044, 8047, 5, 864, 0, 0, 8045, 8047, 5, 862, 0, 0, 8046, 8039, 1, 0, 0, 0, 8046, 8041, 1, 0, 0, 0, 8046, 8043, 1, 0, 0, 0, 8046, 8044, 1, 0, 0, 0, 8046, 8045, 1, 0, 0, 0, 8047, 819, 1, 0, 0, 0, 8048, 8049, 7, 152, 0, 0, 8049, 821, 1, 0, 0, 0, 8050, 8051, 5, 854, 0, 0, 8051, 8056, 5, 858, 0, 0, 8052, 8053, 5, 854, 0, 0, 8053, 8054, 5, 858, 0, 0, 8054, 8056, 5, 858, 0, 0, 8055, 8050, 1, 0, 0, 0, 8055, 8052, 1, 0, 0, 0, 8056, 823, 1, 0, 0, 0, 8057, 8058, 7, 153, 0, 0, 8058, 825, 1, 0, 0, 0, 8059, 8060, 7, 154, 0, 0, 8060, 827, 1, 0, 0, 0, 8061, 8062, 7, 155, 0, 0, 8062, 829, 1, 0, 0, 0, 8063, 8064, 7, 156, 0, 0, 8064, 831, 1, 0, 0, 0, 8065, 8066, 7, 157, 0, 0, 8066, 833, 1, 0, 0, 0, 8067, 8068, 7, 158, 0, 0, 8068, 835, 1, 0, 0, 0, 8069, 8070, 7, 159, 0, 0, 8070, 837, 1, 0, 0, 0, 1163, 841, 848, 851, 860, 904, 923, 934, 950, 955, 967, 1002, 1012, 1017, 1023, 1028, 1032, 1041, 1044, 1047, 1051, 1058, 1061, 1066, 1074, 1079, 1084, 1087, 1089, 1101, 1104, 1108, 1111, 1115, 1118, 1122, 1125, 1128, 1132, 1135, 1139, 1145, 1149, 1154, 1160, 1167, 1174, 1177, 1181, 1186, 1192, 1201, 1206, 1210, 1214, 1225, 1243, 1250, 1254, 1258, 1262, 1267, 1270, 1273, 1276, 1279, 1285, 1289, 1299, 1303, 1307, 1313, 1318, 1321, 1324, 1326, 1330, 1337, 1341, 1344, 1349, 1353, 1356, 1360, 1363, 1367, 1380, 1383, 1387, 1390, 1394, 1397, 1401, 1404, 1408, 1411, 1414, 1418, 1421, 1425, 1431, 1434, 1438, 1450, 1456, 1467, 1472, 1480, 1484, 1489, 1492, 1497, 1507, 1512, 1517, 1523, 1528, 1532, 1534, 1537, 1541, 1545, 1548, 1552, 1556, 1560, 1566, 1569, 1576, 1581, 1587, 1594, 1600, 1608, 1611, 1618, 1621, 1623, 1629, 1635, 1652, 1659, 1666, 1678, 1683, 1686, 1689, 1702, 1715, 1720, 1736, 1744, 1754, 1757, 1763, 1768, 1771, 1777, 1781, 1786, 1792, 1796, 1800, 1803, 1806, 1812, 1816, 1821, 1832, 1835, 1842, 1845, 1849, 1855, 1867, 1870, 1875, 1888, 1895, 1901, 1906, 1910, 1913, 1921, 1929, 1931, 1941, 1945, 1948, 1952, 1957, 1962, 1967, 1971, 1975, 1979, 1983, 1987, 1991, 1996, 2001, 2006, 2012, 2017, 2022, 2027, 2032, 2037, 2043, 2048, 2053, 2058, 2063, 2068, 2073, 2078, 2085, 2090, 2095, 2100, 2104, 2109, 2117, 2122, 2128, 2140, 2147, 2149, 2157, 2162, 2165, 2173, 2179, 2183, 2196, 2208, 2210, 2213, 2221, 2227, 2233, 2246, 2253, 2262, 2267, 2278, 2287, 2292, 2304, 2311, 2320, 2325, 2337, 2344, 2353, 2358, 2365, 2374, 2379, 2381, 2386, 2394, 2403, 2407, 2410, 2414, 2419, 2425, 2431, 2436, 2441, 2446, 2451, 2454, 2459, 2464, 2474, 2478, 2485, 2490, 2493, 2498, 2501, 2505, 2509, 2517, 2536, 2539, 2542, 2546, 2556, 2569, 2582, 2585, 2591, 2594, 2598, 2607, 2610, 2613, 2618, 2622, 2625, 2629, 2633, 2636, 2640, 2643, 2647, 2650, 2656, 2659, 2664, 2672, 2678, 2682, 2686, 2691, 2696, 2703, 2707, 2718, 2726, 2729, 2735, 2741, 2744, 2750, 2756, 2758, 2763, 2769, 2775, 2777, 2781, 2784, 2787, 2793, 2799, 2801, 2806, 2813, 2822, 2825, 2829, 2834, 2844, 2853, 2861, 2864, 2872, 2875, 2882, 2887, 2895, 2911, 2916, 2923, 2942, 2948, 2958, 2970, 2977, 2984, 2999, 3012, 3018, 3024, 3030, 3036, 3042, 3048, 3053, 3060, 3067, 3074, 3079, 3082, 3084, 3093, 3100, 3107, 3114, 3123, 3129, 3133, 3137, 3141, 3147, 3150, 3155, 3162, 3169, 3173, 3178, 3188, 3196, 3202, 3211, 3220, 3229, 3232, 3236, 3245, 3249, 3252, 3255, 3261, 3264, 3267, 3271, 3274, 3277, 3280, 3291, 3294, 3299, 3305, 3310, 3315, 3318, 3322, 3327, 3330, 3335, 3345, 3350, 3356, 3358, 3364, 3366, 3372, 3380, 3385, 3393, 3396, 3401, 3404, 3409, 3417, 3423, 3427, 3429, 3435, 3443, 3448, 3456, 3459, 3464, 3467, 3471, 3474, 3477, 3481, 3484, 3492, 3498, 3502, 3508, 3513, 3517, 3519, 3525, 3529, 3532, 3535, 3538, 3544, 3549, 3552, 3555, 3558, 3561, 3563, 3566, 3570, 3573, 3576, 3584, 3590, 3593, 3595, 3604, 3609, 3616, 3619, 3622, 3626, 3630, 3636, 3640, 3647, 3651, 3654, 3657, 3662, 3669, 3679, 3688, 3697, 3707, 3710, 3714, 3720, 3724, 3727, 3730, 3735, 3738, 3745, 3749, 3752, 3756, 3760, 3763, 3766, 3771, 3777, 3781, 3791, 3797, 3801, 3807, 3811, 3817, 3820, 3832, 3836, 3840, 3848, 3852, 3866, 3871, 3874, 3878, 3881, 3889, 3894, 3897, 3900, 3904, 3907, 3916, 3921, 3930, 3935, 3942, 3949, 3957, 3963, 3971, 3974, 3977, 3984, 3987, 3990, 3997, 4000, 4004, 4010, 4020, 4024, 4033, 4036, 4040, 4046, 4054, 4059, 4063, 4069, 4075, 4078, 4080, 4084, 4093, 4103, 4109, 4114, 4118, 4121, 4124, 4127, 4130, 4133, 4136, 4140, 4144, 4152, 4156, 4159, 4161, 4174, 4177, 4184, 4194, 4197, 4202, 4204, 4208, 4216, 4222, 4231, 4244, 4248, 4254, 4259, 4263, 4266, 4270, 4273, 4281, 4284, 4286, 4294, 4306, 4312, 4314, 4320, 4322, 4324, 4330, 4338, 4346, 4350, 4354, 4363, 4368, 4388, 4393, 4399, 4406, 4411, 4420, 4423, 4427, 4431, 4435, 4438, 4441, 4444, 4448, 4452, 4455, 4458, 4461, 4468, 4472, 4487, 4500, 4508, 4518, 4522, 4525, 4531, 4534, 4537, 4546, 4555, 4565, 4569, 4579, 4583, 4594, 4598, 4607, 4616, 4619, 4623, 4628, 4632, 4641, 4644, 4647, 4654, 4660, 4666, 4692, 4695, 4698, 4717, 4719, 4742, 4745, 4748, 4767, 4769, 4783, 4796, 4833, 4838, 4873, 4887, 4894, 4898, 4904, 4912, 4914, 4925, 4935, 4942, 4948, 4956, 4961, 4969, 4977, 4985, 4993, 4999, 5004, 5009, 5014, 5020, 5022, 5033, 5038, 5045, 5047, 5061, 5067, 5072, 5077, 5083, 5090, 5098, 5106, 5111, 5117, 5120, 5128, 5135, 5144, 5147, 5164, 5172, 5180, 5184, 5191, 5197, 5205, 5210, 5217, 5225, 5232, 5237, 5240, 5242, 5248, 5250, 5254, 5256, 5261, 5268, 5273, 5277, 5282, 5286, 5292, 5298, 5303, 5306, 5308, 5314, 5316, 5320, 5322, 5327, 5332, 5339, 5348, 5353, 5362, 5366, 5372, 5377, 5380, 5382, 5388, 5390, 5393, 5400, 5402, 5407, 5414, 5423, 5429, 5431, 5438, 5441, 5453, 5459, 5467, 5470, 5474, 5477, 5481, 5483, 5494, 5497, 5501, 5504, 5507, 5514, 5526, 5529, 5536, 5542, 5552, 5557, 5564, 5569, 5575, 5579, 5583, 5591, 5595, 5599, 5605, 5607, 5619, 5624, 5630, 5636, 5640, 5645, 5647, 5671, 5675, 5678, 5687, 5691, 5700, 5704, 5708, 5714, 5716, 5725, 5735, 5762, 5766, 5771, 5778, 5781, 5787, 5797, 5807, 5817, 5823, 5832, 5838, 5845, 5847, 5855, 5861, 5865, 5882, 5892, 5896, 5900, 5910, 5915, 5987, 6005, 6013, 6019, 6031, 6035, 6046, 6050, 6059, 6067, 6074, 6078, 6085, 6090, 6093, 6096, 6107, 6116, 6125, 6128, 6142, 6160, 6173, 6176, 6180, 6183, 6185, 6192, 6199, 6203, 6210, 6217, 6220, 6236, 6239, 6249, 6253, 6259, 6262, 6265, 6270, 6274, 6277, 6284, 6287, 6293, 6329, 6332, 6344, 6347, 6363, 6365, 6369, 6376, 6380, 6387, 6390, 6399, 6402, 6407, 6413, 6415, 6421, 6425, 6431, 6434, 6437, 6450, 6453, 6459, 6462, 6470, 6478, 6484, 6487, 6491, 6505, 6517, 6525, 6529, 6536, 6543, 6548, 6561, 6570, 6578, 6583, 6586, 6591, 6594, 6606, 6611, 6624, 6626, 6631, 6635, 6638, 6640, 6647, 6654, 6657, 6660, 6666, 6670, 6676, 6684, 6693, 6706, 6711, 6719, 6722, 6727, 6732, 6740, 6743, 6751, 6755, 6762, 6768, 6771, 6775, 6788, 6794, 6806, 6809, 6818, 6823, 6844, 6860, 6870, 6875, 6880, 6882, 6885, 6889, 6891, 6898, 6904, 6906, 6909, 6913, 6916, 6929, 6939, 6942, 6945, 6958, 6964, 6967, 6975, 6982, 7002, 7009, 7011, 7018, 7020, 7024, 7031, 7037, 7048, 7054, 7060, 7063, 7067, 7072, 7075, 7079, 7083, 7085, 7090, 7095, 7108, 7111, 7115, 7118, 7121, 7126, 7131, 7137, 7140, 7145, 7148, 7153, 7156, 7160, 7165, 7170, 7175, 7180, 7183, 7188, 7193, 7198, 7204, 7209, 7214, 7219, 7223, 7226, 7231, 7235, 7239, 7247, 7254, 7258, 7263, 7268, 7272, 7274, 7277, 7293, 7303, 7313, 7322, 7331, 7338, 7345, 7353, 7361, 7373, 7380, 7390, 7395, 7398, 7403, 7406, 7428, 7437, 7440, 7445, 7478, 7482, 7491, 7495, 7504, 7512, 7517, 7525, 7530, 7535, 7537, 7546, 7551, 7559, 7564, 7572, 7580, 7583, 7593, 7611, 7614, 7617, 7621, 7634, 7642, 7646, 7651, 7656, 7662, 7667, 7671, 7676, 7681, 7686, 7696, 7699, 7703, 7707, 7714, 7718, 7747, 7755, 7758, 7761, 7764, 7767, 7778, 7792, 7801, 7828, 7840, 7846, 7854, 7859, 7867, 7875, 7888, 7894, 7900, 7915, 7919, 7925, 7934, 7936, 7957, 7969, 7987, 8004, 8006, 8019, 8028, 8037, 8046, 8055] \ No newline at end of file +[4, 1, 895, 8085, 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, 1, 0, 5, 0, 850, 8, 0, 10, 0, 12, 0, 853, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 859, 8, 1, 1, 1, 3, 1, 862, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 871, 8, 2, 1, 3, 1, 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, 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, 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, 1, 4, 3, 4, 915, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 934, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 945, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 961, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 966, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 978, 8, 9, 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, 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, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1013, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1023, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1028, 8, 12, 1, 12, 1, 12, 5, 12, 1032, 8, 12, 10, 12, 12, 12, 1035, 9, 12, 1, 13, 1, 13, 3, 13, 1039, 8, 13, 1, 13, 1, 13, 3, 13, 1043, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1052, 8, 13, 1, 13, 3, 13, 1055, 8, 13, 1, 13, 3, 13, 1058, 8, 13, 1, 13, 1, 13, 3, 13, 1062, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1069, 8, 14, 1, 14, 3, 14, 1072, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1077, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1083, 8, 14, 10, 14, 12, 14, 1086, 9, 14, 1, 14, 1, 14, 3, 14, 1090, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1095, 8, 14, 1, 14, 5, 14, 1098, 8, 14, 10, 14, 12, 14, 1101, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1112, 8, 15, 1, 15, 3, 15, 1115, 8, 15, 1, 15, 1, 15, 3, 15, 1119, 8, 15, 1, 15, 3, 15, 1122, 8, 15, 1, 15, 1, 15, 3, 15, 1126, 8, 15, 1, 15, 3, 15, 1129, 8, 15, 1, 15, 1, 15, 3, 15, 1133, 8, 15, 1, 15, 3, 15, 1136, 8, 15, 1, 15, 3, 15, 1139, 8, 15, 1, 15, 1, 15, 3, 15, 1143, 8, 15, 1, 15, 3, 15, 1146, 8, 15, 1, 15, 1, 15, 3, 15, 1150, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1156, 8, 16, 1, 16, 1, 16, 3, 16, 1160, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1165, 8, 16, 1, 16, 1, 16, 5, 16, 1169, 8, 16, 10, 16, 12, 16, 1172, 9, 16, 1, 16, 1, 16, 5, 16, 1176, 8, 16, 10, 16, 12, 16, 1179, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1185, 8, 17, 1, 17, 3, 17, 1188, 8, 17, 1, 17, 1, 17, 3, 17, 1192, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1197, 8, 17, 1, 17, 1, 17, 5, 17, 1201, 8, 17, 10, 17, 12, 17, 1204, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1210, 8, 17, 10, 17, 12, 17, 1213, 9, 17, 1, 17, 1, 17, 3, 17, 1217, 8, 17, 1, 18, 1, 18, 3, 18, 1221, 8, 18, 1, 18, 1, 18, 3, 18, 1225, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 3, 19, 1236, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1252, 8, 20, 10, 20, 12, 20, 1255, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1261, 8, 21, 1, 21, 1, 21, 3, 21, 1265, 8, 21, 1, 21, 1, 21, 3, 21, 1269, 8, 21, 1, 21, 1, 21, 3, 21, 1273, 8, 21, 1, 21, 5, 21, 1276, 8, 21, 10, 21, 12, 21, 1279, 9, 21, 3, 21, 1281, 8, 21, 1, 21, 3, 21, 1284, 8, 21, 1, 21, 3, 21, 1287, 8, 21, 1, 21, 3, 21, 1290, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1296, 8, 21, 1, 21, 1, 21, 3, 21, 1300, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1310, 8, 21, 1, 21, 1, 21, 3, 21, 1314, 8, 21, 1, 21, 1, 21, 3, 21, 1318, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1324, 8, 21, 1, 21, 5, 21, 1327, 8, 21, 10, 21, 12, 21, 1330, 9, 21, 3, 21, 1332, 8, 21, 1, 21, 3, 21, 1335, 8, 21, 3, 21, 1337, 8, 21, 1, 22, 1, 22, 3, 22, 1341, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1348, 8, 22, 1, 22, 1, 22, 3, 22, 1352, 8, 22, 1, 22, 3, 22, 1355, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1360, 8, 22, 1, 22, 1, 22, 3, 22, 1364, 8, 22, 1, 22, 3, 22, 1367, 8, 22, 1, 22, 1, 22, 3, 22, 1371, 8, 22, 1, 22, 3, 22, 1374, 8, 22, 1, 23, 1, 23, 3, 23, 1378, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1391, 8, 23, 1, 23, 3, 23, 1394, 8, 23, 1, 23, 1, 23, 3, 23, 1398, 8, 23, 1, 23, 3, 23, 1401, 8, 23, 1, 23, 1, 23, 3, 23, 1405, 8, 23, 1, 23, 3, 23, 1408, 8, 23, 1, 23, 1, 23, 3, 23, 1412, 8, 23, 1, 23, 3, 23, 1415, 8, 23, 1, 23, 1, 23, 3, 23, 1419, 8, 23, 1, 23, 3, 23, 1422, 8, 23, 1, 23, 3, 23, 1425, 8, 23, 1, 23, 1, 23, 3, 23, 1429, 8, 23, 1, 23, 3, 23, 1432, 8, 23, 1, 23, 1, 23, 3, 23, 1436, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1442, 8, 24, 1, 24, 3, 24, 1445, 8, 24, 1, 24, 1, 24, 3, 24, 1449, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1461, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 1467, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1476, 8, 26, 10, 26, 12, 26, 1479, 9, 26, 1, 26, 1, 26, 3, 26, 1483, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1491, 8, 26, 1, 27, 1, 27, 3, 27, 1495, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1500, 8, 27, 1, 27, 3, 27, 1503, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1508, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1516, 8, 27, 10, 27, 12, 27, 1519, 9, 27, 1, 27, 1, 27, 3, 27, 1523, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1528, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1534, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1539, 8, 27, 1, 27, 1, 27, 3, 27, 1543, 8, 27, 3, 27, 1545, 8, 27, 1, 28, 3, 28, 1548, 8, 28, 1, 28, 1, 28, 3, 28, 1552, 8, 28, 1, 28, 1, 28, 3, 28, 1556, 8, 28, 1, 28, 3, 28, 1559, 8, 28, 1, 28, 1, 28, 3, 28, 1563, 8, 28, 1, 28, 1, 28, 3, 28, 1567, 8, 28, 1, 28, 1, 28, 3, 28, 1571, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1577, 8, 28, 1, 28, 3, 28, 1580, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1587, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1592, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1598, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1603, 8, 32, 10, 32, 12, 32, 1606, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1611, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1617, 8, 32, 10, 32, 12, 32, 1620, 9, 32, 3, 32, 1622, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1627, 8, 32, 10, 32, 12, 32, 1630, 9, 32, 3, 32, 1632, 8, 32, 3, 32, 1634, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1640, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1646, 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, 1663, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1670, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1677, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1689, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1694, 8, 38, 1, 38, 3, 38, 1697, 8, 38, 1, 39, 3, 39, 1700, 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, 1713, 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, 1726, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1731, 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, 1747, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1753, 8, 43, 10, 43, 12, 43, 1756, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1765, 8, 44, 1, 44, 3, 44, 1768, 8, 44, 1, 44, 1, 44, 5, 44, 1772, 8, 44, 10, 44, 12, 44, 1775, 9, 44, 1, 44, 1, 44, 3, 44, 1779, 8, 44, 1, 44, 3, 44, 1782, 8, 44, 1, 44, 1, 44, 5, 44, 1786, 8, 44, 10, 44, 12, 44, 1789, 9, 44, 1, 44, 3, 44, 1792, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1797, 8, 44, 1, 44, 1, 44, 5, 44, 1801, 8, 44, 10, 44, 12, 44, 1804, 9, 44, 1, 44, 3, 44, 1807, 8, 44, 1, 44, 1, 44, 3, 44, 1811, 8, 44, 1, 44, 3, 44, 1814, 8, 44, 1, 44, 3, 44, 1817, 8, 44, 1, 44, 1, 44, 5, 44, 1821, 8, 44, 10, 44, 12, 44, 1824, 9, 44, 1, 44, 3, 44, 1827, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1832, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1843, 8, 44, 1, 45, 3, 45, 1846, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1853, 8, 45, 1, 45, 3, 45, 1856, 8, 45, 1, 46, 1, 46, 3, 46, 1860, 8, 46, 1, 47, 1, 47, 5, 47, 1864, 8, 47, 10, 47, 12, 47, 1867, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1878, 8, 48, 1, 48, 3, 48, 1881, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1886, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1899, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1906, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1912, 8, 48, 1, 49, 1, 49, 1, 49, 3, 49, 1917, 8, 49, 1, 49, 1, 49, 3, 49, 1921, 8, 49, 1, 49, 3, 49, 1924, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1932, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1940, 8, 50, 3, 50, 1942, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1952, 8, 51, 1, 52, 1, 52, 3, 52, 1956, 8, 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, 3, 52, 1973, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1978, 8, 52, 1, 52, 1, 52, 3, 52, 1982, 8, 52, 1, 52, 1, 52, 3, 52, 1986, 8, 52, 1, 52, 1, 52, 3, 52, 1990, 8, 52, 1, 52, 1, 52, 3, 52, 1994, 8, 52, 1, 52, 1, 52, 3, 52, 1998, 8, 52, 1, 52, 1, 52, 3, 52, 2002, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2007, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2012, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2017, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2023, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2028, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2033, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2038, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2043, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2048, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2054, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2059, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2064, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2069, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2074, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2079, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2084, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2089, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2096, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2101, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2106, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2111, 8, 52, 1, 52, 1, 52, 3, 52, 2115, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2120, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2128, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2133, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2139, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2151, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2158, 8, 55, 3, 55, 2160, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2166, 8, 55, 10, 55, 12, 55, 2169, 9, 55, 1, 55, 1, 55, 3, 55, 2173, 8, 55, 1, 56, 3, 56, 2176, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2184, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2190, 8, 56, 1, 56, 1, 56, 3, 56, 2194, 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, 2207, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2219, 8, 56, 3, 56, 2221, 8, 56, 1, 57, 3, 57, 2224, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2232, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2238, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2244, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2255, 8, 58, 10, 58, 12, 58, 2258, 9, 58, 1, 58, 1, 58, 5, 58, 2262, 8, 58, 10, 58, 12, 58, 2265, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2271, 8, 58, 10, 58, 12, 58, 2274, 9, 58, 1, 58, 1, 58, 3, 58, 2278, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2287, 8, 58, 10, 58, 12, 58, 2290, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2296, 8, 58, 10, 58, 12, 58, 2299, 9, 58, 1, 58, 1, 58, 3, 58, 2303, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2313, 8, 58, 10, 58, 12, 58, 2316, 9, 58, 1, 58, 1, 58, 5, 58, 2320, 8, 58, 10, 58, 12, 58, 2323, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2329, 8, 58, 10, 58, 12, 58, 2332, 9, 58, 1, 58, 1, 58, 3, 58, 2336, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2346, 8, 58, 10, 58, 12, 58, 2349, 9, 58, 1, 58, 1, 58, 5, 58, 2353, 8, 58, 10, 58, 12, 58, 2356, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2362, 8, 58, 10, 58, 12, 58, 2365, 9, 58, 1, 58, 1, 58, 3, 58, 2369, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2374, 8, 58, 10, 58, 12, 58, 2377, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2383, 8, 58, 10, 58, 12, 58, 2386, 9, 58, 1, 58, 1, 58, 3, 58, 2390, 8, 58, 3, 58, 2392, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2397, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2403, 8, 60, 11, 60, 12, 60, 2404, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2412, 8, 61, 10, 61, 12, 61, 2415, 9, 61, 1, 62, 3, 62, 2418, 8, 62, 1, 62, 3, 62, 2421, 8, 62, 1, 62, 1, 62, 3, 62, 2425, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2430, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2436, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2442, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2447, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2452, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2457, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2462, 8, 62, 1, 62, 3, 62, 2465, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2470, 8, 63, 1, 63, 4, 63, 2473, 8, 63, 11, 63, 12, 63, 2474, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2485, 8, 63, 1, 64, 1, 64, 3, 64, 2489, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2496, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2501, 8, 64, 1, 64, 3, 64, 2504, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2509, 8, 64, 1, 64, 3, 64, 2512, 8, 64, 1, 64, 1, 64, 3, 64, 2516, 8, 64, 1, 64, 1, 64, 3, 64, 2520, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2526, 8, 65, 10, 65, 12, 65, 2529, 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, 2547, 8, 67, 1, 67, 3, 67, 2550, 8, 67, 1, 67, 3, 67, 2553, 8, 67, 1, 67, 1, 67, 3, 67, 2557, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2565, 8, 68, 10, 68, 12, 68, 2568, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2578, 8, 69, 10, 69, 12, 69, 2581, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2591, 8, 70, 10, 70, 12, 70, 2594, 9, 70, 3, 70, 2596, 8, 70, 1, 70, 1, 70, 5, 70, 2600, 8, 70, 10, 70, 12, 70, 2603, 9, 70, 3, 70, 2605, 8, 70, 1, 71, 1, 71, 3, 71, 2609, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2618, 8, 71, 1, 71, 3, 71, 2621, 8, 71, 1, 71, 3, 71, 2624, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2629, 8, 71, 1, 71, 1, 71, 3, 71, 2633, 8, 71, 1, 71, 3, 71, 2636, 8, 71, 1, 71, 1, 71, 3, 71, 2640, 8, 71, 1, 71, 1, 71, 3, 71, 2644, 8, 71, 1, 71, 3, 71, 2647, 8, 71, 1, 71, 1, 71, 3, 71, 2651, 8, 71, 1, 71, 3, 71, 2654, 8, 71, 1, 71, 1, 71, 3, 71, 2658, 8, 71, 1, 71, 3, 71, 2661, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2667, 8, 72, 1, 72, 3, 72, 2670, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2675, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2683, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2689, 8, 72, 1, 72, 1, 72, 3, 72, 2693, 8, 72, 1, 73, 1, 73, 3, 73, 2697, 8, 73, 1, 73, 5, 73, 2700, 8, 73, 10, 73, 12, 73, 2703, 9, 73, 1, 73, 1, 73, 3, 73, 2707, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2714, 8, 73, 1, 73, 1, 73, 3, 73, 2718, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2727, 8, 73, 10, 73, 12, 73, 2730, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2737, 8, 73, 1, 73, 3, 73, 2740, 8, 73, 1, 73, 1, 73, 5, 73, 2744, 8, 73, 10, 73, 12, 73, 2747, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2752, 8, 73, 1, 73, 3, 73, 2755, 8, 73, 1, 73, 1, 73, 5, 73, 2759, 8, 73, 10, 73, 12, 73, 2762, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2767, 8, 73, 3, 73, 2769, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2774, 8, 73, 1, 73, 1, 73, 5, 73, 2778, 8, 73, 10, 73, 12, 73, 2781, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2786, 8, 73, 3, 73, 2788, 8, 73, 1, 73, 1, 73, 3, 73, 2792, 8, 73, 1, 73, 3, 73, 2795, 8, 73, 1, 73, 3, 73, 2798, 8, 73, 1, 73, 1, 73, 5, 73, 2802, 8, 73, 10, 73, 12, 73, 2805, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2810, 8, 73, 3, 73, 2812, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2817, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2824, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2833, 8, 73, 1, 73, 3, 73, 2836, 8, 73, 1, 73, 1, 73, 3, 73, 2840, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2845, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2855, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2864, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2872, 8, 73, 1, 73, 3, 73, 2875, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2883, 8, 73, 1, 73, 3, 73, 2886, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2893, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2898, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2906, 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, 3, 73, 2922, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2927, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2934, 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, 2953, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2959, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2967, 8, 74, 10, 74, 12, 74, 2970, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2981, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2988, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2995, 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, 3008, 8, 74, 10, 74, 12, 74, 3011, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3023, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3029, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3035, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3041, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3047, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3053, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3059, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 3064, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3071, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3078, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3085, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3090, 8, 77, 1, 77, 5, 77, 3093, 8, 77, 10, 77, 12, 77, 3096, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 3104, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3111, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3118, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3125, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 3134, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 3140, 8, 83, 1, 83, 1, 83, 3, 83, 3144, 8, 83, 1, 83, 1, 83, 3, 83, 3148, 8, 83, 1, 84, 1, 84, 3, 84, 3152, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 3158, 8, 84, 1, 84, 3, 84, 3161, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3166, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3173, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3178, 8, 86, 10, 86, 12, 86, 3181, 9, 86, 1, 86, 3, 86, 3184, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 3189, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3199, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3205, 8, 88, 10, 88, 12, 88, 3208, 9, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3213, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 3220, 8, 89, 10, 89, 12, 89, 3223, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 3231, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3240, 8, 92, 1, 92, 3, 92, 3243, 8, 92, 1, 93, 1, 93, 3, 93, 3247, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3256, 8, 95, 1, 96, 1, 96, 3, 96, 3260, 8, 96, 1, 96, 3, 96, 3263, 8, 96, 1, 96, 3, 96, 3266, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3272, 8, 96, 1, 96, 3, 96, 3275, 8, 96, 1, 96, 3, 96, 3278, 8, 96, 1, 96, 1, 96, 3, 96, 3282, 8, 96, 1, 96, 3, 96, 3285, 8, 96, 1, 96, 3, 96, 3288, 8, 96, 1, 96, 3, 96, 3291, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3300, 8, 96, 10, 96, 12, 96, 3303, 9, 96, 3, 96, 3305, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3310, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3316, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3321, 8, 99, 1, 99, 4, 99, 3324, 8, 99, 11, 99, 12, 99, 3325, 1, 100, 3, 100, 3329, 8, 100, 1, 100, 1, 100, 3, 100, 3333, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3338, 8, 101, 1, 101, 3, 101, 3341, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3346, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3356, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3361, 8, 101, 1, 101, 1, 101, 4, 101, 3365, 8, 101, 11, 101, 12, 101, 3366, 3, 101, 3369, 8, 101, 1, 101, 1, 101, 4, 101, 3373, 8, 101, 11, 101, 12, 101, 3374, 3, 101, 3377, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3383, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3389, 8, 101, 10, 101, 12, 101, 3392, 9, 101, 1, 101, 1, 101, 3, 101, 3396, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3402, 8, 101, 10, 101, 12, 101, 3405, 9, 101, 3, 101, 3407, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3412, 8, 102, 1, 102, 3, 102, 3415, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3420, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3428, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3434, 8, 102, 1, 102, 1, 102, 3, 102, 3438, 8, 102, 3, 102, 3440, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3446, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3452, 8, 102, 10, 102, 12, 102, 3455, 9, 102, 1, 102, 1, 102, 3, 102, 3459, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3465, 8, 102, 10, 102, 12, 102, 3468, 9, 102, 3, 102, 3470, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3475, 8, 103, 1, 103, 3, 103, 3478, 8, 103, 1, 103, 1, 103, 3, 103, 3482, 8, 103, 1, 103, 3, 103, 3485, 8, 103, 1, 103, 3, 103, 3488, 8, 103, 1, 104, 1, 104, 3, 104, 3492, 8, 104, 1, 104, 3, 104, 3495, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3503, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3509, 8, 104, 1, 104, 1, 104, 3, 104, 3513, 8, 104, 1, 105, 1, 105, 5, 105, 3517, 8, 105, 10, 105, 12, 105, 3520, 9, 105, 1, 105, 1, 105, 3, 105, 3524, 8, 105, 1, 105, 1, 105, 3, 105, 3528, 8, 105, 3, 105, 3530, 8, 105, 1, 105, 1, 105, 5, 105, 3534, 8, 105, 10, 105, 12, 105, 3537, 9, 105, 1, 105, 3, 105, 3540, 8, 105, 1, 105, 3, 105, 3543, 8, 105, 1, 105, 3, 105, 3546, 8, 105, 1, 105, 3, 105, 3549, 8, 105, 1, 105, 1, 105, 5, 105, 3553, 8, 105, 10, 105, 12, 105, 3556, 9, 105, 1, 105, 1, 105, 3, 105, 3560, 8, 105, 1, 105, 3, 105, 3563, 8, 105, 1, 105, 3, 105, 3566, 8, 105, 1, 105, 3, 105, 3569, 8, 105, 1, 105, 3, 105, 3572, 8, 105, 3, 105, 3574, 8, 105, 1, 106, 3, 106, 3577, 8, 106, 1, 106, 1, 106, 3, 106, 3581, 8, 106, 1, 106, 3, 106, 3584, 8, 106, 1, 106, 3, 106, 3587, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3595, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3601, 8, 107, 1, 107, 5, 107, 3604, 8, 107, 10, 107, 12, 107, 3607, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3615, 8, 108, 1, 108, 5, 108, 3618, 8, 108, 10, 108, 12, 108, 3621, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3627, 8, 109, 1, 109, 3, 109, 3630, 8, 109, 1, 109, 3, 109, 3633, 8, 109, 1, 109, 1, 109, 3, 109, 3637, 8, 109, 1, 110, 1, 110, 3, 110, 3641, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3647, 8, 111, 1, 111, 1, 111, 3, 111, 3651, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3656, 8, 112, 10, 112, 12, 112, 3659, 9, 112, 1, 112, 3, 112, 3662, 8, 112, 1, 112, 3, 112, 3665, 8, 112, 1, 112, 3, 112, 3668, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3673, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3680, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3688, 8, 115, 10, 115, 12, 115, 3691, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3697, 8, 116, 10, 116, 12, 116, 3700, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 3708, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3716, 8, 119, 10, 119, 12, 119, 3719, 9, 119, 3, 119, 3721, 8, 119, 1, 119, 1, 119, 3, 119, 3725, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3731, 8, 119, 1, 120, 1, 120, 3, 120, 3735, 8, 120, 1, 120, 3, 120, 3738, 8, 120, 1, 120, 3, 120, 3741, 8, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3746, 8, 120, 1, 120, 3, 120, 3749, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3756, 8, 120, 1, 120, 1, 120, 3, 120, 3760, 8, 120, 1, 120, 3, 120, 3763, 8, 120, 1, 120, 1, 120, 3, 120, 3767, 8, 120, 1, 121, 1, 121, 3, 121, 3771, 8, 121, 1, 121, 3, 121, 3774, 8, 121, 1, 121, 3, 121, 3777, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3782, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3788, 8, 121, 5, 121, 3790, 8, 121, 10, 121, 12, 121, 3793, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3802, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3808, 8, 121, 5, 121, 3810, 8, 121, 10, 121, 12, 121, 3813, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3818, 8, 121, 1, 121, 1, 121, 3, 121, 3822, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3828, 8, 122, 1, 122, 3, 122, 3831, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3843, 8, 123, 1, 123, 1, 123, 3, 123, 3847, 8, 123, 1, 123, 1, 123, 3, 123, 3851, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3859, 8, 124, 1, 124, 1, 124, 3, 124, 3863, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3875, 8, 126, 10, 126, 12, 126, 3878, 9, 126, 1, 127, 1, 127, 3, 127, 3882, 8, 127, 1, 127, 3, 127, 3885, 8, 127, 1, 127, 1, 127, 3, 127, 3889, 8, 127, 1, 127, 3, 127, 3892, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3898, 8, 127, 10, 127, 12, 127, 3901, 9, 127, 1, 127, 1, 127, 3, 127, 3905, 8, 127, 1, 127, 3, 127, 3908, 8, 127, 1, 127, 3, 127, 3911, 8, 127, 1, 128, 1, 128, 3, 128, 3915, 8, 128, 1, 128, 3, 128, 3918, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3925, 8, 128, 10, 128, 12, 128, 3928, 9, 128, 1, 128, 1, 128, 3, 128, 3932, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3939, 8, 129, 10, 129, 12, 129, 3942, 9, 129, 1, 130, 1, 130, 3, 130, 3946, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3951, 8, 131, 10, 131, 12, 131, 3954, 9, 131, 1, 132, 1, 132, 5, 132, 3958, 8, 132, 10, 132, 12, 132, 3961, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3966, 8, 132, 10, 132, 12, 132, 3969, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3974, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3982, 8, 133, 1, 133, 3, 133, 3985, 8, 133, 1, 133, 3, 133, 3988, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3993, 8, 133, 10, 133, 12, 133, 3996, 9, 133, 3, 133, 3998, 8, 133, 1, 133, 3, 133, 4001, 8, 133, 1, 133, 1, 133, 3, 133, 4005, 8, 133, 1, 133, 1, 133, 3, 133, 4009, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4015, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4022, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4032, 8, 136, 1, 136, 1, 136, 3, 136, 4036, 8, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4045, 8, 137, 1, 138, 3, 138, 4048, 8, 138, 1, 138, 1, 138, 3, 138, 4052, 8, 138, 1, 138, 1, 138, 5, 138, 4056, 8, 138, 10, 138, 12, 138, 4059, 9, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4064, 8, 138, 10, 138, 12, 138, 4067, 9, 138, 1, 138, 1, 138, 3, 138, 4071, 8, 138, 1, 138, 1, 138, 3, 138, 4075, 8, 138, 1, 138, 1, 138, 5, 138, 4079, 8, 138, 10, 138, 12, 138, 4082, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4087, 8, 138, 1, 138, 3, 138, 4090, 8, 138, 3, 138, 4092, 8, 138, 1, 138, 1, 138, 3, 138, 4096, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4105, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4115, 8, 140, 1, 141, 1, 141, 5, 141, 4119, 8, 141, 10, 141, 12, 141, 4122, 9, 141, 1, 141, 1, 141, 3, 141, 4126, 8, 141, 1, 141, 1, 141, 3, 141, 4130, 8, 141, 1, 141, 3, 141, 4133, 8, 141, 1, 141, 3, 141, 4136, 8, 141, 1, 141, 3, 141, 4139, 8, 141, 1, 141, 3, 141, 4142, 8, 141, 1, 141, 3, 141, 4145, 8, 141, 1, 141, 3, 141, 4148, 8, 141, 1, 142, 1, 142, 3, 142, 4152, 8, 142, 1, 142, 1, 142, 3, 142, 4156, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4164, 8, 143, 1, 143, 1, 143, 3, 143, 4168, 8, 143, 1, 143, 3, 143, 4171, 8, 143, 3, 143, 4173, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4186, 8, 144, 1, 144, 3, 144, 4189, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 4194, 8, 145, 10, 145, 12, 145, 4197, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4206, 8, 146, 1, 146, 3, 146, 4209, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4214, 8, 146, 3, 146, 4216, 8, 146, 1, 146, 1, 146, 3, 146, 4220, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4228, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4234, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4243, 8, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4256, 8, 149, 1, 150, 1, 150, 3, 150, 4260, 8, 150, 1, 150, 1, 150, 5, 150, 4264, 8, 150, 10, 150, 12, 150, 4267, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 4272, 8, 151, 1, 151, 3, 151, 4275, 8, 151, 1, 151, 1, 151, 3, 151, 4279, 8, 151, 1, 151, 3, 151, 4282, 8, 151, 3, 151, 4284, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 4296, 8, 155, 1, 155, 1, 155, 3, 155, 4300, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 4306, 8, 156, 10, 156, 12, 156, 4309, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4320, 8, 156, 1, 156, 1, 156, 4, 156, 4324, 8, 156, 11, 156, 12, 156, 4325, 3, 156, 4328, 8, 156, 1, 156, 1, 156, 4, 156, 4332, 8, 156, 11, 156, 12, 156, 4333, 3, 156, 4336, 8, 156, 3, 156, 4338, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4344, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4352, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 4360, 8, 158, 1, 159, 1, 159, 3, 159, 4364, 8, 159, 1, 159, 1, 159, 3, 159, 4368, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 4375, 8, 160, 10, 160, 12, 160, 4378, 9, 160, 1, 160, 1, 160, 3, 160, 4382, 8, 160, 1, 161, 1, 161, 1, 161, 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, 5, 162, 4400, 8, 162, 10, 162, 12, 162, 4403, 9, 162, 1, 163, 1, 163, 3, 163, 4407, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4413, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4420, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 4425, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4432, 8, 166, 10, 166, 12, 166, 4435, 9, 166, 3, 166, 4437, 8, 166, 1, 167, 1, 167, 3, 167, 4441, 8, 167, 1, 168, 1, 168, 3, 168, 4445, 8, 168, 1, 168, 1, 168, 3, 168, 4449, 8, 168, 1, 168, 3, 168, 4452, 8, 168, 1, 168, 3, 168, 4455, 8, 168, 1, 168, 3, 168, 4458, 8, 168, 1, 169, 1, 169, 3, 169, 4462, 8, 169, 1, 169, 1, 169, 3, 169, 4466, 8, 169, 1, 169, 3, 169, 4469, 8, 169, 1, 169, 3, 169, 4472, 8, 169, 1, 169, 3, 169, 4475, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4482, 8, 171, 1, 171, 1, 171, 3, 171, 4486, 8, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4499, 8, 173, 10, 173, 12, 173, 4502, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4514, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4520, 8, 176, 10, 176, 12, 176, 4523, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4532, 8, 177, 1, 178, 1, 178, 3, 178, 4536, 8, 178, 1, 178, 3, 178, 4539, 8, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4545, 8, 179, 1, 179, 3, 179, 4548, 8, 179, 1, 179, 3, 179, 4551, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4560, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4569, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4577, 8, 182, 10, 182, 12, 182, 4580, 9, 182, 1, 182, 3, 182, 4583, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 4591, 8, 183, 10, 183, 12, 183, 4594, 9, 183, 1, 183, 3, 183, 4597, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 4606, 8, 184, 10, 184, 12, 184, 4609, 9, 184, 1, 184, 3, 184, 4612, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4621, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 4628, 8, 186, 10, 186, 12, 186, 4631, 9, 186, 3, 186, 4633, 8, 186, 1, 186, 1, 186, 3, 186, 4637, 8, 186, 1, 186, 5, 186, 4640, 8, 186, 10, 186, 12, 186, 4643, 9, 186, 1, 186, 3, 186, 4646, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4653, 8, 187, 10, 187, 12, 187, 4656, 9, 187, 3, 187, 4658, 8, 187, 1, 187, 3, 187, 4661, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4668, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4674, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4680, 8, 188, 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, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4704, 8, 190, 10, 190, 12, 190, 4707, 9, 190, 3, 190, 4709, 8, 190, 1, 190, 3, 190, 4712, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4731, 8, 194, 3, 194, 4733, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 4754, 8, 195, 10, 195, 12, 195, 4757, 9, 195, 3, 195, 4759, 8, 195, 1, 195, 3, 195, 4762, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4781, 8, 199, 3, 199, 4783, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4795, 8, 201, 10, 201, 12, 201, 4798, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4808, 8, 201, 10, 201, 12, 201, 4811, 9, 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, 5, 201, 4845, 8, 201, 10, 201, 12, 201, 4848, 9, 201, 1, 201, 1, 201, 3, 201, 4852, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 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, 3, 204, 4887, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4901, 8, 205, 1, 206, 1, 206, 1, 206, 5, 206, 4906, 8, 206, 10, 206, 12, 206, 4909, 9, 206, 1, 206, 3, 206, 4912, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4918, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4926, 8, 208, 3, 208, 4928, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4939, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4949, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4956, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4962, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 3, 216, 4970, 8, 216, 1, 217, 1, 217, 1, 217, 3, 217, 4975, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4981, 8, 217, 10, 217, 12, 217, 4984, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4989, 8, 217, 10, 217, 12, 217, 4992, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4997, 8, 217, 10, 217, 12, 217, 5000, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5005, 8, 217, 10, 217, 12, 217, 5008, 9, 217, 1, 217, 5, 217, 5011, 8, 217, 10, 217, 12, 217, 5014, 9, 217, 1, 217, 1, 217, 3, 217, 5018, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5023, 8, 218, 1, 218, 4, 218, 5026, 8, 218, 11, 218, 12, 218, 5027, 1, 218, 1, 218, 4, 218, 5032, 8, 218, 11, 218, 12, 218, 5033, 3, 218, 5036, 8, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 4, 219, 5045, 8, 219, 11, 219, 12, 219, 5046, 1, 219, 5, 219, 5050, 8, 219, 10, 219, 12, 219, 5053, 9, 219, 1, 219, 1, 219, 4, 219, 5057, 8, 219, 11, 219, 12, 219, 5058, 3, 219, 5061, 8, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 3, 222, 5075, 8, 222, 1, 222, 1, 222, 4, 222, 5079, 8, 222, 11, 222, 12, 222, 5080, 1, 222, 1, 222, 1, 222, 3, 222, 5086, 8, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5091, 8, 223, 1, 223, 1, 223, 4, 223, 5095, 8, 223, 11, 223, 12, 223, 5096, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5104, 8, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5112, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 5118, 8, 225, 11, 225, 12, 225, 5119, 1, 225, 1, 225, 1, 225, 3, 225, 5125, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5131, 8, 226, 1, 226, 3, 226, 5134, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5142, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5149, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5158, 8, 228, 1, 228, 3, 228, 5161, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5176, 8, 230, 10, 230, 12, 230, 5179, 9, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5186, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5194, 8, 231, 1, 232, 1, 232, 3, 232, 5198, 8, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5205, 8, 233, 1, 233, 1, 233, 4, 233, 5209, 8, 233, 11, 233, 12, 233, 5210, 1, 234, 1, 234, 1, 234, 1, 234, 4, 234, 5217, 8, 234, 11, 234, 12, 234, 5218, 1, 235, 1, 235, 1, 235, 3, 235, 5224, 8, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5229, 8, 235, 10, 235, 12, 235, 5232, 9, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5237, 8, 235, 10, 235, 12, 235, 5240, 9, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5246, 8, 235, 1, 235, 5, 235, 5249, 8, 235, 10, 235, 12, 235, 5252, 9, 235, 3, 235, 5254, 8, 235, 3, 235, 5256, 8, 235, 1, 235, 1, 235, 4, 235, 5260, 8, 235, 11, 235, 12, 235, 5261, 3, 235, 5264, 8, 235, 1, 235, 1, 235, 5, 235, 5268, 8, 235, 10, 235, 12, 235, 5271, 9, 235, 1, 235, 1, 235, 3, 235, 5275, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5282, 8, 235, 1, 236, 1, 236, 1, 236, 3, 236, 5287, 8, 236, 1, 236, 1, 236, 3, 236, 5291, 8, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5296, 8, 236, 5, 236, 5298, 8, 236, 10, 236, 12, 236, 5301, 9, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5306, 8, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5312, 8, 236, 1, 236, 5, 236, 5315, 8, 236, 10, 236, 12, 236, 5318, 9, 236, 3, 236, 5320, 8, 236, 3, 236, 5322, 8, 236, 1, 236, 1, 236, 4, 236, 5326, 8, 236, 11, 236, 12, 236, 5327, 3, 236, 5330, 8, 236, 1, 236, 1, 236, 5, 236, 5334, 8, 236, 10, 236, 12, 236, 5337, 9, 236, 1, 236, 1, 236, 3, 236, 5341, 8, 236, 1, 237, 1, 237, 1, 237, 3, 237, 5346, 8, 237, 1, 237, 1, 237, 1, 237, 5, 237, 5351, 8, 237, 10, 237, 12, 237, 5354, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5360, 8, 238, 10, 238, 12, 238, 5363, 9, 238, 1, 238, 1, 238, 3, 238, 5367, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5374, 8, 238, 10, 238, 12, 238, 5377, 9, 238, 1, 238, 3, 238, 5380, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5386, 8, 238, 1, 238, 5, 238, 5389, 8, 238, 10, 238, 12, 238, 5392, 9, 238, 3, 238, 5394, 8, 238, 3, 238, 5396, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5402, 8, 238, 10, 238, 12, 238, 5405, 9, 238, 3, 238, 5407, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5414, 8, 238, 3, 238, 5416, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5421, 8, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5426, 8, 238, 10, 238, 12, 238, 5429, 9, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5435, 8, 238, 10, 238, 12, 238, 5438, 9, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5443, 8, 238, 3, 238, 5445, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5452, 8, 239, 1, 239, 3, 239, 5455, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 5465, 8, 240, 10, 240, 12, 240, 5468, 9, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5473, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5481, 8, 241, 1, 241, 3, 241, 5484, 8, 241, 1, 241, 1, 241, 3, 241, 5488, 8, 241, 1, 241, 3, 241, 5491, 8, 241, 1, 241, 1, 241, 3, 241, 5495, 8, 241, 3, 241, 5497, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5508, 8, 242, 1, 242, 3, 242, 5511, 8, 242, 1, 242, 1, 242, 3, 242, 5515, 8, 242, 1, 242, 3, 242, 5518, 8, 242, 1, 242, 3, 242, 5521, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5528, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5538, 8, 244, 10, 244, 12, 244, 5541, 9, 244, 3, 244, 5543, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5550, 8, 245, 1, 245, 1, 245, 5, 245, 5554, 8, 245, 10, 245, 12, 245, 5557, 9, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 5564, 8, 246, 10, 246, 12, 246, 5567, 9, 246, 1, 247, 1, 247, 3, 247, 5571, 8, 247, 1, 247, 1, 247, 1, 247, 5, 247, 5576, 8, 247, 10, 247, 12, 247, 5579, 9, 247, 1, 247, 1, 247, 3, 247, 5583, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5589, 8, 247, 1, 247, 1, 247, 3, 247, 5593, 8, 247, 1, 247, 1, 247, 3, 247, 5597, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5605, 8, 247, 1, 247, 1, 247, 3, 247, 5609, 8, 247, 1, 247, 1, 247, 3, 247, 5613, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5619, 8, 247, 3, 247, 5621, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5633, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5638, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5644, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5650, 8, 250, 1, 250, 1, 250, 3, 250, 5654, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5659, 8, 250, 3, 250, 5661, 8, 250, 1, 251, 1, 251, 1, 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, 1, 252, 3, 252, 5685, 8, 252, 4, 252, 5687, 8, 252, 11, 252, 12, 252, 5688, 1, 252, 3, 252, 5692, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5701, 8, 253, 1, 253, 1, 253, 3, 253, 5705, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5714, 8, 253, 1, 253, 1, 253, 3, 253, 5718, 8, 253, 1, 253, 1, 253, 3, 253, 5722, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5728, 8, 253, 3, 253, 5730, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5739, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5749, 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, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5776, 8, 255, 1, 256, 1, 256, 3, 256, 5780, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5785, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5792, 8, 257, 1, 257, 3, 257, 5795, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5801, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5811, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5821, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5831, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5837, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5846, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5852, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5859, 8, 260, 3, 260, 5861, 8, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 3, 262, 5869, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5875, 8, 262, 1, 262, 1, 262, 3, 262, 5879, 8, 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, 3, 263, 5896, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5906, 8, 265, 1, 266, 1, 266, 3, 266, 5910, 8, 266, 1, 266, 1, 266, 3, 266, 5914, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5924, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5929, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 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, 6001, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6019, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 3, 269, 6027, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6033, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6045, 8, 269, 1, 269, 1, 269, 3, 269, 6049, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6060, 8, 269, 1, 269, 1, 269, 3, 269, 6064, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6073, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 6079, 8, 270, 10, 270, 12, 270, 6082, 9, 270, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6088, 8, 271, 1, 272, 1, 272, 3, 272, 6092, 8, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 6099, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6104, 8, 273, 1, 273, 3, 273, 6107, 8, 273, 1, 273, 3, 273, 6110, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6121, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6128, 8, 276, 10, 276, 12, 276, 6131, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6137, 8, 276, 10, 276, 12, 276, 6140, 9, 276, 3, 276, 6142, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6154, 8, 278, 10, 278, 12, 278, 6157, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6174, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6187, 8, 281, 1, 281, 3, 281, 6190, 8, 281, 1, 281, 1, 281, 3, 281, 6194, 8, 281, 1, 281, 3, 281, 6197, 8, 281, 3, 281, 6199, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6206, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6213, 8, 282, 5, 282, 6215, 8, 282, 10, 282, 12, 282, 6218, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6224, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6231, 8, 282, 1, 282, 3, 282, 6234, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 6248, 8, 282, 10, 282, 12, 282, 6251, 9, 282, 3, 282, 6253, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6263, 8, 283, 1, 283, 1, 283, 3, 283, 6267, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6273, 8, 283, 1, 283, 3, 283, 6276, 8, 283, 1, 283, 3, 283, 6279, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6284, 8, 283, 1, 283, 1, 283, 3, 283, 6288, 8, 283, 1, 283, 3, 283, 6291, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6298, 8, 283, 1, 283, 3, 283, 6301, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6307, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6343, 8, 283, 1, 283, 3, 283, 6346, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6358, 8, 283, 1, 283, 3, 283, 6361, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6377, 8, 283, 3, 283, 6379, 8, 283, 1, 283, 1, 283, 3, 283, 6383, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6390, 8, 283, 1, 283, 1, 283, 3, 283, 6394, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6401, 8, 283, 1, 283, 3, 283, 6404, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6411, 8, 283, 10, 283, 12, 283, 6414, 9, 283, 3, 283, 6416, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6421, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6427, 8, 283, 3, 283, 6429, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6435, 8, 283, 1, 283, 1, 283, 3, 283, 6439, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6445, 8, 284, 1, 284, 3, 284, 6448, 8, 284, 1, 284, 3, 284, 6451, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 6464, 8, 285, 1, 285, 3, 285, 6467, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6473, 8, 286, 1, 287, 3, 287, 6476, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6484, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6492, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 6498, 8, 288, 1, 288, 3, 288, 6501, 8, 288, 1, 288, 1, 288, 3, 288, 6505, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6519, 8, 289, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 6529, 8, 291, 10, 291, 12, 291, 6532, 9, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6539, 8, 291, 1, 291, 1, 291, 3, 291, 6543, 8, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 3, 292, 6550, 8, 292, 1, 292, 1, 292, 1, 292, 5, 292, 6555, 8, 292, 10, 292, 12, 292, 6558, 9, 292, 1, 293, 1, 293, 3, 293, 6562, 8, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 6573, 8, 294, 10, 294, 12, 294, 6576, 9, 294, 1, 295, 1, 295, 1, 295, 1, 295, 5, 295, 6582, 8, 295, 10, 295, 12, 295, 6585, 9, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6592, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6597, 8, 297, 1, 297, 3, 297, 6600, 8, 297, 1, 298, 1, 298, 1, 298, 3, 298, 6605, 8, 298, 1, 298, 3, 298, 6608, 8, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6620, 8, 301, 1, 302, 1, 302, 1, 302, 3, 302, 6625, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6638, 8, 302, 3, 302, 6640, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6645, 8, 302, 1, 302, 1, 302, 3, 302, 6649, 8, 302, 1, 302, 3, 302, 6652, 8, 302, 3, 302, 6654, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6661, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6668, 8, 304, 1, 304, 3, 304, 6671, 8, 304, 1, 304, 3, 304, 6674, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6680, 8, 304, 1, 304, 1, 304, 3, 304, 6684, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6690, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6698, 8, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6707, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6720, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6725, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6731, 8, 310, 10, 310, 12, 310, 6734, 9, 310, 3, 310, 6736, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6741, 8, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6746, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6752, 8, 311, 10, 311, 12, 311, 6755, 9, 311, 3, 311, 6757, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6765, 8, 312, 1, 313, 1, 313, 3, 313, 6769, 8, 313, 1, 313, 1, 313, 1, 313, 5, 313, 6774, 8, 313, 10, 313, 12, 313, 6777, 9, 313, 1, 314, 1, 314, 1, 314, 3, 314, 6782, 8, 314, 1, 314, 3, 314, 6785, 8, 314, 1, 315, 1, 315, 3, 315, 6789, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6800, 8, 315, 10, 315, 12, 315, 6803, 9, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6808, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6818, 8, 315, 10, 315, 12, 315, 6821, 9, 315, 3, 315, 6823, 8, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6832, 8, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6837, 8, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6856, 8, 325, 10, 325, 12, 325, 6859, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6872, 8, 330, 10, 330, 12, 330, 6875, 9, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6882, 8, 332, 10, 332, 12, 332, 6885, 9, 332, 1, 333, 1, 333, 3, 333, 6889, 8, 333, 1, 334, 1, 334, 1, 334, 3, 334, 6894, 8, 334, 3, 334, 6896, 8, 334, 1, 334, 3, 334, 6899, 8, 334, 1, 334, 1, 334, 3, 334, 6903, 8, 334, 3, 334, 6905, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6910, 8, 335, 10, 335, 12, 335, 6913, 9, 335, 1, 336, 1, 336, 1, 336, 3, 336, 6918, 8, 336, 3, 336, 6920, 8, 336, 1, 336, 3, 336, 6923, 8, 336, 1, 336, 1, 336, 3, 336, 6927, 8, 336, 1, 336, 3, 336, 6930, 8, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 340, 5, 340, 6941, 8, 340, 10, 340, 12, 340, 6944, 9, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6953, 8, 342, 1, 342, 3, 342, 6956, 8, 342, 1, 342, 3, 342, 6959, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 6972, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 3, 347, 6978, 8, 347, 1, 347, 3, 347, 6981, 8, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 3, 349, 6989, 8, 349, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 3, 351, 6996, 8, 351, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 4, 353, 7014, 8, 353, 11, 353, 12, 353, 7015, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7023, 8, 354, 3, 354, 7025, 8, 354, 1, 355, 1, 355, 1, 355, 4, 355, 7030, 8, 355, 11, 355, 12, 355, 7031, 3, 355, 7034, 8, 355, 1, 356, 1, 356, 3, 356, 7038, 8, 356, 1, 357, 1, 357, 1, 357, 5, 357, 7043, 8, 357, 10, 357, 12, 357, 7046, 9, 357, 1, 358, 1, 358, 1, 358, 3, 358, 7051, 8, 358, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 1, 359, 3, 359, 7062, 8, 359, 1, 360, 1, 360, 1, 360, 1, 360, 3, 360, 7068, 8, 360, 1, 361, 1, 361, 1, 362, 1, 362, 3, 362, 7074, 8, 362, 1, 363, 3, 363, 7077, 8, 363, 1, 363, 1, 363, 3, 363, 7081, 8, 363, 1, 363, 4, 363, 7084, 8, 363, 11, 363, 12, 363, 7085, 1, 363, 3, 363, 7089, 8, 363, 1, 363, 1, 363, 3, 363, 7093, 8, 363, 1, 363, 1, 363, 3, 363, 7097, 8, 363, 3, 363, 7099, 8, 363, 1, 364, 1, 364, 1, 365, 3, 365, 7104, 8, 365, 1, 365, 1, 365, 1, 366, 3, 366, 7109, 8, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7122, 8, 367, 1, 367, 3, 367, 7125, 8, 367, 1, 368, 1, 368, 3, 368, 7129, 8, 368, 1, 368, 3, 368, 7132, 8, 368, 1, 368, 3, 368, 7135, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7140, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7145, 8, 368, 1, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7151, 8, 368, 1, 368, 3, 368, 7154, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7159, 8, 368, 1, 368, 3, 368, 7162, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7167, 8, 368, 1, 368, 3, 368, 7170, 8, 368, 1, 368, 1, 368, 3, 368, 7174, 8, 368, 1, 368, 5, 368, 7177, 8, 368, 10, 368, 12, 368, 7180, 9, 368, 1, 368, 1, 368, 3, 368, 7184, 8, 368, 1, 368, 5, 368, 7187, 8, 368, 10, 368, 12, 368, 7190, 9, 368, 1, 368, 1, 368, 3, 368, 7194, 8, 368, 1, 368, 3, 368, 7197, 8, 368, 1, 368, 5, 368, 7200, 8, 368, 10, 368, 12, 368, 7203, 9, 368, 1, 368, 1, 368, 3, 368, 7207, 8, 368, 1, 368, 5, 368, 7210, 8, 368, 10, 368, 12, 368, 7213, 9, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7218, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7223, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7228, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7233, 8, 368, 1, 368, 1, 368, 3, 368, 7237, 8, 368, 1, 368, 3, 368, 7240, 8, 368, 1, 368, 1, 368, 1, 368, 3, 368, 7245, 8, 368, 1, 368, 1, 368, 3, 368, 7249, 8, 368, 1, 368, 1, 368, 3, 368, 7253, 8, 368, 1, 369, 1, 369, 1, 369, 1, 369, 5, 369, 7259, 8, 369, 10, 369, 12, 369, 7262, 9, 369, 1, 369, 1, 369, 1, 370, 1, 370, 3, 370, 7268, 8, 370, 1, 370, 1, 370, 3, 370, 7272, 8, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7277, 8, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7282, 8, 370, 1, 370, 1, 370, 3, 370, 7286, 8, 370, 3, 370, 7288, 8, 370, 1, 370, 3, 370, 7291, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7307, 8, 373, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 5, 374, 7315, 8, 374, 10, 374, 12, 374, 7318, 9, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 5, 375, 7325, 8, 375, 10, 375, 12, 375, 7328, 9, 375, 1, 376, 1, 376, 1, 376, 1, 376, 5, 376, 7334, 8, 376, 10, 376, 12, 376, 7337, 9, 376, 1, 377, 1, 377, 1, 377, 1, 377, 5, 377, 7343, 8, 377, 10, 377, 12, 377, 7346, 9, 377, 1, 377, 1, 377, 1, 378, 1, 378, 3, 378, 7352, 8, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7357, 8, 379, 10, 379, 12, 379, 7360, 9, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7365, 8, 380, 10, 380, 12, 380, 7368, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7373, 8, 381, 10, 381, 12, 381, 7376, 9, 381, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7387, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7394, 8, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 1, 382, 3, 382, 7404, 8, 382, 1, 383, 1, 383, 1, 383, 3, 383, 7409, 8, 383, 1, 383, 3, 383, 7412, 8, 383, 1, 383, 1, 383, 1, 383, 3, 383, 7417, 8, 383, 1, 383, 3, 383, 7420, 8, 383, 1, 384, 1, 384, 1, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7442, 8, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7451, 8, 387, 1, 387, 3, 387, 7454, 8, 387, 1, 388, 1, 388, 1, 388, 3, 388, 7459, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 4, 388, 7490, 8, 388, 11, 388, 12, 388, 7491, 1, 388, 1, 388, 3, 388, 7496, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 4, 388, 7503, 8, 388, 11, 388, 12, 388, 7504, 1, 388, 1, 388, 3, 388, 7509, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7518, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7526, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7531, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7539, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7544, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7549, 8, 388, 3, 388, 7551, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7560, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7565, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7573, 8, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7578, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7586, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7594, 8, 388, 1, 388, 3, 388, 7597, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7607, 8, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 1, 388, 3, 388, 7625, 8, 388, 1, 388, 3, 388, 7628, 8, 388, 1, 388, 3, 388, 7631, 8, 388, 1, 388, 1, 388, 3, 388, 7635, 8, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 5, 390, 7646, 8, 390, 10, 390, 12, 390, 7649, 9, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7656, 8, 390, 1, 391, 1, 391, 3, 391, 7660, 8, 391, 1, 392, 1, 392, 1, 392, 3, 392, 7665, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7670, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7676, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7681, 8, 392, 1, 392, 1, 392, 3, 392, 7685, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7690, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7695, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7700, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 5, 392, 7708, 8, 392, 10, 392, 12, 392, 7711, 9, 392, 3, 392, 7713, 8, 392, 1, 392, 1, 392, 3, 392, 7717, 8, 392, 1, 392, 1, 392, 3, 392, 7721, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7728, 8, 393, 1, 393, 1, 393, 3, 393, 7732, 8, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7761, 8, 393, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7769, 8, 394, 1, 395, 3, 395, 7772, 8, 395, 1, 395, 3, 395, 7775, 8, 395, 1, 395, 3, 395, 7778, 8, 395, 1, 395, 3, 395, 7781, 8, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 3, 399, 7792, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7806, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 1, 402, 5, 402, 7813, 8, 402, 10, 402, 12, 402, 7816, 9, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7842, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 5, 405, 7852, 8, 405, 10, 405, 12, 405, 7855, 9, 405, 1, 406, 1, 406, 1, 406, 3, 406, 7860, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7868, 8, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7873, 8, 407, 1, 407, 1, 407, 1, 407, 1, 407, 5, 407, 7879, 8, 407, 10, 407, 12, 407, 7882, 9, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7889, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7902, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7908, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7914, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7929, 8, 408, 1, 408, 1, 408, 3, 408, 7933, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 3, 408, 7939, 8, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 5, 408, 7948, 8, 408, 10, 408, 12, 408, 7951, 9, 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, 1, 409, 1, 409, 1, 409, 5, 409, 7969, 8, 409, 10, 409, 12, 409, 7972, 9, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 4, 409, 7981, 8, 409, 11, 409, 12, 409, 7982, 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, 1, 409, 1, 409, 1, 409, 3, 409, 8001, 8, 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, 1, 409, 1, 409, 1, 409, 5, 409, 8018, 8, 409, 10, 409, 12, 409, 8021, 9, 409, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 8033, 8, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 8042, 8, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 8051, 8, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 8060, 8, 414, 1, 415, 1, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 8069, 8, 416, 1, 417, 1, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 0, 5, 214, 216, 814, 816, 818, 424, 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, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 75, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9446, 0, 851, 1, 0, 0, 0, 2, 861, 1, 0, 0, 0, 4, 870, 1, 0, 0, 0, 6, 872, 1, 0, 0, 0, 8, 914, 1, 0, 0, 0, 10, 933, 1, 0, 0, 0, 12, 944, 1, 0, 0, 0, 14, 960, 1, 0, 0, 0, 16, 965, 1, 0, 0, 0, 18, 977, 1, 0, 0, 0, 20, 1012, 1, 0, 0, 0, 22, 1022, 1, 0, 0, 0, 24, 1024, 1, 0, 0, 0, 26, 1036, 1, 0, 0, 0, 28, 1066, 1, 0, 0, 0, 30, 1102, 1, 0, 0, 0, 32, 1153, 1, 0, 0, 0, 34, 1182, 1, 0, 0, 0, 36, 1218, 1, 0, 0, 0, 38, 1232, 1, 0, 0, 0, 40, 1239, 1, 0, 0, 0, 42, 1336, 1, 0, 0, 0, 44, 1338, 1, 0, 0, 0, 46, 1375, 1, 0, 0, 0, 48, 1439, 1, 0, 0, 0, 50, 1464, 1, 0, 0, 0, 52, 1470, 1, 0, 0, 0, 54, 1492, 1, 0, 0, 0, 56, 1579, 1, 0, 0, 0, 58, 1586, 1, 0, 0, 0, 60, 1588, 1, 0, 0, 0, 62, 1593, 1, 0, 0, 0, 64, 1633, 1, 0, 0, 0, 66, 1639, 1, 0, 0, 0, 68, 1641, 1, 0, 0, 0, 70, 1662, 1, 0, 0, 0, 72, 1669, 1, 0, 0, 0, 74, 1671, 1, 0, 0, 0, 76, 1696, 1, 0, 0, 0, 78, 1699, 1, 0, 0, 0, 80, 1704, 1, 0, 0, 0, 82, 1730, 1, 0, 0, 0, 84, 1746, 1, 0, 0, 0, 86, 1748, 1, 0, 0, 0, 88, 1842, 1, 0, 0, 0, 90, 1845, 1, 0, 0, 0, 92, 1857, 1, 0, 0, 0, 94, 1861, 1, 0, 0, 0, 96, 1911, 1, 0, 0, 0, 98, 1913, 1, 0, 0, 0, 100, 1941, 1, 0, 0, 0, 102, 1951, 1, 0, 0, 0, 104, 2138, 1, 0, 0, 0, 106, 2140, 1, 0, 0, 0, 108, 2142, 1, 0, 0, 0, 110, 2145, 1, 0, 0, 0, 112, 2220, 1, 0, 0, 0, 114, 2243, 1, 0, 0, 0, 116, 2391, 1, 0, 0, 0, 118, 2396, 1, 0, 0, 0, 120, 2398, 1, 0, 0, 0, 122, 2408, 1, 0, 0, 0, 124, 2464, 1, 0, 0, 0, 126, 2484, 1, 0, 0, 0, 128, 2486, 1, 0, 0, 0, 130, 2521, 1, 0, 0, 0, 132, 2530, 1, 0, 0, 0, 134, 2537, 1, 0, 0, 0, 136, 2560, 1, 0, 0, 0, 138, 2569, 1, 0, 0, 0, 140, 2584, 1, 0, 0, 0, 142, 2606, 1, 0, 0, 0, 144, 2662, 1, 0, 0, 0, 146, 2958, 1, 0, 0, 0, 148, 3058, 1, 0, 0, 0, 150, 3060, 1, 0, 0, 0, 152, 3067, 1, 0, 0, 0, 154, 3074, 1, 0, 0, 0, 156, 3097, 1, 0, 0, 0, 158, 3107, 1, 0, 0, 0, 160, 3114, 1, 0, 0, 0, 162, 3121, 1, 0, 0, 0, 164, 3128, 1, 0, 0, 0, 166, 3137, 1, 0, 0, 0, 168, 3149, 1, 0, 0, 0, 170, 3162, 1, 0, 0, 0, 172, 3169, 1, 0, 0, 0, 174, 3185, 1, 0, 0, 0, 176, 3212, 1, 0, 0, 0, 178, 3214, 1, 0, 0, 0, 180, 3224, 1, 0, 0, 0, 182, 3228, 1, 0, 0, 0, 184, 3234, 1, 0, 0, 0, 186, 3246, 1, 0, 0, 0, 188, 3248, 1, 0, 0, 0, 190, 3255, 1, 0, 0, 0, 192, 3257, 1, 0, 0, 0, 194, 3306, 1, 0, 0, 0, 196, 3315, 1, 0, 0, 0, 198, 3317, 1, 0, 0, 0, 200, 3328, 1, 0, 0, 0, 202, 3334, 1, 0, 0, 0, 204, 3408, 1, 0, 0, 0, 206, 3471, 1, 0, 0, 0, 208, 3489, 1, 0, 0, 0, 210, 3573, 1, 0, 0, 0, 212, 3576, 1, 0, 0, 0, 214, 3588, 1, 0, 0, 0, 216, 3608, 1, 0, 0, 0, 218, 3636, 1, 0, 0, 0, 220, 3640, 1, 0, 0, 0, 222, 3642, 1, 0, 0, 0, 224, 3652, 1, 0, 0, 0, 226, 3672, 1, 0, 0, 0, 228, 3679, 1, 0, 0, 0, 230, 3681, 1, 0, 0, 0, 232, 3692, 1, 0, 0, 0, 234, 3701, 1, 0, 0, 0, 236, 3707, 1, 0, 0, 0, 238, 3730, 1, 0, 0, 0, 240, 3732, 1, 0, 0, 0, 242, 3768, 1, 0, 0, 0, 244, 3823, 1, 0, 0, 0, 246, 3832, 1, 0, 0, 0, 248, 3852, 1, 0, 0, 0, 250, 3864, 1, 0, 0, 0, 252, 3868, 1, 0, 0, 0, 254, 3879, 1, 0, 0, 0, 256, 3912, 1, 0, 0, 0, 258, 3933, 1, 0, 0, 0, 260, 3943, 1, 0, 0, 0, 262, 3947, 1, 0, 0, 0, 264, 3973, 1, 0, 0, 0, 266, 4014, 1, 0, 0, 0, 268, 4021, 1, 0, 0, 0, 270, 4023, 1, 0, 0, 0, 272, 4027, 1, 0, 0, 0, 274, 4044, 1, 0, 0, 0, 276, 4095, 1, 0, 0, 0, 278, 4104, 1, 0, 0, 0, 280, 4114, 1, 0, 0, 0, 282, 4116, 1, 0, 0, 0, 284, 4149, 1, 0, 0, 0, 286, 4157, 1, 0, 0, 0, 288, 4174, 1, 0, 0, 0, 290, 4190, 1, 0, 0, 0, 292, 4227, 1, 0, 0, 0, 294, 4233, 1, 0, 0, 0, 296, 4242, 1, 0, 0, 0, 298, 4255, 1, 0, 0, 0, 300, 4259, 1, 0, 0, 0, 302, 4283, 1, 0, 0, 0, 304, 4285, 1, 0, 0, 0, 306, 4289, 1, 0, 0, 0, 308, 4291, 1, 0, 0, 0, 310, 4299, 1, 0, 0, 0, 312, 4337, 1, 0, 0, 0, 314, 4351, 1, 0, 0, 0, 316, 4359, 1, 0, 0, 0, 318, 4363, 1, 0, 0, 0, 320, 4369, 1, 0, 0, 0, 322, 4383, 1, 0, 0, 0, 324, 4386, 1, 0, 0, 0, 326, 4404, 1, 0, 0, 0, 328, 4408, 1, 0, 0, 0, 330, 4424, 1, 0, 0, 0, 332, 4426, 1, 0, 0, 0, 334, 4438, 1, 0, 0, 0, 336, 4442, 1, 0, 0, 0, 338, 4459, 1, 0, 0, 0, 340, 4476, 1, 0, 0, 0, 342, 4479, 1, 0, 0, 0, 344, 4489, 1, 0, 0, 0, 346, 4493, 1, 0, 0, 0, 348, 4503, 1, 0, 0, 0, 350, 4506, 1, 0, 0, 0, 352, 4511, 1, 0, 0, 0, 354, 4531, 1, 0, 0, 0, 356, 4533, 1, 0, 0, 0, 358, 4550, 1, 0, 0, 0, 360, 4559, 1, 0, 0, 0, 362, 4568, 1, 0, 0, 0, 364, 4570, 1, 0, 0, 0, 366, 4584, 1, 0, 0, 0, 368, 4598, 1, 0, 0, 0, 370, 4613, 1, 0, 0, 0, 372, 4622, 1, 0, 0, 0, 374, 4647, 1, 0, 0, 0, 376, 4662, 1, 0, 0, 0, 378, 4681, 1, 0, 0, 0, 380, 4711, 1, 0, 0, 0, 382, 4713, 1, 0, 0, 0, 384, 4715, 1, 0, 0, 0, 386, 4717, 1, 0, 0, 0, 388, 4732, 1, 0, 0, 0, 390, 4761, 1, 0, 0, 0, 392, 4763, 1, 0, 0, 0, 394, 4765, 1, 0, 0, 0, 396, 4767, 1, 0, 0, 0, 398, 4782, 1, 0, 0, 0, 400, 4784, 1, 0, 0, 0, 402, 4851, 1, 0, 0, 0, 404, 4853, 1, 0, 0, 0, 406, 4859, 1, 0, 0, 0, 408, 4886, 1, 0, 0, 0, 410, 4900, 1, 0, 0, 0, 412, 4911, 1, 0, 0, 0, 414, 4913, 1, 0, 0, 0, 416, 4919, 1, 0, 0, 0, 418, 4929, 1, 0, 0, 0, 420, 4933, 1, 0, 0, 0, 422, 4940, 1, 0, 0, 0, 424, 4944, 1, 0, 0, 0, 426, 4950, 1, 0, 0, 0, 428, 4957, 1, 0, 0, 0, 430, 4963, 1, 0, 0, 0, 432, 4969, 1, 0, 0, 0, 434, 4974, 1, 0, 0, 0, 436, 5019, 1, 0, 0, 0, 438, 5040, 1, 0, 0, 0, 440, 5065, 1, 0, 0, 0, 442, 5068, 1, 0, 0, 0, 444, 5074, 1, 0, 0, 0, 446, 5090, 1, 0, 0, 0, 448, 5105, 1, 0, 0, 0, 450, 5111, 1, 0, 0, 0, 452, 5141, 1, 0, 0, 0, 454, 5143, 1, 0, 0, 0, 456, 5150, 1, 0, 0, 0, 458, 5162, 1, 0, 0, 0, 460, 5168, 1, 0, 0, 0, 462, 5193, 1, 0, 0, 0, 464, 5197, 1, 0, 0, 0, 466, 5201, 1, 0, 0, 0, 468, 5212, 1, 0, 0, 0, 470, 5220, 1, 0, 0, 0, 472, 5283, 1, 0, 0, 0, 474, 5342, 1, 0, 0, 0, 476, 5444, 1, 0, 0, 0, 478, 5454, 1, 0, 0, 0, 480, 5456, 1, 0, 0, 0, 482, 5474, 1, 0, 0, 0, 484, 5498, 1, 0, 0, 0, 486, 5522, 1, 0, 0, 0, 488, 5529, 1, 0, 0, 0, 490, 5549, 1, 0, 0, 0, 492, 5558, 1, 0, 0, 0, 494, 5620, 1, 0, 0, 0, 496, 5622, 1, 0, 0, 0, 498, 5626, 1, 0, 0, 0, 500, 5660, 1, 0, 0, 0, 502, 5662, 1, 0, 0, 0, 504, 5665, 1, 0, 0, 0, 506, 5729, 1, 0, 0, 0, 508, 5748, 1, 0, 0, 0, 510, 5775, 1, 0, 0, 0, 512, 5779, 1, 0, 0, 0, 514, 5800, 1, 0, 0, 0, 516, 5810, 1, 0, 0, 0, 518, 5820, 1, 0, 0, 0, 520, 5860, 1, 0, 0, 0, 522, 5862, 1, 0, 0, 0, 524, 5865, 1, 0, 0, 0, 526, 5895, 1, 0, 0, 0, 528, 5897, 1, 0, 0, 0, 530, 5900, 1, 0, 0, 0, 532, 6000, 1, 0, 0, 0, 534, 6018, 1, 0, 0, 0, 536, 6020, 1, 0, 0, 0, 538, 6072, 1, 0, 0, 0, 540, 6074, 1, 0, 0, 0, 542, 6083, 1, 0, 0, 0, 544, 6089, 1, 0, 0, 0, 546, 6096, 1, 0, 0, 0, 548, 6111, 1, 0, 0, 0, 550, 6120, 1, 0, 0, 0, 552, 6122, 1, 0, 0, 0, 554, 6143, 1, 0, 0, 0, 556, 6148, 1, 0, 0, 0, 558, 6158, 1, 0, 0, 0, 560, 6164, 1, 0, 0, 0, 562, 6198, 1, 0, 0, 0, 564, 6252, 1, 0, 0, 0, 566, 6438, 1, 0, 0, 0, 568, 6450, 1, 0, 0, 0, 570, 6466, 1, 0, 0, 0, 572, 6472, 1, 0, 0, 0, 574, 6491, 1, 0, 0, 0, 576, 6504, 1, 0, 0, 0, 578, 6518, 1, 0, 0, 0, 580, 6520, 1, 0, 0, 0, 582, 6523, 1, 0, 0, 0, 584, 6547, 1, 0, 0, 0, 586, 6559, 1, 0, 0, 0, 588, 6565, 1, 0, 0, 0, 590, 6577, 1, 0, 0, 0, 592, 6591, 1, 0, 0, 0, 594, 6593, 1, 0, 0, 0, 596, 6601, 1, 0, 0, 0, 598, 6609, 1, 0, 0, 0, 600, 6611, 1, 0, 0, 0, 602, 6613, 1, 0, 0, 0, 604, 6653, 1, 0, 0, 0, 606, 6660, 1, 0, 0, 0, 608, 6662, 1, 0, 0, 0, 610, 6685, 1, 0, 0, 0, 612, 6691, 1, 0, 0, 0, 614, 6701, 1, 0, 0, 0, 616, 6710, 1, 0, 0, 0, 618, 6713, 1, 0, 0, 0, 620, 6716, 1, 0, 0, 0, 622, 6737, 1, 0, 0, 0, 624, 6758, 1, 0, 0, 0, 626, 6766, 1, 0, 0, 0, 628, 6778, 1, 0, 0, 0, 630, 6786, 1, 0, 0, 0, 632, 6824, 1, 0, 0, 0, 634, 6836, 1, 0, 0, 0, 636, 6838, 1, 0, 0, 0, 638, 6840, 1, 0, 0, 0, 640, 6842, 1, 0, 0, 0, 642, 6844, 1, 0, 0, 0, 644, 6846, 1, 0, 0, 0, 646, 6848, 1, 0, 0, 0, 648, 6850, 1, 0, 0, 0, 650, 6852, 1, 0, 0, 0, 652, 6860, 1, 0, 0, 0, 654, 6862, 1, 0, 0, 0, 656, 6864, 1, 0, 0, 0, 658, 6866, 1, 0, 0, 0, 660, 6868, 1, 0, 0, 0, 662, 6876, 1, 0, 0, 0, 664, 6878, 1, 0, 0, 0, 666, 6888, 1, 0, 0, 0, 668, 6904, 1, 0, 0, 0, 670, 6906, 1, 0, 0, 0, 672, 6929, 1, 0, 0, 0, 674, 6931, 1, 0, 0, 0, 676, 6933, 1, 0, 0, 0, 678, 6935, 1, 0, 0, 0, 680, 6937, 1, 0, 0, 0, 682, 6945, 1, 0, 0, 0, 684, 6955, 1, 0, 0, 0, 686, 6960, 1, 0, 0, 0, 688, 6964, 1, 0, 0, 0, 690, 6971, 1, 0, 0, 0, 692, 6973, 1, 0, 0, 0, 694, 6980, 1, 0, 0, 0, 696, 6982, 1, 0, 0, 0, 698, 6988, 1, 0, 0, 0, 700, 6990, 1, 0, 0, 0, 702, 6995, 1, 0, 0, 0, 704, 6997, 1, 0, 0, 0, 706, 6999, 1, 0, 0, 0, 708, 7017, 1, 0, 0, 0, 710, 7033, 1, 0, 0, 0, 712, 7035, 1, 0, 0, 0, 714, 7039, 1, 0, 0, 0, 716, 7050, 1, 0, 0, 0, 718, 7061, 1, 0, 0, 0, 720, 7067, 1, 0, 0, 0, 722, 7069, 1, 0, 0, 0, 724, 7073, 1, 0, 0, 0, 726, 7098, 1, 0, 0, 0, 728, 7100, 1, 0, 0, 0, 730, 7103, 1, 0, 0, 0, 732, 7108, 1, 0, 0, 0, 734, 7124, 1, 0, 0, 0, 736, 7252, 1, 0, 0, 0, 738, 7254, 1, 0, 0, 0, 740, 7287, 1, 0, 0, 0, 742, 7292, 1, 0, 0, 0, 744, 7296, 1, 0, 0, 0, 746, 7302, 1, 0, 0, 0, 748, 7310, 1, 0, 0, 0, 750, 7321, 1, 0, 0, 0, 752, 7329, 1, 0, 0, 0, 754, 7338, 1, 0, 0, 0, 756, 7351, 1, 0, 0, 0, 758, 7353, 1, 0, 0, 0, 760, 7361, 1, 0, 0, 0, 762, 7369, 1, 0, 0, 0, 764, 7403, 1, 0, 0, 0, 766, 7419, 1, 0, 0, 0, 768, 7421, 1, 0, 0, 0, 770, 7424, 1, 0, 0, 0, 772, 7428, 1, 0, 0, 0, 774, 7453, 1, 0, 0, 0, 776, 7634, 1, 0, 0, 0, 778, 7636, 1, 0, 0, 0, 780, 7655, 1, 0, 0, 0, 782, 7657, 1, 0, 0, 0, 784, 7720, 1, 0, 0, 0, 786, 7760, 1, 0, 0, 0, 788, 7762, 1, 0, 0, 0, 790, 7771, 1, 0, 0, 0, 792, 7782, 1, 0, 0, 0, 794, 7784, 1, 0, 0, 0, 796, 7787, 1, 0, 0, 0, 798, 7791, 1, 0, 0, 0, 800, 7793, 1, 0, 0, 0, 802, 7805, 1, 0, 0, 0, 804, 7807, 1, 0, 0, 0, 806, 7841, 1, 0, 0, 0, 808, 7843, 1, 0, 0, 0, 810, 7848, 1, 0, 0, 0, 812, 7859, 1, 0, 0, 0, 814, 7872, 1, 0, 0, 0, 816, 7883, 1, 0, 0, 0, 818, 8000, 1, 0, 0, 0, 820, 8022, 1, 0, 0, 0, 822, 8032, 1, 0, 0, 0, 824, 8041, 1, 0, 0, 0, 826, 8050, 1, 0, 0, 0, 828, 8059, 1, 0, 0, 0, 830, 8061, 1, 0, 0, 0, 832, 8068, 1, 0, 0, 0, 834, 8070, 1, 0, 0, 0, 836, 8072, 1, 0, 0, 0, 838, 8074, 1, 0, 0, 0, 840, 8076, 1, 0, 0, 0, 842, 8078, 1, 0, 0, 0, 844, 8080, 1, 0, 0, 0, 846, 8082, 1, 0, 0, 0, 848, 850, 3, 2, 1, 0, 849, 848, 1, 0, 0, 0, 850, 853, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 854, 855, 5, 0, 0, 1, 855, 1, 1, 0, 0, 0, 856, 858, 3, 4, 2, 0, 857, 859, 5, 869, 0, 0, 858, 857, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 862, 3, 6, 3, 0, 861, 856, 1, 0, 0, 0, 861, 860, 1, 0, 0, 0, 862, 3, 1, 0, 0, 0, 863, 871, 3, 8, 4, 0, 864, 871, 3, 10, 5, 0, 865, 871, 3, 12, 6, 0, 866, 871, 3, 14, 7, 0, 867, 871, 3, 16, 8, 0, 868, 871, 3, 20, 10, 0, 869, 871, 3, 22, 11, 0, 870, 863, 1, 0, 0, 0, 870, 864, 1, 0, 0, 0, 870, 865, 1, 0, 0, 0, 870, 866, 1, 0, 0, 0, 870, 867, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 870, 869, 1, 0, 0, 0, 871, 5, 1, 0, 0, 0, 872, 873, 5, 869, 0, 0, 873, 7, 1, 0, 0, 0, 874, 915, 3, 24, 12, 0, 875, 915, 3, 26, 13, 0, 876, 915, 3, 28, 14, 0, 877, 915, 3, 30, 15, 0, 878, 915, 3, 32, 16, 0, 879, 915, 3, 34, 17, 0, 880, 915, 3, 36, 18, 0, 881, 915, 3, 40, 20, 0, 882, 915, 3, 42, 21, 0, 883, 915, 3, 44, 22, 0, 884, 915, 3, 46, 23, 0, 885, 915, 3, 48, 24, 0, 886, 915, 3, 54, 27, 0, 887, 915, 3, 38, 19, 0, 888, 915, 3, 126, 63, 0, 889, 915, 3, 128, 64, 0, 890, 915, 3, 130, 65, 0, 891, 915, 3, 132, 66, 0, 892, 915, 3, 134, 67, 0, 893, 915, 3, 136, 68, 0, 894, 915, 3, 138, 69, 0, 895, 915, 3, 140, 70, 0, 896, 915, 3, 142, 71, 0, 897, 915, 3, 144, 72, 0, 898, 915, 3, 150, 75, 0, 899, 915, 3, 152, 76, 0, 900, 915, 3, 154, 77, 0, 901, 915, 3, 156, 78, 0, 902, 915, 3, 158, 79, 0, 903, 915, 3, 160, 80, 0, 904, 915, 3, 162, 81, 0, 905, 915, 3, 164, 82, 0, 906, 915, 3, 166, 83, 0, 907, 915, 3, 168, 84, 0, 908, 915, 3, 170, 85, 0, 909, 915, 3, 172, 86, 0, 910, 915, 3, 174, 87, 0, 911, 915, 3, 176, 88, 0, 912, 915, 3, 178, 89, 0, 913, 915, 3, 182, 91, 0, 914, 874, 1, 0, 0, 0, 914, 875, 1, 0, 0, 0, 914, 876, 1, 0, 0, 0, 914, 877, 1, 0, 0, 0, 914, 878, 1, 0, 0, 0, 914, 879, 1, 0, 0, 0, 914, 880, 1, 0, 0, 0, 914, 881, 1, 0, 0, 0, 914, 882, 1, 0, 0, 0, 914, 883, 1, 0, 0, 0, 914, 884, 1, 0, 0, 0, 914, 885, 1, 0, 0, 0, 914, 886, 1, 0, 0, 0, 914, 887, 1, 0, 0, 0, 914, 888, 1, 0, 0, 0, 914, 889, 1, 0, 0, 0, 914, 890, 1, 0, 0, 0, 914, 891, 1, 0, 0, 0, 914, 892, 1, 0, 0, 0, 914, 893, 1, 0, 0, 0, 914, 894, 1, 0, 0, 0, 914, 895, 1, 0, 0, 0, 914, 896, 1, 0, 0, 0, 914, 897, 1, 0, 0, 0, 914, 898, 1, 0, 0, 0, 914, 899, 1, 0, 0, 0, 914, 900, 1, 0, 0, 0, 914, 901, 1, 0, 0, 0, 914, 902, 1, 0, 0, 0, 914, 903, 1, 0, 0, 0, 914, 904, 1, 0, 0, 0, 914, 905, 1, 0, 0, 0, 914, 906, 1, 0, 0, 0, 914, 907, 1, 0, 0, 0, 914, 908, 1, 0, 0, 0, 914, 909, 1, 0, 0, 0, 914, 910, 1, 0, 0, 0, 914, 911, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 914, 913, 1, 0, 0, 0, 915, 9, 1, 0, 0, 0, 916, 934, 3, 210, 105, 0, 917, 934, 3, 212, 106, 0, 918, 934, 3, 192, 96, 0, 919, 934, 3, 220, 110, 0, 920, 934, 3, 186, 93, 0, 921, 934, 3, 208, 104, 0, 922, 934, 3, 184, 92, 0, 923, 934, 3, 198, 99, 0, 924, 934, 3, 202, 101, 0, 925, 934, 3, 204, 102, 0, 926, 934, 3, 206, 103, 0, 927, 934, 3, 188, 94, 0, 928, 934, 3, 190, 95, 0, 929, 934, 3, 252, 126, 0, 930, 934, 3, 222, 111, 0, 931, 934, 3, 626, 313, 0, 932, 934, 3, 628, 314, 0, 933, 916, 1, 0, 0, 0, 933, 917, 1, 0, 0, 0, 933, 918, 1, 0, 0, 0, 933, 919, 1, 0, 0, 0, 933, 920, 1, 0, 0, 0, 933, 921, 1, 0, 0, 0, 933, 922, 1, 0, 0, 0, 933, 923, 1, 0, 0, 0, 933, 924, 1, 0, 0, 0, 933, 925, 1, 0, 0, 0, 933, 926, 1, 0, 0, 0, 933, 927, 1, 0, 0, 0, 933, 928, 1, 0, 0, 0, 933, 929, 1, 0, 0, 0, 933, 930, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 932, 1, 0, 0, 0, 934, 11, 1, 0, 0, 0, 935, 945, 3, 332, 166, 0, 936, 945, 3, 334, 167, 0, 937, 945, 3, 336, 168, 0, 938, 945, 3, 338, 169, 0, 939, 945, 3, 340, 170, 0, 940, 945, 3, 342, 171, 0, 941, 945, 3, 344, 172, 0, 942, 945, 3, 346, 173, 0, 943, 945, 3, 348, 174, 0, 944, 935, 1, 0, 0, 0, 944, 936, 1, 0, 0, 0, 944, 937, 1, 0, 0, 0, 944, 938, 1, 0, 0, 0, 944, 939, 1, 0, 0, 0, 944, 940, 1, 0, 0, 0, 944, 941, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 943, 1, 0, 0, 0, 945, 13, 1, 0, 0, 0, 946, 961, 3, 364, 182, 0, 947, 961, 3, 366, 183, 0, 948, 961, 3, 368, 184, 0, 949, 961, 3, 370, 185, 0, 950, 961, 3, 372, 186, 0, 951, 961, 3, 374, 187, 0, 952, 961, 3, 376, 188, 0, 953, 961, 3, 378, 189, 0, 954, 961, 3, 414, 207, 0, 955, 961, 3, 416, 208, 0, 956, 961, 3, 418, 209, 0, 957, 961, 3, 420, 210, 0, 958, 961, 3, 422, 211, 0, 959, 961, 3, 424, 212, 0, 960, 946, 1, 0, 0, 0, 960, 947, 1, 0, 0, 0, 960, 948, 1, 0, 0, 0, 960, 949, 1, 0, 0, 0, 960, 950, 1, 0, 0, 0, 960, 951, 1, 0, 0, 0, 960, 952, 1, 0, 0, 0, 960, 953, 1, 0, 0, 0, 960, 954, 1, 0, 0, 0, 960, 955, 1, 0, 0, 0, 960, 956, 1, 0, 0, 0, 960, 957, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 960, 959, 1, 0, 0, 0, 961, 15, 1, 0, 0, 0, 962, 966, 3, 426, 213, 0, 963, 966, 3, 428, 214, 0, 964, 966, 3, 430, 215, 0, 965, 962, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 964, 1, 0, 0, 0, 966, 17, 1, 0, 0, 0, 967, 978, 3, 434, 217, 0, 968, 978, 3, 436, 218, 0, 969, 978, 3, 438, 219, 0, 970, 978, 3, 442, 221, 0, 971, 978, 3, 444, 222, 0, 972, 978, 3, 446, 223, 0, 973, 978, 3, 450, 225, 0, 974, 978, 3, 440, 220, 0, 975, 978, 3, 448, 224, 0, 976, 978, 3, 452, 226, 0, 977, 967, 1, 0, 0, 0, 977, 968, 1, 0, 0, 0, 977, 969, 1, 0, 0, 0, 977, 970, 1, 0, 0, 0, 977, 971, 1, 0, 0, 0, 977, 972, 1, 0, 0, 0, 977, 973, 1, 0, 0, 0, 977, 974, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 977, 976, 1, 0, 0, 0, 978, 19, 1, 0, 0, 0, 979, 1013, 3, 470, 235, 0, 980, 1013, 3, 472, 236, 0, 981, 1013, 3, 474, 237, 0, 982, 1013, 3, 476, 238, 0, 983, 1013, 3, 480, 240, 0, 984, 1013, 3, 492, 246, 0, 985, 1013, 3, 494, 247, 0, 986, 1013, 3, 482, 241, 0, 987, 1013, 3, 484, 242, 0, 988, 1013, 3, 486, 243, 0, 989, 1013, 3, 488, 244, 0, 990, 1013, 3, 538, 269, 0, 991, 1013, 3, 540, 270, 0, 992, 1013, 3, 542, 271, 0, 993, 1013, 3, 544, 272, 0, 994, 1013, 3, 546, 273, 0, 995, 1013, 3, 552, 276, 0, 996, 1013, 3, 556, 278, 0, 997, 1013, 3, 558, 279, 0, 998, 1013, 3, 560, 280, 0, 999, 1013, 3, 562, 281, 0, 1000, 1013, 3, 564, 282, 0, 1001, 1013, 3, 566, 283, 0, 1002, 1013, 3, 580, 290, 0, 1003, 1013, 3, 582, 291, 0, 1004, 1013, 3, 584, 292, 0, 1005, 1013, 3, 586, 293, 0, 1006, 1013, 3, 588, 294, 0, 1007, 1013, 3, 590, 295, 0, 1008, 1013, 3, 594, 297, 0, 1009, 1013, 3, 596, 298, 0, 1010, 1013, 3, 598, 299, 0, 1011, 1013, 3, 600, 300, 0, 1012, 979, 1, 0, 0, 0, 1012, 980, 1, 0, 0, 0, 1012, 981, 1, 0, 0, 0, 1012, 982, 1, 0, 0, 0, 1012, 983, 1, 0, 0, 0, 1012, 984, 1, 0, 0, 0, 1012, 985, 1, 0, 0, 0, 1012, 986, 1, 0, 0, 0, 1012, 987, 1, 0, 0, 0, 1012, 988, 1, 0, 0, 0, 1012, 989, 1, 0, 0, 0, 1012, 990, 1, 0, 0, 0, 1012, 991, 1, 0, 0, 0, 1012, 992, 1, 0, 0, 0, 1012, 993, 1, 0, 0, 0, 1012, 994, 1, 0, 0, 0, 1012, 995, 1, 0, 0, 0, 1012, 996, 1, 0, 0, 0, 1012, 997, 1, 0, 0, 0, 1012, 998, 1, 0, 0, 0, 1012, 999, 1, 0, 0, 0, 1012, 1000, 1, 0, 0, 0, 1012, 1001, 1, 0, 0, 0, 1012, 1002, 1, 0, 0, 0, 1012, 1003, 1, 0, 0, 0, 1012, 1004, 1, 0, 0, 0, 1012, 1005, 1, 0, 0, 0, 1012, 1006, 1, 0, 0, 0, 1012, 1007, 1, 0, 0, 0, 1012, 1008, 1, 0, 0, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1011, 1, 0, 0, 0, 1013, 21, 1, 0, 0, 0, 1014, 1023, 3, 612, 306, 0, 1015, 1023, 3, 610, 305, 0, 1016, 1023, 3, 614, 307, 0, 1017, 1023, 3, 616, 308, 0, 1018, 1023, 3, 618, 309, 0, 1019, 1023, 3, 620, 310, 0, 1020, 1023, 3, 622, 311, 0, 1021, 1023, 3, 630, 315, 0, 1022, 1014, 1, 0, 0, 0, 1022, 1015, 1, 0, 0, 0, 1022, 1016, 1, 0, 0, 0, 1022, 1017, 1, 0, 0, 0, 1022, 1018, 1, 0, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1021, 1, 0, 0, 0, 1023, 23, 1, 0, 0, 0, 1024, 1025, 5, 34, 0, 0, 1025, 1027, 7, 0, 0, 0, 1026, 1028, 3, 770, 385, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1033, 3, 636, 318, 0, 1030, 1032, 3, 56, 28, 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, 25, 1, 0, 0, 0, 1035, 1033, 1, 0, 0, 0, 1036, 1038, 5, 34, 0, 0, 1037, 1039, 3, 62, 31, 0, 1038, 1037, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1042, 5, 385, 0, 0, 1041, 1043, 3, 770, 385, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 3, 712, 356, 0, 1045, 1046, 5, 119, 0, 0, 1046, 1047, 5, 590, 0, 0, 1047, 1054, 3, 64, 32, 0, 1048, 1049, 5, 119, 0, 0, 1049, 1051, 5, 343, 0, 0, 1050, 1052, 5, 114, 0, 0, 1051, 1050, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1055, 5, 541, 0, 0, 1054, 1048, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1057, 1, 0, 0, 0, 1056, 1058, 3, 72, 36, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1061, 1, 0, 0, 0, 1059, 1060, 5, 340, 0, 0, 1060, 1062, 5, 882, 0, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 5, 371, 0, 0, 1064, 1065, 3, 432, 216, 0, 1065, 27, 1, 0, 0, 0, 1066, 1068, 5, 34, 0, 0, 1067, 1069, 7, 1, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 1, 0, 0, 0, 1070, 1072, 7, 2, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 5, 82, 0, 0, 1074, 1076, 3, 648, 324, 0, 1075, 1077, 3, 74, 37, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 5, 119, 0, 0, 1079, 1080, 3, 662, 331, 0, 1080, 1084, 3, 748, 374, 0, 1081, 1083, 3, 76, 38, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1099, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1089, 5, 308, 0, 0, 1088, 1090, 5, 857, 0, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1098, 7, 3, 0, 0, 1092, 1094, 5, 104, 0, 0, 1093, 1095, 5, 857, 0, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 7, 4, 0, 0, 1097, 1087, 1, 0, 0, 0, 1097, 1092, 1, 0, 0, 0, 1098, 1101, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 29, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 1103, 5, 34, 0, 0, 1103, 1104, 5, 451, 0, 0, 1104, 1105, 5, 74, 0, 0, 1105, 1106, 3, 716, 358, 0, 1106, 1107, 5, 6, 0, 0, 1107, 1108, 5, 671, 0, 0, 1108, 1114, 5, 882, 0, 0, 1109, 1111, 5, 428, 0, 0, 1110, 1112, 5, 857, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1115, 3, 724, 362, 0, 1114, 1109, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1121, 1, 0, 0, 0, 1116, 1118, 5, 672, 0, 0, 1117, 1119, 5, 857, 0, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 3, 724, 362, 0, 1121, 1116, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1128, 1, 0, 0, 0, 1123, 1125, 5, 553, 0, 0, 1124, 1126, 5, 857, 0, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 3, 724, 362, 0, 1128, 1123, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1135, 1, 0, 0, 0, 1130, 1132, 5, 504, 0, 0, 1131, 1133, 5, 857, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1136, 3, 716, 358, 0, 1135, 1130, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1138, 1, 0, 0, 0, 1137, 1139, 5, 687, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1145, 1, 0, 0, 0, 1140, 1142, 5, 340, 0, 0, 1141, 1143, 5, 857, 0, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 5, 882, 0, 0, 1145, 1140, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1149, 5, 380, 0, 0, 1148, 1150, 5, 857, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 3, 702, 351, 0, 1152, 31, 1, 0, 0, 0, 1153, 1155, 5, 34, 0, 0, 1154, 1156, 3, 62, 31, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 5, 132, 0, 0, 1158, 1160, 3, 770, 385, 0, 1159, 1158, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 3, 712, 356, 0, 1162, 1164, 5, 866, 0, 0, 1163, 1165, 3, 78, 39, 0, 1164, 1163, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1170, 1, 0, 0, 0, 1166, 1167, 5, 868, 0, 0, 1167, 1169, 3, 78, 39, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1172, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1173, 1177, 5, 867, 0, 0, 1174, 1176, 3, 82, 41, 0, 1175, 1174, 1, 0, 0, 0, 1176, 1179, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1180, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1181, 3, 432, 216, 0, 1181, 33, 1, 0, 0, 0, 1182, 1184, 5, 34, 0, 0, 1183, 1185, 3, 62, 31, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1188, 5, 307, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1191, 5, 409, 0, 0, 1190, 1192, 3, 770, 385, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 3, 640, 320, 0, 1194, 1196, 5, 866, 0, 0, 1195, 1197, 3, 80, 40, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1202, 1, 0, 0, 0, 1198, 1199, 5, 868, 0, 0, 1199, 1201, 3, 80, 40, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1205, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1206, 5, 867, 0, 0, 1206, 1207, 5, 580, 0, 0, 1207, 1211, 3, 736, 368, 0, 1208, 1210, 3, 82, 41, 0, 1209, 1208, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1216, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1217, 3, 432, 216, 0, 1215, 1217, 3, 448, 224, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1215, 1, 0, 0, 0, 1217, 35, 1, 0, 0, 0, 1218, 1220, 5, 34, 0, 0, 1219, 1221, 5, 307, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 5, 409, 0, 0, 1223, 1225, 3, 770, 385, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 3, 640, 320, 0, 1227, 1228, 5, 580, 0, 0, 1228, 1229, 7, 5, 0, 0, 1229, 1230, 5, 603, 0, 0, 1230, 1231, 5, 882, 0, 0, 1231, 37, 1, 0, 0, 0, 1232, 1233, 5, 34, 0, 0, 1233, 1235, 5, 582, 0, 0, 1234, 1236, 3, 770, 385, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 3, 664, 332, 0, 1238, 39, 1, 0, 0, 0, 1239, 1240, 5, 34, 0, 0, 1240, 1241, 5, 592, 0, 0, 1241, 1242, 3, 716, 358, 0, 1242, 1243, 5, 67, 0, 0, 1243, 1244, 5, 360, 0, 0, 1244, 1245, 5, 692, 0, 0, 1245, 1246, 7, 6, 0, 0, 1246, 1247, 5, 518, 0, 0, 1247, 1248, 5, 866, 0, 0, 1248, 1253, 3, 84, 42, 0, 1249, 1250, 5, 868, 0, 0, 1250, 1252, 3, 84, 42, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1255, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1256, 1257, 5, 867, 0, 0, 1257, 41, 1, 0, 0, 0, 1258, 1260, 5, 34, 0, 0, 1259, 1261, 5, 660, 0, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1264, 5, 173, 0, 0, 1263, 1265, 3, 770, 385, 0, 1264, 1263, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1268, 3, 658, 329, 0, 1267, 1269, 3, 86, 43, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1280, 1, 0, 0, 0, 1270, 1277, 3, 104, 52, 0, 1271, 1273, 5, 868, 0, 0, 1272, 1271, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 3, 104, 52, 0, 1275, 1272, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1270, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1284, 3, 110, 55, 0, 1283, 1282, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1287, 7, 7, 0, 0, 1286, 1285, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 1, 0, 0, 0, 1288, 1290, 5, 13, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 3, 210, 105, 0, 1292, 1337, 1, 0, 0, 0, 1293, 1295, 5, 34, 0, 0, 1294, 1296, 5, 660, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 5, 173, 0, 0, 1298, 1300, 3, 770, 385, 0, 1299, 1298, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1309, 3, 658, 329, 0, 1302, 1303, 5, 99, 0, 0, 1303, 1310, 3, 662, 331, 0, 1304, 1305, 5, 866, 0, 0, 1305, 1306, 5, 99, 0, 0, 1306, 1307, 3, 662, 331, 0, 1307, 1308, 5, 867, 0, 0, 1308, 1310, 1, 0, 0, 0, 1309, 1302, 1, 0, 0, 0, 1309, 1304, 1, 0, 0, 0, 1310, 1337, 1, 0, 0, 0, 1311, 1313, 5, 34, 0, 0, 1312, 1314, 5, 660, 0, 0, 1313, 1312, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 5, 173, 0, 0, 1316, 1318, 3, 770, 385, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 3, 658, 329, 0, 1320, 1331, 3, 86, 43, 0, 1321, 1328, 3, 104, 52, 0, 1322, 1324, 5, 868, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1327, 3, 104, 52, 0, 1326, 1323, 1, 0, 0, 0, 1327, 1330, 1, 0, 0, 0, 1328, 1326, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1332, 1, 0, 0, 0, 1330, 1328, 1, 0, 0, 0, 1331, 1321, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1334, 1, 0, 0, 0, 1333, 1335, 3, 110, 55, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1337, 1, 0, 0, 0, 1336, 1258, 1, 0, 0, 0, 1336, 1293, 1, 0, 0, 0, 1336, 1311, 1, 0, 0, 0, 1337, 43, 1, 0, 0, 0, 1338, 1340, 5, 34, 0, 0, 1339, 1341, 5, 180, 0, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 5, 658, 0, 0, 1343, 1347, 3, 674, 337, 0, 1344, 1345, 5, 6, 0, 0, 1345, 1346, 5, 361, 0, 0, 1346, 1348, 5, 882, 0, 0, 1347, 1344, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1354, 1, 0, 0, 0, 1349, 1351, 5, 314, 0, 0, 1350, 1352, 5, 857, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1355, 3, 724, 362, 0, 1354, 1349, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1359, 1, 0, 0, 0, 1356, 1357, 5, 399, 0, 0, 1357, 1358, 5, 857, 0, 0, 1358, 1360, 3, 724, 362, 0, 1359, 1356, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1366, 1, 0, 0, 0, 1361, 1363, 5, 380, 0, 0, 1362, 1364, 5, 857, 0, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 3, 702, 351, 0, 1366, 1361, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1373, 1, 0, 0, 0, 1368, 1370, 5, 825, 0, 0, 1369, 1371, 5, 857, 0, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1374, 5, 882, 0, 0, 1373, 1368, 1, 0, 0, 0, 1373, 1374, 1, 0, 0, 0, 1374, 45, 1, 0, 0, 0, 1375, 1377, 5, 34, 0, 0, 1376, 1378, 5, 180, 0, 0, 1377, 1376, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 5, 658, 0, 0, 1380, 1381, 3, 674, 337, 0, 1381, 1382, 5, 6, 0, 0, 1382, 1383, 5, 361, 0, 0, 1383, 1384, 5, 882, 0, 0, 1384, 1385, 5, 187, 0, 0, 1385, 1386, 5, 451, 0, 0, 1386, 1387, 5, 74, 0, 0, 1387, 1393, 3, 716, 358, 0, 1388, 1390, 5, 393, 0, 0, 1389, 1391, 5, 857, 0, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1394, 3, 724, 362, 0, 1393, 1388, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1400, 1, 0, 0, 0, 1395, 1397, 5, 428, 0, 0, 1396, 1398, 5, 857, 0, 0, 1397, 1396, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1401, 3, 724, 362, 0, 1400, 1395, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1407, 1, 0, 0, 0, 1402, 1404, 5, 314, 0, 0, 1403, 1405, 5, 857, 0, 0, 1404, 1403, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1408, 3, 724, 362, 0, 1407, 1402, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1414, 1, 0, 0, 0, 1409, 1411, 5, 481, 0, 0, 1410, 1412, 5, 857, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1415, 3, 724, 362, 0, 1414, 1409, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1421, 1, 0, 0, 0, 1416, 1418, 5, 504, 0, 0, 1417, 1419, 5, 857, 0, 0, 1418, 1417, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1422, 3, 716, 358, 0, 1421, 1416, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 5, 687, 0, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1431, 1, 0, 0, 0, 1426, 1428, 5, 340, 0, 0, 1427, 1429, 5, 857, 0, 0, 1428, 1427, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1432, 5, 882, 0, 0, 1431, 1426, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1435, 5, 380, 0, 0, 1434, 1436, 5, 857, 0, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 3, 702, 351, 0, 1438, 47, 1, 0, 0, 0, 1439, 1441, 5, 34, 0, 0, 1440, 1442, 3, 62, 31, 0, 1441, 1440, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1445, 3, 770, 385, 0, 1444, 1443, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1448, 5, 178, 0, 0, 1447, 1449, 3, 770, 385, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 3, 712, 356, 0, 1451, 1452, 7, 8, 0, 0, 1452, 1453, 7, 9, 0, 0, 1453, 1454, 5, 119, 0, 0, 1454, 1455, 3, 662, 331, 0, 1455, 1456, 5, 65, 0, 0, 1456, 1457, 5, 52, 0, 0, 1457, 1460, 5, 586, 0, 0, 1458, 1459, 7, 10, 0, 0, 1459, 1461, 3, 712, 356, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 3, 432, 216, 0, 1463, 49, 1, 0, 0, 0, 1464, 1466, 5, 194, 0, 0, 1465, 1467, 5, 552, 0, 0, 1466, 1465, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1469, 3, 52, 26, 0, 1469, 51, 1, 0, 0, 0, 1470, 1482, 3, 716, 358, 0, 1471, 1472, 5, 866, 0, 0, 1472, 1477, 3, 716, 358, 0, 1473, 1474, 5, 868, 0, 0, 1474, 1476, 3, 716, 358, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1479, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1481, 5, 867, 0, 0, 1481, 1483, 1, 0, 0, 0, 1482, 1471, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 5, 13, 0, 0, 1485, 1486, 5, 866, 0, 0, 1486, 1487, 3, 10, 5, 0, 1487, 1490, 5, 867, 0, 0, 1488, 1489, 5, 868, 0, 0, 1489, 1491, 3, 52, 26, 0, 1490, 1488, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 53, 1, 0, 0, 0, 1492, 1494, 5, 34, 0, 0, 1493, 1495, 3, 772, 386, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1499, 1, 0, 0, 0, 1496, 1497, 5, 308, 0, 0, 1497, 1498, 5, 857, 0, 0, 1498, 1500, 7, 11, 0, 0, 1499, 1496, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1502, 1, 0, 0, 0, 1501, 1503, 3, 62, 31, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1507, 1, 0, 0, 0, 1504, 1505, 5, 162, 0, 0, 1505, 1506, 5, 591, 0, 0, 1506, 1508, 7, 12, 0, 0, 1507, 1504, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 5, 684, 0, 0, 1510, 1522, 3, 644, 322, 0, 1511, 1512, 5, 866, 0, 0, 1512, 1517, 3, 668, 334, 0, 1513, 1514, 5, 868, 0, 0, 1514, 1516, 3, 668, 334, 0, 1515, 1513, 1, 0, 0, 0, 1516, 1519, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1520, 1521, 5, 867, 0, 0, 1521, 1523, 1, 0, 0, 0, 1522, 1511, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1544, 5, 13, 0, 0, 1525, 1527, 5, 866, 0, 0, 1526, 1528, 3, 50, 25, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 3, 210, 105, 0, 1530, 1531, 5, 867, 0, 0, 1531, 1545, 1, 0, 0, 0, 1532, 1534, 3, 50, 25, 0, 1533, 1532, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1542, 3, 210, 105, 0, 1536, 1538, 5, 194, 0, 0, 1537, 1539, 7, 13, 0, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 5, 27, 0, 0, 1541, 1543, 5, 121, 0, 0, 1542, 1536, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1525, 1, 0, 0, 0, 1544, 1533, 1, 0, 0, 0, 1545, 55, 1, 0, 0, 0, 1546, 1548, 5, 42, 0, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 3, 58, 29, 0, 1550, 1552, 5, 857, 0, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1555, 1, 0, 0, 0, 1553, 1556, 3, 698, 349, 0, 1554, 1556, 5, 42, 0, 0, 1555, 1553, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 1580, 1, 0, 0, 0, 1557, 1559, 5, 42, 0, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 5, 28, 0, 0, 1561, 1563, 5, 857, 0, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1580, 3, 700, 350, 0, 1565, 1567, 5, 42, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 5, 376, 0, 0, 1569, 1571, 5, 857, 0, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1580, 5, 882, 0, 0, 1573, 1574, 5, 135, 0, 0, 1574, 1576, 5, 515, 0, 0, 1575, 1577, 5, 857, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 7, 14, 0, 0, 1579, 1547, 1, 0, 0, 0, 1579, 1558, 1, 0, 0, 0, 1579, 1566, 1, 0, 0, 0, 1579, 1573, 1, 0, 0, 0, 1580, 57, 1, 0, 0, 0, 1581, 1582, 5, 26, 0, 0, 1582, 1587, 5, 155, 0, 0, 1583, 1587, 5, 823, 0, 0, 1584, 1585, 5, 224, 0, 0, 1585, 1587, 5, 155, 0, 0, 1586, 1581, 1, 0, 0, 0, 1586, 1583, 1, 0, 0, 0, 1586, 1584, 1, 0, 0, 0, 1587, 59, 1, 0, 0, 0, 1588, 1591, 7, 15, 0, 0, 1589, 1590, 5, 866, 0, 0, 1590, 1592, 5, 867, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 61, 1, 0, 0, 0, 1593, 1594, 5, 364, 0, 0, 1594, 1597, 5, 857, 0, 0, 1595, 1598, 3, 694, 347, 0, 1596, 1598, 3, 60, 30, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1596, 1, 0, 0, 0, 1598, 63, 1, 0, 0, 0, 1599, 1600, 5, 311, 0, 0, 1600, 1604, 3, 66, 33, 0, 1601, 1603, 3, 68, 34, 0, 1602, 1601, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1602, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1634, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1607, 1610, 5, 387, 0, 0, 1608, 1611, 3, 722, 361, 0, 1609, 1611, 3, 814, 407, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1621, 3, 70, 35, 0, 1613, 1614, 5, 641, 0, 0, 1614, 1618, 3, 66, 33, 0, 1615, 1617, 3, 68, 34, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1613, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1631, 1, 0, 0, 0, 1623, 1624, 5, 379, 0, 0, 1624, 1628, 3, 66, 33, 0, 1625, 1627, 3, 68, 34, 0, 1626, 1625, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1632, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1623, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1634, 1, 0, 0, 0, 1633, 1599, 1, 0, 0, 0, 1633, 1607, 1, 0, 0, 0, 1634, 65, 1, 0, 0, 0, 1635, 1640, 5, 287, 0, 0, 1636, 1640, 3, 726, 363, 0, 1637, 1640, 3, 722, 361, 0, 1638, 1640, 3, 814, 407, 0, 1639, 1635, 1, 0, 0, 0, 1639, 1636, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1638, 1, 0, 0, 0, 1640, 67, 1, 0, 0, 0, 1641, 1642, 5, 853, 0, 0, 1642, 1645, 5, 87, 0, 0, 1643, 1646, 3, 722, 361, 0, 1644, 1646, 3, 814, 407, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 3, 70, 35, 0, 1648, 69, 1, 0, 0, 0, 1649, 1663, 3, 840, 420, 0, 1650, 1663, 5, 223, 0, 0, 1651, 1663, 5, 242, 0, 0, 1652, 1663, 5, 243, 0, 0, 1653, 1663, 5, 244, 0, 0, 1654, 1663, 5, 245, 0, 0, 1655, 1663, 5, 246, 0, 0, 1656, 1663, 5, 247, 0, 0, 1657, 1663, 5, 248, 0, 0, 1658, 1663, 5, 249, 0, 0, 1659, 1663, 5, 250, 0, 0, 1660, 1663, 5, 251, 0, 0, 1661, 1663, 5, 252, 0, 0, 1662, 1649, 1, 0, 0, 0, 1662, 1650, 1, 0, 0, 0, 1662, 1651, 1, 0, 0, 0, 1662, 1652, 1, 0, 0, 0, 1662, 1653, 1, 0, 0, 0, 1662, 1654, 1, 0, 0, 0, 1662, 1655, 1, 0, 0, 0, 1662, 1656, 1, 0, 0, 0, 1662, 1657, 1, 0, 0, 0, 1662, 1658, 1, 0, 0, 0, 1662, 1659, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1661, 1, 0, 0, 0, 1663, 71, 1, 0, 0, 0, 1664, 1670, 5, 375, 0, 0, 1665, 1670, 5, 368, 0, 0, 1666, 1667, 5, 368, 0, 0, 1667, 1668, 5, 119, 0, 0, 1668, 1670, 5, 598, 0, 0, 1669, 1664, 1, 0, 0, 0, 1669, 1665, 1, 0, 0, 0, 1669, 1666, 1, 0, 0, 0, 1670, 73, 1, 0, 0, 0, 1671, 1672, 5, 188, 0, 0, 1672, 1673, 7, 16, 0, 0, 1673, 75, 1, 0, 0, 0, 1674, 1676, 5, 443, 0, 0, 1675, 1677, 5, 857, 0, 0, 1676, 1675, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1697, 3, 724, 362, 0, 1679, 1697, 3, 74, 37, 0, 1680, 1681, 5, 194, 0, 0, 1681, 1682, 5, 525, 0, 0, 1682, 1697, 3, 716, 358, 0, 1683, 1684, 5, 340, 0, 0, 1684, 1697, 5, 882, 0, 0, 1685, 1697, 7, 17, 0, 0, 1686, 1688, 5, 825, 0, 0, 1687, 1689, 5, 857, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1697, 5, 882, 0, 0, 1691, 1693, 5, 833, 0, 0, 1692, 1694, 5, 857, 0, 0, 1693, 1692, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1697, 5, 882, 0, 0, 1696, 1674, 1, 0, 0, 0, 1696, 1679, 1, 0, 0, 0, 1696, 1680, 1, 0, 0, 0, 1696, 1683, 1, 0, 0, 0, 1696, 1685, 1, 0, 0, 0, 1696, 1686, 1, 0, 0, 0, 1696, 1691, 1, 0, 0, 0, 1697, 77, 1, 0, 0, 0, 1698, 1700, 7, 18, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 3, 716, 358, 0, 1702, 1703, 3, 736, 368, 0, 1703, 79, 1, 0, 0, 0, 1704, 1705, 3, 716, 358, 0, 1705, 1706, 3, 736, 368, 0, 1706, 81, 1, 0, 0, 0, 1707, 1708, 5, 340, 0, 0, 1708, 1731, 5, 882, 0, 0, 1709, 1710, 5, 444, 0, 0, 1710, 1731, 5, 162, 0, 0, 1711, 1713, 5, 114, 0, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1731, 5, 47, 0, 0, 1715, 1716, 5, 354, 0, 0, 1716, 1726, 5, 162, 0, 0, 1717, 1718, 5, 502, 0, 0, 1718, 1726, 5, 162, 0, 0, 1719, 1720, 5, 136, 0, 0, 1720, 1721, 5, 162, 0, 0, 1721, 1726, 5, 360, 0, 0, 1722, 1723, 5, 112, 0, 0, 1723, 1724, 5, 162, 0, 0, 1724, 1726, 5, 360, 0, 0, 1725, 1715, 1, 0, 0, 0, 1725, 1717, 1, 0, 0, 0, 1725, 1719, 1, 0, 0, 0, 1725, 1722, 1, 0, 0, 0, 1726, 1731, 1, 0, 0, 0, 1727, 1728, 5, 162, 0, 0, 1728, 1729, 5, 591, 0, 0, 1729, 1731, 7, 12, 0, 0, 1730, 1707, 1, 0, 0, 0, 1730, 1709, 1, 0, 0, 0, 1730, 1712, 1, 0, 0, 0, 1730, 1725, 1, 0, 0, 0, 1730, 1727, 1, 0, 0, 0, 1731, 83, 1, 0, 0, 0, 1732, 1733, 5, 421, 0, 0, 1733, 1747, 5, 882, 0, 0, 1734, 1735, 5, 39, 0, 0, 1735, 1747, 5, 882, 0, 0, 1736, 1737, 5, 678, 0, 0, 1737, 1747, 5, 882, 0, 0, 1738, 1739, 5, 529, 0, 0, 1739, 1747, 5, 882, 0, 0, 1740, 1741, 5, 601, 0, 0, 1741, 1747, 5, 882, 0, 0, 1742, 1743, 5, 519, 0, 0, 1743, 1747, 5, 882, 0, 0, 1744, 1745, 5, 537, 0, 0, 1745, 1747, 3, 722, 361, 0, 1746, 1732, 1, 0, 0, 0, 1746, 1734, 1, 0, 0, 0, 1746, 1736, 1, 0, 0, 0, 1746, 1738, 1, 0, 0, 0, 1746, 1740, 1, 0, 0, 0, 1746, 1742, 1, 0, 0, 0, 1746, 1744, 1, 0, 0, 0, 1747, 85, 1, 0, 0, 0, 1748, 1749, 5, 866, 0, 0, 1749, 1754, 3, 88, 44, 0, 1750, 1751, 5, 868, 0, 0, 1751, 1753, 3, 88, 44, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1756, 1, 0, 0, 0, 1754, 1752, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 1, 0, 0, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1758, 5, 867, 0, 0, 1758, 87, 1, 0, 0, 0, 1759, 1760, 3, 668, 334, 0, 1760, 1761, 3, 94, 47, 0, 1761, 1843, 1, 0, 0, 0, 1762, 1764, 7, 19, 0, 0, 1763, 1765, 3, 652, 326, 0, 1764, 1763, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1768, 3, 74, 37, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1773, 3, 748, 374, 0, 1770, 1772, 3, 76, 38, 0, 1771, 1770, 1, 0, 0, 0, 1772, 1775, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1843, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1776, 1778, 7, 20, 0, 0, 1777, 1779, 7, 19, 0, 0, 1778, 1777, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1781, 1, 0, 0, 0, 1780, 1782, 3, 652, 326, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1787, 3, 748, 374, 0, 1784, 1786, 3, 76, 38, 0, 1785, 1784, 1, 0, 0, 0, 1786, 1789, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1843, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1790, 1792, 3, 92, 46, 0, 1791, 1790, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 5, 131, 0, 0, 1794, 1796, 5, 92, 0, 0, 1795, 1797, 3, 74, 37, 0, 1796, 1795, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1802, 3, 748, 374, 0, 1799, 1801, 3, 76, 38, 0, 1800, 1799, 1, 0, 0, 0, 1801, 1804, 1, 0, 0, 0, 1802, 1800, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1843, 1, 0, 0, 0, 1804, 1802, 1, 0, 0, 0, 1805, 1807, 3, 92, 46, 0, 1806, 1805, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1810, 5, 182, 0, 0, 1809, 1811, 7, 19, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1813, 1, 0, 0, 0, 1812, 1814, 3, 652, 326, 0, 1813, 1812, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, 1, 0, 0, 0, 1815, 1817, 3, 74, 37, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1822, 3, 748, 374, 0, 1819, 1821, 3, 76, 38, 0, 1820, 1819, 1, 0, 0, 0, 1821, 1824, 1, 0, 0, 0, 1822, 1820, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1843, 1, 0, 0, 0, 1824, 1822, 1, 0, 0, 0, 1825, 1827, 3, 92, 46, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 5, 67, 0, 0, 1829, 1831, 5, 92, 0, 0, 1830, 1832, 3, 652, 326, 0, 1831, 1830, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 3, 748, 374, 0, 1834, 1835, 3, 98, 49, 0, 1835, 1843, 1, 0, 0, 0, 1836, 1837, 5, 27, 0, 0, 1837, 1838, 5, 866, 0, 0, 1838, 1839, 3, 814, 407, 0, 1839, 1840, 5, 867, 0, 0, 1840, 1843, 1, 0, 0, 0, 1841, 1843, 3, 90, 45, 0, 1842, 1759, 1, 0, 0, 0, 1842, 1762, 1, 0, 0, 0, 1842, 1776, 1, 0, 0, 0, 1842, 1791, 1, 0, 0, 0, 1842, 1806, 1, 0, 0, 0, 1842, 1826, 1, 0, 0, 0, 1842, 1836, 1, 0, 0, 0, 1842, 1841, 1, 0, 0, 0, 1843, 89, 1, 0, 0, 0, 1844, 1846, 3, 92, 46, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 5, 27, 0, 0, 1848, 1849, 5, 866, 0, 0, 1849, 1850, 3, 814, 407, 0, 1850, 1855, 5, 867, 0, 0, 1851, 1853, 5, 114, 0, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 5, 57, 0, 0, 1855, 1852, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 91, 1, 0, 0, 0, 1857, 1859, 5, 31, 0, 0, 1858, 1860, 3, 716, 358, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 93, 1, 0, 0, 0, 1861, 1865, 3, 736, 368, 0, 1862, 1864, 3, 96, 48, 0, 1863, 1862, 1, 0, 0, 0, 1864, 1867, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 95, 1, 0, 0, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1912, 3, 732, 366, 0, 1869, 1870, 5, 42, 0, 0, 1870, 1912, 3, 764, 382, 0, 1871, 1912, 5, 686, 0, 0, 1872, 1912, 5, 435, 0, 0, 1873, 1878, 5, 315, 0, 0, 1874, 1875, 5, 119, 0, 0, 1875, 1876, 5, 185, 0, 0, 1876, 1878, 3, 766, 383, 0, 1877, 1873, 1, 0, 0, 0, 1877, 1874, 1, 0, 0, 0, 1878, 1912, 1, 0, 0, 0, 1879, 1881, 5, 131, 0, 0, 1880, 1879, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1912, 5, 92, 0, 0, 1883, 1885, 5, 182, 0, 0, 1884, 1886, 5, 92, 0, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1912, 1, 0, 0, 0, 1887, 1888, 5, 340, 0, 0, 1888, 1912, 5, 882, 0, 0, 1889, 1890, 5, 338, 0, 0, 1890, 1912, 7, 21, 0, 0, 1891, 1892, 5, 647, 0, 0, 1892, 1912, 7, 22, 0, 0, 1893, 1912, 3, 98, 49, 0, 1894, 1895, 5, 28, 0, 0, 1895, 1912, 3, 700, 350, 0, 1896, 1897, 5, 71, 0, 0, 1897, 1899, 5, 9, 0, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 5, 13, 0, 0, 1901, 1902, 5, 866, 0, 0, 1902, 1903, 3, 814, 407, 0, 1903, 1905, 5, 867, 0, 0, 1904, 1906, 7, 23, 0, 0, 1905, 1904, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1912, 1, 0, 0, 0, 1907, 1908, 5, 241, 0, 0, 1908, 1909, 5, 42, 0, 0, 1909, 1912, 5, 682, 0, 0, 1910, 1912, 3, 90, 45, 0, 1911, 1868, 1, 0, 0, 0, 1911, 1869, 1, 0, 0, 0, 1911, 1871, 1, 0, 0, 0, 1911, 1872, 1, 0, 0, 0, 1911, 1877, 1, 0, 0, 0, 1911, 1880, 1, 0, 0, 0, 1911, 1883, 1, 0, 0, 0, 1911, 1887, 1, 0, 0, 0, 1911, 1889, 1, 0, 0, 0, 1911, 1891, 1, 0, 0, 0, 1911, 1893, 1, 0, 0, 0, 1911, 1894, 1, 0, 0, 0, 1911, 1898, 1, 0, 0, 0, 1911, 1907, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 97, 1, 0, 0, 0, 1913, 1914, 5, 138, 0, 0, 1914, 1916, 3, 662, 331, 0, 1915, 1917, 3, 748, 374, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1920, 1, 0, 0, 0, 1918, 1919, 5, 110, 0, 0, 1919, 1921, 7, 24, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1923, 1, 0, 0, 0, 1922, 1924, 3, 100, 50, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 99, 1, 0, 0, 0, 1925, 1926, 5, 119, 0, 0, 1926, 1927, 5, 44, 0, 0, 1927, 1931, 3, 102, 51, 0, 1928, 1929, 5, 119, 0, 0, 1929, 1930, 5, 185, 0, 0, 1930, 1932, 3, 102, 51, 0, 1931, 1928, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1942, 1, 0, 0, 0, 1933, 1934, 5, 119, 0, 0, 1934, 1935, 5, 185, 0, 0, 1935, 1939, 3, 102, 51, 0, 1936, 1937, 5, 119, 0, 0, 1937, 1938, 5, 44, 0, 0, 1938, 1940, 3, 102, 51, 0, 1939, 1936, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1942, 1, 0, 0, 0, 1941, 1925, 1, 0, 0, 0, 1941, 1933, 1, 0, 0, 0, 1942, 101, 1, 0, 0, 0, 1943, 1952, 5, 146, 0, 0, 1944, 1952, 5, 22, 0, 0, 1945, 1946, 5, 155, 0, 0, 1946, 1952, 5, 116, 0, 0, 1947, 1948, 5, 502, 0, 0, 1948, 1952, 5, 305, 0, 0, 1949, 1950, 5, 155, 0, 0, 1950, 1952, 5, 42, 0, 0, 1951, 1943, 1, 0, 0, 0, 1951, 1944, 1, 0, 0, 0, 1951, 1945, 1, 0, 0, 0, 1951, 1947, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 103, 1, 0, 0, 0, 1953, 1955, 5, 380, 0, 0, 1954, 1956, 5, 857, 0, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1959, 3, 702, 351, 0, 1958, 1957, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 2139, 1, 0, 0, 0, 1960, 1962, 5, 825, 0, 0, 1961, 1963, 5, 857, 0, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 2139, 5, 882, 0, 0, 1965, 1967, 5, 314, 0, 0, 1966, 1968, 5, 857, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 2139, 3, 722, 361, 0, 1970, 1972, 5, 315, 0, 0, 1971, 1973, 5, 857, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 2139, 3, 722, 361, 0, 1975, 1977, 5, 316, 0, 0, 1976, 1978, 5, 857, 0, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 2139, 3, 722, 361, 0, 1980, 1982, 5, 42, 0, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 3, 58, 29, 0, 1984, 1986, 5, 857, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1989, 1, 0, 0, 0, 1987, 1990, 3, 698, 349, 0, 1988, 1990, 5, 42, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1988, 1, 0, 0, 0, 1990, 2139, 1, 0, 0, 0, 1991, 1993, 7, 25, 0, 0, 1992, 1994, 5, 857, 0, 0, 1993, 1992, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2139, 7, 26, 0, 0, 1996, 1998, 5, 42, 0, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2001, 5, 28, 0, 0, 2000, 2002, 5, 857, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2139, 3, 700, 350, 0, 2004, 2006, 5, 340, 0, 0, 2005, 2007, 5, 857, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2139, 5, 882, 0, 0, 2009, 2011, 5, 346, 0, 0, 2010, 2012, 5, 857, 0, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2139, 7, 27, 0, 0, 2014, 2016, 5, 349, 0, 0, 2015, 2017, 5, 857, 0, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2139, 5, 882, 0, 0, 2019, 2020, 7, 28, 0, 0, 2020, 2022, 5, 367, 0, 0, 2021, 2023, 5, 857, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2139, 5, 882, 0, 0, 2025, 2027, 5, 365, 0, 0, 2026, 2028, 5, 857, 0, 0, 2027, 2026, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2139, 7, 26, 0, 0, 2030, 2032, 5, 376, 0, 0, 2031, 2033, 5, 857, 0, 0, 2032, 2031, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2139, 5, 882, 0, 0, 2035, 2037, 7, 29, 0, 0, 2036, 2038, 5, 857, 0, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2139, 7, 26, 0, 0, 2040, 2042, 7, 30, 0, 0, 2041, 2043, 5, 857, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2139, 3, 722, 361, 0, 2045, 2047, 5, 377, 0, 0, 2046, 2048, 5, 857, 0, 0, 2047, 2046, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2139, 3, 722, 361, 0, 2050, 2051, 5, 82, 0, 0, 2051, 2053, 5, 367, 0, 0, 2052, 2054, 5, 857, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2139, 5, 882, 0, 0, 2056, 2058, 5, 431, 0, 0, 2057, 2059, 5, 857, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2139, 7, 31, 0, 0, 2061, 2063, 5, 443, 0, 0, 2062, 2064, 5, 857, 0, 0, 2063, 2062, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2139, 3, 724, 362, 0, 2066, 2068, 5, 480, 0, 0, 2067, 2069, 5, 857, 0, 0, 2068, 2067, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2139, 3, 722, 361, 0, 2071, 2073, 5, 490, 0, 0, 2072, 2074, 5, 857, 0, 0, 2073, 2072, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2139, 3, 722, 361, 0, 2076, 2078, 5, 520, 0, 0, 2077, 2079, 5, 857, 0, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2139, 7, 14, 0, 0, 2081, 2083, 5, 529, 0, 0, 2082, 2084, 5, 857, 0, 0, 2083, 2082, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2139, 5, 882, 0, 0, 2086, 2088, 5, 588, 0, 0, 2087, 2089, 5, 857, 0, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2139, 7, 32, 0, 0, 2091, 2092, 5, 640, 0, 0, 2092, 2139, 5, 664, 0, 0, 2093, 2095, 5, 833, 0, 0, 2094, 2096, 5, 857, 0, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2139, 5, 882, 0, 0, 2098, 2100, 5, 642, 0, 0, 2099, 2101, 5, 857, 0, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2139, 7, 14, 0, 0, 2103, 2105, 5, 643, 0, 0, 2104, 2106, 5, 857, 0, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2139, 7, 14, 0, 0, 2108, 2110, 5, 644, 0, 0, 2109, 2111, 5, 857, 0, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2114, 1, 0, 0, 0, 2112, 2115, 5, 42, 0, 0, 2113, 2115, 3, 722, 361, 0, 2114, 2112, 1, 0, 0, 0, 2114, 2113, 1, 0, 0, 0, 2115, 2139, 1, 0, 0, 0, 2116, 2117, 5, 658, 0, 0, 2117, 2119, 3, 676, 338, 0, 2118, 2120, 3, 108, 54, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2139, 1, 0, 0, 0, 2121, 2122, 5, 659, 0, 0, 2122, 2123, 5, 857, 0, 0, 2123, 2139, 3, 106, 53, 0, 2124, 2139, 3, 108, 54, 0, 2125, 2127, 5, 665, 0, 0, 2126, 2128, 5, 857, 0, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2139, 7, 26, 0, 0, 2130, 2132, 5, 181, 0, 0, 2131, 2133, 5, 857, 0, 0, 2132, 2131, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 5, 866, 0, 0, 2135, 2136, 3, 660, 330, 0, 2136, 2137, 5, 867, 0, 0, 2137, 2139, 1, 0, 0, 0, 2138, 1953, 1, 0, 0, 0, 2138, 1960, 1, 0, 0, 0, 2138, 1965, 1, 0, 0, 0, 2138, 1970, 1, 0, 0, 0, 2138, 1975, 1, 0, 0, 0, 2138, 1981, 1, 0, 0, 0, 2138, 1991, 1, 0, 0, 0, 2138, 1997, 1, 0, 0, 0, 2138, 2004, 1, 0, 0, 0, 2138, 2009, 1, 0, 0, 0, 2138, 2014, 1, 0, 0, 0, 2138, 2019, 1, 0, 0, 0, 2138, 2025, 1, 0, 0, 0, 2138, 2030, 1, 0, 0, 0, 2138, 2035, 1, 0, 0, 0, 2138, 2040, 1, 0, 0, 0, 2138, 2045, 1, 0, 0, 0, 2138, 2050, 1, 0, 0, 0, 2138, 2056, 1, 0, 0, 0, 2138, 2061, 1, 0, 0, 0, 2138, 2066, 1, 0, 0, 0, 2138, 2071, 1, 0, 0, 0, 2138, 2076, 1, 0, 0, 0, 2138, 2081, 1, 0, 0, 0, 2138, 2086, 1, 0, 0, 0, 2138, 2091, 1, 0, 0, 0, 2138, 2093, 1, 0, 0, 0, 2138, 2098, 1, 0, 0, 0, 2138, 2103, 1, 0, 0, 0, 2138, 2108, 1, 0, 0, 0, 2138, 2116, 1, 0, 0, 0, 2138, 2121, 1, 0, 0, 0, 2138, 2124, 1, 0, 0, 0, 2138, 2125, 1, 0, 0, 0, 2138, 2130, 1, 0, 0, 0, 2139, 105, 1, 0, 0, 0, 2140, 2141, 7, 33, 0, 0, 2141, 107, 1, 0, 0, 0, 2142, 2143, 5, 647, 0, 0, 2143, 2144, 7, 22, 0, 0, 2144, 109, 1, 0, 0, 0, 2145, 2146, 5, 130, 0, 0, 2146, 2147, 5, 20, 0, 0, 2147, 2150, 3, 112, 56, 0, 2148, 2149, 5, 528, 0, 0, 2149, 2151, 3, 722, 361, 0, 2150, 2148, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2159, 1, 0, 0, 0, 2152, 2153, 5, 652, 0, 0, 2153, 2154, 5, 20, 0, 0, 2154, 2157, 3, 114, 57, 0, 2155, 2156, 5, 653, 0, 0, 2156, 2158, 3, 722, 361, 0, 2157, 2155, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2152, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2172, 1, 0, 0, 0, 2161, 2162, 5, 866, 0, 0, 2162, 2167, 3, 116, 58, 0, 2163, 2164, 5, 868, 0, 0, 2164, 2166, 3, 116, 58, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2169, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2171, 5, 867, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2161, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 111, 1, 0, 0, 0, 2174, 2176, 5, 101, 0, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2178, 5, 418, 0, 0, 2178, 2179, 5, 866, 0, 0, 2179, 2180, 3, 814, 407, 0, 2180, 2181, 5, 867, 0, 0, 2181, 2221, 1, 0, 0, 0, 2182, 2184, 5, 101, 0, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2189, 5, 92, 0, 0, 2186, 2187, 5, 308, 0, 0, 2187, 2188, 5, 857, 0, 0, 2188, 2190, 7, 34, 0, 0, 2189, 2186, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2193, 5, 866, 0, 0, 2192, 2194, 3, 670, 335, 0, 2193, 2192, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2221, 5, 867, 0, 0, 2196, 2206, 5, 134, 0, 0, 2197, 2198, 5, 866, 0, 0, 2198, 2199, 3, 814, 407, 0, 2199, 2200, 5, 867, 0, 0, 2200, 2207, 1, 0, 0, 0, 2201, 2202, 5, 337, 0, 0, 2202, 2203, 5, 866, 0, 0, 2203, 2204, 3, 670, 335, 0, 2204, 2205, 5, 867, 0, 0, 2205, 2207, 1, 0, 0, 0, 2206, 2197, 1, 0, 0, 0, 2206, 2201, 1, 0, 0, 0, 2207, 2221, 1, 0, 0, 0, 2208, 2218, 5, 449, 0, 0, 2209, 2210, 5, 866, 0, 0, 2210, 2211, 3, 814, 407, 0, 2211, 2212, 5, 867, 0, 0, 2212, 2219, 1, 0, 0, 0, 2213, 2214, 5, 337, 0, 0, 2214, 2215, 5, 866, 0, 0, 2215, 2216, 3, 670, 335, 0, 2216, 2217, 5, 867, 0, 0, 2217, 2219, 1, 0, 0, 0, 2218, 2209, 1, 0, 0, 0, 2218, 2213, 1, 0, 0, 0, 2219, 2221, 1, 0, 0, 0, 2220, 2175, 1, 0, 0, 0, 2220, 2183, 1, 0, 0, 0, 2220, 2196, 1, 0, 0, 0, 2220, 2208, 1, 0, 0, 0, 2221, 113, 1, 0, 0, 0, 2222, 2224, 5, 101, 0, 0, 2223, 2222, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 5, 418, 0, 0, 2226, 2227, 5, 866, 0, 0, 2227, 2228, 3, 814, 407, 0, 2228, 2229, 5, 867, 0, 0, 2229, 2244, 1, 0, 0, 0, 2230, 2232, 5, 101, 0, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2237, 5, 92, 0, 0, 2234, 2235, 5, 308, 0, 0, 2235, 2236, 5, 857, 0, 0, 2236, 2238, 7, 34, 0, 0, 2237, 2234, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2240, 5, 866, 0, 0, 2240, 2241, 3, 670, 335, 0, 2241, 2242, 5, 867, 0, 0, 2242, 2244, 1, 0, 0, 0, 2243, 2223, 1, 0, 0, 0, 2243, 2231, 1, 0, 0, 0, 2244, 115, 1, 0, 0, 0, 2245, 2246, 5, 130, 0, 0, 2246, 2247, 3, 682, 341, 0, 2247, 2248, 5, 189, 0, 0, 2248, 2249, 5, 447, 0, 0, 2249, 2250, 5, 662, 0, 0, 2250, 2251, 5, 866, 0, 0, 2251, 2256, 3, 118, 59, 0, 2252, 2253, 5, 868, 0, 0, 2253, 2255, 3, 118, 59, 0, 2254, 2252, 1, 0, 0, 0, 2255, 2258, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2263, 5, 867, 0, 0, 2260, 2262, 3, 124, 62, 0, 2261, 2260, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2277, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 5, 866, 0, 0, 2267, 2272, 3, 122, 61, 0, 2268, 2269, 5, 868, 0, 0, 2269, 2271, 3, 122, 61, 0, 2270, 2268, 1, 0, 0, 0, 2271, 2274, 1, 0, 0, 0, 2272, 2270, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2275, 1, 0, 0, 0, 2274, 2272, 1, 0, 0, 0, 2275, 2276, 5, 867, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2266, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2392, 1, 0, 0, 0, 2279, 2280, 5, 130, 0, 0, 2280, 2281, 3, 682, 341, 0, 2281, 2282, 5, 189, 0, 0, 2282, 2283, 5, 447, 0, 0, 2283, 2284, 5, 662, 0, 0, 2284, 2288, 3, 118, 59, 0, 2285, 2287, 3, 124, 62, 0, 2286, 2285, 1, 0, 0, 0, 2287, 2290, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2302, 1, 0, 0, 0, 2290, 2288, 1, 0, 0, 0, 2291, 2292, 5, 866, 0, 0, 2292, 2297, 3, 122, 61, 0, 2293, 2294, 5, 868, 0, 0, 2294, 2296, 3, 122, 61, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2299, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2301, 5, 867, 0, 0, 2301, 2303, 1, 0, 0, 0, 2302, 2291, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2392, 1, 0, 0, 0, 2304, 2305, 5, 130, 0, 0, 2305, 2306, 3, 682, 341, 0, 2306, 2307, 5, 189, 0, 0, 2307, 2308, 5, 80, 0, 0, 2308, 2309, 5, 866, 0, 0, 2309, 2314, 3, 118, 59, 0, 2310, 2311, 5, 868, 0, 0, 2311, 2313, 3, 118, 59, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2316, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2321, 5, 867, 0, 0, 2318, 2320, 3, 124, 62, 0, 2319, 2318, 1, 0, 0, 0, 2320, 2323, 1, 0, 0, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2335, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2324, 2325, 5, 866, 0, 0, 2325, 2330, 3, 122, 61, 0, 2326, 2327, 5, 868, 0, 0, 2327, 2329, 3, 122, 61, 0, 2328, 2326, 1, 0, 0, 0, 2329, 2332, 1, 0, 0, 0, 2330, 2328, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2330, 1, 0, 0, 0, 2333, 2334, 5, 867, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2324, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 2392, 1, 0, 0, 0, 2337, 2338, 5, 130, 0, 0, 2338, 2339, 3, 682, 341, 0, 2339, 2340, 5, 189, 0, 0, 2340, 2341, 5, 80, 0, 0, 2341, 2342, 5, 866, 0, 0, 2342, 2347, 3, 120, 60, 0, 2343, 2344, 5, 868, 0, 0, 2344, 2346, 3, 120, 60, 0, 2345, 2343, 1, 0, 0, 0, 2346, 2349, 1, 0, 0, 0, 2347, 2345, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2350, 1, 0, 0, 0, 2349, 2347, 1, 0, 0, 0, 2350, 2354, 5, 867, 0, 0, 2351, 2353, 3, 124, 62, 0, 2352, 2351, 1, 0, 0, 0, 2353, 2356, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2368, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2358, 5, 866, 0, 0, 2358, 2363, 3, 122, 61, 0, 2359, 2360, 5, 868, 0, 0, 2360, 2362, 3, 122, 61, 0, 2361, 2359, 1, 0, 0, 0, 2362, 2365, 1, 0, 0, 0, 2363, 2361, 1, 0, 0, 0, 2363, 2364, 1, 0, 0, 0, 2364, 2366, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2367, 5, 867, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2357, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2392, 1, 0, 0, 0, 2370, 2371, 5, 130, 0, 0, 2371, 2375, 3, 682, 341, 0, 2372, 2374, 3, 124, 62, 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, 2389, 1, 0, 0, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2379, 5, 866, 0, 0, 2379, 2384, 3, 122, 61, 0, 2380, 2381, 5, 868, 0, 0, 2381, 2383, 3, 122, 61, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2387, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2387, 2388, 5, 867, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2378, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2392, 1, 0, 0, 0, 2391, 2245, 1, 0, 0, 0, 2391, 2279, 1, 0, 0, 0, 2391, 2304, 1, 0, 0, 0, 2391, 2337, 1, 0, 0, 0, 2391, 2370, 1, 0, 0, 0, 2392, 117, 1, 0, 0, 0, 2393, 2397, 3, 734, 367, 0, 2394, 2397, 3, 814, 407, 0, 2395, 2397, 5, 111, 0, 0, 2396, 2393, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2395, 1, 0, 0, 0, 2397, 119, 1, 0, 0, 0, 2398, 2399, 5, 866, 0, 0, 2399, 2402, 3, 118, 59, 0, 2400, 2401, 5, 868, 0, 0, 2401, 2403, 3, 118, 59, 0, 2402, 2400, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 5, 867, 0, 0, 2407, 121, 1, 0, 0, 0, 2408, 2409, 5, 652, 0, 0, 2409, 2413, 3, 716, 358, 0, 2410, 2412, 3, 124, 62, 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, 123, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2418, 5, 42, 0, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2421, 5, 647, 0, 0, 2420, 2419, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2424, 5, 380, 0, 0, 2423, 2425, 5, 857, 0, 0, 2424, 2423, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2465, 3, 702, 351, 0, 2427, 2429, 5, 340, 0, 0, 2428, 2430, 5, 857, 0, 0, 2429, 2428, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2465, 5, 882, 0, 0, 2432, 2433, 5, 360, 0, 0, 2433, 2435, 5, 367, 0, 0, 2434, 2436, 5, 857, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2465, 5, 882, 0, 0, 2438, 2439, 5, 82, 0, 0, 2439, 2441, 5, 367, 0, 0, 2440, 2442, 5, 857, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2465, 5, 882, 0, 0, 2444, 2446, 5, 480, 0, 0, 2445, 2447, 5, 857, 0, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2465, 3, 722, 361, 0, 2449, 2451, 5, 490, 0, 0, 2450, 2452, 5, 857, 0, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2465, 3, 722, 361, 0, 2454, 2456, 5, 658, 0, 0, 2455, 2457, 5, 857, 0, 0, 2456, 2455, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2465, 3, 676, 338, 0, 2459, 2461, 5, 504, 0, 0, 2460, 2462, 5, 857, 0, 0, 2461, 2460, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 3, 716, 358, 0, 2464, 2417, 1, 0, 0, 0, 2464, 2427, 1, 0, 0, 0, 2464, 2432, 1, 0, 0, 0, 2464, 2438, 1, 0, 0, 0, 2464, 2444, 1, 0, 0, 0, 2464, 2449, 1, 0, 0, 0, 2464, 2454, 1, 0, 0, 0, 2464, 2459, 1, 0, 0, 0, 2465, 125, 1, 0, 0, 0, 2466, 2467, 5, 8, 0, 0, 2467, 2469, 7, 0, 0, 0, 2468, 2470, 3, 638, 319, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 1, 0, 0, 0, 2471, 2473, 3, 56, 28, 0, 2472, 2471, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2485, 1, 0, 0, 0, 2476, 2477, 5, 8, 0, 0, 2477, 2478, 7, 0, 0, 0, 2478, 2479, 3, 638, 319, 0, 2479, 2480, 5, 677, 0, 0, 2480, 2481, 5, 360, 0, 0, 2481, 2482, 5, 367, 0, 0, 2482, 2483, 5, 496, 0, 0, 2483, 2485, 1, 0, 0, 0, 2484, 2466, 1, 0, 0, 0, 2484, 2476, 1, 0, 0, 0, 2485, 127, 1, 0, 0, 0, 2486, 2488, 5, 8, 0, 0, 2487, 2489, 3, 62, 31, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 5, 385, 0, 0, 2491, 2495, 3, 712, 356, 0, 2492, 2493, 5, 119, 0, 0, 2493, 2494, 5, 590, 0, 0, 2494, 2496, 3, 64, 32, 0, 2495, 2492, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2503, 1, 0, 0, 0, 2497, 2498, 5, 119, 0, 0, 2498, 2500, 5, 343, 0, 0, 2499, 2501, 5, 114, 0, 0, 2500, 2499, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2504, 5, 541, 0, 0, 2503, 2497, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2508, 1, 0, 0, 0, 2505, 2506, 5, 141, 0, 0, 2506, 2507, 5, 176, 0, 0, 2507, 2509, 3, 712, 356, 0, 2508, 2505, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2511, 1, 0, 0, 0, 2510, 2512, 3, 72, 36, 0, 2511, 2510, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2515, 1, 0, 0, 0, 2513, 2514, 5, 340, 0, 0, 2514, 2516, 5, 882, 0, 0, 2515, 2513, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2519, 1, 0, 0, 0, 2517, 2518, 5, 371, 0, 0, 2518, 2520, 3, 432, 216, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 129, 1, 0, 0, 0, 2521, 2522, 5, 8, 0, 0, 2522, 2523, 5, 409, 0, 0, 2523, 2527, 3, 642, 321, 0, 2524, 2526, 3, 82, 41, 0, 2525, 2524, 1, 0, 0, 0, 2526, 2529, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 131, 1, 0, 0, 0, 2529, 2527, 1, 0, 0, 0, 2530, 2531, 5, 8, 0, 0, 2531, 2532, 5, 433, 0, 0, 2532, 2533, 5, 585, 0, 0, 2533, 2534, 5, 801, 0, 0, 2534, 2535, 5, 453, 0, 0, 2535, 2536, 5, 92, 0, 0, 2536, 133, 1, 0, 0, 0, 2537, 2538, 5, 8, 0, 0, 2538, 2539, 5, 451, 0, 0, 2539, 2540, 5, 74, 0, 0, 2540, 2541, 3, 716, 358, 0, 2541, 2542, 5, 6, 0, 0, 2542, 2543, 5, 671, 0, 0, 2543, 2549, 5, 882, 0, 0, 2544, 2546, 5, 428, 0, 0, 2545, 2547, 5, 857, 0, 0, 2546, 2545, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2550, 3, 724, 362, 0, 2549, 2544, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 5, 687, 0, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2556, 5, 380, 0, 0, 2555, 2557, 5, 857, 0, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2559, 3, 702, 351, 0, 2559, 135, 1, 0, 0, 0, 2560, 2561, 5, 8, 0, 0, 2561, 2562, 5, 132, 0, 0, 2562, 2566, 3, 712, 356, 0, 2563, 2565, 3, 82, 41, 0, 2564, 2563, 1, 0, 0, 0, 2565, 2568, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2566, 2567, 1, 0, 0, 0, 2567, 137, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2569, 2570, 5, 8, 0, 0, 2570, 2571, 5, 592, 0, 0, 2571, 2572, 3, 716, 358, 0, 2572, 2573, 5, 518, 0, 0, 2573, 2574, 5, 866, 0, 0, 2574, 2579, 3, 84, 42, 0, 2575, 2576, 5, 868, 0, 0, 2576, 2578, 3, 84, 42, 0, 2577, 2575, 1, 0, 0, 0, 2578, 2581, 1, 0, 0, 0, 2579, 2577, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2582, 1, 0, 0, 0, 2581, 2579, 1, 0, 0, 0, 2582, 2583, 5, 867, 0, 0, 2583, 139, 1, 0, 0, 0, 2584, 2585, 5, 8, 0, 0, 2585, 2586, 5, 173, 0, 0, 2586, 2595, 3, 662, 331, 0, 2587, 2592, 3, 146, 73, 0, 2588, 2589, 5, 868, 0, 0, 2589, 2591, 3, 146, 73, 0, 2590, 2588, 1, 0, 0, 0, 2591, 2594, 1, 0, 0, 0, 2592, 2590, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2596, 1, 0, 0, 0, 2594, 2592, 1, 0, 0, 0, 2595, 2587, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2604, 1, 0, 0, 0, 2597, 2601, 3, 148, 74, 0, 2598, 2600, 3, 148, 74, 0, 2599, 2598, 1, 0, 0, 0, 2600, 2603, 1, 0, 0, 0, 2601, 2599, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2604, 2597, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 141, 1, 0, 0, 0, 2606, 2608, 5, 8, 0, 0, 2607, 2609, 5, 180, 0, 0, 2608, 2607, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2611, 5, 658, 0, 0, 2611, 2612, 3, 676, 338, 0, 2612, 2613, 7, 35, 0, 0, 2613, 2614, 5, 361, 0, 0, 2614, 2620, 5, 882, 0, 0, 2615, 2617, 5, 428, 0, 0, 2616, 2618, 5, 857, 0, 0, 2617, 2616, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2621, 3, 724, 362, 0, 2620, 2615, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2623, 1, 0, 0, 0, 2622, 2624, 5, 687, 0, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2628, 1, 0, 0, 0, 2625, 2626, 5, 141, 0, 0, 2626, 2627, 5, 176, 0, 0, 2627, 2629, 3, 674, 337, 0, 2628, 2625, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2635, 1, 0, 0, 0, 2630, 2632, 5, 314, 0, 0, 2631, 2633, 5, 857, 0, 0, 2632, 2631, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 3, 724, 362, 0, 2635, 2630, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2639, 1, 0, 0, 0, 2637, 2638, 5, 155, 0, 0, 2638, 2640, 7, 36, 0, 0, 2639, 2637, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2646, 1, 0, 0, 0, 2641, 2643, 5, 376, 0, 0, 2642, 2644, 5, 857, 0, 0, 2643, 2642, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2647, 5, 882, 0, 0, 2646, 2641, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2653, 1, 0, 0, 0, 2648, 2650, 5, 380, 0, 0, 2649, 2651, 5, 857, 0, 0, 2650, 2649, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, 3, 702, 351, 0, 2653, 2648, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 2660, 1, 0, 0, 0, 2655, 2657, 5, 825, 0, 0, 2656, 2658, 5, 857, 0, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2661, 5, 882, 0, 0, 2660, 2655, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 143, 1, 0, 0, 0, 2662, 2666, 5, 8, 0, 0, 2663, 2664, 5, 308, 0, 0, 2664, 2665, 5, 857, 0, 0, 2665, 2667, 7, 11, 0, 0, 2666, 2663, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2669, 1, 0, 0, 0, 2668, 2670, 3, 62, 31, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2674, 1, 0, 0, 0, 2671, 2672, 5, 162, 0, 0, 2672, 2673, 5, 591, 0, 0, 2673, 2675, 7, 12, 0, 0, 2674, 2671, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 5, 684, 0, 0, 2677, 2682, 3, 646, 323, 0, 2678, 2679, 5, 866, 0, 0, 2679, 2680, 3, 670, 335, 0, 2680, 2681, 5, 867, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2678, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 5, 13, 0, 0, 2685, 2692, 3, 210, 105, 0, 2686, 2688, 5, 194, 0, 0, 2687, 2689, 7, 13, 0, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 5, 27, 0, 0, 2691, 2693, 5, 121, 0, 0, 2692, 2686, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 145, 1, 0, 0, 0, 2694, 2701, 3, 104, 52, 0, 2695, 2697, 5, 868, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2700, 3, 104, 52, 0, 2699, 2696, 1, 0, 0, 0, 2700, 2703, 1, 0, 0, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2959, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2706, 5, 6, 0, 0, 2705, 2707, 5, 29, 0, 0, 2706, 2705, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2709, 3, 672, 336, 0, 2709, 2713, 3, 94, 47, 0, 2710, 2714, 5, 402, 0, 0, 2711, 2712, 5, 306, 0, 0, 2712, 2714, 3, 672, 336, 0, 2713, 2710, 1, 0, 0, 0, 2713, 2711, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2959, 1, 0, 0, 0, 2715, 2717, 5, 6, 0, 0, 2716, 2718, 5, 29, 0, 0, 2717, 2716, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2720, 5, 866, 0, 0, 2720, 2721, 3, 672, 336, 0, 2721, 2728, 3, 94, 47, 0, 2722, 2723, 5, 868, 0, 0, 2723, 2724, 3, 672, 336, 0, 2724, 2725, 3, 94, 47, 0, 2725, 2727, 1, 0, 0, 0, 2726, 2722, 1, 0, 0, 0, 2727, 2730, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 2731, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2731, 2732, 5, 867, 0, 0, 2732, 2959, 1, 0, 0, 0, 2733, 2734, 5, 6, 0, 0, 2734, 2736, 7, 19, 0, 0, 2735, 2737, 3, 652, 326, 0, 2736, 2735, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2739, 1, 0, 0, 0, 2738, 2740, 3, 74, 37, 0, 2739, 2738, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2745, 3, 748, 374, 0, 2742, 2744, 3, 76, 38, 0, 2743, 2742, 1, 0, 0, 0, 2744, 2747, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2959, 1, 0, 0, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2749, 5, 6, 0, 0, 2749, 2751, 7, 20, 0, 0, 2750, 2752, 7, 19, 0, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2754, 1, 0, 0, 0, 2753, 2755, 3, 652, 326, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2760, 3, 748, 374, 0, 2757, 2759, 3, 76, 38, 0, 2758, 2757, 1, 0, 0, 0, 2759, 2762, 1, 0, 0, 0, 2760, 2758, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2959, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2763, 2768, 5, 6, 0, 0, 2764, 2766, 5, 31, 0, 0, 2765, 2767, 3, 716, 358, 0, 2766, 2765, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2764, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2771, 5, 131, 0, 0, 2771, 2773, 5, 92, 0, 0, 2772, 2774, 3, 74, 37, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2779, 3, 748, 374, 0, 2776, 2778, 3, 76, 38, 0, 2777, 2776, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2959, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2787, 5, 6, 0, 0, 2783, 2785, 5, 31, 0, 0, 2784, 2786, 3, 716, 358, 0, 2785, 2784, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2788, 1, 0, 0, 0, 2787, 2783, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2791, 5, 182, 0, 0, 2790, 2792, 7, 19, 0, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2794, 1, 0, 0, 0, 2793, 2795, 3, 652, 326, 0, 2794, 2793, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 1, 0, 0, 0, 2796, 2798, 3, 74, 37, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2803, 3, 748, 374, 0, 2800, 2802, 3, 76, 38, 0, 2801, 2800, 1, 0, 0, 0, 2802, 2805, 1, 0, 0, 0, 2803, 2801, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2959, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2806, 2811, 5, 6, 0, 0, 2807, 2809, 5, 31, 0, 0, 2808, 2810, 3, 716, 358, 0, 2809, 2808, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 2812, 1, 0, 0, 0, 2811, 2807, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2814, 5, 67, 0, 0, 2814, 2816, 5, 92, 0, 0, 2815, 2817, 3, 652, 326, 0, 2816, 2815, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2819, 3, 748, 374, 0, 2819, 2820, 3, 98, 49, 0, 2820, 2959, 1, 0, 0, 0, 2821, 2823, 5, 6, 0, 0, 2822, 2824, 3, 90, 45, 0, 2823, 2822, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2959, 1, 0, 0, 0, 2825, 2826, 5, 51, 0, 0, 2826, 2827, 7, 37, 0, 0, 2827, 2959, 3, 716, 358, 0, 2828, 2829, 5, 8, 0, 0, 2829, 2830, 7, 37, 0, 0, 2830, 2832, 3, 716, 358, 0, 2831, 2833, 5, 114, 0, 0, 2832, 2831, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2835, 1, 0, 0, 0, 2834, 2836, 5, 57, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2959, 1, 0, 0, 0, 2837, 2839, 5, 308, 0, 0, 2838, 2840, 5, 857, 0, 0, 2839, 2838, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2959, 7, 38, 0, 0, 2842, 2844, 5, 8, 0, 0, 2843, 2845, 5, 29, 0, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2854, 3, 672, 336, 0, 2847, 2848, 5, 155, 0, 0, 2848, 2849, 5, 42, 0, 0, 2849, 2855, 3, 764, 382, 0, 2850, 2851, 5, 155, 0, 0, 2851, 2855, 7, 17, 0, 0, 2852, 2853, 5, 51, 0, 0, 2853, 2855, 5, 42, 0, 0, 2854, 2847, 1, 0, 0, 0, 2854, 2850, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2855, 2959, 1, 0, 0, 0, 2856, 2857, 5, 8, 0, 0, 2857, 2858, 5, 82, 0, 0, 2858, 2859, 3, 652, 326, 0, 2859, 2860, 7, 17, 0, 0, 2860, 2959, 1, 0, 0, 0, 2861, 2863, 5, 25, 0, 0, 2862, 2864, 5, 29, 0, 0, 2863, 2862, 1, 0, 0, 0, 2863, 2864, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2866, 3, 672, 336, 0, 2866, 2867, 3, 668, 334, 0, 2867, 2871, 3, 94, 47, 0, 2868, 2872, 5, 402, 0, 0, 2869, 2870, 5, 306, 0, 0, 2870, 2872, 3, 672, 336, 0, 2871, 2868, 1, 0, 0, 0, 2871, 2869, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2959, 1, 0, 0, 0, 2873, 2875, 5, 42, 0, 0, 2874, 2873, 1, 0, 0, 0, 2874, 2875, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2877, 5, 26, 0, 0, 2877, 2878, 5, 155, 0, 0, 2878, 2879, 5, 857, 0, 0, 2879, 2885, 3, 698, 349, 0, 2880, 2882, 5, 28, 0, 0, 2881, 2883, 5, 857, 0, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2886, 3, 700, 350, 0, 2885, 2880, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2959, 1, 0, 0, 0, 2887, 2888, 5, 33, 0, 0, 2888, 2892, 5, 176, 0, 0, 2889, 2893, 5, 823, 0, 0, 2890, 2891, 5, 26, 0, 0, 2891, 2893, 5, 155, 0, 0, 2892, 2889, 1, 0, 0, 0, 2892, 2890, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2897, 3, 698, 349, 0, 2895, 2896, 5, 28, 0, 0, 2896, 2898, 3, 700, 350, 0, 2897, 2895, 1, 0, 0, 0, 2897, 2898, 1, 0, 0, 0, 2898, 2959, 1, 0, 0, 0, 2899, 2900, 7, 39, 0, 0, 2900, 2959, 5, 93, 0, 0, 2901, 2902, 7, 40, 0, 0, 2902, 2959, 5, 658, 0, 0, 2903, 2905, 5, 51, 0, 0, 2904, 2906, 5, 29, 0, 0, 2905, 2904, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2959, 3, 672, 336, 0, 2908, 2909, 5, 51, 0, 0, 2909, 2910, 7, 19, 0, 0, 2910, 2959, 3, 652, 326, 0, 2911, 2912, 5, 51, 0, 0, 2912, 2913, 5, 131, 0, 0, 2913, 2959, 5, 92, 0, 0, 2914, 2915, 5, 51, 0, 0, 2915, 2916, 5, 67, 0, 0, 2916, 2917, 5, 92, 0, 0, 2917, 2959, 3, 716, 358, 0, 2918, 2959, 5, 66, 0, 0, 2919, 2921, 5, 104, 0, 0, 2920, 2922, 5, 857, 0, 0, 2921, 2920, 1, 0, 0, 0, 2921, 2922, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2959, 7, 4, 0, 0, 2924, 2926, 5, 492, 0, 0, 2925, 2927, 5, 29, 0, 0, 2926, 2925, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2929, 3, 672, 336, 0, 2929, 2933, 3, 94, 47, 0, 2930, 2934, 5, 402, 0, 0, 2931, 2932, 5, 306, 0, 0, 2932, 2934, 3, 672, 336, 0, 2933, 2930, 1, 0, 0, 0, 2933, 2931, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2959, 1, 0, 0, 0, 2935, 2936, 5, 125, 0, 0, 2936, 2937, 5, 20, 0, 0, 2937, 2959, 3, 670, 335, 0, 2938, 2939, 5, 141, 0, 0, 2939, 2940, 5, 29, 0, 0, 2940, 2941, 3, 672, 336, 0, 2941, 2942, 5, 176, 0, 0, 2942, 2943, 3, 668, 334, 0, 2943, 2959, 1, 0, 0, 0, 2944, 2945, 5, 141, 0, 0, 2945, 2946, 7, 19, 0, 0, 2946, 2947, 3, 652, 326, 0, 2947, 2948, 5, 176, 0, 0, 2948, 2949, 3, 648, 324, 0, 2949, 2959, 1, 0, 0, 0, 2950, 2952, 5, 141, 0, 0, 2951, 2953, 7, 41, 0, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2959, 3, 658, 329, 0, 2955, 2956, 7, 42, 0, 0, 2956, 2959, 5, 681, 0, 0, 2957, 2959, 3, 148, 74, 0, 2958, 2694, 1, 0, 0, 0, 2958, 2704, 1, 0, 0, 0, 2958, 2715, 1, 0, 0, 0, 2958, 2733, 1, 0, 0, 0, 2958, 2748, 1, 0, 0, 0, 2958, 2763, 1, 0, 0, 0, 2958, 2782, 1, 0, 0, 0, 2958, 2806, 1, 0, 0, 0, 2958, 2821, 1, 0, 0, 0, 2958, 2825, 1, 0, 0, 0, 2958, 2828, 1, 0, 0, 0, 2958, 2837, 1, 0, 0, 0, 2958, 2842, 1, 0, 0, 0, 2958, 2856, 1, 0, 0, 0, 2958, 2861, 1, 0, 0, 0, 2958, 2874, 1, 0, 0, 0, 2958, 2887, 1, 0, 0, 0, 2958, 2899, 1, 0, 0, 0, 2958, 2901, 1, 0, 0, 0, 2958, 2903, 1, 0, 0, 0, 2958, 2908, 1, 0, 0, 0, 2958, 2911, 1, 0, 0, 0, 2958, 2914, 1, 0, 0, 0, 2958, 2918, 1, 0, 0, 0, 2958, 2919, 1, 0, 0, 0, 2958, 2924, 1, 0, 0, 0, 2958, 2935, 1, 0, 0, 0, 2958, 2938, 1, 0, 0, 0, 2958, 2944, 1, 0, 0, 0, 2958, 2950, 1, 0, 0, 0, 2958, 2955, 1, 0, 0, 0, 2958, 2957, 1, 0, 0, 0, 2959, 147, 1, 0, 0, 0, 2960, 2961, 5, 6, 0, 0, 2961, 2962, 5, 130, 0, 0, 2962, 2963, 5, 866, 0, 0, 2963, 2968, 3, 116, 58, 0, 2964, 2965, 5, 868, 0, 0, 2965, 2967, 3, 116, 58, 0, 2966, 2964, 1, 0, 0, 0, 2967, 2970, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2971, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2972, 5, 867, 0, 0, 2972, 3059, 1, 0, 0, 0, 2973, 2974, 5, 51, 0, 0, 2974, 2975, 5, 130, 0, 0, 2975, 3059, 3, 680, 340, 0, 2976, 2977, 5, 369, 0, 0, 2977, 2980, 5, 130, 0, 0, 2978, 2981, 3, 680, 340, 0, 2979, 2981, 5, 7, 0, 0, 2980, 2978, 1, 0, 0, 0, 2980, 2979, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 3059, 5, 658, 0, 0, 2983, 2984, 5, 425, 0, 0, 2984, 2987, 5, 130, 0, 0, 2985, 2988, 3, 680, 340, 0, 2986, 2988, 5, 7, 0, 0, 2987, 2985, 1, 0, 0, 0, 2987, 2986, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 3059, 5, 658, 0, 0, 2990, 2991, 5, 668, 0, 0, 2991, 2994, 5, 130, 0, 0, 2992, 2995, 3, 680, 340, 0, 2993, 2995, 5, 7, 0, 0, 2994, 2992, 1, 0, 0, 0, 2994, 2993, 1, 0, 0, 0, 2995, 3059, 1, 0, 0, 0, 2996, 2997, 5, 335, 0, 0, 2997, 2998, 5, 130, 0, 0, 2998, 3059, 3, 722, 361, 0, 2999, 3000, 5, 561, 0, 0, 3000, 3001, 5, 130, 0, 0, 3001, 3002, 3, 680, 340, 0, 3002, 3003, 5, 88, 0, 0, 3003, 3004, 5, 866, 0, 0, 3004, 3009, 3, 116, 58, 0, 3005, 3006, 5, 868, 0, 0, 3006, 3008, 3, 116, 58, 0, 3007, 3005, 1, 0, 0, 0, 3008, 3011, 1, 0, 0, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3009, 1, 0, 0, 0, 3012, 3013, 5, 867, 0, 0, 3013, 3059, 1, 0, 0, 0, 3014, 3015, 5, 388, 0, 0, 3015, 3016, 5, 130, 0, 0, 3016, 3017, 3, 682, 341, 0, 3017, 3018, 5, 194, 0, 0, 3018, 3019, 5, 173, 0, 0, 3019, 3022, 3, 662, 331, 0, 3020, 3021, 7, 42, 0, 0, 3021, 3023, 5, 681, 0, 0, 3022, 3020, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3059, 1, 0, 0, 0, 3024, 3025, 5, 10, 0, 0, 3025, 3028, 5, 130, 0, 0, 3026, 3029, 3, 680, 340, 0, 3027, 3029, 5, 7, 0, 0, 3028, 3026, 1, 0, 0, 0, 3028, 3027, 1, 0, 0, 0, 3029, 3059, 1, 0, 0, 0, 3030, 3031, 5, 27, 0, 0, 3031, 3034, 5, 130, 0, 0, 3032, 3035, 3, 680, 340, 0, 3033, 3035, 5, 7, 0, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 3059, 1, 0, 0, 0, 3036, 3037, 5, 120, 0, 0, 3037, 3040, 5, 130, 0, 0, 3038, 3041, 3, 680, 340, 0, 3039, 3041, 5, 7, 0, 0, 3040, 3038, 1, 0, 0, 0, 3040, 3039, 1, 0, 0, 0, 3041, 3059, 1, 0, 0, 0, 3042, 3043, 5, 550, 0, 0, 3043, 3046, 5, 130, 0, 0, 3044, 3047, 3, 680, 340, 0, 3045, 3047, 5, 7, 0, 0, 3046, 3044, 1, 0, 0, 0, 3046, 3045, 1, 0, 0, 0, 3047, 3059, 1, 0, 0, 0, 3048, 3049, 5, 562, 0, 0, 3049, 3052, 5, 130, 0, 0, 3050, 3053, 3, 680, 340, 0, 3051, 3053, 5, 7, 0, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3059, 1, 0, 0, 0, 3054, 3055, 5, 560, 0, 0, 3055, 3059, 5, 527, 0, 0, 3056, 3057, 5, 677, 0, 0, 3057, 3059, 5, 527, 0, 0, 3058, 2960, 1, 0, 0, 0, 3058, 2973, 1, 0, 0, 0, 3058, 2976, 1, 0, 0, 0, 3058, 2983, 1, 0, 0, 0, 3058, 2990, 1, 0, 0, 0, 3058, 2996, 1, 0, 0, 0, 3058, 2999, 1, 0, 0, 0, 3058, 3014, 1, 0, 0, 0, 3058, 3024, 1, 0, 0, 0, 3058, 3030, 1, 0, 0, 0, 3058, 3036, 1, 0, 0, 0, 3058, 3042, 1, 0, 0, 0, 3058, 3048, 1, 0, 0, 0, 3058, 3054, 1, 0, 0, 0, 3058, 3056, 1, 0, 0, 0, 3059, 149, 1, 0, 0, 0, 3060, 3061, 5, 51, 0, 0, 3061, 3063, 7, 0, 0, 0, 3062, 3064, 3, 768, 384, 0, 3063, 3062, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3065, 1, 0, 0, 0, 3065, 3066, 3, 638, 319, 0, 3066, 151, 1, 0, 0, 0, 3067, 3068, 5, 51, 0, 0, 3068, 3070, 5, 385, 0, 0, 3069, 3071, 3, 768, 384, 0, 3070, 3069, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 3, 712, 356, 0, 3073, 153, 1, 0, 0, 0, 3074, 3075, 5, 51, 0, 0, 3075, 3077, 5, 82, 0, 0, 3076, 3078, 7, 1, 0, 0, 3077, 3076, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3080, 3, 652, 326, 0, 3080, 3081, 5, 119, 0, 0, 3081, 3094, 3, 662, 331, 0, 3082, 3084, 5, 308, 0, 0, 3083, 3085, 5, 857, 0, 0, 3084, 3083, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3093, 7, 3, 0, 0, 3087, 3089, 5, 104, 0, 0, 3088, 3090, 5, 857, 0, 0, 3089, 3088, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3093, 7, 4, 0, 0, 3092, 3082, 1, 0, 0, 0, 3092, 3087, 1, 0, 0, 0, 3093, 3096, 1, 0, 0, 0, 3094, 3092, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 155, 1, 0, 0, 0, 3096, 3094, 1, 0, 0, 0, 3097, 3098, 5, 51, 0, 0, 3098, 3099, 5, 451, 0, 0, 3099, 3100, 5, 74, 0, 0, 3100, 3101, 3, 716, 358, 0, 3101, 3103, 5, 380, 0, 0, 3102, 3104, 5, 857, 0, 0, 3103, 3102, 1, 0, 0, 0, 3103, 3104, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3106, 3, 702, 351, 0, 3106, 157, 1, 0, 0, 0, 3107, 3108, 5, 51, 0, 0, 3108, 3110, 5, 132, 0, 0, 3109, 3111, 3, 768, 384, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 3, 712, 356, 0, 3113, 159, 1, 0, 0, 0, 3114, 3115, 5, 51, 0, 0, 3115, 3117, 5, 409, 0, 0, 3116, 3118, 3, 768, 384, 0, 3117, 3116, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 3, 642, 321, 0, 3120, 161, 1, 0, 0, 0, 3121, 3122, 5, 51, 0, 0, 3122, 3124, 5, 592, 0, 0, 3123, 3125, 3, 768, 384, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3127, 3, 716, 358, 0, 3127, 163, 1, 0, 0, 0, 3128, 3129, 5, 51, 0, 0, 3129, 3130, 5, 161, 0, 0, 3130, 3131, 5, 137, 0, 0, 3131, 3133, 5, 835, 0, 0, 3132, 3134, 3, 768, 384, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 5, 883, 0, 0, 3136, 165, 1, 0, 0, 0, 3137, 3139, 5, 51, 0, 0, 3138, 3140, 5, 660, 0, 0, 3139, 3138, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3143, 5, 173, 0, 0, 3142, 3144, 3, 768, 384, 0, 3143, 3142, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3147, 3, 660, 330, 0, 3146, 3148, 7, 43, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 167, 1, 0, 0, 0, 3149, 3151, 5, 51, 0, 0, 3150, 3152, 5, 180, 0, 0, 3151, 3150, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 5, 658, 0, 0, 3154, 3160, 3, 676, 338, 0, 3155, 3157, 5, 380, 0, 0, 3156, 3158, 5, 857, 0, 0, 3157, 3156, 1, 0, 0, 0, 3157, 3158, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3161, 3, 702, 351, 0, 3160, 3155, 1, 0, 0, 0, 3160, 3161, 1, 0, 0, 0, 3161, 169, 1, 0, 0, 0, 3162, 3163, 5, 51, 0, 0, 3163, 3165, 5, 178, 0, 0, 3164, 3166, 3, 768, 384, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3168, 3, 712, 356, 0, 3168, 171, 1, 0, 0, 0, 3169, 3170, 5, 51, 0, 0, 3170, 3172, 5, 684, 0, 0, 3171, 3173, 3, 768, 384, 0, 3172, 3171, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3179, 3, 646, 323, 0, 3175, 3176, 5, 868, 0, 0, 3176, 3178, 3, 646, 323, 0, 3177, 3175, 1, 0, 0, 0, 3178, 3181, 1, 0, 0, 0, 3179, 3177, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3183, 1, 0, 0, 0, 3181, 3179, 1, 0, 0, 0, 3182, 3184, 7, 43, 0, 0, 3183, 3182, 1, 0, 0, 0, 3183, 3184, 1, 0, 0, 0, 3184, 173, 1, 0, 0, 0, 3185, 3186, 5, 51, 0, 0, 3186, 3188, 5, 582, 0, 0, 3187, 3189, 3, 768, 384, 0, 3188, 3187, 1, 0, 0, 0, 3188, 3189, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3191, 3, 664, 332, 0, 3191, 175, 1, 0, 0, 0, 3192, 3193, 5, 155, 0, 0, 3193, 3194, 5, 42, 0, 0, 3194, 3198, 5, 582, 0, 0, 3195, 3199, 5, 505, 0, 0, 3196, 3199, 5, 7, 0, 0, 3197, 3199, 3, 664, 332, 0, 3198, 3195, 1, 0, 0, 0, 3198, 3196, 1, 0, 0, 0, 3198, 3197, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 5, 176, 0, 0, 3201, 3206, 3, 666, 333, 0, 3202, 3203, 5, 868, 0, 0, 3203, 3205, 3, 666, 333, 0, 3204, 3202, 1, 0, 0, 0, 3205, 3208, 1, 0, 0, 0, 3206, 3204, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3213, 1, 0, 0, 0, 3208, 3206, 1, 0, 0, 0, 3209, 3210, 5, 155, 0, 0, 3210, 3211, 5, 582, 0, 0, 3211, 3213, 3, 478, 239, 0, 3212, 3192, 1, 0, 0, 0, 3212, 3209, 1, 0, 0, 0, 3213, 177, 1, 0, 0, 0, 3214, 3215, 5, 141, 0, 0, 3215, 3216, 5, 173, 0, 0, 3216, 3221, 3, 180, 90, 0, 3217, 3218, 5, 868, 0, 0, 3218, 3220, 3, 180, 90, 0, 3219, 3217, 1, 0, 0, 0, 3220, 3223, 1, 0, 0, 0, 3221, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 179, 1, 0, 0, 0, 3223, 3221, 1, 0, 0, 0, 3224, 3225, 3, 662, 331, 0, 3225, 3226, 5, 176, 0, 0, 3226, 3227, 3, 658, 329, 0, 3227, 181, 1, 0, 0, 0, 3228, 3230, 5, 668, 0, 0, 3229, 3231, 5, 173, 0, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 3, 662, 331, 0, 3233, 183, 1, 0, 0, 0, 3234, 3235, 5, 21, 0, 0, 3235, 3242, 3, 712, 356, 0, 3236, 3239, 5, 866, 0, 0, 3237, 3240, 3, 758, 379, 0, 3238, 3240, 3, 750, 375, 0, 3239, 3237, 1, 0, 0, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 5, 867, 0, 0, 3242, 3236, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 185, 1, 0, 0, 0, 3244, 3247, 3, 240, 120, 0, 3245, 3247, 3, 242, 121, 0, 3246, 3244, 1, 0, 0, 0, 3246, 3245, 1, 0, 0, 0, 3247, 187, 1, 0, 0, 0, 3248, 3249, 5, 371, 0, 0, 3249, 3250, 3, 750, 375, 0, 3250, 189, 1, 0, 0, 0, 3251, 3256, 3, 244, 122, 0, 3252, 3256, 3, 246, 123, 0, 3253, 3256, 3, 248, 124, 0, 3254, 3256, 3, 250, 125, 0, 3255, 3251, 1, 0, 0, 0, 3255, 3252, 1, 0, 0, 0, 3255, 3253, 1, 0, 0, 0, 3255, 3254, 1, 0, 0, 0, 3256, 191, 1, 0, 0, 0, 3257, 3259, 5, 86, 0, 0, 3258, 3260, 7, 44, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3262, 1, 0, 0, 0, 3261, 3263, 5, 79, 0, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3266, 5, 88, 0, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3274, 3, 662, 331, 0, 3268, 3269, 5, 130, 0, 0, 3269, 3271, 5, 866, 0, 0, 3270, 3272, 3, 680, 340, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3275, 5, 867, 0, 0, 3274, 3268, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3287, 1, 0, 0, 0, 3276, 3278, 3, 270, 135, 0, 3277, 3276, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3281, 1, 0, 0, 0, 3279, 3282, 3, 752, 376, 0, 3280, 3282, 3, 196, 98, 0, 3281, 3279, 1, 0, 0, 0, 3281, 3280, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3284, 1, 0, 0, 0, 3283, 3285, 3, 194, 97, 0, 3284, 3283, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3288, 3, 232, 116, 0, 3287, 3277, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 194, 97, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3304, 1, 0, 0, 0, 3292, 3293, 5, 119, 0, 0, 3293, 3294, 5, 373, 0, 0, 3294, 3295, 5, 92, 0, 0, 3295, 3296, 5, 185, 0, 0, 3296, 3301, 3, 234, 117, 0, 3297, 3298, 5, 868, 0, 0, 3298, 3300, 3, 234, 117, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3303, 1, 0, 0, 0, 3301, 3299, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3305, 1, 0, 0, 0, 3303, 3301, 1, 0, 0, 0, 3304, 3292, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 193, 1, 0, 0, 0, 3306, 3307, 5, 13, 0, 0, 3307, 3309, 3, 716, 358, 0, 3308, 3310, 3, 270, 135, 0, 3309, 3308, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 195, 1, 0, 0, 0, 3311, 3316, 3, 210, 105, 0, 3312, 3313, 5, 173, 0, 0, 3313, 3316, 3, 662, 331, 0, 3314, 3316, 3, 230, 115, 0, 3315, 3311, 1, 0, 0, 0, 3315, 3312, 1, 0, 0, 0, 3315, 3314, 1, 0, 0, 0, 3316, 197, 1, 0, 0, 0, 3317, 3323, 3, 200, 100, 0, 3318, 3320, 5, 828, 0, 0, 3319, 3321, 7, 45, 0, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3322, 1, 0, 0, 0, 3322, 3324, 3, 200, 100, 0, 3323, 3318, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3323, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 199, 1, 0, 0, 0, 3327, 3329, 5, 866, 0, 0, 3328, 3327, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 3, 282, 141, 0, 3331, 3333, 5, 867, 0, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 201, 1, 0, 0, 0, 3334, 3335, 5, 103, 0, 0, 3335, 3337, 5, 360, 0, 0, 3336, 3338, 7, 46, 0, 0, 3337, 3336, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3340, 1, 0, 0, 0, 3339, 3341, 5, 450, 0, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 5, 83, 0, 0, 3343, 3345, 5, 882, 0, 0, 3344, 3346, 7, 7, 0, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3348, 5, 88, 0, 0, 3348, 3349, 5, 173, 0, 0, 3349, 3355, 3, 662, 331, 0, 3350, 3351, 5, 130, 0, 0, 3351, 3352, 5, 866, 0, 0, 3352, 3353, 3, 680, 340, 0, 3353, 3354, 5, 867, 0, 0, 3354, 3356, 1, 0, 0, 0, 3355, 3350, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3360, 1, 0, 0, 0, 3357, 3358, 5, 26, 0, 0, 3358, 3359, 5, 155, 0, 0, 3359, 3361, 3, 698, 349, 0, 3360, 3357, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 3368, 1, 0, 0, 0, 3362, 3364, 7, 47, 0, 0, 3363, 3365, 3, 314, 157, 0, 3364, 3363, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3364, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3369, 1, 0, 0, 0, 3368, 3362, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3376, 1, 0, 0, 0, 3370, 3372, 5, 102, 0, 0, 3371, 3373, 3, 316, 158, 0, 3372, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3377, 1, 0, 0, 0, 3376, 3370, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3382, 1, 0, 0, 0, 3378, 3379, 5, 79, 0, 0, 3379, 3380, 3, 722, 361, 0, 3380, 3381, 7, 48, 0, 0, 3381, 3383, 1, 0, 0, 0, 3382, 3378, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3395, 1, 0, 0, 0, 3384, 3385, 5, 866, 0, 0, 3385, 3390, 3, 236, 118, 0, 3386, 3387, 5, 868, 0, 0, 3387, 3389, 3, 236, 118, 0, 3388, 3386, 1, 0, 0, 0, 3389, 3392, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3393, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3393, 3394, 5, 867, 0, 0, 3394, 3396, 1, 0, 0, 0, 3395, 3384, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3406, 1, 0, 0, 0, 3397, 3398, 5, 155, 0, 0, 3398, 3403, 3, 234, 117, 0, 3399, 3400, 5, 868, 0, 0, 3400, 3402, 3, 234, 117, 0, 3401, 3399, 1, 0, 0, 0, 3402, 3405, 1, 0, 0, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3407, 1, 0, 0, 0, 3405, 3403, 1, 0, 0, 0, 3406, 3397, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 203, 1, 0, 0, 0, 3408, 3409, 5, 103, 0, 0, 3409, 3411, 5, 695, 0, 0, 3410, 3412, 7, 46, 0, 0, 3411, 3410, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3414, 1, 0, 0, 0, 3413, 3415, 5, 450, 0, 0, 3414, 3413, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3417, 5, 83, 0, 0, 3417, 3419, 5, 882, 0, 0, 3418, 3420, 7, 7, 0, 0, 3419, 3418, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3422, 5, 88, 0, 0, 3422, 3423, 5, 173, 0, 0, 3423, 3427, 3, 662, 331, 0, 3424, 3425, 5, 26, 0, 0, 3425, 3426, 5, 155, 0, 0, 3426, 3428, 3, 698, 349, 0, 3427, 3424, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3439, 1, 0, 0, 0, 3429, 3430, 5, 587, 0, 0, 3430, 3431, 5, 423, 0, 0, 3431, 3433, 5, 20, 0, 0, 3432, 3434, 5, 859, 0, 0, 3433, 3432, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3437, 5, 882, 0, 0, 3436, 3438, 5, 858, 0, 0, 3437, 3436, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3440, 1, 0, 0, 0, 3439, 3429, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3445, 1, 0, 0, 0, 3441, 3442, 5, 79, 0, 0, 3442, 3443, 3, 722, 361, 0, 3443, 3444, 7, 48, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3441, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3458, 1, 0, 0, 0, 3447, 3448, 5, 866, 0, 0, 3448, 3453, 3, 236, 118, 0, 3449, 3450, 5, 868, 0, 0, 3450, 3452, 3, 236, 118, 0, 3451, 3449, 1, 0, 0, 0, 3452, 3455, 1, 0, 0, 0, 3453, 3451, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3456, 1, 0, 0, 0, 3455, 3453, 1, 0, 0, 0, 3456, 3457, 5, 867, 0, 0, 3457, 3459, 1, 0, 0, 0, 3458, 3447, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3469, 1, 0, 0, 0, 3460, 3461, 5, 155, 0, 0, 3461, 3466, 3, 234, 117, 0, 3462, 3463, 5, 868, 0, 0, 3463, 3465, 3, 234, 117, 0, 3464, 3462, 1, 0, 0, 0, 3465, 3468, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3470, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3469, 3460, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 205, 1, 0, 0, 0, 3471, 3472, 5, 866, 0, 0, 3472, 3474, 3, 224, 112, 0, 3473, 3475, 3, 258, 129, 0, 3474, 3473, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3477, 1, 0, 0, 0, 3476, 3478, 3, 328, 164, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3481, 5, 867, 0, 0, 3480, 3482, 3, 258, 129, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3485, 3, 328, 164, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3487, 1, 0, 0, 0, 3486, 3488, 3, 312, 156, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 207, 1, 0, 0, 0, 3489, 3491, 5, 143, 0, 0, 3490, 3492, 7, 49, 0, 0, 3491, 3490, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3494, 1, 0, 0, 0, 3493, 3495, 5, 88, 0, 0, 3494, 3493, 1, 0, 0, 0, 3494, 3495, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 3502, 3, 662, 331, 0, 3497, 3498, 5, 130, 0, 0, 3498, 3499, 5, 866, 0, 0, 3499, 3500, 3, 680, 340, 0, 3500, 3501, 5, 867, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3497, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3512, 1, 0, 0, 0, 3504, 3505, 5, 866, 0, 0, 3505, 3506, 3, 670, 335, 0, 3506, 3507, 5, 867, 0, 0, 3507, 3509, 1, 0, 0, 0, 3508, 3504, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3513, 3, 228, 114, 0, 3511, 3513, 3, 232, 116, 0, 3512, 3508, 1, 0, 0, 0, 3512, 3511, 1, 0, 0, 0, 3513, 209, 1, 0, 0, 0, 3514, 3518, 3, 282, 141, 0, 3515, 3517, 3, 284, 142, 0, 3516, 3515, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3529, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3523, 5, 181, 0, 0, 3522, 3524, 7, 45, 0, 0, 3523, 3522, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3528, 3, 282, 141, 0, 3526, 3528, 3, 280, 140, 0, 3527, 3525, 1, 0, 0, 0, 3527, 3526, 1, 0, 0, 0, 3528, 3530, 1, 0, 0, 0, 3529, 3521, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3535, 1, 0, 0, 0, 3531, 3532, 5, 868, 0, 0, 3532, 3534, 3, 286, 143, 0, 3533, 3531, 1, 0, 0, 0, 3534, 3537, 1, 0, 0, 0, 3535, 3533, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3539, 1, 0, 0, 0, 3537, 3535, 1, 0, 0, 0, 3538, 3540, 3, 258, 129, 0, 3539, 3538, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3542, 1, 0, 0, 0, 3541, 3543, 3, 328, 164, 0, 3542, 3541, 1, 0, 0, 0, 3542, 3543, 1, 0, 0, 0, 3543, 3545, 1, 0, 0, 0, 3544, 3546, 3, 238, 119, 0, 3545, 3544, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3548, 1, 0, 0, 0, 3547, 3549, 3, 312, 156, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3574, 1, 0, 0, 0, 3550, 3554, 3, 280, 140, 0, 3551, 3553, 3, 284, 142, 0, 3552, 3551, 1, 0, 0, 0, 3553, 3556, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3562, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3557, 3559, 5, 181, 0, 0, 3558, 3560, 7, 45, 0, 0, 3559, 3558, 1, 0, 0, 0, 3559, 3560, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 3, 280, 140, 0, 3562, 3557, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3565, 1, 0, 0, 0, 3564, 3566, 3, 258, 129, 0, 3565, 3564, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3569, 3, 328, 164, 0, 3568, 3567, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3572, 3, 238, 119, 0, 3571, 3570, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3574, 1, 0, 0, 0, 3573, 3514, 1, 0, 0, 0, 3573, 3550, 1, 0, 0, 0, 3574, 211, 1, 0, 0, 0, 3575, 3577, 3, 50, 25, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3580, 3, 214, 107, 0, 3579, 3581, 3, 258, 129, 0, 3580, 3579, 1, 0, 0, 0, 3580, 3581, 1, 0, 0, 0, 3581, 3583, 1, 0, 0, 0, 3582, 3584, 3, 328, 164, 0, 3583, 3582, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3586, 1, 0, 0, 0, 3585, 3587, 3, 312, 156, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 213, 1, 0, 0, 0, 3588, 3589, 6, 107, -1, 0, 3589, 3590, 3, 216, 108, 0, 3590, 3605, 1, 0, 0, 0, 3591, 3592, 10, 2, 0, 0, 3592, 3594, 5, 181, 0, 0, 3593, 3595, 7, 45, 0, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3604, 3, 216, 108, 0, 3597, 3598, 10, 1, 0, 0, 3598, 3600, 5, 59, 0, 0, 3599, 3601, 7, 45, 0, 0, 3600, 3599, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3604, 3, 216, 108, 0, 3603, 3591, 1, 0, 0, 0, 3603, 3597, 1, 0, 0, 0, 3604, 3607, 1, 0, 0, 0, 3605, 3603, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 215, 1, 0, 0, 0, 3607, 3605, 1, 0, 0, 0, 3608, 3609, 6, 108, -1, 0, 3609, 3610, 3, 218, 109, 0, 3610, 3619, 1, 0, 0, 0, 3611, 3612, 10, 1, 0, 0, 3612, 3614, 5, 828, 0, 0, 3613, 3615, 7, 45, 0, 0, 3614, 3613, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3618, 3, 218, 109, 0, 3617, 3611, 1, 0, 0, 0, 3618, 3621, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 217, 1, 0, 0, 0, 3621, 3619, 1, 0, 0, 0, 3622, 3637, 3, 226, 113, 0, 3623, 3624, 5, 866, 0, 0, 3624, 3626, 3, 214, 107, 0, 3625, 3627, 3, 258, 129, 0, 3626, 3625, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 3629, 1, 0, 0, 0, 3628, 3630, 3, 328, 164, 0, 3629, 3628, 1, 0, 0, 0, 3629, 3630, 1, 0, 0, 0, 3630, 3632, 1, 0, 0, 0, 3631, 3633, 3, 312, 156, 0, 3632, 3631, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 5, 867, 0, 0, 3635, 3637, 1, 0, 0, 0, 3636, 3622, 1, 0, 0, 0, 3636, 3623, 1, 0, 0, 0, 3637, 219, 1, 0, 0, 0, 3638, 3641, 3, 254, 127, 0, 3639, 3641, 3, 256, 128, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3639, 1, 0, 0, 0, 3641, 221, 1, 0, 0, 0, 3642, 3646, 3, 230, 115, 0, 3643, 3644, 5, 125, 0, 0, 3644, 3645, 5, 20, 0, 0, 3645, 3647, 3, 684, 342, 0, 3646, 3643, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3649, 5, 100, 0, 0, 3649, 3651, 3, 330, 165, 0, 3650, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 223, 1, 0, 0, 0, 3652, 3657, 3, 226, 113, 0, 3653, 3654, 7, 50, 0, 0, 3654, 3656, 3, 226, 113, 0, 3655, 3653, 1, 0, 0, 0, 3656, 3659, 1, 0, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3661, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3660, 3662, 3, 258, 129, 0, 3661, 3660, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3664, 1, 0, 0, 0, 3663, 3665, 3, 328, 164, 0, 3664, 3663, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3667, 1, 0, 0, 0, 3666, 3668, 3, 312, 156, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 225, 1, 0, 0, 0, 3669, 3673, 3, 210, 105, 0, 3670, 3673, 3, 628, 314, 0, 3671, 3673, 3, 222, 111, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 227, 1, 0, 0, 0, 3674, 3680, 3, 210, 105, 0, 3675, 3676, 5, 173, 0, 0, 3676, 3680, 3, 662, 331, 0, 3677, 3680, 3, 752, 376, 0, 3678, 3680, 3, 230, 115, 0, 3679, 3674, 1, 0, 0, 0, 3679, 3675, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3679, 3678, 1, 0, 0, 0, 3680, 229, 1, 0, 0, 0, 3681, 3682, 5, 189, 0, 0, 3682, 3683, 5, 586, 0, 0, 3683, 3689, 3, 754, 377, 0, 3684, 3685, 5, 868, 0, 0, 3685, 3686, 5, 586, 0, 0, 3686, 3688, 3, 754, 377, 0, 3687, 3684, 1, 0, 0, 0, 3688, 3691, 1, 0, 0, 0, 3689, 3687, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3690, 231, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3692, 3693, 5, 155, 0, 0, 3693, 3698, 3, 234, 117, 0, 3694, 3695, 5, 868, 0, 0, 3695, 3697, 3, 234, 117, 0, 3696, 3694, 1, 0, 0, 0, 3697, 3700, 1, 0, 0, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 233, 1, 0, 0, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3702, 3, 672, 336, 0, 3702, 3703, 5, 857, 0, 0, 3703, 3704, 3, 756, 378, 0, 3704, 235, 1, 0, 0, 0, 3705, 3708, 3, 716, 358, 0, 3706, 3708, 5, 892, 0, 0, 3707, 3705, 1, 0, 0, 0, 3707, 3706, 1, 0, 0, 0, 3708, 237, 1, 0, 0, 0, 3709, 3710, 5, 65, 0, 0, 3710, 3720, 7, 51, 0, 0, 3711, 3712, 5, 510, 0, 0, 3712, 3717, 3, 662, 331, 0, 3713, 3714, 5, 868, 0, 0, 3714, 3716, 3, 662, 331, 0, 3715, 3713, 1, 0, 0, 0, 3716, 3719, 1, 0, 0, 0, 3717, 3715, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3721, 1, 0, 0, 0, 3719, 3717, 1, 0, 0, 0, 3720, 3711, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3723, 7, 52, 0, 0, 3723, 3725, 5, 105, 0, 0, 3724, 3722, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3731, 1, 0, 0, 0, 3726, 3727, 5, 104, 0, 0, 3727, 3728, 5, 80, 0, 0, 3728, 3729, 5, 594, 0, 0, 3729, 3731, 5, 491, 0, 0, 3730, 3709, 1, 0, 0, 0, 3730, 3726, 1, 0, 0, 0, 3731, 239, 1, 0, 0, 0, 3732, 3734, 5, 44, 0, 0, 3733, 3735, 5, 107, 0, 0, 3734, 3733, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3737, 1, 0, 0, 0, 3736, 3738, 5, 549, 0, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3740, 1, 0, 0, 0, 3739, 3741, 5, 79, 0, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3743, 5, 68, 0, 0, 3743, 3748, 3, 662, 331, 0, 3744, 3746, 5, 13, 0, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 3749, 3, 716, 358, 0, 3748, 3745, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3755, 1, 0, 0, 0, 3750, 3751, 5, 130, 0, 0, 3751, 3752, 5, 866, 0, 0, 3752, 3753, 3, 680, 340, 0, 3753, 3754, 5, 867, 0, 0, 3754, 3756, 1, 0, 0, 0, 3755, 3750, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3759, 1, 0, 0, 0, 3757, 3758, 5, 192, 0, 0, 3758, 3760, 3, 814, 407, 0, 3759, 3757, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 3762, 1, 0, 0, 0, 3761, 3763, 3, 258, 129, 0, 3762, 3761, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3766, 1, 0, 0, 0, 3764, 3765, 5, 100, 0, 0, 3765, 3767, 3, 330, 165, 0, 3766, 3764, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 241, 1, 0, 0, 0, 3768, 3770, 5, 44, 0, 0, 3769, 3771, 5, 107, 0, 0, 3770, 3769, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3773, 1, 0, 0, 0, 3772, 3774, 5, 549, 0, 0, 3773, 3772, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3776, 1, 0, 0, 0, 3775, 3777, 5, 79, 0, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3817, 1, 0, 0, 0, 3778, 3781, 3, 662, 331, 0, 3779, 3780, 5, 865, 0, 0, 3780, 3782, 5, 850, 0, 0, 3781, 3779, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3791, 1, 0, 0, 0, 3783, 3784, 5, 868, 0, 0, 3784, 3787, 3, 662, 331, 0, 3785, 3786, 5, 865, 0, 0, 3786, 3788, 5, 850, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3790, 1, 0, 0, 0, 3789, 3783, 1, 0, 0, 0, 3790, 3793, 1, 0, 0, 0, 3791, 3789, 1, 0, 0, 0, 3791, 3792, 1, 0, 0, 0, 3792, 3794, 1, 0, 0, 0, 3793, 3791, 1, 0, 0, 0, 3794, 3795, 5, 68, 0, 0, 3795, 3796, 3, 262, 131, 0, 3796, 3818, 1, 0, 0, 0, 3797, 3798, 5, 68, 0, 0, 3798, 3801, 3, 662, 331, 0, 3799, 3800, 5, 865, 0, 0, 3800, 3802, 5, 850, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3811, 1, 0, 0, 0, 3803, 3804, 5, 868, 0, 0, 3804, 3807, 3, 662, 331, 0, 3805, 3806, 5, 865, 0, 0, 3806, 3808, 5, 850, 0, 0, 3807, 3805, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3803, 1, 0, 0, 0, 3810, 3813, 1, 0, 0, 0, 3811, 3809, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3814, 1, 0, 0, 0, 3813, 3811, 1, 0, 0, 0, 3814, 3815, 5, 188, 0, 0, 3815, 3816, 3, 262, 131, 0, 3816, 3818, 1, 0, 0, 0, 3817, 3778, 1, 0, 0, 0, 3817, 3797, 1, 0, 0, 0, 3818, 3821, 1, 0, 0, 0, 3819, 3820, 5, 192, 0, 0, 3820, 3822, 3, 814, 407, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 243, 1, 0, 0, 0, 3823, 3824, 5, 417, 0, 0, 3824, 3825, 3, 662, 331, 0, 3825, 3830, 5, 516, 0, 0, 3826, 3828, 5, 13, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3831, 3, 716, 358, 0, 3830, 3827, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 245, 1, 0, 0, 0, 3832, 3833, 5, 417, 0, 0, 3833, 3834, 3, 662, 331, 0, 3834, 3835, 5, 135, 0, 0, 3835, 3842, 3, 652, 326, 0, 3836, 3837, 3, 824, 412, 0, 3837, 3838, 5, 866, 0, 0, 3838, 3839, 3, 758, 379, 0, 3839, 3840, 5, 867, 0, 0, 3840, 3843, 1, 0, 0, 0, 3841, 3843, 7, 53, 0, 0, 3842, 3836, 1, 0, 0, 0, 3842, 3841, 1, 0, 0, 0, 3843, 3846, 1, 0, 0, 0, 3844, 3845, 5, 192, 0, 0, 3845, 3847, 3, 814, 407, 0, 3846, 3844, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3850, 1, 0, 0, 0, 3848, 3849, 5, 100, 0, 0, 3849, 3851, 3, 330, 165, 0, 3850, 3848, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 247, 1, 0, 0, 0, 3852, 3853, 5, 417, 0, 0, 3853, 3854, 3, 662, 331, 0, 3854, 3855, 5, 135, 0, 0, 3855, 3858, 7, 54, 0, 0, 3856, 3857, 5, 192, 0, 0, 3857, 3859, 3, 814, 407, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 3862, 1, 0, 0, 0, 3860, 3861, 5, 100, 0, 0, 3861, 3863, 3, 330, 165, 0, 3862, 3860, 1, 0, 0, 0, 3862, 3863, 1, 0, 0, 0, 3863, 249, 1, 0, 0, 0, 3864, 3865, 5, 417, 0, 0, 3865, 3866, 3, 662, 331, 0, 3866, 3867, 5, 334, 0, 0, 3867, 251, 1, 0, 0, 0, 3868, 3869, 5, 425, 0, 0, 3869, 3870, 5, 173, 0, 0, 3870, 3871, 5, 68, 0, 0, 3871, 3876, 3, 726, 363, 0, 3872, 3873, 5, 868, 0, 0, 3873, 3875, 3, 726, 363, 0, 3874, 3872, 1, 0, 0, 0, 3875, 3878, 1, 0, 0, 0, 3876, 3874, 1, 0, 0, 0, 3876, 3877, 1, 0, 0, 0, 3877, 253, 1, 0, 0, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3881, 5, 185, 0, 0, 3880, 3882, 5, 107, 0, 0, 3881, 3880, 1, 0, 0, 0, 3881, 3882, 1, 0, 0, 0, 3882, 3884, 1, 0, 0, 0, 3883, 3885, 5, 79, 0, 0, 3884, 3883, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3891, 3, 662, 331, 0, 3887, 3889, 5, 13, 0, 0, 3888, 3887, 1, 0, 0, 0, 3888, 3889, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3892, 3, 716, 358, 0, 3891, 3888, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3894, 5, 155, 0, 0, 3894, 3899, 3, 234, 117, 0, 3895, 3896, 5, 868, 0, 0, 3896, 3898, 3, 234, 117, 0, 3897, 3895, 1, 0, 0, 0, 3898, 3901, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3904, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3902, 3903, 5, 192, 0, 0, 3903, 3905, 3, 814, 407, 0, 3904, 3902, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3907, 1, 0, 0, 0, 3906, 3908, 3, 258, 129, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3911, 3, 328, 164, 0, 3910, 3909, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 255, 1, 0, 0, 0, 3912, 3914, 5, 185, 0, 0, 3913, 3915, 5, 107, 0, 0, 3914, 3913, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 1, 0, 0, 0, 3916, 3918, 5, 79, 0, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3920, 3, 262, 131, 0, 3920, 3921, 5, 155, 0, 0, 3921, 3926, 3, 234, 117, 0, 3922, 3923, 5, 868, 0, 0, 3923, 3925, 3, 234, 117, 0, 3924, 3922, 1, 0, 0, 0, 3925, 3928, 1, 0, 0, 0, 3926, 3924, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3931, 1, 0, 0, 0, 3928, 3926, 1, 0, 0, 0, 3929, 3930, 5, 192, 0, 0, 3930, 3932, 3, 814, 407, 0, 3931, 3929, 1, 0, 0, 0, 3931, 3932, 1, 0, 0, 0, 3932, 257, 1, 0, 0, 0, 3933, 3934, 5, 125, 0, 0, 3934, 3935, 5, 20, 0, 0, 3935, 3940, 3, 260, 130, 0, 3936, 3937, 5, 868, 0, 0, 3937, 3939, 3, 260, 130, 0, 3938, 3936, 1, 0, 0, 0, 3939, 3942, 1, 0, 0, 0, 3940, 3938, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 259, 1, 0, 0, 0, 3942, 3940, 1, 0, 0, 0, 3943, 3945, 3, 814, 407, 0, 3944, 3946, 7, 55, 0, 0, 3945, 3944, 1, 0, 0, 0, 3945, 3946, 1, 0, 0, 0, 3946, 261, 1, 0, 0, 0, 3947, 3952, 3, 264, 132, 0, 3948, 3949, 5, 868, 0, 0, 3949, 3951, 3, 264, 132, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3954, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 263, 1, 0, 0, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3959, 3, 266, 133, 0, 3956, 3958, 3, 276, 138, 0, 3957, 3956, 1, 0, 0, 0, 3958, 3961, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3974, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3962, 3963, 5, 866, 0, 0, 3963, 3967, 3, 266, 133, 0, 3964, 3966, 3, 276, 138, 0, 3965, 3964, 1, 0, 0, 0, 3966, 3969, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3970, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3970, 3971, 5, 867, 0, 0, 3971, 3974, 1, 0, 0, 0, 3972, 3974, 3, 288, 144, 0, 3973, 3955, 1, 0, 0, 0, 3973, 3962, 1, 0, 0, 0, 3973, 3972, 1, 0, 0, 0, 3974, 265, 1, 0, 0, 0, 3975, 3981, 3, 662, 331, 0, 3976, 3977, 5, 130, 0, 0, 3977, 3978, 5, 866, 0, 0, 3978, 3979, 3, 680, 340, 0, 3979, 3980, 5, 867, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3976, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3987, 1, 0, 0, 0, 3983, 3985, 5, 13, 0, 0, 3984, 3983, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3988, 3, 716, 358, 0, 3987, 3984, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3997, 1, 0, 0, 0, 3989, 3994, 3, 272, 136, 0, 3990, 3991, 5, 868, 0, 0, 3991, 3993, 3, 272, 136, 0, 3992, 3990, 1, 0, 0, 0, 3993, 3996, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 3998, 1, 0, 0, 0, 3996, 3994, 1, 0, 0, 0, 3997, 3989, 1, 0, 0, 0, 3997, 3998, 1, 0, 0, 0, 3998, 4015, 1, 0, 0, 0, 3999, 4001, 5, 95, 0, 0, 4000, 3999, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 4002, 1, 0, 0, 0, 4002, 4004, 3, 268, 134, 0, 4003, 4005, 5, 13, 0, 0, 4004, 4003, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 4008, 3, 716, 358, 0, 4007, 4009, 3, 270, 135, 0, 4008, 4007, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 4015, 1, 0, 0, 0, 4010, 4011, 5, 866, 0, 0, 4011, 4012, 3, 262, 131, 0, 4012, 4013, 5, 867, 0, 0, 4013, 4015, 1, 0, 0, 0, 4014, 3975, 1, 0, 0, 0, 4014, 4000, 1, 0, 0, 0, 4014, 4010, 1, 0, 0, 0, 4015, 267, 1, 0, 0, 0, 4016, 4022, 3, 210, 105, 0, 4017, 4018, 5, 866, 0, 0, 4018, 4019, 3, 210, 105, 0, 4019, 4020, 5, 867, 0, 0, 4020, 4022, 1, 0, 0, 0, 4021, 4016, 1, 0, 0, 0, 4021, 4017, 1, 0, 0, 0, 4022, 269, 1, 0, 0, 0, 4023, 4024, 5, 866, 0, 0, 4024, 4025, 3, 670, 335, 0, 4025, 4026, 5, 867, 0, 0, 4026, 271, 1, 0, 0, 0, 4027, 4028, 7, 56, 0, 0, 4028, 4031, 7, 19, 0, 0, 4029, 4030, 5, 65, 0, 0, 4030, 4032, 3, 274, 137, 0, 4031, 4029, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4035, 5, 866, 0, 0, 4034, 4036, 3, 650, 325, 0, 4035, 4034, 1, 0, 0, 0, 4035, 4036, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4038, 5, 867, 0, 0, 4038, 273, 1, 0, 0, 0, 4039, 4045, 5, 91, 0, 0, 4040, 4041, 5, 125, 0, 0, 4041, 4045, 5, 20, 0, 0, 4042, 4043, 5, 74, 0, 0, 4043, 4045, 5, 20, 0, 0, 4044, 4039, 1, 0, 0, 0, 4044, 4040, 1, 0, 0, 0, 4044, 4042, 1, 0, 0, 0, 4045, 275, 1, 0, 0, 0, 4046, 4048, 7, 57, 0, 0, 4047, 4046, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4051, 5, 91, 0, 0, 4050, 4052, 5, 95, 0, 0, 4051, 4050, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4057, 3, 266, 133, 0, 4054, 4056, 3, 278, 139, 0, 4055, 4054, 1, 0, 0, 0, 4056, 4059, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4096, 1, 0, 0, 0, 4059, 4057, 1, 0, 0, 0, 4060, 4061, 5, 172, 0, 0, 4061, 4065, 3, 266, 133, 0, 4062, 4064, 3, 278, 139, 0, 4063, 4062, 1, 0, 0, 0, 4064, 4067, 1, 0, 0, 0, 4065, 4063, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4096, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4068, 4070, 7, 58, 0, 0, 4069, 4071, 5, 127, 0, 0, 4070, 4069, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4074, 5, 91, 0, 0, 4073, 4075, 5, 95, 0, 0, 4074, 4073, 1, 0, 0, 0, 4074, 4075, 1, 0, 0, 0, 4075, 4076, 1, 0, 0, 0, 4076, 4080, 3, 266, 133, 0, 4077, 4079, 3, 278, 139, 0, 4078, 4077, 1, 0, 0, 0, 4079, 4082, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4096, 1, 0, 0, 0, 4082, 4080, 1, 0, 0, 0, 4083, 4091, 5, 113, 0, 0, 4084, 4087, 5, 84, 0, 0, 4085, 4087, 7, 58, 0, 0, 4086, 4084, 1, 0, 0, 0, 4086, 4085, 1, 0, 0, 0, 4087, 4089, 1, 0, 0, 0, 4088, 4090, 5, 127, 0, 0, 4089, 4088, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 4092, 1, 0, 0, 0, 4091, 4086, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4094, 5, 91, 0, 0, 4094, 4096, 3, 266, 133, 0, 4095, 4047, 1, 0, 0, 0, 4095, 4060, 1, 0, 0, 0, 4095, 4068, 1, 0, 0, 0, 4095, 4083, 1, 0, 0, 0, 4096, 277, 1, 0, 0, 0, 4097, 4098, 5, 119, 0, 0, 4098, 4105, 3, 814, 407, 0, 4099, 4100, 5, 188, 0, 0, 4100, 4101, 5, 866, 0, 0, 4101, 4102, 3, 670, 335, 0, 4102, 4103, 5, 867, 0, 0, 4103, 4105, 1, 0, 0, 0, 4104, 4097, 1, 0, 0, 0, 4104, 4099, 1, 0, 0, 0, 4105, 279, 1, 0, 0, 0, 4106, 4107, 5, 866, 0, 0, 4107, 4108, 3, 282, 141, 0, 4108, 4109, 5, 867, 0, 0, 4109, 4115, 1, 0, 0, 0, 4110, 4111, 5, 866, 0, 0, 4111, 4112, 3, 280, 140, 0, 4112, 4113, 5, 867, 0, 0, 4113, 4115, 1, 0, 0, 0, 4114, 4106, 1, 0, 0, 0, 4114, 4110, 1, 0, 0, 0, 4115, 281, 1, 0, 0, 0, 4116, 4120, 5, 154, 0, 0, 4117, 4119, 3, 298, 149, 0, 4118, 4117, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4123, 1, 0, 0, 0, 4122, 4120, 1, 0, 0, 0, 4123, 4125, 3, 300, 150, 0, 4124, 4126, 3, 312, 156, 0, 4125, 4124, 1, 0, 0, 0, 4125, 4126, 1, 0, 0, 0, 4126, 4127, 1, 0, 0, 0, 4127, 4129, 3, 318, 159, 0, 4128, 4130, 3, 320, 160, 0, 4129, 4128, 1, 0, 0, 0, 4129, 4130, 1, 0, 0, 0, 4130, 4132, 1, 0, 0, 0, 4131, 4133, 3, 322, 161, 0, 4132, 4131, 1, 0, 0, 0, 4132, 4133, 1, 0, 0, 0, 4133, 4135, 1, 0, 0, 0, 4134, 4136, 3, 324, 162, 0, 4135, 4134, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4138, 1, 0, 0, 0, 4137, 4139, 3, 258, 129, 0, 4138, 4137, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4141, 1, 0, 0, 0, 4140, 4142, 3, 328, 164, 0, 4141, 4140, 1, 0, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 4144, 1, 0, 0, 0, 4143, 4145, 3, 312, 156, 0, 4144, 4143, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4148, 3, 284, 142, 0, 4147, 4146, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 283, 1, 0, 0, 0, 4149, 4151, 5, 181, 0, 0, 4150, 4152, 7, 45, 0, 0, 4151, 4150, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4152, 4155, 1, 0, 0, 0, 4153, 4156, 3, 282, 141, 0, 4154, 4156, 3, 280, 140, 0, 4155, 4153, 1, 0, 0, 0, 4155, 4154, 1, 0, 0, 0, 4156, 285, 1, 0, 0, 0, 4157, 4172, 5, 95, 0, 0, 4158, 4173, 3, 282, 141, 0, 4159, 4173, 3, 280, 140, 0, 4160, 4163, 5, 866, 0, 0, 4161, 4164, 3, 282, 141, 0, 4162, 4164, 3, 280, 140, 0, 4163, 4161, 1, 0, 0, 0, 4163, 4162, 1, 0, 0, 0, 4164, 4165, 1, 0, 0, 0, 4165, 4170, 5, 867, 0, 0, 4166, 4168, 5, 13, 0, 0, 4167, 4166, 1, 0, 0, 0, 4167, 4168, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4171, 3, 716, 358, 0, 4170, 4167, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4173, 1, 0, 0, 0, 4172, 4158, 1, 0, 0, 0, 4172, 4159, 1, 0, 0, 0, 4172, 4160, 1, 0, 0, 0, 4173, 287, 1, 0, 0, 0, 4174, 4175, 5, 253, 0, 0, 4175, 4176, 5, 866, 0, 0, 4176, 4177, 5, 882, 0, 0, 4177, 4178, 5, 868, 0, 0, 4178, 4179, 5, 882, 0, 0, 4179, 4180, 5, 337, 0, 0, 4180, 4181, 5, 866, 0, 0, 4181, 4182, 3, 290, 145, 0, 4182, 4183, 5, 867, 0, 0, 4183, 4188, 5, 867, 0, 0, 4184, 4186, 5, 13, 0, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4189, 3, 716, 358, 0, 4188, 4185, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 289, 1, 0, 0, 0, 4190, 4195, 3, 292, 146, 0, 4191, 4192, 5, 868, 0, 0, 4192, 4194, 3, 292, 146, 0, 4193, 4191, 1, 0, 0, 0, 4194, 4197, 1, 0, 0, 0, 4195, 4193, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 291, 1, 0, 0, 0, 4197, 4195, 1, 0, 0, 0, 4198, 4215, 3, 672, 336, 0, 4199, 4200, 5, 65, 0, 0, 4200, 4216, 5, 256, 0, 0, 4201, 4213, 3, 736, 368, 0, 4202, 4203, 5, 257, 0, 0, 4203, 4205, 5, 882, 0, 0, 4204, 4206, 3, 294, 147, 0, 4205, 4204, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4208, 1, 0, 0, 0, 4207, 4209, 3, 296, 148, 0, 4208, 4207, 1, 0, 0, 0, 4208, 4209, 1, 0, 0, 0, 4209, 4214, 1, 0, 0, 0, 4210, 4211, 5, 60, 0, 0, 4211, 4212, 5, 257, 0, 0, 4212, 4214, 5, 882, 0, 0, 4213, 4202, 1, 0, 0, 0, 4213, 4210, 1, 0, 0, 0, 4214, 4216, 1, 0, 0, 0, 4215, 4199, 1, 0, 0, 0, 4215, 4201, 1, 0, 0, 0, 4216, 4228, 1, 0, 0, 0, 4217, 4219, 5, 255, 0, 0, 4218, 4220, 5, 257, 0, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4222, 5, 882, 0, 0, 4222, 4223, 5, 337, 0, 0, 4223, 4224, 5, 866, 0, 0, 4224, 4225, 3, 290, 145, 0, 4225, 4226, 5, 867, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4198, 1, 0, 0, 0, 4227, 4217, 1, 0, 0, 0, 4228, 293, 1, 0, 0, 0, 4229, 4234, 5, 116, 0, 0, 4230, 4234, 5, 382, 0, 0, 4231, 4232, 5, 42, 0, 0, 4232, 4234, 3, 764, 382, 0, 4233, 4229, 1, 0, 0, 0, 4233, 4230, 1, 0, 0, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4235, 1, 0, 0, 0, 4235, 4236, 5, 119, 0, 0, 4236, 4237, 5, 55, 0, 0, 4237, 295, 1, 0, 0, 0, 4238, 4243, 5, 116, 0, 0, 4239, 4243, 5, 382, 0, 0, 4240, 4241, 5, 42, 0, 0, 4241, 4243, 3, 764, 382, 0, 4242, 4238, 1, 0, 0, 0, 4242, 4239, 1, 0, 0, 0, 4242, 4240, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4245, 5, 119, 0, 0, 4245, 4246, 5, 382, 0, 0, 4246, 297, 1, 0, 0, 0, 4247, 4256, 7, 59, 0, 0, 4248, 4256, 5, 76, 0, 0, 4249, 4256, 5, 172, 0, 0, 4250, 4256, 5, 168, 0, 0, 4251, 4256, 5, 166, 0, 0, 4252, 4256, 5, 636, 0, 0, 4253, 4256, 7, 60, 0, 0, 4254, 4256, 5, 167, 0, 0, 4255, 4247, 1, 0, 0, 0, 4255, 4248, 1, 0, 0, 0, 4255, 4249, 1, 0, 0, 0, 4255, 4250, 1, 0, 0, 0, 4255, 4251, 1, 0, 0, 0, 4255, 4252, 1, 0, 0, 0, 4255, 4253, 1, 0, 0, 0, 4255, 4254, 1, 0, 0, 0, 4256, 299, 1, 0, 0, 0, 4257, 4260, 3, 306, 153, 0, 4258, 4260, 3, 302, 151, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4258, 1, 0, 0, 0, 4260, 4265, 1, 0, 0, 0, 4261, 4262, 5, 868, 0, 0, 4262, 4264, 3, 302, 151, 0, 4263, 4261, 1, 0, 0, 0, 4264, 4267, 1, 0, 0, 0, 4265, 4263, 1, 0, 0, 0, 4265, 4266, 1, 0, 0, 0, 4266, 301, 1, 0, 0, 0, 4267, 4265, 1, 0, 0, 0, 4268, 4284, 3, 304, 152, 0, 4269, 4274, 3, 308, 154, 0, 4270, 4272, 5, 13, 0, 0, 4271, 4270, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4275, 3, 716, 358, 0, 4274, 4271, 1, 0, 0, 0, 4274, 4275, 1, 0, 0, 0, 4275, 4284, 1, 0, 0, 0, 4276, 4281, 3, 310, 155, 0, 4277, 4279, 5, 13, 0, 0, 4278, 4277, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 3, 716, 358, 0, 4281, 4278, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 1, 0, 0, 0, 4283, 4268, 1, 0, 0, 0, 4283, 4269, 1, 0, 0, 0, 4283, 4276, 1, 0, 0, 0, 4284, 303, 1, 0, 0, 0, 4285, 4286, 3, 712, 356, 0, 4286, 4287, 5, 865, 0, 0, 4287, 4288, 5, 850, 0, 0, 4288, 305, 1, 0, 0, 0, 4289, 4290, 5, 850, 0, 0, 4290, 307, 1, 0, 0, 0, 4291, 4292, 3, 672, 336, 0, 4292, 309, 1, 0, 0, 0, 4293, 4294, 5, 892, 0, 0, 4294, 4296, 5, 841, 0, 0, 4295, 4293, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4300, 3, 814, 407, 0, 4298, 4300, 3, 774, 387, 0, 4299, 4295, 1, 0, 0, 0, 4299, 4298, 1, 0, 0, 0, 4300, 311, 1, 0, 0, 0, 4301, 4302, 5, 88, 0, 0, 4302, 4307, 3, 236, 118, 0, 4303, 4304, 5, 868, 0, 0, 4304, 4306, 3, 236, 118, 0, 4305, 4303, 1, 0, 0, 0, 4306, 4309, 1, 0, 0, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4338, 1, 0, 0, 0, 4309, 4307, 1, 0, 0, 0, 4310, 4311, 5, 88, 0, 0, 4311, 4312, 5, 372, 0, 0, 4312, 4338, 5, 882, 0, 0, 4313, 4314, 5, 88, 0, 0, 4314, 4315, 5, 128, 0, 0, 4315, 4319, 5, 882, 0, 0, 4316, 4317, 5, 26, 0, 0, 4317, 4318, 5, 155, 0, 0, 4318, 4320, 3, 698, 349, 0, 4319, 4316, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4327, 1, 0, 0, 0, 4321, 4323, 7, 47, 0, 0, 4322, 4324, 3, 314, 157, 0, 4323, 4322, 1, 0, 0, 0, 4324, 4325, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 4328, 1, 0, 0, 0, 4327, 4321, 1, 0, 0, 0, 4327, 4328, 1, 0, 0, 0, 4328, 4335, 1, 0, 0, 0, 4329, 4331, 5, 102, 0, 0, 4330, 4332, 3, 316, 158, 0, 4331, 4330, 1, 0, 0, 0, 4332, 4333, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4336, 1, 0, 0, 0, 4335, 4329, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4338, 1, 0, 0, 0, 4337, 4301, 1, 0, 0, 0, 4337, 4310, 1, 0, 0, 0, 4337, 4313, 1, 0, 0, 0, 4338, 313, 1, 0, 0, 0, 4339, 4340, 5, 174, 0, 0, 4340, 4341, 5, 20, 0, 0, 4341, 4352, 5, 882, 0, 0, 4342, 4344, 5, 123, 0, 0, 4343, 4342, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 4345, 1, 0, 0, 0, 4345, 4346, 5, 56, 0, 0, 4346, 4347, 5, 20, 0, 0, 4347, 4352, 5, 882, 0, 0, 4348, 4349, 5, 58, 0, 0, 4349, 4350, 5, 20, 0, 0, 4350, 4352, 5, 882, 0, 0, 4351, 4339, 1, 0, 0, 0, 4351, 4343, 1, 0, 0, 0, 4351, 4348, 1, 0, 0, 0, 4352, 315, 1, 0, 0, 0, 4353, 4354, 5, 171, 0, 0, 4354, 4355, 5, 20, 0, 0, 4355, 4360, 5, 882, 0, 0, 4356, 4357, 5, 174, 0, 0, 4357, 4358, 5, 20, 0, 0, 4358, 4360, 5, 882, 0, 0, 4359, 4353, 1, 0, 0, 0, 4359, 4356, 1, 0, 0, 0, 4360, 317, 1, 0, 0, 0, 4361, 4362, 5, 68, 0, 0, 4362, 4364, 3, 262, 131, 0, 4363, 4361, 1, 0, 0, 0, 4363, 4364, 1, 0, 0, 0, 4364, 4367, 1, 0, 0, 0, 4365, 4366, 5, 192, 0, 0, 4366, 4368, 3, 814, 407, 0, 4367, 4365, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 319, 1, 0, 0, 0, 4369, 4370, 5, 74, 0, 0, 4370, 4371, 5, 20, 0, 0, 4371, 4376, 3, 326, 163, 0, 4372, 4373, 5, 868, 0, 0, 4373, 4375, 3, 326, 163, 0, 4374, 4372, 1, 0, 0, 0, 4375, 4378, 1, 0, 0, 0, 4376, 4374, 1, 0, 0, 0, 4376, 4377, 1, 0, 0, 0, 4377, 4381, 1, 0, 0, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4380, 5, 194, 0, 0, 4380, 4382, 5, 584, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 321, 1, 0, 0, 0, 4383, 4384, 5, 75, 0, 0, 4384, 4385, 3, 814, 407, 0, 4385, 323, 1, 0, 0, 0, 4386, 4387, 5, 689, 0, 0, 4387, 4388, 3, 792, 396, 0, 4388, 4389, 5, 13, 0, 0, 4389, 4390, 5, 866, 0, 0, 4390, 4391, 3, 790, 395, 0, 4391, 4401, 5, 867, 0, 0, 4392, 4393, 5, 868, 0, 0, 4393, 4394, 3, 792, 396, 0, 4394, 4395, 5, 13, 0, 0, 4395, 4396, 5, 866, 0, 0, 4396, 4397, 3, 790, 395, 0, 4397, 4398, 5, 867, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4392, 1, 0, 0, 0, 4400, 4403, 1, 0, 0, 0, 4401, 4399, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 325, 1, 0, 0, 0, 4403, 4401, 1, 0, 0, 0, 4404, 4406, 3, 814, 407, 0, 4405, 4407, 7, 55, 0, 0, 4406, 4405, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 327, 1, 0, 0, 0, 4408, 4419, 5, 100, 0, 0, 4409, 4410, 3, 330, 165, 0, 4410, 4411, 5, 868, 0, 0, 4411, 4413, 1, 0, 0, 0, 4412, 4409, 1, 0, 0, 0, 4412, 4413, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4420, 3, 330, 165, 0, 4415, 4416, 3, 330, 165, 0, 4416, 4417, 5, 509, 0, 0, 4417, 4418, 3, 330, 165, 0, 4418, 4420, 1, 0, 0, 0, 4419, 4412, 1, 0, 0, 0, 4419, 4415, 1, 0, 0, 0, 4420, 329, 1, 0, 0, 0, 4421, 4425, 3, 722, 361, 0, 4422, 4425, 3, 696, 348, 0, 4423, 4425, 3, 718, 359, 0, 4424, 4421, 1, 0, 0, 0, 4424, 4422, 1, 0, 0, 0, 4424, 4423, 1, 0, 0, 0, 4425, 331, 1, 0, 0, 0, 4426, 4427, 5, 640, 0, 0, 4427, 4436, 5, 664, 0, 0, 4428, 4433, 3, 354, 177, 0, 4429, 4430, 5, 868, 0, 0, 4430, 4432, 3, 354, 177, 0, 4431, 4429, 1, 0, 0, 0, 4432, 4435, 1, 0, 0, 0, 4433, 4431, 1, 0, 0, 0, 4433, 4434, 1, 0, 0, 0, 4434, 4437, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4428, 1, 0, 0, 0, 4436, 4437, 1, 0, 0, 0, 4437, 333, 1, 0, 0, 0, 4438, 4440, 5, 317, 0, 0, 4439, 4441, 5, 691, 0, 0, 4440, 4439, 1, 0, 0, 0, 4440, 4441, 1, 0, 0, 0, 4441, 335, 1, 0, 0, 0, 4442, 4444, 5, 341, 0, 0, 4443, 4445, 5, 691, 0, 0, 4444, 4443, 1, 0, 0, 0, 4444, 4445, 1, 0, 0, 0, 4445, 4451, 1, 0, 0, 0, 4446, 4448, 5, 11, 0, 0, 4447, 4449, 5, 502, 0, 0, 4448, 4447, 1, 0, 0, 0, 4448, 4449, 1, 0, 0, 0, 4449, 4450, 1, 0, 0, 0, 4450, 4452, 5, 326, 0, 0, 4451, 4446, 1, 0, 0, 0, 4451, 4452, 1, 0, 0, 0, 4452, 4457, 1, 0, 0, 0, 4453, 4455, 5, 502, 0, 0, 4454, 4453, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 4458, 5, 140, 0, 0, 4457, 4454, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 337, 1, 0, 0, 0, 4459, 4461, 5, 583, 0, 0, 4460, 4462, 5, 691, 0, 0, 4461, 4460, 1, 0, 0, 0, 4461, 4462, 1, 0, 0, 0, 4462, 4468, 1, 0, 0, 0, 4463, 4465, 5, 11, 0, 0, 4464, 4466, 5, 502, 0, 0, 4465, 4464, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 4469, 5, 326, 0, 0, 4468, 4463, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4474, 1, 0, 0, 0, 4470, 4472, 5, 502, 0, 0, 4471, 4470, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4475, 5, 140, 0, 0, 4474, 4471, 1, 0, 0, 0, 4474, 4475, 1, 0, 0, 0, 4475, 339, 1, 0, 0, 0, 4476, 4477, 5, 589, 0, 0, 4477, 4478, 3, 716, 358, 0, 4478, 341, 1, 0, 0, 0, 4479, 4481, 5, 583, 0, 0, 4480, 4482, 5, 691, 0, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 4485, 5, 176, 0, 0, 4484, 4486, 5, 589, 0, 0, 4485, 4484, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4488, 3, 716, 358, 0, 4488, 343, 1, 0, 0, 0, 4489, 4490, 5, 140, 0, 0, 4490, 4491, 5, 589, 0, 0, 4491, 4492, 3, 716, 358, 0, 4492, 345, 1, 0, 0, 0, 4493, 4494, 5, 104, 0, 0, 4494, 4495, 7, 61, 0, 0, 4495, 4500, 3, 356, 178, 0, 4496, 4497, 5, 868, 0, 0, 4497, 4499, 3, 356, 178, 0, 4498, 4496, 1, 0, 0, 0, 4499, 4502, 1, 0, 0, 0, 4500, 4498, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 347, 1, 0, 0, 0, 4502, 4500, 1, 0, 0, 0, 4503, 4504, 5, 183, 0, 0, 4504, 4505, 5, 752, 0, 0, 4505, 349, 1, 0, 0, 0, 4506, 4507, 5, 155, 0, 0, 4507, 4508, 5, 313, 0, 0, 4508, 4509, 5, 857, 0, 0, 4509, 4510, 7, 26, 0, 0, 4510, 351, 1, 0, 0, 0, 4511, 4513, 5, 155, 0, 0, 4512, 4514, 7, 62, 0, 0, 4513, 4512, 1, 0, 0, 0, 4513, 4514, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 4516, 5, 664, 0, 0, 4516, 4521, 3, 360, 180, 0, 4517, 4518, 5, 868, 0, 0, 4518, 4520, 3, 360, 180, 0, 4519, 4517, 1, 0, 0, 0, 4520, 4523, 1, 0, 0, 0, 4521, 4519, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 353, 1, 0, 0, 0, 4523, 4521, 1, 0, 0, 0, 4524, 4525, 5, 194, 0, 0, 4525, 4526, 5, 350, 0, 0, 4526, 4532, 5, 600, 0, 0, 4527, 4528, 5, 135, 0, 0, 4528, 4532, 5, 195, 0, 0, 4529, 4530, 5, 135, 0, 0, 4530, 4532, 5, 515, 0, 0, 4531, 4524, 1, 0, 0, 0, 4531, 4527, 1, 0, 0, 0, 4531, 4529, 1, 0, 0, 0, 4532, 355, 1, 0, 0, 0, 4533, 4538, 3, 662, 331, 0, 4534, 4536, 5, 13, 0, 0, 4535, 4534, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 1, 0, 0, 0, 4537, 4539, 3, 716, 358, 0, 4538, 4535, 1, 0, 0, 0, 4538, 4539, 1, 0, 0, 0, 4539, 4540, 1, 0, 0, 0, 4540, 4541, 3, 358, 179, 0, 4541, 357, 1, 0, 0, 0, 4542, 4544, 5, 135, 0, 0, 4543, 4545, 5, 450, 0, 0, 4544, 4543, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4551, 1, 0, 0, 0, 4546, 4548, 5, 107, 0, 0, 4547, 4546, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4551, 5, 195, 0, 0, 4550, 4542, 1, 0, 0, 0, 4550, 4547, 1, 0, 0, 0, 4551, 359, 1, 0, 0, 0, 4552, 4553, 5, 440, 0, 0, 4553, 4554, 5, 448, 0, 0, 4554, 4560, 3, 362, 181, 0, 4555, 4556, 5, 135, 0, 0, 4556, 4560, 5, 195, 0, 0, 4557, 4558, 5, 135, 0, 0, 4558, 4560, 5, 515, 0, 0, 4559, 4552, 1, 0, 0, 0, 4559, 4555, 1, 0, 0, 0, 4559, 4557, 1, 0, 0, 0, 4560, 361, 1, 0, 0, 0, 4561, 4562, 5, 809, 0, 0, 4562, 4569, 5, 135, 0, 0, 4563, 4564, 5, 135, 0, 0, 4564, 4569, 5, 810, 0, 0, 4565, 4566, 5, 135, 0, 0, 4566, 4569, 5, 811, 0, 0, 4567, 4569, 5, 812, 0, 0, 4568, 4561, 1, 0, 0, 0, 4568, 4563, 1, 0, 0, 0, 4568, 4565, 1, 0, 0, 0, 4568, 4567, 1, 0, 0, 0, 4569, 363, 1, 0, 0, 0, 4570, 4571, 5, 25, 0, 0, 4571, 4572, 5, 453, 0, 0, 4572, 4573, 5, 176, 0, 0, 4573, 4578, 3, 380, 190, 0, 4574, 4575, 5, 868, 0, 0, 4575, 4577, 3, 380, 190, 0, 4576, 4574, 1, 0, 0, 0, 4577, 4580, 1, 0, 0, 0, 4578, 4576, 1, 0, 0, 0, 4578, 4579, 1, 0, 0, 0, 4579, 4582, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4583, 3, 400, 200, 0, 4582, 4581, 1, 0, 0, 0, 4582, 4583, 1, 0, 0, 0, 4583, 365, 1, 0, 0, 0, 4584, 4585, 5, 25, 0, 0, 4585, 4586, 5, 572, 0, 0, 4586, 4587, 5, 400, 0, 0, 4587, 4592, 3, 402, 201, 0, 4588, 4589, 5, 868, 0, 0, 4589, 4591, 3, 402, 201, 0, 4590, 4588, 1, 0, 0, 0, 4591, 4594, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4592, 4593, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4595, 4597, 3, 400, 200, 0, 4596, 4595, 1, 0, 0, 0, 4596, 4597, 1, 0, 0, 0, 4597, 367, 1, 0, 0, 0, 4598, 4599, 5, 25, 0, 0, 4599, 4600, 5, 572, 0, 0, 4600, 4601, 5, 605, 0, 0, 4601, 4602, 5, 176, 0, 0, 4602, 4607, 3, 390, 195, 0, 4603, 4604, 5, 868, 0, 0, 4604, 4606, 3, 390, 195, 0, 4605, 4603, 1, 0, 0, 0, 4606, 4609, 1, 0, 0, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4611, 1, 0, 0, 0, 4609, 4607, 1, 0, 0, 0, 4610, 4612, 3, 400, 200, 0, 4611, 4610, 1, 0, 0, 0, 4611, 4612, 1, 0, 0, 0, 4612, 369, 1, 0, 0, 0, 4613, 4614, 5, 133, 0, 0, 4614, 4615, 7, 63, 0, 0, 4615, 4620, 5, 452, 0, 0, 4616, 4617, 5, 176, 0, 0, 4617, 4621, 5, 882, 0, 0, 4618, 4619, 5, 16, 0, 0, 4619, 4621, 5, 882, 0, 0, 4620, 4616, 1, 0, 0, 0, 4620, 4618, 1, 0, 0, 0, 4621, 371, 1, 0, 0, 0, 4622, 4623, 5, 640, 0, 0, 4623, 4632, 7, 64, 0, 0, 4624, 4629, 3, 406, 203, 0, 4625, 4626, 5, 868, 0, 0, 4626, 4628, 3, 406, 203, 0, 4627, 4625, 1, 0, 0, 0, 4628, 4631, 1, 0, 0, 0, 4629, 4627, 1, 0, 0, 0, 4629, 4630, 1, 0, 0, 0, 4630, 4633, 1, 0, 0, 0, 4631, 4629, 1, 0, 0, 0, 4632, 4624, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4636, 1, 0, 0, 0, 4634, 4635, 5, 676, 0, 0, 4635, 4637, 3, 408, 204, 0, 4636, 4634, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4641, 1, 0, 0, 0, 4638, 4640, 3, 410, 205, 0, 4639, 4638, 1, 0, 0, 0, 4640, 4643, 1, 0, 0, 0, 4641, 4639, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4644, 4646, 3, 400, 200, 0, 4645, 4644, 1, 0, 0, 0, 4645, 4646, 1, 0, 0, 0, 4646, 373, 1, 0, 0, 0, 4647, 4648, 5, 646, 0, 0, 4648, 4657, 7, 64, 0, 0, 4649, 4654, 3, 406, 203, 0, 4650, 4651, 5, 868, 0, 0, 4651, 4653, 3, 406, 203, 0, 4652, 4650, 1, 0, 0, 0, 4653, 4656, 1, 0, 0, 0, 4654, 4652, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4658, 1, 0, 0, 0, 4656, 4654, 1, 0, 0, 0, 4657, 4649, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4660, 1, 0, 0, 0, 4659, 4661, 3, 400, 200, 0, 4660, 4659, 1, 0, 0, 0, 4660, 4661, 1, 0, 0, 0, 4661, 375, 1, 0, 0, 0, 4662, 4663, 5, 640, 0, 0, 4663, 4667, 5, 415, 0, 0, 4664, 4665, 5, 678, 0, 0, 4665, 4666, 5, 857, 0, 0, 4666, 4668, 5, 882, 0, 0, 4667, 4664, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4673, 1, 0, 0, 0, 4669, 4670, 5, 868, 0, 0, 4670, 4671, 5, 529, 0, 0, 4671, 4672, 5, 857, 0, 0, 4672, 4674, 5, 882, 0, 0, 4673, 4669, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 4679, 1, 0, 0, 0, 4675, 4676, 5, 868, 0, 0, 4676, 4677, 5, 363, 0, 0, 4677, 4678, 5, 857, 0, 0, 4678, 4680, 5, 882, 0, 0, 4679, 4675, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 377, 1, 0, 0, 0, 4681, 4682, 5, 646, 0, 0, 4682, 4683, 5, 415, 0, 0, 4683, 379, 1, 0, 0, 0, 4684, 4685, 3, 382, 191, 0, 4685, 4686, 5, 857, 0, 0, 4686, 4687, 5, 882, 0, 0, 4687, 4712, 1, 0, 0, 0, 4688, 4689, 3, 384, 192, 0, 4689, 4690, 5, 857, 0, 0, 4690, 4691, 3, 722, 361, 0, 4691, 4712, 1, 0, 0, 0, 4692, 4693, 3, 386, 193, 0, 4693, 4694, 5, 857, 0, 0, 4694, 4695, 7, 26, 0, 0, 4695, 4712, 1, 0, 0, 0, 4696, 4712, 3, 388, 194, 0, 4697, 4698, 5, 424, 0, 0, 4698, 4699, 5, 857, 0, 0, 4699, 4708, 5, 866, 0, 0, 4700, 4705, 3, 716, 358, 0, 4701, 4702, 5, 868, 0, 0, 4702, 4704, 3, 716, 358, 0, 4703, 4701, 1, 0, 0, 0, 4704, 4707, 1, 0, 0, 0, 4705, 4703, 1, 0, 0, 0, 4705, 4706, 1, 0, 0, 0, 4706, 4709, 1, 0, 0, 0, 4707, 4705, 1, 0, 0, 0, 4708, 4700, 1, 0, 0, 0, 4708, 4709, 1, 0, 0, 0, 4709, 4710, 1, 0, 0, 0, 4710, 4712, 5, 867, 0, 0, 4711, 4684, 1, 0, 0, 0, 4711, 4688, 1, 0, 0, 0, 4711, 4692, 1, 0, 0, 0, 4711, 4696, 1, 0, 0, 0, 4711, 4697, 1, 0, 0, 0, 4712, 381, 1, 0, 0, 0, 4713, 4714, 7, 65, 0, 0, 4714, 383, 1, 0, 0, 0, 4715, 4716, 7, 66, 0, 0, 4716, 385, 1, 0, 0, 0, 4717, 4718, 7, 67, 0, 0, 4718, 387, 1, 0, 0, 0, 4719, 4720, 5, 543, 0, 0, 4720, 4721, 5, 857, 0, 0, 4721, 4733, 7, 68, 0, 0, 4722, 4723, 5, 574, 0, 0, 4723, 4724, 5, 857, 0, 0, 4724, 4733, 7, 69, 0, 0, 4725, 4726, 5, 310, 0, 0, 4726, 4730, 5, 857, 0, 0, 4727, 4731, 5, 507, 0, 0, 4728, 4731, 5, 450, 0, 0, 4729, 4731, 3, 412, 206, 0, 4730, 4727, 1, 0, 0, 0, 4730, 4728, 1, 0, 0, 0, 4730, 4729, 1, 0, 0, 0, 4731, 4733, 1, 0, 0, 0, 4732, 4719, 1, 0, 0, 0, 4732, 4722, 1, 0, 0, 0, 4732, 4725, 1, 0, 0, 0, 4733, 389, 1, 0, 0, 0, 4734, 4735, 3, 392, 196, 0, 4735, 4736, 5, 857, 0, 0, 4736, 4737, 5, 882, 0, 0, 4737, 4762, 1, 0, 0, 0, 4738, 4739, 3, 394, 197, 0, 4739, 4740, 5, 857, 0, 0, 4740, 4741, 3, 722, 361, 0, 4741, 4762, 1, 0, 0, 0, 4742, 4743, 3, 396, 198, 0, 4743, 4744, 5, 857, 0, 0, 4744, 4745, 7, 26, 0, 0, 4745, 4762, 1, 0, 0, 0, 4746, 4762, 3, 398, 199, 0, 4747, 4748, 5, 424, 0, 0, 4748, 4749, 5, 857, 0, 0, 4749, 4758, 5, 866, 0, 0, 4750, 4755, 3, 716, 358, 0, 4751, 4752, 5, 868, 0, 0, 4752, 4754, 3, 716, 358, 0, 4753, 4751, 1, 0, 0, 0, 4754, 4757, 1, 0, 0, 0, 4755, 4753, 1, 0, 0, 0, 4755, 4756, 1, 0, 0, 0, 4756, 4759, 1, 0, 0, 0, 4757, 4755, 1, 0, 0, 0, 4758, 4750, 1, 0, 0, 0, 4758, 4759, 1, 0, 0, 0, 4759, 4760, 1, 0, 0, 0, 4760, 4762, 5, 867, 0, 0, 4761, 4734, 1, 0, 0, 0, 4761, 4738, 1, 0, 0, 0, 4761, 4742, 1, 0, 0, 0, 4761, 4746, 1, 0, 0, 0, 4761, 4747, 1, 0, 0, 0, 4762, 391, 1, 0, 0, 0, 4763, 4764, 7, 70, 0, 0, 4764, 393, 1, 0, 0, 0, 4765, 4766, 7, 71, 0, 0, 4766, 395, 1, 0, 0, 0, 4767, 4768, 7, 72, 0, 0, 4768, 397, 1, 0, 0, 0, 4769, 4770, 5, 543, 0, 0, 4770, 4771, 5, 857, 0, 0, 4771, 4783, 7, 68, 0, 0, 4772, 4773, 5, 574, 0, 0, 4773, 4774, 5, 857, 0, 0, 4774, 4783, 7, 73, 0, 0, 4775, 4776, 5, 310, 0, 0, 4776, 4780, 5, 857, 0, 0, 4777, 4781, 5, 507, 0, 0, 4778, 4781, 5, 450, 0, 0, 4779, 4781, 3, 412, 206, 0, 4780, 4777, 1, 0, 0, 0, 4780, 4778, 1, 0, 0, 0, 4780, 4779, 1, 0, 0, 0, 4781, 4783, 1, 0, 0, 0, 4782, 4769, 1, 0, 0, 0, 4782, 4772, 1, 0, 0, 0, 4782, 4775, 1, 0, 0, 0, 4783, 399, 1, 0, 0, 0, 4784, 4785, 5, 65, 0, 0, 4785, 4786, 5, 328, 0, 0, 4786, 4787, 5, 882, 0, 0, 4787, 401, 1, 0, 0, 0, 4788, 4789, 5, 565, 0, 0, 4789, 4790, 5, 857, 0, 0, 4790, 4791, 5, 866, 0, 0, 4791, 4796, 3, 638, 319, 0, 4792, 4793, 5, 868, 0, 0, 4793, 4795, 3, 638, 319, 0, 4794, 4792, 1, 0, 0, 0, 4795, 4798, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4799, 1, 0, 0, 0, 4798, 4796, 1, 0, 0, 0, 4799, 4800, 5, 867, 0, 0, 4800, 4852, 1, 0, 0, 0, 4801, 4802, 5, 567, 0, 0, 4802, 4803, 5, 857, 0, 0, 4803, 4804, 5, 866, 0, 0, 4804, 4809, 3, 638, 319, 0, 4805, 4806, 5, 868, 0, 0, 4806, 4808, 3, 638, 319, 0, 4807, 4805, 1, 0, 0, 0, 4808, 4811, 1, 0, 0, 0, 4809, 4807, 1, 0, 0, 0, 4809, 4810, 1, 0, 0, 0, 4810, 4812, 1, 0, 0, 0, 4811, 4809, 1, 0, 0, 0, 4812, 4813, 5, 867, 0, 0, 4813, 4852, 1, 0, 0, 0, 4814, 4815, 5, 566, 0, 0, 4815, 4816, 5, 857, 0, 0, 4816, 4817, 5, 866, 0, 0, 4817, 4818, 3, 660, 330, 0, 4818, 4819, 5, 867, 0, 0, 4819, 4852, 1, 0, 0, 0, 4820, 4821, 5, 568, 0, 0, 4821, 4822, 5, 857, 0, 0, 4822, 4823, 5, 866, 0, 0, 4823, 4824, 3, 660, 330, 0, 4824, 4825, 5, 867, 0, 0, 4825, 4852, 1, 0, 0, 0, 4826, 4827, 5, 570, 0, 0, 4827, 4828, 5, 857, 0, 0, 4828, 4829, 5, 866, 0, 0, 4829, 4830, 3, 760, 380, 0, 4830, 4831, 5, 867, 0, 0, 4831, 4852, 1, 0, 0, 0, 4832, 4833, 5, 571, 0, 0, 4833, 4834, 5, 857, 0, 0, 4834, 4835, 5, 866, 0, 0, 4835, 4836, 3, 760, 380, 0, 4836, 4837, 5, 867, 0, 0, 4837, 4852, 1, 0, 0, 0, 4838, 4839, 5, 569, 0, 0, 4839, 4840, 5, 857, 0, 0, 4840, 4841, 5, 866, 0, 0, 4841, 4846, 3, 404, 202, 0, 4842, 4843, 5, 868, 0, 0, 4843, 4845, 3, 404, 202, 0, 4844, 4842, 1, 0, 0, 0, 4845, 4848, 1, 0, 0, 0, 4846, 4844, 1, 0, 0, 0, 4846, 4847, 1, 0, 0, 0, 4847, 4849, 1, 0, 0, 0, 4848, 4846, 1, 0, 0, 0, 4849, 4850, 5, 867, 0, 0, 4850, 4852, 1, 0, 0, 0, 4851, 4788, 1, 0, 0, 0, 4851, 4801, 1, 0, 0, 0, 4851, 4814, 1, 0, 0, 0, 4851, 4820, 1, 0, 0, 0, 4851, 4826, 1, 0, 0, 0, 4851, 4832, 1, 0, 0, 0, 4851, 4838, 1, 0, 0, 0, 4852, 403, 1, 0, 0, 0, 4853, 4854, 5, 866, 0, 0, 4854, 4855, 3, 662, 331, 0, 4855, 4856, 5, 868, 0, 0, 4856, 4857, 3, 662, 331, 0, 4857, 4858, 5, 867, 0, 0, 4858, 405, 1, 0, 0, 0, 4859, 4860, 7, 74, 0, 0, 4860, 407, 1, 0, 0, 0, 4861, 4862, 7, 75, 0, 0, 4862, 4863, 5, 857, 0, 0, 4863, 4887, 3, 412, 206, 0, 4864, 4865, 5, 460, 0, 0, 4865, 4866, 5, 857, 0, 0, 4866, 4867, 5, 882, 0, 0, 4867, 4868, 5, 868, 0, 0, 4868, 4869, 5, 461, 0, 0, 4869, 4870, 5, 857, 0, 0, 4870, 4887, 3, 722, 361, 0, 4871, 4872, 5, 611, 0, 0, 4872, 4873, 5, 857, 0, 0, 4873, 4874, 5, 882, 0, 0, 4874, 4875, 5, 868, 0, 0, 4875, 4876, 5, 612, 0, 0, 4876, 4877, 5, 857, 0, 0, 4877, 4887, 3, 722, 361, 0, 4878, 4879, 5, 557, 0, 0, 4879, 4880, 5, 857, 0, 0, 4880, 4881, 5, 882, 0, 0, 4881, 4882, 5, 868, 0, 0, 4882, 4883, 5, 558, 0, 0, 4883, 4884, 5, 857, 0, 0, 4884, 4887, 3, 722, 361, 0, 4885, 4887, 5, 634, 0, 0, 4886, 4861, 1, 0, 0, 0, 4886, 4864, 1, 0, 0, 0, 4886, 4871, 1, 0, 0, 0, 4886, 4878, 1, 0, 0, 0, 4886, 4885, 1, 0, 0, 0, 4887, 409, 1, 0, 0, 0, 4888, 4889, 5, 678, 0, 0, 4889, 4890, 5, 857, 0, 0, 4890, 4901, 5, 882, 0, 0, 4891, 4892, 5, 529, 0, 0, 4892, 4893, 5, 857, 0, 0, 4893, 4901, 5, 882, 0, 0, 4894, 4895, 5, 363, 0, 0, 4895, 4896, 5, 857, 0, 0, 4896, 4901, 5, 882, 0, 0, 4897, 4898, 5, 535, 0, 0, 4898, 4899, 5, 857, 0, 0, 4899, 4901, 5, 882, 0, 0, 4900, 4888, 1, 0, 0, 0, 4900, 4891, 1, 0, 0, 0, 4900, 4894, 1, 0, 0, 0, 4900, 4897, 1, 0, 0, 0, 4901, 411, 1, 0, 0, 0, 4902, 4907, 3, 706, 353, 0, 4903, 4904, 5, 868, 0, 0, 4904, 4906, 3, 706, 353, 0, 4905, 4903, 1, 0, 0, 0, 4906, 4909, 1, 0, 0, 0, 4907, 4905, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4912, 1, 0, 0, 0, 4909, 4907, 1, 0, 0, 0, 4910, 4912, 5, 882, 0, 0, 4911, 4902, 1, 0, 0, 0, 4911, 4910, 1, 0, 0, 0, 4912, 413, 1, 0, 0, 0, 4913, 4914, 5, 694, 0, 0, 4914, 4915, 7, 76, 0, 0, 4915, 4917, 3, 708, 354, 0, 4916, 4918, 7, 77, 0, 0, 4917, 4916, 1, 0, 0, 0, 4917, 4918, 1, 0, 0, 0, 4918, 415, 1, 0, 0, 0, 4919, 4920, 5, 694, 0, 0, 4920, 4921, 5, 378, 0, 0, 4921, 4927, 3, 708, 354, 0, 4922, 4925, 5, 654, 0, 0, 4923, 4924, 5, 65, 0, 0, 4924, 4926, 5, 489, 0, 0, 4925, 4923, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 4928, 1, 0, 0, 0, 4927, 4922, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 417, 1, 0, 0, 0, 4929, 4930, 5, 694, 0, 0, 4930, 4931, 5, 540, 0, 0, 4931, 4932, 3, 708, 354, 0, 4932, 419, 1, 0, 0, 0, 4933, 4934, 5, 694, 0, 0, 4934, 4935, 5, 341, 0, 0, 4935, 4938, 3, 708, 354, 0, 4936, 4937, 5, 513, 0, 0, 4937, 4939, 5, 533, 0, 0, 4938, 4936, 1, 0, 0, 0, 4938, 4939, 1, 0, 0, 0, 4939, 421, 1, 0, 0, 0, 4940, 4941, 5, 694, 0, 0, 4941, 4942, 5, 583, 0, 0, 4942, 4943, 3, 708, 354, 0, 4943, 423, 1, 0, 0, 0, 4944, 4945, 5, 694, 0, 0, 4945, 4948, 5, 551, 0, 0, 4946, 4947, 5, 33, 0, 0, 4947, 4949, 3, 708, 354, 0, 4948, 4946, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 425, 1, 0, 0, 0, 4950, 4951, 5, 540, 0, 0, 4951, 4952, 3, 716, 358, 0, 4952, 4955, 5, 68, 0, 0, 4953, 4956, 5, 882, 0, 0, 4954, 4956, 5, 892, 0, 0, 4955, 4953, 1, 0, 0, 0, 4955, 4954, 1, 0, 0, 0, 4956, 427, 1, 0, 0, 0, 4957, 4958, 5, 717, 0, 0, 4958, 4961, 3, 716, 358, 0, 4959, 4960, 5, 188, 0, 0, 4960, 4962, 3, 762, 381, 0, 4961, 4959, 1, 0, 0, 0, 4961, 4962, 1, 0, 0, 0, 4962, 429, 1, 0, 0, 0, 4963, 4964, 7, 78, 0, 0, 4964, 4965, 5, 540, 0, 0, 4965, 4966, 3, 716, 358, 0, 4966, 431, 1, 0, 0, 0, 4967, 4970, 3, 434, 217, 0, 4968, 4970, 3, 4, 2, 0, 4969, 4967, 1, 0, 0, 0, 4969, 4968, 1, 0, 0, 0, 4970, 433, 1, 0, 0, 0, 4971, 4972, 3, 716, 358, 0, 4972, 4973, 5, 878, 0, 0, 4973, 4975, 1, 0, 0, 0, 4974, 4971, 1, 0, 0, 0, 4974, 4975, 1, 0, 0, 0, 4975, 4976, 1, 0, 0, 0, 4976, 4982, 5, 317, 0, 0, 4977, 4978, 3, 454, 227, 0, 4978, 4979, 5, 869, 0, 0, 4979, 4981, 1, 0, 0, 0, 4980, 4977, 1, 0, 0, 0, 4981, 4984, 1, 0, 0, 0, 4982, 4980, 1, 0, 0, 0, 4982, 4983, 1, 0, 0, 0, 4983, 4990, 1, 0, 0, 0, 4984, 4982, 1, 0, 0, 0, 4985, 4986, 3, 456, 228, 0, 4986, 4987, 5, 869, 0, 0, 4987, 4989, 1, 0, 0, 0, 4988, 4985, 1, 0, 0, 0, 4989, 4992, 1, 0, 0, 0, 4990, 4988, 1, 0, 0, 0, 4990, 4991, 1, 0, 0, 0, 4991, 4998, 1, 0, 0, 0, 4992, 4990, 1, 0, 0, 0, 4993, 4994, 3, 458, 229, 0, 4994, 4995, 5, 869, 0, 0, 4995, 4997, 1, 0, 0, 0, 4996, 4993, 1, 0, 0, 0, 4997, 5000, 1, 0, 0, 0, 4998, 4996, 1, 0, 0, 0, 4998, 4999, 1, 0, 0, 0, 4999, 5006, 1, 0, 0, 0, 5000, 4998, 1, 0, 0, 0, 5001, 5002, 3, 460, 230, 0, 5002, 5003, 5, 869, 0, 0, 5003, 5005, 1, 0, 0, 0, 5004, 5001, 1, 0, 0, 0, 5005, 5008, 1, 0, 0, 0, 5006, 5004, 1, 0, 0, 0, 5006, 5007, 1, 0, 0, 0, 5007, 5012, 1, 0, 0, 0, 5008, 5006, 1, 0, 0, 0, 5009, 5011, 3, 464, 232, 0, 5010, 5009, 1, 0, 0, 0, 5011, 5014, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5015, 1, 0, 0, 0, 5014, 5012, 1, 0, 0, 0, 5015, 5017, 5, 378, 0, 0, 5016, 5018, 3, 716, 358, 0, 5017, 5016, 1, 0, 0, 0, 5017, 5018, 1, 0, 0, 0, 5018, 435, 1, 0, 0, 0, 5019, 5022, 5, 23, 0, 0, 5020, 5023, 3, 716, 358, 0, 5021, 5023, 3, 814, 407, 0, 5022, 5020, 1, 0, 0, 0, 5022, 5021, 1, 0, 0, 0, 5022, 5023, 1, 0, 0, 0, 5023, 5025, 1, 0, 0, 0, 5024, 5026, 3, 466, 233, 0, 5025, 5024, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 5025, 1, 0, 0, 0, 5027, 5028, 1, 0, 0, 0, 5028, 5035, 1, 0, 0, 0, 5029, 5031, 5, 53, 0, 0, 5030, 5032, 3, 464, 232, 0, 5031, 5030, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5031, 1, 0, 0, 0, 5033, 5034, 1, 0, 0, 0, 5034, 5036, 1, 0, 0, 0, 5035, 5029, 1, 0, 0, 0, 5035, 5036, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5038, 5, 378, 0, 0, 5038, 5039, 5, 23, 0, 0, 5039, 437, 1, 0, 0, 0, 5040, 5041, 5, 78, 0, 0, 5041, 5042, 3, 814, 407, 0, 5042, 5044, 5, 175, 0, 0, 5043, 5045, 3, 464, 232, 0, 5044, 5043, 1, 0, 0, 0, 5045, 5046, 1, 0, 0, 0, 5046, 5044, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5051, 1, 0, 0, 0, 5048, 5050, 3, 468, 234, 0, 5049, 5048, 1, 0, 0, 0, 5050, 5053, 1, 0, 0, 0, 5051, 5049, 1, 0, 0, 0, 5051, 5052, 1, 0, 0, 0, 5052, 5060, 1, 0, 0, 0, 5053, 5051, 1, 0, 0, 0, 5054, 5056, 5, 53, 0, 0, 5055, 5057, 3, 464, 232, 0, 5056, 5055, 1, 0, 0, 0, 5057, 5058, 1, 0, 0, 0, 5058, 5056, 1, 0, 0, 0, 5058, 5059, 1, 0, 0, 0, 5059, 5061, 1, 0, 0, 0, 5060, 5054, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5063, 5, 378, 0, 0, 5063, 5064, 5, 78, 0, 0, 5064, 439, 1, 0, 0, 0, 5065, 5066, 5, 90, 0, 0, 5066, 5067, 3, 716, 358, 0, 5067, 441, 1, 0, 0, 0, 5068, 5069, 5, 97, 0, 0, 5069, 5070, 3, 716, 358, 0, 5070, 443, 1, 0, 0, 0, 5071, 5072, 3, 716, 358, 0, 5072, 5073, 5, 878, 0, 0, 5073, 5075, 1, 0, 0, 0, 5074, 5071, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5078, 5, 106, 0, 0, 5077, 5079, 3, 464, 232, 0, 5078, 5077, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5078, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 5, 378, 0, 0, 5083, 5085, 5, 106, 0, 0, 5084, 5086, 3, 716, 358, 0, 5085, 5084, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 445, 1, 0, 0, 0, 5087, 5088, 3, 716, 358, 0, 5088, 5089, 5, 878, 0, 0, 5089, 5091, 1, 0, 0, 0, 5090, 5087, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5094, 5, 142, 0, 0, 5093, 5095, 3, 464, 232, 0, 5094, 5093, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5094, 1, 0, 0, 0, 5096, 5097, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 5099, 5, 676, 0, 0, 5099, 5100, 3, 814, 407, 0, 5100, 5101, 5, 378, 0, 0, 5101, 5103, 5, 142, 0, 0, 5102, 5104, 3, 716, 358, 0, 5103, 5102, 1, 0, 0, 0, 5103, 5104, 1, 0, 0, 0, 5104, 447, 1, 0, 0, 0, 5105, 5106, 5, 148, 0, 0, 5106, 5107, 3, 814, 407, 0, 5107, 449, 1, 0, 0, 0, 5108, 5109, 3, 716, 358, 0, 5109, 5110, 5, 878, 0, 0, 5110, 5112, 1, 0, 0, 0, 5111, 5108, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 5114, 5, 193, 0, 0, 5114, 5115, 3, 814, 407, 0, 5115, 5117, 5, 371, 0, 0, 5116, 5118, 3, 464, 232, 0, 5117, 5116, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5117, 1, 0, 0, 0, 5119, 5120, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5122, 5, 378, 0, 0, 5122, 5124, 5, 193, 0, 0, 5123, 5125, 3, 716, 358, 0, 5124, 5123, 1, 0, 0, 0, 5124, 5125, 1, 0, 0, 0, 5125, 451, 1, 0, 0, 0, 5126, 5127, 5, 334, 0, 0, 5127, 5142, 3, 716, 358, 0, 5128, 5133, 5, 64, 0, 0, 5129, 5131, 5, 501, 0, 0, 5130, 5129, 1, 0, 0, 0, 5130, 5131, 1, 0, 0, 0, 5131, 5132, 1, 0, 0, 0, 5132, 5134, 5, 68, 0, 0, 5133, 5130, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5136, 3, 716, 358, 0, 5136, 5137, 5, 88, 0, 0, 5137, 5138, 3, 714, 357, 0, 5138, 5142, 1, 0, 0, 0, 5139, 5140, 5, 516, 0, 0, 5140, 5142, 3, 716, 358, 0, 5141, 5126, 1, 0, 0, 0, 5141, 5128, 1, 0, 0, 0, 5141, 5139, 1, 0, 0, 0, 5142, 453, 1, 0, 0, 0, 5143, 5144, 5, 41, 0, 0, 5144, 5145, 3, 714, 357, 0, 5145, 5148, 3, 736, 368, 0, 5146, 5147, 5, 42, 0, 0, 5147, 5149, 3, 814, 407, 0, 5148, 5146, 1, 0, 0, 0, 5148, 5149, 1, 0, 0, 0, 5149, 455, 1, 0, 0, 0, 5150, 5151, 5, 41, 0, 0, 5151, 5152, 3, 716, 358, 0, 5152, 5153, 5, 30, 0, 0, 5153, 5160, 5, 65, 0, 0, 5154, 5161, 3, 722, 361, 0, 5155, 5157, 5, 164, 0, 0, 5156, 5158, 5, 682, 0, 0, 5157, 5156, 1, 0, 0, 0, 5157, 5158, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5161, 5, 882, 0, 0, 5160, 5154, 1, 0, 0, 0, 5160, 5155, 1, 0, 0, 0, 5161, 457, 1, 0, 0, 0, 5162, 5163, 5, 41, 0, 0, 5163, 5164, 3, 716, 358, 0, 5164, 5165, 5, 38, 0, 0, 5165, 5166, 5, 65, 0, 0, 5166, 5167, 3, 210, 105, 0, 5167, 459, 1, 0, 0, 0, 5168, 5169, 5, 41, 0, 0, 5169, 5170, 7, 79, 0, 0, 5170, 5171, 5, 417, 0, 0, 5171, 5172, 5, 65, 0, 0, 5172, 5177, 3, 462, 231, 0, 5173, 5174, 5, 868, 0, 0, 5174, 5176, 3, 462, 231, 0, 5175, 5173, 1, 0, 0, 0, 5176, 5179, 1, 0, 0, 0, 5177, 5175, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 5180, 1, 0, 0, 0, 5179, 5177, 1, 0, 0, 0, 5180, 5181, 3, 432, 216, 0, 5181, 461, 1, 0, 0, 0, 5182, 5194, 3, 722, 361, 0, 5183, 5185, 5, 164, 0, 0, 5184, 5186, 5, 682, 0, 0, 5185, 5184, 1, 0, 0, 0, 5185, 5186, 1, 0, 0, 0, 5186, 5187, 1, 0, 0, 0, 5187, 5194, 5, 882, 0, 0, 5188, 5194, 3, 716, 358, 0, 5189, 5194, 5, 165, 0, 0, 5190, 5191, 5, 114, 0, 0, 5191, 5194, 5, 407, 0, 0, 5192, 5194, 5, 163, 0, 0, 5193, 5182, 1, 0, 0, 0, 5193, 5183, 1, 0, 0, 0, 5193, 5188, 1, 0, 0, 0, 5193, 5189, 1, 0, 0, 0, 5193, 5190, 1, 0, 0, 0, 5193, 5192, 1, 0, 0, 0, 5194, 463, 1, 0, 0, 0, 5195, 5198, 3, 18, 9, 0, 5196, 5198, 3, 4, 2, 0, 5197, 5195, 1, 0, 0, 0, 5197, 5196, 1, 0, 0, 0, 5198, 5199, 1, 0, 0, 0, 5199, 5200, 5, 869, 0, 0, 5200, 465, 1, 0, 0, 0, 5201, 5204, 5, 191, 0, 0, 5202, 5205, 3, 734, 367, 0, 5203, 5205, 3, 814, 407, 0, 5204, 5202, 1, 0, 0, 0, 5204, 5203, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5208, 5, 175, 0, 0, 5207, 5209, 3, 464, 232, 0, 5208, 5207, 1, 0, 0, 0, 5209, 5210, 1, 0, 0, 0, 5210, 5208, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 467, 1, 0, 0, 0, 5212, 5213, 5, 54, 0, 0, 5213, 5214, 3, 814, 407, 0, 5214, 5216, 5, 175, 0, 0, 5215, 5217, 3, 464, 232, 0, 5216, 5215, 1, 0, 0, 0, 5217, 5218, 1, 0, 0, 0, 5218, 5216, 1, 0, 0, 0, 5218, 5219, 1, 0, 0, 0, 5219, 469, 1, 0, 0, 0, 5220, 5221, 5, 8, 0, 0, 5221, 5223, 5, 678, 0, 0, 5222, 5224, 3, 768, 384, 0, 5223, 5222, 1, 0, 0, 0, 5223, 5224, 1, 0, 0, 0, 5224, 5281, 1, 0, 0, 0, 5225, 5230, 3, 502, 251, 0, 5226, 5227, 5, 868, 0, 0, 5227, 5229, 3, 502, 251, 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, 5282, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5233, 5238, 3, 504, 252, 0, 5234, 5235, 5, 868, 0, 0, 5235, 5237, 3, 504, 252, 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, 5255, 1, 0, 0, 0, 5240, 5238, 1, 0, 0, 0, 5241, 5253, 5, 144, 0, 0, 5242, 5254, 5, 505, 0, 0, 5243, 5250, 3, 516, 258, 0, 5244, 5246, 5, 11, 0, 0, 5245, 5244, 1, 0, 0, 0, 5245, 5246, 1, 0, 0, 0, 5246, 5247, 1, 0, 0, 0, 5247, 5249, 3, 516, 258, 0, 5248, 5245, 1, 0, 0, 0, 5249, 5252, 1, 0, 0, 0, 5250, 5248, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5254, 1, 0, 0, 0, 5252, 5250, 1, 0, 0, 0, 5253, 5242, 1, 0, 0, 0, 5253, 5243, 1, 0, 0, 0, 5254, 5256, 1, 0, 0, 0, 5255, 5241, 1, 0, 0, 0, 5255, 5256, 1, 0, 0, 0, 5256, 5263, 1, 0, 0, 0, 5257, 5259, 5, 194, 0, 0, 5258, 5260, 3, 518, 259, 0, 5259, 5258, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 5259, 1, 0, 0, 0, 5261, 5262, 1, 0, 0, 0, 5262, 5264, 1, 0, 0, 0, 5263, 5257, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 5269, 1, 0, 0, 0, 5265, 5268, 3, 520, 260, 0, 5266, 5268, 3, 522, 261, 0, 5267, 5265, 1, 0, 0, 0, 5267, 5266, 1, 0, 0, 0, 5268, 5271, 1, 0, 0, 0, 5269, 5267, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5274, 1, 0, 0, 0, 5271, 5269, 1, 0, 0, 0, 5272, 5273, 7, 80, 0, 0, 5273, 5275, 5, 882, 0, 0, 5274, 5272, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5282, 1, 0, 0, 0, 5276, 5277, 3, 666, 333, 0, 5277, 5278, 5, 42, 0, 0, 5278, 5279, 5, 582, 0, 0, 5279, 5280, 3, 478, 239, 0, 5280, 5282, 1, 0, 0, 0, 5281, 5225, 1, 0, 0, 0, 5281, 5233, 1, 0, 0, 0, 5281, 5276, 1, 0, 0, 0, 5282, 471, 1, 0, 0, 0, 5283, 5284, 5, 34, 0, 0, 5284, 5286, 5, 678, 0, 0, 5285, 5287, 3, 770, 385, 0, 5286, 5285, 1, 0, 0, 0, 5286, 5287, 1, 0, 0, 0, 5287, 5288, 1, 0, 0, 0, 5288, 5290, 3, 694, 347, 0, 5289, 5291, 3, 506, 253, 0, 5290, 5289, 1, 0, 0, 0, 5290, 5291, 1, 0, 0, 0, 5291, 5299, 1, 0, 0, 0, 5292, 5293, 5, 868, 0, 0, 5293, 5295, 3, 694, 347, 0, 5294, 5296, 3, 506, 253, 0, 5295, 5294, 1, 0, 0, 0, 5295, 5296, 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, 5305, 1, 0, 0, 0, 5301, 5299, 1, 0, 0, 0, 5302, 5303, 5, 42, 0, 0, 5303, 5304, 5, 582, 0, 0, 5304, 5306, 3, 478, 239, 0, 5305, 5302, 1, 0, 0, 0, 5305, 5306, 1, 0, 0, 0, 5306, 5321, 1, 0, 0, 0, 5307, 5319, 5, 144, 0, 0, 5308, 5320, 5, 505, 0, 0, 5309, 5316, 3, 516, 258, 0, 5310, 5312, 5, 11, 0, 0, 5311, 5310, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5315, 3, 516, 258, 0, 5314, 5311, 1, 0, 0, 0, 5315, 5318, 1, 0, 0, 0, 5316, 5314, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5320, 1, 0, 0, 0, 5318, 5316, 1, 0, 0, 0, 5319, 5308, 1, 0, 0, 0, 5319, 5309, 1, 0, 0, 0, 5320, 5322, 1, 0, 0, 0, 5321, 5307, 1, 0, 0, 0, 5321, 5322, 1, 0, 0, 0, 5322, 5329, 1, 0, 0, 0, 5323, 5325, 5, 194, 0, 0, 5324, 5326, 3, 518, 259, 0, 5325, 5324, 1, 0, 0, 0, 5326, 5327, 1, 0, 0, 0, 5327, 5325, 1, 0, 0, 0, 5327, 5328, 1, 0, 0, 0, 5328, 5330, 1, 0, 0, 0, 5329, 5323, 1, 0, 0, 0, 5329, 5330, 1, 0, 0, 0, 5330, 5335, 1, 0, 0, 0, 5331, 5334, 3, 520, 260, 0, 5332, 5334, 3, 522, 261, 0, 5333, 5331, 1, 0, 0, 0, 5333, 5332, 1, 0, 0, 0, 5334, 5337, 1, 0, 0, 0, 5335, 5333, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 5340, 1, 0, 0, 0, 5337, 5335, 1, 0, 0, 0, 5338, 5339, 7, 80, 0, 0, 5339, 5341, 5, 882, 0, 0, 5340, 5338, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 473, 1, 0, 0, 0, 5342, 5343, 5, 51, 0, 0, 5343, 5345, 5, 678, 0, 0, 5344, 5346, 3, 768, 384, 0, 5345, 5344, 1, 0, 0, 0, 5345, 5346, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5352, 3, 694, 347, 0, 5348, 5349, 5, 868, 0, 0, 5349, 5351, 3, 694, 347, 0, 5350, 5348, 1, 0, 0, 0, 5351, 5354, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 475, 1, 0, 0, 0, 5354, 5352, 1, 0, 0, 0, 5355, 5356, 5, 73, 0, 0, 5356, 5361, 3, 530, 265, 0, 5357, 5358, 5, 868, 0, 0, 5358, 5360, 3, 530, 265, 0, 5359, 5357, 1, 0, 0, 0, 5360, 5363, 1, 0, 0, 0, 5361, 5359, 1, 0, 0, 0, 5361, 5362, 1, 0, 0, 0, 5362, 5364, 1, 0, 0, 0, 5363, 5361, 1, 0, 0, 0, 5364, 5366, 5, 119, 0, 0, 5365, 5367, 3, 498, 249, 0, 5366, 5365, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 5368, 1, 0, 0, 0, 5368, 5369, 3, 534, 267, 0, 5369, 5379, 5, 176, 0, 0, 5370, 5375, 3, 510, 255, 0, 5371, 5372, 5, 868, 0, 0, 5372, 5374, 3, 510, 255, 0, 5373, 5371, 1, 0, 0, 0, 5374, 5377, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5380, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5378, 5380, 3, 664, 332, 0, 5379, 5370, 1, 0, 0, 0, 5379, 5378, 1, 0, 0, 0, 5380, 5395, 1, 0, 0, 0, 5381, 5393, 5, 144, 0, 0, 5382, 5394, 5, 505, 0, 0, 5383, 5390, 3, 516, 258, 0, 5384, 5386, 5, 11, 0, 0, 5385, 5384, 1, 0, 0, 0, 5385, 5386, 1, 0, 0, 0, 5386, 5387, 1, 0, 0, 0, 5387, 5389, 3, 516, 258, 0, 5388, 5385, 1, 0, 0, 0, 5389, 5392, 1, 0, 0, 0, 5390, 5388, 1, 0, 0, 0, 5390, 5391, 1, 0, 0, 0, 5391, 5394, 1, 0, 0, 0, 5392, 5390, 1, 0, 0, 0, 5393, 5382, 1, 0, 0, 0, 5393, 5383, 1, 0, 0, 0, 5394, 5396, 1, 0, 0, 0, 5395, 5381, 1, 0, 0, 0, 5395, 5396, 1, 0, 0, 0, 5396, 5406, 1, 0, 0, 0, 5397, 5403, 5, 194, 0, 0, 5398, 5399, 5, 73, 0, 0, 5399, 5402, 5, 121, 0, 0, 5400, 5402, 3, 518, 259, 0, 5401, 5398, 1, 0, 0, 0, 5401, 5400, 1, 0, 0, 0, 5402, 5405, 1, 0, 0, 0, 5403, 5401, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5407, 1, 0, 0, 0, 5405, 5403, 1, 0, 0, 0, 5406, 5397, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5415, 1, 0, 0, 0, 5408, 5409, 5, 13, 0, 0, 5409, 5413, 3, 694, 347, 0, 5410, 5411, 5, 194, 0, 0, 5411, 5412, 5, 582, 0, 0, 5412, 5414, 3, 478, 239, 0, 5413, 5410, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5416, 1, 0, 0, 0, 5415, 5408, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5445, 1, 0, 0, 0, 5417, 5420, 5, 73, 0, 0, 5418, 5419, 5, 547, 0, 0, 5419, 5421, 5, 119, 0, 0, 5420, 5418, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5427, 3, 666, 333, 0, 5423, 5424, 5, 868, 0, 0, 5424, 5426, 3, 666, 333, 0, 5425, 5423, 1, 0, 0, 0, 5426, 5429, 1, 0, 0, 0, 5427, 5425, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5430, 1, 0, 0, 0, 5429, 5427, 1, 0, 0, 0, 5430, 5431, 5, 176, 0, 0, 5431, 5436, 3, 666, 333, 0, 5432, 5433, 5, 868, 0, 0, 5433, 5435, 3, 666, 333, 0, 5434, 5432, 1, 0, 0, 0, 5435, 5438, 1, 0, 0, 0, 5436, 5434, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 5442, 1, 0, 0, 0, 5438, 5436, 1, 0, 0, 0, 5439, 5440, 5, 194, 0, 0, 5440, 5441, 5, 704, 0, 0, 5441, 5443, 5, 121, 0, 0, 5442, 5439, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5445, 1, 0, 0, 0, 5444, 5355, 1, 0, 0, 0, 5444, 5417, 1, 0, 0, 0, 5445, 477, 1, 0, 0, 0, 5446, 5455, 5, 42, 0, 0, 5447, 5455, 5, 505, 0, 0, 5448, 5451, 5, 7, 0, 0, 5449, 5450, 5, 59, 0, 0, 5450, 5452, 3, 664, 332, 0, 5451, 5449, 1, 0, 0, 0, 5451, 5452, 1, 0, 0, 0, 5452, 5455, 1, 0, 0, 0, 5453, 5455, 3, 664, 332, 0, 5454, 5446, 1, 0, 0, 0, 5454, 5447, 1, 0, 0, 0, 5454, 5448, 1, 0, 0, 0, 5454, 5453, 1, 0, 0, 0, 5455, 479, 1, 0, 0, 0, 5456, 5457, 5, 73, 0, 0, 5457, 5458, 5, 547, 0, 0, 5458, 5459, 5, 119, 0, 0, 5459, 5460, 3, 694, 347, 0, 5460, 5461, 5, 176, 0, 0, 5461, 5466, 3, 694, 347, 0, 5462, 5463, 5, 868, 0, 0, 5463, 5465, 3, 694, 347, 0, 5464, 5462, 1, 0, 0, 0, 5465, 5468, 1, 0, 0, 0, 5466, 5464, 1, 0, 0, 0, 5466, 5467, 1, 0, 0, 0, 5467, 5472, 1, 0, 0, 0, 5468, 5466, 1, 0, 0, 0, 5469, 5470, 5, 194, 0, 0, 5470, 5471, 5, 73, 0, 0, 5471, 5473, 5, 121, 0, 0, 5472, 5469, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 481, 1, 0, 0, 0, 5474, 5475, 5, 8, 0, 0, 5475, 5476, 5, 739, 0, 0, 5476, 5477, 5, 74, 0, 0, 5477, 5483, 3, 656, 328, 0, 5478, 5480, 5, 190, 0, 0, 5479, 5481, 5, 857, 0, 0, 5480, 5479, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5484, 3, 490, 245, 0, 5483, 5478, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 5490, 1, 0, 0, 0, 5485, 5487, 5, 837, 0, 0, 5486, 5488, 5, 857, 0, 0, 5487, 5486, 1, 0, 0, 0, 5487, 5488, 1, 0, 0, 0, 5488, 5489, 1, 0, 0, 0, 5489, 5491, 3, 722, 361, 0, 5490, 5485, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 5496, 1, 0, 0, 0, 5492, 5494, 7, 39, 0, 0, 5493, 5495, 5, 66, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5497, 1, 0, 0, 0, 5496, 5492, 1, 0, 0, 0, 5496, 5497, 1, 0, 0, 0, 5497, 483, 1, 0, 0, 0, 5498, 5499, 5, 34, 0, 0, 5499, 5500, 5, 739, 0, 0, 5500, 5501, 5, 74, 0, 0, 5501, 5502, 3, 654, 327, 0, 5502, 5503, 5, 839, 0, 0, 5503, 5504, 5, 857, 0, 0, 5504, 5510, 7, 81, 0, 0, 5505, 5507, 5, 190, 0, 0, 5506, 5508, 5, 857, 0, 0, 5507, 5506, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5511, 3, 490, 245, 0, 5510, 5505, 1, 0, 0, 0, 5510, 5511, 1, 0, 0, 0, 5511, 5517, 1, 0, 0, 0, 5512, 5514, 5, 837, 0, 0, 5513, 5515, 5, 857, 0, 0, 5514, 5513, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5518, 3, 722, 361, 0, 5517, 5512, 1, 0, 0, 0, 5517, 5518, 1, 0, 0, 0, 5518, 5520, 1, 0, 0, 0, 5519, 5521, 7, 39, 0, 0, 5520, 5519, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 485, 1, 0, 0, 0, 5522, 5523, 5, 51, 0, 0, 5523, 5524, 5, 739, 0, 0, 5524, 5525, 5, 74, 0, 0, 5525, 5527, 3, 656, 328, 0, 5526, 5528, 5, 66, 0, 0, 5527, 5526, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 487, 1, 0, 0, 0, 5529, 5530, 5, 155, 0, 0, 5530, 5531, 5, 739, 0, 0, 5531, 5532, 5, 74, 0, 0, 5532, 5542, 3, 656, 328, 0, 5533, 5534, 5, 65, 0, 0, 5534, 5539, 3, 722, 361, 0, 5535, 5536, 5, 868, 0, 0, 5536, 5538, 3, 722, 361, 0, 5537, 5535, 1, 0, 0, 0, 5538, 5541, 1, 0, 0, 0, 5539, 5537, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5543, 1, 0, 0, 0, 5541, 5539, 1, 0, 0, 0, 5542, 5533, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 489, 1, 0, 0, 0, 5544, 5550, 3, 722, 361, 0, 5545, 5546, 3, 722, 361, 0, 5546, 5547, 5, 854, 0, 0, 5547, 5548, 3, 722, 361, 0, 5548, 5550, 1, 0, 0, 0, 5549, 5544, 1, 0, 0, 0, 5549, 5545, 1, 0, 0, 0, 5550, 5555, 1, 0, 0, 0, 5551, 5552, 5, 868, 0, 0, 5552, 5554, 3, 490, 245, 0, 5553, 5551, 1, 0, 0, 0, 5554, 5557, 1, 0, 0, 0, 5555, 5553, 1, 0, 0, 0, 5555, 5556, 1, 0, 0, 0, 5556, 491, 1, 0, 0, 0, 5557, 5555, 1, 0, 0, 0, 5558, 5559, 5, 141, 0, 0, 5559, 5560, 5, 678, 0, 0, 5560, 5565, 3, 536, 268, 0, 5561, 5562, 5, 868, 0, 0, 5562, 5564, 3, 536, 268, 0, 5563, 5561, 1, 0, 0, 0, 5564, 5567, 1, 0, 0, 0, 5565, 5563, 1, 0, 0, 0, 5565, 5566, 1, 0, 0, 0, 5566, 493, 1, 0, 0, 0, 5567, 5565, 1, 0, 0, 0, 5568, 5570, 5, 149, 0, 0, 5569, 5571, 3, 768, 384, 0, 5570, 5569, 1, 0, 0, 0, 5570, 5571, 1, 0, 0, 0, 5571, 5572, 1, 0, 0, 0, 5572, 5577, 3, 530, 265, 0, 5573, 5574, 5, 868, 0, 0, 5574, 5576, 3, 530, 265, 0, 5575, 5573, 1, 0, 0, 0, 5576, 5579, 1, 0, 0, 0, 5577, 5575, 1, 0, 0, 0, 5577, 5578, 1, 0, 0, 0, 5578, 5580, 1, 0, 0, 0, 5579, 5577, 1, 0, 0, 0, 5580, 5582, 5, 119, 0, 0, 5581, 5583, 3, 498, 249, 0, 5582, 5581, 1, 0, 0, 0, 5582, 5583, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 5585, 3, 534, 267, 0, 5585, 5586, 5, 68, 0, 0, 5586, 5588, 3, 664, 332, 0, 5587, 5589, 3, 496, 248, 0, 5588, 5587, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5621, 1, 0, 0, 0, 5590, 5592, 5, 149, 0, 0, 5591, 5593, 3, 768, 384, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5594, 1, 0, 0, 0, 5594, 5596, 5, 7, 0, 0, 5595, 5597, 5, 734, 0, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 1, 0, 0, 0, 5598, 5599, 5, 868, 0, 0, 5599, 5600, 5, 73, 0, 0, 5600, 5601, 5, 121, 0, 0, 5601, 5602, 5, 68, 0, 0, 5602, 5604, 3, 664, 332, 0, 5603, 5605, 3, 496, 248, 0, 5604, 5603, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5621, 1, 0, 0, 0, 5606, 5608, 5, 149, 0, 0, 5607, 5609, 3, 768, 384, 0, 5608, 5607, 1, 0, 0, 0, 5608, 5609, 1, 0, 0, 0, 5609, 5612, 1, 0, 0, 0, 5610, 5611, 5, 547, 0, 0, 5611, 5613, 5, 119, 0, 0, 5612, 5610, 1, 0, 0, 0, 5612, 5613, 1, 0, 0, 0, 5613, 5614, 1, 0, 0, 0, 5614, 5615, 3, 664, 332, 0, 5615, 5616, 5, 68, 0, 0, 5616, 5618, 3, 664, 332, 0, 5617, 5619, 3, 496, 248, 0, 5618, 5617, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5621, 1, 0, 0, 0, 5620, 5568, 1, 0, 0, 0, 5620, 5590, 1, 0, 0, 0, 5620, 5606, 1, 0, 0, 0, 5621, 495, 1, 0, 0, 0, 5622, 5623, 5, 79, 0, 0, 5623, 5624, 5, 674, 0, 0, 5624, 5625, 5, 678, 0, 0, 5625, 497, 1, 0, 0, 0, 5626, 5627, 7, 82, 0, 0, 5627, 499, 1, 0, 0, 0, 5628, 5629, 5, 155, 0, 0, 5629, 5632, 5, 529, 0, 0, 5630, 5631, 5, 65, 0, 0, 5631, 5633, 3, 694, 347, 0, 5632, 5630, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5637, 5, 857, 0, 0, 5635, 5638, 3, 808, 404, 0, 5636, 5638, 5, 882, 0, 0, 5637, 5635, 1, 0, 0, 0, 5637, 5636, 1, 0, 0, 0, 5638, 5661, 1, 0, 0, 0, 5639, 5640, 5, 155, 0, 0, 5640, 5643, 5, 529, 0, 0, 5641, 5642, 5, 65, 0, 0, 5642, 5644, 3, 694, 347, 0, 5643, 5641, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5649, 1, 0, 0, 0, 5645, 5646, 5, 176, 0, 0, 5646, 5650, 5, 829, 0, 0, 5647, 5648, 5, 857, 0, 0, 5648, 5650, 5, 882, 0, 0, 5649, 5645, 1, 0, 0, 0, 5649, 5647, 1, 0, 0, 0, 5650, 5653, 1, 0, 0, 0, 5651, 5652, 5, 143, 0, 0, 5652, 5654, 5, 882, 0, 0, 5653, 5651, 1, 0, 0, 0, 5653, 5654, 1, 0, 0, 0, 5654, 5658, 1, 0, 0, 0, 5655, 5656, 5, 147, 0, 0, 5656, 5657, 5, 36, 0, 0, 5657, 5659, 5, 529, 0, 0, 5658, 5655, 1, 0, 0, 0, 5658, 5659, 1, 0, 0, 0, 5659, 5661, 1, 0, 0, 0, 5660, 5628, 1, 0, 0, 0, 5660, 5639, 1, 0, 0, 0, 5661, 501, 1, 0, 0, 0, 5662, 5663, 3, 694, 347, 0, 5663, 5664, 3, 520, 260, 0, 5664, 503, 1, 0, 0, 0, 5665, 5691, 3, 694, 347, 0, 5666, 5667, 5, 423, 0, 0, 5667, 5668, 5, 20, 0, 0, 5668, 5669, 5, 882, 0, 0, 5669, 5692, 3, 512, 256, 0, 5670, 5671, 5, 423, 0, 0, 5671, 5672, 5, 20, 0, 0, 5672, 5673, 5, 829, 0, 0, 5673, 5674, 5, 529, 0, 0, 5674, 5692, 3, 512, 256, 0, 5675, 5676, 5, 423, 0, 0, 5676, 5677, 5, 194, 0, 0, 5677, 5692, 3, 514, 257, 0, 5678, 5679, 5, 369, 0, 0, 5679, 5680, 5, 511, 0, 0, 5680, 5692, 5, 529, 0, 0, 5681, 5682, 7, 83, 0, 0, 5682, 5684, 3, 528, 264, 0, 5683, 5685, 3, 524, 262, 0, 5684, 5683, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 5687, 1, 0, 0, 0, 5686, 5681, 1, 0, 0, 0, 5687, 5688, 1, 0, 0, 0, 5688, 5686, 1, 0, 0, 0, 5688, 5689, 1, 0, 0, 0, 5689, 5692, 1, 0, 0, 0, 5690, 5692, 3, 526, 263, 0, 5691, 5666, 1, 0, 0, 0, 5691, 5670, 1, 0, 0, 0, 5691, 5675, 1, 0, 0, 0, 5691, 5678, 1, 0, 0, 0, 5691, 5686, 1, 0, 0, 0, 5691, 5690, 1, 0, 0, 0, 5691, 5692, 1, 0, 0, 0, 5692, 505, 1, 0, 0, 0, 5693, 5694, 5, 423, 0, 0, 5694, 5700, 5, 20, 0, 0, 5695, 5701, 5, 882, 0, 0, 5696, 5697, 5, 829, 0, 0, 5697, 5701, 5, 529, 0, 0, 5698, 5699, 5, 529, 0, 0, 5699, 5701, 5, 882, 0, 0, 5700, 5695, 1, 0, 0, 0, 5700, 5696, 1, 0, 0, 0, 5700, 5698, 1, 0, 0, 0, 5701, 5704, 1, 0, 0, 0, 5702, 5703, 5, 11, 0, 0, 5703, 5705, 3, 506, 253, 0, 5704, 5702, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5730, 1, 0, 0, 0, 5706, 5707, 5, 423, 0, 0, 5707, 5708, 5, 194, 0, 0, 5708, 5717, 3, 716, 358, 0, 5709, 5713, 5, 20, 0, 0, 5710, 5714, 5, 882, 0, 0, 5711, 5712, 5, 829, 0, 0, 5712, 5714, 5, 529, 0, 0, 5713, 5710, 1, 0, 0, 0, 5713, 5711, 1, 0, 0, 0, 5714, 5718, 1, 0, 0, 0, 5715, 5716, 5, 13, 0, 0, 5716, 5718, 5, 882, 0, 0, 5717, 5709, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5717, 5718, 1, 0, 0, 0, 5718, 5721, 1, 0, 0, 0, 5719, 5720, 5, 11, 0, 0, 5720, 5722, 3, 506, 253, 0, 5721, 5719, 1, 0, 0, 0, 5721, 5722, 1, 0, 0, 0, 5722, 5730, 1, 0, 0, 0, 5723, 5724, 5, 423, 0, 0, 5724, 5725, 5, 194, 0, 0, 5725, 5727, 3, 716, 358, 0, 5726, 5728, 3, 508, 254, 0, 5727, 5726, 1, 0, 0, 0, 5727, 5728, 1, 0, 0, 0, 5728, 5730, 1, 0, 0, 0, 5729, 5693, 1, 0, 0, 0, 5729, 5706, 1, 0, 0, 0, 5729, 5723, 1, 0, 0, 0, 5730, 507, 1, 0, 0, 0, 5731, 5732, 5, 427, 0, 0, 5732, 5733, 5, 708, 0, 0, 5733, 5734, 5, 423, 0, 0, 5734, 5738, 5, 20, 0, 0, 5735, 5736, 5, 829, 0, 0, 5736, 5739, 5, 529, 0, 0, 5737, 5739, 5, 882, 0, 0, 5738, 5735, 1, 0, 0, 0, 5738, 5737, 1, 0, 0, 0, 5739, 5749, 1, 0, 0, 0, 5740, 5741, 5, 427, 0, 0, 5741, 5742, 5, 708, 0, 0, 5742, 5743, 5, 423, 0, 0, 5743, 5744, 5, 194, 0, 0, 5744, 5745, 3, 716, 358, 0, 5745, 5746, 5, 13, 0, 0, 5746, 5747, 5, 882, 0, 0, 5747, 5749, 1, 0, 0, 0, 5748, 5731, 1, 0, 0, 0, 5748, 5740, 1, 0, 0, 0, 5749, 509, 1, 0, 0, 0, 5750, 5751, 3, 694, 347, 0, 5751, 5752, 5, 423, 0, 0, 5752, 5753, 5, 20, 0, 0, 5753, 5754, 5, 529, 0, 0, 5754, 5755, 5, 882, 0, 0, 5755, 5776, 1, 0, 0, 0, 5756, 5757, 3, 694, 347, 0, 5757, 5758, 5, 423, 0, 0, 5758, 5759, 5, 20, 0, 0, 5759, 5760, 5, 829, 0, 0, 5760, 5761, 5, 529, 0, 0, 5761, 5762, 3, 512, 256, 0, 5762, 5776, 1, 0, 0, 0, 5763, 5764, 3, 694, 347, 0, 5764, 5765, 5, 423, 0, 0, 5765, 5766, 5, 20, 0, 0, 5766, 5767, 5, 882, 0, 0, 5767, 5768, 3, 512, 256, 0, 5768, 5776, 1, 0, 0, 0, 5769, 5770, 3, 694, 347, 0, 5770, 5771, 5, 423, 0, 0, 5771, 5772, 5, 194, 0, 0, 5772, 5773, 3, 514, 257, 0, 5773, 5776, 1, 0, 0, 0, 5774, 5776, 3, 694, 347, 0, 5775, 5750, 1, 0, 0, 0, 5775, 5756, 1, 0, 0, 0, 5775, 5763, 1, 0, 0, 0, 5775, 5769, 1, 0, 0, 0, 5775, 5774, 1, 0, 0, 0, 5776, 511, 1, 0, 0, 0, 5777, 5778, 5, 143, 0, 0, 5778, 5780, 5, 882, 0, 0, 5779, 5777, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5784, 1, 0, 0, 0, 5781, 5782, 5, 147, 0, 0, 5782, 5783, 5, 36, 0, 0, 5783, 5785, 5, 529, 0, 0, 5784, 5781, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 513, 1, 0, 0, 0, 5786, 5794, 3, 716, 358, 0, 5787, 5791, 7, 84, 0, 0, 5788, 5792, 5, 882, 0, 0, 5789, 5790, 5, 829, 0, 0, 5790, 5792, 5, 529, 0, 0, 5791, 5788, 1, 0, 0, 0, 5791, 5789, 1, 0, 0, 0, 5792, 5793, 1, 0, 0, 0, 5793, 5795, 3, 512, 256, 0, 5794, 5787, 1, 0, 0, 0, 5794, 5795, 1, 0, 0, 0, 5795, 5801, 1, 0, 0, 0, 5796, 5797, 3, 716, 358, 0, 5797, 5798, 5, 188, 0, 0, 5798, 5799, 3, 808, 404, 0, 5799, 5801, 1, 0, 0, 0, 5800, 5786, 1, 0, 0, 0, 5800, 5796, 1, 0, 0, 0, 5801, 515, 1, 0, 0, 0, 5802, 5811, 5, 169, 0, 0, 5803, 5811, 5, 693, 0, 0, 5804, 5805, 5, 331, 0, 0, 5805, 5811, 5, 882, 0, 0, 5806, 5807, 5, 441, 0, 0, 5807, 5811, 5, 882, 0, 0, 5808, 5809, 5, 651, 0, 0, 5809, 5811, 5, 882, 0, 0, 5810, 5802, 1, 0, 0, 0, 5810, 5803, 1, 0, 0, 0, 5810, 5804, 1, 0, 0, 0, 5810, 5806, 1, 0, 0, 0, 5810, 5808, 1, 0, 0, 0, 5811, 517, 1, 0, 0, 0, 5812, 5813, 5, 479, 0, 0, 5813, 5821, 3, 722, 361, 0, 5814, 5815, 5, 482, 0, 0, 5815, 5821, 3, 722, 361, 0, 5816, 5817, 5, 478, 0, 0, 5817, 5821, 3, 722, 361, 0, 5818, 5819, 5, 483, 0, 0, 5819, 5821, 3, 722, 361, 0, 5820, 5812, 1, 0, 0, 0, 5820, 5814, 1, 0, 0, 0, 5820, 5816, 1, 0, 0, 0, 5820, 5818, 1, 0, 0, 0, 5821, 519, 1, 0, 0, 0, 5822, 5823, 5, 529, 0, 0, 5823, 5830, 5, 390, 0, 0, 5824, 5831, 5, 42, 0, 0, 5825, 5831, 5, 500, 0, 0, 5826, 5827, 5, 87, 0, 0, 5827, 5828, 3, 722, 361, 0, 5828, 5829, 5, 698, 0, 0, 5829, 5831, 1, 0, 0, 0, 5830, 5824, 1, 0, 0, 0, 5830, 5825, 1, 0, 0, 0, 5830, 5826, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, 5831, 5861, 1, 0, 0, 0, 5832, 5833, 5, 529, 0, 0, 5833, 5836, 5, 420, 0, 0, 5834, 5837, 5, 42, 0, 0, 5835, 5837, 3, 722, 361, 0, 5836, 5834, 1, 0, 0, 0, 5836, 5835, 1, 0, 0, 0, 5837, 5861, 1, 0, 0, 0, 5838, 5839, 5, 529, 0, 0, 5839, 5840, 5, 581, 0, 0, 5840, 5845, 5, 87, 0, 0, 5841, 5846, 5, 42, 0, 0, 5842, 5843, 3, 722, 361, 0, 5843, 5844, 5, 698, 0, 0, 5844, 5846, 1, 0, 0, 0, 5845, 5841, 1, 0, 0, 0, 5845, 5842, 1, 0, 0, 0, 5846, 5861, 1, 0, 0, 0, 5847, 5848, 5, 529, 0, 0, 5848, 5849, 5, 144, 0, 0, 5849, 5851, 5, 36, 0, 0, 5850, 5852, 7, 85, 0, 0, 5851, 5850, 1, 0, 0, 0, 5851, 5852, 1, 0, 0, 0, 5852, 5861, 1, 0, 0, 0, 5853, 5854, 5, 395, 0, 0, 5854, 5861, 3, 722, 361, 0, 5855, 5858, 5, 530, 0, 0, 5856, 5859, 3, 722, 361, 0, 5857, 5859, 5, 669, 0, 0, 5858, 5856, 1, 0, 0, 0, 5858, 5857, 1, 0, 0, 0, 5859, 5861, 1, 0, 0, 0, 5860, 5822, 1, 0, 0, 0, 5860, 5832, 1, 0, 0, 0, 5860, 5838, 1, 0, 0, 0, 5860, 5847, 1, 0, 0, 0, 5860, 5853, 1, 0, 0, 0, 5860, 5855, 1, 0, 0, 0, 5861, 521, 1, 0, 0, 0, 5862, 5863, 5, 304, 0, 0, 5863, 5864, 7, 86, 0, 0, 5864, 523, 1, 0, 0, 0, 5865, 5868, 5, 423, 0, 0, 5866, 5867, 5, 194, 0, 0, 5867, 5869, 3, 716, 358, 0, 5868, 5866, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5878, 1, 0, 0, 0, 5870, 5874, 5, 20, 0, 0, 5871, 5875, 5, 882, 0, 0, 5872, 5873, 5, 829, 0, 0, 5873, 5875, 5, 529, 0, 0, 5874, 5871, 1, 0, 0, 0, 5874, 5872, 1, 0, 0, 0, 5875, 5879, 1, 0, 0, 0, 5876, 5877, 5, 13, 0, 0, 5877, 5879, 5, 882, 0, 0, 5878, 5870, 1, 0, 0, 0, 5878, 5876, 1, 0, 0, 0, 5879, 525, 1, 0, 0, 0, 5880, 5881, 3, 528, 264, 0, 5881, 5882, 5, 429, 0, 0, 5882, 5883, 5, 555, 0, 0, 5883, 5896, 1, 0, 0, 0, 5884, 5885, 3, 528, 264, 0, 5885, 5886, 5, 401, 0, 0, 5886, 5887, 5, 555, 0, 0, 5887, 5888, 5, 155, 0, 0, 5888, 5889, 5, 330, 0, 0, 5889, 5890, 5, 13, 0, 0, 5890, 5891, 5, 882, 0, 0, 5891, 5896, 1, 0, 0, 0, 5892, 5893, 3, 528, 264, 0, 5893, 5894, 5, 675, 0, 0, 5894, 5896, 1, 0, 0, 0, 5895, 5880, 1, 0, 0, 0, 5895, 5884, 1, 0, 0, 0, 5895, 5892, 1, 0, 0, 0, 5896, 527, 1, 0, 0, 0, 5897, 5898, 7, 87, 0, 0, 5898, 5899, 5, 394, 0, 0, 5899, 529, 1, 0, 0, 0, 5900, 5905, 3, 532, 266, 0, 5901, 5902, 5, 866, 0, 0, 5902, 5903, 3, 670, 335, 0, 5903, 5904, 5, 867, 0, 0, 5904, 5906, 1, 0, 0, 0, 5905, 5901, 1, 0, 0, 0, 5905, 5906, 1, 0, 0, 0, 5906, 531, 1, 0, 0, 0, 5907, 5909, 5, 7, 0, 0, 5908, 5910, 5, 734, 0, 0, 5909, 5908, 1, 0, 0, 0, 5909, 5910, 1, 0, 0, 0, 5910, 6001, 1, 0, 0, 0, 5911, 5913, 5, 8, 0, 0, 5912, 5914, 5, 743, 0, 0, 5913, 5912, 1, 0, 0, 0, 5913, 5914, 1, 0, 0, 0, 5914, 6001, 1, 0, 0, 0, 5915, 5923, 5, 34, 0, 0, 5916, 5917, 5, 660, 0, 0, 5917, 5924, 5, 752, 0, 0, 5918, 5924, 5, 743, 0, 0, 5919, 5924, 5, 684, 0, 0, 5920, 5924, 5, 678, 0, 0, 5921, 5924, 5, 658, 0, 0, 5922, 5924, 5, 582, 0, 0, 5923, 5916, 1, 0, 0, 0, 5923, 5918, 1, 0, 0, 0, 5923, 5919, 1, 0, 0, 0, 5923, 5920, 1, 0, 0, 0, 5923, 5921, 1, 0, 0, 0, 5923, 5922, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 6001, 1, 0, 0, 0, 5925, 6001, 5, 44, 0, 0, 5926, 5928, 5, 51, 0, 0, 5927, 5929, 5, 582, 0, 0, 5928, 5927, 1, 0, 0, 0, 5928, 5929, 1, 0, 0, 0, 5929, 6001, 1, 0, 0, 0, 5930, 6001, 5, 385, 0, 0, 5931, 6001, 5, 717, 0, 0, 5932, 6001, 5, 718, 0, 0, 5933, 5934, 5, 73, 0, 0, 5934, 6001, 5, 121, 0, 0, 5935, 6001, 5, 82, 0, 0, 5936, 6001, 5, 86, 0, 0, 5937, 5938, 5, 104, 0, 0, 5938, 6001, 5, 752, 0, 0, 5939, 6001, 5, 735, 0, 0, 5940, 6001, 5, 547, 0, 0, 5941, 6001, 5, 138, 0, 0, 5942, 6001, 5, 736, 0, 0, 5943, 5944, 5, 572, 0, 0, 5944, 6001, 7, 88, 0, 0, 5945, 6001, 5, 154, 0, 0, 5946, 5947, 5, 157, 0, 0, 5947, 6001, 7, 89, 0, 0, 5948, 6001, 5, 749, 0, 0, 5949, 6001, 5, 750, 0, 0, 5950, 6001, 5, 178, 0, 0, 5951, 6001, 5, 185, 0, 0, 5952, 6001, 5, 186, 0, 0, 5953, 6001, 5, 705, 0, 0, 5954, 6001, 5, 706, 0, 0, 5955, 6001, 5, 707, 0, 0, 5956, 6001, 5, 709, 0, 0, 5957, 6001, 5, 710, 0, 0, 5958, 6001, 5, 711, 0, 0, 5959, 6001, 5, 712, 0, 0, 5960, 6001, 5, 714, 0, 0, 5961, 6001, 5, 715, 0, 0, 5962, 6001, 5, 716, 0, 0, 5963, 6001, 5, 719, 0, 0, 5964, 6001, 5, 720, 0, 0, 5965, 6001, 5, 721, 0, 0, 5966, 6001, 5, 722, 0, 0, 5967, 6001, 5, 723, 0, 0, 5968, 6001, 5, 724, 0, 0, 5969, 6001, 5, 725, 0, 0, 5970, 6001, 5, 726, 0, 0, 5971, 6001, 5, 727, 0, 0, 5972, 6001, 5, 728, 0, 0, 5973, 6001, 5, 731, 0, 0, 5974, 6001, 5, 732, 0, 0, 5975, 6001, 5, 733, 0, 0, 5976, 6001, 5, 737, 0, 0, 5977, 6001, 5, 738, 0, 0, 5978, 6001, 5, 740, 0, 0, 5979, 6001, 5, 741, 0, 0, 5980, 6001, 5, 742, 0, 0, 5981, 6001, 5, 745, 0, 0, 5982, 6001, 5, 746, 0, 0, 5983, 6001, 5, 747, 0, 0, 5984, 6001, 5, 160, 0, 0, 5985, 6001, 5, 748, 0, 0, 5986, 6001, 5, 836, 0, 0, 5987, 6001, 5, 751, 0, 0, 5988, 6001, 5, 753, 0, 0, 5989, 6001, 5, 838, 0, 0, 5990, 6001, 5, 754, 0, 0, 5991, 6001, 5, 755, 0, 0, 5992, 5993, 5, 103, 0, 0, 5993, 5994, 5, 68, 0, 0, 5994, 6001, 5, 744, 0, 0, 5995, 5996, 5, 154, 0, 0, 5996, 5997, 5, 88, 0, 0, 5997, 6001, 5, 744, 0, 0, 5998, 5999, 5, 729, 0, 0, 5999, 6001, 5, 730, 0, 0, 6000, 5907, 1, 0, 0, 0, 6000, 5911, 1, 0, 0, 0, 6000, 5915, 1, 0, 0, 0, 6000, 5925, 1, 0, 0, 0, 6000, 5926, 1, 0, 0, 0, 6000, 5930, 1, 0, 0, 0, 6000, 5931, 1, 0, 0, 0, 6000, 5932, 1, 0, 0, 0, 6000, 5933, 1, 0, 0, 0, 6000, 5935, 1, 0, 0, 0, 6000, 5936, 1, 0, 0, 0, 6000, 5937, 1, 0, 0, 0, 6000, 5939, 1, 0, 0, 0, 6000, 5940, 1, 0, 0, 0, 6000, 5941, 1, 0, 0, 0, 6000, 5942, 1, 0, 0, 0, 6000, 5943, 1, 0, 0, 0, 6000, 5945, 1, 0, 0, 0, 6000, 5946, 1, 0, 0, 0, 6000, 5948, 1, 0, 0, 0, 6000, 5949, 1, 0, 0, 0, 6000, 5950, 1, 0, 0, 0, 6000, 5951, 1, 0, 0, 0, 6000, 5952, 1, 0, 0, 0, 6000, 5953, 1, 0, 0, 0, 6000, 5954, 1, 0, 0, 0, 6000, 5955, 1, 0, 0, 0, 6000, 5956, 1, 0, 0, 0, 6000, 5957, 1, 0, 0, 0, 6000, 5958, 1, 0, 0, 0, 6000, 5959, 1, 0, 0, 0, 6000, 5960, 1, 0, 0, 0, 6000, 5961, 1, 0, 0, 0, 6000, 5962, 1, 0, 0, 0, 6000, 5963, 1, 0, 0, 0, 6000, 5964, 1, 0, 0, 0, 6000, 5965, 1, 0, 0, 0, 6000, 5966, 1, 0, 0, 0, 6000, 5967, 1, 0, 0, 0, 6000, 5968, 1, 0, 0, 0, 6000, 5969, 1, 0, 0, 0, 6000, 5970, 1, 0, 0, 0, 6000, 5971, 1, 0, 0, 0, 6000, 5972, 1, 0, 0, 0, 6000, 5973, 1, 0, 0, 0, 6000, 5974, 1, 0, 0, 0, 6000, 5975, 1, 0, 0, 0, 6000, 5976, 1, 0, 0, 0, 6000, 5977, 1, 0, 0, 0, 6000, 5978, 1, 0, 0, 0, 6000, 5979, 1, 0, 0, 0, 6000, 5980, 1, 0, 0, 0, 6000, 5981, 1, 0, 0, 0, 6000, 5982, 1, 0, 0, 0, 6000, 5983, 1, 0, 0, 0, 6000, 5984, 1, 0, 0, 0, 6000, 5985, 1, 0, 0, 0, 6000, 5986, 1, 0, 0, 0, 6000, 5987, 1, 0, 0, 0, 6000, 5988, 1, 0, 0, 0, 6000, 5989, 1, 0, 0, 0, 6000, 5990, 1, 0, 0, 0, 6000, 5991, 1, 0, 0, 0, 6000, 5992, 1, 0, 0, 0, 6000, 5995, 1, 0, 0, 0, 6000, 5998, 1, 0, 0, 0, 6001, 533, 1, 0, 0, 0, 6002, 6019, 5, 850, 0, 0, 6003, 6004, 5, 850, 0, 0, 6004, 6005, 5, 865, 0, 0, 6005, 6019, 5, 850, 0, 0, 6006, 6007, 3, 716, 358, 0, 6007, 6008, 5, 865, 0, 0, 6008, 6009, 5, 850, 0, 0, 6009, 6019, 1, 0, 0, 0, 6010, 6011, 3, 716, 358, 0, 6011, 6012, 5, 865, 0, 0, 6012, 6013, 3, 716, 358, 0, 6013, 6019, 1, 0, 0, 0, 6014, 6015, 3, 716, 358, 0, 6015, 6016, 3, 720, 360, 0, 6016, 6019, 1, 0, 0, 0, 6017, 6019, 3, 716, 358, 0, 6018, 6002, 1, 0, 0, 0, 6018, 6003, 1, 0, 0, 0, 6018, 6006, 1, 0, 0, 0, 6018, 6010, 1, 0, 0, 0, 6018, 6014, 1, 0, 0, 0, 6018, 6017, 1, 0, 0, 0, 6019, 535, 1, 0, 0, 0, 6020, 6021, 3, 694, 347, 0, 6021, 6022, 5, 176, 0, 0, 6022, 6023, 3, 694, 347, 0, 6023, 537, 1, 0, 0, 0, 6024, 6026, 5, 10, 0, 0, 6025, 6027, 3, 548, 274, 0, 6026, 6025, 1, 0, 0, 0, 6026, 6027, 1, 0, 0, 0, 6027, 6028, 1, 0, 0, 0, 6028, 6029, 5, 173, 0, 0, 6029, 6073, 3, 660, 330, 0, 6030, 6032, 5, 10, 0, 0, 6031, 6033, 3, 548, 274, 0, 6032, 6031, 1, 0, 0, 0, 6032, 6033, 1, 0, 0, 0, 6033, 6034, 1, 0, 0, 0, 6034, 6035, 5, 173, 0, 0, 6035, 6036, 3, 662, 331, 0, 6036, 6037, 5, 185, 0, 0, 6037, 6038, 5, 77, 0, 0, 6038, 6039, 5, 119, 0, 0, 6039, 6044, 3, 670, 335, 0, 6040, 6041, 5, 194, 0, 0, 6041, 6042, 3, 722, 361, 0, 6042, 6043, 5, 19, 0, 0, 6043, 6045, 1, 0, 0, 0, 6044, 6040, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6073, 1, 0, 0, 0, 6046, 6048, 5, 10, 0, 0, 6047, 6049, 3, 548, 274, 0, 6048, 6047, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6051, 5, 173, 0, 0, 6051, 6052, 3, 662, 331, 0, 6052, 6053, 5, 185, 0, 0, 6053, 6054, 5, 77, 0, 0, 6054, 6055, 5, 119, 0, 0, 6055, 6059, 3, 672, 336, 0, 6056, 6057, 5, 188, 0, 0, 6057, 6058, 5, 360, 0, 0, 6058, 6060, 5, 882, 0, 0, 6059, 6056, 1, 0, 0, 0, 6059, 6060, 1, 0, 0, 0, 6060, 6073, 1, 0, 0, 0, 6061, 6063, 5, 10, 0, 0, 6062, 6064, 3, 548, 274, 0, 6063, 6062, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, 0, 6065, 6066, 5, 173, 0, 0, 6066, 6067, 3, 662, 331, 0, 6067, 6068, 5, 51, 0, 0, 6068, 6069, 5, 77, 0, 0, 6069, 6070, 5, 119, 0, 0, 6070, 6071, 3, 670, 335, 0, 6071, 6073, 1, 0, 0, 0, 6072, 6024, 1, 0, 0, 0, 6072, 6030, 1, 0, 0, 0, 6072, 6046, 1, 0, 0, 0, 6072, 6061, 1, 0, 0, 0, 6073, 539, 1, 0, 0, 0, 6074, 6075, 5, 27, 0, 0, 6075, 6076, 5, 173, 0, 0, 6076, 6080, 3, 660, 330, 0, 6077, 6079, 3, 550, 275, 0, 6078, 6077, 1, 0, 0, 0, 6079, 6082, 1, 0, 0, 0, 6080, 6078, 1, 0, 0, 0, 6080, 6081, 1, 0, 0, 0, 6081, 541, 1, 0, 0, 0, 6082, 6080, 1, 0, 0, 0, 6083, 6084, 5, 329, 0, 0, 6084, 6085, 5, 173, 0, 0, 6085, 6087, 3, 660, 330, 0, 6086, 6088, 7, 90, 0, 0, 6087, 6086, 1, 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 543, 1, 0, 0, 0, 6089, 6091, 5, 120, 0, 0, 6090, 6092, 3, 548, 274, 0, 6091, 6090, 1, 0, 0, 0, 6091, 6092, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6094, 7, 61, 0, 0, 6094, 6095, 3, 660, 330, 0, 6095, 545, 1, 0, 0, 0, 6096, 6098, 5, 562, 0, 0, 6097, 6099, 3, 548, 274, 0, 6098, 6097, 1, 0, 0, 0, 6098, 6099, 1, 0, 0, 0, 6099, 6100, 1, 0, 0, 0, 6100, 6101, 5, 173, 0, 0, 6101, 6103, 3, 660, 330, 0, 6102, 6104, 5, 549, 0, 0, 6103, 6102, 1, 0, 0, 0, 6103, 6104, 1, 0, 0, 0, 6104, 6106, 1, 0, 0, 0, 6105, 6107, 5, 392, 0, 0, 6106, 6105, 1, 0, 0, 0, 6106, 6107, 1, 0, 0, 0, 6107, 6109, 1, 0, 0, 0, 6108, 6110, 5, 679, 0, 0, 6109, 6108, 1, 0, 0, 0, 6109, 6110, 1, 0, 0, 0, 6110, 547, 1, 0, 0, 0, 6111, 6112, 7, 91, 0, 0, 6112, 549, 1, 0, 0, 0, 6113, 6114, 5, 65, 0, 0, 6114, 6121, 5, 677, 0, 0, 6115, 6121, 5, 549, 0, 0, 6116, 6121, 5, 396, 0, 0, 6117, 6121, 5, 484, 0, 0, 6118, 6121, 5, 392, 0, 0, 6119, 6121, 5, 327, 0, 0, 6120, 6113, 1, 0, 0, 0, 6120, 6115, 1, 0, 0, 0, 6120, 6116, 1, 0, 0, 0, 6120, 6117, 1, 0, 0, 0, 6120, 6118, 1, 0, 0, 0, 6120, 6119, 1, 0, 0, 0, 6121, 551, 1, 0, 0, 0, 6122, 6123, 5, 432, 0, 0, 6123, 6124, 5, 344, 0, 0, 6124, 6129, 3, 716, 358, 0, 6125, 6126, 5, 868, 0, 0, 6126, 6128, 3, 716, 358, 0, 6127, 6125, 1, 0, 0, 0, 6128, 6131, 1, 0, 0, 0, 6129, 6127, 1, 0, 0, 0, 6129, 6130, 1, 0, 0, 0, 6130, 6141, 1, 0, 0, 0, 6131, 6129, 1, 0, 0, 0, 6132, 6133, 5, 155, 0, 0, 6133, 6138, 3, 554, 277, 0, 6134, 6135, 5, 868, 0, 0, 6135, 6137, 3, 554, 277, 0, 6136, 6134, 1, 0, 0, 0, 6137, 6140, 1, 0, 0, 0, 6138, 6136, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 6142, 1, 0, 0, 0, 6140, 6138, 1, 0, 0, 0, 6141, 6132, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 553, 1, 0, 0, 0, 6143, 6144, 7, 92, 0, 0, 6144, 6145, 3, 712, 356, 0, 6145, 6146, 5, 857, 0, 0, 6146, 6147, 3, 814, 407, 0, 6147, 555, 1, 0, 0, 0, 6148, 6149, 5, 673, 0, 0, 6149, 6150, 5, 344, 0, 0, 6150, 6155, 3, 716, 358, 0, 6151, 6152, 5, 868, 0, 0, 6152, 6154, 3, 716, 358, 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, 557, 1, 0, 0, 0, 6157, 6155, 1, 0, 0, 0, 6158, 6159, 5, 432, 0, 0, 6159, 6160, 5, 534, 0, 0, 6160, 6161, 3, 716, 358, 0, 6161, 6162, 5, 603, 0, 0, 6162, 6163, 5, 882, 0, 0, 6163, 559, 1, 0, 0, 0, 6164, 6165, 5, 673, 0, 0, 6165, 6166, 5, 534, 0, 0, 6166, 6167, 3, 716, 358, 0, 6167, 561, 1, 0, 0, 0, 6168, 6169, 5, 713, 0, 0, 6169, 6170, 5, 450, 0, 0, 6170, 6171, 5, 360, 0, 0, 6171, 6173, 5, 367, 0, 0, 6172, 6174, 5, 857, 0, 0, 6173, 6172, 1, 0, 0, 0, 6173, 6174, 1, 0, 0, 0, 6174, 6175, 1, 0, 0, 0, 6175, 6199, 5, 882, 0, 0, 6176, 6177, 5, 713, 0, 0, 6177, 6178, 5, 433, 0, 0, 6178, 6179, 5, 68, 0, 0, 6179, 6180, 3, 686, 343, 0, 6180, 6181, 5, 423, 0, 0, 6181, 6182, 5, 20, 0, 0, 6182, 6189, 5, 882, 0, 0, 6183, 6184, 5, 360, 0, 0, 6184, 6186, 5, 367, 0, 0, 6185, 6187, 5, 857, 0, 0, 6186, 6185, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6190, 5, 882, 0, 0, 6189, 6183, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 6196, 1, 0, 0, 0, 6191, 6193, 5, 144, 0, 0, 6192, 6194, 5, 502, 0, 0, 6193, 6192, 1, 0, 0, 0, 6193, 6194, 1, 0, 0, 0, 6194, 6195, 1, 0, 0, 0, 6195, 6197, 5, 169, 0, 0, 6196, 6191, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6199, 1, 0, 0, 0, 6198, 6168, 1, 0, 0, 0, 6198, 6176, 1, 0, 0, 0, 6199, 563, 1, 0, 0, 0, 6200, 6201, 5, 155, 0, 0, 6201, 6202, 3, 568, 284, 0, 6202, 6205, 7, 93, 0, 0, 6203, 6206, 3, 814, 407, 0, 6204, 6206, 5, 119, 0, 0, 6205, 6203, 1, 0, 0, 0, 6205, 6204, 1, 0, 0, 0, 6206, 6216, 1, 0, 0, 0, 6207, 6208, 5, 868, 0, 0, 6208, 6209, 3, 568, 284, 0, 6209, 6212, 7, 93, 0, 0, 6210, 6213, 3, 814, 407, 0, 6211, 6213, 5, 119, 0, 0, 6212, 6210, 1, 0, 0, 0, 6212, 6211, 1, 0, 0, 0, 6213, 6215, 1, 0, 0, 0, 6214, 6207, 1, 0, 0, 0, 6215, 6218, 1, 0, 0, 0, 6216, 6214, 1, 0, 0, 0, 6216, 6217, 1, 0, 0, 0, 6217, 6253, 1, 0, 0, 0, 6218, 6216, 1, 0, 0, 0, 6219, 6220, 5, 155, 0, 0, 6220, 6223, 3, 58, 29, 0, 6221, 6224, 3, 698, 349, 0, 6222, 6224, 5, 42, 0, 0, 6223, 6221, 1, 0, 0, 0, 6223, 6222, 1, 0, 0, 0, 6224, 6253, 1, 0, 0, 0, 6225, 6226, 5, 155, 0, 0, 6226, 6233, 5, 497, 0, 0, 6227, 6230, 3, 698, 349, 0, 6228, 6229, 5, 28, 0, 0, 6229, 6231, 3, 700, 350, 0, 6230, 6228, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6234, 1, 0, 0, 0, 6232, 6234, 5, 42, 0, 0, 6233, 6227, 1, 0, 0, 0, 6233, 6232, 1, 0, 0, 0, 6234, 6253, 1, 0, 0, 0, 6235, 6253, 3, 500, 250, 0, 6236, 6253, 3, 352, 176, 0, 6237, 6253, 3, 350, 175, 0, 6238, 6239, 5, 155, 0, 0, 6239, 6240, 3, 712, 356, 0, 6240, 6241, 7, 93, 0, 0, 6241, 6249, 3, 814, 407, 0, 6242, 6243, 5, 868, 0, 0, 6243, 6244, 3, 712, 356, 0, 6244, 6245, 7, 93, 0, 0, 6245, 6246, 3, 814, 407, 0, 6246, 6248, 1, 0, 0, 0, 6247, 6242, 1, 0, 0, 0, 6248, 6251, 1, 0, 0, 0, 6249, 6247, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 6253, 1, 0, 0, 0, 6251, 6249, 1, 0, 0, 0, 6252, 6200, 1, 0, 0, 0, 6252, 6219, 1, 0, 0, 0, 6252, 6225, 1, 0, 0, 0, 6252, 6235, 1, 0, 0, 0, 6252, 6236, 1, 0, 0, 0, 6252, 6237, 1, 0, 0, 0, 6252, 6238, 1, 0, 0, 0, 6253, 565, 1, 0, 0, 0, 6254, 6255, 5, 157, 0, 0, 6255, 6256, 7, 63, 0, 0, 6256, 6439, 5, 452, 0, 0, 6257, 6258, 5, 157, 0, 0, 6258, 6259, 7, 94, 0, 0, 6259, 6262, 5, 386, 0, 0, 6260, 6261, 5, 80, 0, 0, 6261, 6263, 5, 882, 0, 0, 6262, 6260, 1, 0, 0, 0, 6262, 6263, 1, 0, 0, 0, 6263, 6266, 1, 0, 0, 0, 6264, 6265, 5, 68, 0, 0, 6265, 6267, 3, 722, 361, 0, 6266, 6264, 1, 0, 0, 0, 6266, 6267, 1, 0, 0, 0, 6267, 6275, 1, 0, 0, 0, 6268, 6272, 5, 100, 0, 0, 6269, 6270, 3, 722, 361, 0, 6270, 6271, 5, 868, 0, 0, 6271, 6273, 1, 0, 0, 0, 6272, 6269, 1, 0, 0, 0, 6272, 6273, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, 6276, 3, 722, 361, 0, 6275, 6268, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6278, 1, 0, 0, 0, 6277, 6279, 3, 400, 200, 0, 6278, 6277, 1, 0, 0, 0, 6278, 6279, 1, 0, 0, 0, 6279, 6439, 1, 0, 0, 0, 6280, 6281, 5, 157, 0, 0, 6281, 6283, 3, 570, 285, 0, 6282, 6284, 3, 572, 286, 0, 6283, 6282, 1, 0, 0, 0, 6283, 6284, 1, 0, 0, 0, 6284, 6439, 1, 0, 0, 0, 6285, 6287, 5, 157, 0, 0, 6286, 6288, 5, 392, 0, 0, 6287, 6286, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6290, 1, 0, 0, 0, 6289, 6291, 5, 408, 0, 0, 6290, 6289, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6292, 1, 0, 0, 0, 6292, 6293, 7, 47, 0, 0, 6293, 6294, 7, 95, 0, 0, 6294, 6297, 3, 662, 331, 0, 6295, 6296, 7, 95, 0, 0, 6296, 6298, 3, 638, 319, 0, 6297, 6295, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6300, 1, 0, 0, 0, 6299, 6301, 3, 572, 286, 0, 6300, 6299, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6439, 1, 0, 0, 0, 6302, 6303, 5, 157, 0, 0, 6303, 6304, 5, 34, 0, 0, 6304, 6306, 7, 0, 0, 0, 6305, 6307, 3, 770, 385, 0, 6306, 6305, 1, 0, 0, 0, 6306, 6307, 1, 0, 0, 0, 6307, 6308, 1, 0, 0, 0, 6308, 6439, 3, 638, 319, 0, 6309, 6310, 5, 157, 0, 0, 6310, 6311, 5, 34, 0, 0, 6311, 6312, 7, 96, 0, 0, 6312, 6439, 3, 712, 356, 0, 6313, 6314, 5, 157, 0, 0, 6314, 6315, 5, 34, 0, 0, 6315, 6316, 5, 409, 0, 0, 6316, 6439, 3, 642, 321, 0, 6317, 6318, 5, 157, 0, 0, 6318, 6319, 5, 34, 0, 0, 6319, 6320, 5, 684, 0, 0, 6320, 6439, 3, 646, 323, 0, 6321, 6322, 5, 157, 0, 0, 6322, 6323, 5, 34, 0, 0, 6323, 6324, 5, 173, 0, 0, 6324, 6439, 3, 662, 331, 0, 6325, 6326, 5, 157, 0, 0, 6326, 6327, 5, 34, 0, 0, 6327, 6328, 5, 678, 0, 0, 6328, 6439, 3, 694, 347, 0, 6329, 6330, 5, 157, 0, 0, 6330, 6331, 5, 380, 0, 0, 6331, 6332, 3, 702, 351, 0, 6332, 6333, 7, 97, 0, 0, 6333, 6439, 1, 0, 0, 0, 6334, 6335, 5, 157, 0, 0, 6335, 6439, 3, 574, 287, 0, 6336, 6337, 5, 157, 0, 0, 6337, 6345, 7, 98, 0, 0, 6338, 6342, 5, 100, 0, 0, 6339, 6340, 3, 722, 361, 0, 6340, 6341, 5, 868, 0, 0, 6341, 6343, 1, 0, 0, 0, 6342, 6339, 1, 0, 0, 0, 6342, 6343, 1, 0, 0, 0, 6343, 6344, 1, 0, 0, 0, 6344, 6346, 3, 722, 361, 0, 6345, 6338, 1, 0, 0, 0, 6345, 6346, 1, 0, 0, 0, 6346, 6439, 1, 0, 0, 0, 6347, 6348, 5, 157, 0, 0, 6348, 6349, 5, 262, 0, 0, 6349, 6350, 5, 866, 0, 0, 6350, 6351, 5, 850, 0, 0, 6351, 6352, 5, 867, 0, 0, 6352, 6439, 7, 98, 0, 0, 6353, 6354, 5, 157, 0, 0, 6354, 6357, 3, 576, 288, 0, 6355, 6356, 7, 95, 0, 0, 6356, 6358, 3, 638, 319, 0, 6357, 6355, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 1, 0, 0, 0, 6359, 6361, 3, 572, 286, 0, 6360, 6359, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 6439, 1, 0, 0, 0, 6362, 6363, 5, 157, 0, 0, 6363, 6364, 5, 132, 0, 0, 6364, 6365, 5, 336, 0, 0, 6365, 6439, 3, 712, 356, 0, 6366, 6367, 5, 157, 0, 0, 6367, 6368, 5, 409, 0, 0, 6368, 6369, 5, 336, 0, 0, 6369, 6439, 3, 642, 321, 0, 6370, 6371, 5, 157, 0, 0, 6371, 6378, 5, 414, 0, 0, 6372, 6373, 5, 65, 0, 0, 6373, 6376, 3, 666, 333, 0, 6374, 6375, 5, 188, 0, 0, 6375, 6377, 3, 664, 332, 0, 6376, 6374, 1, 0, 0, 0, 6376, 6377, 1, 0, 0, 0, 6377, 6379, 1, 0, 0, 0, 6378, 6372, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6439, 1, 0, 0, 0, 6380, 6382, 5, 157, 0, 0, 6381, 6383, 5, 392, 0, 0, 6382, 6381, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6384, 1, 0, 0, 0, 6384, 6385, 7, 99, 0, 0, 6385, 6386, 7, 95, 0, 0, 6386, 6389, 3, 662, 331, 0, 6387, 6388, 7, 95, 0, 0, 6388, 6390, 3, 638, 319, 0, 6389, 6387, 1, 0, 0, 0, 6389, 6390, 1, 0, 0, 0, 6390, 6393, 1, 0, 0, 0, 6391, 6392, 5, 192, 0, 0, 6392, 6394, 3, 814, 407, 0, 6393, 6391, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6439, 1, 0, 0, 0, 6395, 6396, 5, 157, 0, 0, 6396, 6397, 5, 516, 0, 0, 6397, 6400, 5, 752, 0, 0, 6398, 6399, 7, 95, 0, 0, 6399, 6401, 3, 638, 319, 0, 6400, 6398, 1, 0, 0, 0, 6400, 6401, 1, 0, 0, 0, 6401, 6403, 1, 0, 0, 0, 6402, 6404, 3, 572, 286, 0, 6403, 6402, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6439, 1, 0, 0, 0, 6405, 6406, 5, 157, 0, 0, 6406, 6415, 5, 545, 0, 0, 6407, 6412, 3, 578, 289, 0, 6408, 6409, 5, 868, 0, 0, 6409, 6411, 3, 578, 289, 0, 6410, 6408, 1, 0, 0, 0, 6411, 6414, 1, 0, 0, 0, 6412, 6410, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6416, 1, 0, 0, 0, 6414, 6412, 1, 0, 0, 0, 6415, 6407, 1, 0, 0, 0, 6415, 6416, 1, 0, 0, 0, 6416, 6420, 1, 0, 0, 0, 6417, 6418, 5, 65, 0, 0, 6418, 6419, 5, 548, 0, 0, 6419, 6421, 3, 722, 361, 0, 6420, 6417, 1, 0, 0, 0, 6420, 6421, 1, 0, 0, 0, 6421, 6428, 1, 0, 0, 0, 6422, 6423, 5, 100, 0, 0, 6423, 6426, 3, 722, 361, 0, 6424, 6425, 5, 509, 0, 0, 6425, 6427, 3, 722, 361, 0, 6426, 6424, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6429, 1, 0, 0, 0, 6428, 6422, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 6439, 1, 0, 0, 0, 6430, 6431, 5, 157, 0, 0, 6431, 6432, 7, 64, 0, 0, 6432, 6434, 5, 645, 0, 0, 6433, 6435, 3, 400, 200, 0, 6434, 6433, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6439, 1, 0, 0, 0, 6436, 6437, 5, 157, 0, 0, 6437, 6439, 5, 564, 0, 0, 6438, 6254, 1, 0, 0, 0, 6438, 6257, 1, 0, 0, 0, 6438, 6280, 1, 0, 0, 0, 6438, 6285, 1, 0, 0, 0, 6438, 6302, 1, 0, 0, 0, 6438, 6309, 1, 0, 0, 0, 6438, 6313, 1, 0, 0, 0, 6438, 6317, 1, 0, 0, 0, 6438, 6321, 1, 0, 0, 0, 6438, 6325, 1, 0, 0, 0, 6438, 6329, 1, 0, 0, 0, 6438, 6334, 1, 0, 0, 0, 6438, 6336, 1, 0, 0, 0, 6438, 6347, 1, 0, 0, 0, 6438, 6353, 1, 0, 0, 0, 6438, 6362, 1, 0, 0, 0, 6438, 6366, 1, 0, 0, 0, 6438, 6370, 1, 0, 0, 0, 6438, 6380, 1, 0, 0, 0, 6438, 6395, 1, 0, 0, 0, 6438, 6405, 1, 0, 0, 0, 6438, 6430, 1, 0, 0, 0, 6438, 6436, 1, 0, 0, 0, 6439, 567, 1, 0, 0, 0, 6440, 6451, 5, 892, 0, 0, 6441, 6451, 5, 893, 0, 0, 6442, 6443, 5, 870, 0, 0, 6443, 6445, 5, 870, 0, 0, 6444, 6442, 1, 0, 0, 0, 6444, 6445, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 6448, 7, 100, 0, 0, 6447, 6444, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6449, 1, 0, 0, 0, 6449, 6451, 3, 716, 358, 0, 6450, 6440, 1, 0, 0, 0, 6450, 6441, 1, 0, 0, 0, 6450, 6447, 1, 0, 0, 0, 6451, 569, 1, 0, 0, 0, 6452, 6453, 5, 26, 0, 0, 6453, 6467, 5, 155, 0, 0, 6454, 6467, 5, 823, 0, 0, 6455, 6467, 5, 824, 0, 0, 6456, 6467, 5, 40, 0, 0, 6457, 6467, 5, 153, 0, 0, 6458, 6459, 5, 409, 0, 0, 6459, 6467, 5, 645, 0, 0, 6460, 6461, 5, 132, 0, 0, 6461, 6467, 5, 645, 0, 0, 6462, 6464, 7, 62, 0, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6465, 1, 0, 0, 0, 6465, 6467, 7, 101, 0, 0, 6466, 6452, 1, 0, 0, 0, 6466, 6454, 1, 0, 0, 0, 6466, 6455, 1, 0, 0, 0, 6466, 6456, 1, 0, 0, 0, 6466, 6457, 1, 0, 0, 0, 6466, 6458, 1, 0, 0, 0, 6466, 6460, 1, 0, 0, 0, 6466, 6463, 1, 0, 0, 0, 6467, 571, 1, 0, 0, 0, 6468, 6469, 5, 99, 0, 0, 6469, 6473, 5, 882, 0, 0, 6470, 6471, 5, 192, 0, 0, 6471, 6473, 3, 814, 407, 0, 6472, 6468, 1, 0, 0, 0, 6472, 6470, 1, 0, 0, 0, 6473, 573, 1, 0, 0, 0, 6474, 6476, 5, 647, 0, 0, 6475, 6474, 1, 0, 0, 0, 6475, 6476, 1, 0, 0, 0, 6476, 6477, 1, 0, 0, 0, 6477, 6492, 5, 381, 0, 0, 6478, 6479, 5, 453, 0, 0, 6479, 6492, 5, 645, 0, 0, 6480, 6492, 5, 536, 0, 0, 6481, 6492, 5, 734, 0, 0, 6482, 6484, 5, 408, 0, 0, 6483, 6482, 1, 0, 0, 0, 6483, 6484, 1, 0, 0, 0, 6484, 6485, 1, 0, 0, 0, 6485, 6492, 5, 544, 0, 0, 6486, 6492, 5, 546, 0, 0, 6487, 6488, 5, 598, 0, 0, 6488, 6492, 5, 422, 0, 0, 6489, 6492, 5, 312, 0, 0, 6490, 6492, 5, 356, 0, 0, 6491, 6475, 1, 0, 0, 0, 6491, 6478, 1, 0, 0, 0, 6491, 6480, 1, 0, 0, 0, 6491, 6481, 1, 0, 0, 0, 6491, 6483, 1, 0, 0, 0, 6491, 6486, 1, 0, 0, 0, 6491, 6487, 1, 0, 0, 0, 6491, 6489, 1, 0, 0, 0, 6491, 6490, 1, 0, 0, 0, 6492, 575, 1, 0, 0, 0, 6493, 6505, 5, 386, 0, 0, 6494, 6495, 5, 173, 0, 0, 6495, 6505, 5, 645, 0, 0, 6496, 6498, 5, 392, 0, 0, 6497, 6496, 1, 0, 0, 0, 6497, 6498, 1, 0, 0, 0, 6498, 6500, 1, 0, 0, 0, 6499, 6501, 5, 408, 0, 0, 6500, 6499, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6502, 1, 0, 0, 0, 6502, 6505, 5, 752, 0, 0, 6503, 6505, 5, 667, 0, 0, 6504, 6493, 1, 0, 0, 0, 6504, 6494, 1, 0, 0, 0, 6504, 6497, 1, 0, 0, 0, 6504, 6503, 1, 0, 0, 0, 6505, 577, 1, 0, 0, 0, 6506, 6519, 5, 7, 0, 0, 6507, 6508, 5, 320, 0, 0, 6508, 6519, 5, 437, 0, 0, 6509, 6510, 5, 355, 0, 0, 6510, 6519, 5, 656, 0, 0, 6511, 6519, 5, 358, 0, 0, 6512, 6519, 5, 439, 0, 0, 6513, 6519, 5, 802, 0, 0, 6514, 6515, 5, 521, 0, 0, 6515, 6519, 5, 397, 0, 0, 6516, 6519, 5, 605, 0, 0, 6517, 6519, 5, 655, 0, 0, 6518, 6506, 1, 0, 0, 0, 6518, 6507, 1, 0, 0, 0, 6518, 6509, 1, 0, 0, 0, 6518, 6511, 1, 0, 0, 0, 6518, 6512, 1, 0, 0, 0, 6518, 6513, 1, 0, 0, 0, 6518, 6514, 1, 0, 0, 0, 6518, 6516, 1, 0, 0, 0, 6518, 6517, 1, 0, 0, 0, 6519, 579, 1, 0, 0, 0, 6520, 6521, 5, 318, 0, 0, 6521, 6522, 5, 882, 0, 0, 6522, 581, 1, 0, 0, 0, 6523, 6524, 5, 324, 0, 0, 6524, 6542, 5, 82, 0, 0, 6525, 6530, 3, 602, 301, 0, 6526, 6527, 5, 868, 0, 0, 6527, 6529, 3, 602, 301, 0, 6528, 6526, 1, 0, 0, 0, 6529, 6532, 1, 0, 0, 0, 6530, 6528, 1, 0, 0, 0, 6530, 6531, 1, 0, 0, 0, 6531, 6543, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6533, 6534, 3, 662, 331, 0, 6534, 6535, 5, 130, 0, 0, 6535, 6538, 5, 866, 0, 0, 6536, 6539, 3, 680, 340, 0, 6537, 6539, 5, 7, 0, 0, 6538, 6536, 1, 0, 0, 0, 6538, 6537, 1, 0, 0, 0, 6539, 6540, 1, 0, 0, 0, 6540, 6541, 5, 867, 0, 0, 6541, 6543, 1, 0, 0, 0, 6542, 6525, 1, 0, 0, 0, 6542, 6533, 1, 0, 0, 0, 6543, 6544, 1, 0, 0, 0, 6544, 6545, 5, 80, 0, 0, 6545, 6546, 3, 638, 319, 0, 6546, 583, 1, 0, 0, 0, 6547, 6549, 5, 404, 0, 0, 6548, 6550, 3, 548, 274, 0, 6549, 6548, 1, 0, 0, 0, 6549, 6550, 1, 0, 0, 0, 6550, 6551, 1, 0, 0, 0, 6551, 6556, 3, 604, 302, 0, 6552, 6553, 5, 868, 0, 0, 6553, 6555, 3, 604, 302, 0, 6554, 6552, 1, 0, 0, 0, 6555, 6558, 1, 0, 0, 0, 6556, 6554, 1, 0, 0, 0, 6556, 6557, 1, 0, 0, 0, 6557, 585, 1, 0, 0, 0, 6558, 6556, 1, 0, 0, 0, 6559, 6561, 5, 94, 0, 0, 6560, 6562, 7, 102, 0, 0, 6561, 6560, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 6563, 1, 0, 0, 0, 6563, 6564, 3, 814, 407, 0, 6564, 587, 1, 0, 0, 0, 6565, 6566, 5, 103, 0, 0, 6566, 6567, 5, 82, 0, 0, 6567, 6568, 5, 88, 0, 0, 6568, 6569, 5, 324, 0, 0, 6569, 6574, 3, 608, 304, 0, 6570, 6571, 5, 868, 0, 0, 6571, 6573, 3, 608, 304, 0, 6572, 6570, 1, 0, 0, 0, 6573, 6576, 1, 0, 0, 0, 6574, 6572, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 589, 1, 0, 0, 0, 6576, 6574, 1, 0, 0, 0, 6577, 6578, 5, 575, 0, 0, 6578, 6583, 3, 592, 296, 0, 6579, 6580, 5, 868, 0, 0, 6580, 6582, 3, 592, 296, 0, 6581, 6579, 1, 0, 0, 0, 6582, 6585, 1, 0, 0, 0, 6583, 6581, 1, 0, 0, 0, 6583, 6584, 1, 0, 0, 0, 6584, 591, 1, 0, 0, 0, 6585, 6583, 1, 0, 0, 0, 6586, 6592, 5, 453, 0, 0, 6587, 6592, 5, 563, 0, 0, 6588, 6589, 5, 548, 0, 0, 6589, 6592, 5, 324, 0, 0, 6590, 6592, 5, 598, 0, 0, 6591, 6586, 1, 0, 0, 0, 6591, 6587, 1, 0, 0, 0, 6591, 6588, 1, 0, 0, 0, 6591, 6590, 1, 0, 0, 0, 6592, 593, 1, 0, 0, 0, 6593, 6594, 5, 575, 0, 0, 6594, 6599, 5, 531, 0, 0, 6595, 6597, 3, 768, 384, 0, 6596, 6595, 1, 0, 0, 0, 6596, 6597, 1, 0, 0, 0, 6597, 6598, 1, 0, 0, 0, 6598, 6600, 3, 716, 358, 0, 6599, 6596, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 595, 1, 0, 0, 0, 6601, 6602, 5, 575, 0, 0, 6602, 6604, 7, 64, 0, 0, 6603, 6605, 5, 7, 0, 0, 6604, 6603, 1, 0, 0, 0, 6604, 6605, 1, 0, 0, 0, 6605, 6607, 1, 0, 0, 0, 6606, 6608, 3, 400, 200, 0, 6607, 6606, 1, 0, 0, 0, 6607, 6608, 1, 0, 0, 0, 6608, 597, 1, 0, 0, 0, 6609, 6610, 5, 576, 0, 0, 6610, 599, 1, 0, 0, 0, 6611, 6612, 5, 749, 0, 0, 6612, 601, 1, 0, 0, 0, 6613, 6619, 3, 662, 331, 0, 6614, 6615, 7, 19, 0, 0, 6615, 6616, 5, 866, 0, 0, 6616, 6617, 3, 650, 325, 0, 6617, 6618, 5, 867, 0, 0, 6618, 6620, 1, 0, 0, 0, 6619, 6614, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 603, 1, 0, 0, 0, 6621, 6640, 5, 366, 0, 0, 6622, 6640, 5, 422, 0, 0, 6623, 6625, 7, 103, 0, 0, 6624, 6623, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6626, 1, 0, 0, 0, 6626, 6640, 5, 452, 0, 0, 6627, 6640, 5, 517, 0, 0, 6628, 6640, 5, 734, 0, 0, 6629, 6630, 5, 548, 0, 0, 6630, 6640, 5, 324, 0, 0, 6631, 6640, 5, 645, 0, 0, 6632, 6640, 5, 680, 0, 0, 6633, 6637, 5, 752, 0, 0, 6634, 6635, 5, 194, 0, 0, 6635, 6636, 5, 135, 0, 0, 6636, 6638, 5, 104, 0, 0, 6637, 6634, 1, 0, 0, 0, 6637, 6638, 1, 0, 0, 0, 6638, 6640, 1, 0, 0, 0, 6639, 6621, 1, 0, 0, 0, 6639, 6622, 1, 0, 0, 0, 6639, 6624, 1, 0, 0, 0, 6639, 6627, 1, 0, 0, 0, 6639, 6628, 1, 0, 0, 0, 6639, 6629, 1, 0, 0, 0, 6639, 6631, 1, 0, 0, 0, 6639, 6632, 1, 0, 0, 0, 6639, 6633, 1, 0, 0, 0, 6640, 6654, 1, 0, 0, 0, 6641, 6642, 5, 556, 0, 0, 6642, 6644, 5, 452, 0, 0, 6643, 6645, 3, 400, 200, 0, 6644, 6643, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 6654, 1, 0, 0, 0, 6646, 6648, 7, 61, 0, 0, 6647, 6649, 3, 660, 330, 0, 6648, 6647, 1, 0, 0, 0, 6648, 6649, 1, 0, 0, 0, 6649, 6651, 1, 0, 0, 0, 6650, 6652, 3, 606, 303, 0, 6651, 6650, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6654, 1, 0, 0, 0, 6653, 6639, 1, 0, 0, 0, 6653, 6641, 1, 0, 0, 0, 6653, 6646, 1, 0, 0, 0, 6654, 605, 1, 0, 0, 0, 6655, 6656, 5, 194, 0, 0, 6656, 6657, 5, 135, 0, 0, 6657, 6661, 5, 104, 0, 0, 6658, 6659, 5, 65, 0, 0, 6659, 6661, 5, 391, 0, 0, 6660, 6655, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6661, 607, 1, 0, 0, 0, 6662, 6670, 3, 662, 331, 0, 6663, 6664, 5, 130, 0, 0, 6664, 6667, 5, 866, 0, 0, 6665, 6668, 3, 680, 340, 0, 6666, 6668, 5, 7, 0, 0, 6667, 6665, 1, 0, 0, 0, 6667, 6666, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6671, 5, 867, 0, 0, 6670, 6663, 1, 0, 0, 0, 6670, 6671, 1, 0, 0, 0, 6671, 6679, 1, 0, 0, 0, 6672, 6674, 7, 19, 0, 0, 6673, 6672, 1, 0, 0, 0, 6673, 6674, 1, 0, 0, 0, 6674, 6675, 1, 0, 0, 0, 6675, 6676, 5, 866, 0, 0, 6676, 6677, 3, 650, 325, 0, 6677, 6678, 5, 867, 0, 0, 6678, 6680, 1, 0, 0, 0, 6679, 6673, 1, 0, 0, 0, 6679, 6680, 1, 0, 0, 0, 6680, 6683, 1, 0, 0, 0, 6681, 6682, 5, 79, 0, 0, 6682, 6684, 5, 446, 0, 0, 6683, 6681, 1, 0, 0, 0, 6683, 6684, 1, 0, 0, 0, 6684, 609, 1, 0, 0, 0, 6685, 6686, 7, 104, 0, 0, 6686, 6689, 3, 662, 331, 0, 6687, 6690, 3, 672, 336, 0, 6688, 6690, 5, 882, 0, 0, 6689, 6687, 1, 0, 0, 0, 6689, 6688, 1, 0, 0, 0, 6689, 6690, 1, 0, 0, 0, 6690, 611, 1, 0, 0, 0, 6691, 6697, 7, 104, 0, 0, 6692, 6698, 5, 392, 0, 0, 6693, 6698, 5, 528, 0, 0, 6694, 6695, 5, 826, 0, 0, 6695, 6696, 5, 857, 0, 0, 6696, 6698, 7, 105, 0, 0, 6697, 6692, 1, 0, 0, 0, 6697, 6693, 1, 0, 0, 0, 6697, 6694, 1, 0, 0, 0, 6697, 6698, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6700, 3, 634, 317, 0, 6700, 613, 1, 0, 0, 0, 6701, 6702, 7, 104, 0, 0, 6702, 6706, 5, 10, 0, 0, 6703, 6704, 5, 826, 0, 0, 6704, 6705, 5, 857, 0, 0, 6705, 6707, 5, 666, 0, 0, 6706, 6703, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 6708, 1, 0, 0, 0, 6708, 6709, 3, 210, 105, 0, 6709, 615, 1, 0, 0, 0, 6710, 6711, 5, 419, 0, 0, 6711, 6712, 5, 882, 0, 0, 6712, 617, 1, 0, 0, 0, 6713, 6714, 5, 187, 0, 0, 6714, 6715, 3, 638, 319, 0, 6715, 619, 1, 0, 0, 0, 6716, 6724, 5, 158, 0, 0, 6717, 6719, 5, 164, 0, 0, 6718, 6720, 5, 682, 0, 0, 6719, 6718, 1, 0, 0, 0, 6719, 6720, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6725, 3, 726, 363, 0, 6722, 6725, 5, 889, 0, 0, 6723, 6725, 5, 890, 0, 0, 6724, 6717, 1, 0, 0, 0, 6724, 6722, 1, 0, 0, 0, 6724, 6723, 1, 0, 0, 0, 6725, 6735, 1, 0, 0, 0, 6726, 6727, 5, 155, 0, 0, 6727, 6732, 3, 624, 312, 0, 6728, 6729, 5, 868, 0, 0, 6729, 6731, 3, 624, 312, 0, 6730, 6728, 1, 0, 0, 0, 6731, 6734, 1, 0, 0, 0, 6732, 6730, 1, 0, 0, 0, 6732, 6733, 1, 0, 0, 0, 6733, 6736, 1, 0, 0, 0, 6734, 6732, 1, 0, 0, 0, 6735, 6726, 1, 0, 0, 0, 6735, 6736, 1, 0, 0, 0, 6736, 621, 1, 0, 0, 0, 6737, 6745, 5, 145, 0, 0, 6738, 6740, 5, 164, 0, 0, 6739, 6741, 5, 682, 0, 0, 6740, 6739, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 6742, 1, 0, 0, 0, 6742, 6746, 3, 726, 363, 0, 6743, 6746, 5, 889, 0, 0, 6744, 6746, 5, 890, 0, 0, 6745, 6738, 1, 0, 0, 0, 6745, 6743, 1, 0, 0, 0, 6745, 6744, 1, 0, 0, 0, 6745, 6746, 1, 0, 0, 0, 6746, 6756, 1, 0, 0, 0, 6747, 6748, 5, 155, 0, 0, 6748, 6753, 3, 624, 312, 0, 6749, 6750, 5, 868, 0, 0, 6750, 6752, 3, 624, 312, 0, 6751, 6749, 1, 0, 0, 0, 6752, 6755, 1, 0, 0, 0, 6753, 6751, 1, 0, 0, 0, 6753, 6754, 1, 0, 0, 0, 6754, 6757, 1, 0, 0, 0, 6755, 6753, 1, 0, 0, 0, 6756, 6747, 1, 0, 0, 0, 6756, 6757, 1, 0, 0, 0, 6757, 623, 1, 0, 0, 0, 6758, 6759, 7, 106, 0, 0, 6759, 6764, 5, 857, 0, 0, 6760, 6765, 3, 726, 363, 0, 6761, 6765, 5, 883, 0, 0, 6762, 6765, 3, 696, 348, 0, 6763, 6765, 3, 718, 359, 0, 6764, 6760, 1, 0, 0, 0, 6764, 6761, 1, 0, 0, 0, 6764, 6762, 1, 0, 0, 0, 6764, 6763, 1, 0, 0, 0, 6765, 625, 1, 0, 0, 0, 6766, 6768, 5, 194, 0, 0, 6767, 6769, 5, 552, 0, 0, 6768, 6767, 1, 0, 0, 0, 6768, 6769, 1, 0, 0, 0, 6769, 6770, 1, 0, 0, 0, 6770, 6775, 3, 52, 26, 0, 6771, 6772, 5, 868, 0, 0, 6772, 6774, 3, 52, 26, 0, 6773, 6771, 1, 0, 0, 0, 6774, 6777, 1, 0, 0, 0, 6775, 6773, 1, 0, 0, 0, 6775, 6776, 1, 0, 0, 0, 6776, 627, 1, 0, 0, 0, 6777, 6775, 1, 0, 0, 0, 6778, 6779, 5, 173, 0, 0, 6779, 6781, 3, 662, 331, 0, 6780, 6782, 3, 258, 129, 0, 6781, 6780, 1, 0, 0, 0, 6781, 6782, 1, 0, 0, 0, 6782, 6784, 1, 0, 0, 0, 6783, 6785, 3, 328, 164, 0, 6784, 6783, 1, 0, 0, 0, 6784, 6785, 1, 0, 0, 0, 6785, 629, 1, 0, 0, 0, 6786, 6788, 5, 72, 0, 0, 6787, 6789, 7, 107, 0, 0, 6788, 6787, 1, 0, 0, 0, 6788, 6789, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 6822, 5, 48, 0, 0, 6791, 6792, 3, 568, 284, 0, 6792, 6793, 5, 857, 0, 0, 6793, 6801, 7, 108, 0, 0, 6794, 6795, 5, 868, 0, 0, 6795, 6796, 3, 568, 284, 0, 6796, 6797, 5, 857, 0, 0, 6797, 6798, 7, 108, 0, 0, 6798, 6800, 1, 0, 0, 0, 6799, 6794, 1, 0, 0, 0, 6800, 6803, 1, 0, 0, 0, 6801, 6799, 1, 0, 0, 0, 6801, 6802, 1, 0, 0, 0, 6802, 6823, 1, 0, 0, 0, 6803, 6801, 1, 0, 0, 0, 6804, 6807, 5, 30, 0, 0, 6805, 6808, 3, 722, 361, 0, 6806, 6808, 3, 568, 284, 0, 6807, 6805, 1, 0, 0, 0, 6807, 6806, 1, 0, 0, 0, 6808, 6809, 1, 0, 0, 0, 6809, 6810, 3, 568, 284, 0, 6810, 6811, 5, 857, 0, 0, 6811, 6819, 3, 632, 316, 0, 6812, 6813, 5, 868, 0, 0, 6813, 6814, 3, 568, 284, 0, 6814, 6815, 5, 857, 0, 0, 6815, 6816, 3, 632, 316, 0, 6816, 6818, 1, 0, 0, 0, 6817, 6812, 1, 0, 0, 0, 6818, 6821, 1, 0, 0, 0, 6819, 6817, 1, 0, 0, 0, 6819, 6820, 1, 0, 0, 0, 6820, 6823, 1, 0, 0, 0, 6821, 6819, 1, 0, 0, 0, 6822, 6791, 1, 0, 0, 0, 6822, 6804, 1, 0, 0, 0, 6823, 631, 1, 0, 0, 0, 6824, 6825, 7, 109, 0, 0, 6825, 633, 1, 0, 0, 0, 6826, 6832, 3, 210, 105, 0, 6827, 6832, 3, 186, 93, 0, 6828, 6832, 3, 192, 96, 0, 6829, 6832, 3, 208, 104, 0, 6830, 6832, 3, 220, 110, 0, 6831, 6826, 1, 0, 0, 0, 6831, 6827, 1, 0, 0, 0, 6831, 6828, 1, 0, 0, 0, 6831, 6829, 1, 0, 0, 0, 6831, 6830, 1, 0, 0, 0, 6832, 6837, 1, 0, 0, 0, 6833, 6834, 5, 65, 0, 0, 6834, 6835, 5, 349, 0, 0, 6835, 6837, 3, 716, 358, 0, 6836, 6831, 1, 0, 0, 0, 6836, 6833, 1, 0, 0, 0, 6837, 635, 1, 0, 0, 0, 6838, 6839, 3, 712, 356, 0, 6839, 637, 1, 0, 0, 0, 6840, 6841, 3, 712, 356, 0, 6841, 639, 1, 0, 0, 0, 6842, 6843, 3, 712, 356, 0, 6843, 641, 1, 0, 0, 0, 6844, 6845, 3, 712, 356, 0, 6845, 643, 1, 0, 0, 0, 6846, 6847, 3, 712, 356, 0, 6847, 645, 1, 0, 0, 0, 6848, 6849, 3, 712, 356, 0, 6849, 647, 1, 0, 0, 0, 6850, 6851, 3, 716, 358, 0, 6851, 649, 1, 0, 0, 0, 6852, 6857, 3, 652, 326, 0, 6853, 6854, 5, 868, 0, 0, 6854, 6856, 3, 652, 326, 0, 6855, 6853, 1, 0, 0, 0, 6856, 6859, 1, 0, 0, 0, 6857, 6855, 1, 0, 0, 0, 6857, 6858, 1, 0, 0, 0, 6858, 651, 1, 0, 0, 0, 6859, 6857, 1, 0, 0, 0, 6860, 6861, 3, 716, 358, 0, 6861, 653, 1, 0, 0, 0, 6862, 6863, 3, 716, 358, 0, 6863, 655, 1, 0, 0, 0, 6864, 6865, 3, 716, 358, 0, 6865, 657, 1, 0, 0, 0, 6866, 6867, 3, 712, 356, 0, 6867, 659, 1, 0, 0, 0, 6868, 6873, 3, 662, 331, 0, 6869, 6870, 5, 868, 0, 0, 6870, 6872, 3, 662, 331, 0, 6871, 6869, 1, 0, 0, 0, 6872, 6875, 1, 0, 0, 0, 6873, 6871, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 661, 1, 0, 0, 0, 6875, 6873, 1, 0, 0, 0, 6876, 6877, 3, 712, 356, 0, 6877, 663, 1, 0, 0, 0, 6878, 6883, 3, 666, 333, 0, 6879, 6880, 5, 868, 0, 0, 6880, 6882, 3, 666, 333, 0, 6881, 6879, 1, 0, 0, 0, 6882, 6885, 1, 0, 0, 0, 6883, 6881, 1, 0, 0, 0, 6883, 6884, 1, 0, 0, 0, 6884, 665, 1, 0, 0, 0, 6885, 6883, 1, 0, 0, 0, 6886, 6889, 3, 694, 347, 0, 6887, 6889, 3, 716, 358, 0, 6888, 6886, 1, 0, 0, 0, 6888, 6887, 1, 0, 0, 0, 6889, 667, 1, 0, 0, 0, 6890, 6895, 3, 716, 358, 0, 6891, 6893, 3, 720, 360, 0, 6892, 6894, 3, 720, 360, 0, 6893, 6892, 1, 0, 0, 0, 6893, 6894, 1, 0, 0, 0, 6894, 6896, 1, 0, 0, 0, 6895, 6891, 1, 0, 0, 0, 6895, 6896, 1, 0, 0, 0, 6896, 6905, 1, 0, 0, 0, 6897, 6899, 9, 0, 0, 0, 6898, 6897, 1, 0, 0, 0, 6898, 6899, 1, 0, 0, 0, 6899, 6900, 1, 0, 0, 0, 6900, 6902, 3, 720, 360, 0, 6901, 6903, 3, 720, 360, 0, 6902, 6901, 1, 0, 0, 0, 6902, 6903, 1, 0, 0, 0, 6903, 6905, 1, 0, 0, 0, 6904, 6890, 1, 0, 0, 0, 6904, 6898, 1, 0, 0, 0, 6905, 669, 1, 0, 0, 0, 6906, 6911, 3, 672, 336, 0, 6907, 6908, 5, 868, 0, 0, 6908, 6910, 3, 672, 336, 0, 6909, 6907, 1, 0, 0, 0, 6910, 6913, 1, 0, 0, 0, 6911, 6909, 1, 0, 0, 0, 6911, 6912, 1, 0, 0, 0, 6912, 671, 1, 0, 0, 0, 6913, 6911, 1, 0, 0, 0, 6914, 6919, 3, 716, 358, 0, 6915, 6917, 3, 720, 360, 0, 6916, 6918, 3, 720, 360, 0, 6917, 6916, 1, 0, 0, 0, 6917, 6918, 1, 0, 0, 0, 6918, 6920, 1, 0, 0, 0, 6919, 6915, 1, 0, 0, 0, 6919, 6920, 1, 0, 0, 0, 6920, 6930, 1, 0, 0, 0, 6921, 6923, 9, 0, 0, 0, 6922, 6921, 1, 0, 0, 0, 6922, 6923, 1, 0, 0, 0, 6923, 6924, 1, 0, 0, 0, 6924, 6926, 3, 720, 360, 0, 6925, 6927, 3, 720, 360, 0, 6926, 6925, 1, 0, 0, 0, 6926, 6927, 1, 0, 0, 0, 6927, 6930, 1, 0, 0, 0, 6928, 6930, 4, 336, 3, 0, 6929, 6914, 1, 0, 0, 0, 6929, 6922, 1, 0, 0, 0, 6929, 6928, 1, 0, 0, 0, 6930, 673, 1, 0, 0, 0, 6931, 6932, 3, 716, 358, 0, 6932, 675, 1, 0, 0, 0, 6933, 6934, 3, 716, 358, 0, 6934, 677, 1, 0, 0, 0, 6935, 6936, 3, 716, 358, 0, 6936, 679, 1, 0, 0, 0, 6937, 6942, 3, 682, 341, 0, 6938, 6939, 5, 868, 0, 0, 6939, 6941, 3, 682, 341, 0, 6940, 6938, 1, 0, 0, 0, 6941, 6944, 1, 0, 0, 0, 6942, 6940, 1, 0, 0, 0, 6942, 6943, 1, 0, 0, 0, 6943, 681, 1, 0, 0, 0, 6944, 6942, 1, 0, 0, 0, 6945, 6946, 3, 716, 358, 0, 6946, 683, 1, 0, 0, 0, 6947, 6952, 3, 716, 358, 0, 6948, 6949, 5, 866, 0, 0, 6949, 6950, 3, 722, 361, 0, 6950, 6951, 5, 867, 0, 0, 6951, 6953, 1, 0, 0, 0, 6952, 6948, 1, 0, 0, 0, 6952, 6953, 1, 0, 0, 0, 6953, 6956, 1, 0, 0, 0, 6954, 6956, 3, 814, 407, 0, 6955, 6947, 1, 0, 0, 0, 6955, 6954, 1, 0, 0, 0, 6956, 6958, 1, 0, 0, 0, 6957, 6959, 7, 55, 0, 0, 6958, 6957, 1, 0, 0, 0, 6958, 6959, 1, 0, 0, 0, 6959, 685, 1, 0, 0, 0, 6960, 6961, 3, 688, 344, 0, 6961, 6962, 5, 878, 0, 0, 6962, 6963, 3, 722, 361, 0, 6963, 687, 1, 0, 0, 0, 6964, 6965, 3, 690, 345, 0, 6965, 6966, 5, 891, 0, 0, 6966, 689, 1, 0, 0, 0, 6967, 6972, 5, 882, 0, 0, 6968, 6972, 5, 889, 0, 0, 6969, 6972, 5, 704, 0, 0, 6970, 6972, 3, 844, 422, 0, 6971, 6967, 1, 0, 0, 0, 6971, 6968, 1, 0, 0, 0, 6971, 6969, 1, 0, 0, 0, 6971, 6970, 1, 0, 0, 0, 6972, 691, 1, 0, 0, 0, 6973, 6974, 7, 110, 0, 0, 6974, 693, 1, 0, 0, 0, 6975, 6977, 3, 690, 345, 0, 6976, 6978, 3, 692, 346, 0, 6977, 6976, 1, 0, 0, 0, 6977, 6978, 1, 0, 0, 0, 6978, 6981, 1, 0, 0, 0, 6979, 6981, 3, 60, 30, 0, 6980, 6975, 1, 0, 0, 0, 6980, 6979, 1, 0, 0, 0, 6981, 695, 1, 0, 0, 0, 6982, 6983, 7, 111, 0, 0, 6983, 697, 1, 0, 0, 0, 6984, 6989, 5, 228, 0, 0, 6985, 6989, 3, 834, 417, 0, 6986, 6989, 5, 882, 0, 0, 6987, 6989, 5, 879, 0, 0, 6988, 6984, 1, 0, 0, 0, 6988, 6985, 1, 0, 0, 0, 6988, 6986, 1, 0, 0, 0, 6988, 6987, 1, 0, 0, 0, 6989, 699, 1, 0, 0, 0, 6990, 6991, 3, 716, 358, 0, 6991, 701, 1, 0, 0, 0, 6992, 6996, 3, 704, 352, 0, 6993, 6996, 5, 889, 0, 0, 6994, 6996, 5, 882, 0, 0, 6995, 6992, 1, 0, 0, 0, 6995, 6993, 1, 0, 0, 0, 6995, 6994, 1, 0, 0, 0, 6996, 703, 1, 0, 0, 0, 6997, 6998, 7, 112, 0, 0, 6998, 705, 1, 0, 0, 0, 6999, 7000, 3, 722, 361, 0, 7000, 7001, 5, 854, 0, 0, 7001, 7002, 3, 722, 361, 0, 7002, 7003, 5, 854, 0, 0, 7003, 7004, 3, 722, 361, 0, 7004, 7005, 5, 854, 0, 0, 7005, 7006, 3, 722, 361, 0, 7006, 7007, 5, 854, 0, 0, 7007, 7013, 3, 722, 361, 0, 7008, 7009, 5, 878, 0, 0, 7009, 7010, 3, 722, 361, 0, 7010, 7011, 5, 854, 0, 0, 7011, 7012, 3, 722, 361, 0, 7012, 7014, 1, 0, 0, 0, 7013, 7008, 1, 0, 0, 0, 7014, 7015, 1, 0, 0, 0, 7015, 7013, 1, 0, 0, 0, 7015, 7016, 1, 0, 0, 0, 7016, 707, 1, 0, 0, 0, 7017, 7024, 3, 710, 355, 0, 7018, 7019, 5, 868, 0, 0, 7019, 7022, 3, 710, 355, 0, 7020, 7021, 5, 868, 0, 0, 7021, 7023, 3, 722, 361, 0, 7022, 7020, 1, 0, 0, 0, 7022, 7023, 1, 0, 0, 0, 7023, 7025, 1, 0, 0, 0, 7024, 7018, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 709, 1, 0, 0, 0, 7026, 7034, 5, 882, 0, 0, 7027, 7034, 5, 887, 0, 0, 7028, 7030, 5, 884, 0, 0, 7029, 7028, 1, 0, 0, 0, 7030, 7031, 1, 0, 0, 0, 7031, 7029, 1, 0, 0, 0, 7031, 7032, 1, 0, 0, 0, 7032, 7034, 1, 0, 0, 0, 7033, 7026, 1, 0, 0, 0, 7033, 7027, 1, 0, 0, 0, 7033, 7029, 1, 0, 0, 0, 7034, 711, 1, 0, 0, 0, 7035, 7037, 3, 716, 358, 0, 7036, 7038, 3, 720, 360, 0, 7037, 7036, 1, 0, 0, 0, 7037, 7038, 1, 0, 0, 0, 7038, 713, 1, 0, 0, 0, 7039, 7044, 3, 716, 358, 0, 7040, 7041, 5, 868, 0, 0, 7041, 7043, 3, 716, 358, 0, 7042, 7040, 1, 0, 0, 0, 7043, 7046, 1, 0, 0, 0, 7044, 7042, 1, 0, 0, 0, 7044, 7045, 1, 0, 0, 0, 7045, 715, 1, 0, 0, 0, 7046, 7044, 1, 0, 0, 0, 7047, 7051, 3, 718, 359, 0, 7048, 7051, 5, 879, 0, 0, 7049, 7051, 5, 882, 0, 0, 7050, 7047, 1, 0, 0, 0, 7050, 7048, 1, 0, 0, 0, 7050, 7049, 1, 0, 0, 0, 7051, 717, 1, 0, 0, 0, 7052, 7062, 5, 889, 0, 0, 7053, 7062, 3, 834, 417, 0, 7054, 7062, 3, 836, 418, 0, 7055, 7062, 3, 704, 352, 0, 7056, 7062, 3, 838, 419, 0, 7057, 7062, 3, 840, 420, 0, 7058, 7062, 3, 842, 421, 0, 7059, 7062, 3, 844, 422, 0, 7060, 7062, 3, 806, 403, 0, 7061, 7052, 1, 0, 0, 0, 7061, 7053, 1, 0, 0, 0, 7061, 7054, 1, 0, 0, 0, 7061, 7055, 1, 0, 0, 0, 7061, 7056, 1, 0, 0, 0, 7061, 7057, 1, 0, 0, 0, 7061, 7058, 1, 0, 0, 0, 7061, 7059, 1, 0, 0, 0, 7061, 7060, 1, 0, 0, 0, 7062, 719, 1, 0, 0, 0, 7063, 7064, 5, 865, 0, 0, 7064, 7068, 5, 889, 0, 0, 7065, 7066, 5, 865, 0, 0, 7066, 7068, 3, 716, 358, 0, 7067, 7063, 1, 0, 0, 0, 7067, 7065, 1, 0, 0, 0, 7068, 721, 1, 0, 0, 0, 7069, 7070, 7, 113, 0, 0, 7070, 723, 1, 0, 0, 0, 7071, 7074, 5, 880, 0, 0, 7072, 7074, 3, 722, 361, 0, 7073, 7071, 1, 0, 0, 0, 7073, 7072, 1, 0, 0, 0, 7074, 725, 1, 0, 0, 0, 7075, 7077, 5, 888, 0, 0, 7076, 7075, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7078, 1, 0, 0, 0, 7078, 7081, 5, 882, 0, 0, 7079, 7081, 5, 881, 0, 0, 7080, 7076, 1, 0, 0, 0, 7080, 7079, 1, 0, 0, 0, 7081, 7083, 1, 0, 0, 0, 7082, 7084, 5, 882, 0, 0, 7083, 7082, 1, 0, 0, 0, 7084, 7085, 1, 0, 0, 0, 7085, 7083, 1, 0, 0, 0, 7085, 7086, 1, 0, 0, 0, 7086, 7099, 1, 0, 0, 0, 7087, 7089, 5, 888, 0, 0, 7088, 7087, 1, 0, 0, 0, 7088, 7089, 1, 0, 0, 0, 7089, 7090, 1, 0, 0, 0, 7090, 7093, 5, 882, 0, 0, 7091, 7093, 5, 881, 0, 0, 7092, 7088, 1, 0, 0, 0, 7092, 7091, 1, 0, 0, 0, 7093, 7096, 1, 0, 0, 0, 7094, 7095, 5, 28, 0, 0, 7095, 7097, 3, 700, 350, 0, 7096, 7094, 1, 0, 0, 0, 7096, 7097, 1, 0, 0, 0, 7097, 7099, 1, 0, 0, 0, 7098, 7080, 1, 0, 0, 0, 7098, 7092, 1, 0, 0, 0, 7099, 727, 1, 0, 0, 0, 7100, 7101, 7, 114, 0, 0, 7101, 729, 1, 0, 0, 0, 7102, 7104, 5, 888, 0, 0, 7103, 7102, 1, 0, 0, 0, 7103, 7104, 1, 0, 0, 0, 7104, 7105, 1, 0, 0, 0, 7105, 7106, 5, 884, 0, 0, 7106, 731, 1, 0, 0, 0, 7107, 7109, 5, 114, 0, 0, 7108, 7107, 1, 0, 0, 0, 7108, 7109, 1, 0, 0, 0, 7109, 7110, 1, 0, 0, 0, 7110, 7111, 7, 115, 0, 0, 7111, 733, 1, 0, 0, 0, 7112, 7125, 3, 726, 363, 0, 7113, 7125, 3, 722, 361, 0, 7114, 7115, 5, 854, 0, 0, 7115, 7125, 3, 722, 361, 0, 7116, 7125, 3, 730, 365, 0, 7117, 7125, 3, 728, 364, 0, 7118, 7125, 5, 885, 0, 0, 7119, 7125, 5, 887, 0, 0, 7120, 7122, 5, 114, 0, 0, 7121, 7120, 1, 0, 0, 0, 7121, 7122, 1, 0, 0, 0, 7122, 7123, 1, 0, 0, 0, 7123, 7125, 7, 115, 0, 0, 7124, 7112, 1, 0, 0, 0, 7124, 7113, 1, 0, 0, 0, 7124, 7114, 1, 0, 0, 0, 7124, 7116, 1, 0, 0, 0, 7124, 7117, 1, 0, 0, 0, 7124, 7118, 1, 0, 0, 0, 7124, 7119, 1, 0, 0, 0, 7124, 7121, 1, 0, 0, 0, 7125, 735, 1, 0, 0, 0, 7126, 7128, 7, 116, 0, 0, 7127, 7129, 5, 240, 0, 0, 7128, 7127, 1, 0, 0, 0, 7128, 7129, 1, 0, 0, 0, 7129, 7131, 1, 0, 0, 0, 7130, 7132, 3, 742, 371, 0, 7131, 7130, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7134, 1, 0, 0, 0, 7133, 7135, 5, 228, 0, 0, 7134, 7133, 1, 0, 0, 0, 7134, 7135, 1, 0, 0, 0, 7135, 7139, 1, 0, 0, 0, 7136, 7137, 3, 58, 29, 0, 7137, 7138, 3, 698, 349, 0, 7138, 7140, 1, 0, 0, 0, 7139, 7136, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7144, 1, 0, 0, 0, 7141, 7142, 5, 28, 0, 0, 7142, 7145, 3, 700, 350, 0, 7143, 7145, 5, 228, 0, 0, 7144, 7141, 1, 0, 0, 0, 7144, 7143, 1, 0, 0, 0, 7144, 7145, 1, 0, 0, 0, 7145, 7253, 1, 0, 0, 0, 7146, 7147, 5, 227, 0, 0, 7147, 7148, 7, 117, 0, 0, 7148, 7150, 5, 240, 0, 0, 7149, 7151, 3, 742, 371, 0, 7150, 7149, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7153, 1, 0, 0, 0, 7152, 7154, 5, 228, 0, 0, 7153, 7152, 1, 0, 0, 0, 7153, 7154, 1, 0, 0, 0, 7154, 7253, 1, 0, 0, 0, 7155, 7156, 5, 227, 0, 0, 7156, 7158, 7, 118, 0, 0, 7157, 7159, 3, 742, 371, 0, 7158, 7157, 1, 0, 0, 0, 7158, 7159, 1, 0, 0, 0, 7159, 7161, 1, 0, 0, 0, 7160, 7162, 5, 228, 0, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7253, 1, 0, 0, 0, 7163, 7164, 5, 498, 0, 0, 7164, 7166, 5, 225, 0, 0, 7165, 7167, 3, 742, 371, 0, 7166, 7165, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7169, 1, 0, 0, 0, 7168, 7170, 5, 228, 0, 0, 7169, 7168, 1, 0, 0, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7253, 1, 0, 0, 0, 7171, 7173, 7, 119, 0, 0, 7172, 7174, 3, 742, 371, 0, 7173, 7172, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7178, 1, 0, 0, 0, 7175, 7177, 7, 120, 0, 0, 7176, 7175, 1, 0, 0, 0, 7177, 7180, 1, 0, 0, 0, 7178, 7176, 1, 0, 0, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7253, 1, 0, 0, 0, 7180, 7178, 1, 0, 0, 0, 7181, 7183, 5, 210, 0, 0, 7182, 7184, 3, 744, 372, 0, 7183, 7182, 1, 0, 0, 0, 7183, 7184, 1, 0, 0, 0, 7184, 7188, 1, 0, 0, 0, 7185, 7187, 7, 120, 0, 0, 7186, 7185, 1, 0, 0, 0, 7187, 7190, 1, 0, 0, 0, 7188, 7186, 1, 0, 0, 0, 7188, 7189, 1, 0, 0, 0, 7189, 7253, 1, 0, 0, 0, 7190, 7188, 1, 0, 0, 0, 7191, 7193, 5, 211, 0, 0, 7192, 7194, 5, 212, 0, 0, 7193, 7192, 1, 0, 0, 0, 7193, 7194, 1, 0, 0, 0, 7194, 7196, 1, 0, 0, 0, 7195, 7197, 3, 744, 372, 0, 7196, 7195, 1, 0, 0, 0, 7196, 7197, 1, 0, 0, 0, 7197, 7201, 1, 0, 0, 0, 7198, 7200, 7, 120, 0, 0, 7199, 7198, 1, 0, 0, 0, 7200, 7203, 1, 0, 0, 0, 7201, 7199, 1, 0, 0, 0, 7201, 7202, 1, 0, 0, 0, 7202, 7253, 1, 0, 0, 0, 7203, 7201, 1, 0, 0, 0, 7204, 7206, 7, 121, 0, 0, 7205, 7207, 3, 746, 373, 0, 7206, 7205, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7211, 1, 0, 0, 0, 7208, 7210, 7, 120, 0, 0, 7209, 7208, 1, 0, 0, 0, 7210, 7213, 1, 0, 0, 0, 7211, 7209, 1, 0, 0, 0, 7211, 7212, 1, 0, 0, 0, 7212, 7253, 1, 0, 0, 0, 7213, 7211, 1, 0, 0, 0, 7214, 7253, 7, 122, 0, 0, 7215, 7217, 7, 123, 0, 0, 7216, 7218, 3, 742, 371, 0, 7217, 7216, 1, 0, 0, 0, 7217, 7218, 1, 0, 0, 0, 7218, 7253, 1, 0, 0, 0, 7219, 7220, 7, 124, 0, 0, 7220, 7222, 3, 738, 369, 0, 7221, 7223, 5, 228, 0, 0, 7222, 7221, 1, 0, 0, 0, 7222, 7223, 1, 0, 0, 0, 7223, 7227, 1, 0, 0, 0, 7224, 7225, 3, 58, 29, 0, 7225, 7226, 3, 698, 349, 0, 7226, 7228, 1, 0, 0, 0, 7227, 7224, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 7253, 1, 0, 0, 0, 7229, 7232, 7, 125, 0, 0, 7230, 7231, 5, 834, 0, 0, 7231, 7233, 3, 722, 361, 0, 7232, 7230, 1, 0, 0, 0, 7232, 7233, 1, 0, 0, 0, 7233, 7253, 1, 0, 0, 0, 7234, 7236, 5, 233, 0, 0, 7235, 7237, 5, 225, 0, 0, 7236, 7235, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7239, 1, 0, 0, 0, 7238, 7240, 5, 228, 0, 0, 7239, 7238, 1, 0, 0, 0, 7239, 7240, 1, 0, 0, 0, 7240, 7244, 1, 0, 0, 0, 7241, 7242, 3, 58, 29, 0, 7242, 7243, 3, 698, 349, 0, 7243, 7245, 1, 0, 0, 0, 7244, 7241, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7248, 1, 0, 0, 0, 7246, 7247, 5, 28, 0, 0, 7247, 7249, 3, 700, 350, 0, 7248, 7246, 1, 0, 0, 0, 7248, 7249, 1, 0, 0, 0, 7249, 7253, 1, 0, 0, 0, 7250, 7251, 5, 233, 0, 0, 7251, 7253, 5, 229, 0, 0, 7252, 7126, 1, 0, 0, 0, 7252, 7146, 1, 0, 0, 0, 7252, 7155, 1, 0, 0, 0, 7252, 7163, 1, 0, 0, 0, 7252, 7171, 1, 0, 0, 0, 7252, 7181, 1, 0, 0, 0, 7252, 7191, 1, 0, 0, 0, 7252, 7204, 1, 0, 0, 0, 7252, 7214, 1, 0, 0, 0, 7252, 7215, 1, 0, 0, 0, 7252, 7219, 1, 0, 0, 0, 7252, 7229, 1, 0, 0, 0, 7252, 7234, 1, 0, 0, 0, 7252, 7250, 1, 0, 0, 0, 7253, 737, 1, 0, 0, 0, 7254, 7255, 5, 866, 0, 0, 7255, 7260, 5, 882, 0, 0, 7256, 7257, 5, 868, 0, 0, 7257, 7259, 5, 882, 0, 0, 7258, 7256, 1, 0, 0, 0, 7259, 7262, 1, 0, 0, 0, 7260, 7258, 1, 0, 0, 0, 7260, 7261, 1, 0, 0, 0, 7261, 7263, 1, 0, 0, 0, 7262, 7260, 1, 0, 0, 0, 7263, 7264, 5, 867, 0, 0, 7264, 739, 1, 0, 0, 0, 7265, 7267, 7, 126, 0, 0, 7266, 7268, 3, 742, 371, 0, 7267, 7266, 1, 0, 0, 0, 7267, 7268, 1, 0, 0, 0, 7268, 7288, 1, 0, 0, 0, 7269, 7271, 5, 224, 0, 0, 7270, 7272, 3, 742, 371, 0, 7271, 7270, 1, 0, 0, 0, 7271, 7272, 1, 0, 0, 0, 7272, 7276, 1, 0, 0, 0, 7273, 7274, 3, 58, 29, 0, 7274, 7275, 3, 698, 349, 0, 7275, 7277, 1, 0, 0, 0, 7276, 7273, 1, 0, 0, 0, 7276, 7277, 1, 0, 0, 0, 7277, 7288, 1, 0, 0, 0, 7278, 7288, 7, 127, 0, 0, 7279, 7281, 7, 128, 0, 0, 7280, 7282, 3, 746, 373, 0, 7281, 7280, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7288, 1, 0, 0, 0, 7283, 7285, 7, 129, 0, 0, 7284, 7286, 7, 130, 0, 0, 7285, 7284, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 7288, 1, 0, 0, 0, 7287, 7265, 1, 0, 0, 0, 7287, 7269, 1, 0, 0, 0, 7287, 7278, 1, 0, 0, 0, 7287, 7279, 1, 0, 0, 0, 7287, 7283, 1, 0, 0, 0, 7288, 7290, 1, 0, 0, 0, 7289, 7291, 5, 12, 0, 0, 7290, 7289, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 741, 1, 0, 0, 0, 7292, 7293, 5, 866, 0, 0, 7293, 7294, 3, 722, 361, 0, 7294, 7295, 5, 867, 0, 0, 7295, 743, 1, 0, 0, 0, 7296, 7297, 5, 866, 0, 0, 7297, 7298, 3, 722, 361, 0, 7298, 7299, 5, 868, 0, 0, 7299, 7300, 3, 722, 361, 0, 7300, 7301, 5, 867, 0, 0, 7301, 745, 1, 0, 0, 0, 7302, 7303, 5, 866, 0, 0, 7303, 7306, 3, 722, 361, 0, 7304, 7305, 5, 868, 0, 0, 7305, 7307, 3, 722, 361, 0, 7306, 7304, 1, 0, 0, 0, 7306, 7307, 1, 0, 0, 0, 7307, 7308, 1, 0, 0, 0, 7308, 7309, 5, 867, 0, 0, 7309, 747, 1, 0, 0, 0, 7310, 7311, 5, 866, 0, 0, 7311, 7316, 3, 684, 342, 0, 7312, 7313, 5, 868, 0, 0, 7313, 7315, 3, 684, 342, 0, 7314, 7312, 1, 0, 0, 0, 7315, 7318, 1, 0, 0, 0, 7316, 7314, 1, 0, 0, 0, 7316, 7317, 1, 0, 0, 0, 7317, 7319, 1, 0, 0, 0, 7318, 7316, 1, 0, 0, 0, 7319, 7320, 5, 867, 0, 0, 7320, 749, 1, 0, 0, 0, 7321, 7326, 3, 814, 407, 0, 7322, 7323, 5, 868, 0, 0, 7323, 7325, 3, 814, 407, 0, 7324, 7322, 1, 0, 0, 0, 7325, 7328, 1, 0, 0, 0, 7326, 7324, 1, 0, 0, 0, 7326, 7327, 1, 0, 0, 0, 7327, 751, 1, 0, 0, 0, 7328, 7326, 1, 0, 0, 0, 7329, 7330, 7, 131, 0, 0, 7330, 7335, 3, 754, 377, 0, 7331, 7332, 5, 868, 0, 0, 7332, 7334, 3, 754, 377, 0, 7333, 7331, 1, 0, 0, 0, 7334, 7337, 1, 0, 0, 0, 7335, 7333, 1, 0, 0, 0, 7335, 7336, 1, 0, 0, 0, 7336, 753, 1, 0, 0, 0, 7337, 7335, 1, 0, 0, 0, 7338, 7339, 5, 866, 0, 0, 7339, 7344, 3, 756, 378, 0, 7340, 7341, 5, 868, 0, 0, 7341, 7343, 3, 756, 378, 0, 7342, 7340, 1, 0, 0, 0, 7343, 7346, 1, 0, 0, 0, 7344, 7342, 1, 0, 0, 0, 7344, 7345, 1, 0, 0, 0, 7345, 7347, 1, 0, 0, 0, 7346, 7344, 1, 0, 0, 0, 7347, 7348, 5, 867, 0, 0, 7348, 755, 1, 0, 0, 0, 7349, 7352, 3, 814, 407, 0, 7350, 7352, 5, 42, 0, 0, 7351, 7349, 1, 0, 0, 0, 7351, 7350, 1, 0, 0, 0, 7352, 757, 1, 0, 0, 0, 7353, 7358, 3, 734, 367, 0, 7354, 7355, 5, 868, 0, 0, 7355, 7357, 3, 734, 367, 0, 7356, 7354, 1, 0, 0, 0, 7357, 7360, 1, 0, 0, 0, 7358, 7356, 1, 0, 0, 0, 7358, 7359, 1, 0, 0, 0, 7359, 759, 1, 0, 0, 0, 7360, 7358, 1, 0, 0, 0, 7361, 7366, 5, 882, 0, 0, 7362, 7363, 5, 868, 0, 0, 7363, 7365, 5, 882, 0, 0, 7364, 7362, 1, 0, 0, 0, 7365, 7368, 1, 0, 0, 0, 7366, 7364, 1, 0, 0, 0, 7366, 7367, 1, 0, 0, 0, 7367, 761, 1, 0, 0, 0, 7368, 7366, 1, 0, 0, 0, 7369, 7374, 5, 892, 0, 0, 7370, 7371, 5, 868, 0, 0, 7371, 7373, 5, 892, 0, 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, 763, 1, 0, 0, 0, 7376, 7374, 1, 0, 0, 0, 7377, 7404, 5, 116, 0, 0, 7378, 7379, 5, 24, 0, 0, 7379, 7380, 5, 866, 0, 0, 7380, 7381, 3, 814, 407, 0, 7381, 7382, 5, 13, 0, 0, 7382, 7383, 3, 740, 370, 0, 7383, 7384, 5, 867, 0, 0, 7384, 7404, 1, 0, 0, 0, 7385, 7387, 3, 820, 410, 0, 7386, 7385, 1, 0, 0, 0, 7386, 7387, 1, 0, 0, 0, 7387, 7388, 1, 0, 0, 0, 7388, 7404, 3, 734, 367, 0, 7389, 7393, 3, 766, 383, 0, 7390, 7391, 5, 119, 0, 0, 7391, 7392, 5, 185, 0, 0, 7392, 7394, 3, 766, 383, 0, 7393, 7390, 1, 0, 0, 0, 7393, 7394, 1, 0, 0, 0, 7394, 7404, 1, 0, 0, 0, 7395, 7396, 5, 866, 0, 0, 7396, 7397, 3, 814, 407, 0, 7397, 7398, 5, 867, 0, 0, 7398, 7404, 1, 0, 0, 0, 7399, 7400, 5, 866, 0, 0, 7400, 7401, 3, 712, 356, 0, 7401, 7402, 5, 867, 0, 0, 7402, 7404, 1, 0, 0, 0, 7403, 7377, 1, 0, 0, 0, 7403, 7378, 1, 0, 0, 0, 7403, 7386, 1, 0, 0, 0, 7403, 7389, 1, 0, 0, 0, 7403, 7395, 1, 0, 0, 0, 7403, 7399, 1, 0, 0, 0, 7404, 765, 1, 0, 0, 0, 7405, 7411, 7, 132, 0, 0, 7406, 7408, 5, 866, 0, 0, 7407, 7409, 3, 722, 361, 0, 7408, 7407, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 7412, 5, 867, 0, 0, 7411, 7406, 1, 0, 0, 0, 7411, 7412, 1, 0, 0, 0, 7412, 7420, 1, 0, 0, 0, 7413, 7414, 5, 295, 0, 0, 7414, 7416, 5, 866, 0, 0, 7415, 7417, 3, 722, 361, 0, 7416, 7415, 1, 0, 0, 0, 7416, 7417, 1, 0, 0, 0, 7417, 7418, 1, 0, 0, 0, 7418, 7420, 5, 867, 0, 0, 7419, 7405, 1, 0, 0, 0, 7419, 7413, 1, 0, 0, 0, 7420, 767, 1, 0, 0, 0, 7421, 7422, 5, 78, 0, 0, 7422, 7423, 5, 60, 0, 0, 7423, 769, 1, 0, 0, 0, 7424, 7425, 5, 78, 0, 0, 7425, 7426, 5, 114, 0, 0, 7426, 7427, 5, 60, 0, 0, 7427, 771, 1, 0, 0, 0, 7428, 7429, 5, 124, 0, 0, 7429, 7430, 5, 143, 0, 0, 7430, 773, 1, 0, 0, 0, 7431, 7454, 3, 776, 388, 0, 7432, 7454, 3, 784, 392, 0, 7433, 7454, 3, 786, 393, 0, 7434, 7441, 3, 806, 403, 0, 7435, 7436, 5, 866, 0, 0, 7436, 7442, 5, 867, 0, 0, 7437, 7438, 5, 866, 0, 0, 7438, 7439, 3, 810, 405, 0, 7439, 7440, 5, 867, 0, 0, 7440, 7442, 1, 0, 0, 0, 7441, 7435, 1, 0, 0, 0, 7441, 7437, 1, 0, 0, 0, 7442, 7454, 1, 0, 0, 0, 7443, 7450, 3, 642, 321, 0, 7444, 7445, 5, 866, 0, 0, 7445, 7451, 5, 867, 0, 0, 7446, 7447, 5, 866, 0, 0, 7447, 7448, 3, 810, 405, 0, 7448, 7449, 5, 867, 0, 0, 7449, 7451, 1, 0, 0, 0, 7450, 7444, 1, 0, 0, 0, 7450, 7446, 1, 0, 0, 0, 7451, 7454, 1, 0, 0, 0, 7452, 7454, 3, 808, 404, 0, 7453, 7431, 1, 0, 0, 0, 7453, 7432, 1, 0, 0, 0, 7453, 7433, 1, 0, 0, 0, 7453, 7434, 1, 0, 0, 0, 7453, 7443, 1, 0, 0, 0, 7453, 7452, 1, 0, 0, 0, 7454, 775, 1, 0, 0, 0, 7455, 7458, 7, 133, 0, 0, 7456, 7457, 5, 866, 0, 0, 7457, 7459, 5, 867, 0, 0, 7458, 7456, 1, 0, 0, 0, 7458, 7459, 1, 0, 0, 0, 7459, 7635, 1, 0, 0, 0, 7460, 7635, 3, 60, 30, 0, 7461, 7462, 5, 33, 0, 0, 7462, 7463, 5, 866, 0, 0, 7463, 7464, 3, 814, 407, 0, 7464, 7465, 5, 868, 0, 0, 7465, 7466, 3, 740, 370, 0, 7466, 7467, 5, 867, 0, 0, 7467, 7635, 1, 0, 0, 0, 7468, 7469, 5, 33, 0, 0, 7469, 7470, 5, 866, 0, 0, 7470, 7471, 3, 814, 407, 0, 7471, 7472, 5, 188, 0, 0, 7472, 7473, 3, 698, 349, 0, 7473, 7474, 5, 867, 0, 0, 7474, 7635, 1, 0, 0, 0, 7475, 7476, 5, 24, 0, 0, 7476, 7477, 5, 866, 0, 0, 7477, 7478, 3, 814, 407, 0, 7478, 7479, 5, 13, 0, 0, 7479, 7480, 3, 740, 370, 0, 7480, 7481, 5, 867, 0, 0, 7481, 7635, 1, 0, 0, 0, 7482, 7483, 5, 189, 0, 0, 7483, 7484, 5, 866, 0, 0, 7484, 7485, 3, 672, 336, 0, 7485, 7486, 5, 867, 0, 0, 7486, 7635, 1, 0, 0, 0, 7487, 7489, 5, 23, 0, 0, 7488, 7490, 3, 778, 389, 0, 7489, 7488, 1, 0, 0, 0, 7490, 7491, 1, 0, 0, 0, 7491, 7489, 1, 0, 0, 0, 7491, 7492, 1, 0, 0, 0, 7492, 7495, 1, 0, 0, 0, 7493, 7494, 5, 53, 0, 0, 7494, 7496, 3, 812, 406, 0, 7495, 7493, 1, 0, 0, 0, 7495, 7496, 1, 0, 0, 0, 7496, 7497, 1, 0, 0, 0, 7497, 7498, 5, 378, 0, 0, 7498, 7635, 1, 0, 0, 0, 7499, 7500, 5, 23, 0, 0, 7500, 7502, 3, 814, 407, 0, 7501, 7503, 3, 778, 389, 0, 7502, 7501, 1, 0, 0, 0, 7503, 7504, 1, 0, 0, 0, 7504, 7502, 1, 0, 0, 0, 7504, 7505, 1, 0, 0, 0, 7505, 7508, 1, 0, 0, 0, 7506, 7507, 5, 53, 0, 0, 7507, 7509, 3, 812, 406, 0, 7508, 7506, 1, 0, 0, 0, 7508, 7509, 1, 0, 0, 0, 7509, 7510, 1, 0, 0, 0, 7510, 7511, 5, 378, 0, 0, 7511, 7635, 1, 0, 0, 0, 7512, 7513, 5, 224, 0, 0, 7513, 7514, 5, 866, 0, 0, 7514, 7517, 3, 810, 405, 0, 7515, 7516, 5, 188, 0, 0, 7516, 7518, 3, 698, 349, 0, 7517, 7515, 1, 0, 0, 0, 7517, 7518, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7520, 5, 867, 0, 0, 7520, 7635, 1, 0, 0, 0, 7521, 7522, 5, 296, 0, 0, 7522, 7525, 5, 866, 0, 0, 7523, 7526, 3, 726, 363, 0, 7524, 7526, 3, 814, 407, 0, 7525, 7523, 1, 0, 0, 0, 7525, 7524, 1, 0, 0, 0, 7526, 7527, 1, 0, 0, 0, 7527, 7530, 5, 80, 0, 0, 7528, 7531, 3, 726, 363, 0, 7529, 7531, 3, 814, 407, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7529, 1, 0, 0, 0, 7531, 7532, 1, 0, 0, 0, 7532, 7533, 5, 867, 0, 0, 7533, 7635, 1, 0, 0, 0, 7534, 7535, 7, 134, 0, 0, 7535, 7538, 5, 866, 0, 0, 7536, 7539, 3, 726, 363, 0, 7537, 7539, 3, 814, 407, 0, 7538, 7536, 1, 0, 0, 0, 7538, 7537, 1, 0, 0, 0, 7539, 7540, 1, 0, 0, 0, 7540, 7543, 5, 68, 0, 0, 7541, 7544, 3, 722, 361, 0, 7542, 7544, 3, 814, 407, 0, 7543, 7541, 1, 0, 0, 0, 7543, 7542, 1, 0, 0, 0, 7544, 7550, 1, 0, 0, 0, 7545, 7548, 5, 65, 0, 0, 7546, 7549, 3, 722, 361, 0, 7547, 7549, 3, 814, 407, 0, 7548, 7546, 1, 0, 0, 0, 7548, 7547, 1, 0, 0, 0, 7549, 7551, 1, 0, 0, 0, 7550, 7545, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7552, 1, 0, 0, 0, 7552, 7553, 5, 867, 0, 0, 7553, 7635, 1, 0, 0, 0, 7554, 7555, 5, 300, 0, 0, 7555, 7556, 5, 866, 0, 0, 7556, 7559, 7, 135, 0, 0, 7557, 7560, 3, 726, 363, 0, 7558, 7560, 3, 814, 407, 0, 7559, 7557, 1, 0, 0, 0, 7559, 7558, 1, 0, 0, 0, 7559, 7560, 1, 0, 0, 0, 7560, 7561, 1, 0, 0, 0, 7561, 7564, 5, 68, 0, 0, 7562, 7565, 3, 726, 363, 0, 7563, 7565, 3, 814, 407, 0, 7564, 7562, 1, 0, 0, 0, 7564, 7563, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7567, 5, 867, 0, 0, 7567, 7635, 1, 0, 0, 0, 7568, 7569, 5, 300, 0, 0, 7569, 7572, 5, 866, 0, 0, 7570, 7573, 3, 726, 363, 0, 7571, 7573, 3, 814, 407, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7571, 1, 0, 0, 0, 7573, 7574, 1, 0, 0, 0, 7574, 7577, 5, 68, 0, 0, 7575, 7578, 3, 726, 363, 0, 7576, 7578, 3, 814, 407, 0, 7577, 7575, 1, 0, 0, 0, 7577, 7576, 1, 0, 0, 0, 7578, 7579, 1, 0, 0, 0, 7579, 7580, 5, 867, 0, 0, 7580, 7635, 1, 0, 0, 0, 7581, 7582, 5, 840, 0, 0, 7582, 7585, 5, 866, 0, 0, 7583, 7586, 3, 726, 363, 0, 7584, 7586, 3, 814, 407, 0, 7585, 7583, 1, 0, 0, 0, 7585, 7584, 1, 0, 0, 0, 7586, 7593, 1, 0, 0, 0, 7587, 7588, 5, 13, 0, 0, 7588, 7589, 7, 136, 0, 0, 7589, 7590, 5, 866, 0, 0, 7590, 7591, 3, 722, 361, 0, 7591, 7592, 5, 867, 0, 0, 7592, 7594, 1, 0, 0, 0, 7593, 7587, 1, 0, 0, 0, 7593, 7594, 1, 0, 0, 0, 7594, 7596, 1, 0, 0, 0, 7595, 7597, 3, 780, 390, 0, 7596, 7595, 1, 0, 0, 0, 7596, 7597, 1, 0, 0, 0, 7597, 7598, 1, 0, 0, 0, 7598, 7599, 5, 867, 0, 0, 7599, 7635, 1, 0, 0, 0, 7600, 7601, 5, 293, 0, 0, 7601, 7602, 5, 866, 0, 0, 7602, 7603, 3, 70, 35, 0, 7603, 7606, 5, 68, 0, 0, 7604, 7607, 3, 726, 363, 0, 7605, 7607, 3, 814, 407, 0, 7606, 7604, 1, 0, 0, 0, 7606, 7605, 1, 0, 0, 0, 7607, 7608, 1, 0, 0, 0, 7608, 7609, 5, 867, 0, 0, 7609, 7635, 1, 0, 0, 0, 7610, 7611, 5, 827, 0, 0, 7611, 7612, 5, 866, 0, 0, 7612, 7613, 7, 137, 0, 0, 7613, 7614, 5, 868, 0, 0, 7614, 7615, 3, 726, 363, 0, 7615, 7616, 5, 867, 0, 0, 7616, 7635, 1, 0, 0, 0, 7617, 7618, 5, 254, 0, 0, 7618, 7619, 5, 866, 0, 0, 7619, 7620, 3, 814, 407, 0, 7620, 7621, 5, 868, 0, 0, 7621, 7624, 3, 814, 407, 0, 7622, 7623, 5, 579, 0, 0, 7623, 7625, 3, 740, 370, 0, 7624, 7622, 1, 0, 0, 0, 7624, 7625, 1, 0, 0, 0, 7625, 7627, 1, 0, 0, 0, 7626, 7628, 3, 294, 147, 0, 7627, 7626, 1, 0, 0, 0, 7627, 7628, 1, 0, 0, 0, 7628, 7630, 1, 0, 0, 0, 7629, 7631, 3, 296, 148, 0, 7630, 7629, 1, 0, 0, 0, 7630, 7631, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 7633, 5, 867, 0, 0, 7633, 7635, 1, 0, 0, 0, 7634, 7455, 1, 0, 0, 0, 7634, 7460, 1, 0, 0, 0, 7634, 7461, 1, 0, 0, 0, 7634, 7468, 1, 0, 0, 0, 7634, 7475, 1, 0, 0, 0, 7634, 7482, 1, 0, 0, 0, 7634, 7487, 1, 0, 0, 0, 7634, 7499, 1, 0, 0, 0, 7634, 7512, 1, 0, 0, 0, 7634, 7521, 1, 0, 0, 0, 7634, 7534, 1, 0, 0, 0, 7634, 7554, 1, 0, 0, 0, 7634, 7568, 1, 0, 0, 0, 7634, 7581, 1, 0, 0, 0, 7634, 7600, 1, 0, 0, 0, 7634, 7610, 1, 0, 0, 0, 7634, 7617, 1, 0, 0, 0, 7635, 777, 1, 0, 0, 0, 7636, 7637, 5, 191, 0, 0, 7637, 7638, 3, 812, 406, 0, 7638, 7639, 5, 175, 0, 0, 7639, 7640, 3, 812, 406, 0, 7640, 779, 1, 0, 0, 0, 7641, 7642, 5, 448, 0, 0, 7642, 7647, 3, 782, 391, 0, 7643, 7644, 5, 868, 0, 0, 7644, 7646, 3, 782, 391, 0, 7645, 7643, 1, 0, 0, 0, 7646, 7649, 1, 0, 0, 0, 7647, 7645, 1, 0, 0, 0, 7647, 7648, 1, 0, 0, 0, 7648, 7656, 1, 0, 0, 0, 7649, 7647, 1, 0, 0, 0, 7650, 7651, 5, 448, 0, 0, 7651, 7652, 3, 722, 361, 0, 7652, 7653, 5, 854, 0, 0, 7653, 7654, 3, 722, 361, 0, 7654, 7656, 1, 0, 0, 0, 7655, 7641, 1, 0, 0, 0, 7655, 7650, 1, 0, 0, 0, 7656, 781, 1, 0, 0, 0, 7657, 7659, 3, 722, 361, 0, 7658, 7660, 7, 138, 0, 0, 7659, 7658, 1, 0, 0, 0, 7659, 7660, 1, 0, 0, 0, 7660, 783, 1, 0, 0, 0, 7661, 7662, 7, 139, 0, 0, 7662, 7664, 5, 866, 0, 0, 7663, 7665, 7, 45, 0, 0, 7664, 7663, 1, 0, 0, 0, 7664, 7665, 1, 0, 0, 0, 7665, 7666, 1, 0, 0, 0, 7666, 7667, 3, 812, 406, 0, 7667, 7669, 5, 867, 0, 0, 7668, 7670, 3, 788, 394, 0, 7669, 7668, 1, 0, 0, 0, 7669, 7670, 1, 0, 0, 0, 7670, 7721, 1, 0, 0, 0, 7671, 7672, 5, 262, 0, 0, 7672, 7680, 5, 866, 0, 0, 7673, 7681, 5, 850, 0, 0, 7674, 7676, 5, 7, 0, 0, 7675, 7674, 1, 0, 0, 0, 7675, 7676, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 7681, 3, 812, 406, 0, 7678, 7679, 5, 49, 0, 0, 7679, 7681, 3, 810, 405, 0, 7680, 7673, 1, 0, 0, 0, 7680, 7675, 1, 0, 0, 0, 7680, 7678, 1, 0, 0, 0, 7681, 7682, 1, 0, 0, 0, 7682, 7684, 5, 867, 0, 0, 7683, 7685, 3, 788, 394, 0, 7684, 7683, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7721, 1, 0, 0, 0, 7686, 7687, 7, 140, 0, 0, 7687, 7689, 5, 866, 0, 0, 7688, 7690, 5, 7, 0, 0, 7689, 7688, 1, 0, 0, 0, 7689, 7690, 1, 0, 0, 0, 7690, 7691, 1, 0, 0, 0, 7691, 7692, 3, 812, 406, 0, 7692, 7694, 5, 867, 0, 0, 7693, 7695, 3, 788, 394, 0, 7694, 7693, 1, 0, 0, 0, 7694, 7695, 1, 0, 0, 0, 7695, 7721, 1, 0, 0, 0, 7696, 7697, 5, 266, 0, 0, 7697, 7699, 5, 866, 0, 0, 7698, 7700, 5, 49, 0, 0, 7699, 7698, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 7701, 1, 0, 0, 0, 7701, 7712, 3, 810, 405, 0, 7702, 7703, 5, 125, 0, 0, 7703, 7704, 5, 20, 0, 0, 7704, 7709, 3, 260, 130, 0, 7705, 7706, 5, 868, 0, 0, 7706, 7708, 3, 260, 130, 0, 7707, 7705, 1, 0, 0, 0, 7708, 7711, 1, 0, 0, 0, 7709, 7707, 1, 0, 0, 0, 7709, 7710, 1, 0, 0, 0, 7710, 7713, 1, 0, 0, 0, 7711, 7709, 1, 0, 0, 0, 7712, 7702, 1, 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 7716, 1, 0, 0, 0, 7714, 7715, 5, 156, 0, 0, 7715, 7717, 5, 882, 0, 0, 7716, 7714, 1, 0, 0, 0, 7716, 7717, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 7719, 5, 867, 0, 0, 7719, 7721, 1, 0, 0, 0, 7720, 7661, 1, 0, 0, 0, 7720, 7671, 1, 0, 0, 0, 7720, 7686, 1, 0, 0, 0, 7720, 7696, 1, 0, 0, 0, 7721, 785, 1, 0, 0, 0, 7722, 7723, 7, 141, 0, 0, 7723, 7724, 5, 866, 0, 0, 7724, 7727, 3, 814, 407, 0, 7725, 7726, 5, 868, 0, 0, 7726, 7728, 3, 722, 361, 0, 7727, 7725, 1, 0, 0, 0, 7727, 7728, 1, 0, 0, 0, 7728, 7731, 1, 0, 0, 0, 7729, 7730, 5, 868, 0, 0, 7730, 7732, 3, 722, 361, 0, 7731, 7729, 1, 0, 0, 0, 7731, 7732, 1, 0, 0, 0, 7732, 7733, 1, 0, 0, 0, 7733, 7734, 5, 867, 0, 0, 7734, 7735, 3, 788, 394, 0, 7735, 7761, 1, 0, 0, 0, 7736, 7737, 7, 142, 0, 0, 7737, 7738, 5, 866, 0, 0, 7738, 7739, 3, 814, 407, 0, 7739, 7740, 5, 867, 0, 0, 7740, 7741, 3, 788, 394, 0, 7741, 7761, 1, 0, 0, 0, 7742, 7743, 7, 143, 0, 0, 7743, 7744, 5, 866, 0, 0, 7744, 7745, 5, 867, 0, 0, 7745, 7761, 3, 788, 394, 0, 7746, 7747, 5, 273, 0, 0, 7747, 7748, 5, 866, 0, 0, 7748, 7749, 3, 814, 407, 0, 7749, 7750, 5, 868, 0, 0, 7750, 7751, 3, 722, 361, 0, 7751, 7752, 5, 867, 0, 0, 7752, 7753, 3, 788, 394, 0, 7753, 7761, 1, 0, 0, 0, 7754, 7755, 5, 272, 0, 0, 7755, 7756, 5, 866, 0, 0, 7756, 7757, 3, 722, 361, 0, 7757, 7758, 5, 867, 0, 0, 7758, 7759, 3, 788, 394, 0, 7759, 7761, 1, 0, 0, 0, 7760, 7722, 1, 0, 0, 0, 7760, 7736, 1, 0, 0, 0, 7760, 7742, 1, 0, 0, 0, 7760, 7746, 1, 0, 0, 0, 7760, 7754, 1, 0, 0, 0, 7761, 787, 1, 0, 0, 0, 7762, 7768, 5, 129, 0, 0, 7763, 7764, 5, 866, 0, 0, 7764, 7765, 3, 790, 395, 0, 7765, 7766, 5, 867, 0, 0, 7766, 7769, 1, 0, 0, 0, 7767, 7769, 3, 792, 396, 0, 7768, 7763, 1, 0, 0, 0, 7768, 7767, 1, 0, 0, 0, 7769, 789, 1, 0, 0, 0, 7770, 7772, 3, 792, 396, 0, 7771, 7770, 1, 0, 0, 0, 7771, 7772, 1, 0, 0, 0, 7772, 7774, 1, 0, 0, 0, 7773, 7775, 3, 804, 402, 0, 7774, 7773, 1, 0, 0, 0, 7774, 7775, 1, 0, 0, 0, 7775, 7777, 1, 0, 0, 0, 7776, 7778, 3, 258, 129, 0, 7777, 7776, 1, 0, 0, 0, 7777, 7778, 1, 0, 0, 0, 7778, 7780, 1, 0, 0, 0, 7779, 7781, 3, 794, 397, 0, 7780, 7779, 1, 0, 0, 0, 7780, 7781, 1, 0, 0, 0, 7781, 791, 1, 0, 0, 0, 7782, 7783, 3, 716, 358, 0, 7783, 793, 1, 0, 0, 0, 7784, 7785, 3, 796, 398, 0, 7785, 7786, 3, 798, 399, 0, 7786, 795, 1, 0, 0, 0, 7787, 7788, 7, 144, 0, 0, 7788, 797, 1, 0, 0, 0, 7789, 7792, 3, 802, 401, 0, 7790, 7792, 3, 800, 400, 0, 7791, 7789, 1, 0, 0, 0, 7791, 7790, 1, 0, 0, 0, 7792, 799, 1, 0, 0, 0, 7793, 7794, 5, 17, 0, 0, 7794, 7795, 3, 802, 401, 0, 7795, 7796, 5, 11, 0, 0, 7796, 7797, 3, 802, 401, 0, 7797, 801, 1, 0, 0, 0, 7798, 7799, 5, 36, 0, 0, 7799, 7806, 5, 586, 0, 0, 7800, 7801, 5, 669, 0, 0, 7801, 7806, 7, 145, 0, 0, 7802, 7803, 3, 814, 407, 0, 7803, 7804, 7, 145, 0, 0, 7804, 7806, 1, 0, 0, 0, 7805, 7798, 1, 0, 0, 0, 7805, 7800, 1, 0, 0, 0, 7805, 7802, 1, 0, 0, 0, 7806, 803, 1, 0, 0, 0, 7807, 7808, 5, 130, 0, 0, 7808, 7809, 5, 20, 0, 0, 7809, 7814, 3, 814, 407, 0, 7810, 7811, 5, 868, 0, 0, 7811, 7813, 3, 814, 407, 0, 7812, 7810, 1, 0, 0, 0, 7813, 7816, 1, 0, 0, 0, 7814, 7812, 1, 0, 0, 0, 7814, 7815, 1, 0, 0, 0, 7815, 805, 1, 0, 0, 0, 7816, 7814, 1, 0, 0, 0, 7817, 7842, 3, 846, 423, 0, 7818, 7842, 5, 757, 0, 0, 7819, 7842, 5, 289, 0, 0, 7820, 7842, 5, 285, 0, 0, 7821, 7842, 5, 286, 0, 0, 7822, 7842, 5, 287, 0, 0, 7823, 7842, 5, 290, 0, 0, 7824, 7842, 5, 291, 0, 0, 7825, 7842, 5, 292, 0, 0, 7826, 7842, 5, 78, 0, 0, 7827, 7842, 5, 86, 0, 0, 7828, 7842, 5, 288, 0, 0, 7829, 7842, 5, 294, 0, 0, 7830, 7842, 5, 488, 0, 0, 7831, 7842, 5, 295, 0, 0, 7832, 7842, 5, 142, 0, 0, 7833, 7842, 5, 143, 0, 0, 7834, 7842, 5, 297, 0, 0, 7835, 7842, 5, 298, 0, 0, 7836, 7842, 5, 299, 0, 0, 7837, 7842, 5, 300, 0, 0, 7838, 7842, 5, 301, 0, 0, 7839, 7842, 5, 302, 0, 0, 7840, 7842, 5, 303, 0, 0, 7841, 7817, 1, 0, 0, 0, 7841, 7818, 1, 0, 0, 0, 7841, 7819, 1, 0, 0, 0, 7841, 7820, 1, 0, 0, 0, 7841, 7821, 1, 0, 0, 0, 7841, 7822, 1, 0, 0, 0, 7841, 7823, 1, 0, 0, 0, 7841, 7824, 1, 0, 0, 0, 7841, 7825, 1, 0, 0, 0, 7841, 7826, 1, 0, 0, 0, 7841, 7827, 1, 0, 0, 0, 7841, 7828, 1, 0, 0, 0, 7841, 7829, 1, 0, 0, 0, 7841, 7830, 1, 0, 0, 0, 7841, 7831, 1, 0, 0, 0, 7841, 7832, 1, 0, 0, 0, 7841, 7833, 1, 0, 0, 0, 7841, 7834, 1, 0, 0, 0, 7841, 7835, 1, 0, 0, 0, 7841, 7836, 1, 0, 0, 0, 7841, 7837, 1, 0, 0, 0, 7841, 7838, 1, 0, 0, 0, 7841, 7839, 1, 0, 0, 0, 7841, 7840, 1, 0, 0, 0, 7842, 807, 1, 0, 0, 0, 7843, 7844, 7, 146, 0, 0, 7844, 7845, 5, 866, 0, 0, 7845, 7846, 3, 812, 406, 0, 7846, 7847, 5, 867, 0, 0, 7847, 809, 1, 0, 0, 0, 7848, 7853, 3, 812, 406, 0, 7849, 7850, 5, 868, 0, 0, 7850, 7852, 3, 812, 406, 0, 7851, 7849, 1, 0, 0, 0, 7852, 7855, 1, 0, 0, 0, 7853, 7851, 1, 0, 0, 0, 7853, 7854, 1, 0, 0, 0, 7854, 811, 1, 0, 0, 0, 7855, 7853, 1, 0, 0, 0, 7856, 7860, 3, 734, 367, 0, 7857, 7860, 3, 774, 387, 0, 7858, 7860, 3, 814, 407, 0, 7859, 7856, 1, 0, 0, 0, 7859, 7857, 1, 0, 0, 0, 7859, 7858, 1, 0, 0, 0, 7860, 813, 1, 0, 0, 0, 7861, 7862, 6, 407, -1, 0, 7862, 7863, 7, 147, 0, 0, 7863, 7873, 3, 814, 407, 4, 7864, 7865, 3, 816, 408, 0, 7865, 7867, 5, 89, 0, 0, 7866, 7868, 5, 114, 0, 0, 7867, 7866, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 7869, 1, 0, 0, 0, 7869, 7870, 7, 148, 0, 0, 7870, 7873, 1, 0, 0, 0, 7871, 7873, 3, 816, 408, 0, 7872, 7861, 1, 0, 0, 0, 7872, 7864, 1, 0, 0, 0, 7872, 7871, 1, 0, 0, 0, 7873, 7880, 1, 0, 0, 0, 7874, 7875, 10, 3, 0, 0, 7875, 7876, 3, 826, 413, 0, 7876, 7877, 3, 814, 407, 4, 7877, 7879, 1, 0, 0, 0, 7878, 7874, 1, 0, 0, 0, 7879, 7882, 1, 0, 0, 0, 7880, 7878, 1, 0, 0, 0, 7880, 7881, 1, 0, 0, 0, 7881, 815, 1, 0, 0, 0, 7882, 7880, 1, 0, 0, 0, 7883, 7884, 6, 408, -1, 0, 7884, 7885, 3, 818, 409, 0, 7885, 7949, 1, 0, 0, 0, 7886, 7888, 10, 6, 0, 0, 7887, 7889, 5, 114, 0, 0, 7888, 7887, 1, 0, 0, 0, 7888, 7889, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7891, 5, 17, 0, 0, 7891, 7892, 3, 816, 408, 0, 7892, 7893, 5, 11, 0, 0, 7893, 7894, 3, 816, 408, 7, 7894, 7948, 1, 0, 0, 0, 7895, 7896, 10, 5, 0, 0, 7896, 7897, 5, 604, 0, 0, 7897, 7898, 5, 99, 0, 0, 7898, 7948, 3, 816, 408, 6, 7899, 7901, 10, 3, 0, 0, 7900, 7902, 5, 114, 0, 0, 7901, 7900, 1, 0, 0, 0, 7901, 7902, 1, 0, 0, 0, 7902, 7903, 1, 0, 0, 0, 7903, 7904, 7, 149, 0, 0, 7904, 7948, 3, 816, 408, 4, 7905, 7907, 10, 9, 0, 0, 7906, 7908, 5, 114, 0, 0, 7907, 7906, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7909, 1, 0, 0, 0, 7909, 7910, 5, 80, 0, 0, 7910, 7913, 5, 866, 0, 0, 7911, 7914, 3, 210, 105, 0, 7912, 7914, 3, 750, 375, 0, 7913, 7911, 1, 0, 0, 0, 7913, 7912, 1, 0, 0, 0, 7914, 7915, 1, 0, 0, 0, 7915, 7916, 5, 867, 0, 0, 7916, 7948, 1, 0, 0, 0, 7917, 7918, 10, 8, 0, 0, 7918, 7919, 5, 89, 0, 0, 7919, 7948, 3, 732, 366, 0, 7920, 7921, 10, 7, 0, 0, 7921, 7928, 3, 822, 411, 0, 7922, 7923, 7, 150, 0, 0, 7923, 7924, 5, 866, 0, 0, 7924, 7925, 3, 210, 105, 0, 7925, 7926, 5, 867, 0, 0, 7926, 7929, 1, 0, 0, 0, 7927, 7929, 3, 816, 408, 0, 7928, 7922, 1, 0, 0, 0, 7928, 7927, 1, 0, 0, 0, 7929, 7948, 1, 0, 0, 0, 7930, 7932, 10, 4, 0, 0, 7931, 7933, 5, 114, 0, 0, 7932, 7931, 1, 0, 0, 0, 7932, 7933, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 7935, 5, 99, 0, 0, 7935, 7938, 3, 816, 408, 0, 7936, 7937, 5, 384, 0, 0, 7937, 7939, 5, 882, 0, 0, 7938, 7936, 1, 0, 0, 0, 7938, 7939, 1, 0, 0, 0, 7939, 7948, 1, 0, 0, 0, 7940, 7941, 10, 2, 0, 0, 7941, 7942, 5, 485, 0, 0, 7942, 7943, 5, 510, 0, 0, 7943, 7944, 5, 866, 0, 0, 7944, 7945, 3, 816, 408, 0, 7945, 7946, 5, 867, 0, 0, 7946, 7948, 1, 0, 0, 0, 7947, 7886, 1, 0, 0, 0, 7947, 7895, 1, 0, 0, 0, 7947, 7899, 1, 0, 0, 0, 7947, 7905, 1, 0, 0, 0, 7947, 7917, 1, 0, 0, 0, 7947, 7920, 1, 0, 0, 0, 7947, 7930, 1, 0, 0, 0, 7947, 7940, 1, 0, 0, 0, 7948, 7951, 1, 0, 0, 0, 7949, 7947, 1, 0, 0, 0, 7949, 7950, 1, 0, 0, 0, 7950, 817, 1, 0, 0, 0, 7951, 7949, 1, 0, 0, 0, 7952, 7953, 6, 409, -1, 0, 7953, 8001, 3, 734, 367, 0, 7954, 8001, 3, 774, 387, 0, 7955, 8001, 3, 696, 348, 0, 7956, 7957, 3, 820, 410, 0, 7957, 7958, 3, 818, 409, 12, 7958, 8001, 1, 0, 0, 0, 7959, 7960, 5, 228, 0, 0, 7960, 8001, 3, 818, 409, 11, 7961, 7962, 5, 892, 0, 0, 7962, 7963, 5, 841, 0, 0, 7963, 8001, 3, 818, 409, 10, 7964, 7965, 5, 866, 0, 0, 7965, 7970, 3, 814, 407, 0, 7966, 7967, 5, 868, 0, 0, 7967, 7969, 3, 814, 407, 0, 7968, 7966, 1, 0, 0, 0, 7969, 7972, 1, 0, 0, 0, 7970, 7968, 1, 0, 0, 0, 7970, 7971, 1, 0, 0, 0, 7971, 7973, 1, 0, 0, 0, 7972, 7970, 1, 0, 0, 0, 7973, 7974, 5, 867, 0, 0, 7974, 8001, 1, 0, 0, 0, 7975, 7976, 5, 586, 0, 0, 7976, 7977, 5, 866, 0, 0, 7977, 7980, 3, 814, 407, 0, 7978, 7979, 5, 868, 0, 0, 7979, 7981, 3, 814, 407, 0, 7980, 7978, 1, 0, 0, 0, 7981, 7982, 1, 0, 0, 0, 7982, 7980, 1, 0, 0, 0, 7982, 7983, 1, 0, 0, 0, 7983, 7984, 1, 0, 0, 0, 7984, 7985, 5, 867, 0, 0, 7985, 8001, 1, 0, 0, 0, 7986, 7987, 5, 60, 0, 0, 7987, 7988, 5, 866, 0, 0, 7988, 7989, 3, 210, 105, 0, 7989, 7990, 5, 867, 0, 0, 7990, 8001, 1, 0, 0, 0, 7991, 7992, 5, 866, 0, 0, 7992, 7993, 3, 210, 105, 0, 7993, 7994, 5, 867, 0, 0, 7994, 8001, 1, 0, 0, 0, 7995, 7996, 5, 87, 0, 0, 7996, 7997, 3, 814, 407, 0, 7997, 7998, 3, 70, 35, 0, 7998, 8001, 1, 0, 0, 0, 7999, 8001, 3, 672, 336, 0, 8000, 7952, 1, 0, 0, 0, 8000, 7954, 1, 0, 0, 0, 8000, 7955, 1, 0, 0, 0, 8000, 7956, 1, 0, 0, 0, 8000, 7959, 1, 0, 0, 0, 8000, 7961, 1, 0, 0, 0, 8000, 7964, 1, 0, 0, 0, 8000, 7975, 1, 0, 0, 0, 8000, 7986, 1, 0, 0, 0, 8000, 7991, 1, 0, 0, 0, 8000, 7995, 1, 0, 0, 0, 8000, 7999, 1, 0, 0, 0, 8001, 8019, 1, 0, 0, 0, 8002, 8003, 10, 4, 0, 0, 8003, 8004, 3, 832, 416, 0, 8004, 8005, 3, 818, 409, 5, 8005, 8018, 1, 0, 0, 0, 8006, 8007, 10, 3, 0, 0, 8007, 8008, 3, 828, 414, 0, 8008, 8009, 3, 818, 409, 4, 8009, 8018, 1, 0, 0, 0, 8010, 8011, 10, 2, 0, 0, 8011, 8012, 3, 830, 415, 0, 8012, 8013, 3, 818, 409, 3, 8013, 8018, 1, 0, 0, 0, 8014, 8015, 10, 14, 0, 0, 8015, 8016, 5, 28, 0, 0, 8016, 8018, 3, 700, 350, 0, 8017, 8002, 1, 0, 0, 0, 8017, 8006, 1, 0, 0, 0, 8017, 8010, 1, 0, 0, 0, 8017, 8014, 1, 0, 0, 0, 8018, 8021, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 819, 1, 0, 0, 0, 8021, 8019, 1, 0, 0, 0, 8022, 8023, 7, 151, 0, 0, 8023, 821, 1, 0, 0, 0, 8024, 8025, 5, 859, 0, 0, 8025, 8033, 5, 858, 0, 0, 8026, 8027, 5, 860, 0, 0, 8027, 8033, 5, 857, 0, 0, 8028, 8029, 5, 859, 0, 0, 8029, 8030, 5, 857, 0, 0, 8030, 8033, 5, 858, 0, 0, 8031, 8033, 3, 824, 412, 0, 8032, 8024, 1, 0, 0, 0, 8032, 8026, 1, 0, 0, 0, 8032, 8028, 1, 0, 0, 0, 8032, 8031, 1, 0, 0, 0, 8033, 823, 1, 0, 0, 0, 8034, 8035, 5, 859, 0, 0, 8035, 8042, 5, 857, 0, 0, 8036, 8037, 5, 858, 0, 0, 8037, 8042, 5, 857, 0, 0, 8038, 8042, 5, 857, 0, 0, 8039, 8042, 5, 858, 0, 0, 8040, 8042, 5, 859, 0, 0, 8041, 8034, 1, 0, 0, 0, 8041, 8036, 1, 0, 0, 0, 8041, 8038, 1, 0, 0, 0, 8041, 8039, 1, 0, 0, 0, 8041, 8040, 1, 0, 0, 0, 8042, 825, 1, 0, 0, 0, 8043, 8051, 5, 11, 0, 0, 8044, 8045, 5, 863, 0, 0, 8045, 8051, 5, 863, 0, 0, 8046, 8051, 5, 196, 0, 0, 8047, 8051, 5, 124, 0, 0, 8048, 8049, 5, 862, 0, 0, 8049, 8051, 5, 862, 0, 0, 8050, 8043, 1, 0, 0, 0, 8050, 8044, 1, 0, 0, 0, 8050, 8046, 1, 0, 0, 0, 8050, 8047, 1, 0, 0, 0, 8050, 8048, 1, 0, 0, 0, 8051, 827, 1, 0, 0, 0, 8052, 8053, 5, 859, 0, 0, 8053, 8060, 5, 859, 0, 0, 8054, 8055, 5, 858, 0, 0, 8055, 8060, 5, 858, 0, 0, 8056, 8060, 5, 863, 0, 0, 8057, 8060, 5, 864, 0, 0, 8058, 8060, 5, 862, 0, 0, 8059, 8052, 1, 0, 0, 0, 8059, 8054, 1, 0, 0, 0, 8059, 8056, 1, 0, 0, 0, 8059, 8057, 1, 0, 0, 0, 8059, 8058, 1, 0, 0, 0, 8060, 829, 1, 0, 0, 0, 8061, 8062, 7, 152, 0, 0, 8062, 831, 1, 0, 0, 0, 8063, 8064, 5, 854, 0, 0, 8064, 8069, 5, 858, 0, 0, 8065, 8066, 5, 854, 0, 0, 8066, 8067, 5, 858, 0, 0, 8067, 8069, 5, 858, 0, 0, 8068, 8063, 1, 0, 0, 0, 8068, 8065, 1, 0, 0, 0, 8069, 833, 1, 0, 0, 0, 8070, 8071, 7, 153, 0, 0, 8071, 835, 1, 0, 0, 0, 8072, 8073, 7, 154, 0, 0, 8073, 837, 1, 0, 0, 0, 8074, 8075, 7, 155, 0, 0, 8075, 839, 1, 0, 0, 0, 8076, 8077, 7, 156, 0, 0, 8077, 841, 1, 0, 0, 0, 8078, 8079, 7, 157, 0, 0, 8079, 843, 1, 0, 0, 0, 8080, 8081, 7, 158, 0, 0, 8081, 845, 1, 0, 0, 0, 8082, 8083, 7, 159, 0, 0, 8083, 847, 1, 0, 0, 0, 1162, 851, 858, 861, 870, 914, 933, 944, 960, 965, 977, 1012, 1022, 1027, 1033, 1038, 1042, 1051, 1054, 1057, 1061, 1068, 1071, 1076, 1084, 1089, 1094, 1097, 1099, 1111, 1114, 1118, 1121, 1125, 1128, 1132, 1135, 1138, 1142, 1145, 1149, 1155, 1159, 1164, 1170, 1177, 1184, 1187, 1191, 1196, 1202, 1211, 1216, 1220, 1224, 1235, 1253, 1260, 1264, 1268, 1272, 1277, 1280, 1283, 1286, 1289, 1295, 1299, 1309, 1313, 1317, 1323, 1328, 1331, 1334, 1336, 1340, 1347, 1351, 1354, 1359, 1363, 1366, 1370, 1373, 1377, 1390, 1393, 1397, 1400, 1404, 1407, 1411, 1414, 1418, 1421, 1424, 1428, 1431, 1435, 1441, 1444, 1448, 1460, 1466, 1477, 1482, 1490, 1494, 1499, 1502, 1507, 1517, 1522, 1527, 1533, 1538, 1542, 1544, 1547, 1551, 1555, 1558, 1562, 1566, 1570, 1576, 1579, 1586, 1591, 1597, 1604, 1610, 1618, 1621, 1628, 1631, 1633, 1639, 1645, 1662, 1669, 1676, 1688, 1693, 1696, 1699, 1712, 1725, 1730, 1746, 1754, 1764, 1767, 1773, 1778, 1781, 1787, 1791, 1796, 1802, 1806, 1810, 1813, 1816, 1822, 1826, 1831, 1842, 1845, 1852, 1855, 1859, 1865, 1877, 1880, 1885, 1898, 1905, 1911, 1916, 1920, 1923, 1931, 1939, 1941, 1951, 1955, 1958, 1962, 1967, 1972, 1977, 1981, 1985, 1989, 1993, 1997, 2001, 2006, 2011, 2016, 2022, 2027, 2032, 2037, 2042, 2047, 2053, 2058, 2063, 2068, 2073, 2078, 2083, 2088, 2095, 2100, 2105, 2110, 2114, 2119, 2127, 2132, 2138, 2150, 2157, 2159, 2167, 2172, 2175, 2183, 2189, 2193, 2206, 2218, 2220, 2223, 2231, 2237, 2243, 2256, 2263, 2272, 2277, 2288, 2297, 2302, 2314, 2321, 2330, 2335, 2347, 2354, 2363, 2368, 2375, 2384, 2389, 2391, 2396, 2404, 2413, 2417, 2420, 2424, 2429, 2435, 2441, 2446, 2451, 2456, 2461, 2464, 2469, 2474, 2484, 2488, 2495, 2500, 2503, 2508, 2511, 2515, 2519, 2527, 2546, 2549, 2552, 2556, 2566, 2579, 2592, 2595, 2601, 2604, 2608, 2617, 2620, 2623, 2628, 2632, 2635, 2639, 2643, 2646, 2650, 2653, 2657, 2660, 2666, 2669, 2674, 2682, 2688, 2692, 2696, 2701, 2706, 2713, 2717, 2728, 2736, 2739, 2745, 2751, 2754, 2760, 2766, 2768, 2773, 2779, 2785, 2787, 2791, 2794, 2797, 2803, 2809, 2811, 2816, 2823, 2832, 2835, 2839, 2844, 2854, 2863, 2871, 2874, 2882, 2885, 2892, 2897, 2905, 2921, 2926, 2933, 2952, 2958, 2968, 2980, 2987, 2994, 3009, 3022, 3028, 3034, 3040, 3046, 3052, 3058, 3063, 3070, 3077, 3084, 3089, 3092, 3094, 3103, 3110, 3117, 3124, 3133, 3139, 3143, 3147, 3151, 3157, 3160, 3165, 3172, 3179, 3183, 3188, 3198, 3206, 3212, 3221, 3230, 3239, 3242, 3246, 3255, 3259, 3262, 3265, 3271, 3274, 3277, 3281, 3284, 3287, 3290, 3301, 3304, 3309, 3315, 3320, 3325, 3328, 3332, 3337, 3340, 3345, 3355, 3360, 3366, 3368, 3374, 3376, 3382, 3390, 3395, 3403, 3406, 3411, 3414, 3419, 3427, 3433, 3437, 3439, 3445, 3453, 3458, 3466, 3469, 3474, 3477, 3481, 3484, 3487, 3491, 3494, 3502, 3508, 3512, 3518, 3523, 3527, 3529, 3535, 3539, 3542, 3545, 3548, 3554, 3559, 3562, 3565, 3568, 3571, 3573, 3576, 3580, 3583, 3586, 3594, 3600, 3603, 3605, 3614, 3619, 3626, 3629, 3632, 3636, 3640, 3646, 3650, 3657, 3661, 3664, 3667, 3672, 3679, 3689, 3698, 3707, 3717, 3720, 3724, 3730, 3734, 3737, 3740, 3745, 3748, 3755, 3759, 3762, 3766, 3770, 3773, 3776, 3781, 3787, 3791, 3801, 3807, 3811, 3817, 3821, 3827, 3830, 3842, 3846, 3850, 3858, 3862, 3876, 3881, 3884, 3888, 3891, 3899, 3904, 3907, 3910, 3914, 3917, 3926, 3931, 3940, 3945, 3952, 3959, 3967, 3973, 3981, 3984, 3987, 3994, 3997, 4000, 4004, 4008, 4014, 4021, 4031, 4035, 4044, 4047, 4051, 4057, 4065, 4070, 4074, 4080, 4086, 4089, 4091, 4095, 4104, 4114, 4120, 4125, 4129, 4132, 4135, 4138, 4141, 4144, 4147, 4151, 4155, 4163, 4167, 4170, 4172, 4185, 4188, 4195, 4205, 4208, 4213, 4215, 4219, 4227, 4233, 4242, 4255, 4259, 4265, 4271, 4274, 4278, 4281, 4283, 4295, 4299, 4307, 4319, 4325, 4327, 4333, 4335, 4337, 4343, 4351, 4359, 4363, 4367, 4376, 4381, 4401, 4406, 4412, 4419, 4424, 4433, 4436, 4440, 4444, 4448, 4451, 4454, 4457, 4461, 4465, 4468, 4471, 4474, 4481, 4485, 4500, 4513, 4521, 4531, 4535, 4538, 4544, 4547, 4550, 4559, 4568, 4578, 4582, 4592, 4596, 4607, 4611, 4620, 4629, 4632, 4636, 4641, 4645, 4654, 4657, 4660, 4667, 4673, 4679, 4705, 4708, 4711, 4730, 4732, 4755, 4758, 4761, 4780, 4782, 4796, 4809, 4846, 4851, 4886, 4900, 4907, 4911, 4917, 4925, 4927, 4938, 4948, 4955, 4961, 4969, 4974, 4982, 4990, 4998, 5006, 5012, 5017, 5022, 5027, 5033, 5035, 5046, 5051, 5058, 5060, 5074, 5080, 5085, 5090, 5096, 5103, 5111, 5119, 5124, 5130, 5133, 5141, 5148, 5157, 5160, 5177, 5185, 5193, 5197, 5204, 5210, 5218, 5223, 5230, 5238, 5245, 5250, 5253, 5255, 5261, 5263, 5267, 5269, 5274, 5281, 5286, 5290, 5295, 5299, 5305, 5311, 5316, 5319, 5321, 5327, 5329, 5333, 5335, 5340, 5345, 5352, 5361, 5366, 5375, 5379, 5385, 5390, 5393, 5395, 5401, 5403, 5406, 5413, 5415, 5420, 5427, 5436, 5442, 5444, 5451, 5454, 5466, 5472, 5480, 5483, 5487, 5490, 5494, 5496, 5507, 5510, 5514, 5517, 5520, 5527, 5539, 5542, 5549, 5555, 5565, 5570, 5577, 5582, 5588, 5592, 5596, 5604, 5608, 5612, 5618, 5620, 5632, 5637, 5643, 5649, 5653, 5658, 5660, 5684, 5688, 5691, 5700, 5704, 5713, 5717, 5721, 5727, 5729, 5738, 5748, 5775, 5779, 5784, 5791, 5794, 5800, 5810, 5820, 5830, 5836, 5845, 5851, 5858, 5860, 5868, 5874, 5878, 5895, 5905, 5909, 5913, 5923, 5928, 6000, 6018, 6026, 6032, 6044, 6048, 6059, 6063, 6072, 6080, 6087, 6091, 6098, 6103, 6106, 6109, 6120, 6129, 6138, 6141, 6155, 6173, 6186, 6189, 6193, 6196, 6198, 6205, 6212, 6216, 6223, 6230, 6233, 6249, 6252, 6262, 6266, 6272, 6275, 6278, 6283, 6287, 6290, 6297, 6300, 6306, 6342, 6345, 6357, 6360, 6376, 6378, 6382, 6389, 6393, 6400, 6403, 6412, 6415, 6420, 6426, 6428, 6434, 6438, 6444, 6447, 6450, 6463, 6466, 6472, 6475, 6483, 6491, 6497, 6500, 6504, 6518, 6530, 6538, 6542, 6549, 6556, 6561, 6574, 6583, 6591, 6596, 6599, 6604, 6607, 6619, 6624, 6637, 6639, 6644, 6648, 6651, 6653, 6660, 6667, 6670, 6673, 6679, 6683, 6689, 6697, 6706, 6719, 6724, 6732, 6735, 6740, 6745, 6753, 6756, 6764, 6768, 6775, 6781, 6784, 6788, 6801, 6807, 6819, 6822, 6831, 6836, 6857, 6873, 6883, 6888, 6893, 6895, 6898, 6902, 6904, 6911, 6917, 6919, 6922, 6926, 6929, 6942, 6952, 6955, 6958, 6971, 6977, 6980, 6988, 6995, 7015, 7022, 7024, 7031, 7033, 7037, 7044, 7050, 7061, 7067, 7073, 7076, 7080, 7085, 7088, 7092, 7096, 7098, 7103, 7108, 7121, 7124, 7128, 7131, 7134, 7139, 7144, 7150, 7153, 7158, 7161, 7166, 7169, 7173, 7178, 7183, 7188, 7193, 7196, 7201, 7206, 7211, 7217, 7222, 7227, 7232, 7236, 7239, 7244, 7248, 7252, 7260, 7267, 7271, 7276, 7281, 7285, 7287, 7290, 7306, 7316, 7326, 7335, 7344, 7351, 7358, 7366, 7374, 7386, 7393, 7403, 7408, 7411, 7416, 7419, 7441, 7450, 7453, 7458, 7491, 7495, 7504, 7508, 7517, 7525, 7530, 7538, 7543, 7548, 7550, 7559, 7564, 7572, 7577, 7585, 7593, 7596, 7606, 7624, 7627, 7630, 7634, 7647, 7655, 7659, 7664, 7669, 7675, 7680, 7684, 7689, 7694, 7699, 7709, 7712, 7716, 7720, 7727, 7731, 7760, 7768, 7771, 7774, 7777, 7780, 7791, 7805, 7814, 7841, 7853, 7859, 7867, 7872, 7880, 7888, 7901, 7907, 7913, 7928, 7932, 7938, 7947, 7949, 7970, 7982, 8000, 8017, 8019, 8032, 8041, 8050, 8059, 8068] \ No newline at end of file diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index e298265c3..d37c037a9 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -1046,291 +1046,296 @@ export class MySqlParser extends SQLParserBase { public static readonly RULE_tableSources = 131; public static readonly RULE_tableSource = 132; public static readonly RULE_tableSourceItem = 133; - public static readonly RULE_fullColumnNames = 134; - public static readonly RULE_indexHint = 135; - public static readonly RULE_indexHintType = 136; - public static readonly RULE_joinPart = 137; - public static readonly RULE_joinSpec = 138; - public static readonly RULE_queryExpression = 139; - public static readonly RULE_querySpecification = 140; - public static readonly RULE_unionStatement = 141; - public static readonly RULE_lateralStatement = 142; - public static readonly RULE_jsonTable = 143; - public static readonly RULE_jsonColumnList = 144; - public static readonly RULE_jsonColumn = 145; - public static readonly RULE_jsonOnEmpty = 146; - public static readonly RULE_jsonOnError = 147; - public static readonly RULE_selectSpec = 148; - public static readonly RULE_selectElements = 149; - public static readonly RULE_selectElement = 150; - public static readonly RULE_intoClause = 151; - public static readonly RULE_selectFieldsInto = 152; - public static readonly RULE_selectLinesInto = 153; - public static readonly RULE_fromClause = 154; - public static readonly RULE_groupByClause = 155; - public static readonly RULE_havingClause = 156; - public static readonly RULE_windowClause = 157; - public static readonly RULE_groupByItem = 158; - public static readonly RULE_limitClause = 159; - public static readonly RULE_limitClauseAtom = 160; - public static readonly RULE_startTransaction = 161; - public static readonly RULE_beginWork = 162; - public static readonly RULE_commitWork = 163; - public static readonly RULE_rollbackWork = 164; - public static readonly RULE_savepointStatement = 165; - public static readonly RULE_rollbackStatement = 166; - public static readonly RULE_releaseStatement = 167; - public static readonly RULE_lockTables = 168; - public static readonly RULE_unlockTables = 169; - public static readonly RULE_setAutocommitStatement = 170; - public static readonly RULE_setTransactionStatement = 171; - public static readonly RULE_transactionMode = 172; - public static readonly RULE_lockTableElement = 173; - public static readonly RULE_lockAction = 174; - public static readonly RULE_transactionOption = 175; - public static readonly RULE_transactionLevel = 176; - public static readonly RULE_changeMaster = 177; - public static readonly RULE_changeReplicationFilter = 178; - public static readonly RULE_changeReplicationSource = 179; - public static readonly RULE_purgeBinaryLogs = 180; - public static readonly RULE_startSlaveOrReplica = 181; - public static readonly RULE_stopSlaveOrReplica = 182; - public static readonly RULE_startGroupReplication = 183; - public static readonly RULE_stopGroupReplication = 184; - public static readonly RULE_masterOption = 185; - public static readonly RULE_stringMasterOption = 186; - public static readonly RULE_decimalMasterOption = 187; - public static readonly RULE_boolMasterOption = 188; - public static readonly RULE_v8NewMasterOption = 189; - public static readonly RULE_replicationSourceOption = 190; - public static readonly RULE_stringSourceOption = 191; - public static readonly RULE_decimalSourceOption = 192; - public static readonly RULE_boolSourceOption = 193; - public static readonly RULE_otherSourceOption = 194; - public static readonly RULE_channelOption = 195; - public static readonly RULE_replicationFilter = 196; - public static readonly RULE_tablePair = 197; - public static readonly RULE_threadType = 198; - public static readonly RULE_untilOption = 199; - public static readonly RULE_connectionOptions = 200; - public static readonly RULE_gtuidSet = 201; - public static readonly RULE_xaStartTransaction = 202; - public static readonly RULE_xaEndTransaction = 203; - public static readonly RULE_xaPrepareStatement = 204; - public static readonly RULE_xaCommitWork = 205; - public static readonly RULE_xaRollbackWork = 206; - public static readonly RULE_xaRecoverWork = 207; - public static readonly RULE_prepareStatement = 208; - public static readonly RULE_executeStatement = 209; - public static readonly RULE_deallocatePrepare = 210; - public static readonly RULE_routineBody = 211; - public static readonly RULE_blockStatement = 212; - public static readonly RULE_caseStatement = 213; - public static readonly RULE_ifStatement = 214; - public static readonly RULE_iterateStatement = 215; - public static readonly RULE_leaveStatement = 216; - public static readonly RULE_loopStatement = 217; - public static readonly RULE_repeatStatement = 218; - public static readonly RULE_returnStatement = 219; - public static readonly RULE_whileStatement = 220; - public static readonly RULE_cursorStatement = 221; - public static readonly RULE_declareVariable = 222; - public static readonly RULE_declareCondition = 223; - public static readonly RULE_declareCursor = 224; - public static readonly RULE_declareHandler = 225; - public static readonly RULE_handlerConditionValue = 226; - public static readonly RULE_procedureSqlStatement = 227; - public static readonly RULE_caseAlternative = 228; - public static readonly RULE_elifAlternative = 229; - public static readonly RULE_alterUser = 230; - public static readonly RULE_createUser = 231; - public static readonly RULE_dropUser = 232; - public static readonly RULE_grantStatement = 233; - public static readonly RULE_roleOption = 234; - public static readonly RULE_grantProxy = 235; - public static readonly RULE_alterResourceGroup = 236; - public static readonly RULE_createResourceGroup = 237; - public static readonly RULE_dropResourceGroup = 238; - public static readonly RULE_setResourceGroup = 239; - public static readonly RULE_resourceGroupVcpuSpec = 240; - public static readonly RULE_renameUser = 241; - public static readonly RULE_revokeStatement = 242; - public static readonly RULE_ignoreUnknownUser = 243; - public static readonly RULE_privilegeObjectType = 244; - public static readonly RULE_setPasswordStatement = 245; - public static readonly RULE_userSpecification = 246; - public static readonly RULE_alterUserAuthOption = 247; - public static readonly RULE_createUserAuthOption = 248; - public static readonly RULE_createUserInitialAuthOption = 249; - public static readonly RULE_userAuthOption = 250; - public static readonly RULE_authOptionClause = 251; - public static readonly RULE_authenticationRule = 252; - public static readonly RULE_tlsOption = 253; - public static readonly RULE_userResourceOption = 254; - public static readonly RULE_userPasswordOption = 255; - public static readonly RULE_userLockOption = 256; - public static readonly RULE_factorAuthOption = 257; - public static readonly RULE_registrationOption = 258; - public static readonly RULE_factor = 259; - public static readonly RULE_privelegeClause = 260; - public static readonly RULE_privilege = 261; - public static readonly RULE_privilegeLevel = 262; - public static readonly RULE_renameUserClause = 263; - public static readonly RULE_analyzeTable = 264; - public static readonly RULE_checkTable = 265; - public static readonly RULE_checksumTable = 266; - public static readonly RULE_optimizeTable = 267; - public static readonly RULE_repairTable = 268; - public static readonly RULE_tableActionOption = 269; - public static readonly RULE_checkTableOption = 270; - public static readonly RULE_installComponent = 271; - public static readonly RULE_variableExpr = 272; - public static readonly RULE_uninstallComponent = 273; - public static readonly RULE_installPlugin = 274; - public static readonly RULE_uninstallPlugin = 275; - public static readonly RULE_cloneStatement = 276; - public static readonly RULE_setStatement = 277; - public static readonly RULE_showStatement = 278; - public static readonly RULE_variableClause = 279; - public static readonly RULE_showCommonEntity = 280; - public static readonly RULE_showFilter = 281; - public static readonly RULE_showGlobalInfoClause = 282; - public static readonly RULE_showSchemaEntity = 283; - public static readonly RULE_showProfileType = 284; - public static readonly RULE_binlogStatement = 285; - public static readonly RULE_cacheIndexStatement = 286; - public static readonly RULE_flushStatement = 287; - public static readonly RULE_killStatement = 288; - public static readonly RULE_loadIndexIntoCache = 289; - public static readonly RULE_resetStatement = 290; - public static readonly RULE_resetOption = 291; - public static readonly RULE_resetPersist = 292; - public static readonly RULE_resetAllChannel = 293; - public static readonly RULE_reStartStatement = 294; - public static readonly RULE_shutdownStatement = 295; - public static readonly RULE_tableIndex = 296; - public static readonly RULE_flushOption = 297; - public static readonly RULE_flushTableOption = 298; - public static readonly RULE_loadedTableIndexes = 299; - public static readonly RULE_simpleDescribeStatement = 300; - public static readonly RULE_fullDescribeStatement = 301; - public static readonly RULE_analyzeDescribeStatement = 302; - public static readonly RULE_helpStatement = 303; - public static readonly RULE_useStatement = 304; - public static readonly RULE_signalStatement = 305; - public static readonly RULE_resignalStatement = 306; - public static readonly RULE_signalConditionInformation = 307; - public static readonly RULE_withStatement = 308; - public static readonly RULE_tableStatement = 309; - public static readonly RULE_diagnosticsStatement = 310; - public static readonly RULE_diagnosticsConditionInformationName = 311; - public static readonly RULE_describeObjectClause = 312; - public static readonly RULE_databaseNameCreate = 313; - public static readonly RULE_databaseName = 314; - public static readonly RULE_functionNameCreate = 315; - public static readonly RULE_functionName = 316; - public static readonly RULE_viewNameCreate = 317; - public static readonly RULE_viewName = 318; - public static readonly RULE_indexNameCreate = 319; - public static readonly RULE_indexNames = 320; - public static readonly RULE_indexName = 321; - public static readonly RULE_groupNameCreate = 322; - public static readonly RULE_groupName = 323; - public static readonly RULE_tableNameCreate = 324; - public static readonly RULE_tableNames = 325; - public static readonly RULE_tableName = 326; - public static readonly RULE_userOrRoleNames = 327; - public static readonly RULE_userOrRoleName = 328; - public static readonly RULE_columnNameCreate = 329; - public static readonly RULE_columnNames = 330; - public static readonly RULE_columnName = 331; - public static readonly RULE_tablespaceNameCreate = 332; - public static readonly RULE_tablespaceName = 333; - public static readonly RULE_partitionNameCreate = 334; - public static readonly RULE_partitionNames = 335; - public static readonly RULE_partitionName = 336; - public static readonly RULE_indexColumnName = 337; - public static readonly RULE_userHostPort = 338; - public static readonly RULE_userAtHost = 339; - public static readonly RULE_simpleUserName = 340; - public static readonly RULE_hostName = 341; - public static readonly RULE_userName = 342; - public static readonly RULE_mysqlVariable = 343; - public static readonly RULE_charsetName = 344; - public static readonly RULE_collationName = 345; - public static readonly RULE_engineName = 346; - public static readonly RULE_engineNameBase = 347; - public static readonly RULE_uuidSet = 348; - public static readonly RULE_xid = 349; - public static readonly RULE_xuidStringId = 350; - public static readonly RULE_fullId = 351; - public static readonly RULE_uidList = 352; - public static readonly RULE_uid = 353; - public static readonly RULE_simpleId = 354; - public static readonly RULE_dottedId = 355; - public static readonly RULE_decimalLiteral = 356; - public static readonly RULE_fileSizeLiteral = 357; - public static readonly RULE_stringLiteral = 358; - public static readonly RULE_booleanLiteral = 359; - public static readonly RULE_hexadecimalLiteral = 360; - public static readonly RULE_nullNotnull = 361; - public static readonly RULE_constant = 362; - public static readonly RULE_dataType = 363; - public static readonly RULE_collectionOptions = 364; - public static readonly RULE_convertedDataType = 365; - public static readonly RULE_lengthOneDimension = 366; - public static readonly RULE_lengthTwoDimension = 367; - public static readonly RULE_lengthTwoOptionalDimension = 368; - public static readonly RULE_indexColumnNames = 369; - public static readonly RULE_expressions = 370; - public static readonly RULE_valuesOrValueList = 371; - public static readonly RULE_expressionsWithDefaults = 372; - public static readonly RULE_expressionOrDefault = 373; - public static readonly RULE_constants = 374; - public static readonly RULE_simpleStrings = 375; - public static readonly RULE_userVariables = 376; - public static readonly RULE_defaultValue = 377; - public static readonly RULE_currentTimestamp = 378; - public static readonly RULE_ifExists = 379; - public static readonly RULE_ifNotExists = 380; - public static readonly RULE_orReplace = 381; - public static readonly RULE_functionCall = 382; - public static readonly RULE_specificFunction = 383; - public static readonly RULE_caseFuncAlternative = 384; - public static readonly RULE_levelsInWeightString = 385; - public static readonly RULE_levelInWeightListElement = 386; - public static readonly RULE_aggregateWindowedFunction = 387; - public static readonly RULE_nonAggregateWindowedFunction = 388; - public static readonly RULE_overClause = 389; - public static readonly RULE_windowSpec = 390; - public static readonly RULE_windowName = 391; - public static readonly RULE_frameClause = 392; - public static readonly RULE_frameUnits = 393; - public static readonly RULE_frameExtent = 394; - public static readonly RULE_frameBetween = 395; - public static readonly RULE_frameRange = 396; - public static readonly RULE_partitionClause = 397; - public static readonly RULE_scalarFunctionName = 398; - public static readonly RULE_passwordFunctionClause = 399; - public static readonly RULE_functionArgs = 400; - public static readonly RULE_functionArg = 401; - public static readonly RULE_expression = 402; - public static readonly RULE_predicate = 403; - public static readonly RULE_expressionAtom = 404; - public static readonly RULE_unaryOperator = 405; - public static readonly RULE_comparisonOperator = 406; - public static readonly RULE_comparisonBase = 407; - public static readonly RULE_logicalOperator = 408; - public static readonly RULE_bitOperator = 409; - public static readonly RULE_mathOperator = 410; - public static readonly RULE_jsonOperator = 411; - public static readonly RULE_charsetNameBase = 412; - public static readonly RULE_transactionLevelBase = 413; - public static readonly RULE_privilegesBase = 414; - public static readonly RULE_intervalTypeBase = 415; - public static readonly RULE_dataTypeBase = 416; - public static readonly RULE_keywordsCanBeId = 417; - public static readonly RULE_functionNameBase = 418; + public static readonly RULE_atomSubQueryTableSource = 134; + public static readonly RULE_fullColumnNames = 135; + public static readonly RULE_indexHint = 136; + public static readonly RULE_indexHintType = 137; + public static readonly RULE_joinPart = 138; + public static readonly RULE_joinSpec = 139; + public static readonly RULE_queryExpression = 140; + public static readonly RULE_querySpecification = 141; + public static readonly RULE_unionStatement = 142; + public static readonly RULE_lateralStatement = 143; + public static readonly RULE_jsonTable = 144; + public static readonly RULE_jsonColumnList = 145; + public static readonly RULE_jsonColumn = 146; + public static readonly RULE_jsonOnEmpty = 147; + public static readonly RULE_jsonOnError = 148; + public static readonly RULE_selectSpec = 149; + public static readonly RULE_selectElements = 150; + public static readonly RULE_selectElement = 151; + public static readonly RULE_tableAllColumns = 152; + public static readonly RULE_pureAllColumns = 153; + public static readonly RULE_selectLiteralColumnName = 154; + public static readonly RULE_selectExpressionColumnName = 155; + public static readonly RULE_intoClause = 156; + public static readonly RULE_selectFieldsInto = 157; + public static readonly RULE_selectLinesInto = 158; + public static readonly RULE_fromClause = 159; + public static readonly RULE_groupByClause = 160; + public static readonly RULE_havingClause = 161; + public static readonly RULE_windowClause = 162; + public static readonly RULE_groupByItem = 163; + public static readonly RULE_limitClause = 164; + public static readonly RULE_limitClauseAtom = 165; + public static readonly RULE_startTransaction = 166; + public static readonly RULE_beginWork = 167; + public static readonly RULE_commitWork = 168; + public static readonly RULE_rollbackWork = 169; + public static readonly RULE_savepointStatement = 170; + public static readonly RULE_rollbackStatement = 171; + public static readonly RULE_releaseStatement = 172; + public static readonly RULE_lockTables = 173; + public static readonly RULE_unlockTables = 174; + public static readonly RULE_setAutocommitStatement = 175; + public static readonly RULE_setTransactionStatement = 176; + public static readonly RULE_transactionMode = 177; + public static readonly RULE_lockTableElement = 178; + public static readonly RULE_lockAction = 179; + public static readonly RULE_transactionOption = 180; + public static readonly RULE_transactionLevel = 181; + public static readonly RULE_changeMaster = 182; + public static readonly RULE_changeReplicationFilter = 183; + public static readonly RULE_changeReplicationSource = 184; + public static readonly RULE_purgeBinaryLogs = 185; + public static readonly RULE_startSlaveOrReplica = 186; + public static readonly RULE_stopSlaveOrReplica = 187; + public static readonly RULE_startGroupReplication = 188; + public static readonly RULE_stopGroupReplication = 189; + public static readonly RULE_masterOption = 190; + public static readonly RULE_stringMasterOption = 191; + public static readonly RULE_decimalMasterOption = 192; + public static readonly RULE_boolMasterOption = 193; + public static readonly RULE_v8NewMasterOption = 194; + public static readonly RULE_replicationSourceOption = 195; + public static readonly RULE_stringSourceOption = 196; + public static readonly RULE_decimalSourceOption = 197; + public static readonly RULE_boolSourceOption = 198; + public static readonly RULE_otherSourceOption = 199; + public static readonly RULE_channelOption = 200; + public static readonly RULE_replicationFilter = 201; + public static readonly RULE_tablePair = 202; + public static readonly RULE_threadType = 203; + public static readonly RULE_untilOption = 204; + public static readonly RULE_connectionOptions = 205; + public static readonly RULE_gtuidSet = 206; + public static readonly RULE_xaStartTransaction = 207; + public static readonly RULE_xaEndTransaction = 208; + public static readonly RULE_xaPrepareStatement = 209; + public static readonly RULE_xaCommitWork = 210; + public static readonly RULE_xaRollbackWork = 211; + public static readonly RULE_xaRecoverWork = 212; + public static readonly RULE_prepareStatement = 213; + public static readonly RULE_executeStatement = 214; + public static readonly RULE_deallocatePrepare = 215; + public static readonly RULE_routineBody = 216; + public static readonly RULE_blockStatement = 217; + public static readonly RULE_caseStatement = 218; + public static readonly RULE_ifStatement = 219; + public static readonly RULE_iterateStatement = 220; + public static readonly RULE_leaveStatement = 221; + public static readonly RULE_loopStatement = 222; + public static readonly RULE_repeatStatement = 223; + public static readonly RULE_returnStatement = 224; + public static readonly RULE_whileStatement = 225; + public static readonly RULE_cursorStatement = 226; + public static readonly RULE_declareVariable = 227; + public static readonly RULE_declareCondition = 228; + public static readonly RULE_declareCursor = 229; + public static readonly RULE_declareHandler = 230; + public static readonly RULE_handlerConditionValue = 231; + public static readonly RULE_procedureSqlStatement = 232; + public static readonly RULE_caseAlternative = 233; + public static readonly RULE_elifAlternative = 234; + public static readonly RULE_alterUser = 235; + public static readonly RULE_createUser = 236; + public static readonly RULE_dropUser = 237; + public static readonly RULE_grantStatement = 238; + public static readonly RULE_roleOption = 239; + public static readonly RULE_grantProxy = 240; + public static readonly RULE_alterResourceGroup = 241; + public static readonly RULE_createResourceGroup = 242; + public static readonly RULE_dropResourceGroup = 243; + public static readonly RULE_setResourceGroup = 244; + public static readonly RULE_resourceGroupVcpuSpec = 245; + public static readonly RULE_renameUser = 246; + public static readonly RULE_revokeStatement = 247; + public static readonly RULE_ignoreUnknownUser = 248; + public static readonly RULE_privilegeObjectType = 249; + public static readonly RULE_setPasswordStatement = 250; + public static readonly RULE_userSpecification = 251; + public static readonly RULE_alterUserAuthOption = 252; + public static readonly RULE_createUserAuthOption = 253; + public static readonly RULE_createUserInitialAuthOption = 254; + public static readonly RULE_userAuthOption = 255; + public static readonly RULE_authOptionClause = 256; + public static readonly RULE_authenticationRule = 257; + public static readonly RULE_tlsOption = 258; + public static readonly RULE_userResourceOption = 259; + public static readonly RULE_userPasswordOption = 260; + public static readonly RULE_userLockOption = 261; + public static readonly RULE_factorAuthOption = 262; + public static readonly RULE_registrationOption = 263; + public static readonly RULE_factor = 264; + public static readonly RULE_privelegeClause = 265; + public static readonly RULE_privilege = 266; + public static readonly RULE_privilegeLevel = 267; + public static readonly RULE_renameUserClause = 268; + public static readonly RULE_analyzeTable = 269; + public static readonly RULE_checkTable = 270; + public static readonly RULE_checksumTable = 271; + public static readonly RULE_optimizeTable = 272; + public static readonly RULE_repairTable = 273; + public static readonly RULE_tableActionOption = 274; + public static readonly RULE_checkTableOption = 275; + public static readonly RULE_installComponent = 276; + public static readonly RULE_variableExpr = 277; + public static readonly RULE_uninstallComponent = 278; + public static readonly RULE_installPlugin = 279; + public static readonly RULE_uninstallPlugin = 280; + public static readonly RULE_cloneStatement = 281; + public static readonly RULE_setStatement = 282; + public static readonly RULE_showStatement = 283; + public static readonly RULE_variableClause = 284; + public static readonly RULE_showCommonEntity = 285; + public static readonly RULE_showFilter = 286; + public static readonly RULE_showGlobalInfoClause = 287; + public static readonly RULE_showSchemaEntity = 288; + public static readonly RULE_showProfileType = 289; + public static readonly RULE_binlogStatement = 290; + public static readonly RULE_cacheIndexStatement = 291; + public static readonly RULE_flushStatement = 292; + public static readonly RULE_killStatement = 293; + public static readonly RULE_loadIndexIntoCache = 294; + public static readonly RULE_resetStatement = 295; + public static readonly RULE_resetOption = 296; + public static readonly RULE_resetPersist = 297; + public static readonly RULE_resetAllChannel = 298; + public static readonly RULE_reStartStatement = 299; + public static readonly RULE_shutdownStatement = 300; + public static readonly RULE_tableIndex = 301; + public static readonly RULE_flushOption = 302; + public static readonly RULE_flushTableOption = 303; + public static readonly RULE_loadedTableIndexes = 304; + public static readonly RULE_simpleDescribeStatement = 305; + public static readonly RULE_fullDescribeStatement = 306; + public static readonly RULE_analyzeDescribeStatement = 307; + public static readonly RULE_helpStatement = 308; + public static readonly RULE_useStatement = 309; + public static readonly RULE_signalStatement = 310; + public static readonly RULE_resignalStatement = 311; + public static readonly RULE_signalConditionInformation = 312; + public static readonly RULE_withStatement = 313; + public static readonly RULE_tableStatement = 314; + public static readonly RULE_diagnosticsStatement = 315; + public static readonly RULE_diagnosticsConditionInformationName = 316; + public static readonly RULE_describeObjectClause = 317; + public static readonly RULE_databaseNameCreate = 318; + public static readonly RULE_databaseName = 319; + public static readonly RULE_functionNameCreate = 320; + public static readonly RULE_functionName = 321; + public static readonly RULE_viewNameCreate = 322; + public static readonly RULE_viewName = 323; + public static readonly RULE_indexNameCreate = 324; + public static readonly RULE_indexNames = 325; + public static readonly RULE_indexName = 326; + public static readonly RULE_groupNameCreate = 327; + public static readonly RULE_groupName = 328; + public static readonly RULE_tableNameCreate = 329; + public static readonly RULE_tableNames = 330; + public static readonly RULE_tableName = 331; + public static readonly RULE_userOrRoleNames = 332; + public static readonly RULE_userOrRoleName = 333; + public static readonly RULE_columnNameCreate = 334; + public static readonly RULE_columnNames = 335; + public static readonly RULE_columnName = 336; + public static readonly RULE_tablespaceNameCreate = 337; + public static readonly RULE_tablespaceName = 338; + public static readonly RULE_partitionNameCreate = 339; + public static readonly RULE_partitionNames = 340; + public static readonly RULE_partitionName = 341; + public static readonly RULE_indexColumnName = 342; + public static readonly RULE_userHostPort = 343; + public static readonly RULE_userAtHost = 344; + public static readonly RULE_simpleUserName = 345; + public static readonly RULE_hostName = 346; + public static readonly RULE_userName = 347; + public static readonly RULE_mysqlVariable = 348; + public static readonly RULE_charsetName = 349; + public static readonly RULE_collationName = 350; + public static readonly RULE_engineName = 351; + public static readonly RULE_engineNameBase = 352; + public static readonly RULE_uuidSet = 353; + public static readonly RULE_xid = 354; + public static readonly RULE_xuidStringId = 355; + public static readonly RULE_fullId = 356; + public static readonly RULE_uidList = 357; + public static readonly RULE_uid = 358; + public static readonly RULE_simpleId = 359; + public static readonly RULE_dottedId = 360; + public static readonly RULE_decimalLiteral = 361; + public static readonly RULE_fileSizeLiteral = 362; + public static readonly RULE_stringLiteral = 363; + public static readonly RULE_booleanLiteral = 364; + public static readonly RULE_hexadecimalLiteral = 365; + public static readonly RULE_nullNotnull = 366; + public static readonly RULE_constant = 367; + public static readonly RULE_dataType = 368; + public static readonly RULE_collectionOptions = 369; + public static readonly RULE_convertedDataType = 370; + public static readonly RULE_lengthOneDimension = 371; + public static readonly RULE_lengthTwoDimension = 372; + public static readonly RULE_lengthTwoOptionalDimension = 373; + public static readonly RULE_indexColumnNames = 374; + public static readonly RULE_expressions = 375; + public static readonly RULE_valuesOrValueList = 376; + public static readonly RULE_expressionsWithDefaults = 377; + public static readonly RULE_expressionOrDefault = 378; + public static readonly RULE_constants = 379; + public static readonly RULE_simpleStrings = 380; + public static readonly RULE_userVariables = 381; + public static readonly RULE_defaultValue = 382; + public static readonly RULE_currentTimestamp = 383; + public static readonly RULE_ifExists = 384; + public static readonly RULE_ifNotExists = 385; + public static readonly RULE_orReplace = 386; + public static readonly RULE_functionCall = 387; + public static readonly RULE_specificFunction = 388; + public static readonly RULE_caseFuncAlternative = 389; + public static readonly RULE_levelsInWeightString = 390; + public static readonly RULE_levelInWeightListElement = 391; + public static readonly RULE_aggregateWindowedFunction = 392; + public static readonly RULE_nonAggregateWindowedFunction = 393; + public static readonly RULE_overClause = 394; + public static readonly RULE_windowSpec = 395; + public static readonly RULE_windowName = 396; + public static readonly RULE_frameClause = 397; + public static readonly RULE_frameUnits = 398; + public static readonly RULE_frameExtent = 399; + public static readonly RULE_frameBetween = 400; + public static readonly RULE_frameRange = 401; + public static readonly RULE_partitionClause = 402; + public static readonly RULE_scalarFunctionName = 403; + public static readonly RULE_passwordFunctionClause = 404; + public static readonly RULE_functionArgs = 405; + public static readonly RULE_functionArg = 406; + public static readonly RULE_expression = 407; + public static readonly RULE_predicate = 408; + public static readonly RULE_expressionAtom = 409; + public static readonly RULE_unaryOperator = 410; + public static readonly RULE_comparisonOperator = 411; + public static readonly RULE_comparisonBase = 412; + public static readonly RULE_logicalOperator = 413; + public static readonly RULE_bitOperator = 414; + public static readonly RULE_mathOperator = 415; + public static readonly RULE_jsonOperator = 416; + public static readonly RULE_charsetNameBase = 417; + public static readonly RULE_transactionLevelBase = 418; + public static readonly RULE_privilegesBase = 419; + public static readonly RULE_intervalTypeBase = 420; + public static readonly RULE_dataTypeBase = 421; + public static readonly RULE_keywordsCanBeId = 422; + public static readonly RULE_functionNameBase = 423; public static readonly literalNames = [ null, null, null, null, null, "'ACTIVE'", "'ADD'", "'ALL'", "'ALTER'", @@ -1745,25 +1750,26 @@ export class MySqlParser extends SQLParserBase { "handlerOpenStatement", "handlerReadIndexStatement", "handlerReadStatement", "handlerCloseStatement", "importTableStatement", "singleUpdateStatement", "multipleUpdateStatement", "orderByClause", "orderByExpression", - "tableSources", "tableSource", "tableSourceItem", "fullColumnNames", - "indexHint", "indexHintType", "joinPart", "joinSpec", "queryExpression", - "querySpecification", "unionStatement", "lateralStatement", "jsonTable", - "jsonColumnList", "jsonColumn", "jsonOnEmpty", "jsonOnError", "selectSpec", - "selectElements", "selectElement", "intoClause", "selectFieldsInto", - "selectLinesInto", "fromClause", "groupByClause", "havingClause", - "windowClause", "groupByItem", "limitClause", "limitClauseAtom", - "startTransaction", "beginWork", "commitWork", "rollbackWork", "savepointStatement", - "rollbackStatement", "releaseStatement", "lockTables", "unlockTables", - "setAutocommitStatement", "setTransactionStatement", "transactionMode", - "lockTableElement", "lockAction", "transactionOption", "transactionLevel", - "changeMaster", "changeReplicationFilter", "changeReplicationSource", - "purgeBinaryLogs", "startSlaveOrReplica", "stopSlaveOrReplica", - "startGroupReplication", "stopGroupReplication", "masterOption", - "stringMasterOption", "decimalMasterOption", "boolMasterOption", - "v8NewMasterOption", "replicationSourceOption", "stringSourceOption", - "decimalSourceOption", "boolSourceOption", "otherSourceOption", - "channelOption", "replicationFilter", "tablePair", "threadType", - "untilOption", "connectionOptions", "gtuidSet", "xaStartTransaction", + "tableSources", "tableSource", "tableSourceItem", "atomSubQueryTableSource", + "fullColumnNames", "indexHint", "indexHintType", "joinPart", "joinSpec", + "queryExpression", "querySpecification", "unionStatement", "lateralStatement", + "jsonTable", "jsonColumnList", "jsonColumn", "jsonOnEmpty", "jsonOnError", + "selectSpec", "selectElements", "selectElement", "tableAllColumns", + "pureAllColumns", "selectLiteralColumnName", "selectExpressionColumnName", + "intoClause", "selectFieldsInto", "selectLinesInto", "fromClause", + "groupByClause", "havingClause", "windowClause", "groupByItem", + "limitClause", "limitClauseAtom", "startTransaction", "beginWork", + "commitWork", "rollbackWork", "savepointStatement", "rollbackStatement", + "releaseStatement", "lockTables", "unlockTables", "setAutocommitStatement", + "setTransactionStatement", "transactionMode", "lockTableElement", + "lockAction", "transactionOption", "transactionLevel", "changeMaster", + "changeReplicationFilter", "changeReplicationSource", "purgeBinaryLogs", + "startSlaveOrReplica", "stopSlaveOrReplica", "startGroupReplication", + "stopGroupReplication", "masterOption", "stringMasterOption", "decimalMasterOption", + "boolMasterOption", "v8NewMasterOption", "replicationSourceOption", + "stringSourceOption", "decimalSourceOption", "boolSourceOption", + "otherSourceOption", "channelOption", "replicationFilter", "tablePair", + "threadType", "untilOption", "connectionOptions", "gtuidSet", "xaStartTransaction", "xaEndTransaction", "xaPrepareStatement", "xaCommitWork", "xaRollbackWork", "xaRecoverWork", "prepareStatement", "executeStatement", "deallocatePrepare", "routineBody", "blockStatement", "caseStatement", "ifStatement", @@ -1841,21 +1847,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 841; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 169870592) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 268573697) !== 0) || ((((_la - 72)) & ~0x1F) === 0 && ((1 << (_la - 72)) & 2151694339) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 536936449) !== 0) || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 442923) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 2184193) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 16781443) !== 0) || _la === 362 || _la === 371 || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 270573569) !== 0) || _la === 540 || _la === 562 || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 16643) !== 0) || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 268435521) !== 0) || _la === 673 || _la === 694 || _la === 713 || _la === 717 || _la === 749 || _la === 866 || _la === 869) { { { - this.state = 838; + this.state = 848; this.singleStatement(); } } - this.state = 843; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 844; + this.state = 854; this.match(MySqlParser.EOF); } } @@ -1877,7 +1883,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, MySqlParser.RULE_singleStatement); try { - this.state = 851; + this.state = 861; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -1943,14 +1949,14 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 846; + this.state = 856; this.sqlStatement(); - this.state = 848; + this.state = 858; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 847; + this.state = 857; this.match(MySqlParser.SEMI); } break; @@ -1960,7 +1966,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.SEMI: this.enterOuterAlt(localContext, 2); { - this.state = 850; + this.state = 860; this.emptyStatement_(); } break; @@ -1986,55 +1992,55 @@ export class MySqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, MySqlParser.RULE_sqlStatement); try { - this.state = 860; + this.state = 870; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 853; + this.state = 863; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 854; + this.state = 864; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 855; + this.state = 865; this.transactionStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 856; + this.state = 866; this.replicationStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 857; + this.state = 867; this.preparedStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 858; + this.state = 868; this.administrationStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 859; + this.state = 869; this.utilityStatement(); } break; @@ -2060,7 +2066,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 862; + this.state = 872; this.match(MySqlParser.SEMI); } } @@ -2082,286 +2088,286 @@ export class MySqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, MySqlParser.RULE_ddlStatement); try { - this.state = 904; + this.state = 914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 864; + this.state = 874; this.createDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 865; + this.state = 875; this.createEvent(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 866; + this.state = 876; this.createIndex(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 867; + this.state = 877; this.createLogfileGroup(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 868; + this.state = 878; this.createProcedure(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 869; + this.state = 879; this.createFunction(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 870; + this.state = 880; this.createFunctionLoadable(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 871; + this.state = 881; this.createServer(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 872; + this.state = 882; this.createTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 873; + this.state = 883; this.createTablespaceInnodb(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 874; + this.state = 884; this.createTablespaceNdb(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 875; + this.state = 885; this.createTrigger(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 876; + this.state = 886; this.createView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 877; + this.state = 887; this.createRole(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 878; + this.state = 888; this.alterDatabase(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 879; + this.state = 889; this.alterEvent(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 880; + this.state = 890; this.alterFunction(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 881; + this.state = 891; this.alterInstance(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 882; + this.state = 892; this.alterLogfileGroup(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 883; + this.state = 893; this.alterProcedure(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 884; + this.state = 894; this.alterServer(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 885; + this.state = 895; this.alterTable(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 886; + this.state = 896; this.alterTablespace(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 887; + this.state = 897; this.alterView(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 888; + this.state = 898; this.dropDatabase(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 889; + this.state = 899; this.dropEvent(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 890; + this.state = 900; this.dropIndex(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 891; + this.state = 901; this.dropLogfileGroup(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 892; + this.state = 902; this.dropProcedure(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 893; + this.state = 903; this.dropFunction(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 894; + this.state = 904; this.dropServer(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 895; + this.state = 905; this.dropSpatial(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 896; + this.state = 906; this.dropTable(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 897; + this.state = 907; this.dropTablespace(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 898; + this.state = 908; this.dropTrigger(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 899; + this.state = 909; this.dropView(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 900; + this.state = 910; this.dropRole(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 901; + this.state = 911; this.setRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 902; + this.state = 912; this.renameTable(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 903; + this.state = 913; this.truncateTable(); } break; @@ -2385,125 +2391,125 @@ export class MySqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, MySqlParser.RULE_dmlStatement); try { - this.state = 923; + this.state = 933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 906; + this.state = 916; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 907; + this.state = 917; this.setOperations(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 908; + this.state = 918; this.insertStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 909; + this.state = 919; this.updateStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 910; + this.state = 920; this.deleteStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 911; + this.state = 921; this.replaceStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 912; + this.state = 922; this.callStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 913; + this.state = 923; this.interSectStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 914; + this.state = 924; this.loadDataStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 915; + this.state = 925; this.loadXmlStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 916; + this.state = 926; this.parenthesizedQuery(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 917; + this.state = 927; this.doStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 918; + this.state = 928; this.handlerStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 919; + this.state = 929; this.importTableStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 920; + this.state = 930; this.valuesStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 921; + this.state = 931; this.withStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 922; + this.state = 932; this.tableStatement(); } break; @@ -2527,69 +2533,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionStatementContext(this.context, this.state); this.enterRule(localContext, 12, MySqlParser.RULE_transactionStatement); try { - this.state = 934; + this.state = 944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 925; + this.state = 935; this.startTransaction(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 926; + this.state = 936; this.beginWork(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 927; + this.state = 937; this.commitWork(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 928; + this.state = 938; this.rollbackWork(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 929; + this.state = 939; this.savepointStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 930; + this.state = 940; this.rollbackStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 931; + this.state = 941; this.releaseStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 932; + this.state = 942; this.lockTables(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 933; + this.state = 943; this.unlockTables(); } break; @@ -2613,104 +2619,104 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReplicationStatementContext(this.context, this.state); this.enterRule(localContext, 14, MySqlParser.RULE_replicationStatement); try { - this.state = 950; + this.state = 960; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 936; + this.state = 946; this.changeMaster(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 937; + this.state = 947; this.changeReplicationFilter(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 938; + this.state = 948; this.changeReplicationSource(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 939; + this.state = 949; this.purgeBinaryLogs(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 940; + this.state = 950; this.startSlaveOrReplica(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 941; + this.state = 951; this.stopSlaveOrReplica(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 942; + this.state = 952; this.startGroupReplication(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 943; + this.state = 953; this.stopGroupReplication(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 944; + this.state = 954; this.xaStartTransaction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 945; + this.state = 955; this.xaEndTransaction(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 946; + this.state = 956; this.xaPrepareStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 947; + this.state = 957; this.xaCommitWork(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 948; + this.state = 958; this.xaRollbackWork(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 949; + this.state = 959; this.xaRecoverWork(); } break; @@ -2734,20 +2740,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new PreparedStatementContext(this.context, this.state); this.enterRule(localContext, 16, MySqlParser.RULE_preparedStatement); try { - this.state = 955; + this.state = 965; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PREPARE: this.enterOuterAlt(localContext, 1); { - this.state = 952; + this.state = 962; this.prepareStatement(); } break; case MySqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 2); { - this.state = 953; + this.state = 963; this.executeStatement(); } break; @@ -2755,7 +2761,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DEALLOCATE: this.enterOuterAlt(localContext, 3); { - this.state = 954; + this.state = 964; this.deallocatePrepare(); } break; @@ -2781,76 +2787,76 @@ export class MySqlParser extends SQLParserBase { let localContext = new CompoundStatementContext(this.context, this.state); this.enterRule(localContext, 18, MySqlParser.RULE_compoundStatement); try { - this.state = 967; + this.state = 977; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 957; + this.state = 967; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 958; + this.state = 968; this.caseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 959; + this.state = 969; this.ifStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 960; + this.state = 970; this.leaveStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 961; + this.state = 971; this.loopStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 962; + this.state = 972; this.repeatStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 963; + this.state = 973; this.whileStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 964; + this.state = 974; this.iterateStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 965; + this.state = 975; this.returnStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 966; + this.state = 976; this.cursorStatement(); } break; @@ -2874,237 +2880,237 @@ export class MySqlParser extends SQLParserBase { let localContext = new AdministrationStatementContext(this.context, this.state); this.enterRule(localContext, 20, MySqlParser.RULE_administrationStatement); try { - this.state = 1002; + this.state = 1012; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 969; + this.state = 979; this.alterUser(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 970; + this.state = 980; this.createUser(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 971; + this.state = 981; this.dropUser(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 972; + this.state = 982; this.grantStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 973; + this.state = 983; this.grantProxy(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 974; + this.state = 984; this.renameUser(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 975; + this.state = 985; this.revokeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 976; + this.state = 986; this.alterResourceGroup(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 977; + this.state = 987; this.createResourceGroup(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 978; + this.state = 988; this.dropResourceGroup(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 979; + this.state = 989; this.setResourceGroup(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 980; + this.state = 990; this.analyzeTable(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 981; + this.state = 991; this.checkTable(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 982; + this.state = 992; this.checksumTable(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 983; + this.state = 993; this.optimizeTable(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 984; + this.state = 994; this.repairTable(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 985; + this.state = 995; this.installComponent(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 986; + this.state = 996; this.uninstallComponent(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 987; + this.state = 997; this.installPlugin(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 988; + this.state = 998; this.uninstallPlugin(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 989; + this.state = 999; this.cloneStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 990; + this.state = 1000; this.setStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 991; + this.state = 1001; this.showStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 992; + this.state = 1002; this.binlogStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 993; + this.state = 1003; this.cacheIndexStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 994; + this.state = 1004; this.flushStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 995; + this.state = 1005; this.killStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 996; + this.state = 1006; this.loadIndexIntoCache(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 997; + this.state = 1007; this.resetStatement(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 998; + this.state = 1008; this.resetPersist(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 999; + this.state = 1009; this.resetAllChannel(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1000; + this.state = 1010; this.reStartStatement(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1001; + this.state = 1011; this.shutdownStatement(); } break; @@ -3128,62 +3134,62 @@ export class MySqlParser extends SQLParserBase { let localContext = new UtilityStatementContext(this.context, this.state); this.enterRule(localContext, 22, MySqlParser.RULE_utilityStatement); try { - this.state = 1012; + this.state = 1022; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1004; + this.state = 1014; this.fullDescribeStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1005; + this.state = 1015; this.simpleDescribeStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1006; + this.state = 1016; this.analyzeDescribeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1007; + this.state = 1017; this.helpStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1008; + this.state = 1018; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1009; + this.state = 1019; this.signalStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1010; + this.state = 1020; this.resignalStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1011; + this.state = 1021; this.diagnosticsStatement(); } break; @@ -3210,9 +3216,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1014; + this.state = 1024; this.match(MySqlParser.KW_CREATE); - this.state = 1015; + this.state = 1025; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -3222,29 +3228,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1017; + this.state = 1027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 1016; + this.state = 1026; this.ifNotExists(); } break; } - this.state = 1019; + this.state = 1029; this.databaseNameCreate(); - this.state = 1023; + this.state = 1033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823) { { { - this.state = 1020; + this.state = 1030; this.createDatabaseOption(); } } - this.state = 1025; + this.state = 1035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3271,87 +3277,87 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1026; + this.state = 1036; this.match(MySqlParser.KW_CREATE); - this.state = 1028; + this.state = 1038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1027; + this.state = 1037; this.ownerStatement(); } } - this.state = 1030; + this.state = 1040; this.match(MySqlParser.KW_EVENT); - this.state = 1032; + this.state = 1042; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 1031; + this.state = 1041; this.ifNotExists(); } break; } - this.state = 1034; + this.state = 1044; localContext._event_name = this.fullId(); - this.state = 1035; + this.state = 1045; this.match(MySqlParser.KW_ON); - this.state = 1036; + this.state = 1046; this.match(MySqlParser.KW_SCHEDULE); - this.state = 1037; + this.state = 1047; this.scheduleExpression(); - this.state = 1044; + this.state = 1054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 1038; + this.state = 1048; this.match(MySqlParser.KW_ON); - this.state = 1039; + this.state = 1049; this.match(MySqlParser.KW_COMPLETION); - this.state = 1041; + this.state = 1051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1040; + this.state = 1050; this.match(MySqlParser.KW_NOT); } } - this.state = 1043; + this.state = 1053; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 1047; + this.state = 1057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 1046; + this.state = 1056; this.enableType(); } } - this.state = 1051; + this.state = 1061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1049; + this.state = 1059; this.match(MySqlParser.KW_COMMENT); - this.state = 1050; + this.state = 1060; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1053; + this.state = 1063; this.match(MySqlParser.KW_DO); - this.state = 1054; + this.state = 1064; this.routineBody(); } } @@ -3377,14 +3383,14 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1056; + this.state = 1066; this.match(MySqlParser.KW_CREATE); - this.state = 1058; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 514) { { - this.state = 1057; + this.state = 1067; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -3397,12 +3403,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1061; + this.state = 1071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 161 || _la === 182) { { - this.state = 1060; + this.state = 1070; localContext._indexCategory = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161 || _la === 182)) { @@ -3415,66 +3421,66 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1063; + this.state = 1073; this.match(MySqlParser.KW_INDEX); - this.state = 1064; + this.state = 1074; this.indexNameCreate(); - this.state = 1066; + this.state = 1076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1065; + this.state = 1075; this.indexType(); } } - this.state = 1068; + this.state = 1078; this.match(MySqlParser.KW_ON); - this.state = 1069; + this.state = 1079; this.tableName(); - this.state = 1070; + this.state = 1080; this.indexColumnNames(); - this.state = 1074; + this.state = 1084; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1071; + this.state = 1081; this.indexOption(); } } } - this.state = 1076; + this.state = 1086; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); } - this.state = 1089; + this.state = 1099; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1087; + this.state = 1097; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 1077; + this.state = 1087; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1079; + this.state = 1089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1078; + this.state = 1088; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1081; + this.state = 1091; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -3488,19 +3494,19 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_LOCK: { - this.state = 1082; + this.state = 1092; this.match(MySqlParser.KW_LOCK); - this.state = 1084; + this.state = 1094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1083; + this.state = 1093; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1086; + this.state = 1096; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -3517,7 +3523,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 1091; + this.state = 1101; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -3544,153 +3550,153 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1092; + this.state = 1102; this.match(MySqlParser.KW_CREATE); - this.state = 1093; + this.state = 1103; this.match(MySqlParser.KW_LOGFILE); - this.state = 1094; + this.state = 1104; this.match(MySqlParser.KW_GROUP); - this.state = 1095; + this.state = 1105; localContext._logfileGroupName = this.uid(); - this.state = 1096; + this.state = 1106; this.match(MySqlParser.KW_ADD); - this.state = 1097; + this.state = 1107; this.match(MySqlParser.KW_UNDOFILE); - this.state = 1098; + this.state = 1108; localContext._undoFile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1104; + this.state = 1114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1099; + this.state = 1109; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1101; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1100; + this.state = 1110; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1103; + this.state = 1113; localContext._initSize = this.fileSizeLiteral(); } } - this.state = 1111; + this.state = 1121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 672) { { - this.state = 1106; + this.state = 1116; this.match(MySqlParser.KW_UNDO_BUFFER_SIZE); - this.state = 1108; + this.state = 1118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1107; + this.state = 1117; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1110; + this.state = 1120; localContext._undoSize = this.fileSizeLiteral(); } } - this.state = 1118; + this.state = 1128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 553) { { - this.state = 1113; + this.state = 1123; this.match(MySqlParser.KW_REDO_BUFFER_SIZE); - this.state = 1115; + this.state = 1125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1114; + this.state = 1124; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1117; + this.state = 1127; localContext._redoSize = this.fileSizeLiteral(); } } - this.state = 1125; + this.state = 1135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1120; + this.state = 1130; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1122; + this.state = 1132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1121; + this.state = 1131; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1124; + this.state = 1134; localContext._nodegroup = this.uid(); } } - this.state = 1128; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1127; + this.state = 1137; this.match(MySqlParser.KW_WAIT); } } - this.state = 1135; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1130; + this.state = 1140; this.match(MySqlParser.KW_COMMENT); - this.state = 1132; + this.state = 1142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1131; + this.state = 1141; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1134; + this.state = 1144; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1137; + this.state = 1147; this.match(MySqlParser.KW_ENGINE); - this.state = 1139; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1138; + this.state = 1148; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1141; + this.state = 1151; this.engineName(); } } @@ -3716,79 +3722,79 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1143; + this.state = 1153; this.match(MySqlParser.KW_CREATE); - this.state = 1145; + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1144; + this.state = 1154; this.ownerStatement(); } } - this.state = 1147; + this.state = 1157; this.match(MySqlParser.KW_PROCEDURE); - this.state = 1149; + this.state = 1159; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 1148; + this.state = 1158; this.ifNotExists(); } break; } - this.state = 1151; + this.state = 1161; localContext._sp_name = this.fullId(); - this.state = 1152; + this.state = 1162; this.match(MySqlParser.LR_BRACKET); - this.state = 1154; + this.state = 1164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18880593) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100680481) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1153; + this.state = 1163; this.procedureParameter(); } } - this.state = 1160; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1156; + this.state = 1166; this.match(MySqlParser.COMMA); - this.state = 1157; + this.state = 1167; this.procedureParameter(); } } - this.state = 1162; + this.state = 1172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1163; + this.state = 1173; this.match(MySqlParser.RR_BRACKET); - this.state = 1167; + this.state = 1177; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1164; + this.state = 1174; this.routineOption(); } } } - this.state = 1169; + this.state = 1179; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); } - this.state = 1170; + this.state = 1180; this.routineBody(); } } @@ -3814,93 +3820,93 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1172; + this.state = 1182; this.match(MySqlParser.KW_CREATE); - this.state = 1174; + this.state = 1184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1173; + this.state = 1183; this.ownerStatement(); } } - this.state = 1177; + this.state = 1187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1176; + this.state = 1186; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 1179; + this.state = 1189; this.match(MySqlParser.KW_FUNCTION); - this.state = 1181; + this.state = 1191; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 1180; + this.state = 1190; this.ifNotExists(); } break; } - this.state = 1183; + this.state = 1193; this.functionNameCreate(); - this.state = 1184; + this.state = 1194; this.match(MySqlParser.LR_BRACKET); - this.state = 1186; + this.state = 1196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1185; + this.state = 1195; this.functionParameter(); } } - this.state = 1192; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1188; + this.state = 1198; this.match(MySqlParser.COMMA); - this.state = 1189; + this.state = 1199; this.functionParameter(); } } - this.state = 1194; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1195; + this.state = 1205; this.match(MySqlParser.RR_BRACKET); - this.state = 1196; + this.state = 1206; this.match(MySqlParser.KW_RETURNS); - this.state = 1197; + this.state = 1207; this.dataType(); - this.state = 1201; + this.state = 1211; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1198; + this.state = 1208; this.routineOption(); } } } - this.state = 1203; + this.state = 1213; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); } - this.state = 1206; + this.state = 1216; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -4488,13 +4494,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 1204; + this.state = 1214; this.routineBody(); } break; case MySqlParser.KW_RETURN: { - this.state = 1205; + this.state = 1215; this.returnStatement(); } break; @@ -4524,35 +4530,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1208; + this.state = 1218; this.match(MySqlParser.KW_CREATE); - this.state = 1210; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1209; + this.state = 1219; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 1212; + this.state = 1222; this.match(MySqlParser.KW_FUNCTION); - this.state = 1214; + this.state = 1224; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 1213; + this.state = 1223; this.ifNotExists(); } break; } - this.state = 1216; + this.state = 1226; this.functionNameCreate(); - this.state = 1217; + this.state = 1227; this.match(MySqlParser.KW_RETURNS); - this.state = 1218; + this.state = 1228; localContext._returnType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 261) !== 0) || _la === 649)) { @@ -4562,9 +4568,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1219; + this.state = 1229; this.match(MySqlParser.KW_SONAME); - this.state = 1220; + this.state = 1230; this.match(MySqlParser.STRING_LITERAL); } } @@ -4588,21 +4594,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1222; + this.state = 1232; this.match(MySqlParser.KW_CREATE); - this.state = 1223; + this.state = 1233; this.match(MySqlParser.KW_ROLE); - this.state = 1225; + this.state = 1235; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1224; + this.state = 1234; this.ifNotExists(); } break; } - this.state = 1227; + this.state = 1237; this.userOrRoleNames(); } } @@ -4627,19 +4633,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1229; + this.state = 1239; this.match(MySqlParser.KW_CREATE); - this.state = 1230; + this.state = 1240; this.match(MySqlParser.KW_SERVER); - this.state = 1231; + this.state = 1241; localContext._servername = this.uid(); - this.state = 1232; + this.state = 1242; this.match(MySqlParser.KW_FOREIGN); - this.state = 1233; + this.state = 1243; this.match(MySqlParser.KW_DATA); - this.state = 1234; + this.state = 1244; this.match(MySqlParser.KW_WRAPPER); - this.state = 1235; + this.state = 1245; localContext._wrapperName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 882)) { @@ -4649,29 +4655,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1236; + this.state = 1246; this.match(MySqlParser.KW_OPTIONS); - this.state = 1237; + this.state = 1247; this.match(MySqlParser.LR_BRACKET); - this.state = 1238; + this.state = 1248; this.serverOption(); - this.state = 1243; + this.state = 1253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1239; + this.state = 1249; this.match(MySqlParser.COMMA); - this.state = 1240; + this.state = 1250; this.serverOption(); } } - this.state = 1245; + this.state = 1255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1246; + this.state = 1256; this.match(MySqlParser.RR_BRACKET); } } @@ -4695,99 +4701,99 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1326; + this.state = 1336; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1248; + this.state = 1258; this.match(MySqlParser.KW_CREATE); - this.state = 1250; + this.state = 1260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1249; + this.state = 1259; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1252; + this.state = 1262; this.match(MySqlParser.KW_TABLE); - this.state = 1254; + this.state = 1264; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1253; + this.state = 1263; this.ifNotExists(); } break; } - this.state = 1256; + this.state = 1266; (localContext as QueryCreateTableContext)._tb = this.tableNameCreate(); - this.state = 1258; + this.state = 1268; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1257; + this.state = 1267; (localContext as QueryCreateTableContext)._col = this.createDefinitions(); } break; } - this.state = 1270; + this.state = 1280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 882) { { - this.state = 1260; + this.state = 1270; this.tableOption(); - this.state = 1267; + this.state = 1277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 868 || _la === 882) { { { - this.state = 1262; + this.state = 1272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1261; + this.state = 1271; this.match(MySqlParser.COMMA); } } - this.state = 1264; + this.state = 1274; this.tableOption(); } } - this.state = 1269; + this.state = 1279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1273; + this.state = 1283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1272; + this.state = 1282; this.partitionDefinitions(); } } - this.state = 1276; + this.state = 1286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 1275; + this.state = 1285; _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { this.errorHandler.recoverInline(this); @@ -4799,17 +4805,17 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1279; + this.state = 1289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 1278; + this.state = 1288; this.match(MySqlParser.KW_AS); } } - this.state = 1281; + this.state = 1291; this.selectStatement(); } break; @@ -4817,52 +4823,52 @@ export class MySqlParser extends SQLParserBase { localContext = new CopyCreateTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1283; + this.state = 1293; this.match(MySqlParser.KW_CREATE); - this.state = 1285; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1284; + this.state = 1294; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1287; + this.state = 1297; this.match(MySqlParser.KW_TABLE); - this.state = 1289; + this.state = 1299; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 1288; + this.state = 1298; this.ifNotExists(); } break; } - this.state = 1291; + this.state = 1301; this.tableNameCreate(); - this.state = 1299; + this.state = 1309; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: { - this.state = 1292; + this.state = 1302; this.match(MySqlParser.KW_LIKE); - this.state = 1293; + this.state = 1303; this.tableName(); } break; case MySqlParser.LR_BRACKET: { - this.state = 1294; + this.state = 1304; this.match(MySqlParser.LR_BRACKET); - this.state = 1295; + this.state = 1305; this.match(MySqlParser.KW_LIKE); - this.state = 1296; + this.state = 1306; this.tableName(); - this.state = 1297; + this.state = 1307; this.match(MySqlParser.RR_BRACKET); } break; @@ -4875,76 +4881,76 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1301; + this.state = 1311; this.match(MySqlParser.KW_CREATE); - this.state = 1303; + this.state = 1313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1302; + this.state = 1312; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1305; + this.state = 1315; this.match(MySqlParser.KW_TABLE); - this.state = 1307; + this.state = 1317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1306; + this.state = 1316; this.ifNotExists(); } break; } - this.state = 1309; + this.state = 1319; this.tableNameCreate(); - this.state = 1310; + this.state = 1320; this.createDefinitions(); - this.state = 1321; + this.state = 1331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1311; + this.state = 1321; this.tableOption(); - this.state = 1318; + this.state = 1328; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 71, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1313; + this.state = 1323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1312; + this.state = 1322; this.match(MySqlParser.COMMA); } } - this.state = 1315; + this.state = 1325; this.tableOption(); } } } - this.state = 1320; + this.state = 1330; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 71, this.context); } } break; } - this.state = 1324; + this.state = 1334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1323; + this.state = 1333; this.partitionDefinitions(); } } @@ -4974,112 +4980,112 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1328; + this.state = 1338; this.match(MySqlParser.KW_CREATE); - this.state = 1330; + this.state = 1340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1329; + this.state = 1339; this.match(MySqlParser.KW_UNDO); } } - this.state = 1332; + this.state = 1342; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1333; + this.state = 1343; this.tablespaceNameCreate(); - this.state = 1337; + this.state = 1347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 1334; + this.state = 1344; this.match(MySqlParser.KW_ADD); - this.state = 1335; + this.state = 1345; this.match(MySqlParser.KW_DATAFILE); - this.state = 1336; + this.state = 1346; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1344; + this.state = 1354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1339; + this.state = 1349; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1341; + this.state = 1351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1340; + this.state = 1350; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1343; + this.state = 1353; localContext._autoextendSize = this.fileSizeLiteral(); } } - this.state = 1349; + this.state = 1359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1346; + this.state = 1356; this.match(MySqlParser.KW_FILE_BLOCK_SIZE); - this.state = 1347; + this.state = 1357; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1348; + this.state = 1358; localContext._fileBlockSize = this.fileSizeLiteral(); } } - this.state = 1356; + this.state = 1366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 1351; + this.state = 1361; this.match(MySqlParser.KW_ENGINE); - this.state = 1353; + this.state = 1363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1352; + this.state = 1362; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1355; + this.state = 1365; this.engineName(); } } - this.state = 1363; + this.state = 1373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 1358; + this.state = 1368; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1360; + this.state = 1370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1359; + this.state = 1369; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1362; + this.state = 1372; this.match(MySqlParser.STRING_LITERAL); } } @@ -5107,191 +5113,191 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1365; + this.state = 1375; this.match(MySqlParser.KW_CREATE); - this.state = 1367; + this.state = 1377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1366; + this.state = 1376; this.match(MySqlParser.KW_UNDO); } } - this.state = 1369; + this.state = 1379; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1370; + this.state = 1380; this.tablespaceNameCreate(); - this.state = 1371; + this.state = 1381; this.match(MySqlParser.KW_ADD); - this.state = 1372; + this.state = 1382; this.match(MySqlParser.KW_DATAFILE); - this.state = 1373; + this.state = 1383; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1374; + this.state = 1384; this.match(MySqlParser.KW_USE); - this.state = 1375; + this.state = 1385; this.match(MySqlParser.KW_LOGFILE); - this.state = 1376; + this.state = 1386; this.match(MySqlParser.KW_GROUP); - this.state = 1377; + this.state = 1387; localContext._logfileGroupName = this.uid(); - this.state = 1383; + this.state = 1393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 393) { { - this.state = 1378; + this.state = 1388; this.match(MySqlParser.KW_EXTENT_SIZE); - this.state = 1380; + this.state = 1390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1379; + this.state = 1389; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1382; + this.state = 1392; localContext._extentSize = this.fileSizeLiteral(); } } - this.state = 1390; + this.state = 1400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1385; + this.state = 1395; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1387; + this.state = 1397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1386; + this.state = 1396; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1389; + this.state = 1399; localContext._initialSize = this.fileSizeLiteral(); } } - this.state = 1397; + this.state = 1407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1392; + this.state = 1402; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1394; + this.state = 1404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1393; + this.state = 1403; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1396; + this.state = 1406; localContext._autoextendSize = this.fileSizeLiteral(); } } - this.state = 1404; + this.state = 1414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 481) { { - this.state = 1399; + this.state = 1409; this.match(MySqlParser.KW_MAX_SIZE); - this.state = 1401; + this.state = 1411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1400; + this.state = 1410; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1403; + this.state = 1413; localContext._maxSize = this.fileSizeLiteral(); } } - this.state = 1411; + this.state = 1421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1406; + this.state = 1416; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1408; + this.state = 1418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1407; + this.state = 1417; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1410; + this.state = 1420; localContext._nodegroup = this.uid(); } } - this.state = 1414; + this.state = 1424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1413; + this.state = 1423; this.match(MySqlParser.KW_WAIT); } } - this.state = 1421; + this.state = 1431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1416; + this.state = 1426; this.match(MySqlParser.KW_COMMENT); - this.state = 1418; + this.state = 1428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1417; + this.state = 1427; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1420; + this.state = 1430; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1423; + this.state = 1433; this.match(MySqlParser.KW_ENGINE); - this.state = 1425; + this.state = 1435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1424; + this.state = 1434; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1427; + this.state = 1437; this.engineName(); } } @@ -5316,43 +5322,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1429; + this.state = 1439; this.match(MySqlParser.KW_CREATE); - this.state = 1431; + this.state = 1441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1430; + this.state = 1440; this.ownerStatement(); } } - this.state = 1434; + this.state = 1444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 1433; + this.state = 1443; this.ifNotExists(); } } - this.state = 1436; + this.state = 1446; this.match(MySqlParser.KW_TRIGGER); - this.state = 1438; + this.state = 1448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1437; + this.state = 1447; this.ifNotExists(); } break; } - this.state = 1440; + this.state = 1450; localContext._trigger_name = this.fullId(); - this.state = 1441; + this.state = 1451; localContext._triggerTime = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 16 || _la === 306)) { @@ -5362,7 +5368,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1442; + this.state = 1452; localContext._triggerEvent = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 44 || _la === 86 || _la === 185)) { @@ -5372,22 +5378,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1443; + this.state = 1453; this.match(MySqlParser.KW_ON); - this.state = 1444; + this.state = 1454; this.tableName(); - this.state = 1445; + this.state = 1455; this.match(MySqlParser.KW_FOR); - this.state = 1446; + this.state = 1456; this.match(MySqlParser.KW_EACH); - this.state = 1447; + this.state = 1457; this.match(MySqlParser.KW_ROW); - this.state = 1450; + this.state = 1460; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1448; + this.state = 1458; localContext._triggerPlace = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 406 || _la === 538)) { @@ -5397,12 +5403,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1449; + this.state = 1459; localContext._other_trigger_name = this.fullId(); } break; } - this.state = 1452; + this.state = 1462; this.routineBody(); } } @@ -5426,19 +5432,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1464; this.match(MySqlParser.KW_WITH); - this.state = 1456; + this.state = 1466; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1455; + this.state = 1465; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 1458; + this.state = 1468; this.commonTableExpressions(); } } @@ -5463,54 +5469,54 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1460; + this.state = 1470; localContext._cteName = this.uid(); - this.state = 1472; + this.state = 1482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1461; + this.state = 1471; this.match(MySqlParser.LR_BRACKET); - this.state = 1462; + this.state = 1472; localContext._cteColumnName = this.uid(); - this.state = 1467; + this.state = 1477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1463; + this.state = 1473; this.match(MySqlParser.COMMA); - this.state = 1464; + this.state = 1474; localContext._cteColumnName = this.uid(); } } - this.state = 1469; + this.state = 1479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1470; + this.state = 1480; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1474; + this.state = 1484; this.match(MySqlParser.KW_AS); - this.state = 1475; + this.state = 1485; this.match(MySqlParser.LR_BRACKET); - this.state = 1476; + this.state = 1486; this.dmlStatement(); - this.state = 1477; + this.state = 1487; this.match(MySqlParser.RR_BRACKET); - this.state = 1480; + this.state = 1490; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1478; + this.state = 1488; this.match(MySqlParser.COMMA); - this.state = 1479; + this.state = 1489; this.commonTableExpressions(); } break; @@ -5538,28 +5544,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1482; + this.state = 1492; this.match(MySqlParser.KW_CREATE); - this.state = 1484; + this.state = 1494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 1483; + this.state = 1493; this.orReplace(); } } - this.state = 1489; + this.state = 1499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 1486; + this.state = 1496; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1487; + this.state = 1497; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1488; + this.state = 1498; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -5572,26 +5578,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1492; + this.state = 1502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1491; + this.state = 1501; this.ownerStatement(); } } - this.state = 1497; + this.state = 1507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 1494; + this.state = 1504; this.match(MySqlParser.KW_SQL); - this.state = 1495; + this.state = 1505; this.match(MySqlParser.KW_SECURITY); - this.state = 1496; + this.state = 1506; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -5604,92 +5610,92 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1499; + this.state = 1509; this.match(MySqlParser.KW_VIEW); - this.state = 1500; + this.state = 1510; this.viewNameCreate(); - this.state = 1512; + this.state = 1522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1501; + this.state = 1511; this.match(MySqlParser.LR_BRACKET); - this.state = 1502; + this.state = 1512; this.columnNameCreate(); - this.state = 1507; + this.state = 1517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1503; + this.state = 1513; this.match(MySqlParser.COMMA); - this.state = 1504; + this.state = 1514; this.columnNameCreate(); } } - this.state = 1509; + this.state = 1519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1510; + this.state = 1520; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1514; + this.state = 1524; this.match(MySqlParser.KW_AS); - this.state = 1534; + this.state = 1544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1515; + this.state = 1525; this.match(MySqlParser.LR_BRACKET); - this.state = 1517; + this.state = 1527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1516; + this.state = 1526; this.withClause(); } } - this.state = 1519; + this.state = 1529; this.selectStatement(); - this.state = 1520; + this.state = 1530; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 1523; + this.state = 1533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1522; + this.state = 1532; this.withClause(); } } - this.state = 1525; + this.state = 1535; this.selectStatement(); - this.state = 1532; + this.state = 1542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1526; + this.state = 1536; this.match(MySqlParser.KW_WITH); - this.state = 1528; + this.state = 1538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 1527; + this.state = 1537; localContext._checkOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -5702,9 +5708,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1530; + this.state = 1540; this.match(MySqlParser.KW_CHECK); - this.state = 1531; + this.state = 1541; this.match(MySqlParser.KW_OPTION); } break; @@ -5733,35 +5739,35 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 56, MySqlParser.RULE_createDatabaseOption); let _la: number; try { - this.state = 1569; + this.state = 1579; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1537; + this.state = 1547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1536; + this.state = 1546; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1539; + this.state = 1549; this.charSet(); - this.state = 1541; + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1540; + this.state = 1550; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1545; + this.state = 1555; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -5809,13 +5815,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1543; + this.state = 1553; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1544; + this.state = 1554; this.match(MySqlParser.KW_DEFAULT); } break; @@ -5827,79 +5833,79 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1548; + this.state = 1558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1547; + this.state = 1557; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1550; + this.state = 1560; this.match(MySqlParser.KW_COLLATE); - this.state = 1552; + this.state = 1562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1551; + this.state = 1561; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1554; + this.state = 1564; this.collationName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1556; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1555; + this.state = 1565; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1558; + this.state = 1568; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 1560; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1559; + this.state = 1569; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1562; + this.state = 1572; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1563; + this.state = 1573; this.match(MySqlParser.KW_READ); - this.state = 1564; + this.state = 1574; this.match(MySqlParser.KW_ONLY); - this.state = 1566; + this.state = 1576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1565; + this.state = 1575; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1568; + this.state = 1578; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -5930,31 +5936,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new CharSetContext(this.context, this.state); this.enterRule(localContext, 58, MySqlParser.RULE_charSet); try { - this.state = 1576; + this.state = 1586; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 1571; + this.state = 1581; this.match(MySqlParser.KW_CHARACTER); - this.state = 1572; + this.state = 1582; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 1573; + this.state = 1583; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHAR: this.enterOuterAlt(localContext, 3); { - this.state = 1574; + this.state = 1584; this.match(MySqlParser.KW_CHAR); - this.state = 1575; + this.state = 1585; this.match(MySqlParser.KW_SET); } break; @@ -5983,7 +5989,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1588; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 678)) { this.errorHandler.recoverInline(this); @@ -5992,14 +5998,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1581; + this.state = 1591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1579; + this.state = 1589; this.match(MySqlParser.LR_BRACKET); - this.state = 1580; + this.state = 1590; this.match(MySqlParser.RR_BRACKET); } break; @@ -6026,22 +6032,22 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1583; + this.state = 1593; this.match(MySqlParser.KW_DEFINER); - this.state = 1584; + this.state = 1594; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1587; + this.state = 1597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1585; + this.state = 1595; this.userName(); } break; case 2: { - this.state = 1586; + this.state = 1596; this.currentUserExpression(); } break; @@ -6067,28 +6073,28 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 64, MySqlParser.RULE_scheduleExpression); let _la: number; try { - this.state = 1623; + this.state = 1633; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AT: localContext = new PreciseScheduleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1589; + this.state = 1599; this.match(MySqlParser.KW_AT); - this.state = 1590; + this.state = 1600; this.timestampValue(); - this.state = 1594; + this.state = 1604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1591; + this.state = 1601; this.intervalExpr(); } } - this.state = 1596; + this.state = 1606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6098,74 +6104,74 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalScheduleContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1597; + this.state = 1607; this.match(MySqlParser.KW_EVERY); - this.state = 1600; + this.state = 1610; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1598; + this.state = 1608; this.decimalLiteral(); } break; case 2: { - this.state = 1599; + this.state = 1609; this.expression(0); } break; } - this.state = 1602; + this.state = 1612; this.intervalType(); - this.state = 1611; + this.state = 1621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 641) { { - this.state = 1603; + this.state = 1613; this.match(MySqlParser.KW_STARTS); - this.state = 1604; + this.state = 1614; (localContext as IntervalScheduleContext)._startTimestamp = this.timestampValue(); - this.state = 1608; + this.state = 1618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1605; + this.state = 1615; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._startIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1610; + this.state = 1620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1621; + this.state = 1631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 379) { { - this.state = 1613; + this.state = 1623; this.match(MySqlParser.KW_ENDS); - this.state = 1614; + this.state = 1624; (localContext as IntervalScheduleContext)._endTimestamp = this.timestampValue(); - this.state = 1618; + this.state = 1628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1615; + this.state = 1625; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._endIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1620; + this.state = 1630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6196,34 +6202,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new TimestampValueContext(this.context, this.state); this.enterRule(localContext, 66, MySqlParser.RULE_timestampValue); try { - this.state = 1629; + this.state = 1639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1625; + this.state = 1635; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1626; + this.state = 1636; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1627; + this.state = 1637; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1628; + this.state = 1638; this.expression(0); } break; @@ -6249,27 +6255,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1631; + this.state = 1641; this.match(MySqlParser.PLUS); - this.state = 1632; + this.state = 1642; this.match(MySqlParser.KW_INTERVAL); - this.state = 1635; + this.state = 1645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1633; + this.state = 1643; this.decimalLiteral(); } break; case 2: { - this.state = 1634; + this.state = 1644; this.expression(0); } break; } - this.state = 1637; + this.state = 1647; this.intervalType(); } } @@ -6291,7 +6297,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new IntervalTypeContext(this.context, this.state); this.enterRule(localContext, 70, MySqlParser.RULE_intervalType); try { - this.state = 1652; + this.state = 1662; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_QUARTER: @@ -6304,91 +6310,91 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MICROSECOND: this.enterOuterAlt(localContext, 1); { - this.state = 1639; + this.state = 1649; this.intervalTypeBase(); } break; case MySqlParser.KW_YEAR: this.enterOuterAlt(localContext, 2); { - this.state = 1640; + this.state = 1650; this.match(MySqlParser.KW_YEAR); } break; case MySqlParser.KW_YEAR_MONTH: this.enterOuterAlt(localContext, 3); { - this.state = 1641; + this.state = 1651; this.match(MySqlParser.KW_YEAR_MONTH); } break; case MySqlParser.KW_DAY_HOUR: this.enterOuterAlt(localContext, 4); { - this.state = 1642; + this.state = 1652; this.match(MySqlParser.KW_DAY_HOUR); } break; case MySqlParser.KW_DAY_MINUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1643; + this.state = 1653; this.match(MySqlParser.KW_DAY_MINUTE); } break; case MySqlParser.KW_DAY_SECOND: this.enterOuterAlt(localContext, 6); { - this.state = 1644; + this.state = 1654; this.match(MySqlParser.KW_DAY_SECOND); } break; case MySqlParser.KW_HOUR_MINUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1645; + this.state = 1655; this.match(MySqlParser.KW_HOUR_MINUTE); } break; case MySqlParser.KW_HOUR_SECOND: this.enterOuterAlt(localContext, 8); { - this.state = 1646; + this.state = 1656; this.match(MySqlParser.KW_HOUR_SECOND); } break; case MySqlParser.KW_MINUTE_SECOND: this.enterOuterAlt(localContext, 9); { - this.state = 1647; + this.state = 1657; this.match(MySqlParser.KW_MINUTE_SECOND); } break; case MySqlParser.KW_SECOND_MICROSECOND: this.enterOuterAlt(localContext, 10); { - this.state = 1648; + this.state = 1658; this.match(MySqlParser.KW_SECOND_MICROSECOND); } break; case MySqlParser.KW_MINUTE_MICROSECOND: this.enterOuterAlt(localContext, 11); { - this.state = 1649; + this.state = 1659; this.match(MySqlParser.KW_MINUTE_MICROSECOND); } break; case MySqlParser.KW_HOUR_MICROSECOND: this.enterOuterAlt(localContext, 12); { - this.state = 1650; + this.state = 1660; this.match(MySqlParser.KW_HOUR_MICROSECOND); } break; case MySqlParser.KW_DAY_MICROSECOND: this.enterOuterAlt(localContext, 13); { - this.state = 1651; + this.state = 1661; this.match(MySqlParser.KW_DAY_MICROSECOND); } break; @@ -6414,31 +6420,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new EnableTypeContext(this.context, this.state); this.enterRule(localContext, 72, MySqlParser.RULE_enableType); try { - this.state = 1659; + this.state = 1669; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1664; this.match(MySqlParser.KW_ENABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1655; + this.state = 1665; this.match(MySqlParser.KW_DISABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1656; + this.state = 1666; this.match(MySqlParser.KW_DISABLE); - this.state = 1657; + this.state = 1667; this.match(MySqlParser.KW_ON); - this.state = 1658; + this.state = 1668; this.match(MySqlParser.KW_SLAVE); } break; @@ -6465,9 +6471,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1661; + this.state = 1671; this.match(MySqlParser.KW_USING); - this.state = 1662; + this.state = 1672; _la = this.tokenStream.LA(1); if(!(_la === 323 || _la === 418)) { this.errorHandler.recoverInline(this); @@ -6497,52 +6503,52 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 76, MySqlParser.RULE_indexOption); let _la: number; try { - this.state = 1686; + this.state = 1696; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_KEY_BLOCK_SIZE: this.enterOuterAlt(localContext, 1); { - this.state = 1664; + this.state = 1674; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 1666; + this.state = 1676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1665; + this.state = 1675; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1668; + this.state = 1678; this.fileSizeLiteral(); } break; case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1669; + this.state = 1679; this.indexType(); } break; case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1670; + this.state = 1680; this.match(MySqlParser.KW_WITH); - this.state = 1671; + this.state = 1681; this.match(MySqlParser.KW_PARSER); - this.state = 1672; + this.state = 1682; localContext._parserName = this.uid(); } break; case MySqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 1673; + this.state = 1683; this.match(MySqlParser.KW_COMMENT); - this.state = 1674; + this.state = 1684; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6550,7 +6556,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VISIBLE: this.enterOuterAlt(localContext, 5); { - this.state = 1675; + this.state = 1685; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -6564,38 +6570,38 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 6); { - this.state = 1676; + this.state = 1686; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1678; + this.state = 1688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1677; + this.state = 1687; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1680; + this.state = 1690; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1681; + this.state = 1691; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 1683; + this.state = 1693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1682; + this.state = 1692; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1685; + this.state = 1695; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6624,12 +6630,12 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1689; + this.state = 1699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80 || _la === 85 || _la === 126) { { - this.state = 1688; + this.state = 1698; localContext._direction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 85 || _la === 126)) { @@ -6642,9 +6648,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1691; + this.state = 1701; localContext._paramName = this.uid(); - this.state = 1692; + this.state = 1702; this.dataType(); } } @@ -6668,9 +6674,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1694; + this.state = 1704; localContext._paramName = this.uid(); - this.state = 1695; + this.state = 1705; this.dataType(); } } @@ -6693,16 +6699,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 82, MySqlParser.RULE_routineOption); let _la: number; try { - this.state = 1720; + this.state = 1730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_COMMENT: localContext = new RoutineCommentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1697; + this.state = 1707; this.match(MySqlParser.KW_COMMENT); - this.state = 1698; + this.state = 1708; (localContext as RoutineCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -6710,9 +6716,9 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineLanguageContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1699; + this.state = 1709; this.match(MySqlParser.KW_LANGUAGE); - this.state = 1700; + this.state = 1710; this.match(MySqlParser.KW_SQL); } break; @@ -6721,17 +6727,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineBehaviorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1702; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1701; + this.state = 1711; this.match(MySqlParser.KW_NOT); } } - this.state = 1704; + this.state = 1714; this.match(MySqlParser.KW_DETERMINISTIC); } break; @@ -6742,42 +6748,42 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineDataContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1715; + this.state = 1725; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONTAINS: { - this.state = 1705; + this.state = 1715; this.match(MySqlParser.KW_CONTAINS); - this.state = 1706; + this.state = 1716; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_NO: { - this.state = 1707; + this.state = 1717; this.match(MySqlParser.KW_NO); - this.state = 1708; + this.state = 1718; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_READS: { - this.state = 1709; + this.state = 1719; this.match(MySqlParser.KW_READS); - this.state = 1710; + this.state = 1720; this.match(MySqlParser.KW_SQL); - this.state = 1711; + this.state = 1721; this.match(MySqlParser.KW_DATA); } break; case MySqlParser.KW_MODIFIES: { - this.state = 1712; + this.state = 1722; this.match(MySqlParser.KW_MODIFIES); - this.state = 1713; + this.state = 1723; this.match(MySqlParser.KW_SQL); - this.state = 1714; + this.state = 1724; this.match(MySqlParser.KW_DATA); } break; @@ -6790,11 +6796,11 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineSecurityContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1717; + this.state = 1727; this.match(MySqlParser.KW_SQL); - this.state = 1718; + this.state = 1728; this.match(MySqlParser.KW_SECURITY); - this.state = 1719; + this.state = 1729; (localContext as RoutineSecurityContext)._context = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -6828,69 +6834,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new ServerOptionContext(this.context, this.state); this.enterRule(localContext, 84, MySqlParser.RULE_serverOption); try { - this.state = 1736; + this.state = 1746; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_HOST: this.enterOuterAlt(localContext, 1); { - this.state = 1722; + this.state = 1732; this.match(MySqlParser.KW_HOST); - this.state = 1723; + this.state = 1733; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 2); { - this.state = 1724; + this.state = 1734; this.match(MySqlParser.KW_DATABASE); - this.state = 1725; + this.state = 1735; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_USER: this.enterOuterAlt(localContext, 3); { - this.state = 1726; + this.state = 1736; this.match(MySqlParser.KW_USER); - this.state = 1727; + this.state = 1737; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PASSWORD: this.enterOuterAlt(localContext, 4); { - this.state = 1728; + this.state = 1738; this.match(MySqlParser.KW_PASSWORD); - this.state = 1729; + this.state = 1739; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SOCKET: this.enterOuterAlt(localContext, 5); { - this.state = 1730; + this.state = 1740; this.match(MySqlParser.KW_SOCKET); - this.state = 1731; + this.state = 1741; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_OWNER: this.enterOuterAlt(localContext, 6); { - this.state = 1732; + this.state = 1742; this.match(MySqlParser.KW_OWNER); - this.state = 1733; + this.state = 1743; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PORT: this.enterOuterAlt(localContext, 7); { - this.state = 1734; + this.state = 1744; this.match(MySqlParser.KW_PORT); - this.state = 1735; + this.state = 1745; this.decimalLiteral(); } break; @@ -6919,27 +6925,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1748; this.match(MySqlParser.LR_BRACKET); - this.state = 1739; + this.state = 1749; this.createDefinition(); - this.state = 1744; + this.state = 1754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1740; + this.state = 1750; this.match(MySqlParser.COMMA); - this.state = 1741; + this.state = 1751; this.createDefinition(); } } - this.state = 1746; + this.state = 1756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1747; + this.state = 1757; this.match(MySqlParser.RR_BRACKET); } } @@ -6962,22 +6968,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 88, MySqlParser.RULE_createDefinition); let _la: number; try { - this.state = 1832; + this.state = 1842; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1749; + this.state = 1759; this.columnNameCreate(); - this.state = 1750; + this.state = 1760; this.columnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1752; + this.state = 1762; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6986,39 +6992,39 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1754; + this.state = 1764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1753; + this.state = 1763; this.indexName(); } } - this.state = 1757; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1756; + this.state = 1766; this.indexType(); } } - this.state = 1759; + this.state = 1769; this.indexColumnNames(); - this.state = 1763; + this.state = 1773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1760; + this.state = 1770; this.indexOption(); } } - this.state = 1765; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7027,7 +7033,7 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1766; + this.state = 1776; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -7036,12 +7042,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1768; + this.state = 1778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1767; + this.state = 1777; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -7053,29 +7059,29 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1771; + this.state = 1781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1770; + this.state = 1780; this.indexName(); } } - this.state = 1773; + this.state = 1783; this.indexColumnNames(); - this.state = 1777; + this.state = 1787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1774; + this.state = 1784; this.indexOption(); } } - this.state = 1779; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7084,43 +7090,43 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1781; + this.state = 1791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1780; + this.state = 1790; this.constraintSymbol(); } } - this.state = 1783; + this.state = 1793; this.match(MySqlParser.KW_PRIMARY); - this.state = 1784; + this.state = 1794; this.match(MySqlParser.KW_KEY); - this.state = 1786; + this.state = 1796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1785; + this.state = 1795; this.indexType(); } } - this.state = 1788; + this.state = 1798; this.indexColumnNames(); - this.state = 1792; + this.state = 1802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1789; + this.state = 1799; this.indexOption(); } } - this.state = 1794; + this.state = 1804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7129,24 +7135,24 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1796; + this.state = 1806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1795; + this.state = 1805; this.constraintSymbol(); } } - this.state = 1798; + this.state = 1808; this.match(MySqlParser.KW_UNIQUE); - this.state = 1800; + this.state = 1810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1799; + this.state = 1809; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -7158,39 +7164,39 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1803; + this.state = 1813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1802; + this.state = 1812; this.indexName(); } } - this.state = 1806; + this.state = 1816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1805; + this.state = 1815; this.indexType(); } } - this.state = 1808; + this.state = 1818; this.indexColumnNames(); - this.state = 1812; + this.state = 1822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1809; + this.state = 1819; this.indexOption(); } } - this.state = 1814; + this.state = 1824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7199,53 +7205,53 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1816; + this.state = 1826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1815; + this.state = 1825; this.constraintSymbol(); } } - this.state = 1818; + this.state = 1828; this.match(MySqlParser.KW_FOREIGN); - this.state = 1819; + this.state = 1829; this.match(MySqlParser.KW_KEY); - this.state = 1821; + this.state = 1831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1820; + this.state = 1830; this.indexName(); } } - this.state = 1823; + this.state = 1833; this.indexColumnNames(); - this.state = 1824; + this.state = 1834; this.referenceDefinition(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1826; + this.state = 1836; this.match(MySqlParser.KW_CHECK); - this.state = 1827; + this.state = 1837; this.match(MySqlParser.LR_BRACKET); - this.state = 1828; + this.state = 1838; this.expression(0); - this.state = 1829; + this.state = 1839; this.match(MySqlParser.RR_BRACKET); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1831; + this.state = 1841; this.checkConstraintDefinition(); } break; @@ -7272,40 +7278,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1834; + this.state = 1844; this.constraintSymbol(); } } - this.state = 1837; + this.state = 1847; this.match(MySqlParser.KW_CHECK); - this.state = 1838; + this.state = 1848; this.match(MySqlParser.LR_BRACKET); - this.state = 1839; + this.state = 1849; this.expression(0); - this.state = 1840; + this.state = 1850; this.match(MySqlParser.RR_BRACKET); - this.state = 1845; + this.state = 1855; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1842; + this.state = 1852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1841; + this.state = 1851; this.match(MySqlParser.KW_NOT); } } - this.state = 1844; + this.state = 1854; this.match(MySqlParser.KW_ENFORCED); } break; @@ -7332,14 +7338,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1847; + this.state = 1857; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 1849; + this.state = 1859; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1848; + this.state = 1858; localContext._symbol_ = this.uid(); } break; @@ -7367,21 +7373,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1851; + this.state = 1861; localContext._colType = this.dataType(); - this.state = 1855; + this.state = 1865; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1852; + this.state = 1862; this.columnConstraint(); } } } - this.state = 1857; + this.state = 1867; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); } @@ -7406,7 +7412,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 96, MySqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 1901; + this.state = 1911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NOT: @@ -7415,7 +7421,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NullColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1858; + this.state = 1868; this.nullNotnull(); } break; @@ -7423,9 +7429,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1859; + this.state = 1869; this.match(MySqlParser.KW_DEFAULT); - this.state = 1860; + this.state = 1870; this.defaultValue(); } break; @@ -7433,7 +7439,7 @@ export class MySqlParser extends SQLParserBase { localContext = new VisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1861; + this.state = 1871; this.match(MySqlParser.KW_VISIBLE); } break; @@ -7441,7 +7447,7 @@ export class MySqlParser extends SQLParserBase { localContext = new InvisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1862; + this.state = 1872; this.match(MySqlParser.KW_INVISIBLE); } break; @@ -7450,22 +7456,22 @@ export class MySqlParser extends SQLParserBase { localContext = new AutoIncrementColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1867; + this.state = 1877; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AUTO_INCREMENT: { - this.state = 1863; + this.state = 1873; this.match(MySqlParser.KW_AUTO_INCREMENT); } break; case MySqlParser.KW_ON: { - this.state = 1864; + this.state = 1874; this.match(MySqlParser.KW_ON); - this.state = 1865; + this.state = 1875; this.match(MySqlParser.KW_UPDATE); - this.state = 1866; + this.state = 1876; this.currentTimestamp(); } break; @@ -7479,17 +7485,17 @@ export class MySqlParser extends SQLParserBase { localContext = new PrimaryKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1870; + this.state = 1880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 131) { { - this.state = 1869; + this.state = 1879; this.match(MySqlParser.KW_PRIMARY); } } - this.state = 1872; + this.state = 1882; this.match(MySqlParser.KW_KEY); } break; @@ -7497,14 +7503,14 @@ export class MySqlParser extends SQLParserBase { localContext = new UniqueKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1873; + this.state = 1883; this.match(MySqlParser.KW_UNIQUE); - this.state = 1875; + this.state = 1885; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: { - this.state = 1874; + this.state = 1884; this.match(MySqlParser.KW_KEY); } break; @@ -7515,9 +7521,9 @@ export class MySqlParser extends SQLParserBase { localContext = new CommentColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1877; + this.state = 1887; this.match(MySqlParser.KW_COMMENT); - this.state = 1878; + this.state = 1888; (localContext as CommentColumnConstraintContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -7525,9 +7531,9 @@ export class MySqlParser extends SQLParserBase { localContext = new FormatColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1879; + this.state = 1889; this.match(MySqlParser.KW_COLUMN_FORMAT); - this.state = 1880; + this.state = 1890; (localContext as FormatColumnConstraintContext)._colformat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 374 || _la === 403)) { @@ -7543,9 +7549,9 @@ export class MySqlParser extends SQLParserBase { localContext = new StorageColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1881; + this.state = 1891; this.match(MySqlParser.KW_STORAGE); - this.state = 1882; + this.state = 1892; (localContext as StorageColumnConstraintContext)._storageval = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { @@ -7561,7 +7567,7 @@ export class MySqlParser extends SQLParserBase { localContext = new ReferenceColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1883; + this.state = 1893; this.referenceDefinition(); } break; @@ -7569,9 +7575,9 @@ export class MySqlParser extends SQLParserBase { localContext = new CollateColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1884; + this.state = 1894; this.match(MySqlParser.KW_COLLATE); - this.state = 1885; + this.state = 1895; this.collationName(); } break; @@ -7580,32 +7586,32 @@ export class MySqlParser extends SQLParserBase { localContext = new GeneratedColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1888; + this.state = 1898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1886; + this.state = 1896; this.match(MySqlParser.KW_GENERATED); - this.state = 1887; + this.state = 1897; this.match(MySqlParser.KW_ALWAYS); } } - this.state = 1890; + this.state = 1900; this.match(MySqlParser.KW_AS); - this.state = 1891; + this.state = 1901; this.match(MySqlParser.LR_BRACKET); - this.state = 1892; + this.state = 1902; this.expression(0); - this.state = 1893; + this.state = 1903; this.match(MySqlParser.RR_BRACKET); - this.state = 1895; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 648 || _la === 685) { { - this.state = 1894; + this.state = 1904; _la = this.tokenStream.LA(1); if(!(_la === 648 || _la === 685)) { this.errorHandler.recoverInline(this); @@ -7623,11 +7629,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SerialDefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1897; + this.state = 1907; this.match(MySqlParser.KW_SERIAL); - this.state = 1898; + this.state = 1908; this.match(MySqlParser.KW_DEFAULT); - this.state = 1899; + this.state = 1909; this.match(MySqlParser.KW_VALUE); } break; @@ -7636,7 +7642,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CheckExprContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1900; + this.state = 1910; this.checkConstraintDefinition(); } break; @@ -7665,28 +7671,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1903; + this.state = 1913; this.match(MySqlParser.KW_REFERENCES); - this.state = 1904; + this.state = 1914; this.tableName(); - this.state = 1906; + this.state = 1916; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - this.state = 1905; + this.state = 1915; this.indexColumnNames(); } break; } - this.state = 1910; + this.state = 1920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 1908; + this.state = 1918; this.match(MySqlParser.KW_MATCH); - this.state = 1909; + this.state = 1919; localContext._matchType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 408 || _la === 526 || _la === 597)) { @@ -7699,12 +7705,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1913; + this.state = 1923; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1912; + this.state = 1922; this.referenceAction(); } break; @@ -7729,28 +7735,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReferenceActionContext(this.context, this.state); this.enterRule(localContext, 100, MySqlParser.RULE_referenceAction); try { - this.state = 1931; + this.state = 1941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1915; + this.state = 1925; this.match(MySqlParser.KW_ON); - this.state = 1916; + this.state = 1926; this.match(MySqlParser.KW_DELETE); - this.state = 1917; + this.state = 1927; localContext._onDelete = this.referenceControlType(); - this.state = 1921; + this.state = 1931; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1918; + this.state = 1928; this.match(MySqlParser.KW_ON); - this.state = 1919; + this.state = 1929; this.match(MySqlParser.KW_UPDATE); - this.state = 1920; + this.state = 1930; localContext._onUpdate = this.referenceControlType(); } break; @@ -7760,22 +7766,22 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1923; + this.state = 1933; this.match(MySqlParser.KW_ON); - this.state = 1924; + this.state = 1934; this.match(MySqlParser.KW_UPDATE); - this.state = 1925; + this.state = 1935; localContext._onUpdate = this.referenceControlType(); - this.state = 1929; + this.state = 1939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1926; + this.state = 1936; this.match(MySqlParser.KW_ON); - this.state = 1927; + this.state = 1937; this.match(MySqlParser.KW_DELETE); - this.state = 1928; + this.state = 1938; localContext._onDelete = this.referenceControlType(); } break; @@ -7802,47 +7808,47 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReferenceControlTypeContext(this.context, this.state); this.enterRule(localContext, 102, MySqlParser.RULE_referenceControlType); try { - this.state = 1941; + this.state = 1951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1933; + this.state = 1943; this.match(MySqlParser.KW_RESTRICT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1934; + this.state = 1944; this.match(MySqlParser.KW_CASCADE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1935; + this.state = 1945; this.match(MySqlParser.KW_SET); - this.state = 1936; + this.state = 1946; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1937; + this.state = 1947; this.match(MySqlParser.KW_NO); - this.state = 1938; + this.state = 1948; this.match(MySqlParser.KW_ACTION); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1939; + this.state = 1949; this.match(MySqlParser.KW_SET); - this.state = 1940; + this.state = 1950; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7867,31 +7873,31 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 104, MySqlParser.RULE_tableOption); let _la: number; try { - this.state = 2128; + this.state = 2138; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: localContext = new TableOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1943; + this.state = 1953; this.match(MySqlParser.KW_ENGINE); - this.state = 1945; + this.state = 1955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1944; + this.state = 1954; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1948; + this.state = 1958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1947; + this.state = 1957; this.engineName(); } break; @@ -7902,19 +7908,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1950; + this.state = 1960; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1952; + this.state = 1962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1951; + this.state = 1961; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1954; + this.state = 1964; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7922,19 +7928,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAutoextendSizeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1955; + this.state = 1965; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1957; + this.state = 1967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1956; + this.state = 1966; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1959; + this.state = 1969; this.decimalLiteral(); } break; @@ -7942,19 +7948,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAutoIncrementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1960; + this.state = 1970; this.match(MySqlParser.KW_AUTO_INCREMENT); - this.state = 1962; + this.state = 1972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1961; + this.state = 1971; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1964; + this.state = 1974; this.decimalLiteral(); } break; @@ -7962,19 +7968,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAverageContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1965; + this.state = 1975; this.match(MySqlParser.KW_AVG_ROW_LENGTH); - this.state = 1967; + this.state = 1977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1966; + this.state = 1976; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1969; + this.state = 1979; this.decimalLiteral(); } break; @@ -7982,29 +7988,29 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCharsetContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1971; + this.state = 1981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1970; + this.state = 1980; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1973; + this.state = 1983; this.charSet(); - this.state = 1975; + this.state = 1985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1974; + this.state = 1984; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1979; + this.state = 1989; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -8052,13 +8058,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1977; + this.state = 1987; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1978; + this.state = 1988; this.match(MySqlParser.KW_DEFAULT); } break; @@ -8071,7 +8077,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionChecksumContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1981; + this.state = 1991; _la = this.tokenStream.LA(1); if(!(_la === 329 || _la === 522)) { this.errorHandler.recoverInline(this); @@ -8080,17 +8086,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1983; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1982; + this.state = 1992; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1985; + this.state = 1995; (localContext as TableOptionChecksumContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -8106,29 +8112,29 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCollateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1987; + this.state = 1997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1986; + this.state = 1996; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1989; + this.state = 1999; this.match(MySqlParser.KW_COLLATE); - this.state = 1991; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1990; + this.state = 2000; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1993; + this.state = 2003; this.collationName(); } break; @@ -8136,19 +8142,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCommentContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1994; + this.state = 2004; this.match(MySqlParser.KW_COMMENT); - this.state = 1996; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1995; + this.state = 2005; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1998; + this.state = 2008; (localContext as TableOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -8156,19 +8162,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCompressionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1999; + this.state = 2009; this.match(MySqlParser.KW_COMPRESSION); - this.state = 2001; + this.state = 2011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2000; + this.state = 2010; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2003; + this.state = 2013; _la = this.tokenStream.LA(1); if(!(_la === 882 || _la === 889)) { this.errorHandler.recoverInline(this); @@ -8183,19 +8189,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionConnectionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2004; + this.state = 2014; this.match(MySqlParser.KW_CONNECTION); - this.state = 2006; + this.state = 2016; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2005; + this.state = 2015; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2008; + this.state = 2018; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8203,7 +8209,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2009; + this.state = 2019; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -8212,19 +8218,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2010; + this.state = 2020; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2012; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2011; + this.state = 2021; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2014; + this.state = 2024; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8232,19 +8238,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionDelayContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2015; + this.state = 2025; this.match(MySqlParser.KW_DELAY_KEY_WRITE); - this.state = 2017; + this.state = 2027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2016; + this.state = 2026; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2019; + this.state = 2029; (localContext as TableOptionDelayContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -8260,19 +8266,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEncryptionContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2020; + this.state = 2030; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2022; + this.state = 2032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2021; + this.state = 2031; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2024; + this.state = 2034; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8280,7 +8286,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPageCompressedContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2025; + this.state = 2035; _la = this.tokenStream.LA(1); if(!(_la === 523 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -8289,17 +8295,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2027; + this.state = 2037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2026; + this.state = 2036; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2029; + this.state = 2039; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -8314,7 +8320,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPageCompressionLevelContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2030; + this.state = 2040; _la = this.tokenStream.LA(1); if(!(_la === 524 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -8323,17 +8329,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2032; + this.state = 2042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2031; + this.state = 2041; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2034; + this.state = 2044; this.decimalLiteral(); } break; @@ -8341,19 +8347,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEncryptionKeyIdContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2035; + this.state = 2045; this.match(MySqlParser.KW_ENCRYPTION_KEY_ID); - this.state = 2037; + this.state = 2047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2036; + this.state = 2046; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2039; + this.state = 2049; this.decimalLiteral(); } break; @@ -8361,21 +8367,21 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2040; + this.state = 2050; this.match(MySqlParser.KW_INDEX); - this.state = 2041; + this.state = 2051; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2043; + this.state = 2053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2042; + this.state = 2052; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2045; + this.state = 2055; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8383,19 +8389,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionInsertMethodContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2046; + this.state = 2056; this.match(MySqlParser.KW_INSERT_METHOD); - this.state = 2048; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2047; + this.state = 2057; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2050; + this.state = 2060; (localContext as TableOptionInsertMethodContext)._insertMethod = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 502)) { @@ -8411,19 +8417,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionKeyBlockSizeContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2051; + this.state = 2061; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 2053; + this.state = 2063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2052; + this.state = 2062; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2055; + this.state = 2065; this.fileSizeLiteral(); } break; @@ -8431,19 +8437,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2056; + this.state = 2066; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2058; + this.state = 2068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2057; + this.state = 2067; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2060; + this.state = 2070; this.decimalLiteral(); } break; @@ -8451,19 +8457,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2061; + this.state = 2071; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2063; + this.state = 2073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2062; + this.state = 2072; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2065; + this.state = 2075; this.decimalLiteral(); } break; @@ -8471,19 +8477,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPackKeysContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2066; + this.state = 2076; this.match(MySqlParser.KW_PACK_KEYS); - this.state = 2068; + this.state = 2078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2067; + this.state = 2077; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2070; + this.state = 2080; (localContext as TableOptionPackKeysContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8499,19 +8505,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPasswordContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2071; + this.state = 2081; this.match(MySqlParser.KW_PASSWORD); - this.state = 2073; + this.state = 2083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2072; + this.state = 2082; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2075; + this.state = 2085; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8519,19 +8525,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionRowFormatContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2076; + this.state = 2086; this.match(MySqlParser.KW_ROW_FORMAT); - this.state = 2078; + this.state = 2088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2077; + this.state = 2087; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2080; + this.state = 2090; (localContext as TableOptionRowFormatContext)._rowFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 342 || _la === 345 || _la === 374 || _la === 403 || _la === 554 || _la === 889)) { @@ -8547,9 +8553,9 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionStartTransactionContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2081; + this.state = 2091; this.match(MySqlParser.KW_START); - this.state = 2082; + this.state = 2092; this.match(MySqlParser.KW_TRANSACTION); } break; @@ -8557,19 +8563,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionSecondaryEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2083; + this.state = 2093; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 2085; + this.state = 2095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2084; + this.state = 2094; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2087; + this.state = 2097; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8577,19 +8583,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionRecalculationContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2088; + this.state = 2098; this.match(MySqlParser.KW_STATS_AUTO_RECALC); - this.state = 2090; + this.state = 2100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2089; + this.state = 2099; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2092; + this.state = 2102; (localContext as TableOptionRecalculationContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8605,19 +8611,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPersistentContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2093; + this.state = 2103; this.match(MySqlParser.KW_STATS_PERSISTENT); - this.state = 2095; + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2094; + this.state = 2104; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2097; + this.state = 2107; (localContext as TableOptionPersistentContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8633,24 +8639,24 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionSamplePageContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2098; + this.state = 2108; this.match(MySqlParser.KW_STATS_SAMPLE_PAGES); - this.state = 2100; + this.state = 2110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2099; + this.state = 2109; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2104; + this.state = 2114; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 2102; + this.state = 2112; this.match(MySqlParser.KW_DEFAULT); } break; @@ -8661,7 +8667,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 2103; + this.state = 2113; this.decimalLiteral(); } break; @@ -8674,16 +8680,16 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2106; + this.state = 2116; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2107; + this.state = 2117; this.tablespaceName(); - this.state = 2109; + this.state = 2119; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 2108; + this.state = 2118; this.tablespaceStorage(); } break; @@ -8694,11 +8700,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableTypeContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2111; + this.state = 2121; this.match(MySqlParser.KW_TABLE_TYPE); - this.state = 2112; + this.state = 2122; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2113; + this.state = 2123; this.tableType(); } break; @@ -8706,7 +8712,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 2114; + this.state = 2124; this.tablespaceStorage(); } break; @@ -8714,19 +8720,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTransactionalContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 2115; + this.state = 2125; this.match(MySqlParser.KW_TRANSACTIONAL); - this.state = 2117; + this.state = 2127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2116; + this.state = 2126; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2119; + this.state = 2129; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -8741,23 +8747,23 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionUnionContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 2120; + this.state = 2130; this.match(MySqlParser.KW_UNION); - this.state = 2122; + this.state = 2132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2121; + this.state = 2131; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2124; + this.state = 2134; this.match(MySqlParser.LR_BRACKET); - this.state = 2125; + this.state = 2135; this.tableNames(); - this.state = 2126; + this.state = 2136; this.match(MySqlParser.RR_BRACKET); } break; @@ -8784,7 +8790,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2130; + this.state = 2140; _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 506)) { this.errorHandler.recoverInline(this); @@ -8816,9 +8822,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2132; + this.state = 2142; this.match(MySqlParser.KW_STORAGE); - this.state = 2133; + this.state = 2143; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { this.errorHandler.recoverInline(this); @@ -8850,43 +8856,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2135; + this.state = 2145; this.match(MySqlParser.KW_PARTITION); - this.state = 2136; + this.state = 2146; this.match(MySqlParser.KW_BY); - this.state = 2137; + this.state = 2147; this.partitionFunctionDefinition(); - this.state = 2140; + this.state = 2150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 528) { { - this.state = 2138; + this.state = 2148; this.match(MySqlParser.KW_PARTITIONS); - this.state = 2139; + this.state = 2149; localContext._count = this.decimalLiteral(); } } - this.state = 2149; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 652) { { - this.state = 2142; + this.state = 2152; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2143; + this.state = 2153; this.match(MySqlParser.KW_BY); - this.state = 2144; + this.state = 2154; this.subpartitionFunctionDefinition(); - this.state = 2147; + this.state = 2157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 653) { { - this.state = 2145; + this.state = 2155; this.match(MySqlParser.KW_SUBPARTITIONS); - this.state = 2146; + this.state = 2156; localContext._subCount = this.decimalLiteral(); } } @@ -8894,32 +8900,32 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2162; + this.state = 2172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 2151; + this.state = 2161; this.match(MySqlParser.LR_BRACKET); - this.state = 2152; + this.state = 2162; this.partitionDefinition(); - this.state = 2157; + this.state = 2167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2153; + this.state = 2163; this.match(MySqlParser.COMMA); - this.state = 2154; + this.state = 2164; this.partitionDefinition(); } } - this.state = 2159; + this.state = 2169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2160; + this.state = 2170; this.match(MySqlParser.RR_BRACKET); } break; @@ -8945,30 +8951,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 112, MySqlParser.RULE_partitionFunctionDefinition); let _la: number; try { - this.state = 2210; + this.state = 2220; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: localContext = new PartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2164; + this.state = 2174; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2167; + this.state = 2177; this.match(MySqlParser.KW_HASH); - this.state = 2168; + this.state = 2178; this.match(MySqlParser.LR_BRACKET); - this.state = 2169; + this.state = 2179; this.expression(0); - this.state = 2170; + this.state = 2180; this.match(MySqlParser.RR_BRACKET); } break; @@ -8976,28 +8982,28 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2173; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2172; + this.state = 2182; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2175; + this.state = 2185; this.match(MySqlParser.KW_KEY); - this.state = 2179; + this.state = 2189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2176; + this.state = 2186; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2177; + this.state = 2187; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2178; + this.state = 2188; (localContext as PartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -9010,19 +9016,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2181; + this.state = 2191; this.match(MySqlParser.LR_BRACKET); - this.state = 2183; + this.state = 2193; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2182; + this.state = 2192; this.columnNames(); } break; } - this.state = 2185; + this.state = 2195; this.match(MySqlParser.RR_BRACKET); } break; @@ -9030,30 +9036,30 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionRangeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2186; - this.match(MySqlParser.KW_RANGE); this.state = 2196; + this.match(MySqlParser.KW_RANGE); + this.state = 2206; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2187; + this.state = 2197; this.match(MySqlParser.LR_BRACKET); - this.state = 2188; + this.state = 2198; this.expression(0); - this.state = 2189; + this.state = 2199; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2191; + this.state = 2201; this.match(MySqlParser.KW_COLUMNS); - this.state = 2192; + this.state = 2202; this.match(MySqlParser.LR_BRACKET); - this.state = 2193; + this.state = 2203; this.columnNames(); - this.state = 2194; + this.state = 2204; this.match(MySqlParser.RR_BRACKET); } break; @@ -9066,30 +9072,30 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2198; - this.match(MySqlParser.KW_LIST); this.state = 2208; + this.match(MySqlParser.KW_LIST); + this.state = 2218; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2199; + this.state = 2209; this.match(MySqlParser.LR_BRACKET); - this.state = 2200; + this.state = 2210; this.expression(0); - this.state = 2201; + this.state = 2211; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2203; + this.state = 2213; this.match(MySqlParser.KW_COLUMNS); - this.state = 2204; + this.state = 2214; this.match(MySqlParser.LR_BRACKET); - this.state = 2205; + this.state = 2215; this.columnNames(); - this.state = 2206; + this.state = 2216; this.match(MySqlParser.RR_BRACKET); } break; @@ -9119,30 +9125,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 114, MySqlParser.RULE_subpartitionFunctionDefinition); let _la: number; try { - this.state = 2233; + this.state = 2243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: localContext = new SubPartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2212; + this.state = 2222; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2215; + this.state = 2225; this.match(MySqlParser.KW_HASH); - this.state = 2216; + this.state = 2226; this.match(MySqlParser.LR_BRACKET); - this.state = 2217; + this.state = 2227; this.expression(0); - this.state = 2218; + this.state = 2228; this.match(MySqlParser.RR_BRACKET); } break; @@ -9150,28 +9156,28 @@ export class MySqlParser extends SQLParserBase { localContext = new SubPartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2221; + this.state = 2231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2220; + this.state = 2230; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2223; + this.state = 2233; this.match(MySqlParser.KW_KEY); - this.state = 2227; + this.state = 2237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2224; + this.state = 2234; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2225; + this.state = 2235; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2226; + this.state = 2236; (localContext as SubPartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -9184,11 +9190,11 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2229; + this.state = 2239; this.match(MySqlParser.LR_BRACKET); - this.state = 2230; + this.state = 2240; this.columnNames(); - this.state = 2231; + this.state = 2241; this.match(MySqlParser.RR_BRACKET); } break; @@ -9213,85 +9219,85 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 116, MySqlParser.RULE_partitionDefinition); let _la: number; try { - this.state = 2381; + this.state = 2391; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2235; + this.state = 2245; this.match(MySqlParser.KW_PARTITION); - this.state = 2236; + this.state = 2246; this.partitionName(); - this.state = 2237; + this.state = 2247; this.match(MySqlParser.KW_VALUES); - this.state = 2238; + this.state = 2248; this.match(MySqlParser.KW_LESS); - this.state = 2239; + this.state = 2249; this.match(MySqlParser.KW_THAN); - this.state = 2240; + this.state = 2250; this.match(MySqlParser.LR_BRACKET); - this.state = 2241; + this.state = 2251; this.partitionDefinerAtom(); - this.state = 2246; + this.state = 2256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2242; + this.state = 2252; this.match(MySqlParser.COMMA); - this.state = 2243; + this.state = 2253; this.partitionDefinerAtom(); } } - this.state = 2248; + this.state = 2258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2249; + this.state = 2259; this.match(MySqlParser.RR_BRACKET); - this.state = 2253; + this.state = 2263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2250; + this.state = 2260; this.partitionOption(); } } - this.state = 2255; + this.state = 2265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2267; + this.state = 2277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2256; + this.state = 2266; this.match(MySqlParser.LR_BRACKET); - this.state = 2257; + this.state = 2267; this.subpartitionDefinition(); - this.state = 2262; + this.state = 2272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2258; + this.state = 2268; this.match(MySqlParser.COMMA); - this.state = 2259; + this.state = 2269; this.subpartitionDefinition(); } } - this.state = 2264; + this.state = 2274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2265; + this.state = 2275; this.match(MySqlParser.RR_BRACKET); } } @@ -9302,58 +9308,58 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2269; + this.state = 2279; this.match(MySqlParser.KW_PARTITION); - this.state = 2270; + this.state = 2280; this.partitionName(); - this.state = 2271; + this.state = 2281; this.match(MySqlParser.KW_VALUES); - this.state = 2272; + this.state = 2282; this.match(MySqlParser.KW_LESS); - this.state = 2273; + this.state = 2283; this.match(MySqlParser.KW_THAN); - this.state = 2274; + this.state = 2284; this.partitionDefinerAtom(); - this.state = 2278; + this.state = 2288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2275; + this.state = 2285; this.partitionOption(); } } - this.state = 2280; + this.state = 2290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2292; + this.state = 2302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2281; + this.state = 2291; this.match(MySqlParser.LR_BRACKET); - this.state = 2282; + this.state = 2292; this.subpartitionDefinition(); - this.state = 2287; + this.state = 2297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2283; + this.state = 2293; this.match(MySqlParser.COMMA); - this.state = 2284; + this.state = 2294; this.subpartitionDefinition(); } } - this.state = 2289; + this.state = 2299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2290; + this.state = 2300; this.match(MySqlParser.RR_BRACKET); } } @@ -9364,76 +9370,76 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionListAtomContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2294; + this.state = 2304; this.match(MySqlParser.KW_PARTITION); - this.state = 2295; + this.state = 2305; this.partitionName(); - this.state = 2296; + this.state = 2306; this.match(MySqlParser.KW_VALUES); - this.state = 2297; + this.state = 2307; this.match(MySqlParser.KW_IN); - this.state = 2298; + this.state = 2308; this.match(MySqlParser.LR_BRACKET); - this.state = 2299; + this.state = 2309; this.partitionDefinerAtom(); - this.state = 2304; + this.state = 2314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2300; + this.state = 2310; this.match(MySqlParser.COMMA); - this.state = 2301; + this.state = 2311; this.partitionDefinerAtom(); } } - this.state = 2306; + this.state = 2316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2307; + this.state = 2317; this.match(MySqlParser.RR_BRACKET); - this.state = 2311; + this.state = 2321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2308; + this.state = 2318; this.partitionOption(); } } - this.state = 2313; + this.state = 2323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2325; + this.state = 2335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2314; + this.state = 2324; this.match(MySqlParser.LR_BRACKET); - this.state = 2315; + this.state = 2325; this.subpartitionDefinition(); - this.state = 2320; + this.state = 2330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2316; + this.state = 2326; this.match(MySqlParser.COMMA); - this.state = 2317; + this.state = 2327; this.subpartitionDefinition(); } } - this.state = 2322; + this.state = 2332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2323; + this.state = 2333; this.match(MySqlParser.RR_BRACKET); } } @@ -9444,76 +9450,76 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionListVectorContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2327; + this.state = 2337; this.match(MySqlParser.KW_PARTITION); - this.state = 2328; + this.state = 2338; this.partitionName(); - this.state = 2329; + this.state = 2339; this.match(MySqlParser.KW_VALUES); - this.state = 2330; + this.state = 2340; this.match(MySqlParser.KW_IN); - this.state = 2331; + this.state = 2341; this.match(MySqlParser.LR_BRACKET); - this.state = 2332; + this.state = 2342; this.partitionDefinerVector(); - this.state = 2337; + this.state = 2347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2333; + this.state = 2343; this.match(MySqlParser.COMMA); - this.state = 2334; + this.state = 2344; this.partitionDefinerVector(); } } - this.state = 2339; + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2340; + this.state = 2350; this.match(MySqlParser.RR_BRACKET); - this.state = 2344; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2341; + this.state = 2351; this.partitionOption(); } } - this.state = 2346; + this.state = 2356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2358; + this.state = 2368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2347; + this.state = 2357; this.match(MySqlParser.LR_BRACKET); - this.state = 2348; + this.state = 2358; this.subpartitionDefinition(); - this.state = 2353; + this.state = 2363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2349; + this.state = 2359; this.match(MySqlParser.COMMA); - this.state = 2350; + this.state = 2360; this.subpartitionDefinition(); } } - this.state = 2355; + this.state = 2365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2356; + this.state = 2366; this.match(MySqlParser.RR_BRACKET); } } @@ -9524,50 +9530,50 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionSimpleContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2360; + this.state = 2370; this.match(MySqlParser.KW_PARTITION); - this.state = 2361; + this.state = 2371; this.partitionName(); - this.state = 2365; + this.state = 2375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2362; + this.state = 2372; this.partitionOption(); } } - this.state = 2367; + this.state = 2377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2379; + this.state = 2389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2368; + this.state = 2378; this.match(MySqlParser.LR_BRACKET); - this.state = 2369; + this.state = 2379; this.subpartitionDefinition(); - this.state = 2374; + this.state = 2384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2370; + this.state = 2380; this.match(MySqlParser.COMMA); - this.state = 2371; + this.state = 2381; this.subpartitionDefinition(); } } - this.state = 2376; + this.state = 2386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2377; + this.state = 2387; this.match(MySqlParser.RR_BRACKET); } } @@ -9594,27 +9600,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new PartitionDefinerAtomContext(this.context, this.state); this.enterRule(localContext, 118, MySqlParser.RULE_partitionDefinerAtom); try { - this.state = 2386; + this.state = 2396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2383; + this.state = 2393; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2384; + this.state = 2394; this.expression(0); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2385; + this.state = 2395; this.match(MySqlParser.KW_MAXVALUE); } break; @@ -9641,27 +9647,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2388; + this.state = 2398; this.match(MySqlParser.LR_BRACKET); - this.state = 2389; + this.state = 2399; this.partitionDefinerAtom(); - this.state = 2392; + this.state = 2402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2390; + this.state = 2400; this.match(MySqlParser.COMMA); - this.state = 2391; + this.state = 2401; this.partitionDefinerAtom(); } } - this.state = 2394; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 2396; + this.state = 2406; this.match(MySqlParser.RR_BRACKET); } } @@ -9686,21 +9692,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2398; + this.state = 2408; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2399; + this.state = 2409; localContext._logicalName = this.uid(); - this.state = 2403; + this.state = 2413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2400; + this.state = 2410; this.partitionOption(); } } - this.state = 2405; + this.state = 2415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9725,7 +9731,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 124, MySqlParser.RULE_partitionOption); let _la: number; try { - this.state = 2454; + this.state = 2464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: @@ -9734,39 +9740,39 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2407; + this.state = 2417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2406; + this.state = 2416; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2410; + this.state = 2420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 2409; + this.state = 2419; this.match(MySqlParser.KW_STORAGE); } } - this.state = 2412; + this.state = 2422; this.match(MySqlParser.KW_ENGINE); - this.state = 2414; + this.state = 2424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2413; + this.state = 2423; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2416; + this.state = 2426; this.engineName(); } break; @@ -9774,19 +9780,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionCommentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2417; + this.state = 2427; this.match(MySqlParser.KW_COMMENT); - this.state = 2419; + this.state = 2429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2418; + this.state = 2428; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2421; + this.state = 2431; (localContext as PartitionOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9794,21 +9800,21 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2422; + this.state = 2432; this.match(MySqlParser.KW_DATA); - this.state = 2423; + this.state = 2433; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2425; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2424; + this.state = 2434; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2427; + this.state = 2437; (localContext as PartitionOptionDataDirectoryContext)._dataDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9816,21 +9822,21 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2428; + this.state = 2438; this.match(MySqlParser.KW_INDEX); - this.state = 2429; + this.state = 2439; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2431; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2430; + this.state = 2440; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2433; + this.state = 2443; (localContext as PartitionOptionIndexDirectoryContext)._indexDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9838,19 +9844,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2434; + this.state = 2444; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2436; + this.state = 2446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2435; + this.state = 2445; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2438; + this.state = 2448; (localContext as PartitionOptionMaxRowsContext)._maxRows = this.decimalLiteral(); } break; @@ -9858,19 +9864,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2439; + this.state = 2449; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2441; + this.state = 2451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2440; + this.state = 2450; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2443; + this.state = 2453; (localContext as PartitionOptionMinRowsContext)._minRows = this.decimalLiteral(); } break; @@ -9878,19 +9884,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionTablespaceContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2444; + this.state = 2454; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2446; + this.state = 2456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2445; + this.state = 2455; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2448; + this.state = 2458; this.tablespaceName(); } break; @@ -9898,19 +9904,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionNodeGroupContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2449; + this.state = 2459; this.match(MySqlParser.KW_NODEGROUP); - this.state = 2451; + this.state = 2461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2450; + this.state = 2460; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2453; + this.state = 2463; (localContext as PartitionOptionNodeGroupContext)._nodegroup = this.uid(); } break; @@ -9937,16 +9943,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 126, MySqlParser.RULE_alterDatabase); let _la: number; try { - this.state = 2474; + this.state = 2484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: localContext = new AlterSimpleDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2456; + this.state = 2466; this.match(MySqlParser.KW_ALTER); - this.state = 2457; + this.state = 2467; (localContext as AlterSimpleDatabaseContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9956,27 +9962,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2459; + this.state = 2469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2458; + this.state = 2468; this.databaseName(); } break; } - this.state = 2462; + this.state = 2472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2461; + this.state = 2471; this.createDatabaseOption(); } } - this.state = 2464; + this.state = 2474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823); @@ -9986,9 +9992,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterUpgradeNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2466; + this.state = 2476; this.match(MySqlParser.KW_ALTER); - this.state = 2467; + this.state = 2477; (localContext as AlterUpgradeNameContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9998,15 +10004,15 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2468; + this.state = 2478; this.databaseName(); - this.state = 2469; + this.state = 2479; this.match(MySqlParser.KW_UPGRADE); - this.state = 2470; + this.state = 2480; this.match(MySqlParser.KW_DATA); - this.state = 2471; + this.state = 2481; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2472; + this.state = 2482; this.match(MySqlParser.KW_NAME); } break; @@ -10033,104 +10039,104 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2476; + this.state = 2486; this.match(MySqlParser.KW_ALTER); - this.state = 2478; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2477; + this.state = 2487; this.ownerStatement(); } } - this.state = 2480; + this.state = 2490; this.match(MySqlParser.KW_EVENT); - this.state = 2481; + this.state = 2491; localContext._event_name = this.fullId(); - this.state = 2485; + this.state = 2495; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2482; + this.state = 2492; this.match(MySqlParser.KW_ON); - this.state = 2483; + this.state = 2493; this.match(MySqlParser.KW_SCHEDULE); - this.state = 2484; + this.state = 2494; this.scheduleExpression(); } break; } - this.state = 2493; + this.state = 2503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2487; + this.state = 2497; this.match(MySqlParser.KW_ON); - this.state = 2488; + this.state = 2498; this.match(MySqlParser.KW_COMPLETION); - this.state = 2490; + this.state = 2500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2489; + this.state = 2499; this.match(MySqlParser.KW_NOT); } } - this.state = 2492; + this.state = 2502; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 2498; + this.state = 2508; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 2495; + this.state = 2505; this.match(MySqlParser.KW_RENAME); - this.state = 2496; + this.state = 2506; this.match(MySqlParser.KW_TO); - this.state = 2497; + this.state = 2507; localContext._new_event_name = this.fullId(); } break; } - this.state = 2501; + this.state = 2511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 2500; + this.state = 2510; this.enableType(); } } - this.state = 2505; + this.state = 2515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 2503; + this.state = 2513; this.match(MySqlParser.KW_COMMENT); - this.state = 2504; + this.state = 2514; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2509; + this.state = 2519; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2507; + this.state = 2517; this.match(MySqlParser.KW_DO); - this.state = 2508; + this.state = 2518; this.routineBody(); } break; @@ -10158,23 +10164,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2511; + this.state = 2521; this.match(MySqlParser.KW_ALTER); - this.state = 2512; + this.state = 2522; this.match(MySqlParser.KW_FUNCTION); - this.state = 2513; + this.state = 2523; this.functionName(); - this.state = 2517; + this.state = 2527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2514; + this.state = 2524; this.routineOption(); } } - this.state = 2519; + this.state = 2529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10200,17 +10206,17 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2520; + this.state = 2530; this.match(MySqlParser.KW_ALTER); - this.state = 2521; + this.state = 2531; this.match(MySqlParser.KW_INSTANCE); - this.state = 2522; + this.state = 2532; this.match(MySqlParser.KW_ROTATE); - this.state = 2523; + this.state = 2533; this.match(MySqlParser.KW_INNODB); - this.state = 2524; + this.state = 2534; this.match(MySqlParser.KW_MASTER); - this.state = 2525; + this.state = 2535; this.match(MySqlParser.KW_KEY); } } @@ -10235,65 +10241,65 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2527; + this.state = 2537; this.match(MySqlParser.KW_ALTER); - this.state = 2528; + this.state = 2538; this.match(MySqlParser.KW_LOGFILE); - this.state = 2529; + this.state = 2539; this.match(MySqlParser.KW_GROUP); - this.state = 2530; + this.state = 2540; localContext._logfileGroupName = this.uid(); - this.state = 2531; + this.state = 2541; this.match(MySqlParser.KW_ADD); - this.state = 2532; + this.state = 2542; this.match(MySqlParser.KW_UNDOFILE); - this.state = 2533; + this.state = 2543; this.match(MySqlParser.STRING_LITERAL); - this.state = 2539; + this.state = 2549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2534; + this.state = 2544; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2536; + this.state = 2546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2535; + this.state = 2545; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2538; + this.state = 2548; this.fileSizeLiteral(); } } - this.state = 2542; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2541; + this.state = 2551; this.match(MySqlParser.KW_WAIT); } } - this.state = 2544; + this.state = 2554; this.match(MySqlParser.KW_ENGINE); - this.state = 2546; + this.state = 2556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2545; + this.state = 2555; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2548; + this.state = 2558; this.engineName(); } } @@ -10318,23 +10324,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2550; + this.state = 2560; this.match(MySqlParser.KW_ALTER); - this.state = 2551; + this.state = 2561; this.match(MySqlParser.KW_PROCEDURE); - this.state = 2552; + this.state = 2562; localContext._proc_name = this.fullId(); - this.state = 2556; + this.state = 2566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2553; + this.state = 2563; this.routineOption(); } } - this.state = 2558; + this.state = 2568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10361,35 +10367,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2559; + this.state = 2569; this.match(MySqlParser.KW_ALTER); - this.state = 2560; + this.state = 2570; this.match(MySqlParser.KW_SERVER); - this.state = 2561; + this.state = 2571; localContext._serverName = this.uid(); - this.state = 2562; + this.state = 2572; this.match(MySqlParser.KW_OPTIONS); - this.state = 2563; + this.state = 2573; this.match(MySqlParser.LR_BRACKET); - this.state = 2564; + this.state = 2574; this.serverOption(); - this.state = 2569; + this.state = 2579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2565; + this.state = 2575; this.match(MySqlParser.COMMA); - this.state = 2566; + this.state = 2576; this.serverOption(); } } - this.state = 2571; + this.state = 2581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2572; + this.state = 2582; this.match(MySqlParser.RR_BRACKET); } } @@ -10415,58 +10421,58 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2574; + this.state = 2584; this.match(MySqlParser.KW_ALTER); - this.state = 2575; + this.state = 2585; this.match(MySqlParser.KW_TABLE); - this.state = 2576; + this.state = 2586; this.tableName(); - this.state = 2585; + this.state = 2595; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2577; + this.state = 2587; this.alterOption(); - this.state = 2582; + this.state = 2592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2578; + this.state = 2588; this.match(MySqlParser.COMMA); - this.state = 2579; + this.state = 2589; this.alterOption(); } } - this.state = 2584; + this.state = 2594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2594; + this.state = 2604; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { - this.state = 2587; + this.state = 2597; this.alterPartitionSpecification(); - this.state = 2591; + this.state = 2601; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2588; + this.state = 2598; this.alterPartitionSpecification(); } } } - this.state = 2593; + this.state = 2603; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); } @@ -10496,23 +10502,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2596; + this.state = 2606; this.match(MySqlParser.KW_ALTER); - this.state = 2598; + this.state = 2608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 2597; + this.state = 2607; this.match(MySqlParser.KW_UNDO); } } - this.state = 2600; + this.state = 2610; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2601; + this.state = 2611; this.tablespaceName(); - this.state = 2602; + this.state = 2612; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51)) { this.errorHandler.recoverInline(this); @@ -10521,86 +10527,86 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2603; + this.state = 2613; this.match(MySqlParser.KW_DATAFILE); - this.state = 2604; + this.state = 2614; this.match(MySqlParser.STRING_LITERAL); - this.state = 2610; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2605; + this.state = 2615; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2607; + this.state = 2617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2606; + this.state = 2616; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2609; + this.state = 2619; this.fileSizeLiteral(); } } - this.state = 2613; + this.state = 2623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2612; + this.state = 2622; this.match(MySqlParser.KW_WAIT); } } - this.state = 2618; + this.state = 2628; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2615; + this.state = 2625; this.match(MySqlParser.KW_RENAME); - this.state = 2616; + this.state = 2626; this.match(MySqlParser.KW_TO); - this.state = 2617; + this.state = 2627; this.tablespaceNameCreate(); } break; } - this.state = 2625; + this.state = 2635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2620; + this.state = 2630; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 2622; + this.state = 2632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2621; + this.state = 2631; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2624; + this.state = 2634; this.fileSizeLiteral(); } } - this.state = 2629; + this.state = 2639; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2627; + this.state = 2637; this.match(MySqlParser.KW_SET); - this.state = 2628; + this.state = 2638; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 81)) { this.errorHandler.recoverInline(this); @@ -10612,68 +10618,68 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 2636; + this.state = 2646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 376) { { - this.state = 2631; + this.state = 2641; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2633; + this.state = 2643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2632; + this.state = 2642; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2635; + this.state = 2645; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2643; + this.state = 2653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 2638; + this.state = 2648; this.match(MySqlParser.KW_ENGINE); - this.state = 2640; + this.state = 2650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2639; + this.state = 2649; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2642; + this.state = 2652; this.engineName(); } } - this.state = 2650; + this.state = 2660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 2645; + this.state = 2655; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 2647; + this.state = 2657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2646; + this.state = 2656; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2649; + this.state = 2659; this.match(MySqlParser.STRING_LITERAL); } } @@ -10701,18 +10707,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2652; + this.state = 2662; this.match(MySqlParser.KW_ALTER); - this.state = 2656; + this.state = 2666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2653; + this.state = 2663; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2654; + this.state = 2664; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2655; + this.state = 2665; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -10725,26 +10731,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2659; + this.state = 2669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2658; + this.state = 2668; this.ownerStatement(); } } - this.state = 2664; + this.state = 2674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 2661; + this.state = 2671; this.match(MySqlParser.KW_SQL); - this.state = 2662; + this.state = 2672; this.match(MySqlParser.KW_SECURITY); - this.state = 2663; + this.state = 2673; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -10757,41 +10763,41 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2666; + this.state = 2676; this.match(MySqlParser.KW_VIEW); - this.state = 2667; + this.state = 2677; this.viewName(); - this.state = 2672; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2668; + this.state = 2678; this.match(MySqlParser.LR_BRACKET); - this.state = 2669; + this.state = 2679; this.columnNames(); - this.state = 2670; + this.state = 2680; this.match(MySqlParser.RR_BRACKET); } } - this.state = 2674; + this.state = 2684; this.match(MySqlParser.KW_AS); - this.state = 2675; + this.state = 2685; this.selectStatement(); - this.state = 2682; + this.state = 2692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2676; + this.state = 2686; this.match(MySqlParser.KW_WITH); - this.state = 2678; + this.state = 2688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 2677; + this.state = 2687; localContext._checkOpt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -10804,9 +10810,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2680; + this.state = 2690; this.match(MySqlParser.KW_CHECK); - this.state = 2681; + this.state = 2691; this.match(MySqlParser.KW_OPTION); } break; @@ -10833,38 +10839,38 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2948; + this.state = 2958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: localContext = new AlterByTableOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2684; + this.state = 2694; this.tableOption(); - this.state = 2691; + this.state = 2701; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2686; + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 2685; + this.state = 2695; this.match(MySqlParser.COMMA); } } - this.state = 2688; + this.state = 2698; this.tableOption(); } } } - this.state = 2693; + this.state = 2703; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); } @@ -10874,36 +10880,36 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2694; + this.state = 2704; this.match(MySqlParser.KW_ADD); - this.state = 2696; + this.state = 2706; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 2695; + this.state = 2705; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2698; + this.state = 2708; this.columnName(); - this.state = 2699; + this.state = 2709; this.columnDefinition(); - this.state = 2703; + this.state = 2713; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2700; + this.state = 2710; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2701; + this.state = 2711; this.match(MySqlParser.KW_AFTER); - this.state = 2702; + this.state = 2712; this.columnName(); } break; @@ -10989,43 +10995,43 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddColumnsContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2705; + this.state = 2715; this.match(MySqlParser.KW_ADD); - this.state = 2707; + this.state = 2717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 29) { { - this.state = 2706; + this.state = 2716; this.match(MySqlParser.KW_COLUMN); } } - this.state = 2709; + this.state = 2719; this.match(MySqlParser.LR_BRACKET); - this.state = 2710; + this.state = 2720; this.columnName(); - this.state = 2711; + this.state = 2721; this.columnDefinition(); - this.state = 2718; + this.state = 2728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2712; + this.state = 2722; this.match(MySqlParser.COMMA); - this.state = 2713; + this.state = 2723; this.columnName(); - this.state = 2714; + this.state = 2724; this.columnDefinition(); } } - this.state = 2720; + this.state = 2730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2721; + this.state = 2731; this.match(MySqlParser.RR_BRACKET); } break; @@ -11033,9 +11039,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddIndexContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2723; + this.state = 2733; this.match(MySqlParser.KW_ADD); - this.state = 2724; + this.state = 2734; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11044,41 +11050,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2726; + this.state = 2736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2725; + this.state = 2735; this.indexName(); } } - this.state = 2729; + this.state = 2739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2728; + this.state = 2738; this.indexType(); } } - this.state = 2731; + this.state = 2741; this.indexColumnNames(); - this.state = 2735; + this.state = 2745; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2732; + this.state = 2742; this.indexOption(); } } } - this.state = 2737; + this.state = 2747; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } @@ -11088,9 +11094,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddSpecialIndexContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2738; + this.state = 2748; this.match(MySqlParser.KW_ADD); - this.state = 2739; + this.state = 2749; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -11099,12 +11105,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2741; + this.state = 2751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2740; + this.state = 2750; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11116,31 +11122,31 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2744; + this.state = 2754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2743; + this.state = 2753; this.indexName(); } } - this.state = 2746; + this.state = 2756; this.indexColumnNames(); - this.state = 2750; + this.state = 2760; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2747; + this.state = 2757; this.indexOption(); } } } - this.state = 2752; + this.state = 2762; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); } @@ -11150,21 +11156,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2753; + this.state = 2763; this.match(MySqlParser.KW_ADD); - this.state = 2758; + this.state = 2768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2754; + this.state = 2764; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2756; + this.state = 2766; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2755; + this.state = 2765; (localContext as AlterByAddPrimaryKeyContext)._symbol_ = this.uid(); } break; @@ -11172,35 +11178,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2760; + this.state = 2770; this.match(MySqlParser.KW_PRIMARY); - this.state = 2761; + this.state = 2771; this.match(MySqlParser.KW_KEY); - this.state = 2763; + this.state = 2773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2762; + this.state = 2772; this.indexType(); } } - this.state = 2765; + this.state = 2775; this.indexColumnNames(); - this.state = 2769; + this.state = 2779; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2766; + this.state = 2776; this.indexOption(); } } } - this.state = 2771; + this.state = 2781; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); } @@ -11210,21 +11216,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddUniqueKeyContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2772; + this.state = 2782; this.match(MySqlParser.KW_ADD); - this.state = 2777; + this.state = 2787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2773; + this.state = 2783; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2775; + this.state = 2785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2774; + this.state = 2784; (localContext as AlterByAddUniqueKeyContext)._symbol_ = this.uid(); } } @@ -11232,14 +11238,14 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2779; + this.state = 2789; this.match(MySqlParser.KW_UNIQUE); - this.state = 2781; + this.state = 2791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2780; + this.state = 2790; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11251,41 +11257,41 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2784; + this.state = 2794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2783; + this.state = 2793; this.indexName(); } } - this.state = 2787; + this.state = 2797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2786; + this.state = 2796; this.indexType(); } } - this.state = 2789; + this.state = 2799; this.indexColumnNames(); - this.state = 2793; + this.state = 2803; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 336, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2790; + this.state = 2800; this.indexOption(); } } } - this.state = 2795; + this.state = 2805; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 336, this.context); } @@ -11295,21 +11301,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddForeignKeyContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2796; + this.state = 2806; this.match(MySqlParser.KW_ADD); - this.state = 2801; + this.state = 2811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2797; + this.state = 2807; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2799; + this.state = 2809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2798; + this.state = 2808; (localContext as AlterByAddForeignKeyContext)._symbol_ = this.uid(); } } @@ -11317,23 +11323,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2803; + this.state = 2813; this.match(MySqlParser.KW_FOREIGN); - this.state = 2804; + this.state = 2814; this.match(MySqlParser.KW_KEY); - this.state = 2806; + this.state = 2816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2805; + this.state = 2815; this.indexName(); } } - this.state = 2808; + this.state = 2818; this.indexColumnNames(); - this.state = 2809; + this.state = 2819; this.referenceDefinition(); } break; @@ -11341,14 +11347,14 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2811; + this.state = 2821; this.match(MySqlParser.KW_ADD); - this.state = 2813; + this.state = 2823; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: { - this.state = 2812; + this.state = 2822; this.checkConstraintDefinition(); } break; @@ -11359,9 +11365,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropConstraintCheckContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2815; + this.state = 2825; this.match(MySqlParser.KW_DROP); - this.state = 2816; + this.state = 2826; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -11370,7 +11376,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2817; + this.state = 2827; (localContext as AlterByDropConstraintCheckContext)._symbol_ = this.uid(); } break; @@ -11378,9 +11384,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2818; + this.state = 2828; this.match(MySqlParser.KW_ALTER); - this.state = 2819; + this.state = 2829; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -11389,24 +11395,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2820; + this.state = 2830; (localContext as AlterByAlterCheckTableConstraintContext)._symbol_ = this.uid(); - this.state = 2822; + this.state = 2832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2821; + this.state = 2831; this.match(MySqlParser.KW_NOT); } } - this.state = 2825; + this.state = 2835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 2824; + this.state = 2834; this.match(MySqlParser.KW_ENFORCED); } } @@ -11417,19 +11423,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterBySetAlgorithmContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2827; + this.state = 2837; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2829; + this.state = 2839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2828; + this.state = 2838; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2831; + this.state = 2841; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430 || _la === 434)) { this.errorHandler.recoverInline(this); @@ -11444,38 +11450,38 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterColumnDefaultContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2832; + this.state = 2842; this.match(MySqlParser.KW_ALTER); - this.state = 2834; + this.state = 2844; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2833; + this.state = 2843; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2836; + this.state = 2846; this.columnName(); - this.state = 2844; + this.state = 2854; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2837; + this.state = 2847; this.match(MySqlParser.KW_SET); - this.state = 2838; + this.state = 2848; this.match(MySqlParser.KW_DEFAULT); - this.state = 2839; + this.state = 2849; this.defaultValue(); } break; case 2: { - this.state = 2840; + this.state = 2850; this.match(MySqlParser.KW_SET); - this.state = 2841; + this.state = 2851; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -11488,9 +11494,9 @@ export class MySqlParser extends SQLParserBase { break; case 3: { - this.state = 2842; + this.state = 2852; this.match(MySqlParser.KW_DROP); - this.state = 2843; + this.state = 2853; this.match(MySqlParser.KW_DEFAULT); } break; @@ -11501,13 +11507,13 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterIndexVisibilityContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2846; + this.state = 2856; this.match(MySqlParser.KW_ALTER); - this.state = 2847; + this.state = 2857; this.match(MySqlParser.KW_INDEX); - this.state = 2848; + this.state = 2858; this.indexName(); - this.state = 2849; + this.state = 2859; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -11522,38 +11528,38 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByChangeColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2851; + this.state = 2861; this.match(MySqlParser.KW_CHANGE); - this.state = 2853; + this.state = 2863; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2852; + this.state = 2862; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2855; + this.state = 2865; (localContext as AlterByChangeColumnContext)._oldColumn = this.columnName(); - this.state = 2856; + this.state = 2866; (localContext as AlterByChangeColumnContext)._newColumn = this.columnNameCreate(); - this.state = 2857; + this.state = 2867; this.columnDefinition(); - this.state = 2861; + this.state = 2871; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2858; + this.state = 2868; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2859; + this.state = 2869; this.match(MySqlParser.KW_AFTER); - this.state = 2860; + this.state = 2870; this.columnName(); } break; @@ -11639,42 +11645,42 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDefaultCharsetContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2864; + this.state = 2874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2863; + this.state = 2873; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2866; + this.state = 2876; this.match(MySqlParser.KW_CHARACTER); - this.state = 2867; + this.state = 2877; this.match(MySqlParser.KW_SET); - this.state = 2868; + this.state = 2878; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2869; + this.state = 2879; this.charsetName(); - this.state = 2875; + this.state = 2885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2870; + this.state = 2880; this.match(MySqlParser.KW_COLLATE); - this.state = 2872; + this.state = 2882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2871; + this.state = 2881; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2874; + this.state = 2884; this.collationName(); } } @@ -11685,40 +11691,40 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByConvertCharsetContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2877; + this.state = 2887; this.match(MySqlParser.KW_CONVERT); - this.state = 2878; + this.state = 2888; this.match(MySqlParser.KW_TO); - this.state = 2882; + this.state = 2892; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARSET: { - this.state = 2879; + this.state = 2889; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHARACTER: { - this.state = 2880; + this.state = 2890; this.match(MySqlParser.KW_CHARACTER); - this.state = 2881; + this.state = 2891; this.match(MySqlParser.KW_SET); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2884; + this.state = 2894; this.charsetName(); - this.state = 2887; + this.state = 2897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2885; + this.state = 2895; this.match(MySqlParser.KW_COLLATE); - this.state = 2886; + this.state = 2896; this.collationName(); } } @@ -11729,7 +11735,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterKeysContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2889; + this.state = 2899; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -11738,7 +11744,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2890; + this.state = 2900; this.match(MySqlParser.KW_KEYS); } break; @@ -11746,7 +11752,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterTablespaceOptionContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2891; + this.state = 2901; _la = this.tokenStream.LA(1); if(!(_la === 369 || _la === 425)) { this.errorHandler.recoverInline(this); @@ -11755,7 +11761,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2892; + this.state = 2902; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -11763,19 +11769,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2893; + this.state = 2903; this.match(MySqlParser.KW_DROP); - this.state = 2895; + this.state = 2905; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2894; + this.state = 2904; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2897; + this.state = 2907; this.columnName(); } break; @@ -11783,9 +11789,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropIndexContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2898; + this.state = 2908; this.match(MySqlParser.KW_DROP); - this.state = 2899; + this.state = 2909; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11794,7 +11800,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2900; + this.state = 2910; this.indexName(); } break; @@ -11802,11 +11808,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2901; + this.state = 2911; this.match(MySqlParser.KW_DROP); - this.state = 2902; + this.state = 2912; this.match(MySqlParser.KW_PRIMARY); - this.state = 2903; + this.state = 2913; this.match(MySqlParser.KW_KEY); } break; @@ -11814,13 +11820,13 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropForeignKeyContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2904; + this.state = 2914; this.match(MySqlParser.KW_DROP); - this.state = 2905; + this.state = 2915; this.match(MySqlParser.KW_FOREIGN); - this.state = 2906; + this.state = 2916; this.match(MySqlParser.KW_KEY); - this.state = 2907; + this.state = 2917; (localContext as AlterByDropForeignKeyContext)._fk_symbol = this.uid(); } break; @@ -11828,7 +11834,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByForceContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2908; + this.state = 2918; this.match(MySqlParser.KW_FORCE); } break; @@ -11836,19 +11842,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByLockContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2909; + this.state = 2919; this.match(MySqlParser.KW_LOCK); - this.state = 2911; + this.state = 2921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2910; + this.state = 2920; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2913; + this.state = 2923; (localContext as AlterByLockContext)._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -11864,36 +11870,36 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByModifyColumnContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2914; + this.state = 2924; this.match(MySqlParser.KW_MODIFY); - this.state = 2916; + this.state = 2926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2915; + this.state = 2925; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2918; + this.state = 2928; this.columnName(); - this.state = 2919; + this.state = 2929; this.columnDefinition(); - this.state = 2923; + this.state = 2933; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2920; + this.state = 2930; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2921; + this.state = 2931; this.match(MySqlParser.KW_AFTER); - this.state = 2922; + this.state = 2932; this.columnName(); } break; @@ -11979,11 +11985,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByOrderContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2925; + this.state = 2935; this.match(MySqlParser.KW_ORDER); - this.state = 2926; + this.state = 2936; this.match(MySqlParser.KW_BY); - this.state = 2927; + this.state = 2937; this.columnNames(); } break; @@ -11991,15 +11997,15 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameColumnContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2928; + this.state = 2938; this.match(MySqlParser.KW_RENAME); - this.state = 2929; + this.state = 2939; this.match(MySqlParser.KW_COLUMN); - this.state = 2930; + this.state = 2940; (localContext as AlterByRenameColumnContext)._olcdColumn = this.columnName(); - this.state = 2931; + this.state = 2941; this.match(MySqlParser.KW_TO); - this.state = 2932; + this.state = 2942; (localContext as AlterByRenameColumnContext)._newColumn = this.columnNameCreate(); } break; @@ -12007,9 +12013,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameIndexContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2934; + this.state = 2944; this.match(MySqlParser.KW_RENAME); - this.state = 2935; + this.state = 2945; (localContext as AlterByRenameIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -12019,11 +12025,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2936; + this.state = 2946; this.indexName(); - this.state = 2937; + this.state = 2947; this.match(MySqlParser.KW_TO); - this.state = 2938; + this.state = 2948; this.indexNameCreate(); } break; @@ -12031,14 +12037,14 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2940; + this.state = 2950; this.match(MySqlParser.KW_RENAME); - this.state = 2942; + this.state = 2952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 176) { { - this.state = 2941; + this.state = 2951; (localContext as AlterByRenameContext)._renameFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 176)) { @@ -12051,7 +12057,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2944; + this.state = 2954; this.tableNameCreate(); } break; @@ -12059,7 +12065,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByValidateContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2945; + this.state = 2955; _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { this.errorHandler.recoverInline(this); @@ -12068,7 +12074,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2946; + this.state = 2956; this.match(MySqlParser.KW_VALIDATION); } break; @@ -12076,7 +12082,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterPartitionContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2947; + this.state = 2957; this.alterPartitionSpecification(); } break; @@ -12101,38 +12107,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 148, MySqlParser.RULE_alterPartitionSpecification); let _la: number; try { - this.state = 3048; + this.state = 3058; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ADD: localContext = new AlterByAddPartitionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2950; + this.state = 2960; this.match(MySqlParser.KW_ADD); - this.state = 2951; + this.state = 2961; this.match(MySqlParser.KW_PARTITION); - this.state = 2952; + this.state = 2962; this.match(MySqlParser.LR_BRACKET); - this.state = 2953; + this.state = 2963; this.partitionDefinition(); - this.state = 2958; + this.state = 2968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2954; + this.state = 2964; this.match(MySqlParser.COMMA); - this.state = 2955; + this.state = 2965; this.partitionDefinition(); } } - this.state = 2960; + this.state = 2970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2961; + this.state = 2971; this.match(MySqlParser.RR_BRACKET); } break; @@ -12140,11 +12146,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropPartitionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2963; + this.state = 2973; this.match(MySqlParser.KW_DROP); - this.state = 2964; + this.state = 2974; this.match(MySqlParser.KW_PARTITION); - this.state = 2965; + this.state = 2975; this.partitionNames(); } break; @@ -12152,11 +12158,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDiscardPartitionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2966; + this.state = 2976; this.match(MySqlParser.KW_DISCARD); - this.state = 2967; + this.state = 2977; this.match(MySqlParser.KW_PARTITION); - this.state = 2970; + this.state = 2980; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -12709,20 +12715,20 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2968; + this.state = 2978; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2969; + this.state = 2979; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2972; + this.state = 2982; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -12730,11 +12736,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByImportPartitionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2973; + this.state = 2983; this.match(MySqlParser.KW_IMPORT); - this.state = 2974; + this.state = 2984; this.match(MySqlParser.KW_PARTITION); - this.state = 2977; + this.state = 2987; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13287,20 +13293,20 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2975; + this.state = 2985; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2976; + this.state = 2986; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2979; + this.state = 2989; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -13308,11 +13314,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByTruncatePartitionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2980; + this.state = 2990; this.match(MySqlParser.KW_TRUNCATE); - this.state = 2981; + this.state = 2991; this.match(MySqlParser.KW_PARTITION); - this.state = 2984; + this.state = 2994; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13865,13 +13871,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2982; + this.state = 2992; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2983; + this.state = 2993; this.match(MySqlParser.KW_ALL); } break; @@ -13884,11 +13890,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByCoalescePartitionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2986; + this.state = 2996; this.match(MySqlParser.KW_COALESCE); - this.state = 2987; + this.state = 2997; this.match(MySqlParser.KW_PARTITION); - this.state = 2988; + this.state = 2998; this.decimalLiteral(); } break; @@ -13896,35 +13902,35 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByReorganizePartitionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2989; + this.state = 2999; this.match(MySqlParser.KW_REORGANIZE); - this.state = 2990; + this.state = 3000; this.match(MySqlParser.KW_PARTITION); - this.state = 2991; + this.state = 3001; this.partitionNames(); - this.state = 2992; + this.state = 3002; this.match(MySqlParser.KW_INTO); - this.state = 2993; + this.state = 3003; this.match(MySqlParser.LR_BRACKET); - this.state = 2994; + this.state = 3004; this.partitionDefinition(); - this.state = 2999; + this.state = 3009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2995; + this.state = 3005; this.match(MySqlParser.COMMA); - this.state = 2996; + this.state = 3006; this.partitionDefinition(); } } - this.state = 3001; + this.state = 3011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3002; + this.state = 3012; this.match(MySqlParser.RR_BRACKET); } break; @@ -13932,24 +13938,24 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByExchangePartitionContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3004; + this.state = 3014; this.match(MySqlParser.KW_EXCHANGE); - this.state = 3005; + this.state = 3015; this.match(MySqlParser.KW_PARTITION); - this.state = 3006; + this.state = 3016; this.partitionName(); - this.state = 3007; + this.state = 3017; this.match(MySqlParser.KW_WITH); - this.state = 3008; + this.state = 3018; this.match(MySqlParser.KW_TABLE); - this.state = 3009; + this.state = 3019; this.tableName(); - this.state = 3012; + this.state = 3022; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: { - this.state = 3010; + this.state = 3020; (localContext as AlterByExchangePartitionContext)._validationFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { @@ -13959,7 +13965,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3011; + this.state = 3021; this.match(MySqlParser.KW_VALIDATION); } break; @@ -13970,11 +13976,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAnalyzePartitionContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3014; + this.state = 3024; this.match(MySqlParser.KW_ANALYZE); - this.state = 3015; + this.state = 3025; this.match(MySqlParser.KW_PARTITION); - this.state = 3018; + this.state = 3028; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -14527,13 +14533,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3016; + this.state = 3026; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3017; + this.state = 3027; this.match(MySqlParser.KW_ALL); } break; @@ -14546,11 +14552,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByCheckPartitionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3020; + this.state = 3030; this.match(MySqlParser.KW_CHECK); - this.state = 3021; + this.state = 3031; this.match(MySqlParser.KW_PARTITION); - this.state = 3024; + this.state = 3034; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15103,13 +15109,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3022; + this.state = 3032; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3023; + this.state = 3033; this.match(MySqlParser.KW_ALL); } break; @@ -15122,11 +15128,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByOptimizePartitionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3026; + this.state = 3036; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 3027; + this.state = 3037; this.match(MySqlParser.KW_PARTITION); - this.state = 3030; + this.state = 3040; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15679,13 +15685,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3028; + this.state = 3038; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3029; + this.state = 3039; this.match(MySqlParser.KW_ALL); } break; @@ -15698,11 +15704,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRebuildPartitionContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 3032; + this.state = 3042; this.match(MySqlParser.KW_REBUILD); - this.state = 3033; + this.state = 3043; this.match(MySqlParser.KW_PARTITION); - this.state = 3036; + this.state = 3046; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -16255,13 +16261,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3034; + this.state = 3044; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3035; + this.state = 3045; this.match(MySqlParser.KW_ALL); } break; @@ -16274,11 +16280,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRepairPartitionContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 3038; + this.state = 3048; this.match(MySqlParser.KW_REPAIR); - this.state = 3039; + this.state = 3049; this.match(MySqlParser.KW_PARTITION); - this.state = 3042; + this.state = 3052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -16831,13 +16837,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3040; + this.state = 3050; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3041; + this.state = 3051; this.match(MySqlParser.KW_ALL); } break; @@ -16850,9 +16856,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRemovePartitioningContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 3044; + this.state = 3054; this.match(MySqlParser.KW_REMOVE); - this.state = 3045; + this.state = 3055; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16860,9 +16866,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByUpgradePartitioningContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 3046; + this.state = 3056; this.match(MySqlParser.KW_UPGRADE); - this.state = 3047; + this.state = 3057; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16891,9 +16897,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3050; + this.state = 3060; this.match(MySqlParser.KW_DROP); - this.state = 3051; + this.state = 3061; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -16903,17 +16909,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3053; + this.state = 3063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { - this.state = 3052; + this.state = 3062; this.ifExists(); } break; } - this.state = 3055; + this.state = 3065; this.databaseName(); } } @@ -16937,21 +16943,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3057; + this.state = 3067; this.match(MySqlParser.KW_DROP); - this.state = 3058; + this.state = 3068; this.match(MySqlParser.KW_EVENT); - this.state = 3060; + this.state = 3070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: { - this.state = 3059; + this.state = 3069; this.ifExists(); } break; } - this.state = 3062; + this.state = 3072; localContext._event_name = this.fullId(); } } @@ -16977,16 +16983,16 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3064; + this.state = 3074; this.match(MySqlParser.KW_DROP); - this.state = 3065; + this.state = 3075; this.match(MySqlParser.KW_INDEX); - this.state = 3067; + this.state = 3077; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { - this.state = 3066; + this.state = 3076; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -16999,36 +17005,36 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 3069; + this.state = 3079; this.indexName(); - this.state = 3070; + this.state = 3080; this.match(MySqlParser.KW_ON); - this.state = 3071; + this.state = 3081; this.tableName(); - this.state = 3084; + this.state = 3094; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 377, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 3082; + this.state = 3092; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 3072; + this.state = 3082; this.match(MySqlParser.KW_ALGORITHM); - this.state = 3074; + this.state = 3084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3073; + this.state = 3083; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3076; + this.state = 3086; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -17042,19 +17048,19 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_LOCK: { - this.state = 3077; + this.state = 3087; this.match(MySqlParser.KW_LOCK); - this.state = 3079; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3078; + this.state = 3088; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3081; + this.state = 3091; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -17071,7 +17077,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 3086; + this.state = 3096; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 377, this.context); } @@ -17098,27 +17104,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3087; + this.state = 3097; this.match(MySqlParser.KW_DROP); - this.state = 3088; + this.state = 3098; this.match(MySqlParser.KW_LOGFILE); - this.state = 3089; + this.state = 3099; this.match(MySqlParser.KW_GROUP); - this.state = 3090; + this.state = 3100; localContext._logfileGroupName = this.uid(); - this.state = 3091; + this.state = 3101; this.match(MySqlParser.KW_ENGINE); - this.state = 3093; + this.state = 3103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3092; + this.state = 3102; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3095; + this.state = 3105; this.engineName(); } } @@ -17142,21 +17148,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3097; + this.state = 3107; this.match(MySqlParser.KW_DROP); - this.state = 3098; + this.state = 3108; this.match(MySqlParser.KW_PROCEDURE); - this.state = 3100; + this.state = 3110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 3099; + this.state = 3109; this.ifExists(); } break; } - this.state = 3102; + this.state = 3112; localContext._sp_name = this.fullId(); } } @@ -17180,21 +17186,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3104; + this.state = 3114; this.match(MySqlParser.KW_DROP); - this.state = 3105; + this.state = 3115; this.match(MySqlParser.KW_FUNCTION); - this.state = 3107; + this.state = 3117; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 3106; + this.state = 3116; this.ifExists(); } break; } - this.state = 3109; + this.state = 3119; this.functionName(); } } @@ -17218,21 +17224,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3111; + this.state = 3121; this.match(MySqlParser.KW_DROP); - this.state = 3112; + this.state = 3122; this.match(MySqlParser.KW_SERVER); - this.state = 3114; + this.state = 3124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 3113; + this.state = 3123; this.ifExists(); } break; } - this.state = 3116; + this.state = 3126; localContext._serverName = this.uid(); } } @@ -17257,25 +17263,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3118; + this.state = 3128; this.match(MySqlParser.KW_DROP); - this.state = 3119; + this.state = 3129; this.match(MySqlParser.KW_SPATIAL); - this.state = 3120; + this.state = 3130; this.match(MySqlParser.KW_REFERENCE); - this.state = 3121; + this.state = 3131; this.match(MySqlParser.KW_SYSTEM); - this.state = 3123; + this.state = 3133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3122; + this.state = 3132; this.ifExists(); } } - this.state = 3125; + this.state = 3135; this.match(MySqlParser.DECIMAL_LITERAL); } } @@ -17300,38 +17306,38 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3127; + this.state = 3137; this.match(MySqlParser.KW_DROP); - this.state = 3129; + this.state = 3139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 3128; + this.state = 3138; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 3131; + this.state = 3141; this.match(MySqlParser.KW_TABLE); - this.state = 3133; + this.state = 3143; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 3132; + this.state = 3142; this.ifExists(); } break; } - this.state = 3135; + this.state = 3145; this.tableNames(); - this.state = 3137; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3136; + this.state = 3146; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -17367,40 +17373,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3139; + this.state = 3149; this.match(MySqlParser.KW_DROP); - this.state = 3141; + this.state = 3151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 3140; + this.state = 3150; this.match(MySqlParser.KW_UNDO); } } - this.state = 3143; + this.state = 3153; this.match(MySqlParser.KW_TABLESPACE); - this.state = 3144; + this.state = 3154; this.tablespaceName(); - this.state = 3150; + this.state = 3160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 3145; + this.state = 3155; this.match(MySqlParser.KW_ENGINE); - this.state = 3147; + this.state = 3157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3146; + this.state = 3156; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3149; + this.state = 3159; this.engineName(); } } @@ -17427,21 +17433,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3152; + this.state = 3162; this.match(MySqlParser.KW_DROP); - this.state = 3153; + this.state = 3163; this.match(MySqlParser.KW_TRIGGER); - this.state = 3155; + this.state = 3165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 3154; + this.state = 3164; this.ifExists(); } break; } - this.state = 3157; + this.state = 3167; localContext._trigger_name = this.fullId(); } } @@ -17466,44 +17472,44 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3159; + this.state = 3169; this.match(MySqlParser.KW_DROP); - this.state = 3160; + this.state = 3170; this.match(MySqlParser.KW_VIEW); - this.state = 3162; + this.state = 3172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 3161; + this.state = 3171; this.ifExists(); } break; } - this.state = 3164; + this.state = 3174; this.viewName(); - this.state = 3169; + this.state = 3179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3165; + this.state = 3175; this.match(MySqlParser.COMMA); - this.state = 3166; + this.state = 3176; this.viewName(); } } - this.state = 3171; + this.state = 3181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3173; + this.state = 3183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3172; + this.state = 3182; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -17538,21 +17544,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3175; + this.state = 3185; this.match(MySqlParser.KW_DROP); - this.state = 3176; + this.state = 3186; this.match(MySqlParser.KW_ROLE); - this.state = 3178; + this.state = 3188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 3177; + this.state = 3187; this.ifExists(); } break; } - this.state = 3180; + this.state = 3190; this.userOrRoleNames(); } } @@ -17575,61 +17581,61 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 176, MySqlParser.RULE_setRole); let _la: number; try { - this.state = 3202; + this.state = 3212; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3182; + this.state = 3192; this.match(MySqlParser.KW_SET); - this.state = 3183; + this.state = 3193; this.match(MySqlParser.KW_DEFAULT); - this.state = 3184; + this.state = 3194; this.match(MySqlParser.KW_ROLE); - this.state = 3188; + this.state = 3198; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3185; + this.state = 3195; this.match(MySqlParser.KW_NONE); } break; case 2: { - this.state = 3186; + this.state = 3196; this.match(MySqlParser.KW_ALL); } break; case 3: { - this.state = 3187; + this.state = 3197; this.userOrRoleNames(); } break; } - this.state = 3190; + this.state = 3200; this.match(MySqlParser.KW_TO); { - this.state = 3191; + this.state = 3201; this.userOrRoleName(); } - this.state = 3196; + this.state = 3206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3192; + this.state = 3202; this.match(MySqlParser.COMMA); { - this.state = 3193; + this.state = 3203; this.userOrRoleName(); } } } - this.state = 3198; + this.state = 3208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17638,11 +17644,11 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3199; + this.state = 3209; this.match(MySqlParser.KW_SET); - this.state = 3200; + this.state = 3210; this.match(MySqlParser.KW_ROLE); - this.state = 3201; + this.state = 3211; this.roleOption(); } break; @@ -17669,25 +17675,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3204; + this.state = 3214; this.match(MySqlParser.KW_RENAME); - this.state = 3205; + this.state = 3215; this.match(MySqlParser.KW_TABLE); - this.state = 3206; + this.state = 3216; this.renameTableClause(); - this.state = 3211; + this.state = 3221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3207; + this.state = 3217; this.match(MySqlParser.COMMA); - this.state = 3208; + this.state = 3218; this.renameTableClause(); } } - this.state = 3213; + this.state = 3223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17713,11 +17719,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3214; + this.state = 3224; this.tableName(); - this.state = 3215; + this.state = 3225; this.match(MySqlParser.KW_TO); - this.state = 3216; + this.state = 3226; this.tableNameCreate(); } } @@ -17742,19 +17748,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3218; + this.state = 3228; this.match(MySqlParser.KW_TRUNCATE); - this.state = 3220; + this.state = 3230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 173) { { - this.state = 3219; + this.state = 3229; this.match(MySqlParser.KW_TABLE); } } - this.state = 3222; + this.state = 3232; this.tableName(); } } @@ -17778,34 +17784,34 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3224; + this.state = 3234; this.match(MySqlParser.KW_CALL); - this.state = 3225; + this.state = 3235; localContext._sp_name = this.fullId(); - this.state = 3232; + this.state = 3242; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3226; + this.state = 3236; this.match(MySqlParser.LR_BRACKET); - this.state = 3229; + this.state = 3239; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: { - this.state = 3227; + this.state = 3237; this.constants(); } break; case 2: { - this.state = 3228; + this.state = 3238; this.expressions(); } break; } - this.state = 3231; + this.state = 3241; this.match(MySqlParser.RR_BRACKET); } break; @@ -17830,20 +17836,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 186, MySqlParser.RULE_deleteStatement); try { - this.state = 3236; + this.state = 3246; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3234; + this.state = 3244; this.singleDeleteStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3235; + this.state = 3245; this.multipleDeleteStatement(); } break; @@ -17869,9 +17875,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3238; + this.state = 3248; this.match(MySqlParser.KW_DO); - this.state = 3239; + this.state = 3249; this.expressions(); } } @@ -17893,34 +17899,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new HandlerStatementContext(this.context, this.state); this.enterRule(localContext, 190, MySqlParser.RULE_handlerStatement); try { - this.state = 3245; + this.state = 3255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3241; + this.state = 3251; this.handlerOpenStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3242; + this.state = 3252; this.handlerReadIndexStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3243; + this.state = 3253; this.handlerReadStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3244; + this.state = 3254; this.handlerCloseStatement(); } break; @@ -17947,14 +17953,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3247; + this.state = 3257; this.match(MySqlParser.KW_INSERT); - this.state = 3249; + this.state = 3259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 76 || _la === 107) { { - this.state = 3248; + this.state = 3258; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 76 || _la === 107)) { @@ -17967,89 +17973,89 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3252; + this.state = 3262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3251; + this.state = 3261; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3255; + this.state = 3265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3254; + this.state = 3264; this.match(MySqlParser.KW_INTO); } } - this.state = 3257; + this.state = 3267; this.tableName(); - this.state = 3264; + this.state = 3274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3258; + this.state = 3268; this.match(MySqlParser.KW_PARTITION); - this.state = 3259; + this.state = 3269; this.match(MySqlParser.LR_BRACKET); - this.state = 3261; + this.state = 3271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3260; + this.state = 3270; this.partitionNames(); } } - this.state = 3263; + this.state = 3273; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3277; + this.state = 3287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: { - this.state = 3267; + this.state = 3277; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 3266; + this.state = 3276; this.fullColumnNames(); } break; } - this.state = 3271; + this.state = 3281; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: { - this.state = 3269; + this.state = 3279; this.valuesOrValueList(); } break; case 2: { - this.state = 3270; + this.state = 3280; this.selectOrTableOrValues(); } break; } - this.state = 3274; + this.state = 3284; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3273; + this.state = 3283; this.asRowAlias(); } break; @@ -18058,50 +18064,50 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 3276; + this.state = 3286; this.setAssignmentList(); } break; } - this.state = 3280; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3279; + this.state = 3289; this.asRowAlias(); } } - this.state = 3294; + this.state = 3304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3282; + this.state = 3292; this.match(MySqlParser.KW_ON); - this.state = 3283; + this.state = 3293; this.match(MySqlParser.KW_DUPLICATE); - this.state = 3284; + this.state = 3294; this.match(MySqlParser.KW_KEY); - this.state = 3285; + this.state = 3295; this.match(MySqlParser.KW_UPDATE); - this.state = 3286; + this.state = 3296; localContext._duplicatedFirst = this.updatedElement(); - this.state = 3291; + this.state = 3301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3287; + this.state = 3297; this.match(MySqlParser.COMMA); - this.state = 3288; + this.state = 3298; localContext._updatedElement = this.updatedElement(); localContext._duplicatedElements.push(localContext._updatedElement); } } - this.state = 3293; + this.state = 3303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18130,16 +18136,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3296; + this.state = 3306; this.match(MySqlParser.KW_AS); - this.state = 3297; + this.state = 3307; localContext._rowAlias = this.uid(); - this.state = 3299; + this.state = 3309; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { - this.state = 3298; + this.state = 3308; this.fullColumnNames(); } break; @@ -18164,30 +18170,30 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectOrTableOrValuesContext(this.context, this.state); this.enterRule(localContext, 196, MySqlParser.RULE_selectOrTableOrValues); try { - this.state = 3305; + this.state = 3315; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3301; + this.state = 3311; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3302; + this.state = 3312; this.match(MySqlParser.KW_TABLE); - this.state = 3303; + this.state = 3313; this.tableName(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3304; + this.state = 3314; this.rowValuesList(); } break; @@ -18216,22 +18222,22 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3307; + this.state = 3317; this.interSectQuery(); - this.state = 3313; + this.state = 3323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3308; + this.state = 3318; this.match(MySqlParser.KW_INTERSECT); - this.state = 3310; + this.state = 3320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3309; + this.state = 3319; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18243,11 +18249,11 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3312; + this.state = 3322; this.interSectQuery(); } } - this.state = 3315; + this.state = 3325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 828); @@ -18274,24 +18280,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3318; + this.state = 3328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 3317; + this.state = 3327; this.match(MySqlParser.LR_BRACKET); } } - this.state = 3320; + this.state = 3330; this.querySpecification(); - this.state = 3322; + this.state = 3332; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3321; + this.state = 3331; this.match(MySqlParser.RR_BRACKET); } break; @@ -18319,16 +18325,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3324; + this.state = 3334; this.match(MySqlParser.KW_LOAD); - this.state = 3325; + this.state = 3335; this.match(MySqlParser.KW_DATA); - this.state = 3327; + this.state = 3337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3326; + this.state = 3336; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -18341,26 +18347,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3330; + this.state = 3340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3329; + this.state = 3339; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3332; + this.state = 3342; this.match(MySqlParser.KW_INFILE); - this.state = 3333; + this.state = 3343; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3335; + this.state = 3345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3334; + this.state = 3344; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -18373,48 +18379,48 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3337; + this.state = 3347; this.match(MySqlParser.KW_INTO); - this.state = 3338; + this.state = 3348; this.match(MySqlParser.KW_TABLE); - this.state = 3339; + this.state = 3349; this.tableName(); - this.state = 3345; + this.state = 3355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3340; + this.state = 3350; this.match(MySqlParser.KW_PARTITION); - this.state = 3341; + this.state = 3351; this.match(MySqlParser.LR_BRACKET); - this.state = 3342; + this.state = 3352; this.partitionNames(); - this.state = 3343; + this.state = 3353; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3350; + this.state = 3360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3347; + this.state = 3357; this.match(MySqlParser.KW_CHARACTER); - this.state = 3348; + this.state = 3358; this.match(MySqlParser.KW_SET); - this.state = 3349; + this.state = 3359; localContext._charset = this.charsetName(); } } - this.state = 3358; + this.state = 3368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 337 || _la === 398) { { - this.state = 3352; + this.state = 3362; localContext._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -18424,57 +18430,57 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3354; + this.state = 3364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3353; + this.state = 3363; this.selectFieldsInto(); } } - this.state = 3356; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 56 || _la === 58 || _la === 123 || _la === 174); } } - this.state = 3366; + this.state = 3376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3360; + this.state = 3370; this.match(MySqlParser.KW_LINES); - this.state = 3362; + this.state = 3372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3361; + this.state = 3371; this.selectLinesInto(); } } - this.state = 3364; + this.state = 3374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 171 || _la === 174); } } - this.state = 3372; + this.state = 3382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3368; + this.state = 3378; this.match(MySqlParser.KW_IGNORE); - this.state = 3369; + this.state = 3379; this.decimalLiteral(); - this.state = 3370; + this.state = 3380; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -18487,58 +18493,58 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3385; + this.state = 3395; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: { - this.state = 3374; + this.state = 3384; this.match(MySqlParser.LR_BRACKET); - this.state = 3375; + this.state = 3385; this.assignmentField(); - this.state = 3380; + this.state = 3390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3376; + this.state = 3386; this.match(MySqlParser.COMMA); - this.state = 3377; + this.state = 3387; this.assignmentField(); } } - this.state = 3382; + this.state = 3392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3383; + this.state = 3393; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3396; + this.state = 3406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3387; + this.state = 3397; this.match(MySqlParser.KW_SET); - this.state = 3388; + this.state = 3398; this.updatedElement(); - this.state = 3393; + this.state = 3403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3389; + this.state = 3399; this.match(MySqlParser.COMMA); - this.state = 3390; + this.state = 3400; this.updatedElement(); } } - this.state = 3395; + this.state = 3405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18568,16 +18574,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3398; + this.state = 3408; this.match(MySqlParser.KW_LOAD); - this.state = 3399; + this.state = 3409; this.match(MySqlParser.KW_XML); - this.state = 3401; + this.state = 3411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3400; + this.state = 3410; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -18590,26 +18596,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3404; + this.state = 3414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3403; + this.state = 3413; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3406; + this.state = 3416; this.match(MySqlParser.KW_INFILE); - this.state = 3407; + this.state = 3417; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3409; + this.state = 3419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3408; + this.state = 3418; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -18622,55 +18628,55 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3411; + this.state = 3421; this.match(MySqlParser.KW_INTO); - this.state = 3412; + this.state = 3422; this.match(MySqlParser.KW_TABLE); - this.state = 3413; + this.state = 3423; this.tableName(); - this.state = 3417; + this.state = 3427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3414; + this.state = 3424; this.match(MySqlParser.KW_CHARACTER); - this.state = 3415; + this.state = 3425; this.match(MySqlParser.KW_SET); - this.state = 3416; + this.state = 3426; localContext._charset = this.charsetName(); } } - this.state = 3429; + this.state = 3439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 587) { { - this.state = 3419; + this.state = 3429; this.match(MySqlParser.KW_ROWS); - this.state = 3420; + this.state = 3430; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 3421; + this.state = 3431; this.match(MySqlParser.KW_BY); - this.state = 3423; + this.state = 3433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 859) { { - this.state = 3422; + this.state = 3432; this.match(MySqlParser.LESS_SYMBOL); } } - this.state = 3425; + this.state = 3435; localContext._tag = this.match(MySqlParser.STRING_LITERAL); - this.state = 3427; + this.state = 3437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 858) { { - this.state = 3426; + this.state = 3436; this.match(MySqlParser.GREATER_SYMBOL); } } @@ -18678,16 +18684,16 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3435; + this.state = 3445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3431; + this.state = 3441; this.match(MySqlParser.KW_IGNORE); - this.state = 3432; + this.state = 3442; this.decimalLiteral(); - this.state = 3433; + this.state = 3443; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -18700,58 +18706,58 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3448; + this.state = 3458; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3437; + this.state = 3447; this.match(MySqlParser.LR_BRACKET); - this.state = 3438; + this.state = 3448; this.assignmentField(); - this.state = 3443; + this.state = 3453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3439; + this.state = 3449; this.match(MySqlParser.COMMA); - this.state = 3440; + this.state = 3450; this.assignmentField(); } } - this.state = 3445; + this.state = 3455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3446; + this.state = 3456; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3459; + this.state = 3469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3450; + this.state = 3460; this.match(MySqlParser.KW_SET); - this.state = 3451; + this.state = 3461; this.updatedElement(); - this.state = 3456; + this.state = 3466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3452; + this.state = 3462; this.match(MySqlParser.COMMA); - this.state = 3453; + this.state = 3463; this.updatedElement(); } } - this.state = 3458; + this.state = 3468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18781,58 +18787,58 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3471; this.match(MySqlParser.LR_BRACKET); - this.state = 3462; + this.state = 3472; this.parenthesizedQueryExpression(); - this.state = 3464; + this.state = 3474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3463; + this.state = 3473; this.orderByClause(); } } - this.state = 3467; + this.state = 3477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3466; + this.state = 3476; this.limitClause(); } } - this.state = 3469; + this.state = 3479; this.match(MySqlParser.RR_BRACKET); - this.state = 3471; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3470; + this.state = 3480; this.orderByClause(); } } - this.state = 3474; + this.state = 3484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3473; + this.state = 3483; this.limitClause(); } } - this.state = 3477; + this.state = 3487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3476; + this.state = 3486; this.intoClause(); } } @@ -18860,14 +18866,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3479; + this.state = 3489; this.match(MySqlParser.KW_REPLACE); - this.state = 3481; + this.state = 3491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 107) { { - this.state = 3480; + this.state = 3490; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 107)) { @@ -18880,35 +18886,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3484; + this.state = 3494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3483; + this.state = 3493; this.match(MySqlParser.KW_INTO); } } - this.state = 3486; + this.state = 3496; this.tableName(); - this.state = 3492; + this.state = 3502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3487; + this.state = 3497; this.match(MySqlParser.KW_PARTITION); - this.state = 3488; + this.state = 3498; this.match(MySqlParser.LR_BRACKET); - this.state = 3489; + this.state = 3499; this.partitionNames(); - this.state = 3490; + this.state = 3500; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3502; + this.state = 3512; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: @@ -18917,27 +18923,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VALUE: case MySqlParser.LR_BRACKET: { - this.state = 3498; + this.state = 3508; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3494; + this.state = 3504; this.match(MySqlParser.LR_BRACKET); - this.state = 3495; + this.state = 3505; this.columnNames(); - this.state = 3496; + this.state = 3506; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3500; + this.state = 3510; this.replaceStatementValuesOrSelectOrTable(); } break; case MySqlParser.KW_SET: { - this.state = 3501; + this.state = 3511; this.setAssignmentList(); } break; @@ -18966,44 +18972,44 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3563; + this.state = 3573; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: localContext = new UnionAndLateralSelectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3504; + this.state = 3514; this.querySpecification(); - this.state = 3508; + this.state = 3518; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3505; + this.state = 3515; this.unionStatement(); } } } - this.state = 3510; + this.state = 3520; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } - this.state = 3519; + this.state = 3529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3511; + this.state = 3521; this.match(MySqlParser.KW_UNION); - this.state = 3513; + this.state = 3523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3512; + this.state = 3522; (localContext as UnionAndLateralSelectContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -19016,18 +19022,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3517; + this.state = 3527; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 3515; + this.state = 3525; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3516; + this.state = 3526; this.queryExpression(); } break; @@ -19037,60 +19043,60 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 3525; + this.state = 3535; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3521; + this.state = 3531; this.match(MySqlParser.COMMA); - this.state = 3522; + this.state = 3532; this.lateralStatement(); } } } - this.state = 3527; + this.state = 3537; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); } - this.state = 3529; + this.state = 3539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 3528; + this.state = 3538; this.orderByClause(); } break; } - this.state = 3532; + this.state = 3542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 3531; + this.state = 3541; this.limitClause(); } break; } - this.state = 3535; + this.state = 3545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: { - this.state = 3534; + this.state = 3544; this.lockClause(); } break; } - this.state = 3538; + this.state = 3548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3537; + this.state = 3547; this.intoClause(); } break; @@ -19101,37 +19107,37 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectExpressionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3540; + this.state = 3550; this.queryExpression(); - this.state = 3544; + this.state = 3554; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3541; + this.state = 3551; this.unionStatement(); } } } - this.state = 3546; + this.state = 3556; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); } - this.state = 3552; + this.state = 3562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3547; + this.state = 3557; this.match(MySqlParser.KW_UNION); - this.state = 3549; + this.state = 3559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3548; + this.state = 3558; (localContext as SelectExpressionContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -19144,37 +19150,37 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3551; + this.state = 3561; this.queryExpression(); } break; } - this.state = 3555; + this.state = 3565; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3554; + this.state = 3564; this.orderByClause(); } break; } - this.state = 3558; + this.state = 3568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3557; + this.state = 3567; this.limitClause(); } break; } - this.state = 3561; + this.state = 3571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3560; + this.state = 3570; this.lockClause(); } break; @@ -19206,44 +19212,44 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3566; + this.state = 3576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 3565; + this.state = 3575; this.withClause(); } } - this.state = 3568; + this.state = 3578; this.queryExpressionBody(0); - this.state = 3570; + this.state = 3580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3569; + this.state = 3579; this.orderByClause(); } } - this.state = 3573; + this.state = 3583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3572; + this.state = 3582; this.limitClause(); } } - this.state = 3576; + this.state = 3586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3575; + this.state = 3585; this.intoClause(); } } @@ -19284,11 +19290,11 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 3579; + this.state = 3589; this.queryItem(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3595; + this.state = 3605; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -19298,25 +19304,25 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3593; + this.state = 3603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3581; + this.state = 3591; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3582; + this.state = 3592; this.match(MySqlParser.KW_UNION); - this.state = 3584; + this.state = 3594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3583; + this.state = 3593; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19328,7 +19334,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3586; + this.state = 3596; this.queryItem(0); } break; @@ -19336,18 +19342,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3587; + this.state = 3597; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3588; + this.state = 3598; this.match(MySqlParser.KW_EXCEPT); - this.state = 3590; + this.state = 3600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3589; + this.state = 3599; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19359,14 +19365,14 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3592; + this.state = 3602; this.queryItem(0); } break; } } } - this.state = 3597; + this.state = 3607; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); } @@ -19406,11 +19412,11 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 3599; + this.state = 3609; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3609; + this.state = 3619; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -19423,18 +19429,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new QueryItemContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryItem); - this.state = 3601; + this.state = 3611; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3602; + this.state = 3612; this.match(MySqlParser.KW_INTERSECT); - this.state = 3604; + this.state = 3614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3603; + this.state = 3613; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19446,12 +19452,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3606; + this.state = 3616; this.queryPrimary(); } } } - this.state = 3611; + this.state = 3621; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); } @@ -19476,54 +19482,54 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 218, MySqlParser.RULE_queryPrimary); let _la: number; try { - this.state = 3626; + this.state = 3636; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3612; + this.state = 3622; this.queryBlock(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3613; + this.state = 3623; this.match(MySqlParser.LR_BRACKET); - this.state = 3614; + this.state = 3624; this.queryExpressionBody(0); - this.state = 3616; + this.state = 3626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3615; + this.state = 3625; this.orderByClause(); } } - this.state = 3619; + this.state = 3629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3618; + this.state = 3628; this.limitClause(); } } - this.state = 3622; + this.state = 3632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3621; + this.state = 3631; this.intoClause(); } } - this.state = 3624; + this.state = 3634; this.match(MySqlParser.RR_BRACKET); } break; @@ -19547,20 +19553,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new UpdateStatementContext(this.context, this.state); this.enterRule(localContext, 220, MySqlParser.RULE_updateStatement); try { - this.state = 3630; + this.state = 3640; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3628; + this.state = 3638; this.singleUpdateStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3629; + this.state = 3639; this.multipleUpdateStatement(); } break; @@ -19586,30 +19592,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3632; + this.state = 3642; this.rowValuesList(); - this.state = 3636; + this.state = 3646; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: { - this.state = 3633; + this.state = 3643; this.match(MySqlParser.KW_ORDER); - this.state = 3634; + this.state = 3644; this.match(MySqlParser.KW_BY); - this.state = 3635; + this.state = 3645; this.indexColumnName(); } break; } - this.state = 3640; + this.state = 3650; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3638; + this.state = 3648; this.match(MySqlParser.KW_LIMIT); - this.state = 3639; + this.state = 3649; this.limitClauseAtom(); } break; @@ -19637,15 +19643,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3642; + this.state = 3652; this.queryBlock(); - this.state = 3647; + this.state = 3657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 59 || _la === 181 || _la === 828) { { { - this.state = 3643; + this.state = 3653; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 181 || _la === 828)) { this.errorHandler.recoverInline(this); @@ -19654,40 +19660,40 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3644; + this.state = 3654; this.queryBlock(); } } - this.state = 3649; + this.state = 3659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3651; + this.state = 3661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 3650; + this.state = 3660; this.orderByClause(); } break; } - this.state = 3654; + this.state = 3664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 3653; + this.state = 3663; this.limitClause(); } break; } - this.state = 3657; + this.state = 3667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3656; + this.state = 3666; this.intoClause(); } } @@ -19712,28 +19718,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new QueryBlockContext(this.context, this.state); this.enterRule(localContext, 226, MySqlParser.RULE_queryBlock); try { - this.state = 3662; + this.state = 3672; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3659; + this.state = 3669; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3660; + this.state = 3670; this.tableStatement(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3661; + this.state = 3671; this.valuesStatement(); } break; @@ -19759,36 +19765,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReplaceStatementValuesOrSelectOrTableContext(this.context, this.state); this.enterRule(localContext, 228, MySqlParser.RULE_replaceStatementValuesOrSelectOrTable); try { - this.state = 3669; + this.state = 3679; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3664; + this.state = 3674; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3665; + this.state = 3675; this.match(MySqlParser.KW_TABLE); - this.state = 3666; + this.state = 3676; this.tableName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3667; + this.state = 3677; this.valuesOrValueList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3668; + this.state = 3678; this.rowValuesList(); } break; @@ -19815,29 +19821,29 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3671; + this.state = 3681; this.match(MySqlParser.KW_VALUES); - this.state = 3672; + this.state = 3682; this.match(MySqlParser.KW_ROW); - this.state = 3673; + this.state = 3683; this.expressionsWithDefaults(); - this.state = 3679; + this.state = 3689; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3674; + this.state = 3684; this.match(MySqlParser.COMMA); - this.state = 3675; + this.state = 3685; this.match(MySqlParser.KW_ROW); - this.state = 3676; + this.state = 3686; this.expressionsWithDefaults(); } } } - this.state = 3681; + this.state = 3691; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); } @@ -19864,24 +19870,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3682; + this.state = 3692; this.match(MySqlParser.KW_SET); - this.state = 3683; + this.state = 3693; localContext._setFirst = this.updatedElement(); - this.state = 3688; + this.state = 3698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3684; + this.state = 3694; this.match(MySqlParser.COMMA); - this.state = 3685; + this.state = 3695; localContext._updatedElement = this.updatedElement(); localContext._setElements.push(localContext._updatedElement); } } - this.state = 3690; + this.state = 3700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19907,11 +19913,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3691; + this.state = 3701; this.columnName(); - this.state = 3692; + this.state = 3702; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 3693; + this.state = 3703; this.expressionOrDefault(); } } @@ -19933,7 +19939,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new AssignmentFieldContext(this.context, this.state); this.enterRule(localContext, 236, MySqlParser.RULE_assignmentField); try { - this.state = 3697; + this.state = 3707; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -20487,14 +20493,14 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 3695; + this.state = 3705; localContext._var_name = this.uid(); } break; case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 3696; + this.state = 3706; this.match(MySqlParser.LOCAL_ID); } break; @@ -20522,15 +20528,15 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3720; + this.state = 3730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 3699; + this.state = 3709; this.match(MySqlParser.KW_FOR); - this.state = 3700; + this.state = 3710; _la = this.tokenStream.LA(1); if(!(_la === 185 || _la === 594)) { this.errorHandler.recoverInline(this); @@ -20539,42 +20545,42 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3710; + this.state = 3720; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: { - this.state = 3701; + this.state = 3711; this.match(MySqlParser.KW_OF); - this.state = 3702; + this.state = 3712; this.tableName(); - this.state = 3707; + this.state = 3717; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3703; + this.state = 3713; this.match(MySqlParser.COMMA); - this.state = 3704; + this.state = 3714; this.tableName(); } } } - this.state = 3709; + this.state = 3719; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); } } break; } - this.state = 3714; + this.state = 3724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3712; + this.state = 3722; _la = this.tokenStream.LA(1); if(!(_la === 159 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -20583,7 +20589,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3713; + this.state = 3723; this.match(MySqlParser.KW_LOCKED); } break; @@ -20593,13 +20599,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LOCK: this.enterOuterAlt(localContext, 2); { - this.state = 3716; + this.state = 3726; this.match(MySqlParser.KW_LOCK); - this.state = 3717; + this.state = 3727; this.match(MySqlParser.KW_IN); - this.state = 3718; + this.state = 3728; this.match(MySqlParser.KW_SHARE); - this.state = 3719; + this.state = 3729; this.match(MySqlParser.KW_MODE); } break; @@ -20628,108 +20634,108 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3722; + this.state = 3732; this.match(MySqlParser.KW_DELETE); - this.state = 3724; + this.state = 3734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3723; + this.state = 3733; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3727; + this.state = 3737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 3726; + this.state = 3736; this.match(MySqlParser.KW_QUICK); } } - this.state = 3730; + this.state = 3740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3729; + this.state = 3739; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3732; + this.state = 3742; this.match(MySqlParser.KW_FROM); - this.state = 3733; + this.state = 3743; this.tableName(); - this.state = 3738; + this.state = 3748; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 3735; + this.state = 3745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3734; + this.state = 3744; this.match(MySqlParser.KW_AS); } } - this.state = 3737; + this.state = 3747; localContext._table_alias = this.uid(); } break; } - this.state = 3745; + this.state = 3755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3740; + this.state = 3750; this.match(MySqlParser.KW_PARTITION); - this.state = 3741; + this.state = 3751; this.match(MySqlParser.LR_BRACKET); - this.state = 3742; + this.state = 3752; this.partitionNames(); - this.state = 3743; + this.state = 3753; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3749; + this.state = 3759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3747; + this.state = 3757; this.match(MySqlParser.KW_WHERE); - this.state = 3748; + this.state = 3758; this.expression(0); } } - this.state = 3752; + this.state = 3762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3751; + this.state = 3761; this.orderByClause(); } } - this.state = 3756; + this.state = 3766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3754; + this.state = 3764; this.match(MySqlParser.KW_LIMIT); - this.state = 3755; + this.state = 3765; this.limitClauseAtom(); } } @@ -20757,39 +20763,39 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3758; + this.state = 3768; this.match(MySqlParser.KW_DELETE); - this.state = 3760; + this.state = 3770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3759; + this.state = 3769; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3763; + this.state = 3773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 3762; + this.state = 3772; this.match(MySqlParser.KW_QUICK); } break; } - this.state = 3766; + this.state = 3776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3765; + this.state = 3775; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3807; + this.state = 3817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -21342,117 +21348,117 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3768; + this.state = 3778; this.tableName(); - this.state = 3771; + this.state = 3781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3769; + this.state = 3779; this.match(MySqlParser.DOT); - this.state = 3770; + this.state = 3780; this.match(MySqlParser.STAR); } } - this.state = 3781; + this.state = 3791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3773; + this.state = 3783; this.match(MySqlParser.COMMA); - this.state = 3774; + this.state = 3784; this.tableName(); - this.state = 3777; + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3775; + this.state = 3785; this.match(MySqlParser.DOT); - this.state = 3776; + this.state = 3786; this.match(MySqlParser.STAR); } } } } - this.state = 3783; + this.state = 3793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3784; + this.state = 3794; this.match(MySqlParser.KW_FROM); - this.state = 3785; + this.state = 3795; this.tableSources(); } break; case MySqlParser.KW_FROM: { - this.state = 3787; + this.state = 3797; this.match(MySqlParser.KW_FROM); - this.state = 3788; + this.state = 3798; this.tableName(); - this.state = 3791; + this.state = 3801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3789; + this.state = 3799; this.match(MySqlParser.DOT); - this.state = 3790; + this.state = 3800; this.match(MySqlParser.STAR); } } - this.state = 3801; + this.state = 3811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3793; + this.state = 3803; this.match(MySqlParser.COMMA); - this.state = 3794; + this.state = 3804; this.tableName(); - this.state = 3797; + this.state = 3807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3795; + this.state = 3805; this.match(MySqlParser.DOT); - this.state = 3796; + this.state = 3806; this.match(MySqlParser.STAR); } } } } - this.state = 3803; + this.state = 3813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3804; + this.state = 3814; this.match(MySqlParser.KW_USING); - this.state = 3805; + this.state = 3815; this.tableSources(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3811; + this.state = 3821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3809; + this.state = 3819; this.match(MySqlParser.KW_WHERE); - this.state = 3810; + this.state = 3820; this.expression(0); } } @@ -21480,28 +21486,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3813; + this.state = 3823; this.match(MySqlParser.KW_HANDLER); - this.state = 3814; + this.state = 3824; this.tableName(); - this.state = 3815; + this.state = 3825; this.match(MySqlParser.KW_OPEN); - this.state = 3820; + this.state = 3830; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { case 1: { - this.state = 3817; + this.state = 3827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3816; + this.state = 3826; this.match(MySqlParser.KW_AS); } } - this.state = 3819; + this.state = 3829; localContext._table_alias = this.uid(); } break; @@ -21529,28 +21535,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3822; + this.state = 3832; this.match(MySqlParser.KW_HANDLER); - this.state = 3823; + this.state = 3833; this.tableName(); - this.state = 3824; + this.state = 3834; this.match(MySqlParser.KW_READ); - this.state = 3825; + this.state = 3835; this.indexName(); - this.state = 3832; + this.state = 3842; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.EQUAL_SYMBOL: case MySqlParser.GREATER_SYMBOL: case MySqlParser.LESS_SYMBOL: { - this.state = 3826; + this.state = 3836; this.comparisonBase(); - this.state = 3827; + this.state = 3837; this.match(MySqlParser.LR_BRACKET); - this.state = 3828; + this.state = 3838; this.constants(); - this.state = 3829; + this.state = 3839; this.match(MySqlParser.RR_BRACKET); } break; @@ -21559,7 +21565,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_NEXT: case MySqlParser.KW_PREV: { - this.state = 3831; + this.state = 3841; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 501 || _la === 542)) { @@ -21574,26 +21580,26 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3836; + this.state = 3846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3834; + this.state = 3844; this.match(MySqlParser.KW_WHERE); - this.state = 3835; + this.state = 3845; this.expression(0); } } - this.state = 3840; + this.state = 3850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3838; + this.state = 3848; this.match(MySqlParser.KW_LIMIT); - this.state = 3839; + this.state = 3849; this.limitClauseAtom(); } } @@ -21621,13 +21627,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3842; + this.state = 3852; this.match(MySqlParser.KW_HANDLER); - this.state = 3843; + this.state = 3853; this.tableName(); - this.state = 3844; + this.state = 3854; this.match(MySqlParser.KW_READ); - this.state = 3845; + this.state = 3855; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 501)) { @@ -21637,26 +21643,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3848; + this.state = 3858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3846; + this.state = 3856; this.match(MySqlParser.KW_WHERE); - this.state = 3847; + this.state = 3857; this.expression(0); } } - this.state = 3852; + this.state = 3862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3850; + this.state = 3860; this.match(MySqlParser.KW_LIMIT); - this.state = 3851; + this.state = 3861; this.limitClauseAtom(); } } @@ -21683,11 +21689,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3854; + this.state = 3864; this.match(MySqlParser.KW_HANDLER); - this.state = 3855; + this.state = 3865; this.tableName(); - this.state = 3856; + this.state = 3866; this.match(MySqlParser.KW_CLOSE); } } @@ -21712,27 +21718,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3858; + this.state = 3868; this.match(MySqlParser.KW_IMPORT); - this.state = 3859; + this.state = 3869; this.match(MySqlParser.KW_TABLE); - this.state = 3860; + this.state = 3870; this.match(MySqlParser.KW_FROM); - this.state = 3861; + this.state = 3871; this.stringLiteral(); - this.state = 3866; + this.state = 3876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3862; + this.state = 3872; this.match(MySqlParser.COMMA); - this.state = 3863; + this.state = 3873; this.stringLiteral(); } } - this.state = 3868; + this.state = 3878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21759,98 +21765,98 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3869; + this.state = 3879; this.match(MySqlParser.KW_UPDATE); - this.state = 3871; + this.state = 3881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3870; + this.state = 3880; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3874; + this.state = 3884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3873; + this.state = 3883; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3876; + this.state = 3886; this.tableName(); - this.state = 3881; + this.state = 3891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3878; + this.state = 3888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3877; + this.state = 3887; this.match(MySqlParser.KW_AS); } } - this.state = 3880; + this.state = 3890; localContext._table_alias = this.uid(); } } - this.state = 3883; + this.state = 3893; this.match(MySqlParser.KW_SET); - this.state = 3884; + this.state = 3894; this.updatedElement(); - this.state = 3889; + this.state = 3899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3885; + this.state = 3895; this.match(MySqlParser.COMMA); - this.state = 3886; + this.state = 3896; this.updatedElement(); } } - this.state = 3891; + this.state = 3901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3894; + this.state = 3904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3892; + this.state = 3902; this.match(MySqlParser.KW_WHERE); - this.state = 3893; + this.state = 3903; this.expression(0); } } - this.state = 3897; + this.state = 3907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3896; + this.state = 3906; this.orderByClause(); } } - this.state = 3900; + this.state = 3910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3899; + this.state = 3909; this.limitClause(); } } @@ -21878,58 +21884,58 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3902; + this.state = 3912; this.match(MySqlParser.KW_UPDATE); - this.state = 3904; + this.state = 3914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3903; + this.state = 3913; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3907; + this.state = 3917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3906; + this.state = 3916; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3909; + this.state = 3919; this.tableSources(); - this.state = 3910; + this.state = 3920; this.match(MySqlParser.KW_SET); - this.state = 3911; + this.state = 3921; this.updatedElement(); - this.state = 3916; + this.state = 3926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3912; + this.state = 3922; this.match(MySqlParser.COMMA); - this.state = 3913; + this.state = 3923; this.updatedElement(); } } - this.state = 3918; + this.state = 3928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3921; + this.state = 3931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3919; + this.state = 3929; this.match(MySqlParser.KW_WHERE); - this.state = 3920; + this.state = 3930; this.expression(0); } } @@ -21957,27 +21963,27 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3923; + this.state = 3933; this.match(MySqlParser.KW_ORDER); - this.state = 3924; + this.state = 3934; this.match(MySqlParser.KW_BY); - this.state = 3925; + this.state = 3935; this.orderByExpression(); - this.state = 3930; + this.state = 3940; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3926; + this.state = 3936; this.match(MySqlParser.COMMA); - this.state = 3927; + this.state = 3937; this.orderByExpression(); } } } - this.state = 3932; + this.state = 3942; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); } @@ -22004,14 +22010,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3933; + this.state = 3943; this.expression(0); - this.state = 3935; + this.state = 3945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 3934; + this.state = 3944; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -22047,23 +22053,23 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3937; + this.state = 3947; this.tableSource(); - this.state = 3942; + this.state = 3952; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3938; + this.state = 3948; this.match(MySqlParser.COMMA); - this.state = 3939; + this.state = 3949; this.tableSource(); } } } - this.state = 3944; + this.state = 3954; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); } @@ -22089,28 +22095,28 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3963; + this.state = 3973; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: localContext = new TableSourceBaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3945; + this.state = 3955; this.tableSourceItem(); - this.state = 3949; + this.state = 3959; 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 = 3946; + this.state = 3956; this.joinPart(); } } } - this.state = 3951; + this.state = 3961; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); } @@ -22120,25 +22126,25 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourceNestedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3952; + this.state = 3962; this.match(MySqlParser.LR_BRACKET); - this.state = 3953; + this.state = 3963; this.tableSourceItem(); - this.state = 3957; + this.state = 3967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 35 || ((((_la - 84)) & ~0x1F) === 0 && ((1 << (_la - 84)) & 536887425) !== 0) || _la === 150 || _la === 172) { { { - this.state = 3954; + this.state = 3964; this.joinPart(); } } - this.state = 3959; + this.state = 3969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3960; + this.state = 3970; this.match(MySqlParser.RR_BRACKET); } break; @@ -22146,7 +22152,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableJsonContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3962; + this.state = 3972; this.jsonTable(); } break; @@ -22172,73 +22178,73 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4010; + this.state = 4014; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: localContext = new AtomTableItemContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3965; + this.state = 3975; this.tableName(); - this.state = 3971; + this.state = 3981; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: { - this.state = 3966; + this.state = 3976; this.match(MySqlParser.KW_PARTITION); - this.state = 3967; + this.state = 3977; this.match(MySqlParser.LR_BRACKET); - this.state = 3968; + this.state = 3978; this.partitionNames(); - this.state = 3969; + this.state = 3979; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3977; + this.state = 3987; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: { - this.state = 3974; + this.state = 3984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3973; + this.state = 3983; this.match(MySqlParser.KW_AS); } } - this.state = 3976; + this.state = 3986; (localContext as AtomTableItemContext)._alias = this.uid(); } break; } - this.state = 3987; + this.state = 3997; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 3979; + this.state = 3989; this.indexHint(); - this.state = 3984; + this.state = 3994; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3980; + this.state = 3990; this.match(MySqlParser.COMMA); - this.state = 3981; + this.state = 3991; this.indexHint(); } } } - this.state = 3986; + this.state = 3996; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); } @@ -22251,54 +22257,36 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryTableItemContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3990; + this.state = 4000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 95) { { - this.state = 3989; + this.state = 3999; this.match(MySqlParser.KW_LATERAL); } } - this.state = 3997; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { - case 1: - { - this.state = 3992; - this.selectStatement(); - } - break; - case 2: - { - this.state = 3993; - this.match(MySqlParser.LR_BRACKET); - this.state = 3994; - (localContext as SubqueryTableItemContext)._parenthesisSubquery = this.selectStatement(); - this.state = 3995; - this.match(MySqlParser.RR_BRACKET); - } - break; - } - this.state = 4000; + this.state = 4002; + this.atomSubQueryTableSource(); + this.state = 4004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3999; + this.state = 4003; this.match(MySqlParser.KW_AS); } } - this.state = 4002; + this.state = 4006; (localContext as SubqueryTableItemContext)._alias = this.uid(); - this.state = 4004; + this.state = 4008; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4003; + this.state = 4007; this.fullColumnNames(); } break; @@ -22309,11 +22297,52 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourcesItemContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4006; + this.state = 4010; this.match(MySqlParser.LR_BRACKET); - this.state = 4007; + this.state = 4011; this.tableSources(); - this.state = 4008; + this.state = 4012; + this.match(MySqlParser.RR_BRACKET); + } + 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 atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); + this.enterRule(localContext, 268, MySqlParser.RULE_atomSubQueryTableSource); + try { + this.state = 4021; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 4016; + this.selectStatement(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 4017; + this.match(MySqlParser.LR_BRACKET); + this.state = 4018; + localContext._parenthesisSubquery = this.selectStatement(); + this.state = 4019; this.match(MySqlParser.RR_BRACKET); } break; @@ -22335,15 +22364,15 @@ export class MySqlParser extends SQLParserBase { } public fullColumnNames(): FullColumnNamesContext { let localContext = new FullColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 268, MySqlParser.RULE_fullColumnNames); + this.enterRule(localContext, 270, MySqlParser.RULE_fullColumnNames); try { this.enterOuterAlt(localContext, 1); { - this.state = 4012; + this.state = 4023; this.match(MySqlParser.LR_BRACKET); - this.state = 4013; + this.state = 4024; this.columnNames(); - this.state = 4014; + this.state = 4025; this.match(MySqlParser.RR_BRACKET); } } @@ -22363,12 +22392,12 @@ export class MySqlParser extends SQLParserBase { } public indexHint(): IndexHintContext { let localContext = new IndexHintContext(this.context, this.state); - this.enterRule(localContext, 270, MySqlParser.RULE_indexHint); + this.enterRule(localContext, 272, MySqlParser.RULE_indexHint); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4016; + this.state = 4027; localContext._indexHintAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 79 || _la === 187)) { @@ -22378,7 +22407,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4017; + this.state = 4028; localContext._keyFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -22388,31 +22417,31 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4020; + this.state = 4031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4018; + this.state = 4029; this.match(MySqlParser.KW_FOR); - this.state = 4019; + this.state = 4030; this.indexHintType(); } } - this.state = 4022; + this.state = 4033; this.match(MySqlParser.LR_BRACKET); - this.state = 4024; + this.state = 4035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4023; + this.state = 4034; this.indexNames(); } } - this.state = 4026; + this.state = 4037; this.match(MySqlParser.RR_BRACKET); } } @@ -22432,33 +22461,33 @@ export class MySqlParser extends SQLParserBase { } public indexHintType(): IndexHintTypeContext { let localContext = new IndexHintTypeContext(this.context, this.state); - this.enterRule(localContext, 272, MySqlParser.RULE_indexHintType); + this.enterRule(localContext, 274, MySqlParser.RULE_indexHintType); try { - this.state = 4033; + this.state = 4044; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 4028; + this.state = 4039; this.match(MySqlParser.KW_JOIN); } break; case MySqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 4029; + this.state = 4040; this.match(MySqlParser.KW_ORDER); - this.state = 4030; + this.state = 4041; this.match(MySqlParser.KW_BY); } break; case MySqlParser.KW_GROUP: this.enterOuterAlt(localContext, 3); { - this.state = 4031; + this.state = 4042; this.match(MySqlParser.KW_GROUP); - this.state = 4032; + this.state = 4043; this.match(MySqlParser.KW_BY); } break; @@ -22482,11 +22511,11 @@ export class MySqlParser extends SQLParserBase { } public joinPart(): JoinPartContext { let localContext = new JoinPartContext(this.context, this.state); - this.enterRule(localContext, 274, MySqlParser.RULE_joinPart); + this.enterRule(localContext, 276, MySqlParser.RULE_joinPart); let _la: number; try { let alternative: number; - this.state = 4084; + this.state = 4095; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CROSS: @@ -22495,12 +22524,12 @@ export class MySqlParser extends SQLParserBase { localContext = new InnerJoinContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4036; + this.state = 4047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 35 || _la === 84) { { - this.state = 4035; + this.state = 4046; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 84)) { this.errorHandler.recoverInline(this); @@ -22512,33 +22541,33 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4038; + this.state = 4049; this.match(MySqlParser.KW_JOIN); - this.state = 4040; + this.state = 4051; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: { - this.state = 4039; + this.state = 4050; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4042; + this.state = 4053; this.tableSourceItem(); - this.state = 4046; + this.state = 4057; 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 = 4043; + this.state = 4054; this.joinSpec(); } } } - this.state = 4048; + this.state = 4059; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); } @@ -22548,23 +22577,23 @@ export class MySqlParser extends SQLParserBase { localContext = new StraightJoinContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4049; + this.state = 4060; this.match(MySqlParser.KW_STRAIGHT_JOIN); - this.state = 4050; + this.state = 4061; this.tableSourceItem(); - this.state = 4054; + this.state = 4065; 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 = 4051; + this.state = 4062; this.joinSpec(); } } } - this.state = 4056; + this.state = 4067; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); } @@ -22575,7 +22604,7 @@ export class MySqlParser extends SQLParserBase { localContext = new OuterJoinContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4057; + this.state = 4068; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22584,43 +22613,43 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4059; + this.state = 4070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4058; + this.state = 4069; this.match(MySqlParser.KW_OUTER); } } - this.state = 4061; + this.state = 4072; this.match(MySqlParser.KW_JOIN); - this.state = 4063; + this.state = 4074; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { case 1: { - this.state = 4062; + this.state = 4073; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4065; + this.state = 4076; this.tableSourceItem(); - this.state = 4069; + this.state = 4080; 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 = 4066; + this.state = 4077; this.joinSpec(); } } } - this.state = 4071; + this.state = 4082; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); } @@ -22630,26 +22659,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NaturalJoinContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4072; + this.state = 4083; this.match(MySqlParser.KW_NATURAL); - this.state = 4080; + this.state = 4091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84 || _la === 98 || _la === 150) { { - this.state = 4075; + this.state = 4086; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_INNER: { - this.state = 4073; + this.state = 4084; this.match(MySqlParser.KW_INNER); } break; case MySqlParser.KW_LEFT: case MySqlParser.KW_RIGHT: { - this.state = 4074; + this.state = 4085; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22663,12 +22692,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4078; + this.state = 4089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4077; + this.state = 4088; this.match(MySqlParser.KW_OUTER); } } @@ -22676,9 +22705,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4082; + this.state = 4093; this.match(MySqlParser.KW_JOIN); - this.state = 4083; + this.state = 4094; this.tableSourceItem(); } break; @@ -22702,18 +22731,18 @@ export class MySqlParser extends SQLParserBase { } public joinSpec(): JoinSpecContext { let localContext = new JoinSpecContext(this.context, this.state); - this.enterRule(localContext, 276, MySqlParser.RULE_joinSpec); + this.enterRule(localContext, 278, MySqlParser.RULE_joinSpec); try { - this.state = 4093; + this.state = 4104; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { { - this.state = 4086; + this.state = 4097; this.match(MySqlParser.KW_ON); - this.state = 4087; + this.state = 4098; this.expression(0); } } @@ -22721,13 +22750,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 4088; + this.state = 4099; this.match(MySqlParser.KW_USING); - this.state = 4089; + this.state = 4100; this.match(MySqlParser.LR_BRACKET); - this.state = 4090; + this.state = 4101; this.columnNames(); - this.state = 4091; + this.state = 4102; this.match(MySqlParser.RR_BRACKET); } break; @@ -22751,30 +22780,30 @@ export class MySqlParser extends SQLParserBase { } public queryExpression(): QueryExpressionContext { let localContext = new QueryExpressionContext(this.context, this.state); - this.enterRule(localContext, 278, MySqlParser.RULE_queryExpression); + this.enterRule(localContext, 280, MySqlParser.RULE_queryExpression); try { - this.state = 4103; + this.state = 4114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4095; + this.state = 4106; this.match(MySqlParser.LR_BRACKET); - this.state = 4096; + this.state = 4107; this.querySpecification(); - this.state = 4097; + this.state = 4108; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4099; + this.state = 4110; this.match(MySqlParser.LR_BRACKET); - this.state = 4100; + this.state = 4111; this.queryExpression(); - this.state = 4101; + this.state = 4112; this.match(MySqlParser.RR_BRACKET); } break; @@ -22796,109 +22825,109 @@ export class MySqlParser extends SQLParserBase { } public querySpecification(): QuerySpecificationContext { let localContext = new QuerySpecificationContext(this.context, this.state); - this.enterRule(localContext, 280, MySqlParser.RULE_querySpecification); + this.enterRule(localContext, 282, MySqlParser.RULE_querySpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4105; + this.state = 4116; this.match(MySqlParser.KW_SELECT); - this.state = 4109; + this.state = 4120; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 575, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4106; + this.state = 4117; this.selectSpec(); } } } - this.state = 4111; + this.state = 4122; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 575, this.context); } - this.state = 4112; + this.state = 4123; this.selectElements(); - this.state = 4114; + this.state = 4125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: { - this.state = 4113; + this.state = 4124; this.intoClause(); } break; } - this.state = 4116; + this.state = 4127; this.fromClause(); - this.state = 4118; + this.state = 4129; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4117; + this.state = 4128; this.groupByClause(); } break; } - this.state = 4121; + this.state = 4132; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: { - this.state = 4120; + this.state = 4131; this.havingClause(); } break; } - this.state = 4124; + this.state = 4135; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4123; + this.state = 4134; this.windowClause(); } break; } - this.state = 4127; + this.state = 4138; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4126; + this.state = 4137; this.orderByClause(); } break; } - this.state = 4130; + this.state = 4141; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: { - this.state = 4129; + this.state = 4140; this.limitClause(); } break; } - this.state = 4133; + this.state = 4144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4132; + this.state = 4143; this.intoClause(); } break; } - this.state = 4136; + this.state = 4147; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4135; + this.state = 4146; this.unionStatement(); } break; @@ -22921,19 +22950,19 @@ export class MySqlParser extends SQLParserBase { } public unionStatement(): UnionStatementContext { let localContext = new UnionStatementContext(this.context, this.state); - this.enterRule(localContext, 282, MySqlParser.RULE_unionStatement); + this.enterRule(localContext, 284, MySqlParser.RULE_unionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4138; + this.state = 4149; this.match(MySqlParser.KW_UNION); - this.state = 4140; + this.state = 4151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 4139; + this.state = 4150; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -22946,18 +22975,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4144; + this.state = 4155; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4142; + this.state = 4153; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4143; + this.state = 4154; this.queryExpression(); } break; @@ -22982,69 +23011,69 @@ export class MySqlParser extends SQLParserBase { } public lateralStatement(): LateralStatementContext { let localContext = new LateralStatementContext(this.context, this.state); - this.enterRule(localContext, 284, MySqlParser.RULE_lateralStatement); + this.enterRule(localContext, 286, MySqlParser.RULE_lateralStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4146; + this.state = 4157; this.match(MySqlParser.KW_LATERAL); - this.state = 4161; + this.state = 4172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { case 1: { - this.state = 4147; + this.state = 4158; this.querySpecification(); } break; case 2: { - this.state = 4148; + this.state = 4159; this.queryExpression(); } break; case 3: { { - this.state = 4149; + this.state = 4160; this.match(MySqlParser.LR_BRACKET); - this.state = 4152; + this.state = 4163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4150; + this.state = 4161; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4151; + this.state = 4162; this.queryExpression(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4154; + this.state = 4165; this.match(MySqlParser.RR_BRACKET); - this.state = 4159; + this.state = 4170; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 588, this.context) ) { case 1: { - this.state = 4156; + this.state = 4167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4155; + this.state = 4166; this.match(MySqlParser.KW_AS); } } - this.state = 4158; + this.state = 4169; localContext._alias = this.uid(); } break; @@ -23071,47 +23100,47 @@ export class MySqlParser extends SQLParserBase { } public jsonTable(): JsonTableContext { let localContext = new JsonTableContext(this.context, this.state); - this.enterRule(localContext, 286, MySqlParser.RULE_jsonTable); + this.enterRule(localContext, 288, MySqlParser.RULE_jsonTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4163; + this.state = 4174; this.match(MySqlParser.KW_JSON_TABLE); - this.state = 4164; + this.state = 4175; this.match(MySqlParser.LR_BRACKET); - this.state = 4165; + this.state = 4176; this.match(MySqlParser.STRING_LITERAL); - this.state = 4166; + this.state = 4177; this.match(MySqlParser.COMMA); - this.state = 4167; + this.state = 4178; this.match(MySqlParser.STRING_LITERAL); - this.state = 4168; + this.state = 4179; this.match(MySqlParser.KW_COLUMNS); - this.state = 4169; + this.state = 4180; this.match(MySqlParser.LR_BRACKET); - this.state = 4170; + this.state = 4181; this.jsonColumnList(); - this.state = 4171; + this.state = 4182; this.match(MySqlParser.RR_BRACKET); - this.state = 4172; + this.state = 4183; this.match(MySqlParser.RR_BRACKET); - this.state = 4177; + this.state = 4188; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4174; + this.state = 4185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4173; + this.state = 4184; this.match(MySqlParser.KW_AS); } } - this.state = 4176; + this.state = 4187; localContext._alias = this.uid(); } break; @@ -23134,26 +23163,26 @@ export class MySqlParser extends SQLParserBase { } public jsonColumnList(): JsonColumnListContext { let localContext = new JsonColumnListContext(this.context, this.state); - this.enterRule(localContext, 288, MySqlParser.RULE_jsonColumnList); + this.enterRule(localContext, 290, MySqlParser.RULE_jsonColumnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4179; + this.state = 4190; this.jsonColumn(); - this.state = 4184; + this.state = 4195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4180; + this.state = 4191; this.match(MySqlParser.COMMA); - this.state = 4181; + this.state = 4192; this.jsonColumn(); } } - this.state = 4186; + this.state = 4197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23175,25 +23204,25 @@ export class MySqlParser extends SQLParserBase { } public jsonColumn(): JsonColumnContext { let localContext = new JsonColumnContext(this.context, this.state); - this.enterRule(localContext, 290, MySqlParser.RULE_jsonColumn); + this.enterRule(localContext, 292, MySqlParser.RULE_jsonColumn); let _la: number; try { - this.state = 4216; + this.state = 4227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 598, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4187; + this.state = 4198; this.columnName(); - this.state = 4204; + this.state = 4215; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: { - this.state = 4188; + this.state = 4199; this.match(MySqlParser.KW_FOR); - this.state = 4189; + this.state = 4200; this.match(MySqlParser.KW_ORDINALITY); } break; @@ -23257,33 +23286,33 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_POINT: case MySqlParser.KW_POLYGON: { - this.state = 4190; + this.state = 4201; this.dataType(); - this.state = 4202; + this.state = 4213; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PATH: { - this.state = 4191; + this.state = 4202; this.match(MySqlParser.KW_PATH); - this.state = 4192; + this.state = 4203; this.match(MySqlParser.STRING_LITERAL); - this.state = 4194; + this.state = 4205; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4193; + this.state = 4204; this.jsonOnEmpty(); } break; } - this.state = 4197; + this.state = 4208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 4196; + this.state = 4207; this.jsonOnError(); } } @@ -23292,11 +23321,11 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_EXISTS: { - this.state = 4199; + this.state = 4210; this.match(MySqlParser.KW_EXISTS); - this.state = 4200; + this.state = 4211; this.match(MySqlParser.KW_PATH); - this.state = 4201; + this.state = 4212; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23313,27 +23342,27 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4206; + this.state = 4217; this.match(MySqlParser.KW_NESTED); - this.state = 4208; + this.state = 4219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 4207; + this.state = 4218; this.match(MySqlParser.KW_PATH); } } - this.state = 4210; + this.state = 4221; this.match(MySqlParser.STRING_LITERAL); - this.state = 4211; + this.state = 4222; this.match(MySqlParser.KW_COLUMNS); - this.state = 4212; + this.state = 4223; this.match(MySqlParser.LR_BRACKET); - this.state = 4213; + this.state = 4224; this.jsonColumnList(); - this.state = 4214; + this.state = 4225; this.match(MySqlParser.RR_BRACKET); } break; @@ -23355,39 +23384,39 @@ export class MySqlParser extends SQLParserBase { } public jsonOnEmpty(): JsonOnEmptyContext { let localContext = new JsonOnEmptyContext(this.context, this.state); - this.enterRule(localContext, 292, MySqlParser.RULE_jsonOnEmpty); + this.enterRule(localContext, 294, MySqlParser.RULE_jsonOnEmpty); try { this.enterOuterAlt(localContext, 1); { - this.state = 4222; + this.state = 4233; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4218; + this.state = 4229; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4219; + this.state = 4230; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4220; + this.state = 4231; this.match(MySqlParser.KW_DEFAULT); - this.state = 4221; + this.state = 4232; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4224; + this.state = 4235; this.match(MySqlParser.KW_ON); - this.state = 4225; + this.state = 4236; this.match(MySqlParser.KW_EMPTY); } } @@ -23407,39 +23436,39 @@ export class MySqlParser extends SQLParserBase { } public jsonOnError(): JsonOnErrorContext { let localContext = new JsonOnErrorContext(this.context, this.state); - this.enterRule(localContext, 294, MySqlParser.RULE_jsonOnError); + this.enterRule(localContext, 296, MySqlParser.RULE_jsonOnError); try { this.enterOuterAlt(localContext, 1); { - this.state = 4231; + this.state = 4242; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4227; + this.state = 4238; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4228; + this.state = 4239; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4229; + this.state = 4240; this.match(MySqlParser.KW_DEFAULT); - this.state = 4230; + this.state = 4241; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4233; + this.state = 4244; this.match(MySqlParser.KW_ON); - this.state = 4234; + this.state = 4245; this.match(MySqlParser.KW_ERROR); } } @@ -23459,10 +23488,10 @@ export class MySqlParser extends SQLParserBase { } public selectSpec(): SelectSpecContext { let localContext = new SelectSpecContext(this.context, this.state); - this.enterRule(localContext, 296, MySqlParser.RULE_selectSpec); + this.enterRule(localContext, 298, MySqlParser.RULE_selectSpec); let _la: number; try { - this.state = 4244; + this.state = 4255; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: @@ -23470,7 +23499,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DISTINCTROW: this.enterOuterAlt(localContext, 1); { - this.state = 4236; + this.state = 4247; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49 || _la === 50)) { this.errorHandler.recoverInline(this); @@ -23484,35 +23513,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_HIGH_PRIORITY: this.enterOuterAlt(localContext, 2); { - this.state = 4237; + this.state = 4248; this.match(MySqlParser.KW_HIGH_PRIORITY); } break; case MySqlParser.KW_STRAIGHT_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4238; + this.state = 4249; this.match(MySqlParser.KW_STRAIGHT_JOIN); } break; case MySqlParser.KW_SQL_SMALL_RESULT: this.enterOuterAlt(localContext, 4); { - this.state = 4239; + this.state = 4250; this.match(MySqlParser.KW_SQL_SMALL_RESULT); } break; case MySqlParser.KW_SQL_BIG_RESULT: this.enterOuterAlt(localContext, 5); { - this.state = 4240; + this.state = 4251; this.match(MySqlParser.KW_SQL_BIG_RESULT); } break; case MySqlParser.KW_SQL_BUFFER_RESULT: this.enterOuterAlt(localContext, 6); { - this.state = 4241; + this.state = 4252; this.match(MySqlParser.KW_SQL_BUFFER_RESULT); } break; @@ -23520,7 +23549,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_NO_CACHE: this.enterOuterAlt(localContext, 7); { - this.state = 4242; + this.state = 4253; _la = this.tokenStream.LA(1); if(!(_la === 637 || _la === 638)) { this.errorHandler.recoverInline(this); @@ -23534,7 +23563,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_CALC_FOUND_ROWS: this.enterOuterAlt(localContext, 8); { - this.state = 4243; + this.state = 4254; this.match(MySqlParser.KW_SQL_CALC_FOUND_ROWS); } break; @@ -23558,42 +23587,42 @@ export class MySqlParser extends SQLParserBase { } public selectElements(): SelectElementsContext { let localContext = new SelectElementsContext(this.context, this.state); - this.enterRule(localContext, 298, MySqlParser.RULE_selectElements); + this.enterRule(localContext, 300, MySqlParser.RULE_selectElements); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4248; + this.state = 4259; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { case 1: { - this.state = 4246; - localContext._star = this.match(MySqlParser.STAR); + this.state = 4257; + this.pureAllColumns(); } break; case 2: { - this.state = 4247; + this.state = 4258; this.selectElement(); } break; } - this.state = 4254; + this.state = 4265; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4250; + this.state = 4261; this.match(MySqlParser.COMMA); - this.state = 4251; + this.state = 4262; this.selectElement(); } } } - this.state = 4256; + this.state = 4267; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 603, this.context); } @@ -23615,115 +23644,68 @@ export class MySqlParser extends SQLParserBase { } public selectElement(): SelectElementContext { let localContext = new SelectElementContext(this.context, this.state); - this.enterRule(localContext, 300, MySqlParser.RULE_selectElement); + this.enterRule(localContext, 302, MySqlParser.RULE_selectElement); let _la: number; try { - this.state = 4286; + this.state = 4283; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: - localContext = new SelectExpressionElementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4259; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { - case 1: - { - this.state = 4257; - this.match(MySqlParser.LOCAL_ID); - this.state = 4258; - this.match(MySqlParser.VAR_ASSIGN); - } - break; - } - this.state = 4261; - this.expression(0); - this.state = 4266; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { - case 1: - { - this.state = 4263; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 13) { - { - this.state = 4262; - this.match(MySqlParser.KW_AS); - } - } - - this.state = 4265; - (localContext as SelectExpressionElementContext)._alias = this.uid(); - } - break; - } + this.state = 4268; + this.tableAllColumns(); } break; case 2: - localContext = new SelectFunctionElementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4268; - this.functionCall(); - this.state = 4273; + this.state = 4269; + this.selectLiteralColumnName(); + this.state = 4274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { case 1: { - this.state = 4270; + this.state = 4271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4269; + this.state = 4270; this.match(MySqlParser.KW_AS); } } - this.state = 4272; - (localContext as SelectFunctionElementContext)._alias = this.uid(); + this.state = 4273; + localContext._alias = this.uid(); } break; } } break; case 3: - localContext = new SelectStarElementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4275; - (localContext as SelectStarElementContext)._select_element = this.fullId(); this.state = 4276; - this.match(MySqlParser.DOT); - this.state = 4277; - this.match(MySqlParser.STAR); - } - break; - case 4: - localContext = new SelectColumnElementContext(localContext); - this.enterOuterAlt(localContext, 4); - { - this.state = 4279; - this.columnName(); - this.state = 4284; + this.selectExpressionColumnName(); + this.state = 4281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 607, this.context) ) { case 1: { - this.state = 4281; + this.state = 4278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4280; + this.state = 4277; this.match(MySqlParser.KW_AS); } } - this.state = 4283; - (localContext as SelectColumnElementContext)._alias = this.uid(); + this.state = 4280; + localContext._alias = this.uid(); } break; } @@ -23745,40 +23727,167 @@ export class MySqlParser extends SQLParserBase { } return localContext; } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 304, MySqlParser.RULE_tableAllColumns); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4285; + this.fullId(); + this.state = 4286; + this.match(MySqlParser.DOT); + this.state = 4287; + this.match(MySqlParser.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 pureAllColumns(): PureAllColumnsContext { + let localContext = new PureAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 306, MySqlParser.RULE_pureAllColumns); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4289; + this.match(MySqlParser.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 selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 308, MySqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4291; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 310, MySqlParser.RULE_selectExpressionColumnName); + try { + this.state = 4299; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { + case 1: + localContext = new SelectExpressionElementContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 4295; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { + case 1: + { + this.state = 4293; + this.match(MySqlParser.LOCAL_ID); + this.state = 4294; + this.match(MySqlParser.VAR_ASSIGN); + } + break; + } + this.state = 4297; + this.expression(0); + } + break; + case 2: + localContext = new SelectFunctionElementContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 4298; + this.functionCall(); + } + 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 intoClause(): IntoClauseContext { let localContext = new IntoClauseContext(this.context, this.state); - this.enterRule(localContext, 302, MySqlParser.RULE_intoClause); + this.enterRule(localContext, 312, MySqlParser.RULE_intoClause); let _la: number; try { let alternative: number; - this.state = 4324; + this.state = 4337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: localContext = new SelectIntoVariablesContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4288; + this.state = 4301; this.match(MySqlParser.KW_INTO); - this.state = 4289; + this.state = 4302; this.assignmentField(); - this.state = 4294; + this.state = 4307; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 611, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4290; + this.state = 4303; this.match(MySqlParser.COMMA); - this.state = 4291; + this.state = 4304; this.assignmentField(); } } } - this.state = 4296; + this.state = 4309; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 611, this.context); } } break; @@ -23786,11 +23895,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectIntoDumpFileContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4297; + this.state = 4310; this.match(MySqlParser.KW_INTO); - this.state = 4298; + this.state = 4311; this.match(MySqlParser.KW_DUMPFILE); - this.state = 4299; + this.state = 4312; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23799,32 +23908,32 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 4300; + this.state = 4313; this.match(MySqlParser.KW_INTO); - this.state = 4301; + this.state = 4314; this.match(MySqlParser.KW_OUTFILE); - this.state = 4302; + this.state = 4315; (localContext as SelectIntoTextFileContext)._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 4306; + this.state = 4319; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: { - this.state = 4303; + this.state = 4316; this.match(MySqlParser.KW_CHARACTER); - this.state = 4304; + this.state = 4317; this.match(MySqlParser.KW_SET); - this.state = 4305; + this.state = 4318; (localContext as SelectIntoTextFileContext)._charset = this.charsetName(); } break; } - this.state = 4314; + this.state = 4327; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 4308; + this.state = 4321; (localContext as SelectIntoTextFileContext)._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -23834,7 +23943,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4310; + this.state = 4323; this.errorHandler.sync(this); alternative = 1; do { @@ -23842,7 +23951,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4309; + this.state = 4322; this.selectFieldsInto(); } } @@ -23850,21 +23959,21 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4312; + this.state = 4325; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 613, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 4322; + this.state = 4335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4316; + this.state = 4329; this.match(MySqlParser.KW_LINES); - this.state = 4318; + this.state = 4331; this.errorHandler.sync(this); alternative = 1; do { @@ -23872,7 +23981,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4317; + this.state = 4330; this.selectLinesInto(); } } @@ -23880,9 +23989,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4320; + this.state = 4333; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 616, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 615, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -23908,20 +24017,20 @@ export class MySqlParser extends SQLParserBase { } public selectFieldsInto(): SelectFieldsIntoContext { let localContext = new SelectFieldsIntoContext(this.context, this.state); - this.enterRule(localContext, 304, MySqlParser.RULE_selectFieldsInto); + this.enterRule(localContext, 314, MySqlParser.RULE_selectFieldsInto); let _la: number; try { - this.state = 4338; + this.state = 4351; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 1); { - this.state = 4326; + this.state = 4339; this.match(MySqlParser.KW_TERMINATED); - this.state = 4327; + this.state = 4340; this.match(MySqlParser.KW_BY); - this.state = 4328; + this.state = 4341; localContext._terminationField = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23929,32 +24038,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_OPTIONALLY: this.enterOuterAlt(localContext, 2); { - this.state = 4330; + this.state = 4343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 4329; + this.state = 4342; this.match(MySqlParser.KW_OPTIONALLY); } } - this.state = 4332; + this.state = 4345; this.match(MySqlParser.KW_ENCLOSED); - this.state = 4333; + this.state = 4346; this.match(MySqlParser.KW_BY); - this.state = 4334; + this.state = 4347; localContext._enclosion = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ESCAPED: this.enterOuterAlt(localContext, 3); { - this.state = 4335; + this.state = 4348; this.match(MySqlParser.KW_ESCAPED); - this.state = 4336; + this.state = 4349; this.match(MySqlParser.KW_BY); - this.state = 4337; + this.state = 4350; localContext._escaping = this.match(MySqlParser.STRING_LITERAL); } break; @@ -23978,30 +24087,30 @@ export class MySqlParser extends SQLParserBase { } public selectLinesInto(): SelectLinesIntoContext { let localContext = new SelectLinesIntoContext(this.context, this.state); - this.enterRule(localContext, 306, MySqlParser.RULE_selectLinesInto); + this.enterRule(localContext, 316, MySqlParser.RULE_selectLinesInto); try { - this.state = 4346; + this.state = 4359; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_STARTING: this.enterOuterAlt(localContext, 1); { - this.state = 4340; + this.state = 4353; this.match(MySqlParser.KW_STARTING); - this.state = 4341; + this.state = 4354; this.match(MySqlParser.KW_BY); - this.state = 4342; + this.state = 4355; localContext._starting = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 2); { - this.state = 4343; + this.state = 4356; this.match(MySqlParser.KW_TERMINATED); - this.state = 4344; + this.state = 4357; this.match(MySqlParser.KW_BY); - this.state = 4345; + this.state = 4358; localContext._terminationLine = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24025,30 +24134,30 @@ export class MySqlParser extends SQLParserBase { } public fromClause(): FromClauseContext { let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 308, MySqlParser.RULE_fromClause); + this.enterRule(localContext, 318, MySqlParser.RULE_fromClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4350; + this.state = 4363; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { case 1: { - this.state = 4348; + this.state = 4361; this.match(MySqlParser.KW_FROM); - this.state = 4349; + this.state = 4362; this.tableSources(); } break; } - this.state = 4354; + this.state = 4367; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4352; + this.state = 4365; this.match(MySqlParser.KW_WHERE); - this.state = 4353; + this.state = 4366; localContext._whereExpr = this.expression(0); } break; @@ -24071,43 +24180,43 @@ export class MySqlParser extends SQLParserBase { } public groupByClause(): GroupByClauseContext { let localContext = new GroupByClauseContext(this.context, this.state); - this.enterRule(localContext, 310, MySqlParser.RULE_groupByClause); + this.enterRule(localContext, 320, MySqlParser.RULE_groupByClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4356; + this.state = 4369; this.match(MySqlParser.KW_GROUP); - this.state = 4357; + this.state = 4370; this.match(MySqlParser.KW_BY); - this.state = 4358; + this.state = 4371; this.groupByItem(); - this.state = 4363; + this.state = 4376; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4359; + this.state = 4372; this.match(MySqlParser.COMMA); - this.state = 4360; + this.state = 4373; this.groupByItem(); } } } - this.state = 4365; + this.state = 4378; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); } - this.state = 4368; + this.state = 4381; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { case 1: { - this.state = 4366; + this.state = 4379; this.match(MySqlParser.KW_WITH); - this.state = 4367; + this.state = 4380; this.match(MySqlParser.KW_ROLLUP); } break; @@ -24130,13 +24239,13 @@ export class MySqlParser extends SQLParserBase { } public havingClause(): HavingClauseContext { let localContext = new HavingClauseContext(this.context, this.state); - this.enterRule(localContext, 312, MySqlParser.RULE_havingClause); + this.enterRule(localContext, 322, MySqlParser.RULE_havingClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4370; + this.state = 4383; this.match(MySqlParser.KW_HAVING); - this.state = 4371; + this.state = 4384; localContext._havingExpr = this.expression(0); } } @@ -24156,48 +24265,48 @@ export class MySqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 314, MySqlParser.RULE_windowClause); + this.enterRule(localContext, 324, MySqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4373; + this.state = 4386; this.match(MySqlParser.KW_WINDOW); - this.state = 4374; + this.state = 4387; this.windowName(); - this.state = 4375; + this.state = 4388; this.match(MySqlParser.KW_AS); - this.state = 4376; + this.state = 4389; this.match(MySqlParser.LR_BRACKET); - this.state = 4377; + this.state = 4390; this.windowSpec(); - this.state = 4378; + this.state = 4391; this.match(MySqlParser.RR_BRACKET); - this.state = 4388; + this.state = 4401; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 626, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4379; + this.state = 4392; this.match(MySqlParser.COMMA); - this.state = 4380; + this.state = 4393; this.windowName(); - this.state = 4381; + this.state = 4394; this.match(MySqlParser.KW_AS); - this.state = 4382; + this.state = 4395; this.match(MySqlParser.LR_BRACKET); - this.state = 4383; + this.state = 4396; this.windowSpec(); - this.state = 4384; + this.state = 4397; this.match(MySqlParser.RR_BRACKET); } } } - this.state = 4390; + this.state = 4403; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 626, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); } } } @@ -24217,19 +24326,19 @@ export class MySqlParser extends SQLParserBase { } public groupByItem(): GroupByItemContext { let localContext = new GroupByItemContext(this.context, this.state); - this.enterRule(localContext, 316, MySqlParser.RULE_groupByItem); + this.enterRule(localContext, 326, MySqlParser.RULE_groupByItem); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4391; + this.state = 4404; this.expression(0); - this.state = 4393; + this.state = 4406; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 4392; + this.state = 4405; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -24260,40 +24369,40 @@ export class MySqlParser extends SQLParserBase { } public limitClause(): LimitClauseContext { let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 318, MySqlParser.RULE_limitClause); + this.enterRule(localContext, 328, MySqlParser.RULE_limitClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 4395; + this.state = 4408; this.match(MySqlParser.KW_LIMIT); - this.state = 4406; + this.state = 4419; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { case 1: { - this.state = 4399; + this.state = 4412; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: { - this.state = 4396; + this.state = 4409; localContext._offset = this.limitClauseAtom(); - this.state = 4397; + this.state = 4410; this.match(MySqlParser.COMMA); } break; } - this.state = 4401; + this.state = 4414; localContext._limit = this.limitClauseAtom(); } break; case 2: { - this.state = 4402; + this.state = 4415; localContext._limit = this.limitClauseAtom(); - this.state = 4403; + this.state = 4416; this.match(MySqlParser.KW_OFFSET); - this.state = 4404; + this.state = 4417; localContext._offset = this.limitClauseAtom(); } break; @@ -24316,9 +24425,9 @@ export class MySqlParser extends SQLParserBase { } public limitClauseAtom(): LimitClauseAtomContext { let localContext = new LimitClauseAtomContext(this.context, this.state); - this.enterRule(localContext, 320, MySqlParser.RULE_limitClauseAtom); + this.enterRule(localContext, 330, MySqlParser.RULE_limitClauseAtom); try { - this.state = 4411; + this.state = 4424; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -24329,7 +24438,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4408; + this.state = 4421; this.decimalLiteral(); } break; @@ -24337,7 +24446,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 4409; + this.state = 4422; this.mysqlVariable(); } break; @@ -24890,7 +24999,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 4410; + this.state = 4423; this.simpleId(); } break; @@ -24914,35 +25023,35 @@ export class MySqlParser extends SQLParserBase { } public startTransaction(): StartTransactionContext { let localContext = new StartTransactionContext(this.context, this.state); - this.enterRule(localContext, 322, MySqlParser.RULE_startTransaction); + this.enterRule(localContext, 332, MySqlParser.RULE_startTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4413; + this.state = 4426; this.match(MySqlParser.KW_START); - this.state = 4414; + this.state = 4427; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4423; + this.state = 4436; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { case 1: { - this.state = 4415; + this.state = 4428; this.transactionMode(); - this.state = 4420; + this.state = 4433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4416; + this.state = 4429; this.match(MySqlParser.COMMA); - this.state = 4417; + this.state = 4430; this.transactionMode(); } } - this.state = 4422; + this.state = 4435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24967,19 +25076,19 @@ export class MySqlParser extends SQLParserBase { } public beginWork(): BeginWorkContext { let localContext = new BeginWorkContext(this.context, this.state); - this.enterRule(localContext, 324, MySqlParser.RULE_beginWork); + this.enterRule(localContext, 334, MySqlParser.RULE_beginWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4425; + this.state = 4438; this.match(MySqlParser.KW_BEGIN); - this.state = 4427; + this.state = 4440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4426; + this.state = 4439; this.match(MySqlParser.KW_WORK); } } @@ -25002,61 +25111,61 @@ export class MySqlParser extends SQLParserBase { } public commitWork(): CommitWorkContext { let localContext = new CommitWorkContext(this.context, this.state); - this.enterRule(localContext, 326, MySqlParser.RULE_commitWork); + this.enterRule(localContext, 336, MySqlParser.RULE_commitWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4429; + this.state = 4442; this.match(MySqlParser.KW_COMMIT); - this.state = 4431; + this.state = 4444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4430; + this.state = 4443; this.match(MySqlParser.KW_WORK); } } - this.state = 4438; + this.state = 4451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4433; + this.state = 4446; this.match(MySqlParser.KW_AND); - this.state = 4435; + this.state = 4448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4434; + this.state = 4447; localContext._nochain = this.match(MySqlParser.KW_NO); } } - this.state = 4437; + this.state = 4450; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4444; + this.state = 4457; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 638, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: { - this.state = 4441; + this.state = 4454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4440; + this.state = 4453; localContext._norelease = this.match(MySqlParser.KW_NO); } } - this.state = 4443; + this.state = 4456; this.match(MySqlParser.KW_RELEASE); } break; @@ -25079,61 +25188,61 @@ export class MySqlParser extends SQLParserBase { } public rollbackWork(): RollbackWorkContext { let localContext = new RollbackWorkContext(this.context, this.state); - this.enterRule(localContext, 328, MySqlParser.RULE_rollbackWork); + this.enterRule(localContext, 338, MySqlParser.RULE_rollbackWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4446; + this.state = 4459; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4448; + this.state = 4461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4447; + this.state = 4460; this.match(MySqlParser.KW_WORK); } } - this.state = 4455; + this.state = 4468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4450; + this.state = 4463; this.match(MySqlParser.KW_AND); - this.state = 4452; + this.state = 4465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4451; + this.state = 4464; localContext._nochain = this.match(MySqlParser.KW_NO); } } - this.state = 4454; + this.state = 4467; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4461; + this.state = 4474; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 643, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 642, this.context) ) { case 1: { - this.state = 4458; + this.state = 4471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4457; + this.state = 4470; localContext._norelease = this.match(MySqlParser.KW_NO); } } - this.state = 4460; + this.state = 4473; this.match(MySqlParser.KW_RELEASE); } break; @@ -25156,13 +25265,13 @@ export class MySqlParser extends SQLParserBase { } public savepointStatement(): SavepointStatementContext { let localContext = new SavepointStatementContext(this.context, this.state); - this.enterRule(localContext, 330, MySqlParser.RULE_savepointStatement); + this.enterRule(localContext, 340, MySqlParser.RULE_savepointStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4463; + this.state = 4476; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4464; + this.state = 4477; localContext._identifier = this.uid(); } } @@ -25182,36 +25291,36 @@ export class MySqlParser extends SQLParserBase { } public rollbackStatement(): RollbackStatementContext { let localContext = new RollbackStatementContext(this.context, this.state); - this.enterRule(localContext, 332, MySqlParser.RULE_rollbackStatement); + this.enterRule(localContext, 342, MySqlParser.RULE_rollbackStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4466; + this.state = 4479; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4468; + this.state = 4481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4467; + this.state = 4480; this.match(MySqlParser.KW_WORK); } } - this.state = 4470; + this.state = 4483; this.match(MySqlParser.KW_TO); - this.state = 4472; + this.state = 4485; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: { - this.state = 4471; + this.state = 4484; this.match(MySqlParser.KW_SAVEPOINT); } break; } - this.state = 4474; + this.state = 4487; localContext._identifier = this.uid(); } } @@ -25231,15 +25340,15 @@ export class MySqlParser extends SQLParserBase { } public releaseStatement(): ReleaseStatementContext { let localContext = new ReleaseStatementContext(this.context, this.state); - this.enterRule(localContext, 334, MySqlParser.RULE_releaseStatement); + this.enterRule(localContext, 344, MySqlParser.RULE_releaseStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4476; + this.state = 4489; this.match(MySqlParser.KW_RELEASE); - this.state = 4477; + this.state = 4490; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4478; + this.state = 4491; localContext._identifier = this.uid(); } } @@ -25259,14 +25368,14 @@ export class MySqlParser extends SQLParserBase { } public lockTables(): LockTablesContext { let localContext = new LockTablesContext(this.context, this.state); - this.enterRule(localContext, 336, MySqlParser.RULE_lockTables); + this.enterRule(localContext, 346, MySqlParser.RULE_lockTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4480; + this.state = 4493; this.match(MySqlParser.KW_LOCK); - this.state = 4481; + this.state = 4494; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -25275,21 +25384,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4482; + this.state = 4495; this.lockTableElement(); - this.state = 4487; + this.state = 4500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4483; + this.state = 4496; this.match(MySqlParser.COMMA); - this.state = 4484; + this.state = 4497; this.lockTableElement(); } } - this.state = 4489; + this.state = 4502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25311,13 +25420,13 @@ export class MySqlParser extends SQLParserBase { } public unlockTables(): UnlockTablesContext { let localContext = new UnlockTablesContext(this.context, this.state); - this.enterRule(localContext, 338, MySqlParser.RULE_unlockTables); + this.enterRule(localContext, 348, MySqlParser.RULE_unlockTables); try { this.enterOuterAlt(localContext, 1); { - this.state = 4490; + this.state = 4503; this.match(MySqlParser.KW_UNLOCK); - this.state = 4491; + this.state = 4504; this.match(MySqlParser.KW_TABLES); } } @@ -25337,18 +25446,18 @@ export class MySqlParser extends SQLParserBase { } public setAutocommitStatement(): SetAutocommitStatementContext { let localContext = new SetAutocommitStatementContext(this.context, this.state); - this.enterRule(localContext, 340, MySqlParser.RULE_setAutocommitStatement); + this.enterRule(localContext, 350, MySqlParser.RULE_setAutocommitStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4493; + this.state = 4506; this.match(MySqlParser.KW_SET); - this.state = 4494; + this.state = 4507; this.match(MySqlParser.KW_AUTOCOMMIT); - this.state = 4495; + this.state = 4508; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4496; + this.state = 4509; localContext._autocommitValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -25376,19 +25485,19 @@ export class MySqlParser extends SQLParserBase { } public setTransactionStatement(): SetTransactionStatementContext { let localContext = new SetTransactionStatementContext(this.context, this.state); - this.enterRule(localContext, 342, MySqlParser.RULE_setTransactionStatement); + this.enterRule(localContext, 352, MySqlParser.RULE_setTransactionStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4498; + this.state = 4511; this.match(MySqlParser.KW_SET); - this.state = 4500; + this.state = 4513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 4499; + this.state = 4512; localContext._transactionContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { @@ -25401,23 +25510,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4502; + this.state = 4515; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4503; + this.state = 4516; this.transactionOption(); - this.state = 4508; + this.state = 4521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4504; + this.state = 4517; this.match(MySqlParser.COMMA); - this.state = 4505; + this.state = 4518; this.transactionOption(); } } - this.state = 4510; + this.state = 4523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25439,37 +25548,37 @@ export class MySqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 344, MySqlParser.RULE_transactionMode); + this.enterRule(localContext, 354, MySqlParser.RULE_transactionMode); try { - this.state = 4518; + this.state = 4531; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4511; + this.state = 4524; this.match(MySqlParser.KW_WITH); - this.state = 4512; + this.state = 4525; this.match(MySqlParser.KW_CONSISTENT); - this.state = 4513; + this.state = 4526; this.match(MySqlParser.KW_SNAPSHOT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4514; + this.state = 4527; this.match(MySqlParser.KW_READ); - this.state = 4515; + this.state = 4528; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4516; + this.state = 4529; this.match(MySqlParser.KW_READ); - this.state = 4517; + this.state = 4530; this.match(MySqlParser.KW_ONLY); } break; @@ -25491,34 +25600,34 @@ export class MySqlParser extends SQLParserBase { } public lockTableElement(): LockTableElementContext { let localContext = new LockTableElementContext(this.context, this.state); - this.enterRule(localContext, 346, MySqlParser.RULE_lockTableElement); + this.enterRule(localContext, 356, MySqlParser.RULE_lockTableElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4520; + this.state = 4533; this.tableName(); - this.state = 4525; + this.state = 4538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4522; + this.state = 4535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4521; + this.state = 4534; this.match(MySqlParser.KW_AS); } } - this.state = 4524; + this.state = 4537; localContext._alias = this.uid(); } } - this.state = 4527; + this.state = 4540; this.lockAction(); } } @@ -25538,23 +25647,23 @@ export class MySqlParser extends SQLParserBase { } public lockAction(): LockActionContext { let localContext = new LockActionContext(this.context, this.state); - this.enterRule(localContext, 348, MySqlParser.RULE_lockAction); + this.enterRule(localContext, 358, MySqlParser.RULE_lockAction); let _la: number; try { - this.state = 4537; + this.state = 4550; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 4529; + this.state = 4542; this.match(MySqlParser.KW_READ); - this.state = 4531; + this.state = 4544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 4530; + this.state = 4543; this.match(MySqlParser.KW_LOCAL); } } @@ -25565,17 +25674,17 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_WRITE: this.enterOuterAlt(localContext, 2); { - this.state = 4534; + this.state = 4547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 4533; + this.state = 4546; this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 4536; + this.state = 4549; this.match(MySqlParser.KW_WRITE); } break; @@ -25599,37 +25708,37 @@ export class MySqlParser extends SQLParserBase { } public transactionOption(): TransactionOptionContext { let localContext = new TransactionOptionContext(this.context, this.state); - this.enterRule(localContext, 350, MySqlParser.RULE_transactionOption); + this.enterRule(localContext, 360, MySqlParser.RULE_transactionOption); try { - this.state = 4546; + this.state = 4559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4539; + this.state = 4552; this.match(MySqlParser.KW_ISOLATION); - this.state = 4540; + this.state = 4553; this.match(MySqlParser.KW_LEVEL); - this.state = 4541; + this.state = 4554; this.transactionLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4542; + this.state = 4555; this.match(MySqlParser.KW_READ); - this.state = 4543; + this.state = 4556; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4544; + this.state = 4557; this.match(MySqlParser.KW_READ); - this.state = 4545; + this.state = 4558; this.match(MySqlParser.KW_ONLY); } break; @@ -25651,42 +25760,42 @@ export class MySqlParser extends SQLParserBase { } public transactionLevel(): TransactionLevelContext { let localContext = new TransactionLevelContext(this.context, this.state); - this.enterRule(localContext, 352, MySqlParser.RULE_transactionLevel); + this.enterRule(localContext, 362, MySqlParser.RULE_transactionLevel); try { - this.state = 4555; + this.state = 4568; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 655, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4548; + this.state = 4561; this.match(MySqlParser.KW_REPEATABLE); - this.state = 4549; + this.state = 4562; this.match(MySqlParser.KW_READ); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4550; + this.state = 4563; this.match(MySqlParser.KW_READ); - this.state = 4551; + this.state = 4564; this.match(MySqlParser.KW_COMMITTED); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4552; + this.state = 4565; this.match(MySqlParser.KW_READ); - this.state = 4553; + this.state = 4566; this.match(MySqlParser.KW_UNCOMMITTED); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4554; + this.state = 4567; this.match(MySqlParser.KW_SERIALIZABLE); } break; @@ -25708,41 +25817,41 @@ export class MySqlParser extends SQLParserBase { } public changeMaster(): ChangeMasterContext { let localContext = new ChangeMasterContext(this.context, this.state); - this.enterRule(localContext, 354, MySqlParser.RULE_changeMaster); + this.enterRule(localContext, 364, MySqlParser.RULE_changeMaster); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4557; + this.state = 4570; this.match(MySqlParser.KW_CHANGE); - this.state = 4558; + this.state = 4571; this.match(MySqlParser.KW_MASTER); - this.state = 4559; + this.state = 4572; this.match(MySqlParser.KW_TO); - this.state = 4560; + this.state = 4573; this.masterOption(); - this.state = 4565; + this.state = 4578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4561; + this.state = 4574; this.match(MySqlParser.COMMA); - this.state = 4562; + this.state = 4575; this.masterOption(); } } - this.state = 4567; + this.state = 4580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4569; + this.state = 4582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4568; + this.state = 4581; this.channelOption(); } } @@ -25765,41 +25874,41 @@ export class MySqlParser extends SQLParserBase { } public changeReplicationFilter(): ChangeReplicationFilterContext { let localContext = new ChangeReplicationFilterContext(this.context, this.state); - this.enterRule(localContext, 356, MySqlParser.RULE_changeReplicationFilter); + this.enterRule(localContext, 366, MySqlParser.RULE_changeReplicationFilter); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4571; + this.state = 4584; this.match(MySqlParser.KW_CHANGE); - this.state = 4572; + this.state = 4585; this.match(MySqlParser.KW_REPLICATION); - this.state = 4573; + this.state = 4586; this.match(MySqlParser.KW_FILTER); - this.state = 4574; + this.state = 4587; this.replicationFilter(); - this.state = 4579; + this.state = 4592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4575; + this.state = 4588; this.match(MySqlParser.COMMA); - this.state = 4576; + this.state = 4589; this.replicationFilter(); } } - this.state = 4581; + this.state = 4594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4583; + this.state = 4596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4582; + this.state = 4595; this.channelOption(); } } @@ -25822,43 +25931,43 @@ export class MySqlParser extends SQLParserBase { } public changeReplicationSource(): ChangeReplicationSourceContext { let localContext = new ChangeReplicationSourceContext(this.context, this.state); - this.enterRule(localContext, 358, MySqlParser.RULE_changeReplicationSource); + this.enterRule(localContext, 368, MySqlParser.RULE_changeReplicationSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4585; + this.state = 4598; this.match(MySqlParser.KW_CHANGE); - this.state = 4586; + this.state = 4599; this.match(MySqlParser.KW_REPLICATION); - this.state = 4587; + this.state = 4600; this.match(MySqlParser.KW_SOURCE); - this.state = 4588; + this.state = 4601; this.match(MySqlParser.KW_TO); - this.state = 4589; + this.state = 4602; this.replicationSourceOption(); - this.state = 4594; + this.state = 4607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4590; + this.state = 4603; this.match(MySqlParser.COMMA); - this.state = 4591; + this.state = 4604; this.replicationSourceOption(); } } - this.state = 4596; + this.state = 4609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4598; + this.state = 4611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4597; + this.state = 4610; this.channelOption(); } } @@ -25881,14 +25990,14 @@ export class MySqlParser extends SQLParserBase { } public purgeBinaryLogs(): PurgeBinaryLogsContext { let localContext = new PurgeBinaryLogsContext(this.context, this.state); - this.enterRule(localContext, 360, MySqlParser.RULE_purgeBinaryLogs); + this.enterRule(localContext, 370, MySqlParser.RULE_purgeBinaryLogs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4600; + this.state = 4613; this.match(MySqlParser.KW_PURGE); - this.state = 4601; + this.state = 4614; localContext._purgeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -25898,24 +26007,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4602; + this.state = 4615; this.match(MySqlParser.KW_LOGS); - this.state = 4607; + this.state = 4620; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 4603; + this.state = 4616; this.match(MySqlParser.KW_TO); - this.state = 4604; + this.state = 4617; localContext._fileName = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_BEFORE: { - this.state = 4605; + this.state = 4618; this.match(MySqlParser.KW_BEFORE); - this.state = 4606; + this.state = 4619; localContext._timeValue = this.match(MySqlParser.STRING_LITERAL); } break; @@ -25940,14 +26049,14 @@ export class MySqlParser extends SQLParserBase { } public startSlaveOrReplica(): StartSlaveOrReplicaContext { let localContext = new StartSlaveOrReplicaContext(this.context, this.state); - this.enterRule(localContext, 362, MySqlParser.RULE_startSlaveOrReplica); + this.enterRule(localContext, 372, MySqlParser.RULE_startSlaveOrReplica); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4609; + this.state = 4622; this.match(MySqlParser.KW_START); - this.state = 4610; + this.state = 4623; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -25956,64 +26065,64 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4619; + this.state = 4632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4611; + this.state = 4624; this.threadType(); - this.state = 4616; + this.state = 4629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4612; + this.state = 4625; this.match(MySqlParser.COMMA); - this.state = 4613; + this.state = 4626; this.threadType(); } } - this.state = 4618; + this.state = 4631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4623; + this.state = 4636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 4621; + this.state = 4634; this.match(MySqlParser.KW_UNTIL); - this.state = 4622; + this.state = 4635; this.untilOption(); } } - this.state = 4628; + this.state = 4641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 363 || _la === 529 || _la === 535 || _la === 678) { { { - this.state = 4625; + this.state = 4638; this.connectionOptions(); } } - this.state = 4630; + this.state = 4643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4632; + this.state = 4645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4631; + this.state = 4644; this.channelOption(); } } @@ -26036,14 +26145,14 @@ export class MySqlParser extends SQLParserBase { } public stopSlaveOrReplica(): StopSlaveOrReplicaContext { let localContext = new StopSlaveOrReplicaContext(this.context, this.state); - this.enterRule(localContext, 364, MySqlParser.RULE_stopSlaveOrReplica); + this.enterRule(localContext, 374, MySqlParser.RULE_stopSlaveOrReplica); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4634; + this.state = 4647; this.match(MySqlParser.KW_STOP); - this.state = 4635; + this.state = 4648; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -26052,38 +26161,38 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4644; + this.state = 4657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4636; + this.state = 4649; this.threadType(); - this.state = 4641; + this.state = 4654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4637; + this.state = 4650; this.match(MySqlParser.COMMA); - this.state = 4638; + this.state = 4651; this.threadType(); } } - this.state = 4643; + this.state = 4656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4647; + this.state = 4660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4646; + this.state = 4659; this.channelOption(); } } @@ -26106,57 +26215,57 @@ export class MySqlParser extends SQLParserBase { } public startGroupReplication(): StartGroupReplicationContext { let localContext = new StartGroupReplicationContext(this.context, this.state); - this.enterRule(localContext, 366, MySqlParser.RULE_startGroupReplication); + this.enterRule(localContext, 376, MySqlParser.RULE_startGroupReplication); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4649; + this.state = 4662; this.match(MySqlParser.KW_START); - this.state = 4650; + this.state = 4663; this.match(MySqlParser.KW_GROUP_REPLICATION); - this.state = 4654; + this.state = 4667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4651; + this.state = 4664; this.match(MySqlParser.KW_USER); - this.state = 4652; + this.state = 4665; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4653; + this.state = 4666; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 4660; + this.state = 4673; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 672, this.context) ) { case 1: { - this.state = 4656; + this.state = 4669; this.match(MySqlParser.COMMA); - this.state = 4657; + this.state = 4670; this.match(MySqlParser.KW_PASSWORD); - this.state = 4658; + this.state = 4671; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4659; + this.state = 4672; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 4666; + this.state = 4679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 4662; + this.state = 4675; this.match(MySqlParser.COMMA); - this.state = 4663; + this.state = 4676; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4664; + this.state = 4677; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4665; + this.state = 4678; this.match(MySqlParser.STRING_LITERAL); } } @@ -26179,13 +26288,13 @@ export class MySqlParser extends SQLParserBase { } public stopGroupReplication(): StopGroupReplicationContext { let localContext = new StopGroupReplicationContext(this.context, this.state); - this.enterRule(localContext, 368, MySqlParser.RULE_stopGroupReplication); + this.enterRule(localContext, 378, MySqlParser.RULE_stopGroupReplication); try { this.enterOuterAlt(localContext, 1); { - this.state = 4668; + this.state = 4681; this.match(MySqlParser.KW_STOP); - this.state = 4669; + this.state = 4682; this.match(MySqlParser.KW_GROUP_REPLICATION); } } @@ -26205,10 +26314,10 @@ export class MySqlParser extends SQLParserBase { } public masterOption(): MasterOptionContext { let localContext = new MasterOptionContext(this.context, this.state); - this.enterRule(localContext, 370, MySqlParser.RULE_masterOption); + this.enterRule(localContext, 380, MySqlParser.RULE_masterOption); let _la: number; try { - this.state = 4698; + this.state = 4711; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER_BIND: @@ -26232,11 +26341,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4671; + this.state = 4684; this.stringMasterOption(); - this.state = 4672; + this.state = 4685; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4673; + this.state = 4686; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26251,11 +26360,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4675; + this.state = 4688; this.decimalMasterOption(); - this.state = 4676; + this.state = 4689; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4677; + this.state = 4690; this.decimalLiteral(); } break; @@ -26269,11 +26378,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4679; + this.state = 4692; this.boolMasterOption(); - this.state = 4680; + this.state = 4693; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4681; + this.state = 4694; (localContext as MasterBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26291,7 +26400,7 @@ export class MySqlParser extends SQLParserBase { localContext = new V8AddMasterOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4683; + this.state = 4696; this.v8NewMasterOption(); } break; @@ -26299,39 +26408,39 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4684; + this.state = 4697; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4685; + this.state = 4698; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4686; + this.state = 4699; this.match(MySqlParser.LR_BRACKET); - this.state = 4695; + this.state = 4708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4687; + this.state = 4700; (localContext as MasterUidListOptionContext)._server_id = this.uid(); - this.state = 4692; + this.state = 4705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4688; + this.state = 4701; this.match(MySqlParser.COMMA); - this.state = 4689; + this.state = 4702; (localContext as MasterUidListOptionContext)._server_id = this.uid(); } } - this.state = 4694; + this.state = 4707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4697; + this.state = 4710; this.match(MySqlParser.RR_BRACKET); } break; @@ -26355,12 +26464,12 @@ export class MySqlParser extends SQLParserBase { } public stringMasterOption(): StringMasterOptionContext { let localContext = new StringMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 372, MySqlParser.RULE_stringMasterOption); + this.enterRule(localContext, 382, MySqlParser.RULE_stringMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4700; + this.state = 4713; _la = this.tokenStream.LA(1); if(!(_la === 108 || ((((_la - 455)) & ~0x1F) === 0 && ((1 << (_la - 455)) & 4190897) !== 0) || _la === 499 || _la === 557)) { this.errorHandler.recoverInline(this); @@ -26387,12 +26496,12 @@ export class MySqlParser extends SQLParserBase { } public decimalMasterOption(): DecimalMasterOptionContext { let localContext = new DecimalMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 374, MySqlParser.RULE_decimalMasterOption); + this.enterRule(localContext, 384, MySqlParser.RULE_decimalMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4702; + this.state = 4715; _la = this.tokenStream.LA(1); if(!(((((_la - 456)) & ~0x1F) === 0 && ((1 << (_la - 456)) & 2097831) !== 0) || _la === 558)) { this.errorHandler.recoverInline(this); @@ -26419,12 +26528,12 @@ export class MySqlParser extends SQLParserBase { } public boolMasterOption(): BoolMasterOptionContext { let localContext = new BoolMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 376, MySqlParser.RULE_boolMasterOption); + this.enterRule(localContext, 386, MySqlParser.RULE_boolMasterOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4704; + this.state = 4717; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 411 || _la === 416 || _la === 454 || _la === 466 || _la === 573 || _la === 617)) { this.errorHandler.recoverInline(this); @@ -26451,20 +26560,20 @@ export class MySqlParser extends SQLParserBase { } public v8NewMasterOption(): V8NewMasterOptionContext { let localContext = new V8NewMasterOptionContext(this.context, this.state); - this.enterRule(localContext, 378, MySqlParser.RULE_v8NewMasterOption); + this.enterRule(localContext, 388, MySqlParser.RULE_v8NewMasterOption); let _la: number; try { - this.state = 4719; + this.state = 4732; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4706; + this.state = 4719; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4707; + this.state = 4720; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4708; + this.state = 4721; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26478,11 +26587,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4709; + this.state = 4722; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4710; + this.state = 4723; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4711; + this.state = 4724; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26496,22 +26605,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4712; + this.state = 4725; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4713; + this.state = 4726; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4717; + this.state = 4730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4714; + this.state = 4727; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4715; + this.state = 4728; this.match(MySqlParser.KW_LOCAL); } break; @@ -26523,7 +26632,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4716; + this.state = 4729; this.gtuidSet(); } break; @@ -26552,10 +26661,10 @@ export class MySqlParser extends SQLParserBase { } public replicationSourceOption(): ReplicationSourceOptionContext { let localContext = new ReplicationSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 380, MySqlParser.RULE_replicationSourceOption); + this.enterRule(localContext, 390, MySqlParser.RULE_replicationSourceOption); let _la: number; try { - this.state = 4748; + this.state = 4761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NETWORK_NAMESPACE: @@ -26579,11 +26688,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4721; + this.state = 4734; this.stringSourceOption(); - this.state = 4722; + this.state = 4735; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4723; + this.state = 4736; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26598,11 +26707,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4725; + this.state = 4738; this.decimalSourceOption(); - this.state = 4726; + this.state = 4739; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4727; + this.state = 4740; this.decimalLiteral(); } break; @@ -26616,11 +26725,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4729; + this.state = 4742; this.boolSourceOption(); - this.state = 4730; + this.state = 4743; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4731; + this.state = 4744; (localContext as SourceBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26638,7 +26747,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceOtherOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4733; + this.state = 4746; this.otherSourceOption(); } break; @@ -26646,39 +26755,39 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4734; + this.state = 4747; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4735; + this.state = 4748; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4736; + this.state = 4749; this.match(MySqlParser.LR_BRACKET); - this.state = 4745; + this.state = 4758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4737; + this.state = 4750; (localContext as SourceUidListOptionContext)._server_id = this.uid(); - this.state = 4742; + this.state = 4755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4738; + this.state = 4751; this.match(MySqlParser.COMMA); - this.state = 4739; + this.state = 4752; (localContext as SourceUidListOptionContext)._server_id = this.uid(); } } - this.state = 4744; + this.state = 4757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4747; + this.state = 4760; this.match(MySqlParser.RR_BRACKET); } break; @@ -26702,12 +26811,12 @@ export class MySqlParser extends SQLParserBase { } public stringSourceOption(): StringSourceOptionContext { let localContext = new StringSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 382, MySqlParser.RULE_stringSourceOption); + this.enterRule(localContext, 392, MySqlParser.RULE_stringSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4750; + this.state = 4763; _la = this.tokenStream.LA(1); if(!(_la === 499 || _la === 557 || ((((_la - 606)) & ~0x1F) === 0 && ((1 << (_la - 606)) & 125771823) !== 0))) { this.errorHandler.recoverInline(this); @@ -26734,12 +26843,12 @@ export class MySqlParser extends SQLParserBase { } public decimalSourceOption(): DecimalSourceOptionContext { let localContext = new DecimalSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 384, MySqlParser.RULE_decimalSourceOption); + this.enterRule(localContext, 394, MySqlParser.RULE_decimalSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4752; + this.state = 4765; _la = this.tokenStream.LA(1); if(!(_la === 558 || ((((_la - 610)) & ~0x1F) === 0 && ((1 << (_la - 610)) & 1397) !== 0))) { this.errorHandler.recoverInline(this); @@ -26766,12 +26875,12 @@ export class MySqlParser extends SQLParserBase { } public boolSourceOption(): BoolSourceOptionContext { let localContext = new BoolSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 386, MySqlParser.RULE_boolSourceOption); + this.enterRule(localContext, 396, MySqlParser.RULE_boolSourceOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4754; + this.state = 4767; _la = this.tokenStream.LA(1); if(!(_la === 412 || _la === 416 || _la === 573 || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 65809) !== 0))) { this.errorHandler.recoverInline(this); @@ -26798,20 +26907,20 @@ export class MySqlParser extends SQLParserBase { } public otherSourceOption(): OtherSourceOptionContext { let localContext = new OtherSourceOptionContext(this.context, this.state); - this.enterRule(localContext, 388, MySqlParser.RULE_otherSourceOption); + this.enterRule(localContext, 398, MySqlParser.RULE_otherSourceOption); let _la: number; try { - this.state = 4769; + this.state = 4782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4756; + this.state = 4769; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4757; + this.state = 4770; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4758; + this.state = 4771; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26825,11 +26934,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4759; + this.state = 4772; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4760; + this.state = 4773; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4761; + this.state = 4774; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26843,22 +26952,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4762; + this.state = 4775; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4763; + this.state = 4776; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4767; + this.state = 4780; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4764; + this.state = 4777; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4765; + this.state = 4778; this.match(MySqlParser.KW_LOCAL); } break; @@ -26870,7 +26979,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4766; + this.state = 4779; this.gtuidSet(); } break; @@ -26899,15 +27008,15 @@ export class MySqlParser extends SQLParserBase { } public channelOption(): ChannelOptionContext { let localContext = new ChannelOptionContext(this.context, this.state); - this.enterRule(localContext, 390, MySqlParser.RULE_channelOption); + this.enterRule(localContext, 400, MySqlParser.RULE_channelOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 4771; + this.state = 4784; this.match(MySqlParser.KW_FOR); - this.state = 4772; + this.state = 4785; this.match(MySqlParser.KW_CHANNEL); - this.state = 4773; + this.state = 4786; this.match(MySqlParser.STRING_LITERAL); } } @@ -26927,41 +27036,41 @@ export class MySqlParser extends SQLParserBase { } public replicationFilter(): ReplicationFilterContext { let localContext = new ReplicationFilterContext(this.context, this.state); - this.enterRule(localContext, 392, MySqlParser.RULE_replicationFilter); + this.enterRule(localContext, 402, MySqlParser.RULE_replicationFilter); let _la: number; try { - this.state = 4838; + this.state = 4851; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_REPLICATE_DO_DB: localContext = new DoDbReplicationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4775; + this.state = 4788; this.match(MySqlParser.KW_REPLICATE_DO_DB); - this.state = 4776; + this.state = 4789; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4777; + this.state = 4790; this.match(MySqlParser.LR_BRACKET); - this.state = 4778; + this.state = 4791; this.databaseName(); - this.state = 4783; + this.state = 4796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4779; + this.state = 4792; this.match(MySqlParser.COMMA); - this.state = 4780; + this.state = 4793; this.databaseName(); } } - this.state = 4785; + this.state = 4798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4786; + this.state = 4799; this.match(MySqlParser.RR_BRACKET); } break; @@ -26969,31 +27078,31 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreDbReplicationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4788; + this.state = 4801; this.match(MySqlParser.KW_REPLICATE_IGNORE_DB); - this.state = 4789; + this.state = 4802; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4790; + this.state = 4803; this.match(MySqlParser.LR_BRACKET); - this.state = 4791; + this.state = 4804; this.databaseName(); - this.state = 4796; + this.state = 4809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4792; + this.state = 4805; this.match(MySqlParser.COMMA); - this.state = 4793; + this.state = 4806; this.databaseName(); } } - this.state = 4798; + this.state = 4811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4799; + this.state = 4812; this.match(MySqlParser.RR_BRACKET); } break; @@ -27001,15 +27110,15 @@ export class MySqlParser extends SQLParserBase { localContext = new DoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4801; + this.state = 4814; this.match(MySqlParser.KW_REPLICATE_DO_TABLE); - this.state = 4802; + this.state = 4815; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4803; + this.state = 4816; this.match(MySqlParser.LR_BRACKET); - this.state = 4804; + this.state = 4817; this.tableNames(); - this.state = 4805; + this.state = 4818; this.match(MySqlParser.RR_BRACKET); } break; @@ -27017,15 +27126,15 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4807; + this.state = 4820; this.match(MySqlParser.KW_REPLICATE_IGNORE_TABLE); - this.state = 4808; + this.state = 4821; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4809; + this.state = 4822; this.match(MySqlParser.LR_BRACKET); - this.state = 4810; + this.state = 4823; this.tableNames(); - this.state = 4811; + this.state = 4824; this.match(MySqlParser.RR_BRACKET); } break; @@ -27033,15 +27142,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildDoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4813; + this.state = 4826; this.match(MySqlParser.KW_REPLICATE_WILD_DO_TABLE); - this.state = 4814; + this.state = 4827; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4815; + this.state = 4828; this.match(MySqlParser.LR_BRACKET); - this.state = 4816; + this.state = 4829; this.simpleStrings(); - this.state = 4817; + this.state = 4830; this.match(MySqlParser.RR_BRACKET); } break; @@ -27049,15 +27158,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildIgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4819; + this.state = 4832; this.match(MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE); - this.state = 4820; + this.state = 4833; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4821; + this.state = 4834; this.match(MySqlParser.LR_BRACKET); - this.state = 4822; + this.state = 4835; this.simpleStrings(); - this.state = 4823; + this.state = 4836; this.match(MySqlParser.RR_BRACKET); } break; @@ -27065,31 +27174,31 @@ export class MySqlParser extends SQLParserBase { localContext = new RewriteDbReplicationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 4825; + this.state = 4838; this.match(MySqlParser.KW_REPLICATE_REWRITE_DB); - this.state = 4826; + this.state = 4839; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4827; + this.state = 4840; this.match(MySqlParser.LR_BRACKET); - this.state = 4828; + this.state = 4841; this.tablePair(); - this.state = 4833; + this.state = 4846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4829; + this.state = 4842; this.match(MySqlParser.COMMA); - this.state = 4830; + this.state = 4843; this.tablePair(); } } - this.state = 4835; + this.state = 4848; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4836; + this.state = 4849; this.match(MySqlParser.RR_BRACKET); } break; @@ -27113,19 +27222,19 @@ export class MySqlParser extends SQLParserBase { } public tablePair(): TablePairContext { let localContext = new TablePairContext(this.context, this.state); - this.enterRule(localContext, 394, MySqlParser.RULE_tablePair); + this.enterRule(localContext, 404, MySqlParser.RULE_tablePair); try { this.enterOuterAlt(localContext, 1); { - this.state = 4840; + this.state = 4853; this.match(MySqlParser.LR_BRACKET); - this.state = 4841; + this.state = 4854; localContext._firstTable = this.tableName(); - this.state = 4842; + this.state = 4855; this.match(MySqlParser.COMMA); - this.state = 4843; + this.state = 4856; localContext._secondTable = this.tableName(); - this.state = 4844; + this.state = 4857; this.match(MySqlParser.RR_BRACKET); } } @@ -27145,12 +27254,12 @@ export class MySqlParser extends SQLParserBase { } public threadType(): ThreadTypeContext { let localContext = new ThreadTypeContext(this.context, this.state); - this.enterRule(localContext, 396, MySqlParser.RULE_threadType); + this.enterRule(localContext, 406, MySqlParser.RULE_threadType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4846; + this.state = 4859; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 639)) { this.errorHandler.recoverInline(this); @@ -27177,10 +27286,10 @@ export class MySqlParser extends SQLParserBase { } public untilOption(): UntilOptionContext { let localContext = new UntilOptionContext(this.context, this.state); - this.enterRule(localContext, 398, MySqlParser.RULE_untilOption); + this.enterRule(localContext, 408, MySqlParser.RULE_untilOption); let _la: number; try { - this.state = 4873; + this.state = 4886; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQL_AFTER_GTIDS: @@ -27188,7 +27297,7 @@ export class MySqlParser extends SQLParserBase { localContext = new GtidsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4848; + this.state = 4861; (localContext as GtidsUntilOptionContext)._gtids = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 633 || _la === 635)) { @@ -27198,9 +27307,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4849; + this.state = 4862; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4850; + this.state = 4863; this.gtuidSet(); } break; @@ -27208,19 +27317,19 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4851; + this.state = 4864; this.match(MySqlParser.KW_MASTER_LOG_FILE); - this.state = 4852; + this.state = 4865; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4853; + this.state = 4866; this.match(MySqlParser.STRING_LITERAL); - this.state = 4854; + this.state = 4867; this.match(MySqlParser.COMMA); - this.state = 4855; + this.state = 4868; this.match(MySqlParser.KW_MASTER_LOG_POS); - this.state = 4856; + this.state = 4869; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4857; + this.state = 4870; this.decimalLiteral(); } break; @@ -27228,19 +27337,19 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4858; + this.state = 4871; this.match(MySqlParser.KW_SOURCE_LOG_FILE); - this.state = 4859; + this.state = 4872; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4860; + this.state = 4873; this.match(MySqlParser.STRING_LITERAL); - this.state = 4861; + this.state = 4874; this.match(MySqlParser.COMMA); - this.state = 4862; + this.state = 4875; this.match(MySqlParser.KW_SOURCE_LOG_POS); - this.state = 4863; + this.state = 4876; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4864; + this.state = 4877; this.decimalLiteral(); } break; @@ -27248,19 +27357,19 @@ export class MySqlParser extends SQLParserBase { localContext = new RelayLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4865; + this.state = 4878; this.match(MySqlParser.KW_RELAY_LOG_FILE); - this.state = 4866; + this.state = 4879; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4867; + this.state = 4880; this.match(MySqlParser.STRING_LITERAL); - this.state = 4868; + this.state = 4881; this.match(MySqlParser.COMMA); - this.state = 4869; + this.state = 4882; this.match(MySqlParser.KW_RELAY_LOG_POS); - this.state = 4870; + this.state = 4883; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4871; + this.state = 4884; this.decimalLiteral(); } break; @@ -27268,7 +27377,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SqlGapsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4872; + this.state = 4885; this.match(MySqlParser.KW_SQL_AFTER_MTS_GAPS); } break; @@ -27292,20 +27401,20 @@ export class MySqlParser extends SQLParserBase { } public connectionOptions(): ConnectionOptionsContext { let localContext = new ConnectionOptionsContext(this.context, this.state); - this.enterRule(localContext, 400, MySqlParser.RULE_connectionOptions); + this.enterRule(localContext, 410, MySqlParser.RULE_connectionOptions); try { - this.state = 4887; + this.state = 4900; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_USER: localContext = new UserConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4875; + this.state = 4888; this.match(MySqlParser.KW_USER); - this.state = 4876; + this.state = 4889; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4877; + this.state = 4890; (localContext as UserConnectionOptionContext)._conOptUser = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27313,11 +27422,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4878; + this.state = 4891; this.match(MySqlParser.KW_PASSWORD); - this.state = 4879; + this.state = 4892; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4880; + this.state = 4893; (localContext as PasswordConnectionOptionContext)._conOptPassword = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27325,11 +27434,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultAuthConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4881; + this.state = 4894; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4882; + this.state = 4895; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4883; + this.state = 4896; (localContext as DefaultAuthConnectionOptionContext)._conOptDefAuth = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27337,11 +27446,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PluginDirConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4884; + this.state = 4897; this.match(MySqlParser.KW_PLUGIN_DIR); - this.state = 4885; + this.state = 4898; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4886; + this.state = 4899; (localContext as PluginDirConnectionOptionContext)._conOptPluginDir = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27365,10 +27474,10 @@ export class MySqlParser extends SQLParserBase { } public gtuidSet(): GtuidSetContext { let localContext = new GtuidSetContext(this.context, this.state); - this.enterRule(localContext, 402, MySqlParser.RULE_gtuidSet); + this.enterRule(localContext, 412, MySqlParser.RULE_gtuidSet); try { let alternative: number; - this.state = 4898; + this.state = 4911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -27379,32 +27488,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4889; + this.state = 4902; this.uuidSet(); - this.state = 4894; + this.state = 4907; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 691, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4890; + this.state = 4903; this.match(MySqlParser.COMMA); - this.state = 4891; + this.state = 4904; this.uuidSet(); } } } - this.state = 4896; + this.state = 4909; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 691, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 690, this.context); } } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 4897; + this.state = 4910; this.match(MySqlParser.STRING_LITERAL); } break; @@ -27428,14 +27537,14 @@ export class MySqlParser extends SQLParserBase { } public xaStartTransaction(): XaStartTransactionContext { let localContext = new XaStartTransactionContext(this.context, this.state); - this.enterRule(localContext, 404, MySqlParser.RULE_xaStartTransaction); + this.enterRule(localContext, 414, MySqlParser.RULE_xaStartTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4900; + this.state = 4913; this.match(MySqlParser.KW_XA); - this.state = 4901; + this.state = 4914; localContext._xaStart = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 317 || _la === 640)) { @@ -27445,14 +27554,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4902; + this.state = 4915; this.xid(); - this.state = 4904; + this.state = 4917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 577) { { - this.state = 4903; + this.state = 4916; localContext._xaAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 577)) { @@ -27483,32 +27592,32 @@ export class MySqlParser extends SQLParserBase { } public xaEndTransaction(): XaEndTransactionContext { let localContext = new XaEndTransactionContext(this.context, this.state); - this.enterRule(localContext, 406, MySqlParser.RULE_xaEndTransaction); + this.enterRule(localContext, 416, MySqlParser.RULE_xaEndTransaction); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4906; + this.state = 4919; this.match(MySqlParser.KW_XA); - this.state = 4907; + this.state = 4920; this.match(MySqlParser.KW_END); - this.state = 4908; + this.state = 4921; this.xid(); - this.state = 4914; + this.state = 4927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 654) { { - this.state = 4909; + this.state = 4922; this.match(MySqlParser.KW_SUSPEND); - this.state = 4912; + this.state = 4925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4910; + this.state = 4923; this.match(MySqlParser.KW_FOR); - this.state = 4911; + this.state = 4924; this.match(MySqlParser.KW_MIGRATE); } } @@ -27534,15 +27643,15 @@ export class MySqlParser extends SQLParserBase { } public xaPrepareStatement(): XaPrepareStatementContext { let localContext = new XaPrepareStatementContext(this.context, this.state); - this.enterRule(localContext, 408, MySqlParser.RULE_xaPrepareStatement); + this.enterRule(localContext, 418, MySqlParser.RULE_xaPrepareStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4916; + this.state = 4929; this.match(MySqlParser.KW_XA); - this.state = 4917; + this.state = 4930; this.match(MySqlParser.KW_PREPARE); - this.state = 4918; + this.state = 4931; this.xid(); } } @@ -27562,25 +27671,25 @@ export class MySqlParser extends SQLParserBase { } public xaCommitWork(): XaCommitWorkContext { let localContext = new XaCommitWorkContext(this.context, this.state); - this.enterRule(localContext, 410, MySqlParser.RULE_xaCommitWork); + this.enterRule(localContext, 420, MySqlParser.RULE_xaCommitWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4920; + this.state = 4933; this.match(MySqlParser.KW_XA); - this.state = 4921; + this.state = 4934; this.match(MySqlParser.KW_COMMIT); - this.state = 4922; + this.state = 4935; this.xid(); - this.state = 4925; + this.state = 4938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 4923; + this.state = 4936; this.match(MySqlParser.KW_ONE); - this.state = 4924; + this.state = 4937; this.match(MySqlParser.KW_PHASE); } } @@ -27603,15 +27712,15 @@ export class MySqlParser extends SQLParserBase { } public xaRollbackWork(): XaRollbackWorkContext { let localContext = new XaRollbackWorkContext(this.context, this.state); - this.enterRule(localContext, 412, MySqlParser.RULE_xaRollbackWork); + this.enterRule(localContext, 422, MySqlParser.RULE_xaRollbackWork); try { this.enterOuterAlt(localContext, 1); { - this.state = 4927; + this.state = 4940; this.match(MySqlParser.KW_XA); - this.state = 4928; + this.state = 4941; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4929; + this.state = 4942; this.xid(); } } @@ -27631,23 +27740,23 @@ export class MySqlParser extends SQLParserBase { } public xaRecoverWork(): XaRecoverWorkContext { let localContext = new XaRecoverWorkContext(this.context, this.state); - this.enterRule(localContext, 414, MySqlParser.RULE_xaRecoverWork); + this.enterRule(localContext, 424, MySqlParser.RULE_xaRecoverWork); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4931; + this.state = 4944; this.match(MySqlParser.KW_XA); - this.state = 4932; + this.state = 4945; this.match(MySqlParser.KW_RECOVER); - this.state = 4935; + this.state = 4948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 4933; + this.state = 4946; this.match(MySqlParser.KW_CONVERT); - this.state = 4934; + this.state = 4947; this.xid(); } } @@ -27670,28 +27779,28 @@ export class MySqlParser extends SQLParserBase { } public prepareStatement(): PrepareStatementContext { let localContext = new PrepareStatementContext(this.context, this.state); - this.enterRule(localContext, 416, MySqlParser.RULE_prepareStatement); + this.enterRule(localContext, 426, MySqlParser.RULE_prepareStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 4937; + this.state = 4950; this.match(MySqlParser.KW_PREPARE); - this.state = 4938; + this.state = 4951; localContext._stmt_name = this.uid(); - this.state = 4939; + this.state = 4952; this.match(MySqlParser.KW_FROM); - this.state = 4942; + this.state = 4955; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 4940; + this.state = 4953; localContext._query = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.LOCAL_ID: { - this.state = 4941; + this.state = 4954; localContext._variable = this.match(MySqlParser.LOCAL_ID); } break; @@ -27716,23 +27825,23 @@ export class MySqlParser extends SQLParserBase { } public executeStatement(): ExecuteStatementContext { let localContext = new ExecuteStatementContext(this.context, this.state); - this.enterRule(localContext, 418, MySqlParser.RULE_executeStatement); + this.enterRule(localContext, 428, MySqlParser.RULE_executeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4944; + this.state = 4957; this.match(MySqlParser.KW_EXECUTE); - this.state = 4945; + this.state = 4958; localContext._stmt_name = this.uid(); - this.state = 4948; + this.state = 4961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 4946; + this.state = 4959; this.match(MySqlParser.KW_USING); - this.state = 4947; + this.state = 4960; this.userVariables(); } } @@ -27755,12 +27864,12 @@ export class MySqlParser extends SQLParserBase { } public deallocatePrepare(): DeallocatePrepareContext { let localContext = new DeallocatePrepareContext(this.context, this.state); - this.enterRule(localContext, 420, MySqlParser.RULE_deallocatePrepare); + this.enterRule(localContext, 430, MySqlParser.RULE_deallocatePrepare); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4950; + this.state = 4963; localContext._dropFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 51 || _la === 362)) { @@ -27770,9 +27879,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4951; + this.state = 4964; this.match(MySqlParser.KW_PREPARE); - this.state = 4952; + this.state = 4965; localContext._stmt_name = this.uid(); } } @@ -27792,22 +27901,22 @@ export class MySqlParser extends SQLParserBase { } public routineBody(): RoutineBodyContext { let localContext = new RoutineBodyContext(this.context, this.state); - this.enterRule(localContext, 422, MySqlParser.RULE_routineBody); + this.enterRule(localContext, 432, MySqlParser.RULE_routineBody); try { - this.state = 4956; + this.state = 4969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 700, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 699, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4954; + this.state = 4967; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4955; + this.state = 4968; this.sqlStatement(); } break; @@ -27829,120 +27938,120 @@ export class MySqlParser extends SQLParserBase { } public blockStatement(): BlockStatementContext { let localContext = new BlockStatementContext(this.context, this.state); - this.enterRule(localContext, 424, MySqlParser.RULE_blockStatement); + this.enterRule(localContext, 434, MySqlParser.RULE_blockStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4961; + this.state = 4974; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 700, this.context) ) { case 1: { - this.state = 4958; + this.state = 4971; localContext._begin = this.uid(); - this.state = 4959; + this.state = 4972; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4963; + this.state = 4976; this.match(MySqlParser.KW_BEGIN); - this.state = 4969; + this.state = 4982; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, 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 = 4964; + this.state = 4977; this.declareVariable(); - this.state = 4965; + this.state = 4978; this.match(MySqlParser.SEMI); } } } - this.state = 4971; + this.state = 4984; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 701, this.context); } - this.state = 4977; + this.state = 4990; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4972; + this.state = 4985; this.declareCondition(); - this.state = 4973; + this.state = 4986; this.match(MySqlParser.SEMI); } } } - this.state = 4979; + this.state = 4992; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 702, this.context); } - this.state = 4985; + this.state = 4998; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4980; + this.state = 4993; this.declareCursor(); - this.state = 4981; + this.state = 4994; this.match(MySqlParser.SEMI); } } } - this.state = 4987; + this.state = 5000; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); } - this.state = 4993; + this.state = 5006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 41) { { { - this.state = 4988; + this.state = 5001; this.declareHandler(); - this.state = 4989; + this.state = 5002; this.match(MySqlParser.SEMI); } } - this.state = 4995; + this.state = 5008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4999; + this.state = 5012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 706, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4996; + this.state = 5009; this.procedureSqlStatement(); } } } - this.state = 5001; + this.state = 5014; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 706, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); } - this.state = 5002; + this.state = 5015; this.match(MySqlParser.KW_END); - this.state = 5004; + this.state = 5017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 706, this.context) ) { case 1: { - this.state = 5003; + this.state = 5016; localContext._end = this.uid(); } break; @@ -27965,52 +28074,52 @@ export class MySqlParser extends SQLParserBase { } public caseStatement(): CaseStatementContext { let localContext = new CaseStatementContext(this.context, this.state); - this.enterRule(localContext, 426, MySqlParser.RULE_caseStatement); + this.enterRule(localContext, 436, MySqlParser.RULE_caseStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5006; + this.state = 5019; this.match(MySqlParser.KW_CASE); - this.state = 5009; + this.state = 5022; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: { - this.state = 5007; + this.state = 5020; localContext._case_value = this.uid(); } break; case 2: { - this.state = 5008; + this.state = 5021; this.expression(0); } break; } - this.state = 5012; + this.state = 5025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5011; + this.state = 5024; this.caseAlternative(); } } - this.state = 5014; + this.state = 5027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 5022; + this.state = 5035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5016; + this.state = 5029; this.match(MySqlParser.KW_ELSE); - this.state = 5018; + this.state = 5031; this.errorHandler.sync(this); alternative = 1; do { @@ -28018,7 +28127,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5017; + this.state = 5030; this.procedureSqlStatement(); } } @@ -28026,16 +28135,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5020; + this.state = 5033; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 710, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 709, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5024; + this.state = 5037; this.match(MySqlParser.KW_END); - this.state = 5025; + this.state = 5038; this.match(MySqlParser.KW_CASE); } } @@ -28055,19 +28164,19 @@ export class MySqlParser extends SQLParserBase { } public ifStatement(): IfStatementContext { let localContext = new IfStatementContext(this.context, this.state); - this.enterRule(localContext, 428, MySqlParser.RULE_ifStatement); + this.enterRule(localContext, 438, MySqlParser.RULE_ifStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5027; + this.state = 5040; this.match(MySqlParser.KW_IF); - this.state = 5028; + this.state = 5041; this.expression(0); - this.state = 5029; + this.state = 5042; this.match(MySqlParser.KW_THEN); - this.state = 5031; + this.state = 5044; this.errorHandler.sync(this); alternative = 1; do { @@ -28075,7 +28184,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5030; + this.state = 5043; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._thenStatements.push(localContext._procedureSqlStatement); } @@ -28084,32 +28193,32 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5033; + this.state = 5046; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 712, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5038; + this.state = 5051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 5035; + this.state = 5048; this.elifAlternative(); } } - this.state = 5040; + this.state = 5053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5047; + this.state = 5060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5041; + this.state = 5054; this.match(MySqlParser.KW_ELSE); - this.state = 5043; + this.state = 5056; this.errorHandler.sync(this); alternative = 1; do { @@ -28117,7 +28226,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5042; + this.state = 5055; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._elseStatements.push(localContext._procedureSqlStatement); } @@ -28126,16 +28235,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5045; + this.state = 5058; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 714, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 713, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5049; + this.state = 5062; this.match(MySqlParser.KW_END); - this.state = 5050; + this.state = 5063; this.match(MySqlParser.KW_IF); } } @@ -28155,13 +28264,13 @@ export class MySqlParser extends SQLParserBase { } public iterateStatement(): IterateStatementContext { let localContext = new IterateStatementContext(this.context, this.state); - this.enterRule(localContext, 430, MySqlParser.RULE_iterateStatement); + this.enterRule(localContext, 440, MySqlParser.RULE_iterateStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5052; + this.state = 5065; this.match(MySqlParser.KW_ITERATE); - this.state = 5053; + this.state = 5066; localContext._label = this.uid(); } } @@ -28181,13 +28290,13 @@ export class MySqlParser extends SQLParserBase { } public leaveStatement(): LeaveStatementContext { let localContext = new LeaveStatementContext(this.context, this.state); - this.enterRule(localContext, 432, MySqlParser.RULE_leaveStatement); + this.enterRule(localContext, 442, MySqlParser.RULE_leaveStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5055; + this.state = 5068; this.match(MySqlParser.KW_LEAVE); - this.state = 5056; + this.state = 5069; localContext._label = this.uid(); } } @@ -28207,27 +28316,27 @@ export class MySqlParser extends SQLParserBase { } public loopStatement(): LoopStatementContext { let localContext = new LoopStatementContext(this.context, this.state); - this.enterRule(localContext, 434, MySqlParser.RULE_loopStatement); + this.enterRule(localContext, 444, MySqlParser.RULE_loopStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5061; + this.state = 5074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5058; + this.state = 5071; localContext._begin_label = this.uid(); - this.state = 5059; + this.state = 5072; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5063; + this.state = 5076; this.match(MySqlParser.KW_LOOP); - this.state = 5065; + this.state = 5078; this.errorHandler.sync(this); alternative = 1; do { @@ -28235,7 +28344,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5064; + this.state = 5077; this.procedureSqlStatement(); } } @@ -28243,20 +28352,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5067; + this.state = 5080; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 717, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 716, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5069; + this.state = 5082; this.match(MySqlParser.KW_END); - this.state = 5070; + this.state = 5083; this.match(MySqlParser.KW_LOOP); - this.state = 5072; + this.state = 5085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5071; + this.state = 5084; localContext._end_label = this.uid(); } } @@ -28279,27 +28388,27 @@ export class MySqlParser extends SQLParserBase { } public repeatStatement(): RepeatStatementContext { let localContext = new RepeatStatementContext(this.context, this.state); - this.enterRule(localContext, 436, MySqlParser.RULE_repeatStatement); + this.enterRule(localContext, 446, MySqlParser.RULE_repeatStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5077; + this.state = 5090; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: { - this.state = 5074; + this.state = 5087; localContext._begin_label = this.uid(); - this.state = 5075; + this.state = 5088; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 5079; + this.state = 5092; this.match(MySqlParser.KW_REPEAT); - this.state = 5081; + this.state = 5094; this.errorHandler.sync(this); alternative = 1; do { @@ -28307,7 +28416,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5080; + this.state = 5093; this.procedureSqlStatement(); } } @@ -28315,24 +28424,24 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5083; + this.state = 5096; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 720, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 719, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5085; + this.state = 5098; this.match(MySqlParser.KW_UNTIL); - this.state = 5086; + this.state = 5099; this.expression(0); - this.state = 5087; + this.state = 5100; this.match(MySqlParser.KW_END); - this.state = 5088; + this.state = 5101; this.match(MySqlParser.KW_REPEAT); - this.state = 5090; + this.state = 5103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5089; + this.state = 5102; localContext._end_label = this.uid(); } } @@ -28355,13 +28464,13 @@ export class MySqlParser extends SQLParserBase { } public returnStatement(): ReturnStatementContext { let localContext = new ReturnStatementContext(this.context, this.state); - this.enterRule(localContext, 438, MySqlParser.RULE_returnStatement); + this.enterRule(localContext, 448, MySqlParser.RULE_returnStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5092; + this.state = 5105; this.match(MySqlParser.KW_RETURN); - this.state = 5093; + this.state = 5106; this.expression(0); } } @@ -28381,31 +28490,31 @@ export class MySqlParser extends SQLParserBase { } public whileStatement(): WhileStatementContext { let localContext = new WhileStatementContext(this.context, this.state); - this.enterRule(localContext, 440, MySqlParser.RULE_whileStatement); + this.enterRule(localContext, 450, MySqlParser.RULE_whileStatement); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5098; + this.state = 5111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5095; + this.state = 5108; localContext._begin_label = this.uid(); - this.state = 5096; + this.state = 5109; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5100; + this.state = 5113; this.match(MySqlParser.KW_WHILE); - this.state = 5101; + this.state = 5114; this.expression(0); - this.state = 5102; + this.state = 5115; this.match(MySqlParser.KW_DO); - this.state = 5104; + this.state = 5117; this.errorHandler.sync(this); alternative = 1; do { @@ -28413,7 +28522,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5103; + this.state = 5116; this.procedureSqlStatement(); } } @@ -28421,20 +28530,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5106; + this.state = 5119; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 723, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 722, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5108; + this.state = 5121; this.match(MySqlParser.KW_END); - this.state = 5109; + this.state = 5122; this.match(MySqlParser.KW_WHILE); - this.state = 5111; + this.state = 5124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5110; + this.state = 5123; localContext._end_label = this.uid(); } } @@ -28457,19 +28566,19 @@ export class MySqlParser extends SQLParserBase { } public cursorStatement(): CursorStatementContext { let localContext = new CursorStatementContext(this.context, this.state); - this.enterRule(localContext, 442, MySqlParser.RULE_cursorStatement); + this.enterRule(localContext, 452, MySqlParser.RULE_cursorStatement); let _la: number; try { - this.state = 5128; + this.state = 5141; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CLOSE: localContext = new CloseCursorContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5113; + this.state = 5126; this.match(MySqlParser.KW_CLOSE); - this.state = 5114; + this.state = 5127; (localContext as CloseCursorContext)._cursor_name = this.uid(); } break; @@ -28477,33 +28586,33 @@ export class MySqlParser extends SQLParserBase { localContext = new FetchCursorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5115; + this.state = 5128; this.match(MySqlParser.KW_FETCH); - this.state = 5120; + this.state = 5133; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 726, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { case 1: { - this.state = 5117; + this.state = 5130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 501) { { - this.state = 5116; + this.state = 5129; this.match(MySqlParser.KW_NEXT); } } - this.state = 5119; + this.state = 5132; this.match(MySqlParser.KW_FROM); } break; } - this.state = 5122; + this.state = 5135; (localContext as FetchCursorContext)._cursor_name = this.uid(); - this.state = 5123; + this.state = 5136; this.match(MySqlParser.KW_INTO); - this.state = 5124; + this.state = 5137; (localContext as FetchCursorContext)._var_names = this.uidList(); } break; @@ -28511,9 +28620,9 @@ export class MySqlParser extends SQLParserBase { localContext = new OpenCursorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5126; + this.state = 5139; this.match(MySqlParser.KW_OPEN); - this.state = 5127; + this.state = 5140; (localContext as OpenCursorContext)._cursor_name = this.uid(); } break; @@ -28537,25 +28646,25 @@ export class MySqlParser extends SQLParserBase { } public declareVariable(): DeclareVariableContext { let localContext = new DeclareVariableContext(this.context, this.state); - this.enterRule(localContext, 444, MySqlParser.RULE_declareVariable); + this.enterRule(localContext, 454, MySqlParser.RULE_declareVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5130; + this.state = 5143; this.match(MySqlParser.KW_DECLARE); - this.state = 5131; + this.state = 5144; localContext._var_names = this.uidList(); - this.state = 5132; + this.state = 5145; this.dataType(); - this.state = 5135; + this.state = 5148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5133; + this.state = 5146; this.match(MySqlParser.KW_DEFAULT); - this.state = 5134; + this.state = 5147; this.expression(0); } } @@ -28578,20 +28687,20 @@ export class MySqlParser extends SQLParserBase { } public declareCondition(): DeclareConditionContext { let localContext = new DeclareConditionContext(this.context, this.state); - this.enterRule(localContext, 446, MySqlParser.RULE_declareCondition); + this.enterRule(localContext, 456, MySqlParser.RULE_declareCondition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5137; + this.state = 5150; this.match(MySqlParser.KW_DECLARE); - this.state = 5138; + this.state = 5151; localContext._condition_name = this.uid(); - this.state = 5139; + this.state = 5152; this.match(MySqlParser.KW_CONDITION); - this.state = 5140; + this.state = 5153; this.match(MySqlParser.KW_FOR); - this.state = 5147; + this.state = 5160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28601,25 +28710,25 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5141; + this.state = 5154; this.decimalLiteral(); } break; case MySqlParser.KW_SQLSTATE: { - this.state = 5142; + this.state = 5155; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5144; + this.state = 5157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5143; + this.state = 5156; this.match(MySqlParser.KW_VALUE); } } - this.state = 5146; + this.state = 5159; this.match(MySqlParser.STRING_LITERAL); } break; @@ -28644,19 +28753,19 @@ export class MySqlParser extends SQLParserBase { } public declareCursor(): DeclareCursorContext { let localContext = new DeclareCursorContext(this.context, this.state); - this.enterRule(localContext, 448, MySqlParser.RULE_declareCursor); + this.enterRule(localContext, 458, MySqlParser.RULE_declareCursor); try { this.enterOuterAlt(localContext, 1); { - this.state = 5149; + this.state = 5162; this.match(MySqlParser.KW_DECLARE); - this.state = 5150; + this.state = 5163; localContext._condition_name = this.uid(); - this.state = 5151; + this.state = 5164; this.match(MySqlParser.KW_CURSOR); - this.state = 5152; + this.state = 5165; this.match(MySqlParser.KW_FOR); - this.state = 5153; + this.state = 5166; this.selectStatement(); } } @@ -28676,14 +28785,14 @@ export class MySqlParser extends SQLParserBase { } public declareHandler(): DeclareHandlerContext { let localContext = new DeclareHandlerContext(this.context, this.state); - this.enterRule(localContext, 450, MySqlParser.RULE_declareHandler); + this.enterRule(localContext, 460, MySqlParser.RULE_declareHandler); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5155; + this.state = 5168; this.match(MySqlParser.KW_DECLARE); - this.state = 5156; + this.state = 5169; localContext._handlerAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 61 || _la === 180)) { @@ -28693,29 +28802,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5157; + this.state = 5170; this.match(MySqlParser.KW_HANDLER); - this.state = 5158; + this.state = 5171; this.match(MySqlParser.KW_FOR); - this.state = 5159; + this.state = 5172; this.handlerConditionValue(); - this.state = 5164; + this.state = 5177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5160; + this.state = 5173; this.match(MySqlParser.COMMA); - this.state = 5161; + this.state = 5174; this.handlerConditionValue(); } } - this.state = 5166; + this.state = 5179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5167; + this.state = 5180; this.routineBody(); } } @@ -28735,10 +28844,10 @@ export class MySqlParser extends SQLParserBase { } public handlerConditionValue(): HandlerConditionValueContext { let localContext = new HandlerConditionValueContext(this.context, this.state); - this.enterRule(localContext, 452, MySqlParser.RULE_handlerConditionValue); + this.enterRule(localContext, 462, MySqlParser.RULE_handlerConditionValue); let _la: number; try { - this.state = 5180; + this.state = 5193; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28750,7 +28859,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionCodeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5169; + this.state = 5182; this.decimalLiteral(); } break; @@ -28758,19 +28867,19 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionStateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5170; + this.state = 5183; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5172; + this.state = 5185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5171; + this.state = 5184; this.match(MySqlParser.KW_VALUE); } } - this.state = 5174; + this.state = 5187; this.match(MySqlParser.STRING_LITERAL); } break; @@ -29326,7 +29435,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNameContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5175; + this.state = 5188; (localContext as HandlerConditionNameContext)._condition_name = this.uid(); } break; @@ -29334,7 +29443,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionWarningContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5176; + this.state = 5189; this.match(MySqlParser.KW_SQLWARNING); } break; @@ -29342,9 +29451,9 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNotfoundContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5177; + this.state = 5190; this.match(MySqlParser.KW_NOT); - this.state = 5178; + this.state = 5191; this.match(MySqlParser.KW_FOUND); } break; @@ -29352,7 +29461,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionExceptionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5179; + this.state = 5192; this.match(MySqlParser.KW_SQLEXCEPTION); } break; @@ -29376,27 +29485,27 @@ export class MySqlParser extends SQLParserBase { } public procedureSqlStatement(): ProcedureSqlStatementContext { let localContext = new ProcedureSqlStatementContext(this.context, this.state); - this.enterRule(localContext, 454, MySqlParser.RULE_procedureSqlStatement); + this.enterRule(localContext, 464, MySqlParser.RULE_procedureSqlStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 5184; + this.state = 5197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 734, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 733, this.context) ) { case 1: { - this.state = 5182; + this.state = 5195; this.compoundStatement(); } break; case 2: { - this.state = 5183; + this.state = 5196; this.sqlStatement(); } break; } - this.state = 5186; + this.state = 5199; this.match(MySqlParser.SEMI); } } @@ -29416,32 +29525,32 @@ export class MySqlParser extends SQLParserBase { } public caseAlternative(): CaseAlternativeContext { let localContext = new CaseAlternativeContext(this.context, this.state); - this.enterRule(localContext, 456, MySqlParser.RULE_caseAlternative); + this.enterRule(localContext, 466, MySqlParser.RULE_caseAlternative); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5188; + this.state = 5201; this.match(MySqlParser.KW_WHEN); - this.state = 5191; + this.state = 5204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 734, this.context) ) { case 1: { - this.state = 5189; + this.state = 5202; this.constant(); } break; case 2: { - this.state = 5190; + this.state = 5203; this.expression(0); } break; } - this.state = 5193; + this.state = 5206; this.match(MySqlParser.KW_THEN); - this.state = 5195; + this.state = 5208; this.errorHandler.sync(this); alternative = 1; do { @@ -29449,7 +29558,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5194; + this.state = 5207; this.procedureSqlStatement(); } } @@ -29457,9 +29566,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5197; + this.state = 5210; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 736, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 735, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29479,18 +29588,18 @@ export class MySqlParser extends SQLParserBase { } public elifAlternative(): ElifAlternativeContext { let localContext = new ElifAlternativeContext(this.context, this.state); - this.enterRule(localContext, 458, MySqlParser.RULE_elifAlternative); + this.enterRule(localContext, 468, MySqlParser.RULE_elifAlternative); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5199; + this.state = 5212; this.match(MySqlParser.KW_ELSEIF); - this.state = 5200; + this.state = 5213; this.expression(0); - this.state = 5201; + this.state = 5214; this.match(MySqlParser.KW_THEN); - this.state = 5203; + this.state = 5216; this.errorHandler.sync(this); alternative = 1; do { @@ -29498,7 +29607,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5202; + this.state = 5215; this.procedureSqlStatement(); } } @@ -29506,9 +29615,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5205; + this.state = 5218; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 737, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 736, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29528,46 +29637,46 @@ export class MySqlParser extends SQLParserBase { } public alterUser(): AlterUserContext { let localContext = new AlterUserContext(this.context, this.state); - this.enterRule(localContext, 460, MySqlParser.RULE_alterUser); + this.enterRule(localContext, 470, MySqlParser.RULE_alterUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5207; + this.state = 5220; this.match(MySqlParser.KW_ALTER); - this.state = 5208; + this.state = 5221; this.match(MySqlParser.KW_USER); - this.state = 5210; + this.state = 5223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { case 1: { - this.state = 5209; + this.state = 5222; this.ifExists(); } break; } - this.state = 5268; + this.state = 5281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 750, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { case 1: { { - this.state = 5212; + this.state = 5225; this.userSpecification(); - this.state = 5217; + this.state = 5230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5213; + this.state = 5226; this.match(MySqlParser.COMMA); - this.state = 5214; + this.state = 5227; this.userSpecification(); } } - this.state = 5219; + this.state = 5232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29577,37 +29686,37 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 5220; + this.state = 5233; this.alterUserAuthOption(); - this.state = 5225; + this.state = 5238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5221; + this.state = 5234; this.match(MySqlParser.COMMA); - this.state = 5222; + this.state = 5235; this.alterUserAuthOption(); } } - this.state = 5227; + this.state = 5240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5242; + this.state = 5255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5228; + this.state = 5241; this.match(MySqlParser.KW_REQUIRE); - this.state = 5240; + this.state = 5253; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5229; + this.state = 5242; this.match(MySqlParser.KW_NONE); } break; @@ -29617,29 +29726,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5230; + this.state = 5243; this.tlsOption(); - this.state = 5237; + this.state = 5250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5232; + this.state = 5245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5231; + this.state = 5244; this.match(MySqlParser.KW_AND); } } - this.state = 5234; + this.state = 5247; this.tlsOption(); } } - this.state = 5239; + this.state = 5252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29651,49 +29760,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5250; + this.state = 5263; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 746, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 5244; + this.state = 5257; this.match(MySqlParser.KW_WITH); - this.state = 5246; + this.state = 5259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5245; + this.state = 5258; this.userResourceOption(); } } - this.state = 5248; + this.state = 5261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5256; + this.state = 5269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5254; + this.state = 5267; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5252; + this.state = 5265; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5253; + this.state = 5266; this.userLockOption(); } break; @@ -29701,16 +29810,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5258; + this.state = 5271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5261; + this.state = 5274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5259; + this.state = 5272; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29719,7 +29828,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5260; + this.state = 5273; this.match(MySqlParser.STRING_LITERAL); } } @@ -29731,14 +29840,14 @@ export class MySqlParser extends SQLParserBase { { { { - this.state = 5263; + this.state = 5276; this.userOrRoleName(); } - this.state = 5264; + this.state = 5277; this.match(MySqlParser.KW_DEFAULT); - this.state = 5265; + this.state = 5278; this.match(MySqlParser.KW_ROLE); - this.state = 5266; + this.state = 5279; this.roleOption(); } } @@ -29762,90 +29871,90 @@ export class MySqlParser extends SQLParserBase { } public createUser(): CreateUserContext { let localContext = new CreateUserContext(this.context, this.state); - this.enterRule(localContext, 462, MySqlParser.RULE_createUser); + this.enterRule(localContext, 472, MySqlParser.RULE_createUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5270; + this.state = 5283; this.match(MySqlParser.KW_CREATE); - this.state = 5271; + this.state = 5284; this.match(MySqlParser.KW_USER); - this.state = 5273; + this.state = 5286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5272; + this.state = 5285; this.ifNotExists(); } } - this.state = 5275; + this.state = 5288; this.userName(); - this.state = 5277; + this.state = 5290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5276; + this.state = 5289; this.createUserAuthOption(); } } - this.state = 5286; + this.state = 5299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5279; + this.state = 5292; this.match(MySqlParser.COMMA); - this.state = 5280; + this.state = 5293; this.userName(); - this.state = 5282; + this.state = 5295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5281; + this.state = 5294; this.createUserAuthOption(); } } } } - this.state = 5288; + this.state = 5301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5292; + this.state = 5305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5289; + this.state = 5302; this.match(MySqlParser.KW_DEFAULT); - this.state = 5290; + this.state = 5303; this.match(MySqlParser.KW_ROLE); - this.state = 5291; + this.state = 5304; this.roleOption(); } } - this.state = 5308; + this.state = 5321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5294; + this.state = 5307; this.match(MySqlParser.KW_REQUIRE); - this.state = 5306; + this.state = 5319; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5295; + this.state = 5308; this.match(MySqlParser.KW_NONE); } break; @@ -29855,29 +29964,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5296; + this.state = 5309; this.tlsOption(); - this.state = 5303; + this.state = 5316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5298; + this.state = 5311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5297; + this.state = 5310; this.match(MySqlParser.KW_AND); } } - this.state = 5300; + this.state = 5313; this.tlsOption(); } } - this.state = 5305; + this.state = 5318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29889,49 +29998,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5316; + this.state = 5329; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 761, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 760, this.context) ) { case 1: { - this.state = 5310; + this.state = 5323; this.match(MySqlParser.KW_WITH); - this.state = 5312; + this.state = 5325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5311; + this.state = 5324; this.userResourceOption(); } } - this.state = 5314; + this.state = 5327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5322; + this.state = 5335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5320; + this.state = 5333; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5318; + this.state = 5331; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5319; + this.state = 5332; this.userLockOption(); } break; @@ -29939,16 +30048,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5324; + this.state = 5337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5327; + this.state = 5340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5325; + this.state = 5338; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29957,7 +30066,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5326; + this.state = 5339; this.match(MySqlParser.STRING_LITERAL); } } @@ -29980,40 +30089,40 @@ export class MySqlParser extends SQLParserBase { } public dropUser(): DropUserContext { let localContext = new DropUserContext(this.context, this.state); - this.enterRule(localContext, 464, MySqlParser.RULE_dropUser); + this.enterRule(localContext, 474, MySqlParser.RULE_dropUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5329; + this.state = 5342; this.match(MySqlParser.KW_DROP); - this.state = 5330; + this.state = 5343; this.match(MySqlParser.KW_USER); - this.state = 5332; + this.state = 5345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5331; + this.state = 5344; this.ifExists(); } } - this.state = 5334; + this.state = 5347; this.userName(); - this.state = 5339; + this.state = 5352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5335; + this.state = 5348; this.match(MySqlParser.COMMA); - this.state = 5336; + this.state = 5349; this.userName(); } } - this.state = 5341; + this.state = 5354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30035,73 +30144,73 @@ export class MySqlParser extends SQLParserBase { } public grantStatement(): GrantStatementContext { let localContext = new GrantStatementContext(this.context, this.state); - this.enterRule(localContext, 466, MySqlParser.RULE_grantStatement); + this.enterRule(localContext, 476, MySqlParser.RULE_grantStatement); let _la: number; try { let alternative: number; - this.state = 5431; + this.state = 5444; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 783, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5342; + this.state = 5355; this.match(MySqlParser.KW_GRANT); - this.state = 5343; + this.state = 5356; this.privelegeClause(); - this.state = 5348; + this.state = 5361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5344; + this.state = 5357; this.match(MySqlParser.COMMA); - this.state = 5345; + this.state = 5358; this.privelegeClause(); } } - this.state = 5350; + this.state = 5363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5351; + this.state = 5364; this.match(MySqlParser.KW_ON); - this.state = 5353; + this.state = 5366; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 768, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 767, this.context) ) { case 1: { - this.state = 5352; + this.state = 5365; this.privilegeObjectType(); } break; } - this.state = 5355; + this.state = 5368; this.privilegeLevel(); - this.state = 5356; + this.state = 5369; this.match(MySqlParser.KW_TO); - this.state = 5366; + this.state = 5379; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 770, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { case 1: { { - this.state = 5357; + this.state = 5370; this.userAuthOption(); - this.state = 5362; + this.state = 5375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5358; + this.state = 5371; this.match(MySqlParser.COMMA); - this.state = 5359; + this.state = 5372; this.userAuthOption(); } } - this.state = 5364; + this.state = 5377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30110,24 +30219,24 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 5365; + this.state = 5378; this.userOrRoleNames(); } break; } - this.state = 5382; + this.state = 5395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5368; + this.state = 5381; this.match(MySqlParser.KW_REQUIRE); - this.state = 5380; + this.state = 5393; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5369; + this.state = 5382; localContext._tlsNone = this.match(MySqlParser.KW_NONE); } break; @@ -30137,29 +30246,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5370; + this.state = 5383; this.tlsOption(); - this.state = 5377; + this.state = 5390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5372; + this.state = 5385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5371; + this.state = 5384; this.match(MySqlParser.KW_AND); } } - this.state = 5374; + this.state = 5387; this.tlsOption(); } } - this.state = 5379; + this.state = 5392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30171,27 +30280,27 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5393; + this.state = 5406; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { case 1: { - this.state = 5384; + this.state = 5397; this.match(MySqlParser.KW_WITH); - this.state = 5390; + this.state = 5403; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 776, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 775, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 5388; + this.state = 5401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_GRANT: { - this.state = 5385; + this.state = 5398; this.match(MySqlParser.KW_GRANT); - this.state = 5386; + this.state = 5399; this.match(MySqlParser.KW_OPTION); } break; @@ -30200,7 +30309,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MAX_UPDATES_PER_HOUR: case MySqlParser.KW_MAX_USER_CONNECTIONS: { - this.state = 5387; + this.state = 5400; this.userResourceOption(); } break; @@ -30209,32 +30318,32 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 5392; + this.state = 5405; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 776, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 775, this.context); } } break; } - this.state = 5402; + this.state = 5415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 5395; + this.state = 5408; this.match(MySqlParser.KW_AS); - this.state = 5396; + this.state = 5409; this.userName(); - this.state = 5400; + this.state = 5413; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { case 1: { - this.state = 5397; + this.state = 5410; this.match(MySqlParser.KW_WITH); - this.state = 5398; + this.state = 5411; this.match(MySqlParser.KW_ROLE); - this.state = 5399; + this.state = 5412; this.roleOption(); } break; @@ -30247,76 +30356,76 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5404; + this.state = 5417; this.match(MySqlParser.KW_GRANT); - this.state = 5407; + this.state = 5420; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 780, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { case 1: { - this.state = 5405; + this.state = 5418; this.match(MySqlParser.KW_PROXY); - this.state = 5406; + this.state = 5419; this.match(MySqlParser.KW_ON); } break; } { - this.state = 5409; + this.state = 5422; this.userOrRoleName(); } - this.state = 5414; + this.state = 5427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5410; + this.state = 5423; this.match(MySqlParser.COMMA); { - this.state = 5411; + this.state = 5424; this.userOrRoleName(); } } } - this.state = 5416; + this.state = 5429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5417; + this.state = 5430; this.match(MySqlParser.KW_TO); { - this.state = 5418; + this.state = 5431; this.userOrRoleName(); } - this.state = 5423; + this.state = 5436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5419; + this.state = 5432; this.match(MySqlParser.COMMA); { - this.state = 5420; + this.state = 5433; this.userOrRoleName(); } } } - this.state = 5425; + this.state = 5438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5429; + this.state = 5442; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 783, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 782, this.context) ) { case 1: { - this.state = 5426; + this.state = 5439; this.match(MySqlParser.KW_WITH); - this.state = 5427; + this.state = 5440; this.match(MySqlParser.KW_ADMIN); - this.state = 5428; + this.state = 5441; this.match(MySqlParser.KW_OPTION); } break; @@ -30341,39 +30450,39 @@ export class MySqlParser extends SQLParserBase { } public roleOption(): RoleOptionContext { let localContext = new RoleOptionContext(this.context, this.state); - this.enterRule(localContext, 468, MySqlParser.RULE_roleOption); + this.enterRule(localContext, 478, MySqlParser.RULE_roleOption); let _la: number; try { - this.state = 5441; + this.state = 5454; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 786, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5433; + this.state = 5446; this.match(MySqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5434; + this.state = 5447; this.match(MySqlParser.KW_NONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5435; + this.state = 5448; this.match(MySqlParser.KW_ALL); - this.state = 5438; + this.state = 5451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 5436; + this.state = 5449; this.match(MySqlParser.KW_EXCEPT); - this.state = 5437; + this.state = 5450; this.userOrRoleNames(); } } @@ -30383,7 +30492,7 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5440; + this.state = 5453; this.userOrRoleNames(); } break; @@ -30405,50 +30514,50 @@ export class MySqlParser extends SQLParserBase { } public grantProxy(): GrantProxyContext { let localContext = new GrantProxyContext(this.context, this.state); - this.enterRule(localContext, 470, MySqlParser.RULE_grantProxy); + this.enterRule(localContext, 480, MySqlParser.RULE_grantProxy); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5443; + this.state = 5456; this.match(MySqlParser.KW_GRANT); - this.state = 5444; + this.state = 5457; this.match(MySqlParser.KW_PROXY); - this.state = 5445; + this.state = 5458; this.match(MySqlParser.KW_ON); - this.state = 5446; + this.state = 5459; localContext._fromFirst = this.userName(); - this.state = 5447; + this.state = 5460; this.match(MySqlParser.KW_TO); - this.state = 5448; + this.state = 5461; localContext._toFirst = this.userName(); - this.state = 5453; + this.state = 5466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5449; + this.state = 5462; this.match(MySqlParser.COMMA); - this.state = 5450; + this.state = 5463; localContext._userName = this.userName(); localContext._toOther.push(localContext._userName); } } - this.state = 5455; + this.state = 5468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5459; + this.state = 5472; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { case 1: { - this.state = 5456; + this.state = 5469; this.match(MySqlParser.KW_WITH); - this.state = 5457; + this.state = 5470; this.match(MySqlParser.KW_GRANT); - this.state = 5458; + this.state = 5471; this.match(MySqlParser.KW_OPTION); } break; @@ -30471,69 +30580,69 @@ export class MySqlParser extends SQLParserBase { } public alterResourceGroup(): AlterResourceGroupContext { let localContext = new AlterResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 472, MySqlParser.RULE_alterResourceGroup); + this.enterRule(localContext, 482, MySqlParser.RULE_alterResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5461; + this.state = 5474; this.match(MySqlParser.KW_ALTER); - this.state = 5462; + this.state = 5475; this.match(MySqlParser.KW_RESOURCE); - this.state = 5463; + this.state = 5476; this.match(MySqlParser.KW_GROUP); - this.state = 5464; + this.state = 5477; this.groupName(); - this.state = 5470; + this.state = 5483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5465; + this.state = 5478; this.match(MySqlParser.KW_VCPU); - this.state = 5467; + this.state = 5480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5466; + this.state = 5479; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5469; + this.state = 5482; this.resourceGroupVcpuSpec(); } } - this.state = 5477; + this.state = 5490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5472; + this.state = 5485; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5474; + this.state = 5487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5473; + this.state = 5486; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5476; + this.state = 5489; this.decimalLiteral(); } } - this.state = 5483; + this.state = 5496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5479; + this.state = 5492; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30542,12 +30651,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5481; + this.state = 5494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5480; + this.state = 5493; this.match(MySqlParser.KW_FORCE); } } @@ -30573,24 +30682,24 @@ export class MySqlParser extends SQLParserBase { } public createResourceGroup(): CreateResourceGroupContext { let localContext = new CreateResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 474, MySqlParser.RULE_createResourceGroup); + this.enterRule(localContext, 484, MySqlParser.RULE_createResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5485; + this.state = 5498; this.match(MySqlParser.KW_CREATE); - this.state = 5486; + this.state = 5499; this.match(MySqlParser.KW_RESOURCE); - this.state = 5487; + this.state = 5500; this.match(MySqlParser.KW_GROUP); - this.state = 5488; + this.state = 5501; this.groupNameCreate(); - this.state = 5489; + this.state = 5502; this.match(MySqlParser.KW_TYPE); - this.state = 5490; + this.state = 5503; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5491; + this.state = 5504; _la = this.tokenStream.LA(1); if(!(_la === 678 || _la === 835)) { this.errorHandler.recoverInline(this); @@ -30599,56 +30708,56 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5497; + this.state = 5510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5492; + this.state = 5505; this.match(MySqlParser.KW_VCPU); - this.state = 5494; + this.state = 5507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5493; + this.state = 5506; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5496; + this.state = 5509; this.resourceGroupVcpuSpec(); } } - this.state = 5504; + this.state = 5517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5499; + this.state = 5512; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5501; + this.state = 5514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5500; + this.state = 5513; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5503; + this.state = 5516; this.decimalLiteral(); } } - this.state = 5507; + this.state = 5520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5506; + this.state = 5519; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30678,25 +30787,25 @@ export class MySqlParser extends SQLParserBase { } public dropResourceGroup(): DropResourceGroupContext { let localContext = new DropResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 476, MySqlParser.RULE_dropResourceGroup); + this.enterRule(localContext, 486, MySqlParser.RULE_dropResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5509; + this.state = 5522; this.match(MySqlParser.KW_DROP); - this.state = 5510; + this.state = 5523; this.match(MySqlParser.KW_RESOURCE); - this.state = 5511; + this.state = 5524; this.match(MySqlParser.KW_GROUP); - this.state = 5512; + this.state = 5525; this.groupName(); - this.state = 5514; + this.state = 5527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5513; + this.state = 5526; this.match(MySqlParser.KW_FORCE); } } @@ -30719,41 +30828,41 @@ export class MySqlParser extends SQLParserBase { } public setResourceGroup(): SetResourceGroupContext { let localContext = new SetResourceGroupContext(this.context, this.state); - this.enterRule(localContext, 478, MySqlParser.RULE_setResourceGroup); + this.enterRule(localContext, 488, MySqlParser.RULE_setResourceGroup); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5516; + this.state = 5529; this.match(MySqlParser.KW_SET); - this.state = 5517; + this.state = 5530; this.match(MySqlParser.KW_RESOURCE); - this.state = 5518; + this.state = 5531; this.match(MySqlParser.KW_GROUP); - this.state = 5519; + this.state = 5532; this.groupName(); - this.state = 5529; + this.state = 5542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5520; + this.state = 5533; this.match(MySqlParser.KW_FOR); - this.state = 5521; + this.state = 5534; this.decimalLiteral(); - this.state = 5526; + this.state = 5539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5522; + this.state = 5535; this.match(MySqlParser.COMMA); - this.state = 5523; + this.state = 5536; this.decimalLiteral(); } } - this.state = 5528; + this.state = 5541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30778,48 +30887,48 @@ export class MySqlParser extends SQLParserBase { } public resourceGroupVcpuSpec(): ResourceGroupVcpuSpecContext { let localContext = new ResourceGroupVcpuSpecContext(this.context, this.state); - this.enterRule(localContext, 480, MySqlParser.RULE_resourceGroupVcpuSpec); + this.enterRule(localContext, 490, MySqlParser.RULE_resourceGroupVcpuSpec); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5536; + this.state = 5549; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 803, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 802, this.context) ) { case 1: { - this.state = 5531; + this.state = 5544; this.decimalLiteral(); } break; case 2: { - this.state = 5532; + this.state = 5545; this.decimalLiteral(); - this.state = 5533; + this.state = 5546; this.match(MySqlParser.MINUS); - this.state = 5534; + this.state = 5547; this.decimalLiteral(); } break; } - this.state = 5542; + this.state = 5555; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 804, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 803, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5538; + this.state = 5551; this.match(MySqlParser.COMMA); - this.state = 5539; + this.state = 5552; this.resourceGroupVcpuSpec(); } } } - this.state = 5544; + this.state = 5557; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 804, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 803, this.context); } } } @@ -30839,30 +30948,30 @@ export class MySqlParser extends SQLParserBase { } public renameUser(): RenameUserContext { let localContext = new RenameUserContext(this.context, this.state); - this.enterRule(localContext, 482, MySqlParser.RULE_renameUser); + this.enterRule(localContext, 492, MySqlParser.RULE_renameUser); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5545; + this.state = 5558; this.match(MySqlParser.KW_RENAME); - this.state = 5546; + this.state = 5559; this.match(MySqlParser.KW_USER); - this.state = 5547; + this.state = 5560; this.renameUserClause(); - this.state = 5552; + this.state = 5565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5548; + this.state = 5561; this.match(MySqlParser.COMMA); - this.state = 5549; + this.state = 5562; this.renameUserClause(); } } - this.state = 5554; + this.state = 5567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30884,70 +30993,70 @@ export class MySqlParser extends SQLParserBase { } public revokeStatement(): RevokeStatementContext { let localContext = new RevokeStatementContext(this.context, this.state); - this.enterRule(localContext, 484, MySqlParser.RULE_revokeStatement); + this.enterRule(localContext, 494, MySqlParser.RULE_revokeStatement); let _la: number; try { - this.state = 5607; + this.state = 5620; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 816, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: localContext = new DetailRevokeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5555; + this.state = 5568; this.match(MySqlParser.KW_REVOKE); - this.state = 5557; + this.state = 5570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5556; + this.state = 5569; this.ifExists(); } } - this.state = 5559; + this.state = 5572; this.privelegeClause(); - this.state = 5564; + this.state = 5577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5560; + this.state = 5573; this.match(MySqlParser.COMMA); - this.state = 5561; + this.state = 5574; this.privelegeClause(); } } - this.state = 5566; + this.state = 5579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5567; + this.state = 5580; this.match(MySqlParser.KW_ON); - this.state = 5569; + this.state = 5582; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 808, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { case 1: { - this.state = 5568; + this.state = 5581; this.privilegeObjectType(); } break; } - this.state = 5571; + this.state = 5584; this.privilegeLevel(); - this.state = 5572; + this.state = 5585; this.match(MySqlParser.KW_FROM); - this.state = 5573; + this.state = 5586; this.userOrRoleNames(); - this.state = 5575; + this.state = 5588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5574; + this.state = 5587; this.ignoreUnknownUser(); } } @@ -30958,46 +31067,46 @@ export class MySqlParser extends SQLParserBase { localContext = new ShortRevokeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5577; + this.state = 5590; this.match(MySqlParser.KW_REVOKE); - this.state = 5579; + this.state = 5592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5578; + this.state = 5591; this.ifExists(); } } - this.state = 5581; + this.state = 5594; this.match(MySqlParser.KW_ALL); - this.state = 5583; + this.state = 5596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5582; + this.state = 5595; this.match(MySqlParser.KW_PRIVILEGES); } } - this.state = 5585; + this.state = 5598; this.match(MySqlParser.COMMA); - this.state = 5586; + this.state = 5599; this.match(MySqlParser.KW_GRANT); - this.state = 5587; + this.state = 5600; this.match(MySqlParser.KW_OPTION); - this.state = 5588; + this.state = 5601; this.match(MySqlParser.KW_FROM); - this.state = 5589; + this.state = 5602; this.userOrRoleNames(); - this.state = 5591; + this.state = 5604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5590; + this.state = 5603; this.ignoreUnknownUser(); } } @@ -31008,42 +31117,42 @@ export class MySqlParser extends SQLParserBase { localContext = new ProxyAndRoleRevokeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5593; + this.state = 5606; this.match(MySqlParser.KW_REVOKE); - this.state = 5595; + this.state = 5608; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 812, this.context) ) { case 1: { - this.state = 5594; + this.state = 5607; this.ifExists(); } break; } - this.state = 5599; + this.state = 5612; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { case 1: { - this.state = 5597; + this.state = 5610; this.match(MySqlParser.KW_PROXY); - this.state = 5598; + this.state = 5611; this.match(MySqlParser.KW_ON); } break; } - this.state = 5601; + this.state = 5614; this.userOrRoleNames(); - this.state = 5602; + this.state = 5615; this.match(MySqlParser.KW_FROM); - this.state = 5603; + this.state = 5616; this.userOrRoleNames(); - this.state = 5605; + this.state = 5618; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5604; + this.state = 5617; this.ignoreUnknownUser(); } } @@ -31068,15 +31177,15 @@ export class MySqlParser extends SQLParserBase { } public ignoreUnknownUser(): IgnoreUnknownUserContext { let localContext = new IgnoreUnknownUserContext(this.context, this.state); - this.enterRule(localContext, 486, MySqlParser.RULE_ignoreUnknownUser); + this.enterRule(localContext, 496, MySqlParser.RULE_ignoreUnknownUser); try { this.enterOuterAlt(localContext, 1); { - this.state = 5609; + this.state = 5622; this.match(MySqlParser.KW_IGNORE); - this.state = 5610; + this.state = 5623; this.match(MySqlParser.KW_UNKNOWN); - this.state = 5611; + this.state = 5624; this.match(MySqlParser.KW_USER); } } @@ -31096,12 +31205,12 @@ export class MySqlParser extends SQLParserBase { } public privilegeObjectType(): PrivilegeObjectTypeContext { let localContext = new PrivilegeObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 488, MySqlParser.RULE_privilegeObjectType); + this.enterRule(localContext, 498, MySqlParser.RULE_privilegeObjectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5613; + this.state = 5626; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 173 || _la === 409)) { this.errorHandler.recoverInline(this); @@ -31128,47 +31237,47 @@ export class MySqlParser extends SQLParserBase { } public setPasswordStatement(): SetPasswordStatementContext { let localContext = new SetPasswordStatementContext(this.context, this.state); - this.enterRule(localContext, 490, MySqlParser.RULE_setPasswordStatement); + this.enterRule(localContext, 500, MySqlParser.RULE_setPasswordStatement); let _la: number; try { - this.state = 5647; + this.state = 5660; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 823, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { case 1: localContext = new V57Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5615; + this.state = 5628; this.match(MySqlParser.KW_SET); - this.state = 5616; + this.state = 5629; this.match(MySqlParser.KW_PASSWORD); - this.state = 5619; + this.state = 5632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5617; + this.state = 5630; this.match(MySqlParser.KW_FOR); - this.state = 5618; + this.state = 5631; this.userName(); } } - this.state = 5621; + this.state = 5634; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5624; + this.state = 5637; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OLD_PASSWORD: case MySqlParser.KW_PASSWORD: { - this.state = 5622; + this.state = 5635; this.passwordFunctionClause(); } break; case MySqlParser.STRING_LITERAL: { - this.state = 5623; + this.state = 5636; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31181,66 +31290,66 @@ export class MySqlParser extends SQLParserBase { localContext = new V80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5626; + this.state = 5639; this.match(MySqlParser.KW_SET); - this.state = 5627; + this.state = 5640; this.match(MySqlParser.KW_PASSWORD); - this.state = 5630; + this.state = 5643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5628; + this.state = 5641; this.match(MySqlParser.KW_FOR); - this.state = 5629; + this.state = 5642; this.userName(); } } - this.state = 5636; + this.state = 5649; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 5632; + this.state = 5645; this.match(MySqlParser.KW_TO); - this.state = 5633; + this.state = 5646; this.match(MySqlParser.KW_RANDOM); } break; case MySqlParser.EQUAL_SYMBOL: { - this.state = 5634; + this.state = 5647; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5635; + this.state = 5648; this.match(MySqlParser.STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5640; + this.state = 5653; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 821, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { case 1: { - this.state = 5638; + this.state = 5651; this.match(MySqlParser.KW_REPLACE); - this.state = 5639; + this.state = 5652; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5645; + this.state = 5658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5642; + this.state = 5655; this.match(MySqlParser.KW_RETAIN); - this.state = 5643; + this.state = 5656; this.match(MySqlParser.KW_CURRENT); - this.state = 5644; + this.state = 5657; this.match(MySqlParser.KW_PASSWORD); } } @@ -31265,13 +31374,13 @@ export class MySqlParser extends SQLParserBase { } public userSpecification(): UserSpecificationContext { let localContext = new UserSpecificationContext(this.context, this.state); - this.enterRule(localContext, 492, MySqlParser.RULE_userSpecification); + this.enterRule(localContext, 502, MySqlParser.RULE_userSpecification); try { this.enterOuterAlt(localContext, 1); { - this.state = 5649; + this.state = 5662; this.userName(); - this.state = 5650; + this.state = 5663; this.userPasswordOption(); } } @@ -31291,66 +31400,66 @@ export class MySqlParser extends SQLParserBase { } public alterUserAuthOption(): AlterUserAuthOptionContext { let localContext = new AlterUserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 494, MySqlParser.RULE_alterUserAuthOption); + this.enterRule(localContext, 504, MySqlParser.RULE_alterUserAuthOption); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5652; + this.state = 5665; this.userName(); - this.state = 5678; + this.state = 5691; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 825, this.context) ) { case 1: { - this.state = 5653; + this.state = 5666; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5654; + this.state = 5667; this.match(MySqlParser.KW_BY); - this.state = 5655; + this.state = 5668; this.match(MySqlParser.STRING_LITERAL); - this.state = 5656; + this.state = 5669; this.authOptionClause(); } break; case 2: { - this.state = 5657; + this.state = 5670; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5658; + this.state = 5671; this.match(MySqlParser.KW_BY); - this.state = 5659; + this.state = 5672; this.match(MySqlParser.KW_RANDOM); - this.state = 5660; + this.state = 5673; this.match(MySqlParser.KW_PASSWORD); - this.state = 5661; + this.state = 5674; this.authOptionClause(); } break; case 3: { - this.state = 5662; + this.state = 5675; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5663; + this.state = 5676; this.match(MySqlParser.KW_WITH); - this.state = 5664; + this.state = 5677; this.authenticationRule(); } break; case 4: { - this.state = 5665; + this.state = 5678; this.match(MySqlParser.KW_DISCARD); - this.state = 5666; + this.state = 5679; this.match(MySqlParser.KW_OLD); - this.state = 5667; + this.state = 5680; this.match(MySqlParser.KW_PASSWORD); } break; case 5: { - this.state = 5673; + this.state = 5686; this.errorHandler.sync(this); alternative = 1; do { @@ -31358,7 +31467,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5668; + this.state = 5681; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51 || _la === 492)) { this.errorHandler.recoverInline(this); @@ -31367,14 +31476,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5669; + this.state = 5682; this.factor(); - this.state = 5671; + this.state = 5684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5670; + this.state = 5683; this.factorAuthOption(); } } @@ -31385,15 +31494,15 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5675; + this.state = 5688; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 825, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 824, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 6: { - this.state = 5677; + this.state = 5690; this.registrationOption(); } break; @@ -31416,34 +31525,34 @@ export class MySqlParser extends SQLParserBase { } public createUserAuthOption(): CreateUserAuthOptionContext { let localContext = new CreateUserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 496, MySqlParser.RULE_createUserAuthOption); + this.enterRule(localContext, 506, MySqlParser.RULE_createUserAuthOption); let _la: number; try { - this.state = 5716; + this.state = 5729; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 833, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 832, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5680; + this.state = 5693; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5681; + this.state = 5694; this.match(MySqlParser.KW_BY); - this.state = 5687; + this.state = 5700; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5682; + this.state = 5695; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5683; + this.state = 5696; this.match(MySqlParser.KW_RANDOM); - this.state = 5684; + this.state = 5697; this.match(MySqlParser.KW_PASSWORD); } } @@ -31451,9 +31560,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PASSWORD: { { - this.state = 5685; + this.state = 5698; this.match(MySqlParser.KW_PASSWORD); - this.state = 5686; + this.state = 5699; this.match(MySqlParser.STRING_LITERAL); } } @@ -31461,14 +31570,14 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5691; + this.state = 5704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5689; + this.state = 5702; this.match(MySqlParser.KW_AND); - this.state = 5690; + this.state = 5703; this.createUserAuthOption(); } } @@ -31478,35 +31587,35 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5693; + this.state = 5706; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5694; + this.state = 5707; this.match(MySqlParser.KW_WITH); - this.state = 5695; + this.state = 5708; localContext._authPlugin = this.uid(); - this.state = 5704; + this.state = 5717; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5696; + this.state = 5709; this.match(MySqlParser.KW_BY); - this.state = 5700; + this.state = 5713; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5697; + this.state = 5710; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5698; + this.state = 5711; this.match(MySqlParser.KW_RANDOM); - this.state = 5699; + this.state = 5712; this.match(MySqlParser.KW_PASSWORD); } } @@ -31519,9 +31628,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5702; + this.state = 5715; this.match(MySqlParser.KW_AS); - this.state = 5703; + this.state = 5716; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31602,14 +31711,14 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 5708; + this.state = 5721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5706; + this.state = 5719; this.match(MySqlParser.KW_AND); - this.state = 5707; + this.state = 5720; this.createUserAuthOption(); } } @@ -31619,18 +31728,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5710; + this.state = 5723; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5711; + this.state = 5724; this.match(MySqlParser.KW_WITH); - this.state = 5712; + this.state = 5725; localContext._authPlugin = this.uid(); - this.state = 5714; + this.state = 5727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 427) { { - this.state = 5713; + this.state = 5726; this.createUserInitialAuthOption(); } } @@ -31655,38 +31764,38 @@ export class MySqlParser extends SQLParserBase { } public createUserInitialAuthOption(): CreateUserInitialAuthOptionContext { let localContext = new CreateUserInitialAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 498, MySqlParser.RULE_createUserInitialAuthOption); + this.enterRule(localContext, 508, MySqlParser.RULE_createUserInitialAuthOption); try { - this.state = 5735; + this.state = 5748; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 835, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5718; + this.state = 5731; this.match(MySqlParser.KW_INITIAL); - this.state = 5719; + this.state = 5732; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5720; + this.state = 5733; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5721; + this.state = 5734; this.match(MySqlParser.KW_BY); - this.state = 5725; + this.state = 5738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_RANDOM: { { - this.state = 5722; + this.state = 5735; this.match(MySqlParser.KW_RANDOM); - this.state = 5723; + this.state = 5736; this.match(MySqlParser.KW_PASSWORD); } } break; case MySqlParser.STRING_LITERAL: { - this.state = 5724; + this.state = 5737; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31698,19 +31807,19 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5727; + this.state = 5740; this.match(MySqlParser.KW_INITIAL); - this.state = 5728; + this.state = 5741; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5729; + this.state = 5742; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5730; + this.state = 5743; this.match(MySqlParser.KW_WITH); - this.state = 5731; + this.state = 5744; localContext._authPlugin = this.uid(); - this.state = 5732; + this.state = 5745; this.match(MySqlParser.KW_AS); - this.state = 5733; + this.state = 5746; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31732,24 +31841,24 @@ export class MySqlParser extends SQLParserBase { } public userAuthOption(): UserAuthOptionContext { let localContext = new UserAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 500, MySqlParser.RULE_userAuthOption); + this.enterRule(localContext, 510, MySqlParser.RULE_userAuthOption); try { - this.state = 5762; + this.state = 5775; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 835, this.context) ) { case 1: localContext = new HashAuthOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5737; + this.state = 5750; this.userName(); - this.state = 5738; + this.state = 5751; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5739; + this.state = 5752; this.match(MySqlParser.KW_BY); - this.state = 5740; + this.state = 5753; this.match(MySqlParser.KW_PASSWORD); - this.state = 5741; + this.state = 5754; (localContext as HashAuthOptionContext)._hashed = this.match(MySqlParser.STRING_LITERAL); } break; @@ -31757,17 +31866,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RandomAuthOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5743; + this.state = 5756; this.userName(); - this.state = 5744; + this.state = 5757; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5745; + this.state = 5758; this.match(MySqlParser.KW_BY); - this.state = 5746; + this.state = 5759; this.match(MySqlParser.KW_RANDOM); - this.state = 5747; + this.state = 5760; this.match(MySqlParser.KW_PASSWORD); - this.state = 5748; + this.state = 5761; this.authOptionClause(); } break; @@ -31775,15 +31884,15 @@ export class MySqlParser extends SQLParserBase { localContext = new StringAuthOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5750; + this.state = 5763; this.userName(); - this.state = 5751; + this.state = 5764; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5752; + this.state = 5765; this.match(MySqlParser.KW_BY); - this.state = 5753; + this.state = 5766; this.match(MySqlParser.STRING_LITERAL); - this.state = 5754; + this.state = 5767; this.authOptionClause(); } break; @@ -31791,13 +31900,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ModuleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5756; + this.state = 5769; this.userName(); - this.state = 5757; + this.state = 5770; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5758; + this.state = 5771; this.match(MySqlParser.KW_WITH); - this.state = 5759; + this.state = 5772; this.authenticationRule(); } break; @@ -31805,7 +31914,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5761; + this.state = 5774; this.userName(); } break; @@ -31827,33 +31936,33 @@ export class MySqlParser extends SQLParserBase { } public authOptionClause(): AuthOptionClauseContext { let localContext = new AuthOptionClauseContext(this.context, this.state); - this.enterRule(localContext, 502, MySqlParser.RULE_authOptionClause); + this.enterRule(localContext, 512, MySqlParser.RULE_authOptionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5766; + this.state = 5779; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { case 1: { - this.state = 5764; + this.state = 5777; this.match(MySqlParser.KW_REPLACE); - this.state = 5765; + this.state = 5778; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5771; + this.state = 5784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5768; + this.state = 5781; this.match(MySqlParser.KW_RETAIN); - this.state = 5769; + this.state = 5782; this.match(MySqlParser.KW_CURRENT); - this.state = 5770; + this.state = 5783; this.match(MySqlParser.KW_PASSWORD); } } @@ -31876,24 +31985,24 @@ export class MySqlParser extends SQLParserBase { } public authenticationRule(): AuthenticationRuleContext { let localContext = new AuthenticationRuleContext(this.context, this.state); - this.enterRule(localContext, 504, MySqlParser.RULE_authenticationRule); + this.enterRule(localContext, 514, MySqlParser.RULE_authenticationRule); let _la: number; try { - this.state = 5787; + this.state = 5800; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { case 1: localContext = new ModuleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5773; + this.state = 5786; (localContext as ModuleContext)._authPlugin = this.uid(); - this.state = 5781; + this.state = 5794; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { case 1: { - this.state = 5774; + this.state = 5787; _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 20 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -31902,27 +32011,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5778; + this.state = 5791; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5775; + this.state = 5788; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { - this.state = 5776; + this.state = 5789; this.match(MySqlParser.KW_RANDOM); - this.state = 5777; + this.state = 5790; this.match(MySqlParser.KW_PASSWORD); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5780; + this.state = 5793; this.authOptionClause(); } break; @@ -31933,11 +32042,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordModuleOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5783; + this.state = 5796; (localContext as PasswordModuleOptionContext)._authPlugin = this.uid(); - this.state = 5784; + this.state = 5797; this.match(MySqlParser.KW_USING); - this.state = 5785; + this.state = 5798; this.passwordFunctionClause(); } break; @@ -31959,49 +32068,49 @@ export class MySqlParser extends SQLParserBase { } public tlsOption(): TlsOptionContext { let localContext = new TlsOptionContext(this.context, this.state); - this.enterRule(localContext, 506, MySqlParser.RULE_tlsOption); + this.enterRule(localContext, 516, MySqlParser.RULE_tlsOption); try { - this.state = 5797; + this.state = 5810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SSL: this.enterOuterAlt(localContext, 1); { - this.state = 5789; + this.state = 5802; this.match(MySqlParser.KW_SSL); } break; case MySqlParser.KW_X509: this.enterOuterAlt(localContext, 2); { - this.state = 5790; + this.state = 5803; this.match(MySqlParser.KW_X509); } break; case MySqlParser.KW_CIPHER: this.enterOuterAlt(localContext, 3); { - this.state = 5791; + this.state = 5804; this.match(MySqlParser.KW_CIPHER); - this.state = 5792; + this.state = 5805; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ISSUER: this.enterOuterAlt(localContext, 4); { - this.state = 5793; + this.state = 5806; this.match(MySqlParser.KW_ISSUER); - this.state = 5794; + this.state = 5807; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SUBJECT: this.enterOuterAlt(localContext, 5); { - this.state = 5795; + this.state = 5808; this.match(MySqlParser.KW_SUBJECT); - this.state = 5796; + this.state = 5809; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32025,44 +32134,44 @@ export class MySqlParser extends SQLParserBase { } public userResourceOption(): UserResourceOptionContext { let localContext = new UserResourceOptionContext(this.context, this.state); - this.enterRule(localContext, 508, MySqlParser.RULE_userResourceOption); + this.enterRule(localContext, 518, MySqlParser.RULE_userResourceOption); try { - this.state = 5807; + this.state = 5820; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MAX_QUERIES_PER_HOUR: this.enterOuterAlt(localContext, 1); { - this.state = 5799; + this.state = 5812; this.match(MySqlParser.KW_MAX_QUERIES_PER_HOUR); - this.state = 5800; + this.state = 5813; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_UPDATES_PER_HOUR: this.enterOuterAlt(localContext, 2); { - this.state = 5801; + this.state = 5814; this.match(MySqlParser.KW_MAX_UPDATES_PER_HOUR); - this.state = 5802; + this.state = 5815; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: this.enterOuterAlt(localContext, 3); { - this.state = 5803; + this.state = 5816; this.match(MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR); - this.state = 5804; + this.state = 5817; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_USER_CONNECTIONS: this.enterOuterAlt(localContext, 4); { - this.state = 5805; + this.state = 5818; this.match(MySqlParser.KW_MAX_USER_CONNECTIONS); - this.state = 5806; + this.state = 5819; this.decimalLiteral(); } break; @@ -32086,41 +32195,41 @@ export class MySqlParser extends SQLParserBase { } public userPasswordOption(): UserPasswordOptionContext { let localContext = new UserPasswordOptionContext(this.context, this.state); - this.enterRule(localContext, 510, MySqlParser.RULE_userPasswordOption); + this.enterRule(localContext, 520, MySqlParser.RULE_userPasswordOption); let _la: number; try { - this.state = 5847; + this.state = 5860; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5809; + this.state = 5822; this.match(MySqlParser.KW_PASSWORD); - this.state = 5810; + this.state = 5823; this.match(MySqlParser.KW_EXPIRE); - this.state = 5817; + this.state = 5830; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5811; + this.state = 5824; localContext._expireType = this.match(MySqlParser.KW_DEFAULT); } break; case MySqlParser.KW_NEVER: { - this.state = 5812; + this.state = 5825; localContext._expireType = this.match(MySqlParser.KW_NEVER); } break; case MySqlParser.KW_INTERVAL: { - this.state = 5813; + this.state = 5826; localContext._expireType = this.match(MySqlParser.KW_INTERVAL); - this.state = 5814; + this.state = 5827; this.decimalLiteral(); - this.state = 5815; + this.state = 5828; this.match(MySqlParser.KW_DAY); } break; @@ -32203,16 +32312,16 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5819; + this.state = 5832; this.match(MySqlParser.KW_PASSWORD); - this.state = 5820; + this.state = 5833; this.match(MySqlParser.KW_HISTORY); - this.state = 5823; + this.state = 5836; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5821; + this.state = 5834; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32223,7 +32332,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5822; + this.state = 5835; this.decimalLiteral(); } break; @@ -32235,18 +32344,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5825; + this.state = 5838; this.match(MySqlParser.KW_PASSWORD); - this.state = 5826; + this.state = 5839; this.match(MySqlParser.KW_REUSE); - this.state = 5827; + this.state = 5840; this.match(MySqlParser.KW_INTERVAL); - this.state = 5832; + this.state = 5845; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5828; + this.state = 5841; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32257,9 +32366,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5829; + this.state = 5842; this.decimalLiteral(); - this.state = 5830; + this.state = 5843; this.match(MySqlParser.KW_DAY); } break; @@ -32271,18 +32380,18 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5834; + this.state = 5847; this.match(MySqlParser.KW_PASSWORD); - this.state = 5835; + this.state = 5848; this.match(MySqlParser.KW_REQUIRE); - this.state = 5836; + this.state = 5849; this.match(MySqlParser.KW_CURRENT); - this.state = 5838; + this.state = 5851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 122) { { - this.state = 5837; + this.state = 5850; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -32299,18 +32408,18 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5840; + this.state = 5853; this.match(MySqlParser.KW_FAILED_LOGIN_ATTEMPTS); - this.state = 5841; + this.state = 5854; this.decimalLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5842; + this.state = 5855; this.match(MySqlParser.KW_PASSWORD_LOCK_TIME); - this.state = 5845; + this.state = 5858; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -32320,13 +32429,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5843; + this.state = 5856; this.decimalLiteral(); } break; case MySqlParser.KW_UNBOUNDED: { - this.state = 5844; + this.state = 5857; this.match(MySqlParser.KW_UNBOUNDED); } break; @@ -32353,14 +32462,14 @@ export class MySqlParser extends SQLParserBase { } public userLockOption(): UserLockOptionContext { let localContext = new UserLockOptionContext(this.context, this.state); - this.enterRule(localContext, 512, MySqlParser.RULE_userLockOption); + this.enterRule(localContext, 522, MySqlParser.RULE_userLockOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5849; + this.state = 5862; this.match(MySqlParser.KW_ACCOUNT); - this.state = 5850; + this.state = 5863; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 183)) { @@ -32388,48 +32497,48 @@ export class MySqlParser extends SQLParserBase { } public factorAuthOption(): FactorAuthOptionContext { let localContext = new FactorAuthOptionContext(this.context, this.state); - this.enterRule(localContext, 514, MySqlParser.RULE_factorAuthOption); + this.enterRule(localContext, 524, MySqlParser.RULE_factorAuthOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5852; + this.state = 5865; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5855; + this.state = 5868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 5853; + this.state = 5866; this.match(MySqlParser.KW_WITH); - this.state = 5854; + this.state = 5867; localContext._authPlugin = this.uid(); } } - this.state = 5865; + this.state = 5878; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5857; + this.state = 5870; this.match(MySqlParser.KW_BY); - this.state = 5861; + this.state = 5874; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5858; + this.state = 5871; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5859; + this.state = 5872; this.match(MySqlParser.KW_RANDOM); - this.state = 5860; + this.state = 5873; this.match(MySqlParser.KW_PASSWORD); } } @@ -32442,9 +32551,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5863; + this.state = 5876; this.match(MySqlParser.KW_AS); - this.state = 5864; + this.state = 5877; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32469,47 +32578,47 @@ export class MySqlParser extends SQLParserBase { } public registrationOption(): RegistrationOptionContext { let localContext = new RegistrationOptionContext(this.context, this.state); - this.enterRule(localContext, 516, MySqlParser.RULE_registrationOption); + this.enterRule(localContext, 526, MySqlParser.RULE_registrationOption); try { - this.state = 5882; + this.state = 5895; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5867; + this.state = 5880; this.factor(); - this.state = 5868; + this.state = 5881; this.match(MySqlParser.KW_INITIATE); - this.state = 5869; + this.state = 5882; this.match(MySqlParser.KW_REGISTRATION); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5871; + this.state = 5884; this.factor(); - this.state = 5872; + this.state = 5885; this.match(MySqlParser.KW_FINISH); - this.state = 5873; + this.state = 5886; this.match(MySqlParser.KW_REGISTRATION); - this.state = 5874; + this.state = 5887; this.match(MySqlParser.KW_SET); - this.state = 5875; + this.state = 5888; this.match(MySqlParser.KW_CHALLENGE_RESPONSE); - this.state = 5876; + this.state = 5889; this.match(MySqlParser.KW_AS); - this.state = 5877; + this.state = 5890; this.match(MySqlParser.STRING_LITERAL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5879; + this.state = 5892; this.factor(); - this.state = 5880; + this.state = 5893; this.match(MySqlParser.KW_UNREGISTER); } break; @@ -32531,12 +32640,12 @@ export class MySqlParser extends SQLParserBase { } public factor(): FactorContext { let localContext = new FactorContext(this.context, this.state); - this.enterRule(localContext, 518, MySqlParser.RULE_factor); + this.enterRule(localContext, 528, MySqlParser.RULE_factor); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5884; + this.state = 5897; _la = this.tokenStream.LA(1); if(!(_la === 873 || _la === 874)) { this.errorHandler.recoverInline(this); @@ -32545,7 +32654,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5885; + this.state = 5898; this.match(MySqlParser.KW_FACTOR); } } @@ -32565,23 +32674,23 @@ export class MySqlParser extends SQLParserBase { } public privelegeClause(): PrivelegeClauseContext { let localContext = new PrivelegeClauseContext(this.context, this.state); - this.enterRule(localContext, 520, MySqlParser.RULE_privelegeClause); + this.enterRule(localContext, 530, MySqlParser.RULE_privelegeClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 5887; + this.state = 5900; this.privilege(); - this.state = 5892; + this.state = 5905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 5888; + this.state = 5901; this.match(MySqlParser.LR_BRACKET); - this.state = 5889; + this.state = 5902; this.columnNames(); - this.state = 5890; + this.state = 5903; this.match(MySqlParser.RR_BRACKET); } } @@ -32604,23 +32713,23 @@ export class MySqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 522, MySqlParser.RULE_privilege); + this.enterRule(localContext, 532, MySqlParser.RULE_privilege); let _la: number; try { - this.state = 5987; + this.state = 6000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 858, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5894; + this.state = 5907; this.match(MySqlParser.KW_ALL); - this.state = 5896; + this.state = 5909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5895; + this.state = 5908; this.match(MySqlParser.KW_PRIVILEGES); } } @@ -32630,14 +32739,14 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5898; + this.state = 5911; this.match(MySqlParser.KW_ALTER); - this.state = 5900; + this.state = 5913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 743) { { - this.state = 5899; + this.state = 5912; this.match(MySqlParser.KW_ROUTINE); } } @@ -32647,46 +32756,46 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5902; + this.state = 5915; this.match(MySqlParser.KW_CREATE); - this.state = 5910; + this.state = 5923; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TEMPORARY: { - this.state = 5903; + this.state = 5916; this.match(MySqlParser.KW_TEMPORARY); - this.state = 5904; + this.state = 5917; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_ROUTINE: { - this.state = 5905; + this.state = 5918; this.match(MySqlParser.KW_ROUTINE); } break; case MySqlParser.KW_VIEW: { - this.state = 5906; + this.state = 5919; this.match(MySqlParser.KW_VIEW); } break; case MySqlParser.KW_USER: { - this.state = 5907; + this.state = 5920; this.match(MySqlParser.KW_USER); } break; case MySqlParser.KW_TABLESPACE: { - this.state = 5908; + this.state = 5921; this.match(MySqlParser.KW_TABLESPACE); } break; case MySqlParser.KW_ROLE: { - this.state = 5909; + this.state = 5922; this.match(MySqlParser.KW_ROLE); } break; @@ -32702,21 +32811,21 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5912; + this.state = 5925; this.match(MySqlParser.KW_DELETE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5913; + this.state = 5926; this.match(MySqlParser.KW_DROP); - this.state = 5915; + this.state = 5928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 5914; + this.state = 5927; this.match(MySqlParser.KW_ROLE); } } @@ -32726,90 +32835,90 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5917; + this.state = 5930; this.match(MySqlParser.KW_EVENT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5918; + this.state = 5931; this.match(MySqlParser.KW_EXECUTE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5919; + this.state = 5932; this.match(MySqlParser.KW_FILE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5920; + this.state = 5933; this.match(MySqlParser.KW_GRANT); - this.state = 5921; + this.state = 5934; this.match(MySqlParser.KW_OPTION); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5922; + this.state = 5935; this.match(MySqlParser.KW_INDEX); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5923; + this.state = 5936; this.match(MySqlParser.KW_INSERT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5924; + this.state = 5937; this.match(MySqlParser.KW_LOCK); - this.state = 5925; + this.state = 5938; this.match(MySqlParser.KW_TABLES); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5926; + this.state = 5939; this.match(MySqlParser.KW_PROCESS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5927; + this.state = 5940; this.match(MySqlParser.KW_PROXY); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5928; + this.state = 5941; this.match(MySqlParser.KW_REFERENCES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5929; + this.state = 5942; this.match(MySqlParser.KW_RELOAD); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5930; + this.state = 5943; this.match(MySqlParser.KW_REPLICATION); - this.state = 5931; + this.state = 5944; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -32823,16 +32932,16 @@ export class MySqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5932; + this.state = 5945; this.match(MySqlParser.KW_SELECT); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5933; + this.state = 5946; this.match(MySqlParser.KW_SHOW); - this.state = 5934; + this.state = 5947; _la = this.tokenStream.LA(1); if(!(_la === 40 || _la === 684)) { this.errorHandler.recoverInline(this); @@ -32846,339 +32955,339 @@ export class MySqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5935; + this.state = 5948; this.match(MySqlParser.KW_SHUTDOWN); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5936; + this.state = 5949; this.match(MySqlParser.KW_SUPER); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5937; + this.state = 5950; this.match(MySqlParser.KW_TRIGGER); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5938; + this.state = 5951; this.match(MySqlParser.KW_UPDATE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5939; + this.state = 5952; this.match(MySqlParser.KW_USAGE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5940; + this.state = 5953; this.match(MySqlParser.KW_APPLICATION_PASSWORD_ADMIN); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5941; + this.state = 5954; this.match(MySqlParser.KW_AUDIT_ABORT_EXEMPT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5942; + this.state = 5955; this.match(MySqlParser.KW_AUDIT_ADMIN); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5943; + this.state = 5956; this.match(MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5944; + this.state = 5957; this.match(MySqlParser.KW_BACKUP_ADMIN); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5945; + this.state = 5958; this.match(MySqlParser.KW_BINLOG_ADMIN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5946; + this.state = 5959; this.match(MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5947; + this.state = 5960; this.match(MySqlParser.KW_CLONE_ADMIN); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5948; + this.state = 5961; this.match(MySqlParser.KW_CONNECTION_ADMIN); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5949; + this.state = 5962; this.match(MySqlParser.KW_ENCRYPTION_KEY_ADMIN); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5950; + this.state = 5963; this.match(MySqlParser.KW_FIREWALL_ADMIN); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5951; + this.state = 5964; this.match(MySqlParser.KW_FIREWALL_EXEMPT); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5952; + this.state = 5965; this.match(MySqlParser.KW_FIREWALL_USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5953; + this.state = 5966; this.match(MySqlParser.KW_FLUSH_OPTIMIZER_COSTS); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 5954; + this.state = 5967; this.match(MySqlParser.KW_FLUSH_STATUS); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 5955; + this.state = 5968; this.match(MySqlParser.KW_FLUSH_TABLES); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 5956; + this.state = 5969; this.match(MySqlParser.KW_FLUSH_USER_RESOURCES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 5957; + this.state = 5970; this.match(MySqlParser.KW_GROUP_REPLICATION_ADMIN); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 5958; + this.state = 5971; this.match(MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 5959; + this.state = 5972; this.match(MySqlParser.KW_INNODB_REDO_LOG_ENABLE); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 5960; + this.state = 5973; this.match(MySqlParser.KW_NDB_STORED_USER); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 5961; + this.state = 5974; this.match(MySqlParser.KW_PASSWORDLESS_USER_ADMIN); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 5962; + this.state = 5975; this.match(MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 5963; + this.state = 5976; this.match(MySqlParser.KW_REPLICATION_APPLIER); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 5964; + this.state = 5977; this.match(MySqlParser.KW_REPLICATION_SLAVE_ADMIN); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 5965; + this.state = 5978; this.match(MySqlParser.KW_RESOURCE_GROUP_ADMIN); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 5966; + this.state = 5979; this.match(MySqlParser.KW_RESOURCE_GROUP_USER); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 5967; + this.state = 5980; this.match(MySqlParser.KW_ROLE_ADMIN); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 5968; + this.state = 5981; this.match(MySqlParser.KW_SERVICE_CONNECTION_ADMIN); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 5969; + this.state = 5982; this.match(MySqlParser.KW_SESSION_VARIABLES_ADMIN); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 5970; + this.state = 5983; this.match(MySqlParser.KW_SET_USER_ID); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 5971; + this.state = 5984; this.match(MySqlParser.KW_SKIP_QUERY_REWRITE); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 5972; + this.state = 5985; this.match(MySqlParser.KW_SHOW_ROUTINE); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 5973; + this.state = 5986; this.match(MySqlParser.KW_SYSTEM_USER); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 5974; + this.state = 5987; this.match(MySqlParser.KW_SYSTEM_VARIABLES_ADMIN); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 5975; + this.state = 5988; this.match(MySqlParser.KW_TABLE_ENCRYPTION_ADMIN); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 5976; + this.state = 5989; this.match(MySqlParser.KW_TP_CONNECTION_ADMIN); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 5977; + this.state = 5990; this.match(MySqlParser.KW_VERSION_TOKEN_ADMIN); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 5978; + this.state = 5991; this.match(MySqlParser.KW_XA_RECOVER_ADMIN); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 5979; + this.state = 5992; this.match(MySqlParser.KW_LOAD); - this.state = 5980; + this.state = 5993; this.match(MySqlParser.KW_FROM); - this.state = 5981; + this.state = 5994; this.match(MySqlParser.KW_S3); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 5982; + this.state = 5995; this.match(MySqlParser.KW_SELECT); - this.state = 5983; + this.state = 5996; this.match(MySqlParser.KW_INTO); - this.state = 5984; + this.state = 5997; this.match(MySqlParser.KW_S3); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 5985; + this.state = 5998; this.match(MySqlParser.KW_INVOKE); - this.state = 5986; + this.state = 5999; this.match(MySqlParser.KW_LAMBDA); } break; @@ -33200,16 +33309,16 @@ export class MySqlParser extends SQLParserBase { } public privilegeLevel(): PrivilegeLevelContext { let localContext = new PrivilegeLevelContext(this.context, this.state); - this.enterRule(localContext, 524, MySqlParser.RULE_privilegeLevel); + this.enterRule(localContext, 534, MySqlParser.RULE_privilegeLevel); try { - this.state = 6005; + this.state = 6018; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { case 1: localContext = new CurrentSchemaPriviLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5989; + this.state = 6002; this.match(MySqlParser.STAR); } break; @@ -33217,11 +33326,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GlobalPrivLevelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5990; + this.state = 6003; this.match(MySqlParser.STAR); - this.state = 5991; + this.state = 6004; this.match(MySqlParser.DOT); - this.state = 5992; + this.state = 6005; this.match(MySqlParser.STAR); } break; @@ -33229,11 +33338,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteSchemaPrivLevelContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5993; + this.state = 6006; this.uid(); - this.state = 5994; + this.state = 6007; this.match(MySqlParser.DOT); - this.state = 5995; + this.state = 6008; this.match(MySqlParser.STAR); } break; @@ -33241,11 +33350,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5997; + this.state = 6010; this.uid(); - this.state = 5998; + this.state = 6011; this.match(MySqlParser.DOT); - this.state = 5999; + this.state = 6012; this.uid(); } break; @@ -33253,9 +33362,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevel2Context(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6001; + this.state = 6014; this.uid(); - this.state = 6002; + this.state = 6015; this.dottedId(); } break; @@ -33263,7 +33372,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6004; + this.state = 6017; this.uid(); } break; @@ -33285,15 +33394,15 @@ export class MySqlParser extends SQLParserBase { } public renameUserClause(): RenameUserClauseContext { let localContext = new RenameUserClauseContext(this.context, this.state); - this.enterRule(localContext, 526, MySqlParser.RULE_renameUserClause); + this.enterRule(localContext, 536, MySqlParser.RULE_renameUserClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6007; + this.state = 6020; localContext._fromFirst = this.userName(); - this.state = 6008; + this.state = 6021; this.match(MySqlParser.KW_TO); - this.state = 6009; + this.state = 6022; localContext._toFirst = this.userName(); } } @@ -33313,70 +33422,70 @@ export class MySqlParser extends SQLParserBase { } public analyzeTable(): AnalyzeTableContext { let localContext = new AnalyzeTableContext(this.context, this.state); - this.enterRule(localContext, 528, MySqlParser.RULE_analyzeTable); + this.enterRule(localContext, 538, MySqlParser.RULE_analyzeTable); let _la: number; try { - this.state = 6059; + this.state = 6072; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 867, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6011; + this.state = 6024; this.match(MySqlParser.KW_ANALYZE); - this.state = 6013; + this.state = 6026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6012; + this.state = 6025; this.tableActionOption(); } } - this.state = 6015; + this.state = 6028; this.match(MySqlParser.KW_TABLE); - this.state = 6016; + this.state = 6029; this.tableNames(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6017; + this.state = 6030; this.match(MySqlParser.KW_ANALYZE); - this.state = 6019; + this.state = 6032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6018; + this.state = 6031; this.tableActionOption(); } } - this.state = 6021; + this.state = 6034; this.match(MySqlParser.KW_TABLE); - this.state = 6022; + this.state = 6035; this.tableName(); - this.state = 6023; + this.state = 6036; this.match(MySqlParser.KW_UPDATE); - this.state = 6024; + this.state = 6037; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6025; + this.state = 6038; this.match(MySqlParser.KW_ON); - this.state = 6026; + this.state = 6039; this.columnNames(); - this.state = 6031; + this.state = 6044; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 863, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 862, this.context) ) { case 1: { - this.state = 6027; + this.state = 6040; this.match(MySqlParser.KW_WITH); - this.state = 6028; + this.state = 6041; this.decimalLiteral(); - this.state = 6029; + this.state = 6042; this.match(MySqlParser.KW_BUCKETS); } break; @@ -33386,40 +33495,40 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6033; + this.state = 6046; this.match(MySqlParser.KW_ANALYZE); - this.state = 6035; + this.state = 6048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6034; + this.state = 6047; this.tableActionOption(); } } - this.state = 6037; + this.state = 6050; this.match(MySqlParser.KW_TABLE); - this.state = 6038; + this.state = 6051; this.tableName(); - this.state = 6039; + this.state = 6052; this.match(MySqlParser.KW_UPDATE); - this.state = 6040; + this.state = 6053; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6041; + this.state = 6054; this.match(MySqlParser.KW_ON); - this.state = 6042; + this.state = 6055; this.columnName(); - this.state = 6046; + this.state = 6059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6043; + this.state = 6056; this.match(MySqlParser.KW_USING); - this.state = 6044; + this.state = 6057; this.match(MySqlParser.KW_DATA); - this.state = 6045; + this.state = 6058; this.match(MySqlParser.STRING_LITERAL); } } @@ -33429,29 +33538,29 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6048; + this.state = 6061; this.match(MySqlParser.KW_ANALYZE); - this.state = 6050; + this.state = 6063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6049; + this.state = 6062; this.tableActionOption(); } } - this.state = 6052; + this.state = 6065; this.match(MySqlParser.KW_TABLE); - this.state = 6053; + this.state = 6066; this.tableName(); - this.state = 6054; + this.state = 6067; this.match(MySqlParser.KW_DROP); - this.state = 6055; + this.state = 6068; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6056; + this.state = 6069; this.match(MySqlParser.KW_ON); - this.state = 6057; + this.state = 6070; this.columnNames(); } break; @@ -33473,28 +33582,28 @@ export class MySqlParser extends SQLParserBase { } public checkTable(): CheckTableContext { let localContext = new CheckTableContext(this.context, this.state); - this.enterRule(localContext, 530, MySqlParser.RULE_checkTable); + this.enterRule(localContext, 540, MySqlParser.RULE_checkTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6061; + this.state = 6074; this.match(MySqlParser.KW_CHECK); - this.state = 6062; + this.state = 6075; this.match(MySqlParser.KW_TABLE); - this.state = 6063; + this.state = 6076; this.tableNames(); - this.state = 6067; + this.state = 6080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 65 || _la === 327 || _la === 392 || _la === 396 || _la === 484 || _la === 549) { { { - this.state = 6064; + this.state = 6077; this.checkTableOption(); } } - this.state = 6069; + this.state = 6082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33516,23 +33625,23 @@ export class MySqlParser extends SQLParserBase { } public checksumTable(): ChecksumTableContext { let localContext = new ChecksumTableContext(this.context, this.state); - this.enterRule(localContext, 532, MySqlParser.RULE_checksumTable); + this.enterRule(localContext, 542, MySqlParser.RULE_checksumTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6070; + this.state = 6083; this.match(MySqlParser.KW_CHECKSUM); - this.state = 6071; + this.state = 6084; this.match(MySqlParser.KW_TABLE); - this.state = 6072; + this.state = 6085; this.tableNames(); - this.state = 6074; + this.state = 6087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392 || _la === 549) { { - this.state = 6073; + this.state = 6086; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 549)) { @@ -33563,24 +33672,24 @@ export class MySqlParser extends SQLParserBase { } public optimizeTable(): OptimizeTableContext { let localContext = new OptimizeTableContext(this.context, this.state); - this.enterRule(localContext, 534, MySqlParser.RULE_optimizeTable); + this.enterRule(localContext, 544, MySqlParser.RULE_optimizeTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6076; + this.state = 6089; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 6078; + this.state = 6091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6077; + this.state = 6090; this.tableActionOption(); } } - this.state = 6080; + this.state = 6093; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -33589,7 +33698,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6081; + this.state = 6094; this.tableNames(); } } @@ -33609,53 +33718,53 @@ export class MySqlParser extends SQLParserBase { } public repairTable(): RepairTableContext { let localContext = new RepairTableContext(this.context, this.state); - this.enterRule(localContext, 536, MySqlParser.RULE_repairTable); + this.enterRule(localContext, 546, MySqlParser.RULE_repairTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6083; + this.state = 6096; this.match(MySqlParser.KW_REPAIR); - this.state = 6085; + this.state = 6098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6084; + this.state = 6097; this.tableActionOption(); } } - this.state = 6087; + this.state = 6100; this.match(MySqlParser.KW_TABLE); - this.state = 6088; + this.state = 6101; this.tableNames(); - this.state = 6090; + this.state = 6103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 6089; + this.state = 6102; this.match(MySqlParser.KW_QUICK); } } - this.state = 6093; + this.state = 6106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6092; + this.state = 6105; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6096; + this.state = 6109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 679) { { - this.state = 6095; + this.state = 6108; this.match(MySqlParser.KW_USE_FRM); } } @@ -33678,12 +33787,12 @@ export class MySqlParser extends SQLParserBase { } public tableActionOption(): TableActionOptionContext { let localContext = new TableActionOptionContext(this.context, this.state); - this.enterRule(localContext, 538, MySqlParser.RULE_tableActionOption); + this.enterRule(localContext, 548, MySqlParser.RULE_tableActionOption); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6098; + this.state = 6111; _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -33710,52 +33819,52 @@ export class MySqlParser extends SQLParserBase { } public checkTableOption(): CheckTableOptionContext { let localContext = new CheckTableOptionContext(this.context, this.state); - this.enterRule(localContext, 540, MySqlParser.RULE_checkTableOption); + this.enterRule(localContext, 550, MySqlParser.RULE_checkTableOption); try { - this.state = 6107; + this.state = 6120; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 6100; + this.state = 6113; this.match(MySqlParser.KW_FOR); - this.state = 6101; + this.state = 6114; this.match(MySqlParser.KW_UPGRADE); } break; case MySqlParser.KW_QUICK: this.enterOuterAlt(localContext, 2); { - this.state = 6102; + this.state = 6115; this.match(MySqlParser.KW_QUICK); } break; case MySqlParser.KW_FAST: this.enterOuterAlt(localContext, 3); { - this.state = 6103; + this.state = 6116; this.match(MySqlParser.KW_FAST); } break; case MySqlParser.KW_MEDIUM: this.enterOuterAlt(localContext, 4); { - this.state = 6104; + this.state = 6117; this.match(MySqlParser.KW_MEDIUM); } break; case MySqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 5); { - this.state = 6105; + this.state = 6118; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_CHANGED: this.enterOuterAlt(localContext, 6); { - this.state = 6106; + this.state = 6119; this.match(MySqlParser.KW_CHANGED); } break; @@ -33779,55 +33888,55 @@ export class MySqlParser extends SQLParserBase { } public installComponent(): InstallComponentContext { let localContext = new InstallComponentContext(this.context, this.state); - this.enterRule(localContext, 542, MySqlParser.RULE_installComponent); + this.enterRule(localContext, 552, MySqlParser.RULE_installComponent); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6109; + this.state = 6122; this.match(MySqlParser.KW_INSTALL); - this.state = 6110; + this.state = 6123; this.match(MySqlParser.KW_COMPONENT); - this.state = 6111; + this.state = 6124; localContext._component_name = this.uid(); - this.state = 6116; + this.state = 6129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6112; + this.state = 6125; this.match(MySqlParser.COMMA); - this.state = 6113; + this.state = 6126; localContext._component_name = this.uid(); } } - this.state = 6118; + this.state = 6131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6128; + this.state = 6141; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 878, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { case 1: { - this.state = 6119; + this.state = 6132; this.match(MySqlParser.KW_SET); - this.state = 6120; + this.state = 6133; this.variableExpr(); - this.state = 6125; + this.state = 6138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6121; + this.state = 6134; this.match(MySqlParser.COMMA); - this.state = 6122; + this.state = 6135; this.variableExpr(); } } - this.state = 6127; + this.state = 6140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33852,12 +33961,12 @@ export class MySqlParser extends SQLParserBase { } public variableExpr(): VariableExprContext { let localContext = new VariableExprContext(this.context, this.state); - this.enterRule(localContext, 544, MySqlParser.RULE_variableExpr); + this.enterRule(localContext, 554, MySqlParser.RULE_variableExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6130; + this.state = 6143; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 531 || _la === 893 || _la === 894)) { this.errorHandler.recoverInline(this); @@ -33866,11 +33975,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6131; + this.state = 6144; localContext._system_var_name = this.fullId(); - this.state = 6132; + this.state = 6145; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6133; + this.state = 6146; this.expression(0); } } @@ -33890,30 +33999,30 @@ export class MySqlParser extends SQLParserBase { } public uninstallComponent(): UninstallComponentContext { let localContext = new UninstallComponentContext(this.context, this.state); - this.enterRule(localContext, 546, MySqlParser.RULE_uninstallComponent); + this.enterRule(localContext, 556, MySqlParser.RULE_uninstallComponent); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6135; + this.state = 6148; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6136; + this.state = 6149; this.match(MySqlParser.KW_COMPONENT); - this.state = 6137; + this.state = 6150; localContext._component_name = this.uid(); - this.state = 6142; + this.state = 6155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6138; + this.state = 6151; this.match(MySqlParser.COMMA); - this.state = 6139; + this.state = 6152; localContext._component_name = this.uid(); } } - this.state = 6144; + this.state = 6157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33935,19 +34044,19 @@ export class MySqlParser extends SQLParserBase { } public installPlugin(): InstallPluginContext { let localContext = new InstallPluginContext(this.context, this.state); - this.enterRule(localContext, 548, MySqlParser.RULE_installPlugin); + this.enterRule(localContext, 558, MySqlParser.RULE_installPlugin); try { this.enterOuterAlt(localContext, 1); { - this.state = 6145; + this.state = 6158; this.match(MySqlParser.KW_INSTALL); - this.state = 6146; + this.state = 6159; this.match(MySqlParser.KW_PLUGIN); - this.state = 6147; + this.state = 6160; localContext._pluginName = this.uid(); - this.state = 6148; + this.state = 6161; this.match(MySqlParser.KW_SONAME); - this.state = 6149; + this.state = 6162; this.match(MySqlParser.STRING_LITERAL); } } @@ -33967,15 +34076,15 @@ export class MySqlParser extends SQLParserBase { } public uninstallPlugin(): UninstallPluginContext { let localContext = new UninstallPluginContext(this.context, this.state); - this.enterRule(localContext, 550, MySqlParser.RULE_uninstallPlugin); + this.enterRule(localContext, 560, MySqlParser.RULE_uninstallPlugin); try { this.enterOuterAlt(localContext, 1); { - this.state = 6151; + this.state = 6164; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6152; + this.state = 6165; this.match(MySqlParser.KW_PLUGIN); - this.state = 6153; + this.state = 6166; localContext._pluginName = this.uid(); } } @@ -33995,96 +34104,96 @@ export class MySqlParser extends SQLParserBase { } public cloneStatement(): CloneStatementContext { let localContext = new CloneStatementContext(this.context, this.state); - this.enterRule(localContext, 552, MySqlParser.RULE_cloneStatement); + this.enterRule(localContext, 562, MySqlParser.RULE_cloneStatement); let _la: number; try { - this.state = 6185; + this.state = 6198; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6155; + this.state = 6168; this.match(MySqlParser.KW_CLONE); - this.state = 6156; + this.state = 6169; this.match(MySqlParser.KW_LOCAL); - this.state = 6157; + this.state = 6170; this.match(MySqlParser.KW_DATA); - this.state = 6158; + this.state = 6171; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6160; + this.state = 6173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6159; + this.state = 6172; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6162; + this.state = 6175; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6163; + this.state = 6176; this.match(MySqlParser.KW_CLONE); - this.state = 6164; + this.state = 6177; this.match(MySqlParser.KW_INSTANCE); - this.state = 6165; + this.state = 6178; this.match(MySqlParser.KW_FROM); - this.state = 6166; + this.state = 6179; this.userHostPort(); - this.state = 6167; + this.state = 6180; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 6168; + this.state = 6181; this.match(MySqlParser.KW_BY); - this.state = 6169; + this.state = 6182; this.match(MySqlParser.STRING_LITERAL); - this.state = 6176; + this.state = 6189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 6170; + this.state = 6183; this.match(MySqlParser.KW_DATA); - this.state = 6171; + this.state = 6184; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6173; + this.state = 6186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6172; + this.state = 6185; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6175; + this.state = 6188; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6183; + this.state = 6196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 6178; + this.state = 6191; this.match(MySqlParser.KW_REQUIRE); - this.state = 6180; + this.state = 6193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 6179; + this.state = 6192; this.match(MySqlParser.KW_NO); } } - this.state = 6182; + this.state = 6195; this.match(MySqlParser.KW_SSL); } } @@ -34109,21 +34218,21 @@ export class MySqlParser extends SQLParserBase { } public setStatement(): SetStatementContext { let localContext = new SetStatementContext(this.context, this.state); - this.enterRule(localContext, 554, MySqlParser.RULE_setStatement); + this.enterRule(localContext, 564, MySqlParser.RULE_setStatement); let _la: number; try { - this.state = 6239; + this.state = 6252; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 893, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { case 1: localContext = new SetVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6187; + this.state = 6200; this.match(MySqlParser.KW_SET); - this.state = 6188; + this.state = 6201; this.variableClause(); - this.state = 6189; + this.state = 6202; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34132,33 +34241,33 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6192; + this.state = 6205; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { case 1: { - this.state = 6190; + this.state = 6203; this.expression(0); } break; case 2: { - this.state = 6191; + this.state = 6204; this.match(MySqlParser.KW_ON); } break; } - this.state = 6203; + this.state = 6216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6194; + this.state = 6207; this.match(MySqlParser.COMMA); - this.state = 6195; + this.state = 6208; this.variableClause(); - this.state = 6196; + this.state = 6209; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34167,25 +34276,25 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6199; + this.state = 6212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: { - this.state = 6197; + this.state = 6210; this.expression(0); } break; case 2: { - this.state = 6198; + this.state = 6211; this.match(MySqlParser.KW_ON); } break; } } } - this.state = 6205; + this.state = 6218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34195,11 +34304,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetCharsetContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6206; + this.state = 6219; this.match(MySqlParser.KW_SET); - this.state = 6207; + this.state = 6220; this.charSet(); - this.state = 6210; + this.state = 6223; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34247,13 +34356,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6208; + this.state = 6221; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 6209; + this.state = 6222; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34266,11 +34375,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNamesContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6212; + this.state = 6225; this.match(MySqlParser.KW_SET); - this.state = 6213; + this.state = 6226; this.match(MySqlParser.KW_NAMES); - this.state = 6220; + this.state = 6233; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34318,16 +34427,16 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6214; + this.state = 6227; this.charsetName(); - this.state = 6217; + this.state = 6230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 6215; + this.state = 6228; this.match(MySqlParser.KW_COLLATE); - this.state = 6216; + this.state = 6229; this.collationName(); } } @@ -34336,7 +34445,7 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_DEFAULT: { - this.state = 6219; + this.state = 6232; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34349,7 +34458,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetPasswordContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6222; + this.state = 6235; this.setPasswordStatement(); } break; @@ -34357,7 +34466,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetTransactionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6223; + this.state = 6236; this.setTransactionStatement(); } break; @@ -34365,7 +34474,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetAutocommitContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6224; + this.state = 6237; this.setAutocommitStatement(); } break; @@ -34373,11 +34482,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNewValueInsideTriggerContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6225; + this.state = 6238; this.match(MySqlParser.KW_SET); - this.state = 6226; + this.state = 6239; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6227; + this.state = 6240; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34386,19 +34495,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6228; + this.state = 6241; this.expression(0); - this.state = 6236; + this.state = 6249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6229; + this.state = 6242; this.match(MySqlParser.COMMA); - this.state = 6230; + this.state = 6243; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6231; + this.state = 6244; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34407,11 +34516,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6232; + this.state = 6245; this.expression(0); } } - this.state = 6238; + this.state = 6251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34435,19 +34544,19 @@ export class MySqlParser extends SQLParserBase { } public showStatement(): ShowStatementContext { let localContext = new ShowStatementContext(this.context, this.state); - this.enterRule(localContext, 556, MySqlParser.RULE_showStatement); + this.enterRule(localContext, 566, MySqlParser.RULE_showStatement); let _la: number; try { - this.state = 6425; + this.state = 6438; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: localContext = new ShowMasterLogsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6241; + this.state = 6254; this.match(MySqlParser.KW_SHOW); - this.state = 6242; + this.state = 6255; (localContext as ShowMasterLogsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -34457,7 +34566,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6243; + this.state = 6256; this.match(MySqlParser.KW_LOGS); } break; @@ -34465,9 +34574,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowLogEventsContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6244; + this.state = 6257; this.match(MySqlParser.KW_SHOW); - this.state = 6245; + this.state = 6258; (localContext as ShowLogEventsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 559)) { @@ -34477,62 +34586,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6246; + this.state = 6259; this.match(MySqlParser.KW_EVENTS); - this.state = 6249; + this.state = 6262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 6247; + this.state = 6260; this.match(MySqlParser.KW_IN); - this.state = 6248; + this.state = 6261; (localContext as ShowLogEventsContext)._filename = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6253; + this.state = 6266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 6251; + this.state = 6264; this.match(MySqlParser.KW_FROM); - this.state = 6252; + this.state = 6265; (localContext as ShowLogEventsContext)._fromPosition = this.decimalLiteral(); } } - this.state = 6262; + this.state = 6275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6255; + this.state = 6268; this.match(MySqlParser.KW_LIMIT); - this.state = 6259; + this.state = 6272; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 896, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 895, this.context) ) { case 1: { - this.state = 6256; + this.state = 6269; (localContext as ShowLogEventsContext)._offset = this.decimalLiteral(); - this.state = 6257; + this.state = 6270; this.match(MySqlParser.COMMA); } break; } - this.state = 6261; + this.state = 6274; (localContext as ShowLogEventsContext)._rowCount = this.decimalLiteral(); } } - this.state = 6265; + this.state = 6278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6264; + this.state = 6277; this.channelOption(); } } @@ -34543,16 +34652,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowObjectFilterContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6267; + this.state = 6280; this.match(MySqlParser.KW_SHOW); - this.state = 6268; + this.state = 6281; this.showCommonEntity(); - this.state = 6270; + this.state = 6283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6269; + this.state = 6282; this.showFilter(); } } @@ -34563,29 +34672,29 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6272; + this.state = 6285; this.match(MySqlParser.KW_SHOW); - this.state = 6274; + this.state = 6287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6273; + this.state = 6286; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6277; + this.state = 6290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6276; + this.state = 6289; this.match(MySqlParser.KW_FULL); } } - this.state = 6279; + this.state = 6292; (localContext as ShowColumnsContext)._columnsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -34595,7 +34704,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6280; + this.state = 6293; (localContext as ShowColumnsContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34605,14 +34714,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6281; + this.state = 6294; this.tableName(); - this.state = 6284; + this.state = 6297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6282; + this.state = 6295; (localContext as ShowColumnsContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34622,17 +34731,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6283; + this.state = 6296; this.databaseName(); } } - this.state = 6287; + this.state = 6300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6286; + this.state = 6299; this.showFilter(); } } @@ -34643,11 +34752,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateDbContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6289; + this.state = 6302; this.match(MySqlParser.KW_SHOW); - this.state = 6290; + this.state = 6303; this.match(MySqlParser.KW_CREATE); - this.state = 6291; + this.state = 6304; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { this.errorHandler.recoverInline(this); @@ -34656,17 +34765,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6293; + this.state = 6306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 903, this.context) ) { case 1: { - this.state = 6292; + this.state = 6305; this.ifNotExists(); } break; } - this.state = 6295; + this.state = 6308; this.databaseName(); } break; @@ -34674,11 +34783,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFullIdObjectContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6296; + this.state = 6309; this.match(MySqlParser.KW_SHOW); - this.state = 6297; + this.state = 6310; this.match(MySqlParser.KW_CREATE); - this.state = 6298; + this.state = 6311; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 178 || _la === 385)) { this.errorHandler.recoverInline(this); @@ -34687,7 +34796,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6299; + this.state = 6312; this.fullId(); } break; @@ -34695,13 +34804,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6300; + this.state = 6313; this.match(MySqlParser.KW_SHOW); - this.state = 6301; + this.state = 6314; this.match(MySqlParser.KW_CREATE); - this.state = 6302; + this.state = 6315; this.match(MySqlParser.KW_FUNCTION); - this.state = 6303; + this.state = 6316; this.functionName(); } break; @@ -34709,13 +34818,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6304; + this.state = 6317; this.match(MySqlParser.KW_SHOW); - this.state = 6305; + this.state = 6318; this.match(MySqlParser.KW_CREATE); - this.state = 6306; + this.state = 6319; this.match(MySqlParser.KW_VIEW); - this.state = 6307; + this.state = 6320; this.viewName(); } break; @@ -34723,13 +34832,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6308; + this.state = 6321; this.match(MySqlParser.KW_SHOW); - this.state = 6309; + this.state = 6322; this.match(MySqlParser.KW_CREATE); - this.state = 6310; + this.state = 6323; this.match(MySqlParser.KW_TABLE); - this.state = 6311; + this.state = 6324; this.tableName(); } break; @@ -34737,13 +34846,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateUserContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6312; + this.state = 6325; this.match(MySqlParser.KW_SHOW); - this.state = 6313; + this.state = 6326; this.match(MySqlParser.KW_CREATE); - this.state = 6314; + this.state = 6327; this.match(MySqlParser.KW_USER); - this.state = 6315; + this.state = 6328; this.userName(); } break; @@ -34751,13 +34860,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowEngineContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6316; + this.state = 6329; this.match(MySqlParser.KW_SHOW); - this.state = 6317; + this.state = 6330; this.match(MySqlParser.KW_ENGINE); - this.state = 6318; + this.state = 6331; this.engineName(); - this.state = 6319; + this.state = 6332; (localContext as ShowEngineContext)._engineOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 493 || _la === 645)) { @@ -34773,9 +34882,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGlobalInfoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6321; + this.state = 6334; this.match(MySqlParser.KW_SHOW); - this.state = 6322; + this.state = 6335; this.showGlobalInfoClause(); } break; @@ -34783,9 +34892,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowErrorsContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6323; + this.state = 6336; this.match(MySqlParser.KW_SHOW); - this.state = 6324; + this.state = 6337; (localContext as ShowErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34795,26 +34904,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6332; + this.state = 6345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6325; + this.state = 6338; this.match(MySqlParser.KW_LIMIT); - this.state = 6329; + this.state = 6342; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { case 1: { - this.state = 6326; + this.state = 6339; (localContext as ShowErrorsContext)._offset = this.decimalLiteral(); - this.state = 6327; + this.state = 6340; this.match(MySqlParser.COMMA); } break; } - this.state = 6331; + this.state = 6344; (localContext as ShowErrorsContext)._rowCount = this.decimalLiteral(); } } @@ -34825,17 +34934,17 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCountErrorsContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6334; + this.state = 6347; this.match(MySqlParser.KW_SHOW); - this.state = 6335; + this.state = 6348; this.match(MySqlParser.KW_COUNT); - this.state = 6336; + this.state = 6349; this.match(MySqlParser.LR_BRACKET); - this.state = 6337; + this.state = 6350; this.match(MySqlParser.STAR); - this.state = 6338; + this.state = 6351; this.match(MySqlParser.RR_BRACKET); - this.state = 6339; + this.state = 6352; (localContext as ShowCountErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34851,16 +34960,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSchemaFilterContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 6340; + this.state = 6353; this.match(MySqlParser.KW_SHOW); - this.state = 6341; + this.state = 6354; this.showSchemaEntity(); - this.state = 6344; + this.state = 6357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6342; + this.state = 6355; (localContext as ShowSchemaFilterContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34870,17 +34979,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6343; + this.state = 6356; this.databaseName(); } } - this.state = 6347; + this.state = 6360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6346; + this.state = 6359; this.showFilter(); } } @@ -34891,13 +35000,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowPercedureCodeContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 6349; + this.state = 6362; this.match(MySqlParser.KW_SHOW); - this.state = 6350; + this.state = 6363; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6351; + this.state = 6364; this.match(MySqlParser.KW_CODE); - this.state = 6352; + this.state = 6365; (localContext as ShowPercedureCodeContext)._proc_name = this.fullId(); } break; @@ -34905,13 +35014,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowFunctionCodeContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 6353; + this.state = 6366; this.match(MySqlParser.KW_SHOW); - this.state = 6354; + this.state = 6367; this.match(MySqlParser.KW_FUNCTION); - this.state = 6355; + this.state = 6368; this.match(MySqlParser.KW_CODE); - this.state = 6356; + this.state = 6369; this.functionName(); } break; @@ -34919,27 +35028,27 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 6357; + this.state = 6370; this.match(MySqlParser.KW_SHOW); - this.state = 6358; + this.state = 6371; this.match(MySqlParser.KW_GRANTS); - this.state = 6365; + this.state = 6378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6359; + this.state = 6372; this.match(MySqlParser.KW_FOR); - this.state = 6360; + this.state = 6373; this.userOrRoleName(); - this.state = 6363; + this.state = 6376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6361; + this.state = 6374; this.match(MySqlParser.KW_USING); - this.state = 6362; + this.state = 6375; this.userOrRoleNames(); } } @@ -34953,19 +35062,19 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowIndexesContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 6367; + this.state = 6380; this.match(MySqlParser.KW_SHOW); - this.state = 6369; + this.state = 6382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6368; + this.state = 6381; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6371; + this.state = 6384; (localContext as ShowIndexesContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 93 || _la === 426)) { @@ -34975,7 +35084,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6372; + this.state = 6385; (localContext as ShowIndexesContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34985,14 +35094,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6373; + this.state = 6386; this.tableName(); - this.state = 6376; + this.state = 6389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6374; + this.state = 6387; (localContext as ShowIndexesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35002,19 +35111,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6375; + this.state = 6388; this.databaseName(); } } - this.state = 6380; + this.state = 6393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 6378; + this.state = 6391; this.match(MySqlParser.KW_WHERE); - this.state = 6379; + this.state = 6392; this.expression(0); } } @@ -35025,18 +35134,18 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowOpenTablesContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 6382; + this.state = 6395; this.match(MySqlParser.KW_SHOW); - this.state = 6383; + this.state = 6396; this.match(MySqlParser.KW_OPEN); - this.state = 6384; + this.state = 6397; this.match(MySqlParser.KW_TABLES); - this.state = 6387; + this.state = 6400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6385; + this.state = 6398; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -35045,17 +35154,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6386; + this.state = 6399; this.databaseName(); } } - this.state = 6390; + this.state = 6403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6389; + this.state = 6402; this.showFilter(); } } @@ -35066,67 +35175,67 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowProfileContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 6392; + this.state = 6405; this.match(MySqlParser.KW_SHOW); - this.state = 6393; + this.state = 6406; this.match(MySqlParser.KW_PROFILE); - this.state = 6402; + this.state = 6415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 320 || _la === 355 || _la === 358 || _la === 439 || _la === 521 || _la === 605 || _la === 655 || _la === 802) { { - this.state = 6394; + this.state = 6407; this.showProfileType(); - this.state = 6399; + this.state = 6412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6395; + this.state = 6408; this.match(MySqlParser.COMMA); - this.state = 6396; + this.state = 6409; this.showProfileType(); } } - this.state = 6401; + this.state = 6414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 6407; + this.state = 6420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6404; + this.state = 6417; this.match(MySqlParser.KW_FOR); - this.state = 6405; + this.state = 6418; this.match(MySqlParser.KW_QUERY); - this.state = 6406; + this.state = 6419; (localContext as ShowProfileContext)._queryCount = this.decimalLiteral(); } } - this.state = 6415; + this.state = 6428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6409; + this.state = 6422; this.match(MySqlParser.KW_LIMIT); - this.state = 6410; + this.state = 6423; (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); - this.state = 6413; + this.state = 6426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 509) { { - this.state = 6411; + this.state = 6424; this.match(MySqlParser.KW_OFFSET); - this.state = 6412; + this.state = 6425; (localContext as ShowProfileContext)._offset = this.decimalLiteral(); } } @@ -35140,9 +35249,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSlaveStatusContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 6417; + this.state = 6430; this.match(MySqlParser.KW_SHOW); - this.state = 6418; + this.state = 6431; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -35151,14 +35260,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6419; + this.state = 6432; this.match(MySqlParser.KW_STATUS); - this.state = 6421; + this.state = 6434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6420; + this.state = 6433; this.channelOption(); } } @@ -35169,9 +35278,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowReplicasContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 6423; + this.state = 6436; this.match(MySqlParser.KW_SHOW); - this.state = 6424; + this.state = 6437; this.match(MySqlParser.KW_REPLICAS); } break; @@ -35193,23 +35302,23 @@ export class MySqlParser extends SQLParserBase { } public variableClause(): VariableClauseContext { let localContext = new VariableClauseContext(this.context, this.state); - this.enterRule(localContext, 558, MySqlParser.RULE_variableClause); + this.enterRule(localContext, 568, MySqlParser.RULE_variableClause); let _la: number; try { - this.state = 6437; + this.state = 6450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 1); { - this.state = 6427; + this.state = 6440; this.match(MySqlParser.LOCAL_ID); } break; case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 6428; + this.state = 6441; this.match(MySqlParser.GLOBAL_ID); } break; @@ -35767,24 +35876,24 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 6434; + this.state = 6447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: { - this.state = 6431; + this.state = 6444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 870) { { - this.state = 6429; + this.state = 6442; this.match(MySqlParser.AT_SIGN); - this.state = 6430; + this.state = 6443; this.match(MySqlParser.AT_SIGN); } } - this.state = 6433; + this.state = 6446; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 450 || _la === 531 || _la === 532 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35796,7 +35905,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6436; + this.state = 6449; localContext._target = this.uid(); } break; @@ -35820,64 +35929,64 @@ export class MySqlParser extends SQLParserBase { } public showCommonEntity(): ShowCommonEntityContext { let localContext = new ShowCommonEntityContext(this.context, this.state); - this.enterRule(localContext, 560, MySqlParser.RULE_showCommonEntity); + this.enterRule(localContext, 570, MySqlParser.RULE_showCommonEntity); let _la: number; try { - this.state = 6453; + this.state = 6466; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 6439; + this.state = 6452; this.match(MySqlParser.KW_CHARACTER); - this.state = 6440; + this.state = 6453; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 6441; + this.state = 6454; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 3); { - this.state = 6442; + this.state = 6455; this.match(MySqlParser.KW_COLLATION); } break; case MySqlParser.KW_DATABASES: this.enterOuterAlt(localContext, 4); { - this.state = 6443; + this.state = 6456; this.match(MySqlParser.KW_DATABASES); } break; case MySqlParser.KW_SCHEMAS: this.enterOuterAlt(localContext, 5); { - this.state = 6444; + this.state = 6457; this.match(MySqlParser.KW_SCHEMAS); } break; case MySqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 6); { - this.state = 6445; + this.state = 6458; this.match(MySqlParser.KW_FUNCTION); - this.state = 6446; + this.state = 6459; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 7); { - this.state = 6447; + this.state = 6460; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6448; + this.state = 6461; this.match(MySqlParser.KW_STATUS); } break; @@ -35887,12 +35996,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIABLES: this.enterOuterAlt(localContext, 8); { - this.state = 6450; + this.state = 6463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 6449; + this.state = 6462; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35904,7 +36013,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6452; + this.state = 6465; _la = this.tokenStream.LA(1); if(!(_la === 645 || _la === 683)) { this.errorHandler.recoverInline(this); @@ -35935,26 +36044,26 @@ export class MySqlParser extends SQLParserBase { } public showFilter(): ShowFilterContext { let localContext = new ShowFilterContext(this.context, this.state); - this.enterRule(localContext, 562, MySqlParser.RULE_showFilter); + this.enterRule(localContext, 572, MySqlParser.RULE_showFilter); try { - this.state = 6459; + this.state = 6472; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 6455; + this.state = 6468; this.match(MySqlParser.KW_LIKE); - this.state = 6456; + this.state = 6469; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_WHERE: this.enterOuterAlt(localContext, 2); { - this.state = 6457; + this.state = 6470; this.match(MySqlParser.KW_WHERE); - this.state = 6458; + this.state = 6471; this.expression(0); } break; @@ -35978,50 +36087,50 @@ export class MySqlParser extends SQLParserBase { } public showGlobalInfoClause(): ShowGlobalInfoClauseContext { let localContext = new ShowGlobalInfoClauseContext(this.context, this.state); - this.enterRule(localContext, 564, MySqlParser.RULE_showGlobalInfoClause); + this.enterRule(localContext, 574, MySqlParser.RULE_showGlobalInfoClause); let _la: number; try { - this.state = 6478; + this.state = 6491; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ENGINES: case MySqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 1); { - this.state = 6462; + this.state = 6475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 6461; + this.state = 6474; this.match(MySqlParser.KW_STORAGE); } } - this.state = 6464; + this.state = 6477; this.match(MySqlParser.KW_ENGINES); } break; case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 2); { - this.state = 6465; + this.state = 6478; this.match(MySqlParser.KW_MASTER); - this.state = 6466; + this.state = 6479; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PLUGINS: this.enterOuterAlt(localContext, 3); { - this.state = 6467; + this.state = 6480; this.match(MySqlParser.KW_PLUGINS); } break; case MySqlParser.KW_PRIVILEGES: this.enterOuterAlt(localContext, 4); { - this.state = 6468; + this.state = 6481; this.match(MySqlParser.KW_PRIVILEGES); } break; @@ -36029,47 +36138,47 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PROCESSLIST: this.enterOuterAlt(localContext, 5); { - this.state = 6470; + this.state = 6483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6469; + this.state = 6482; this.match(MySqlParser.KW_FULL); } } - this.state = 6472; + this.state = 6485; this.match(MySqlParser.KW_PROCESSLIST); } break; case MySqlParser.KW_PROFILES: this.enterOuterAlt(localContext, 6); { - this.state = 6473; + this.state = 6486; this.match(MySqlParser.KW_PROFILES); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 7); { - this.state = 6474; + this.state = 6487; this.match(MySqlParser.KW_SLAVE); - this.state = 6475; + this.state = 6488; this.match(MySqlParser.KW_HOSTS); } break; case MySqlParser.KW_AUTHORS: this.enterOuterAlt(localContext, 8); { - this.state = 6476; + this.state = 6489; this.match(MySqlParser.KW_AUTHORS); } break; case MySqlParser.KW_CONTRIBUTORS: this.enterOuterAlt(localContext, 9); { - this.state = 6477; + this.state = 6490; this.match(MySqlParser.KW_CONTRIBUTORS); } break; @@ -36093,25 +36202,25 @@ export class MySqlParser extends SQLParserBase { } public showSchemaEntity(): ShowSchemaEntityContext { let localContext = new ShowSchemaEntityContext(this.context, this.state); - this.enterRule(localContext, 566, MySqlParser.RULE_showSchemaEntity); + this.enterRule(localContext, 576, MySqlParser.RULE_showSchemaEntity); let _la: number; try { - this.state = 6491; + this.state = 6504; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EVENTS: this.enterOuterAlt(localContext, 1); { - this.state = 6480; + this.state = 6493; this.match(MySqlParser.KW_EVENTS); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 6481; + this.state = 6494; this.match(MySqlParser.KW_TABLE); - this.state = 6482; + this.state = 6495; this.match(MySqlParser.KW_STATUS); } break; @@ -36120,34 +36229,34 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TABLES: this.enterOuterAlt(localContext, 3); { - this.state = 6484; + this.state = 6497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6483; + this.state = 6496; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6487; + this.state = 6500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6486; + this.state = 6499; this.match(MySqlParser.KW_FULL); } } - this.state = 6489; + this.state = 6502; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_TRIGGERS: this.enterOuterAlt(localContext, 4); { - this.state = 6490; + this.state = 6503; this.match(MySqlParser.KW_TRIGGERS); } break; @@ -36171,77 +36280,77 @@ export class MySqlParser extends SQLParserBase { } public showProfileType(): ShowProfileTypeContext { let localContext = new ShowProfileTypeContext(this.context, this.state); - this.enterRule(localContext, 568, MySqlParser.RULE_showProfileType); + this.enterRule(localContext, 578, MySqlParser.RULE_showProfileType); try { - this.state = 6505; + this.state = 6518; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 6493; + this.state = 6506; this.match(MySqlParser.KW_ALL); } break; case MySqlParser.KW_BLOCK: this.enterOuterAlt(localContext, 2); { - this.state = 6494; + this.state = 6507; this.match(MySqlParser.KW_BLOCK); - this.state = 6495; + this.state = 6508; this.match(MySqlParser.KW_IO); } break; case MySqlParser.KW_CONTEXT: this.enterOuterAlt(localContext, 3); { - this.state = 6496; + this.state = 6509; this.match(MySqlParser.KW_CONTEXT); - this.state = 6497; + this.state = 6510; this.match(MySqlParser.KW_SWITCHES); } break; case MySqlParser.KW_CPU: this.enterOuterAlt(localContext, 4); { - this.state = 6498; + this.state = 6511; this.match(MySqlParser.KW_CPU); } break; case MySqlParser.KW_IPC: this.enterOuterAlt(localContext, 5); { - this.state = 6499; + this.state = 6512; this.match(MySqlParser.KW_IPC); } break; case MySqlParser.KW_MEMORY: this.enterOuterAlt(localContext, 6); { - this.state = 6500; + this.state = 6513; this.match(MySqlParser.KW_MEMORY); } break; case MySqlParser.KW_PAGE: this.enterOuterAlt(localContext, 7); { - this.state = 6501; + this.state = 6514; this.match(MySqlParser.KW_PAGE); - this.state = 6502; + this.state = 6515; this.match(MySqlParser.KW_FAULTS); } break; case MySqlParser.KW_SOURCE: this.enterOuterAlt(localContext, 8); { - this.state = 6503; + this.state = 6516; this.match(MySqlParser.KW_SOURCE); } break; case MySqlParser.KW_SWAPS: this.enterOuterAlt(localContext, 9); { - this.state = 6504; + this.state = 6517; this.match(MySqlParser.KW_SWAPS); } break; @@ -36265,13 +36374,13 @@ export class MySqlParser extends SQLParserBase { } public binlogStatement(): BinlogStatementContext { let localContext = new BinlogStatementContext(this.context, this.state); - this.enterRule(localContext, 570, MySqlParser.RULE_binlogStatement); + this.enterRule(localContext, 580, MySqlParser.RULE_binlogStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6507; + this.state = 6520; this.match(MySqlParser.KW_BINLOG); - this.state = 6508; + this.state = 6521; this.match(MySqlParser.STRING_LITERAL); } } @@ -36291,35 +36400,35 @@ export class MySqlParser extends SQLParserBase { } public cacheIndexStatement(): CacheIndexStatementContext { let localContext = new CacheIndexStatementContext(this.context, this.state); - this.enterRule(localContext, 572, MySqlParser.RULE_cacheIndexStatement); + this.enterRule(localContext, 582, MySqlParser.RULE_cacheIndexStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6510; + this.state = 6523; this.match(MySqlParser.KW_CACHE); - this.state = 6511; + this.state = 6524; this.match(MySqlParser.KW_INDEX); - this.state = 6529; + this.state = 6542; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 938, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 937, this.context) ) { case 1: { - this.state = 6512; + this.state = 6525; this.tableIndex(); - this.state = 6517; + this.state = 6530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6513; + this.state = 6526; this.match(MySqlParser.COMMA); - this.state = 6514; + this.state = 6527; this.tableIndex(); } } - this.state = 6519; + this.state = 6532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36327,13 +36436,13 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6520; + this.state = 6533; this.tableName(); - this.state = 6521; + this.state = 6534; this.match(MySqlParser.KW_PARTITION); - this.state = 6522; + this.state = 6535; this.match(MySqlParser.LR_BRACKET); - this.state = 6525; + this.state = 6538; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -36886,27 +36995,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6523; + this.state = 6536; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6524; + this.state = 6537; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6527; + this.state = 6540; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6531; + this.state = 6544; this.match(MySqlParser.KW_IN); - this.state = 6532; + this.state = 6545; this.databaseName(); } } @@ -36926,38 +37035,38 @@ export class MySqlParser extends SQLParserBase { } public flushStatement(): FlushStatementContext { let localContext = new FlushStatementContext(this.context, this.state); - this.enterRule(localContext, 574, MySqlParser.RULE_flushStatement); + this.enterRule(localContext, 584, MySqlParser.RULE_flushStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6534; + this.state = 6547; this.match(MySqlParser.KW_FLUSH); - this.state = 6536; + this.state = 6549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6535; + this.state = 6548; this.tableActionOption(); } } - this.state = 6538; + this.state = 6551; this.flushOption(); - this.state = 6543; + this.state = 6556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6539; + this.state = 6552; this.match(MySqlParser.COMMA); - this.state = 6540; + this.state = 6553; this.flushOption(); } } - this.state = 6545; + this.state = 6558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36979,19 +37088,19 @@ export class MySqlParser extends SQLParserBase { } public killStatement(): KillStatementContext { let localContext = new KillStatementContext(this.context, this.state); - this.enterRule(localContext, 576, MySqlParser.RULE_killStatement); + this.enterRule(localContext, 586, MySqlParser.RULE_killStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6546; + this.state = 6559; this.match(MySqlParser.KW_KILL); - this.state = 6548; + this.state = 6561; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 941, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 940, this.context) ) { case 1: { - this.state = 6547; + this.state = 6560; localContext._connectionFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 349 || _la === 548)) { @@ -37004,7 +37113,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6550; + this.state = 6563; this.expression(0); } } @@ -37024,34 +37133,34 @@ export class MySqlParser extends SQLParserBase { } public loadIndexIntoCache(): LoadIndexIntoCacheContext { let localContext = new LoadIndexIntoCacheContext(this.context, this.state); - this.enterRule(localContext, 578, MySqlParser.RULE_loadIndexIntoCache); + this.enterRule(localContext, 588, MySqlParser.RULE_loadIndexIntoCache); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6552; + this.state = 6565; this.match(MySqlParser.KW_LOAD); - this.state = 6553; + this.state = 6566; this.match(MySqlParser.KW_INDEX); - this.state = 6554; + this.state = 6567; this.match(MySqlParser.KW_INTO); - this.state = 6555; + this.state = 6568; this.match(MySqlParser.KW_CACHE); - this.state = 6556; + this.state = 6569; this.loadedTableIndexes(); - this.state = 6561; + this.state = 6574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6557; + this.state = 6570; this.match(MySqlParser.COMMA); - this.state = 6558; + this.state = 6571; this.loadedTableIndexes(); } } - this.state = 6563; + this.state = 6576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37073,28 +37182,28 @@ export class MySqlParser extends SQLParserBase { } public resetStatement(): ResetStatementContext { let localContext = new ResetStatementContext(this.context, this.state); - this.enterRule(localContext, 580, MySqlParser.RULE_resetStatement); + this.enterRule(localContext, 590, MySqlParser.RULE_resetStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6564; + this.state = 6577; this.match(MySqlParser.KW_RESET); - this.state = 6565; + this.state = 6578; this.resetOption(); - this.state = 6570; + this.state = 6583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6566; + this.state = 6579; this.match(MySqlParser.COMMA); - this.state = 6567; + this.state = 6580; this.resetOption(); } } - this.state = 6572; + this.state = 6585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37116,38 +37225,38 @@ export class MySqlParser extends SQLParserBase { } public resetOption(): ResetOptionContext { let localContext = new ResetOptionContext(this.context, this.state); - this.enterRule(localContext, 582, MySqlParser.RULE_resetOption); + this.enterRule(localContext, 592, MySqlParser.RULE_resetOption); try { - this.state = 6578; + this.state = 6591; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 1); { - this.state = 6573; + this.state = 6586; this.match(MySqlParser.KW_MASTER); } break; case MySqlParser.KW_REPLICA: this.enterOuterAlt(localContext, 2); { - this.state = 6574; + this.state = 6587; this.match(MySqlParser.KW_REPLICA); } break; case MySqlParser.KW_QUERY: this.enterOuterAlt(localContext, 3); { - this.state = 6575; + this.state = 6588; this.match(MySqlParser.KW_QUERY); - this.state = 6576; + this.state = 6589; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 4); { - this.state = 6577; + this.state = 6590; this.match(MySqlParser.KW_SLAVE); } break; @@ -37171,30 +37280,30 @@ export class MySqlParser extends SQLParserBase { } public resetPersist(): ResetPersistContext { let localContext = new ResetPersistContext(this.context, this.state); - this.enterRule(localContext, 584, MySqlParser.RULE_resetPersist); + this.enterRule(localContext, 594, MySqlParser.RULE_resetPersist); try { this.enterOuterAlt(localContext, 1); { - this.state = 6580; + this.state = 6593; this.match(MySqlParser.KW_RESET); - this.state = 6581; + this.state = 6594; this.match(MySqlParser.KW_PERSIST); - this.state = 6586; + this.state = 6599; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { case 1: { - this.state = 6583; + this.state = 6596; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { case 1: { - this.state = 6582; + this.state = 6595; this.ifExists(); } break; } - this.state = 6585; + this.state = 6598; localContext._system_var_name = this.uid(); } break; @@ -37217,14 +37326,14 @@ export class MySqlParser extends SQLParserBase { } public resetAllChannel(): ResetAllChannelContext { let localContext = new ResetAllChannelContext(this.context, this.state); - this.enterRule(localContext, 586, MySqlParser.RULE_resetAllChannel); + this.enterRule(localContext, 596, MySqlParser.RULE_resetAllChannel); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6588; + this.state = 6601; this.match(MySqlParser.KW_RESET); - this.state = 6589; + this.state = 6602; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -37233,22 +37342,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6591; + this.state = 6604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 6590; + this.state = 6603; this.match(MySqlParser.KW_ALL); } } - this.state = 6594; + this.state = 6607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6593; + this.state = 6606; this.channelOption(); } } @@ -37271,11 +37380,11 @@ export class MySqlParser extends SQLParserBase { } public reStartStatement(): ReStartStatementContext { let localContext = new ReStartStatementContext(this.context, this.state); - this.enterRule(localContext, 588, MySqlParser.RULE_reStartStatement); + this.enterRule(localContext, 598, MySqlParser.RULE_reStartStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6596; + this.state = 6609; this.match(MySqlParser.KW_RESTART); } } @@ -37295,11 +37404,11 @@ export class MySqlParser extends SQLParserBase { } public shutdownStatement(): ShutdownStatementContext { let localContext = new ShutdownStatementContext(this.context, this.state); - this.enterRule(localContext, 590, MySqlParser.RULE_shutdownStatement); + this.enterRule(localContext, 600, MySqlParser.RULE_shutdownStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6598; + this.state = 6611; this.match(MySqlParser.KW_SHUTDOWN); } } @@ -37319,19 +37428,19 @@ export class MySqlParser extends SQLParserBase { } public tableIndex(): TableIndexContext { let localContext = new TableIndexContext(this.context, this.state); - this.enterRule(localContext, 592, MySqlParser.RULE_tableIndex); + this.enterRule(localContext, 602, MySqlParser.RULE_tableIndex); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6600; + this.state = 6613; this.tableName(); - this.state = 6606; + this.state = 6619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6601; + this.state = 6614; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -37341,11 +37450,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6602; + this.state = 6615; this.match(MySqlParser.LR_BRACKET); - this.state = 6603; + this.state = 6616; this.indexNames(); - this.state = 6604; + this.state = 6617; this.match(MySqlParser.RR_BRACKET); } } @@ -37368,28 +37477,28 @@ export class MySqlParser extends SQLParserBase { } public flushOption(): FlushOptionContext { let localContext = new FlushOptionContext(this.context, this.state); - this.enterRule(localContext, 594, MySqlParser.RULE_flushOption); + this.enterRule(localContext, 604, MySqlParser.RULE_flushOption); let _la: number; try { - this.state = 6640; + this.state = 6653; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 956, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: localContext = new SimpleFlushOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6626; + this.state = 6639; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DES_KEY_FILE: { - this.state = 6608; + this.state = 6621; this.match(MySqlParser.KW_DES_KEY_FILE); } break; case MySqlParser.KW_HOSTS: { - this.state = 6609; + this.state = 6622; this.match(MySqlParser.KW_HOSTS); } break; @@ -37401,12 +37510,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_RELAY: case MySqlParser.KW_SLOW: { - this.state = 6611; + this.state = 6624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599) { { - this.state = 6610; + this.state = 6623; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599)) { this.errorHandler.recoverInline(this); @@ -37418,56 +37527,56 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6613; + this.state = 6626; this.match(MySqlParser.KW_LOGS); } break; case MySqlParser.KW_OPTIMIZER_COSTS: { - this.state = 6614; + this.state = 6627; this.match(MySqlParser.KW_OPTIMIZER_COSTS); } break; case MySqlParser.KW_PRIVILEGES: { - this.state = 6615; + this.state = 6628; this.match(MySqlParser.KW_PRIVILEGES); } break; case MySqlParser.KW_QUERY: { - this.state = 6616; + this.state = 6629; this.match(MySqlParser.KW_QUERY); - this.state = 6617; + this.state = 6630; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_STATUS: { - this.state = 6618; + this.state = 6631; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_USER_RESOURCES: { - this.state = 6619; + this.state = 6632; this.match(MySqlParser.KW_USER_RESOURCES); } break; case MySqlParser.KW_TABLES: { - this.state = 6620; + this.state = 6633; this.match(MySqlParser.KW_TABLES); - this.state = 6624; + this.state = 6637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 951, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { case 1: { - this.state = 6621; + this.state = 6634; this.match(MySqlParser.KW_WITH); - this.state = 6622; + this.state = 6635; this.match(MySqlParser.KW_READ); - this.state = 6623; + this.state = 6636; this.match(MySqlParser.KW_LOCK); } break; @@ -37483,16 +37592,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ChannelFlushOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6628; + this.state = 6641; this.match(MySqlParser.KW_RELAY); - this.state = 6629; + this.state = 6642; this.match(MySqlParser.KW_LOGS); - this.state = 6631; + this.state = 6644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6630; + this.state = 6643; this.channelOption(); } } @@ -37503,7 +37612,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableFlushOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6633; + this.state = 6646; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -37512,22 +37621,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6635; + this.state = 6648; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { case 1: { - this.state = 6634; + this.state = 6647; this.tableNames(); } break; } - this.state = 6638; + this.state = 6651; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 954, this.context) ) { case 1: { - this.state = 6637; + this.state = 6650; this.flushTableOption(); } break; @@ -37552,28 +37661,28 @@ export class MySqlParser extends SQLParserBase { } public flushTableOption(): FlushTableOptionContext { let localContext = new FlushTableOptionContext(this.context, this.state); - this.enterRule(localContext, 596, MySqlParser.RULE_flushTableOption); + this.enterRule(localContext, 606, MySqlParser.RULE_flushTableOption); try { - this.state = 6647; + this.state = 6660; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 6642; + this.state = 6655; this.match(MySqlParser.KW_WITH); - this.state = 6643; + this.state = 6656; this.match(MySqlParser.KW_READ); - this.state = 6644; + this.state = 6657; this.match(MySqlParser.KW_LOCK); } break; case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 2); { - this.state = 6645; + this.state = 6658; this.match(MySqlParser.KW_FOR); - this.state = 6646; + this.state = 6659; this.match(MySqlParser.KW_EXPORT); } break; @@ -37597,23 +37706,23 @@ export class MySqlParser extends SQLParserBase { } public loadedTableIndexes(): LoadedTableIndexesContext { let localContext = new LoadedTableIndexesContext(this.context, this.state); - this.enterRule(localContext, 598, MySqlParser.RULE_loadedTableIndexes); + this.enterRule(localContext, 608, MySqlParser.RULE_loadedTableIndexes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6649; + this.state = 6662; this.tableName(); - this.state = 6657; + this.state = 6670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 6650; + this.state = 6663; this.match(MySqlParser.KW_PARTITION); - this.state = 6651; + this.state = 6664; this.match(MySqlParser.LR_BRACKET); - this.state = 6654; + this.state = 6667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -38166,35 +38275,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6652; + this.state = 6665; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6653; + this.state = 6666; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6656; + this.state = 6669; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6666; + this.state = 6679; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 961, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 6660; + this.state = 6673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6659; + this.state = 6672; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -38207,23 +38316,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6662; + this.state = 6675; this.match(MySqlParser.LR_BRACKET); - this.state = 6663; + this.state = 6676; this.indexNames(); - this.state = 6664; + this.state = 6677; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6670; + this.state = 6683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6668; + this.state = 6681; this.match(MySqlParser.KW_IGNORE); - this.state = 6669; + this.state = 6682; this.match(MySqlParser.KW_LEAVES); } } @@ -38246,12 +38355,12 @@ export class MySqlParser extends SQLParserBase { } public simpleDescribeStatement(): SimpleDescribeStatementContext { let localContext = new SimpleDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 600, MySqlParser.RULE_simpleDescribeStatement); + this.enterRule(localContext, 610, MySqlParser.RULE_simpleDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6672; + this.state = 6685; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38261,20 +38370,20 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6673; + this.state = 6686; this.tableName(); - this.state = 6676; + this.state = 6689; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 6674; + this.state = 6687; localContext._column = this.columnName(); } break; case 2: { - this.state = 6675; + this.state = 6688; localContext._pattern = this.match(MySqlParser.STRING_LITERAL); } break; @@ -38297,12 +38406,12 @@ export class MySqlParser extends SQLParserBase { } public fullDescribeStatement(): FullDescribeStatementContext { let localContext = new FullDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 602, MySqlParser.RULE_fullDescribeStatement); + this.enterRule(localContext, 612, MySqlParser.RULE_fullDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6678; + this.state = 6691; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38312,28 +38421,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6684; + this.state = 6697; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EXTENDED: { - this.state = 6679; + this.state = 6692; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_PARTITIONS: { - this.state = 6680; + this.state = 6693; this.match(MySqlParser.KW_PARTITIONS); } break; case MySqlParser.KW_FORMAT: { - this.state = 6681; + this.state = 6694; this.match(MySqlParser.KW_FORMAT); - this.state = 6682; + this.state = 6695; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6683; + this.state = 6696; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 663 || _la === 666)) { this.errorHandler.recoverInline(this); @@ -38355,7 +38464,7 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6686; + this.state = 6699; this.describeObjectClause(); } } @@ -38375,12 +38484,12 @@ export class MySqlParser extends SQLParserBase { } public analyzeDescribeStatement(): AnalyzeDescribeStatementContext { let localContext = new AnalyzeDescribeStatementContext(this.context, this.state); - this.enterRule(localContext, 604, MySqlParser.RULE_analyzeDescribeStatement); + this.enterRule(localContext, 614, MySqlParser.RULE_analyzeDescribeStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6688; + this.state = 6701; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38390,23 +38499,23 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6689; + this.state = 6702; this.match(MySqlParser.KW_ANALYZE); - this.state = 6693; + this.state = 6706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 826) { { - this.state = 6690; + this.state = 6703; this.match(MySqlParser.KW_FORMAT); - this.state = 6691; + this.state = 6704; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6692; + this.state = 6705; this.match(MySqlParser.KW_TREE); } } - this.state = 6695; + this.state = 6708; this.selectStatement(); } } @@ -38426,13 +38535,13 @@ export class MySqlParser extends SQLParserBase { } public helpStatement(): HelpStatementContext { let localContext = new HelpStatementContext(this.context, this.state); - this.enterRule(localContext, 606, MySqlParser.RULE_helpStatement); + this.enterRule(localContext, 616, MySqlParser.RULE_helpStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6697; + this.state = 6710; this.match(MySqlParser.KW_HELP); - this.state = 6698; + this.state = 6711; this.match(MySqlParser.STRING_LITERAL); } } @@ -38452,13 +38561,13 @@ export class MySqlParser extends SQLParserBase { } public useStatement(): UseStatementContext { let localContext = new UseStatementContext(this.context, this.state); - this.enterRule(localContext, 608, MySqlParser.RULE_useStatement); + this.enterRule(localContext, 618, MySqlParser.RULE_useStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6700; + this.state = 6713; this.match(MySqlParser.KW_USE); - this.state = 6701; + this.state = 6714; this.databaseName(); } } @@ -38478,73 +38587,73 @@ export class MySqlParser extends SQLParserBase { } public signalStatement(): SignalStatementContext { let localContext = new SignalStatementContext(this.context, this.state); - this.enterRule(localContext, 610, MySqlParser.RULE_signalStatement); + this.enterRule(localContext, 620, MySqlParser.RULE_signalStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6703; + this.state = 6716; this.match(MySqlParser.KW_SIGNAL); - this.state = 6711; + this.state = 6724; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6704; + this.state = 6717; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6706; + this.state = 6719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6705; + this.state = 6718; this.match(MySqlParser.KW_VALUE); } } - this.state = 6708; + this.state = 6721; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6709; + this.state = 6722; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6710; + this.state = 6723; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6722; + this.state = 6735; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 968, this.context) ) { case 1: { - this.state = 6713; + this.state = 6726; this.match(MySqlParser.KW_SET); - this.state = 6714; + this.state = 6727; this.signalConditionInformation(); - this.state = 6719; + this.state = 6732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6715; + this.state = 6728; this.match(MySqlParser.COMMA); - this.state = 6716; + this.state = 6729; this.signalConditionInformation(); } } - this.state = 6721; + this.state = 6734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38569,45 +38678,45 @@ export class MySqlParser extends SQLParserBase { } public resignalStatement(): ResignalStatementContext { let localContext = new ResignalStatementContext(this.context, this.state); - this.enterRule(localContext, 612, MySqlParser.RULE_resignalStatement); + this.enterRule(localContext, 622, MySqlParser.RULE_resignalStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6724; + this.state = 6737; this.match(MySqlParser.KW_RESIGNAL); - this.state = 6732; + this.state = 6745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6725; + this.state = 6738; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6727; + this.state = 6740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6726; + this.state = 6739; this.match(MySqlParser.KW_VALUE); } } - this.state = 6729; + this.state = 6742; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6730; + this.state = 6743; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6731; + this.state = 6744; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; @@ -38678,28 +38787,28 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6743; + this.state = 6756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 6734; + this.state = 6747; this.match(MySqlParser.KW_SET); - this.state = 6735; + this.state = 6748; this.signalConditionInformation(); - this.state = 6740; + this.state = 6753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6736; + this.state = 6749; this.match(MySqlParser.COMMA); - this.state = 6737; + this.state = 6750; this.signalConditionInformation(); } } - this.state = 6742; + this.state = 6755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38724,12 +38833,12 @@ export class MySqlParser extends SQLParserBase { } public signalConditionInformation(): SignalConditionInformationContext { let localContext = new SignalConditionInformationContext(this.context, this.state); - this.enterRule(localContext, 614, MySqlParser.RULE_signalConditionInformation); + this.enterRule(localContext, 624, MySqlParser.RULE_signalConditionInformation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6745; + this.state = 6758; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -38738,29 +38847,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6746; + this.state = 6759; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6751; + this.state = 6764; 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 = 6747; + this.state = 6760; this.stringLiteral(); } break; case MySqlParser.DECIMAL_LITERAL: { - this.state = 6748; + this.state = 6761; this.match(MySqlParser.DECIMAL_LITERAL); } break; case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6749; + this.state = 6762; this.mysqlVariable(); } break; @@ -39312,7 +39421,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: case MySqlParser.ID: { - this.state = 6750; + this.state = 6763; this.simpleId(); } break; @@ -39337,38 +39446,38 @@ export class MySqlParser extends SQLParserBase { } public withStatement(): WithStatementContext { let localContext = new WithStatementContext(this.context, this.state); - this.enterRule(localContext, 616, MySqlParser.RULE_withStatement); + this.enterRule(localContext, 626, MySqlParser.RULE_withStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6753; + this.state = 6766; this.match(MySqlParser.KW_WITH); - this.state = 6755; + this.state = 6768; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: { - this.state = 6754; + this.state = 6767; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 6757; + this.state = 6770; this.commonTableExpressions(); - this.state = 6762; + this.state = 6775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6758; + this.state = 6771; this.match(MySqlParser.COMMA); - this.state = 6759; + this.state = 6772; this.commonTableExpressions(); } } - this.state = 6764; + this.state = 6777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39390,30 +39499,30 @@ export class MySqlParser extends SQLParserBase { } public tableStatement(): TableStatementContext { let localContext = new TableStatementContext(this.context, this.state); - this.enterRule(localContext, 618, MySqlParser.RULE_tableStatement); + this.enterRule(localContext, 628, MySqlParser.RULE_tableStatement); try { this.enterOuterAlt(localContext, 1); { - this.state = 6765; + this.state = 6778; this.match(MySqlParser.KW_TABLE); - this.state = 6766; + this.state = 6779; this.tableName(); - this.state = 6768; + this.state = 6781; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: { - this.state = 6767; + this.state = 6780; this.orderByClause(); } break; } - this.state = 6771; + this.state = 6784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: { - this.state = 6770; + this.state = 6783; this.limitClause(); } break; @@ -39436,19 +39545,19 @@ export class MySqlParser extends SQLParserBase { } public diagnosticsStatement(): DiagnosticsStatementContext { let localContext = new DiagnosticsStatementContext(this.context, this.state); - this.enterRule(localContext, 620, MySqlParser.RULE_diagnosticsStatement); + this.enterRule(localContext, 630, MySqlParser.RULE_diagnosticsStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6773; + this.state = 6786; this.match(MySqlParser.KW_GET); - this.state = 6775; + this.state = 6788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 170) { { - this.state = 6774; + this.state = 6787; _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -39460,19 +39569,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6777; + this.state = 6790; this.match(MySqlParser.KW_DIAGNOSTICS); - this.state = 6809; + this.state = 6822; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { case 1: { { - this.state = 6778; + this.state = 6791; this.variableClause(); - this.state = 6779; + this.state = 6792; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6780; + this.state = 6793; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39481,19 +39590,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6788; + this.state = 6801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6781; + this.state = 6794; this.match(MySqlParser.COMMA); - this.state = 6782; + this.state = 6795; this.variableClause(); - this.state = 6783; + this.state = 6796; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6784; + this.state = 6797; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39504,7 +39613,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 6790; + this.state = 6803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39514,9 +39623,9 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 6791; + this.state = 6804; this.match(MySqlParser.KW_CONDITION); - this.state = 6794; + this.state = 6807; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -39526,7 +39635,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 6792; + this.state = 6805; this.decimalLiteral(); } break; @@ -40085,36 +40194,36 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6793; + this.state = 6806; this.variableClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6796; + this.state = 6809; this.variableClause(); - this.state = 6797; + this.state = 6810; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6798; + this.state = 6811; this.diagnosticsConditionInformationName(); - this.state = 6806; + this.state = 6819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6799; + this.state = 6812; this.match(MySqlParser.COMMA); - this.state = 6800; + this.state = 6813; this.variableClause(); - this.state = 6801; + this.state = 6814; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6802; + this.state = 6815; this.diagnosticsConditionInformationName(); } } - this.state = 6808; + this.state = 6821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40140,12 +40249,12 @@ export class MySqlParser extends SQLParserBase { } public diagnosticsConditionInformationName(): DiagnosticsConditionInformationNameContext { let localContext = new DiagnosticsConditionInformationNameContext(this.context, this.state); - this.enterRule(localContext, 622, MySqlParser.RULE_diagnosticsConditionInformationName); + this.enterRule(localContext, 632, MySqlParser.RULE_diagnosticsConditionInformationName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6811; + this.state = 6824; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 578 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -40172,9 +40281,9 @@ export class MySqlParser extends SQLParserBase { } public describeObjectClause(): DescribeObjectClauseContext { let localContext = new DescribeObjectClauseContext(this.context, this.state); - this.enterRule(localContext, 624, MySqlParser.RULE_describeObjectClause); + this.enterRule(localContext, 634, MySqlParser.RULE_describeObjectClause); try { - this.state = 6823; + this.state = 6836; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DELETE: @@ -40186,37 +40295,37 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeStatementsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6818; + this.state = 6831; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: { - this.state = 6813; + this.state = 6826; this.selectStatement(); } break; case MySqlParser.KW_DELETE: { - this.state = 6814; + this.state = 6827; this.deleteStatement(); } break; case MySqlParser.KW_INSERT: { - this.state = 6815; + this.state = 6828; this.insertStatement(); } break; case MySqlParser.KW_REPLACE: { - this.state = 6816; + this.state = 6829; this.replaceStatement(); } break; case MySqlParser.KW_UPDATE: { - this.state = 6817; + this.state = 6830; this.updateStatement(); } break; @@ -40229,11 +40338,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeConnectionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6820; + this.state = 6833; this.match(MySqlParser.KW_FOR); - this.state = 6821; + this.state = 6834; this.match(MySqlParser.KW_CONNECTION); - this.state = 6822; + this.state = 6835; (localContext as DescribeConnectionContext)._connection_id = this.uid(); } break; @@ -40257,11 +40366,11 @@ export class MySqlParser extends SQLParserBase { } public databaseNameCreate(): DatabaseNameCreateContext { let localContext = new DatabaseNameCreateContext(this.context, this.state); - this.enterRule(localContext, 626, MySqlParser.RULE_databaseNameCreate); + this.enterRule(localContext, 636, MySqlParser.RULE_databaseNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6825; + this.state = 6838; this.fullId(); } } @@ -40281,11 +40390,11 @@ export class MySqlParser extends SQLParserBase { } public databaseName(): DatabaseNameContext { let localContext = new DatabaseNameContext(this.context, this.state); - this.enterRule(localContext, 628, MySqlParser.RULE_databaseName); + this.enterRule(localContext, 638, MySqlParser.RULE_databaseName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6827; + this.state = 6840; this.fullId(); } } @@ -40305,11 +40414,11 @@ export class MySqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 630, MySqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 640, MySqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6829; + this.state = 6842; this.fullId(); } } @@ -40329,11 +40438,11 @@ export class MySqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 632, MySqlParser.RULE_functionName); + this.enterRule(localContext, 642, MySqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6831; + this.state = 6844; this.fullId(); } } @@ -40353,11 +40462,11 @@ export class MySqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 634, MySqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 644, MySqlParser.RULE_viewNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6833; + this.state = 6846; this.fullId(); } } @@ -40377,11 +40486,11 @@ export class MySqlParser extends SQLParserBase { } public viewName(): ViewNameContext { let localContext = new ViewNameContext(this.context, this.state); - this.enterRule(localContext, 636, MySqlParser.RULE_viewName); + this.enterRule(localContext, 646, MySqlParser.RULE_viewName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6835; + this.state = 6848; this.fullId(); } } @@ -40401,11 +40510,11 @@ export class MySqlParser extends SQLParserBase { } public indexNameCreate(): IndexNameCreateContext { let localContext = new IndexNameCreateContext(this.context, this.state); - this.enterRule(localContext, 638, MySqlParser.RULE_indexNameCreate); + this.enterRule(localContext, 648, MySqlParser.RULE_indexNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6837; + this.state = 6850; this.uid(); } } @@ -40425,26 +40534,26 @@ export class MySqlParser extends SQLParserBase { } public indexNames(): IndexNamesContext { let localContext = new IndexNamesContext(this.context, this.state); - this.enterRule(localContext, 640, MySqlParser.RULE_indexNames); + this.enterRule(localContext, 650, MySqlParser.RULE_indexNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6839; + this.state = 6852; this.indexName(); - this.state = 6844; + this.state = 6857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6840; + this.state = 6853; this.match(MySqlParser.COMMA); - this.state = 6841; + this.state = 6854; this.indexName(); } } - this.state = 6846; + this.state = 6859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40466,11 +40575,11 @@ export class MySqlParser extends SQLParserBase { } public indexName(): IndexNameContext { let localContext = new IndexNameContext(this.context, this.state); - this.enterRule(localContext, 642, MySqlParser.RULE_indexName); + this.enterRule(localContext, 652, MySqlParser.RULE_indexName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6847; + this.state = 6860; this.uid(); } } @@ -40490,11 +40599,11 @@ export class MySqlParser extends SQLParserBase { } public groupNameCreate(): GroupNameCreateContext { let localContext = new GroupNameCreateContext(this.context, this.state); - this.enterRule(localContext, 644, MySqlParser.RULE_groupNameCreate); + this.enterRule(localContext, 654, MySqlParser.RULE_groupNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6849; + this.state = 6862; this.uid(); } } @@ -40514,11 +40623,11 @@ export class MySqlParser extends SQLParserBase { } public groupName(): GroupNameContext { let localContext = new GroupNameContext(this.context, this.state); - this.enterRule(localContext, 646, MySqlParser.RULE_groupName); + this.enterRule(localContext, 656, MySqlParser.RULE_groupName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6851; + this.state = 6864; this.uid(); } } @@ -40538,11 +40647,11 @@ export class MySqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 648, MySqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 658, MySqlParser.RULE_tableNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6853; + this.state = 6866; this.fullId(); } } @@ -40562,30 +40671,30 @@ export class MySqlParser extends SQLParserBase { } public tableNames(): TableNamesContext { let localContext = new TableNamesContext(this.context, this.state); - this.enterRule(localContext, 650, MySqlParser.RULE_tableNames); + this.enterRule(localContext, 660, MySqlParser.RULE_tableNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6855; + this.state = 6868; this.tableName(); - this.state = 6860; + this.state = 6873; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 987, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 986, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6856; + this.state = 6869; this.match(MySqlParser.COMMA); - this.state = 6857; + this.state = 6870; this.tableName(); } } } - this.state = 6862; + this.state = 6875; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 987, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 986, this.context); } } } @@ -40605,11 +40714,11 @@ export class MySqlParser extends SQLParserBase { } public tableName(): TableNameContext { let localContext = new TableNameContext(this.context, this.state); - this.enterRule(localContext, 652, MySqlParser.RULE_tableName); + this.enterRule(localContext, 662, MySqlParser.RULE_tableName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6863; + this.state = 6876; this.fullId(); } } @@ -40629,26 +40738,26 @@ export class MySqlParser extends SQLParserBase { } public userOrRoleNames(): UserOrRoleNamesContext { let localContext = new UserOrRoleNamesContext(this.context, this.state); - this.enterRule(localContext, 654, MySqlParser.RULE_userOrRoleNames); + this.enterRule(localContext, 664, MySqlParser.RULE_userOrRoleNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6865; + this.state = 6878; this.userOrRoleName(); - this.state = 6870; + this.state = 6883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6866; + this.state = 6879; this.match(MySqlParser.COMMA); - this.state = 6867; + this.state = 6880; this.userOrRoleName(); } } - this.state = 6872; + this.state = 6885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40670,22 +40779,22 @@ export class MySqlParser extends SQLParserBase { } public userOrRoleName(): UserOrRoleNameContext { let localContext = new UserOrRoleNameContext(this.context, this.state); - this.enterRule(localContext, 656, MySqlParser.RULE_userOrRoleName); + this.enterRule(localContext, 666, MySqlParser.RULE_userOrRoleName); try { - this.state = 6875; + this.state = 6888; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 988, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6873; + this.state = 6886; this.userName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6874; + this.state = 6887; this.uid(); } break; @@ -40707,30 +40816,30 @@ export class MySqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 658, MySqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 668, MySqlParser.RULE_columnNameCreate); let _la: number; try { - this.state = 6891; + this.state = 6904; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 994, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6877; + this.state = 6890; this.uid(); - this.state = 6882; + this.state = 6895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6878; + this.state = 6891; this.dottedId(); - this.state = 6880; + this.state = 6893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6879; + this.state = 6892; this.dottedId(); } } @@ -40743,24 +40852,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6885; + this.state = 6898; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 992, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: { - this.state = 6884; + this.state = 6897; this.matchWildcard(); } break; } - this.state = 6887; + this.state = 6900; this.dottedId(); - this.state = 6889; + this.state = 6902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6888; + this.state = 6901; this.dottedId(); } } @@ -40785,30 +40894,30 @@ export class MySqlParser extends SQLParserBase { } public columnNames(): ColumnNamesContext { let localContext = new ColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 660, MySqlParser.RULE_columnNames); + this.enterRule(localContext, 670, MySqlParser.RULE_columnNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6893; + this.state = 6906; this.columnName(); - this.state = 6898; + this.state = 6911; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 995, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 994, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6894; + this.state = 6907; this.match(MySqlParser.COMMA); - this.state = 6895; + this.state = 6908; this.columnName(); } } } - this.state = 6900; + this.state = 6913; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 995, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 994, this.context); } } } @@ -40828,29 +40937,29 @@ export class MySqlParser extends SQLParserBase { } public columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 662, MySqlParser.RULE_columnName); + this.enterRule(localContext, 672, MySqlParser.RULE_columnName); try { - this.state = 6916; + this.state = 6929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6901; + this.state = 6914; this.uid(); - this.state = 6906; + this.state = 6919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { case 1: { - this.state = 6902; + this.state = 6915; this.dottedId(); - this.state = 6904; + this.state = 6917; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { case 1: { - this.state = 6903; + this.state = 6916; this.dottedId(); } break; @@ -40863,24 +40972,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6909; + this.state = 6922; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { case 1: { - this.state = 6908; + this.state = 6921; this.matchWildcard(); } break; } - this.state = 6911; + this.state = 6924; this.dottedId(); - this.state = 6913; + this.state = 6926; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 6912; + this.state = 6925; this.dottedId(); } break; @@ -40890,7 +40999,7 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6915; + this.state = 6928; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -40914,11 +41023,11 @@ export class MySqlParser extends SQLParserBase { } public tablespaceNameCreate(): TablespaceNameCreateContext { let localContext = new TablespaceNameCreateContext(this.context, this.state); - this.enterRule(localContext, 664, MySqlParser.RULE_tablespaceNameCreate); + this.enterRule(localContext, 674, MySqlParser.RULE_tablespaceNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6918; + this.state = 6931; this.uid(); } } @@ -40938,11 +41047,11 @@ export class MySqlParser extends SQLParserBase { } public tablespaceName(): TablespaceNameContext { let localContext = new TablespaceNameContext(this.context, this.state); - this.enterRule(localContext, 666, MySqlParser.RULE_tablespaceName); + this.enterRule(localContext, 676, MySqlParser.RULE_tablespaceName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6920; + this.state = 6933; this.uid(); } } @@ -40962,11 +41071,11 @@ export class MySqlParser extends SQLParserBase { } public partitionNameCreate(): PartitionNameCreateContext { let localContext = new PartitionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 668, MySqlParser.RULE_partitionNameCreate); + this.enterRule(localContext, 678, MySqlParser.RULE_partitionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 6922; + this.state = 6935; this.uid(); } } @@ -40986,30 +41095,30 @@ export class MySqlParser extends SQLParserBase { } public partitionNames(): PartitionNamesContext { let localContext = new PartitionNamesContext(this.context, this.state); - this.enterRule(localContext, 670, MySqlParser.RULE_partitionNames); + this.enterRule(localContext, 680, MySqlParser.RULE_partitionNames); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6924; + this.state = 6937; this.partitionName(); - this.state = 6929; + this.state = 6942; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6925; + this.state = 6938; this.match(MySqlParser.COMMA); - this.state = 6926; + this.state = 6939; this.partitionName(); } } } - this.state = 6931; + this.state = 6944; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); } } } @@ -41029,11 +41138,11 @@ export class MySqlParser extends SQLParserBase { } public partitionName(): PartitionNameContext { let localContext = new PartitionNameContext(this.context, this.state); - this.enterRule(localContext, 672, MySqlParser.RULE_partitionName); + this.enterRule(localContext, 682, MySqlParser.RULE_partitionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6932; + this.state = 6945; this.uid(); } } @@ -41053,28 +41162,28 @@ export class MySqlParser extends SQLParserBase { } public indexColumnName(): IndexColumnNameContext { let localContext = new IndexColumnNameContext(this.context, this.state); - this.enterRule(localContext, 674, MySqlParser.RULE_indexColumnName); + this.enterRule(localContext, 684, MySqlParser.RULE_indexColumnName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6942; + this.state = 6955; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 6934; + this.state = 6947; this.uid(); - this.state = 6939; + this.state = 6952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { case 1: { - this.state = 6935; + this.state = 6948; this.match(MySqlParser.LR_BRACKET); - this.state = 6936; + this.state = 6949; this.decimalLiteral(); - this.state = 6937; + this.state = 6950; this.match(MySqlParser.RR_BRACKET); } break; @@ -41083,17 +41192,17 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6941; + this.state = 6954; this.expression(0); } break; } - this.state = 6945; + this.state = 6958; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { case 1: { - this.state = 6944; + this.state = 6957; localContext._sortType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -41124,15 +41233,15 @@ export class MySqlParser extends SQLParserBase { } public userHostPort(): UserHostPortContext { let localContext = new UserHostPortContext(this.context, this.state); - this.enterRule(localContext, 676, MySqlParser.RULE_userHostPort); + this.enterRule(localContext, 686, MySqlParser.RULE_userHostPort); try { this.enterOuterAlt(localContext, 1); { - this.state = 6947; + this.state = 6960; this.userAtHost(); - this.state = 6948; + this.state = 6961; this.match(MySqlParser.COLON_SYMB); - this.state = 6949; + this.state = 6962; this.decimalLiteral(); } } @@ -41152,13 +41261,13 @@ export class MySqlParser extends SQLParserBase { } public userAtHost(): UserAtHostContext { let localContext = new UserAtHostContext(this.context, this.state); - this.enterRule(localContext, 678, MySqlParser.RULE_userAtHost); + this.enterRule(localContext, 688, MySqlParser.RULE_userAtHost); try { this.enterOuterAlt(localContext, 1); { - this.state = 6951; + this.state = 6964; this.simpleUserName(); - this.state = 6952; + this.state = 6965; this.match(MySqlParser.HOST_IP_ADDRESS); } } @@ -41178,36 +41287,36 @@ export class MySqlParser extends SQLParserBase { } public simpleUserName(): SimpleUserNameContext { let localContext = new SimpleUserNameContext(this.context, this.state); - this.enterRule(localContext, 680, MySqlParser.RULE_simpleUserName); + this.enterRule(localContext, 690, MySqlParser.RULE_simpleUserName); try { - this.state = 6958; + this.state = 6971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6954; + this.state = 6967; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6955; + this.state = 6968; this.match(MySqlParser.ID); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6956; + this.state = 6969; this.match(MySqlParser.KW_ADMIN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6957; + this.state = 6970; this.keywordsCanBeId(); } break; @@ -41229,12 +41338,12 @@ export class MySqlParser extends SQLParserBase { } public hostName(): HostNameContext { let localContext = new HostNameContext(this.context, this.state); - this.enterRule(localContext, 682, MySqlParser.RULE_hostName); + this.enterRule(localContext, 692, MySqlParser.RULE_hostName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6960; + this.state = 6973; _la = this.tokenStream.LA(1); if(!(((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0))) { this.errorHandler.recoverInline(this); @@ -41261,23 +41370,23 @@ export class MySqlParser extends SQLParserBase { } public userName(): UserNameContext { let localContext = new UserNameContext(this.context, this.state); - this.enterRule(localContext, 684, MySqlParser.RULE_userName); + this.enterRule(localContext, 694, MySqlParser.RULE_userName); let _la: number; try { - this.state = 6967; + this.state = 6980; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6962; + this.state = 6975; this.simpleUserName(); - this.state = 6964; + this.state = 6977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0)) { { - this.state = 6963; + this.state = 6976; this.hostName(); } } @@ -41287,7 +41396,7 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6966; + this.state = 6979; this.currentUserExpression(); } break; @@ -41309,12 +41418,12 @@ export class MySqlParser extends SQLParserBase { } public mysqlVariable(): MysqlVariableContext { let localContext = new MysqlVariableContext(this.context, this.state); - this.enterRule(localContext, 686, MySqlParser.RULE_mysqlVariable); + this.enterRule(localContext, 696, MySqlParser.RULE_mysqlVariable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6969; + this.state = 6982; _la = this.tokenStream.LA(1); if(!(_la === 892 || _la === 893)) { this.errorHandler.recoverInline(this); @@ -41341,36 +41450,36 @@ export class MySqlParser extends SQLParserBase { } public charsetName(): CharsetNameContext { let localContext = new CharsetNameContext(this.context, this.state); - this.enterRule(localContext, 688, MySqlParser.RULE_charsetName); + this.enterRule(localContext, 698, MySqlParser.RULE_charsetName); try { - this.state = 6975; + this.state = 6988; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6971; + this.state = 6984; this.match(MySqlParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6972; + this.state = 6985; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6973; + this.state = 6986; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6974; + this.state = 6987; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; @@ -41392,11 +41501,11 @@ export class MySqlParser extends SQLParserBase { } public collationName(): CollationNameContext { let localContext = new CollationNameContext(this.context, this.state); - this.enterRule(localContext, 690, MySqlParser.RULE_collationName); + this.enterRule(localContext, 700, MySqlParser.RULE_collationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 6977; + this.state = 6990; this.uid(); } } @@ -41416,9 +41525,9 @@ export class MySqlParser extends SQLParserBase { } public engineName(): EngineNameContext { let localContext = new EngineNameContext(this.context, this.state); - this.enterRule(localContext, 692, MySqlParser.RULE_engineName); + this.enterRule(localContext, 702, MySqlParser.RULE_engineName); try { - this.state = 6982; + this.state = 6995; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONNECT: @@ -41436,21 +41545,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TOKUDB: this.enterOuterAlt(localContext, 1); { - this.state = 6979; + this.state = 6992; this.engineNameBase(); } break; case MySqlParser.ID: this.enterOuterAlt(localContext, 2); { - this.state = 6980; + this.state = 6993; this.match(MySqlParser.ID); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 6981; + this.state = 6994; this.match(MySqlParser.STRING_LITERAL); } break; @@ -41474,12 +41583,12 @@ export class MySqlParser extends SQLParserBase { } public engineNameBase(): EngineNameBaseContext { let localContext = new EngineNameBaseContext(this.context, this.state); - this.enterRule(localContext, 694, MySqlParser.RULE_engineNameBase); + this.enterRule(localContext, 704, MySqlParser.RULE_engineNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6984; + this.state = 6997; _la = this.tokenStream.LA(1); if(!(_la === 348 || ((((_la - 797)) & ~0x1F) === 0 && ((1 << (_la - 797)) & 4095) !== 0))) { this.errorHandler.recoverInline(this); @@ -41506,46 +41615,46 @@ export class MySqlParser extends SQLParserBase { } public uuidSet(): UuidSetContext { let localContext = new UuidSetContext(this.context, this.state); - this.enterRule(localContext, 696, MySqlParser.RULE_uuidSet); + this.enterRule(localContext, 706, MySqlParser.RULE_uuidSet); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6986; + this.state = 6999; this.decimalLiteral(); - this.state = 6987; + this.state = 7000; this.match(MySqlParser.MINUS); - this.state = 6988; + this.state = 7001; this.decimalLiteral(); - this.state = 6989; + this.state = 7002; this.match(MySqlParser.MINUS); - this.state = 6990; + this.state = 7003; this.decimalLiteral(); - this.state = 6991; + this.state = 7004; this.match(MySqlParser.MINUS); - this.state = 6992; + this.state = 7005; this.decimalLiteral(); - this.state = 6993; + this.state = 7006; this.match(MySqlParser.MINUS); - this.state = 6994; + this.state = 7007; this.decimalLiteral(); - this.state = 7000; + this.state = 7013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6995; + this.state = 7008; this.match(MySqlParser.COLON_SYMB); - this.state = 6996; + this.state = 7009; this.decimalLiteral(); - this.state = 6997; + this.state = 7010; this.match(MySqlParser.MINUS); - this.state = 6998; + this.state = 7011; this.decimalLiteral(); } } - this.state = 7002; + this.state = 7015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 878); @@ -41567,30 +41676,30 @@ export class MySqlParser extends SQLParserBase { } public xid(): XidContext { let localContext = new XidContext(this.context, this.state); - this.enterRule(localContext, 698, MySqlParser.RULE_xid); + this.enterRule(localContext, 708, MySqlParser.RULE_xid); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7004; + this.state = 7017; localContext._globalTableUid = this.xuidStringId(); - this.state = 7011; + this.state = 7024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7005; + this.state = 7018; this.match(MySqlParser.COMMA); - this.state = 7006; + this.state = 7019; localContext._qualifier = this.xuidStringId(); - this.state = 7009; + this.state = 7022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7007; + this.state = 7020; this.match(MySqlParser.COMMA); - this.state = 7008; + this.state = 7021; localContext._idFormat = this.decimalLiteral(); } } @@ -41616,40 +41725,40 @@ export class MySqlParser extends SQLParserBase { } public xuidStringId(): XuidStringIdContext { let localContext = new XuidStringIdContext(this.context, this.state); - this.enterRule(localContext, 700, MySqlParser.RULE_xuidStringId); + this.enterRule(localContext, 710, MySqlParser.RULE_xuidStringId); let _la: number; try { - this.state = 7020; + this.state = 7033; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7013; + this.state = 7026; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BIT_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7014; + this.state = 7027; this.match(MySqlParser.BIT_STRING); } break; case MySqlParser.HEXADECIMAL_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7016; + this.state = 7029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7015; + this.state = 7028; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } - this.state = 7018; + this.state = 7031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 884); @@ -41675,18 +41784,18 @@ export class MySqlParser extends SQLParserBase { } public fullId(): FullIdContext { let localContext = new FullIdContext(this.context, this.state); - this.enterRule(localContext, 702, MySqlParser.RULE_fullId); + this.enterRule(localContext, 712, MySqlParser.RULE_fullId); try { this.enterOuterAlt(localContext, 1); { - this.state = 7022; + this.state = 7035; this.uid(); - this.state = 7024; + this.state = 7037; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1015, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { case 1: { - this.state = 7023; + this.state = 7036; this.dottedId(); } break; @@ -41709,26 +41818,26 @@ export class MySqlParser extends SQLParserBase { } public uidList(): UidListContext { let localContext = new UidListContext(this.context, this.state); - this.enterRule(localContext, 704, MySqlParser.RULE_uidList); + this.enterRule(localContext, 714, MySqlParser.RULE_uidList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7026; + this.state = 7039; this.uid(); - this.state = 7031; + this.state = 7044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7027; + this.state = 7040; this.match(MySqlParser.COMMA); - this.state = 7028; + this.state = 7041; this.uid(); } } - this.state = 7033; + this.state = 7046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -41750,9 +41859,9 @@ export class MySqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 706, MySqlParser.RULE_uid); + this.enterRule(localContext, 716, MySqlParser.RULE_uid); try { - this.state = 7037; + this.state = 7050; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -42304,21 +42413,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 7034; + this.state = 7047; this.simpleId(); } break; case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7035; + this.state = 7048; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7036; + this.state = 7049; this.match(MySqlParser.STRING_LITERAL); } break; @@ -42342,71 +42451,71 @@ export class MySqlParser extends SQLParserBase { } public simpleId(): SimpleIdContext { let localContext = new SimpleIdContext(this.context, this.state); - this.enterRule(localContext, 708, MySqlParser.RULE_simpleId); + this.enterRule(localContext, 718, MySqlParser.RULE_simpleId); try { - this.state = 7048; + this.state = 7061; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7039; + this.state = 7052; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7040; + this.state = 7053; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7041; + this.state = 7054; this.transactionLevelBase(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7042; + this.state = 7055; this.engineNameBase(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7043; + this.state = 7056; this.privilegesBase(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7044; + this.state = 7057; this.intervalTypeBase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7045; + this.state = 7058; this.dataTypeBase(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7046; + this.state = 7059; this.keywordsCanBeId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7047; + this.state = 7060; this.scalarFunctionName(); } break; @@ -42428,26 +42537,26 @@ export class MySqlParser extends SQLParserBase { } public dottedId(): DottedIdContext { let localContext = new DottedIdContext(this.context, this.state); - this.enterRule(localContext, 710, MySqlParser.RULE_dottedId); + this.enterRule(localContext, 720, MySqlParser.RULE_dottedId); try { - this.state = 7054; + this.state = 7067; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7050; + this.state = 7063; this.match(MySqlParser.DOT); - this.state = 7051; + this.state = 7064; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7052; + this.state = 7065; this.match(MySqlParser.DOT); - this.state = 7053; + this.state = 7066; this.uid(); } break; @@ -42469,12 +42578,12 @@ export class MySqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 712, MySqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 722, MySqlParser.RULE_decimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7056; + this.state = 7069; _la = this.tokenStream.LA(1); if(!(((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0))) { this.errorHandler.recoverInline(this); @@ -42501,15 +42610,15 @@ export class MySqlParser extends SQLParserBase { } public fileSizeLiteral(): FileSizeLiteralContext { let localContext = new FileSizeLiteralContext(this.context, this.state); - this.enterRule(localContext, 714, MySqlParser.RULE_fileSizeLiteral); + this.enterRule(localContext, 724, MySqlParser.RULE_fileSizeLiteral); try { - this.state = 7060; + this.state = 7073; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FILESIZE_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7058; + this.state = 7071; this.match(MySqlParser.FILESIZE_LITERAL); } break; @@ -42521,7 +42630,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 7059; + this.state = 7072; this.decimalLiteral(); } break; @@ -42545,46 +42654,46 @@ export class MySqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 716, MySqlParser.RULE_stringLiteral); + this.enterRule(localContext, 726, MySqlParser.RULE_stringLiteral); let _la: number; try { let alternative: number; - this.state = 7085; + this.state = 7098; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7067; + this.state = 7080; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7063; + this.state = 7076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7062; + this.state = 7075; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7065; + this.state = 7078; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7066; + this.state = 7079; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7070; + this.state = 7083; this.errorHandler.sync(this); alternative = 1; do { @@ -42592,7 +42701,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 7069; + this.state = 7082; this.match(MySqlParser.STRING_LITERAL); } } @@ -42600,52 +42709,52 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7072; + this.state = 7085; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1022, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7079; + this.state = 7092; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7075; + this.state = 7088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7074; + this.state = 7087; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7077; + this.state = 7090; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7078; + this.state = 7091; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7083; + this.state = 7096; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { case 1: { - this.state = 7081; + this.state = 7094; this.match(MySqlParser.KW_COLLATE); - this.state = 7082; + this.state = 7095; this.collationName(); } break; @@ -42670,12 +42779,12 @@ export class MySqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 718, MySqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 728, MySqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7087; + this.state = 7100; _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179)) { this.errorHandler.recoverInline(this); @@ -42702,22 +42811,22 @@ export class MySqlParser extends SQLParserBase { } public hexadecimalLiteral(): HexadecimalLiteralContext { let localContext = new HexadecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 720, MySqlParser.RULE_hexadecimalLiteral); + this.enterRule(localContext, 730, MySqlParser.RULE_hexadecimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7090; + this.state = 7103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7089; + this.state = 7102; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7092; + this.state = 7105; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } @@ -42737,22 +42846,22 @@ export class MySqlParser extends SQLParserBase { } public nullNotnull(): NullNotnullContext { let localContext = new NullNotnullContext(this.context, this.state); - this.enterRule(localContext, 722, MySqlParser.RULE_nullNotnull); + this.enterRule(localContext, 732, MySqlParser.RULE_nullNotnull); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7095; + this.state = 7108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7094; + this.state = 7107; this.match(MySqlParser.KW_NOT); } } - this.state = 7097; + this.state = 7110; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { this.errorHandler.recoverInline(this); @@ -42779,77 +42888,77 @@ export class MySqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 724, MySqlParser.RULE_constant); + this.enterRule(localContext, 734, MySqlParser.RULE_constant); let _la: number; try { - this.state = 7111; + this.state = 7124; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1030, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7099; + this.state = 7112; this.stringLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7100; + this.state = 7113; this.decimalLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7101; + this.state = 7114; this.match(MySqlParser.MINUS); - this.state = 7102; + this.state = 7115; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7103; + this.state = 7116; this.hexadecimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7104; + this.state = 7117; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7105; + this.state = 7118; this.match(MySqlParser.REAL_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7106; + this.state = 7119; this.match(MySqlParser.BIT_STRING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7108; + this.state = 7121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7107; + this.state = 7120; this.match(MySqlParser.KW_NOT); } } - this.state = 7110; + this.state = 7123; localContext._nullLiteral = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { @@ -42879,18 +42988,18 @@ export class MySqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 726, MySqlParser.RULE_dataType); + this.enterRule(localContext, 736, MySqlParser.RULE_dataType); let _la: number; try { let alternative: number; - this.state = 7239; + this.state = 7252; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: localContext = new StringDataTypeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7113; + this.state = 7126; (localContext as StringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 31239) !== 0) || _la === 498)) { @@ -42900,62 +43009,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7115; + this.state = 7128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 7114; + this.state = 7127; this.match(MySqlParser.KW_VARYING); } } - this.state = 7118; + this.state = 7131; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { case 1: { - this.state = 7117; + this.state = 7130; this.lengthOneDimension(); } break; } - this.state = 7121; + this.state = 7134; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { case 1: { - this.state = 7120; + this.state = 7133; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7126; + this.state = 7139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context) ) { case 1: { - this.state = 7123; + this.state = 7136; this.charSet(); - this.state = 7124; + this.state = 7137; this.charsetName(); } break; } - this.state = 7131; + this.state = 7144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { case 1: { - this.state = 7128; + this.state = 7141; this.match(MySqlParser.KW_COLLATE); - this.state = 7129; + this.state = 7142; this.collationName(); } break; case 2: { - this.state = 7130; + this.state = 7143; this.match(MySqlParser.KW_BINARY); } break; @@ -42966,9 +43075,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalVaryingStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7133; + this.state = 7146; this.match(MySqlParser.KW_NATIONAL); - this.state = 7134; + this.state = 7147; (localContext as NationalVaryingStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224)) { @@ -42978,24 +43087,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7135; + this.state = 7148; this.match(MySqlParser.KW_VARYING); - this.state = 7137; + this.state = 7150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { case 1: { - this.state = 7136; + this.state = 7149; this.lengthOneDimension(); } break; } - this.state = 7140; + this.state = 7153; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { case 1: { - this.state = 7139; + this.state = 7152; this.match(MySqlParser.KW_BINARY); } break; @@ -43006,9 +43115,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7142; + this.state = 7155; this.match(MySqlParser.KW_NATIONAL); - this.state = 7143; + this.state = 7156; (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224 || _la === 225)) { @@ -43018,22 +43127,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7145; + this.state = 7158; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7144; + this.state = 7157; this.lengthOneDimension(); } break; } - this.state = 7148; + this.state = 7161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { case 1: { - this.state = 7147; + this.state = 7160; this.match(MySqlParser.KW_BINARY); } break; @@ -43044,26 +43153,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7150; + this.state = 7163; this.match(MySqlParser.KW_NCHAR); - this.state = 7151; + this.state = 7164; (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.KW_VARCHAR); - this.state = 7153; + this.state = 7166; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: { - this.state = 7152; + this.state = 7165; this.lengthOneDimension(); } break; } - this.state = 7156; + this.state = 7169; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: { - this.state = 7155; + this.state = 7168; this.match(MySqlParser.KW_BINARY); } break; @@ -43074,7 +43183,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7158; + this.state = 7171; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4095) !== 0))) { @@ -43084,24 +43193,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7160; + this.state = 7173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { case 1: { - this.state = 7159; + this.state = 7172; this.lengthOneDimension(); } break; } - this.state = 7165; + this.state = 7178; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7162; + this.state = 7175; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43113,9 +43222,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7167; + this.state = 7180; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context); } } break; @@ -43123,26 +43232,26 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7168; + this.state = 7181; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_REAL); - this.state = 7170; + this.state = 7183; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7169; + this.state = 7182; this.lengthTwoDimension(); } break; } - this.state = 7175; + this.state = 7188; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7172; + this.state = 7185; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43154,9 +43263,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7177; + this.state = 7190; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context); } } break; @@ -43164,36 +43273,36 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7178; + this.state = 7191; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_DOUBLE); - this.state = 7180; + this.state = 7193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 212) { { - this.state = 7179; + this.state = 7192; this.match(MySqlParser.KW_PRECISION); } } - this.state = 7183; + this.state = 7196; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 7182; + this.state = 7195; this.lengthTwoDimension(); } break; } - this.state = 7188; + this.state = 7201; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7185; + this.state = 7198; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43205,9 +43314,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7190; + this.state = 7203; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context); } } break; @@ -43215,7 +43324,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7191; + this.state = 7204; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 213)) & ~0x1F) === 0 && ((1 << (_la - 213)) & 63) !== 0) || _la === 403)) { @@ -43225,24 +43334,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7193; + this.state = 7206; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 7192; + this.state = 7205; this.lengthTwoOptionalDimension(); } break; } - this.state = 7198; + this.state = 7211; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7195; + this.state = 7208; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43254,9 +43363,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7200; + this.state = 7213; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context); } } break; @@ -43264,7 +43373,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleDataTypeContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7201; + this.state = 7214; (localContext as SimpleDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 4237313) !== 0) || _la === 321 || _la === 322)) { @@ -43280,7 +43389,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7202; + this.state = 7215; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 2831) !== 0) || _la === 319)) { @@ -43290,12 +43399,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7204; + this.state = 7217; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: { - this.state = 7203; + this.state = 7216; this.lengthOneDimension(); } break; @@ -43306,7 +43415,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CollectionDataTypeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7206; + this.state = 7219; (localContext as CollectionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 239)) { @@ -43316,26 +43425,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7207; + this.state = 7220; this.collectionOptions(); - this.state = 7209; + this.state = 7222; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7208; + this.state = 7221; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7214; + this.state = 7227; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: { - this.state = 7211; + this.state = 7224; this.charSet(); - this.state = 7212; + this.state = 7225; this.charsetName(); } break; @@ -43346,7 +43455,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SpatialDataTypeContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7216; + this.state = 7229; (localContext as SpatialDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 442 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 511) !== 0))) { @@ -43356,14 +43465,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7219; + this.state = 7232; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { case 1: { - this.state = 7217; + this.state = 7230; this.match(MySqlParser.KW_SRID); - this.state = 7218; + this.state = 7231; this.decimalLiteral(); } break; @@ -43374,48 +43483,48 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarcharDataTypeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7221; + this.state = 7234; (localContext as LongVarcharDataTypeContext)._typeName = this.match(MySqlParser.KW_LONG); - this.state = 7223; + this.state = 7236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 7222; + this.state = 7235; this.match(MySqlParser.KW_VARCHAR); } } - this.state = 7226; + this.state = 7239; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { case 1: { - this.state = 7225; + this.state = 7238; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7231; + this.state = 7244; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { case 1: { - this.state = 7228; + this.state = 7241; this.charSet(); - this.state = 7229; + this.state = 7242; this.charsetName(); } break; } - this.state = 7235; + this.state = 7248; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: { - this.state = 7233; + this.state = 7246; this.match(MySqlParser.KW_COLLATE); - this.state = 7234; + this.state = 7247; this.collationName(); } break; @@ -43426,9 +43535,9 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarbinaryDataTypeContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7237; + this.state = 7250; this.match(MySqlParser.KW_LONG); - this.state = 7238; + this.state = 7251; this.match(MySqlParser.KW_VARBINARY); } break; @@ -43450,32 +43559,32 @@ export class MySqlParser extends SQLParserBase { } public collectionOptions(): CollectionOptionsContext { let localContext = new CollectionOptionsContext(this.context, this.state); - this.enterRule(localContext, 728, MySqlParser.RULE_collectionOptions); + this.enterRule(localContext, 738, MySqlParser.RULE_collectionOptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7241; + this.state = 7254; this.match(MySqlParser.LR_BRACKET); - this.state = 7242; + this.state = 7255; this.match(MySqlParser.STRING_LITERAL); - this.state = 7247; + this.state = 7260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7243; + this.state = 7256; this.match(MySqlParser.COMMA); - this.state = 7244; + this.state = 7257; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7249; + this.state = 7262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7250; + this.state = 7263; this.match(MySqlParser.RR_BRACKET); } } @@ -43495,18 +43604,18 @@ export class MySqlParser extends SQLParserBase { } public convertedDataType(): ConvertedDataTypeContext { let localContext = new ConvertedDataTypeContext(this.context, this.state); - this.enterRule(localContext, 730, MySqlParser.RULE_convertedDataType); + this.enterRule(localContext, 740, MySqlParser.RULE_convertedDataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7274; + this.state = 7287; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: case MySqlParser.KW_NCHAR: { - this.state = 7252; + this.state = 7265; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 498)) { @@ -43516,12 +43625,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7254; + this.state = 7267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7253; + this.state = 7266; this.lengthOneDimension(); } } @@ -43530,26 +43639,26 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_CHAR: { - this.state = 7256; + this.state = 7269; localContext._typeName = this.match(MySqlParser.KW_CHAR); - this.state = 7258; + this.state = 7271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7257; + this.state = 7270; this.lengthOneDimension(); } } - this.state = 7263; + this.state = 7276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7260; + this.state = 7273; this.charSet(); - this.state = 7261; + this.state = 7274; this.charsetName(); } } @@ -43563,7 +43672,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DATETIME: case MySqlParser.KW_JSON: { - this.state = 7265; + this.state = 7278; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 1441857) !== 0) || _la === 442)) { @@ -43578,7 +43687,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DECIMAL: case MySqlParser.KW_DEC: { - this.state = 7266; + this.state = 7279; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 216 || _la === 217)) { @@ -43588,12 +43697,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7268; + this.state = 7281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7267; + this.state = 7280; this.lengthTwoOptionalDimension(); } } @@ -43603,7 +43712,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_UNSIGNED: case MySqlParser.KW_SIGNED: { - this.state = 7270; + this.state = 7283; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43612,12 +43721,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7272; + this.state = 7285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 208) { { - this.state = 7271; + this.state = 7284; _la = this.tokenStream.LA(1); if(!(_la === 202 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -43634,12 +43743,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7277; + this.state = 7290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 7276; + this.state = 7289; this.match(MySqlParser.KW_ARRAY); } } @@ -43662,15 +43771,15 @@ export class MySqlParser extends SQLParserBase { } public lengthOneDimension(): LengthOneDimensionContext { let localContext = new LengthOneDimensionContext(this.context, this.state); - this.enterRule(localContext, 732, MySqlParser.RULE_lengthOneDimension); + this.enterRule(localContext, 742, MySqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7279; + this.state = 7292; this.match(MySqlParser.LR_BRACKET); - this.state = 7280; + this.state = 7293; this.decimalLiteral(); - this.state = 7281; + this.state = 7294; this.match(MySqlParser.RR_BRACKET); } } @@ -43690,19 +43799,19 @@ export class MySqlParser extends SQLParserBase { } public lengthTwoDimension(): LengthTwoDimensionContext { let localContext = new LengthTwoDimensionContext(this.context, this.state); - this.enterRule(localContext, 734, MySqlParser.RULE_lengthTwoDimension); + this.enterRule(localContext, 744, MySqlParser.RULE_lengthTwoDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7283; + this.state = 7296; this.match(MySqlParser.LR_BRACKET); - this.state = 7284; + this.state = 7297; this.decimalLiteral(); - this.state = 7285; + this.state = 7298; this.match(MySqlParser.COMMA); - this.state = 7286; + this.state = 7299; this.decimalLiteral(); - this.state = 7287; + this.state = 7300; this.match(MySqlParser.RR_BRACKET); } } @@ -43722,28 +43831,28 @@ export class MySqlParser extends SQLParserBase { } public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localContext = new LengthTwoOptionalDimensionContext(this.context, this.state); - this.enterRule(localContext, 736, MySqlParser.RULE_lengthTwoOptionalDimension); + this.enterRule(localContext, 746, MySqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7289; + this.state = 7302; this.match(MySqlParser.LR_BRACKET); - this.state = 7290; + this.state = 7303; this.decimalLiteral(); - this.state = 7293; + this.state = 7306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7291; + this.state = 7304; this.match(MySqlParser.COMMA); - this.state = 7292; + this.state = 7305; this.decimalLiteral(); } } - this.state = 7295; + this.state = 7308; this.match(MySqlParser.RR_BRACKET); } } @@ -43763,32 +43872,32 @@ export class MySqlParser extends SQLParserBase { } public indexColumnNames(): IndexColumnNamesContext { let localContext = new IndexColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 738, MySqlParser.RULE_indexColumnNames); + this.enterRule(localContext, 748, MySqlParser.RULE_indexColumnNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7297; + this.state = 7310; this.match(MySqlParser.LR_BRACKET); - this.state = 7298; + this.state = 7311; this.indexColumnName(); - this.state = 7303; + this.state = 7316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7299; + this.state = 7312; this.match(MySqlParser.COMMA); - this.state = 7300; + this.state = 7313; this.indexColumnName(); } } - this.state = 7305; + this.state = 7318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7306; + this.state = 7319; this.match(MySqlParser.RR_BRACKET); } } @@ -43808,26 +43917,26 @@ export class MySqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 740, MySqlParser.RULE_expressions); + this.enterRule(localContext, 750, MySqlParser.RULE_expressions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7308; + this.state = 7321; this.expression(0); - this.state = 7313; + this.state = 7326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7309; + this.state = 7322; this.match(MySqlParser.COMMA); - this.state = 7310; + this.state = 7323; this.expression(0); } } - this.state = 7315; + this.state = 7328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43849,12 +43958,12 @@ export class MySqlParser extends SQLParserBase { } public valuesOrValueList(): ValuesOrValueListContext { let localContext = new ValuesOrValueListContext(this.context, this.state); - this.enterRule(localContext, 742, MySqlParser.RULE_valuesOrValueList); + this.enterRule(localContext, 752, MySqlParser.RULE_valuesOrValueList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7316; + this.state = 7329; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 682)) { this.errorHandler.recoverInline(this); @@ -43863,21 +43972,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7317; + this.state = 7330; this.expressionsWithDefaults(); - this.state = 7322; + this.state = 7335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7318; + this.state = 7331; this.match(MySqlParser.COMMA); - this.state = 7319; + this.state = 7332; this.expressionsWithDefaults(); } } - this.state = 7324; + this.state = 7337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43899,32 +44008,32 @@ export class MySqlParser extends SQLParserBase { } public expressionsWithDefaults(): ExpressionsWithDefaultsContext { let localContext = new ExpressionsWithDefaultsContext(this.context, this.state); - this.enterRule(localContext, 744, MySqlParser.RULE_expressionsWithDefaults); + this.enterRule(localContext, 754, MySqlParser.RULE_expressionsWithDefaults); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7325; + this.state = 7338; this.match(MySqlParser.LR_BRACKET); - this.state = 7326; + this.state = 7339; this.expressionOrDefault(); - this.state = 7331; + this.state = 7344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7327; + this.state = 7340; this.match(MySqlParser.COMMA); - this.state = 7328; + this.state = 7341; this.expressionOrDefault(); } } - this.state = 7333; + this.state = 7346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7334; + this.state = 7347; this.match(MySqlParser.RR_BRACKET); } } @@ -43944,22 +44053,22 @@ export class MySqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 746, MySqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 756, MySqlParser.RULE_expressionOrDefault); try { - this.state = 7338; + this.state = 7351; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7336; + this.state = 7349; this.expression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7337; + this.state = 7350; this.match(MySqlParser.KW_DEFAULT); } break; @@ -43981,26 +44090,26 @@ export class MySqlParser extends SQLParserBase { } public constants(): ConstantsContext { let localContext = new ConstantsContext(this.context, this.state); - this.enterRule(localContext, 748, MySqlParser.RULE_constants); + this.enterRule(localContext, 758, MySqlParser.RULE_constants); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7340; + this.state = 7353; this.constant(); - this.state = 7345; + this.state = 7358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7341; + this.state = 7354; this.match(MySqlParser.COMMA); - this.state = 7342; + this.state = 7355; this.constant(); } } - this.state = 7347; + this.state = 7360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44022,26 +44131,26 @@ export class MySqlParser extends SQLParserBase { } public simpleStrings(): SimpleStringsContext { let localContext = new SimpleStringsContext(this.context, this.state); - this.enterRule(localContext, 750, MySqlParser.RULE_simpleStrings); + this.enterRule(localContext, 760, MySqlParser.RULE_simpleStrings); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7348; + this.state = 7361; this.match(MySqlParser.STRING_LITERAL); - this.state = 7353; + this.state = 7366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7349; + this.state = 7362; this.match(MySqlParser.COMMA); - this.state = 7350; + this.state = 7363; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7355; + this.state = 7368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44063,26 +44172,26 @@ export class MySqlParser extends SQLParserBase { } public userVariables(): UserVariablesContext { let localContext = new UserVariablesContext(this.context, this.state); - this.enterRule(localContext, 752, MySqlParser.RULE_userVariables); + this.enterRule(localContext, 762, MySqlParser.RULE_userVariables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7356; + this.state = 7369; this.match(MySqlParser.LOCAL_ID); - this.state = 7361; + this.state = 7374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7357; + this.state = 7370; this.match(MySqlParser.COMMA); - this.state = 7358; + this.state = 7371; this.match(MySqlParser.LOCAL_ID); } } - this.state = 7363; + this.state = 7376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44104,67 +44213,67 @@ export class MySqlParser extends SQLParserBase { } public defaultValue(): DefaultValueContext { let localContext = new DefaultValueContext(this.context, this.state); - this.enterRule(localContext, 754, MySqlParser.RULE_defaultValue); + this.enterRule(localContext, 764, MySqlParser.RULE_defaultValue); try { - this.state = 7390; + this.state = 7403; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1080, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1079, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7364; + this.state = 7377; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7365; + this.state = 7378; this.match(MySqlParser.KW_CAST); - this.state = 7366; + this.state = 7379; this.match(MySqlParser.LR_BRACKET); - this.state = 7367; + this.state = 7380; this.expression(0); - this.state = 7368; + this.state = 7381; this.match(MySqlParser.KW_AS); - this.state = 7369; + this.state = 7382; this.convertedDataType(); - this.state = 7370; + this.state = 7383; this.match(MySqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7373; + this.state = 7386; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1077, this.context) ) { case 1: { - this.state = 7372; + this.state = 7385; this.unaryOperator(); } break; } - this.state = 7375; + this.state = 7388; this.constant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7376; + this.state = 7389; this.currentTimestamp(); - this.state = 7380; + this.state = 7393; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1079, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { case 1: { - this.state = 7377; + this.state = 7390; this.match(MySqlParser.KW_ON); - this.state = 7378; + this.state = 7391; this.match(MySqlParser.KW_UPDATE); - this.state = 7379; + this.state = 7392; this.currentTimestamp(); } break; @@ -44174,22 +44283,22 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7382; + this.state = 7395; this.match(MySqlParser.LR_BRACKET); - this.state = 7383; + this.state = 7396; this.expression(0); - this.state = 7384; + this.state = 7397; this.match(MySqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7386; + this.state = 7399; this.match(MySqlParser.LR_BRACKET); - this.state = 7387; + this.state = 7400; this.fullId(); - this.state = 7388; + this.state = 7401; this.match(MySqlParser.RR_BRACKET); } break; @@ -44211,19 +44320,19 @@ export class MySqlParser extends SQLParserBase { } public currentTimestamp(): CurrentTimestampContext { let localContext = new CurrentTimestampContext(this.context, this.state); - this.enterRule(localContext, 756, MySqlParser.RULE_currentTimestamp); + this.enterRule(localContext, 766, MySqlParser.RULE_currentTimestamp); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7406; + this.state = 7419; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CURRENT_TIMESTAMP: case MySqlParser.KW_LOCALTIME: case MySqlParser.KW_LOCALTIMESTAMP: { - this.state = 7392; + this.state = 7405; _la = this.tokenStream.LA(1); if(!(((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131) !== 0))) { this.errorHandler.recoverInline(this); @@ -44232,24 +44341,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7398; + this.state = 7411; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1082, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1081, this.context) ) { case 1: { - this.state = 7393; + this.state = 7406; this.match(MySqlParser.LR_BRACKET); - this.state = 7395; + this.state = 7408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7394; + this.state = 7407; this.decimalLiteral(); } } - this.state = 7397; + this.state = 7410; this.match(MySqlParser.RR_BRACKET); } break; @@ -44258,21 +44367,21 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_NOW: { - this.state = 7400; + this.state = 7413; this.match(MySqlParser.KW_NOW); - this.state = 7401; + this.state = 7414; this.match(MySqlParser.LR_BRACKET); - this.state = 7403; + this.state = 7416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7402; + this.state = 7415; this.decimalLiteral(); } } - this.state = 7405; + this.state = 7418; this.match(MySqlParser.RR_BRACKET); } break; @@ -44297,13 +44406,13 @@ export class MySqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 758, MySqlParser.RULE_ifExists); + this.enterRule(localContext, 768, MySqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7408; + this.state = 7421; this.match(MySqlParser.KW_IF); - this.state = 7409; + this.state = 7422; this.match(MySqlParser.KW_EXISTS); } } @@ -44323,15 +44432,15 @@ export class MySqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 760, MySqlParser.RULE_ifNotExists); + this.enterRule(localContext, 770, MySqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7411; + this.state = 7424; this.match(MySqlParser.KW_IF); - this.state = 7412; + this.state = 7425; this.match(MySqlParser.KW_NOT); - this.state = 7413; + this.state = 7426; this.match(MySqlParser.KW_EXISTS); } } @@ -44351,13 +44460,13 @@ export class MySqlParser extends SQLParserBase { } public orReplace(): OrReplaceContext { let localContext = new OrReplaceContext(this.context, this.state); - this.enterRule(localContext, 762, MySqlParser.RULE_orReplace); + this.enterRule(localContext, 772, MySqlParser.RULE_orReplace); try { this.enterOuterAlt(localContext, 1); { - this.state = 7415; + this.state = 7428; this.match(MySqlParser.KW_OR); - this.state = 7416; + this.state = 7429; this.match(MySqlParser.KW_REPLACE); } } @@ -44377,16 +44486,16 @@ export class MySqlParser extends SQLParserBase { } public functionCall(): FunctionCallContext { let localContext = new FunctionCallContext(this.context, this.state); - this.enterRule(localContext, 764, MySqlParser.RULE_functionCall); + this.enterRule(localContext, 774, MySqlParser.RULE_functionCall); try { - this.state = 7440; + this.state = 7453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: localContext = new SpecificFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7418; + this.state = 7431; this.specificFunction(); } break; @@ -44394,7 +44503,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7419; + this.state = 7432; this.aggregateWindowedFunction(); } break; @@ -44402,7 +44511,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NonAggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7420; + this.state = 7433; this.nonAggregateWindowedFunction(); } break; @@ -44410,26 +44519,26 @@ export class MySqlParser extends SQLParserBase { localContext = new ScalarFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7421; + this.state = 7434; this.scalarFunctionName(); - this.state = 7428; + this.state = 7441; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: { - this.state = 7422; + this.state = 7435; this.match(MySqlParser.LR_BRACKET); - this.state = 7423; + this.state = 7436; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7424; + this.state = 7437; this.match(MySqlParser.LR_BRACKET); - this.state = 7425; + this.state = 7438; this.functionArgs(); - this.state = 7426; + this.state = 7439; this.match(MySqlParser.RR_BRACKET); } break; @@ -44440,26 +44549,26 @@ export class MySqlParser extends SQLParserBase { localContext = new UdfFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7430; + this.state = 7443; this.functionName(); - this.state = 7437; + this.state = 7450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { case 1: { - this.state = 7431; + this.state = 7444; this.match(MySqlParser.LR_BRACKET); - this.state = 7432; + this.state = 7445; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7433; + this.state = 7446; this.match(MySqlParser.LR_BRACKET); - this.state = 7434; + this.state = 7447; this.functionArgs(); - this.state = 7435; + this.state = 7448; this.match(MySqlParser.RR_BRACKET); } break; @@ -44470,7 +44579,7 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7439; + this.state = 7452; this.passwordFunctionClause(); } break; @@ -44492,17 +44601,17 @@ export class MySqlParser extends SQLParserBase { } public specificFunction(): SpecificFunctionContext { let localContext = new SpecificFunctionContext(this.context, this.state); - this.enterRule(localContext, 766, MySqlParser.RULE_specificFunction); + this.enterRule(localContext, 776, MySqlParser.RULE_specificFunction); let _la: number; try { - this.state = 7621; + this.state = 7634; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: localContext = new SimpleFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7442; + this.state = 7455; _la = this.tokenStream.LA(1); if(!(_la === 152 || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 262159) !== 0))) { this.errorHandler.recoverInline(this); @@ -44511,14 +44620,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7445; + this.state = 7458; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { case 1: { - this.state = 7443; + this.state = 7456; this.match(MySqlParser.LR_BRACKET); - this.state = 7444; + this.state = 7457; this.match(MySqlParser.RR_BRACKET); } break; @@ -44529,7 +44638,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7447; + this.state = 7460; this.currentUserExpression(); } break; @@ -44537,17 +44646,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7448; + this.state = 7461; this.match(MySqlParser.KW_CONVERT); - this.state = 7449; + this.state = 7462; this.match(MySqlParser.LR_BRACKET); - this.state = 7450; + this.state = 7463; this.expression(0); - this.state = 7451; + this.state = 7464; (localContext as DataTypeFunctionCallContext)._separator = this.match(MySqlParser.COMMA); - this.state = 7452; + this.state = 7465; this.convertedDataType(); - this.state = 7453; + this.state = 7466; this.match(MySqlParser.RR_BRACKET); } break; @@ -44555,17 +44664,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7455; + this.state = 7468; this.match(MySqlParser.KW_CONVERT); - this.state = 7456; + this.state = 7469; this.match(MySqlParser.LR_BRACKET); - this.state = 7457; + this.state = 7470; this.expression(0); - this.state = 7458; + this.state = 7471; this.match(MySqlParser.KW_USING); - this.state = 7459; + this.state = 7472; this.charsetName(); - this.state = 7460; + this.state = 7473; this.match(MySqlParser.RR_BRACKET); } break; @@ -44573,17 +44682,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7462; + this.state = 7475; this.match(MySqlParser.KW_CAST); - this.state = 7463; + this.state = 7476; this.match(MySqlParser.LR_BRACKET); - this.state = 7464; + this.state = 7477; this.expression(0); - this.state = 7465; + this.state = 7478; this.match(MySqlParser.KW_AS); - this.state = 7466; + this.state = 7479; this.convertedDataType(); - this.state = 7467; + this.state = 7480; this.match(MySqlParser.RR_BRACKET); } break; @@ -44591,13 +44700,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ValuesFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7469; + this.state = 7482; this.match(MySqlParser.KW_VALUES); - this.state = 7470; + this.state = 7483; this.match(MySqlParser.LR_BRACKET); - this.state = 7471; + this.state = 7484; this.columnName(); - this.state = 7472; + this.state = 7485; this.match(MySqlParser.RR_BRACKET); } break; @@ -44605,35 +44714,35 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseFunctionCallContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7474; + this.state = 7487; this.match(MySqlParser.KW_CASE); - this.state = 7476; + this.state = 7489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7475; + this.state = 7488; this.caseFuncAlternative(); } } - this.state = 7478; + this.state = 7491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7482; + this.state = 7495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7480; + this.state = 7493; this.match(MySqlParser.KW_ELSE); - this.state = 7481; + this.state = 7494; (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7484; + this.state = 7497; this.match(MySqlParser.KW_END); } break; @@ -44641,37 +44750,37 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseExpressionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7486; + this.state = 7499; this.match(MySqlParser.KW_CASE); - this.state = 7487; + this.state = 7500; this.expression(0); - this.state = 7489; + this.state = 7502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7488; + this.state = 7501; this.caseFuncAlternative(); } } - this.state = 7491; + this.state = 7504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7495; + this.state = 7508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7493; + this.state = 7506; this.match(MySqlParser.KW_ELSE); - this.state = 7494; + this.state = 7507; (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7497; + this.state = 7510; this.match(MySqlParser.KW_END); } break; @@ -44679,25 +44788,25 @@ export class MySqlParser extends SQLParserBase { localContext = new CharFunctionCallContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7499; + this.state = 7512; this.match(MySqlParser.KW_CHAR); - this.state = 7500; + this.state = 7513; this.match(MySqlParser.LR_BRACKET); - this.state = 7501; + this.state = 7514; this.functionArgs(); - this.state = 7504; + this.state = 7517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 7502; + this.state = 7515; this.match(MySqlParser.KW_USING); - this.state = 7503; + this.state = 7516; this.charsetName(); } } - this.state = 7506; + this.state = 7519; this.match(MySqlParser.RR_BRACKET); } break; @@ -44705,45 +44814,45 @@ export class MySqlParser extends SQLParserBase { localContext = new PositionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7508; + this.state = 7521; this.match(MySqlParser.KW_POSITION); - this.state = 7509; + this.state = 7522; this.match(MySqlParser.LR_BRACKET); - this.state = 7512; + this.state = 7525; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { case 1: { - this.state = 7510; + this.state = 7523; (localContext as PositionFunctionCallContext)._positionString = this.stringLiteral(); } break; case 2: { - this.state = 7511; + this.state = 7524; (localContext as PositionFunctionCallContext)._positionExpression = this.expression(0); } break; } - this.state = 7514; + this.state = 7527; this.match(MySqlParser.KW_IN); - this.state = 7517; + this.state = 7530; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { case 1: { - this.state = 7515; + this.state = 7528; (localContext as PositionFunctionCallContext)._inString = this.stringLiteral(); } break; case 2: { - this.state = 7516; + this.state = 7529; (localContext as PositionFunctionCallContext)._inExpression = this.expression(0); } break; } - this.state = 7519; + this.state = 7532; this.match(MySqlParser.RR_BRACKET); } break; @@ -44751,7 +44860,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SubstrFunctionCallContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7521; + this.state = 7534; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -44760,61 +44869,61 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7522; + this.state = 7535; this.match(MySqlParser.LR_BRACKET); - this.state = 7525; + this.state = 7538; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { case 1: { - this.state = 7523; + this.state = 7536; (localContext as SubstrFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7524; + this.state = 7537; (localContext as SubstrFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7527; + this.state = 7540; this.match(MySqlParser.KW_FROM); - this.state = 7530; + this.state = 7543; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { case 1: { - this.state = 7528; + this.state = 7541; (localContext as SubstrFunctionCallContext)._fromDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7529; + this.state = 7542; (localContext as SubstrFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7537; + this.state = 7550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 7532; + this.state = 7545; this.match(MySqlParser.KW_FOR); - this.state = 7535; + this.state = 7548; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { case 1: { - this.state = 7533; + this.state = 7546; (localContext as SubstrFunctionCallContext)._forDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7534; + this.state = 7547; (localContext as SubstrFunctionCallContext)._forExpression = this.expression(0); } break; @@ -44822,7 +44931,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 7539; + this.state = 7552; this.match(MySqlParser.RR_BRACKET); } break; @@ -44830,11 +44939,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7541; + this.state = 7554; this.match(MySqlParser.KW_TRIM); - this.state = 7542; + this.state = 7555; this.match(MySqlParser.LR_BRACKET); - this.state = 7543; + this.state = 7556; (localContext as TrimFunctionCallContext)._positioinForm = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 96 || _la === 177)) { @@ -44844,41 +44953,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7546; + this.state = 7559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context) ) { case 1: { - this.state = 7544; + this.state = 7557; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7545; + this.state = 7558; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7548; + this.state = 7561; this.match(MySqlParser.KW_FROM); - this.state = 7551; + this.state = 7564; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { case 1: { - this.state = 7549; + this.state = 7562; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7550; + this.state = 7563; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7553; + this.state = 7566; this.match(MySqlParser.RR_BRACKET); } break; @@ -44886,45 +44995,45 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7555; + this.state = 7568; this.match(MySqlParser.KW_TRIM); - this.state = 7556; + this.state = 7569; this.match(MySqlParser.LR_BRACKET); - this.state = 7559; + this.state = 7572; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context) ) { case 1: { - this.state = 7557; + this.state = 7570; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7558; + this.state = 7571; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7561; + this.state = 7574; this.match(MySqlParser.KW_FROM); - this.state = 7564; + this.state = 7577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { case 1: { - this.state = 7562; + this.state = 7575; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7563; + this.state = 7576; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7566; + this.state = 7579; this.match(MySqlParser.RR_BRACKET); } break; @@ -44932,34 +45041,34 @@ export class MySqlParser extends SQLParserBase { localContext = new WeightFunctionCallContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7568; + this.state = 7581; this.match(MySqlParser.KW_WEIGHT_STRING); - this.state = 7569; + this.state = 7582; this.match(MySqlParser.LR_BRACKET); - this.state = 7572; + this.state = 7585; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { case 1: { - this.state = 7570; + this.state = 7583; this.stringLiteral(); } break; case 2: { - this.state = 7571; + this.state = 7584; this.expression(0); } break; } - this.state = 7580; + this.state = 7593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 7574; + this.state = 7587; this.match(MySqlParser.KW_AS); - this.state = 7575; + this.state = 7588; (localContext as WeightFunctionCallContext)._stringFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 224 || _la === 228)) { @@ -44969,26 +45078,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7576; + this.state = 7589; this.match(MySqlParser.LR_BRACKET); - this.state = 7577; + this.state = 7590; this.decimalLiteral(); - this.state = 7578; + this.state = 7591; this.match(MySqlParser.RR_BRACKET); } } - this.state = 7583; + this.state = 7596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 448) { { - this.state = 7582; + this.state = 7595; this.levelsInWeightString(); } } - this.state = 7585; + this.state = 7598; this.match(MySqlParser.RR_BRACKET); } break; @@ -44996,31 +45105,31 @@ export class MySqlParser extends SQLParserBase { localContext = new ExtractFunctionCallContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 7587; + this.state = 7600; this.match(MySqlParser.KW_EXTRACT); - this.state = 7588; + this.state = 7601; this.match(MySqlParser.LR_BRACKET); - this.state = 7589; + this.state = 7602; this.intervalType(); - this.state = 7590; + this.state = 7603; this.match(MySqlParser.KW_FROM); - this.state = 7593; + this.state = 7606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 7591; + this.state = 7604; (localContext as ExtractFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7592; + this.state = 7605; (localContext as ExtractFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7595; + this.state = 7608; this.match(MySqlParser.RR_BRACKET); } break; @@ -45028,11 +45137,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GetFormatFunctionCallContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 7597; + this.state = 7610; this.match(MySqlParser.KW_GET_FORMAT); - this.state = 7598; + this.state = 7611; this.match(MySqlParser.LR_BRACKET); - this.state = 7599; + this.state = 7612; (localContext as GetFormatFunctionCallContext)._datetimeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 11) !== 0))) { @@ -45042,11 +45151,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7600; + this.state = 7613; this.match(MySqlParser.COMMA); - this.state = 7601; + this.state = 7614; this.stringLiteral(); - this.state = 7602; + this.state = 7615; this.match(MySqlParser.RR_BRACKET); } break; @@ -45054,49 +45163,49 @@ export class MySqlParser extends SQLParserBase { localContext = new JsonValueFunctionCallContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 7604; + this.state = 7617; this.match(MySqlParser.KW_JSON_VALUE); - this.state = 7605; + this.state = 7618; this.match(MySqlParser.LR_BRACKET); - this.state = 7606; + this.state = 7619; this.expression(0); - this.state = 7607; + this.state = 7620; this.match(MySqlParser.COMMA); - this.state = 7608; + this.state = 7621; this.expression(0); - this.state = 7611; + this.state = 7624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 579) { { - this.state = 7609; + this.state = 7622; this.match(MySqlParser.KW_RETURNING); - this.state = 7610; + this.state = 7623; this.convertedDataType(); } } - this.state = 7614; + this.state = 7627; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 7613; + this.state = 7626; this.jsonOnEmpty(); } break; } - this.state = 7617; + this.state = 7630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 7616; + this.state = 7629; this.jsonOnError(); } } - this.state = 7619; + this.state = 7632; this.match(MySqlParser.RR_BRACKET); } break; @@ -45118,17 +45227,17 @@ export class MySqlParser extends SQLParserBase { } public caseFuncAlternative(): CaseFuncAlternativeContext { let localContext = new CaseFuncAlternativeContext(this.context, this.state); - this.enterRule(localContext, 768, MySqlParser.RULE_caseFuncAlternative); + this.enterRule(localContext, 778, MySqlParser.RULE_caseFuncAlternative); try { this.enterOuterAlt(localContext, 1); { - this.state = 7623; + this.state = 7636; this.match(MySqlParser.KW_WHEN); - this.state = 7624; + this.state = 7637; localContext._condition = this.functionArg(); - this.state = 7625; + this.state = 7638; this.match(MySqlParser.KW_THEN); - this.state = 7626; + this.state = 7639; localContext._consequent = this.functionArg(); } } @@ -45148,33 +45257,33 @@ export class MySqlParser extends SQLParserBase { } public levelsInWeightString(): LevelsInWeightStringContext { let localContext = new LevelsInWeightStringContext(this.context, this.state); - this.enterRule(localContext, 770, MySqlParser.RULE_levelsInWeightString); + this.enterRule(localContext, 780, MySqlParser.RULE_levelsInWeightString); let _la: number; try { - this.state = 7642; + this.state = 7655; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { case 1: localContext = new LevelWeightListContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7628; + this.state = 7641; this.match(MySqlParser.KW_LEVEL); - this.state = 7629; + this.state = 7642; this.levelInWeightListElement(); - this.state = 7634; + this.state = 7647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7630; + this.state = 7643; this.match(MySqlParser.COMMA); - this.state = 7631; + this.state = 7644; this.levelInWeightListElement(); } } - this.state = 7636; + this.state = 7649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -45184,13 +45293,13 @@ export class MySqlParser extends SQLParserBase { localContext = new LevelWeightRangeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7637; + this.state = 7650; this.match(MySqlParser.KW_LEVEL); - this.state = 7638; + this.state = 7651; (localContext as LevelWeightRangeContext)._firstLevel = this.decimalLiteral(); - this.state = 7639; + this.state = 7652; this.match(MySqlParser.MINUS); - this.state = 7640; + this.state = 7653; (localContext as LevelWeightRangeContext)._lastLevel = this.decimalLiteral(); } break; @@ -45212,19 +45321,19 @@ export class MySqlParser extends SQLParserBase { } public levelInWeightListElement(): LevelInWeightListElementContext { let localContext = new LevelInWeightListElementContext(this.context, this.state); - this.enterRule(localContext, 772, MySqlParser.RULE_levelInWeightListElement); + this.enterRule(localContext, 782, MySqlParser.RULE_levelInWeightListElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7644; + this.state = 7657; this.decimalLiteral(); - this.state = 7646; + this.state = 7659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || _la === 45 || _la === 830) { { - this.state = 7645; + this.state = 7658; localContext._orderType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45 || _la === 830)) { @@ -45255,10 +45364,10 @@ export class MySqlParser extends SQLParserBase { } public aggregateWindowedFunction(): AggregateWindowedFunctionContext { let localContext = new AggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 774, MySqlParser.RULE_aggregateWindowedFunction); + this.enterRule(localContext, 784, MySqlParser.RULE_aggregateWindowedFunction); let _la: number; try { - this.state = 7707; + this.state = 7720; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AVG: @@ -45267,7 +45376,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUM: this.enterOuterAlt(localContext, 1); { - this.state = 7648; + this.state = 7661; _la = this.tokenStream.LA(1); if(!(((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 8400897) !== 0))) { this.errorHandler.recoverInline(this); @@ -45276,14 +45385,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7649; + this.state = 7662; this.match(MySqlParser.LR_BRACKET); - this.state = 7651; + this.state = 7664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 7650; + this.state = 7663; localContext._aggregator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -45296,16 +45405,16 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 7653; + this.state = 7666; this.functionArg(); - this.state = 7654; + this.state = 7667; this.match(MySqlParser.RR_BRACKET); - this.state = 7656; + this.state = 7669; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { case 1: { - this.state = 7655; + this.state = 7668; this.overClause(); } break; @@ -45315,52 +45424,52 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_COUNT: this.enterOuterAlt(localContext, 2); { - this.state = 7658; + this.state = 7671; this.match(MySqlParser.KW_COUNT); - this.state = 7659; + this.state = 7672; this.match(MySqlParser.LR_BRACKET); - this.state = 7667; + this.state = 7680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { case 1: { - this.state = 7660; + this.state = 7673; localContext._starArg = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 7662; + this.state = 7675; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 7661; + this.state = 7674; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7664; + this.state = 7677; this.functionArg(); } break; case 3: { - this.state = 7665; + this.state = 7678; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); - this.state = 7666; + this.state = 7679; this.functionArgs(); } break; } - this.state = 7669; + this.state = 7682; this.match(MySqlParser.RR_BRACKET); - this.state = 7671; + this.state = 7684; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { case 1: { - this.state = 7670; + this.state = 7683; this.overClause(); } break; @@ -45379,7 +45488,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIANCE: this.enterOuterAlt(localContext, 3); { - this.state = 7673; + this.state = 7686; _la = this.tokenStream.LA(1); if(!(((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 62652423) !== 0))) { this.errorHandler.recoverInline(this); @@ -45388,28 +45497,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7674; + this.state = 7687; this.match(MySqlParser.LR_BRACKET); - this.state = 7676; + this.state = 7689; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 7675; + this.state = 7688; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7678; + this.state = 7691; this.functionArg(); - this.state = 7679; + this.state = 7692; this.match(MySqlParser.RR_BRACKET); - this.state = 7681; + this.state = 7694; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { case 1: { - this.state = 7680; + this.state = 7693; this.overClause(); } break; @@ -45419,65 +45528,65 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_GROUP_CONCAT: this.enterOuterAlt(localContext, 4); { - this.state = 7683; + this.state = 7696; this.match(MySqlParser.KW_GROUP_CONCAT); - this.state = 7684; + this.state = 7697; this.match(MySqlParser.LR_BRACKET); - this.state = 7686; + this.state = 7699; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { case 1: { - this.state = 7685; + this.state = 7698; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); } break; } - this.state = 7688; + this.state = 7701; this.functionArgs(); - this.state = 7699; + this.state = 7712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7689; + this.state = 7702; this.match(MySqlParser.KW_ORDER); - this.state = 7690; + this.state = 7703; this.match(MySqlParser.KW_BY); - this.state = 7691; + this.state = 7704; this.orderByExpression(); - this.state = 7696; + this.state = 7709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7692; + this.state = 7705; this.match(MySqlParser.COMMA); - this.state = 7693; + this.state = 7706; this.orderByExpression(); } } - this.state = 7698; + this.state = 7711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 7703; + this.state = 7716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 156) { { - this.state = 7701; + this.state = 7714; this.match(MySqlParser.KW_SEPARATOR); - this.state = 7702; + this.state = 7715; localContext._separator = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7705; + this.state = 7718; this.match(MySqlParser.RR_BRACKET); } break; @@ -45501,17 +45610,17 @@ export class MySqlParser extends SQLParserBase { } public nonAggregateWindowedFunction(): NonAggregateWindowedFunctionContext { let localContext = new NonAggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 776, MySqlParser.RULE_nonAggregateWindowedFunction); + this.enterRule(localContext, 786, MySqlParser.RULE_nonAggregateWindowedFunction); let _la: number; try { - this.state = 7747; + this.state = 7760; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LAG: case MySqlParser.KW_LEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7709; + this.state = 7722; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 269)) { this.errorHandler.recoverInline(this); @@ -45520,37 +45629,37 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7710; + this.state = 7723; this.match(MySqlParser.LR_BRACKET); - this.state = 7711; + this.state = 7724; this.expression(0); - this.state = 7714; + this.state = 7727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { case 1: { - this.state = 7712; + this.state = 7725; this.match(MySqlParser.COMMA); - this.state = 7713; + this.state = 7726; this.decimalLiteral(); } break; } - this.state = 7718; + this.state = 7731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7716; + this.state = 7729; this.match(MySqlParser.COMMA); - this.state = 7717; + this.state = 7730; this.decimalLiteral(); } } - this.state = 7720; + this.state = 7733; this.match(MySqlParser.RR_BRACKET); - this.state = 7721; + this.state = 7734; this.overClause(); } break; @@ -45558,7 +45667,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LAST_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 7723; + this.state = 7736; _la = this.tokenStream.LA(1); if(!(_la === 265 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -45567,13 +45676,13 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7724; + this.state = 7737; this.match(MySqlParser.LR_BRACKET); - this.state = 7725; + this.state = 7738; this.expression(0); - this.state = 7726; + this.state = 7739; this.match(MySqlParser.RR_BRACKET); - this.state = 7727; + this.state = 7740; this.overClause(); } break; @@ -45584,7 +45693,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ROW_NUMBER: this.enterOuterAlt(localContext, 3); { - this.state = 7729; + this.state = 7742; _la = this.tokenStream.LA(1); if(!(((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 14339) !== 0))) { this.errorHandler.recoverInline(this); @@ -45593,45 +45702,45 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7730; + this.state = 7743; this.match(MySqlParser.LR_BRACKET); - this.state = 7731; + this.state = 7744; this.match(MySqlParser.RR_BRACKET); - this.state = 7732; + this.state = 7745; this.overClause(); } break; case MySqlParser.KW_NTH_VALUE: this.enterOuterAlt(localContext, 4); { - this.state = 7733; + this.state = 7746; this.match(MySqlParser.KW_NTH_VALUE); - this.state = 7734; + this.state = 7747; this.match(MySqlParser.LR_BRACKET); - this.state = 7735; + this.state = 7748; this.expression(0); - this.state = 7736; + this.state = 7749; this.match(MySqlParser.COMMA); - this.state = 7737; + this.state = 7750; this.decimalLiteral(); - this.state = 7738; + this.state = 7751; this.match(MySqlParser.RR_BRACKET); - this.state = 7739; + this.state = 7752; this.overClause(); } break; case MySqlParser.KW_NTILE: this.enterOuterAlt(localContext, 5); { - this.state = 7741; + this.state = 7754; this.match(MySqlParser.KW_NTILE); - this.state = 7742; + this.state = 7755; this.match(MySqlParser.LR_BRACKET); - this.state = 7743; + this.state = 7756; this.decimalLiteral(); - this.state = 7744; + this.state = 7757; this.match(MySqlParser.RR_BRACKET); - this.state = 7745; + this.state = 7758; this.overClause(); } break; @@ -45655,22 +45764,22 @@ export class MySqlParser extends SQLParserBase { } public overClause(): OverClauseContext { let localContext = new OverClauseContext(this.context, this.state); - this.enterRule(localContext, 778, MySqlParser.RULE_overClause); + this.enterRule(localContext, 788, MySqlParser.RULE_overClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7749; + this.state = 7762; this.match(MySqlParser.KW_OVER); - this.state = 7755; + this.state = 7768; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 7750; + this.state = 7763; this.match(MySqlParser.LR_BRACKET); - this.state = 7751; + this.state = 7764; this.windowSpec(); - this.state = 7752; + this.state = 7765; this.match(MySqlParser.RR_BRACKET); } break; @@ -46224,7 +46333,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 7754; + this.state = 7767; this.windowName(); } break; @@ -46249,47 +46358,47 @@ export class MySqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 780, MySqlParser.RULE_windowSpec); + this.enterRule(localContext, 790, MySqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7758; + this.state = 7771; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { case 1: { - this.state = 7757; + this.state = 7770; this.windowName(); } break; } - this.state = 7761; + this.state = 7774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 7760; + this.state = 7773; this.partitionClause(); } } - this.state = 7764; + this.state = 7777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7763; + this.state = 7776; this.orderByClause(); } } - this.state = 7767; + this.state = 7780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 587) { { - this.state = 7766; + this.state = 7779; this.frameClause(); } } @@ -46312,11 +46421,11 @@ export class MySqlParser extends SQLParserBase { } public windowName(): WindowNameContext { let localContext = new WindowNameContext(this.context, this.state); - this.enterRule(localContext, 782, MySqlParser.RULE_windowName); + this.enterRule(localContext, 792, MySqlParser.RULE_windowName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7769; + this.state = 7782; this.uid(); } } @@ -46336,13 +46445,13 @@ export class MySqlParser extends SQLParserBase { } public frameClause(): FrameClauseContext { let localContext = new FrameClauseContext(this.context, this.state); - this.enterRule(localContext, 784, MySqlParser.RULE_frameClause); + this.enterRule(localContext, 794, MySqlParser.RULE_frameClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7771; + this.state = 7784; this.frameUnits(); - this.state = 7772; + this.state = 7785; this.frameExtent(); } } @@ -46362,12 +46471,12 @@ export class MySqlParser extends SQLParserBase { } public frameUnits(): FrameUnitsContext { let localContext = new FrameUnitsContext(this.context, this.state); - this.enterRule(localContext, 786, MySqlParser.RULE_frameUnits); + this.enterRule(localContext, 796, MySqlParser.RULE_frameUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7774; + this.state = 7787; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 587)) { this.errorHandler.recoverInline(this); @@ -46394,22 +46503,22 @@ export class MySqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 788, MySqlParser.RULE_frameExtent); + this.enterRule(localContext, 798, MySqlParser.RULE_frameExtent); try { - this.state = 7778; + this.state = 7791; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7776; + this.state = 7789; this.frameRange(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7777; + this.state = 7790; this.frameBetween(); } break; @@ -46431,17 +46540,17 @@ export class MySqlParser extends SQLParserBase { } public frameBetween(): FrameBetweenContext { let localContext = new FrameBetweenContext(this.context, this.state); - this.enterRule(localContext, 790, MySqlParser.RULE_frameBetween); + this.enterRule(localContext, 800, MySqlParser.RULE_frameBetween); try { this.enterOuterAlt(localContext, 1); { - this.state = 7780; + this.state = 7793; this.match(MySqlParser.KW_BETWEEN); - this.state = 7781; + this.state = 7794; this.frameRange(); - this.state = 7782; + this.state = 7795; this.match(MySqlParser.KW_AND); - this.state = 7783; + this.state = 7796; this.frameRange(); } } @@ -46461,27 +46570,27 @@ export class MySqlParser extends SQLParserBase { } public frameRange(): FrameRangeContext { let localContext = new FrameRangeContext(this.context, this.state); - this.enterRule(localContext, 792, MySqlParser.RULE_frameRange); + this.enterRule(localContext, 802, MySqlParser.RULE_frameRange); let _la: number; try { - this.state = 7792; + this.state = 7805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7785; + this.state = 7798; this.match(MySqlParser.KW_CURRENT); - this.state = 7786; + this.state = 7799; this.match(MySqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7787; + this.state = 7800; this.match(MySqlParser.KW_UNBOUNDED); - this.state = 7788; + this.state = 7801; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46495,9 +46604,9 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7789; + this.state = 7802; this.expression(0); - this.state = 7790; + this.state = 7803; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46526,30 +46635,30 @@ export class MySqlParser extends SQLParserBase { } public partitionClause(): PartitionClauseContext { let localContext = new PartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 794, MySqlParser.RULE_partitionClause); + this.enterRule(localContext, 804, MySqlParser.RULE_partitionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7794; + this.state = 7807; this.match(MySqlParser.KW_PARTITION); - this.state = 7795; + this.state = 7808; this.match(MySqlParser.KW_BY); - this.state = 7796; + this.state = 7809; this.expression(0); - this.state = 7801; + this.state = 7814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7797; + this.state = 7810; this.match(MySqlParser.COMMA); - this.state = 7798; + this.state = 7811; this.expression(0); } } - this.state = 7803; + this.state = 7816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46571,9 +46680,9 @@ export class MySqlParser extends SQLParserBase { } public scalarFunctionName(): ScalarFunctionNameContext { let localContext = new ScalarFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 796, MySqlParser.RULE_scalarFunctionName); + this.enterRule(localContext, 806, MySqlParser.RULE_scalarFunctionName); try { - this.state = 7828; + this.state = 7841; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DATABASE: @@ -46630,168 +46739,168 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: this.enterOuterAlt(localContext, 1); { - this.state = 7804; + this.state = 7817; this.functionNameBase(); } break; case MySqlParser.KW_ASCII: this.enterOuterAlt(localContext, 2); { - this.state = 7805; + this.state = 7818; this.match(MySqlParser.KW_ASCII); } break; case MySqlParser.KW_CURDATE: this.enterOuterAlt(localContext, 3); { - this.state = 7806; + this.state = 7819; this.match(MySqlParser.KW_CURDATE); } break; case MySqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 4); { - this.state = 7807; + this.state = 7820; this.match(MySqlParser.KW_CURRENT_DATE); } break; case MySqlParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 5); { - this.state = 7808; + this.state = 7821; this.match(MySqlParser.KW_CURRENT_TIME); } break; case MySqlParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 7809; + this.state = 7822; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case MySqlParser.KW_CURTIME: this.enterOuterAlt(localContext, 7); { - this.state = 7810; + this.state = 7823; this.match(MySqlParser.KW_CURTIME); } break; case MySqlParser.KW_DATE_ADD: this.enterOuterAlt(localContext, 8); { - this.state = 7811; + this.state = 7824; this.match(MySqlParser.KW_DATE_ADD); } break; case MySqlParser.KW_DATE_SUB: this.enterOuterAlt(localContext, 9); { - this.state = 7812; + this.state = 7825; this.match(MySqlParser.KW_DATE_SUB); } break; case MySqlParser.KW_IF: this.enterOuterAlt(localContext, 10); { - this.state = 7813; + this.state = 7826; this.match(MySqlParser.KW_IF); } break; case MySqlParser.KW_INSERT: this.enterOuterAlt(localContext, 11); { - this.state = 7814; + this.state = 7827; this.match(MySqlParser.KW_INSERT); } break; case MySqlParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 12); { - this.state = 7815; + this.state = 7828; this.match(MySqlParser.KW_LOCALTIME); } break; case MySqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 13); { - this.state = 7816; + this.state = 7829; this.match(MySqlParser.KW_LOCALTIMESTAMP); } break; case MySqlParser.KW_MID: this.enterOuterAlt(localContext, 14); { - this.state = 7817; + this.state = 7830; this.match(MySqlParser.KW_MID); } break; case MySqlParser.KW_NOW: this.enterOuterAlt(localContext, 15); { - this.state = 7818; + this.state = 7831; this.match(MySqlParser.KW_NOW); } break; case MySqlParser.KW_REPEAT: this.enterOuterAlt(localContext, 16); { - this.state = 7819; + this.state = 7832; this.match(MySqlParser.KW_REPEAT); } break; case MySqlParser.KW_REPLACE: this.enterOuterAlt(localContext, 17); { - this.state = 7820; + this.state = 7833; this.match(MySqlParser.KW_REPLACE); } break; case MySqlParser.KW_SUBSTR: this.enterOuterAlt(localContext, 18); { - this.state = 7821; + this.state = 7834; this.match(MySqlParser.KW_SUBSTR); } break; case MySqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 19); { - this.state = 7822; + this.state = 7835; this.match(MySqlParser.KW_SUBSTRING); } break; case MySqlParser.KW_SYSDATE: this.enterOuterAlt(localContext, 20); { - this.state = 7823; + this.state = 7836; this.match(MySqlParser.KW_SYSDATE); } break; case MySqlParser.KW_TRIM: this.enterOuterAlt(localContext, 21); { - this.state = 7824; + this.state = 7837; this.match(MySqlParser.KW_TRIM); } break; case MySqlParser.KW_UTC_DATE: this.enterOuterAlt(localContext, 22); { - this.state = 7825; + this.state = 7838; this.match(MySqlParser.KW_UTC_DATE); } break; case MySqlParser.KW_UTC_TIME: this.enterOuterAlt(localContext, 23); { - this.state = 7826; + this.state = 7839; this.match(MySqlParser.KW_UTC_TIME); } break; case MySqlParser.KW_UTC_TIMESTAMP: this.enterOuterAlt(localContext, 24); { - this.state = 7827; + this.state = 7840; this.match(MySqlParser.KW_UTC_TIMESTAMP); } break; @@ -46815,12 +46924,12 @@ export class MySqlParser extends SQLParserBase { } public passwordFunctionClause(): PasswordFunctionClauseContext { let localContext = new PasswordFunctionClauseContext(this.context, this.state); - this.enterRule(localContext, 798, MySqlParser.RULE_passwordFunctionClause); + this.enterRule(localContext, 808, MySqlParser.RULE_passwordFunctionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7830; + this.state = 7843; _la = this.tokenStream.LA(1); if(!(_la === 512 || _la === 529)) { this.errorHandler.recoverInline(this); @@ -46829,11 +46938,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7831; + this.state = 7844; this.match(MySqlParser.LR_BRACKET); - this.state = 7832; + this.state = 7845; this.functionArg(); - this.state = 7833; + this.state = 7846; this.match(MySqlParser.RR_BRACKET); } } @@ -46853,26 +46962,26 @@ export class MySqlParser extends SQLParserBase { } public functionArgs(): FunctionArgsContext { let localContext = new FunctionArgsContext(this.context, this.state); - this.enterRule(localContext, 800, MySqlParser.RULE_functionArgs); + this.enterRule(localContext, 810, MySqlParser.RULE_functionArgs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7835; + this.state = 7848; this.functionArg(); - this.state = 7840; + this.state = 7853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7836; + this.state = 7849; this.match(MySqlParser.COMMA); - this.state = 7837; + this.state = 7850; this.functionArg(); } } - this.state = 7842; + this.state = 7855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46894,29 +47003,29 @@ export class MySqlParser extends SQLParserBase { } public functionArg(): FunctionArgContext { let localContext = new FunctionArgContext(this.context, this.state); - this.enterRule(localContext, 802, MySqlParser.RULE_functionArg); + this.enterRule(localContext, 812, MySqlParser.RULE_functionArg); try { - this.state = 7846; + this.state = 7859; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7843; + this.state = 7856; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7844; + this.state = 7857; this.functionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7845; + this.state = 7858; this.expression(0); } break; @@ -46948,23 +47057,23 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 804; - this.enterRecursionRule(localContext, 804, MySqlParser.RULE_expression, _p); + let _startState = 814; + this.enterRecursionRule(localContext, 814, MySqlParser.RULE_expression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7859; + this.state = 7872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { localContext = new NotExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7849; + this.state = 7862; (localContext as NotExpressionContext)._notOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 860)) { @@ -46974,7 +47083,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7850; + this.state = 7863; this.expression(4); } break; @@ -46983,21 +47092,21 @@ export class MySqlParser extends SQLParserBase { localContext = new IsExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7851; + this.state = 7864; this.predicate(0); - this.state = 7852; + this.state = 7865; this.match(MySqlParser.KW_IS); - this.state = 7854; + this.state = 7867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7853; + this.state = 7866; this.match(MySqlParser.KW_NOT); } } - this.state = 7856; + this.state = 7869; (localContext as IsExpressionContext)._testValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179 || _la === 674)) { @@ -47014,15 +47123,15 @@ export class MySqlParser extends SQLParserBase { localContext = new PredicateExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7858; + this.state = 7871; this.predicate(0); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7867; + this.state = 7880; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47033,20 +47142,20 @@ export class MySqlParser extends SQLParserBase { { localContext = new LogicalExpressionContext(new ExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expression); - this.state = 7861; + this.state = 7874; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7862; + this.state = 7875; this.logicalOperator(); - this.state = 7863; + this.state = 7876; this.expression(4); } } } - this.state = 7869; + this.state = 7882; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context); } } } @@ -47076,8 +47185,8 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PredicateContext(this.context, parentState); let previousContext = localContext; - let _startState = 806; - this.enterRecursionRule(localContext, 806, MySqlParser.RULE_predicate, _p); + let _startState = 816; + this.enterRecursionRule(localContext, 816, MySqlParser.RULE_predicate, _p); let _la: number; try { let alternative: number; @@ -47088,13 +47197,13 @@ export class MySqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 7871; + this.state = 7884; this.expressionAtom(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7936; + this.state = 7949; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47102,34 +47211,34 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7934; + this.state = 7947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { case 1: { localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7873; + this.state = 7886; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7875; + this.state = 7888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7874; + this.state = 7887; this.match(MySqlParser.KW_NOT); } } - this.state = 7877; + this.state = 7890; this.match(MySqlParser.KW_BETWEEN); - this.state = 7878; + this.state = 7891; this.predicate(0); - this.state = 7879; + this.state = 7892; this.match(MySqlParser.KW_AND); - this.state = 7880; + this.state = 7893; this.predicate(7); } break; @@ -47137,15 +47246,15 @@ export class MySqlParser extends SQLParserBase { { localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7882; + this.state = 7895; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 7883; + this.state = 7896; this.match(MySqlParser.KW_SOUNDS); - this.state = 7884; + this.state = 7897; this.match(MySqlParser.KW_LIKE); - this.state = 7885; + this.state = 7898; this.predicate(6); } break; @@ -47153,21 +47262,21 @@ export class MySqlParser extends SQLParserBase { { localContext = new RegexpPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7886; + this.state = 7899; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7888; + this.state = 7901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7887; + this.state = 7900; this.match(MySqlParser.KW_NOT); } } - this.state = 7890; + this.state = 7903; (localContext as RegexpPredicateContext)._regex = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 151)) { @@ -47177,7 +47286,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7891; + this.state = 7904; this.predicate(4); } break; @@ -47185,41 +47294,41 @@ export class MySqlParser extends SQLParserBase { { localContext = new InPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7892; + this.state = 7905; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 7894; + this.state = 7907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7893; + this.state = 7906; this.match(MySqlParser.KW_NOT); } } - this.state = 7896; + this.state = 7909; this.match(MySqlParser.KW_IN); - this.state = 7897; + this.state = 7910; this.match(MySqlParser.LR_BRACKET); - this.state = 7900; + this.state = 7913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 7898; + this.state = 7911; this.selectStatement(); } break; case 2: { - this.state = 7899; + this.state = 7912; this.expressions(); } break; } - this.state = 7902; + this.state = 7915; this.match(MySqlParser.RR_BRACKET); } break; @@ -47227,13 +47336,13 @@ export class MySqlParser extends SQLParserBase { { localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7904; + this.state = 7917; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 7905; + this.state = 7918; this.match(MySqlParser.KW_IS); - this.state = 7906; + this.state = 7919; this.nullNotnull(); } break; @@ -47241,18 +47350,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7907; + this.state = 7920; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 7908; + this.state = 7921; this.comparisonOperator(); - this.state = 7915; + this.state = 7928; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { case 1: { - this.state = 7909; + this.state = 7922; (localContext as BinaryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 309 || _la === 602)) { @@ -47262,17 +47371,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7910; + this.state = 7923; this.match(MySqlParser.LR_BRACKET); - this.state = 7911; + this.state = 7924; (localContext as BinaryComparisonPredicateContext)._subQuery = this.selectStatement(); - this.state = 7912; + this.state = 7925; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7914; + this.state = 7927; (localContext as BinaryComparisonPredicateContext)._right = this.predicate(0); } break; @@ -47283,32 +47392,32 @@ export class MySqlParser extends SQLParserBase { { localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7917; + this.state = 7930; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7919; + this.state = 7932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7918; + this.state = 7931; this.match(MySqlParser.KW_NOT); } } - this.state = 7921; + this.state = 7934; this.match(MySqlParser.KW_LIKE); - this.state = 7922; + this.state = 7935; this.predicate(0); - this.state = 7925; + this.state = 7938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { case 1: { - this.state = 7923; + this.state = 7936; this.match(MySqlParser.KW_ESCAPE); - this.state = 7924; + this.state = 7937; this.match(MySqlParser.STRING_LITERAL); } break; @@ -47319,28 +47428,28 @@ export class MySqlParser extends SQLParserBase { { localContext = new JsonMemberOfPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7927; + this.state = 7940; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7928; + this.state = 7941; this.match(MySqlParser.KW_MEMBER); - this.state = 7929; + this.state = 7942; this.match(MySqlParser.KW_OF); - this.state = 7930; + this.state = 7943; this.match(MySqlParser.LR_BRACKET); - this.state = 7931; + this.state = 7944; this.predicate(0); - this.state = 7932; + this.state = 7945; this.match(MySqlParser.RR_BRACKET); } break; } } } - this.state = 7938; + this.state = 7951; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context); } } } @@ -47370,23 +47479,23 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ExpressionAtomContext(this.context, parentState); let previousContext = localContext; - let _startState = 808; - this.enterRecursionRule(localContext, 808, MySqlParser.RULE_expressionAtom, _p); + let _startState = 818; + this.enterRecursionRule(localContext, 818, MySqlParser.RULE_expressionAtom, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7987; + this.state = 8000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1154, this.context) ) { case 1: { localContext = new ConstantExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7940; + this.state = 7953; this.constant(); } break; @@ -47395,7 +47504,7 @@ export class MySqlParser extends SQLParserBase { localContext = new FunctionCallExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7941; + this.state = 7954; this.functionCall(); } break; @@ -47404,7 +47513,7 @@ export class MySqlParser extends SQLParserBase { localContext = new MysqlVariableExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7942; + this.state = 7955; this.mysqlVariable(); } break; @@ -47413,9 +47522,9 @@ export class MySqlParser extends SQLParserBase { localContext = new UnaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7943; + this.state = 7956; this.unaryOperator(); - this.state = 7944; + this.state = 7957; this.expressionAtom(12); } break; @@ -47424,9 +47533,9 @@ export class MySqlParser extends SQLParserBase { localContext = new BinaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7946; + this.state = 7959; this.match(MySqlParser.KW_BINARY); - this.state = 7947; + this.state = 7960; this.expressionAtom(11); } break; @@ -47435,11 +47544,11 @@ export class MySqlParser extends SQLParserBase { localContext = new VariableAssignExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7948; + this.state = 7961; this.match(MySqlParser.LOCAL_ID); - this.state = 7949; + this.state = 7962; this.match(MySqlParser.VAR_ASSIGN); - this.state = 7950; + this.state = 7963; this.expressionAtom(10); } break; @@ -47448,27 +47557,27 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7951; + this.state = 7964; this.match(MySqlParser.LR_BRACKET); - this.state = 7952; + this.state = 7965; this.expression(0); - this.state = 7957; + this.state = 7970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7953; + this.state = 7966; this.match(MySqlParser.COMMA); - this.state = 7954; + this.state = 7967; this.expression(0); } } - this.state = 7959; + this.state = 7972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7960; + this.state = 7973; this.match(MySqlParser.RR_BRACKET); } break; @@ -47477,29 +47586,29 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedRowExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7962; + this.state = 7975; this.match(MySqlParser.KW_ROW); - this.state = 7963; + this.state = 7976; this.match(MySqlParser.LR_BRACKET); - this.state = 7964; + this.state = 7977; this.expression(0); - this.state = 7967; + this.state = 7980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7965; + this.state = 7978; this.match(MySqlParser.COMMA); - this.state = 7966; + this.state = 7979; this.expression(0); } } - this.state = 7969; + this.state = 7982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 7971; + this.state = 7984; this.match(MySqlParser.RR_BRACKET); } break; @@ -47508,13 +47617,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ExistsExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7973; + this.state = 7986; this.match(MySqlParser.KW_EXISTS); - this.state = 7974; + this.state = 7987; this.match(MySqlParser.LR_BRACKET); - this.state = 7975; + this.state = 7988; this.selectStatement(); - this.state = 7976; + this.state = 7989; this.match(MySqlParser.RR_BRACKET); } break; @@ -47523,11 +47632,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7978; + this.state = 7991; this.match(MySqlParser.LR_BRACKET); - this.state = 7979; + this.state = 7992; this.selectStatement(); - this.state = 7980; + this.state = 7993; this.match(MySqlParser.RR_BRACKET); } break; @@ -47536,11 +47645,11 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7982; + this.state = 7995; this.match(MySqlParser.KW_INTERVAL); - this.state = 7983; + this.state = 7996; this.expression(0); - this.state = 7984; + this.state = 7997; this.intervalType(); } break; @@ -47549,15 +47658,15 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnNameExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7986; + this.state = 7999; this.columnName(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 8006; + this.state = 8019; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47565,21 +47674,21 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 8004; + this.state = 8017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { case 1: { localContext = new JsonExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as JsonExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7989; + this.state = 8002; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7990; + this.state = 8003; this.jsonOperator(); - this.state = 7991; + this.state = 8004; (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(5); } break; @@ -47588,13 +47697,13 @@ export class MySqlParser extends SQLParserBase { localContext = new BitExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as BitExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7993; + this.state = 8006; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7994; + this.state = 8007; this.bitOperator(); - this.state = 7995; + this.state = 8008; (localContext as BitExpressionAtomContext)._right = this.expressionAtom(4); } break; @@ -47603,13 +47712,13 @@ export class MySqlParser extends SQLParserBase { localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as MathExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 7997; + this.state = 8010; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7998; + this.state = 8011; this.mathOperator(); - this.state = 7999; + this.state = 8012; (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); } break; @@ -47617,22 +47726,22 @@ export class MySqlParser extends SQLParserBase { { localContext = new CollateExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8001; + this.state = 8014; if (!(this.precpred(this.context, 14))) { throw this.createFailedPredicateException("this.precpred(this.context, 14)"); } - this.state = 8002; + this.state = 8015; this.match(MySqlParser.KW_COLLATE); - this.state = 8003; + this.state = 8016; this.collationName(); } break; } } } - this.state = 8008; + this.state = 8021; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context); } } } @@ -47652,12 +47761,12 @@ export class MySqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 810, MySqlParser.RULE_unaryOperator); + this.enterRule(localContext, 820, MySqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8009; + this.state = 8022; _la = this.tokenStream.LA(1); if(!(_la === 114 || ((((_la - 853)) & ~0x1F) === 0 && ((1 << (_la - 853)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -47684,44 +47793,44 @@ export class MySqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 812, MySqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 822, MySqlParser.RULE_comparisonOperator); try { - this.state = 8019; + this.state = 8032; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8011; + this.state = 8024; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8012; + this.state = 8025; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8013; + this.state = 8026; this.match(MySqlParser.EXCLAMATION_SYMBOL); - this.state = 8014; + this.state = 8027; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8015; + this.state = 8028; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8016; + this.state = 8029; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 8017; + this.state = 8030; this.match(MySqlParser.GREATER_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8018; + this.state = 8031; this.comparisonBase(); } break; @@ -47743,47 +47852,47 @@ export class MySqlParser extends SQLParserBase { } public comparisonBase(): ComparisonBaseContext { let localContext = new ComparisonBaseContext(this.context, this.state); - this.enterRule(localContext, 814, MySqlParser.RULE_comparisonBase); + this.enterRule(localContext, 824, MySqlParser.RULE_comparisonBase); try { - this.state = 8028; + this.state = 8041; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8021; + this.state = 8034; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8022; + this.state = 8035; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8023; + this.state = 8036; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8024; + this.state = 8037; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8025; + this.state = 8038; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8026; + this.state = 8039; this.match(MySqlParser.GREATER_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8027; + this.state = 8040; this.match(MySqlParser.LESS_SYMBOL); } break; @@ -47805,47 +47914,47 @@ export class MySqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 816, MySqlParser.RULE_logicalOperator); + this.enterRule(localContext, 826, MySqlParser.RULE_logicalOperator); try { - this.state = 8037; + this.state = 8050; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 8030; + this.state = 8043; this.match(MySqlParser.KW_AND); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 8031; + this.state = 8044; this.match(MySqlParser.BIT_AND_OP); - this.state = 8032; + this.state = 8045; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.KW_XOR: this.enterOuterAlt(localContext, 3); { - this.state = 8033; + this.state = 8046; this.match(MySqlParser.KW_XOR); } break; case MySqlParser.KW_OR: this.enterOuterAlt(localContext, 4); { - this.state = 8034; + this.state = 8047; this.match(MySqlParser.KW_OR); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8035; + this.state = 8048; this.match(MySqlParser.BIT_OR_OP); - this.state = 8036; + this.state = 8049; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47869,47 +47978,47 @@ export class MySqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 818, MySqlParser.RULE_bitOperator); + this.enterRule(localContext, 828, MySqlParser.RULE_bitOperator); try { - this.state = 8046; + this.state = 8059; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 8039; + this.state = 8052; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8040; + this.state = 8053; this.match(MySqlParser.LESS_SYMBOL); } break; case MySqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 8041; + this.state = 8054; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8042; + this.state = 8055; this.match(MySqlParser.GREATER_SYMBOL); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 8043; + this.state = 8056; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 8044; + this.state = 8057; this.match(MySqlParser.BIT_XOR_OP); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8045; + this.state = 8058; this.match(MySqlParser.BIT_OR_OP); } break; @@ -47933,12 +48042,12 @@ export class MySqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 820, MySqlParser.RULE_mathOperator); + this.enterRule(localContext, 830, MySqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8048; + this.state = 8061; _la = this.tokenStream.LA(1); if(!(((((_la - 850)) & ~0x1F) === 0 && ((1 << (_la - 850)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -47965,28 +48074,28 @@ export class MySqlParser extends SQLParserBase { } public jsonOperator(): JsonOperatorContext { let localContext = new JsonOperatorContext(this.context, this.state); - this.enterRule(localContext, 822, MySqlParser.RULE_jsonOperator); + this.enterRule(localContext, 832, MySqlParser.RULE_jsonOperator); try { - this.state = 8055; + this.state = 8068; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8050; + this.state = 8063; this.match(MySqlParser.MINUS); - this.state = 8051; + this.state = 8064; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8052; + this.state = 8065; this.match(MySqlParser.MINUS); - this.state = 8053; + this.state = 8066; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8054; + this.state = 8067; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -48008,12 +48117,12 @@ export class MySqlParser extends SQLParserBase { } public charsetNameBase(): CharsetNameBaseContext { let localContext = new CharsetNameBaseContext(this.context, this.state); - this.enterRule(localContext, 824, MySqlParser.RULE_charsetNameBase); + this.enterRule(localContext, 834, MySqlParser.RULE_charsetNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8057; + this.state = 8070; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 756)) & ~0x1F) === 0 && ((1 << (_la - 756)) & 4294967295) !== 0) || ((((_la - 788)) & ~0x1F) === 0 && ((1 << (_la - 788)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -48040,12 +48149,12 @@ export class MySqlParser extends SQLParserBase { } public transactionLevelBase(): TransactionLevelBaseContext { let localContext = new TransactionLevelBaseContext(this.context, this.state); - this.enterRule(localContext, 826, MySqlParser.RULE_transactionLevelBase); + this.enterRule(localContext, 836, MySqlParser.RULE_transactionLevelBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8059; + this.state = 8072; _la = this.tokenStream.LA(1); if(!(((((_la - 809)) & ~0x1F) === 0 && ((1 << (_la - 809)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -48072,12 +48181,12 @@ export class MySqlParser extends SQLParserBase { } public privilegesBase(): PrivilegesBaseContext { let localContext = new PrivilegesBaseContext(this.context, this.state); - this.enterRule(localContext, 828, MySqlParser.RULE_privilegesBase); + this.enterRule(localContext, 838, MySqlParser.RULE_privilegesBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8061; + this.state = 8074; _la = this.tokenStream.LA(1); if(!(((((_la - 717)) & ~0x1F) === 0 && ((1 << (_la - 717)) & 68026371) !== 0) || ((((_la - 749)) & ~0x1F) === 0 && ((1 << (_la - 749)) & 11) !== 0))) { this.errorHandler.recoverInline(this); @@ -48104,12 +48213,12 @@ export class MySqlParser extends SQLParserBase { } public intervalTypeBase(): IntervalTypeBaseContext { let localContext = new IntervalTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 830, MySqlParser.RULE_intervalTypeBase); + this.enterRule(localContext, 840, MySqlParser.RULE_intervalTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8063; + this.state = 8076; _la = this.tokenStream.LA(1); if(!(((((_la - 696)) & ~0x1F) === 0 && ((1 << (_la - 696)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -48136,12 +48245,12 @@ export class MySqlParser extends SQLParserBase { } public dataTypeBase(): DataTypeBaseContext { let localContext = new DataTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 832, MySqlParser.RULE_dataTypeBase); + this.enterRule(localContext, 842, MySqlParser.RULE_dataTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8065; + this.state = 8078; _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1179679) !== 0))) { this.errorHandler.recoverInline(this); @@ -48168,12 +48277,12 @@ export class MySqlParser extends SQLParserBase { } public keywordsCanBeId(): KeywordsCanBeIdContext { let localContext = new KeywordsCanBeIdContext(this.context, this.state); - this.enterRule(localContext, 834, MySqlParser.RULE_keywordsCanBeId); + this.enterRule(localContext, 844, MySqlParser.RULE_keywordsCanBeId); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8067; + this.state = 8080; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014211) !== 0) || _la === 74 || _la === 95 || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 16673) !== 0) || _la === 160 || _la === 170 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1648345089) !== 0) || ((((_la - 277)) & ~0x1F) === 0 && ((1 << (_la - 277)) & 4160749823) !== 0) || ((((_la - 309)) & ~0x1F) === 0 && ((1 << (_la - 309)) & 4292870141) !== 0) || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 4294967287) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 4024434671) !== 0) || ((((_la - 406)) & ~0x1F) === 0 && ((1 << (_la - 406)) & 3747609503) !== 0) || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4227727359) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 3758096239) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 2678062559) !== 0) || ((((_la - 534)) & ~0x1F) === 0 && ((1 << (_la - 534)) & 2682256863) !== 0) || ((((_la - 566)) & ~0x1F) === 0 && ((1 << (_la - 566)) & 4294965887) !== 0) || ((((_la - 598)) & ~0x1F) === 0 && ((1 << (_la - 598)) & 255) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 2128608253) !== 0) || ((((_la - 704)) & ~0x1F) === 0 && ((1 << (_la - 704)) & 1053007341) !== 0) || ((((_la - 737)) & ~0x1F) === 0 && ((1 << (_la - 737)) & 478907) !== 0) || ((((_la - 802)) & ~0x1F) === 0 && ((1 << (_la - 802)) & 3230662657) !== 0) || _la === 838)) { this.errorHandler.recoverInline(this); @@ -48200,12 +48309,12 @@ export class MySqlParser extends SQLParserBase { } public functionNameBase(): FunctionNameBaseContext { let localContext = new FunctionNameBaseContext(this.context, this.state); - this.enterRule(localContext, 836, MySqlParser.RULE_functionNameBase); + this.enterRule(localContext, 846, MySqlParser.RULE_functionNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8069; + this.state = 8082; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 98 || _la === 150 || _la === 152 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 23) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 16375299) !== 0) || _la === 296 || _la === 435 || ((((_la - 686)) & ~0x1F) === 0 && ((1 << (_la - 686)) & 261121) !== 0) || _la === 746 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 145190393) !== 0) || _la === 856)) { this.errorHandler.recoverInline(this); @@ -48237,13 +48346,13 @@ export class MySqlParser extends SQLParserBase { return this.queryExpressionBody_sempred(localContext as QueryExpressionBodyContext, predIndex); case 108: return this.queryItem_sempred(localContext as QueryItemContext, predIndex); - case 331: + case 336: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 402: + case 407: return this.expression_sempred(localContext as ExpressionContext, predIndex); - case 403: + case 408: return this.predicate_sempred(localContext as PredicateContext, predIndex); - case 404: + case 409: return this.expressionAtom_sempred(localContext as ExpressionAtomContext, predIndex); } return true; @@ -48314,7 +48423,7 @@ export class MySqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,895,8072,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,895,8085,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, @@ -48387,3656 +48496,3660 @@ export class MySqlParser extends SQLParserBase { 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,1,0,5,0,840,8,0,10,0,12,0,843,9,0,1,0,1,0,1,1, - 1,1,3,1,849,8,1,1,1,3,1,852,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 861,8,2,1,3,1,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,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,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,1,4,3,4,905,8,4,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 3,5,924,8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,935,8,6,1,7, - 1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,951,8,7, - 1,8,1,8,1,8,3,8,956,8,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9, - 3,9,968,8,9,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,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,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1003,8,10,1, - 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1013,8,11,1,12,1,12,1, - 12,3,12,1018,8,12,1,12,1,12,5,12,1022,8,12,10,12,12,12,1025,9,12, - 1,13,1,13,3,13,1029,8,13,1,13,1,13,3,13,1033,8,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,3,13,1042,8,13,1,13,3,13,1045,8,13,1,13,3,13, - 1048,8,13,1,13,1,13,3,13,1052,8,13,1,13,1,13,1,13,1,14,1,14,3,14, - 1059,8,14,1,14,3,14,1062,8,14,1,14,1,14,1,14,3,14,1067,8,14,1,14, - 1,14,1,14,1,14,5,14,1073,8,14,10,14,12,14,1076,9,14,1,14,1,14,3, - 14,1080,8,14,1,14,1,14,1,14,3,14,1085,8,14,1,14,5,14,1088,8,14,10, - 14,12,14,1091,9,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 3,15,1102,8,15,1,15,3,15,1105,8,15,1,15,1,15,3,15,1109,8,15,1,15, - 3,15,1112,8,15,1,15,1,15,3,15,1116,8,15,1,15,3,15,1119,8,15,1,15, - 1,15,3,15,1123,8,15,1,15,3,15,1126,8,15,1,15,3,15,1129,8,15,1,15, - 1,15,3,15,1133,8,15,1,15,3,15,1136,8,15,1,15,1,15,3,15,1140,8,15, - 1,15,1,15,1,16,1,16,3,16,1146,8,16,1,16,1,16,3,16,1150,8,16,1,16, - 1,16,1,16,3,16,1155,8,16,1,16,1,16,5,16,1159,8,16,10,16,12,16,1162, - 9,16,1,16,1,16,5,16,1166,8,16,10,16,12,16,1169,9,16,1,16,1,16,1, - 17,1,17,3,17,1175,8,17,1,17,3,17,1178,8,17,1,17,1,17,3,17,1182,8, - 17,1,17,1,17,1,17,3,17,1187,8,17,1,17,1,17,5,17,1191,8,17,10,17, - 12,17,1194,9,17,1,17,1,17,1,17,1,17,5,17,1200,8,17,10,17,12,17,1203, - 9,17,1,17,1,17,3,17,1207,8,17,1,18,1,18,3,18,1211,8,18,1,18,1,18, - 3,18,1215,8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,3,19, - 1226,8,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20, - 1,20,1,20,1,20,5,20,1242,8,20,10,20,12,20,1245,9,20,1,20,1,20,1, - 21,1,21,3,21,1251,8,21,1,21,1,21,3,21,1255,8,21,1,21,1,21,3,21,1259, - 8,21,1,21,1,21,3,21,1263,8,21,1,21,5,21,1266,8,21,10,21,12,21,1269, - 9,21,3,21,1271,8,21,1,21,3,21,1274,8,21,1,21,3,21,1277,8,21,1,21, - 3,21,1280,8,21,1,21,1,21,1,21,1,21,3,21,1286,8,21,1,21,1,21,3,21, - 1290,8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1300,8,21, - 1,21,1,21,3,21,1304,8,21,1,21,1,21,3,21,1308,8,21,1,21,1,21,1,21, - 1,21,3,21,1314,8,21,1,21,5,21,1317,8,21,10,21,12,21,1320,9,21,3, - 21,1322,8,21,1,21,3,21,1325,8,21,3,21,1327,8,21,1,22,1,22,3,22,1331, - 8,22,1,22,1,22,1,22,1,22,1,22,3,22,1338,8,22,1,22,1,22,3,22,1342, - 8,22,1,22,3,22,1345,8,22,1,22,1,22,1,22,3,22,1350,8,22,1,22,1,22, - 3,22,1354,8,22,1,22,3,22,1357,8,22,1,22,1,22,3,22,1361,8,22,1,22, - 3,22,1364,8,22,1,23,1,23,3,23,1368,8,23,1,23,1,23,1,23,1,23,1,23, - 1,23,1,23,1,23,1,23,1,23,1,23,3,23,1381,8,23,1,23,3,23,1384,8,23, - 1,23,1,23,3,23,1388,8,23,1,23,3,23,1391,8,23,1,23,1,23,3,23,1395, - 8,23,1,23,3,23,1398,8,23,1,23,1,23,3,23,1402,8,23,1,23,3,23,1405, - 8,23,1,23,1,23,3,23,1409,8,23,1,23,3,23,1412,8,23,1,23,3,23,1415, - 8,23,1,23,1,23,3,23,1419,8,23,1,23,3,23,1422,8,23,1,23,1,23,3,23, - 1426,8,23,1,23,1,23,1,24,1,24,3,24,1432,8,24,1,24,3,24,1435,8,24, - 1,24,1,24,3,24,1439,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, - 1,24,1,24,3,24,1451,8,24,1,24,1,24,1,25,1,25,3,25,1457,8,25,1,25, - 1,25,1,26,1,26,1,26,1,26,1,26,5,26,1466,8,26,10,26,12,26,1469,9, - 26,1,26,1,26,3,26,1473,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1481, - 8,26,1,27,1,27,3,27,1485,8,27,1,27,1,27,1,27,3,27,1490,8,27,1,27, - 3,27,1493,8,27,1,27,1,27,1,27,3,27,1498,8,27,1,27,1,27,1,27,1,27, - 1,27,1,27,5,27,1506,8,27,10,27,12,27,1509,9,27,1,27,1,27,3,27,1513, - 8,27,1,27,1,27,1,27,3,27,1518,8,27,1,27,1,27,1,27,1,27,3,27,1524, - 8,27,1,27,1,27,1,27,3,27,1529,8,27,1,27,1,27,3,27,1533,8,27,3,27, - 1535,8,27,1,28,3,28,1538,8,28,1,28,1,28,3,28,1542,8,28,1,28,1,28, - 3,28,1546,8,28,1,28,3,28,1549,8,28,1,28,1,28,3,28,1553,8,28,1,28, - 1,28,3,28,1557,8,28,1,28,1,28,3,28,1561,8,28,1,28,1,28,1,28,1,28, - 3,28,1567,8,28,1,28,3,28,1570,8,28,1,29,1,29,1,29,1,29,1,29,3,29, - 1577,8,29,1,30,1,30,1,30,3,30,1582,8,30,1,31,1,31,1,31,1,31,3,31, - 1588,8,31,1,32,1,32,1,32,5,32,1593,8,32,10,32,12,32,1596,9,32,1, - 32,1,32,1,32,3,32,1601,8,32,1,32,1,32,1,32,1,32,5,32,1607,8,32,10, - 32,12,32,1610,9,32,3,32,1612,8,32,1,32,1,32,1,32,5,32,1617,8,32, - 10,32,12,32,1620,9,32,3,32,1622,8,32,3,32,1624,8,32,1,33,1,33,1, - 33,1,33,3,33,1630,8,33,1,34,1,34,1,34,1,34,3,34,1636,8,34,1,34,1, + 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,1,0,5,0,850,8,0,10,0,12,0,853,9,0,1,0,1,0,1,1,1,1,3, + 1,859,8,1,1,1,3,1,862,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,871,8, + 2,1,3,1,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,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,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,1,4,3,4,915,8,4,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,934, + 8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,945,8,6,1,7,1,7,1,7, + 1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,961,8,7,1,8,1,8, + 1,8,3,8,966,8,8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,978, + 8,9,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,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,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1013,8,10,1,11,1,11, + 1,11,1,11,1,11,1,11,1,11,1,11,3,11,1023,8,11,1,12,1,12,1,12,3,12, + 1028,8,12,1,12,1,12,5,12,1032,8,12,10,12,12,12,1035,9,12,1,13,1, + 13,3,13,1039,8,13,1,13,1,13,3,13,1043,8,13,1,13,1,13,1,13,1,13,1, + 13,1,13,1,13,3,13,1052,8,13,1,13,3,13,1055,8,13,1,13,3,13,1058,8, + 13,1,13,1,13,3,13,1062,8,13,1,13,1,13,1,13,1,14,1,14,3,14,1069,8, + 14,1,14,3,14,1072,8,14,1,14,1,14,1,14,3,14,1077,8,14,1,14,1,14,1, + 14,1,14,5,14,1083,8,14,10,14,12,14,1086,9,14,1,14,1,14,3,14,1090, + 8,14,1,14,1,14,1,14,3,14,1095,8,14,1,14,5,14,1098,8,14,10,14,12, + 14,1101,9,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,3,15,1112, + 8,15,1,15,3,15,1115,8,15,1,15,1,15,3,15,1119,8,15,1,15,3,15,1122, + 8,15,1,15,1,15,3,15,1126,8,15,1,15,3,15,1129,8,15,1,15,1,15,3,15, + 1133,8,15,1,15,3,15,1136,8,15,1,15,3,15,1139,8,15,1,15,1,15,3,15, + 1143,8,15,1,15,3,15,1146,8,15,1,15,1,15,3,15,1150,8,15,1,15,1,15, + 1,16,1,16,3,16,1156,8,16,1,16,1,16,3,16,1160,8,16,1,16,1,16,1,16, + 3,16,1165,8,16,1,16,1,16,5,16,1169,8,16,10,16,12,16,1172,9,16,1, + 16,1,16,5,16,1176,8,16,10,16,12,16,1179,9,16,1,16,1,16,1,17,1,17, + 3,17,1185,8,17,1,17,3,17,1188,8,17,1,17,1,17,3,17,1192,8,17,1,17, + 1,17,1,17,3,17,1197,8,17,1,17,1,17,5,17,1201,8,17,10,17,12,17,1204, + 9,17,1,17,1,17,1,17,1,17,5,17,1210,8,17,10,17,12,17,1213,9,17,1, + 17,1,17,3,17,1217,8,17,1,18,1,18,3,18,1221,8,18,1,18,1,18,3,18,1225, + 8,18,1,18,1,18,1,18,1,18,1,18,1,18,1,19,1,19,1,19,3,19,1236,8,19, + 1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20, + 1,20,5,20,1252,8,20,10,20,12,20,1255,9,20,1,20,1,20,1,21,1,21,3, + 21,1261,8,21,1,21,1,21,3,21,1265,8,21,1,21,1,21,3,21,1269,8,21,1, + 21,1,21,3,21,1273,8,21,1,21,5,21,1276,8,21,10,21,12,21,1279,9,21, + 3,21,1281,8,21,1,21,3,21,1284,8,21,1,21,3,21,1287,8,21,1,21,3,21, + 1290,8,21,1,21,1,21,1,21,1,21,3,21,1296,8,21,1,21,1,21,3,21,1300, + 8,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1310,8,21,1,21, + 1,21,3,21,1314,8,21,1,21,1,21,3,21,1318,8,21,1,21,1,21,1,21,1,21, + 3,21,1324,8,21,1,21,5,21,1327,8,21,10,21,12,21,1330,9,21,3,21,1332, + 8,21,1,21,3,21,1335,8,21,3,21,1337,8,21,1,22,1,22,3,22,1341,8,22, + 1,22,1,22,1,22,1,22,1,22,3,22,1348,8,22,1,22,1,22,3,22,1352,8,22, + 1,22,3,22,1355,8,22,1,22,1,22,1,22,3,22,1360,8,22,1,22,1,22,3,22, + 1364,8,22,1,22,3,22,1367,8,22,1,22,1,22,3,22,1371,8,22,1,22,3,22, + 1374,8,22,1,23,1,23,3,23,1378,8,23,1,23,1,23,1,23,1,23,1,23,1,23, + 1,23,1,23,1,23,1,23,1,23,3,23,1391,8,23,1,23,3,23,1394,8,23,1,23, + 1,23,3,23,1398,8,23,1,23,3,23,1401,8,23,1,23,1,23,3,23,1405,8,23, + 1,23,3,23,1408,8,23,1,23,1,23,3,23,1412,8,23,1,23,3,23,1415,8,23, + 1,23,1,23,3,23,1419,8,23,1,23,3,23,1422,8,23,1,23,3,23,1425,8,23, + 1,23,1,23,3,23,1429,8,23,1,23,3,23,1432,8,23,1,23,1,23,3,23,1436, + 8,23,1,23,1,23,1,24,1,24,3,24,1442,8,24,1,24,3,24,1445,8,24,1,24, + 1,24,3,24,1449,8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, + 1,24,3,24,1461,8,24,1,24,1,24,1,25,1,25,3,25,1467,8,25,1,25,1,25, + 1,26,1,26,1,26,1,26,1,26,5,26,1476,8,26,10,26,12,26,1479,9,26,1, + 26,1,26,3,26,1483,8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1491,8, + 26,1,27,1,27,3,27,1495,8,27,1,27,1,27,1,27,3,27,1500,8,27,1,27,3, + 27,1503,8,27,1,27,1,27,1,27,3,27,1508,8,27,1,27,1,27,1,27,1,27,1, + 27,1,27,5,27,1516,8,27,10,27,12,27,1519,9,27,1,27,1,27,3,27,1523, + 8,27,1,27,1,27,1,27,3,27,1528,8,27,1,27,1,27,1,27,1,27,3,27,1534, + 8,27,1,27,1,27,1,27,3,27,1539,8,27,1,27,1,27,3,27,1543,8,27,3,27, + 1545,8,27,1,28,3,28,1548,8,28,1,28,1,28,3,28,1552,8,28,1,28,1,28, + 3,28,1556,8,28,1,28,3,28,1559,8,28,1,28,1,28,3,28,1563,8,28,1,28, + 1,28,3,28,1567,8,28,1,28,1,28,3,28,1571,8,28,1,28,1,28,1,28,1,28, + 3,28,1577,8,28,1,28,3,28,1580,8,28,1,29,1,29,1,29,1,29,1,29,3,29, + 1587,8,29,1,30,1,30,1,30,3,30,1592,8,30,1,31,1,31,1,31,1,31,3,31, + 1598,8,31,1,32,1,32,1,32,5,32,1603,8,32,10,32,12,32,1606,9,32,1, + 32,1,32,1,32,3,32,1611,8,32,1,32,1,32,1,32,1,32,5,32,1617,8,32,10, + 32,12,32,1620,9,32,3,32,1622,8,32,1,32,1,32,1,32,5,32,1627,8,32, + 10,32,12,32,1630,9,32,3,32,1632,8,32,3,32,1634,8,32,1,33,1,33,1, + 33,1,33,3,33,1640,8,33,1,34,1,34,1,34,1,34,3,34,1646,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,1653,8,35,1,36,1,36,1,36,1,36,1,36,3,36,1660,8,36,1,37,1, - 37,1,37,1,38,1,38,3,38,1667,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1, - 38,1,38,1,38,1,38,3,38,1679,8,38,1,38,1,38,1,38,3,38,1684,8,38,1, - 38,3,38,1687,8,38,1,39,3,39,1690,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,1703,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,1716,8,41,1,41,1,41,1,41,3, - 41,1721,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,1737,8,42,1,43,1,43,1,43,1,43,5,43,1743,8, - 43,10,43,12,43,1746,9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44, - 1755,8,44,1,44,3,44,1758,8,44,1,44,1,44,5,44,1762,8,44,10,44,12, - 44,1765,9,44,1,44,1,44,3,44,1769,8,44,1,44,3,44,1772,8,44,1,44,1, - 44,5,44,1776,8,44,10,44,12,44,1779,9,44,1,44,3,44,1782,8,44,1,44, - 1,44,1,44,3,44,1787,8,44,1,44,1,44,5,44,1791,8,44,10,44,12,44,1794, - 9,44,1,44,3,44,1797,8,44,1,44,1,44,3,44,1801,8,44,1,44,3,44,1804, - 8,44,1,44,3,44,1807,8,44,1,44,1,44,5,44,1811,8,44,10,44,12,44,1814, - 9,44,1,44,3,44,1817,8,44,1,44,1,44,1,44,3,44,1822,8,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1833,8,44,1,45,3,45,1836, - 8,45,1,45,1,45,1,45,1,45,1,45,3,45,1843,8,45,1,45,3,45,1846,8,45, - 1,46,1,46,3,46,1850,8,46,1,47,1,47,5,47,1854,8,47,10,47,12,47,1857, - 9,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1868,8,48, - 1,48,3,48,1871,8,48,1,48,1,48,1,48,3,48,1876,8,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1889,8,48,1,48,1,48, - 1,48,1,48,1,48,3,48,1896,8,48,1,48,1,48,1,48,1,48,3,48,1902,8,48, - 1,49,1,49,1,49,3,49,1907,8,49,1,49,1,49,3,49,1911,8,49,1,49,3,49, - 1914,8,49,1,50,1,50,1,50,1,50,1,50,1,50,3,50,1922,8,50,1,50,1,50, - 1,50,1,50,1,50,1,50,3,50,1930,8,50,3,50,1932,8,50,1,51,1,51,1,51, - 1,51,1,51,1,51,1,51,1,51,3,51,1942,8,51,1,52,1,52,3,52,1946,8,52, - 1,52,3,52,1949,8,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,1,52,3,52,1963,8,52,1,52,1,52,1,52,3,52,1968, - 8,52,1,52,1,52,3,52,1972,8,52,1,52,1,52,3,52,1976,8,52,1,52,1,52, - 3,52,1980,8,52,1,52,1,52,3,52,1984,8,52,1,52,1,52,3,52,1988,8,52, - 1,52,1,52,3,52,1992,8,52,1,52,1,52,1,52,3,52,1997,8,52,1,52,1,52, - 1,52,3,52,2002,8,52,1,52,1,52,1,52,3,52,2007,8,52,1,52,1,52,1,52, - 1,52,3,52,2013,8,52,1,52,1,52,1,52,3,52,2018,8,52,1,52,1,52,1,52, - 3,52,2023,8,52,1,52,1,52,1,52,3,52,2028,8,52,1,52,1,52,1,52,3,52, - 2033,8,52,1,52,1,52,1,52,3,52,2038,8,52,1,52,1,52,1,52,1,52,3,52, - 2044,8,52,1,52,1,52,1,52,3,52,2049,8,52,1,52,1,52,1,52,3,52,2054, - 8,52,1,52,1,52,1,52,3,52,2059,8,52,1,52,1,52,1,52,3,52,2064,8,52, - 1,52,1,52,1,52,3,52,2069,8,52,1,52,1,52,1,52,3,52,2074,8,52,1,52, - 1,52,1,52,3,52,2079,8,52,1,52,1,52,1,52,1,52,1,52,3,52,2086,8,52, - 1,52,1,52,1,52,3,52,2091,8,52,1,52,1,52,1,52,3,52,2096,8,52,1,52, - 1,52,1,52,3,52,2101,8,52,1,52,1,52,3,52,2105,8,52,1,52,1,52,1,52, - 3,52,2110,8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2118,8,52,1,52, - 1,52,1,52,3,52,2123,8,52,1,52,1,52,1,52,1,52,3,52,2129,8,52,1,53, - 1,53,1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,3,55,2141,8,55,1,55, - 1,55,1,55,1,55,1,55,3,55,2148,8,55,3,55,2150,8,55,1,55,1,55,1,55, - 1,55,5,55,2156,8,55,10,55,12,55,2159,9,55,1,55,1,55,3,55,2163,8, - 55,1,56,3,56,2166,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2174,8, - 56,1,56,1,56,1,56,1,56,3,56,2180,8,56,1,56,1,56,3,56,2184,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,2197,8, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2209,8, - 56,3,56,2211,8,56,1,57,3,57,2214,8,57,1,57,1,57,1,57,1,57,1,57,1, - 57,3,57,2222,8,57,1,57,1,57,1,57,1,57,3,57,2228,8,57,1,57,1,57,1, - 57,1,57,3,57,2234,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, - 58,5,58,2245,8,58,10,58,12,58,2248,9,58,1,58,1,58,5,58,2252,8,58, - 10,58,12,58,2255,9,58,1,58,1,58,1,58,1,58,5,58,2261,8,58,10,58,12, - 58,2264,9,58,1,58,1,58,3,58,2268,8,58,1,58,1,58,1,58,1,58,1,58,1, - 58,1,58,5,58,2277,8,58,10,58,12,58,2280,9,58,1,58,1,58,1,58,1,58, - 5,58,2286,8,58,10,58,12,58,2289,9,58,1,58,1,58,3,58,2293,8,58,1, - 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2303,8,58,10,58,12,58, - 2306,9,58,1,58,1,58,5,58,2310,8,58,10,58,12,58,2313,9,58,1,58,1, - 58,1,58,1,58,5,58,2319,8,58,10,58,12,58,2322,9,58,1,58,1,58,3,58, - 2326,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2336,8,58, - 10,58,12,58,2339,9,58,1,58,1,58,5,58,2343,8,58,10,58,12,58,2346, - 9,58,1,58,1,58,1,58,1,58,5,58,2352,8,58,10,58,12,58,2355,9,58,1, - 58,1,58,3,58,2359,8,58,1,58,1,58,1,58,5,58,2364,8,58,10,58,12,58, - 2367,9,58,1,58,1,58,1,58,1,58,5,58,2373,8,58,10,58,12,58,2376,9, - 58,1,58,1,58,3,58,2380,8,58,3,58,2382,8,58,1,59,1,59,1,59,3,59,2387, - 8,59,1,60,1,60,1,60,1,60,4,60,2393,8,60,11,60,12,60,2394,1,60,1, - 60,1,61,1,61,1,61,5,61,2402,8,61,10,61,12,61,2405,9,61,1,62,3,62, - 2408,8,62,1,62,3,62,2411,8,62,1,62,1,62,3,62,2415,8,62,1,62,1,62, - 1,62,3,62,2420,8,62,1,62,1,62,1,62,1,62,3,62,2426,8,62,1,62,1,62, - 1,62,1,62,3,62,2432,8,62,1,62,1,62,1,62,3,62,2437,8,62,1,62,1,62, - 1,62,3,62,2442,8,62,1,62,1,62,1,62,3,62,2447,8,62,1,62,1,62,1,62, - 3,62,2452,8,62,1,62,3,62,2455,8,62,1,63,1,63,1,63,3,63,2460,8,63, - 1,63,4,63,2463,8,63,11,63,12,63,2464,1,63,1,63,1,63,1,63,1,63,1, - 63,1,63,1,63,3,63,2475,8,63,1,64,1,64,3,64,2479,8,64,1,64,1,64,1, - 64,1,64,1,64,3,64,2486,8,64,1,64,1,64,1,64,3,64,2491,8,64,1,64,3, - 64,2494,8,64,1,64,1,64,1,64,3,64,2499,8,64,1,64,3,64,2502,8,64,1, - 64,1,64,3,64,2506,8,64,1,64,1,64,3,64,2510,8,64,1,65,1,65,1,65,1, - 65,5,65,2516,8,65,10,65,12,65,2519,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,2537, - 8,67,1,67,3,67,2540,8,67,1,67,3,67,2543,8,67,1,67,1,67,3,67,2547, - 8,67,1,67,1,67,1,68,1,68,1,68,1,68,5,68,2555,8,68,10,68,12,68,2558, - 9,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69,2568,8,69,10,69, - 12,69,2571,9,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2581, - 8,70,10,70,12,70,2584,9,70,3,70,2586,8,70,1,70,1,70,5,70,2590,8, - 70,10,70,12,70,2593,9,70,3,70,2595,8,70,1,71,1,71,3,71,2599,8,71, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2608,8,71,1,71,3,71,2611, - 8,71,1,71,3,71,2614,8,71,1,71,1,71,1,71,3,71,2619,8,71,1,71,1,71, - 3,71,2623,8,71,1,71,3,71,2626,8,71,1,71,1,71,3,71,2630,8,71,1,71, - 1,71,3,71,2634,8,71,1,71,3,71,2637,8,71,1,71,1,71,3,71,2641,8,71, - 1,71,3,71,2644,8,71,1,71,1,71,3,71,2648,8,71,1,71,3,71,2651,8,71, - 1,72,1,72,1,72,1,72,3,72,2657,8,72,1,72,3,72,2660,8,72,1,72,1,72, - 1,72,3,72,2665,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2673,8,72, - 1,72,1,72,1,72,1,72,3,72,2679,8,72,1,72,1,72,3,72,2683,8,72,1,73, - 1,73,3,73,2687,8,73,1,73,5,73,2690,8,73,10,73,12,73,2693,9,73,1, - 73,1,73,3,73,2697,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2704,8,73,1, - 73,1,73,3,73,2708,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2717, - 8,73,10,73,12,73,2720,9,73,1,73,1,73,1,73,1,73,1,73,3,73,2727,8, - 73,1,73,3,73,2730,8,73,1,73,1,73,5,73,2734,8,73,10,73,12,73,2737, - 9,73,1,73,1,73,1,73,3,73,2742,8,73,1,73,3,73,2745,8,73,1,73,1,73, - 5,73,2749,8,73,10,73,12,73,2752,9,73,1,73,1,73,1,73,3,73,2757,8, - 73,3,73,2759,8,73,1,73,1,73,1,73,3,73,2764,8,73,1,73,1,73,5,73,2768, - 8,73,10,73,12,73,2771,9,73,1,73,1,73,1,73,3,73,2776,8,73,3,73,2778, - 8,73,1,73,1,73,3,73,2782,8,73,1,73,3,73,2785,8,73,1,73,3,73,2788, - 8,73,1,73,1,73,5,73,2792,8,73,10,73,12,73,2795,9,73,1,73,1,73,1, - 73,3,73,2800,8,73,3,73,2802,8,73,1,73,1,73,1,73,3,73,2807,8,73,1, - 73,1,73,1,73,1,73,1,73,3,73,2814,8,73,1,73,1,73,1,73,1,73,1,73,1, - 73,1,73,3,73,2823,8,73,1,73,3,73,2826,8,73,1,73,1,73,3,73,2830,8, - 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,3,73,2845,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2854, - 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2862,8,73,1,73,3,73,2865, - 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2873,8,73,1,73,3,73,2876, - 8,73,1,73,1,73,1,73,1,73,1,73,3,73,2883,8,73,1,73,1,73,1,73,3,73, - 2888,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2896,8,73,1,73,1,73, + 35,3,35,1663,8,35,1,36,1,36,1,36,1,36,1,36,3,36,1670,8,36,1,37,1, + 37,1,37,1,38,1,38,3,38,1677,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1, + 38,1,38,1,38,1,38,3,38,1689,8,38,1,38,1,38,1,38,3,38,1694,8,38,1, + 38,3,38,1697,8,38,1,39,3,39,1700,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,1713,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,1726,8,41,1,41,1,41,1,41,3, + 41,1731,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,1747,8,42,1,43,1,43,1,43,1,43,5,43,1753,8, + 43,10,43,12,43,1756,9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44, + 1765,8,44,1,44,3,44,1768,8,44,1,44,1,44,5,44,1772,8,44,10,44,12, + 44,1775,9,44,1,44,1,44,3,44,1779,8,44,1,44,3,44,1782,8,44,1,44,1, + 44,5,44,1786,8,44,10,44,12,44,1789,9,44,1,44,3,44,1792,8,44,1,44, + 1,44,1,44,3,44,1797,8,44,1,44,1,44,5,44,1801,8,44,10,44,12,44,1804, + 9,44,1,44,3,44,1807,8,44,1,44,1,44,3,44,1811,8,44,1,44,3,44,1814, + 8,44,1,44,3,44,1817,8,44,1,44,1,44,5,44,1821,8,44,10,44,12,44,1824, + 9,44,1,44,3,44,1827,8,44,1,44,1,44,1,44,3,44,1832,8,44,1,44,1,44, + 1,44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1843,8,44,1,45,3,45,1846, + 8,45,1,45,1,45,1,45,1,45,1,45,3,45,1853,8,45,1,45,3,45,1856,8,45, + 1,46,1,46,3,46,1860,8,46,1,47,1,47,5,47,1864,8,47,10,47,12,47,1867, + 9,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1878,8,48, + 1,48,3,48,1881,8,48,1,48,1,48,1,48,3,48,1886,8,48,1,48,1,48,1,48, + 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1899,8,48,1,48,1,48, + 1,48,1,48,1,48,3,48,1906,8,48,1,48,1,48,1,48,1,48,3,48,1912,8,48, + 1,49,1,49,1,49,3,49,1917,8,49,1,49,1,49,3,49,1921,8,49,1,49,3,49, + 1924,8,49,1,50,1,50,1,50,1,50,1,50,1,50,3,50,1932,8,50,1,50,1,50, + 1,50,1,50,1,50,1,50,3,50,1940,8,50,3,50,1942,8,50,1,51,1,51,1,51, + 1,51,1,51,1,51,1,51,1,51,3,51,1952,8,51,1,52,1,52,3,52,1956,8,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,3,52,1973,8,52,1,52,1,52,1,52,3,52,1978, + 8,52,1,52,1,52,3,52,1982,8,52,1,52,1,52,3,52,1986,8,52,1,52,1,52, + 3,52,1990,8,52,1,52,1,52,3,52,1994,8,52,1,52,1,52,3,52,1998,8,52, + 1,52,1,52,3,52,2002,8,52,1,52,1,52,1,52,3,52,2007,8,52,1,52,1,52, + 1,52,3,52,2012,8,52,1,52,1,52,1,52,3,52,2017,8,52,1,52,1,52,1,52, + 1,52,3,52,2023,8,52,1,52,1,52,1,52,3,52,2028,8,52,1,52,1,52,1,52, + 3,52,2033,8,52,1,52,1,52,1,52,3,52,2038,8,52,1,52,1,52,1,52,3,52, + 2043,8,52,1,52,1,52,1,52,3,52,2048,8,52,1,52,1,52,1,52,1,52,3,52, + 2054,8,52,1,52,1,52,1,52,3,52,2059,8,52,1,52,1,52,1,52,3,52,2064, + 8,52,1,52,1,52,1,52,3,52,2069,8,52,1,52,1,52,1,52,3,52,2074,8,52, + 1,52,1,52,1,52,3,52,2079,8,52,1,52,1,52,1,52,3,52,2084,8,52,1,52, + 1,52,1,52,3,52,2089,8,52,1,52,1,52,1,52,1,52,1,52,3,52,2096,8,52, + 1,52,1,52,1,52,3,52,2101,8,52,1,52,1,52,1,52,3,52,2106,8,52,1,52, + 1,52,1,52,3,52,2111,8,52,1,52,1,52,3,52,2115,8,52,1,52,1,52,1,52, + 3,52,2120,8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2128,8,52,1,52, + 1,52,1,52,3,52,2133,8,52,1,52,1,52,1,52,1,52,3,52,2139,8,52,1,53, + 1,53,1,54,1,54,1,54,1,55,1,55,1,55,1,55,1,55,3,55,2151,8,55,1,55, + 1,55,1,55,1,55,1,55,3,55,2158,8,55,3,55,2160,8,55,1,55,1,55,1,55, + 1,55,5,55,2166,8,55,10,55,12,55,2169,9,55,1,55,1,55,3,55,2173,8, + 55,1,56,3,56,2176,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2184,8, + 56,1,56,1,56,1,56,1,56,3,56,2190,8,56,1,56,1,56,3,56,2194,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,2207,8, + 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2219,8, + 56,3,56,2221,8,56,1,57,3,57,2224,8,57,1,57,1,57,1,57,1,57,1,57,1, + 57,3,57,2232,8,57,1,57,1,57,1,57,1,57,3,57,2238,8,57,1,57,1,57,1, + 57,1,57,3,57,2244,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,5,58,2255,8,58,10,58,12,58,2258,9,58,1,58,1,58,5,58,2262,8,58, + 10,58,12,58,2265,9,58,1,58,1,58,1,58,1,58,5,58,2271,8,58,10,58,12, + 58,2274,9,58,1,58,1,58,3,58,2278,8,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,5,58,2287,8,58,10,58,12,58,2290,9,58,1,58,1,58,1,58,1,58, + 5,58,2296,8,58,10,58,12,58,2299,9,58,1,58,1,58,3,58,2303,8,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2313,8,58,10,58,12,58, + 2316,9,58,1,58,1,58,5,58,2320,8,58,10,58,12,58,2323,9,58,1,58,1, + 58,1,58,1,58,5,58,2329,8,58,10,58,12,58,2332,9,58,1,58,1,58,3,58, + 2336,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2346,8,58, + 10,58,12,58,2349,9,58,1,58,1,58,5,58,2353,8,58,10,58,12,58,2356, + 9,58,1,58,1,58,1,58,1,58,5,58,2362,8,58,10,58,12,58,2365,9,58,1, + 58,1,58,3,58,2369,8,58,1,58,1,58,1,58,5,58,2374,8,58,10,58,12,58, + 2377,9,58,1,58,1,58,1,58,1,58,5,58,2383,8,58,10,58,12,58,2386,9, + 58,1,58,1,58,3,58,2390,8,58,3,58,2392,8,58,1,59,1,59,1,59,3,59,2397, + 8,59,1,60,1,60,1,60,1,60,4,60,2403,8,60,11,60,12,60,2404,1,60,1, + 60,1,61,1,61,1,61,5,61,2412,8,61,10,61,12,61,2415,9,61,1,62,3,62, + 2418,8,62,1,62,3,62,2421,8,62,1,62,1,62,3,62,2425,8,62,1,62,1,62, + 1,62,3,62,2430,8,62,1,62,1,62,1,62,1,62,3,62,2436,8,62,1,62,1,62, + 1,62,1,62,3,62,2442,8,62,1,62,1,62,1,62,3,62,2447,8,62,1,62,1,62, + 1,62,3,62,2452,8,62,1,62,1,62,1,62,3,62,2457,8,62,1,62,1,62,1,62, + 3,62,2462,8,62,1,62,3,62,2465,8,62,1,63,1,63,1,63,3,63,2470,8,63, + 1,63,4,63,2473,8,63,11,63,12,63,2474,1,63,1,63,1,63,1,63,1,63,1, + 63,1,63,1,63,3,63,2485,8,63,1,64,1,64,3,64,2489,8,64,1,64,1,64,1, + 64,1,64,1,64,3,64,2496,8,64,1,64,1,64,1,64,3,64,2501,8,64,1,64,3, + 64,2504,8,64,1,64,1,64,1,64,3,64,2509,8,64,1,64,3,64,2512,8,64,1, + 64,1,64,3,64,2516,8,64,1,64,1,64,3,64,2520,8,64,1,65,1,65,1,65,1, + 65,5,65,2526,8,65,10,65,12,65,2529,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,2547, + 8,67,1,67,3,67,2550,8,67,1,67,3,67,2553,8,67,1,67,1,67,3,67,2557, + 8,67,1,67,1,67,1,68,1,68,1,68,1,68,5,68,2565,8,68,10,68,12,68,2568, + 9,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69,2578,8,69,10,69, + 12,69,2581,9,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2591, + 8,70,10,70,12,70,2594,9,70,3,70,2596,8,70,1,70,1,70,5,70,2600,8, + 70,10,70,12,70,2603,9,70,3,70,2605,8,70,1,71,1,71,3,71,2609,8,71, + 1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2618,8,71,1,71,3,71,2621, + 8,71,1,71,3,71,2624,8,71,1,71,1,71,1,71,3,71,2629,8,71,1,71,1,71, + 3,71,2633,8,71,1,71,3,71,2636,8,71,1,71,1,71,3,71,2640,8,71,1,71, + 1,71,3,71,2644,8,71,1,71,3,71,2647,8,71,1,71,1,71,3,71,2651,8,71, + 1,71,3,71,2654,8,71,1,71,1,71,3,71,2658,8,71,1,71,3,71,2661,8,71, + 1,72,1,72,1,72,1,72,3,72,2667,8,72,1,72,3,72,2670,8,72,1,72,1,72, + 1,72,3,72,2675,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2683,8,72, + 1,72,1,72,1,72,1,72,3,72,2689,8,72,1,72,1,72,3,72,2693,8,72,1,73, + 1,73,3,73,2697,8,73,1,73,5,73,2700,8,73,10,73,12,73,2703,9,73,1, + 73,1,73,3,73,2707,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2714,8,73,1, + 73,1,73,3,73,2718,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2727, + 8,73,10,73,12,73,2730,9,73,1,73,1,73,1,73,1,73,1,73,3,73,2737,8, + 73,1,73,3,73,2740,8,73,1,73,1,73,5,73,2744,8,73,10,73,12,73,2747, + 9,73,1,73,1,73,1,73,3,73,2752,8,73,1,73,3,73,2755,8,73,1,73,1,73, + 5,73,2759,8,73,10,73,12,73,2762,9,73,1,73,1,73,1,73,3,73,2767,8, + 73,3,73,2769,8,73,1,73,1,73,1,73,3,73,2774,8,73,1,73,1,73,5,73,2778, + 8,73,10,73,12,73,2781,9,73,1,73,1,73,1,73,3,73,2786,8,73,3,73,2788, + 8,73,1,73,1,73,3,73,2792,8,73,1,73,3,73,2795,8,73,1,73,3,73,2798, + 8,73,1,73,1,73,5,73,2802,8,73,10,73,12,73,2805,9,73,1,73,1,73,1, + 73,3,73,2810,8,73,3,73,2812,8,73,1,73,1,73,1,73,3,73,2817,8,73,1, + 73,1,73,1,73,1,73,1,73,3,73,2824,8,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,3,73,2833,8,73,1,73,3,73,2836,8,73,1,73,1,73,3,73,2840,8, + 73,1,73,1,73,1,73,3,73,2845,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1, + 73,1,73,3,73,2855,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2864, + 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2872,8,73,1,73,3,73,2875, + 8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2883,8,73,1,73,3,73,2886, + 8,73,1,73,1,73,1,73,1,73,1,73,3,73,2893,8,73,1,73,1,73,1,73,3,73, + 2898,8,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2906,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,3,73, - 2912,8,73,1,73,1,73,1,73,3,73,2917,8,73,1,73,1,73,1,73,1,73,1,73, - 3,73,2924,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,2943,8,73,1,73,1,73,1,73, - 1,73,3,73,2949,8,73,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2957,8,74, - 10,74,12,74,2960,9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, - 74,3,74,2971,8,74,1,74,1,74,1,74,1,74,1,74,3,74,2978,8,74,1,74,1, - 74,1,74,1,74,1,74,3,74,2985,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,2998,8,74,10,74,12,74,3001,9,74,1,74, - 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,3013,8,74,1,74, - 1,74,1,74,1,74,3,74,3019,8,74,1,74,1,74,1,74,1,74,3,74,3025,8,74, - 1,74,1,74,1,74,1,74,3,74,3031,8,74,1,74,1,74,1,74,1,74,3,74,3037, - 8,74,1,74,1,74,1,74,1,74,3,74,3043,8,74,1,74,1,74,1,74,1,74,3,74, - 3049,8,74,1,75,1,75,1,75,3,75,3054,8,75,1,75,1,75,1,76,1,76,1,76, - 3,76,3061,8,76,1,76,1,76,1,77,1,77,1,77,3,77,3068,8,77,1,77,1,77, - 1,77,1,77,1,77,3,77,3075,8,77,1,77,1,77,1,77,3,77,3080,8,77,1,77, - 5,77,3083,8,77,10,77,12,77,3086,9,77,1,78,1,78,1,78,1,78,1,78,1, - 78,3,78,3094,8,78,1,78,1,78,1,79,1,79,1,79,3,79,3101,8,79,1,79,1, - 79,1,80,1,80,1,80,3,80,3108,8,80,1,80,1,80,1,81,1,81,1,81,3,81,3115, - 8,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,3,82,3124,8,82,1,82,1,82, - 1,83,1,83,3,83,3130,8,83,1,83,1,83,3,83,3134,8,83,1,83,1,83,3,83, - 3138,8,83,1,84,1,84,3,84,3142,8,84,1,84,1,84,1,84,1,84,3,84,3148, - 8,84,1,84,3,84,3151,8,84,1,85,1,85,1,85,3,85,3156,8,85,1,85,1,85, - 1,86,1,86,1,86,3,86,3163,8,86,1,86,1,86,1,86,5,86,3168,8,86,10,86, - 12,86,3171,9,86,1,86,3,86,3174,8,86,1,87,1,87,1,87,3,87,3179,8,87, - 1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,3,88,3189,8,88,1,88,1,88, - 1,88,1,88,5,88,3195,8,88,10,88,12,88,3198,9,88,1,88,1,88,1,88,3, - 88,3203,8,88,1,89,1,89,1,89,1,89,1,89,5,89,3210,8,89,10,89,12,89, - 3213,9,89,1,90,1,90,1,90,1,90,1,91,1,91,3,91,3221,8,91,1,91,1,91, - 1,92,1,92,1,92,1,92,1,92,3,92,3230,8,92,1,92,3,92,3233,8,92,1,93, - 1,93,3,93,3237,8,93,1,94,1,94,1,94,1,95,1,95,1,95,1,95,3,95,3246, - 8,95,1,96,1,96,3,96,3250,8,96,1,96,3,96,3253,8,96,1,96,3,96,3256, - 8,96,1,96,1,96,1,96,1,96,3,96,3262,8,96,1,96,3,96,3265,8,96,1,96, - 3,96,3268,8,96,1,96,1,96,3,96,3272,8,96,1,96,3,96,3275,8,96,1,96, - 3,96,3278,8,96,1,96,3,96,3281,8,96,1,96,1,96,1,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,98,1,98,1,98,1,98,3,98,3306,8,98,1,99,1, - 99,1,99,3,99,3311,8,99,1,99,4,99,3314,8,99,11,99,12,99,3315,1,100, - 3,100,3319,8,100,1,100,1,100,3,100,3323,8,100,1,101,1,101,1,101, - 3,101,3328,8,101,1,101,3,101,3331,8,101,1,101,1,101,1,101,3,101, - 3336,8,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101, - 3346,8,101,1,101,1,101,1,101,3,101,3351,8,101,1,101,1,101,4,101, - 3355,8,101,11,101,12,101,3356,3,101,3359,8,101,1,101,1,101,4,101, - 3363,8,101,11,101,12,101,3364,3,101,3367,8,101,1,101,1,101,1,101, - 1,101,3,101,3373,8,101,1,101,1,101,1,101,1,101,5,101,3379,8,101, - 10,101,12,101,3382,9,101,1,101,1,101,3,101,3386,8,101,1,101,1,101, - 1,101,1,101,5,101,3392,8,101,10,101,12,101,3395,9,101,3,101,3397, - 8,101,1,102,1,102,1,102,3,102,3402,8,102,1,102,3,102,3405,8,102, - 1,102,1,102,1,102,3,102,3410,8,102,1,102,1,102,1,102,1,102,1,102, - 1,102,3,102,3418,8,102,1,102,1,102,1,102,1,102,3,102,3424,8,102, - 1,102,1,102,3,102,3428,8,102,3,102,3430,8,102,1,102,1,102,1,102, - 1,102,3,102,3436,8,102,1,102,1,102,1,102,1,102,5,102,3442,8,102, - 10,102,12,102,3445,9,102,1,102,1,102,3,102,3449,8,102,1,102,1,102, - 1,102,1,102,5,102,3455,8,102,10,102,12,102,3458,9,102,3,102,3460, - 8,102,1,103,1,103,1,103,3,103,3465,8,103,1,103,3,103,3468,8,103, - 1,103,1,103,3,103,3472,8,103,1,103,3,103,3475,8,103,1,103,3,103, - 3478,8,103,1,104,1,104,3,104,3482,8,104,1,104,3,104,3485,8,104,1, - 104,1,104,1,104,1,104,1,104,1,104,3,104,3493,8,104,1,104,1,104,1, - 104,1,104,3,104,3499,8,104,1,104,1,104,3,104,3503,8,104,1,105,1, - 105,5,105,3507,8,105,10,105,12,105,3510,9,105,1,105,1,105,3,105, - 3514,8,105,1,105,1,105,3,105,3518,8,105,3,105,3520,8,105,1,105,1, - 105,5,105,3524,8,105,10,105,12,105,3527,9,105,1,105,3,105,3530,8, - 105,1,105,3,105,3533,8,105,1,105,3,105,3536,8,105,1,105,3,105,3539, - 8,105,1,105,1,105,5,105,3543,8,105,10,105,12,105,3546,9,105,1,105, - 1,105,3,105,3550,8,105,1,105,3,105,3553,8,105,1,105,3,105,3556,8, - 105,1,105,3,105,3559,8,105,1,105,3,105,3562,8,105,3,105,3564,8,105, - 1,106,3,106,3567,8,106,1,106,1,106,3,106,3571,8,106,1,106,3,106, - 3574,8,106,1,106,3,106,3577,8,106,1,107,1,107,1,107,1,107,1,107, - 1,107,3,107,3585,8,107,1,107,1,107,1,107,1,107,3,107,3591,8,107, - 1,107,5,107,3594,8,107,10,107,12,107,3597,9,107,1,108,1,108,1,108, - 1,108,1,108,1,108,3,108,3605,8,108,1,108,5,108,3608,8,108,10,108, - 12,108,3611,9,108,1,109,1,109,1,109,1,109,3,109,3617,8,109,1,109, - 3,109,3620,8,109,1,109,3,109,3623,8,109,1,109,1,109,3,109,3627,8, - 109,1,110,1,110,3,110,3631,8,110,1,111,1,111,1,111,1,111,3,111,3637, - 8,111,1,111,1,111,3,111,3641,8,111,1,112,1,112,1,112,5,112,3646, - 8,112,10,112,12,112,3649,9,112,1,112,3,112,3652,8,112,1,112,3,112, - 3655,8,112,1,112,3,112,3658,8,112,1,113,1,113,1,113,3,113,3663,8, - 113,1,114,1,114,1,114,1,114,1,114,3,114,3670,8,114,1,115,1,115,1, - 115,1,115,1,115,1,115,5,115,3678,8,115,10,115,12,115,3681,9,115, - 1,116,1,116,1,116,1,116,5,116,3687,8,116,10,116,12,116,3690,9,116, - 1,117,1,117,1,117,1,117,1,118,1,118,3,118,3698,8,118,1,119,1,119, - 1,119,1,119,1,119,1,119,5,119,3706,8,119,10,119,12,119,3709,9,119, - 3,119,3711,8,119,1,119,1,119,3,119,3715,8,119,1,119,1,119,1,119, - 1,119,3,119,3721,8,119,1,120,1,120,3,120,3725,8,120,1,120,3,120, - 3728,8,120,1,120,3,120,3731,8,120,1,120,1,120,1,120,3,120,3736,8, - 120,1,120,3,120,3739,8,120,1,120,1,120,1,120,1,120,1,120,3,120,3746, - 8,120,1,120,1,120,3,120,3750,8,120,1,120,3,120,3753,8,120,1,120, - 1,120,3,120,3757,8,120,1,121,1,121,3,121,3761,8,121,1,121,3,121, - 3764,8,121,1,121,3,121,3767,8,121,1,121,1,121,1,121,3,121,3772,8, - 121,1,121,1,121,1,121,1,121,3,121,3778,8,121,5,121,3780,8,121,10, - 121,12,121,3783,9,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 3,121,3792,8,121,1,121,1,121,1,121,1,121,3,121,3798,8,121,5,121, - 3800,8,121,10,121,12,121,3803,9,121,1,121,1,121,1,121,3,121,3808, - 8,121,1,121,1,121,3,121,3812,8,121,1,122,1,122,1,122,1,122,3,122, - 3818,8,122,1,122,3,122,3821,8,122,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,123,3,123,3833,8,123,1,123,1,123,3,123, - 3837,8,123,1,123,1,123,3,123,3841,8,123,1,124,1,124,1,124,1,124, - 1,124,1,124,3,124,3849,8,124,1,124,1,124,3,124,3853,8,124,1,125, - 1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,126,5,126,3865, - 8,126,10,126,12,126,3868,9,126,1,127,1,127,3,127,3872,8,127,1,127, - 3,127,3875,8,127,1,127,1,127,3,127,3879,8,127,1,127,3,127,3882,8, - 127,1,127,1,127,1,127,1,127,5,127,3888,8,127,10,127,12,127,3891, - 9,127,1,127,1,127,3,127,3895,8,127,1,127,3,127,3898,8,127,1,127, - 3,127,3901,8,127,1,128,1,128,3,128,3905,8,128,1,128,3,128,3908,8, - 128,1,128,1,128,1,128,1,128,1,128,5,128,3915,8,128,10,128,12,128, - 3918,9,128,1,128,1,128,3,128,3922,8,128,1,129,1,129,1,129,1,129, - 1,129,5,129,3929,8,129,10,129,12,129,3932,9,129,1,130,1,130,3,130, - 3936,8,130,1,131,1,131,1,131,5,131,3941,8,131,10,131,12,131,3944, - 9,131,1,132,1,132,5,132,3948,8,132,10,132,12,132,3951,9,132,1,132, - 1,132,1,132,5,132,3956,8,132,10,132,12,132,3959,9,132,1,132,1,132, - 1,132,3,132,3964,8,132,1,133,1,133,1,133,1,133,1,133,1,133,3,133, - 3972,8,133,1,133,3,133,3975,8,133,1,133,3,133,3978,8,133,1,133,1, - 133,1,133,5,133,3983,8,133,10,133,12,133,3986,9,133,3,133,3988,8, - 133,1,133,3,133,3991,8,133,1,133,1,133,1,133,1,133,1,133,3,133,3998, - 8,133,1,133,3,133,4001,8,133,1,133,1,133,3,133,4005,8,133,1,133, - 1,133,1,133,1,133,3,133,4011,8,133,1,134,1,134,1,134,1,134,1,135, - 1,135,1,135,1,135,3,135,4021,8,135,1,135,1,135,3,135,4025,8,135, - 1,135,1,135,1,136,1,136,1,136,1,136,1,136,3,136,4034,8,136,1,137, - 3,137,4037,8,137,1,137,1,137,3,137,4041,8,137,1,137,1,137,5,137, - 4045,8,137,10,137,12,137,4048,9,137,1,137,1,137,1,137,5,137,4053, - 8,137,10,137,12,137,4056,9,137,1,137,1,137,3,137,4060,8,137,1,137, - 1,137,3,137,4064,8,137,1,137,1,137,5,137,4068,8,137,10,137,12,137, - 4071,9,137,1,137,1,137,1,137,3,137,4076,8,137,1,137,3,137,4079,8, - 137,3,137,4081,8,137,1,137,1,137,3,137,4085,8,137,1,138,1,138,1, - 138,1,138,1,138,1,138,1,138,3,138,4094,8,138,1,139,1,139,1,139,1, - 139,1,139,1,139,1,139,1,139,3,139,4104,8,139,1,140,1,140,5,140,4108, - 8,140,10,140,12,140,4111,9,140,1,140,1,140,3,140,4115,8,140,1,140, - 1,140,3,140,4119,8,140,1,140,3,140,4122,8,140,1,140,3,140,4125,8, - 140,1,140,3,140,4128,8,140,1,140,3,140,4131,8,140,1,140,3,140,4134, - 8,140,1,140,3,140,4137,8,140,1,141,1,141,3,141,4141,8,141,1,141, - 1,141,3,141,4145,8,141,1,142,1,142,1,142,1,142,1,142,1,142,3,142, - 4153,8,142,1,142,1,142,3,142,4157,8,142,1,142,3,142,4160,8,142,3, - 142,4162,8,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1, - 143,1,143,1,143,3,143,4175,8,143,1,143,3,143,4178,8,143,1,144,1, - 144,1,144,5,144,4183,8,144,10,144,12,144,4186,9,144,1,145,1,145, - 1,145,1,145,1,145,1,145,1,145,3,145,4195,8,145,1,145,3,145,4198, - 8,145,1,145,1,145,1,145,3,145,4203,8,145,3,145,4205,8,145,1,145, - 1,145,3,145,4209,8,145,1,145,1,145,1,145,1,145,1,145,1,145,3,145, - 4217,8,145,1,146,1,146,1,146,1,146,3,146,4223,8,146,1,146,1,146, - 1,146,1,147,1,147,1,147,1,147,3,147,4232,8,147,1,147,1,147,1,147, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,3,148,4245,8,148, - 1,149,1,149,3,149,4249,8,149,1,149,1,149,5,149,4253,8,149,10,149, - 12,149,4256,9,149,1,150,1,150,3,150,4260,8,150,1,150,1,150,3,150, - 4264,8,150,1,150,3,150,4267,8,150,1,150,1,150,3,150,4271,8,150,1, - 150,3,150,4274,8,150,1,150,1,150,1,150,1,150,1,150,1,150,3,150,4282, - 8,150,1,150,3,150,4285,8,150,3,150,4287,8,150,1,151,1,151,1,151, - 1,151,5,151,4293,8,151,10,151,12,151,4296,9,151,1,151,1,151,1,151, - 1,151,1,151,1,151,1,151,1,151,1,151,3,151,4307,8,151,1,151,1,151, - 4,151,4311,8,151,11,151,12,151,4312,3,151,4315,8,151,1,151,1,151, - 4,151,4319,8,151,11,151,12,151,4320,3,151,4323,8,151,3,151,4325, - 8,151,1,152,1,152,1,152,1,152,3,152,4331,8,152,1,152,1,152,1,152, - 1,152,1,152,1,152,3,152,4339,8,152,1,153,1,153,1,153,1,153,1,153, - 1,153,3,153,4347,8,153,1,154,1,154,3,154,4351,8,154,1,154,1,154, - 3,154,4355,8,154,1,155,1,155,1,155,1,155,1,155,5,155,4362,8,155, - 10,155,12,155,4365,9,155,1,155,1,155,3,155,4369,8,155,1,156,1,156, - 1,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,5,157,4387,8,157,10,157,12,157,4390,9,157,1,158, - 1,158,3,158,4394,8,158,1,159,1,159,1,159,1,159,3,159,4400,8,159, - 1,159,1,159,1,159,1,159,1,159,3,159,4407,8,159,1,160,1,160,1,160, - 3,160,4412,8,160,1,161,1,161,1,161,1,161,1,161,5,161,4419,8,161, - 10,161,12,161,4422,9,161,3,161,4424,8,161,1,162,1,162,3,162,4428, - 8,162,1,163,1,163,3,163,4432,8,163,1,163,1,163,3,163,4436,8,163, - 1,163,3,163,4439,8,163,1,163,3,163,4442,8,163,1,163,3,163,4445,8, - 163,1,164,1,164,3,164,4449,8,164,1,164,1,164,3,164,4453,8,164,1, - 164,3,164,4456,8,164,1,164,3,164,4459,8,164,1,164,3,164,4462,8,164, - 1,165,1,165,1,165,1,166,1,166,3,166,4469,8,166,1,166,1,166,3,166, - 4473,8,166,1,166,1,166,1,167,1,167,1,167,1,167,1,168,1,168,1,168, - 1,168,1,168,5,168,4486,8,168,10,168,12,168,4489,9,168,1,169,1,169, - 1,169,1,170,1,170,1,170,1,170,1,170,1,171,1,171,3,171,4501,8,171, - 1,171,1,171,1,171,1,171,5,171,4507,8,171,10,171,12,171,4510,9,171, - 1,172,1,172,1,172,1,172,1,172,1,172,1,172,3,172,4519,8,172,1,173, - 1,173,3,173,4523,8,173,1,173,3,173,4526,8,173,1,173,1,173,1,174, - 1,174,3,174,4532,8,174,1,174,3,174,4535,8,174,1,174,3,174,4538,8, - 174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,3,175,4547,8,175,1, - 176,1,176,1,176,1,176,1,176,1,176,1,176,3,176,4556,8,176,1,177,1, - 177,1,177,1,177,1,177,1,177,5,177,4564,8,177,10,177,12,177,4567, - 9,177,1,177,3,177,4570,8,177,1,178,1,178,1,178,1,178,1,178,1,178, - 5,178,4578,8,178,10,178,12,178,4581,9,178,1,178,3,178,4584,8,178, - 1,179,1,179,1,179,1,179,1,179,1,179,1,179,5,179,4593,8,179,10,179, - 12,179,4596,9,179,1,179,3,179,4599,8,179,1,180,1,180,1,180,1,180, - 1,180,1,180,1,180,3,180,4608,8,180,1,181,1,181,1,181,1,181,1,181, - 5,181,4615,8,181,10,181,12,181,4618,9,181,3,181,4620,8,181,1,181, - 1,181,3,181,4624,8,181,1,181,5,181,4627,8,181,10,181,12,181,4630, - 9,181,1,181,3,181,4633,8,181,1,182,1,182,1,182,1,182,1,182,5,182, - 4640,8,182,10,182,12,182,4643,9,182,3,182,4645,8,182,1,182,3,182, - 4648,8,182,1,183,1,183,1,183,1,183,1,183,3,183,4655,8,183,1,183, - 1,183,1,183,1,183,3,183,4661,8,183,1,183,1,183,1,183,1,183,3,183, - 4667,8,183,1,184,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,5,185,4691,8,185,10,185,12,185,4694,9,185,3,185,4696, - 8,185,1,185,3,185,4699,8,185,1,186,1,186,1,187,1,187,1,188,1,188, - 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, - 3,189,4718,8,189,3,189,4720,8,189,1,190,1,190,1,190,1,190,1,190, + 2922,8,73,1,73,1,73,1,73,3,73,2927,8,73,1,73,1,73,1,73,1,73,1,73, + 3,73,2934,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,2953,8,73,1,73,1,73,1,73, + 1,73,3,73,2959,8,73,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2967,8,74, + 10,74,12,74,2970,9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, + 74,3,74,2981,8,74,1,74,1,74,1,74,1,74,1,74,3,74,2988,8,74,1,74,1, + 74,1,74,1,74,1,74,3,74,2995,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,3008,8,74,10,74,12,74,3011,9,74,1,74, + 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,3023,8,74,1,74, + 1,74,1,74,1,74,3,74,3029,8,74,1,74,1,74,1,74,1,74,3,74,3035,8,74, + 1,74,1,74,1,74,1,74,3,74,3041,8,74,1,74,1,74,1,74,1,74,3,74,3047, + 8,74,1,74,1,74,1,74,1,74,3,74,3053,8,74,1,74,1,74,1,74,1,74,3,74, + 3059,8,74,1,75,1,75,1,75,3,75,3064,8,75,1,75,1,75,1,76,1,76,1,76, + 3,76,3071,8,76,1,76,1,76,1,77,1,77,1,77,3,77,3078,8,77,1,77,1,77, + 1,77,1,77,1,77,3,77,3085,8,77,1,77,1,77,1,77,3,77,3090,8,77,1,77, + 5,77,3093,8,77,10,77,12,77,3096,9,77,1,78,1,78,1,78,1,78,1,78,1, + 78,3,78,3104,8,78,1,78,1,78,1,79,1,79,1,79,3,79,3111,8,79,1,79,1, + 79,1,80,1,80,1,80,3,80,3118,8,80,1,80,1,80,1,81,1,81,1,81,3,81,3125, + 8,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,3,82,3134,8,82,1,82,1,82, + 1,83,1,83,3,83,3140,8,83,1,83,1,83,3,83,3144,8,83,1,83,1,83,3,83, + 3148,8,83,1,84,1,84,3,84,3152,8,84,1,84,1,84,1,84,1,84,3,84,3158, + 8,84,1,84,3,84,3161,8,84,1,85,1,85,1,85,3,85,3166,8,85,1,85,1,85, + 1,86,1,86,1,86,3,86,3173,8,86,1,86,1,86,1,86,5,86,3178,8,86,10,86, + 12,86,3181,9,86,1,86,3,86,3184,8,86,1,87,1,87,1,87,3,87,3189,8,87, + 1,87,1,87,1,88,1,88,1,88,1,88,1,88,1,88,3,88,3199,8,88,1,88,1,88, + 1,88,1,88,5,88,3205,8,88,10,88,12,88,3208,9,88,1,88,1,88,1,88,3, + 88,3213,8,88,1,89,1,89,1,89,1,89,1,89,5,89,3220,8,89,10,89,12,89, + 3223,9,89,1,90,1,90,1,90,1,90,1,91,1,91,3,91,3231,8,91,1,91,1,91, + 1,92,1,92,1,92,1,92,1,92,3,92,3240,8,92,1,92,3,92,3243,8,92,1,93, + 1,93,3,93,3247,8,93,1,94,1,94,1,94,1,95,1,95,1,95,1,95,3,95,3256, + 8,95,1,96,1,96,3,96,3260,8,96,1,96,3,96,3263,8,96,1,96,3,96,3266, + 8,96,1,96,1,96,1,96,1,96,3,96,3272,8,96,1,96,3,96,3275,8,96,1,96, + 3,96,3278,8,96,1,96,1,96,3,96,3282,8,96,1,96,3,96,3285,8,96,1,96, + 3,96,3288,8,96,1,96,3,96,3291,8,96,1,96,1,96,1,96,1,96,1,96,1,96, + 1,96,5,96,3300,8,96,10,96,12,96,3303,9,96,3,96,3305,8,96,1,97,1, + 97,1,97,3,97,3310,8,97,1,98,1,98,1,98,1,98,3,98,3316,8,98,1,99,1, + 99,1,99,3,99,3321,8,99,1,99,4,99,3324,8,99,11,99,12,99,3325,1,100, + 3,100,3329,8,100,1,100,1,100,3,100,3333,8,100,1,101,1,101,1,101, + 3,101,3338,8,101,1,101,3,101,3341,8,101,1,101,1,101,1,101,3,101, + 3346,8,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101, + 3356,8,101,1,101,1,101,1,101,3,101,3361,8,101,1,101,1,101,4,101, + 3365,8,101,11,101,12,101,3366,3,101,3369,8,101,1,101,1,101,4,101, + 3373,8,101,11,101,12,101,3374,3,101,3377,8,101,1,101,1,101,1,101, + 1,101,3,101,3383,8,101,1,101,1,101,1,101,1,101,5,101,3389,8,101, + 10,101,12,101,3392,9,101,1,101,1,101,3,101,3396,8,101,1,101,1,101, + 1,101,1,101,5,101,3402,8,101,10,101,12,101,3405,9,101,3,101,3407, + 8,101,1,102,1,102,1,102,3,102,3412,8,102,1,102,3,102,3415,8,102, + 1,102,1,102,1,102,3,102,3420,8,102,1,102,1,102,1,102,1,102,1,102, + 1,102,3,102,3428,8,102,1,102,1,102,1,102,1,102,3,102,3434,8,102, + 1,102,1,102,3,102,3438,8,102,3,102,3440,8,102,1,102,1,102,1,102, + 1,102,3,102,3446,8,102,1,102,1,102,1,102,1,102,5,102,3452,8,102, + 10,102,12,102,3455,9,102,1,102,1,102,3,102,3459,8,102,1,102,1,102, + 1,102,1,102,5,102,3465,8,102,10,102,12,102,3468,9,102,3,102,3470, + 8,102,1,103,1,103,1,103,3,103,3475,8,103,1,103,3,103,3478,8,103, + 1,103,1,103,3,103,3482,8,103,1,103,3,103,3485,8,103,1,103,3,103, + 3488,8,103,1,104,1,104,3,104,3492,8,104,1,104,3,104,3495,8,104,1, + 104,1,104,1,104,1,104,1,104,1,104,3,104,3503,8,104,1,104,1,104,1, + 104,1,104,3,104,3509,8,104,1,104,1,104,3,104,3513,8,104,1,105,1, + 105,5,105,3517,8,105,10,105,12,105,3520,9,105,1,105,1,105,3,105, + 3524,8,105,1,105,1,105,3,105,3528,8,105,3,105,3530,8,105,1,105,1, + 105,5,105,3534,8,105,10,105,12,105,3537,9,105,1,105,3,105,3540,8, + 105,1,105,3,105,3543,8,105,1,105,3,105,3546,8,105,1,105,3,105,3549, + 8,105,1,105,1,105,5,105,3553,8,105,10,105,12,105,3556,9,105,1,105, + 1,105,3,105,3560,8,105,1,105,3,105,3563,8,105,1,105,3,105,3566,8, + 105,1,105,3,105,3569,8,105,1,105,3,105,3572,8,105,3,105,3574,8,105, + 1,106,3,106,3577,8,106,1,106,1,106,3,106,3581,8,106,1,106,3,106, + 3584,8,106,1,106,3,106,3587,8,106,1,107,1,107,1,107,1,107,1,107, + 1,107,3,107,3595,8,107,1,107,1,107,1,107,1,107,3,107,3601,8,107, + 1,107,5,107,3604,8,107,10,107,12,107,3607,9,107,1,108,1,108,1,108, + 1,108,1,108,1,108,3,108,3615,8,108,1,108,5,108,3618,8,108,10,108, + 12,108,3621,9,108,1,109,1,109,1,109,1,109,3,109,3627,8,109,1,109, + 3,109,3630,8,109,1,109,3,109,3633,8,109,1,109,1,109,3,109,3637,8, + 109,1,110,1,110,3,110,3641,8,110,1,111,1,111,1,111,1,111,3,111,3647, + 8,111,1,111,1,111,3,111,3651,8,111,1,112,1,112,1,112,5,112,3656, + 8,112,10,112,12,112,3659,9,112,1,112,3,112,3662,8,112,1,112,3,112, + 3665,8,112,1,112,3,112,3668,8,112,1,113,1,113,1,113,3,113,3673,8, + 113,1,114,1,114,1,114,1,114,1,114,3,114,3680,8,114,1,115,1,115,1, + 115,1,115,1,115,1,115,5,115,3688,8,115,10,115,12,115,3691,9,115, + 1,116,1,116,1,116,1,116,5,116,3697,8,116,10,116,12,116,3700,9,116, + 1,117,1,117,1,117,1,117,1,118,1,118,3,118,3708,8,118,1,119,1,119, + 1,119,1,119,1,119,1,119,5,119,3716,8,119,10,119,12,119,3719,9,119, + 3,119,3721,8,119,1,119,1,119,3,119,3725,8,119,1,119,1,119,1,119, + 1,119,3,119,3731,8,119,1,120,1,120,3,120,3735,8,120,1,120,3,120, + 3738,8,120,1,120,3,120,3741,8,120,1,120,1,120,1,120,3,120,3746,8, + 120,1,120,3,120,3749,8,120,1,120,1,120,1,120,1,120,1,120,3,120,3756, + 8,120,1,120,1,120,3,120,3760,8,120,1,120,3,120,3763,8,120,1,120, + 1,120,3,120,3767,8,120,1,121,1,121,3,121,3771,8,121,1,121,3,121, + 3774,8,121,1,121,3,121,3777,8,121,1,121,1,121,1,121,3,121,3782,8, + 121,1,121,1,121,1,121,1,121,3,121,3788,8,121,5,121,3790,8,121,10, + 121,12,121,3793,9,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, + 3,121,3802,8,121,1,121,1,121,1,121,1,121,3,121,3808,8,121,5,121, + 3810,8,121,10,121,12,121,3813,9,121,1,121,1,121,1,121,3,121,3818, + 8,121,1,121,1,121,3,121,3822,8,121,1,122,1,122,1,122,1,122,3,122, + 3828,8,122,1,122,3,122,3831,8,122,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,1,123,1,123,3,123,3843,8,123,1,123,1,123,3,123, + 3847,8,123,1,123,1,123,3,123,3851,8,123,1,124,1,124,1,124,1,124, + 1,124,1,124,3,124,3859,8,124,1,124,1,124,3,124,3863,8,124,1,125, + 1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126,1,126,5,126,3875, + 8,126,10,126,12,126,3878,9,126,1,127,1,127,3,127,3882,8,127,1,127, + 3,127,3885,8,127,1,127,1,127,3,127,3889,8,127,1,127,3,127,3892,8, + 127,1,127,1,127,1,127,1,127,5,127,3898,8,127,10,127,12,127,3901, + 9,127,1,127,1,127,3,127,3905,8,127,1,127,3,127,3908,8,127,1,127, + 3,127,3911,8,127,1,128,1,128,3,128,3915,8,128,1,128,3,128,3918,8, + 128,1,128,1,128,1,128,1,128,1,128,5,128,3925,8,128,10,128,12,128, + 3928,9,128,1,128,1,128,3,128,3932,8,128,1,129,1,129,1,129,1,129, + 1,129,5,129,3939,8,129,10,129,12,129,3942,9,129,1,130,1,130,3,130, + 3946,8,130,1,131,1,131,1,131,5,131,3951,8,131,10,131,12,131,3954, + 9,131,1,132,1,132,5,132,3958,8,132,10,132,12,132,3961,9,132,1,132, + 1,132,1,132,5,132,3966,8,132,10,132,12,132,3969,9,132,1,132,1,132, + 1,132,3,132,3974,8,132,1,133,1,133,1,133,1,133,1,133,1,133,3,133, + 3982,8,133,1,133,3,133,3985,8,133,1,133,3,133,3988,8,133,1,133,1, + 133,1,133,5,133,3993,8,133,10,133,12,133,3996,9,133,3,133,3998,8, + 133,1,133,3,133,4001,8,133,1,133,1,133,3,133,4005,8,133,1,133,1, + 133,3,133,4009,8,133,1,133,1,133,1,133,1,133,3,133,4015,8,133,1, + 134,1,134,1,134,1,134,1,134,3,134,4022,8,134,1,135,1,135,1,135,1, + 135,1,136,1,136,1,136,1,136,3,136,4032,8,136,1,136,1,136,3,136,4036, + 8,136,1,136,1,136,1,137,1,137,1,137,1,137,1,137,3,137,4045,8,137, + 1,138,3,138,4048,8,138,1,138,1,138,3,138,4052,8,138,1,138,1,138, + 5,138,4056,8,138,10,138,12,138,4059,9,138,1,138,1,138,1,138,5,138, + 4064,8,138,10,138,12,138,4067,9,138,1,138,1,138,3,138,4071,8,138, + 1,138,1,138,3,138,4075,8,138,1,138,1,138,5,138,4079,8,138,10,138, + 12,138,4082,9,138,1,138,1,138,1,138,3,138,4087,8,138,1,138,3,138, + 4090,8,138,3,138,4092,8,138,1,138,1,138,3,138,4096,8,138,1,139,1, + 139,1,139,1,139,1,139,1,139,1,139,3,139,4105,8,139,1,140,1,140,1, + 140,1,140,1,140,1,140,1,140,1,140,3,140,4115,8,140,1,141,1,141,5, + 141,4119,8,141,10,141,12,141,4122,9,141,1,141,1,141,3,141,4126,8, + 141,1,141,1,141,3,141,4130,8,141,1,141,3,141,4133,8,141,1,141,3, + 141,4136,8,141,1,141,3,141,4139,8,141,1,141,3,141,4142,8,141,1,141, + 3,141,4145,8,141,1,141,3,141,4148,8,141,1,142,1,142,3,142,4152,8, + 142,1,142,1,142,3,142,4156,8,142,1,143,1,143,1,143,1,143,1,143,1, + 143,3,143,4164,8,143,1,143,1,143,3,143,4168,8,143,1,143,3,143,4171, + 8,143,3,143,4173,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,144,1,144,1,144,1,144,3,144,4186,8,144,1,144,3,144,4189,8,144, + 1,145,1,145,1,145,5,145,4194,8,145,10,145,12,145,4197,9,145,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,3,146,4206,8,146,1,146,3,146, + 4209,8,146,1,146,1,146,1,146,3,146,4214,8,146,3,146,4216,8,146,1, + 146,1,146,3,146,4220,8,146,1,146,1,146,1,146,1,146,1,146,1,146,3, + 146,4228,8,146,1,147,1,147,1,147,1,147,3,147,4234,8,147,1,147,1, + 147,1,147,1,148,1,148,1,148,1,148,3,148,4243,8,148,1,148,1,148,1, + 148,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,3,149,4256,8, + 149,1,150,1,150,3,150,4260,8,150,1,150,1,150,5,150,4264,8,150,10, + 150,12,150,4267,9,150,1,151,1,151,1,151,3,151,4272,8,151,1,151,3, + 151,4275,8,151,1,151,1,151,3,151,4279,8,151,1,151,3,151,4282,8,151, + 3,151,4284,8,151,1,152,1,152,1,152,1,152,1,153,1,153,1,154,1,154, + 1,155,1,155,3,155,4296,8,155,1,155,1,155,3,155,4300,8,155,1,156, + 1,156,1,156,1,156,5,156,4306,8,156,10,156,12,156,4309,9,156,1,156, + 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,4320,8,156, + 1,156,1,156,4,156,4324,8,156,11,156,12,156,4325,3,156,4328,8,156, + 1,156,1,156,4,156,4332,8,156,11,156,12,156,4333,3,156,4336,8,156, + 3,156,4338,8,156,1,157,1,157,1,157,1,157,3,157,4344,8,157,1,157, + 1,157,1,157,1,157,1,157,1,157,3,157,4352,8,157,1,158,1,158,1,158, + 1,158,1,158,1,158,3,158,4360,8,158,1,159,1,159,3,159,4364,8,159, + 1,159,1,159,3,159,4368,8,159,1,160,1,160,1,160,1,160,1,160,5,160, + 4375,8,160,10,160,12,160,4378,9,160,1,160,1,160,3,160,4382,8,160, + 1,161,1,161,1,161,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,5,162,4400,8,162,10,162,12,162,4403, + 9,162,1,163,1,163,3,163,4407,8,163,1,164,1,164,1,164,1,164,3,164, + 4413,8,164,1,164,1,164,1,164,1,164,1,164,3,164,4420,8,164,1,165, + 1,165,1,165,3,165,4425,8,165,1,166,1,166,1,166,1,166,1,166,5,166, + 4432,8,166,10,166,12,166,4435,9,166,3,166,4437,8,166,1,167,1,167, + 3,167,4441,8,167,1,168,1,168,3,168,4445,8,168,1,168,1,168,3,168, + 4449,8,168,1,168,3,168,4452,8,168,1,168,3,168,4455,8,168,1,168,3, + 168,4458,8,168,1,169,1,169,3,169,4462,8,169,1,169,1,169,3,169,4466, + 8,169,1,169,3,169,4469,8,169,1,169,3,169,4472,8,169,1,169,3,169, + 4475,8,169,1,170,1,170,1,170,1,171,1,171,3,171,4482,8,171,1,171, + 1,171,3,171,4486,8,171,1,171,1,171,1,172,1,172,1,172,1,172,1,173, + 1,173,1,173,1,173,1,173,5,173,4499,8,173,10,173,12,173,4502,9,173, + 1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,175,1,176,1,176,3,176, + 4514,8,176,1,176,1,176,1,176,1,176,5,176,4520,8,176,10,176,12,176, + 4523,9,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,4532, + 8,177,1,178,1,178,3,178,4536,8,178,1,178,3,178,4539,8,178,1,178, + 1,178,1,179,1,179,3,179,4545,8,179,1,179,3,179,4548,8,179,1,179, + 3,179,4551,8,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180, + 4560,8,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,4569, + 8,181,1,182,1,182,1,182,1,182,1,182,1,182,5,182,4577,8,182,10,182, + 12,182,4580,9,182,1,182,3,182,4583,8,182,1,183,1,183,1,183,1,183, + 1,183,1,183,5,183,4591,8,183,10,183,12,183,4594,9,183,1,183,3,183, + 4597,8,183,1,184,1,184,1,184,1,184,1,184,1,184,1,184,5,184,4606, + 8,184,10,184,12,184,4609,9,184,1,184,3,184,4612,8,184,1,185,1,185, + 1,185,1,185,1,185,1,185,1,185,3,185,4621,8,185,1,186,1,186,1,186, + 1,186,1,186,5,186,4628,8,186,10,186,12,186,4631,9,186,3,186,4633, + 8,186,1,186,1,186,3,186,4637,8,186,1,186,5,186,4640,8,186,10,186, + 12,186,4643,9,186,1,186,3,186,4646,8,186,1,187,1,187,1,187,1,187, + 1,187,5,187,4653,8,187,10,187,12,187,4656,9,187,3,187,4658,8,187, + 1,187,3,187,4661,8,187,1,188,1,188,1,188,1,188,1,188,3,188,4668, + 8,188,1,188,1,188,1,188,1,188,3,188,4674,8,188,1,188,1,188,1,188, + 1,188,3,188,4680,8,188,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,190,1,190,1,190,1,190, - 1,190,1,190,1,190,5,190,4741,8,190,10,190,12,190,4744,9,190,3,190, - 4746,8,190,1,190,3,190,4749,8,190,1,191,1,191,1,192,1,192,1,193, - 1,193,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, - 1,194,3,194,4768,8,194,3,194,4770,8,194,1,195,1,195,1,195,1,195, - 1,196,1,196,1,196,1,196,1,196,1,196,5,196,4782,8,196,10,196,12,196, - 4785,9,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,5,196, - 4795,8,196,10,196,12,196,4798,9,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,5,196,4832,8,196,10,196,12,196,4835, - 9,196,1,196,1,196,3,196,4839,8,196,1,197,1,197,1,197,1,197,1,197, + 1,190,1,190,1,190,1,190,5,190,4704,8,190,10,190,12,190,4707,9,190, + 3,190,4709,8,190,1,190,3,190,4712,8,190,1,191,1,191,1,192,1,192, + 1,193,1,193,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, + 1,194,1,194,3,194,4731,8,194,3,194,4733,8,194,1,195,1,195,1,195, + 1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, + 1,195,1,195,1,195,1,195,1,195,5,195,4754,8,195,10,195,12,195,4757, + 9,195,3,195,4759,8,195,1,195,3,195,4762,8,195,1,196,1,196,1,197, 1,197,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,3,199,4874,8,199,1,200,1,200, - 1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,1,200,3,200, - 4888,8,200,1,201,1,201,1,201,5,201,4893,8,201,10,201,12,201,4896, - 9,201,1,201,3,201,4899,8,201,1,202,1,202,1,202,1,202,3,202,4905, - 8,202,1,203,1,203,1,203,1,203,1,203,1,203,3,203,4913,8,203,3,203, - 4915,8,203,1,204,1,204,1,204,1,204,1,205,1,205,1,205,1,205,1,205, - 3,205,4926,8,205,1,206,1,206,1,206,1,206,1,207,1,207,1,207,1,207, - 3,207,4936,8,207,1,208,1,208,1,208,1,208,1,208,3,208,4943,8,208, - 1,209,1,209,1,209,1,209,3,209,4949,8,209,1,210,1,210,1,210,1,210, - 1,211,1,211,3,211,4957,8,211,1,212,1,212,1,212,3,212,4962,8,212, - 1,212,1,212,1,212,1,212,5,212,4968,8,212,10,212,12,212,4971,9,212, - 1,212,1,212,1,212,5,212,4976,8,212,10,212,12,212,4979,9,212,1,212, - 1,212,1,212,5,212,4984,8,212,10,212,12,212,4987,9,212,1,212,1,212, - 1,212,5,212,4992,8,212,10,212,12,212,4995,9,212,1,212,5,212,4998, - 8,212,10,212,12,212,5001,9,212,1,212,1,212,3,212,5005,8,212,1,213, - 1,213,1,213,3,213,5010,8,213,1,213,4,213,5013,8,213,11,213,12,213, - 5014,1,213,1,213,4,213,5019,8,213,11,213,12,213,5020,3,213,5023, - 8,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,4,214,5032,8,214, - 11,214,12,214,5033,1,214,5,214,5037,8,214,10,214,12,214,5040,9,214, - 1,214,1,214,4,214,5044,8,214,11,214,12,214,5045,3,214,5048,8,214, - 1,214,1,214,1,214,1,215,1,215,1,215,1,216,1,216,1,216,1,217,1,217, - 1,217,3,217,5062,8,217,1,217,1,217,4,217,5066,8,217,11,217,12,217, - 5067,1,217,1,217,1,217,3,217,5073,8,217,1,218,1,218,1,218,3,218, - 5078,8,218,1,218,1,218,4,218,5082,8,218,11,218,12,218,5083,1,218, - 1,218,1,218,1,218,1,218,3,218,5091,8,218,1,219,1,219,1,219,1,220, - 1,220,1,220,3,220,5099,8,220,1,220,1,220,1,220,1,220,4,220,5105, - 8,220,11,220,12,220,5106,1,220,1,220,1,220,3,220,5112,8,220,1,221, - 1,221,1,221,1,221,3,221,5118,8,221,1,221,3,221,5121,8,221,1,221, - 1,221,1,221,1,221,1,221,1,221,3,221,5129,8,221,1,222,1,222,1,222, - 1,222,1,222,3,222,5136,8,222,1,223,1,223,1,223,1,223,1,223,1,223, - 1,223,3,223,5145,8,223,1,223,3,223,5148,8,223,1,224,1,224,1,224, - 1,224,1,224,1,224,1,225,1,225,1,225,1,225,1,225,1,225,1,225,5,225, - 5163,8,225,10,225,12,225,5166,9,225,1,225,1,225,1,226,1,226,1,226, - 3,226,5173,8,226,1,226,1,226,1,226,1,226,1,226,1,226,3,226,5181, - 8,226,1,227,1,227,3,227,5185,8,227,1,227,1,227,1,228,1,228,1,228, - 3,228,5192,8,228,1,228,1,228,4,228,5196,8,228,11,228,12,228,5197, - 1,229,1,229,1,229,1,229,4,229,5204,8,229,11,229,12,229,5205,1,230, - 1,230,1,230,3,230,5211,8,230,1,230,1,230,1,230,5,230,5216,8,230, - 10,230,12,230,5219,9,230,1,230,1,230,1,230,5,230,5224,8,230,10,230, - 12,230,5227,9,230,1,230,1,230,1,230,1,230,3,230,5233,8,230,1,230, - 5,230,5236,8,230,10,230,12,230,5239,9,230,3,230,5241,8,230,3,230, - 5243,8,230,1,230,1,230,4,230,5247,8,230,11,230,12,230,5248,3,230, - 5251,8,230,1,230,1,230,5,230,5255,8,230,10,230,12,230,5258,9,230, - 1,230,1,230,3,230,5262,8,230,1,230,1,230,1,230,1,230,1,230,3,230, - 5269,8,230,1,231,1,231,1,231,3,231,5274,8,231,1,231,1,231,3,231, - 5278,8,231,1,231,1,231,1,231,3,231,5283,8,231,5,231,5285,8,231,10, - 231,12,231,5288,9,231,1,231,1,231,1,231,3,231,5293,8,231,1,231,1, - 231,1,231,1,231,3,231,5299,8,231,1,231,5,231,5302,8,231,10,231,12, - 231,5305,9,231,3,231,5307,8,231,3,231,5309,8,231,1,231,1,231,4,231, - 5313,8,231,11,231,12,231,5314,3,231,5317,8,231,1,231,1,231,5,231, - 5321,8,231,10,231,12,231,5324,9,231,1,231,1,231,3,231,5328,8,231, - 1,232,1,232,1,232,3,232,5333,8,232,1,232,1,232,1,232,5,232,5338, - 8,232,10,232,12,232,5341,9,232,1,233,1,233,1,233,1,233,5,233,5347, - 8,233,10,233,12,233,5350,9,233,1,233,1,233,3,233,5354,8,233,1,233, - 1,233,1,233,1,233,1,233,5,233,5361,8,233,10,233,12,233,5364,9,233, - 1,233,3,233,5367,8,233,1,233,1,233,1,233,1,233,3,233,5373,8,233, - 1,233,5,233,5376,8,233,10,233,12,233,5379,9,233,3,233,5381,8,233, - 3,233,5383,8,233,1,233,1,233,1,233,1,233,5,233,5389,8,233,10,233, - 12,233,5392,9,233,3,233,5394,8,233,1,233,1,233,1,233,1,233,1,233, - 3,233,5401,8,233,3,233,5403,8,233,1,233,1,233,1,233,3,233,5408,8, - 233,1,233,1,233,1,233,5,233,5413,8,233,10,233,12,233,5416,9,233, - 1,233,1,233,1,233,1,233,5,233,5422,8,233,10,233,12,233,5425,9,233, - 1,233,1,233,1,233,3,233,5430,8,233,3,233,5432,8,233,1,234,1,234, - 1,234,1,234,1,234,3,234,5439,8,234,1,234,3,234,5442,8,234,1,235, - 1,235,1,235,1,235,1,235,1,235,1,235,1,235,5,235,5452,8,235,10,235, - 12,235,5455,9,235,1,235,1,235,1,235,3,235,5460,8,235,1,236,1,236, - 1,236,1,236,1,236,1,236,3,236,5468,8,236,1,236,3,236,5471,8,236, - 1,236,1,236,3,236,5475,8,236,1,236,3,236,5478,8,236,1,236,1,236, - 3,236,5482,8,236,3,236,5484,8,236,1,237,1,237,1,237,1,237,1,237, - 1,237,1,237,1,237,1,237,3,237,5495,8,237,1,237,3,237,5498,8,237, - 1,237,1,237,3,237,5502,8,237,1,237,3,237,5505,8,237,1,237,3,237, - 5508,8,237,1,238,1,238,1,238,1,238,1,238,3,238,5515,8,238,1,239, - 1,239,1,239,1,239,1,239,1,239,1,239,1,239,5,239,5525,8,239,10,239, - 12,239,5528,9,239,3,239,5530,8,239,1,240,1,240,1,240,1,240,1,240, - 3,240,5537,8,240,1,240,1,240,5,240,5541,8,240,10,240,12,240,5544, - 9,240,1,241,1,241,1,241,1,241,1,241,5,241,5551,8,241,10,241,12,241, - 5554,9,241,1,242,1,242,3,242,5558,8,242,1,242,1,242,1,242,5,242, - 5563,8,242,10,242,12,242,5566,9,242,1,242,1,242,3,242,5570,8,242, - 1,242,1,242,1,242,1,242,3,242,5576,8,242,1,242,1,242,3,242,5580, - 8,242,1,242,1,242,3,242,5584,8,242,1,242,1,242,1,242,1,242,1,242, - 1,242,3,242,5592,8,242,1,242,1,242,3,242,5596,8,242,1,242,1,242, - 3,242,5600,8,242,1,242,1,242,1,242,1,242,3,242,5606,8,242,3,242, - 5608,8,242,1,243,1,243,1,243,1,243,1,244,1,244,1,245,1,245,1,245, - 1,245,3,245,5620,8,245,1,245,1,245,1,245,3,245,5625,8,245,1,245, - 1,245,1,245,1,245,3,245,5631,8,245,1,245,1,245,1,245,1,245,3,245, - 5637,8,245,1,245,1,245,3,245,5641,8,245,1,245,1,245,1,245,3,245, - 5646,8,245,3,245,5648,8,245,1,246,1,246,1,246,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,247,3,247,5672,8,247,4,247,5674,8,247, - 11,247,12,247,5675,1,247,3,247,5679,8,247,1,248,1,248,1,248,1,248, - 1,248,1,248,1,248,3,248,5688,8,248,1,248,1,248,3,248,5692,8,248, - 1,248,1,248,1,248,1,248,1,248,1,248,1,248,3,248,5701,8,248,1,248, - 1,248,3,248,5705,8,248,1,248,1,248,3,248,5709,8,248,1,248,1,248, - 1,248,1,248,3,248,5715,8,248,3,248,5717,8,248,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,3,249,5726,8,249,1,249,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,3,249,5736,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,3,250, - 5763,8,250,1,251,1,251,3,251,5767,8,251,1,251,1,251,1,251,3,251, - 5772,8,251,1,252,1,252,1,252,1,252,1,252,3,252,5779,8,252,1,252, - 3,252,5782,8,252,1,252,1,252,1,252,1,252,3,252,5788,8,252,1,253, - 1,253,1,253,1,253,1,253,1,253,1,253,1,253,3,253,5798,8,253,1,254, - 1,254,1,254,1,254,1,254,1,254,1,254,1,254,3,254,5808,8,254,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,5818,8,255,1,255, - 1,255,1,255,1,255,3,255,5824,8,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,3,255,5833,8,255,1,255,1,255,1,255,1,255,3,255,5839, - 8,255,1,255,1,255,1,255,1,255,1,255,3,255,5846,8,255,3,255,5848, - 8,255,1,256,1,256,1,256,1,257,1,257,1,257,3,257,5856,8,257,1,257, - 1,257,1,257,1,257,3,257,5862,8,257,1,257,1,257,3,257,5866,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,3,258,5883,8,258,1,259,1,259,1,259,1,260, - 1,260,1,260,1,260,1,260,3,260,5893,8,260,1,261,1,261,3,261,5897, - 8,261,1,261,1,261,3,261,5901,8,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,3,261,5911,8,261,1,261,1,261,1,261,3,261,5916, - 8,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,1,261, - 1,261,1,261,1,261,1,261,1,261,3,261,5988,8,261,1,262,1,262,1,262, - 1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262,1,262, - 1,262,1,262,3,262,6006,8,262,1,263,1,263,1,263,1,263,1,264,1,264, - 3,264,6014,8,264,1,264,1,264,1,264,1,264,3,264,6020,8,264,1,264, - 1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,3,264,6032, - 8,264,1,264,1,264,3,264,6036,8,264,1,264,1,264,1,264,1,264,1,264, - 1,264,1,264,1,264,1,264,3,264,6047,8,264,1,264,1,264,3,264,6051, - 8,264,1,264,1,264,1,264,1,264,1,264,1,264,1,264,3,264,6060,8,264, - 1,265,1,265,1,265,1,265,5,265,6066,8,265,10,265,12,265,6069,9,265, - 1,266,1,266,1,266,1,266,3,266,6075,8,266,1,267,1,267,3,267,6079, - 8,267,1,267,1,267,1,267,1,268,1,268,3,268,6086,8,268,1,268,1,268, - 1,268,3,268,6091,8,268,1,268,3,268,6094,8,268,1,268,3,268,6097,8, - 268,1,269,1,269,1,270,1,270,1,270,1,270,1,270,1,270,1,270,3,270, - 6108,8,270,1,271,1,271,1,271,1,271,1,271,5,271,6115,8,271,10,271, - 12,271,6118,9,271,1,271,1,271,1,271,1,271,5,271,6124,8,271,10,271, - 12,271,6127,9,271,3,271,6129,8,271,1,272,1,272,1,272,1,272,1,272, - 1,273,1,273,1,273,1,273,1,273,5,273,6141,8,273,10,273,12,273,6144, - 9,273,1,274,1,274,1,274,1,274,1,274,1,274,1,275,1,275,1,275,1,275, - 1,276,1,276,1,276,1,276,1,276,3,276,6161,8,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,6174,8,276, - 1,276,3,276,6177,8,276,1,276,1,276,3,276,6181,8,276,1,276,3,276, - 6184,8,276,3,276,6186,8,276,1,277,1,277,1,277,1,277,1,277,3,277, - 6193,8,277,1,277,1,277,1,277,1,277,1,277,3,277,6200,8,277,5,277, - 6202,8,277,10,277,12,277,6205,9,277,1,277,1,277,1,277,1,277,3,277, - 6211,8,277,1,277,1,277,1,277,1,277,1,277,3,277,6218,8,277,1,277, - 3,277,6221,8,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,5,277,6235,8,277,10,277,12,277,6238,9,277, - 3,277,6240,8,277,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 3,278,6250,8,278,1,278,1,278,3,278,6254,8,278,1,278,1,278,1,278, - 1,278,3,278,6260,8,278,1,278,3,278,6263,8,278,1,278,3,278,6266,8, - 278,1,278,1,278,1,278,3,278,6271,8,278,1,278,1,278,3,278,6275,8, - 278,1,278,3,278,6278,8,278,1,278,1,278,1,278,1,278,1,278,3,278,6285, - 8,278,1,278,3,278,6288,8,278,1,278,1,278,1,278,1,278,3,278,6294, - 8,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,3,278,6330,8,278,1,278,3,278,6333,8,278,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,3,278,6345,8,278, - 1,278,3,278,6348,8,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 1,278,1,278,1,278,1,278,1,278,1,278,1,278,3,278,6364,8,278,3,278, - 6366,8,278,1,278,1,278,3,278,6370,8,278,1,278,1,278,1,278,1,278, - 1,278,3,278,6377,8,278,1,278,1,278,3,278,6381,8,278,1,278,1,278, - 1,278,1,278,1,278,3,278,6388,8,278,1,278,3,278,6391,8,278,1,278, - 1,278,1,278,1,278,1,278,5,278,6398,8,278,10,278,12,278,6401,9,278, - 3,278,6403,8,278,1,278,1,278,1,278,3,278,6408,8,278,1,278,1,278, - 1,278,1,278,3,278,6414,8,278,3,278,6416,8,278,1,278,1,278,1,278, - 1,278,3,278,6422,8,278,1,278,1,278,3,278,6426,8,278,1,279,1,279, - 1,279,1,279,3,279,6432,8,279,1,279,3,279,6435,8,279,1,279,3,279, - 6438,8,279,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280,1,280, - 1,280,1,280,3,280,6451,8,280,1,280,3,280,6454,8,280,1,281,1,281, - 1,281,1,281,3,281,6460,8,281,1,282,3,282,6463,8,282,1,282,1,282, - 1,282,1,282,1,282,1,282,3,282,6471,8,282,1,282,1,282,1,282,1,282, - 1,282,1,282,3,282,6479,8,282,1,283,1,283,1,283,1,283,3,283,6485, - 8,283,1,283,3,283,6488,8,283,1,283,1,283,3,283,6492,8,283,1,284, - 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, - 3,284,6506,8,284,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286, - 5,286,6516,8,286,10,286,12,286,6519,9,286,1,286,1,286,1,286,1,286, - 1,286,3,286,6526,8,286,1,286,1,286,3,286,6530,8,286,1,286,1,286, - 1,286,1,287,1,287,3,287,6537,8,287,1,287,1,287,1,287,5,287,6542, - 8,287,10,287,12,287,6545,9,287,1,288,1,288,3,288,6549,8,288,1,288, - 1,288,1,289,1,289,1,289,1,289,1,289,1,289,1,289,5,289,6560,8,289, - 10,289,12,289,6563,9,289,1,290,1,290,1,290,1,290,5,290,6569,8,290, - 10,290,12,290,6572,9,290,1,291,1,291,1,291,1,291,1,291,3,291,6579, - 8,291,1,292,1,292,1,292,3,292,6584,8,292,1,292,3,292,6587,8,292, - 1,293,1,293,1,293,3,293,6592,8,293,1,293,3,293,6595,8,293,1,294, - 1,294,1,295,1,295,1,296,1,296,1,296,1,296,1,296,1,296,3,296,6607, - 8,296,1,297,1,297,1,297,3,297,6612,8,297,1,297,1,297,1,297,1,297, - 1,297,1,297,1,297,1,297,1,297,1,297,1,297,3,297,6625,8,297,3,297, - 6627,8,297,1,297,1,297,1,297,3,297,6632,8,297,1,297,1,297,3,297, - 6636,8,297,1,297,3,297,6639,8,297,3,297,6641,8,297,1,298,1,298,1, - 298,1,298,1,298,3,298,6648,8,298,1,299,1,299,1,299,1,299,1,299,3, - 299,6655,8,299,1,299,3,299,6658,8,299,1,299,3,299,6661,8,299,1,299, - 1,299,1,299,1,299,3,299,6667,8,299,1,299,1,299,3,299,6671,8,299, - 1,300,1,300,1,300,1,300,3,300,6677,8,300,1,301,1,301,1,301,1,301, - 1,301,1,301,3,301,6685,8,301,1,301,1,301,1,302,1,302,1,302,1,302, - 1,302,3,302,6694,8,302,1,302,1,302,1,303,1,303,1,303,1,304,1,304, - 1,304,1,305,1,305,1,305,3,305,6707,8,305,1,305,1,305,1,305,3,305, - 6712,8,305,1,305,1,305,1,305,1,305,5,305,6718,8,305,10,305,12,305, - 6721,9,305,3,305,6723,8,305,1,306,1,306,1,306,3,306,6728,8,306,1, - 306,1,306,1,306,3,306,6733,8,306,1,306,1,306,1,306,1,306,5,306,6739, - 8,306,10,306,12,306,6742,9,306,3,306,6744,8,306,1,307,1,307,1,307, - 1,307,1,307,1,307,3,307,6752,8,307,1,308,1,308,3,308,6756,8,308, - 1,308,1,308,1,308,5,308,6761,8,308,10,308,12,308,6764,9,308,1,309, - 1,309,1,309,3,309,6769,8,309,1,309,3,309,6772,8,309,1,310,1,310, - 3,310,6776,8,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310, - 1,310,5,310,6787,8,310,10,310,12,310,6790,9,310,1,310,1,310,1,310, - 3,310,6795,8,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310,1,310, - 5,310,6805,8,310,10,310,12,310,6808,9,310,3,310,6810,8,310,1,311, - 1,311,1,312,1,312,1,312,1,312,1,312,3,312,6819,8,312,1,312,1,312, - 1,312,3,312,6824,8,312,1,313,1,313,1,314,1,314,1,315,1,315,1,316, - 1,316,1,317,1,317,1,318,1,318,1,319,1,319,1,320,1,320,1,320,5,320, - 6843,8,320,10,320,12,320,6846,9,320,1,321,1,321,1,322,1,322,1,323, - 1,323,1,324,1,324,1,325,1,325,1,325,5,325,6859,8,325,10,325,12,325, - 6862,9,325,1,326,1,326,1,327,1,327,1,327,5,327,6869,8,327,10,327, - 12,327,6872,9,327,1,328,1,328,3,328,6876,8,328,1,329,1,329,1,329, - 3,329,6881,8,329,3,329,6883,8,329,1,329,3,329,6886,8,329,1,329,1, - 329,3,329,6890,8,329,3,329,6892,8,329,1,330,1,330,1,330,5,330,6897, - 8,330,10,330,12,330,6900,9,330,1,331,1,331,1,331,3,331,6905,8,331, - 3,331,6907,8,331,1,331,3,331,6910,8,331,1,331,1,331,3,331,6914,8, - 331,1,331,3,331,6917,8,331,1,332,1,332,1,333,1,333,1,334,1,334,1, - 335,1,335,1,335,5,335,6928,8,335,10,335,12,335,6931,9,335,1,336, - 1,336,1,337,1,337,1,337,1,337,1,337,3,337,6940,8,337,1,337,3,337, - 6943,8,337,1,337,3,337,6946,8,337,1,338,1,338,1,338,1,338,1,339, - 1,339,1,339,1,340,1,340,1,340,1,340,3,340,6959,8,340,1,341,1,341, - 1,342,1,342,3,342,6965,8,342,1,342,3,342,6968,8,342,1,343,1,343, - 1,344,1,344,1,344,1,344,3,344,6976,8,344,1,345,1,345,1,346,1,346, - 1,346,3,346,6983,8,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,4,348,7001, - 8,348,11,348,12,348,7002,1,349,1,349,1,349,1,349,1,349,3,349,7010, - 8,349,3,349,7012,8,349,1,350,1,350,1,350,4,350,7017,8,350,11,350, - 12,350,7018,3,350,7021,8,350,1,351,1,351,3,351,7025,8,351,1,352, - 1,352,1,352,5,352,7030,8,352,10,352,12,352,7033,9,352,1,353,1,353, - 1,353,3,353,7038,8,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,3,354,7049,8,354,1,355,1,355,1,355,1,355,3,355,7055, - 8,355,1,356,1,356,1,357,1,357,3,357,7061,8,357,1,358,3,358,7064, - 8,358,1,358,1,358,3,358,7068,8,358,1,358,4,358,7071,8,358,11,358, - 12,358,7072,1,358,3,358,7076,8,358,1,358,1,358,3,358,7080,8,358, - 1,358,1,358,3,358,7084,8,358,3,358,7086,8,358,1,359,1,359,1,360, - 3,360,7091,8,360,1,360,1,360,1,361,3,361,7096,8,361,1,361,1,361, - 1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,1,362,3,362,7109, - 8,362,1,362,3,362,7112,8,362,1,363,1,363,3,363,7116,8,363,1,363, - 3,363,7119,8,363,1,363,3,363,7122,8,363,1,363,1,363,1,363,3,363, - 7127,8,363,1,363,1,363,1,363,3,363,7132,8,363,1,363,1,363,1,363, - 1,363,3,363,7138,8,363,1,363,3,363,7141,8,363,1,363,1,363,1,363, - 3,363,7146,8,363,1,363,3,363,7149,8,363,1,363,1,363,1,363,3,363, - 7154,8,363,1,363,3,363,7157,8,363,1,363,1,363,3,363,7161,8,363,1, - 363,5,363,7164,8,363,10,363,12,363,7167,9,363,1,363,1,363,3,363, - 7171,8,363,1,363,5,363,7174,8,363,10,363,12,363,7177,9,363,1,363, - 1,363,3,363,7181,8,363,1,363,3,363,7184,8,363,1,363,5,363,7187,8, - 363,10,363,12,363,7190,9,363,1,363,1,363,3,363,7194,8,363,1,363, - 5,363,7197,8,363,10,363,12,363,7200,9,363,1,363,1,363,1,363,3,363, - 7205,8,363,1,363,1,363,1,363,3,363,7210,8,363,1,363,1,363,1,363, - 3,363,7215,8,363,1,363,1,363,1,363,3,363,7220,8,363,1,363,1,363, - 3,363,7224,8,363,1,363,3,363,7227,8,363,1,363,1,363,1,363,3,363, - 7232,8,363,1,363,1,363,3,363,7236,8,363,1,363,1,363,3,363,7240,8, - 363,1,364,1,364,1,364,1,364,5,364,7246,8,364,10,364,12,364,7249, - 9,364,1,364,1,364,1,365,1,365,3,365,7255,8,365,1,365,1,365,3,365, - 7259,8,365,1,365,1,365,1,365,3,365,7264,8,365,1,365,1,365,1,365, - 3,365,7269,8,365,1,365,1,365,3,365,7273,8,365,3,365,7275,8,365,1, - 365,3,365,7278,8,365,1,366,1,366,1,366,1,366,1,367,1,367,1,367,1, - 367,1,367,1,367,1,368,1,368,1,368,1,368,3,368,7294,8,368,1,368,1, - 368,1,369,1,369,1,369,1,369,5,369,7302,8,369,10,369,12,369,7305, - 9,369,1,369,1,369,1,370,1,370,1,370,5,370,7312,8,370,10,370,12,370, - 7315,9,370,1,371,1,371,1,371,1,371,5,371,7321,8,371,10,371,12,371, - 7324,9,371,1,372,1,372,1,372,1,372,5,372,7330,8,372,10,372,12,372, - 7333,9,372,1,372,1,372,1,373,1,373,3,373,7339,8,373,1,374,1,374, - 1,374,5,374,7344,8,374,10,374,12,374,7347,9,374,1,375,1,375,1,375, - 5,375,7352,8,375,10,375,12,375,7355,9,375,1,376,1,376,1,376,5,376, - 7360,8,376,10,376,12,376,7363,9,376,1,377,1,377,1,377,1,377,1,377, - 1,377,1,377,1,377,1,377,3,377,7374,8,377,1,377,1,377,1,377,1,377, - 1,377,3,377,7381,8,377,1,377,1,377,1,377,1,377,1,377,1,377,1,377, - 1,377,3,377,7391,8,377,1,378,1,378,1,378,3,378,7396,8,378,1,378, - 3,378,7399,8,378,1,378,1,378,1,378,3,378,7404,8,378,1,378,3,378, - 7407,8,378,1,379,1,379,1,379,1,380,1,380,1,380,1,380,1,381,1,381, - 1,381,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382, - 3,382,7429,8,382,1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382, - 7438,8,382,1,382,3,382,7441,8,382,1,383,1,383,1,383,3,383,7446,8, - 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,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,1,383,1,383,1,383,1,383,4,383,7477,8,383, - 11,383,12,383,7478,1,383,1,383,3,383,7483,8,383,1,383,1,383,1,383, - 1,383,1,383,4,383,7490,8,383,11,383,12,383,7491,1,383,1,383,3,383, - 7496,8,383,1,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7505, - 8,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7513,8,383,1,383, - 1,383,1,383,3,383,7518,8,383,1,383,1,383,1,383,1,383,1,383,1,383, - 3,383,7526,8,383,1,383,1,383,1,383,3,383,7531,8,383,1,383,1,383, - 1,383,3,383,7536,8,383,3,383,7538,8,383,1,383,1,383,1,383,1,383, - 1,383,1,383,1,383,3,383,7547,8,383,1,383,1,383,1,383,3,383,7552, - 8,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7560,8,383,1,383, - 1,383,1,383,3,383,7565,8,383,1,383,1,383,1,383,1,383,1,383,1,383, - 3,383,7573,8,383,1,383,1,383,1,383,1,383,1,383,1,383,3,383,7581, - 8,383,1,383,3,383,7584,8,383,1,383,1,383,1,383,1,383,1,383,1,383, - 1,383,1,383,3,383,7594,8,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,1,383,1,383,1,383,1,383,3,383, - 7612,8,383,1,383,3,383,7615,8,383,1,383,3,383,7618,8,383,1,383,1, - 383,3,383,7622,8,383,1,384,1,384,1,384,1,384,1,384,1,385,1,385,1, - 385,1,385,5,385,7633,8,385,10,385,12,385,7636,9,385,1,385,1,385, - 1,385,1,385,1,385,3,385,7643,8,385,1,386,1,386,3,386,7647,8,386, - 1,387,1,387,1,387,3,387,7652,8,387,1,387,1,387,1,387,3,387,7657, - 8,387,1,387,1,387,1,387,1,387,3,387,7663,8,387,1,387,1,387,1,387, - 3,387,7668,8,387,1,387,1,387,3,387,7672,8,387,1,387,1,387,1,387, - 3,387,7677,8,387,1,387,1,387,1,387,3,387,7682,8,387,1,387,1,387, - 1,387,3,387,7687,8,387,1,387,1,387,1,387,1,387,1,387,1,387,5,387, - 7695,8,387,10,387,12,387,7698,9,387,3,387,7700,8,387,1,387,1,387, - 3,387,7704,8,387,1,387,1,387,3,387,7708,8,387,1,388,1,388,1,388, - 1,388,1,388,3,388,7715,8,388,1,388,1,388,3,388,7719,8,388,1,388, + 1,199,1,199,1,199,3,199,4781,8,199,3,199,4783,8,199,1,200,1,200, + 1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201,5,201,4795,8,201, + 10,201,12,201,4798,9,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, + 1,201,5,201,4808,8,201,10,201,12,201,4811,9,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,5,201,4845,8,201,10,201, + 12,201,4848,9,201,1,201,1,201,3,201,4852,8,201,1,202,1,202,1,202, + 1,202,1,202,1,202,1,203,1,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,3,204,4887,8,204, + 1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205, + 1,205,3,205,4901,8,205,1,206,1,206,1,206,5,206,4906,8,206,10,206, + 12,206,4909,9,206,1,206,3,206,4912,8,206,1,207,1,207,1,207,1,207, + 3,207,4918,8,207,1,208,1,208,1,208,1,208,1,208,1,208,3,208,4926, + 8,208,3,208,4928,8,208,1,209,1,209,1,209,1,209,1,210,1,210,1,210, + 1,210,1,210,3,210,4939,8,210,1,211,1,211,1,211,1,211,1,212,1,212, + 1,212,1,212,3,212,4949,8,212,1,213,1,213,1,213,1,213,1,213,3,213, + 4956,8,213,1,214,1,214,1,214,1,214,3,214,4962,8,214,1,215,1,215, + 1,215,1,215,1,216,1,216,3,216,4970,8,216,1,217,1,217,1,217,3,217, + 4975,8,217,1,217,1,217,1,217,1,217,5,217,4981,8,217,10,217,12,217, + 4984,9,217,1,217,1,217,1,217,5,217,4989,8,217,10,217,12,217,4992, + 9,217,1,217,1,217,1,217,5,217,4997,8,217,10,217,12,217,5000,9,217, + 1,217,1,217,1,217,5,217,5005,8,217,10,217,12,217,5008,9,217,1,217, + 5,217,5011,8,217,10,217,12,217,5014,9,217,1,217,1,217,3,217,5018, + 8,217,1,218,1,218,1,218,3,218,5023,8,218,1,218,4,218,5026,8,218, + 11,218,12,218,5027,1,218,1,218,4,218,5032,8,218,11,218,12,218,5033, + 3,218,5036,8,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,4,219, + 5045,8,219,11,219,12,219,5046,1,219,5,219,5050,8,219,10,219,12,219, + 5053,9,219,1,219,1,219,4,219,5057,8,219,11,219,12,219,5058,3,219, + 5061,8,219,1,219,1,219,1,219,1,220,1,220,1,220,1,221,1,221,1,221, + 1,222,1,222,1,222,3,222,5075,8,222,1,222,1,222,4,222,5079,8,222, + 11,222,12,222,5080,1,222,1,222,1,222,3,222,5086,8,222,1,223,1,223, + 1,223,3,223,5091,8,223,1,223,1,223,4,223,5095,8,223,11,223,12,223, + 5096,1,223,1,223,1,223,1,223,1,223,3,223,5104,8,223,1,224,1,224, + 1,224,1,225,1,225,1,225,3,225,5112,8,225,1,225,1,225,1,225,1,225, + 4,225,5118,8,225,11,225,12,225,5119,1,225,1,225,1,225,3,225,5125, + 8,225,1,226,1,226,1,226,1,226,3,226,5131,8,226,1,226,3,226,5134, + 8,226,1,226,1,226,1,226,1,226,1,226,1,226,3,226,5142,8,226,1,227, + 1,227,1,227,1,227,1,227,3,227,5149,8,227,1,228,1,228,1,228,1,228, + 1,228,1,228,1,228,3,228,5158,8,228,1,228,3,228,5161,8,228,1,229, + 1,229,1,229,1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230, + 1,230,5,230,5176,8,230,10,230,12,230,5179,9,230,1,230,1,230,1,231, + 1,231,1,231,3,231,5186,8,231,1,231,1,231,1,231,1,231,1,231,1,231, + 3,231,5194,8,231,1,232,1,232,3,232,5198,8,232,1,232,1,232,1,233, + 1,233,1,233,3,233,5205,8,233,1,233,1,233,4,233,5209,8,233,11,233, + 12,233,5210,1,234,1,234,1,234,1,234,4,234,5217,8,234,11,234,12,234, + 5218,1,235,1,235,1,235,3,235,5224,8,235,1,235,1,235,1,235,5,235, + 5229,8,235,10,235,12,235,5232,9,235,1,235,1,235,1,235,5,235,5237, + 8,235,10,235,12,235,5240,9,235,1,235,1,235,1,235,1,235,3,235,5246, + 8,235,1,235,5,235,5249,8,235,10,235,12,235,5252,9,235,3,235,5254, + 8,235,3,235,5256,8,235,1,235,1,235,4,235,5260,8,235,11,235,12,235, + 5261,3,235,5264,8,235,1,235,1,235,5,235,5268,8,235,10,235,12,235, + 5271,9,235,1,235,1,235,3,235,5275,8,235,1,235,1,235,1,235,1,235, + 1,235,3,235,5282,8,235,1,236,1,236,1,236,3,236,5287,8,236,1,236, + 1,236,3,236,5291,8,236,1,236,1,236,1,236,3,236,5296,8,236,5,236, + 5298,8,236,10,236,12,236,5301,9,236,1,236,1,236,1,236,3,236,5306, + 8,236,1,236,1,236,1,236,1,236,3,236,5312,8,236,1,236,5,236,5315, + 8,236,10,236,12,236,5318,9,236,3,236,5320,8,236,3,236,5322,8,236, + 1,236,1,236,4,236,5326,8,236,11,236,12,236,5327,3,236,5330,8,236, + 1,236,1,236,5,236,5334,8,236,10,236,12,236,5337,9,236,1,236,1,236, + 3,236,5341,8,236,1,237,1,237,1,237,3,237,5346,8,237,1,237,1,237, + 1,237,5,237,5351,8,237,10,237,12,237,5354,9,237,1,238,1,238,1,238, + 1,238,5,238,5360,8,238,10,238,12,238,5363,9,238,1,238,1,238,3,238, + 5367,8,238,1,238,1,238,1,238,1,238,1,238,5,238,5374,8,238,10,238, + 12,238,5377,9,238,1,238,3,238,5380,8,238,1,238,1,238,1,238,1,238, + 3,238,5386,8,238,1,238,5,238,5389,8,238,10,238,12,238,5392,9,238, + 3,238,5394,8,238,3,238,5396,8,238,1,238,1,238,1,238,1,238,5,238, + 5402,8,238,10,238,12,238,5405,9,238,3,238,5407,8,238,1,238,1,238, + 1,238,1,238,1,238,3,238,5414,8,238,3,238,5416,8,238,1,238,1,238, + 1,238,3,238,5421,8,238,1,238,1,238,1,238,5,238,5426,8,238,10,238, + 12,238,5429,9,238,1,238,1,238,1,238,1,238,5,238,5435,8,238,10,238, + 12,238,5438,9,238,1,238,1,238,1,238,3,238,5443,8,238,3,238,5445, + 8,238,1,239,1,239,1,239,1,239,1,239,3,239,5452,8,239,1,239,3,239, + 5455,8,239,1,240,1,240,1,240,1,240,1,240,1,240,1,240,1,240,5,240, + 5465,8,240,10,240,12,240,5468,9,240,1,240,1,240,1,240,3,240,5473, + 8,240,1,241,1,241,1,241,1,241,1,241,1,241,3,241,5481,8,241,1,241, + 3,241,5484,8,241,1,241,1,241,3,241,5488,8,241,1,241,3,241,5491,8, + 241,1,241,1,241,3,241,5495,8,241,3,241,5497,8,241,1,242,1,242,1, + 242,1,242,1,242,1,242,1,242,1,242,1,242,3,242,5508,8,242,1,242,3, + 242,5511,8,242,1,242,1,242,3,242,5515,8,242,1,242,3,242,5518,8,242, + 1,242,3,242,5521,8,242,1,243,1,243,1,243,1,243,1,243,3,243,5528, + 8,243,1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,5,244,5538, + 8,244,10,244,12,244,5541,9,244,3,244,5543,8,244,1,245,1,245,1,245, + 1,245,1,245,3,245,5550,8,245,1,245,1,245,5,245,5554,8,245,10,245, + 12,245,5557,9,245,1,246,1,246,1,246,1,246,1,246,5,246,5564,8,246, + 10,246,12,246,5567,9,246,1,247,1,247,3,247,5571,8,247,1,247,1,247, + 1,247,5,247,5576,8,247,10,247,12,247,5579,9,247,1,247,1,247,3,247, + 5583,8,247,1,247,1,247,1,247,1,247,3,247,5589,8,247,1,247,1,247, + 3,247,5593,8,247,1,247,1,247,3,247,5597,8,247,1,247,1,247,1,247, + 1,247,1,247,1,247,3,247,5605,8,247,1,247,1,247,3,247,5609,8,247, + 1,247,1,247,3,247,5613,8,247,1,247,1,247,1,247,1,247,3,247,5619, + 8,247,3,247,5621,8,247,1,248,1,248,1,248,1,248,1,249,1,249,1,250, + 1,250,1,250,1,250,3,250,5633,8,250,1,250,1,250,1,250,3,250,5638, + 8,250,1,250,1,250,1,250,1,250,3,250,5644,8,250,1,250,1,250,1,250, + 1,250,3,250,5650,8,250,1,250,1,250,3,250,5654,8,250,1,250,1,250, + 1,250,3,250,5659,8,250,3,250,5661,8,250,1,251,1,251,1,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,1,252,3,252,5685,8,252,4,252, + 5687,8,252,11,252,12,252,5688,1,252,3,252,5692,8,252,1,253,1,253, + 1,253,1,253,1,253,1,253,1,253,3,253,5701,8,253,1,253,1,253,3,253, + 5705,8,253,1,253,1,253,1,253,1,253,1,253,1,253,1,253,3,253,5714, + 8,253,1,253,1,253,3,253,5718,8,253,1,253,1,253,3,253,5722,8,253, + 1,253,1,253,1,253,1,253,3,253,5728,8,253,3,253,5730,8,253,1,254, + 1,254,1,254,1,254,1,254,1,254,1,254,3,254,5739,8,254,1,254,1,254, + 1,254,1,254,1,254,1,254,1,254,1,254,3,254,5749,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,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, + 1,255,3,255,5776,8,255,1,256,1,256,3,256,5780,8,256,1,256,1,256, + 1,256,3,256,5785,8,256,1,257,1,257,1,257,1,257,1,257,3,257,5792, + 8,257,1,257,3,257,5795,8,257,1,257,1,257,1,257,1,257,3,257,5801, + 8,257,1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5811, + 8,258,1,259,1,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259,5821, + 8,259,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260,3,260,5831, + 8,260,1,260,1,260,1,260,1,260,3,260,5837,8,260,1,260,1,260,1,260, + 1,260,1,260,1,260,1,260,3,260,5846,8,260,1,260,1,260,1,260,1,260, + 3,260,5852,8,260,1,260,1,260,1,260,1,260,1,260,3,260,5859,8,260, + 3,260,5861,8,260,1,261,1,261,1,261,1,262,1,262,1,262,3,262,5869, + 8,262,1,262,1,262,1,262,1,262,3,262,5875,8,262,1,262,1,262,3,262, + 5879,8,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,3,263,5896,8,263,1,264,1,264, + 1,264,1,265,1,265,1,265,1,265,1,265,3,265,5906,8,265,1,266,1,266, + 3,266,5910,8,266,1,266,1,266,3,266,5914,8,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,3,266,5924,8,266,1,266,1,266,1,266, + 3,266,5929,8,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,1,266,1,266,1,266,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,6001,8,266,1,267, + 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,1,267,1,267,1,267,3,267,6019,8,267,1,268,1,268,1,268,1,268, + 1,269,1,269,3,269,6027,8,269,1,269,1,269,1,269,1,269,3,269,6033, + 8,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269, + 3,269,6045,8,269,1,269,1,269,3,269,6049,8,269,1,269,1,269,1,269, + 1,269,1,269,1,269,1,269,1,269,1,269,3,269,6060,8,269,1,269,1,269, + 3,269,6064,8,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269, + 6073,8,269,1,270,1,270,1,270,1,270,5,270,6079,8,270,10,270,12,270, + 6082,9,270,1,271,1,271,1,271,1,271,3,271,6088,8,271,1,272,1,272, + 3,272,6092,8,272,1,272,1,272,1,272,1,273,1,273,3,273,6099,8,273, + 1,273,1,273,1,273,3,273,6104,8,273,1,273,3,273,6107,8,273,1,273, + 3,273,6110,8,273,1,274,1,274,1,275,1,275,1,275,1,275,1,275,1,275, + 1,275,3,275,6121,8,275,1,276,1,276,1,276,1,276,1,276,5,276,6128, + 8,276,10,276,12,276,6131,9,276,1,276,1,276,1,276,1,276,5,276,6137, + 8,276,10,276,12,276,6140,9,276,3,276,6142,8,276,1,277,1,277,1,277, + 1,277,1,277,1,278,1,278,1,278,1,278,1,278,5,278,6154,8,278,10,278, + 12,278,6157,9,278,1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280, + 1,280,1,280,1,281,1,281,1,281,1,281,1,281,3,281,6174,8,281,1,281, + 1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281, + 6187,8,281,1,281,3,281,6190,8,281,1,281,1,281,3,281,6194,8,281,1, + 281,3,281,6197,8,281,3,281,6199,8,281,1,282,1,282,1,282,1,282,1, + 282,3,282,6206,8,282,1,282,1,282,1,282,1,282,1,282,3,282,6213,8, + 282,5,282,6215,8,282,10,282,12,282,6218,9,282,1,282,1,282,1,282, + 1,282,3,282,6224,8,282,1,282,1,282,1,282,1,282,1,282,3,282,6231, + 8,282,1,282,3,282,6234,8,282,1,282,1,282,1,282,1,282,1,282,1,282, + 1,282,1,282,1,282,1,282,1,282,1,282,5,282,6248,8,282,10,282,12,282, + 6251,9,282,3,282,6253,8,282,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,3,283,6263,8,283,1,283,1,283,3,283,6267,8,283,1,283, + 1,283,1,283,1,283,3,283,6273,8,283,1,283,3,283,6276,8,283,1,283, + 3,283,6279,8,283,1,283,1,283,1,283,3,283,6284,8,283,1,283,1,283, + 3,283,6288,8,283,1,283,3,283,6291,8,283,1,283,1,283,1,283,1,283, + 1,283,3,283,6298,8,283,1,283,3,283,6301,8,283,1,283,1,283,1,283, + 1,283,3,283,6307,8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,3,283,6343,8,283,1,283,3,283,6346, + 8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 3,283,6358,8,283,1,283,3,283,6361,8,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283, + 6377,8,283,3,283,6379,8,283,1,283,1,283,3,283,6383,8,283,1,283,1, + 283,1,283,1,283,1,283,3,283,6390,8,283,1,283,1,283,3,283,6394,8, + 283,1,283,1,283,1,283,1,283,1,283,3,283,6401,8,283,1,283,3,283,6404, + 8,283,1,283,1,283,1,283,1,283,1,283,5,283,6411,8,283,10,283,12,283, + 6414,9,283,3,283,6416,8,283,1,283,1,283,1,283,3,283,6421,8,283,1, + 283,1,283,1,283,1,283,3,283,6427,8,283,3,283,6429,8,283,1,283,1, + 283,1,283,1,283,3,283,6435,8,283,1,283,1,283,3,283,6439,8,283,1, + 284,1,284,1,284,1,284,3,284,6445,8,284,1,284,3,284,6448,8,284,1, + 284,3,284,6451,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1, + 285,1,285,1,285,1,285,3,285,6464,8,285,1,285,3,285,6467,8,285,1, + 286,1,286,1,286,1,286,3,286,6473,8,286,1,287,3,287,6476,8,287,1, + 287,1,287,1,287,1,287,1,287,1,287,3,287,6484,8,287,1,287,1,287,1, + 287,1,287,1,287,1,287,3,287,6492,8,287,1,288,1,288,1,288,1,288,3, + 288,6498,8,288,1,288,3,288,6501,8,288,1,288,1,288,3,288,6505,8,288, + 1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289, + 1,289,3,289,6519,8,289,1,290,1,290,1,290,1,291,1,291,1,291,1,291, + 1,291,5,291,6529,8,291,10,291,12,291,6532,9,291,1,291,1,291,1,291, + 1,291,1,291,3,291,6539,8,291,1,291,1,291,3,291,6543,8,291,1,291, + 1,291,1,291,1,292,1,292,3,292,6550,8,292,1,292,1,292,1,292,5,292, + 6555,8,292,10,292,12,292,6558,9,292,1,293,1,293,3,293,6562,8,293, + 1,293,1,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294,5,294,6573, + 8,294,10,294,12,294,6576,9,294,1,295,1,295,1,295,1,295,5,295,6582, + 8,295,10,295,12,295,6585,9,295,1,296,1,296,1,296,1,296,1,296,3,296, + 6592,8,296,1,297,1,297,1,297,3,297,6597,8,297,1,297,3,297,6600,8, + 297,1,298,1,298,1,298,3,298,6605,8,298,1,298,3,298,6608,8,298,1, + 299,1,299,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,3,301, + 6620,8,301,1,302,1,302,1,302,3,302,6625,8,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,3,302,6638,8,302, + 3,302,6640,8,302,1,302,1,302,1,302,3,302,6645,8,302,1,302,1,302, + 3,302,6649,8,302,1,302,3,302,6652,8,302,3,302,6654,8,302,1,303,1, + 303,1,303,1,303,1,303,3,303,6661,8,303,1,304,1,304,1,304,1,304,1, + 304,3,304,6668,8,304,1,304,3,304,6671,8,304,1,304,3,304,6674,8,304, + 1,304,1,304,1,304,1,304,3,304,6680,8,304,1,304,1,304,3,304,6684, + 8,304,1,305,1,305,1,305,1,305,3,305,6690,8,305,1,306,1,306,1,306, + 1,306,1,306,1,306,3,306,6698,8,306,1,306,1,306,1,307,1,307,1,307, + 1,307,1,307,3,307,6707,8,307,1,307,1,307,1,308,1,308,1,308,1,309, + 1,309,1,309,1,310,1,310,1,310,3,310,6720,8,310,1,310,1,310,1,310, + 3,310,6725,8,310,1,310,1,310,1,310,1,310,5,310,6731,8,310,10,310, + 12,310,6734,9,310,3,310,6736,8,310,1,311,1,311,1,311,3,311,6741, + 8,311,1,311,1,311,1,311,3,311,6746,8,311,1,311,1,311,1,311,1,311, + 5,311,6752,8,311,10,311,12,311,6755,9,311,3,311,6757,8,311,1,312, + 1,312,1,312,1,312,1,312,1,312,3,312,6765,8,312,1,313,1,313,3,313, + 6769,8,313,1,313,1,313,1,313,5,313,6774,8,313,10,313,12,313,6777, + 9,313,1,314,1,314,1,314,3,314,6782,8,314,1,314,3,314,6785,8,314, + 1,315,1,315,3,315,6789,8,315,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,1,315,1,315,5,315,6800,8,315,10,315,12,315,6803,9,315,1,315, + 1,315,1,315,3,315,6808,8,315,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,1,315,5,315,6818,8,315,10,315,12,315,6821,9,315,3,315,6823, + 8,315,1,316,1,316,1,317,1,317,1,317,1,317,1,317,3,317,6832,8,317, + 1,317,1,317,1,317,3,317,6837,8,317,1,318,1,318,1,319,1,319,1,320, + 1,320,1,321,1,321,1,322,1,322,1,323,1,323,1,324,1,324,1,325,1,325, + 1,325,5,325,6856,8,325,10,325,12,325,6859,9,325,1,326,1,326,1,327, + 1,327,1,328,1,328,1,329,1,329,1,330,1,330,1,330,5,330,6872,8,330, + 10,330,12,330,6875,9,330,1,331,1,331,1,332,1,332,1,332,5,332,6882, + 8,332,10,332,12,332,6885,9,332,1,333,1,333,3,333,6889,8,333,1,334, + 1,334,1,334,3,334,6894,8,334,3,334,6896,8,334,1,334,3,334,6899,8, + 334,1,334,1,334,3,334,6903,8,334,3,334,6905,8,334,1,335,1,335,1, + 335,5,335,6910,8,335,10,335,12,335,6913,9,335,1,336,1,336,1,336, + 3,336,6918,8,336,3,336,6920,8,336,1,336,3,336,6923,8,336,1,336,1, + 336,3,336,6927,8,336,1,336,3,336,6930,8,336,1,337,1,337,1,338,1, + 338,1,339,1,339,1,340,1,340,1,340,5,340,6941,8,340,10,340,12,340, + 6944,9,340,1,341,1,341,1,342,1,342,1,342,1,342,1,342,3,342,6953, + 8,342,1,342,3,342,6956,8,342,1,342,3,342,6959,8,342,1,343,1,343, + 1,343,1,343,1,344,1,344,1,344,1,345,1,345,1,345,1,345,3,345,6972, + 8,345,1,346,1,346,1,347,1,347,3,347,6978,8,347,1,347,3,347,6981, + 8,347,1,348,1,348,1,349,1,349,1,349,1,349,3,349,6989,8,349,1,350, + 1,350,1,351,1,351,1,351,3,351,6996,8,351,1,352,1,352,1,353,1,353, + 1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353,1,353, + 1,353,4,353,7014,8,353,11,353,12,353,7015,1,354,1,354,1,354,1,354, + 1,354,3,354,7023,8,354,3,354,7025,8,354,1,355,1,355,1,355,4,355, + 7030,8,355,11,355,12,355,7031,3,355,7034,8,355,1,356,1,356,3,356, + 7038,8,356,1,357,1,357,1,357,5,357,7043,8,357,10,357,12,357,7046, + 9,357,1,358,1,358,1,358,3,358,7051,8,358,1,359,1,359,1,359,1,359, + 1,359,1,359,1,359,1,359,1,359,3,359,7062,8,359,1,360,1,360,1,360, + 1,360,3,360,7068,8,360,1,361,1,361,1,362,1,362,3,362,7074,8,362, + 1,363,3,363,7077,8,363,1,363,1,363,3,363,7081,8,363,1,363,4,363, + 7084,8,363,11,363,12,363,7085,1,363,3,363,7089,8,363,1,363,1,363, + 3,363,7093,8,363,1,363,1,363,3,363,7097,8,363,3,363,7099,8,363,1, + 364,1,364,1,365,3,365,7104,8,365,1,365,1,365,1,366,3,366,7109,8, + 366,1,366,1,366,1,367,1,367,1,367,1,367,1,367,1,367,1,367,1,367, + 1,367,3,367,7122,8,367,1,367,3,367,7125,8,367,1,368,1,368,3,368, + 7129,8,368,1,368,3,368,7132,8,368,1,368,3,368,7135,8,368,1,368,1, + 368,1,368,3,368,7140,8,368,1,368,1,368,1,368,3,368,7145,8,368,1, + 368,1,368,1,368,1,368,3,368,7151,8,368,1,368,3,368,7154,8,368,1, + 368,1,368,1,368,3,368,7159,8,368,1,368,3,368,7162,8,368,1,368,1, + 368,1,368,3,368,7167,8,368,1,368,3,368,7170,8,368,1,368,1,368,3, + 368,7174,8,368,1,368,5,368,7177,8,368,10,368,12,368,7180,9,368,1, + 368,1,368,3,368,7184,8,368,1,368,5,368,7187,8,368,10,368,12,368, + 7190,9,368,1,368,1,368,3,368,7194,8,368,1,368,3,368,7197,8,368,1, + 368,5,368,7200,8,368,10,368,12,368,7203,9,368,1,368,1,368,3,368, + 7207,8,368,1,368,5,368,7210,8,368,10,368,12,368,7213,9,368,1,368, + 1,368,1,368,3,368,7218,8,368,1,368,1,368,1,368,3,368,7223,8,368, + 1,368,1,368,1,368,3,368,7228,8,368,1,368,1,368,1,368,3,368,7233, + 8,368,1,368,1,368,3,368,7237,8,368,1,368,3,368,7240,8,368,1,368, + 1,368,1,368,3,368,7245,8,368,1,368,1,368,3,368,7249,8,368,1,368, + 1,368,3,368,7253,8,368,1,369,1,369,1,369,1,369,5,369,7259,8,369, + 10,369,12,369,7262,9,369,1,369,1,369,1,370,1,370,3,370,7268,8,370, + 1,370,1,370,3,370,7272,8,370,1,370,1,370,1,370,3,370,7277,8,370, + 1,370,1,370,1,370,3,370,7282,8,370,1,370,1,370,3,370,7286,8,370, + 3,370,7288,8,370,1,370,3,370,7291,8,370,1,371,1,371,1,371,1,371, + 1,372,1,372,1,372,1,372,1,372,1,372,1,373,1,373,1,373,1,373,3,373, + 7307,8,373,1,373,1,373,1,374,1,374,1,374,1,374,5,374,7315,8,374, + 10,374,12,374,7318,9,374,1,374,1,374,1,375,1,375,1,375,5,375,7325, + 8,375,10,375,12,375,7328,9,375,1,376,1,376,1,376,1,376,5,376,7334, + 8,376,10,376,12,376,7337,9,376,1,377,1,377,1,377,1,377,5,377,7343, + 8,377,10,377,12,377,7346,9,377,1,377,1,377,1,378,1,378,3,378,7352, + 8,378,1,379,1,379,1,379,5,379,7357,8,379,10,379,12,379,7360,9,379, + 1,380,1,380,1,380,5,380,7365,8,380,10,380,12,380,7368,9,380,1,381, + 1,381,1,381,5,381,7373,8,381,10,381,12,381,7376,9,381,1,382,1,382, + 1,382,1,382,1,382,1,382,1,382,1,382,1,382,3,382,7387,8,382,1,382, + 1,382,1,382,1,382,1,382,3,382,7394,8,382,1,382,1,382,1,382,1,382, + 1,382,1,382,1,382,1,382,3,382,7404,8,382,1,383,1,383,1,383,3,383, + 7409,8,383,1,383,3,383,7412,8,383,1,383,1,383,1,383,3,383,7417,8, + 383,1,383,3,383,7420,8,383,1,384,1,384,1,384,1,385,1,385,1,385,1, + 385,1,386,1,386,1,386,1,387,1,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,1,387,3,387,7442,8,387,1,387,1,387,1,387,1,387,1,387, + 1,387,1,387,3,387,7451,8,387,1,387,3,387,7454,8,387,1,388,1,388, + 1,388,3,388,7459,8,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, - 1,388,1,388,1,388,1,388,3,388,7748,8,388,1,389,1,389,1,389,1,389, - 1,389,1,389,3,389,7756,8,389,1,390,3,390,7759,8,390,1,390,3,390, - 7762,8,390,1,390,3,390,7765,8,390,1,390,3,390,7768,8,390,1,391,1, - 391,1,392,1,392,1,392,1,393,1,393,1,394,1,394,3,394,7779,8,394,1, - 395,1,395,1,395,1,395,1,395,1,396,1,396,1,396,1,396,1,396,1,396, - 1,396,3,396,7793,8,396,1,397,1,397,1,397,1,397,1,397,5,397,7800, - 8,397,10,397,12,397,7803,9,397,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,1,398,1,398,1,398, - 1,398,1,398,1,398,1,398,1,398,1,398,1,398,3,398,7829,8,398,1,399, - 1,399,1,399,1,399,1,399,1,400,1,400,1,400,5,400,7839,8,400,10,400, - 12,400,7842,9,400,1,401,1,401,1,401,3,401,7847,8,401,1,402,1,402, - 1,402,1,402,1,402,1,402,3,402,7855,8,402,1,402,1,402,1,402,3,402, - 7860,8,402,1,402,1,402,1,402,1,402,5,402,7866,8,402,10,402,12,402, - 7869,9,402,1,403,1,403,1,403,1,403,1,403,3,403,7876,8,403,1,403, + 4,388,7490,8,388,11,388,12,388,7491,1,388,1,388,3,388,7496,8,388, + 1,388,1,388,1,388,1,388,1,388,4,388,7503,8,388,11,388,12,388,7504, + 1,388,1,388,3,388,7509,8,388,1,388,1,388,1,388,1,388,1,388,1,388, + 1,388,3,388,7518,8,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388, + 7526,8,388,1,388,1,388,1,388,3,388,7531,8,388,1,388,1,388,1,388, + 1,388,1,388,1,388,3,388,7539,8,388,1,388,1,388,1,388,3,388,7544, + 8,388,1,388,1,388,1,388,3,388,7549,8,388,3,388,7551,8,388,1,388, + 1,388,1,388,1,388,1,388,1,388,1,388,3,388,7560,8,388,1,388,1,388, + 1,388,3,388,7565,8,388,1,388,1,388,1,388,1,388,1,388,1,388,3,388, + 7573,8,388,1,388,1,388,1,388,3,388,7578,8,388,1,388,1,388,1,388, + 1,388,1,388,1,388,3,388,7586,8,388,1,388,1,388,1,388,1,388,1,388, + 1,388,3,388,7594,8,388,1,388,3,388,7597,8,388,1,388,1,388,1,388, + 1,388,1,388,1,388,1,388,1,388,3,388,7607,8,388,1,388,1,388,1,388, + 1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388,1,388, + 1,388,1,388,3,388,7625,8,388,1,388,3,388,7628,8,388,1,388,3,388, + 7631,8,388,1,388,1,388,3,388,7635,8,388,1,389,1,389,1,389,1,389, + 1,389,1,390,1,390,1,390,1,390,5,390,7646,8,390,10,390,12,390,7649, + 9,390,1,390,1,390,1,390,1,390,1,390,3,390,7656,8,390,1,391,1,391, + 3,391,7660,8,391,1,392,1,392,1,392,3,392,7665,8,392,1,392,1,392, + 1,392,3,392,7670,8,392,1,392,1,392,1,392,1,392,3,392,7676,8,392, + 1,392,1,392,1,392,3,392,7681,8,392,1,392,1,392,3,392,7685,8,392, + 1,392,1,392,1,392,3,392,7690,8,392,1,392,1,392,1,392,3,392,7695, + 8,392,1,392,1,392,1,392,3,392,7700,8,392,1,392,1,392,1,392,1,392, + 1,392,1,392,5,392,7708,8,392,10,392,12,392,7711,9,392,3,392,7713, + 8,392,1,392,1,392,3,392,7717,8,392,1,392,1,392,3,392,7721,8,392, + 1,393,1,393,1,393,1,393,1,393,3,393,7728,8,393,1,393,1,393,3,393, + 7732,8,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393,1,393, + 1,393,1,393,1,393,1,393,1,393,1,393,1,393,3,393,7761,8,393,1,394, + 1,394,1,394,1,394,1,394,1,394,3,394,7769,8,394,1,395,3,395,7772, + 8,395,1,395,3,395,7775,8,395,1,395,3,395,7778,8,395,1,395,3,395, + 7781,8,395,1,396,1,396,1,397,1,397,1,397,1,398,1,398,1,399,1,399, + 3,399,7792,8,399,1,400,1,400,1,400,1,400,1,400,1,401,1,401,1,401, + 1,401,1,401,1,401,1,401,3,401,7806,8,401,1,402,1,402,1,402,1,402, + 1,402,5,402,7813,8,402,10,402,12,402,7816,9,402,1,403,1,403,1,403, + 1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403, 1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,1,403,3,403, - 7889,8,403,1,403,1,403,1,403,1,403,3,403,7895,8,403,1,403,1,403, - 1,403,1,403,3,403,7901,8,403,1,403,1,403,1,403,1,403,1,403,1,403, - 1,403,1,403,1,403,1,403,1,403,1,403,1,403,3,403,7916,8,403,1,403, - 1,403,3,403,7920,8,403,1,403,1,403,1,403,1,403,3,403,7926,8,403, - 1,403,1,403,1,403,1,403,1,403,1,403,1,403,5,403,7935,8,403,10,403, - 12,403,7938,9,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,5,404,7956,8,404, - 10,404,12,404,7959,9,404,1,404,1,404,1,404,1,404,1,404,1,404,1,404, - 4,404,7968,8,404,11,404,12,404,7969,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,7988,8,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,5,404,8005,8,404,10,404, - 12,404,8008,9,404,1,405,1,405,1,406,1,406,1,406,1,406,1,406,1,406, - 1,406,1,406,3,406,8020,8,406,1,407,1,407,1,407,1,407,1,407,1,407, - 1,407,3,407,8029,8,407,1,408,1,408,1,408,1,408,1,408,1,408,1,408, - 3,408,8038,8,408,1,409,1,409,1,409,1,409,1,409,1,409,1,409,3,409, - 8047,8,409,1,410,1,410,1,411,1,411,1,411,1,411,1,411,3,411,8056, - 8,411,1,412,1,412,1,413,1,413,1,414,1,414,1,415,1,415,1,416,1,416, - 1,417,1,417,1,418,1,418,1,418,0,5,214,216,804,806,808,419,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,0,160,2,0,39,39,152,152,2,0,508,508,514,514,3,0,69,69, - 161,161,182,182,3,0,42,42,357,357,430,430,4,0,42,42,389,389,505, - 505,595,595,4,0,208,208,210,210,216,216,649,649,2,0,494,494,882, - 882,2,0,79,79,143,143,2,0,16,16,306,306,3,0,44,44,86,86,185,185, - 2,0,406,406,538,538,3,0,486,486,661,661,670,670,2,0,364,364,436, - 436,2,0,325,325,450,450,2,0,42,42,871,872,2,0,37,37,678,678,2,0, - 323,323,418,418,2,0,435,435,686,686,3,0,80,80,85,85,126,126,2,0, - 82,82,92,92,2,0,69,69,161,161,3,0,42,42,374,374,403,403,3,0,42,42, - 370,370,802,802,2,0,648,648,685,685,3,0,408,408,526,526,597,597, - 2,0,329,329,522,522,1,0,871,872,2,0,882,882,889,889,2,0,82,82,360, - 360,2,0,523,523,882,882,2,0,524,524,882,882,3,0,402,402,445,445, - 502,502,7,0,42,42,342,342,345,345,374,374,403,403,554,554,889,889, - 2,0,494,494,506,506,1,0,872,873,2,0,6,6,51,51,2,0,5,5,81,81,2,0, - 27,27,31,31,4,0,42,42,357,357,430,430,434,434,2,0,368,368,375,375, - 2,0,369,369,425,425,2,0,13,13,176,176,2,0,194,194,690,690,2,0,22, - 22,146,146,3,0,43,43,76,76,107,107,2,0,7,7,49,49,2,0,107,107,347, - 347,2,0,337,337,398,398,2,0,102,102,587,587,2,0,43,43,107,107,3, - 0,59,59,181,181,828,828,2,0,185,185,594,594,2,0,159,159,503,503, - 4,0,402,402,445,445,501,501,542,542,2,0,402,402,501,501,2,0,14,14, - 45,45,3,0,66,66,79,79,187,187,2,0,35,35,84,84,2,0,98,98,150,150, - 2,0,7,7,49,50,1,0,637,638,2,0,173,173,752,752,2,0,413,413,593,593, - 2,0,228,228,453,453,2,0,563,563,598,598,8,0,108,108,455,455,459, - 460,462,462,464,464,467,476,499,499,557,557,6,0,456,458,461,461, - 463,463,465,465,477,477,558,558,7,0,109,109,411,411,416,416,454, - 454,466,466,573,573,617,617,2,0,116,116,882,882,2,0,118,119,507, - 507,7,0,499,499,557,557,606,609,611,611,619,619,622,628,630,632, - 6,0,558,558,610,610,612,612,614,616,618,618,620,620,7,0,412,412, - 416,416,573,573,613,613,617,617,621,621,629,629,3,0,70,70,118,119, - 507,507,2,0,438,438,639,639,2,0,633,633,635,635,2,0,317,317,640, - 640,2,0,91,91,577,577,2,0,51,51,362,362,3,0,32,32,61,61,180,180, - 2,0,15,15,340,340,2,0,678,678,835,835,3,0,132,132,173,173,409,409, - 3,0,6,6,51,51,492,492,3,0,13,13,20,20,188,188,2,0,42,42,122,122, - 2,0,104,104,183,183,1,0,873,874,2,0,333,333,598,598,2,0,40,40,684, - 684,2,0,392,392,549,549,2,0,115,115,450,450,3,0,413,413,531,531, - 893,894,2,0,841,841,857,857,2,0,318,318,559,559,2,0,68,68,80,80, - 3,0,132,132,178,178,385,385,2,0,493,493,645,645,2,0,383,383,688, - 688,3,0,82,82,93,93,426,426,4,0,413,413,450,450,531,532,593,593, - 2,0,645,645,683,683,2,0,349,349,548,548,6,0,228,228,380,380,382, - 382,410,410,556,556,599,599,2,0,45,46,62,62,3,0,442,442,663,663, - 666,666,10,0,332,332,339,339,351,353,359,359,487,487,495,495,650, - 650,657,657,822,822,832,832,2,0,36,36,170,170,2,0,117,117,831,831, - 11,0,332,332,339,339,351,353,359,359,487,487,495,495,578,578,650, - 650,657,657,822,822,832,832,2,0,870,870,891,892,1,0,892,893,2,0, - 348,348,797,808,3,0,871,874,883,883,885,885,2,0,63,63,179,179,2, - 0,116,116,886,886,5,0,26,26,224,226,233,233,235,238,498,498,2,0, - 26,26,224,224,2,0,26,26,224,225,1,0,198,209,3,0,184,184,197,197, - 596,596,2,0,213,218,403,403,6,0,219,219,230,230,232,232,234,234, - 241,241,321,322,4,0,220,223,228,229,231,231,319,319,2,0,155,155, - 239,239,2,0,442,442,813,821,2,0,228,228,498,498,5,0,202,202,208, - 208,219,220,222,222,442,442,1,0,216,217,2,0,184,184,596,596,2,0, - 202,202,208,208,2,0,189,189,682,682,2,0,287,288,294,294,3,0,152, - 152,285,288,303,303,1,0,297,298,3,0,18,18,96,96,177,177,2,0,224, - 224,228,228,2,0,219,220,222,222,3,0,14,14,45,45,830,830,3,0,258, - 258,270,271,281,281,3,0,259,261,277,280,282,284,2,0,267,267,269, - 269,2,0,265,265,268,268,2,0,263,264,274,276,2,0,134,134,587,587, - 2,0,405,405,539,539,2,0,512,512,529,529,2,0,114,114,860,860,3,0, - 63,63,179,179,674,674,2,0,139,139,151,151,3,0,7,7,309,309,602,602, - 3,0,114,114,853,854,860,861,1,0,850,856,2,0,228,228,756,796,1,0, - 809,812,5,0,717,718,734,736,743,743,749,750,752,752,1,0,696,703, - 3,0,219,223,236,236,239,239,75,0,12,12,15,15,19,19,30,30,36,37,42, - 42,48,48,55,55,57,57,59,59,74,74,95,95,117,117,122,122,125,125,131, - 131,160,160,170,170,241,241,255,262,266,266,270,271,277,284,304, - 309,311,329,331,343,345,376,378,393,395,400,402,404,406,410,413, - 415,417,426,428,428,430,434,436,454,456,463,465,473,475,476,478, - 498,500,506,508,510,512,522,525,530,533,538,540,542,544,554,556, - 562,565,572,575,575,577,605,633,647,649,665,667,674,676,685,687, - 688,690,695,704,704,706,707,709,712,714,716,719,721,726,727,729, - 733,737,738,740,742,744,744,746,748,751,751,753,755,802,802,822, - 822,825,825,832,833,838,838,24,0,39,39,98,98,150,150,152,152,219, - 221,223,223,253,254,262,265,267,269,272,276,296,296,435,435,686, - 686,696,703,746,746,813,813,816,821,823,824,826,827,829,831,834, - 834,836,836,840,840,856,856,9440,0,841,1,0,0,0,2,851,1,0,0,0,4,860, - 1,0,0,0,6,862,1,0,0,0,8,904,1,0,0,0,10,923,1,0,0,0,12,934,1,0,0, - 0,14,950,1,0,0,0,16,955,1,0,0,0,18,967,1,0,0,0,20,1002,1,0,0,0,22, - 1012,1,0,0,0,24,1014,1,0,0,0,26,1026,1,0,0,0,28,1056,1,0,0,0,30, - 1092,1,0,0,0,32,1143,1,0,0,0,34,1172,1,0,0,0,36,1208,1,0,0,0,38, - 1222,1,0,0,0,40,1229,1,0,0,0,42,1326,1,0,0,0,44,1328,1,0,0,0,46, - 1365,1,0,0,0,48,1429,1,0,0,0,50,1454,1,0,0,0,52,1460,1,0,0,0,54, - 1482,1,0,0,0,56,1569,1,0,0,0,58,1576,1,0,0,0,60,1578,1,0,0,0,62, - 1583,1,0,0,0,64,1623,1,0,0,0,66,1629,1,0,0,0,68,1631,1,0,0,0,70, - 1652,1,0,0,0,72,1659,1,0,0,0,74,1661,1,0,0,0,76,1686,1,0,0,0,78, - 1689,1,0,0,0,80,1694,1,0,0,0,82,1720,1,0,0,0,84,1736,1,0,0,0,86, - 1738,1,0,0,0,88,1832,1,0,0,0,90,1835,1,0,0,0,92,1847,1,0,0,0,94, - 1851,1,0,0,0,96,1901,1,0,0,0,98,1903,1,0,0,0,100,1931,1,0,0,0,102, - 1941,1,0,0,0,104,2128,1,0,0,0,106,2130,1,0,0,0,108,2132,1,0,0,0, - 110,2135,1,0,0,0,112,2210,1,0,0,0,114,2233,1,0,0,0,116,2381,1,0, - 0,0,118,2386,1,0,0,0,120,2388,1,0,0,0,122,2398,1,0,0,0,124,2454, - 1,0,0,0,126,2474,1,0,0,0,128,2476,1,0,0,0,130,2511,1,0,0,0,132,2520, - 1,0,0,0,134,2527,1,0,0,0,136,2550,1,0,0,0,138,2559,1,0,0,0,140,2574, - 1,0,0,0,142,2596,1,0,0,0,144,2652,1,0,0,0,146,2948,1,0,0,0,148,3048, - 1,0,0,0,150,3050,1,0,0,0,152,3057,1,0,0,0,154,3064,1,0,0,0,156,3087, - 1,0,0,0,158,3097,1,0,0,0,160,3104,1,0,0,0,162,3111,1,0,0,0,164,3118, - 1,0,0,0,166,3127,1,0,0,0,168,3139,1,0,0,0,170,3152,1,0,0,0,172,3159, - 1,0,0,0,174,3175,1,0,0,0,176,3202,1,0,0,0,178,3204,1,0,0,0,180,3214, - 1,0,0,0,182,3218,1,0,0,0,184,3224,1,0,0,0,186,3236,1,0,0,0,188,3238, - 1,0,0,0,190,3245,1,0,0,0,192,3247,1,0,0,0,194,3296,1,0,0,0,196,3305, - 1,0,0,0,198,3307,1,0,0,0,200,3318,1,0,0,0,202,3324,1,0,0,0,204,3398, - 1,0,0,0,206,3461,1,0,0,0,208,3479,1,0,0,0,210,3563,1,0,0,0,212,3566, - 1,0,0,0,214,3578,1,0,0,0,216,3598,1,0,0,0,218,3626,1,0,0,0,220,3630, - 1,0,0,0,222,3632,1,0,0,0,224,3642,1,0,0,0,226,3662,1,0,0,0,228,3669, - 1,0,0,0,230,3671,1,0,0,0,232,3682,1,0,0,0,234,3691,1,0,0,0,236,3697, - 1,0,0,0,238,3720,1,0,0,0,240,3722,1,0,0,0,242,3758,1,0,0,0,244,3813, - 1,0,0,0,246,3822,1,0,0,0,248,3842,1,0,0,0,250,3854,1,0,0,0,252,3858, - 1,0,0,0,254,3869,1,0,0,0,256,3902,1,0,0,0,258,3923,1,0,0,0,260,3933, - 1,0,0,0,262,3937,1,0,0,0,264,3963,1,0,0,0,266,4010,1,0,0,0,268,4012, - 1,0,0,0,270,4016,1,0,0,0,272,4033,1,0,0,0,274,4084,1,0,0,0,276,4093, - 1,0,0,0,278,4103,1,0,0,0,280,4105,1,0,0,0,282,4138,1,0,0,0,284,4146, - 1,0,0,0,286,4163,1,0,0,0,288,4179,1,0,0,0,290,4216,1,0,0,0,292,4222, - 1,0,0,0,294,4231,1,0,0,0,296,4244,1,0,0,0,298,4248,1,0,0,0,300,4286, - 1,0,0,0,302,4324,1,0,0,0,304,4338,1,0,0,0,306,4346,1,0,0,0,308,4350, - 1,0,0,0,310,4356,1,0,0,0,312,4370,1,0,0,0,314,4373,1,0,0,0,316,4391, - 1,0,0,0,318,4395,1,0,0,0,320,4411,1,0,0,0,322,4413,1,0,0,0,324,4425, - 1,0,0,0,326,4429,1,0,0,0,328,4446,1,0,0,0,330,4463,1,0,0,0,332,4466, - 1,0,0,0,334,4476,1,0,0,0,336,4480,1,0,0,0,338,4490,1,0,0,0,340,4493, - 1,0,0,0,342,4498,1,0,0,0,344,4518,1,0,0,0,346,4520,1,0,0,0,348,4537, - 1,0,0,0,350,4546,1,0,0,0,352,4555,1,0,0,0,354,4557,1,0,0,0,356,4571, - 1,0,0,0,358,4585,1,0,0,0,360,4600,1,0,0,0,362,4609,1,0,0,0,364,4634, - 1,0,0,0,366,4649,1,0,0,0,368,4668,1,0,0,0,370,4698,1,0,0,0,372,4700, - 1,0,0,0,374,4702,1,0,0,0,376,4704,1,0,0,0,378,4719,1,0,0,0,380,4748, - 1,0,0,0,382,4750,1,0,0,0,384,4752,1,0,0,0,386,4754,1,0,0,0,388,4769, - 1,0,0,0,390,4771,1,0,0,0,392,4838,1,0,0,0,394,4840,1,0,0,0,396,4846, - 1,0,0,0,398,4873,1,0,0,0,400,4887,1,0,0,0,402,4898,1,0,0,0,404,4900, - 1,0,0,0,406,4906,1,0,0,0,408,4916,1,0,0,0,410,4920,1,0,0,0,412,4927, - 1,0,0,0,414,4931,1,0,0,0,416,4937,1,0,0,0,418,4944,1,0,0,0,420,4950, - 1,0,0,0,422,4956,1,0,0,0,424,4961,1,0,0,0,426,5006,1,0,0,0,428,5027, - 1,0,0,0,430,5052,1,0,0,0,432,5055,1,0,0,0,434,5061,1,0,0,0,436,5077, - 1,0,0,0,438,5092,1,0,0,0,440,5098,1,0,0,0,442,5128,1,0,0,0,444,5130, - 1,0,0,0,446,5137,1,0,0,0,448,5149,1,0,0,0,450,5155,1,0,0,0,452,5180, - 1,0,0,0,454,5184,1,0,0,0,456,5188,1,0,0,0,458,5199,1,0,0,0,460,5207, - 1,0,0,0,462,5270,1,0,0,0,464,5329,1,0,0,0,466,5431,1,0,0,0,468,5441, - 1,0,0,0,470,5443,1,0,0,0,472,5461,1,0,0,0,474,5485,1,0,0,0,476,5509, - 1,0,0,0,478,5516,1,0,0,0,480,5536,1,0,0,0,482,5545,1,0,0,0,484,5607, - 1,0,0,0,486,5609,1,0,0,0,488,5613,1,0,0,0,490,5647,1,0,0,0,492,5649, - 1,0,0,0,494,5652,1,0,0,0,496,5716,1,0,0,0,498,5735,1,0,0,0,500,5762, - 1,0,0,0,502,5766,1,0,0,0,504,5787,1,0,0,0,506,5797,1,0,0,0,508,5807, - 1,0,0,0,510,5847,1,0,0,0,512,5849,1,0,0,0,514,5852,1,0,0,0,516,5882, - 1,0,0,0,518,5884,1,0,0,0,520,5887,1,0,0,0,522,5987,1,0,0,0,524,6005, - 1,0,0,0,526,6007,1,0,0,0,528,6059,1,0,0,0,530,6061,1,0,0,0,532,6070, - 1,0,0,0,534,6076,1,0,0,0,536,6083,1,0,0,0,538,6098,1,0,0,0,540,6107, - 1,0,0,0,542,6109,1,0,0,0,544,6130,1,0,0,0,546,6135,1,0,0,0,548,6145, - 1,0,0,0,550,6151,1,0,0,0,552,6185,1,0,0,0,554,6239,1,0,0,0,556,6425, - 1,0,0,0,558,6437,1,0,0,0,560,6453,1,0,0,0,562,6459,1,0,0,0,564,6478, - 1,0,0,0,566,6491,1,0,0,0,568,6505,1,0,0,0,570,6507,1,0,0,0,572,6510, - 1,0,0,0,574,6534,1,0,0,0,576,6546,1,0,0,0,578,6552,1,0,0,0,580,6564, - 1,0,0,0,582,6578,1,0,0,0,584,6580,1,0,0,0,586,6588,1,0,0,0,588,6596, - 1,0,0,0,590,6598,1,0,0,0,592,6600,1,0,0,0,594,6640,1,0,0,0,596,6647, - 1,0,0,0,598,6649,1,0,0,0,600,6672,1,0,0,0,602,6678,1,0,0,0,604,6688, - 1,0,0,0,606,6697,1,0,0,0,608,6700,1,0,0,0,610,6703,1,0,0,0,612,6724, - 1,0,0,0,614,6745,1,0,0,0,616,6753,1,0,0,0,618,6765,1,0,0,0,620,6773, - 1,0,0,0,622,6811,1,0,0,0,624,6823,1,0,0,0,626,6825,1,0,0,0,628,6827, - 1,0,0,0,630,6829,1,0,0,0,632,6831,1,0,0,0,634,6833,1,0,0,0,636,6835, - 1,0,0,0,638,6837,1,0,0,0,640,6839,1,0,0,0,642,6847,1,0,0,0,644,6849, - 1,0,0,0,646,6851,1,0,0,0,648,6853,1,0,0,0,650,6855,1,0,0,0,652,6863, - 1,0,0,0,654,6865,1,0,0,0,656,6875,1,0,0,0,658,6891,1,0,0,0,660,6893, - 1,0,0,0,662,6916,1,0,0,0,664,6918,1,0,0,0,666,6920,1,0,0,0,668,6922, - 1,0,0,0,670,6924,1,0,0,0,672,6932,1,0,0,0,674,6942,1,0,0,0,676,6947, - 1,0,0,0,678,6951,1,0,0,0,680,6958,1,0,0,0,682,6960,1,0,0,0,684,6967, - 1,0,0,0,686,6969,1,0,0,0,688,6975,1,0,0,0,690,6977,1,0,0,0,692,6982, - 1,0,0,0,694,6984,1,0,0,0,696,6986,1,0,0,0,698,7004,1,0,0,0,700,7020, - 1,0,0,0,702,7022,1,0,0,0,704,7026,1,0,0,0,706,7037,1,0,0,0,708,7048, - 1,0,0,0,710,7054,1,0,0,0,712,7056,1,0,0,0,714,7060,1,0,0,0,716,7085, - 1,0,0,0,718,7087,1,0,0,0,720,7090,1,0,0,0,722,7095,1,0,0,0,724,7111, - 1,0,0,0,726,7239,1,0,0,0,728,7241,1,0,0,0,730,7274,1,0,0,0,732,7279, - 1,0,0,0,734,7283,1,0,0,0,736,7289,1,0,0,0,738,7297,1,0,0,0,740,7308, - 1,0,0,0,742,7316,1,0,0,0,744,7325,1,0,0,0,746,7338,1,0,0,0,748,7340, - 1,0,0,0,750,7348,1,0,0,0,752,7356,1,0,0,0,754,7390,1,0,0,0,756,7406, - 1,0,0,0,758,7408,1,0,0,0,760,7411,1,0,0,0,762,7415,1,0,0,0,764,7440, - 1,0,0,0,766,7621,1,0,0,0,768,7623,1,0,0,0,770,7642,1,0,0,0,772,7644, - 1,0,0,0,774,7707,1,0,0,0,776,7747,1,0,0,0,778,7749,1,0,0,0,780,7758, - 1,0,0,0,782,7769,1,0,0,0,784,7771,1,0,0,0,786,7774,1,0,0,0,788,7778, - 1,0,0,0,790,7780,1,0,0,0,792,7792,1,0,0,0,794,7794,1,0,0,0,796,7828, - 1,0,0,0,798,7830,1,0,0,0,800,7835,1,0,0,0,802,7846,1,0,0,0,804,7859, - 1,0,0,0,806,7870,1,0,0,0,808,7987,1,0,0,0,810,8009,1,0,0,0,812,8019, - 1,0,0,0,814,8028,1,0,0,0,816,8037,1,0,0,0,818,8046,1,0,0,0,820,8048, - 1,0,0,0,822,8055,1,0,0,0,824,8057,1,0,0,0,826,8059,1,0,0,0,828,8061, - 1,0,0,0,830,8063,1,0,0,0,832,8065,1,0,0,0,834,8067,1,0,0,0,836,8069, - 1,0,0,0,838,840,3,2,1,0,839,838,1,0,0,0,840,843,1,0,0,0,841,839, - 1,0,0,0,841,842,1,0,0,0,842,844,1,0,0,0,843,841,1,0,0,0,844,845, - 5,0,0,1,845,1,1,0,0,0,846,848,3,4,2,0,847,849,5,869,0,0,848,847, - 1,0,0,0,848,849,1,0,0,0,849,852,1,0,0,0,850,852,3,6,3,0,851,846, - 1,0,0,0,851,850,1,0,0,0,852,3,1,0,0,0,853,861,3,8,4,0,854,861,3, - 10,5,0,855,861,3,12,6,0,856,861,3,14,7,0,857,861,3,16,8,0,858,861, - 3,20,10,0,859,861,3,22,11,0,860,853,1,0,0,0,860,854,1,0,0,0,860, - 855,1,0,0,0,860,856,1,0,0,0,860,857,1,0,0,0,860,858,1,0,0,0,860, - 859,1,0,0,0,861,5,1,0,0,0,862,863,5,869,0,0,863,7,1,0,0,0,864,905, - 3,24,12,0,865,905,3,26,13,0,866,905,3,28,14,0,867,905,3,30,15,0, - 868,905,3,32,16,0,869,905,3,34,17,0,870,905,3,36,18,0,871,905,3, - 40,20,0,872,905,3,42,21,0,873,905,3,44,22,0,874,905,3,46,23,0,875, - 905,3,48,24,0,876,905,3,54,27,0,877,905,3,38,19,0,878,905,3,126, - 63,0,879,905,3,128,64,0,880,905,3,130,65,0,881,905,3,132,66,0,882, - 905,3,134,67,0,883,905,3,136,68,0,884,905,3,138,69,0,885,905,3,140, - 70,0,886,905,3,142,71,0,887,905,3,144,72,0,888,905,3,150,75,0,889, - 905,3,152,76,0,890,905,3,154,77,0,891,905,3,156,78,0,892,905,3,158, - 79,0,893,905,3,160,80,0,894,905,3,162,81,0,895,905,3,164,82,0,896, - 905,3,166,83,0,897,905,3,168,84,0,898,905,3,170,85,0,899,905,3,172, - 86,0,900,905,3,174,87,0,901,905,3,176,88,0,902,905,3,178,89,0,903, - 905,3,182,91,0,904,864,1,0,0,0,904,865,1,0,0,0,904,866,1,0,0,0,904, - 867,1,0,0,0,904,868,1,0,0,0,904,869,1,0,0,0,904,870,1,0,0,0,904, - 871,1,0,0,0,904,872,1,0,0,0,904,873,1,0,0,0,904,874,1,0,0,0,904, - 875,1,0,0,0,904,876,1,0,0,0,904,877,1,0,0,0,904,878,1,0,0,0,904, - 879,1,0,0,0,904,880,1,0,0,0,904,881,1,0,0,0,904,882,1,0,0,0,904, - 883,1,0,0,0,904,884,1,0,0,0,904,885,1,0,0,0,904,886,1,0,0,0,904, - 887,1,0,0,0,904,888,1,0,0,0,904,889,1,0,0,0,904,890,1,0,0,0,904, - 891,1,0,0,0,904,892,1,0,0,0,904,893,1,0,0,0,904,894,1,0,0,0,904, - 895,1,0,0,0,904,896,1,0,0,0,904,897,1,0,0,0,904,898,1,0,0,0,904, - 899,1,0,0,0,904,900,1,0,0,0,904,901,1,0,0,0,904,902,1,0,0,0,904, - 903,1,0,0,0,905,9,1,0,0,0,906,924,3,210,105,0,907,924,3,212,106, - 0,908,924,3,192,96,0,909,924,3,220,110,0,910,924,3,186,93,0,911, - 924,3,208,104,0,912,924,3,184,92,0,913,924,3,198,99,0,914,924,3, - 202,101,0,915,924,3,204,102,0,916,924,3,206,103,0,917,924,3,188, - 94,0,918,924,3,190,95,0,919,924,3,252,126,0,920,924,3,222,111,0, - 921,924,3,616,308,0,922,924,3,618,309,0,923,906,1,0,0,0,923,907, - 1,0,0,0,923,908,1,0,0,0,923,909,1,0,0,0,923,910,1,0,0,0,923,911, - 1,0,0,0,923,912,1,0,0,0,923,913,1,0,0,0,923,914,1,0,0,0,923,915, - 1,0,0,0,923,916,1,0,0,0,923,917,1,0,0,0,923,918,1,0,0,0,923,919, - 1,0,0,0,923,920,1,0,0,0,923,921,1,0,0,0,923,922,1,0,0,0,924,11,1, - 0,0,0,925,935,3,322,161,0,926,935,3,324,162,0,927,935,3,326,163, - 0,928,935,3,328,164,0,929,935,3,330,165,0,930,935,3,332,166,0,931, - 935,3,334,167,0,932,935,3,336,168,0,933,935,3,338,169,0,934,925, - 1,0,0,0,934,926,1,0,0,0,934,927,1,0,0,0,934,928,1,0,0,0,934,929, - 1,0,0,0,934,930,1,0,0,0,934,931,1,0,0,0,934,932,1,0,0,0,934,933, - 1,0,0,0,935,13,1,0,0,0,936,951,3,354,177,0,937,951,3,356,178,0,938, - 951,3,358,179,0,939,951,3,360,180,0,940,951,3,362,181,0,941,951, - 3,364,182,0,942,951,3,366,183,0,943,951,3,368,184,0,944,951,3,404, - 202,0,945,951,3,406,203,0,946,951,3,408,204,0,947,951,3,410,205, - 0,948,951,3,412,206,0,949,951,3,414,207,0,950,936,1,0,0,0,950,937, - 1,0,0,0,950,938,1,0,0,0,950,939,1,0,0,0,950,940,1,0,0,0,950,941, - 1,0,0,0,950,942,1,0,0,0,950,943,1,0,0,0,950,944,1,0,0,0,950,945, - 1,0,0,0,950,946,1,0,0,0,950,947,1,0,0,0,950,948,1,0,0,0,950,949, - 1,0,0,0,951,15,1,0,0,0,952,956,3,416,208,0,953,956,3,418,209,0,954, - 956,3,420,210,0,955,952,1,0,0,0,955,953,1,0,0,0,955,954,1,0,0,0, - 956,17,1,0,0,0,957,968,3,424,212,0,958,968,3,426,213,0,959,968,3, - 428,214,0,960,968,3,432,216,0,961,968,3,434,217,0,962,968,3,436, - 218,0,963,968,3,440,220,0,964,968,3,430,215,0,965,968,3,438,219, - 0,966,968,3,442,221,0,967,957,1,0,0,0,967,958,1,0,0,0,967,959,1, - 0,0,0,967,960,1,0,0,0,967,961,1,0,0,0,967,962,1,0,0,0,967,963,1, - 0,0,0,967,964,1,0,0,0,967,965,1,0,0,0,967,966,1,0,0,0,968,19,1,0, - 0,0,969,1003,3,460,230,0,970,1003,3,462,231,0,971,1003,3,464,232, - 0,972,1003,3,466,233,0,973,1003,3,470,235,0,974,1003,3,482,241,0, - 975,1003,3,484,242,0,976,1003,3,472,236,0,977,1003,3,474,237,0,978, - 1003,3,476,238,0,979,1003,3,478,239,0,980,1003,3,528,264,0,981,1003, - 3,530,265,0,982,1003,3,532,266,0,983,1003,3,534,267,0,984,1003,3, - 536,268,0,985,1003,3,542,271,0,986,1003,3,546,273,0,987,1003,3,548, - 274,0,988,1003,3,550,275,0,989,1003,3,552,276,0,990,1003,3,554,277, - 0,991,1003,3,556,278,0,992,1003,3,570,285,0,993,1003,3,572,286,0, - 994,1003,3,574,287,0,995,1003,3,576,288,0,996,1003,3,578,289,0,997, - 1003,3,580,290,0,998,1003,3,584,292,0,999,1003,3,586,293,0,1000, - 1003,3,588,294,0,1001,1003,3,590,295,0,1002,969,1,0,0,0,1002,970, - 1,0,0,0,1002,971,1,0,0,0,1002,972,1,0,0,0,1002,973,1,0,0,0,1002, - 974,1,0,0,0,1002,975,1,0,0,0,1002,976,1,0,0,0,1002,977,1,0,0,0,1002, - 978,1,0,0,0,1002,979,1,0,0,0,1002,980,1,0,0,0,1002,981,1,0,0,0,1002, - 982,1,0,0,0,1002,983,1,0,0,0,1002,984,1,0,0,0,1002,985,1,0,0,0,1002, - 986,1,0,0,0,1002,987,1,0,0,0,1002,988,1,0,0,0,1002,989,1,0,0,0,1002, - 990,1,0,0,0,1002,991,1,0,0,0,1002,992,1,0,0,0,1002,993,1,0,0,0,1002, - 994,1,0,0,0,1002,995,1,0,0,0,1002,996,1,0,0,0,1002,997,1,0,0,0,1002, - 998,1,0,0,0,1002,999,1,0,0,0,1002,1000,1,0,0,0,1002,1001,1,0,0,0, - 1003,21,1,0,0,0,1004,1013,3,602,301,0,1005,1013,3,600,300,0,1006, - 1013,3,604,302,0,1007,1013,3,606,303,0,1008,1013,3,608,304,0,1009, - 1013,3,610,305,0,1010,1013,3,612,306,0,1011,1013,3,620,310,0,1012, - 1004,1,0,0,0,1012,1005,1,0,0,0,1012,1006,1,0,0,0,1012,1007,1,0,0, - 0,1012,1008,1,0,0,0,1012,1009,1,0,0,0,1012,1010,1,0,0,0,1012,1011, - 1,0,0,0,1013,23,1,0,0,0,1014,1015,5,34,0,0,1015,1017,7,0,0,0,1016, - 1018,3,760,380,0,1017,1016,1,0,0,0,1017,1018,1,0,0,0,1018,1019,1, - 0,0,0,1019,1023,3,626,313,0,1020,1022,3,56,28,0,1021,1020,1,0,0, - 0,1022,1025,1,0,0,0,1023,1021,1,0,0,0,1023,1024,1,0,0,0,1024,25, - 1,0,0,0,1025,1023,1,0,0,0,1026,1028,5,34,0,0,1027,1029,3,62,31,0, - 1028,1027,1,0,0,0,1028,1029,1,0,0,0,1029,1030,1,0,0,0,1030,1032, - 5,385,0,0,1031,1033,3,760,380,0,1032,1031,1,0,0,0,1032,1033,1,0, - 0,0,1033,1034,1,0,0,0,1034,1035,3,702,351,0,1035,1036,5,119,0,0, - 1036,1037,5,590,0,0,1037,1044,3,64,32,0,1038,1039,5,119,0,0,1039, - 1041,5,343,0,0,1040,1042,5,114,0,0,1041,1040,1,0,0,0,1041,1042,1, - 0,0,0,1042,1043,1,0,0,0,1043,1045,5,541,0,0,1044,1038,1,0,0,0,1044, - 1045,1,0,0,0,1045,1047,1,0,0,0,1046,1048,3,72,36,0,1047,1046,1,0, - 0,0,1047,1048,1,0,0,0,1048,1051,1,0,0,0,1049,1050,5,340,0,0,1050, - 1052,5,882,0,0,1051,1049,1,0,0,0,1051,1052,1,0,0,0,1052,1053,1,0, - 0,0,1053,1054,5,371,0,0,1054,1055,3,422,211,0,1055,27,1,0,0,0,1056, - 1058,5,34,0,0,1057,1059,7,1,0,0,1058,1057,1,0,0,0,1058,1059,1,0, - 0,0,1059,1061,1,0,0,0,1060,1062,7,2,0,0,1061,1060,1,0,0,0,1061,1062, - 1,0,0,0,1062,1063,1,0,0,0,1063,1064,5,82,0,0,1064,1066,3,638,319, - 0,1065,1067,3,74,37,0,1066,1065,1,0,0,0,1066,1067,1,0,0,0,1067,1068, - 1,0,0,0,1068,1069,5,119,0,0,1069,1070,3,652,326,0,1070,1074,3,738, - 369,0,1071,1073,3,76,38,0,1072,1071,1,0,0,0,1073,1076,1,0,0,0,1074, - 1072,1,0,0,0,1074,1075,1,0,0,0,1075,1089,1,0,0,0,1076,1074,1,0,0, - 0,1077,1079,5,308,0,0,1078,1080,5,857,0,0,1079,1078,1,0,0,0,1079, - 1080,1,0,0,0,1080,1081,1,0,0,0,1081,1088,7,3,0,0,1082,1084,5,104, - 0,0,1083,1085,5,857,0,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085, - 1086,1,0,0,0,1086,1088,7,4,0,0,1087,1077,1,0,0,0,1087,1082,1,0,0, - 0,1088,1091,1,0,0,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,29, - 1,0,0,0,1091,1089,1,0,0,0,1092,1093,5,34,0,0,1093,1094,5,451,0,0, - 1094,1095,5,74,0,0,1095,1096,3,706,353,0,1096,1097,5,6,0,0,1097, - 1098,5,671,0,0,1098,1104,5,882,0,0,1099,1101,5,428,0,0,1100,1102, - 5,857,0,0,1101,1100,1,0,0,0,1101,1102,1,0,0,0,1102,1103,1,0,0,0, - 1103,1105,3,714,357,0,1104,1099,1,0,0,0,1104,1105,1,0,0,0,1105,1111, - 1,0,0,0,1106,1108,5,672,0,0,1107,1109,5,857,0,0,1108,1107,1,0,0, - 0,1108,1109,1,0,0,0,1109,1110,1,0,0,0,1110,1112,3,714,357,0,1111, - 1106,1,0,0,0,1111,1112,1,0,0,0,1112,1118,1,0,0,0,1113,1115,5,553, - 0,0,1114,1116,5,857,0,0,1115,1114,1,0,0,0,1115,1116,1,0,0,0,1116, - 1117,1,0,0,0,1117,1119,3,714,357,0,1118,1113,1,0,0,0,1118,1119,1, - 0,0,0,1119,1125,1,0,0,0,1120,1122,5,504,0,0,1121,1123,5,857,0,0, - 1122,1121,1,0,0,0,1122,1123,1,0,0,0,1123,1124,1,0,0,0,1124,1126, - 3,706,353,0,1125,1120,1,0,0,0,1125,1126,1,0,0,0,1126,1128,1,0,0, - 0,1127,1129,5,687,0,0,1128,1127,1,0,0,0,1128,1129,1,0,0,0,1129,1135, - 1,0,0,0,1130,1132,5,340,0,0,1131,1133,5,857,0,0,1132,1131,1,0,0, - 0,1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1136,5,882,0,0,1135,1130, - 1,0,0,0,1135,1136,1,0,0,0,1136,1137,1,0,0,0,1137,1139,5,380,0,0, - 1138,1140,5,857,0,0,1139,1138,1,0,0,0,1139,1140,1,0,0,0,1140,1141, - 1,0,0,0,1141,1142,3,692,346,0,1142,31,1,0,0,0,1143,1145,5,34,0,0, - 1144,1146,3,62,31,0,1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,1147, - 1,0,0,0,1147,1149,5,132,0,0,1148,1150,3,760,380,0,1149,1148,1,0, - 0,0,1149,1150,1,0,0,0,1150,1151,1,0,0,0,1151,1152,3,702,351,0,1152, - 1154,5,866,0,0,1153,1155,3,78,39,0,1154,1153,1,0,0,0,1154,1155,1, - 0,0,0,1155,1160,1,0,0,0,1156,1157,5,868,0,0,1157,1159,3,78,39,0, - 1158,1156,1,0,0,0,1159,1162,1,0,0,0,1160,1158,1,0,0,0,1160,1161, - 1,0,0,0,1161,1163,1,0,0,0,1162,1160,1,0,0,0,1163,1167,5,867,0,0, - 1164,1166,3,82,41,0,1165,1164,1,0,0,0,1166,1169,1,0,0,0,1167,1165, - 1,0,0,0,1167,1168,1,0,0,0,1168,1170,1,0,0,0,1169,1167,1,0,0,0,1170, - 1171,3,422,211,0,1171,33,1,0,0,0,1172,1174,5,34,0,0,1173,1175,3, - 62,31,0,1174,1173,1,0,0,0,1174,1175,1,0,0,0,1175,1177,1,0,0,0,1176, - 1178,5,307,0,0,1177,1176,1,0,0,0,1177,1178,1,0,0,0,1178,1179,1,0, - 0,0,1179,1181,5,409,0,0,1180,1182,3,760,380,0,1181,1180,1,0,0,0, - 1181,1182,1,0,0,0,1182,1183,1,0,0,0,1183,1184,3,630,315,0,1184,1186, - 5,866,0,0,1185,1187,3,80,40,0,1186,1185,1,0,0,0,1186,1187,1,0,0, - 0,1187,1192,1,0,0,0,1188,1189,5,868,0,0,1189,1191,3,80,40,0,1190, - 1188,1,0,0,0,1191,1194,1,0,0,0,1192,1190,1,0,0,0,1192,1193,1,0,0, - 0,1193,1195,1,0,0,0,1194,1192,1,0,0,0,1195,1196,5,867,0,0,1196,1197, - 5,580,0,0,1197,1201,3,726,363,0,1198,1200,3,82,41,0,1199,1198,1, - 0,0,0,1200,1203,1,0,0,0,1201,1199,1,0,0,0,1201,1202,1,0,0,0,1202, - 1206,1,0,0,0,1203,1201,1,0,0,0,1204,1207,3,422,211,0,1205,1207,3, - 438,219,0,1206,1204,1,0,0,0,1206,1205,1,0,0,0,1207,35,1,0,0,0,1208, - 1210,5,34,0,0,1209,1211,5,307,0,0,1210,1209,1,0,0,0,1210,1211,1, - 0,0,0,1211,1212,1,0,0,0,1212,1214,5,409,0,0,1213,1215,3,760,380, - 0,1214,1213,1,0,0,0,1214,1215,1,0,0,0,1215,1216,1,0,0,0,1216,1217, - 3,630,315,0,1217,1218,5,580,0,0,1218,1219,7,5,0,0,1219,1220,5,603, - 0,0,1220,1221,5,882,0,0,1221,37,1,0,0,0,1222,1223,5,34,0,0,1223, - 1225,5,582,0,0,1224,1226,3,760,380,0,1225,1224,1,0,0,0,1225,1226, - 1,0,0,0,1226,1227,1,0,0,0,1227,1228,3,654,327,0,1228,39,1,0,0,0, - 1229,1230,5,34,0,0,1230,1231,5,592,0,0,1231,1232,3,706,353,0,1232, - 1233,5,67,0,0,1233,1234,5,360,0,0,1234,1235,5,692,0,0,1235,1236, - 7,6,0,0,1236,1237,5,518,0,0,1237,1238,5,866,0,0,1238,1243,3,84,42, - 0,1239,1240,5,868,0,0,1240,1242,3,84,42,0,1241,1239,1,0,0,0,1242, - 1245,1,0,0,0,1243,1241,1,0,0,0,1243,1244,1,0,0,0,1244,1246,1,0,0, - 0,1245,1243,1,0,0,0,1246,1247,5,867,0,0,1247,41,1,0,0,0,1248,1250, - 5,34,0,0,1249,1251,5,660,0,0,1250,1249,1,0,0,0,1250,1251,1,0,0,0, - 1251,1252,1,0,0,0,1252,1254,5,173,0,0,1253,1255,3,760,380,0,1254, - 1253,1,0,0,0,1254,1255,1,0,0,0,1255,1256,1,0,0,0,1256,1258,3,648, - 324,0,1257,1259,3,86,43,0,1258,1257,1,0,0,0,1258,1259,1,0,0,0,1259, - 1270,1,0,0,0,1260,1267,3,104,52,0,1261,1263,5,868,0,0,1262,1261, - 1,0,0,0,1262,1263,1,0,0,0,1263,1264,1,0,0,0,1264,1266,3,104,52,0, - 1265,1262,1,0,0,0,1266,1269,1,0,0,0,1267,1265,1,0,0,0,1267,1268, - 1,0,0,0,1268,1271,1,0,0,0,1269,1267,1,0,0,0,1270,1260,1,0,0,0,1270, - 1271,1,0,0,0,1271,1273,1,0,0,0,1272,1274,3,110,55,0,1273,1272,1, - 0,0,0,1273,1274,1,0,0,0,1274,1276,1,0,0,0,1275,1277,7,7,0,0,1276, - 1275,1,0,0,0,1276,1277,1,0,0,0,1277,1279,1,0,0,0,1278,1280,5,13, - 0,0,1279,1278,1,0,0,0,1279,1280,1,0,0,0,1280,1281,1,0,0,0,1281,1282, - 3,210,105,0,1282,1327,1,0,0,0,1283,1285,5,34,0,0,1284,1286,5,660, - 0,0,1285,1284,1,0,0,0,1285,1286,1,0,0,0,1286,1287,1,0,0,0,1287,1289, - 5,173,0,0,1288,1290,3,760,380,0,1289,1288,1,0,0,0,1289,1290,1,0, - 0,0,1290,1291,1,0,0,0,1291,1299,3,648,324,0,1292,1293,5,99,0,0,1293, - 1300,3,652,326,0,1294,1295,5,866,0,0,1295,1296,5,99,0,0,1296,1297, - 3,652,326,0,1297,1298,5,867,0,0,1298,1300,1,0,0,0,1299,1292,1,0, - 0,0,1299,1294,1,0,0,0,1300,1327,1,0,0,0,1301,1303,5,34,0,0,1302, - 1304,5,660,0,0,1303,1302,1,0,0,0,1303,1304,1,0,0,0,1304,1305,1,0, - 0,0,1305,1307,5,173,0,0,1306,1308,3,760,380,0,1307,1306,1,0,0,0, - 1307,1308,1,0,0,0,1308,1309,1,0,0,0,1309,1310,3,648,324,0,1310,1321, - 3,86,43,0,1311,1318,3,104,52,0,1312,1314,5,868,0,0,1313,1312,1,0, - 0,0,1313,1314,1,0,0,0,1314,1315,1,0,0,0,1315,1317,3,104,52,0,1316, - 1313,1,0,0,0,1317,1320,1,0,0,0,1318,1316,1,0,0,0,1318,1319,1,0,0, - 0,1319,1322,1,0,0,0,1320,1318,1,0,0,0,1321,1311,1,0,0,0,1321,1322, - 1,0,0,0,1322,1324,1,0,0,0,1323,1325,3,110,55,0,1324,1323,1,0,0,0, - 1324,1325,1,0,0,0,1325,1327,1,0,0,0,1326,1248,1,0,0,0,1326,1283, - 1,0,0,0,1326,1301,1,0,0,0,1327,43,1,0,0,0,1328,1330,5,34,0,0,1329, - 1331,5,180,0,0,1330,1329,1,0,0,0,1330,1331,1,0,0,0,1331,1332,1,0, - 0,0,1332,1333,5,658,0,0,1333,1337,3,664,332,0,1334,1335,5,6,0,0, - 1335,1336,5,361,0,0,1336,1338,5,882,0,0,1337,1334,1,0,0,0,1337,1338, - 1,0,0,0,1338,1344,1,0,0,0,1339,1341,5,314,0,0,1340,1342,5,857,0, - 0,1341,1340,1,0,0,0,1341,1342,1,0,0,0,1342,1343,1,0,0,0,1343,1345, - 3,714,357,0,1344,1339,1,0,0,0,1344,1345,1,0,0,0,1345,1349,1,0,0, - 0,1346,1347,5,399,0,0,1347,1348,5,857,0,0,1348,1350,3,714,357,0, - 1349,1346,1,0,0,0,1349,1350,1,0,0,0,1350,1356,1,0,0,0,1351,1353, - 5,380,0,0,1352,1354,5,857,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0, - 0,1354,1355,1,0,0,0,1355,1357,3,692,346,0,1356,1351,1,0,0,0,1356, - 1357,1,0,0,0,1357,1363,1,0,0,0,1358,1360,5,825,0,0,1359,1361,5,857, - 0,0,1360,1359,1,0,0,0,1360,1361,1,0,0,0,1361,1362,1,0,0,0,1362,1364, - 5,882,0,0,1363,1358,1,0,0,0,1363,1364,1,0,0,0,1364,45,1,0,0,0,1365, - 1367,5,34,0,0,1366,1368,5,180,0,0,1367,1366,1,0,0,0,1367,1368,1, - 0,0,0,1368,1369,1,0,0,0,1369,1370,5,658,0,0,1370,1371,3,664,332, - 0,1371,1372,5,6,0,0,1372,1373,5,361,0,0,1373,1374,5,882,0,0,1374, - 1375,5,187,0,0,1375,1376,5,451,0,0,1376,1377,5,74,0,0,1377,1383, - 3,706,353,0,1378,1380,5,393,0,0,1379,1381,5,857,0,0,1380,1379,1, - 0,0,0,1380,1381,1,0,0,0,1381,1382,1,0,0,0,1382,1384,3,714,357,0, - 1383,1378,1,0,0,0,1383,1384,1,0,0,0,1384,1390,1,0,0,0,1385,1387, - 5,428,0,0,1386,1388,5,857,0,0,1387,1386,1,0,0,0,1387,1388,1,0,0, - 0,1388,1389,1,0,0,0,1389,1391,3,714,357,0,1390,1385,1,0,0,0,1390, - 1391,1,0,0,0,1391,1397,1,0,0,0,1392,1394,5,314,0,0,1393,1395,5,857, - 0,0,1394,1393,1,0,0,0,1394,1395,1,0,0,0,1395,1396,1,0,0,0,1396,1398, - 3,714,357,0,1397,1392,1,0,0,0,1397,1398,1,0,0,0,1398,1404,1,0,0, - 0,1399,1401,5,481,0,0,1400,1402,5,857,0,0,1401,1400,1,0,0,0,1401, - 1402,1,0,0,0,1402,1403,1,0,0,0,1403,1405,3,714,357,0,1404,1399,1, - 0,0,0,1404,1405,1,0,0,0,1405,1411,1,0,0,0,1406,1408,5,504,0,0,1407, - 1409,5,857,0,0,1408,1407,1,0,0,0,1408,1409,1,0,0,0,1409,1410,1,0, - 0,0,1410,1412,3,706,353,0,1411,1406,1,0,0,0,1411,1412,1,0,0,0,1412, - 1414,1,0,0,0,1413,1415,5,687,0,0,1414,1413,1,0,0,0,1414,1415,1,0, - 0,0,1415,1421,1,0,0,0,1416,1418,5,340,0,0,1417,1419,5,857,0,0,1418, - 1417,1,0,0,0,1418,1419,1,0,0,0,1419,1420,1,0,0,0,1420,1422,5,882, - 0,0,1421,1416,1,0,0,0,1421,1422,1,0,0,0,1422,1423,1,0,0,0,1423,1425, - 5,380,0,0,1424,1426,5,857,0,0,1425,1424,1,0,0,0,1425,1426,1,0,0, - 0,1426,1427,1,0,0,0,1427,1428,3,692,346,0,1428,47,1,0,0,0,1429,1431, - 5,34,0,0,1430,1432,3,62,31,0,1431,1430,1,0,0,0,1431,1432,1,0,0,0, - 1432,1434,1,0,0,0,1433,1435,3,760,380,0,1434,1433,1,0,0,0,1434,1435, - 1,0,0,0,1435,1436,1,0,0,0,1436,1438,5,178,0,0,1437,1439,3,760,380, - 0,1438,1437,1,0,0,0,1438,1439,1,0,0,0,1439,1440,1,0,0,0,1440,1441, - 3,702,351,0,1441,1442,7,8,0,0,1442,1443,7,9,0,0,1443,1444,5,119, - 0,0,1444,1445,3,652,326,0,1445,1446,5,65,0,0,1446,1447,5,52,0,0, - 1447,1450,5,586,0,0,1448,1449,7,10,0,0,1449,1451,3,702,351,0,1450, - 1448,1,0,0,0,1450,1451,1,0,0,0,1451,1452,1,0,0,0,1452,1453,3,422, - 211,0,1453,49,1,0,0,0,1454,1456,5,194,0,0,1455,1457,5,552,0,0,1456, - 1455,1,0,0,0,1456,1457,1,0,0,0,1457,1458,1,0,0,0,1458,1459,3,52, - 26,0,1459,51,1,0,0,0,1460,1472,3,706,353,0,1461,1462,5,866,0,0,1462, - 1467,3,706,353,0,1463,1464,5,868,0,0,1464,1466,3,706,353,0,1465, - 1463,1,0,0,0,1466,1469,1,0,0,0,1467,1465,1,0,0,0,1467,1468,1,0,0, - 0,1468,1470,1,0,0,0,1469,1467,1,0,0,0,1470,1471,5,867,0,0,1471,1473, - 1,0,0,0,1472,1461,1,0,0,0,1472,1473,1,0,0,0,1473,1474,1,0,0,0,1474, - 1475,5,13,0,0,1475,1476,5,866,0,0,1476,1477,3,10,5,0,1477,1480,5, - 867,0,0,1478,1479,5,868,0,0,1479,1481,3,52,26,0,1480,1478,1,0,0, - 0,1480,1481,1,0,0,0,1481,53,1,0,0,0,1482,1484,5,34,0,0,1483,1485, - 3,762,381,0,1484,1483,1,0,0,0,1484,1485,1,0,0,0,1485,1489,1,0,0, - 0,1486,1487,5,308,0,0,1487,1488,5,857,0,0,1488,1490,7,11,0,0,1489, - 1486,1,0,0,0,1489,1490,1,0,0,0,1490,1492,1,0,0,0,1491,1493,3,62, - 31,0,1492,1491,1,0,0,0,1492,1493,1,0,0,0,1493,1497,1,0,0,0,1494, - 1495,5,162,0,0,1495,1496,5,591,0,0,1496,1498,7,12,0,0,1497,1494, - 1,0,0,0,1497,1498,1,0,0,0,1498,1499,1,0,0,0,1499,1500,5,684,0,0, - 1500,1512,3,634,317,0,1501,1502,5,866,0,0,1502,1507,3,658,329,0, - 1503,1504,5,868,0,0,1504,1506,3,658,329,0,1505,1503,1,0,0,0,1506, - 1509,1,0,0,0,1507,1505,1,0,0,0,1507,1508,1,0,0,0,1508,1510,1,0,0, - 0,1509,1507,1,0,0,0,1510,1511,5,867,0,0,1511,1513,1,0,0,0,1512,1501, - 1,0,0,0,1512,1513,1,0,0,0,1513,1514,1,0,0,0,1514,1534,5,13,0,0,1515, - 1517,5,866,0,0,1516,1518,3,50,25,0,1517,1516,1,0,0,0,1517,1518,1, - 0,0,0,1518,1519,1,0,0,0,1519,1520,3,210,105,0,1520,1521,5,867,0, - 0,1521,1535,1,0,0,0,1522,1524,3,50,25,0,1523,1522,1,0,0,0,1523,1524, - 1,0,0,0,1524,1525,1,0,0,0,1525,1532,3,210,105,0,1526,1528,5,194, - 0,0,1527,1529,7,13,0,0,1528,1527,1,0,0,0,1528,1529,1,0,0,0,1529, - 1530,1,0,0,0,1530,1531,5,27,0,0,1531,1533,5,121,0,0,1532,1526,1, - 0,0,0,1532,1533,1,0,0,0,1533,1535,1,0,0,0,1534,1515,1,0,0,0,1534, - 1523,1,0,0,0,1535,55,1,0,0,0,1536,1538,5,42,0,0,1537,1536,1,0,0, - 0,1537,1538,1,0,0,0,1538,1539,1,0,0,0,1539,1541,3,58,29,0,1540,1542, - 5,857,0,0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542,1545,1,0,0,0, - 1543,1546,3,688,344,0,1544,1546,5,42,0,0,1545,1543,1,0,0,0,1545, - 1544,1,0,0,0,1546,1570,1,0,0,0,1547,1549,5,42,0,0,1548,1547,1,0, - 0,0,1548,1549,1,0,0,0,1549,1550,1,0,0,0,1550,1552,5,28,0,0,1551, - 1553,5,857,0,0,1552,1551,1,0,0,0,1552,1553,1,0,0,0,1553,1554,1,0, - 0,0,1554,1570,3,690,345,0,1555,1557,5,42,0,0,1556,1555,1,0,0,0,1556, - 1557,1,0,0,0,1557,1558,1,0,0,0,1558,1560,5,376,0,0,1559,1561,5,857, - 0,0,1560,1559,1,0,0,0,1560,1561,1,0,0,0,1561,1562,1,0,0,0,1562,1570, - 5,882,0,0,1563,1564,5,135,0,0,1564,1566,5,515,0,0,1565,1567,5,857, - 0,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567,1568,1,0,0,0,1568,1570, - 7,14,0,0,1569,1537,1,0,0,0,1569,1548,1,0,0,0,1569,1556,1,0,0,0,1569, - 1563,1,0,0,0,1570,57,1,0,0,0,1571,1572,5,26,0,0,1572,1577,5,155, - 0,0,1573,1577,5,823,0,0,1574,1575,5,224,0,0,1575,1577,5,155,0,0, - 1576,1571,1,0,0,0,1576,1573,1,0,0,0,1576,1574,1,0,0,0,1577,59,1, - 0,0,0,1578,1581,7,15,0,0,1579,1580,5,866,0,0,1580,1582,5,867,0,0, - 1581,1579,1,0,0,0,1581,1582,1,0,0,0,1582,61,1,0,0,0,1583,1584,5, - 364,0,0,1584,1587,5,857,0,0,1585,1588,3,684,342,0,1586,1588,3,60, - 30,0,1587,1585,1,0,0,0,1587,1586,1,0,0,0,1588,63,1,0,0,0,1589,1590, - 5,311,0,0,1590,1594,3,66,33,0,1591,1593,3,68,34,0,1592,1591,1,0, - 0,0,1593,1596,1,0,0,0,1594,1592,1,0,0,0,1594,1595,1,0,0,0,1595,1624, - 1,0,0,0,1596,1594,1,0,0,0,1597,1600,5,387,0,0,1598,1601,3,712,356, - 0,1599,1601,3,804,402,0,1600,1598,1,0,0,0,1600,1599,1,0,0,0,1601, - 1602,1,0,0,0,1602,1611,3,70,35,0,1603,1604,5,641,0,0,1604,1608,3, - 66,33,0,1605,1607,3,68,34,0,1606,1605,1,0,0,0,1607,1610,1,0,0,0, - 1608,1606,1,0,0,0,1608,1609,1,0,0,0,1609,1612,1,0,0,0,1610,1608, - 1,0,0,0,1611,1603,1,0,0,0,1611,1612,1,0,0,0,1612,1621,1,0,0,0,1613, - 1614,5,379,0,0,1614,1618,3,66,33,0,1615,1617,3,68,34,0,1616,1615, - 1,0,0,0,1617,1620,1,0,0,0,1618,1616,1,0,0,0,1618,1619,1,0,0,0,1619, - 1622,1,0,0,0,1620,1618,1,0,0,0,1621,1613,1,0,0,0,1621,1622,1,0,0, - 0,1622,1624,1,0,0,0,1623,1589,1,0,0,0,1623,1597,1,0,0,0,1624,65, - 1,0,0,0,1625,1630,5,287,0,0,1626,1630,3,716,358,0,1627,1630,3,712, - 356,0,1628,1630,3,804,402,0,1629,1625,1,0,0,0,1629,1626,1,0,0,0, - 1629,1627,1,0,0,0,1629,1628,1,0,0,0,1630,67,1,0,0,0,1631,1632,5, - 853,0,0,1632,1635,5,87,0,0,1633,1636,3,712,356,0,1634,1636,3,804, - 402,0,1635,1633,1,0,0,0,1635,1634,1,0,0,0,1636,1637,1,0,0,0,1637, - 1638,3,70,35,0,1638,69,1,0,0,0,1639,1653,3,830,415,0,1640,1653,5, - 223,0,0,1641,1653,5,242,0,0,1642,1653,5,243,0,0,1643,1653,5,244, - 0,0,1644,1653,5,245,0,0,1645,1653,5,246,0,0,1646,1653,5,247,0,0, - 1647,1653,5,248,0,0,1648,1653,5,249,0,0,1649,1653,5,250,0,0,1650, - 1653,5,251,0,0,1651,1653,5,252,0,0,1652,1639,1,0,0,0,1652,1640,1, - 0,0,0,1652,1641,1,0,0,0,1652,1642,1,0,0,0,1652,1643,1,0,0,0,1652, - 1644,1,0,0,0,1652,1645,1,0,0,0,1652,1646,1,0,0,0,1652,1647,1,0,0, - 0,1652,1648,1,0,0,0,1652,1649,1,0,0,0,1652,1650,1,0,0,0,1652,1651, - 1,0,0,0,1653,71,1,0,0,0,1654,1660,5,375,0,0,1655,1660,5,368,0,0, - 1656,1657,5,368,0,0,1657,1658,5,119,0,0,1658,1660,5,598,0,0,1659, - 1654,1,0,0,0,1659,1655,1,0,0,0,1659,1656,1,0,0,0,1660,73,1,0,0,0, - 1661,1662,5,188,0,0,1662,1663,7,16,0,0,1663,75,1,0,0,0,1664,1666, - 5,443,0,0,1665,1667,5,857,0,0,1666,1665,1,0,0,0,1666,1667,1,0,0, - 0,1667,1668,1,0,0,0,1668,1687,3,714,357,0,1669,1687,3,74,37,0,1670, - 1671,5,194,0,0,1671,1672,5,525,0,0,1672,1687,3,706,353,0,1673,1674, - 5,340,0,0,1674,1687,5,882,0,0,1675,1687,7,17,0,0,1676,1678,5,825, - 0,0,1677,1679,5,857,0,0,1678,1677,1,0,0,0,1678,1679,1,0,0,0,1679, - 1680,1,0,0,0,1680,1687,5,882,0,0,1681,1683,5,833,0,0,1682,1684,5, - 857,0,0,1683,1682,1,0,0,0,1683,1684,1,0,0,0,1684,1685,1,0,0,0,1685, - 1687,5,882,0,0,1686,1664,1,0,0,0,1686,1669,1,0,0,0,1686,1670,1,0, - 0,0,1686,1673,1,0,0,0,1686,1675,1,0,0,0,1686,1676,1,0,0,0,1686,1681, - 1,0,0,0,1687,77,1,0,0,0,1688,1690,7,18,0,0,1689,1688,1,0,0,0,1689, - 1690,1,0,0,0,1690,1691,1,0,0,0,1691,1692,3,706,353,0,1692,1693,3, - 726,363,0,1693,79,1,0,0,0,1694,1695,3,706,353,0,1695,1696,3,726, - 363,0,1696,81,1,0,0,0,1697,1698,5,340,0,0,1698,1721,5,882,0,0,1699, - 1700,5,444,0,0,1700,1721,5,162,0,0,1701,1703,5,114,0,0,1702,1701, - 1,0,0,0,1702,1703,1,0,0,0,1703,1704,1,0,0,0,1704,1721,5,47,0,0,1705, - 1706,5,354,0,0,1706,1716,5,162,0,0,1707,1708,5,502,0,0,1708,1716, - 5,162,0,0,1709,1710,5,136,0,0,1710,1711,5,162,0,0,1711,1716,5,360, - 0,0,1712,1713,5,112,0,0,1713,1714,5,162,0,0,1714,1716,5,360,0,0, - 1715,1705,1,0,0,0,1715,1707,1,0,0,0,1715,1709,1,0,0,0,1715,1712, - 1,0,0,0,1716,1721,1,0,0,0,1717,1718,5,162,0,0,1718,1719,5,591,0, - 0,1719,1721,7,12,0,0,1720,1697,1,0,0,0,1720,1699,1,0,0,0,1720,1702, - 1,0,0,0,1720,1715,1,0,0,0,1720,1717,1,0,0,0,1721,83,1,0,0,0,1722, - 1723,5,421,0,0,1723,1737,5,882,0,0,1724,1725,5,39,0,0,1725,1737, - 5,882,0,0,1726,1727,5,678,0,0,1727,1737,5,882,0,0,1728,1729,5,529, - 0,0,1729,1737,5,882,0,0,1730,1731,5,601,0,0,1731,1737,5,882,0,0, - 1732,1733,5,519,0,0,1733,1737,5,882,0,0,1734,1735,5,537,0,0,1735, - 1737,3,712,356,0,1736,1722,1,0,0,0,1736,1724,1,0,0,0,1736,1726,1, - 0,0,0,1736,1728,1,0,0,0,1736,1730,1,0,0,0,1736,1732,1,0,0,0,1736, - 1734,1,0,0,0,1737,85,1,0,0,0,1738,1739,5,866,0,0,1739,1744,3,88, - 44,0,1740,1741,5,868,0,0,1741,1743,3,88,44,0,1742,1740,1,0,0,0,1743, - 1746,1,0,0,0,1744,1742,1,0,0,0,1744,1745,1,0,0,0,1745,1747,1,0,0, - 0,1746,1744,1,0,0,0,1747,1748,5,867,0,0,1748,87,1,0,0,0,1749,1750, - 3,658,329,0,1750,1751,3,94,47,0,1751,1833,1,0,0,0,1752,1754,7,19, - 0,0,1753,1755,3,642,321,0,1754,1753,1,0,0,0,1754,1755,1,0,0,0,1755, - 1757,1,0,0,0,1756,1758,3,74,37,0,1757,1756,1,0,0,0,1757,1758,1,0, - 0,0,1758,1759,1,0,0,0,1759,1763,3,738,369,0,1760,1762,3,76,38,0, - 1761,1760,1,0,0,0,1762,1765,1,0,0,0,1763,1761,1,0,0,0,1763,1764, - 1,0,0,0,1764,1833,1,0,0,0,1765,1763,1,0,0,0,1766,1768,7,20,0,0,1767, - 1769,7,19,0,0,1768,1767,1,0,0,0,1768,1769,1,0,0,0,1769,1771,1,0, - 0,0,1770,1772,3,642,321,0,1771,1770,1,0,0,0,1771,1772,1,0,0,0,1772, - 1773,1,0,0,0,1773,1777,3,738,369,0,1774,1776,3,76,38,0,1775,1774, - 1,0,0,0,1776,1779,1,0,0,0,1777,1775,1,0,0,0,1777,1778,1,0,0,0,1778, - 1833,1,0,0,0,1779,1777,1,0,0,0,1780,1782,3,92,46,0,1781,1780,1,0, - 0,0,1781,1782,1,0,0,0,1782,1783,1,0,0,0,1783,1784,5,131,0,0,1784, - 1786,5,92,0,0,1785,1787,3,74,37,0,1786,1785,1,0,0,0,1786,1787,1, - 0,0,0,1787,1788,1,0,0,0,1788,1792,3,738,369,0,1789,1791,3,76,38, - 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,1833,1,0,0,0,1794,1792,1,0,0,0,1795,1797,3,92,46,0, - 1796,1795,1,0,0,0,1796,1797,1,0,0,0,1797,1798,1,0,0,0,1798,1800, - 5,182,0,0,1799,1801,7,19,0,0,1800,1799,1,0,0,0,1800,1801,1,0,0,0, - 1801,1803,1,0,0,0,1802,1804,3,642,321,0,1803,1802,1,0,0,0,1803,1804, - 1,0,0,0,1804,1806,1,0,0,0,1805,1807,3,74,37,0,1806,1805,1,0,0,0, - 1806,1807,1,0,0,0,1807,1808,1,0,0,0,1808,1812,3,738,369,0,1809,1811, - 3,76,38,0,1810,1809,1,0,0,0,1811,1814,1,0,0,0,1812,1810,1,0,0,0, - 1812,1813,1,0,0,0,1813,1833,1,0,0,0,1814,1812,1,0,0,0,1815,1817, - 3,92,46,0,1816,1815,1,0,0,0,1816,1817,1,0,0,0,1817,1818,1,0,0,0, - 1818,1819,5,67,0,0,1819,1821,5,92,0,0,1820,1822,3,642,321,0,1821, - 1820,1,0,0,0,1821,1822,1,0,0,0,1822,1823,1,0,0,0,1823,1824,3,738, - 369,0,1824,1825,3,98,49,0,1825,1833,1,0,0,0,1826,1827,5,27,0,0,1827, - 1828,5,866,0,0,1828,1829,3,804,402,0,1829,1830,5,867,0,0,1830,1833, - 1,0,0,0,1831,1833,3,90,45,0,1832,1749,1,0,0,0,1832,1752,1,0,0,0, - 1832,1766,1,0,0,0,1832,1781,1,0,0,0,1832,1796,1,0,0,0,1832,1816, - 1,0,0,0,1832,1826,1,0,0,0,1832,1831,1,0,0,0,1833,89,1,0,0,0,1834, - 1836,3,92,46,0,1835,1834,1,0,0,0,1835,1836,1,0,0,0,1836,1837,1,0, - 0,0,1837,1838,5,27,0,0,1838,1839,5,866,0,0,1839,1840,3,804,402,0, - 1840,1845,5,867,0,0,1841,1843,5,114,0,0,1842,1841,1,0,0,0,1842,1843, - 1,0,0,0,1843,1844,1,0,0,0,1844,1846,5,57,0,0,1845,1842,1,0,0,0,1845, - 1846,1,0,0,0,1846,91,1,0,0,0,1847,1849,5,31,0,0,1848,1850,3,706, - 353,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0,1850,93,1,0,0,0,1851,1855, - 3,726,363,0,1852,1854,3,96,48,0,1853,1852,1,0,0,0,1854,1857,1,0, - 0,0,1855,1853,1,0,0,0,1855,1856,1,0,0,0,1856,95,1,0,0,0,1857,1855, - 1,0,0,0,1858,1902,3,722,361,0,1859,1860,5,42,0,0,1860,1902,3,754, - 377,0,1861,1902,5,686,0,0,1862,1902,5,435,0,0,1863,1868,5,315,0, - 0,1864,1865,5,119,0,0,1865,1866,5,185,0,0,1866,1868,3,756,378,0, - 1867,1863,1,0,0,0,1867,1864,1,0,0,0,1868,1902,1,0,0,0,1869,1871, - 5,131,0,0,1870,1869,1,0,0,0,1870,1871,1,0,0,0,1871,1872,1,0,0,0, - 1872,1902,5,92,0,0,1873,1875,5,182,0,0,1874,1876,5,92,0,0,1875,1874, - 1,0,0,0,1875,1876,1,0,0,0,1876,1902,1,0,0,0,1877,1878,5,340,0,0, - 1878,1902,5,882,0,0,1879,1880,5,338,0,0,1880,1902,7,21,0,0,1881, - 1882,5,647,0,0,1882,1902,7,22,0,0,1883,1902,3,98,49,0,1884,1885, - 5,28,0,0,1885,1902,3,690,345,0,1886,1887,5,71,0,0,1887,1889,5,9, - 0,0,1888,1886,1,0,0,0,1888,1889,1,0,0,0,1889,1890,1,0,0,0,1890,1891, - 5,13,0,0,1891,1892,5,866,0,0,1892,1893,3,804,402,0,1893,1895,5,867, - 0,0,1894,1896,7,23,0,0,1895,1894,1,0,0,0,1895,1896,1,0,0,0,1896, - 1902,1,0,0,0,1897,1898,5,241,0,0,1898,1899,5,42,0,0,1899,1902,5, - 682,0,0,1900,1902,3,90,45,0,1901,1858,1,0,0,0,1901,1859,1,0,0,0, - 1901,1861,1,0,0,0,1901,1862,1,0,0,0,1901,1867,1,0,0,0,1901,1870, - 1,0,0,0,1901,1873,1,0,0,0,1901,1877,1,0,0,0,1901,1879,1,0,0,0,1901, - 1881,1,0,0,0,1901,1883,1,0,0,0,1901,1884,1,0,0,0,1901,1888,1,0,0, - 0,1901,1897,1,0,0,0,1901,1900,1,0,0,0,1902,97,1,0,0,0,1903,1904, - 5,138,0,0,1904,1906,3,652,326,0,1905,1907,3,738,369,0,1906,1905, - 1,0,0,0,1906,1907,1,0,0,0,1907,1910,1,0,0,0,1908,1909,5,110,0,0, - 1909,1911,7,24,0,0,1910,1908,1,0,0,0,1910,1911,1,0,0,0,1911,1913, - 1,0,0,0,1912,1914,3,100,50,0,1913,1912,1,0,0,0,1913,1914,1,0,0,0, - 1914,99,1,0,0,0,1915,1916,5,119,0,0,1916,1917,5,44,0,0,1917,1921, - 3,102,51,0,1918,1919,5,119,0,0,1919,1920,5,185,0,0,1920,1922,3,102, - 51,0,1921,1918,1,0,0,0,1921,1922,1,0,0,0,1922,1932,1,0,0,0,1923, - 1924,5,119,0,0,1924,1925,5,185,0,0,1925,1929,3,102,51,0,1926,1927, - 5,119,0,0,1927,1928,5,44,0,0,1928,1930,3,102,51,0,1929,1926,1,0, - 0,0,1929,1930,1,0,0,0,1930,1932,1,0,0,0,1931,1915,1,0,0,0,1931,1923, - 1,0,0,0,1932,101,1,0,0,0,1933,1942,5,146,0,0,1934,1942,5,22,0,0, - 1935,1936,5,155,0,0,1936,1942,5,116,0,0,1937,1938,5,502,0,0,1938, - 1942,5,305,0,0,1939,1940,5,155,0,0,1940,1942,5,42,0,0,1941,1933, - 1,0,0,0,1941,1934,1,0,0,0,1941,1935,1,0,0,0,1941,1937,1,0,0,0,1941, - 1939,1,0,0,0,1942,103,1,0,0,0,1943,1945,5,380,0,0,1944,1946,5,857, - 0,0,1945,1944,1,0,0,0,1945,1946,1,0,0,0,1946,1948,1,0,0,0,1947,1949, - 3,692,346,0,1948,1947,1,0,0,0,1948,1949,1,0,0,0,1949,2129,1,0,0, - 0,1950,1952,5,825,0,0,1951,1953,5,857,0,0,1952,1951,1,0,0,0,1952, - 1953,1,0,0,0,1953,1954,1,0,0,0,1954,2129,5,882,0,0,1955,1957,5,314, - 0,0,1956,1958,5,857,0,0,1957,1956,1,0,0,0,1957,1958,1,0,0,0,1958, - 1959,1,0,0,0,1959,2129,3,712,356,0,1960,1962,5,315,0,0,1961,1963, - 5,857,0,0,1962,1961,1,0,0,0,1962,1963,1,0,0,0,1963,1964,1,0,0,0, - 1964,2129,3,712,356,0,1965,1967,5,316,0,0,1966,1968,5,857,0,0,1967, - 1966,1,0,0,0,1967,1968,1,0,0,0,1968,1969,1,0,0,0,1969,2129,3,712, - 356,0,1970,1972,5,42,0,0,1971,1970,1,0,0,0,1971,1972,1,0,0,0,1972, - 1973,1,0,0,0,1973,1975,3,58,29,0,1974,1976,5,857,0,0,1975,1974,1, - 0,0,0,1975,1976,1,0,0,0,1976,1979,1,0,0,0,1977,1980,3,688,344,0, - 1978,1980,5,42,0,0,1979,1977,1,0,0,0,1979,1978,1,0,0,0,1980,2129, - 1,0,0,0,1981,1983,7,25,0,0,1982,1984,5,857,0,0,1983,1982,1,0,0,0, - 1983,1984,1,0,0,0,1984,1985,1,0,0,0,1985,2129,7,26,0,0,1986,1988, - 5,42,0,0,1987,1986,1,0,0,0,1987,1988,1,0,0,0,1988,1989,1,0,0,0,1989, - 1991,5,28,0,0,1990,1992,5,857,0,0,1991,1990,1,0,0,0,1991,1992,1, - 0,0,0,1992,1993,1,0,0,0,1993,2129,3,690,345,0,1994,1996,5,340,0, - 0,1995,1997,5,857,0,0,1996,1995,1,0,0,0,1996,1997,1,0,0,0,1997,1998, - 1,0,0,0,1998,2129,5,882,0,0,1999,2001,5,346,0,0,2000,2002,5,857, - 0,0,2001,2000,1,0,0,0,2001,2002,1,0,0,0,2002,2003,1,0,0,0,2003,2129, - 7,27,0,0,2004,2006,5,349,0,0,2005,2007,5,857,0,0,2006,2005,1,0,0, - 0,2006,2007,1,0,0,0,2007,2008,1,0,0,0,2008,2129,5,882,0,0,2009,2010, - 7,28,0,0,2010,2012,5,367,0,0,2011,2013,5,857,0,0,2012,2011,1,0,0, - 0,2012,2013,1,0,0,0,2013,2014,1,0,0,0,2014,2129,5,882,0,0,2015,2017, - 5,365,0,0,2016,2018,5,857,0,0,2017,2016,1,0,0,0,2017,2018,1,0,0, - 0,2018,2019,1,0,0,0,2019,2129,7,26,0,0,2020,2022,5,376,0,0,2021, - 2023,5,857,0,0,2022,2021,1,0,0,0,2022,2023,1,0,0,0,2023,2024,1,0, - 0,0,2024,2129,5,882,0,0,2025,2027,7,29,0,0,2026,2028,5,857,0,0,2027, - 2026,1,0,0,0,2027,2028,1,0,0,0,2028,2029,1,0,0,0,2029,2129,7,26, - 0,0,2030,2032,7,30,0,0,2031,2033,5,857,0,0,2032,2031,1,0,0,0,2032, - 2033,1,0,0,0,2033,2034,1,0,0,0,2034,2129,3,712,356,0,2035,2037,5, - 377,0,0,2036,2038,5,857,0,0,2037,2036,1,0,0,0,2037,2038,1,0,0,0, - 2038,2039,1,0,0,0,2039,2129,3,712,356,0,2040,2041,5,82,0,0,2041, - 2043,5,367,0,0,2042,2044,5,857,0,0,2043,2042,1,0,0,0,2043,2044,1, - 0,0,0,2044,2045,1,0,0,0,2045,2129,5,882,0,0,2046,2048,5,431,0,0, - 2047,2049,5,857,0,0,2048,2047,1,0,0,0,2048,2049,1,0,0,0,2049,2050, - 1,0,0,0,2050,2129,7,31,0,0,2051,2053,5,443,0,0,2052,2054,5,857,0, - 0,2053,2052,1,0,0,0,2053,2054,1,0,0,0,2054,2055,1,0,0,0,2055,2129, - 3,714,357,0,2056,2058,5,480,0,0,2057,2059,5,857,0,0,2058,2057,1, - 0,0,0,2058,2059,1,0,0,0,2059,2060,1,0,0,0,2060,2129,3,712,356,0, - 2061,2063,5,490,0,0,2062,2064,5,857,0,0,2063,2062,1,0,0,0,2063,2064, - 1,0,0,0,2064,2065,1,0,0,0,2065,2129,3,712,356,0,2066,2068,5,520, - 0,0,2067,2069,5,857,0,0,2068,2067,1,0,0,0,2068,2069,1,0,0,0,2069, - 2070,1,0,0,0,2070,2129,7,14,0,0,2071,2073,5,529,0,0,2072,2074,5, - 857,0,0,2073,2072,1,0,0,0,2073,2074,1,0,0,0,2074,2075,1,0,0,0,2075, - 2129,5,882,0,0,2076,2078,5,588,0,0,2077,2079,5,857,0,0,2078,2077, - 1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0,0,2080,2129,7,32,0,0,2081, - 2082,5,640,0,0,2082,2129,5,664,0,0,2083,2085,5,833,0,0,2084,2086, - 5,857,0,0,2085,2084,1,0,0,0,2085,2086,1,0,0,0,2086,2087,1,0,0,0, - 2087,2129,5,882,0,0,2088,2090,5,642,0,0,2089,2091,5,857,0,0,2090, - 2089,1,0,0,0,2090,2091,1,0,0,0,2091,2092,1,0,0,0,2092,2129,7,14, - 0,0,2093,2095,5,643,0,0,2094,2096,5,857,0,0,2095,2094,1,0,0,0,2095, - 2096,1,0,0,0,2096,2097,1,0,0,0,2097,2129,7,14,0,0,2098,2100,5,644, - 0,0,2099,2101,5,857,0,0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101, - 2104,1,0,0,0,2102,2105,5,42,0,0,2103,2105,3,712,356,0,2104,2102, - 1,0,0,0,2104,2103,1,0,0,0,2105,2129,1,0,0,0,2106,2107,5,658,0,0, - 2107,2109,3,666,333,0,2108,2110,3,108,54,0,2109,2108,1,0,0,0,2109, - 2110,1,0,0,0,2110,2129,1,0,0,0,2111,2112,5,659,0,0,2112,2113,5,857, - 0,0,2113,2129,3,106,53,0,2114,2129,3,108,54,0,2115,2117,5,665,0, - 0,2116,2118,5,857,0,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2119, - 1,0,0,0,2119,2129,7,26,0,0,2120,2122,5,181,0,0,2121,2123,5,857,0, - 0,2122,2121,1,0,0,0,2122,2123,1,0,0,0,2123,2124,1,0,0,0,2124,2125, - 5,866,0,0,2125,2126,3,650,325,0,2126,2127,5,867,0,0,2127,2129,1, - 0,0,0,2128,1943,1,0,0,0,2128,1950,1,0,0,0,2128,1955,1,0,0,0,2128, - 1960,1,0,0,0,2128,1965,1,0,0,0,2128,1971,1,0,0,0,2128,1981,1,0,0, - 0,2128,1987,1,0,0,0,2128,1994,1,0,0,0,2128,1999,1,0,0,0,2128,2004, - 1,0,0,0,2128,2009,1,0,0,0,2128,2015,1,0,0,0,2128,2020,1,0,0,0,2128, - 2025,1,0,0,0,2128,2030,1,0,0,0,2128,2035,1,0,0,0,2128,2040,1,0,0, - 0,2128,2046,1,0,0,0,2128,2051,1,0,0,0,2128,2056,1,0,0,0,2128,2061, - 1,0,0,0,2128,2066,1,0,0,0,2128,2071,1,0,0,0,2128,2076,1,0,0,0,2128, - 2081,1,0,0,0,2128,2083,1,0,0,0,2128,2088,1,0,0,0,2128,2093,1,0,0, - 0,2128,2098,1,0,0,0,2128,2106,1,0,0,0,2128,2111,1,0,0,0,2128,2114, - 1,0,0,0,2128,2115,1,0,0,0,2128,2120,1,0,0,0,2129,105,1,0,0,0,2130, - 2131,7,33,0,0,2131,107,1,0,0,0,2132,2133,5,647,0,0,2133,2134,7,22, - 0,0,2134,109,1,0,0,0,2135,2136,5,130,0,0,2136,2137,5,20,0,0,2137, - 2140,3,112,56,0,2138,2139,5,528,0,0,2139,2141,3,712,356,0,2140,2138, - 1,0,0,0,2140,2141,1,0,0,0,2141,2149,1,0,0,0,2142,2143,5,652,0,0, - 2143,2144,5,20,0,0,2144,2147,3,114,57,0,2145,2146,5,653,0,0,2146, - 2148,3,712,356,0,2147,2145,1,0,0,0,2147,2148,1,0,0,0,2148,2150,1, - 0,0,0,2149,2142,1,0,0,0,2149,2150,1,0,0,0,2150,2162,1,0,0,0,2151, - 2152,5,866,0,0,2152,2157,3,116,58,0,2153,2154,5,868,0,0,2154,2156, - 3,116,58,0,2155,2153,1,0,0,0,2156,2159,1,0,0,0,2157,2155,1,0,0,0, - 2157,2158,1,0,0,0,2158,2160,1,0,0,0,2159,2157,1,0,0,0,2160,2161, - 5,867,0,0,2161,2163,1,0,0,0,2162,2151,1,0,0,0,2162,2163,1,0,0,0, - 2163,111,1,0,0,0,2164,2166,5,101,0,0,2165,2164,1,0,0,0,2165,2166, - 1,0,0,0,2166,2167,1,0,0,0,2167,2168,5,418,0,0,2168,2169,5,866,0, - 0,2169,2170,3,804,402,0,2170,2171,5,867,0,0,2171,2211,1,0,0,0,2172, - 2174,5,101,0,0,2173,2172,1,0,0,0,2173,2174,1,0,0,0,2174,2175,1,0, - 0,0,2175,2179,5,92,0,0,2176,2177,5,308,0,0,2177,2178,5,857,0,0,2178, - 2180,7,34,0,0,2179,2176,1,0,0,0,2179,2180,1,0,0,0,2180,2181,1,0, - 0,0,2181,2183,5,866,0,0,2182,2184,3,660,330,0,2183,2182,1,0,0,0, - 2183,2184,1,0,0,0,2184,2185,1,0,0,0,2185,2211,5,867,0,0,2186,2196, - 5,134,0,0,2187,2188,5,866,0,0,2188,2189,3,804,402,0,2189,2190,5, - 867,0,0,2190,2197,1,0,0,0,2191,2192,5,337,0,0,2192,2193,5,866,0, - 0,2193,2194,3,660,330,0,2194,2195,5,867,0,0,2195,2197,1,0,0,0,2196, - 2187,1,0,0,0,2196,2191,1,0,0,0,2197,2211,1,0,0,0,2198,2208,5,449, - 0,0,2199,2200,5,866,0,0,2200,2201,3,804,402,0,2201,2202,5,867,0, - 0,2202,2209,1,0,0,0,2203,2204,5,337,0,0,2204,2205,5,866,0,0,2205, - 2206,3,660,330,0,2206,2207,5,867,0,0,2207,2209,1,0,0,0,2208,2199, - 1,0,0,0,2208,2203,1,0,0,0,2209,2211,1,0,0,0,2210,2165,1,0,0,0,2210, - 2173,1,0,0,0,2210,2186,1,0,0,0,2210,2198,1,0,0,0,2211,113,1,0,0, - 0,2212,2214,5,101,0,0,2213,2212,1,0,0,0,2213,2214,1,0,0,0,2214,2215, - 1,0,0,0,2215,2216,5,418,0,0,2216,2217,5,866,0,0,2217,2218,3,804, - 402,0,2218,2219,5,867,0,0,2219,2234,1,0,0,0,2220,2222,5,101,0,0, - 2221,2220,1,0,0,0,2221,2222,1,0,0,0,2222,2223,1,0,0,0,2223,2227, - 5,92,0,0,2224,2225,5,308,0,0,2225,2226,5,857,0,0,2226,2228,7,34, - 0,0,2227,2224,1,0,0,0,2227,2228,1,0,0,0,2228,2229,1,0,0,0,2229,2230, - 5,866,0,0,2230,2231,3,660,330,0,2231,2232,5,867,0,0,2232,2234,1, - 0,0,0,2233,2213,1,0,0,0,2233,2221,1,0,0,0,2234,115,1,0,0,0,2235, - 2236,5,130,0,0,2236,2237,3,672,336,0,2237,2238,5,189,0,0,2238,2239, - 5,447,0,0,2239,2240,5,662,0,0,2240,2241,5,866,0,0,2241,2246,3,118, - 59,0,2242,2243,5,868,0,0,2243,2245,3,118,59,0,2244,2242,1,0,0,0, - 2245,2248,1,0,0,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2249, - 1,0,0,0,2248,2246,1,0,0,0,2249,2253,5,867,0,0,2250,2252,3,124,62, - 0,2251,2250,1,0,0,0,2252,2255,1,0,0,0,2253,2251,1,0,0,0,2253,2254, - 1,0,0,0,2254,2267,1,0,0,0,2255,2253,1,0,0,0,2256,2257,5,866,0,0, - 2257,2262,3,122,61,0,2258,2259,5,868,0,0,2259,2261,3,122,61,0,2260, - 2258,1,0,0,0,2261,2264,1,0,0,0,2262,2260,1,0,0,0,2262,2263,1,0,0, - 0,2263,2265,1,0,0,0,2264,2262,1,0,0,0,2265,2266,5,867,0,0,2266,2268, - 1,0,0,0,2267,2256,1,0,0,0,2267,2268,1,0,0,0,2268,2382,1,0,0,0,2269, - 2270,5,130,0,0,2270,2271,3,672,336,0,2271,2272,5,189,0,0,2272,2273, - 5,447,0,0,2273,2274,5,662,0,0,2274,2278,3,118,59,0,2275,2277,3,124, - 62,0,2276,2275,1,0,0,0,2277,2280,1,0,0,0,2278,2276,1,0,0,0,2278, - 2279,1,0,0,0,2279,2292,1,0,0,0,2280,2278,1,0,0,0,2281,2282,5,866, - 0,0,2282,2287,3,122,61,0,2283,2284,5,868,0,0,2284,2286,3,122,61, - 0,2285,2283,1,0,0,0,2286,2289,1,0,0,0,2287,2285,1,0,0,0,2287,2288, - 1,0,0,0,2288,2290,1,0,0,0,2289,2287,1,0,0,0,2290,2291,5,867,0,0, - 2291,2293,1,0,0,0,2292,2281,1,0,0,0,2292,2293,1,0,0,0,2293,2382, - 1,0,0,0,2294,2295,5,130,0,0,2295,2296,3,672,336,0,2296,2297,5,189, - 0,0,2297,2298,5,80,0,0,2298,2299,5,866,0,0,2299,2304,3,118,59,0, - 2300,2301,5,868,0,0,2301,2303,3,118,59,0,2302,2300,1,0,0,0,2303, - 2306,1,0,0,0,2304,2302,1,0,0,0,2304,2305,1,0,0,0,2305,2307,1,0,0, - 0,2306,2304,1,0,0,0,2307,2311,5,867,0,0,2308,2310,3,124,62,0,2309, - 2308,1,0,0,0,2310,2313,1,0,0,0,2311,2309,1,0,0,0,2311,2312,1,0,0, - 0,2312,2325,1,0,0,0,2313,2311,1,0,0,0,2314,2315,5,866,0,0,2315,2320, - 3,122,61,0,2316,2317,5,868,0,0,2317,2319,3,122,61,0,2318,2316,1, - 0,0,0,2319,2322,1,0,0,0,2320,2318,1,0,0,0,2320,2321,1,0,0,0,2321, - 2323,1,0,0,0,2322,2320,1,0,0,0,2323,2324,5,867,0,0,2324,2326,1,0, - 0,0,2325,2314,1,0,0,0,2325,2326,1,0,0,0,2326,2382,1,0,0,0,2327,2328, - 5,130,0,0,2328,2329,3,672,336,0,2329,2330,5,189,0,0,2330,2331,5, - 80,0,0,2331,2332,5,866,0,0,2332,2337,3,120,60,0,2333,2334,5,868, - 0,0,2334,2336,3,120,60,0,2335,2333,1,0,0,0,2336,2339,1,0,0,0,2337, - 2335,1,0,0,0,2337,2338,1,0,0,0,2338,2340,1,0,0,0,2339,2337,1,0,0, - 0,2340,2344,5,867,0,0,2341,2343,3,124,62,0,2342,2341,1,0,0,0,2343, - 2346,1,0,0,0,2344,2342,1,0,0,0,2344,2345,1,0,0,0,2345,2358,1,0,0, - 0,2346,2344,1,0,0,0,2347,2348,5,866,0,0,2348,2353,3,122,61,0,2349, - 2350,5,868,0,0,2350,2352,3,122,61,0,2351,2349,1,0,0,0,2352,2355, - 1,0,0,0,2353,2351,1,0,0,0,2353,2354,1,0,0,0,2354,2356,1,0,0,0,2355, - 2353,1,0,0,0,2356,2357,5,867,0,0,2357,2359,1,0,0,0,2358,2347,1,0, - 0,0,2358,2359,1,0,0,0,2359,2382,1,0,0,0,2360,2361,5,130,0,0,2361, - 2365,3,672,336,0,2362,2364,3,124,62,0,2363,2362,1,0,0,0,2364,2367, - 1,0,0,0,2365,2363,1,0,0,0,2365,2366,1,0,0,0,2366,2379,1,0,0,0,2367, - 2365,1,0,0,0,2368,2369,5,866,0,0,2369,2374,3,122,61,0,2370,2371, - 5,868,0,0,2371,2373,3,122,61,0,2372,2370,1,0,0,0,2373,2376,1,0,0, - 0,2374,2372,1,0,0,0,2374,2375,1,0,0,0,2375,2377,1,0,0,0,2376,2374, - 1,0,0,0,2377,2378,5,867,0,0,2378,2380,1,0,0,0,2379,2368,1,0,0,0, - 2379,2380,1,0,0,0,2380,2382,1,0,0,0,2381,2235,1,0,0,0,2381,2269, - 1,0,0,0,2381,2294,1,0,0,0,2381,2327,1,0,0,0,2381,2360,1,0,0,0,2382, - 117,1,0,0,0,2383,2387,3,724,362,0,2384,2387,3,804,402,0,2385,2387, - 5,111,0,0,2386,2383,1,0,0,0,2386,2384,1,0,0,0,2386,2385,1,0,0,0, - 2387,119,1,0,0,0,2388,2389,5,866,0,0,2389,2392,3,118,59,0,2390,2391, - 5,868,0,0,2391,2393,3,118,59,0,2392,2390,1,0,0,0,2393,2394,1,0,0, - 0,2394,2392,1,0,0,0,2394,2395,1,0,0,0,2395,2396,1,0,0,0,2396,2397, - 5,867,0,0,2397,121,1,0,0,0,2398,2399,5,652,0,0,2399,2403,3,706,353, - 0,2400,2402,3,124,62,0,2401,2400,1,0,0,0,2402,2405,1,0,0,0,2403, - 2401,1,0,0,0,2403,2404,1,0,0,0,2404,123,1,0,0,0,2405,2403,1,0,0, - 0,2406,2408,5,42,0,0,2407,2406,1,0,0,0,2407,2408,1,0,0,0,2408,2410, - 1,0,0,0,2409,2411,5,647,0,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0, - 2411,2412,1,0,0,0,2412,2414,5,380,0,0,2413,2415,5,857,0,0,2414,2413, - 1,0,0,0,2414,2415,1,0,0,0,2415,2416,1,0,0,0,2416,2455,3,692,346, - 0,2417,2419,5,340,0,0,2418,2420,5,857,0,0,2419,2418,1,0,0,0,2419, - 2420,1,0,0,0,2420,2421,1,0,0,0,2421,2455,5,882,0,0,2422,2423,5,360, - 0,0,2423,2425,5,367,0,0,2424,2426,5,857,0,0,2425,2424,1,0,0,0,2425, - 2426,1,0,0,0,2426,2427,1,0,0,0,2427,2455,5,882,0,0,2428,2429,5,82, - 0,0,2429,2431,5,367,0,0,2430,2432,5,857,0,0,2431,2430,1,0,0,0,2431, - 2432,1,0,0,0,2432,2433,1,0,0,0,2433,2455,5,882,0,0,2434,2436,5,480, - 0,0,2435,2437,5,857,0,0,2436,2435,1,0,0,0,2436,2437,1,0,0,0,2437, - 2438,1,0,0,0,2438,2455,3,712,356,0,2439,2441,5,490,0,0,2440,2442, - 5,857,0,0,2441,2440,1,0,0,0,2441,2442,1,0,0,0,2442,2443,1,0,0,0, - 2443,2455,3,712,356,0,2444,2446,5,658,0,0,2445,2447,5,857,0,0,2446, - 2445,1,0,0,0,2446,2447,1,0,0,0,2447,2448,1,0,0,0,2448,2455,3,666, - 333,0,2449,2451,5,504,0,0,2450,2452,5,857,0,0,2451,2450,1,0,0,0, - 2451,2452,1,0,0,0,2452,2453,1,0,0,0,2453,2455,3,706,353,0,2454,2407, - 1,0,0,0,2454,2417,1,0,0,0,2454,2422,1,0,0,0,2454,2428,1,0,0,0,2454, - 2434,1,0,0,0,2454,2439,1,0,0,0,2454,2444,1,0,0,0,2454,2449,1,0,0, - 0,2455,125,1,0,0,0,2456,2457,5,8,0,0,2457,2459,7,0,0,0,2458,2460, - 3,628,314,0,2459,2458,1,0,0,0,2459,2460,1,0,0,0,2460,2462,1,0,0, - 0,2461,2463,3,56,28,0,2462,2461,1,0,0,0,2463,2464,1,0,0,0,2464,2462, - 1,0,0,0,2464,2465,1,0,0,0,2465,2475,1,0,0,0,2466,2467,5,8,0,0,2467, - 2468,7,0,0,0,2468,2469,3,628,314,0,2469,2470,5,677,0,0,2470,2471, - 5,360,0,0,2471,2472,5,367,0,0,2472,2473,5,496,0,0,2473,2475,1,0, - 0,0,2474,2456,1,0,0,0,2474,2466,1,0,0,0,2475,127,1,0,0,0,2476,2478, - 5,8,0,0,2477,2479,3,62,31,0,2478,2477,1,0,0,0,2478,2479,1,0,0,0, - 2479,2480,1,0,0,0,2480,2481,5,385,0,0,2481,2485,3,702,351,0,2482, - 2483,5,119,0,0,2483,2484,5,590,0,0,2484,2486,3,64,32,0,2485,2482, - 1,0,0,0,2485,2486,1,0,0,0,2486,2493,1,0,0,0,2487,2488,5,119,0,0, - 2488,2490,5,343,0,0,2489,2491,5,114,0,0,2490,2489,1,0,0,0,2490,2491, - 1,0,0,0,2491,2492,1,0,0,0,2492,2494,5,541,0,0,2493,2487,1,0,0,0, - 2493,2494,1,0,0,0,2494,2498,1,0,0,0,2495,2496,5,141,0,0,2496,2497, - 5,176,0,0,2497,2499,3,702,351,0,2498,2495,1,0,0,0,2498,2499,1,0, - 0,0,2499,2501,1,0,0,0,2500,2502,3,72,36,0,2501,2500,1,0,0,0,2501, - 2502,1,0,0,0,2502,2505,1,0,0,0,2503,2504,5,340,0,0,2504,2506,5,882, - 0,0,2505,2503,1,0,0,0,2505,2506,1,0,0,0,2506,2509,1,0,0,0,2507,2508, - 5,371,0,0,2508,2510,3,422,211,0,2509,2507,1,0,0,0,2509,2510,1,0, - 0,0,2510,129,1,0,0,0,2511,2512,5,8,0,0,2512,2513,5,409,0,0,2513, - 2517,3,632,316,0,2514,2516,3,82,41,0,2515,2514,1,0,0,0,2516,2519, - 1,0,0,0,2517,2515,1,0,0,0,2517,2518,1,0,0,0,2518,131,1,0,0,0,2519, - 2517,1,0,0,0,2520,2521,5,8,0,0,2521,2522,5,433,0,0,2522,2523,5,585, - 0,0,2523,2524,5,801,0,0,2524,2525,5,453,0,0,2525,2526,5,92,0,0,2526, - 133,1,0,0,0,2527,2528,5,8,0,0,2528,2529,5,451,0,0,2529,2530,5,74, - 0,0,2530,2531,3,706,353,0,2531,2532,5,6,0,0,2532,2533,5,671,0,0, - 2533,2539,5,882,0,0,2534,2536,5,428,0,0,2535,2537,5,857,0,0,2536, - 2535,1,0,0,0,2536,2537,1,0,0,0,2537,2538,1,0,0,0,2538,2540,3,714, - 357,0,2539,2534,1,0,0,0,2539,2540,1,0,0,0,2540,2542,1,0,0,0,2541, - 2543,5,687,0,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2544,1,0, - 0,0,2544,2546,5,380,0,0,2545,2547,5,857,0,0,2546,2545,1,0,0,0,2546, - 2547,1,0,0,0,2547,2548,1,0,0,0,2548,2549,3,692,346,0,2549,135,1, - 0,0,0,2550,2551,5,8,0,0,2551,2552,5,132,0,0,2552,2556,3,702,351, - 0,2553,2555,3,82,41,0,2554,2553,1,0,0,0,2555,2558,1,0,0,0,2556,2554, - 1,0,0,0,2556,2557,1,0,0,0,2557,137,1,0,0,0,2558,2556,1,0,0,0,2559, - 2560,5,8,0,0,2560,2561,5,592,0,0,2561,2562,3,706,353,0,2562,2563, - 5,518,0,0,2563,2564,5,866,0,0,2564,2569,3,84,42,0,2565,2566,5,868, - 0,0,2566,2568,3,84,42,0,2567,2565,1,0,0,0,2568,2571,1,0,0,0,2569, - 2567,1,0,0,0,2569,2570,1,0,0,0,2570,2572,1,0,0,0,2571,2569,1,0,0, - 0,2572,2573,5,867,0,0,2573,139,1,0,0,0,2574,2575,5,8,0,0,2575,2576, - 5,173,0,0,2576,2585,3,652,326,0,2577,2582,3,146,73,0,2578,2579,5, - 868,0,0,2579,2581,3,146,73,0,2580,2578,1,0,0,0,2581,2584,1,0,0,0, - 2582,2580,1,0,0,0,2582,2583,1,0,0,0,2583,2586,1,0,0,0,2584,2582, - 1,0,0,0,2585,2577,1,0,0,0,2585,2586,1,0,0,0,2586,2594,1,0,0,0,2587, - 2591,3,148,74,0,2588,2590,3,148,74,0,2589,2588,1,0,0,0,2590,2593, - 1,0,0,0,2591,2589,1,0,0,0,2591,2592,1,0,0,0,2592,2595,1,0,0,0,2593, - 2591,1,0,0,0,2594,2587,1,0,0,0,2594,2595,1,0,0,0,2595,141,1,0,0, - 0,2596,2598,5,8,0,0,2597,2599,5,180,0,0,2598,2597,1,0,0,0,2598,2599, - 1,0,0,0,2599,2600,1,0,0,0,2600,2601,5,658,0,0,2601,2602,3,666,333, - 0,2602,2603,7,35,0,0,2603,2604,5,361,0,0,2604,2610,5,882,0,0,2605, - 2607,5,428,0,0,2606,2608,5,857,0,0,2607,2606,1,0,0,0,2607,2608,1, - 0,0,0,2608,2609,1,0,0,0,2609,2611,3,714,357,0,2610,2605,1,0,0,0, - 2610,2611,1,0,0,0,2611,2613,1,0,0,0,2612,2614,5,687,0,0,2613,2612, - 1,0,0,0,2613,2614,1,0,0,0,2614,2618,1,0,0,0,2615,2616,5,141,0,0, - 2616,2617,5,176,0,0,2617,2619,3,664,332,0,2618,2615,1,0,0,0,2618, - 2619,1,0,0,0,2619,2625,1,0,0,0,2620,2622,5,314,0,0,2621,2623,5,857, - 0,0,2622,2621,1,0,0,0,2622,2623,1,0,0,0,2623,2624,1,0,0,0,2624,2626, - 3,714,357,0,2625,2620,1,0,0,0,2625,2626,1,0,0,0,2626,2629,1,0,0, - 0,2627,2628,5,155,0,0,2628,2630,7,36,0,0,2629,2627,1,0,0,0,2629, - 2630,1,0,0,0,2630,2636,1,0,0,0,2631,2633,5,376,0,0,2632,2634,5,857, - 0,0,2633,2632,1,0,0,0,2633,2634,1,0,0,0,2634,2635,1,0,0,0,2635,2637, - 5,882,0,0,2636,2631,1,0,0,0,2636,2637,1,0,0,0,2637,2643,1,0,0,0, - 2638,2640,5,380,0,0,2639,2641,5,857,0,0,2640,2639,1,0,0,0,2640,2641, - 1,0,0,0,2641,2642,1,0,0,0,2642,2644,3,692,346,0,2643,2638,1,0,0, - 0,2643,2644,1,0,0,0,2644,2650,1,0,0,0,2645,2647,5,825,0,0,2646,2648, - 5,857,0,0,2647,2646,1,0,0,0,2647,2648,1,0,0,0,2648,2649,1,0,0,0, - 2649,2651,5,882,0,0,2650,2645,1,0,0,0,2650,2651,1,0,0,0,2651,143, - 1,0,0,0,2652,2656,5,8,0,0,2653,2654,5,308,0,0,2654,2655,5,857,0, - 0,2655,2657,7,11,0,0,2656,2653,1,0,0,0,2656,2657,1,0,0,0,2657,2659, - 1,0,0,0,2658,2660,3,62,31,0,2659,2658,1,0,0,0,2659,2660,1,0,0,0, - 2660,2664,1,0,0,0,2661,2662,5,162,0,0,2662,2663,5,591,0,0,2663,2665, - 7,12,0,0,2664,2661,1,0,0,0,2664,2665,1,0,0,0,2665,2666,1,0,0,0,2666, - 2667,5,684,0,0,2667,2672,3,636,318,0,2668,2669,5,866,0,0,2669,2670, - 3,660,330,0,2670,2671,5,867,0,0,2671,2673,1,0,0,0,2672,2668,1,0, - 0,0,2672,2673,1,0,0,0,2673,2674,1,0,0,0,2674,2675,5,13,0,0,2675, - 2682,3,210,105,0,2676,2678,5,194,0,0,2677,2679,7,13,0,0,2678,2677, - 1,0,0,0,2678,2679,1,0,0,0,2679,2680,1,0,0,0,2680,2681,5,27,0,0,2681, - 2683,5,121,0,0,2682,2676,1,0,0,0,2682,2683,1,0,0,0,2683,145,1,0, - 0,0,2684,2691,3,104,52,0,2685,2687,5,868,0,0,2686,2685,1,0,0,0,2686, - 2687,1,0,0,0,2687,2688,1,0,0,0,2688,2690,3,104,52,0,2689,2686,1, - 0,0,0,2690,2693,1,0,0,0,2691,2689,1,0,0,0,2691,2692,1,0,0,0,2692, - 2949,1,0,0,0,2693,2691,1,0,0,0,2694,2696,5,6,0,0,2695,2697,5,29, - 0,0,2696,2695,1,0,0,0,2696,2697,1,0,0,0,2697,2698,1,0,0,0,2698,2699, - 3,662,331,0,2699,2703,3,94,47,0,2700,2704,5,402,0,0,2701,2702,5, - 306,0,0,2702,2704,3,662,331,0,2703,2700,1,0,0,0,2703,2701,1,0,0, - 0,2703,2704,1,0,0,0,2704,2949,1,0,0,0,2705,2707,5,6,0,0,2706,2708, - 5,29,0,0,2707,2706,1,0,0,0,2707,2708,1,0,0,0,2708,2709,1,0,0,0,2709, - 2710,5,866,0,0,2710,2711,3,662,331,0,2711,2718,3,94,47,0,2712,2713, - 5,868,0,0,2713,2714,3,662,331,0,2714,2715,3,94,47,0,2715,2717,1, - 0,0,0,2716,2712,1,0,0,0,2717,2720,1,0,0,0,2718,2716,1,0,0,0,2718, - 2719,1,0,0,0,2719,2721,1,0,0,0,2720,2718,1,0,0,0,2721,2722,5,867, - 0,0,2722,2949,1,0,0,0,2723,2724,5,6,0,0,2724,2726,7,19,0,0,2725, - 2727,3,642,321,0,2726,2725,1,0,0,0,2726,2727,1,0,0,0,2727,2729,1, - 0,0,0,2728,2730,3,74,37,0,2729,2728,1,0,0,0,2729,2730,1,0,0,0,2730, - 2731,1,0,0,0,2731,2735,3,738,369,0,2732,2734,3,76,38,0,2733,2732, - 1,0,0,0,2734,2737,1,0,0,0,2735,2733,1,0,0,0,2735,2736,1,0,0,0,2736, - 2949,1,0,0,0,2737,2735,1,0,0,0,2738,2739,5,6,0,0,2739,2741,7,20, - 0,0,2740,2742,7,19,0,0,2741,2740,1,0,0,0,2741,2742,1,0,0,0,2742, - 2744,1,0,0,0,2743,2745,3,642,321,0,2744,2743,1,0,0,0,2744,2745,1, - 0,0,0,2745,2746,1,0,0,0,2746,2750,3,738,369,0,2747,2749,3,76,38, - 0,2748,2747,1,0,0,0,2749,2752,1,0,0,0,2750,2748,1,0,0,0,2750,2751, - 1,0,0,0,2751,2949,1,0,0,0,2752,2750,1,0,0,0,2753,2758,5,6,0,0,2754, - 2756,5,31,0,0,2755,2757,3,706,353,0,2756,2755,1,0,0,0,2756,2757, - 1,0,0,0,2757,2759,1,0,0,0,2758,2754,1,0,0,0,2758,2759,1,0,0,0,2759, - 2760,1,0,0,0,2760,2761,5,131,0,0,2761,2763,5,92,0,0,2762,2764,3, - 74,37,0,2763,2762,1,0,0,0,2763,2764,1,0,0,0,2764,2765,1,0,0,0,2765, - 2769,3,738,369,0,2766,2768,3,76,38,0,2767,2766,1,0,0,0,2768,2771, - 1,0,0,0,2769,2767,1,0,0,0,2769,2770,1,0,0,0,2770,2949,1,0,0,0,2771, - 2769,1,0,0,0,2772,2777,5,6,0,0,2773,2775,5,31,0,0,2774,2776,3,706, - 353,0,2775,2774,1,0,0,0,2775,2776,1,0,0,0,2776,2778,1,0,0,0,2777, - 2773,1,0,0,0,2777,2778,1,0,0,0,2778,2779,1,0,0,0,2779,2781,5,182, - 0,0,2780,2782,7,19,0,0,2781,2780,1,0,0,0,2781,2782,1,0,0,0,2782, - 2784,1,0,0,0,2783,2785,3,642,321,0,2784,2783,1,0,0,0,2784,2785,1, - 0,0,0,2785,2787,1,0,0,0,2786,2788,3,74,37,0,2787,2786,1,0,0,0,2787, - 2788,1,0,0,0,2788,2789,1,0,0,0,2789,2793,3,738,369,0,2790,2792,3, - 76,38,0,2791,2790,1,0,0,0,2792,2795,1,0,0,0,2793,2791,1,0,0,0,2793, - 2794,1,0,0,0,2794,2949,1,0,0,0,2795,2793,1,0,0,0,2796,2801,5,6,0, - 0,2797,2799,5,31,0,0,2798,2800,3,706,353,0,2799,2798,1,0,0,0,2799, - 2800,1,0,0,0,2800,2802,1,0,0,0,2801,2797,1,0,0,0,2801,2802,1,0,0, - 0,2802,2803,1,0,0,0,2803,2804,5,67,0,0,2804,2806,5,92,0,0,2805,2807, - 3,642,321,0,2806,2805,1,0,0,0,2806,2807,1,0,0,0,2807,2808,1,0,0, - 0,2808,2809,3,738,369,0,2809,2810,3,98,49,0,2810,2949,1,0,0,0,2811, - 2813,5,6,0,0,2812,2814,3,90,45,0,2813,2812,1,0,0,0,2813,2814,1,0, - 0,0,2814,2949,1,0,0,0,2815,2816,5,51,0,0,2816,2817,7,37,0,0,2817, - 2949,3,706,353,0,2818,2819,5,8,0,0,2819,2820,7,37,0,0,2820,2822, - 3,706,353,0,2821,2823,5,114,0,0,2822,2821,1,0,0,0,2822,2823,1,0, - 0,0,2823,2825,1,0,0,0,2824,2826,5,57,0,0,2825,2824,1,0,0,0,2825, - 2826,1,0,0,0,2826,2949,1,0,0,0,2827,2829,5,308,0,0,2828,2830,5,857, - 0,0,2829,2828,1,0,0,0,2829,2830,1,0,0,0,2830,2831,1,0,0,0,2831,2949, - 7,38,0,0,2832,2834,5,8,0,0,2833,2835,5,29,0,0,2834,2833,1,0,0,0, - 2834,2835,1,0,0,0,2835,2836,1,0,0,0,2836,2844,3,662,331,0,2837,2838, - 5,155,0,0,2838,2839,5,42,0,0,2839,2845,3,754,377,0,2840,2841,5,155, - 0,0,2841,2845,7,17,0,0,2842,2843,5,51,0,0,2843,2845,5,42,0,0,2844, - 2837,1,0,0,0,2844,2840,1,0,0,0,2844,2842,1,0,0,0,2845,2949,1,0,0, - 0,2846,2847,5,8,0,0,2847,2848,5,82,0,0,2848,2849,3,642,321,0,2849, - 2850,7,17,0,0,2850,2949,1,0,0,0,2851,2853,5,25,0,0,2852,2854,5,29, - 0,0,2853,2852,1,0,0,0,2853,2854,1,0,0,0,2854,2855,1,0,0,0,2855,2856, - 3,662,331,0,2856,2857,3,658,329,0,2857,2861,3,94,47,0,2858,2862, - 5,402,0,0,2859,2860,5,306,0,0,2860,2862,3,662,331,0,2861,2858,1, - 0,0,0,2861,2859,1,0,0,0,2861,2862,1,0,0,0,2862,2949,1,0,0,0,2863, - 2865,5,42,0,0,2864,2863,1,0,0,0,2864,2865,1,0,0,0,2865,2866,1,0, - 0,0,2866,2867,5,26,0,0,2867,2868,5,155,0,0,2868,2869,5,857,0,0,2869, - 2875,3,688,344,0,2870,2872,5,28,0,0,2871,2873,5,857,0,0,2872,2871, - 1,0,0,0,2872,2873,1,0,0,0,2873,2874,1,0,0,0,2874,2876,3,690,345, - 0,2875,2870,1,0,0,0,2875,2876,1,0,0,0,2876,2949,1,0,0,0,2877,2878, - 5,33,0,0,2878,2882,5,176,0,0,2879,2883,5,823,0,0,2880,2881,5,26, - 0,0,2881,2883,5,155,0,0,2882,2879,1,0,0,0,2882,2880,1,0,0,0,2883, - 2884,1,0,0,0,2884,2887,3,688,344,0,2885,2886,5,28,0,0,2886,2888, - 3,690,345,0,2887,2885,1,0,0,0,2887,2888,1,0,0,0,2888,2949,1,0,0, - 0,2889,2890,7,39,0,0,2890,2949,5,93,0,0,2891,2892,7,40,0,0,2892, - 2949,5,658,0,0,2893,2895,5,51,0,0,2894,2896,5,29,0,0,2895,2894,1, - 0,0,0,2895,2896,1,0,0,0,2896,2897,1,0,0,0,2897,2949,3,662,331,0, - 2898,2899,5,51,0,0,2899,2900,7,19,0,0,2900,2949,3,642,321,0,2901, - 2902,5,51,0,0,2902,2903,5,131,0,0,2903,2949,5,92,0,0,2904,2905,5, - 51,0,0,2905,2906,5,67,0,0,2906,2907,5,92,0,0,2907,2949,3,706,353, - 0,2908,2949,5,66,0,0,2909,2911,5,104,0,0,2910,2912,5,857,0,0,2911, - 2910,1,0,0,0,2911,2912,1,0,0,0,2912,2913,1,0,0,0,2913,2949,7,4,0, - 0,2914,2916,5,492,0,0,2915,2917,5,29,0,0,2916,2915,1,0,0,0,2916, - 2917,1,0,0,0,2917,2918,1,0,0,0,2918,2919,3,662,331,0,2919,2923,3, - 94,47,0,2920,2924,5,402,0,0,2921,2922,5,306,0,0,2922,2924,3,662, - 331,0,2923,2920,1,0,0,0,2923,2921,1,0,0,0,2923,2924,1,0,0,0,2924, - 2949,1,0,0,0,2925,2926,5,125,0,0,2926,2927,5,20,0,0,2927,2949,3, - 660,330,0,2928,2929,5,141,0,0,2929,2930,5,29,0,0,2930,2931,3,662, - 331,0,2931,2932,5,176,0,0,2932,2933,3,658,329,0,2933,2949,1,0,0, - 0,2934,2935,5,141,0,0,2935,2936,7,19,0,0,2936,2937,3,642,321,0,2937, - 2938,5,176,0,0,2938,2939,3,638,319,0,2939,2949,1,0,0,0,2940,2942, - 5,141,0,0,2941,2943,7,41,0,0,2942,2941,1,0,0,0,2942,2943,1,0,0,0, - 2943,2944,1,0,0,0,2944,2949,3,648,324,0,2945,2946,7,42,0,0,2946, - 2949,5,681,0,0,2947,2949,3,148,74,0,2948,2684,1,0,0,0,2948,2694, - 1,0,0,0,2948,2705,1,0,0,0,2948,2723,1,0,0,0,2948,2738,1,0,0,0,2948, - 2753,1,0,0,0,2948,2772,1,0,0,0,2948,2796,1,0,0,0,2948,2811,1,0,0, - 0,2948,2815,1,0,0,0,2948,2818,1,0,0,0,2948,2827,1,0,0,0,2948,2832, - 1,0,0,0,2948,2846,1,0,0,0,2948,2851,1,0,0,0,2948,2864,1,0,0,0,2948, - 2877,1,0,0,0,2948,2889,1,0,0,0,2948,2891,1,0,0,0,2948,2893,1,0,0, - 0,2948,2898,1,0,0,0,2948,2901,1,0,0,0,2948,2904,1,0,0,0,2948,2908, - 1,0,0,0,2948,2909,1,0,0,0,2948,2914,1,0,0,0,2948,2925,1,0,0,0,2948, - 2928,1,0,0,0,2948,2934,1,0,0,0,2948,2940,1,0,0,0,2948,2945,1,0,0, - 0,2948,2947,1,0,0,0,2949,147,1,0,0,0,2950,2951,5,6,0,0,2951,2952, - 5,130,0,0,2952,2953,5,866,0,0,2953,2958,3,116,58,0,2954,2955,5,868, - 0,0,2955,2957,3,116,58,0,2956,2954,1,0,0,0,2957,2960,1,0,0,0,2958, - 2956,1,0,0,0,2958,2959,1,0,0,0,2959,2961,1,0,0,0,2960,2958,1,0,0, - 0,2961,2962,5,867,0,0,2962,3049,1,0,0,0,2963,2964,5,51,0,0,2964, - 2965,5,130,0,0,2965,3049,3,670,335,0,2966,2967,5,369,0,0,2967,2970, - 5,130,0,0,2968,2971,3,670,335,0,2969,2971,5,7,0,0,2970,2968,1,0, - 0,0,2970,2969,1,0,0,0,2971,2972,1,0,0,0,2972,3049,5,658,0,0,2973, - 2974,5,425,0,0,2974,2977,5,130,0,0,2975,2978,3,670,335,0,2976,2978, - 5,7,0,0,2977,2975,1,0,0,0,2977,2976,1,0,0,0,2978,2979,1,0,0,0,2979, - 3049,5,658,0,0,2980,2981,5,668,0,0,2981,2984,5,130,0,0,2982,2985, - 3,670,335,0,2983,2985,5,7,0,0,2984,2982,1,0,0,0,2984,2983,1,0,0, - 0,2985,3049,1,0,0,0,2986,2987,5,335,0,0,2987,2988,5,130,0,0,2988, - 3049,3,712,356,0,2989,2990,5,561,0,0,2990,2991,5,130,0,0,2991,2992, - 3,670,335,0,2992,2993,5,88,0,0,2993,2994,5,866,0,0,2994,2999,3,116, - 58,0,2995,2996,5,868,0,0,2996,2998,3,116,58,0,2997,2995,1,0,0,0, - 2998,3001,1,0,0,0,2999,2997,1,0,0,0,2999,3000,1,0,0,0,3000,3002, - 1,0,0,0,3001,2999,1,0,0,0,3002,3003,5,867,0,0,3003,3049,1,0,0,0, - 3004,3005,5,388,0,0,3005,3006,5,130,0,0,3006,3007,3,672,336,0,3007, - 3008,5,194,0,0,3008,3009,5,173,0,0,3009,3012,3,652,326,0,3010,3011, - 7,42,0,0,3011,3013,5,681,0,0,3012,3010,1,0,0,0,3012,3013,1,0,0,0, - 3013,3049,1,0,0,0,3014,3015,5,10,0,0,3015,3018,5,130,0,0,3016,3019, - 3,670,335,0,3017,3019,5,7,0,0,3018,3016,1,0,0,0,3018,3017,1,0,0, - 0,3019,3049,1,0,0,0,3020,3021,5,27,0,0,3021,3024,5,130,0,0,3022, - 3025,3,670,335,0,3023,3025,5,7,0,0,3024,3022,1,0,0,0,3024,3023,1, - 0,0,0,3025,3049,1,0,0,0,3026,3027,5,120,0,0,3027,3030,5,130,0,0, - 3028,3031,3,670,335,0,3029,3031,5,7,0,0,3030,3028,1,0,0,0,3030,3029, - 1,0,0,0,3031,3049,1,0,0,0,3032,3033,5,550,0,0,3033,3036,5,130,0, - 0,3034,3037,3,670,335,0,3035,3037,5,7,0,0,3036,3034,1,0,0,0,3036, - 3035,1,0,0,0,3037,3049,1,0,0,0,3038,3039,5,562,0,0,3039,3042,5,130, - 0,0,3040,3043,3,670,335,0,3041,3043,5,7,0,0,3042,3040,1,0,0,0,3042, - 3041,1,0,0,0,3043,3049,1,0,0,0,3044,3045,5,560,0,0,3045,3049,5,527, - 0,0,3046,3047,5,677,0,0,3047,3049,5,527,0,0,3048,2950,1,0,0,0,3048, - 2963,1,0,0,0,3048,2966,1,0,0,0,3048,2973,1,0,0,0,3048,2980,1,0,0, - 0,3048,2986,1,0,0,0,3048,2989,1,0,0,0,3048,3004,1,0,0,0,3048,3014, - 1,0,0,0,3048,3020,1,0,0,0,3048,3026,1,0,0,0,3048,3032,1,0,0,0,3048, - 3038,1,0,0,0,3048,3044,1,0,0,0,3048,3046,1,0,0,0,3049,149,1,0,0, - 0,3050,3051,5,51,0,0,3051,3053,7,0,0,0,3052,3054,3,758,379,0,3053, - 3052,1,0,0,0,3053,3054,1,0,0,0,3054,3055,1,0,0,0,3055,3056,3,628, - 314,0,3056,151,1,0,0,0,3057,3058,5,51,0,0,3058,3060,5,385,0,0,3059, - 3061,3,758,379,0,3060,3059,1,0,0,0,3060,3061,1,0,0,0,3061,3062,1, - 0,0,0,3062,3063,3,702,351,0,3063,153,1,0,0,0,3064,3065,5,51,0,0, - 3065,3067,5,82,0,0,3066,3068,7,1,0,0,3067,3066,1,0,0,0,3067,3068, - 1,0,0,0,3068,3069,1,0,0,0,3069,3070,3,642,321,0,3070,3071,5,119, - 0,0,3071,3084,3,652,326,0,3072,3074,5,308,0,0,3073,3075,5,857,0, - 0,3074,3073,1,0,0,0,3074,3075,1,0,0,0,3075,3076,1,0,0,0,3076,3083, - 7,3,0,0,3077,3079,5,104,0,0,3078,3080,5,857,0,0,3079,3078,1,0,0, - 0,3079,3080,1,0,0,0,3080,3081,1,0,0,0,3081,3083,7,4,0,0,3082,3072, - 1,0,0,0,3082,3077,1,0,0,0,3083,3086,1,0,0,0,3084,3082,1,0,0,0,3084, - 3085,1,0,0,0,3085,155,1,0,0,0,3086,3084,1,0,0,0,3087,3088,5,51,0, - 0,3088,3089,5,451,0,0,3089,3090,5,74,0,0,3090,3091,3,706,353,0,3091, - 3093,5,380,0,0,3092,3094,5,857,0,0,3093,3092,1,0,0,0,3093,3094,1, - 0,0,0,3094,3095,1,0,0,0,3095,3096,3,692,346,0,3096,157,1,0,0,0,3097, - 3098,5,51,0,0,3098,3100,5,132,0,0,3099,3101,3,758,379,0,3100,3099, - 1,0,0,0,3100,3101,1,0,0,0,3101,3102,1,0,0,0,3102,3103,3,702,351, - 0,3103,159,1,0,0,0,3104,3105,5,51,0,0,3105,3107,5,409,0,0,3106,3108, - 3,758,379,0,3107,3106,1,0,0,0,3107,3108,1,0,0,0,3108,3109,1,0,0, - 0,3109,3110,3,632,316,0,3110,161,1,0,0,0,3111,3112,5,51,0,0,3112, - 3114,5,592,0,0,3113,3115,3,758,379,0,3114,3113,1,0,0,0,3114,3115, - 1,0,0,0,3115,3116,1,0,0,0,3116,3117,3,706,353,0,3117,163,1,0,0,0, - 3118,3119,5,51,0,0,3119,3120,5,161,0,0,3120,3121,5,137,0,0,3121, - 3123,5,835,0,0,3122,3124,3,758,379,0,3123,3122,1,0,0,0,3123,3124, - 1,0,0,0,3124,3125,1,0,0,0,3125,3126,5,883,0,0,3126,165,1,0,0,0,3127, - 3129,5,51,0,0,3128,3130,5,660,0,0,3129,3128,1,0,0,0,3129,3130,1, - 0,0,0,3130,3131,1,0,0,0,3131,3133,5,173,0,0,3132,3134,3,758,379, - 0,3133,3132,1,0,0,0,3133,3134,1,0,0,0,3134,3135,1,0,0,0,3135,3137, - 3,650,325,0,3136,3138,7,43,0,0,3137,3136,1,0,0,0,3137,3138,1,0,0, - 0,3138,167,1,0,0,0,3139,3141,5,51,0,0,3140,3142,5,180,0,0,3141,3140, - 1,0,0,0,3141,3142,1,0,0,0,3142,3143,1,0,0,0,3143,3144,5,658,0,0, - 3144,3150,3,666,333,0,3145,3147,5,380,0,0,3146,3148,5,857,0,0,3147, - 3146,1,0,0,0,3147,3148,1,0,0,0,3148,3149,1,0,0,0,3149,3151,3,692, - 346,0,3150,3145,1,0,0,0,3150,3151,1,0,0,0,3151,169,1,0,0,0,3152, - 3153,5,51,0,0,3153,3155,5,178,0,0,3154,3156,3,758,379,0,3155,3154, - 1,0,0,0,3155,3156,1,0,0,0,3156,3157,1,0,0,0,3157,3158,3,702,351, - 0,3158,171,1,0,0,0,3159,3160,5,51,0,0,3160,3162,5,684,0,0,3161,3163, - 3,758,379,0,3162,3161,1,0,0,0,3162,3163,1,0,0,0,3163,3164,1,0,0, - 0,3164,3169,3,636,318,0,3165,3166,5,868,0,0,3166,3168,3,636,318, - 0,3167,3165,1,0,0,0,3168,3171,1,0,0,0,3169,3167,1,0,0,0,3169,3170, - 1,0,0,0,3170,3173,1,0,0,0,3171,3169,1,0,0,0,3172,3174,7,43,0,0,3173, - 3172,1,0,0,0,3173,3174,1,0,0,0,3174,173,1,0,0,0,3175,3176,5,51,0, - 0,3176,3178,5,582,0,0,3177,3179,3,758,379,0,3178,3177,1,0,0,0,3178, - 3179,1,0,0,0,3179,3180,1,0,0,0,3180,3181,3,654,327,0,3181,175,1, - 0,0,0,3182,3183,5,155,0,0,3183,3184,5,42,0,0,3184,3188,5,582,0,0, - 3185,3189,5,505,0,0,3186,3189,5,7,0,0,3187,3189,3,654,327,0,3188, - 3185,1,0,0,0,3188,3186,1,0,0,0,3188,3187,1,0,0,0,3189,3190,1,0,0, - 0,3190,3191,5,176,0,0,3191,3196,3,656,328,0,3192,3193,5,868,0,0, - 3193,3195,3,656,328,0,3194,3192,1,0,0,0,3195,3198,1,0,0,0,3196,3194, - 1,0,0,0,3196,3197,1,0,0,0,3197,3203,1,0,0,0,3198,3196,1,0,0,0,3199, - 3200,5,155,0,0,3200,3201,5,582,0,0,3201,3203,3,468,234,0,3202,3182, - 1,0,0,0,3202,3199,1,0,0,0,3203,177,1,0,0,0,3204,3205,5,141,0,0,3205, - 3206,5,173,0,0,3206,3211,3,180,90,0,3207,3208,5,868,0,0,3208,3210, - 3,180,90,0,3209,3207,1,0,0,0,3210,3213,1,0,0,0,3211,3209,1,0,0,0, - 3211,3212,1,0,0,0,3212,179,1,0,0,0,3213,3211,1,0,0,0,3214,3215,3, - 652,326,0,3215,3216,5,176,0,0,3216,3217,3,648,324,0,3217,181,1,0, - 0,0,3218,3220,5,668,0,0,3219,3221,5,173,0,0,3220,3219,1,0,0,0,3220, - 3221,1,0,0,0,3221,3222,1,0,0,0,3222,3223,3,652,326,0,3223,183,1, - 0,0,0,3224,3225,5,21,0,0,3225,3232,3,702,351,0,3226,3229,5,866,0, - 0,3227,3230,3,748,374,0,3228,3230,3,740,370,0,3229,3227,1,0,0,0, - 3229,3228,1,0,0,0,3229,3230,1,0,0,0,3230,3231,1,0,0,0,3231,3233, - 5,867,0,0,3232,3226,1,0,0,0,3232,3233,1,0,0,0,3233,185,1,0,0,0,3234, - 3237,3,240,120,0,3235,3237,3,242,121,0,3236,3234,1,0,0,0,3236,3235, - 1,0,0,0,3237,187,1,0,0,0,3238,3239,5,371,0,0,3239,3240,3,740,370, - 0,3240,189,1,0,0,0,3241,3246,3,244,122,0,3242,3246,3,246,123,0,3243, - 3246,3,248,124,0,3244,3246,3,250,125,0,3245,3241,1,0,0,0,3245,3242, - 1,0,0,0,3245,3243,1,0,0,0,3245,3244,1,0,0,0,3246,191,1,0,0,0,3247, - 3249,5,86,0,0,3248,3250,7,44,0,0,3249,3248,1,0,0,0,3249,3250,1,0, - 0,0,3250,3252,1,0,0,0,3251,3253,5,79,0,0,3252,3251,1,0,0,0,3252, - 3253,1,0,0,0,3253,3255,1,0,0,0,3254,3256,5,88,0,0,3255,3254,1,0, - 0,0,3255,3256,1,0,0,0,3256,3257,1,0,0,0,3257,3264,3,652,326,0,3258, - 3259,5,130,0,0,3259,3261,5,866,0,0,3260,3262,3,670,335,0,3261,3260, - 1,0,0,0,3261,3262,1,0,0,0,3262,3263,1,0,0,0,3263,3265,5,867,0,0, - 3264,3258,1,0,0,0,3264,3265,1,0,0,0,3265,3277,1,0,0,0,3266,3268, - 3,268,134,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268,3271,1,0,0, - 0,3269,3272,3,742,371,0,3270,3272,3,196,98,0,3271,3269,1,0,0,0,3271, - 3270,1,0,0,0,3271,3272,1,0,0,0,3272,3274,1,0,0,0,3273,3275,3,194, - 97,0,3274,3273,1,0,0,0,3274,3275,1,0,0,0,3275,3278,1,0,0,0,3276, - 3278,3,232,116,0,3277,3267,1,0,0,0,3277,3276,1,0,0,0,3278,3280,1, - 0,0,0,3279,3281,3,194,97,0,3280,3279,1,0,0,0,3280,3281,1,0,0,0,3281, - 3294,1,0,0,0,3282,3283,5,119,0,0,3283,3284,5,373,0,0,3284,3285,5, - 92,0,0,3285,3286,5,185,0,0,3286,3291,3,234,117,0,3287,3288,5,868, - 0,0,3288,3290,3,234,117,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,3282,1,0,0,0,3294,3295,1,0,0,0,3295,193,1,0,0,0,3296,3297, - 5,13,0,0,3297,3299,3,706,353,0,3298,3300,3,268,134,0,3299,3298,1, - 0,0,0,3299,3300,1,0,0,0,3300,195,1,0,0,0,3301,3306,3,210,105,0,3302, - 3303,5,173,0,0,3303,3306,3,652,326,0,3304,3306,3,230,115,0,3305, - 3301,1,0,0,0,3305,3302,1,0,0,0,3305,3304,1,0,0,0,3306,197,1,0,0, - 0,3307,3313,3,200,100,0,3308,3310,5,828,0,0,3309,3311,7,45,0,0,3310, - 3309,1,0,0,0,3310,3311,1,0,0,0,3311,3312,1,0,0,0,3312,3314,3,200, - 100,0,3313,3308,1,0,0,0,3314,3315,1,0,0,0,3315,3313,1,0,0,0,3315, - 3316,1,0,0,0,3316,199,1,0,0,0,3317,3319,5,866,0,0,3318,3317,1,0, - 0,0,3318,3319,1,0,0,0,3319,3320,1,0,0,0,3320,3322,3,280,140,0,3321, - 3323,5,867,0,0,3322,3321,1,0,0,0,3322,3323,1,0,0,0,3323,201,1,0, - 0,0,3324,3325,5,103,0,0,3325,3327,5,360,0,0,3326,3328,7,46,0,0,3327, - 3326,1,0,0,0,3327,3328,1,0,0,0,3328,3330,1,0,0,0,3329,3331,5,450, - 0,0,3330,3329,1,0,0,0,3330,3331,1,0,0,0,3331,3332,1,0,0,0,3332,3333, - 5,83,0,0,3333,3335,5,882,0,0,3334,3336,7,7,0,0,3335,3334,1,0,0,0, - 3335,3336,1,0,0,0,3336,3337,1,0,0,0,3337,3338,5,88,0,0,3338,3339, - 5,173,0,0,3339,3345,3,652,326,0,3340,3341,5,130,0,0,3341,3342,5, - 866,0,0,3342,3343,3,670,335,0,3343,3344,5,867,0,0,3344,3346,1,0, - 0,0,3345,3340,1,0,0,0,3345,3346,1,0,0,0,3346,3350,1,0,0,0,3347,3348, - 5,26,0,0,3348,3349,5,155,0,0,3349,3351,3,688,344,0,3350,3347,1,0, - 0,0,3350,3351,1,0,0,0,3351,3358,1,0,0,0,3352,3354,7,47,0,0,3353, - 3355,3,304,152,0,3354,3353,1,0,0,0,3355,3356,1,0,0,0,3356,3354,1, - 0,0,0,3356,3357,1,0,0,0,3357,3359,1,0,0,0,3358,3352,1,0,0,0,3358, - 3359,1,0,0,0,3359,3366,1,0,0,0,3360,3362,5,102,0,0,3361,3363,3,306, - 153,0,3362,3361,1,0,0,0,3363,3364,1,0,0,0,3364,3362,1,0,0,0,3364, - 3365,1,0,0,0,3365,3367,1,0,0,0,3366,3360,1,0,0,0,3366,3367,1,0,0, - 0,3367,3372,1,0,0,0,3368,3369,5,79,0,0,3369,3370,3,712,356,0,3370, - 3371,7,48,0,0,3371,3373,1,0,0,0,3372,3368,1,0,0,0,3372,3373,1,0, - 0,0,3373,3385,1,0,0,0,3374,3375,5,866,0,0,3375,3380,3,236,118,0, - 3376,3377,5,868,0,0,3377,3379,3,236,118,0,3378,3376,1,0,0,0,3379, - 3382,1,0,0,0,3380,3378,1,0,0,0,3380,3381,1,0,0,0,3381,3383,1,0,0, - 0,3382,3380,1,0,0,0,3383,3384,5,867,0,0,3384,3386,1,0,0,0,3385,3374, - 1,0,0,0,3385,3386,1,0,0,0,3386,3396,1,0,0,0,3387,3388,5,155,0,0, - 3388,3393,3,234,117,0,3389,3390,5,868,0,0,3390,3392,3,234,117,0, - 3391,3389,1,0,0,0,3392,3395,1,0,0,0,3393,3391,1,0,0,0,3393,3394, - 1,0,0,0,3394,3397,1,0,0,0,3395,3393,1,0,0,0,3396,3387,1,0,0,0,3396, - 3397,1,0,0,0,3397,203,1,0,0,0,3398,3399,5,103,0,0,3399,3401,5,695, - 0,0,3400,3402,7,46,0,0,3401,3400,1,0,0,0,3401,3402,1,0,0,0,3402, - 3404,1,0,0,0,3403,3405,5,450,0,0,3404,3403,1,0,0,0,3404,3405,1,0, - 0,0,3405,3406,1,0,0,0,3406,3407,5,83,0,0,3407,3409,5,882,0,0,3408, - 3410,7,7,0,0,3409,3408,1,0,0,0,3409,3410,1,0,0,0,3410,3411,1,0,0, - 0,3411,3412,5,88,0,0,3412,3413,5,173,0,0,3413,3417,3,652,326,0,3414, - 3415,5,26,0,0,3415,3416,5,155,0,0,3416,3418,3,688,344,0,3417,3414, - 1,0,0,0,3417,3418,1,0,0,0,3418,3429,1,0,0,0,3419,3420,5,587,0,0, - 3420,3421,5,423,0,0,3421,3423,5,20,0,0,3422,3424,5,859,0,0,3423, - 3422,1,0,0,0,3423,3424,1,0,0,0,3424,3425,1,0,0,0,3425,3427,5,882, - 0,0,3426,3428,5,858,0,0,3427,3426,1,0,0,0,3427,3428,1,0,0,0,3428, - 3430,1,0,0,0,3429,3419,1,0,0,0,3429,3430,1,0,0,0,3430,3435,1,0,0, - 0,3431,3432,5,79,0,0,3432,3433,3,712,356,0,3433,3434,7,48,0,0,3434, - 3436,1,0,0,0,3435,3431,1,0,0,0,3435,3436,1,0,0,0,3436,3448,1,0,0, - 0,3437,3438,5,866,0,0,3438,3443,3,236,118,0,3439,3440,5,868,0,0, - 3440,3442,3,236,118,0,3441,3439,1,0,0,0,3442,3445,1,0,0,0,3443,3441, - 1,0,0,0,3443,3444,1,0,0,0,3444,3446,1,0,0,0,3445,3443,1,0,0,0,3446, - 3447,5,867,0,0,3447,3449,1,0,0,0,3448,3437,1,0,0,0,3448,3449,1,0, - 0,0,3449,3459,1,0,0,0,3450,3451,5,155,0,0,3451,3456,3,234,117,0, - 3452,3453,5,868,0,0,3453,3455,3,234,117,0,3454,3452,1,0,0,0,3455, - 3458,1,0,0,0,3456,3454,1,0,0,0,3456,3457,1,0,0,0,3457,3460,1,0,0, - 0,3458,3456,1,0,0,0,3459,3450,1,0,0,0,3459,3460,1,0,0,0,3460,205, - 1,0,0,0,3461,3462,5,866,0,0,3462,3464,3,224,112,0,3463,3465,3,258, - 129,0,3464,3463,1,0,0,0,3464,3465,1,0,0,0,3465,3467,1,0,0,0,3466, - 3468,3,318,159,0,3467,3466,1,0,0,0,3467,3468,1,0,0,0,3468,3469,1, - 0,0,0,3469,3471,5,867,0,0,3470,3472,3,258,129,0,3471,3470,1,0,0, - 0,3471,3472,1,0,0,0,3472,3474,1,0,0,0,3473,3475,3,318,159,0,3474, - 3473,1,0,0,0,3474,3475,1,0,0,0,3475,3477,1,0,0,0,3476,3478,3,302, - 151,0,3477,3476,1,0,0,0,3477,3478,1,0,0,0,3478,207,1,0,0,0,3479, - 3481,5,143,0,0,3480,3482,7,49,0,0,3481,3480,1,0,0,0,3481,3482,1, - 0,0,0,3482,3484,1,0,0,0,3483,3485,5,88,0,0,3484,3483,1,0,0,0,3484, - 3485,1,0,0,0,3485,3486,1,0,0,0,3486,3492,3,652,326,0,3487,3488,5, - 130,0,0,3488,3489,5,866,0,0,3489,3490,3,670,335,0,3490,3491,5,867, - 0,0,3491,3493,1,0,0,0,3492,3487,1,0,0,0,3492,3493,1,0,0,0,3493,3502, - 1,0,0,0,3494,3495,5,866,0,0,3495,3496,3,660,330,0,3496,3497,5,867, - 0,0,3497,3499,1,0,0,0,3498,3494,1,0,0,0,3498,3499,1,0,0,0,3499,3500, - 1,0,0,0,3500,3503,3,228,114,0,3501,3503,3,232,116,0,3502,3498,1, - 0,0,0,3502,3501,1,0,0,0,3503,209,1,0,0,0,3504,3508,3,280,140,0,3505, - 3507,3,282,141,0,3506,3505,1,0,0,0,3507,3510,1,0,0,0,3508,3506,1, - 0,0,0,3508,3509,1,0,0,0,3509,3519,1,0,0,0,3510,3508,1,0,0,0,3511, - 3513,5,181,0,0,3512,3514,7,45,0,0,3513,3512,1,0,0,0,3513,3514,1, - 0,0,0,3514,3517,1,0,0,0,3515,3518,3,280,140,0,3516,3518,3,278,139, - 0,3517,3515,1,0,0,0,3517,3516,1,0,0,0,3518,3520,1,0,0,0,3519,3511, - 1,0,0,0,3519,3520,1,0,0,0,3520,3525,1,0,0,0,3521,3522,5,868,0,0, - 3522,3524,3,284,142,0,3523,3521,1,0,0,0,3524,3527,1,0,0,0,3525,3523, - 1,0,0,0,3525,3526,1,0,0,0,3526,3529,1,0,0,0,3527,3525,1,0,0,0,3528, - 3530,3,258,129,0,3529,3528,1,0,0,0,3529,3530,1,0,0,0,3530,3532,1, - 0,0,0,3531,3533,3,318,159,0,3532,3531,1,0,0,0,3532,3533,1,0,0,0, - 3533,3535,1,0,0,0,3534,3536,3,238,119,0,3535,3534,1,0,0,0,3535,3536, - 1,0,0,0,3536,3538,1,0,0,0,3537,3539,3,302,151,0,3538,3537,1,0,0, - 0,3538,3539,1,0,0,0,3539,3564,1,0,0,0,3540,3544,3,278,139,0,3541, - 3543,3,282,141,0,3542,3541,1,0,0,0,3543,3546,1,0,0,0,3544,3542,1, - 0,0,0,3544,3545,1,0,0,0,3545,3552,1,0,0,0,3546,3544,1,0,0,0,3547, - 3549,5,181,0,0,3548,3550,7,45,0,0,3549,3548,1,0,0,0,3549,3550,1, - 0,0,0,3550,3551,1,0,0,0,3551,3553,3,278,139,0,3552,3547,1,0,0,0, - 3552,3553,1,0,0,0,3553,3555,1,0,0,0,3554,3556,3,258,129,0,3555,3554, - 1,0,0,0,3555,3556,1,0,0,0,3556,3558,1,0,0,0,3557,3559,3,318,159, - 0,3558,3557,1,0,0,0,3558,3559,1,0,0,0,3559,3561,1,0,0,0,3560,3562, - 3,238,119,0,3561,3560,1,0,0,0,3561,3562,1,0,0,0,3562,3564,1,0,0, - 0,3563,3504,1,0,0,0,3563,3540,1,0,0,0,3564,211,1,0,0,0,3565,3567, - 3,50,25,0,3566,3565,1,0,0,0,3566,3567,1,0,0,0,3567,3568,1,0,0,0, - 3568,3570,3,214,107,0,3569,3571,3,258,129,0,3570,3569,1,0,0,0,3570, - 3571,1,0,0,0,3571,3573,1,0,0,0,3572,3574,3,318,159,0,3573,3572,1, - 0,0,0,3573,3574,1,0,0,0,3574,3576,1,0,0,0,3575,3577,3,302,151,0, - 3576,3575,1,0,0,0,3576,3577,1,0,0,0,3577,213,1,0,0,0,3578,3579,6, - 107,-1,0,3579,3580,3,216,108,0,3580,3595,1,0,0,0,3581,3582,10,2, - 0,0,3582,3584,5,181,0,0,3583,3585,7,45,0,0,3584,3583,1,0,0,0,3584, - 3585,1,0,0,0,3585,3586,1,0,0,0,3586,3594,3,216,108,0,3587,3588,10, - 1,0,0,3588,3590,5,59,0,0,3589,3591,7,45,0,0,3590,3589,1,0,0,0,3590, - 3591,1,0,0,0,3591,3592,1,0,0,0,3592,3594,3,216,108,0,3593,3581,1, - 0,0,0,3593,3587,1,0,0,0,3594,3597,1,0,0,0,3595,3593,1,0,0,0,3595, - 3596,1,0,0,0,3596,215,1,0,0,0,3597,3595,1,0,0,0,3598,3599,6,108, - -1,0,3599,3600,3,218,109,0,3600,3609,1,0,0,0,3601,3602,10,1,0,0, - 3602,3604,5,828,0,0,3603,3605,7,45,0,0,3604,3603,1,0,0,0,3604,3605, - 1,0,0,0,3605,3606,1,0,0,0,3606,3608,3,218,109,0,3607,3601,1,0,0, - 0,3608,3611,1,0,0,0,3609,3607,1,0,0,0,3609,3610,1,0,0,0,3610,217, - 1,0,0,0,3611,3609,1,0,0,0,3612,3627,3,226,113,0,3613,3614,5,866, - 0,0,3614,3616,3,214,107,0,3615,3617,3,258,129,0,3616,3615,1,0,0, - 0,3616,3617,1,0,0,0,3617,3619,1,0,0,0,3618,3620,3,318,159,0,3619, - 3618,1,0,0,0,3619,3620,1,0,0,0,3620,3622,1,0,0,0,3621,3623,3,302, - 151,0,3622,3621,1,0,0,0,3622,3623,1,0,0,0,3623,3624,1,0,0,0,3624, - 3625,5,867,0,0,3625,3627,1,0,0,0,3626,3612,1,0,0,0,3626,3613,1,0, - 0,0,3627,219,1,0,0,0,3628,3631,3,254,127,0,3629,3631,3,256,128,0, - 3630,3628,1,0,0,0,3630,3629,1,0,0,0,3631,221,1,0,0,0,3632,3636,3, - 230,115,0,3633,3634,5,125,0,0,3634,3635,5,20,0,0,3635,3637,3,674, - 337,0,3636,3633,1,0,0,0,3636,3637,1,0,0,0,3637,3640,1,0,0,0,3638, - 3639,5,100,0,0,3639,3641,3,320,160,0,3640,3638,1,0,0,0,3640,3641, - 1,0,0,0,3641,223,1,0,0,0,3642,3647,3,226,113,0,3643,3644,7,50,0, - 0,3644,3646,3,226,113,0,3645,3643,1,0,0,0,3646,3649,1,0,0,0,3647, - 3645,1,0,0,0,3647,3648,1,0,0,0,3648,3651,1,0,0,0,3649,3647,1,0,0, - 0,3650,3652,3,258,129,0,3651,3650,1,0,0,0,3651,3652,1,0,0,0,3652, - 3654,1,0,0,0,3653,3655,3,318,159,0,3654,3653,1,0,0,0,3654,3655,1, - 0,0,0,3655,3657,1,0,0,0,3656,3658,3,302,151,0,3657,3656,1,0,0,0, - 3657,3658,1,0,0,0,3658,225,1,0,0,0,3659,3663,3,210,105,0,3660,3663, - 3,618,309,0,3661,3663,3,222,111,0,3662,3659,1,0,0,0,3662,3660,1, - 0,0,0,3662,3661,1,0,0,0,3663,227,1,0,0,0,3664,3670,3,210,105,0,3665, - 3666,5,173,0,0,3666,3670,3,652,326,0,3667,3670,3,742,371,0,3668, - 3670,3,230,115,0,3669,3664,1,0,0,0,3669,3665,1,0,0,0,3669,3667,1, - 0,0,0,3669,3668,1,0,0,0,3670,229,1,0,0,0,3671,3672,5,189,0,0,3672, - 3673,5,586,0,0,3673,3679,3,744,372,0,3674,3675,5,868,0,0,3675,3676, - 5,586,0,0,3676,3678,3,744,372,0,3677,3674,1,0,0,0,3678,3681,1,0, - 0,0,3679,3677,1,0,0,0,3679,3680,1,0,0,0,3680,231,1,0,0,0,3681,3679, - 1,0,0,0,3682,3683,5,155,0,0,3683,3688,3,234,117,0,3684,3685,5,868, - 0,0,3685,3687,3,234,117,0,3686,3684,1,0,0,0,3687,3690,1,0,0,0,3688, - 3686,1,0,0,0,3688,3689,1,0,0,0,3689,233,1,0,0,0,3690,3688,1,0,0, - 0,3691,3692,3,662,331,0,3692,3693,5,857,0,0,3693,3694,3,746,373, - 0,3694,235,1,0,0,0,3695,3698,3,706,353,0,3696,3698,5,892,0,0,3697, - 3695,1,0,0,0,3697,3696,1,0,0,0,3698,237,1,0,0,0,3699,3700,5,65,0, - 0,3700,3710,7,51,0,0,3701,3702,5,510,0,0,3702,3707,3,652,326,0,3703, - 3704,5,868,0,0,3704,3706,3,652,326,0,3705,3703,1,0,0,0,3706,3709, - 1,0,0,0,3707,3705,1,0,0,0,3707,3708,1,0,0,0,3708,3711,1,0,0,0,3709, - 3707,1,0,0,0,3710,3701,1,0,0,0,3710,3711,1,0,0,0,3711,3714,1,0,0, - 0,3712,3713,7,52,0,0,3713,3715,5,105,0,0,3714,3712,1,0,0,0,3714, - 3715,1,0,0,0,3715,3721,1,0,0,0,3716,3717,5,104,0,0,3717,3718,5,80, - 0,0,3718,3719,5,594,0,0,3719,3721,5,491,0,0,3720,3699,1,0,0,0,3720, - 3716,1,0,0,0,3721,239,1,0,0,0,3722,3724,5,44,0,0,3723,3725,5,107, - 0,0,3724,3723,1,0,0,0,3724,3725,1,0,0,0,3725,3727,1,0,0,0,3726,3728, - 5,549,0,0,3727,3726,1,0,0,0,3727,3728,1,0,0,0,3728,3730,1,0,0,0, - 3729,3731,5,79,0,0,3730,3729,1,0,0,0,3730,3731,1,0,0,0,3731,3732, - 1,0,0,0,3732,3733,5,68,0,0,3733,3738,3,652,326,0,3734,3736,5,13, - 0,0,3735,3734,1,0,0,0,3735,3736,1,0,0,0,3736,3737,1,0,0,0,3737,3739, - 3,706,353,0,3738,3735,1,0,0,0,3738,3739,1,0,0,0,3739,3745,1,0,0, - 0,3740,3741,5,130,0,0,3741,3742,5,866,0,0,3742,3743,3,670,335,0, - 3743,3744,5,867,0,0,3744,3746,1,0,0,0,3745,3740,1,0,0,0,3745,3746, - 1,0,0,0,3746,3749,1,0,0,0,3747,3748,5,192,0,0,3748,3750,3,804,402, - 0,3749,3747,1,0,0,0,3749,3750,1,0,0,0,3750,3752,1,0,0,0,3751,3753, - 3,258,129,0,3752,3751,1,0,0,0,3752,3753,1,0,0,0,3753,3756,1,0,0, - 0,3754,3755,5,100,0,0,3755,3757,3,320,160,0,3756,3754,1,0,0,0,3756, - 3757,1,0,0,0,3757,241,1,0,0,0,3758,3760,5,44,0,0,3759,3761,5,107, - 0,0,3760,3759,1,0,0,0,3760,3761,1,0,0,0,3761,3763,1,0,0,0,3762,3764, - 5,549,0,0,3763,3762,1,0,0,0,3763,3764,1,0,0,0,3764,3766,1,0,0,0, - 3765,3767,5,79,0,0,3766,3765,1,0,0,0,3766,3767,1,0,0,0,3767,3807, - 1,0,0,0,3768,3771,3,652,326,0,3769,3770,5,865,0,0,3770,3772,5,850, - 0,0,3771,3769,1,0,0,0,3771,3772,1,0,0,0,3772,3781,1,0,0,0,3773,3774, - 5,868,0,0,3774,3777,3,652,326,0,3775,3776,5,865,0,0,3776,3778,5, - 850,0,0,3777,3775,1,0,0,0,3777,3778,1,0,0,0,3778,3780,1,0,0,0,3779, - 3773,1,0,0,0,3780,3783,1,0,0,0,3781,3779,1,0,0,0,3781,3782,1,0,0, - 0,3782,3784,1,0,0,0,3783,3781,1,0,0,0,3784,3785,5,68,0,0,3785,3786, - 3,262,131,0,3786,3808,1,0,0,0,3787,3788,5,68,0,0,3788,3791,3,652, - 326,0,3789,3790,5,865,0,0,3790,3792,5,850,0,0,3791,3789,1,0,0,0, - 3791,3792,1,0,0,0,3792,3801,1,0,0,0,3793,3794,5,868,0,0,3794,3797, - 3,652,326,0,3795,3796,5,865,0,0,3796,3798,5,850,0,0,3797,3795,1, - 0,0,0,3797,3798,1,0,0,0,3798,3800,1,0,0,0,3799,3793,1,0,0,0,3800, - 3803,1,0,0,0,3801,3799,1,0,0,0,3801,3802,1,0,0,0,3802,3804,1,0,0, - 0,3803,3801,1,0,0,0,3804,3805,5,188,0,0,3805,3806,3,262,131,0,3806, - 3808,1,0,0,0,3807,3768,1,0,0,0,3807,3787,1,0,0,0,3808,3811,1,0,0, - 0,3809,3810,5,192,0,0,3810,3812,3,804,402,0,3811,3809,1,0,0,0,3811, - 3812,1,0,0,0,3812,243,1,0,0,0,3813,3814,5,417,0,0,3814,3815,3,652, - 326,0,3815,3820,5,516,0,0,3816,3818,5,13,0,0,3817,3816,1,0,0,0,3817, - 3818,1,0,0,0,3818,3819,1,0,0,0,3819,3821,3,706,353,0,3820,3817,1, - 0,0,0,3820,3821,1,0,0,0,3821,245,1,0,0,0,3822,3823,5,417,0,0,3823, - 3824,3,652,326,0,3824,3825,5,135,0,0,3825,3832,3,642,321,0,3826, - 3827,3,814,407,0,3827,3828,5,866,0,0,3828,3829,3,748,374,0,3829, - 3830,5,867,0,0,3830,3833,1,0,0,0,3831,3833,7,53,0,0,3832,3826,1, - 0,0,0,3832,3831,1,0,0,0,3833,3836,1,0,0,0,3834,3835,5,192,0,0,3835, - 3837,3,804,402,0,3836,3834,1,0,0,0,3836,3837,1,0,0,0,3837,3840,1, - 0,0,0,3838,3839,5,100,0,0,3839,3841,3,320,160,0,3840,3838,1,0,0, - 0,3840,3841,1,0,0,0,3841,247,1,0,0,0,3842,3843,5,417,0,0,3843,3844, - 3,652,326,0,3844,3845,5,135,0,0,3845,3848,7,54,0,0,3846,3847,5,192, - 0,0,3847,3849,3,804,402,0,3848,3846,1,0,0,0,3848,3849,1,0,0,0,3849, - 3852,1,0,0,0,3850,3851,5,100,0,0,3851,3853,3,320,160,0,3852,3850, - 1,0,0,0,3852,3853,1,0,0,0,3853,249,1,0,0,0,3854,3855,5,417,0,0,3855, - 3856,3,652,326,0,3856,3857,5,334,0,0,3857,251,1,0,0,0,3858,3859, - 5,425,0,0,3859,3860,5,173,0,0,3860,3861,5,68,0,0,3861,3866,3,716, - 358,0,3862,3863,5,868,0,0,3863,3865,3,716,358,0,3864,3862,1,0,0, - 0,3865,3868,1,0,0,0,3866,3864,1,0,0,0,3866,3867,1,0,0,0,3867,253, - 1,0,0,0,3868,3866,1,0,0,0,3869,3871,5,185,0,0,3870,3872,5,107,0, - 0,3871,3870,1,0,0,0,3871,3872,1,0,0,0,3872,3874,1,0,0,0,3873,3875, - 5,79,0,0,3874,3873,1,0,0,0,3874,3875,1,0,0,0,3875,3876,1,0,0,0,3876, - 3881,3,652,326,0,3877,3879,5,13,0,0,3878,3877,1,0,0,0,3878,3879, - 1,0,0,0,3879,3880,1,0,0,0,3880,3882,3,706,353,0,3881,3878,1,0,0, - 0,3881,3882,1,0,0,0,3882,3883,1,0,0,0,3883,3884,5,155,0,0,3884,3889, - 3,234,117,0,3885,3886,5,868,0,0,3886,3888,3,234,117,0,3887,3885, - 1,0,0,0,3888,3891,1,0,0,0,3889,3887,1,0,0,0,3889,3890,1,0,0,0,3890, - 3894,1,0,0,0,3891,3889,1,0,0,0,3892,3893,5,192,0,0,3893,3895,3,804, - 402,0,3894,3892,1,0,0,0,3894,3895,1,0,0,0,3895,3897,1,0,0,0,3896, - 3898,3,258,129,0,3897,3896,1,0,0,0,3897,3898,1,0,0,0,3898,3900,1, - 0,0,0,3899,3901,3,318,159,0,3900,3899,1,0,0,0,3900,3901,1,0,0,0, - 3901,255,1,0,0,0,3902,3904,5,185,0,0,3903,3905,5,107,0,0,3904,3903, - 1,0,0,0,3904,3905,1,0,0,0,3905,3907,1,0,0,0,3906,3908,5,79,0,0,3907, - 3906,1,0,0,0,3907,3908,1,0,0,0,3908,3909,1,0,0,0,3909,3910,3,262, - 131,0,3910,3911,5,155,0,0,3911,3916,3,234,117,0,3912,3913,5,868, - 0,0,3913,3915,3,234,117,0,3914,3912,1,0,0,0,3915,3918,1,0,0,0,3916, - 3914,1,0,0,0,3916,3917,1,0,0,0,3917,3921,1,0,0,0,3918,3916,1,0,0, - 0,3919,3920,5,192,0,0,3920,3922,3,804,402,0,3921,3919,1,0,0,0,3921, - 3922,1,0,0,0,3922,257,1,0,0,0,3923,3924,5,125,0,0,3924,3925,5,20, - 0,0,3925,3930,3,260,130,0,3926,3927,5,868,0,0,3927,3929,3,260,130, - 0,3928,3926,1,0,0,0,3929,3932,1,0,0,0,3930,3928,1,0,0,0,3930,3931, - 1,0,0,0,3931,259,1,0,0,0,3932,3930,1,0,0,0,3933,3935,3,804,402,0, - 3934,3936,7,55,0,0,3935,3934,1,0,0,0,3935,3936,1,0,0,0,3936,261, - 1,0,0,0,3937,3942,3,264,132,0,3938,3939,5,868,0,0,3939,3941,3,264, - 132,0,3940,3938,1,0,0,0,3941,3944,1,0,0,0,3942,3940,1,0,0,0,3942, - 3943,1,0,0,0,3943,263,1,0,0,0,3944,3942,1,0,0,0,3945,3949,3,266, - 133,0,3946,3948,3,274,137,0,3947,3946,1,0,0,0,3948,3951,1,0,0,0, - 3949,3947,1,0,0,0,3949,3950,1,0,0,0,3950,3964,1,0,0,0,3951,3949, - 1,0,0,0,3952,3953,5,866,0,0,3953,3957,3,266,133,0,3954,3956,3,274, - 137,0,3955,3954,1,0,0,0,3956,3959,1,0,0,0,3957,3955,1,0,0,0,3957, - 3958,1,0,0,0,3958,3960,1,0,0,0,3959,3957,1,0,0,0,3960,3961,5,867, - 0,0,3961,3964,1,0,0,0,3962,3964,3,286,143,0,3963,3945,1,0,0,0,3963, - 3952,1,0,0,0,3963,3962,1,0,0,0,3964,265,1,0,0,0,3965,3971,3,652, - 326,0,3966,3967,5,130,0,0,3967,3968,5,866,0,0,3968,3969,3,670,335, - 0,3969,3970,5,867,0,0,3970,3972,1,0,0,0,3971,3966,1,0,0,0,3971,3972, - 1,0,0,0,3972,3977,1,0,0,0,3973,3975,5,13,0,0,3974,3973,1,0,0,0,3974, - 3975,1,0,0,0,3975,3976,1,0,0,0,3976,3978,3,706,353,0,3977,3974,1, - 0,0,0,3977,3978,1,0,0,0,3978,3987,1,0,0,0,3979,3984,3,270,135,0, - 3980,3981,5,868,0,0,3981,3983,3,270,135,0,3982,3980,1,0,0,0,3983, - 3986,1,0,0,0,3984,3982,1,0,0,0,3984,3985,1,0,0,0,3985,3988,1,0,0, - 0,3986,3984,1,0,0,0,3987,3979,1,0,0,0,3987,3988,1,0,0,0,3988,4011, - 1,0,0,0,3989,3991,5,95,0,0,3990,3989,1,0,0,0,3990,3991,1,0,0,0,3991, - 3997,1,0,0,0,3992,3998,3,210,105,0,3993,3994,5,866,0,0,3994,3995, - 3,210,105,0,3995,3996,5,867,0,0,3996,3998,1,0,0,0,3997,3992,1,0, - 0,0,3997,3993,1,0,0,0,3998,4000,1,0,0,0,3999,4001,5,13,0,0,4000, - 3999,1,0,0,0,4000,4001,1,0,0,0,4001,4002,1,0,0,0,4002,4004,3,706, - 353,0,4003,4005,3,268,134,0,4004,4003,1,0,0,0,4004,4005,1,0,0,0, - 4005,4011,1,0,0,0,4006,4007,5,866,0,0,4007,4008,3,262,131,0,4008, - 4009,5,867,0,0,4009,4011,1,0,0,0,4010,3965,1,0,0,0,4010,3990,1,0, - 0,0,4010,4006,1,0,0,0,4011,267,1,0,0,0,4012,4013,5,866,0,0,4013, - 4014,3,660,330,0,4014,4015,5,867,0,0,4015,269,1,0,0,0,4016,4017, - 7,56,0,0,4017,4020,7,19,0,0,4018,4019,5,65,0,0,4019,4021,3,272,136, - 0,4020,4018,1,0,0,0,4020,4021,1,0,0,0,4021,4022,1,0,0,0,4022,4024, - 5,866,0,0,4023,4025,3,640,320,0,4024,4023,1,0,0,0,4024,4025,1,0, - 0,0,4025,4026,1,0,0,0,4026,4027,5,867,0,0,4027,271,1,0,0,0,4028, - 4034,5,91,0,0,4029,4030,5,125,0,0,4030,4034,5,20,0,0,4031,4032,5, - 74,0,0,4032,4034,5,20,0,0,4033,4028,1,0,0,0,4033,4029,1,0,0,0,4033, - 4031,1,0,0,0,4034,273,1,0,0,0,4035,4037,7,57,0,0,4036,4035,1,0,0, - 0,4036,4037,1,0,0,0,4037,4038,1,0,0,0,4038,4040,5,91,0,0,4039,4041, - 5,95,0,0,4040,4039,1,0,0,0,4040,4041,1,0,0,0,4041,4042,1,0,0,0,4042, - 4046,3,266,133,0,4043,4045,3,276,138,0,4044,4043,1,0,0,0,4045,4048, - 1,0,0,0,4046,4044,1,0,0,0,4046,4047,1,0,0,0,4047,4085,1,0,0,0,4048, - 4046,1,0,0,0,4049,4050,5,172,0,0,4050,4054,3,266,133,0,4051,4053, - 3,276,138,0,4052,4051,1,0,0,0,4053,4056,1,0,0,0,4054,4052,1,0,0, - 0,4054,4055,1,0,0,0,4055,4085,1,0,0,0,4056,4054,1,0,0,0,4057,4059, - 7,58,0,0,4058,4060,5,127,0,0,4059,4058,1,0,0,0,4059,4060,1,0,0,0, - 4060,4061,1,0,0,0,4061,4063,5,91,0,0,4062,4064,5,95,0,0,4063,4062, - 1,0,0,0,4063,4064,1,0,0,0,4064,4065,1,0,0,0,4065,4069,3,266,133, - 0,4066,4068,3,276,138,0,4067,4066,1,0,0,0,4068,4071,1,0,0,0,4069, - 4067,1,0,0,0,4069,4070,1,0,0,0,4070,4085,1,0,0,0,4071,4069,1,0,0, - 0,4072,4080,5,113,0,0,4073,4076,5,84,0,0,4074,4076,7,58,0,0,4075, - 4073,1,0,0,0,4075,4074,1,0,0,0,4076,4078,1,0,0,0,4077,4079,5,127, - 0,0,4078,4077,1,0,0,0,4078,4079,1,0,0,0,4079,4081,1,0,0,0,4080,4075, - 1,0,0,0,4080,4081,1,0,0,0,4081,4082,1,0,0,0,4082,4083,5,91,0,0,4083, - 4085,3,266,133,0,4084,4036,1,0,0,0,4084,4049,1,0,0,0,4084,4057,1, - 0,0,0,4084,4072,1,0,0,0,4085,275,1,0,0,0,4086,4087,5,119,0,0,4087, - 4094,3,804,402,0,4088,4089,5,188,0,0,4089,4090,5,866,0,0,4090,4091, - 3,660,330,0,4091,4092,5,867,0,0,4092,4094,1,0,0,0,4093,4086,1,0, - 0,0,4093,4088,1,0,0,0,4094,277,1,0,0,0,4095,4096,5,866,0,0,4096, - 4097,3,280,140,0,4097,4098,5,867,0,0,4098,4104,1,0,0,0,4099,4100, - 5,866,0,0,4100,4101,3,278,139,0,4101,4102,5,867,0,0,4102,4104,1, - 0,0,0,4103,4095,1,0,0,0,4103,4099,1,0,0,0,4104,279,1,0,0,0,4105, - 4109,5,154,0,0,4106,4108,3,296,148,0,4107,4106,1,0,0,0,4108,4111, - 1,0,0,0,4109,4107,1,0,0,0,4109,4110,1,0,0,0,4110,4112,1,0,0,0,4111, - 4109,1,0,0,0,4112,4114,3,298,149,0,4113,4115,3,302,151,0,4114,4113, - 1,0,0,0,4114,4115,1,0,0,0,4115,4116,1,0,0,0,4116,4118,3,308,154, - 0,4117,4119,3,310,155,0,4118,4117,1,0,0,0,4118,4119,1,0,0,0,4119, - 4121,1,0,0,0,4120,4122,3,312,156,0,4121,4120,1,0,0,0,4121,4122,1, - 0,0,0,4122,4124,1,0,0,0,4123,4125,3,314,157,0,4124,4123,1,0,0,0, - 4124,4125,1,0,0,0,4125,4127,1,0,0,0,4126,4128,3,258,129,0,4127,4126, - 1,0,0,0,4127,4128,1,0,0,0,4128,4130,1,0,0,0,4129,4131,3,318,159, - 0,4130,4129,1,0,0,0,4130,4131,1,0,0,0,4131,4133,1,0,0,0,4132,4134, - 3,302,151,0,4133,4132,1,0,0,0,4133,4134,1,0,0,0,4134,4136,1,0,0, - 0,4135,4137,3,282,141,0,4136,4135,1,0,0,0,4136,4137,1,0,0,0,4137, - 281,1,0,0,0,4138,4140,5,181,0,0,4139,4141,7,45,0,0,4140,4139,1,0, - 0,0,4140,4141,1,0,0,0,4141,4144,1,0,0,0,4142,4145,3,280,140,0,4143, - 4145,3,278,139,0,4144,4142,1,0,0,0,4144,4143,1,0,0,0,4145,283,1, - 0,0,0,4146,4161,5,95,0,0,4147,4162,3,280,140,0,4148,4162,3,278,139, - 0,4149,4152,5,866,0,0,4150,4153,3,280,140,0,4151,4153,3,278,139, - 0,4152,4150,1,0,0,0,4152,4151,1,0,0,0,4153,4154,1,0,0,0,4154,4159, - 5,867,0,0,4155,4157,5,13,0,0,4156,4155,1,0,0,0,4156,4157,1,0,0,0, - 4157,4158,1,0,0,0,4158,4160,3,706,353,0,4159,4156,1,0,0,0,4159,4160, - 1,0,0,0,4160,4162,1,0,0,0,4161,4147,1,0,0,0,4161,4148,1,0,0,0,4161, - 4149,1,0,0,0,4162,285,1,0,0,0,4163,4164,5,253,0,0,4164,4165,5,866, - 0,0,4165,4166,5,882,0,0,4166,4167,5,868,0,0,4167,4168,5,882,0,0, - 4168,4169,5,337,0,0,4169,4170,5,866,0,0,4170,4171,3,288,144,0,4171, - 4172,5,867,0,0,4172,4177,5,867,0,0,4173,4175,5,13,0,0,4174,4173, - 1,0,0,0,4174,4175,1,0,0,0,4175,4176,1,0,0,0,4176,4178,3,706,353, - 0,4177,4174,1,0,0,0,4177,4178,1,0,0,0,4178,287,1,0,0,0,4179,4184, - 3,290,145,0,4180,4181,5,868,0,0,4181,4183,3,290,145,0,4182,4180, - 1,0,0,0,4183,4186,1,0,0,0,4184,4182,1,0,0,0,4184,4185,1,0,0,0,4185, - 289,1,0,0,0,4186,4184,1,0,0,0,4187,4204,3,662,331,0,4188,4189,5, - 65,0,0,4189,4205,5,256,0,0,4190,4202,3,726,363,0,4191,4192,5,257, - 0,0,4192,4194,5,882,0,0,4193,4195,3,292,146,0,4194,4193,1,0,0,0, - 4194,4195,1,0,0,0,4195,4197,1,0,0,0,4196,4198,3,294,147,0,4197,4196, - 1,0,0,0,4197,4198,1,0,0,0,4198,4203,1,0,0,0,4199,4200,5,60,0,0,4200, - 4201,5,257,0,0,4201,4203,5,882,0,0,4202,4191,1,0,0,0,4202,4199,1, - 0,0,0,4203,4205,1,0,0,0,4204,4188,1,0,0,0,4204,4190,1,0,0,0,4205, - 4217,1,0,0,0,4206,4208,5,255,0,0,4207,4209,5,257,0,0,4208,4207,1, - 0,0,0,4208,4209,1,0,0,0,4209,4210,1,0,0,0,4210,4211,5,882,0,0,4211, - 4212,5,337,0,0,4212,4213,5,866,0,0,4213,4214,3,288,144,0,4214,4215, - 5,867,0,0,4215,4217,1,0,0,0,4216,4187,1,0,0,0,4216,4206,1,0,0,0, - 4217,291,1,0,0,0,4218,4223,5,116,0,0,4219,4223,5,382,0,0,4220,4221, - 5,42,0,0,4221,4223,3,754,377,0,4222,4218,1,0,0,0,4222,4219,1,0,0, - 0,4222,4220,1,0,0,0,4223,4224,1,0,0,0,4224,4225,5,119,0,0,4225,4226, - 5,55,0,0,4226,293,1,0,0,0,4227,4232,5,116,0,0,4228,4232,5,382,0, - 0,4229,4230,5,42,0,0,4230,4232,3,754,377,0,4231,4227,1,0,0,0,4231, - 4228,1,0,0,0,4231,4229,1,0,0,0,4232,4233,1,0,0,0,4233,4234,5,119, - 0,0,4234,4235,5,382,0,0,4235,295,1,0,0,0,4236,4245,7,59,0,0,4237, - 4245,5,76,0,0,4238,4245,5,172,0,0,4239,4245,5,168,0,0,4240,4245, - 5,166,0,0,4241,4245,5,636,0,0,4242,4245,7,60,0,0,4243,4245,5,167, - 0,0,4244,4236,1,0,0,0,4244,4237,1,0,0,0,4244,4238,1,0,0,0,4244,4239, - 1,0,0,0,4244,4240,1,0,0,0,4244,4241,1,0,0,0,4244,4242,1,0,0,0,4244, - 4243,1,0,0,0,4245,297,1,0,0,0,4246,4249,5,850,0,0,4247,4249,3,300, - 150,0,4248,4246,1,0,0,0,4248,4247,1,0,0,0,4249,4254,1,0,0,0,4250, - 4251,5,868,0,0,4251,4253,3,300,150,0,4252,4250,1,0,0,0,4253,4256, - 1,0,0,0,4254,4252,1,0,0,0,4254,4255,1,0,0,0,4255,299,1,0,0,0,4256, - 4254,1,0,0,0,4257,4258,5,892,0,0,4258,4260,5,841,0,0,4259,4257,1, - 0,0,0,4259,4260,1,0,0,0,4260,4261,1,0,0,0,4261,4266,3,804,402,0, - 4262,4264,5,13,0,0,4263,4262,1,0,0,0,4263,4264,1,0,0,0,4264,4265, - 1,0,0,0,4265,4267,3,706,353,0,4266,4263,1,0,0,0,4266,4267,1,0,0, - 0,4267,4287,1,0,0,0,4268,4273,3,764,382,0,4269,4271,5,13,0,0,4270, - 4269,1,0,0,0,4270,4271,1,0,0,0,4271,4272,1,0,0,0,4272,4274,3,706, - 353,0,4273,4270,1,0,0,0,4273,4274,1,0,0,0,4274,4287,1,0,0,0,4275, - 4276,3,702,351,0,4276,4277,5,865,0,0,4277,4278,5,850,0,0,4278,4287, - 1,0,0,0,4279,4284,3,662,331,0,4280,4282,5,13,0,0,4281,4280,1,0,0, - 0,4281,4282,1,0,0,0,4282,4283,1,0,0,0,4283,4285,3,706,353,0,4284, - 4281,1,0,0,0,4284,4285,1,0,0,0,4285,4287,1,0,0,0,4286,4259,1,0,0, - 0,4286,4268,1,0,0,0,4286,4275,1,0,0,0,4286,4279,1,0,0,0,4287,301, - 1,0,0,0,4288,4289,5,88,0,0,4289,4294,3,236,118,0,4290,4291,5,868, - 0,0,4291,4293,3,236,118,0,4292,4290,1,0,0,0,4293,4296,1,0,0,0,4294, - 4292,1,0,0,0,4294,4295,1,0,0,0,4295,4325,1,0,0,0,4296,4294,1,0,0, - 0,4297,4298,5,88,0,0,4298,4299,5,372,0,0,4299,4325,5,882,0,0,4300, - 4301,5,88,0,0,4301,4302,5,128,0,0,4302,4306,5,882,0,0,4303,4304, - 5,26,0,0,4304,4305,5,155,0,0,4305,4307,3,688,344,0,4306,4303,1,0, - 0,0,4306,4307,1,0,0,0,4307,4314,1,0,0,0,4308,4310,7,47,0,0,4309, - 4311,3,304,152,0,4310,4309,1,0,0,0,4311,4312,1,0,0,0,4312,4310,1, - 0,0,0,4312,4313,1,0,0,0,4313,4315,1,0,0,0,4314,4308,1,0,0,0,4314, - 4315,1,0,0,0,4315,4322,1,0,0,0,4316,4318,5,102,0,0,4317,4319,3,306, - 153,0,4318,4317,1,0,0,0,4319,4320,1,0,0,0,4320,4318,1,0,0,0,4320, - 4321,1,0,0,0,4321,4323,1,0,0,0,4322,4316,1,0,0,0,4322,4323,1,0,0, - 0,4323,4325,1,0,0,0,4324,4288,1,0,0,0,4324,4297,1,0,0,0,4324,4300, - 1,0,0,0,4325,303,1,0,0,0,4326,4327,5,174,0,0,4327,4328,5,20,0,0, - 4328,4339,5,882,0,0,4329,4331,5,123,0,0,4330,4329,1,0,0,0,4330,4331, - 1,0,0,0,4331,4332,1,0,0,0,4332,4333,5,56,0,0,4333,4334,5,20,0,0, - 4334,4339,5,882,0,0,4335,4336,5,58,0,0,4336,4337,5,20,0,0,4337,4339, - 5,882,0,0,4338,4326,1,0,0,0,4338,4330,1,0,0,0,4338,4335,1,0,0,0, - 4339,305,1,0,0,0,4340,4341,5,171,0,0,4341,4342,5,20,0,0,4342,4347, - 5,882,0,0,4343,4344,5,174,0,0,4344,4345,5,20,0,0,4345,4347,5,882, - 0,0,4346,4340,1,0,0,0,4346,4343,1,0,0,0,4347,307,1,0,0,0,4348,4349, - 5,68,0,0,4349,4351,3,262,131,0,4350,4348,1,0,0,0,4350,4351,1,0,0, - 0,4351,4354,1,0,0,0,4352,4353,5,192,0,0,4353,4355,3,804,402,0,4354, - 4352,1,0,0,0,4354,4355,1,0,0,0,4355,309,1,0,0,0,4356,4357,5,74,0, - 0,4357,4358,5,20,0,0,4358,4363,3,316,158,0,4359,4360,5,868,0,0,4360, - 4362,3,316,158,0,4361,4359,1,0,0,0,4362,4365,1,0,0,0,4363,4361,1, - 0,0,0,4363,4364,1,0,0,0,4364,4368,1,0,0,0,4365,4363,1,0,0,0,4366, - 4367,5,194,0,0,4367,4369,5,584,0,0,4368,4366,1,0,0,0,4368,4369,1, - 0,0,0,4369,311,1,0,0,0,4370,4371,5,75,0,0,4371,4372,3,804,402,0, - 4372,313,1,0,0,0,4373,4374,5,689,0,0,4374,4375,3,782,391,0,4375, - 4376,5,13,0,0,4376,4377,5,866,0,0,4377,4378,3,780,390,0,4378,4388, - 5,867,0,0,4379,4380,5,868,0,0,4380,4381,3,782,391,0,4381,4382,5, - 13,0,0,4382,4383,5,866,0,0,4383,4384,3,780,390,0,4384,4385,5,867, - 0,0,4385,4387,1,0,0,0,4386,4379,1,0,0,0,4387,4390,1,0,0,0,4388,4386, - 1,0,0,0,4388,4389,1,0,0,0,4389,315,1,0,0,0,4390,4388,1,0,0,0,4391, - 4393,3,804,402,0,4392,4394,7,55,0,0,4393,4392,1,0,0,0,4393,4394, - 1,0,0,0,4394,317,1,0,0,0,4395,4406,5,100,0,0,4396,4397,3,320,160, - 0,4397,4398,5,868,0,0,4398,4400,1,0,0,0,4399,4396,1,0,0,0,4399,4400, - 1,0,0,0,4400,4401,1,0,0,0,4401,4407,3,320,160,0,4402,4403,3,320, - 160,0,4403,4404,5,509,0,0,4404,4405,3,320,160,0,4405,4407,1,0,0, - 0,4406,4399,1,0,0,0,4406,4402,1,0,0,0,4407,319,1,0,0,0,4408,4412, - 3,712,356,0,4409,4412,3,686,343,0,4410,4412,3,708,354,0,4411,4408, - 1,0,0,0,4411,4409,1,0,0,0,4411,4410,1,0,0,0,4412,321,1,0,0,0,4413, - 4414,5,640,0,0,4414,4423,5,664,0,0,4415,4420,3,344,172,0,4416,4417, - 5,868,0,0,4417,4419,3,344,172,0,4418,4416,1,0,0,0,4419,4422,1,0, - 0,0,4420,4418,1,0,0,0,4420,4421,1,0,0,0,4421,4424,1,0,0,0,4422,4420, - 1,0,0,0,4423,4415,1,0,0,0,4423,4424,1,0,0,0,4424,323,1,0,0,0,4425, - 4427,5,317,0,0,4426,4428,5,691,0,0,4427,4426,1,0,0,0,4427,4428,1, - 0,0,0,4428,325,1,0,0,0,4429,4431,5,341,0,0,4430,4432,5,691,0,0,4431, - 4430,1,0,0,0,4431,4432,1,0,0,0,4432,4438,1,0,0,0,4433,4435,5,11, - 0,0,4434,4436,5,502,0,0,4435,4434,1,0,0,0,4435,4436,1,0,0,0,4436, - 4437,1,0,0,0,4437,4439,5,326,0,0,4438,4433,1,0,0,0,4438,4439,1,0, - 0,0,4439,4444,1,0,0,0,4440,4442,5,502,0,0,4441,4440,1,0,0,0,4441, - 4442,1,0,0,0,4442,4443,1,0,0,0,4443,4445,5,140,0,0,4444,4441,1,0, - 0,0,4444,4445,1,0,0,0,4445,327,1,0,0,0,4446,4448,5,583,0,0,4447, - 4449,5,691,0,0,4448,4447,1,0,0,0,4448,4449,1,0,0,0,4449,4455,1,0, - 0,0,4450,4452,5,11,0,0,4451,4453,5,502,0,0,4452,4451,1,0,0,0,4452, - 4453,1,0,0,0,4453,4454,1,0,0,0,4454,4456,5,326,0,0,4455,4450,1,0, - 0,0,4455,4456,1,0,0,0,4456,4461,1,0,0,0,4457,4459,5,502,0,0,4458, - 4457,1,0,0,0,4458,4459,1,0,0,0,4459,4460,1,0,0,0,4460,4462,5,140, - 0,0,4461,4458,1,0,0,0,4461,4462,1,0,0,0,4462,329,1,0,0,0,4463,4464, - 5,589,0,0,4464,4465,3,706,353,0,4465,331,1,0,0,0,4466,4468,5,583, - 0,0,4467,4469,5,691,0,0,4468,4467,1,0,0,0,4468,4469,1,0,0,0,4469, - 4470,1,0,0,0,4470,4472,5,176,0,0,4471,4473,5,589,0,0,4472,4471,1, - 0,0,0,4472,4473,1,0,0,0,4473,4474,1,0,0,0,4474,4475,3,706,353,0, - 4475,333,1,0,0,0,4476,4477,5,140,0,0,4477,4478,5,589,0,0,4478,4479, - 3,706,353,0,4479,335,1,0,0,0,4480,4481,5,104,0,0,4481,4482,7,61, - 0,0,4482,4487,3,346,173,0,4483,4484,5,868,0,0,4484,4486,3,346,173, - 0,4485,4483,1,0,0,0,4486,4489,1,0,0,0,4487,4485,1,0,0,0,4487,4488, - 1,0,0,0,4488,337,1,0,0,0,4489,4487,1,0,0,0,4490,4491,5,183,0,0,4491, - 4492,5,752,0,0,4492,339,1,0,0,0,4493,4494,5,155,0,0,4494,4495,5, - 313,0,0,4495,4496,5,857,0,0,4496,4497,7,26,0,0,4497,341,1,0,0,0, - 4498,4500,5,155,0,0,4499,4501,7,62,0,0,4500,4499,1,0,0,0,4500,4501, - 1,0,0,0,4501,4502,1,0,0,0,4502,4503,5,664,0,0,4503,4508,3,350,175, - 0,4504,4505,5,868,0,0,4505,4507,3,350,175,0,4506,4504,1,0,0,0,4507, - 4510,1,0,0,0,4508,4506,1,0,0,0,4508,4509,1,0,0,0,4509,343,1,0,0, - 0,4510,4508,1,0,0,0,4511,4512,5,194,0,0,4512,4513,5,350,0,0,4513, - 4519,5,600,0,0,4514,4515,5,135,0,0,4515,4519,5,195,0,0,4516,4517, - 5,135,0,0,4517,4519,5,515,0,0,4518,4511,1,0,0,0,4518,4514,1,0,0, - 0,4518,4516,1,0,0,0,4519,345,1,0,0,0,4520,4525,3,652,326,0,4521, - 4523,5,13,0,0,4522,4521,1,0,0,0,4522,4523,1,0,0,0,4523,4524,1,0, - 0,0,4524,4526,3,706,353,0,4525,4522,1,0,0,0,4525,4526,1,0,0,0,4526, - 4527,1,0,0,0,4527,4528,3,348,174,0,4528,347,1,0,0,0,4529,4531,5, - 135,0,0,4530,4532,5,450,0,0,4531,4530,1,0,0,0,4531,4532,1,0,0,0, - 4532,4538,1,0,0,0,4533,4535,5,107,0,0,4534,4533,1,0,0,0,4534,4535, - 1,0,0,0,4535,4536,1,0,0,0,4536,4538,5,195,0,0,4537,4529,1,0,0,0, - 4537,4534,1,0,0,0,4538,349,1,0,0,0,4539,4540,5,440,0,0,4540,4541, - 5,448,0,0,4541,4547,3,352,176,0,4542,4543,5,135,0,0,4543,4547,5, - 195,0,0,4544,4545,5,135,0,0,4545,4547,5,515,0,0,4546,4539,1,0,0, - 0,4546,4542,1,0,0,0,4546,4544,1,0,0,0,4547,351,1,0,0,0,4548,4549, - 5,809,0,0,4549,4556,5,135,0,0,4550,4551,5,135,0,0,4551,4556,5,810, - 0,0,4552,4553,5,135,0,0,4553,4556,5,811,0,0,4554,4556,5,812,0,0, - 4555,4548,1,0,0,0,4555,4550,1,0,0,0,4555,4552,1,0,0,0,4555,4554, - 1,0,0,0,4556,353,1,0,0,0,4557,4558,5,25,0,0,4558,4559,5,453,0,0, - 4559,4560,5,176,0,0,4560,4565,3,370,185,0,4561,4562,5,868,0,0,4562, - 4564,3,370,185,0,4563,4561,1,0,0,0,4564,4567,1,0,0,0,4565,4563,1, - 0,0,0,4565,4566,1,0,0,0,4566,4569,1,0,0,0,4567,4565,1,0,0,0,4568, - 4570,3,390,195,0,4569,4568,1,0,0,0,4569,4570,1,0,0,0,4570,355,1, - 0,0,0,4571,4572,5,25,0,0,4572,4573,5,572,0,0,4573,4574,5,400,0,0, - 4574,4579,3,392,196,0,4575,4576,5,868,0,0,4576,4578,3,392,196,0, - 4577,4575,1,0,0,0,4578,4581,1,0,0,0,4579,4577,1,0,0,0,4579,4580, - 1,0,0,0,4580,4583,1,0,0,0,4581,4579,1,0,0,0,4582,4584,3,390,195, - 0,4583,4582,1,0,0,0,4583,4584,1,0,0,0,4584,357,1,0,0,0,4585,4586, - 5,25,0,0,4586,4587,5,572,0,0,4587,4588,5,605,0,0,4588,4589,5,176, - 0,0,4589,4594,3,380,190,0,4590,4591,5,868,0,0,4591,4593,3,380,190, - 0,4592,4590,1,0,0,0,4593,4596,1,0,0,0,4594,4592,1,0,0,0,4594,4595, - 1,0,0,0,4595,4598,1,0,0,0,4596,4594,1,0,0,0,4597,4599,3,390,195, - 0,4598,4597,1,0,0,0,4598,4599,1,0,0,0,4599,359,1,0,0,0,4600,4601, - 5,133,0,0,4601,4602,7,63,0,0,4602,4607,5,452,0,0,4603,4604,5,176, - 0,0,4604,4608,5,882,0,0,4605,4606,5,16,0,0,4606,4608,5,882,0,0,4607, - 4603,1,0,0,0,4607,4605,1,0,0,0,4608,361,1,0,0,0,4609,4610,5,640, - 0,0,4610,4619,7,64,0,0,4611,4616,3,396,198,0,4612,4613,5,868,0,0, - 4613,4615,3,396,198,0,4614,4612,1,0,0,0,4615,4618,1,0,0,0,4616,4614, - 1,0,0,0,4616,4617,1,0,0,0,4617,4620,1,0,0,0,4618,4616,1,0,0,0,4619, - 4611,1,0,0,0,4619,4620,1,0,0,0,4620,4623,1,0,0,0,4621,4622,5,676, - 0,0,4622,4624,3,398,199,0,4623,4621,1,0,0,0,4623,4624,1,0,0,0,4624, - 4628,1,0,0,0,4625,4627,3,400,200,0,4626,4625,1,0,0,0,4627,4630,1, - 0,0,0,4628,4626,1,0,0,0,4628,4629,1,0,0,0,4629,4632,1,0,0,0,4630, - 4628,1,0,0,0,4631,4633,3,390,195,0,4632,4631,1,0,0,0,4632,4633,1, - 0,0,0,4633,363,1,0,0,0,4634,4635,5,646,0,0,4635,4644,7,64,0,0,4636, - 4641,3,396,198,0,4637,4638,5,868,0,0,4638,4640,3,396,198,0,4639, - 4637,1,0,0,0,4640,4643,1,0,0,0,4641,4639,1,0,0,0,4641,4642,1,0,0, - 0,4642,4645,1,0,0,0,4643,4641,1,0,0,0,4644,4636,1,0,0,0,4644,4645, - 1,0,0,0,4645,4647,1,0,0,0,4646,4648,3,390,195,0,4647,4646,1,0,0, - 0,4647,4648,1,0,0,0,4648,365,1,0,0,0,4649,4650,5,640,0,0,4650,4654, - 5,415,0,0,4651,4652,5,678,0,0,4652,4653,5,857,0,0,4653,4655,5,882, - 0,0,4654,4651,1,0,0,0,4654,4655,1,0,0,0,4655,4660,1,0,0,0,4656,4657, - 5,868,0,0,4657,4658,5,529,0,0,4658,4659,5,857,0,0,4659,4661,5,882, - 0,0,4660,4656,1,0,0,0,4660,4661,1,0,0,0,4661,4666,1,0,0,0,4662,4663, - 5,868,0,0,4663,4664,5,363,0,0,4664,4665,5,857,0,0,4665,4667,5,882, - 0,0,4666,4662,1,0,0,0,4666,4667,1,0,0,0,4667,367,1,0,0,0,4668,4669, - 5,646,0,0,4669,4670,5,415,0,0,4670,369,1,0,0,0,4671,4672,3,372,186, - 0,4672,4673,5,857,0,0,4673,4674,5,882,0,0,4674,4699,1,0,0,0,4675, - 4676,3,374,187,0,4676,4677,5,857,0,0,4677,4678,3,712,356,0,4678, - 4699,1,0,0,0,4679,4680,3,376,188,0,4680,4681,5,857,0,0,4681,4682, - 7,26,0,0,4682,4699,1,0,0,0,4683,4699,3,378,189,0,4684,4685,5,424, - 0,0,4685,4686,5,857,0,0,4686,4695,5,866,0,0,4687,4692,3,706,353, - 0,4688,4689,5,868,0,0,4689,4691,3,706,353,0,4690,4688,1,0,0,0,4691, - 4694,1,0,0,0,4692,4690,1,0,0,0,4692,4693,1,0,0,0,4693,4696,1,0,0, - 0,4694,4692,1,0,0,0,4695,4687,1,0,0,0,4695,4696,1,0,0,0,4696,4697, - 1,0,0,0,4697,4699,5,867,0,0,4698,4671,1,0,0,0,4698,4675,1,0,0,0, - 4698,4679,1,0,0,0,4698,4683,1,0,0,0,4698,4684,1,0,0,0,4699,371,1, - 0,0,0,4700,4701,7,65,0,0,4701,373,1,0,0,0,4702,4703,7,66,0,0,4703, - 375,1,0,0,0,4704,4705,7,67,0,0,4705,377,1,0,0,0,4706,4707,5,543, - 0,0,4707,4708,5,857,0,0,4708,4720,7,68,0,0,4709,4710,5,574,0,0,4710, - 4711,5,857,0,0,4711,4720,7,69,0,0,4712,4713,5,310,0,0,4713,4717, - 5,857,0,0,4714,4718,5,507,0,0,4715,4718,5,450,0,0,4716,4718,3,402, - 201,0,4717,4714,1,0,0,0,4717,4715,1,0,0,0,4717,4716,1,0,0,0,4718, - 4720,1,0,0,0,4719,4706,1,0,0,0,4719,4709,1,0,0,0,4719,4712,1,0,0, - 0,4720,379,1,0,0,0,4721,4722,3,382,191,0,4722,4723,5,857,0,0,4723, - 4724,5,882,0,0,4724,4749,1,0,0,0,4725,4726,3,384,192,0,4726,4727, - 5,857,0,0,4727,4728,3,712,356,0,4728,4749,1,0,0,0,4729,4730,3,386, - 193,0,4730,4731,5,857,0,0,4731,4732,7,26,0,0,4732,4749,1,0,0,0,4733, - 4749,3,388,194,0,4734,4735,5,424,0,0,4735,4736,5,857,0,0,4736,4745, - 5,866,0,0,4737,4742,3,706,353,0,4738,4739,5,868,0,0,4739,4741,3, - 706,353,0,4740,4738,1,0,0,0,4741,4744,1,0,0,0,4742,4740,1,0,0,0, - 4742,4743,1,0,0,0,4743,4746,1,0,0,0,4744,4742,1,0,0,0,4745,4737, - 1,0,0,0,4745,4746,1,0,0,0,4746,4747,1,0,0,0,4747,4749,5,867,0,0, - 4748,4721,1,0,0,0,4748,4725,1,0,0,0,4748,4729,1,0,0,0,4748,4733, - 1,0,0,0,4748,4734,1,0,0,0,4749,381,1,0,0,0,4750,4751,7,70,0,0,4751, - 383,1,0,0,0,4752,4753,7,71,0,0,4753,385,1,0,0,0,4754,4755,7,72,0, - 0,4755,387,1,0,0,0,4756,4757,5,543,0,0,4757,4758,5,857,0,0,4758, - 4770,7,68,0,0,4759,4760,5,574,0,0,4760,4761,5,857,0,0,4761,4770, - 7,73,0,0,4762,4763,5,310,0,0,4763,4767,5,857,0,0,4764,4768,5,507, - 0,0,4765,4768,5,450,0,0,4766,4768,3,402,201,0,4767,4764,1,0,0,0, - 4767,4765,1,0,0,0,4767,4766,1,0,0,0,4768,4770,1,0,0,0,4769,4756, - 1,0,0,0,4769,4759,1,0,0,0,4769,4762,1,0,0,0,4770,389,1,0,0,0,4771, - 4772,5,65,0,0,4772,4773,5,328,0,0,4773,4774,5,882,0,0,4774,391,1, - 0,0,0,4775,4776,5,565,0,0,4776,4777,5,857,0,0,4777,4778,5,866,0, - 0,4778,4783,3,628,314,0,4779,4780,5,868,0,0,4780,4782,3,628,314, - 0,4781,4779,1,0,0,0,4782,4785,1,0,0,0,4783,4781,1,0,0,0,4783,4784, - 1,0,0,0,4784,4786,1,0,0,0,4785,4783,1,0,0,0,4786,4787,5,867,0,0, - 4787,4839,1,0,0,0,4788,4789,5,567,0,0,4789,4790,5,857,0,0,4790,4791, - 5,866,0,0,4791,4796,3,628,314,0,4792,4793,5,868,0,0,4793,4795,3, - 628,314,0,4794,4792,1,0,0,0,4795,4798,1,0,0,0,4796,4794,1,0,0,0, - 4796,4797,1,0,0,0,4797,4799,1,0,0,0,4798,4796,1,0,0,0,4799,4800, - 5,867,0,0,4800,4839,1,0,0,0,4801,4802,5,566,0,0,4802,4803,5,857, - 0,0,4803,4804,5,866,0,0,4804,4805,3,650,325,0,4805,4806,5,867,0, - 0,4806,4839,1,0,0,0,4807,4808,5,568,0,0,4808,4809,5,857,0,0,4809, - 4810,5,866,0,0,4810,4811,3,650,325,0,4811,4812,5,867,0,0,4812,4839, - 1,0,0,0,4813,4814,5,570,0,0,4814,4815,5,857,0,0,4815,4816,5,866, - 0,0,4816,4817,3,750,375,0,4817,4818,5,867,0,0,4818,4839,1,0,0,0, - 4819,4820,5,571,0,0,4820,4821,5,857,0,0,4821,4822,5,866,0,0,4822, - 4823,3,750,375,0,4823,4824,5,867,0,0,4824,4839,1,0,0,0,4825,4826, - 5,569,0,0,4826,4827,5,857,0,0,4827,4828,5,866,0,0,4828,4833,3,394, - 197,0,4829,4830,5,868,0,0,4830,4832,3,394,197,0,4831,4829,1,0,0, - 0,4832,4835,1,0,0,0,4833,4831,1,0,0,0,4833,4834,1,0,0,0,4834,4836, - 1,0,0,0,4835,4833,1,0,0,0,4836,4837,5,867,0,0,4837,4839,1,0,0,0, - 4838,4775,1,0,0,0,4838,4788,1,0,0,0,4838,4801,1,0,0,0,4838,4807, - 1,0,0,0,4838,4813,1,0,0,0,4838,4819,1,0,0,0,4838,4825,1,0,0,0,4839, - 393,1,0,0,0,4840,4841,5,866,0,0,4841,4842,3,652,326,0,4842,4843, - 5,868,0,0,4843,4844,3,652,326,0,4844,4845,5,867,0,0,4845,395,1,0, - 0,0,4846,4847,7,74,0,0,4847,397,1,0,0,0,4848,4849,7,75,0,0,4849, - 4850,5,857,0,0,4850,4874,3,402,201,0,4851,4852,5,460,0,0,4852,4853, - 5,857,0,0,4853,4854,5,882,0,0,4854,4855,5,868,0,0,4855,4856,5,461, - 0,0,4856,4857,5,857,0,0,4857,4874,3,712,356,0,4858,4859,5,611,0, - 0,4859,4860,5,857,0,0,4860,4861,5,882,0,0,4861,4862,5,868,0,0,4862, - 4863,5,612,0,0,4863,4864,5,857,0,0,4864,4874,3,712,356,0,4865,4866, - 5,557,0,0,4866,4867,5,857,0,0,4867,4868,5,882,0,0,4868,4869,5,868, - 0,0,4869,4870,5,558,0,0,4870,4871,5,857,0,0,4871,4874,3,712,356, - 0,4872,4874,5,634,0,0,4873,4848,1,0,0,0,4873,4851,1,0,0,0,4873,4858, - 1,0,0,0,4873,4865,1,0,0,0,4873,4872,1,0,0,0,4874,399,1,0,0,0,4875, - 4876,5,678,0,0,4876,4877,5,857,0,0,4877,4888,5,882,0,0,4878,4879, - 5,529,0,0,4879,4880,5,857,0,0,4880,4888,5,882,0,0,4881,4882,5,363, - 0,0,4882,4883,5,857,0,0,4883,4888,5,882,0,0,4884,4885,5,535,0,0, - 4885,4886,5,857,0,0,4886,4888,5,882,0,0,4887,4875,1,0,0,0,4887,4878, - 1,0,0,0,4887,4881,1,0,0,0,4887,4884,1,0,0,0,4888,401,1,0,0,0,4889, - 4894,3,696,348,0,4890,4891,5,868,0,0,4891,4893,3,696,348,0,4892, - 4890,1,0,0,0,4893,4896,1,0,0,0,4894,4892,1,0,0,0,4894,4895,1,0,0, - 0,4895,4899,1,0,0,0,4896,4894,1,0,0,0,4897,4899,5,882,0,0,4898,4889, - 1,0,0,0,4898,4897,1,0,0,0,4899,403,1,0,0,0,4900,4901,5,694,0,0,4901, - 4902,7,76,0,0,4902,4904,3,698,349,0,4903,4905,7,77,0,0,4904,4903, - 1,0,0,0,4904,4905,1,0,0,0,4905,405,1,0,0,0,4906,4907,5,694,0,0,4907, - 4908,5,378,0,0,4908,4914,3,698,349,0,4909,4912,5,654,0,0,4910,4911, - 5,65,0,0,4911,4913,5,489,0,0,4912,4910,1,0,0,0,4912,4913,1,0,0,0, - 4913,4915,1,0,0,0,4914,4909,1,0,0,0,4914,4915,1,0,0,0,4915,407,1, - 0,0,0,4916,4917,5,694,0,0,4917,4918,5,540,0,0,4918,4919,3,698,349, - 0,4919,409,1,0,0,0,4920,4921,5,694,0,0,4921,4922,5,341,0,0,4922, - 4925,3,698,349,0,4923,4924,5,513,0,0,4924,4926,5,533,0,0,4925,4923, - 1,0,0,0,4925,4926,1,0,0,0,4926,411,1,0,0,0,4927,4928,5,694,0,0,4928, - 4929,5,583,0,0,4929,4930,3,698,349,0,4930,413,1,0,0,0,4931,4932, - 5,694,0,0,4932,4935,5,551,0,0,4933,4934,5,33,0,0,4934,4936,3,698, - 349,0,4935,4933,1,0,0,0,4935,4936,1,0,0,0,4936,415,1,0,0,0,4937, - 4938,5,540,0,0,4938,4939,3,706,353,0,4939,4942,5,68,0,0,4940,4943, - 5,882,0,0,4941,4943,5,892,0,0,4942,4940,1,0,0,0,4942,4941,1,0,0, - 0,4943,417,1,0,0,0,4944,4945,5,717,0,0,4945,4948,3,706,353,0,4946, - 4947,5,188,0,0,4947,4949,3,752,376,0,4948,4946,1,0,0,0,4948,4949, - 1,0,0,0,4949,419,1,0,0,0,4950,4951,7,78,0,0,4951,4952,5,540,0,0, - 4952,4953,3,706,353,0,4953,421,1,0,0,0,4954,4957,3,424,212,0,4955, - 4957,3,4,2,0,4956,4954,1,0,0,0,4956,4955,1,0,0,0,4957,423,1,0,0, - 0,4958,4959,3,706,353,0,4959,4960,5,878,0,0,4960,4962,1,0,0,0,4961, - 4958,1,0,0,0,4961,4962,1,0,0,0,4962,4963,1,0,0,0,4963,4969,5,317, - 0,0,4964,4965,3,444,222,0,4965,4966,5,869,0,0,4966,4968,1,0,0,0, - 4967,4964,1,0,0,0,4968,4971,1,0,0,0,4969,4967,1,0,0,0,4969,4970, - 1,0,0,0,4970,4977,1,0,0,0,4971,4969,1,0,0,0,4972,4973,3,446,223, - 0,4973,4974,5,869,0,0,4974,4976,1,0,0,0,4975,4972,1,0,0,0,4976,4979, - 1,0,0,0,4977,4975,1,0,0,0,4977,4978,1,0,0,0,4978,4985,1,0,0,0,4979, - 4977,1,0,0,0,4980,4981,3,448,224,0,4981,4982,5,869,0,0,4982,4984, - 1,0,0,0,4983,4980,1,0,0,0,4984,4987,1,0,0,0,4985,4983,1,0,0,0,4985, - 4986,1,0,0,0,4986,4993,1,0,0,0,4987,4985,1,0,0,0,4988,4989,3,450, - 225,0,4989,4990,5,869,0,0,4990,4992,1,0,0,0,4991,4988,1,0,0,0,4992, - 4995,1,0,0,0,4993,4991,1,0,0,0,4993,4994,1,0,0,0,4994,4999,1,0,0, - 0,4995,4993,1,0,0,0,4996,4998,3,454,227,0,4997,4996,1,0,0,0,4998, - 5001,1,0,0,0,4999,4997,1,0,0,0,4999,5000,1,0,0,0,5000,5002,1,0,0, - 0,5001,4999,1,0,0,0,5002,5004,5,378,0,0,5003,5005,3,706,353,0,5004, - 5003,1,0,0,0,5004,5005,1,0,0,0,5005,425,1,0,0,0,5006,5009,5,23,0, - 0,5007,5010,3,706,353,0,5008,5010,3,804,402,0,5009,5007,1,0,0,0, - 5009,5008,1,0,0,0,5009,5010,1,0,0,0,5010,5012,1,0,0,0,5011,5013, - 3,456,228,0,5012,5011,1,0,0,0,5013,5014,1,0,0,0,5014,5012,1,0,0, - 0,5014,5015,1,0,0,0,5015,5022,1,0,0,0,5016,5018,5,53,0,0,5017,5019, - 3,454,227,0,5018,5017,1,0,0,0,5019,5020,1,0,0,0,5020,5018,1,0,0, - 0,5020,5021,1,0,0,0,5021,5023,1,0,0,0,5022,5016,1,0,0,0,5022,5023, - 1,0,0,0,5023,5024,1,0,0,0,5024,5025,5,378,0,0,5025,5026,5,23,0,0, - 5026,427,1,0,0,0,5027,5028,5,78,0,0,5028,5029,3,804,402,0,5029,5031, - 5,175,0,0,5030,5032,3,454,227,0,5031,5030,1,0,0,0,5032,5033,1,0, - 0,0,5033,5031,1,0,0,0,5033,5034,1,0,0,0,5034,5038,1,0,0,0,5035,5037, - 3,458,229,0,5036,5035,1,0,0,0,5037,5040,1,0,0,0,5038,5036,1,0,0, - 0,5038,5039,1,0,0,0,5039,5047,1,0,0,0,5040,5038,1,0,0,0,5041,5043, - 5,53,0,0,5042,5044,3,454,227,0,5043,5042,1,0,0,0,5044,5045,1,0,0, - 0,5045,5043,1,0,0,0,5045,5046,1,0,0,0,5046,5048,1,0,0,0,5047,5041, - 1,0,0,0,5047,5048,1,0,0,0,5048,5049,1,0,0,0,5049,5050,5,378,0,0, - 5050,5051,5,78,0,0,5051,429,1,0,0,0,5052,5053,5,90,0,0,5053,5054, - 3,706,353,0,5054,431,1,0,0,0,5055,5056,5,97,0,0,5056,5057,3,706, - 353,0,5057,433,1,0,0,0,5058,5059,3,706,353,0,5059,5060,5,878,0,0, - 5060,5062,1,0,0,0,5061,5058,1,0,0,0,5061,5062,1,0,0,0,5062,5063, - 1,0,0,0,5063,5065,5,106,0,0,5064,5066,3,454,227,0,5065,5064,1,0, - 0,0,5066,5067,1,0,0,0,5067,5065,1,0,0,0,5067,5068,1,0,0,0,5068,5069, - 1,0,0,0,5069,5070,5,378,0,0,5070,5072,5,106,0,0,5071,5073,3,706, - 353,0,5072,5071,1,0,0,0,5072,5073,1,0,0,0,5073,435,1,0,0,0,5074, - 5075,3,706,353,0,5075,5076,5,878,0,0,5076,5078,1,0,0,0,5077,5074, - 1,0,0,0,5077,5078,1,0,0,0,5078,5079,1,0,0,0,5079,5081,5,142,0,0, - 5080,5082,3,454,227,0,5081,5080,1,0,0,0,5082,5083,1,0,0,0,5083,5081, - 1,0,0,0,5083,5084,1,0,0,0,5084,5085,1,0,0,0,5085,5086,5,676,0,0, - 5086,5087,3,804,402,0,5087,5088,5,378,0,0,5088,5090,5,142,0,0,5089, - 5091,3,706,353,0,5090,5089,1,0,0,0,5090,5091,1,0,0,0,5091,437,1, - 0,0,0,5092,5093,5,148,0,0,5093,5094,3,804,402,0,5094,439,1,0,0,0, - 5095,5096,3,706,353,0,5096,5097,5,878,0,0,5097,5099,1,0,0,0,5098, - 5095,1,0,0,0,5098,5099,1,0,0,0,5099,5100,1,0,0,0,5100,5101,5,193, - 0,0,5101,5102,3,804,402,0,5102,5104,5,371,0,0,5103,5105,3,454,227, - 0,5104,5103,1,0,0,0,5105,5106,1,0,0,0,5106,5104,1,0,0,0,5106,5107, - 1,0,0,0,5107,5108,1,0,0,0,5108,5109,5,378,0,0,5109,5111,5,193,0, - 0,5110,5112,3,706,353,0,5111,5110,1,0,0,0,5111,5112,1,0,0,0,5112, - 441,1,0,0,0,5113,5114,5,334,0,0,5114,5129,3,706,353,0,5115,5120, - 5,64,0,0,5116,5118,5,501,0,0,5117,5116,1,0,0,0,5117,5118,1,0,0,0, - 5118,5119,1,0,0,0,5119,5121,5,68,0,0,5120,5117,1,0,0,0,5120,5121, - 1,0,0,0,5121,5122,1,0,0,0,5122,5123,3,706,353,0,5123,5124,5,88,0, - 0,5124,5125,3,704,352,0,5125,5129,1,0,0,0,5126,5127,5,516,0,0,5127, - 5129,3,706,353,0,5128,5113,1,0,0,0,5128,5115,1,0,0,0,5128,5126,1, - 0,0,0,5129,443,1,0,0,0,5130,5131,5,41,0,0,5131,5132,3,704,352,0, - 5132,5135,3,726,363,0,5133,5134,5,42,0,0,5134,5136,3,804,402,0,5135, - 5133,1,0,0,0,5135,5136,1,0,0,0,5136,445,1,0,0,0,5137,5138,5,41,0, - 0,5138,5139,3,706,353,0,5139,5140,5,30,0,0,5140,5147,5,65,0,0,5141, - 5148,3,712,356,0,5142,5144,5,164,0,0,5143,5145,5,682,0,0,5144,5143, - 1,0,0,0,5144,5145,1,0,0,0,5145,5146,1,0,0,0,5146,5148,5,882,0,0, - 5147,5141,1,0,0,0,5147,5142,1,0,0,0,5148,447,1,0,0,0,5149,5150,5, - 41,0,0,5150,5151,3,706,353,0,5151,5152,5,38,0,0,5152,5153,5,65,0, - 0,5153,5154,3,210,105,0,5154,449,1,0,0,0,5155,5156,5,41,0,0,5156, - 5157,7,79,0,0,5157,5158,5,417,0,0,5158,5159,5,65,0,0,5159,5164,3, - 452,226,0,5160,5161,5,868,0,0,5161,5163,3,452,226,0,5162,5160,1, - 0,0,0,5163,5166,1,0,0,0,5164,5162,1,0,0,0,5164,5165,1,0,0,0,5165, - 5167,1,0,0,0,5166,5164,1,0,0,0,5167,5168,3,422,211,0,5168,451,1, - 0,0,0,5169,5181,3,712,356,0,5170,5172,5,164,0,0,5171,5173,5,682, - 0,0,5172,5171,1,0,0,0,5172,5173,1,0,0,0,5173,5174,1,0,0,0,5174,5181, - 5,882,0,0,5175,5181,3,706,353,0,5176,5181,5,165,0,0,5177,5178,5, - 114,0,0,5178,5181,5,407,0,0,5179,5181,5,163,0,0,5180,5169,1,0,0, - 0,5180,5170,1,0,0,0,5180,5175,1,0,0,0,5180,5176,1,0,0,0,5180,5177, - 1,0,0,0,5180,5179,1,0,0,0,5181,453,1,0,0,0,5182,5185,3,18,9,0,5183, - 5185,3,4,2,0,5184,5182,1,0,0,0,5184,5183,1,0,0,0,5185,5186,1,0,0, - 0,5186,5187,5,869,0,0,5187,455,1,0,0,0,5188,5191,5,191,0,0,5189, - 5192,3,724,362,0,5190,5192,3,804,402,0,5191,5189,1,0,0,0,5191,5190, - 1,0,0,0,5192,5193,1,0,0,0,5193,5195,5,175,0,0,5194,5196,3,454,227, - 0,5195,5194,1,0,0,0,5196,5197,1,0,0,0,5197,5195,1,0,0,0,5197,5198, - 1,0,0,0,5198,457,1,0,0,0,5199,5200,5,54,0,0,5200,5201,3,804,402, - 0,5201,5203,5,175,0,0,5202,5204,3,454,227,0,5203,5202,1,0,0,0,5204, - 5205,1,0,0,0,5205,5203,1,0,0,0,5205,5206,1,0,0,0,5206,459,1,0,0, - 0,5207,5208,5,8,0,0,5208,5210,5,678,0,0,5209,5211,3,758,379,0,5210, - 5209,1,0,0,0,5210,5211,1,0,0,0,5211,5268,1,0,0,0,5212,5217,3,492, - 246,0,5213,5214,5,868,0,0,5214,5216,3,492,246,0,5215,5213,1,0,0, - 0,5216,5219,1,0,0,0,5217,5215,1,0,0,0,5217,5218,1,0,0,0,5218,5269, - 1,0,0,0,5219,5217,1,0,0,0,5220,5225,3,494,247,0,5221,5222,5,868, - 0,0,5222,5224,3,494,247,0,5223,5221,1,0,0,0,5224,5227,1,0,0,0,5225, - 5223,1,0,0,0,5225,5226,1,0,0,0,5226,5242,1,0,0,0,5227,5225,1,0,0, - 0,5228,5240,5,144,0,0,5229,5241,5,505,0,0,5230,5237,3,506,253,0, - 5231,5233,5,11,0,0,5232,5231,1,0,0,0,5232,5233,1,0,0,0,5233,5234, - 1,0,0,0,5234,5236,3,506,253,0,5235,5232,1,0,0,0,5236,5239,1,0,0, - 0,5237,5235,1,0,0,0,5237,5238,1,0,0,0,5238,5241,1,0,0,0,5239,5237, - 1,0,0,0,5240,5229,1,0,0,0,5240,5230,1,0,0,0,5241,5243,1,0,0,0,5242, - 5228,1,0,0,0,5242,5243,1,0,0,0,5243,5250,1,0,0,0,5244,5246,5,194, - 0,0,5245,5247,3,508,254,0,5246,5245,1,0,0,0,5247,5248,1,0,0,0,5248, - 5246,1,0,0,0,5248,5249,1,0,0,0,5249,5251,1,0,0,0,5250,5244,1,0,0, - 0,5250,5251,1,0,0,0,5251,5256,1,0,0,0,5252,5255,3,510,255,0,5253, - 5255,3,512,256,0,5254,5252,1,0,0,0,5254,5253,1,0,0,0,5255,5258,1, - 0,0,0,5256,5254,1,0,0,0,5256,5257,1,0,0,0,5257,5261,1,0,0,0,5258, - 5256,1,0,0,0,5259,5260,7,80,0,0,5260,5262,5,882,0,0,5261,5259,1, - 0,0,0,5261,5262,1,0,0,0,5262,5269,1,0,0,0,5263,5264,3,656,328,0, - 5264,5265,5,42,0,0,5265,5266,5,582,0,0,5266,5267,3,468,234,0,5267, - 5269,1,0,0,0,5268,5212,1,0,0,0,5268,5220,1,0,0,0,5268,5263,1,0,0, - 0,5269,461,1,0,0,0,5270,5271,5,34,0,0,5271,5273,5,678,0,0,5272,5274, - 3,760,380,0,5273,5272,1,0,0,0,5273,5274,1,0,0,0,5274,5275,1,0,0, - 0,5275,5277,3,684,342,0,5276,5278,3,496,248,0,5277,5276,1,0,0,0, - 5277,5278,1,0,0,0,5278,5286,1,0,0,0,5279,5280,5,868,0,0,5280,5282, - 3,684,342,0,5281,5283,3,496,248,0,5282,5281,1,0,0,0,5282,5283,1, - 0,0,0,5283,5285,1,0,0,0,5284,5279,1,0,0,0,5285,5288,1,0,0,0,5286, - 5284,1,0,0,0,5286,5287,1,0,0,0,5287,5292,1,0,0,0,5288,5286,1,0,0, - 0,5289,5290,5,42,0,0,5290,5291,5,582,0,0,5291,5293,3,468,234,0,5292, - 5289,1,0,0,0,5292,5293,1,0,0,0,5293,5308,1,0,0,0,5294,5306,5,144, - 0,0,5295,5307,5,505,0,0,5296,5303,3,506,253,0,5297,5299,5,11,0,0, - 5298,5297,1,0,0,0,5298,5299,1,0,0,0,5299,5300,1,0,0,0,5300,5302, - 3,506,253,0,5301,5298,1,0,0,0,5302,5305,1,0,0,0,5303,5301,1,0,0, - 0,5303,5304,1,0,0,0,5304,5307,1,0,0,0,5305,5303,1,0,0,0,5306,5295, - 1,0,0,0,5306,5296,1,0,0,0,5307,5309,1,0,0,0,5308,5294,1,0,0,0,5308, - 5309,1,0,0,0,5309,5316,1,0,0,0,5310,5312,5,194,0,0,5311,5313,3,508, - 254,0,5312,5311,1,0,0,0,5313,5314,1,0,0,0,5314,5312,1,0,0,0,5314, - 5315,1,0,0,0,5315,5317,1,0,0,0,5316,5310,1,0,0,0,5316,5317,1,0,0, - 0,5317,5322,1,0,0,0,5318,5321,3,510,255,0,5319,5321,3,512,256,0, - 5320,5318,1,0,0,0,5320,5319,1,0,0,0,5321,5324,1,0,0,0,5322,5320, - 1,0,0,0,5322,5323,1,0,0,0,5323,5327,1,0,0,0,5324,5322,1,0,0,0,5325, - 5326,7,80,0,0,5326,5328,5,882,0,0,5327,5325,1,0,0,0,5327,5328,1, - 0,0,0,5328,463,1,0,0,0,5329,5330,5,51,0,0,5330,5332,5,678,0,0,5331, - 5333,3,758,379,0,5332,5331,1,0,0,0,5332,5333,1,0,0,0,5333,5334,1, - 0,0,0,5334,5339,3,684,342,0,5335,5336,5,868,0,0,5336,5338,3,684, - 342,0,5337,5335,1,0,0,0,5338,5341,1,0,0,0,5339,5337,1,0,0,0,5339, - 5340,1,0,0,0,5340,465,1,0,0,0,5341,5339,1,0,0,0,5342,5343,5,73,0, - 0,5343,5348,3,520,260,0,5344,5345,5,868,0,0,5345,5347,3,520,260, - 0,5346,5344,1,0,0,0,5347,5350,1,0,0,0,5348,5346,1,0,0,0,5348,5349, - 1,0,0,0,5349,5351,1,0,0,0,5350,5348,1,0,0,0,5351,5353,5,119,0,0, - 5352,5354,3,488,244,0,5353,5352,1,0,0,0,5353,5354,1,0,0,0,5354,5355, - 1,0,0,0,5355,5356,3,524,262,0,5356,5366,5,176,0,0,5357,5362,3,500, - 250,0,5358,5359,5,868,0,0,5359,5361,3,500,250,0,5360,5358,1,0,0, - 0,5361,5364,1,0,0,0,5362,5360,1,0,0,0,5362,5363,1,0,0,0,5363,5367, - 1,0,0,0,5364,5362,1,0,0,0,5365,5367,3,654,327,0,5366,5357,1,0,0, - 0,5366,5365,1,0,0,0,5367,5382,1,0,0,0,5368,5380,5,144,0,0,5369,5381, - 5,505,0,0,5370,5377,3,506,253,0,5371,5373,5,11,0,0,5372,5371,1,0, - 0,0,5372,5373,1,0,0,0,5373,5374,1,0,0,0,5374,5376,3,506,253,0,5375, - 5372,1,0,0,0,5376,5379,1,0,0,0,5377,5375,1,0,0,0,5377,5378,1,0,0, - 0,5378,5381,1,0,0,0,5379,5377,1,0,0,0,5380,5369,1,0,0,0,5380,5370, - 1,0,0,0,5381,5383,1,0,0,0,5382,5368,1,0,0,0,5382,5383,1,0,0,0,5383, - 5393,1,0,0,0,5384,5390,5,194,0,0,5385,5386,5,73,0,0,5386,5389,5, - 121,0,0,5387,5389,3,508,254,0,5388,5385,1,0,0,0,5388,5387,1,0,0, - 0,5389,5392,1,0,0,0,5390,5388,1,0,0,0,5390,5391,1,0,0,0,5391,5394, - 1,0,0,0,5392,5390,1,0,0,0,5393,5384,1,0,0,0,5393,5394,1,0,0,0,5394, - 5402,1,0,0,0,5395,5396,5,13,0,0,5396,5400,3,684,342,0,5397,5398, - 5,194,0,0,5398,5399,5,582,0,0,5399,5401,3,468,234,0,5400,5397,1, - 0,0,0,5400,5401,1,0,0,0,5401,5403,1,0,0,0,5402,5395,1,0,0,0,5402, - 5403,1,0,0,0,5403,5432,1,0,0,0,5404,5407,5,73,0,0,5405,5406,5,547, - 0,0,5406,5408,5,119,0,0,5407,5405,1,0,0,0,5407,5408,1,0,0,0,5408, - 5409,1,0,0,0,5409,5414,3,656,328,0,5410,5411,5,868,0,0,5411,5413, - 3,656,328,0,5412,5410,1,0,0,0,5413,5416,1,0,0,0,5414,5412,1,0,0, - 0,5414,5415,1,0,0,0,5415,5417,1,0,0,0,5416,5414,1,0,0,0,5417,5418, - 5,176,0,0,5418,5423,3,656,328,0,5419,5420,5,868,0,0,5420,5422,3, - 656,328,0,5421,5419,1,0,0,0,5422,5425,1,0,0,0,5423,5421,1,0,0,0, - 5423,5424,1,0,0,0,5424,5429,1,0,0,0,5425,5423,1,0,0,0,5426,5427, - 5,194,0,0,5427,5428,5,704,0,0,5428,5430,5,121,0,0,5429,5426,1,0, - 0,0,5429,5430,1,0,0,0,5430,5432,1,0,0,0,5431,5342,1,0,0,0,5431,5404, - 1,0,0,0,5432,467,1,0,0,0,5433,5442,5,42,0,0,5434,5442,5,505,0,0, - 5435,5438,5,7,0,0,5436,5437,5,59,0,0,5437,5439,3,654,327,0,5438, - 5436,1,0,0,0,5438,5439,1,0,0,0,5439,5442,1,0,0,0,5440,5442,3,654, - 327,0,5441,5433,1,0,0,0,5441,5434,1,0,0,0,5441,5435,1,0,0,0,5441, - 5440,1,0,0,0,5442,469,1,0,0,0,5443,5444,5,73,0,0,5444,5445,5,547, - 0,0,5445,5446,5,119,0,0,5446,5447,3,684,342,0,5447,5448,5,176,0, - 0,5448,5453,3,684,342,0,5449,5450,5,868,0,0,5450,5452,3,684,342, - 0,5451,5449,1,0,0,0,5452,5455,1,0,0,0,5453,5451,1,0,0,0,5453,5454, - 1,0,0,0,5454,5459,1,0,0,0,5455,5453,1,0,0,0,5456,5457,5,194,0,0, - 5457,5458,5,73,0,0,5458,5460,5,121,0,0,5459,5456,1,0,0,0,5459,5460, - 1,0,0,0,5460,471,1,0,0,0,5461,5462,5,8,0,0,5462,5463,5,739,0,0,5463, - 5464,5,74,0,0,5464,5470,3,646,323,0,5465,5467,5,190,0,0,5466,5468, - 5,857,0,0,5467,5466,1,0,0,0,5467,5468,1,0,0,0,5468,5469,1,0,0,0, - 5469,5471,3,480,240,0,5470,5465,1,0,0,0,5470,5471,1,0,0,0,5471,5477, - 1,0,0,0,5472,5474,5,837,0,0,5473,5475,5,857,0,0,5474,5473,1,0,0, - 0,5474,5475,1,0,0,0,5475,5476,1,0,0,0,5476,5478,3,712,356,0,5477, - 5472,1,0,0,0,5477,5478,1,0,0,0,5478,5483,1,0,0,0,5479,5481,7,39, - 0,0,5480,5482,5,66,0,0,5481,5480,1,0,0,0,5481,5482,1,0,0,0,5482, - 5484,1,0,0,0,5483,5479,1,0,0,0,5483,5484,1,0,0,0,5484,473,1,0,0, - 0,5485,5486,5,34,0,0,5486,5487,5,739,0,0,5487,5488,5,74,0,0,5488, - 5489,3,644,322,0,5489,5490,5,839,0,0,5490,5491,5,857,0,0,5491,5497, - 7,81,0,0,5492,5494,5,190,0,0,5493,5495,5,857,0,0,5494,5493,1,0,0, - 0,5494,5495,1,0,0,0,5495,5496,1,0,0,0,5496,5498,3,480,240,0,5497, - 5492,1,0,0,0,5497,5498,1,0,0,0,5498,5504,1,0,0,0,5499,5501,5,837, - 0,0,5500,5502,5,857,0,0,5501,5500,1,0,0,0,5501,5502,1,0,0,0,5502, - 5503,1,0,0,0,5503,5505,3,712,356,0,5504,5499,1,0,0,0,5504,5505,1, - 0,0,0,5505,5507,1,0,0,0,5506,5508,7,39,0,0,5507,5506,1,0,0,0,5507, - 5508,1,0,0,0,5508,475,1,0,0,0,5509,5510,5,51,0,0,5510,5511,5,739, - 0,0,5511,5512,5,74,0,0,5512,5514,3,646,323,0,5513,5515,5,66,0,0, - 5514,5513,1,0,0,0,5514,5515,1,0,0,0,5515,477,1,0,0,0,5516,5517,5, - 155,0,0,5517,5518,5,739,0,0,5518,5519,5,74,0,0,5519,5529,3,646,323, - 0,5520,5521,5,65,0,0,5521,5526,3,712,356,0,5522,5523,5,868,0,0,5523, - 5525,3,712,356,0,5524,5522,1,0,0,0,5525,5528,1,0,0,0,5526,5524,1, - 0,0,0,5526,5527,1,0,0,0,5527,5530,1,0,0,0,5528,5526,1,0,0,0,5529, - 5520,1,0,0,0,5529,5530,1,0,0,0,5530,479,1,0,0,0,5531,5537,3,712, - 356,0,5532,5533,3,712,356,0,5533,5534,5,854,0,0,5534,5535,3,712, - 356,0,5535,5537,1,0,0,0,5536,5531,1,0,0,0,5536,5532,1,0,0,0,5537, - 5542,1,0,0,0,5538,5539,5,868,0,0,5539,5541,3,480,240,0,5540,5538, - 1,0,0,0,5541,5544,1,0,0,0,5542,5540,1,0,0,0,5542,5543,1,0,0,0,5543, - 481,1,0,0,0,5544,5542,1,0,0,0,5545,5546,5,141,0,0,5546,5547,5,678, - 0,0,5547,5552,3,526,263,0,5548,5549,5,868,0,0,5549,5551,3,526,263, - 0,5550,5548,1,0,0,0,5551,5554,1,0,0,0,5552,5550,1,0,0,0,5552,5553, - 1,0,0,0,5553,483,1,0,0,0,5554,5552,1,0,0,0,5555,5557,5,149,0,0,5556, - 5558,3,758,379,0,5557,5556,1,0,0,0,5557,5558,1,0,0,0,5558,5559,1, - 0,0,0,5559,5564,3,520,260,0,5560,5561,5,868,0,0,5561,5563,3,520, - 260,0,5562,5560,1,0,0,0,5563,5566,1,0,0,0,5564,5562,1,0,0,0,5564, - 5565,1,0,0,0,5565,5567,1,0,0,0,5566,5564,1,0,0,0,5567,5569,5,119, - 0,0,5568,5570,3,488,244,0,5569,5568,1,0,0,0,5569,5570,1,0,0,0,5570, - 5571,1,0,0,0,5571,5572,3,524,262,0,5572,5573,5,68,0,0,5573,5575, - 3,654,327,0,5574,5576,3,486,243,0,5575,5574,1,0,0,0,5575,5576,1, - 0,0,0,5576,5608,1,0,0,0,5577,5579,5,149,0,0,5578,5580,3,758,379, - 0,5579,5578,1,0,0,0,5579,5580,1,0,0,0,5580,5581,1,0,0,0,5581,5583, - 5,7,0,0,5582,5584,5,734,0,0,5583,5582,1,0,0,0,5583,5584,1,0,0,0, - 5584,5585,1,0,0,0,5585,5586,5,868,0,0,5586,5587,5,73,0,0,5587,5588, - 5,121,0,0,5588,5589,5,68,0,0,5589,5591,3,654,327,0,5590,5592,3,486, - 243,0,5591,5590,1,0,0,0,5591,5592,1,0,0,0,5592,5608,1,0,0,0,5593, - 5595,5,149,0,0,5594,5596,3,758,379,0,5595,5594,1,0,0,0,5595,5596, - 1,0,0,0,5596,5599,1,0,0,0,5597,5598,5,547,0,0,5598,5600,5,119,0, - 0,5599,5597,1,0,0,0,5599,5600,1,0,0,0,5600,5601,1,0,0,0,5601,5602, - 3,654,327,0,5602,5603,5,68,0,0,5603,5605,3,654,327,0,5604,5606,3, - 486,243,0,5605,5604,1,0,0,0,5605,5606,1,0,0,0,5606,5608,1,0,0,0, - 5607,5555,1,0,0,0,5607,5577,1,0,0,0,5607,5593,1,0,0,0,5608,485,1, - 0,0,0,5609,5610,5,79,0,0,5610,5611,5,674,0,0,5611,5612,5,678,0,0, - 5612,487,1,0,0,0,5613,5614,7,82,0,0,5614,489,1,0,0,0,5615,5616,5, - 155,0,0,5616,5619,5,529,0,0,5617,5618,5,65,0,0,5618,5620,3,684,342, - 0,5619,5617,1,0,0,0,5619,5620,1,0,0,0,5620,5621,1,0,0,0,5621,5624, - 5,857,0,0,5622,5625,3,798,399,0,5623,5625,5,882,0,0,5624,5622,1, - 0,0,0,5624,5623,1,0,0,0,5625,5648,1,0,0,0,5626,5627,5,155,0,0,5627, - 5630,5,529,0,0,5628,5629,5,65,0,0,5629,5631,3,684,342,0,5630,5628, - 1,0,0,0,5630,5631,1,0,0,0,5631,5636,1,0,0,0,5632,5633,5,176,0,0, - 5633,5637,5,829,0,0,5634,5635,5,857,0,0,5635,5637,5,882,0,0,5636, - 5632,1,0,0,0,5636,5634,1,0,0,0,5637,5640,1,0,0,0,5638,5639,5,143, - 0,0,5639,5641,5,882,0,0,5640,5638,1,0,0,0,5640,5641,1,0,0,0,5641, - 5645,1,0,0,0,5642,5643,5,147,0,0,5643,5644,5,36,0,0,5644,5646,5, - 529,0,0,5645,5642,1,0,0,0,5645,5646,1,0,0,0,5646,5648,1,0,0,0,5647, - 5615,1,0,0,0,5647,5626,1,0,0,0,5648,491,1,0,0,0,5649,5650,3,684, - 342,0,5650,5651,3,510,255,0,5651,493,1,0,0,0,5652,5678,3,684,342, - 0,5653,5654,5,423,0,0,5654,5655,5,20,0,0,5655,5656,5,882,0,0,5656, - 5679,3,502,251,0,5657,5658,5,423,0,0,5658,5659,5,20,0,0,5659,5660, - 5,829,0,0,5660,5661,5,529,0,0,5661,5679,3,502,251,0,5662,5663,5, - 423,0,0,5663,5664,5,194,0,0,5664,5679,3,504,252,0,5665,5666,5,369, - 0,0,5666,5667,5,511,0,0,5667,5679,5,529,0,0,5668,5669,7,83,0,0,5669, - 5671,3,518,259,0,5670,5672,3,514,257,0,5671,5670,1,0,0,0,5671,5672, - 1,0,0,0,5672,5674,1,0,0,0,5673,5668,1,0,0,0,5674,5675,1,0,0,0,5675, - 5673,1,0,0,0,5675,5676,1,0,0,0,5676,5679,1,0,0,0,5677,5679,3,516, - 258,0,5678,5653,1,0,0,0,5678,5657,1,0,0,0,5678,5662,1,0,0,0,5678, - 5665,1,0,0,0,5678,5673,1,0,0,0,5678,5677,1,0,0,0,5678,5679,1,0,0, - 0,5679,495,1,0,0,0,5680,5681,5,423,0,0,5681,5687,5,20,0,0,5682,5688, - 5,882,0,0,5683,5684,5,829,0,0,5684,5688,5,529,0,0,5685,5686,5,529, - 0,0,5686,5688,5,882,0,0,5687,5682,1,0,0,0,5687,5683,1,0,0,0,5687, - 5685,1,0,0,0,5688,5691,1,0,0,0,5689,5690,5,11,0,0,5690,5692,3,496, - 248,0,5691,5689,1,0,0,0,5691,5692,1,0,0,0,5692,5717,1,0,0,0,5693, - 5694,5,423,0,0,5694,5695,5,194,0,0,5695,5704,3,706,353,0,5696,5700, - 5,20,0,0,5697,5701,5,882,0,0,5698,5699,5,829,0,0,5699,5701,5,529, - 0,0,5700,5697,1,0,0,0,5700,5698,1,0,0,0,5701,5705,1,0,0,0,5702,5703, - 5,13,0,0,5703,5705,5,882,0,0,5704,5696,1,0,0,0,5704,5702,1,0,0,0, - 5704,5705,1,0,0,0,5705,5708,1,0,0,0,5706,5707,5,11,0,0,5707,5709, - 3,496,248,0,5708,5706,1,0,0,0,5708,5709,1,0,0,0,5709,5717,1,0,0, - 0,5710,5711,5,423,0,0,5711,5712,5,194,0,0,5712,5714,3,706,353,0, - 5713,5715,3,498,249,0,5714,5713,1,0,0,0,5714,5715,1,0,0,0,5715,5717, - 1,0,0,0,5716,5680,1,0,0,0,5716,5693,1,0,0,0,5716,5710,1,0,0,0,5717, - 497,1,0,0,0,5718,5719,5,427,0,0,5719,5720,5,708,0,0,5720,5721,5, - 423,0,0,5721,5725,5,20,0,0,5722,5723,5,829,0,0,5723,5726,5,529,0, - 0,5724,5726,5,882,0,0,5725,5722,1,0,0,0,5725,5724,1,0,0,0,5726,5736, - 1,0,0,0,5727,5728,5,427,0,0,5728,5729,5,708,0,0,5729,5730,5,423, - 0,0,5730,5731,5,194,0,0,5731,5732,3,706,353,0,5732,5733,5,13,0,0, - 5733,5734,5,882,0,0,5734,5736,1,0,0,0,5735,5718,1,0,0,0,5735,5727, - 1,0,0,0,5736,499,1,0,0,0,5737,5738,3,684,342,0,5738,5739,5,423,0, - 0,5739,5740,5,20,0,0,5740,5741,5,529,0,0,5741,5742,5,882,0,0,5742, - 5763,1,0,0,0,5743,5744,3,684,342,0,5744,5745,5,423,0,0,5745,5746, - 5,20,0,0,5746,5747,5,829,0,0,5747,5748,5,529,0,0,5748,5749,3,502, - 251,0,5749,5763,1,0,0,0,5750,5751,3,684,342,0,5751,5752,5,423,0, - 0,5752,5753,5,20,0,0,5753,5754,5,882,0,0,5754,5755,3,502,251,0,5755, - 5763,1,0,0,0,5756,5757,3,684,342,0,5757,5758,5,423,0,0,5758,5759, - 5,194,0,0,5759,5760,3,504,252,0,5760,5763,1,0,0,0,5761,5763,3,684, - 342,0,5762,5737,1,0,0,0,5762,5743,1,0,0,0,5762,5750,1,0,0,0,5762, - 5756,1,0,0,0,5762,5761,1,0,0,0,5763,501,1,0,0,0,5764,5765,5,143, - 0,0,5765,5767,5,882,0,0,5766,5764,1,0,0,0,5766,5767,1,0,0,0,5767, - 5771,1,0,0,0,5768,5769,5,147,0,0,5769,5770,5,36,0,0,5770,5772,5, - 529,0,0,5771,5768,1,0,0,0,5771,5772,1,0,0,0,5772,503,1,0,0,0,5773, - 5781,3,706,353,0,5774,5778,7,84,0,0,5775,5779,5,882,0,0,5776,5777, - 5,829,0,0,5777,5779,5,529,0,0,5778,5775,1,0,0,0,5778,5776,1,0,0, - 0,5779,5780,1,0,0,0,5780,5782,3,502,251,0,5781,5774,1,0,0,0,5781, - 5782,1,0,0,0,5782,5788,1,0,0,0,5783,5784,3,706,353,0,5784,5785,5, - 188,0,0,5785,5786,3,798,399,0,5786,5788,1,0,0,0,5787,5773,1,0,0, - 0,5787,5783,1,0,0,0,5788,505,1,0,0,0,5789,5798,5,169,0,0,5790,5798, - 5,693,0,0,5791,5792,5,331,0,0,5792,5798,5,882,0,0,5793,5794,5,441, - 0,0,5794,5798,5,882,0,0,5795,5796,5,651,0,0,5796,5798,5,882,0,0, - 5797,5789,1,0,0,0,5797,5790,1,0,0,0,5797,5791,1,0,0,0,5797,5793, - 1,0,0,0,5797,5795,1,0,0,0,5798,507,1,0,0,0,5799,5800,5,479,0,0,5800, - 5808,3,712,356,0,5801,5802,5,482,0,0,5802,5808,3,712,356,0,5803, - 5804,5,478,0,0,5804,5808,3,712,356,0,5805,5806,5,483,0,0,5806,5808, - 3,712,356,0,5807,5799,1,0,0,0,5807,5801,1,0,0,0,5807,5803,1,0,0, - 0,5807,5805,1,0,0,0,5808,509,1,0,0,0,5809,5810,5,529,0,0,5810,5817, - 5,390,0,0,5811,5818,5,42,0,0,5812,5818,5,500,0,0,5813,5814,5,87, - 0,0,5814,5815,3,712,356,0,5815,5816,5,698,0,0,5816,5818,1,0,0,0, - 5817,5811,1,0,0,0,5817,5812,1,0,0,0,5817,5813,1,0,0,0,5817,5818, - 1,0,0,0,5818,5848,1,0,0,0,5819,5820,5,529,0,0,5820,5823,5,420,0, - 0,5821,5824,5,42,0,0,5822,5824,3,712,356,0,5823,5821,1,0,0,0,5823, - 5822,1,0,0,0,5824,5848,1,0,0,0,5825,5826,5,529,0,0,5826,5827,5,581, - 0,0,5827,5832,5,87,0,0,5828,5833,5,42,0,0,5829,5830,3,712,356,0, - 5830,5831,5,698,0,0,5831,5833,1,0,0,0,5832,5828,1,0,0,0,5832,5829, - 1,0,0,0,5833,5848,1,0,0,0,5834,5835,5,529,0,0,5835,5836,5,144,0, - 0,5836,5838,5,36,0,0,5837,5839,7,85,0,0,5838,5837,1,0,0,0,5838,5839, - 1,0,0,0,5839,5848,1,0,0,0,5840,5841,5,395,0,0,5841,5848,3,712,356, - 0,5842,5845,5,530,0,0,5843,5846,3,712,356,0,5844,5846,5,669,0,0, - 5845,5843,1,0,0,0,5845,5844,1,0,0,0,5846,5848,1,0,0,0,5847,5809, - 1,0,0,0,5847,5819,1,0,0,0,5847,5825,1,0,0,0,5847,5834,1,0,0,0,5847, - 5840,1,0,0,0,5847,5842,1,0,0,0,5848,511,1,0,0,0,5849,5850,5,304, - 0,0,5850,5851,7,86,0,0,5851,513,1,0,0,0,5852,5855,5,423,0,0,5853, - 5854,5,194,0,0,5854,5856,3,706,353,0,5855,5853,1,0,0,0,5855,5856, - 1,0,0,0,5856,5865,1,0,0,0,5857,5861,5,20,0,0,5858,5862,5,882,0,0, - 5859,5860,5,829,0,0,5860,5862,5,529,0,0,5861,5858,1,0,0,0,5861,5859, - 1,0,0,0,5862,5866,1,0,0,0,5863,5864,5,13,0,0,5864,5866,5,882,0,0, - 5865,5857,1,0,0,0,5865,5863,1,0,0,0,5866,515,1,0,0,0,5867,5868,3, - 518,259,0,5868,5869,5,429,0,0,5869,5870,5,555,0,0,5870,5883,1,0, - 0,0,5871,5872,3,518,259,0,5872,5873,5,401,0,0,5873,5874,5,555,0, - 0,5874,5875,5,155,0,0,5875,5876,5,330,0,0,5876,5877,5,13,0,0,5877, - 5878,5,882,0,0,5878,5883,1,0,0,0,5879,5880,3,518,259,0,5880,5881, - 5,675,0,0,5881,5883,1,0,0,0,5882,5867,1,0,0,0,5882,5871,1,0,0,0, - 5882,5879,1,0,0,0,5883,517,1,0,0,0,5884,5885,7,87,0,0,5885,5886, - 5,394,0,0,5886,519,1,0,0,0,5887,5892,3,522,261,0,5888,5889,5,866, - 0,0,5889,5890,3,660,330,0,5890,5891,5,867,0,0,5891,5893,1,0,0,0, - 5892,5888,1,0,0,0,5892,5893,1,0,0,0,5893,521,1,0,0,0,5894,5896,5, - 7,0,0,5895,5897,5,734,0,0,5896,5895,1,0,0,0,5896,5897,1,0,0,0,5897, - 5988,1,0,0,0,5898,5900,5,8,0,0,5899,5901,5,743,0,0,5900,5899,1,0, - 0,0,5900,5901,1,0,0,0,5901,5988,1,0,0,0,5902,5910,5,34,0,0,5903, - 5904,5,660,0,0,5904,5911,5,752,0,0,5905,5911,5,743,0,0,5906,5911, - 5,684,0,0,5907,5911,5,678,0,0,5908,5911,5,658,0,0,5909,5911,5,582, - 0,0,5910,5903,1,0,0,0,5910,5905,1,0,0,0,5910,5906,1,0,0,0,5910,5907, - 1,0,0,0,5910,5908,1,0,0,0,5910,5909,1,0,0,0,5910,5911,1,0,0,0,5911, - 5988,1,0,0,0,5912,5988,5,44,0,0,5913,5915,5,51,0,0,5914,5916,5,582, - 0,0,5915,5914,1,0,0,0,5915,5916,1,0,0,0,5916,5988,1,0,0,0,5917,5988, - 5,385,0,0,5918,5988,5,717,0,0,5919,5988,5,718,0,0,5920,5921,5,73, - 0,0,5921,5988,5,121,0,0,5922,5988,5,82,0,0,5923,5988,5,86,0,0,5924, - 5925,5,104,0,0,5925,5988,5,752,0,0,5926,5988,5,735,0,0,5927,5988, - 5,547,0,0,5928,5988,5,138,0,0,5929,5988,5,736,0,0,5930,5931,5,572, - 0,0,5931,5988,7,88,0,0,5932,5988,5,154,0,0,5933,5934,5,157,0,0,5934, - 5988,7,89,0,0,5935,5988,5,749,0,0,5936,5988,5,750,0,0,5937,5988, - 5,178,0,0,5938,5988,5,185,0,0,5939,5988,5,186,0,0,5940,5988,5,705, - 0,0,5941,5988,5,706,0,0,5942,5988,5,707,0,0,5943,5988,5,709,0,0, - 5944,5988,5,710,0,0,5945,5988,5,711,0,0,5946,5988,5,712,0,0,5947, - 5988,5,714,0,0,5948,5988,5,715,0,0,5949,5988,5,716,0,0,5950,5988, - 5,719,0,0,5951,5988,5,720,0,0,5952,5988,5,721,0,0,5953,5988,5,722, - 0,0,5954,5988,5,723,0,0,5955,5988,5,724,0,0,5956,5988,5,725,0,0, - 5957,5988,5,726,0,0,5958,5988,5,727,0,0,5959,5988,5,728,0,0,5960, - 5988,5,731,0,0,5961,5988,5,732,0,0,5962,5988,5,733,0,0,5963,5988, - 5,737,0,0,5964,5988,5,738,0,0,5965,5988,5,740,0,0,5966,5988,5,741, - 0,0,5967,5988,5,742,0,0,5968,5988,5,745,0,0,5969,5988,5,746,0,0, - 5970,5988,5,747,0,0,5971,5988,5,160,0,0,5972,5988,5,748,0,0,5973, - 5988,5,836,0,0,5974,5988,5,751,0,0,5975,5988,5,753,0,0,5976,5988, - 5,838,0,0,5977,5988,5,754,0,0,5978,5988,5,755,0,0,5979,5980,5,103, - 0,0,5980,5981,5,68,0,0,5981,5988,5,744,0,0,5982,5983,5,154,0,0,5983, - 5984,5,88,0,0,5984,5988,5,744,0,0,5985,5986,5,729,0,0,5986,5988, - 5,730,0,0,5987,5894,1,0,0,0,5987,5898,1,0,0,0,5987,5902,1,0,0,0, - 5987,5912,1,0,0,0,5987,5913,1,0,0,0,5987,5917,1,0,0,0,5987,5918, - 1,0,0,0,5987,5919,1,0,0,0,5987,5920,1,0,0,0,5987,5922,1,0,0,0,5987, - 5923,1,0,0,0,5987,5924,1,0,0,0,5987,5926,1,0,0,0,5987,5927,1,0,0, - 0,5987,5928,1,0,0,0,5987,5929,1,0,0,0,5987,5930,1,0,0,0,5987,5932, - 1,0,0,0,5987,5933,1,0,0,0,5987,5935,1,0,0,0,5987,5936,1,0,0,0,5987, - 5937,1,0,0,0,5987,5938,1,0,0,0,5987,5939,1,0,0,0,5987,5940,1,0,0, - 0,5987,5941,1,0,0,0,5987,5942,1,0,0,0,5987,5943,1,0,0,0,5987,5944, - 1,0,0,0,5987,5945,1,0,0,0,5987,5946,1,0,0,0,5987,5947,1,0,0,0,5987, - 5948,1,0,0,0,5987,5949,1,0,0,0,5987,5950,1,0,0,0,5987,5951,1,0,0, - 0,5987,5952,1,0,0,0,5987,5953,1,0,0,0,5987,5954,1,0,0,0,5987,5955, - 1,0,0,0,5987,5956,1,0,0,0,5987,5957,1,0,0,0,5987,5958,1,0,0,0,5987, - 5959,1,0,0,0,5987,5960,1,0,0,0,5987,5961,1,0,0,0,5987,5962,1,0,0, - 0,5987,5963,1,0,0,0,5987,5964,1,0,0,0,5987,5965,1,0,0,0,5987,5966, - 1,0,0,0,5987,5967,1,0,0,0,5987,5968,1,0,0,0,5987,5969,1,0,0,0,5987, - 5970,1,0,0,0,5987,5971,1,0,0,0,5987,5972,1,0,0,0,5987,5973,1,0,0, - 0,5987,5974,1,0,0,0,5987,5975,1,0,0,0,5987,5976,1,0,0,0,5987,5977, - 1,0,0,0,5987,5978,1,0,0,0,5987,5979,1,0,0,0,5987,5982,1,0,0,0,5987, - 5985,1,0,0,0,5988,523,1,0,0,0,5989,6006,5,850,0,0,5990,5991,5,850, - 0,0,5991,5992,5,865,0,0,5992,6006,5,850,0,0,5993,5994,3,706,353, - 0,5994,5995,5,865,0,0,5995,5996,5,850,0,0,5996,6006,1,0,0,0,5997, - 5998,3,706,353,0,5998,5999,5,865,0,0,5999,6000,3,706,353,0,6000, - 6006,1,0,0,0,6001,6002,3,706,353,0,6002,6003,3,710,355,0,6003,6006, - 1,0,0,0,6004,6006,3,706,353,0,6005,5989,1,0,0,0,6005,5990,1,0,0, - 0,6005,5993,1,0,0,0,6005,5997,1,0,0,0,6005,6001,1,0,0,0,6005,6004, - 1,0,0,0,6006,525,1,0,0,0,6007,6008,3,684,342,0,6008,6009,5,176,0, - 0,6009,6010,3,684,342,0,6010,527,1,0,0,0,6011,6013,5,10,0,0,6012, - 6014,3,538,269,0,6013,6012,1,0,0,0,6013,6014,1,0,0,0,6014,6015,1, - 0,0,0,6015,6016,5,173,0,0,6016,6060,3,650,325,0,6017,6019,5,10,0, - 0,6018,6020,3,538,269,0,6019,6018,1,0,0,0,6019,6020,1,0,0,0,6020, - 6021,1,0,0,0,6021,6022,5,173,0,0,6022,6023,3,652,326,0,6023,6024, - 5,185,0,0,6024,6025,5,77,0,0,6025,6026,5,119,0,0,6026,6031,3,660, - 330,0,6027,6028,5,194,0,0,6028,6029,3,712,356,0,6029,6030,5,19,0, - 0,6030,6032,1,0,0,0,6031,6027,1,0,0,0,6031,6032,1,0,0,0,6032,6060, - 1,0,0,0,6033,6035,5,10,0,0,6034,6036,3,538,269,0,6035,6034,1,0,0, - 0,6035,6036,1,0,0,0,6036,6037,1,0,0,0,6037,6038,5,173,0,0,6038,6039, - 3,652,326,0,6039,6040,5,185,0,0,6040,6041,5,77,0,0,6041,6042,5,119, - 0,0,6042,6046,3,662,331,0,6043,6044,5,188,0,0,6044,6045,5,360,0, - 0,6045,6047,5,882,0,0,6046,6043,1,0,0,0,6046,6047,1,0,0,0,6047,6060, - 1,0,0,0,6048,6050,5,10,0,0,6049,6051,3,538,269,0,6050,6049,1,0,0, - 0,6050,6051,1,0,0,0,6051,6052,1,0,0,0,6052,6053,5,173,0,0,6053,6054, - 3,652,326,0,6054,6055,5,51,0,0,6055,6056,5,77,0,0,6056,6057,5,119, - 0,0,6057,6058,3,660,330,0,6058,6060,1,0,0,0,6059,6011,1,0,0,0,6059, - 6017,1,0,0,0,6059,6033,1,0,0,0,6059,6048,1,0,0,0,6060,529,1,0,0, - 0,6061,6062,5,27,0,0,6062,6063,5,173,0,0,6063,6067,3,650,325,0,6064, - 6066,3,540,270,0,6065,6064,1,0,0,0,6066,6069,1,0,0,0,6067,6065,1, - 0,0,0,6067,6068,1,0,0,0,6068,531,1,0,0,0,6069,6067,1,0,0,0,6070, - 6071,5,329,0,0,6071,6072,5,173,0,0,6072,6074,3,650,325,0,6073,6075, - 7,90,0,0,6074,6073,1,0,0,0,6074,6075,1,0,0,0,6075,533,1,0,0,0,6076, - 6078,5,120,0,0,6077,6079,3,538,269,0,6078,6077,1,0,0,0,6078,6079, - 1,0,0,0,6079,6080,1,0,0,0,6080,6081,7,61,0,0,6081,6082,3,650,325, - 0,6082,535,1,0,0,0,6083,6085,5,562,0,0,6084,6086,3,538,269,0,6085, - 6084,1,0,0,0,6085,6086,1,0,0,0,6086,6087,1,0,0,0,6087,6088,5,173, - 0,0,6088,6090,3,650,325,0,6089,6091,5,549,0,0,6090,6089,1,0,0,0, - 6090,6091,1,0,0,0,6091,6093,1,0,0,0,6092,6094,5,392,0,0,6093,6092, - 1,0,0,0,6093,6094,1,0,0,0,6094,6096,1,0,0,0,6095,6097,5,679,0,0, - 6096,6095,1,0,0,0,6096,6097,1,0,0,0,6097,537,1,0,0,0,6098,6099,7, - 91,0,0,6099,539,1,0,0,0,6100,6101,5,65,0,0,6101,6108,5,677,0,0,6102, - 6108,5,549,0,0,6103,6108,5,396,0,0,6104,6108,5,484,0,0,6105,6108, - 5,392,0,0,6106,6108,5,327,0,0,6107,6100,1,0,0,0,6107,6102,1,0,0, - 0,6107,6103,1,0,0,0,6107,6104,1,0,0,0,6107,6105,1,0,0,0,6107,6106, - 1,0,0,0,6108,541,1,0,0,0,6109,6110,5,432,0,0,6110,6111,5,344,0,0, - 6111,6116,3,706,353,0,6112,6113,5,868,0,0,6113,6115,3,706,353,0, - 6114,6112,1,0,0,0,6115,6118,1,0,0,0,6116,6114,1,0,0,0,6116,6117, - 1,0,0,0,6117,6128,1,0,0,0,6118,6116,1,0,0,0,6119,6120,5,155,0,0, - 6120,6125,3,544,272,0,6121,6122,5,868,0,0,6122,6124,3,544,272,0, - 6123,6121,1,0,0,0,6124,6127,1,0,0,0,6125,6123,1,0,0,0,6125,6126, - 1,0,0,0,6126,6129,1,0,0,0,6127,6125,1,0,0,0,6128,6119,1,0,0,0,6128, - 6129,1,0,0,0,6129,543,1,0,0,0,6130,6131,7,92,0,0,6131,6132,3,702, - 351,0,6132,6133,5,857,0,0,6133,6134,3,804,402,0,6134,545,1,0,0,0, - 6135,6136,5,673,0,0,6136,6137,5,344,0,0,6137,6142,3,706,353,0,6138, - 6139,5,868,0,0,6139,6141,3,706,353,0,6140,6138,1,0,0,0,6141,6144, - 1,0,0,0,6142,6140,1,0,0,0,6142,6143,1,0,0,0,6143,547,1,0,0,0,6144, - 6142,1,0,0,0,6145,6146,5,432,0,0,6146,6147,5,534,0,0,6147,6148,3, - 706,353,0,6148,6149,5,603,0,0,6149,6150,5,882,0,0,6150,549,1,0,0, - 0,6151,6152,5,673,0,0,6152,6153,5,534,0,0,6153,6154,3,706,353,0, - 6154,551,1,0,0,0,6155,6156,5,713,0,0,6156,6157,5,450,0,0,6157,6158, - 5,360,0,0,6158,6160,5,367,0,0,6159,6161,5,857,0,0,6160,6159,1,0, - 0,0,6160,6161,1,0,0,0,6161,6162,1,0,0,0,6162,6186,5,882,0,0,6163, - 6164,5,713,0,0,6164,6165,5,433,0,0,6165,6166,5,68,0,0,6166,6167, - 3,676,338,0,6167,6168,5,423,0,0,6168,6169,5,20,0,0,6169,6176,5,882, - 0,0,6170,6171,5,360,0,0,6171,6173,5,367,0,0,6172,6174,5,857,0,0, - 6173,6172,1,0,0,0,6173,6174,1,0,0,0,6174,6175,1,0,0,0,6175,6177, - 5,882,0,0,6176,6170,1,0,0,0,6176,6177,1,0,0,0,6177,6183,1,0,0,0, - 6178,6180,5,144,0,0,6179,6181,5,502,0,0,6180,6179,1,0,0,0,6180,6181, - 1,0,0,0,6181,6182,1,0,0,0,6182,6184,5,169,0,0,6183,6178,1,0,0,0, - 6183,6184,1,0,0,0,6184,6186,1,0,0,0,6185,6155,1,0,0,0,6185,6163, - 1,0,0,0,6186,553,1,0,0,0,6187,6188,5,155,0,0,6188,6189,3,558,279, - 0,6189,6192,7,93,0,0,6190,6193,3,804,402,0,6191,6193,5,119,0,0,6192, - 6190,1,0,0,0,6192,6191,1,0,0,0,6193,6203,1,0,0,0,6194,6195,5,868, - 0,0,6195,6196,3,558,279,0,6196,6199,7,93,0,0,6197,6200,3,804,402, - 0,6198,6200,5,119,0,0,6199,6197,1,0,0,0,6199,6198,1,0,0,0,6200,6202, - 1,0,0,0,6201,6194,1,0,0,0,6202,6205,1,0,0,0,6203,6201,1,0,0,0,6203, - 6204,1,0,0,0,6204,6240,1,0,0,0,6205,6203,1,0,0,0,6206,6207,5,155, - 0,0,6207,6210,3,58,29,0,6208,6211,3,688,344,0,6209,6211,5,42,0,0, - 6210,6208,1,0,0,0,6210,6209,1,0,0,0,6211,6240,1,0,0,0,6212,6213, - 5,155,0,0,6213,6220,5,497,0,0,6214,6217,3,688,344,0,6215,6216,5, - 28,0,0,6216,6218,3,690,345,0,6217,6215,1,0,0,0,6217,6218,1,0,0,0, - 6218,6221,1,0,0,0,6219,6221,5,42,0,0,6220,6214,1,0,0,0,6220,6219, - 1,0,0,0,6221,6240,1,0,0,0,6222,6240,3,490,245,0,6223,6240,3,342, - 171,0,6224,6240,3,340,170,0,6225,6226,5,155,0,0,6226,6227,3,702, - 351,0,6227,6228,7,93,0,0,6228,6236,3,804,402,0,6229,6230,5,868,0, - 0,6230,6231,3,702,351,0,6231,6232,7,93,0,0,6232,6233,3,804,402,0, - 6233,6235,1,0,0,0,6234,6229,1,0,0,0,6235,6238,1,0,0,0,6236,6234, - 1,0,0,0,6236,6237,1,0,0,0,6237,6240,1,0,0,0,6238,6236,1,0,0,0,6239, - 6187,1,0,0,0,6239,6206,1,0,0,0,6239,6212,1,0,0,0,6239,6222,1,0,0, - 0,6239,6223,1,0,0,0,6239,6224,1,0,0,0,6239,6225,1,0,0,0,6240,555, - 1,0,0,0,6241,6242,5,157,0,0,6242,6243,7,63,0,0,6243,6426,5,452,0, - 0,6244,6245,5,157,0,0,6245,6246,7,94,0,0,6246,6249,5,386,0,0,6247, - 6248,5,80,0,0,6248,6250,5,882,0,0,6249,6247,1,0,0,0,6249,6250,1, - 0,0,0,6250,6253,1,0,0,0,6251,6252,5,68,0,0,6252,6254,3,712,356,0, - 6253,6251,1,0,0,0,6253,6254,1,0,0,0,6254,6262,1,0,0,0,6255,6259, - 5,100,0,0,6256,6257,3,712,356,0,6257,6258,5,868,0,0,6258,6260,1, - 0,0,0,6259,6256,1,0,0,0,6259,6260,1,0,0,0,6260,6261,1,0,0,0,6261, - 6263,3,712,356,0,6262,6255,1,0,0,0,6262,6263,1,0,0,0,6263,6265,1, - 0,0,0,6264,6266,3,390,195,0,6265,6264,1,0,0,0,6265,6266,1,0,0,0, - 6266,6426,1,0,0,0,6267,6268,5,157,0,0,6268,6270,3,560,280,0,6269, - 6271,3,562,281,0,6270,6269,1,0,0,0,6270,6271,1,0,0,0,6271,6426,1, - 0,0,0,6272,6274,5,157,0,0,6273,6275,5,392,0,0,6274,6273,1,0,0,0, - 6274,6275,1,0,0,0,6275,6277,1,0,0,0,6276,6278,5,408,0,0,6277,6276, - 1,0,0,0,6277,6278,1,0,0,0,6278,6279,1,0,0,0,6279,6280,7,47,0,0,6280, - 6281,7,95,0,0,6281,6284,3,652,326,0,6282,6283,7,95,0,0,6283,6285, - 3,628,314,0,6284,6282,1,0,0,0,6284,6285,1,0,0,0,6285,6287,1,0,0, - 0,6286,6288,3,562,281,0,6287,6286,1,0,0,0,6287,6288,1,0,0,0,6288, - 6426,1,0,0,0,6289,6290,5,157,0,0,6290,6291,5,34,0,0,6291,6293,7, - 0,0,0,6292,6294,3,760,380,0,6293,6292,1,0,0,0,6293,6294,1,0,0,0, - 6294,6295,1,0,0,0,6295,6426,3,628,314,0,6296,6297,5,157,0,0,6297, - 6298,5,34,0,0,6298,6299,7,96,0,0,6299,6426,3,702,351,0,6300,6301, - 5,157,0,0,6301,6302,5,34,0,0,6302,6303,5,409,0,0,6303,6426,3,632, - 316,0,6304,6305,5,157,0,0,6305,6306,5,34,0,0,6306,6307,5,684,0,0, - 6307,6426,3,636,318,0,6308,6309,5,157,0,0,6309,6310,5,34,0,0,6310, - 6311,5,173,0,0,6311,6426,3,652,326,0,6312,6313,5,157,0,0,6313,6314, - 5,34,0,0,6314,6315,5,678,0,0,6315,6426,3,684,342,0,6316,6317,5,157, - 0,0,6317,6318,5,380,0,0,6318,6319,3,692,346,0,6319,6320,7,97,0,0, - 6320,6426,1,0,0,0,6321,6322,5,157,0,0,6322,6426,3,564,282,0,6323, - 6324,5,157,0,0,6324,6332,7,98,0,0,6325,6329,5,100,0,0,6326,6327, - 3,712,356,0,6327,6328,5,868,0,0,6328,6330,1,0,0,0,6329,6326,1,0, - 0,0,6329,6330,1,0,0,0,6330,6331,1,0,0,0,6331,6333,3,712,356,0,6332, - 6325,1,0,0,0,6332,6333,1,0,0,0,6333,6426,1,0,0,0,6334,6335,5,157, - 0,0,6335,6336,5,262,0,0,6336,6337,5,866,0,0,6337,6338,5,850,0,0, - 6338,6339,5,867,0,0,6339,6426,7,98,0,0,6340,6341,5,157,0,0,6341, - 6344,3,566,283,0,6342,6343,7,95,0,0,6343,6345,3,628,314,0,6344,6342, - 1,0,0,0,6344,6345,1,0,0,0,6345,6347,1,0,0,0,6346,6348,3,562,281, - 0,6347,6346,1,0,0,0,6347,6348,1,0,0,0,6348,6426,1,0,0,0,6349,6350, - 5,157,0,0,6350,6351,5,132,0,0,6351,6352,5,336,0,0,6352,6426,3,702, - 351,0,6353,6354,5,157,0,0,6354,6355,5,409,0,0,6355,6356,5,336,0, - 0,6356,6426,3,632,316,0,6357,6358,5,157,0,0,6358,6365,5,414,0,0, - 6359,6360,5,65,0,0,6360,6363,3,656,328,0,6361,6362,5,188,0,0,6362, - 6364,3,654,327,0,6363,6361,1,0,0,0,6363,6364,1,0,0,0,6364,6366,1, - 0,0,0,6365,6359,1,0,0,0,6365,6366,1,0,0,0,6366,6426,1,0,0,0,6367, - 6369,5,157,0,0,6368,6370,5,392,0,0,6369,6368,1,0,0,0,6369,6370,1, - 0,0,0,6370,6371,1,0,0,0,6371,6372,7,99,0,0,6372,6373,7,95,0,0,6373, - 6376,3,652,326,0,6374,6375,7,95,0,0,6375,6377,3,628,314,0,6376,6374, - 1,0,0,0,6376,6377,1,0,0,0,6377,6380,1,0,0,0,6378,6379,5,192,0,0, - 6379,6381,3,804,402,0,6380,6378,1,0,0,0,6380,6381,1,0,0,0,6381,6426, - 1,0,0,0,6382,6383,5,157,0,0,6383,6384,5,516,0,0,6384,6387,5,752, - 0,0,6385,6386,7,95,0,0,6386,6388,3,628,314,0,6387,6385,1,0,0,0,6387, - 6388,1,0,0,0,6388,6390,1,0,0,0,6389,6391,3,562,281,0,6390,6389,1, - 0,0,0,6390,6391,1,0,0,0,6391,6426,1,0,0,0,6392,6393,5,157,0,0,6393, - 6402,5,545,0,0,6394,6399,3,568,284,0,6395,6396,5,868,0,0,6396,6398, - 3,568,284,0,6397,6395,1,0,0,0,6398,6401,1,0,0,0,6399,6397,1,0,0, - 0,6399,6400,1,0,0,0,6400,6403,1,0,0,0,6401,6399,1,0,0,0,6402,6394, - 1,0,0,0,6402,6403,1,0,0,0,6403,6407,1,0,0,0,6404,6405,5,65,0,0,6405, - 6406,5,548,0,0,6406,6408,3,712,356,0,6407,6404,1,0,0,0,6407,6408, - 1,0,0,0,6408,6415,1,0,0,0,6409,6410,5,100,0,0,6410,6413,3,712,356, - 0,6411,6412,5,509,0,0,6412,6414,3,712,356,0,6413,6411,1,0,0,0,6413, - 6414,1,0,0,0,6414,6416,1,0,0,0,6415,6409,1,0,0,0,6415,6416,1,0,0, - 0,6416,6426,1,0,0,0,6417,6418,5,157,0,0,6418,6419,7,64,0,0,6419, - 6421,5,645,0,0,6420,6422,3,390,195,0,6421,6420,1,0,0,0,6421,6422, - 1,0,0,0,6422,6426,1,0,0,0,6423,6424,5,157,0,0,6424,6426,5,564,0, - 0,6425,6241,1,0,0,0,6425,6244,1,0,0,0,6425,6267,1,0,0,0,6425,6272, - 1,0,0,0,6425,6289,1,0,0,0,6425,6296,1,0,0,0,6425,6300,1,0,0,0,6425, - 6304,1,0,0,0,6425,6308,1,0,0,0,6425,6312,1,0,0,0,6425,6316,1,0,0, - 0,6425,6321,1,0,0,0,6425,6323,1,0,0,0,6425,6334,1,0,0,0,6425,6340, - 1,0,0,0,6425,6349,1,0,0,0,6425,6353,1,0,0,0,6425,6357,1,0,0,0,6425, - 6367,1,0,0,0,6425,6382,1,0,0,0,6425,6392,1,0,0,0,6425,6417,1,0,0, - 0,6425,6423,1,0,0,0,6426,557,1,0,0,0,6427,6438,5,892,0,0,6428,6438, - 5,893,0,0,6429,6430,5,870,0,0,6430,6432,5,870,0,0,6431,6429,1,0, - 0,0,6431,6432,1,0,0,0,6432,6433,1,0,0,0,6433,6435,7,100,0,0,6434, - 6431,1,0,0,0,6434,6435,1,0,0,0,6435,6436,1,0,0,0,6436,6438,3,706, - 353,0,6437,6427,1,0,0,0,6437,6428,1,0,0,0,6437,6434,1,0,0,0,6438, - 559,1,0,0,0,6439,6440,5,26,0,0,6440,6454,5,155,0,0,6441,6454,5,823, - 0,0,6442,6454,5,824,0,0,6443,6454,5,40,0,0,6444,6454,5,153,0,0,6445, - 6446,5,409,0,0,6446,6454,5,645,0,0,6447,6448,5,132,0,0,6448,6454, - 5,645,0,0,6449,6451,7,62,0,0,6450,6449,1,0,0,0,6450,6451,1,0,0,0, - 6451,6452,1,0,0,0,6452,6454,7,101,0,0,6453,6439,1,0,0,0,6453,6441, - 1,0,0,0,6453,6442,1,0,0,0,6453,6443,1,0,0,0,6453,6444,1,0,0,0,6453, - 6445,1,0,0,0,6453,6447,1,0,0,0,6453,6450,1,0,0,0,6454,561,1,0,0, - 0,6455,6456,5,99,0,0,6456,6460,5,882,0,0,6457,6458,5,192,0,0,6458, - 6460,3,804,402,0,6459,6455,1,0,0,0,6459,6457,1,0,0,0,6460,563,1, - 0,0,0,6461,6463,5,647,0,0,6462,6461,1,0,0,0,6462,6463,1,0,0,0,6463, - 6464,1,0,0,0,6464,6479,5,381,0,0,6465,6466,5,453,0,0,6466,6479,5, - 645,0,0,6467,6479,5,536,0,0,6468,6479,5,734,0,0,6469,6471,5,408, - 0,0,6470,6469,1,0,0,0,6470,6471,1,0,0,0,6471,6472,1,0,0,0,6472,6479, - 5,544,0,0,6473,6479,5,546,0,0,6474,6475,5,598,0,0,6475,6479,5,422, - 0,0,6476,6479,5,312,0,0,6477,6479,5,356,0,0,6478,6462,1,0,0,0,6478, - 6465,1,0,0,0,6478,6467,1,0,0,0,6478,6468,1,0,0,0,6478,6470,1,0,0, - 0,6478,6473,1,0,0,0,6478,6474,1,0,0,0,6478,6476,1,0,0,0,6478,6477, - 1,0,0,0,6479,565,1,0,0,0,6480,6492,5,386,0,0,6481,6482,5,173,0,0, - 6482,6492,5,645,0,0,6483,6485,5,392,0,0,6484,6483,1,0,0,0,6484,6485, - 1,0,0,0,6485,6487,1,0,0,0,6486,6488,5,408,0,0,6487,6486,1,0,0,0, - 6487,6488,1,0,0,0,6488,6489,1,0,0,0,6489,6492,5,752,0,0,6490,6492, - 5,667,0,0,6491,6480,1,0,0,0,6491,6481,1,0,0,0,6491,6484,1,0,0,0, - 6491,6490,1,0,0,0,6492,567,1,0,0,0,6493,6506,5,7,0,0,6494,6495,5, - 320,0,0,6495,6506,5,437,0,0,6496,6497,5,355,0,0,6497,6506,5,656, - 0,0,6498,6506,5,358,0,0,6499,6506,5,439,0,0,6500,6506,5,802,0,0, - 6501,6502,5,521,0,0,6502,6506,5,397,0,0,6503,6506,5,605,0,0,6504, - 6506,5,655,0,0,6505,6493,1,0,0,0,6505,6494,1,0,0,0,6505,6496,1,0, - 0,0,6505,6498,1,0,0,0,6505,6499,1,0,0,0,6505,6500,1,0,0,0,6505,6501, - 1,0,0,0,6505,6503,1,0,0,0,6505,6504,1,0,0,0,6506,569,1,0,0,0,6507, - 6508,5,318,0,0,6508,6509,5,882,0,0,6509,571,1,0,0,0,6510,6511,5, - 324,0,0,6511,6529,5,82,0,0,6512,6517,3,592,296,0,6513,6514,5,868, - 0,0,6514,6516,3,592,296,0,6515,6513,1,0,0,0,6516,6519,1,0,0,0,6517, - 6515,1,0,0,0,6517,6518,1,0,0,0,6518,6530,1,0,0,0,6519,6517,1,0,0, - 0,6520,6521,3,652,326,0,6521,6522,5,130,0,0,6522,6525,5,866,0,0, - 6523,6526,3,670,335,0,6524,6526,5,7,0,0,6525,6523,1,0,0,0,6525,6524, - 1,0,0,0,6526,6527,1,0,0,0,6527,6528,5,867,0,0,6528,6530,1,0,0,0, - 6529,6512,1,0,0,0,6529,6520,1,0,0,0,6530,6531,1,0,0,0,6531,6532, - 5,80,0,0,6532,6533,3,628,314,0,6533,573,1,0,0,0,6534,6536,5,404, - 0,0,6535,6537,3,538,269,0,6536,6535,1,0,0,0,6536,6537,1,0,0,0,6537, - 6538,1,0,0,0,6538,6543,3,594,297,0,6539,6540,5,868,0,0,6540,6542, - 3,594,297,0,6541,6539,1,0,0,0,6542,6545,1,0,0,0,6543,6541,1,0,0, - 0,6543,6544,1,0,0,0,6544,575,1,0,0,0,6545,6543,1,0,0,0,6546,6548, - 5,94,0,0,6547,6549,7,102,0,0,6548,6547,1,0,0,0,6548,6549,1,0,0,0, - 6549,6550,1,0,0,0,6550,6551,3,804,402,0,6551,577,1,0,0,0,6552,6553, - 5,103,0,0,6553,6554,5,82,0,0,6554,6555,5,88,0,0,6555,6556,5,324, - 0,0,6556,6561,3,598,299,0,6557,6558,5,868,0,0,6558,6560,3,598,299, - 0,6559,6557,1,0,0,0,6560,6563,1,0,0,0,6561,6559,1,0,0,0,6561,6562, - 1,0,0,0,6562,579,1,0,0,0,6563,6561,1,0,0,0,6564,6565,5,575,0,0,6565, - 6570,3,582,291,0,6566,6567,5,868,0,0,6567,6569,3,582,291,0,6568, - 6566,1,0,0,0,6569,6572,1,0,0,0,6570,6568,1,0,0,0,6570,6571,1,0,0, - 0,6571,581,1,0,0,0,6572,6570,1,0,0,0,6573,6579,5,453,0,0,6574,6579, - 5,563,0,0,6575,6576,5,548,0,0,6576,6579,5,324,0,0,6577,6579,5,598, - 0,0,6578,6573,1,0,0,0,6578,6574,1,0,0,0,6578,6575,1,0,0,0,6578,6577, - 1,0,0,0,6579,583,1,0,0,0,6580,6581,5,575,0,0,6581,6586,5,531,0,0, - 6582,6584,3,758,379,0,6583,6582,1,0,0,0,6583,6584,1,0,0,0,6584,6585, - 1,0,0,0,6585,6587,3,706,353,0,6586,6583,1,0,0,0,6586,6587,1,0,0, - 0,6587,585,1,0,0,0,6588,6589,5,575,0,0,6589,6591,7,64,0,0,6590,6592, - 5,7,0,0,6591,6590,1,0,0,0,6591,6592,1,0,0,0,6592,6594,1,0,0,0,6593, - 6595,3,390,195,0,6594,6593,1,0,0,0,6594,6595,1,0,0,0,6595,587,1, - 0,0,0,6596,6597,5,576,0,0,6597,589,1,0,0,0,6598,6599,5,749,0,0,6599, - 591,1,0,0,0,6600,6606,3,652,326,0,6601,6602,7,19,0,0,6602,6603,5, - 866,0,0,6603,6604,3,640,320,0,6604,6605,5,867,0,0,6605,6607,1,0, - 0,0,6606,6601,1,0,0,0,6606,6607,1,0,0,0,6607,593,1,0,0,0,6608,6627, - 5,366,0,0,6609,6627,5,422,0,0,6610,6612,7,103,0,0,6611,6610,1,0, - 0,0,6611,6612,1,0,0,0,6612,6613,1,0,0,0,6613,6627,5,452,0,0,6614, - 6627,5,517,0,0,6615,6627,5,734,0,0,6616,6617,5,548,0,0,6617,6627, - 5,324,0,0,6618,6627,5,645,0,0,6619,6627,5,680,0,0,6620,6624,5,752, - 0,0,6621,6622,5,194,0,0,6622,6623,5,135,0,0,6623,6625,5,104,0,0, - 6624,6621,1,0,0,0,6624,6625,1,0,0,0,6625,6627,1,0,0,0,6626,6608, - 1,0,0,0,6626,6609,1,0,0,0,6626,6611,1,0,0,0,6626,6614,1,0,0,0,6626, - 6615,1,0,0,0,6626,6616,1,0,0,0,6626,6618,1,0,0,0,6626,6619,1,0,0, - 0,6626,6620,1,0,0,0,6627,6641,1,0,0,0,6628,6629,5,556,0,0,6629,6631, - 5,452,0,0,6630,6632,3,390,195,0,6631,6630,1,0,0,0,6631,6632,1,0, - 0,0,6632,6641,1,0,0,0,6633,6635,7,61,0,0,6634,6636,3,650,325,0,6635, - 6634,1,0,0,0,6635,6636,1,0,0,0,6636,6638,1,0,0,0,6637,6639,3,596, - 298,0,6638,6637,1,0,0,0,6638,6639,1,0,0,0,6639,6641,1,0,0,0,6640, - 6626,1,0,0,0,6640,6628,1,0,0,0,6640,6633,1,0,0,0,6641,595,1,0,0, - 0,6642,6643,5,194,0,0,6643,6644,5,135,0,0,6644,6648,5,104,0,0,6645, - 6646,5,65,0,0,6646,6648,5,391,0,0,6647,6642,1,0,0,0,6647,6645,1, - 0,0,0,6648,597,1,0,0,0,6649,6657,3,652,326,0,6650,6651,5,130,0,0, - 6651,6654,5,866,0,0,6652,6655,3,670,335,0,6653,6655,5,7,0,0,6654, - 6652,1,0,0,0,6654,6653,1,0,0,0,6655,6656,1,0,0,0,6656,6658,5,867, - 0,0,6657,6650,1,0,0,0,6657,6658,1,0,0,0,6658,6666,1,0,0,0,6659,6661, - 7,19,0,0,6660,6659,1,0,0,0,6660,6661,1,0,0,0,6661,6662,1,0,0,0,6662, - 6663,5,866,0,0,6663,6664,3,640,320,0,6664,6665,5,867,0,0,6665,6667, - 1,0,0,0,6666,6660,1,0,0,0,6666,6667,1,0,0,0,6667,6670,1,0,0,0,6668, - 6669,5,79,0,0,6669,6671,5,446,0,0,6670,6668,1,0,0,0,6670,6671,1, - 0,0,0,6671,599,1,0,0,0,6672,6673,7,104,0,0,6673,6676,3,652,326,0, - 6674,6677,3,662,331,0,6675,6677,5,882,0,0,6676,6674,1,0,0,0,6676, - 6675,1,0,0,0,6676,6677,1,0,0,0,6677,601,1,0,0,0,6678,6684,7,104, - 0,0,6679,6685,5,392,0,0,6680,6685,5,528,0,0,6681,6682,5,826,0,0, - 6682,6683,5,857,0,0,6683,6685,7,105,0,0,6684,6679,1,0,0,0,6684,6680, - 1,0,0,0,6684,6681,1,0,0,0,6684,6685,1,0,0,0,6685,6686,1,0,0,0,6686, - 6687,3,624,312,0,6687,603,1,0,0,0,6688,6689,7,104,0,0,6689,6693, - 5,10,0,0,6690,6691,5,826,0,0,6691,6692,5,857,0,0,6692,6694,5,666, - 0,0,6693,6690,1,0,0,0,6693,6694,1,0,0,0,6694,6695,1,0,0,0,6695,6696, - 3,210,105,0,6696,605,1,0,0,0,6697,6698,5,419,0,0,6698,6699,5,882, - 0,0,6699,607,1,0,0,0,6700,6701,5,187,0,0,6701,6702,3,628,314,0,6702, - 609,1,0,0,0,6703,6711,5,158,0,0,6704,6706,5,164,0,0,6705,6707,5, - 682,0,0,6706,6705,1,0,0,0,6706,6707,1,0,0,0,6707,6708,1,0,0,0,6708, - 6712,3,716,358,0,6709,6712,5,889,0,0,6710,6712,5,890,0,0,6711,6704, - 1,0,0,0,6711,6709,1,0,0,0,6711,6710,1,0,0,0,6712,6722,1,0,0,0,6713, - 6714,5,155,0,0,6714,6719,3,614,307,0,6715,6716,5,868,0,0,6716,6718, - 3,614,307,0,6717,6715,1,0,0,0,6718,6721,1,0,0,0,6719,6717,1,0,0, - 0,6719,6720,1,0,0,0,6720,6723,1,0,0,0,6721,6719,1,0,0,0,6722,6713, - 1,0,0,0,6722,6723,1,0,0,0,6723,611,1,0,0,0,6724,6732,5,145,0,0,6725, - 6727,5,164,0,0,6726,6728,5,682,0,0,6727,6726,1,0,0,0,6727,6728,1, - 0,0,0,6728,6729,1,0,0,0,6729,6733,3,716,358,0,6730,6733,5,889,0, - 0,6731,6733,5,890,0,0,6732,6725,1,0,0,0,6732,6730,1,0,0,0,6732,6731, - 1,0,0,0,6732,6733,1,0,0,0,6733,6743,1,0,0,0,6734,6735,5,155,0,0, - 6735,6740,3,614,307,0,6736,6737,5,868,0,0,6737,6739,3,614,307,0, - 6738,6736,1,0,0,0,6739,6742,1,0,0,0,6740,6738,1,0,0,0,6740,6741, - 1,0,0,0,6741,6744,1,0,0,0,6742,6740,1,0,0,0,6743,6734,1,0,0,0,6743, - 6744,1,0,0,0,6744,613,1,0,0,0,6745,6746,7,106,0,0,6746,6751,5,857, - 0,0,6747,6752,3,716,358,0,6748,6752,5,883,0,0,6749,6752,3,686,343, - 0,6750,6752,3,708,354,0,6751,6747,1,0,0,0,6751,6748,1,0,0,0,6751, - 6749,1,0,0,0,6751,6750,1,0,0,0,6752,615,1,0,0,0,6753,6755,5,194, - 0,0,6754,6756,5,552,0,0,6755,6754,1,0,0,0,6755,6756,1,0,0,0,6756, - 6757,1,0,0,0,6757,6762,3,52,26,0,6758,6759,5,868,0,0,6759,6761,3, - 52,26,0,6760,6758,1,0,0,0,6761,6764,1,0,0,0,6762,6760,1,0,0,0,6762, - 6763,1,0,0,0,6763,617,1,0,0,0,6764,6762,1,0,0,0,6765,6766,5,173, - 0,0,6766,6768,3,652,326,0,6767,6769,3,258,129,0,6768,6767,1,0,0, - 0,6768,6769,1,0,0,0,6769,6771,1,0,0,0,6770,6772,3,318,159,0,6771, - 6770,1,0,0,0,6771,6772,1,0,0,0,6772,619,1,0,0,0,6773,6775,5,72,0, - 0,6774,6776,7,107,0,0,6775,6774,1,0,0,0,6775,6776,1,0,0,0,6776,6777, - 1,0,0,0,6777,6809,5,48,0,0,6778,6779,3,558,279,0,6779,6780,5,857, - 0,0,6780,6788,7,108,0,0,6781,6782,5,868,0,0,6782,6783,3,558,279, - 0,6783,6784,5,857,0,0,6784,6785,7,108,0,0,6785,6787,1,0,0,0,6786, - 6781,1,0,0,0,6787,6790,1,0,0,0,6788,6786,1,0,0,0,6788,6789,1,0,0, - 0,6789,6810,1,0,0,0,6790,6788,1,0,0,0,6791,6794,5,30,0,0,6792,6795, - 3,712,356,0,6793,6795,3,558,279,0,6794,6792,1,0,0,0,6794,6793,1, - 0,0,0,6795,6796,1,0,0,0,6796,6797,3,558,279,0,6797,6798,5,857,0, - 0,6798,6806,3,622,311,0,6799,6800,5,868,0,0,6800,6801,3,558,279, - 0,6801,6802,5,857,0,0,6802,6803,3,622,311,0,6803,6805,1,0,0,0,6804, - 6799,1,0,0,0,6805,6808,1,0,0,0,6806,6804,1,0,0,0,6806,6807,1,0,0, - 0,6807,6810,1,0,0,0,6808,6806,1,0,0,0,6809,6778,1,0,0,0,6809,6791, - 1,0,0,0,6810,621,1,0,0,0,6811,6812,7,109,0,0,6812,623,1,0,0,0,6813, - 6819,3,210,105,0,6814,6819,3,186,93,0,6815,6819,3,192,96,0,6816, - 6819,3,208,104,0,6817,6819,3,220,110,0,6818,6813,1,0,0,0,6818,6814, - 1,0,0,0,6818,6815,1,0,0,0,6818,6816,1,0,0,0,6818,6817,1,0,0,0,6819, - 6824,1,0,0,0,6820,6821,5,65,0,0,6821,6822,5,349,0,0,6822,6824,3, - 706,353,0,6823,6818,1,0,0,0,6823,6820,1,0,0,0,6824,625,1,0,0,0,6825, - 6826,3,702,351,0,6826,627,1,0,0,0,6827,6828,3,702,351,0,6828,629, - 1,0,0,0,6829,6830,3,702,351,0,6830,631,1,0,0,0,6831,6832,3,702,351, - 0,6832,633,1,0,0,0,6833,6834,3,702,351,0,6834,635,1,0,0,0,6835,6836, - 3,702,351,0,6836,637,1,0,0,0,6837,6838,3,706,353,0,6838,639,1,0, - 0,0,6839,6844,3,642,321,0,6840,6841,5,868,0,0,6841,6843,3,642,321, - 0,6842,6840,1,0,0,0,6843,6846,1,0,0,0,6844,6842,1,0,0,0,6844,6845, - 1,0,0,0,6845,641,1,0,0,0,6846,6844,1,0,0,0,6847,6848,3,706,353,0, - 6848,643,1,0,0,0,6849,6850,3,706,353,0,6850,645,1,0,0,0,6851,6852, - 3,706,353,0,6852,647,1,0,0,0,6853,6854,3,702,351,0,6854,649,1,0, - 0,0,6855,6860,3,652,326,0,6856,6857,5,868,0,0,6857,6859,3,652,326, - 0,6858,6856,1,0,0,0,6859,6862,1,0,0,0,6860,6858,1,0,0,0,6860,6861, - 1,0,0,0,6861,651,1,0,0,0,6862,6860,1,0,0,0,6863,6864,3,702,351,0, - 6864,653,1,0,0,0,6865,6870,3,656,328,0,6866,6867,5,868,0,0,6867, - 6869,3,656,328,0,6868,6866,1,0,0,0,6869,6872,1,0,0,0,6870,6868,1, - 0,0,0,6870,6871,1,0,0,0,6871,655,1,0,0,0,6872,6870,1,0,0,0,6873, - 6876,3,684,342,0,6874,6876,3,706,353,0,6875,6873,1,0,0,0,6875,6874, - 1,0,0,0,6876,657,1,0,0,0,6877,6882,3,706,353,0,6878,6880,3,710,355, - 0,6879,6881,3,710,355,0,6880,6879,1,0,0,0,6880,6881,1,0,0,0,6881, - 6883,1,0,0,0,6882,6878,1,0,0,0,6882,6883,1,0,0,0,6883,6892,1,0,0, - 0,6884,6886,9,0,0,0,6885,6884,1,0,0,0,6885,6886,1,0,0,0,6886,6887, - 1,0,0,0,6887,6889,3,710,355,0,6888,6890,3,710,355,0,6889,6888,1, - 0,0,0,6889,6890,1,0,0,0,6890,6892,1,0,0,0,6891,6877,1,0,0,0,6891, - 6885,1,0,0,0,6892,659,1,0,0,0,6893,6898,3,662,331,0,6894,6895,5, - 868,0,0,6895,6897,3,662,331,0,6896,6894,1,0,0,0,6897,6900,1,0,0, - 0,6898,6896,1,0,0,0,6898,6899,1,0,0,0,6899,661,1,0,0,0,6900,6898, - 1,0,0,0,6901,6906,3,706,353,0,6902,6904,3,710,355,0,6903,6905,3, - 710,355,0,6904,6903,1,0,0,0,6904,6905,1,0,0,0,6905,6907,1,0,0,0, - 6906,6902,1,0,0,0,6906,6907,1,0,0,0,6907,6917,1,0,0,0,6908,6910, - 9,0,0,0,6909,6908,1,0,0,0,6909,6910,1,0,0,0,6910,6911,1,0,0,0,6911, - 6913,3,710,355,0,6912,6914,3,710,355,0,6913,6912,1,0,0,0,6913,6914, - 1,0,0,0,6914,6917,1,0,0,0,6915,6917,4,331,3,0,6916,6901,1,0,0,0, - 6916,6909,1,0,0,0,6916,6915,1,0,0,0,6917,663,1,0,0,0,6918,6919,3, - 706,353,0,6919,665,1,0,0,0,6920,6921,3,706,353,0,6921,667,1,0,0, - 0,6922,6923,3,706,353,0,6923,669,1,0,0,0,6924,6929,3,672,336,0,6925, - 6926,5,868,0,0,6926,6928,3,672,336,0,6927,6925,1,0,0,0,6928,6931, - 1,0,0,0,6929,6927,1,0,0,0,6929,6930,1,0,0,0,6930,671,1,0,0,0,6931, - 6929,1,0,0,0,6932,6933,3,706,353,0,6933,673,1,0,0,0,6934,6939,3, - 706,353,0,6935,6936,5,866,0,0,6936,6937,3,712,356,0,6937,6938,5, - 867,0,0,6938,6940,1,0,0,0,6939,6935,1,0,0,0,6939,6940,1,0,0,0,6940, - 6943,1,0,0,0,6941,6943,3,804,402,0,6942,6934,1,0,0,0,6942,6941,1, - 0,0,0,6943,6945,1,0,0,0,6944,6946,7,55,0,0,6945,6944,1,0,0,0,6945, - 6946,1,0,0,0,6946,675,1,0,0,0,6947,6948,3,678,339,0,6948,6949,5, - 878,0,0,6949,6950,3,712,356,0,6950,677,1,0,0,0,6951,6952,3,680,340, - 0,6952,6953,5,891,0,0,6953,679,1,0,0,0,6954,6959,5,882,0,0,6955, - 6959,5,889,0,0,6956,6959,5,704,0,0,6957,6959,3,834,417,0,6958,6954, - 1,0,0,0,6958,6955,1,0,0,0,6958,6956,1,0,0,0,6958,6957,1,0,0,0,6959, - 681,1,0,0,0,6960,6961,7,110,0,0,6961,683,1,0,0,0,6962,6964,3,680, - 340,0,6963,6965,3,682,341,0,6964,6963,1,0,0,0,6964,6965,1,0,0,0, - 6965,6968,1,0,0,0,6966,6968,3,60,30,0,6967,6962,1,0,0,0,6967,6966, - 1,0,0,0,6968,685,1,0,0,0,6969,6970,7,111,0,0,6970,687,1,0,0,0,6971, - 6976,5,228,0,0,6972,6976,3,824,412,0,6973,6976,5,882,0,0,6974,6976, - 5,879,0,0,6975,6971,1,0,0,0,6975,6972,1,0,0,0,6975,6973,1,0,0,0, - 6975,6974,1,0,0,0,6976,689,1,0,0,0,6977,6978,3,706,353,0,6978,691, - 1,0,0,0,6979,6983,3,694,347,0,6980,6983,5,889,0,0,6981,6983,5,882, - 0,0,6982,6979,1,0,0,0,6982,6980,1,0,0,0,6982,6981,1,0,0,0,6983,693, - 1,0,0,0,6984,6985,7,112,0,0,6985,695,1,0,0,0,6986,6987,3,712,356, - 0,6987,6988,5,854,0,0,6988,6989,3,712,356,0,6989,6990,5,854,0,0, - 6990,6991,3,712,356,0,6991,6992,5,854,0,0,6992,6993,3,712,356,0, - 6993,6994,5,854,0,0,6994,7000,3,712,356,0,6995,6996,5,878,0,0,6996, - 6997,3,712,356,0,6997,6998,5,854,0,0,6998,6999,3,712,356,0,6999, - 7001,1,0,0,0,7000,6995,1,0,0,0,7001,7002,1,0,0,0,7002,7000,1,0,0, - 0,7002,7003,1,0,0,0,7003,697,1,0,0,0,7004,7011,3,700,350,0,7005, - 7006,5,868,0,0,7006,7009,3,700,350,0,7007,7008,5,868,0,0,7008,7010, - 3,712,356,0,7009,7007,1,0,0,0,7009,7010,1,0,0,0,7010,7012,1,0,0, - 0,7011,7005,1,0,0,0,7011,7012,1,0,0,0,7012,699,1,0,0,0,7013,7021, - 5,882,0,0,7014,7021,5,887,0,0,7015,7017,5,884,0,0,7016,7015,1,0, - 0,0,7017,7018,1,0,0,0,7018,7016,1,0,0,0,7018,7019,1,0,0,0,7019,7021, - 1,0,0,0,7020,7013,1,0,0,0,7020,7014,1,0,0,0,7020,7016,1,0,0,0,7021, - 701,1,0,0,0,7022,7024,3,706,353,0,7023,7025,3,710,355,0,7024,7023, - 1,0,0,0,7024,7025,1,0,0,0,7025,703,1,0,0,0,7026,7031,3,706,353,0, - 7027,7028,5,868,0,0,7028,7030,3,706,353,0,7029,7027,1,0,0,0,7030, - 7033,1,0,0,0,7031,7029,1,0,0,0,7031,7032,1,0,0,0,7032,705,1,0,0, - 0,7033,7031,1,0,0,0,7034,7038,3,708,354,0,7035,7038,5,879,0,0,7036, - 7038,5,882,0,0,7037,7034,1,0,0,0,7037,7035,1,0,0,0,7037,7036,1,0, - 0,0,7038,707,1,0,0,0,7039,7049,5,889,0,0,7040,7049,3,824,412,0,7041, - 7049,3,826,413,0,7042,7049,3,694,347,0,7043,7049,3,828,414,0,7044, - 7049,3,830,415,0,7045,7049,3,832,416,0,7046,7049,3,834,417,0,7047, - 7049,3,796,398,0,7048,7039,1,0,0,0,7048,7040,1,0,0,0,7048,7041,1, - 0,0,0,7048,7042,1,0,0,0,7048,7043,1,0,0,0,7048,7044,1,0,0,0,7048, - 7045,1,0,0,0,7048,7046,1,0,0,0,7048,7047,1,0,0,0,7049,709,1,0,0, - 0,7050,7051,5,865,0,0,7051,7055,5,889,0,0,7052,7053,5,865,0,0,7053, - 7055,3,706,353,0,7054,7050,1,0,0,0,7054,7052,1,0,0,0,7055,711,1, - 0,0,0,7056,7057,7,113,0,0,7057,713,1,0,0,0,7058,7061,5,880,0,0,7059, - 7061,3,712,356,0,7060,7058,1,0,0,0,7060,7059,1,0,0,0,7061,715,1, - 0,0,0,7062,7064,5,888,0,0,7063,7062,1,0,0,0,7063,7064,1,0,0,0,7064, - 7065,1,0,0,0,7065,7068,5,882,0,0,7066,7068,5,881,0,0,7067,7063,1, - 0,0,0,7067,7066,1,0,0,0,7068,7070,1,0,0,0,7069,7071,5,882,0,0,7070, - 7069,1,0,0,0,7071,7072,1,0,0,0,7072,7070,1,0,0,0,7072,7073,1,0,0, - 0,7073,7086,1,0,0,0,7074,7076,5,888,0,0,7075,7074,1,0,0,0,7075,7076, - 1,0,0,0,7076,7077,1,0,0,0,7077,7080,5,882,0,0,7078,7080,5,881,0, - 0,7079,7075,1,0,0,0,7079,7078,1,0,0,0,7080,7083,1,0,0,0,7081,7082, - 5,28,0,0,7082,7084,3,690,345,0,7083,7081,1,0,0,0,7083,7084,1,0,0, - 0,7084,7086,1,0,0,0,7085,7067,1,0,0,0,7085,7079,1,0,0,0,7086,717, - 1,0,0,0,7087,7088,7,114,0,0,7088,719,1,0,0,0,7089,7091,5,888,0,0, - 7090,7089,1,0,0,0,7090,7091,1,0,0,0,7091,7092,1,0,0,0,7092,7093, - 5,884,0,0,7093,721,1,0,0,0,7094,7096,5,114,0,0,7095,7094,1,0,0,0, - 7095,7096,1,0,0,0,7096,7097,1,0,0,0,7097,7098,7,115,0,0,7098,723, - 1,0,0,0,7099,7112,3,716,358,0,7100,7112,3,712,356,0,7101,7102,5, - 854,0,0,7102,7112,3,712,356,0,7103,7112,3,720,360,0,7104,7112,3, - 718,359,0,7105,7112,5,885,0,0,7106,7112,5,887,0,0,7107,7109,5,114, - 0,0,7108,7107,1,0,0,0,7108,7109,1,0,0,0,7109,7110,1,0,0,0,7110,7112, - 7,115,0,0,7111,7099,1,0,0,0,7111,7100,1,0,0,0,7111,7101,1,0,0,0, - 7111,7103,1,0,0,0,7111,7104,1,0,0,0,7111,7105,1,0,0,0,7111,7106, - 1,0,0,0,7111,7108,1,0,0,0,7112,725,1,0,0,0,7113,7115,7,116,0,0,7114, - 7116,5,240,0,0,7115,7114,1,0,0,0,7115,7116,1,0,0,0,7116,7118,1,0, - 0,0,7117,7119,3,732,366,0,7118,7117,1,0,0,0,7118,7119,1,0,0,0,7119, - 7121,1,0,0,0,7120,7122,5,228,0,0,7121,7120,1,0,0,0,7121,7122,1,0, - 0,0,7122,7126,1,0,0,0,7123,7124,3,58,29,0,7124,7125,3,688,344,0, - 7125,7127,1,0,0,0,7126,7123,1,0,0,0,7126,7127,1,0,0,0,7127,7131, - 1,0,0,0,7128,7129,5,28,0,0,7129,7132,3,690,345,0,7130,7132,5,228, - 0,0,7131,7128,1,0,0,0,7131,7130,1,0,0,0,7131,7132,1,0,0,0,7132,7240, - 1,0,0,0,7133,7134,5,227,0,0,7134,7135,7,117,0,0,7135,7137,5,240, - 0,0,7136,7138,3,732,366,0,7137,7136,1,0,0,0,7137,7138,1,0,0,0,7138, - 7140,1,0,0,0,7139,7141,5,228,0,0,7140,7139,1,0,0,0,7140,7141,1,0, - 0,0,7141,7240,1,0,0,0,7142,7143,5,227,0,0,7143,7145,7,118,0,0,7144, - 7146,3,732,366,0,7145,7144,1,0,0,0,7145,7146,1,0,0,0,7146,7148,1, - 0,0,0,7147,7149,5,228,0,0,7148,7147,1,0,0,0,7148,7149,1,0,0,0,7149, - 7240,1,0,0,0,7150,7151,5,498,0,0,7151,7153,5,225,0,0,7152,7154,3, - 732,366,0,7153,7152,1,0,0,0,7153,7154,1,0,0,0,7154,7156,1,0,0,0, - 7155,7157,5,228,0,0,7156,7155,1,0,0,0,7156,7157,1,0,0,0,7157,7240, - 1,0,0,0,7158,7160,7,119,0,0,7159,7161,3,732,366,0,7160,7159,1,0, - 0,0,7160,7161,1,0,0,0,7161,7165,1,0,0,0,7162,7164,7,120,0,0,7163, - 7162,1,0,0,0,7164,7167,1,0,0,0,7165,7163,1,0,0,0,7165,7166,1,0,0, - 0,7166,7240,1,0,0,0,7167,7165,1,0,0,0,7168,7170,5,210,0,0,7169,7171, - 3,734,367,0,7170,7169,1,0,0,0,7170,7171,1,0,0,0,7171,7175,1,0,0, - 0,7172,7174,7,120,0,0,7173,7172,1,0,0,0,7174,7177,1,0,0,0,7175,7173, - 1,0,0,0,7175,7176,1,0,0,0,7176,7240,1,0,0,0,7177,7175,1,0,0,0,7178, - 7180,5,211,0,0,7179,7181,5,212,0,0,7180,7179,1,0,0,0,7180,7181,1, - 0,0,0,7181,7183,1,0,0,0,7182,7184,3,734,367,0,7183,7182,1,0,0,0, - 7183,7184,1,0,0,0,7184,7188,1,0,0,0,7185,7187,7,120,0,0,7186,7185, - 1,0,0,0,7187,7190,1,0,0,0,7188,7186,1,0,0,0,7188,7189,1,0,0,0,7189, - 7240,1,0,0,0,7190,7188,1,0,0,0,7191,7193,7,121,0,0,7192,7194,3,736, - 368,0,7193,7192,1,0,0,0,7193,7194,1,0,0,0,7194,7198,1,0,0,0,7195, - 7197,7,120,0,0,7196,7195,1,0,0,0,7197,7200,1,0,0,0,7198,7196,1,0, - 0,0,7198,7199,1,0,0,0,7199,7240,1,0,0,0,7200,7198,1,0,0,0,7201,7240, - 7,122,0,0,7202,7204,7,123,0,0,7203,7205,3,732,366,0,7204,7203,1, - 0,0,0,7204,7205,1,0,0,0,7205,7240,1,0,0,0,7206,7207,7,124,0,0,7207, - 7209,3,728,364,0,7208,7210,5,228,0,0,7209,7208,1,0,0,0,7209,7210, - 1,0,0,0,7210,7214,1,0,0,0,7211,7212,3,58,29,0,7212,7213,3,688,344, - 0,7213,7215,1,0,0,0,7214,7211,1,0,0,0,7214,7215,1,0,0,0,7215,7240, - 1,0,0,0,7216,7219,7,125,0,0,7217,7218,5,834,0,0,7218,7220,3,712, - 356,0,7219,7217,1,0,0,0,7219,7220,1,0,0,0,7220,7240,1,0,0,0,7221, - 7223,5,233,0,0,7222,7224,5,225,0,0,7223,7222,1,0,0,0,7223,7224,1, - 0,0,0,7224,7226,1,0,0,0,7225,7227,5,228,0,0,7226,7225,1,0,0,0,7226, - 7227,1,0,0,0,7227,7231,1,0,0,0,7228,7229,3,58,29,0,7229,7230,3,688, - 344,0,7230,7232,1,0,0,0,7231,7228,1,0,0,0,7231,7232,1,0,0,0,7232, - 7235,1,0,0,0,7233,7234,5,28,0,0,7234,7236,3,690,345,0,7235,7233, - 1,0,0,0,7235,7236,1,0,0,0,7236,7240,1,0,0,0,7237,7238,5,233,0,0, - 7238,7240,5,229,0,0,7239,7113,1,0,0,0,7239,7133,1,0,0,0,7239,7142, - 1,0,0,0,7239,7150,1,0,0,0,7239,7158,1,0,0,0,7239,7168,1,0,0,0,7239, - 7178,1,0,0,0,7239,7191,1,0,0,0,7239,7201,1,0,0,0,7239,7202,1,0,0, - 0,7239,7206,1,0,0,0,7239,7216,1,0,0,0,7239,7221,1,0,0,0,7239,7237, - 1,0,0,0,7240,727,1,0,0,0,7241,7242,5,866,0,0,7242,7247,5,882,0,0, - 7243,7244,5,868,0,0,7244,7246,5,882,0,0,7245,7243,1,0,0,0,7246,7249, - 1,0,0,0,7247,7245,1,0,0,0,7247,7248,1,0,0,0,7248,7250,1,0,0,0,7249, - 7247,1,0,0,0,7250,7251,5,867,0,0,7251,729,1,0,0,0,7252,7254,7,126, - 0,0,7253,7255,3,732,366,0,7254,7253,1,0,0,0,7254,7255,1,0,0,0,7255, - 7275,1,0,0,0,7256,7258,5,224,0,0,7257,7259,3,732,366,0,7258,7257, - 1,0,0,0,7258,7259,1,0,0,0,7259,7263,1,0,0,0,7260,7261,3,58,29,0, - 7261,7262,3,688,344,0,7262,7264,1,0,0,0,7263,7260,1,0,0,0,7263,7264, - 1,0,0,0,7264,7275,1,0,0,0,7265,7275,7,127,0,0,7266,7268,7,128,0, - 0,7267,7269,3,736,368,0,7268,7267,1,0,0,0,7268,7269,1,0,0,0,7269, - 7275,1,0,0,0,7270,7272,7,129,0,0,7271,7273,7,130,0,0,7272,7271,1, - 0,0,0,7272,7273,1,0,0,0,7273,7275,1,0,0,0,7274,7252,1,0,0,0,7274, - 7256,1,0,0,0,7274,7265,1,0,0,0,7274,7266,1,0,0,0,7274,7270,1,0,0, - 0,7275,7277,1,0,0,0,7276,7278,5,12,0,0,7277,7276,1,0,0,0,7277,7278, - 1,0,0,0,7278,731,1,0,0,0,7279,7280,5,866,0,0,7280,7281,3,712,356, - 0,7281,7282,5,867,0,0,7282,733,1,0,0,0,7283,7284,5,866,0,0,7284, - 7285,3,712,356,0,7285,7286,5,868,0,0,7286,7287,3,712,356,0,7287, - 7288,5,867,0,0,7288,735,1,0,0,0,7289,7290,5,866,0,0,7290,7293,3, - 712,356,0,7291,7292,5,868,0,0,7292,7294,3,712,356,0,7293,7291,1, - 0,0,0,7293,7294,1,0,0,0,7294,7295,1,0,0,0,7295,7296,5,867,0,0,7296, - 737,1,0,0,0,7297,7298,5,866,0,0,7298,7303,3,674,337,0,7299,7300, - 5,868,0,0,7300,7302,3,674,337,0,7301,7299,1,0,0,0,7302,7305,1,0, - 0,0,7303,7301,1,0,0,0,7303,7304,1,0,0,0,7304,7306,1,0,0,0,7305,7303, - 1,0,0,0,7306,7307,5,867,0,0,7307,739,1,0,0,0,7308,7313,3,804,402, - 0,7309,7310,5,868,0,0,7310,7312,3,804,402,0,7311,7309,1,0,0,0,7312, - 7315,1,0,0,0,7313,7311,1,0,0,0,7313,7314,1,0,0,0,7314,741,1,0,0, - 0,7315,7313,1,0,0,0,7316,7317,7,131,0,0,7317,7322,3,744,372,0,7318, - 7319,5,868,0,0,7319,7321,3,744,372,0,7320,7318,1,0,0,0,7321,7324, - 1,0,0,0,7322,7320,1,0,0,0,7322,7323,1,0,0,0,7323,743,1,0,0,0,7324, - 7322,1,0,0,0,7325,7326,5,866,0,0,7326,7331,3,746,373,0,7327,7328, - 5,868,0,0,7328,7330,3,746,373,0,7329,7327,1,0,0,0,7330,7333,1,0, - 0,0,7331,7329,1,0,0,0,7331,7332,1,0,0,0,7332,7334,1,0,0,0,7333,7331, - 1,0,0,0,7334,7335,5,867,0,0,7335,745,1,0,0,0,7336,7339,3,804,402, - 0,7337,7339,5,42,0,0,7338,7336,1,0,0,0,7338,7337,1,0,0,0,7339,747, - 1,0,0,0,7340,7345,3,724,362,0,7341,7342,5,868,0,0,7342,7344,3,724, - 362,0,7343,7341,1,0,0,0,7344,7347,1,0,0,0,7345,7343,1,0,0,0,7345, - 7346,1,0,0,0,7346,749,1,0,0,0,7347,7345,1,0,0,0,7348,7353,5,882, - 0,0,7349,7350,5,868,0,0,7350,7352,5,882,0,0,7351,7349,1,0,0,0,7352, - 7355,1,0,0,0,7353,7351,1,0,0,0,7353,7354,1,0,0,0,7354,751,1,0,0, - 0,7355,7353,1,0,0,0,7356,7361,5,892,0,0,7357,7358,5,868,0,0,7358, - 7360,5,892,0,0,7359,7357,1,0,0,0,7360,7363,1,0,0,0,7361,7359,1,0, - 0,0,7361,7362,1,0,0,0,7362,753,1,0,0,0,7363,7361,1,0,0,0,7364,7391, - 5,116,0,0,7365,7366,5,24,0,0,7366,7367,5,866,0,0,7367,7368,3,804, - 402,0,7368,7369,5,13,0,0,7369,7370,3,730,365,0,7370,7371,5,867,0, - 0,7371,7391,1,0,0,0,7372,7374,3,810,405,0,7373,7372,1,0,0,0,7373, - 7374,1,0,0,0,7374,7375,1,0,0,0,7375,7391,3,724,362,0,7376,7380,3, - 756,378,0,7377,7378,5,119,0,0,7378,7379,5,185,0,0,7379,7381,3,756, - 378,0,7380,7377,1,0,0,0,7380,7381,1,0,0,0,7381,7391,1,0,0,0,7382, - 7383,5,866,0,0,7383,7384,3,804,402,0,7384,7385,5,867,0,0,7385,7391, - 1,0,0,0,7386,7387,5,866,0,0,7387,7388,3,702,351,0,7388,7389,5,867, - 0,0,7389,7391,1,0,0,0,7390,7364,1,0,0,0,7390,7365,1,0,0,0,7390,7373, - 1,0,0,0,7390,7376,1,0,0,0,7390,7382,1,0,0,0,7390,7386,1,0,0,0,7391, - 755,1,0,0,0,7392,7398,7,132,0,0,7393,7395,5,866,0,0,7394,7396,3, - 712,356,0,7395,7394,1,0,0,0,7395,7396,1,0,0,0,7396,7397,1,0,0,0, - 7397,7399,5,867,0,0,7398,7393,1,0,0,0,7398,7399,1,0,0,0,7399,7407, - 1,0,0,0,7400,7401,5,295,0,0,7401,7403,5,866,0,0,7402,7404,3,712, - 356,0,7403,7402,1,0,0,0,7403,7404,1,0,0,0,7404,7405,1,0,0,0,7405, - 7407,5,867,0,0,7406,7392,1,0,0,0,7406,7400,1,0,0,0,7407,757,1,0, - 0,0,7408,7409,5,78,0,0,7409,7410,5,60,0,0,7410,759,1,0,0,0,7411, - 7412,5,78,0,0,7412,7413,5,114,0,0,7413,7414,5,60,0,0,7414,761,1, - 0,0,0,7415,7416,5,124,0,0,7416,7417,5,143,0,0,7417,763,1,0,0,0,7418, - 7441,3,766,383,0,7419,7441,3,774,387,0,7420,7441,3,776,388,0,7421, - 7428,3,796,398,0,7422,7423,5,866,0,0,7423,7429,5,867,0,0,7424,7425, - 5,866,0,0,7425,7426,3,800,400,0,7426,7427,5,867,0,0,7427,7429,1, - 0,0,0,7428,7422,1,0,0,0,7428,7424,1,0,0,0,7429,7441,1,0,0,0,7430, - 7437,3,632,316,0,7431,7432,5,866,0,0,7432,7438,5,867,0,0,7433,7434, - 5,866,0,0,7434,7435,3,800,400,0,7435,7436,5,867,0,0,7436,7438,1, - 0,0,0,7437,7431,1,0,0,0,7437,7433,1,0,0,0,7438,7441,1,0,0,0,7439, - 7441,3,798,399,0,7440,7418,1,0,0,0,7440,7419,1,0,0,0,7440,7420,1, - 0,0,0,7440,7421,1,0,0,0,7440,7430,1,0,0,0,7440,7439,1,0,0,0,7441, - 765,1,0,0,0,7442,7445,7,133,0,0,7443,7444,5,866,0,0,7444,7446,5, - 867,0,0,7445,7443,1,0,0,0,7445,7446,1,0,0,0,7446,7622,1,0,0,0,7447, - 7622,3,60,30,0,7448,7449,5,33,0,0,7449,7450,5,866,0,0,7450,7451, - 3,804,402,0,7451,7452,5,868,0,0,7452,7453,3,730,365,0,7453,7454, - 5,867,0,0,7454,7622,1,0,0,0,7455,7456,5,33,0,0,7456,7457,5,866,0, - 0,7457,7458,3,804,402,0,7458,7459,5,188,0,0,7459,7460,3,688,344, - 0,7460,7461,5,867,0,0,7461,7622,1,0,0,0,7462,7463,5,24,0,0,7463, - 7464,5,866,0,0,7464,7465,3,804,402,0,7465,7466,5,13,0,0,7466,7467, - 3,730,365,0,7467,7468,5,867,0,0,7468,7622,1,0,0,0,7469,7470,5,189, - 0,0,7470,7471,5,866,0,0,7471,7472,3,662,331,0,7472,7473,5,867,0, - 0,7473,7622,1,0,0,0,7474,7476,5,23,0,0,7475,7477,3,768,384,0,7476, - 7475,1,0,0,0,7477,7478,1,0,0,0,7478,7476,1,0,0,0,7478,7479,1,0,0, - 0,7479,7482,1,0,0,0,7480,7481,5,53,0,0,7481,7483,3,802,401,0,7482, - 7480,1,0,0,0,7482,7483,1,0,0,0,7483,7484,1,0,0,0,7484,7485,5,378, - 0,0,7485,7622,1,0,0,0,7486,7487,5,23,0,0,7487,7489,3,804,402,0,7488, - 7490,3,768,384,0,7489,7488,1,0,0,0,7490,7491,1,0,0,0,7491,7489,1, - 0,0,0,7491,7492,1,0,0,0,7492,7495,1,0,0,0,7493,7494,5,53,0,0,7494, - 7496,3,802,401,0,7495,7493,1,0,0,0,7495,7496,1,0,0,0,7496,7497,1, - 0,0,0,7497,7498,5,378,0,0,7498,7622,1,0,0,0,7499,7500,5,224,0,0, - 7500,7501,5,866,0,0,7501,7504,3,800,400,0,7502,7503,5,188,0,0,7503, - 7505,3,688,344,0,7504,7502,1,0,0,0,7504,7505,1,0,0,0,7505,7506,1, - 0,0,0,7506,7507,5,867,0,0,7507,7622,1,0,0,0,7508,7509,5,296,0,0, - 7509,7512,5,866,0,0,7510,7513,3,716,358,0,7511,7513,3,804,402,0, - 7512,7510,1,0,0,0,7512,7511,1,0,0,0,7513,7514,1,0,0,0,7514,7517, - 5,80,0,0,7515,7518,3,716,358,0,7516,7518,3,804,402,0,7517,7515,1, - 0,0,0,7517,7516,1,0,0,0,7518,7519,1,0,0,0,7519,7520,5,867,0,0,7520, - 7622,1,0,0,0,7521,7522,7,134,0,0,7522,7525,5,866,0,0,7523,7526,3, - 716,358,0,7524,7526,3,804,402,0,7525,7523,1,0,0,0,7525,7524,1,0, - 0,0,7526,7527,1,0,0,0,7527,7530,5,68,0,0,7528,7531,3,712,356,0,7529, - 7531,3,804,402,0,7530,7528,1,0,0,0,7530,7529,1,0,0,0,7531,7537,1, - 0,0,0,7532,7535,5,65,0,0,7533,7536,3,712,356,0,7534,7536,3,804,402, - 0,7535,7533,1,0,0,0,7535,7534,1,0,0,0,7536,7538,1,0,0,0,7537,7532, - 1,0,0,0,7537,7538,1,0,0,0,7538,7539,1,0,0,0,7539,7540,5,867,0,0, - 7540,7622,1,0,0,0,7541,7542,5,300,0,0,7542,7543,5,866,0,0,7543,7546, - 7,135,0,0,7544,7547,3,716,358,0,7545,7547,3,804,402,0,7546,7544, - 1,0,0,0,7546,7545,1,0,0,0,7546,7547,1,0,0,0,7547,7548,1,0,0,0,7548, - 7551,5,68,0,0,7549,7552,3,716,358,0,7550,7552,3,804,402,0,7551,7549, - 1,0,0,0,7551,7550,1,0,0,0,7552,7553,1,0,0,0,7553,7554,5,867,0,0, - 7554,7622,1,0,0,0,7555,7556,5,300,0,0,7556,7559,5,866,0,0,7557,7560, - 3,716,358,0,7558,7560,3,804,402,0,7559,7557,1,0,0,0,7559,7558,1, - 0,0,0,7560,7561,1,0,0,0,7561,7564,5,68,0,0,7562,7565,3,716,358,0, - 7563,7565,3,804,402,0,7564,7562,1,0,0,0,7564,7563,1,0,0,0,7565,7566, - 1,0,0,0,7566,7567,5,867,0,0,7567,7622,1,0,0,0,7568,7569,5,840,0, - 0,7569,7572,5,866,0,0,7570,7573,3,716,358,0,7571,7573,3,804,402, - 0,7572,7570,1,0,0,0,7572,7571,1,0,0,0,7573,7580,1,0,0,0,7574,7575, - 5,13,0,0,7575,7576,7,136,0,0,7576,7577,5,866,0,0,7577,7578,3,712, - 356,0,7578,7579,5,867,0,0,7579,7581,1,0,0,0,7580,7574,1,0,0,0,7580, - 7581,1,0,0,0,7581,7583,1,0,0,0,7582,7584,3,770,385,0,7583,7582,1, - 0,0,0,7583,7584,1,0,0,0,7584,7585,1,0,0,0,7585,7586,5,867,0,0,7586, - 7622,1,0,0,0,7587,7588,5,293,0,0,7588,7589,5,866,0,0,7589,7590,3, - 70,35,0,7590,7593,5,68,0,0,7591,7594,3,716,358,0,7592,7594,3,804, - 402,0,7593,7591,1,0,0,0,7593,7592,1,0,0,0,7594,7595,1,0,0,0,7595, - 7596,5,867,0,0,7596,7622,1,0,0,0,7597,7598,5,827,0,0,7598,7599,5, - 866,0,0,7599,7600,7,137,0,0,7600,7601,5,868,0,0,7601,7602,3,716, - 358,0,7602,7603,5,867,0,0,7603,7622,1,0,0,0,7604,7605,5,254,0,0, - 7605,7606,5,866,0,0,7606,7607,3,804,402,0,7607,7608,5,868,0,0,7608, - 7611,3,804,402,0,7609,7610,5,579,0,0,7610,7612,3,730,365,0,7611, - 7609,1,0,0,0,7611,7612,1,0,0,0,7612,7614,1,0,0,0,7613,7615,3,292, - 146,0,7614,7613,1,0,0,0,7614,7615,1,0,0,0,7615,7617,1,0,0,0,7616, - 7618,3,294,147,0,7617,7616,1,0,0,0,7617,7618,1,0,0,0,7618,7619,1, - 0,0,0,7619,7620,5,867,0,0,7620,7622,1,0,0,0,7621,7442,1,0,0,0,7621, - 7447,1,0,0,0,7621,7448,1,0,0,0,7621,7455,1,0,0,0,7621,7462,1,0,0, - 0,7621,7469,1,0,0,0,7621,7474,1,0,0,0,7621,7486,1,0,0,0,7621,7499, - 1,0,0,0,7621,7508,1,0,0,0,7621,7521,1,0,0,0,7621,7541,1,0,0,0,7621, - 7555,1,0,0,0,7621,7568,1,0,0,0,7621,7587,1,0,0,0,7621,7597,1,0,0, - 0,7621,7604,1,0,0,0,7622,767,1,0,0,0,7623,7624,5,191,0,0,7624,7625, - 3,802,401,0,7625,7626,5,175,0,0,7626,7627,3,802,401,0,7627,769,1, - 0,0,0,7628,7629,5,448,0,0,7629,7634,3,772,386,0,7630,7631,5,868, - 0,0,7631,7633,3,772,386,0,7632,7630,1,0,0,0,7633,7636,1,0,0,0,7634, - 7632,1,0,0,0,7634,7635,1,0,0,0,7635,7643,1,0,0,0,7636,7634,1,0,0, - 0,7637,7638,5,448,0,0,7638,7639,3,712,356,0,7639,7640,5,854,0,0, - 7640,7641,3,712,356,0,7641,7643,1,0,0,0,7642,7628,1,0,0,0,7642,7637, - 1,0,0,0,7643,771,1,0,0,0,7644,7646,3,712,356,0,7645,7647,7,138,0, - 0,7646,7645,1,0,0,0,7646,7647,1,0,0,0,7647,773,1,0,0,0,7648,7649, - 7,139,0,0,7649,7651,5,866,0,0,7650,7652,7,45,0,0,7651,7650,1,0,0, - 0,7651,7652,1,0,0,0,7652,7653,1,0,0,0,7653,7654,3,802,401,0,7654, - 7656,5,867,0,0,7655,7657,3,778,389,0,7656,7655,1,0,0,0,7656,7657, - 1,0,0,0,7657,7708,1,0,0,0,7658,7659,5,262,0,0,7659,7667,5,866,0, - 0,7660,7668,5,850,0,0,7661,7663,5,7,0,0,7662,7661,1,0,0,0,7662,7663, - 1,0,0,0,7663,7664,1,0,0,0,7664,7668,3,802,401,0,7665,7666,5,49,0, - 0,7666,7668,3,800,400,0,7667,7660,1,0,0,0,7667,7662,1,0,0,0,7667, - 7665,1,0,0,0,7668,7669,1,0,0,0,7669,7671,5,867,0,0,7670,7672,3,778, - 389,0,7671,7670,1,0,0,0,7671,7672,1,0,0,0,7672,7708,1,0,0,0,7673, - 7674,7,140,0,0,7674,7676,5,866,0,0,7675,7677,5,7,0,0,7676,7675,1, - 0,0,0,7676,7677,1,0,0,0,7677,7678,1,0,0,0,7678,7679,3,802,401,0, - 7679,7681,5,867,0,0,7680,7682,3,778,389,0,7681,7680,1,0,0,0,7681, - 7682,1,0,0,0,7682,7708,1,0,0,0,7683,7684,5,266,0,0,7684,7686,5,866, - 0,0,7685,7687,5,49,0,0,7686,7685,1,0,0,0,7686,7687,1,0,0,0,7687, - 7688,1,0,0,0,7688,7699,3,800,400,0,7689,7690,5,125,0,0,7690,7691, - 5,20,0,0,7691,7696,3,260,130,0,7692,7693,5,868,0,0,7693,7695,3,260, - 130,0,7694,7692,1,0,0,0,7695,7698,1,0,0,0,7696,7694,1,0,0,0,7696, - 7697,1,0,0,0,7697,7700,1,0,0,0,7698,7696,1,0,0,0,7699,7689,1,0,0, - 0,7699,7700,1,0,0,0,7700,7703,1,0,0,0,7701,7702,5,156,0,0,7702,7704, - 5,882,0,0,7703,7701,1,0,0,0,7703,7704,1,0,0,0,7704,7705,1,0,0,0, - 7705,7706,5,867,0,0,7706,7708,1,0,0,0,7707,7648,1,0,0,0,7707,7658, - 1,0,0,0,7707,7673,1,0,0,0,7707,7683,1,0,0,0,7708,775,1,0,0,0,7709, - 7710,7,141,0,0,7710,7711,5,866,0,0,7711,7714,3,804,402,0,7712,7713, - 5,868,0,0,7713,7715,3,712,356,0,7714,7712,1,0,0,0,7714,7715,1,0, - 0,0,7715,7718,1,0,0,0,7716,7717,5,868,0,0,7717,7719,3,712,356,0, - 7718,7716,1,0,0,0,7718,7719,1,0,0,0,7719,7720,1,0,0,0,7720,7721, - 5,867,0,0,7721,7722,3,778,389,0,7722,7748,1,0,0,0,7723,7724,7,142, - 0,0,7724,7725,5,866,0,0,7725,7726,3,804,402,0,7726,7727,5,867,0, - 0,7727,7728,3,778,389,0,7728,7748,1,0,0,0,7729,7730,7,143,0,0,7730, - 7731,5,866,0,0,7731,7732,5,867,0,0,7732,7748,3,778,389,0,7733,7734, - 5,273,0,0,7734,7735,5,866,0,0,7735,7736,3,804,402,0,7736,7737,5, - 868,0,0,7737,7738,3,712,356,0,7738,7739,5,867,0,0,7739,7740,3,778, - 389,0,7740,7748,1,0,0,0,7741,7742,5,272,0,0,7742,7743,5,866,0,0, - 7743,7744,3,712,356,0,7744,7745,5,867,0,0,7745,7746,3,778,389,0, - 7746,7748,1,0,0,0,7747,7709,1,0,0,0,7747,7723,1,0,0,0,7747,7729, - 1,0,0,0,7747,7733,1,0,0,0,7747,7741,1,0,0,0,7748,777,1,0,0,0,7749, - 7755,5,129,0,0,7750,7751,5,866,0,0,7751,7752,3,780,390,0,7752,7753, - 5,867,0,0,7753,7756,1,0,0,0,7754,7756,3,782,391,0,7755,7750,1,0, - 0,0,7755,7754,1,0,0,0,7756,779,1,0,0,0,7757,7759,3,782,391,0,7758, - 7757,1,0,0,0,7758,7759,1,0,0,0,7759,7761,1,0,0,0,7760,7762,3,794, - 397,0,7761,7760,1,0,0,0,7761,7762,1,0,0,0,7762,7764,1,0,0,0,7763, - 7765,3,258,129,0,7764,7763,1,0,0,0,7764,7765,1,0,0,0,7765,7767,1, - 0,0,0,7766,7768,3,784,392,0,7767,7766,1,0,0,0,7767,7768,1,0,0,0, - 7768,781,1,0,0,0,7769,7770,3,706,353,0,7770,783,1,0,0,0,7771,7772, - 3,786,393,0,7772,7773,3,788,394,0,7773,785,1,0,0,0,7774,7775,7,144, - 0,0,7775,787,1,0,0,0,7776,7779,3,792,396,0,7777,7779,3,790,395,0, - 7778,7776,1,0,0,0,7778,7777,1,0,0,0,7779,789,1,0,0,0,7780,7781,5, - 17,0,0,7781,7782,3,792,396,0,7782,7783,5,11,0,0,7783,7784,3,792, - 396,0,7784,791,1,0,0,0,7785,7786,5,36,0,0,7786,7793,5,586,0,0,7787, - 7788,5,669,0,0,7788,7793,7,145,0,0,7789,7790,3,804,402,0,7790,7791, - 7,145,0,0,7791,7793,1,0,0,0,7792,7785,1,0,0,0,7792,7787,1,0,0,0, - 7792,7789,1,0,0,0,7793,793,1,0,0,0,7794,7795,5,130,0,0,7795,7796, - 5,20,0,0,7796,7801,3,804,402,0,7797,7798,5,868,0,0,7798,7800,3,804, - 402,0,7799,7797,1,0,0,0,7800,7803,1,0,0,0,7801,7799,1,0,0,0,7801, - 7802,1,0,0,0,7802,795,1,0,0,0,7803,7801,1,0,0,0,7804,7829,3,836, - 418,0,7805,7829,5,757,0,0,7806,7829,5,289,0,0,7807,7829,5,285,0, - 0,7808,7829,5,286,0,0,7809,7829,5,287,0,0,7810,7829,5,290,0,0,7811, - 7829,5,291,0,0,7812,7829,5,292,0,0,7813,7829,5,78,0,0,7814,7829, - 5,86,0,0,7815,7829,5,288,0,0,7816,7829,5,294,0,0,7817,7829,5,488, - 0,0,7818,7829,5,295,0,0,7819,7829,5,142,0,0,7820,7829,5,143,0,0, - 7821,7829,5,297,0,0,7822,7829,5,298,0,0,7823,7829,5,299,0,0,7824, - 7829,5,300,0,0,7825,7829,5,301,0,0,7826,7829,5,302,0,0,7827,7829, - 5,303,0,0,7828,7804,1,0,0,0,7828,7805,1,0,0,0,7828,7806,1,0,0,0, - 7828,7807,1,0,0,0,7828,7808,1,0,0,0,7828,7809,1,0,0,0,7828,7810, - 1,0,0,0,7828,7811,1,0,0,0,7828,7812,1,0,0,0,7828,7813,1,0,0,0,7828, - 7814,1,0,0,0,7828,7815,1,0,0,0,7828,7816,1,0,0,0,7828,7817,1,0,0, - 0,7828,7818,1,0,0,0,7828,7819,1,0,0,0,7828,7820,1,0,0,0,7828,7821, - 1,0,0,0,7828,7822,1,0,0,0,7828,7823,1,0,0,0,7828,7824,1,0,0,0,7828, - 7825,1,0,0,0,7828,7826,1,0,0,0,7828,7827,1,0,0,0,7829,797,1,0,0, - 0,7830,7831,7,146,0,0,7831,7832,5,866,0,0,7832,7833,3,802,401,0, - 7833,7834,5,867,0,0,7834,799,1,0,0,0,7835,7840,3,802,401,0,7836, - 7837,5,868,0,0,7837,7839,3,802,401,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,801,1,0,0,0,7842, - 7840,1,0,0,0,7843,7847,3,724,362,0,7844,7847,3,764,382,0,7845,7847, - 3,804,402,0,7846,7843,1,0,0,0,7846,7844,1,0,0,0,7846,7845,1,0,0, - 0,7847,803,1,0,0,0,7848,7849,6,402,-1,0,7849,7850,7,147,0,0,7850, - 7860,3,804,402,4,7851,7852,3,806,403,0,7852,7854,5,89,0,0,7853,7855, - 5,114,0,0,7854,7853,1,0,0,0,7854,7855,1,0,0,0,7855,7856,1,0,0,0, - 7856,7857,7,148,0,0,7857,7860,1,0,0,0,7858,7860,3,806,403,0,7859, - 7848,1,0,0,0,7859,7851,1,0,0,0,7859,7858,1,0,0,0,7860,7867,1,0,0, - 0,7861,7862,10,3,0,0,7862,7863,3,816,408,0,7863,7864,3,804,402,4, - 7864,7866,1,0,0,0,7865,7861,1,0,0,0,7866,7869,1,0,0,0,7867,7865, - 1,0,0,0,7867,7868,1,0,0,0,7868,805,1,0,0,0,7869,7867,1,0,0,0,7870, - 7871,6,403,-1,0,7871,7872,3,808,404,0,7872,7936,1,0,0,0,7873,7875, - 10,6,0,0,7874,7876,5,114,0,0,7875,7874,1,0,0,0,7875,7876,1,0,0,0, - 7876,7877,1,0,0,0,7877,7878,5,17,0,0,7878,7879,3,806,403,0,7879, - 7880,5,11,0,0,7880,7881,3,806,403,7,7881,7935,1,0,0,0,7882,7883, - 10,5,0,0,7883,7884,5,604,0,0,7884,7885,5,99,0,0,7885,7935,3,806, - 403,6,7886,7888,10,3,0,0,7887,7889,5,114,0,0,7888,7887,1,0,0,0,7888, - 7889,1,0,0,0,7889,7890,1,0,0,0,7890,7891,7,149,0,0,7891,7935,3,806, - 403,4,7892,7894,10,9,0,0,7893,7895,5,114,0,0,7894,7893,1,0,0,0,7894, - 7895,1,0,0,0,7895,7896,1,0,0,0,7896,7897,5,80,0,0,7897,7900,5,866, - 0,0,7898,7901,3,210,105,0,7899,7901,3,740,370,0,7900,7898,1,0,0, - 0,7900,7899,1,0,0,0,7901,7902,1,0,0,0,7902,7903,5,867,0,0,7903,7935, - 1,0,0,0,7904,7905,10,8,0,0,7905,7906,5,89,0,0,7906,7935,3,722,361, - 0,7907,7908,10,7,0,0,7908,7915,3,812,406,0,7909,7910,7,150,0,0,7910, - 7911,5,866,0,0,7911,7912,3,210,105,0,7912,7913,5,867,0,0,7913,7916, - 1,0,0,0,7914,7916,3,806,403,0,7915,7909,1,0,0,0,7915,7914,1,0,0, - 0,7916,7935,1,0,0,0,7917,7919,10,4,0,0,7918,7920,5,114,0,0,7919, - 7918,1,0,0,0,7919,7920,1,0,0,0,7920,7921,1,0,0,0,7921,7922,5,99, - 0,0,7922,7925,3,806,403,0,7923,7924,5,384,0,0,7924,7926,5,882,0, - 0,7925,7923,1,0,0,0,7925,7926,1,0,0,0,7926,7935,1,0,0,0,7927,7928, - 10,2,0,0,7928,7929,5,485,0,0,7929,7930,5,510,0,0,7930,7931,5,866, - 0,0,7931,7932,3,806,403,0,7932,7933,5,867,0,0,7933,7935,1,0,0,0, - 7934,7873,1,0,0,0,7934,7882,1,0,0,0,7934,7886,1,0,0,0,7934,7892, - 1,0,0,0,7934,7904,1,0,0,0,7934,7907,1,0,0,0,7934,7917,1,0,0,0,7934, - 7927,1,0,0,0,7935,7938,1,0,0,0,7936,7934,1,0,0,0,7936,7937,1,0,0, - 0,7937,807,1,0,0,0,7938,7936,1,0,0,0,7939,7940,6,404,-1,0,7940,7988, - 3,724,362,0,7941,7988,3,764,382,0,7942,7988,3,686,343,0,7943,7944, - 3,810,405,0,7944,7945,3,808,404,12,7945,7988,1,0,0,0,7946,7947,5, - 228,0,0,7947,7988,3,808,404,11,7948,7949,5,892,0,0,7949,7950,5,841, - 0,0,7950,7988,3,808,404,10,7951,7952,5,866,0,0,7952,7957,3,804,402, - 0,7953,7954,5,868,0,0,7954,7956,3,804,402,0,7955,7953,1,0,0,0,7956, - 7959,1,0,0,0,7957,7955,1,0,0,0,7957,7958,1,0,0,0,7958,7960,1,0,0, - 0,7959,7957,1,0,0,0,7960,7961,5,867,0,0,7961,7988,1,0,0,0,7962,7963, - 5,586,0,0,7963,7964,5,866,0,0,7964,7967,3,804,402,0,7965,7966,5, - 868,0,0,7966,7968,3,804,402,0,7967,7965,1,0,0,0,7968,7969,1,0,0, - 0,7969,7967,1,0,0,0,7969,7970,1,0,0,0,7970,7971,1,0,0,0,7971,7972, - 5,867,0,0,7972,7988,1,0,0,0,7973,7974,5,60,0,0,7974,7975,5,866,0, - 0,7975,7976,3,210,105,0,7976,7977,5,867,0,0,7977,7988,1,0,0,0,7978, - 7979,5,866,0,0,7979,7980,3,210,105,0,7980,7981,5,867,0,0,7981,7988, - 1,0,0,0,7982,7983,5,87,0,0,7983,7984,3,804,402,0,7984,7985,3,70, - 35,0,7985,7988,1,0,0,0,7986,7988,3,662,331,0,7987,7939,1,0,0,0,7987, - 7941,1,0,0,0,7987,7942,1,0,0,0,7987,7943,1,0,0,0,7987,7946,1,0,0, - 0,7987,7948,1,0,0,0,7987,7951,1,0,0,0,7987,7962,1,0,0,0,7987,7973, - 1,0,0,0,7987,7978,1,0,0,0,7987,7982,1,0,0,0,7987,7986,1,0,0,0,7988, - 8006,1,0,0,0,7989,7990,10,4,0,0,7990,7991,3,822,411,0,7991,7992, - 3,808,404,5,7992,8005,1,0,0,0,7993,7994,10,3,0,0,7994,7995,3,818, - 409,0,7995,7996,3,808,404,4,7996,8005,1,0,0,0,7997,7998,10,2,0,0, - 7998,7999,3,820,410,0,7999,8000,3,808,404,3,8000,8005,1,0,0,0,8001, - 8002,10,14,0,0,8002,8003,5,28,0,0,8003,8005,3,690,345,0,8004,7989, - 1,0,0,0,8004,7993,1,0,0,0,8004,7997,1,0,0,0,8004,8001,1,0,0,0,8005, - 8008,1,0,0,0,8006,8004,1,0,0,0,8006,8007,1,0,0,0,8007,809,1,0,0, - 0,8008,8006,1,0,0,0,8009,8010,7,151,0,0,8010,811,1,0,0,0,8011,8012, - 5,859,0,0,8012,8020,5,858,0,0,8013,8014,5,860,0,0,8014,8020,5,857, - 0,0,8015,8016,5,859,0,0,8016,8017,5,857,0,0,8017,8020,5,858,0,0, - 8018,8020,3,814,407,0,8019,8011,1,0,0,0,8019,8013,1,0,0,0,8019,8015, - 1,0,0,0,8019,8018,1,0,0,0,8020,813,1,0,0,0,8021,8022,5,859,0,0,8022, - 8029,5,857,0,0,8023,8024,5,858,0,0,8024,8029,5,857,0,0,8025,8029, - 5,857,0,0,8026,8029,5,858,0,0,8027,8029,5,859,0,0,8028,8021,1,0, - 0,0,8028,8023,1,0,0,0,8028,8025,1,0,0,0,8028,8026,1,0,0,0,8028,8027, - 1,0,0,0,8029,815,1,0,0,0,8030,8038,5,11,0,0,8031,8032,5,863,0,0, - 8032,8038,5,863,0,0,8033,8038,5,196,0,0,8034,8038,5,124,0,0,8035, - 8036,5,862,0,0,8036,8038,5,862,0,0,8037,8030,1,0,0,0,8037,8031,1, - 0,0,0,8037,8033,1,0,0,0,8037,8034,1,0,0,0,8037,8035,1,0,0,0,8038, - 817,1,0,0,0,8039,8040,5,859,0,0,8040,8047,5,859,0,0,8041,8042,5, - 858,0,0,8042,8047,5,858,0,0,8043,8047,5,863,0,0,8044,8047,5,864, - 0,0,8045,8047,5,862,0,0,8046,8039,1,0,0,0,8046,8041,1,0,0,0,8046, - 8043,1,0,0,0,8046,8044,1,0,0,0,8046,8045,1,0,0,0,8047,819,1,0,0, - 0,8048,8049,7,152,0,0,8049,821,1,0,0,0,8050,8051,5,854,0,0,8051, - 8056,5,858,0,0,8052,8053,5,854,0,0,8053,8054,5,858,0,0,8054,8056, - 5,858,0,0,8055,8050,1,0,0,0,8055,8052,1,0,0,0,8056,823,1,0,0,0,8057, - 8058,7,153,0,0,8058,825,1,0,0,0,8059,8060,7,154,0,0,8060,827,1,0, - 0,0,8061,8062,7,155,0,0,8062,829,1,0,0,0,8063,8064,7,156,0,0,8064, - 831,1,0,0,0,8065,8066,7,157,0,0,8066,833,1,0,0,0,8067,8068,7,158, - 0,0,8068,835,1,0,0,0,8069,8070,7,159,0,0,8070,837,1,0,0,0,1163,841, - 848,851,860,904,923,934,950,955,967,1002,1012,1017,1023,1028,1032, - 1041,1044,1047,1051,1058,1061,1066,1074,1079,1084,1087,1089,1101, - 1104,1108,1111,1115,1118,1122,1125,1128,1132,1135,1139,1145,1149, - 1154,1160,1167,1174,1177,1181,1186,1192,1201,1206,1210,1214,1225, - 1243,1250,1254,1258,1262,1267,1270,1273,1276,1279,1285,1289,1299, - 1303,1307,1313,1318,1321,1324,1326,1330,1337,1341,1344,1349,1353, - 1356,1360,1363,1367,1380,1383,1387,1390,1394,1397,1401,1404,1408, - 1411,1414,1418,1421,1425,1431,1434,1438,1450,1456,1467,1472,1480, - 1484,1489,1492,1497,1507,1512,1517,1523,1528,1532,1534,1537,1541, - 1545,1548,1552,1556,1560,1566,1569,1576,1581,1587,1594,1600,1608, - 1611,1618,1621,1623,1629,1635,1652,1659,1666,1678,1683,1686,1689, - 1702,1715,1720,1736,1744,1754,1757,1763,1768,1771,1777,1781,1786, - 1792,1796,1800,1803,1806,1812,1816,1821,1832,1835,1842,1845,1849, - 1855,1867,1870,1875,1888,1895,1901,1906,1910,1913,1921,1929,1931, - 1941,1945,1948,1952,1957,1962,1967,1971,1975,1979,1983,1987,1991, - 1996,2001,2006,2012,2017,2022,2027,2032,2037,2043,2048,2053,2058, - 2063,2068,2073,2078,2085,2090,2095,2100,2104,2109,2117,2122,2128, - 2140,2147,2149,2157,2162,2165,2173,2179,2183,2196,2208,2210,2213, - 2221,2227,2233,2246,2253,2262,2267,2278,2287,2292,2304,2311,2320, - 2325,2337,2344,2353,2358,2365,2374,2379,2381,2386,2394,2403,2407, - 2410,2414,2419,2425,2431,2436,2441,2446,2451,2454,2459,2464,2474, - 2478,2485,2490,2493,2498,2501,2505,2509,2517,2536,2539,2542,2546, - 2556,2569,2582,2585,2591,2594,2598,2607,2610,2613,2618,2622,2625, - 2629,2633,2636,2640,2643,2647,2650,2656,2659,2664,2672,2678,2682, - 2686,2691,2696,2703,2707,2718,2726,2729,2735,2741,2744,2750,2756, - 2758,2763,2769,2775,2777,2781,2784,2787,2793,2799,2801,2806,2813, - 2822,2825,2829,2834,2844,2853,2861,2864,2872,2875,2882,2887,2895, - 2911,2916,2923,2942,2948,2958,2970,2977,2984,2999,3012,3018,3024, - 3030,3036,3042,3048,3053,3060,3067,3074,3079,3082,3084,3093,3100, - 3107,3114,3123,3129,3133,3137,3141,3147,3150,3155,3162,3169,3173, - 3178,3188,3196,3202,3211,3220,3229,3232,3236,3245,3249,3252,3255, - 3261,3264,3267,3271,3274,3277,3280,3291,3294,3299,3305,3310,3315, - 3318,3322,3327,3330,3335,3345,3350,3356,3358,3364,3366,3372,3380, - 3385,3393,3396,3401,3404,3409,3417,3423,3427,3429,3435,3443,3448, - 3456,3459,3464,3467,3471,3474,3477,3481,3484,3492,3498,3502,3508, - 3513,3517,3519,3525,3529,3532,3535,3538,3544,3549,3552,3555,3558, - 3561,3563,3566,3570,3573,3576,3584,3590,3593,3595,3604,3609,3616, - 3619,3622,3626,3630,3636,3640,3647,3651,3654,3657,3662,3669,3679, - 3688,3697,3707,3710,3714,3720,3724,3727,3730,3735,3738,3745,3749, - 3752,3756,3760,3763,3766,3771,3777,3781,3791,3797,3801,3807,3811, - 3817,3820,3832,3836,3840,3848,3852,3866,3871,3874,3878,3881,3889, - 3894,3897,3900,3904,3907,3916,3921,3930,3935,3942,3949,3957,3963, - 3971,3974,3977,3984,3987,3990,3997,4000,4004,4010,4020,4024,4033, - 4036,4040,4046,4054,4059,4063,4069,4075,4078,4080,4084,4093,4103, - 4109,4114,4118,4121,4124,4127,4130,4133,4136,4140,4144,4152,4156, - 4159,4161,4174,4177,4184,4194,4197,4202,4204,4208,4216,4222,4231, - 4244,4248,4254,4259,4263,4266,4270,4273,4281,4284,4286,4294,4306, - 4312,4314,4320,4322,4324,4330,4338,4346,4350,4354,4363,4368,4388, - 4393,4399,4406,4411,4420,4423,4427,4431,4435,4438,4441,4444,4448, - 4452,4455,4458,4461,4468,4472,4487,4500,4508,4518,4522,4525,4531, - 4534,4537,4546,4555,4565,4569,4579,4583,4594,4598,4607,4616,4619, - 4623,4628,4632,4641,4644,4647,4654,4660,4666,4692,4695,4698,4717, - 4719,4742,4745,4748,4767,4769,4783,4796,4833,4838,4873,4887,4894, - 4898,4904,4912,4914,4925,4935,4942,4948,4956,4961,4969,4977,4985, - 4993,4999,5004,5009,5014,5020,5022,5033,5038,5045,5047,5061,5067, - 5072,5077,5083,5090,5098,5106,5111,5117,5120,5128,5135,5144,5147, - 5164,5172,5180,5184,5191,5197,5205,5210,5217,5225,5232,5237,5240, - 5242,5248,5250,5254,5256,5261,5268,5273,5277,5282,5286,5292,5298, - 5303,5306,5308,5314,5316,5320,5322,5327,5332,5339,5348,5353,5362, - 5366,5372,5377,5380,5382,5388,5390,5393,5400,5402,5407,5414,5423, - 5429,5431,5438,5441,5453,5459,5467,5470,5474,5477,5481,5483,5494, - 5497,5501,5504,5507,5514,5526,5529,5536,5542,5552,5557,5564,5569, - 5575,5579,5583,5591,5595,5599,5605,5607,5619,5624,5630,5636,5640, - 5645,5647,5671,5675,5678,5687,5691,5700,5704,5708,5714,5716,5725, - 5735,5762,5766,5771,5778,5781,5787,5797,5807,5817,5823,5832,5838, - 5845,5847,5855,5861,5865,5882,5892,5896,5900,5910,5915,5987,6005, - 6013,6019,6031,6035,6046,6050,6059,6067,6074,6078,6085,6090,6093, - 6096,6107,6116,6125,6128,6142,6160,6173,6176,6180,6183,6185,6192, - 6199,6203,6210,6217,6220,6236,6239,6249,6253,6259,6262,6265,6270, - 6274,6277,6284,6287,6293,6329,6332,6344,6347,6363,6365,6369,6376, - 6380,6387,6390,6399,6402,6407,6413,6415,6421,6425,6431,6434,6437, - 6450,6453,6459,6462,6470,6478,6484,6487,6491,6505,6517,6525,6529, - 6536,6543,6548,6561,6570,6578,6583,6586,6591,6594,6606,6611,6624, - 6626,6631,6635,6638,6640,6647,6654,6657,6660,6666,6670,6676,6684, - 6693,6706,6711,6719,6722,6727,6732,6740,6743,6751,6755,6762,6768, - 6771,6775,6788,6794,6806,6809,6818,6823,6844,6860,6870,6875,6880, - 6882,6885,6889,6891,6898,6904,6906,6909,6913,6916,6929,6939,6942, - 6945,6958,6964,6967,6975,6982,7002,7009,7011,7018,7020,7024,7031, - 7037,7048,7054,7060,7063,7067,7072,7075,7079,7083,7085,7090,7095, - 7108,7111,7115,7118,7121,7126,7131,7137,7140,7145,7148,7153,7156, - 7160,7165,7170,7175,7180,7183,7188,7193,7198,7204,7209,7214,7219, - 7223,7226,7231,7235,7239,7247,7254,7258,7263,7268,7272,7274,7277, - 7293,7303,7313,7322,7331,7338,7345,7353,7361,7373,7380,7390,7395, - 7398,7403,7406,7428,7437,7440,7445,7478,7482,7491,7495,7504,7512, - 7517,7525,7530,7535,7537,7546,7551,7559,7564,7572,7580,7583,7593, - 7611,7614,7617,7621,7634,7642,7646,7651,7656,7662,7667,7671,7676, - 7681,7686,7696,7699,7703,7707,7714,7718,7747,7755,7758,7761,7764, - 7767,7778,7792,7801,7828,7840,7846,7854,7859,7867,7875,7888,7894, - 7900,7915,7919,7925,7934,7936,7957,7969,7987,8004,8006,8019,8028, - 8037,8046,8055 + 7842,8,403,1,404,1,404,1,404,1,404,1,404,1,405,1,405,1,405,5,405, + 7852,8,405,10,405,12,405,7855,9,405,1,406,1,406,1,406,3,406,7860, + 8,406,1,407,1,407,1,407,1,407,1,407,1,407,3,407,7868,8,407,1,407, + 1,407,1,407,3,407,7873,8,407,1,407,1,407,1,407,1,407,5,407,7879, + 8,407,10,407,12,407,7882,9,407,1,408,1,408,1,408,1,408,1,408,3,408, + 7889,8,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408, + 1,408,1,408,3,408,7902,8,408,1,408,1,408,1,408,1,408,3,408,7908, + 8,408,1,408,1,408,1,408,1,408,3,408,7914,8,408,1,408,1,408,1,408, + 1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,3,408, + 7929,8,408,1,408,1,408,3,408,7933,8,408,1,408,1,408,1,408,1,408, + 3,408,7939,8,408,1,408,1,408,1,408,1,408,1,408,1,408,1,408,5,408, + 7948,8,408,10,408,12,408,7951,9,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,1,409,1,409,1,409, + 5,409,7969,8,409,10,409,12,409,7972,9,409,1,409,1,409,1,409,1,409, + 1,409,1,409,1,409,4,409,7981,8,409,11,409,12,409,7982,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, + 1,409,1,409,1,409,3,409,8001,8,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,1,409,1,409,1,409,5,409, + 8018,8,409,10,409,12,409,8021,9,409,1,410,1,410,1,411,1,411,1,411, + 1,411,1,411,1,411,1,411,1,411,3,411,8033,8,411,1,412,1,412,1,412, + 1,412,1,412,1,412,1,412,3,412,8042,8,412,1,413,1,413,1,413,1,413, + 1,413,1,413,1,413,3,413,8051,8,413,1,414,1,414,1,414,1,414,1,414, + 1,414,1,414,3,414,8060,8,414,1,415,1,415,1,416,1,416,1,416,1,416, + 1,416,3,416,8069,8,416,1,417,1,417,1,418,1,418,1,419,1,419,1,420, + 1,420,1,421,1,421,1,422,1,422,1,423,1,423,1,423,0,5,214,216,814, + 816,818,424,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,0,160,2,0,39,39, + 152,152,2,0,508,508,514,514,3,0,69,69,161,161,182,182,3,0,42,42, + 357,357,430,430,4,0,42,42,389,389,505,505,595,595,4,0,208,208,210, + 210,216,216,649,649,2,0,494,494,882,882,2,0,79,79,143,143,2,0,16, + 16,306,306,3,0,44,44,86,86,185,185,2,0,406,406,538,538,3,0,486,486, + 661,661,670,670,2,0,364,364,436,436,2,0,325,325,450,450,2,0,42,42, + 871,872,2,0,37,37,678,678,2,0,323,323,418,418,2,0,435,435,686,686, + 3,0,80,80,85,85,126,126,2,0,82,82,92,92,2,0,69,69,161,161,3,0,42, + 42,374,374,403,403,3,0,42,42,370,370,802,802,2,0,648,648,685,685, + 3,0,408,408,526,526,597,597,2,0,329,329,522,522,1,0,871,872,2,0, + 882,882,889,889,2,0,82,82,360,360,2,0,523,523,882,882,2,0,524,524, + 882,882,3,0,402,402,445,445,502,502,7,0,42,42,342,342,345,345,374, + 374,403,403,554,554,889,889,2,0,494,494,506,506,1,0,872,873,2,0, + 6,6,51,51,2,0,5,5,81,81,2,0,27,27,31,31,4,0,42,42,357,357,430,430, + 434,434,2,0,368,368,375,375,2,0,369,369,425,425,2,0,13,13,176,176, + 2,0,194,194,690,690,2,0,22,22,146,146,3,0,43,43,76,76,107,107,2, + 0,7,7,49,49,2,0,107,107,347,347,2,0,337,337,398,398,2,0,102,102, + 587,587,2,0,43,43,107,107,3,0,59,59,181,181,828,828,2,0,185,185, + 594,594,2,0,159,159,503,503,4,0,402,402,445,445,501,501,542,542, + 2,0,402,402,501,501,2,0,14,14,45,45,3,0,66,66,79,79,187,187,2,0, + 35,35,84,84,2,0,98,98,150,150,2,0,7,7,49,50,1,0,637,638,2,0,173, + 173,752,752,2,0,413,413,593,593,2,0,228,228,453,453,2,0,563,563, + 598,598,8,0,108,108,455,455,459,460,462,462,464,464,467,476,499, + 499,557,557,6,0,456,458,461,461,463,463,465,465,477,477,558,558, + 7,0,109,109,411,411,416,416,454,454,466,466,573,573,617,617,2,0, + 116,116,882,882,2,0,118,119,507,507,7,0,499,499,557,557,606,609, + 611,611,619,619,622,628,630,632,6,0,558,558,610,610,612,612,614, + 616,618,618,620,620,7,0,412,412,416,416,573,573,613,613,617,617, + 621,621,629,629,3,0,70,70,118,119,507,507,2,0,438,438,639,639,2, + 0,633,633,635,635,2,0,317,317,640,640,2,0,91,91,577,577,2,0,51,51, + 362,362,3,0,32,32,61,61,180,180,2,0,15,15,340,340,2,0,678,678,835, + 835,3,0,132,132,173,173,409,409,3,0,6,6,51,51,492,492,3,0,13,13, + 20,20,188,188,2,0,42,42,122,122,2,0,104,104,183,183,1,0,873,874, + 2,0,333,333,598,598,2,0,40,40,684,684,2,0,392,392,549,549,2,0,115, + 115,450,450,3,0,413,413,531,531,893,894,2,0,841,841,857,857,2,0, + 318,318,559,559,2,0,68,68,80,80,3,0,132,132,178,178,385,385,2,0, + 493,493,645,645,2,0,383,383,688,688,3,0,82,82,93,93,426,426,4,0, + 413,413,450,450,531,532,593,593,2,0,645,645,683,683,2,0,349,349, + 548,548,6,0,228,228,380,380,382,382,410,410,556,556,599,599,2,0, + 45,46,62,62,3,0,442,442,663,663,666,666,10,0,332,332,339,339,351, + 353,359,359,487,487,495,495,650,650,657,657,822,822,832,832,2,0, + 36,36,170,170,2,0,117,117,831,831,11,0,332,332,339,339,351,353,359, + 359,487,487,495,495,578,578,650,650,657,657,822,822,832,832,2,0, + 870,870,891,892,1,0,892,893,2,0,348,348,797,808,3,0,871,874,883, + 883,885,885,2,0,63,63,179,179,2,0,116,116,886,886,5,0,26,26,224, + 226,233,233,235,238,498,498,2,0,26,26,224,224,2,0,26,26,224,225, + 1,0,198,209,3,0,184,184,197,197,596,596,2,0,213,218,403,403,6,0, + 219,219,230,230,232,232,234,234,241,241,321,322,4,0,220,223,228, + 229,231,231,319,319,2,0,155,155,239,239,2,0,442,442,813,821,2,0, + 228,228,498,498,5,0,202,202,208,208,219,220,222,222,442,442,1,0, + 216,217,2,0,184,184,596,596,2,0,202,202,208,208,2,0,189,189,682, + 682,2,0,287,288,294,294,3,0,152,152,285,288,303,303,1,0,297,298, + 3,0,18,18,96,96,177,177,2,0,224,224,228,228,2,0,219,220,222,222, + 3,0,14,14,45,45,830,830,3,0,258,258,270,271,281,281,3,0,259,261, + 277,280,282,284,2,0,267,267,269,269,2,0,265,265,268,268,2,0,263, + 264,274,276,2,0,134,134,587,587,2,0,405,405,539,539,2,0,512,512, + 529,529,2,0,114,114,860,860,3,0,63,63,179,179,674,674,2,0,139,139, + 151,151,3,0,7,7,309,309,602,602,3,0,114,114,853,854,860,861,1,0, + 850,856,2,0,228,228,756,796,1,0,809,812,5,0,717,718,734,736,743, + 743,749,750,752,752,1,0,696,703,3,0,219,223,236,236,239,239,75,0, + 12,12,15,15,19,19,30,30,36,37,42,42,48,48,55,55,57,57,59,59,74,74, + 95,95,117,117,122,122,125,125,131,131,160,160,170,170,241,241,255, + 262,266,266,270,271,277,284,304,309,311,329,331,343,345,376,378, + 393,395,400,402,404,406,410,413,415,417,426,428,428,430,434,436, + 454,456,463,465,473,475,476,478,498,500,506,508,510,512,522,525, + 530,533,538,540,542,544,554,556,562,565,572,575,575,577,605,633, + 647,649,665,667,674,676,685,687,688,690,695,704,704,706,707,709, + 712,714,716,719,721,726,727,729,733,737,738,740,742,744,744,746, + 748,751,751,753,755,802,802,822,822,825,825,832,833,838,838,24,0, + 39,39,98,98,150,150,152,152,219,221,223,223,253,254,262,265,267, + 269,272,276,296,296,435,435,686,686,696,703,746,746,813,813,816, + 821,823,824,826,827,829,831,834,834,836,836,840,840,856,856,9446, + 0,851,1,0,0,0,2,861,1,0,0,0,4,870,1,0,0,0,6,872,1,0,0,0,8,914,1, + 0,0,0,10,933,1,0,0,0,12,944,1,0,0,0,14,960,1,0,0,0,16,965,1,0,0, + 0,18,977,1,0,0,0,20,1012,1,0,0,0,22,1022,1,0,0,0,24,1024,1,0,0,0, + 26,1036,1,0,0,0,28,1066,1,0,0,0,30,1102,1,0,0,0,32,1153,1,0,0,0, + 34,1182,1,0,0,0,36,1218,1,0,0,0,38,1232,1,0,0,0,40,1239,1,0,0,0, + 42,1336,1,0,0,0,44,1338,1,0,0,0,46,1375,1,0,0,0,48,1439,1,0,0,0, + 50,1464,1,0,0,0,52,1470,1,0,0,0,54,1492,1,0,0,0,56,1579,1,0,0,0, + 58,1586,1,0,0,0,60,1588,1,0,0,0,62,1593,1,0,0,0,64,1633,1,0,0,0, + 66,1639,1,0,0,0,68,1641,1,0,0,0,70,1662,1,0,0,0,72,1669,1,0,0,0, + 74,1671,1,0,0,0,76,1696,1,0,0,0,78,1699,1,0,0,0,80,1704,1,0,0,0, + 82,1730,1,0,0,0,84,1746,1,0,0,0,86,1748,1,0,0,0,88,1842,1,0,0,0, + 90,1845,1,0,0,0,92,1857,1,0,0,0,94,1861,1,0,0,0,96,1911,1,0,0,0, + 98,1913,1,0,0,0,100,1941,1,0,0,0,102,1951,1,0,0,0,104,2138,1,0,0, + 0,106,2140,1,0,0,0,108,2142,1,0,0,0,110,2145,1,0,0,0,112,2220,1, + 0,0,0,114,2243,1,0,0,0,116,2391,1,0,0,0,118,2396,1,0,0,0,120,2398, + 1,0,0,0,122,2408,1,0,0,0,124,2464,1,0,0,0,126,2484,1,0,0,0,128,2486, + 1,0,0,0,130,2521,1,0,0,0,132,2530,1,0,0,0,134,2537,1,0,0,0,136,2560, + 1,0,0,0,138,2569,1,0,0,0,140,2584,1,0,0,0,142,2606,1,0,0,0,144,2662, + 1,0,0,0,146,2958,1,0,0,0,148,3058,1,0,0,0,150,3060,1,0,0,0,152,3067, + 1,0,0,0,154,3074,1,0,0,0,156,3097,1,0,0,0,158,3107,1,0,0,0,160,3114, + 1,0,0,0,162,3121,1,0,0,0,164,3128,1,0,0,0,166,3137,1,0,0,0,168,3149, + 1,0,0,0,170,3162,1,0,0,0,172,3169,1,0,0,0,174,3185,1,0,0,0,176,3212, + 1,0,0,0,178,3214,1,0,0,0,180,3224,1,0,0,0,182,3228,1,0,0,0,184,3234, + 1,0,0,0,186,3246,1,0,0,0,188,3248,1,0,0,0,190,3255,1,0,0,0,192,3257, + 1,0,0,0,194,3306,1,0,0,0,196,3315,1,0,0,0,198,3317,1,0,0,0,200,3328, + 1,0,0,0,202,3334,1,0,0,0,204,3408,1,0,0,0,206,3471,1,0,0,0,208,3489, + 1,0,0,0,210,3573,1,0,0,0,212,3576,1,0,0,0,214,3588,1,0,0,0,216,3608, + 1,0,0,0,218,3636,1,0,0,0,220,3640,1,0,0,0,222,3642,1,0,0,0,224,3652, + 1,0,0,0,226,3672,1,0,0,0,228,3679,1,0,0,0,230,3681,1,0,0,0,232,3692, + 1,0,0,0,234,3701,1,0,0,0,236,3707,1,0,0,0,238,3730,1,0,0,0,240,3732, + 1,0,0,0,242,3768,1,0,0,0,244,3823,1,0,0,0,246,3832,1,0,0,0,248,3852, + 1,0,0,0,250,3864,1,0,0,0,252,3868,1,0,0,0,254,3879,1,0,0,0,256,3912, + 1,0,0,0,258,3933,1,0,0,0,260,3943,1,0,0,0,262,3947,1,0,0,0,264,3973, + 1,0,0,0,266,4014,1,0,0,0,268,4021,1,0,0,0,270,4023,1,0,0,0,272,4027, + 1,0,0,0,274,4044,1,0,0,0,276,4095,1,0,0,0,278,4104,1,0,0,0,280,4114, + 1,0,0,0,282,4116,1,0,0,0,284,4149,1,0,0,0,286,4157,1,0,0,0,288,4174, + 1,0,0,0,290,4190,1,0,0,0,292,4227,1,0,0,0,294,4233,1,0,0,0,296,4242, + 1,0,0,0,298,4255,1,0,0,0,300,4259,1,0,0,0,302,4283,1,0,0,0,304,4285, + 1,0,0,0,306,4289,1,0,0,0,308,4291,1,0,0,0,310,4299,1,0,0,0,312,4337, + 1,0,0,0,314,4351,1,0,0,0,316,4359,1,0,0,0,318,4363,1,0,0,0,320,4369, + 1,0,0,0,322,4383,1,0,0,0,324,4386,1,0,0,0,326,4404,1,0,0,0,328,4408, + 1,0,0,0,330,4424,1,0,0,0,332,4426,1,0,0,0,334,4438,1,0,0,0,336,4442, + 1,0,0,0,338,4459,1,0,0,0,340,4476,1,0,0,0,342,4479,1,0,0,0,344,4489, + 1,0,0,0,346,4493,1,0,0,0,348,4503,1,0,0,0,350,4506,1,0,0,0,352,4511, + 1,0,0,0,354,4531,1,0,0,0,356,4533,1,0,0,0,358,4550,1,0,0,0,360,4559, + 1,0,0,0,362,4568,1,0,0,0,364,4570,1,0,0,0,366,4584,1,0,0,0,368,4598, + 1,0,0,0,370,4613,1,0,0,0,372,4622,1,0,0,0,374,4647,1,0,0,0,376,4662, + 1,0,0,0,378,4681,1,0,0,0,380,4711,1,0,0,0,382,4713,1,0,0,0,384,4715, + 1,0,0,0,386,4717,1,0,0,0,388,4732,1,0,0,0,390,4761,1,0,0,0,392,4763, + 1,0,0,0,394,4765,1,0,0,0,396,4767,1,0,0,0,398,4782,1,0,0,0,400,4784, + 1,0,0,0,402,4851,1,0,0,0,404,4853,1,0,0,0,406,4859,1,0,0,0,408,4886, + 1,0,0,0,410,4900,1,0,0,0,412,4911,1,0,0,0,414,4913,1,0,0,0,416,4919, + 1,0,0,0,418,4929,1,0,0,0,420,4933,1,0,0,0,422,4940,1,0,0,0,424,4944, + 1,0,0,0,426,4950,1,0,0,0,428,4957,1,0,0,0,430,4963,1,0,0,0,432,4969, + 1,0,0,0,434,4974,1,0,0,0,436,5019,1,0,0,0,438,5040,1,0,0,0,440,5065, + 1,0,0,0,442,5068,1,0,0,0,444,5074,1,0,0,0,446,5090,1,0,0,0,448,5105, + 1,0,0,0,450,5111,1,0,0,0,452,5141,1,0,0,0,454,5143,1,0,0,0,456,5150, + 1,0,0,0,458,5162,1,0,0,0,460,5168,1,0,0,0,462,5193,1,0,0,0,464,5197, + 1,0,0,0,466,5201,1,0,0,0,468,5212,1,0,0,0,470,5220,1,0,0,0,472,5283, + 1,0,0,0,474,5342,1,0,0,0,476,5444,1,0,0,0,478,5454,1,0,0,0,480,5456, + 1,0,0,0,482,5474,1,0,0,0,484,5498,1,0,0,0,486,5522,1,0,0,0,488,5529, + 1,0,0,0,490,5549,1,0,0,0,492,5558,1,0,0,0,494,5620,1,0,0,0,496,5622, + 1,0,0,0,498,5626,1,0,0,0,500,5660,1,0,0,0,502,5662,1,0,0,0,504,5665, + 1,0,0,0,506,5729,1,0,0,0,508,5748,1,0,0,0,510,5775,1,0,0,0,512,5779, + 1,0,0,0,514,5800,1,0,0,0,516,5810,1,0,0,0,518,5820,1,0,0,0,520,5860, + 1,0,0,0,522,5862,1,0,0,0,524,5865,1,0,0,0,526,5895,1,0,0,0,528,5897, + 1,0,0,0,530,5900,1,0,0,0,532,6000,1,0,0,0,534,6018,1,0,0,0,536,6020, + 1,0,0,0,538,6072,1,0,0,0,540,6074,1,0,0,0,542,6083,1,0,0,0,544,6089, + 1,0,0,0,546,6096,1,0,0,0,548,6111,1,0,0,0,550,6120,1,0,0,0,552,6122, + 1,0,0,0,554,6143,1,0,0,0,556,6148,1,0,0,0,558,6158,1,0,0,0,560,6164, + 1,0,0,0,562,6198,1,0,0,0,564,6252,1,0,0,0,566,6438,1,0,0,0,568,6450, + 1,0,0,0,570,6466,1,0,0,0,572,6472,1,0,0,0,574,6491,1,0,0,0,576,6504, + 1,0,0,0,578,6518,1,0,0,0,580,6520,1,0,0,0,582,6523,1,0,0,0,584,6547, + 1,0,0,0,586,6559,1,0,0,0,588,6565,1,0,0,0,590,6577,1,0,0,0,592,6591, + 1,0,0,0,594,6593,1,0,0,0,596,6601,1,0,0,0,598,6609,1,0,0,0,600,6611, + 1,0,0,0,602,6613,1,0,0,0,604,6653,1,0,0,0,606,6660,1,0,0,0,608,6662, + 1,0,0,0,610,6685,1,0,0,0,612,6691,1,0,0,0,614,6701,1,0,0,0,616,6710, + 1,0,0,0,618,6713,1,0,0,0,620,6716,1,0,0,0,622,6737,1,0,0,0,624,6758, + 1,0,0,0,626,6766,1,0,0,0,628,6778,1,0,0,0,630,6786,1,0,0,0,632,6824, + 1,0,0,0,634,6836,1,0,0,0,636,6838,1,0,0,0,638,6840,1,0,0,0,640,6842, + 1,0,0,0,642,6844,1,0,0,0,644,6846,1,0,0,0,646,6848,1,0,0,0,648,6850, + 1,0,0,0,650,6852,1,0,0,0,652,6860,1,0,0,0,654,6862,1,0,0,0,656,6864, + 1,0,0,0,658,6866,1,0,0,0,660,6868,1,0,0,0,662,6876,1,0,0,0,664,6878, + 1,0,0,0,666,6888,1,0,0,0,668,6904,1,0,0,0,670,6906,1,0,0,0,672,6929, + 1,0,0,0,674,6931,1,0,0,0,676,6933,1,0,0,0,678,6935,1,0,0,0,680,6937, + 1,0,0,0,682,6945,1,0,0,0,684,6955,1,0,0,0,686,6960,1,0,0,0,688,6964, + 1,0,0,0,690,6971,1,0,0,0,692,6973,1,0,0,0,694,6980,1,0,0,0,696,6982, + 1,0,0,0,698,6988,1,0,0,0,700,6990,1,0,0,0,702,6995,1,0,0,0,704,6997, + 1,0,0,0,706,6999,1,0,0,0,708,7017,1,0,0,0,710,7033,1,0,0,0,712,7035, + 1,0,0,0,714,7039,1,0,0,0,716,7050,1,0,0,0,718,7061,1,0,0,0,720,7067, + 1,0,0,0,722,7069,1,0,0,0,724,7073,1,0,0,0,726,7098,1,0,0,0,728,7100, + 1,0,0,0,730,7103,1,0,0,0,732,7108,1,0,0,0,734,7124,1,0,0,0,736,7252, + 1,0,0,0,738,7254,1,0,0,0,740,7287,1,0,0,0,742,7292,1,0,0,0,744,7296, + 1,0,0,0,746,7302,1,0,0,0,748,7310,1,0,0,0,750,7321,1,0,0,0,752,7329, + 1,0,0,0,754,7338,1,0,0,0,756,7351,1,0,0,0,758,7353,1,0,0,0,760,7361, + 1,0,0,0,762,7369,1,0,0,0,764,7403,1,0,0,0,766,7419,1,0,0,0,768,7421, + 1,0,0,0,770,7424,1,0,0,0,772,7428,1,0,0,0,774,7453,1,0,0,0,776,7634, + 1,0,0,0,778,7636,1,0,0,0,780,7655,1,0,0,0,782,7657,1,0,0,0,784,7720, + 1,0,0,0,786,7760,1,0,0,0,788,7762,1,0,0,0,790,7771,1,0,0,0,792,7782, + 1,0,0,0,794,7784,1,0,0,0,796,7787,1,0,0,0,798,7791,1,0,0,0,800,7793, + 1,0,0,0,802,7805,1,0,0,0,804,7807,1,0,0,0,806,7841,1,0,0,0,808,7843, + 1,0,0,0,810,7848,1,0,0,0,812,7859,1,0,0,0,814,7872,1,0,0,0,816,7883, + 1,0,0,0,818,8000,1,0,0,0,820,8022,1,0,0,0,822,8032,1,0,0,0,824,8041, + 1,0,0,0,826,8050,1,0,0,0,828,8059,1,0,0,0,830,8061,1,0,0,0,832,8068, + 1,0,0,0,834,8070,1,0,0,0,836,8072,1,0,0,0,838,8074,1,0,0,0,840,8076, + 1,0,0,0,842,8078,1,0,0,0,844,8080,1,0,0,0,846,8082,1,0,0,0,848,850, + 3,2,1,0,849,848,1,0,0,0,850,853,1,0,0,0,851,849,1,0,0,0,851,852, + 1,0,0,0,852,854,1,0,0,0,853,851,1,0,0,0,854,855,5,0,0,1,855,1,1, + 0,0,0,856,858,3,4,2,0,857,859,5,869,0,0,858,857,1,0,0,0,858,859, + 1,0,0,0,859,862,1,0,0,0,860,862,3,6,3,0,861,856,1,0,0,0,861,860, + 1,0,0,0,862,3,1,0,0,0,863,871,3,8,4,0,864,871,3,10,5,0,865,871,3, + 12,6,0,866,871,3,14,7,0,867,871,3,16,8,0,868,871,3,20,10,0,869,871, + 3,22,11,0,870,863,1,0,0,0,870,864,1,0,0,0,870,865,1,0,0,0,870,866, + 1,0,0,0,870,867,1,0,0,0,870,868,1,0,0,0,870,869,1,0,0,0,871,5,1, + 0,0,0,872,873,5,869,0,0,873,7,1,0,0,0,874,915,3,24,12,0,875,915, + 3,26,13,0,876,915,3,28,14,0,877,915,3,30,15,0,878,915,3,32,16,0, + 879,915,3,34,17,0,880,915,3,36,18,0,881,915,3,40,20,0,882,915,3, + 42,21,0,883,915,3,44,22,0,884,915,3,46,23,0,885,915,3,48,24,0,886, + 915,3,54,27,0,887,915,3,38,19,0,888,915,3,126,63,0,889,915,3,128, + 64,0,890,915,3,130,65,0,891,915,3,132,66,0,892,915,3,134,67,0,893, + 915,3,136,68,0,894,915,3,138,69,0,895,915,3,140,70,0,896,915,3,142, + 71,0,897,915,3,144,72,0,898,915,3,150,75,0,899,915,3,152,76,0,900, + 915,3,154,77,0,901,915,3,156,78,0,902,915,3,158,79,0,903,915,3,160, + 80,0,904,915,3,162,81,0,905,915,3,164,82,0,906,915,3,166,83,0,907, + 915,3,168,84,0,908,915,3,170,85,0,909,915,3,172,86,0,910,915,3,174, + 87,0,911,915,3,176,88,0,912,915,3,178,89,0,913,915,3,182,91,0,914, + 874,1,0,0,0,914,875,1,0,0,0,914,876,1,0,0,0,914,877,1,0,0,0,914, + 878,1,0,0,0,914,879,1,0,0,0,914,880,1,0,0,0,914,881,1,0,0,0,914, + 882,1,0,0,0,914,883,1,0,0,0,914,884,1,0,0,0,914,885,1,0,0,0,914, + 886,1,0,0,0,914,887,1,0,0,0,914,888,1,0,0,0,914,889,1,0,0,0,914, + 890,1,0,0,0,914,891,1,0,0,0,914,892,1,0,0,0,914,893,1,0,0,0,914, + 894,1,0,0,0,914,895,1,0,0,0,914,896,1,0,0,0,914,897,1,0,0,0,914, + 898,1,0,0,0,914,899,1,0,0,0,914,900,1,0,0,0,914,901,1,0,0,0,914, + 902,1,0,0,0,914,903,1,0,0,0,914,904,1,0,0,0,914,905,1,0,0,0,914, + 906,1,0,0,0,914,907,1,0,0,0,914,908,1,0,0,0,914,909,1,0,0,0,914, + 910,1,0,0,0,914,911,1,0,0,0,914,912,1,0,0,0,914,913,1,0,0,0,915, + 9,1,0,0,0,916,934,3,210,105,0,917,934,3,212,106,0,918,934,3,192, + 96,0,919,934,3,220,110,0,920,934,3,186,93,0,921,934,3,208,104,0, + 922,934,3,184,92,0,923,934,3,198,99,0,924,934,3,202,101,0,925,934, + 3,204,102,0,926,934,3,206,103,0,927,934,3,188,94,0,928,934,3,190, + 95,0,929,934,3,252,126,0,930,934,3,222,111,0,931,934,3,626,313,0, + 932,934,3,628,314,0,933,916,1,0,0,0,933,917,1,0,0,0,933,918,1,0, + 0,0,933,919,1,0,0,0,933,920,1,0,0,0,933,921,1,0,0,0,933,922,1,0, + 0,0,933,923,1,0,0,0,933,924,1,0,0,0,933,925,1,0,0,0,933,926,1,0, + 0,0,933,927,1,0,0,0,933,928,1,0,0,0,933,929,1,0,0,0,933,930,1,0, + 0,0,933,931,1,0,0,0,933,932,1,0,0,0,934,11,1,0,0,0,935,945,3,332, + 166,0,936,945,3,334,167,0,937,945,3,336,168,0,938,945,3,338,169, + 0,939,945,3,340,170,0,940,945,3,342,171,0,941,945,3,344,172,0,942, + 945,3,346,173,0,943,945,3,348,174,0,944,935,1,0,0,0,944,936,1,0, + 0,0,944,937,1,0,0,0,944,938,1,0,0,0,944,939,1,0,0,0,944,940,1,0, + 0,0,944,941,1,0,0,0,944,942,1,0,0,0,944,943,1,0,0,0,945,13,1,0,0, + 0,946,961,3,364,182,0,947,961,3,366,183,0,948,961,3,368,184,0,949, + 961,3,370,185,0,950,961,3,372,186,0,951,961,3,374,187,0,952,961, + 3,376,188,0,953,961,3,378,189,0,954,961,3,414,207,0,955,961,3,416, + 208,0,956,961,3,418,209,0,957,961,3,420,210,0,958,961,3,422,211, + 0,959,961,3,424,212,0,960,946,1,0,0,0,960,947,1,0,0,0,960,948,1, + 0,0,0,960,949,1,0,0,0,960,950,1,0,0,0,960,951,1,0,0,0,960,952,1, + 0,0,0,960,953,1,0,0,0,960,954,1,0,0,0,960,955,1,0,0,0,960,956,1, + 0,0,0,960,957,1,0,0,0,960,958,1,0,0,0,960,959,1,0,0,0,961,15,1,0, + 0,0,962,966,3,426,213,0,963,966,3,428,214,0,964,966,3,430,215,0, + 965,962,1,0,0,0,965,963,1,0,0,0,965,964,1,0,0,0,966,17,1,0,0,0,967, + 978,3,434,217,0,968,978,3,436,218,0,969,978,3,438,219,0,970,978, + 3,442,221,0,971,978,3,444,222,0,972,978,3,446,223,0,973,978,3,450, + 225,0,974,978,3,440,220,0,975,978,3,448,224,0,976,978,3,452,226, + 0,977,967,1,0,0,0,977,968,1,0,0,0,977,969,1,0,0,0,977,970,1,0,0, + 0,977,971,1,0,0,0,977,972,1,0,0,0,977,973,1,0,0,0,977,974,1,0,0, + 0,977,975,1,0,0,0,977,976,1,0,0,0,978,19,1,0,0,0,979,1013,3,470, + 235,0,980,1013,3,472,236,0,981,1013,3,474,237,0,982,1013,3,476,238, + 0,983,1013,3,480,240,0,984,1013,3,492,246,0,985,1013,3,494,247,0, + 986,1013,3,482,241,0,987,1013,3,484,242,0,988,1013,3,486,243,0,989, + 1013,3,488,244,0,990,1013,3,538,269,0,991,1013,3,540,270,0,992,1013, + 3,542,271,0,993,1013,3,544,272,0,994,1013,3,546,273,0,995,1013,3, + 552,276,0,996,1013,3,556,278,0,997,1013,3,558,279,0,998,1013,3,560, + 280,0,999,1013,3,562,281,0,1000,1013,3,564,282,0,1001,1013,3,566, + 283,0,1002,1013,3,580,290,0,1003,1013,3,582,291,0,1004,1013,3,584, + 292,0,1005,1013,3,586,293,0,1006,1013,3,588,294,0,1007,1013,3,590, + 295,0,1008,1013,3,594,297,0,1009,1013,3,596,298,0,1010,1013,3,598, + 299,0,1011,1013,3,600,300,0,1012,979,1,0,0,0,1012,980,1,0,0,0,1012, + 981,1,0,0,0,1012,982,1,0,0,0,1012,983,1,0,0,0,1012,984,1,0,0,0,1012, + 985,1,0,0,0,1012,986,1,0,0,0,1012,987,1,0,0,0,1012,988,1,0,0,0,1012, + 989,1,0,0,0,1012,990,1,0,0,0,1012,991,1,0,0,0,1012,992,1,0,0,0,1012, + 993,1,0,0,0,1012,994,1,0,0,0,1012,995,1,0,0,0,1012,996,1,0,0,0,1012, + 997,1,0,0,0,1012,998,1,0,0,0,1012,999,1,0,0,0,1012,1000,1,0,0,0, + 1012,1001,1,0,0,0,1012,1002,1,0,0,0,1012,1003,1,0,0,0,1012,1004, + 1,0,0,0,1012,1005,1,0,0,0,1012,1006,1,0,0,0,1012,1007,1,0,0,0,1012, + 1008,1,0,0,0,1012,1009,1,0,0,0,1012,1010,1,0,0,0,1012,1011,1,0,0, + 0,1013,21,1,0,0,0,1014,1023,3,612,306,0,1015,1023,3,610,305,0,1016, + 1023,3,614,307,0,1017,1023,3,616,308,0,1018,1023,3,618,309,0,1019, + 1023,3,620,310,0,1020,1023,3,622,311,0,1021,1023,3,630,315,0,1022, + 1014,1,0,0,0,1022,1015,1,0,0,0,1022,1016,1,0,0,0,1022,1017,1,0,0, + 0,1022,1018,1,0,0,0,1022,1019,1,0,0,0,1022,1020,1,0,0,0,1022,1021, + 1,0,0,0,1023,23,1,0,0,0,1024,1025,5,34,0,0,1025,1027,7,0,0,0,1026, + 1028,3,770,385,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,1029,1, + 0,0,0,1029,1033,3,636,318,0,1030,1032,3,56,28,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,25, + 1,0,0,0,1035,1033,1,0,0,0,1036,1038,5,34,0,0,1037,1039,3,62,31,0, + 1038,1037,1,0,0,0,1038,1039,1,0,0,0,1039,1040,1,0,0,0,1040,1042, + 5,385,0,0,1041,1043,3,770,385,0,1042,1041,1,0,0,0,1042,1043,1,0, + 0,0,1043,1044,1,0,0,0,1044,1045,3,712,356,0,1045,1046,5,119,0,0, + 1046,1047,5,590,0,0,1047,1054,3,64,32,0,1048,1049,5,119,0,0,1049, + 1051,5,343,0,0,1050,1052,5,114,0,0,1051,1050,1,0,0,0,1051,1052,1, + 0,0,0,1052,1053,1,0,0,0,1053,1055,5,541,0,0,1054,1048,1,0,0,0,1054, + 1055,1,0,0,0,1055,1057,1,0,0,0,1056,1058,3,72,36,0,1057,1056,1,0, + 0,0,1057,1058,1,0,0,0,1058,1061,1,0,0,0,1059,1060,5,340,0,0,1060, + 1062,5,882,0,0,1061,1059,1,0,0,0,1061,1062,1,0,0,0,1062,1063,1,0, + 0,0,1063,1064,5,371,0,0,1064,1065,3,432,216,0,1065,27,1,0,0,0,1066, + 1068,5,34,0,0,1067,1069,7,1,0,0,1068,1067,1,0,0,0,1068,1069,1,0, + 0,0,1069,1071,1,0,0,0,1070,1072,7,2,0,0,1071,1070,1,0,0,0,1071,1072, + 1,0,0,0,1072,1073,1,0,0,0,1073,1074,5,82,0,0,1074,1076,3,648,324, + 0,1075,1077,3,74,37,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077,1078, + 1,0,0,0,1078,1079,5,119,0,0,1079,1080,3,662,331,0,1080,1084,3,748, + 374,0,1081,1083,3,76,38,0,1082,1081,1,0,0,0,1083,1086,1,0,0,0,1084, + 1082,1,0,0,0,1084,1085,1,0,0,0,1085,1099,1,0,0,0,1086,1084,1,0,0, + 0,1087,1089,5,308,0,0,1088,1090,5,857,0,0,1089,1088,1,0,0,0,1089, + 1090,1,0,0,0,1090,1091,1,0,0,0,1091,1098,7,3,0,0,1092,1094,5,104, + 0,0,1093,1095,5,857,0,0,1094,1093,1,0,0,0,1094,1095,1,0,0,0,1095, + 1096,1,0,0,0,1096,1098,7,4,0,0,1097,1087,1,0,0,0,1097,1092,1,0,0, + 0,1098,1101,1,0,0,0,1099,1097,1,0,0,0,1099,1100,1,0,0,0,1100,29, + 1,0,0,0,1101,1099,1,0,0,0,1102,1103,5,34,0,0,1103,1104,5,451,0,0, + 1104,1105,5,74,0,0,1105,1106,3,716,358,0,1106,1107,5,6,0,0,1107, + 1108,5,671,0,0,1108,1114,5,882,0,0,1109,1111,5,428,0,0,1110,1112, + 5,857,0,0,1111,1110,1,0,0,0,1111,1112,1,0,0,0,1112,1113,1,0,0,0, + 1113,1115,3,724,362,0,1114,1109,1,0,0,0,1114,1115,1,0,0,0,1115,1121, + 1,0,0,0,1116,1118,5,672,0,0,1117,1119,5,857,0,0,1118,1117,1,0,0, + 0,1118,1119,1,0,0,0,1119,1120,1,0,0,0,1120,1122,3,724,362,0,1121, + 1116,1,0,0,0,1121,1122,1,0,0,0,1122,1128,1,0,0,0,1123,1125,5,553, + 0,0,1124,1126,5,857,0,0,1125,1124,1,0,0,0,1125,1126,1,0,0,0,1126, + 1127,1,0,0,0,1127,1129,3,724,362,0,1128,1123,1,0,0,0,1128,1129,1, + 0,0,0,1129,1135,1,0,0,0,1130,1132,5,504,0,0,1131,1133,5,857,0,0, + 1132,1131,1,0,0,0,1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1136, + 3,716,358,0,1135,1130,1,0,0,0,1135,1136,1,0,0,0,1136,1138,1,0,0, + 0,1137,1139,5,687,0,0,1138,1137,1,0,0,0,1138,1139,1,0,0,0,1139,1145, + 1,0,0,0,1140,1142,5,340,0,0,1141,1143,5,857,0,0,1142,1141,1,0,0, + 0,1142,1143,1,0,0,0,1143,1144,1,0,0,0,1144,1146,5,882,0,0,1145,1140, + 1,0,0,0,1145,1146,1,0,0,0,1146,1147,1,0,0,0,1147,1149,5,380,0,0, + 1148,1150,5,857,0,0,1149,1148,1,0,0,0,1149,1150,1,0,0,0,1150,1151, + 1,0,0,0,1151,1152,3,702,351,0,1152,31,1,0,0,0,1153,1155,5,34,0,0, + 1154,1156,3,62,31,0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156,1157, + 1,0,0,0,1157,1159,5,132,0,0,1158,1160,3,770,385,0,1159,1158,1,0, + 0,0,1159,1160,1,0,0,0,1160,1161,1,0,0,0,1161,1162,3,712,356,0,1162, + 1164,5,866,0,0,1163,1165,3,78,39,0,1164,1163,1,0,0,0,1164,1165,1, + 0,0,0,1165,1170,1,0,0,0,1166,1167,5,868,0,0,1167,1169,3,78,39,0, + 1168,1166,1,0,0,0,1169,1172,1,0,0,0,1170,1168,1,0,0,0,1170,1171, + 1,0,0,0,1171,1173,1,0,0,0,1172,1170,1,0,0,0,1173,1177,5,867,0,0, + 1174,1176,3,82,41,0,1175,1174,1,0,0,0,1176,1179,1,0,0,0,1177,1175, + 1,0,0,0,1177,1178,1,0,0,0,1178,1180,1,0,0,0,1179,1177,1,0,0,0,1180, + 1181,3,432,216,0,1181,33,1,0,0,0,1182,1184,5,34,0,0,1183,1185,3, + 62,31,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185,1187,1,0,0,0,1186, + 1188,5,307,0,0,1187,1186,1,0,0,0,1187,1188,1,0,0,0,1188,1189,1,0, + 0,0,1189,1191,5,409,0,0,1190,1192,3,770,385,0,1191,1190,1,0,0,0, + 1191,1192,1,0,0,0,1192,1193,1,0,0,0,1193,1194,3,640,320,0,1194,1196, + 5,866,0,0,1195,1197,3,80,40,0,1196,1195,1,0,0,0,1196,1197,1,0,0, + 0,1197,1202,1,0,0,0,1198,1199,5,868,0,0,1199,1201,3,80,40,0,1200, + 1198,1,0,0,0,1201,1204,1,0,0,0,1202,1200,1,0,0,0,1202,1203,1,0,0, + 0,1203,1205,1,0,0,0,1204,1202,1,0,0,0,1205,1206,5,867,0,0,1206,1207, + 5,580,0,0,1207,1211,3,736,368,0,1208,1210,3,82,41,0,1209,1208,1, + 0,0,0,1210,1213,1,0,0,0,1211,1209,1,0,0,0,1211,1212,1,0,0,0,1212, + 1216,1,0,0,0,1213,1211,1,0,0,0,1214,1217,3,432,216,0,1215,1217,3, + 448,224,0,1216,1214,1,0,0,0,1216,1215,1,0,0,0,1217,35,1,0,0,0,1218, + 1220,5,34,0,0,1219,1221,5,307,0,0,1220,1219,1,0,0,0,1220,1221,1, + 0,0,0,1221,1222,1,0,0,0,1222,1224,5,409,0,0,1223,1225,3,770,385, + 0,1224,1223,1,0,0,0,1224,1225,1,0,0,0,1225,1226,1,0,0,0,1226,1227, + 3,640,320,0,1227,1228,5,580,0,0,1228,1229,7,5,0,0,1229,1230,5,603, + 0,0,1230,1231,5,882,0,0,1231,37,1,0,0,0,1232,1233,5,34,0,0,1233, + 1235,5,582,0,0,1234,1236,3,770,385,0,1235,1234,1,0,0,0,1235,1236, + 1,0,0,0,1236,1237,1,0,0,0,1237,1238,3,664,332,0,1238,39,1,0,0,0, + 1239,1240,5,34,0,0,1240,1241,5,592,0,0,1241,1242,3,716,358,0,1242, + 1243,5,67,0,0,1243,1244,5,360,0,0,1244,1245,5,692,0,0,1245,1246, + 7,6,0,0,1246,1247,5,518,0,0,1247,1248,5,866,0,0,1248,1253,3,84,42, + 0,1249,1250,5,868,0,0,1250,1252,3,84,42,0,1251,1249,1,0,0,0,1252, + 1255,1,0,0,0,1253,1251,1,0,0,0,1253,1254,1,0,0,0,1254,1256,1,0,0, + 0,1255,1253,1,0,0,0,1256,1257,5,867,0,0,1257,41,1,0,0,0,1258,1260, + 5,34,0,0,1259,1261,5,660,0,0,1260,1259,1,0,0,0,1260,1261,1,0,0,0, + 1261,1262,1,0,0,0,1262,1264,5,173,0,0,1263,1265,3,770,385,0,1264, + 1263,1,0,0,0,1264,1265,1,0,0,0,1265,1266,1,0,0,0,1266,1268,3,658, + 329,0,1267,1269,3,86,43,0,1268,1267,1,0,0,0,1268,1269,1,0,0,0,1269, + 1280,1,0,0,0,1270,1277,3,104,52,0,1271,1273,5,868,0,0,1272,1271, + 1,0,0,0,1272,1273,1,0,0,0,1273,1274,1,0,0,0,1274,1276,3,104,52,0, + 1275,1272,1,0,0,0,1276,1279,1,0,0,0,1277,1275,1,0,0,0,1277,1278, + 1,0,0,0,1278,1281,1,0,0,0,1279,1277,1,0,0,0,1280,1270,1,0,0,0,1280, + 1281,1,0,0,0,1281,1283,1,0,0,0,1282,1284,3,110,55,0,1283,1282,1, + 0,0,0,1283,1284,1,0,0,0,1284,1286,1,0,0,0,1285,1287,7,7,0,0,1286, + 1285,1,0,0,0,1286,1287,1,0,0,0,1287,1289,1,0,0,0,1288,1290,5,13, + 0,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1291,1,0,0,0,1291,1292, + 3,210,105,0,1292,1337,1,0,0,0,1293,1295,5,34,0,0,1294,1296,5,660, + 0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297,1,0,0,0,1297,1299, + 5,173,0,0,1298,1300,3,770,385,0,1299,1298,1,0,0,0,1299,1300,1,0, + 0,0,1300,1301,1,0,0,0,1301,1309,3,658,329,0,1302,1303,5,99,0,0,1303, + 1310,3,662,331,0,1304,1305,5,866,0,0,1305,1306,5,99,0,0,1306,1307, + 3,662,331,0,1307,1308,5,867,0,0,1308,1310,1,0,0,0,1309,1302,1,0, + 0,0,1309,1304,1,0,0,0,1310,1337,1,0,0,0,1311,1313,5,34,0,0,1312, + 1314,5,660,0,0,1313,1312,1,0,0,0,1313,1314,1,0,0,0,1314,1315,1,0, + 0,0,1315,1317,5,173,0,0,1316,1318,3,770,385,0,1317,1316,1,0,0,0, + 1317,1318,1,0,0,0,1318,1319,1,0,0,0,1319,1320,3,658,329,0,1320,1331, + 3,86,43,0,1321,1328,3,104,52,0,1322,1324,5,868,0,0,1323,1322,1,0, + 0,0,1323,1324,1,0,0,0,1324,1325,1,0,0,0,1325,1327,3,104,52,0,1326, + 1323,1,0,0,0,1327,1330,1,0,0,0,1328,1326,1,0,0,0,1328,1329,1,0,0, + 0,1329,1332,1,0,0,0,1330,1328,1,0,0,0,1331,1321,1,0,0,0,1331,1332, + 1,0,0,0,1332,1334,1,0,0,0,1333,1335,3,110,55,0,1334,1333,1,0,0,0, + 1334,1335,1,0,0,0,1335,1337,1,0,0,0,1336,1258,1,0,0,0,1336,1293, + 1,0,0,0,1336,1311,1,0,0,0,1337,43,1,0,0,0,1338,1340,5,34,0,0,1339, + 1341,5,180,0,0,1340,1339,1,0,0,0,1340,1341,1,0,0,0,1341,1342,1,0, + 0,0,1342,1343,5,658,0,0,1343,1347,3,674,337,0,1344,1345,5,6,0,0, + 1345,1346,5,361,0,0,1346,1348,5,882,0,0,1347,1344,1,0,0,0,1347,1348, + 1,0,0,0,1348,1354,1,0,0,0,1349,1351,5,314,0,0,1350,1352,5,857,0, + 0,1351,1350,1,0,0,0,1351,1352,1,0,0,0,1352,1353,1,0,0,0,1353,1355, + 3,724,362,0,1354,1349,1,0,0,0,1354,1355,1,0,0,0,1355,1359,1,0,0, + 0,1356,1357,5,399,0,0,1357,1358,5,857,0,0,1358,1360,3,724,362,0, + 1359,1356,1,0,0,0,1359,1360,1,0,0,0,1360,1366,1,0,0,0,1361,1363, + 5,380,0,0,1362,1364,5,857,0,0,1363,1362,1,0,0,0,1363,1364,1,0,0, + 0,1364,1365,1,0,0,0,1365,1367,3,702,351,0,1366,1361,1,0,0,0,1366, + 1367,1,0,0,0,1367,1373,1,0,0,0,1368,1370,5,825,0,0,1369,1371,5,857, + 0,0,1370,1369,1,0,0,0,1370,1371,1,0,0,0,1371,1372,1,0,0,0,1372,1374, + 5,882,0,0,1373,1368,1,0,0,0,1373,1374,1,0,0,0,1374,45,1,0,0,0,1375, + 1377,5,34,0,0,1376,1378,5,180,0,0,1377,1376,1,0,0,0,1377,1378,1, + 0,0,0,1378,1379,1,0,0,0,1379,1380,5,658,0,0,1380,1381,3,674,337, + 0,1381,1382,5,6,0,0,1382,1383,5,361,0,0,1383,1384,5,882,0,0,1384, + 1385,5,187,0,0,1385,1386,5,451,0,0,1386,1387,5,74,0,0,1387,1393, + 3,716,358,0,1388,1390,5,393,0,0,1389,1391,5,857,0,0,1390,1389,1, + 0,0,0,1390,1391,1,0,0,0,1391,1392,1,0,0,0,1392,1394,3,724,362,0, + 1393,1388,1,0,0,0,1393,1394,1,0,0,0,1394,1400,1,0,0,0,1395,1397, + 5,428,0,0,1396,1398,5,857,0,0,1397,1396,1,0,0,0,1397,1398,1,0,0, + 0,1398,1399,1,0,0,0,1399,1401,3,724,362,0,1400,1395,1,0,0,0,1400, + 1401,1,0,0,0,1401,1407,1,0,0,0,1402,1404,5,314,0,0,1403,1405,5,857, + 0,0,1404,1403,1,0,0,0,1404,1405,1,0,0,0,1405,1406,1,0,0,0,1406,1408, + 3,724,362,0,1407,1402,1,0,0,0,1407,1408,1,0,0,0,1408,1414,1,0,0, + 0,1409,1411,5,481,0,0,1410,1412,5,857,0,0,1411,1410,1,0,0,0,1411, + 1412,1,0,0,0,1412,1413,1,0,0,0,1413,1415,3,724,362,0,1414,1409,1, + 0,0,0,1414,1415,1,0,0,0,1415,1421,1,0,0,0,1416,1418,5,504,0,0,1417, + 1419,5,857,0,0,1418,1417,1,0,0,0,1418,1419,1,0,0,0,1419,1420,1,0, + 0,0,1420,1422,3,716,358,0,1421,1416,1,0,0,0,1421,1422,1,0,0,0,1422, + 1424,1,0,0,0,1423,1425,5,687,0,0,1424,1423,1,0,0,0,1424,1425,1,0, + 0,0,1425,1431,1,0,0,0,1426,1428,5,340,0,0,1427,1429,5,857,0,0,1428, + 1427,1,0,0,0,1428,1429,1,0,0,0,1429,1430,1,0,0,0,1430,1432,5,882, + 0,0,1431,1426,1,0,0,0,1431,1432,1,0,0,0,1432,1433,1,0,0,0,1433,1435, + 5,380,0,0,1434,1436,5,857,0,0,1435,1434,1,0,0,0,1435,1436,1,0,0, + 0,1436,1437,1,0,0,0,1437,1438,3,702,351,0,1438,47,1,0,0,0,1439,1441, + 5,34,0,0,1440,1442,3,62,31,0,1441,1440,1,0,0,0,1441,1442,1,0,0,0, + 1442,1444,1,0,0,0,1443,1445,3,770,385,0,1444,1443,1,0,0,0,1444,1445, + 1,0,0,0,1445,1446,1,0,0,0,1446,1448,5,178,0,0,1447,1449,3,770,385, + 0,1448,1447,1,0,0,0,1448,1449,1,0,0,0,1449,1450,1,0,0,0,1450,1451, + 3,712,356,0,1451,1452,7,8,0,0,1452,1453,7,9,0,0,1453,1454,5,119, + 0,0,1454,1455,3,662,331,0,1455,1456,5,65,0,0,1456,1457,5,52,0,0, + 1457,1460,5,586,0,0,1458,1459,7,10,0,0,1459,1461,3,712,356,0,1460, + 1458,1,0,0,0,1460,1461,1,0,0,0,1461,1462,1,0,0,0,1462,1463,3,432, + 216,0,1463,49,1,0,0,0,1464,1466,5,194,0,0,1465,1467,5,552,0,0,1466, + 1465,1,0,0,0,1466,1467,1,0,0,0,1467,1468,1,0,0,0,1468,1469,3,52, + 26,0,1469,51,1,0,0,0,1470,1482,3,716,358,0,1471,1472,5,866,0,0,1472, + 1477,3,716,358,0,1473,1474,5,868,0,0,1474,1476,3,716,358,0,1475, + 1473,1,0,0,0,1476,1479,1,0,0,0,1477,1475,1,0,0,0,1477,1478,1,0,0, + 0,1478,1480,1,0,0,0,1479,1477,1,0,0,0,1480,1481,5,867,0,0,1481,1483, + 1,0,0,0,1482,1471,1,0,0,0,1482,1483,1,0,0,0,1483,1484,1,0,0,0,1484, + 1485,5,13,0,0,1485,1486,5,866,0,0,1486,1487,3,10,5,0,1487,1490,5, + 867,0,0,1488,1489,5,868,0,0,1489,1491,3,52,26,0,1490,1488,1,0,0, + 0,1490,1491,1,0,0,0,1491,53,1,0,0,0,1492,1494,5,34,0,0,1493,1495, + 3,772,386,0,1494,1493,1,0,0,0,1494,1495,1,0,0,0,1495,1499,1,0,0, + 0,1496,1497,5,308,0,0,1497,1498,5,857,0,0,1498,1500,7,11,0,0,1499, + 1496,1,0,0,0,1499,1500,1,0,0,0,1500,1502,1,0,0,0,1501,1503,3,62, + 31,0,1502,1501,1,0,0,0,1502,1503,1,0,0,0,1503,1507,1,0,0,0,1504, + 1505,5,162,0,0,1505,1506,5,591,0,0,1506,1508,7,12,0,0,1507,1504, + 1,0,0,0,1507,1508,1,0,0,0,1508,1509,1,0,0,0,1509,1510,5,684,0,0, + 1510,1522,3,644,322,0,1511,1512,5,866,0,0,1512,1517,3,668,334,0, + 1513,1514,5,868,0,0,1514,1516,3,668,334,0,1515,1513,1,0,0,0,1516, + 1519,1,0,0,0,1517,1515,1,0,0,0,1517,1518,1,0,0,0,1518,1520,1,0,0, + 0,1519,1517,1,0,0,0,1520,1521,5,867,0,0,1521,1523,1,0,0,0,1522,1511, + 1,0,0,0,1522,1523,1,0,0,0,1523,1524,1,0,0,0,1524,1544,5,13,0,0,1525, + 1527,5,866,0,0,1526,1528,3,50,25,0,1527,1526,1,0,0,0,1527,1528,1, + 0,0,0,1528,1529,1,0,0,0,1529,1530,3,210,105,0,1530,1531,5,867,0, + 0,1531,1545,1,0,0,0,1532,1534,3,50,25,0,1533,1532,1,0,0,0,1533,1534, + 1,0,0,0,1534,1535,1,0,0,0,1535,1542,3,210,105,0,1536,1538,5,194, + 0,0,1537,1539,7,13,0,0,1538,1537,1,0,0,0,1538,1539,1,0,0,0,1539, + 1540,1,0,0,0,1540,1541,5,27,0,0,1541,1543,5,121,0,0,1542,1536,1, + 0,0,0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1525,1,0,0,0,1544, + 1533,1,0,0,0,1545,55,1,0,0,0,1546,1548,5,42,0,0,1547,1546,1,0,0, + 0,1547,1548,1,0,0,0,1548,1549,1,0,0,0,1549,1551,3,58,29,0,1550,1552, + 5,857,0,0,1551,1550,1,0,0,0,1551,1552,1,0,0,0,1552,1555,1,0,0,0, + 1553,1556,3,698,349,0,1554,1556,5,42,0,0,1555,1553,1,0,0,0,1555, + 1554,1,0,0,0,1556,1580,1,0,0,0,1557,1559,5,42,0,0,1558,1557,1,0, + 0,0,1558,1559,1,0,0,0,1559,1560,1,0,0,0,1560,1562,5,28,0,0,1561, + 1563,5,857,0,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563,1564,1,0, + 0,0,1564,1580,3,700,350,0,1565,1567,5,42,0,0,1566,1565,1,0,0,0,1566, + 1567,1,0,0,0,1567,1568,1,0,0,0,1568,1570,5,376,0,0,1569,1571,5,857, + 0,0,1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1580, + 5,882,0,0,1573,1574,5,135,0,0,1574,1576,5,515,0,0,1575,1577,5,857, + 0,0,1576,1575,1,0,0,0,1576,1577,1,0,0,0,1577,1578,1,0,0,0,1578,1580, + 7,14,0,0,1579,1547,1,0,0,0,1579,1558,1,0,0,0,1579,1566,1,0,0,0,1579, + 1573,1,0,0,0,1580,57,1,0,0,0,1581,1582,5,26,0,0,1582,1587,5,155, + 0,0,1583,1587,5,823,0,0,1584,1585,5,224,0,0,1585,1587,5,155,0,0, + 1586,1581,1,0,0,0,1586,1583,1,0,0,0,1586,1584,1,0,0,0,1587,59,1, + 0,0,0,1588,1591,7,15,0,0,1589,1590,5,866,0,0,1590,1592,5,867,0,0, + 1591,1589,1,0,0,0,1591,1592,1,0,0,0,1592,61,1,0,0,0,1593,1594,5, + 364,0,0,1594,1597,5,857,0,0,1595,1598,3,694,347,0,1596,1598,3,60, + 30,0,1597,1595,1,0,0,0,1597,1596,1,0,0,0,1598,63,1,0,0,0,1599,1600, + 5,311,0,0,1600,1604,3,66,33,0,1601,1603,3,68,34,0,1602,1601,1,0, + 0,0,1603,1606,1,0,0,0,1604,1602,1,0,0,0,1604,1605,1,0,0,0,1605,1634, + 1,0,0,0,1606,1604,1,0,0,0,1607,1610,5,387,0,0,1608,1611,3,722,361, + 0,1609,1611,3,814,407,0,1610,1608,1,0,0,0,1610,1609,1,0,0,0,1611, + 1612,1,0,0,0,1612,1621,3,70,35,0,1613,1614,5,641,0,0,1614,1618,3, + 66,33,0,1615,1617,3,68,34,0,1616,1615,1,0,0,0,1617,1620,1,0,0,0, + 1618,1616,1,0,0,0,1618,1619,1,0,0,0,1619,1622,1,0,0,0,1620,1618, + 1,0,0,0,1621,1613,1,0,0,0,1621,1622,1,0,0,0,1622,1631,1,0,0,0,1623, + 1624,5,379,0,0,1624,1628,3,66,33,0,1625,1627,3,68,34,0,1626,1625, + 1,0,0,0,1627,1630,1,0,0,0,1628,1626,1,0,0,0,1628,1629,1,0,0,0,1629, + 1632,1,0,0,0,1630,1628,1,0,0,0,1631,1623,1,0,0,0,1631,1632,1,0,0, + 0,1632,1634,1,0,0,0,1633,1599,1,0,0,0,1633,1607,1,0,0,0,1634,65, + 1,0,0,0,1635,1640,5,287,0,0,1636,1640,3,726,363,0,1637,1640,3,722, + 361,0,1638,1640,3,814,407,0,1639,1635,1,0,0,0,1639,1636,1,0,0,0, + 1639,1637,1,0,0,0,1639,1638,1,0,0,0,1640,67,1,0,0,0,1641,1642,5, + 853,0,0,1642,1645,5,87,0,0,1643,1646,3,722,361,0,1644,1646,3,814, + 407,0,1645,1643,1,0,0,0,1645,1644,1,0,0,0,1646,1647,1,0,0,0,1647, + 1648,3,70,35,0,1648,69,1,0,0,0,1649,1663,3,840,420,0,1650,1663,5, + 223,0,0,1651,1663,5,242,0,0,1652,1663,5,243,0,0,1653,1663,5,244, + 0,0,1654,1663,5,245,0,0,1655,1663,5,246,0,0,1656,1663,5,247,0,0, + 1657,1663,5,248,0,0,1658,1663,5,249,0,0,1659,1663,5,250,0,0,1660, + 1663,5,251,0,0,1661,1663,5,252,0,0,1662,1649,1,0,0,0,1662,1650,1, + 0,0,0,1662,1651,1,0,0,0,1662,1652,1,0,0,0,1662,1653,1,0,0,0,1662, + 1654,1,0,0,0,1662,1655,1,0,0,0,1662,1656,1,0,0,0,1662,1657,1,0,0, + 0,1662,1658,1,0,0,0,1662,1659,1,0,0,0,1662,1660,1,0,0,0,1662,1661, + 1,0,0,0,1663,71,1,0,0,0,1664,1670,5,375,0,0,1665,1670,5,368,0,0, + 1666,1667,5,368,0,0,1667,1668,5,119,0,0,1668,1670,5,598,0,0,1669, + 1664,1,0,0,0,1669,1665,1,0,0,0,1669,1666,1,0,0,0,1670,73,1,0,0,0, + 1671,1672,5,188,0,0,1672,1673,7,16,0,0,1673,75,1,0,0,0,1674,1676, + 5,443,0,0,1675,1677,5,857,0,0,1676,1675,1,0,0,0,1676,1677,1,0,0, + 0,1677,1678,1,0,0,0,1678,1697,3,724,362,0,1679,1697,3,74,37,0,1680, + 1681,5,194,0,0,1681,1682,5,525,0,0,1682,1697,3,716,358,0,1683,1684, + 5,340,0,0,1684,1697,5,882,0,0,1685,1697,7,17,0,0,1686,1688,5,825, + 0,0,1687,1689,5,857,0,0,1688,1687,1,0,0,0,1688,1689,1,0,0,0,1689, + 1690,1,0,0,0,1690,1697,5,882,0,0,1691,1693,5,833,0,0,1692,1694,5, + 857,0,0,1693,1692,1,0,0,0,1693,1694,1,0,0,0,1694,1695,1,0,0,0,1695, + 1697,5,882,0,0,1696,1674,1,0,0,0,1696,1679,1,0,0,0,1696,1680,1,0, + 0,0,1696,1683,1,0,0,0,1696,1685,1,0,0,0,1696,1686,1,0,0,0,1696,1691, + 1,0,0,0,1697,77,1,0,0,0,1698,1700,7,18,0,0,1699,1698,1,0,0,0,1699, + 1700,1,0,0,0,1700,1701,1,0,0,0,1701,1702,3,716,358,0,1702,1703,3, + 736,368,0,1703,79,1,0,0,0,1704,1705,3,716,358,0,1705,1706,3,736, + 368,0,1706,81,1,0,0,0,1707,1708,5,340,0,0,1708,1731,5,882,0,0,1709, + 1710,5,444,0,0,1710,1731,5,162,0,0,1711,1713,5,114,0,0,1712,1711, + 1,0,0,0,1712,1713,1,0,0,0,1713,1714,1,0,0,0,1714,1731,5,47,0,0,1715, + 1716,5,354,0,0,1716,1726,5,162,0,0,1717,1718,5,502,0,0,1718,1726, + 5,162,0,0,1719,1720,5,136,0,0,1720,1721,5,162,0,0,1721,1726,5,360, + 0,0,1722,1723,5,112,0,0,1723,1724,5,162,0,0,1724,1726,5,360,0,0, + 1725,1715,1,0,0,0,1725,1717,1,0,0,0,1725,1719,1,0,0,0,1725,1722, + 1,0,0,0,1726,1731,1,0,0,0,1727,1728,5,162,0,0,1728,1729,5,591,0, + 0,1729,1731,7,12,0,0,1730,1707,1,0,0,0,1730,1709,1,0,0,0,1730,1712, + 1,0,0,0,1730,1725,1,0,0,0,1730,1727,1,0,0,0,1731,83,1,0,0,0,1732, + 1733,5,421,0,0,1733,1747,5,882,0,0,1734,1735,5,39,0,0,1735,1747, + 5,882,0,0,1736,1737,5,678,0,0,1737,1747,5,882,0,0,1738,1739,5,529, + 0,0,1739,1747,5,882,0,0,1740,1741,5,601,0,0,1741,1747,5,882,0,0, + 1742,1743,5,519,0,0,1743,1747,5,882,0,0,1744,1745,5,537,0,0,1745, + 1747,3,722,361,0,1746,1732,1,0,0,0,1746,1734,1,0,0,0,1746,1736,1, + 0,0,0,1746,1738,1,0,0,0,1746,1740,1,0,0,0,1746,1742,1,0,0,0,1746, + 1744,1,0,0,0,1747,85,1,0,0,0,1748,1749,5,866,0,0,1749,1754,3,88, + 44,0,1750,1751,5,868,0,0,1751,1753,3,88,44,0,1752,1750,1,0,0,0,1753, + 1756,1,0,0,0,1754,1752,1,0,0,0,1754,1755,1,0,0,0,1755,1757,1,0,0, + 0,1756,1754,1,0,0,0,1757,1758,5,867,0,0,1758,87,1,0,0,0,1759,1760, + 3,668,334,0,1760,1761,3,94,47,0,1761,1843,1,0,0,0,1762,1764,7,19, + 0,0,1763,1765,3,652,326,0,1764,1763,1,0,0,0,1764,1765,1,0,0,0,1765, + 1767,1,0,0,0,1766,1768,3,74,37,0,1767,1766,1,0,0,0,1767,1768,1,0, + 0,0,1768,1769,1,0,0,0,1769,1773,3,748,374,0,1770,1772,3,76,38,0, + 1771,1770,1,0,0,0,1772,1775,1,0,0,0,1773,1771,1,0,0,0,1773,1774, + 1,0,0,0,1774,1843,1,0,0,0,1775,1773,1,0,0,0,1776,1778,7,20,0,0,1777, + 1779,7,19,0,0,1778,1777,1,0,0,0,1778,1779,1,0,0,0,1779,1781,1,0, + 0,0,1780,1782,3,652,326,0,1781,1780,1,0,0,0,1781,1782,1,0,0,0,1782, + 1783,1,0,0,0,1783,1787,3,748,374,0,1784,1786,3,76,38,0,1785,1784, + 1,0,0,0,1786,1789,1,0,0,0,1787,1785,1,0,0,0,1787,1788,1,0,0,0,1788, + 1843,1,0,0,0,1789,1787,1,0,0,0,1790,1792,3,92,46,0,1791,1790,1,0, + 0,0,1791,1792,1,0,0,0,1792,1793,1,0,0,0,1793,1794,5,131,0,0,1794, + 1796,5,92,0,0,1795,1797,3,74,37,0,1796,1795,1,0,0,0,1796,1797,1, + 0,0,0,1797,1798,1,0,0,0,1798,1802,3,748,374,0,1799,1801,3,76,38, + 0,1800,1799,1,0,0,0,1801,1804,1,0,0,0,1802,1800,1,0,0,0,1802,1803, + 1,0,0,0,1803,1843,1,0,0,0,1804,1802,1,0,0,0,1805,1807,3,92,46,0, + 1806,1805,1,0,0,0,1806,1807,1,0,0,0,1807,1808,1,0,0,0,1808,1810, + 5,182,0,0,1809,1811,7,19,0,0,1810,1809,1,0,0,0,1810,1811,1,0,0,0, + 1811,1813,1,0,0,0,1812,1814,3,652,326,0,1813,1812,1,0,0,0,1813,1814, + 1,0,0,0,1814,1816,1,0,0,0,1815,1817,3,74,37,0,1816,1815,1,0,0,0, + 1816,1817,1,0,0,0,1817,1818,1,0,0,0,1818,1822,3,748,374,0,1819,1821, + 3,76,38,0,1820,1819,1,0,0,0,1821,1824,1,0,0,0,1822,1820,1,0,0,0, + 1822,1823,1,0,0,0,1823,1843,1,0,0,0,1824,1822,1,0,0,0,1825,1827, + 3,92,46,0,1826,1825,1,0,0,0,1826,1827,1,0,0,0,1827,1828,1,0,0,0, + 1828,1829,5,67,0,0,1829,1831,5,92,0,0,1830,1832,3,652,326,0,1831, + 1830,1,0,0,0,1831,1832,1,0,0,0,1832,1833,1,0,0,0,1833,1834,3,748, + 374,0,1834,1835,3,98,49,0,1835,1843,1,0,0,0,1836,1837,5,27,0,0,1837, + 1838,5,866,0,0,1838,1839,3,814,407,0,1839,1840,5,867,0,0,1840,1843, + 1,0,0,0,1841,1843,3,90,45,0,1842,1759,1,0,0,0,1842,1762,1,0,0,0, + 1842,1776,1,0,0,0,1842,1791,1,0,0,0,1842,1806,1,0,0,0,1842,1826, + 1,0,0,0,1842,1836,1,0,0,0,1842,1841,1,0,0,0,1843,89,1,0,0,0,1844, + 1846,3,92,46,0,1845,1844,1,0,0,0,1845,1846,1,0,0,0,1846,1847,1,0, + 0,0,1847,1848,5,27,0,0,1848,1849,5,866,0,0,1849,1850,3,814,407,0, + 1850,1855,5,867,0,0,1851,1853,5,114,0,0,1852,1851,1,0,0,0,1852,1853, + 1,0,0,0,1853,1854,1,0,0,0,1854,1856,5,57,0,0,1855,1852,1,0,0,0,1855, + 1856,1,0,0,0,1856,91,1,0,0,0,1857,1859,5,31,0,0,1858,1860,3,716, + 358,0,1859,1858,1,0,0,0,1859,1860,1,0,0,0,1860,93,1,0,0,0,1861,1865, + 3,736,368,0,1862,1864,3,96,48,0,1863,1862,1,0,0,0,1864,1867,1,0, + 0,0,1865,1863,1,0,0,0,1865,1866,1,0,0,0,1866,95,1,0,0,0,1867,1865, + 1,0,0,0,1868,1912,3,732,366,0,1869,1870,5,42,0,0,1870,1912,3,764, + 382,0,1871,1912,5,686,0,0,1872,1912,5,435,0,0,1873,1878,5,315,0, + 0,1874,1875,5,119,0,0,1875,1876,5,185,0,0,1876,1878,3,766,383,0, + 1877,1873,1,0,0,0,1877,1874,1,0,0,0,1878,1912,1,0,0,0,1879,1881, + 5,131,0,0,1880,1879,1,0,0,0,1880,1881,1,0,0,0,1881,1882,1,0,0,0, + 1882,1912,5,92,0,0,1883,1885,5,182,0,0,1884,1886,5,92,0,0,1885,1884, + 1,0,0,0,1885,1886,1,0,0,0,1886,1912,1,0,0,0,1887,1888,5,340,0,0, + 1888,1912,5,882,0,0,1889,1890,5,338,0,0,1890,1912,7,21,0,0,1891, + 1892,5,647,0,0,1892,1912,7,22,0,0,1893,1912,3,98,49,0,1894,1895, + 5,28,0,0,1895,1912,3,700,350,0,1896,1897,5,71,0,0,1897,1899,5,9, + 0,0,1898,1896,1,0,0,0,1898,1899,1,0,0,0,1899,1900,1,0,0,0,1900,1901, + 5,13,0,0,1901,1902,5,866,0,0,1902,1903,3,814,407,0,1903,1905,5,867, + 0,0,1904,1906,7,23,0,0,1905,1904,1,0,0,0,1905,1906,1,0,0,0,1906, + 1912,1,0,0,0,1907,1908,5,241,0,0,1908,1909,5,42,0,0,1909,1912,5, + 682,0,0,1910,1912,3,90,45,0,1911,1868,1,0,0,0,1911,1869,1,0,0,0, + 1911,1871,1,0,0,0,1911,1872,1,0,0,0,1911,1877,1,0,0,0,1911,1880, + 1,0,0,0,1911,1883,1,0,0,0,1911,1887,1,0,0,0,1911,1889,1,0,0,0,1911, + 1891,1,0,0,0,1911,1893,1,0,0,0,1911,1894,1,0,0,0,1911,1898,1,0,0, + 0,1911,1907,1,0,0,0,1911,1910,1,0,0,0,1912,97,1,0,0,0,1913,1914, + 5,138,0,0,1914,1916,3,662,331,0,1915,1917,3,748,374,0,1916,1915, + 1,0,0,0,1916,1917,1,0,0,0,1917,1920,1,0,0,0,1918,1919,5,110,0,0, + 1919,1921,7,24,0,0,1920,1918,1,0,0,0,1920,1921,1,0,0,0,1921,1923, + 1,0,0,0,1922,1924,3,100,50,0,1923,1922,1,0,0,0,1923,1924,1,0,0,0, + 1924,99,1,0,0,0,1925,1926,5,119,0,0,1926,1927,5,44,0,0,1927,1931, + 3,102,51,0,1928,1929,5,119,0,0,1929,1930,5,185,0,0,1930,1932,3,102, + 51,0,1931,1928,1,0,0,0,1931,1932,1,0,0,0,1932,1942,1,0,0,0,1933, + 1934,5,119,0,0,1934,1935,5,185,0,0,1935,1939,3,102,51,0,1936,1937, + 5,119,0,0,1937,1938,5,44,0,0,1938,1940,3,102,51,0,1939,1936,1,0, + 0,0,1939,1940,1,0,0,0,1940,1942,1,0,0,0,1941,1925,1,0,0,0,1941,1933, + 1,0,0,0,1942,101,1,0,0,0,1943,1952,5,146,0,0,1944,1952,5,22,0,0, + 1945,1946,5,155,0,0,1946,1952,5,116,0,0,1947,1948,5,502,0,0,1948, + 1952,5,305,0,0,1949,1950,5,155,0,0,1950,1952,5,42,0,0,1951,1943, + 1,0,0,0,1951,1944,1,0,0,0,1951,1945,1,0,0,0,1951,1947,1,0,0,0,1951, + 1949,1,0,0,0,1952,103,1,0,0,0,1953,1955,5,380,0,0,1954,1956,5,857, + 0,0,1955,1954,1,0,0,0,1955,1956,1,0,0,0,1956,1958,1,0,0,0,1957,1959, + 3,702,351,0,1958,1957,1,0,0,0,1958,1959,1,0,0,0,1959,2139,1,0,0, + 0,1960,1962,5,825,0,0,1961,1963,5,857,0,0,1962,1961,1,0,0,0,1962, + 1963,1,0,0,0,1963,1964,1,0,0,0,1964,2139,5,882,0,0,1965,1967,5,314, + 0,0,1966,1968,5,857,0,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968, + 1969,1,0,0,0,1969,2139,3,722,361,0,1970,1972,5,315,0,0,1971,1973, + 5,857,0,0,1972,1971,1,0,0,0,1972,1973,1,0,0,0,1973,1974,1,0,0,0, + 1974,2139,3,722,361,0,1975,1977,5,316,0,0,1976,1978,5,857,0,0,1977, + 1976,1,0,0,0,1977,1978,1,0,0,0,1978,1979,1,0,0,0,1979,2139,3,722, + 361,0,1980,1982,5,42,0,0,1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982, + 1983,1,0,0,0,1983,1985,3,58,29,0,1984,1986,5,857,0,0,1985,1984,1, + 0,0,0,1985,1986,1,0,0,0,1986,1989,1,0,0,0,1987,1990,3,698,349,0, + 1988,1990,5,42,0,0,1989,1987,1,0,0,0,1989,1988,1,0,0,0,1990,2139, + 1,0,0,0,1991,1993,7,25,0,0,1992,1994,5,857,0,0,1993,1992,1,0,0,0, + 1993,1994,1,0,0,0,1994,1995,1,0,0,0,1995,2139,7,26,0,0,1996,1998, + 5,42,0,0,1997,1996,1,0,0,0,1997,1998,1,0,0,0,1998,1999,1,0,0,0,1999, + 2001,5,28,0,0,2000,2002,5,857,0,0,2001,2000,1,0,0,0,2001,2002,1, + 0,0,0,2002,2003,1,0,0,0,2003,2139,3,700,350,0,2004,2006,5,340,0, + 0,2005,2007,5,857,0,0,2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2008, + 1,0,0,0,2008,2139,5,882,0,0,2009,2011,5,346,0,0,2010,2012,5,857, + 0,0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012,2013,1,0,0,0,2013,2139, + 7,27,0,0,2014,2016,5,349,0,0,2015,2017,5,857,0,0,2016,2015,1,0,0, + 0,2016,2017,1,0,0,0,2017,2018,1,0,0,0,2018,2139,5,882,0,0,2019,2020, + 7,28,0,0,2020,2022,5,367,0,0,2021,2023,5,857,0,0,2022,2021,1,0,0, + 0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024,2139,5,882,0,0,2025,2027, + 5,365,0,0,2026,2028,5,857,0,0,2027,2026,1,0,0,0,2027,2028,1,0,0, + 0,2028,2029,1,0,0,0,2029,2139,7,26,0,0,2030,2032,5,376,0,0,2031, + 2033,5,857,0,0,2032,2031,1,0,0,0,2032,2033,1,0,0,0,2033,2034,1,0, + 0,0,2034,2139,5,882,0,0,2035,2037,7,29,0,0,2036,2038,5,857,0,0,2037, + 2036,1,0,0,0,2037,2038,1,0,0,0,2038,2039,1,0,0,0,2039,2139,7,26, + 0,0,2040,2042,7,30,0,0,2041,2043,5,857,0,0,2042,2041,1,0,0,0,2042, + 2043,1,0,0,0,2043,2044,1,0,0,0,2044,2139,3,722,361,0,2045,2047,5, + 377,0,0,2046,2048,5,857,0,0,2047,2046,1,0,0,0,2047,2048,1,0,0,0, + 2048,2049,1,0,0,0,2049,2139,3,722,361,0,2050,2051,5,82,0,0,2051, + 2053,5,367,0,0,2052,2054,5,857,0,0,2053,2052,1,0,0,0,2053,2054,1, + 0,0,0,2054,2055,1,0,0,0,2055,2139,5,882,0,0,2056,2058,5,431,0,0, + 2057,2059,5,857,0,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2060, + 1,0,0,0,2060,2139,7,31,0,0,2061,2063,5,443,0,0,2062,2064,5,857,0, + 0,2063,2062,1,0,0,0,2063,2064,1,0,0,0,2064,2065,1,0,0,0,2065,2139, + 3,724,362,0,2066,2068,5,480,0,0,2067,2069,5,857,0,0,2068,2067,1, + 0,0,0,2068,2069,1,0,0,0,2069,2070,1,0,0,0,2070,2139,3,722,361,0, + 2071,2073,5,490,0,0,2072,2074,5,857,0,0,2073,2072,1,0,0,0,2073,2074, + 1,0,0,0,2074,2075,1,0,0,0,2075,2139,3,722,361,0,2076,2078,5,520, + 0,0,2077,2079,5,857,0,0,2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079, + 2080,1,0,0,0,2080,2139,7,14,0,0,2081,2083,5,529,0,0,2082,2084,5, + 857,0,0,2083,2082,1,0,0,0,2083,2084,1,0,0,0,2084,2085,1,0,0,0,2085, + 2139,5,882,0,0,2086,2088,5,588,0,0,2087,2089,5,857,0,0,2088,2087, + 1,0,0,0,2088,2089,1,0,0,0,2089,2090,1,0,0,0,2090,2139,7,32,0,0,2091, + 2092,5,640,0,0,2092,2139,5,664,0,0,2093,2095,5,833,0,0,2094,2096, + 5,857,0,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2097,1,0,0,0, + 2097,2139,5,882,0,0,2098,2100,5,642,0,0,2099,2101,5,857,0,0,2100, + 2099,1,0,0,0,2100,2101,1,0,0,0,2101,2102,1,0,0,0,2102,2139,7,14, + 0,0,2103,2105,5,643,0,0,2104,2106,5,857,0,0,2105,2104,1,0,0,0,2105, + 2106,1,0,0,0,2106,2107,1,0,0,0,2107,2139,7,14,0,0,2108,2110,5,644, + 0,0,2109,2111,5,857,0,0,2110,2109,1,0,0,0,2110,2111,1,0,0,0,2111, + 2114,1,0,0,0,2112,2115,5,42,0,0,2113,2115,3,722,361,0,2114,2112, + 1,0,0,0,2114,2113,1,0,0,0,2115,2139,1,0,0,0,2116,2117,5,658,0,0, + 2117,2119,3,676,338,0,2118,2120,3,108,54,0,2119,2118,1,0,0,0,2119, + 2120,1,0,0,0,2120,2139,1,0,0,0,2121,2122,5,659,0,0,2122,2123,5,857, + 0,0,2123,2139,3,106,53,0,2124,2139,3,108,54,0,2125,2127,5,665,0, + 0,2126,2128,5,857,0,0,2127,2126,1,0,0,0,2127,2128,1,0,0,0,2128,2129, + 1,0,0,0,2129,2139,7,26,0,0,2130,2132,5,181,0,0,2131,2133,5,857,0, + 0,2132,2131,1,0,0,0,2132,2133,1,0,0,0,2133,2134,1,0,0,0,2134,2135, + 5,866,0,0,2135,2136,3,660,330,0,2136,2137,5,867,0,0,2137,2139,1, + 0,0,0,2138,1953,1,0,0,0,2138,1960,1,0,0,0,2138,1965,1,0,0,0,2138, + 1970,1,0,0,0,2138,1975,1,0,0,0,2138,1981,1,0,0,0,2138,1991,1,0,0, + 0,2138,1997,1,0,0,0,2138,2004,1,0,0,0,2138,2009,1,0,0,0,2138,2014, + 1,0,0,0,2138,2019,1,0,0,0,2138,2025,1,0,0,0,2138,2030,1,0,0,0,2138, + 2035,1,0,0,0,2138,2040,1,0,0,0,2138,2045,1,0,0,0,2138,2050,1,0,0, + 0,2138,2056,1,0,0,0,2138,2061,1,0,0,0,2138,2066,1,0,0,0,2138,2071, + 1,0,0,0,2138,2076,1,0,0,0,2138,2081,1,0,0,0,2138,2086,1,0,0,0,2138, + 2091,1,0,0,0,2138,2093,1,0,0,0,2138,2098,1,0,0,0,2138,2103,1,0,0, + 0,2138,2108,1,0,0,0,2138,2116,1,0,0,0,2138,2121,1,0,0,0,2138,2124, + 1,0,0,0,2138,2125,1,0,0,0,2138,2130,1,0,0,0,2139,105,1,0,0,0,2140, + 2141,7,33,0,0,2141,107,1,0,0,0,2142,2143,5,647,0,0,2143,2144,7,22, + 0,0,2144,109,1,0,0,0,2145,2146,5,130,0,0,2146,2147,5,20,0,0,2147, + 2150,3,112,56,0,2148,2149,5,528,0,0,2149,2151,3,722,361,0,2150,2148, + 1,0,0,0,2150,2151,1,0,0,0,2151,2159,1,0,0,0,2152,2153,5,652,0,0, + 2153,2154,5,20,0,0,2154,2157,3,114,57,0,2155,2156,5,653,0,0,2156, + 2158,3,722,361,0,2157,2155,1,0,0,0,2157,2158,1,0,0,0,2158,2160,1, + 0,0,0,2159,2152,1,0,0,0,2159,2160,1,0,0,0,2160,2172,1,0,0,0,2161, + 2162,5,866,0,0,2162,2167,3,116,58,0,2163,2164,5,868,0,0,2164,2166, + 3,116,58,0,2165,2163,1,0,0,0,2166,2169,1,0,0,0,2167,2165,1,0,0,0, + 2167,2168,1,0,0,0,2168,2170,1,0,0,0,2169,2167,1,0,0,0,2170,2171, + 5,867,0,0,2171,2173,1,0,0,0,2172,2161,1,0,0,0,2172,2173,1,0,0,0, + 2173,111,1,0,0,0,2174,2176,5,101,0,0,2175,2174,1,0,0,0,2175,2176, + 1,0,0,0,2176,2177,1,0,0,0,2177,2178,5,418,0,0,2178,2179,5,866,0, + 0,2179,2180,3,814,407,0,2180,2181,5,867,0,0,2181,2221,1,0,0,0,2182, + 2184,5,101,0,0,2183,2182,1,0,0,0,2183,2184,1,0,0,0,2184,2185,1,0, + 0,0,2185,2189,5,92,0,0,2186,2187,5,308,0,0,2187,2188,5,857,0,0,2188, + 2190,7,34,0,0,2189,2186,1,0,0,0,2189,2190,1,0,0,0,2190,2191,1,0, + 0,0,2191,2193,5,866,0,0,2192,2194,3,670,335,0,2193,2192,1,0,0,0, + 2193,2194,1,0,0,0,2194,2195,1,0,0,0,2195,2221,5,867,0,0,2196,2206, + 5,134,0,0,2197,2198,5,866,0,0,2198,2199,3,814,407,0,2199,2200,5, + 867,0,0,2200,2207,1,0,0,0,2201,2202,5,337,0,0,2202,2203,5,866,0, + 0,2203,2204,3,670,335,0,2204,2205,5,867,0,0,2205,2207,1,0,0,0,2206, + 2197,1,0,0,0,2206,2201,1,0,0,0,2207,2221,1,0,0,0,2208,2218,5,449, + 0,0,2209,2210,5,866,0,0,2210,2211,3,814,407,0,2211,2212,5,867,0, + 0,2212,2219,1,0,0,0,2213,2214,5,337,0,0,2214,2215,5,866,0,0,2215, + 2216,3,670,335,0,2216,2217,5,867,0,0,2217,2219,1,0,0,0,2218,2209, + 1,0,0,0,2218,2213,1,0,0,0,2219,2221,1,0,0,0,2220,2175,1,0,0,0,2220, + 2183,1,0,0,0,2220,2196,1,0,0,0,2220,2208,1,0,0,0,2221,113,1,0,0, + 0,2222,2224,5,101,0,0,2223,2222,1,0,0,0,2223,2224,1,0,0,0,2224,2225, + 1,0,0,0,2225,2226,5,418,0,0,2226,2227,5,866,0,0,2227,2228,3,814, + 407,0,2228,2229,5,867,0,0,2229,2244,1,0,0,0,2230,2232,5,101,0,0, + 2231,2230,1,0,0,0,2231,2232,1,0,0,0,2232,2233,1,0,0,0,2233,2237, + 5,92,0,0,2234,2235,5,308,0,0,2235,2236,5,857,0,0,2236,2238,7,34, + 0,0,2237,2234,1,0,0,0,2237,2238,1,0,0,0,2238,2239,1,0,0,0,2239,2240, + 5,866,0,0,2240,2241,3,670,335,0,2241,2242,5,867,0,0,2242,2244,1, + 0,0,0,2243,2223,1,0,0,0,2243,2231,1,0,0,0,2244,115,1,0,0,0,2245, + 2246,5,130,0,0,2246,2247,3,682,341,0,2247,2248,5,189,0,0,2248,2249, + 5,447,0,0,2249,2250,5,662,0,0,2250,2251,5,866,0,0,2251,2256,3,118, + 59,0,2252,2253,5,868,0,0,2253,2255,3,118,59,0,2254,2252,1,0,0,0, + 2255,2258,1,0,0,0,2256,2254,1,0,0,0,2256,2257,1,0,0,0,2257,2259, + 1,0,0,0,2258,2256,1,0,0,0,2259,2263,5,867,0,0,2260,2262,3,124,62, + 0,2261,2260,1,0,0,0,2262,2265,1,0,0,0,2263,2261,1,0,0,0,2263,2264, + 1,0,0,0,2264,2277,1,0,0,0,2265,2263,1,0,0,0,2266,2267,5,866,0,0, + 2267,2272,3,122,61,0,2268,2269,5,868,0,0,2269,2271,3,122,61,0,2270, + 2268,1,0,0,0,2271,2274,1,0,0,0,2272,2270,1,0,0,0,2272,2273,1,0,0, + 0,2273,2275,1,0,0,0,2274,2272,1,0,0,0,2275,2276,5,867,0,0,2276,2278, + 1,0,0,0,2277,2266,1,0,0,0,2277,2278,1,0,0,0,2278,2392,1,0,0,0,2279, + 2280,5,130,0,0,2280,2281,3,682,341,0,2281,2282,5,189,0,0,2282,2283, + 5,447,0,0,2283,2284,5,662,0,0,2284,2288,3,118,59,0,2285,2287,3,124, + 62,0,2286,2285,1,0,0,0,2287,2290,1,0,0,0,2288,2286,1,0,0,0,2288, + 2289,1,0,0,0,2289,2302,1,0,0,0,2290,2288,1,0,0,0,2291,2292,5,866, + 0,0,2292,2297,3,122,61,0,2293,2294,5,868,0,0,2294,2296,3,122,61, + 0,2295,2293,1,0,0,0,2296,2299,1,0,0,0,2297,2295,1,0,0,0,2297,2298, + 1,0,0,0,2298,2300,1,0,0,0,2299,2297,1,0,0,0,2300,2301,5,867,0,0, + 2301,2303,1,0,0,0,2302,2291,1,0,0,0,2302,2303,1,0,0,0,2303,2392, + 1,0,0,0,2304,2305,5,130,0,0,2305,2306,3,682,341,0,2306,2307,5,189, + 0,0,2307,2308,5,80,0,0,2308,2309,5,866,0,0,2309,2314,3,118,59,0, + 2310,2311,5,868,0,0,2311,2313,3,118,59,0,2312,2310,1,0,0,0,2313, + 2316,1,0,0,0,2314,2312,1,0,0,0,2314,2315,1,0,0,0,2315,2317,1,0,0, + 0,2316,2314,1,0,0,0,2317,2321,5,867,0,0,2318,2320,3,124,62,0,2319, + 2318,1,0,0,0,2320,2323,1,0,0,0,2321,2319,1,0,0,0,2321,2322,1,0,0, + 0,2322,2335,1,0,0,0,2323,2321,1,0,0,0,2324,2325,5,866,0,0,2325,2330, + 3,122,61,0,2326,2327,5,868,0,0,2327,2329,3,122,61,0,2328,2326,1, + 0,0,0,2329,2332,1,0,0,0,2330,2328,1,0,0,0,2330,2331,1,0,0,0,2331, + 2333,1,0,0,0,2332,2330,1,0,0,0,2333,2334,5,867,0,0,2334,2336,1,0, + 0,0,2335,2324,1,0,0,0,2335,2336,1,0,0,0,2336,2392,1,0,0,0,2337,2338, + 5,130,0,0,2338,2339,3,682,341,0,2339,2340,5,189,0,0,2340,2341,5, + 80,0,0,2341,2342,5,866,0,0,2342,2347,3,120,60,0,2343,2344,5,868, + 0,0,2344,2346,3,120,60,0,2345,2343,1,0,0,0,2346,2349,1,0,0,0,2347, + 2345,1,0,0,0,2347,2348,1,0,0,0,2348,2350,1,0,0,0,2349,2347,1,0,0, + 0,2350,2354,5,867,0,0,2351,2353,3,124,62,0,2352,2351,1,0,0,0,2353, + 2356,1,0,0,0,2354,2352,1,0,0,0,2354,2355,1,0,0,0,2355,2368,1,0,0, + 0,2356,2354,1,0,0,0,2357,2358,5,866,0,0,2358,2363,3,122,61,0,2359, + 2360,5,868,0,0,2360,2362,3,122,61,0,2361,2359,1,0,0,0,2362,2365, + 1,0,0,0,2363,2361,1,0,0,0,2363,2364,1,0,0,0,2364,2366,1,0,0,0,2365, + 2363,1,0,0,0,2366,2367,5,867,0,0,2367,2369,1,0,0,0,2368,2357,1,0, + 0,0,2368,2369,1,0,0,0,2369,2392,1,0,0,0,2370,2371,5,130,0,0,2371, + 2375,3,682,341,0,2372,2374,3,124,62,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,2389,1,0,0,0,2377, + 2375,1,0,0,0,2378,2379,5,866,0,0,2379,2384,3,122,61,0,2380,2381, + 5,868,0,0,2381,2383,3,122,61,0,2382,2380,1,0,0,0,2383,2386,1,0,0, + 0,2384,2382,1,0,0,0,2384,2385,1,0,0,0,2385,2387,1,0,0,0,2386,2384, + 1,0,0,0,2387,2388,5,867,0,0,2388,2390,1,0,0,0,2389,2378,1,0,0,0, + 2389,2390,1,0,0,0,2390,2392,1,0,0,0,2391,2245,1,0,0,0,2391,2279, + 1,0,0,0,2391,2304,1,0,0,0,2391,2337,1,0,0,0,2391,2370,1,0,0,0,2392, + 117,1,0,0,0,2393,2397,3,734,367,0,2394,2397,3,814,407,0,2395,2397, + 5,111,0,0,2396,2393,1,0,0,0,2396,2394,1,0,0,0,2396,2395,1,0,0,0, + 2397,119,1,0,0,0,2398,2399,5,866,0,0,2399,2402,3,118,59,0,2400,2401, + 5,868,0,0,2401,2403,3,118,59,0,2402,2400,1,0,0,0,2403,2404,1,0,0, + 0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405,2406,1,0,0,0,2406,2407, + 5,867,0,0,2407,121,1,0,0,0,2408,2409,5,652,0,0,2409,2413,3,716,358, + 0,2410,2412,3,124,62,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,123,1,0,0,0,2415,2413,1,0,0, + 0,2416,2418,5,42,0,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2420, + 1,0,0,0,2419,2421,5,647,0,0,2420,2419,1,0,0,0,2420,2421,1,0,0,0, + 2421,2422,1,0,0,0,2422,2424,5,380,0,0,2423,2425,5,857,0,0,2424,2423, + 1,0,0,0,2424,2425,1,0,0,0,2425,2426,1,0,0,0,2426,2465,3,702,351, + 0,2427,2429,5,340,0,0,2428,2430,5,857,0,0,2429,2428,1,0,0,0,2429, + 2430,1,0,0,0,2430,2431,1,0,0,0,2431,2465,5,882,0,0,2432,2433,5,360, + 0,0,2433,2435,5,367,0,0,2434,2436,5,857,0,0,2435,2434,1,0,0,0,2435, + 2436,1,0,0,0,2436,2437,1,0,0,0,2437,2465,5,882,0,0,2438,2439,5,82, + 0,0,2439,2441,5,367,0,0,2440,2442,5,857,0,0,2441,2440,1,0,0,0,2441, + 2442,1,0,0,0,2442,2443,1,0,0,0,2443,2465,5,882,0,0,2444,2446,5,480, + 0,0,2445,2447,5,857,0,0,2446,2445,1,0,0,0,2446,2447,1,0,0,0,2447, + 2448,1,0,0,0,2448,2465,3,722,361,0,2449,2451,5,490,0,0,2450,2452, + 5,857,0,0,2451,2450,1,0,0,0,2451,2452,1,0,0,0,2452,2453,1,0,0,0, + 2453,2465,3,722,361,0,2454,2456,5,658,0,0,2455,2457,5,857,0,0,2456, + 2455,1,0,0,0,2456,2457,1,0,0,0,2457,2458,1,0,0,0,2458,2465,3,676, + 338,0,2459,2461,5,504,0,0,2460,2462,5,857,0,0,2461,2460,1,0,0,0, + 2461,2462,1,0,0,0,2462,2463,1,0,0,0,2463,2465,3,716,358,0,2464,2417, + 1,0,0,0,2464,2427,1,0,0,0,2464,2432,1,0,0,0,2464,2438,1,0,0,0,2464, + 2444,1,0,0,0,2464,2449,1,0,0,0,2464,2454,1,0,0,0,2464,2459,1,0,0, + 0,2465,125,1,0,0,0,2466,2467,5,8,0,0,2467,2469,7,0,0,0,2468,2470, + 3,638,319,0,2469,2468,1,0,0,0,2469,2470,1,0,0,0,2470,2472,1,0,0, + 0,2471,2473,3,56,28,0,2472,2471,1,0,0,0,2473,2474,1,0,0,0,2474,2472, + 1,0,0,0,2474,2475,1,0,0,0,2475,2485,1,0,0,0,2476,2477,5,8,0,0,2477, + 2478,7,0,0,0,2478,2479,3,638,319,0,2479,2480,5,677,0,0,2480,2481, + 5,360,0,0,2481,2482,5,367,0,0,2482,2483,5,496,0,0,2483,2485,1,0, + 0,0,2484,2466,1,0,0,0,2484,2476,1,0,0,0,2485,127,1,0,0,0,2486,2488, + 5,8,0,0,2487,2489,3,62,31,0,2488,2487,1,0,0,0,2488,2489,1,0,0,0, + 2489,2490,1,0,0,0,2490,2491,5,385,0,0,2491,2495,3,712,356,0,2492, + 2493,5,119,0,0,2493,2494,5,590,0,0,2494,2496,3,64,32,0,2495,2492, + 1,0,0,0,2495,2496,1,0,0,0,2496,2503,1,0,0,0,2497,2498,5,119,0,0, + 2498,2500,5,343,0,0,2499,2501,5,114,0,0,2500,2499,1,0,0,0,2500,2501, + 1,0,0,0,2501,2502,1,0,0,0,2502,2504,5,541,0,0,2503,2497,1,0,0,0, + 2503,2504,1,0,0,0,2504,2508,1,0,0,0,2505,2506,5,141,0,0,2506,2507, + 5,176,0,0,2507,2509,3,712,356,0,2508,2505,1,0,0,0,2508,2509,1,0, + 0,0,2509,2511,1,0,0,0,2510,2512,3,72,36,0,2511,2510,1,0,0,0,2511, + 2512,1,0,0,0,2512,2515,1,0,0,0,2513,2514,5,340,0,0,2514,2516,5,882, + 0,0,2515,2513,1,0,0,0,2515,2516,1,0,0,0,2516,2519,1,0,0,0,2517,2518, + 5,371,0,0,2518,2520,3,432,216,0,2519,2517,1,0,0,0,2519,2520,1,0, + 0,0,2520,129,1,0,0,0,2521,2522,5,8,0,0,2522,2523,5,409,0,0,2523, + 2527,3,642,321,0,2524,2526,3,82,41,0,2525,2524,1,0,0,0,2526,2529, + 1,0,0,0,2527,2525,1,0,0,0,2527,2528,1,0,0,0,2528,131,1,0,0,0,2529, + 2527,1,0,0,0,2530,2531,5,8,0,0,2531,2532,5,433,0,0,2532,2533,5,585, + 0,0,2533,2534,5,801,0,0,2534,2535,5,453,0,0,2535,2536,5,92,0,0,2536, + 133,1,0,0,0,2537,2538,5,8,0,0,2538,2539,5,451,0,0,2539,2540,5,74, + 0,0,2540,2541,3,716,358,0,2541,2542,5,6,0,0,2542,2543,5,671,0,0, + 2543,2549,5,882,0,0,2544,2546,5,428,0,0,2545,2547,5,857,0,0,2546, + 2545,1,0,0,0,2546,2547,1,0,0,0,2547,2548,1,0,0,0,2548,2550,3,724, + 362,0,2549,2544,1,0,0,0,2549,2550,1,0,0,0,2550,2552,1,0,0,0,2551, + 2553,5,687,0,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0,2553,2554,1,0, + 0,0,2554,2556,5,380,0,0,2555,2557,5,857,0,0,2556,2555,1,0,0,0,2556, + 2557,1,0,0,0,2557,2558,1,0,0,0,2558,2559,3,702,351,0,2559,135,1, + 0,0,0,2560,2561,5,8,0,0,2561,2562,5,132,0,0,2562,2566,3,712,356, + 0,2563,2565,3,82,41,0,2564,2563,1,0,0,0,2565,2568,1,0,0,0,2566,2564, + 1,0,0,0,2566,2567,1,0,0,0,2567,137,1,0,0,0,2568,2566,1,0,0,0,2569, + 2570,5,8,0,0,2570,2571,5,592,0,0,2571,2572,3,716,358,0,2572,2573, + 5,518,0,0,2573,2574,5,866,0,0,2574,2579,3,84,42,0,2575,2576,5,868, + 0,0,2576,2578,3,84,42,0,2577,2575,1,0,0,0,2578,2581,1,0,0,0,2579, + 2577,1,0,0,0,2579,2580,1,0,0,0,2580,2582,1,0,0,0,2581,2579,1,0,0, + 0,2582,2583,5,867,0,0,2583,139,1,0,0,0,2584,2585,5,8,0,0,2585,2586, + 5,173,0,0,2586,2595,3,662,331,0,2587,2592,3,146,73,0,2588,2589,5, + 868,0,0,2589,2591,3,146,73,0,2590,2588,1,0,0,0,2591,2594,1,0,0,0, + 2592,2590,1,0,0,0,2592,2593,1,0,0,0,2593,2596,1,0,0,0,2594,2592, + 1,0,0,0,2595,2587,1,0,0,0,2595,2596,1,0,0,0,2596,2604,1,0,0,0,2597, + 2601,3,148,74,0,2598,2600,3,148,74,0,2599,2598,1,0,0,0,2600,2603, + 1,0,0,0,2601,2599,1,0,0,0,2601,2602,1,0,0,0,2602,2605,1,0,0,0,2603, + 2601,1,0,0,0,2604,2597,1,0,0,0,2604,2605,1,0,0,0,2605,141,1,0,0, + 0,2606,2608,5,8,0,0,2607,2609,5,180,0,0,2608,2607,1,0,0,0,2608,2609, + 1,0,0,0,2609,2610,1,0,0,0,2610,2611,5,658,0,0,2611,2612,3,676,338, + 0,2612,2613,7,35,0,0,2613,2614,5,361,0,0,2614,2620,5,882,0,0,2615, + 2617,5,428,0,0,2616,2618,5,857,0,0,2617,2616,1,0,0,0,2617,2618,1, + 0,0,0,2618,2619,1,0,0,0,2619,2621,3,724,362,0,2620,2615,1,0,0,0, + 2620,2621,1,0,0,0,2621,2623,1,0,0,0,2622,2624,5,687,0,0,2623,2622, + 1,0,0,0,2623,2624,1,0,0,0,2624,2628,1,0,0,0,2625,2626,5,141,0,0, + 2626,2627,5,176,0,0,2627,2629,3,674,337,0,2628,2625,1,0,0,0,2628, + 2629,1,0,0,0,2629,2635,1,0,0,0,2630,2632,5,314,0,0,2631,2633,5,857, + 0,0,2632,2631,1,0,0,0,2632,2633,1,0,0,0,2633,2634,1,0,0,0,2634,2636, + 3,724,362,0,2635,2630,1,0,0,0,2635,2636,1,0,0,0,2636,2639,1,0,0, + 0,2637,2638,5,155,0,0,2638,2640,7,36,0,0,2639,2637,1,0,0,0,2639, + 2640,1,0,0,0,2640,2646,1,0,0,0,2641,2643,5,376,0,0,2642,2644,5,857, + 0,0,2643,2642,1,0,0,0,2643,2644,1,0,0,0,2644,2645,1,0,0,0,2645,2647, + 5,882,0,0,2646,2641,1,0,0,0,2646,2647,1,0,0,0,2647,2653,1,0,0,0, + 2648,2650,5,380,0,0,2649,2651,5,857,0,0,2650,2649,1,0,0,0,2650,2651, + 1,0,0,0,2651,2652,1,0,0,0,2652,2654,3,702,351,0,2653,2648,1,0,0, + 0,2653,2654,1,0,0,0,2654,2660,1,0,0,0,2655,2657,5,825,0,0,2656,2658, + 5,857,0,0,2657,2656,1,0,0,0,2657,2658,1,0,0,0,2658,2659,1,0,0,0, + 2659,2661,5,882,0,0,2660,2655,1,0,0,0,2660,2661,1,0,0,0,2661,143, + 1,0,0,0,2662,2666,5,8,0,0,2663,2664,5,308,0,0,2664,2665,5,857,0, + 0,2665,2667,7,11,0,0,2666,2663,1,0,0,0,2666,2667,1,0,0,0,2667,2669, + 1,0,0,0,2668,2670,3,62,31,0,2669,2668,1,0,0,0,2669,2670,1,0,0,0, + 2670,2674,1,0,0,0,2671,2672,5,162,0,0,2672,2673,5,591,0,0,2673,2675, + 7,12,0,0,2674,2671,1,0,0,0,2674,2675,1,0,0,0,2675,2676,1,0,0,0,2676, + 2677,5,684,0,0,2677,2682,3,646,323,0,2678,2679,5,866,0,0,2679,2680, + 3,670,335,0,2680,2681,5,867,0,0,2681,2683,1,0,0,0,2682,2678,1,0, + 0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2685,5,13,0,0,2685, + 2692,3,210,105,0,2686,2688,5,194,0,0,2687,2689,7,13,0,0,2688,2687, + 1,0,0,0,2688,2689,1,0,0,0,2689,2690,1,0,0,0,2690,2691,5,27,0,0,2691, + 2693,5,121,0,0,2692,2686,1,0,0,0,2692,2693,1,0,0,0,2693,145,1,0, + 0,0,2694,2701,3,104,52,0,2695,2697,5,868,0,0,2696,2695,1,0,0,0,2696, + 2697,1,0,0,0,2697,2698,1,0,0,0,2698,2700,3,104,52,0,2699,2696,1, + 0,0,0,2700,2703,1,0,0,0,2701,2699,1,0,0,0,2701,2702,1,0,0,0,2702, + 2959,1,0,0,0,2703,2701,1,0,0,0,2704,2706,5,6,0,0,2705,2707,5,29, + 0,0,2706,2705,1,0,0,0,2706,2707,1,0,0,0,2707,2708,1,0,0,0,2708,2709, + 3,672,336,0,2709,2713,3,94,47,0,2710,2714,5,402,0,0,2711,2712,5, + 306,0,0,2712,2714,3,672,336,0,2713,2710,1,0,0,0,2713,2711,1,0,0, + 0,2713,2714,1,0,0,0,2714,2959,1,0,0,0,2715,2717,5,6,0,0,2716,2718, + 5,29,0,0,2717,2716,1,0,0,0,2717,2718,1,0,0,0,2718,2719,1,0,0,0,2719, + 2720,5,866,0,0,2720,2721,3,672,336,0,2721,2728,3,94,47,0,2722,2723, + 5,868,0,0,2723,2724,3,672,336,0,2724,2725,3,94,47,0,2725,2727,1, + 0,0,0,2726,2722,1,0,0,0,2727,2730,1,0,0,0,2728,2726,1,0,0,0,2728, + 2729,1,0,0,0,2729,2731,1,0,0,0,2730,2728,1,0,0,0,2731,2732,5,867, + 0,0,2732,2959,1,0,0,0,2733,2734,5,6,0,0,2734,2736,7,19,0,0,2735, + 2737,3,652,326,0,2736,2735,1,0,0,0,2736,2737,1,0,0,0,2737,2739,1, + 0,0,0,2738,2740,3,74,37,0,2739,2738,1,0,0,0,2739,2740,1,0,0,0,2740, + 2741,1,0,0,0,2741,2745,3,748,374,0,2742,2744,3,76,38,0,2743,2742, + 1,0,0,0,2744,2747,1,0,0,0,2745,2743,1,0,0,0,2745,2746,1,0,0,0,2746, + 2959,1,0,0,0,2747,2745,1,0,0,0,2748,2749,5,6,0,0,2749,2751,7,20, + 0,0,2750,2752,7,19,0,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752, + 2754,1,0,0,0,2753,2755,3,652,326,0,2754,2753,1,0,0,0,2754,2755,1, + 0,0,0,2755,2756,1,0,0,0,2756,2760,3,748,374,0,2757,2759,3,76,38, + 0,2758,2757,1,0,0,0,2759,2762,1,0,0,0,2760,2758,1,0,0,0,2760,2761, + 1,0,0,0,2761,2959,1,0,0,0,2762,2760,1,0,0,0,2763,2768,5,6,0,0,2764, + 2766,5,31,0,0,2765,2767,3,716,358,0,2766,2765,1,0,0,0,2766,2767, + 1,0,0,0,2767,2769,1,0,0,0,2768,2764,1,0,0,0,2768,2769,1,0,0,0,2769, + 2770,1,0,0,0,2770,2771,5,131,0,0,2771,2773,5,92,0,0,2772,2774,3, + 74,37,0,2773,2772,1,0,0,0,2773,2774,1,0,0,0,2774,2775,1,0,0,0,2775, + 2779,3,748,374,0,2776,2778,3,76,38,0,2777,2776,1,0,0,0,2778,2781, + 1,0,0,0,2779,2777,1,0,0,0,2779,2780,1,0,0,0,2780,2959,1,0,0,0,2781, + 2779,1,0,0,0,2782,2787,5,6,0,0,2783,2785,5,31,0,0,2784,2786,3,716, + 358,0,2785,2784,1,0,0,0,2785,2786,1,0,0,0,2786,2788,1,0,0,0,2787, + 2783,1,0,0,0,2787,2788,1,0,0,0,2788,2789,1,0,0,0,2789,2791,5,182, + 0,0,2790,2792,7,19,0,0,2791,2790,1,0,0,0,2791,2792,1,0,0,0,2792, + 2794,1,0,0,0,2793,2795,3,652,326,0,2794,2793,1,0,0,0,2794,2795,1, + 0,0,0,2795,2797,1,0,0,0,2796,2798,3,74,37,0,2797,2796,1,0,0,0,2797, + 2798,1,0,0,0,2798,2799,1,0,0,0,2799,2803,3,748,374,0,2800,2802,3, + 76,38,0,2801,2800,1,0,0,0,2802,2805,1,0,0,0,2803,2801,1,0,0,0,2803, + 2804,1,0,0,0,2804,2959,1,0,0,0,2805,2803,1,0,0,0,2806,2811,5,6,0, + 0,2807,2809,5,31,0,0,2808,2810,3,716,358,0,2809,2808,1,0,0,0,2809, + 2810,1,0,0,0,2810,2812,1,0,0,0,2811,2807,1,0,0,0,2811,2812,1,0,0, + 0,2812,2813,1,0,0,0,2813,2814,5,67,0,0,2814,2816,5,92,0,0,2815,2817, + 3,652,326,0,2816,2815,1,0,0,0,2816,2817,1,0,0,0,2817,2818,1,0,0, + 0,2818,2819,3,748,374,0,2819,2820,3,98,49,0,2820,2959,1,0,0,0,2821, + 2823,5,6,0,0,2822,2824,3,90,45,0,2823,2822,1,0,0,0,2823,2824,1,0, + 0,0,2824,2959,1,0,0,0,2825,2826,5,51,0,0,2826,2827,7,37,0,0,2827, + 2959,3,716,358,0,2828,2829,5,8,0,0,2829,2830,7,37,0,0,2830,2832, + 3,716,358,0,2831,2833,5,114,0,0,2832,2831,1,0,0,0,2832,2833,1,0, + 0,0,2833,2835,1,0,0,0,2834,2836,5,57,0,0,2835,2834,1,0,0,0,2835, + 2836,1,0,0,0,2836,2959,1,0,0,0,2837,2839,5,308,0,0,2838,2840,5,857, + 0,0,2839,2838,1,0,0,0,2839,2840,1,0,0,0,2840,2841,1,0,0,0,2841,2959, + 7,38,0,0,2842,2844,5,8,0,0,2843,2845,5,29,0,0,2844,2843,1,0,0,0, + 2844,2845,1,0,0,0,2845,2846,1,0,0,0,2846,2854,3,672,336,0,2847,2848, + 5,155,0,0,2848,2849,5,42,0,0,2849,2855,3,764,382,0,2850,2851,5,155, + 0,0,2851,2855,7,17,0,0,2852,2853,5,51,0,0,2853,2855,5,42,0,0,2854, + 2847,1,0,0,0,2854,2850,1,0,0,0,2854,2852,1,0,0,0,2855,2959,1,0,0, + 0,2856,2857,5,8,0,0,2857,2858,5,82,0,0,2858,2859,3,652,326,0,2859, + 2860,7,17,0,0,2860,2959,1,0,0,0,2861,2863,5,25,0,0,2862,2864,5,29, + 0,0,2863,2862,1,0,0,0,2863,2864,1,0,0,0,2864,2865,1,0,0,0,2865,2866, + 3,672,336,0,2866,2867,3,668,334,0,2867,2871,3,94,47,0,2868,2872, + 5,402,0,0,2869,2870,5,306,0,0,2870,2872,3,672,336,0,2871,2868,1, + 0,0,0,2871,2869,1,0,0,0,2871,2872,1,0,0,0,2872,2959,1,0,0,0,2873, + 2875,5,42,0,0,2874,2873,1,0,0,0,2874,2875,1,0,0,0,2875,2876,1,0, + 0,0,2876,2877,5,26,0,0,2877,2878,5,155,0,0,2878,2879,5,857,0,0,2879, + 2885,3,698,349,0,2880,2882,5,28,0,0,2881,2883,5,857,0,0,2882,2881, + 1,0,0,0,2882,2883,1,0,0,0,2883,2884,1,0,0,0,2884,2886,3,700,350, + 0,2885,2880,1,0,0,0,2885,2886,1,0,0,0,2886,2959,1,0,0,0,2887,2888, + 5,33,0,0,2888,2892,5,176,0,0,2889,2893,5,823,0,0,2890,2891,5,26, + 0,0,2891,2893,5,155,0,0,2892,2889,1,0,0,0,2892,2890,1,0,0,0,2893, + 2894,1,0,0,0,2894,2897,3,698,349,0,2895,2896,5,28,0,0,2896,2898, + 3,700,350,0,2897,2895,1,0,0,0,2897,2898,1,0,0,0,2898,2959,1,0,0, + 0,2899,2900,7,39,0,0,2900,2959,5,93,0,0,2901,2902,7,40,0,0,2902, + 2959,5,658,0,0,2903,2905,5,51,0,0,2904,2906,5,29,0,0,2905,2904,1, + 0,0,0,2905,2906,1,0,0,0,2906,2907,1,0,0,0,2907,2959,3,672,336,0, + 2908,2909,5,51,0,0,2909,2910,7,19,0,0,2910,2959,3,652,326,0,2911, + 2912,5,51,0,0,2912,2913,5,131,0,0,2913,2959,5,92,0,0,2914,2915,5, + 51,0,0,2915,2916,5,67,0,0,2916,2917,5,92,0,0,2917,2959,3,716,358, + 0,2918,2959,5,66,0,0,2919,2921,5,104,0,0,2920,2922,5,857,0,0,2921, + 2920,1,0,0,0,2921,2922,1,0,0,0,2922,2923,1,0,0,0,2923,2959,7,4,0, + 0,2924,2926,5,492,0,0,2925,2927,5,29,0,0,2926,2925,1,0,0,0,2926, + 2927,1,0,0,0,2927,2928,1,0,0,0,2928,2929,3,672,336,0,2929,2933,3, + 94,47,0,2930,2934,5,402,0,0,2931,2932,5,306,0,0,2932,2934,3,672, + 336,0,2933,2930,1,0,0,0,2933,2931,1,0,0,0,2933,2934,1,0,0,0,2934, + 2959,1,0,0,0,2935,2936,5,125,0,0,2936,2937,5,20,0,0,2937,2959,3, + 670,335,0,2938,2939,5,141,0,0,2939,2940,5,29,0,0,2940,2941,3,672, + 336,0,2941,2942,5,176,0,0,2942,2943,3,668,334,0,2943,2959,1,0,0, + 0,2944,2945,5,141,0,0,2945,2946,7,19,0,0,2946,2947,3,652,326,0,2947, + 2948,5,176,0,0,2948,2949,3,648,324,0,2949,2959,1,0,0,0,2950,2952, + 5,141,0,0,2951,2953,7,41,0,0,2952,2951,1,0,0,0,2952,2953,1,0,0,0, + 2953,2954,1,0,0,0,2954,2959,3,658,329,0,2955,2956,7,42,0,0,2956, + 2959,5,681,0,0,2957,2959,3,148,74,0,2958,2694,1,0,0,0,2958,2704, + 1,0,0,0,2958,2715,1,0,0,0,2958,2733,1,0,0,0,2958,2748,1,0,0,0,2958, + 2763,1,0,0,0,2958,2782,1,0,0,0,2958,2806,1,0,0,0,2958,2821,1,0,0, + 0,2958,2825,1,0,0,0,2958,2828,1,0,0,0,2958,2837,1,0,0,0,2958,2842, + 1,0,0,0,2958,2856,1,0,0,0,2958,2861,1,0,0,0,2958,2874,1,0,0,0,2958, + 2887,1,0,0,0,2958,2899,1,0,0,0,2958,2901,1,0,0,0,2958,2903,1,0,0, + 0,2958,2908,1,0,0,0,2958,2911,1,0,0,0,2958,2914,1,0,0,0,2958,2918, + 1,0,0,0,2958,2919,1,0,0,0,2958,2924,1,0,0,0,2958,2935,1,0,0,0,2958, + 2938,1,0,0,0,2958,2944,1,0,0,0,2958,2950,1,0,0,0,2958,2955,1,0,0, + 0,2958,2957,1,0,0,0,2959,147,1,0,0,0,2960,2961,5,6,0,0,2961,2962, + 5,130,0,0,2962,2963,5,866,0,0,2963,2968,3,116,58,0,2964,2965,5,868, + 0,0,2965,2967,3,116,58,0,2966,2964,1,0,0,0,2967,2970,1,0,0,0,2968, + 2966,1,0,0,0,2968,2969,1,0,0,0,2969,2971,1,0,0,0,2970,2968,1,0,0, + 0,2971,2972,5,867,0,0,2972,3059,1,0,0,0,2973,2974,5,51,0,0,2974, + 2975,5,130,0,0,2975,3059,3,680,340,0,2976,2977,5,369,0,0,2977,2980, + 5,130,0,0,2978,2981,3,680,340,0,2979,2981,5,7,0,0,2980,2978,1,0, + 0,0,2980,2979,1,0,0,0,2981,2982,1,0,0,0,2982,3059,5,658,0,0,2983, + 2984,5,425,0,0,2984,2987,5,130,0,0,2985,2988,3,680,340,0,2986,2988, + 5,7,0,0,2987,2985,1,0,0,0,2987,2986,1,0,0,0,2988,2989,1,0,0,0,2989, + 3059,5,658,0,0,2990,2991,5,668,0,0,2991,2994,5,130,0,0,2992,2995, + 3,680,340,0,2993,2995,5,7,0,0,2994,2992,1,0,0,0,2994,2993,1,0,0, + 0,2995,3059,1,0,0,0,2996,2997,5,335,0,0,2997,2998,5,130,0,0,2998, + 3059,3,722,361,0,2999,3000,5,561,0,0,3000,3001,5,130,0,0,3001,3002, + 3,680,340,0,3002,3003,5,88,0,0,3003,3004,5,866,0,0,3004,3009,3,116, + 58,0,3005,3006,5,868,0,0,3006,3008,3,116,58,0,3007,3005,1,0,0,0, + 3008,3011,1,0,0,0,3009,3007,1,0,0,0,3009,3010,1,0,0,0,3010,3012, + 1,0,0,0,3011,3009,1,0,0,0,3012,3013,5,867,0,0,3013,3059,1,0,0,0, + 3014,3015,5,388,0,0,3015,3016,5,130,0,0,3016,3017,3,682,341,0,3017, + 3018,5,194,0,0,3018,3019,5,173,0,0,3019,3022,3,662,331,0,3020,3021, + 7,42,0,0,3021,3023,5,681,0,0,3022,3020,1,0,0,0,3022,3023,1,0,0,0, + 3023,3059,1,0,0,0,3024,3025,5,10,0,0,3025,3028,5,130,0,0,3026,3029, + 3,680,340,0,3027,3029,5,7,0,0,3028,3026,1,0,0,0,3028,3027,1,0,0, + 0,3029,3059,1,0,0,0,3030,3031,5,27,0,0,3031,3034,5,130,0,0,3032, + 3035,3,680,340,0,3033,3035,5,7,0,0,3034,3032,1,0,0,0,3034,3033,1, + 0,0,0,3035,3059,1,0,0,0,3036,3037,5,120,0,0,3037,3040,5,130,0,0, + 3038,3041,3,680,340,0,3039,3041,5,7,0,0,3040,3038,1,0,0,0,3040,3039, + 1,0,0,0,3041,3059,1,0,0,0,3042,3043,5,550,0,0,3043,3046,5,130,0, + 0,3044,3047,3,680,340,0,3045,3047,5,7,0,0,3046,3044,1,0,0,0,3046, + 3045,1,0,0,0,3047,3059,1,0,0,0,3048,3049,5,562,0,0,3049,3052,5,130, + 0,0,3050,3053,3,680,340,0,3051,3053,5,7,0,0,3052,3050,1,0,0,0,3052, + 3051,1,0,0,0,3053,3059,1,0,0,0,3054,3055,5,560,0,0,3055,3059,5,527, + 0,0,3056,3057,5,677,0,0,3057,3059,5,527,0,0,3058,2960,1,0,0,0,3058, + 2973,1,0,0,0,3058,2976,1,0,0,0,3058,2983,1,0,0,0,3058,2990,1,0,0, + 0,3058,2996,1,0,0,0,3058,2999,1,0,0,0,3058,3014,1,0,0,0,3058,3024, + 1,0,0,0,3058,3030,1,0,0,0,3058,3036,1,0,0,0,3058,3042,1,0,0,0,3058, + 3048,1,0,0,0,3058,3054,1,0,0,0,3058,3056,1,0,0,0,3059,149,1,0,0, + 0,3060,3061,5,51,0,0,3061,3063,7,0,0,0,3062,3064,3,768,384,0,3063, + 3062,1,0,0,0,3063,3064,1,0,0,0,3064,3065,1,0,0,0,3065,3066,3,638, + 319,0,3066,151,1,0,0,0,3067,3068,5,51,0,0,3068,3070,5,385,0,0,3069, + 3071,3,768,384,0,3070,3069,1,0,0,0,3070,3071,1,0,0,0,3071,3072,1, + 0,0,0,3072,3073,3,712,356,0,3073,153,1,0,0,0,3074,3075,5,51,0,0, + 3075,3077,5,82,0,0,3076,3078,7,1,0,0,3077,3076,1,0,0,0,3077,3078, + 1,0,0,0,3078,3079,1,0,0,0,3079,3080,3,652,326,0,3080,3081,5,119, + 0,0,3081,3094,3,662,331,0,3082,3084,5,308,0,0,3083,3085,5,857,0, + 0,3084,3083,1,0,0,0,3084,3085,1,0,0,0,3085,3086,1,0,0,0,3086,3093, + 7,3,0,0,3087,3089,5,104,0,0,3088,3090,5,857,0,0,3089,3088,1,0,0, + 0,3089,3090,1,0,0,0,3090,3091,1,0,0,0,3091,3093,7,4,0,0,3092,3082, + 1,0,0,0,3092,3087,1,0,0,0,3093,3096,1,0,0,0,3094,3092,1,0,0,0,3094, + 3095,1,0,0,0,3095,155,1,0,0,0,3096,3094,1,0,0,0,3097,3098,5,51,0, + 0,3098,3099,5,451,0,0,3099,3100,5,74,0,0,3100,3101,3,716,358,0,3101, + 3103,5,380,0,0,3102,3104,5,857,0,0,3103,3102,1,0,0,0,3103,3104,1, + 0,0,0,3104,3105,1,0,0,0,3105,3106,3,702,351,0,3106,157,1,0,0,0,3107, + 3108,5,51,0,0,3108,3110,5,132,0,0,3109,3111,3,768,384,0,3110,3109, + 1,0,0,0,3110,3111,1,0,0,0,3111,3112,1,0,0,0,3112,3113,3,712,356, + 0,3113,159,1,0,0,0,3114,3115,5,51,0,0,3115,3117,5,409,0,0,3116,3118, + 3,768,384,0,3117,3116,1,0,0,0,3117,3118,1,0,0,0,3118,3119,1,0,0, + 0,3119,3120,3,642,321,0,3120,161,1,0,0,0,3121,3122,5,51,0,0,3122, + 3124,5,592,0,0,3123,3125,3,768,384,0,3124,3123,1,0,0,0,3124,3125, + 1,0,0,0,3125,3126,1,0,0,0,3126,3127,3,716,358,0,3127,163,1,0,0,0, + 3128,3129,5,51,0,0,3129,3130,5,161,0,0,3130,3131,5,137,0,0,3131, + 3133,5,835,0,0,3132,3134,3,768,384,0,3133,3132,1,0,0,0,3133,3134, + 1,0,0,0,3134,3135,1,0,0,0,3135,3136,5,883,0,0,3136,165,1,0,0,0,3137, + 3139,5,51,0,0,3138,3140,5,660,0,0,3139,3138,1,0,0,0,3139,3140,1, + 0,0,0,3140,3141,1,0,0,0,3141,3143,5,173,0,0,3142,3144,3,768,384, + 0,3143,3142,1,0,0,0,3143,3144,1,0,0,0,3144,3145,1,0,0,0,3145,3147, + 3,660,330,0,3146,3148,7,43,0,0,3147,3146,1,0,0,0,3147,3148,1,0,0, + 0,3148,167,1,0,0,0,3149,3151,5,51,0,0,3150,3152,5,180,0,0,3151,3150, + 1,0,0,0,3151,3152,1,0,0,0,3152,3153,1,0,0,0,3153,3154,5,658,0,0, + 3154,3160,3,676,338,0,3155,3157,5,380,0,0,3156,3158,5,857,0,0,3157, + 3156,1,0,0,0,3157,3158,1,0,0,0,3158,3159,1,0,0,0,3159,3161,3,702, + 351,0,3160,3155,1,0,0,0,3160,3161,1,0,0,0,3161,169,1,0,0,0,3162, + 3163,5,51,0,0,3163,3165,5,178,0,0,3164,3166,3,768,384,0,3165,3164, + 1,0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3168,3,712,356, + 0,3168,171,1,0,0,0,3169,3170,5,51,0,0,3170,3172,5,684,0,0,3171,3173, + 3,768,384,0,3172,3171,1,0,0,0,3172,3173,1,0,0,0,3173,3174,1,0,0, + 0,3174,3179,3,646,323,0,3175,3176,5,868,0,0,3176,3178,3,646,323, + 0,3177,3175,1,0,0,0,3178,3181,1,0,0,0,3179,3177,1,0,0,0,3179,3180, + 1,0,0,0,3180,3183,1,0,0,0,3181,3179,1,0,0,0,3182,3184,7,43,0,0,3183, + 3182,1,0,0,0,3183,3184,1,0,0,0,3184,173,1,0,0,0,3185,3186,5,51,0, + 0,3186,3188,5,582,0,0,3187,3189,3,768,384,0,3188,3187,1,0,0,0,3188, + 3189,1,0,0,0,3189,3190,1,0,0,0,3190,3191,3,664,332,0,3191,175,1, + 0,0,0,3192,3193,5,155,0,0,3193,3194,5,42,0,0,3194,3198,5,582,0,0, + 3195,3199,5,505,0,0,3196,3199,5,7,0,0,3197,3199,3,664,332,0,3198, + 3195,1,0,0,0,3198,3196,1,0,0,0,3198,3197,1,0,0,0,3199,3200,1,0,0, + 0,3200,3201,5,176,0,0,3201,3206,3,666,333,0,3202,3203,5,868,0,0, + 3203,3205,3,666,333,0,3204,3202,1,0,0,0,3205,3208,1,0,0,0,3206,3204, + 1,0,0,0,3206,3207,1,0,0,0,3207,3213,1,0,0,0,3208,3206,1,0,0,0,3209, + 3210,5,155,0,0,3210,3211,5,582,0,0,3211,3213,3,478,239,0,3212,3192, + 1,0,0,0,3212,3209,1,0,0,0,3213,177,1,0,0,0,3214,3215,5,141,0,0,3215, + 3216,5,173,0,0,3216,3221,3,180,90,0,3217,3218,5,868,0,0,3218,3220, + 3,180,90,0,3219,3217,1,0,0,0,3220,3223,1,0,0,0,3221,3219,1,0,0,0, + 3221,3222,1,0,0,0,3222,179,1,0,0,0,3223,3221,1,0,0,0,3224,3225,3, + 662,331,0,3225,3226,5,176,0,0,3226,3227,3,658,329,0,3227,181,1,0, + 0,0,3228,3230,5,668,0,0,3229,3231,5,173,0,0,3230,3229,1,0,0,0,3230, + 3231,1,0,0,0,3231,3232,1,0,0,0,3232,3233,3,662,331,0,3233,183,1, + 0,0,0,3234,3235,5,21,0,0,3235,3242,3,712,356,0,3236,3239,5,866,0, + 0,3237,3240,3,758,379,0,3238,3240,3,750,375,0,3239,3237,1,0,0,0, + 3239,3238,1,0,0,0,3239,3240,1,0,0,0,3240,3241,1,0,0,0,3241,3243, + 5,867,0,0,3242,3236,1,0,0,0,3242,3243,1,0,0,0,3243,185,1,0,0,0,3244, + 3247,3,240,120,0,3245,3247,3,242,121,0,3246,3244,1,0,0,0,3246,3245, + 1,0,0,0,3247,187,1,0,0,0,3248,3249,5,371,0,0,3249,3250,3,750,375, + 0,3250,189,1,0,0,0,3251,3256,3,244,122,0,3252,3256,3,246,123,0,3253, + 3256,3,248,124,0,3254,3256,3,250,125,0,3255,3251,1,0,0,0,3255,3252, + 1,0,0,0,3255,3253,1,0,0,0,3255,3254,1,0,0,0,3256,191,1,0,0,0,3257, + 3259,5,86,0,0,3258,3260,7,44,0,0,3259,3258,1,0,0,0,3259,3260,1,0, + 0,0,3260,3262,1,0,0,0,3261,3263,5,79,0,0,3262,3261,1,0,0,0,3262, + 3263,1,0,0,0,3263,3265,1,0,0,0,3264,3266,5,88,0,0,3265,3264,1,0, + 0,0,3265,3266,1,0,0,0,3266,3267,1,0,0,0,3267,3274,3,662,331,0,3268, + 3269,5,130,0,0,3269,3271,5,866,0,0,3270,3272,3,680,340,0,3271,3270, + 1,0,0,0,3271,3272,1,0,0,0,3272,3273,1,0,0,0,3273,3275,5,867,0,0, + 3274,3268,1,0,0,0,3274,3275,1,0,0,0,3275,3287,1,0,0,0,3276,3278, + 3,270,135,0,3277,3276,1,0,0,0,3277,3278,1,0,0,0,3278,3281,1,0,0, + 0,3279,3282,3,752,376,0,3280,3282,3,196,98,0,3281,3279,1,0,0,0,3281, + 3280,1,0,0,0,3281,3282,1,0,0,0,3282,3284,1,0,0,0,3283,3285,3,194, + 97,0,3284,3283,1,0,0,0,3284,3285,1,0,0,0,3285,3288,1,0,0,0,3286, + 3288,3,232,116,0,3287,3277,1,0,0,0,3287,3286,1,0,0,0,3288,3290,1, + 0,0,0,3289,3291,3,194,97,0,3290,3289,1,0,0,0,3290,3291,1,0,0,0,3291, + 3304,1,0,0,0,3292,3293,5,119,0,0,3293,3294,5,373,0,0,3294,3295,5, + 92,0,0,3295,3296,5,185,0,0,3296,3301,3,234,117,0,3297,3298,5,868, + 0,0,3298,3300,3,234,117,0,3299,3297,1,0,0,0,3300,3303,1,0,0,0,3301, + 3299,1,0,0,0,3301,3302,1,0,0,0,3302,3305,1,0,0,0,3303,3301,1,0,0, + 0,3304,3292,1,0,0,0,3304,3305,1,0,0,0,3305,193,1,0,0,0,3306,3307, + 5,13,0,0,3307,3309,3,716,358,0,3308,3310,3,270,135,0,3309,3308,1, + 0,0,0,3309,3310,1,0,0,0,3310,195,1,0,0,0,3311,3316,3,210,105,0,3312, + 3313,5,173,0,0,3313,3316,3,662,331,0,3314,3316,3,230,115,0,3315, + 3311,1,0,0,0,3315,3312,1,0,0,0,3315,3314,1,0,0,0,3316,197,1,0,0, + 0,3317,3323,3,200,100,0,3318,3320,5,828,0,0,3319,3321,7,45,0,0,3320, + 3319,1,0,0,0,3320,3321,1,0,0,0,3321,3322,1,0,0,0,3322,3324,3,200, + 100,0,3323,3318,1,0,0,0,3324,3325,1,0,0,0,3325,3323,1,0,0,0,3325, + 3326,1,0,0,0,3326,199,1,0,0,0,3327,3329,5,866,0,0,3328,3327,1,0, + 0,0,3328,3329,1,0,0,0,3329,3330,1,0,0,0,3330,3332,3,282,141,0,3331, + 3333,5,867,0,0,3332,3331,1,0,0,0,3332,3333,1,0,0,0,3333,201,1,0, + 0,0,3334,3335,5,103,0,0,3335,3337,5,360,0,0,3336,3338,7,46,0,0,3337, + 3336,1,0,0,0,3337,3338,1,0,0,0,3338,3340,1,0,0,0,3339,3341,5,450, + 0,0,3340,3339,1,0,0,0,3340,3341,1,0,0,0,3341,3342,1,0,0,0,3342,3343, + 5,83,0,0,3343,3345,5,882,0,0,3344,3346,7,7,0,0,3345,3344,1,0,0,0, + 3345,3346,1,0,0,0,3346,3347,1,0,0,0,3347,3348,5,88,0,0,3348,3349, + 5,173,0,0,3349,3355,3,662,331,0,3350,3351,5,130,0,0,3351,3352,5, + 866,0,0,3352,3353,3,680,340,0,3353,3354,5,867,0,0,3354,3356,1,0, + 0,0,3355,3350,1,0,0,0,3355,3356,1,0,0,0,3356,3360,1,0,0,0,3357,3358, + 5,26,0,0,3358,3359,5,155,0,0,3359,3361,3,698,349,0,3360,3357,1,0, + 0,0,3360,3361,1,0,0,0,3361,3368,1,0,0,0,3362,3364,7,47,0,0,3363, + 3365,3,314,157,0,3364,3363,1,0,0,0,3365,3366,1,0,0,0,3366,3364,1, + 0,0,0,3366,3367,1,0,0,0,3367,3369,1,0,0,0,3368,3362,1,0,0,0,3368, + 3369,1,0,0,0,3369,3376,1,0,0,0,3370,3372,5,102,0,0,3371,3373,3,316, + 158,0,3372,3371,1,0,0,0,3373,3374,1,0,0,0,3374,3372,1,0,0,0,3374, + 3375,1,0,0,0,3375,3377,1,0,0,0,3376,3370,1,0,0,0,3376,3377,1,0,0, + 0,3377,3382,1,0,0,0,3378,3379,5,79,0,0,3379,3380,3,722,361,0,3380, + 3381,7,48,0,0,3381,3383,1,0,0,0,3382,3378,1,0,0,0,3382,3383,1,0, + 0,0,3383,3395,1,0,0,0,3384,3385,5,866,0,0,3385,3390,3,236,118,0, + 3386,3387,5,868,0,0,3387,3389,3,236,118,0,3388,3386,1,0,0,0,3389, + 3392,1,0,0,0,3390,3388,1,0,0,0,3390,3391,1,0,0,0,3391,3393,1,0,0, + 0,3392,3390,1,0,0,0,3393,3394,5,867,0,0,3394,3396,1,0,0,0,3395,3384, + 1,0,0,0,3395,3396,1,0,0,0,3396,3406,1,0,0,0,3397,3398,5,155,0,0, + 3398,3403,3,234,117,0,3399,3400,5,868,0,0,3400,3402,3,234,117,0, + 3401,3399,1,0,0,0,3402,3405,1,0,0,0,3403,3401,1,0,0,0,3403,3404, + 1,0,0,0,3404,3407,1,0,0,0,3405,3403,1,0,0,0,3406,3397,1,0,0,0,3406, + 3407,1,0,0,0,3407,203,1,0,0,0,3408,3409,5,103,0,0,3409,3411,5,695, + 0,0,3410,3412,7,46,0,0,3411,3410,1,0,0,0,3411,3412,1,0,0,0,3412, + 3414,1,0,0,0,3413,3415,5,450,0,0,3414,3413,1,0,0,0,3414,3415,1,0, + 0,0,3415,3416,1,0,0,0,3416,3417,5,83,0,0,3417,3419,5,882,0,0,3418, + 3420,7,7,0,0,3419,3418,1,0,0,0,3419,3420,1,0,0,0,3420,3421,1,0,0, + 0,3421,3422,5,88,0,0,3422,3423,5,173,0,0,3423,3427,3,662,331,0,3424, + 3425,5,26,0,0,3425,3426,5,155,0,0,3426,3428,3,698,349,0,3427,3424, + 1,0,0,0,3427,3428,1,0,0,0,3428,3439,1,0,0,0,3429,3430,5,587,0,0, + 3430,3431,5,423,0,0,3431,3433,5,20,0,0,3432,3434,5,859,0,0,3433, + 3432,1,0,0,0,3433,3434,1,0,0,0,3434,3435,1,0,0,0,3435,3437,5,882, + 0,0,3436,3438,5,858,0,0,3437,3436,1,0,0,0,3437,3438,1,0,0,0,3438, + 3440,1,0,0,0,3439,3429,1,0,0,0,3439,3440,1,0,0,0,3440,3445,1,0,0, + 0,3441,3442,5,79,0,0,3442,3443,3,722,361,0,3443,3444,7,48,0,0,3444, + 3446,1,0,0,0,3445,3441,1,0,0,0,3445,3446,1,0,0,0,3446,3458,1,0,0, + 0,3447,3448,5,866,0,0,3448,3453,3,236,118,0,3449,3450,5,868,0,0, + 3450,3452,3,236,118,0,3451,3449,1,0,0,0,3452,3455,1,0,0,0,3453,3451, + 1,0,0,0,3453,3454,1,0,0,0,3454,3456,1,0,0,0,3455,3453,1,0,0,0,3456, + 3457,5,867,0,0,3457,3459,1,0,0,0,3458,3447,1,0,0,0,3458,3459,1,0, + 0,0,3459,3469,1,0,0,0,3460,3461,5,155,0,0,3461,3466,3,234,117,0, + 3462,3463,5,868,0,0,3463,3465,3,234,117,0,3464,3462,1,0,0,0,3465, + 3468,1,0,0,0,3466,3464,1,0,0,0,3466,3467,1,0,0,0,3467,3470,1,0,0, + 0,3468,3466,1,0,0,0,3469,3460,1,0,0,0,3469,3470,1,0,0,0,3470,205, + 1,0,0,0,3471,3472,5,866,0,0,3472,3474,3,224,112,0,3473,3475,3,258, + 129,0,3474,3473,1,0,0,0,3474,3475,1,0,0,0,3475,3477,1,0,0,0,3476, + 3478,3,328,164,0,3477,3476,1,0,0,0,3477,3478,1,0,0,0,3478,3479,1, + 0,0,0,3479,3481,5,867,0,0,3480,3482,3,258,129,0,3481,3480,1,0,0, + 0,3481,3482,1,0,0,0,3482,3484,1,0,0,0,3483,3485,3,328,164,0,3484, + 3483,1,0,0,0,3484,3485,1,0,0,0,3485,3487,1,0,0,0,3486,3488,3,312, + 156,0,3487,3486,1,0,0,0,3487,3488,1,0,0,0,3488,207,1,0,0,0,3489, + 3491,5,143,0,0,3490,3492,7,49,0,0,3491,3490,1,0,0,0,3491,3492,1, + 0,0,0,3492,3494,1,0,0,0,3493,3495,5,88,0,0,3494,3493,1,0,0,0,3494, + 3495,1,0,0,0,3495,3496,1,0,0,0,3496,3502,3,662,331,0,3497,3498,5, + 130,0,0,3498,3499,5,866,0,0,3499,3500,3,680,340,0,3500,3501,5,867, + 0,0,3501,3503,1,0,0,0,3502,3497,1,0,0,0,3502,3503,1,0,0,0,3503,3512, + 1,0,0,0,3504,3505,5,866,0,0,3505,3506,3,670,335,0,3506,3507,5,867, + 0,0,3507,3509,1,0,0,0,3508,3504,1,0,0,0,3508,3509,1,0,0,0,3509,3510, + 1,0,0,0,3510,3513,3,228,114,0,3511,3513,3,232,116,0,3512,3508,1, + 0,0,0,3512,3511,1,0,0,0,3513,209,1,0,0,0,3514,3518,3,282,141,0,3515, + 3517,3,284,142,0,3516,3515,1,0,0,0,3517,3520,1,0,0,0,3518,3516,1, + 0,0,0,3518,3519,1,0,0,0,3519,3529,1,0,0,0,3520,3518,1,0,0,0,3521, + 3523,5,181,0,0,3522,3524,7,45,0,0,3523,3522,1,0,0,0,3523,3524,1, + 0,0,0,3524,3527,1,0,0,0,3525,3528,3,282,141,0,3526,3528,3,280,140, + 0,3527,3525,1,0,0,0,3527,3526,1,0,0,0,3528,3530,1,0,0,0,3529,3521, + 1,0,0,0,3529,3530,1,0,0,0,3530,3535,1,0,0,0,3531,3532,5,868,0,0, + 3532,3534,3,286,143,0,3533,3531,1,0,0,0,3534,3537,1,0,0,0,3535,3533, + 1,0,0,0,3535,3536,1,0,0,0,3536,3539,1,0,0,0,3537,3535,1,0,0,0,3538, + 3540,3,258,129,0,3539,3538,1,0,0,0,3539,3540,1,0,0,0,3540,3542,1, + 0,0,0,3541,3543,3,328,164,0,3542,3541,1,0,0,0,3542,3543,1,0,0,0, + 3543,3545,1,0,0,0,3544,3546,3,238,119,0,3545,3544,1,0,0,0,3545,3546, + 1,0,0,0,3546,3548,1,0,0,0,3547,3549,3,312,156,0,3548,3547,1,0,0, + 0,3548,3549,1,0,0,0,3549,3574,1,0,0,0,3550,3554,3,280,140,0,3551, + 3553,3,284,142,0,3552,3551,1,0,0,0,3553,3556,1,0,0,0,3554,3552,1, + 0,0,0,3554,3555,1,0,0,0,3555,3562,1,0,0,0,3556,3554,1,0,0,0,3557, + 3559,5,181,0,0,3558,3560,7,45,0,0,3559,3558,1,0,0,0,3559,3560,1, + 0,0,0,3560,3561,1,0,0,0,3561,3563,3,280,140,0,3562,3557,1,0,0,0, + 3562,3563,1,0,0,0,3563,3565,1,0,0,0,3564,3566,3,258,129,0,3565,3564, + 1,0,0,0,3565,3566,1,0,0,0,3566,3568,1,0,0,0,3567,3569,3,328,164, + 0,3568,3567,1,0,0,0,3568,3569,1,0,0,0,3569,3571,1,0,0,0,3570,3572, + 3,238,119,0,3571,3570,1,0,0,0,3571,3572,1,0,0,0,3572,3574,1,0,0, + 0,3573,3514,1,0,0,0,3573,3550,1,0,0,0,3574,211,1,0,0,0,3575,3577, + 3,50,25,0,3576,3575,1,0,0,0,3576,3577,1,0,0,0,3577,3578,1,0,0,0, + 3578,3580,3,214,107,0,3579,3581,3,258,129,0,3580,3579,1,0,0,0,3580, + 3581,1,0,0,0,3581,3583,1,0,0,0,3582,3584,3,328,164,0,3583,3582,1, + 0,0,0,3583,3584,1,0,0,0,3584,3586,1,0,0,0,3585,3587,3,312,156,0, + 3586,3585,1,0,0,0,3586,3587,1,0,0,0,3587,213,1,0,0,0,3588,3589,6, + 107,-1,0,3589,3590,3,216,108,0,3590,3605,1,0,0,0,3591,3592,10,2, + 0,0,3592,3594,5,181,0,0,3593,3595,7,45,0,0,3594,3593,1,0,0,0,3594, + 3595,1,0,0,0,3595,3596,1,0,0,0,3596,3604,3,216,108,0,3597,3598,10, + 1,0,0,3598,3600,5,59,0,0,3599,3601,7,45,0,0,3600,3599,1,0,0,0,3600, + 3601,1,0,0,0,3601,3602,1,0,0,0,3602,3604,3,216,108,0,3603,3591,1, + 0,0,0,3603,3597,1,0,0,0,3604,3607,1,0,0,0,3605,3603,1,0,0,0,3605, + 3606,1,0,0,0,3606,215,1,0,0,0,3607,3605,1,0,0,0,3608,3609,6,108, + -1,0,3609,3610,3,218,109,0,3610,3619,1,0,0,0,3611,3612,10,1,0,0, + 3612,3614,5,828,0,0,3613,3615,7,45,0,0,3614,3613,1,0,0,0,3614,3615, + 1,0,0,0,3615,3616,1,0,0,0,3616,3618,3,218,109,0,3617,3611,1,0,0, + 0,3618,3621,1,0,0,0,3619,3617,1,0,0,0,3619,3620,1,0,0,0,3620,217, + 1,0,0,0,3621,3619,1,0,0,0,3622,3637,3,226,113,0,3623,3624,5,866, + 0,0,3624,3626,3,214,107,0,3625,3627,3,258,129,0,3626,3625,1,0,0, + 0,3626,3627,1,0,0,0,3627,3629,1,0,0,0,3628,3630,3,328,164,0,3629, + 3628,1,0,0,0,3629,3630,1,0,0,0,3630,3632,1,0,0,0,3631,3633,3,312, + 156,0,3632,3631,1,0,0,0,3632,3633,1,0,0,0,3633,3634,1,0,0,0,3634, + 3635,5,867,0,0,3635,3637,1,0,0,0,3636,3622,1,0,0,0,3636,3623,1,0, + 0,0,3637,219,1,0,0,0,3638,3641,3,254,127,0,3639,3641,3,256,128,0, + 3640,3638,1,0,0,0,3640,3639,1,0,0,0,3641,221,1,0,0,0,3642,3646,3, + 230,115,0,3643,3644,5,125,0,0,3644,3645,5,20,0,0,3645,3647,3,684, + 342,0,3646,3643,1,0,0,0,3646,3647,1,0,0,0,3647,3650,1,0,0,0,3648, + 3649,5,100,0,0,3649,3651,3,330,165,0,3650,3648,1,0,0,0,3650,3651, + 1,0,0,0,3651,223,1,0,0,0,3652,3657,3,226,113,0,3653,3654,7,50,0, + 0,3654,3656,3,226,113,0,3655,3653,1,0,0,0,3656,3659,1,0,0,0,3657, + 3655,1,0,0,0,3657,3658,1,0,0,0,3658,3661,1,0,0,0,3659,3657,1,0,0, + 0,3660,3662,3,258,129,0,3661,3660,1,0,0,0,3661,3662,1,0,0,0,3662, + 3664,1,0,0,0,3663,3665,3,328,164,0,3664,3663,1,0,0,0,3664,3665,1, + 0,0,0,3665,3667,1,0,0,0,3666,3668,3,312,156,0,3667,3666,1,0,0,0, + 3667,3668,1,0,0,0,3668,225,1,0,0,0,3669,3673,3,210,105,0,3670,3673, + 3,628,314,0,3671,3673,3,222,111,0,3672,3669,1,0,0,0,3672,3670,1, + 0,0,0,3672,3671,1,0,0,0,3673,227,1,0,0,0,3674,3680,3,210,105,0,3675, + 3676,5,173,0,0,3676,3680,3,662,331,0,3677,3680,3,752,376,0,3678, + 3680,3,230,115,0,3679,3674,1,0,0,0,3679,3675,1,0,0,0,3679,3677,1, + 0,0,0,3679,3678,1,0,0,0,3680,229,1,0,0,0,3681,3682,5,189,0,0,3682, + 3683,5,586,0,0,3683,3689,3,754,377,0,3684,3685,5,868,0,0,3685,3686, + 5,586,0,0,3686,3688,3,754,377,0,3687,3684,1,0,0,0,3688,3691,1,0, + 0,0,3689,3687,1,0,0,0,3689,3690,1,0,0,0,3690,231,1,0,0,0,3691,3689, + 1,0,0,0,3692,3693,5,155,0,0,3693,3698,3,234,117,0,3694,3695,5,868, + 0,0,3695,3697,3,234,117,0,3696,3694,1,0,0,0,3697,3700,1,0,0,0,3698, + 3696,1,0,0,0,3698,3699,1,0,0,0,3699,233,1,0,0,0,3700,3698,1,0,0, + 0,3701,3702,3,672,336,0,3702,3703,5,857,0,0,3703,3704,3,756,378, + 0,3704,235,1,0,0,0,3705,3708,3,716,358,0,3706,3708,5,892,0,0,3707, + 3705,1,0,0,0,3707,3706,1,0,0,0,3708,237,1,0,0,0,3709,3710,5,65,0, + 0,3710,3720,7,51,0,0,3711,3712,5,510,0,0,3712,3717,3,662,331,0,3713, + 3714,5,868,0,0,3714,3716,3,662,331,0,3715,3713,1,0,0,0,3716,3719, + 1,0,0,0,3717,3715,1,0,0,0,3717,3718,1,0,0,0,3718,3721,1,0,0,0,3719, + 3717,1,0,0,0,3720,3711,1,0,0,0,3720,3721,1,0,0,0,3721,3724,1,0,0, + 0,3722,3723,7,52,0,0,3723,3725,5,105,0,0,3724,3722,1,0,0,0,3724, + 3725,1,0,0,0,3725,3731,1,0,0,0,3726,3727,5,104,0,0,3727,3728,5,80, + 0,0,3728,3729,5,594,0,0,3729,3731,5,491,0,0,3730,3709,1,0,0,0,3730, + 3726,1,0,0,0,3731,239,1,0,0,0,3732,3734,5,44,0,0,3733,3735,5,107, + 0,0,3734,3733,1,0,0,0,3734,3735,1,0,0,0,3735,3737,1,0,0,0,3736,3738, + 5,549,0,0,3737,3736,1,0,0,0,3737,3738,1,0,0,0,3738,3740,1,0,0,0, + 3739,3741,5,79,0,0,3740,3739,1,0,0,0,3740,3741,1,0,0,0,3741,3742, + 1,0,0,0,3742,3743,5,68,0,0,3743,3748,3,662,331,0,3744,3746,5,13, + 0,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746,3747,1,0,0,0,3747,3749, + 3,716,358,0,3748,3745,1,0,0,0,3748,3749,1,0,0,0,3749,3755,1,0,0, + 0,3750,3751,5,130,0,0,3751,3752,5,866,0,0,3752,3753,3,680,340,0, + 3753,3754,5,867,0,0,3754,3756,1,0,0,0,3755,3750,1,0,0,0,3755,3756, + 1,0,0,0,3756,3759,1,0,0,0,3757,3758,5,192,0,0,3758,3760,3,814,407, + 0,3759,3757,1,0,0,0,3759,3760,1,0,0,0,3760,3762,1,0,0,0,3761,3763, + 3,258,129,0,3762,3761,1,0,0,0,3762,3763,1,0,0,0,3763,3766,1,0,0, + 0,3764,3765,5,100,0,0,3765,3767,3,330,165,0,3766,3764,1,0,0,0,3766, + 3767,1,0,0,0,3767,241,1,0,0,0,3768,3770,5,44,0,0,3769,3771,5,107, + 0,0,3770,3769,1,0,0,0,3770,3771,1,0,0,0,3771,3773,1,0,0,0,3772,3774, + 5,549,0,0,3773,3772,1,0,0,0,3773,3774,1,0,0,0,3774,3776,1,0,0,0, + 3775,3777,5,79,0,0,3776,3775,1,0,0,0,3776,3777,1,0,0,0,3777,3817, + 1,0,0,0,3778,3781,3,662,331,0,3779,3780,5,865,0,0,3780,3782,5,850, + 0,0,3781,3779,1,0,0,0,3781,3782,1,0,0,0,3782,3791,1,0,0,0,3783,3784, + 5,868,0,0,3784,3787,3,662,331,0,3785,3786,5,865,0,0,3786,3788,5, + 850,0,0,3787,3785,1,0,0,0,3787,3788,1,0,0,0,3788,3790,1,0,0,0,3789, + 3783,1,0,0,0,3790,3793,1,0,0,0,3791,3789,1,0,0,0,3791,3792,1,0,0, + 0,3792,3794,1,0,0,0,3793,3791,1,0,0,0,3794,3795,5,68,0,0,3795,3796, + 3,262,131,0,3796,3818,1,0,0,0,3797,3798,5,68,0,0,3798,3801,3,662, + 331,0,3799,3800,5,865,0,0,3800,3802,5,850,0,0,3801,3799,1,0,0,0, + 3801,3802,1,0,0,0,3802,3811,1,0,0,0,3803,3804,5,868,0,0,3804,3807, + 3,662,331,0,3805,3806,5,865,0,0,3806,3808,5,850,0,0,3807,3805,1, + 0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0,0,3809,3803,1,0,0,0,3810, + 3813,1,0,0,0,3811,3809,1,0,0,0,3811,3812,1,0,0,0,3812,3814,1,0,0, + 0,3813,3811,1,0,0,0,3814,3815,5,188,0,0,3815,3816,3,262,131,0,3816, + 3818,1,0,0,0,3817,3778,1,0,0,0,3817,3797,1,0,0,0,3818,3821,1,0,0, + 0,3819,3820,5,192,0,0,3820,3822,3,814,407,0,3821,3819,1,0,0,0,3821, + 3822,1,0,0,0,3822,243,1,0,0,0,3823,3824,5,417,0,0,3824,3825,3,662, + 331,0,3825,3830,5,516,0,0,3826,3828,5,13,0,0,3827,3826,1,0,0,0,3827, + 3828,1,0,0,0,3828,3829,1,0,0,0,3829,3831,3,716,358,0,3830,3827,1, + 0,0,0,3830,3831,1,0,0,0,3831,245,1,0,0,0,3832,3833,5,417,0,0,3833, + 3834,3,662,331,0,3834,3835,5,135,0,0,3835,3842,3,652,326,0,3836, + 3837,3,824,412,0,3837,3838,5,866,0,0,3838,3839,3,758,379,0,3839, + 3840,5,867,0,0,3840,3843,1,0,0,0,3841,3843,7,53,0,0,3842,3836,1, + 0,0,0,3842,3841,1,0,0,0,3843,3846,1,0,0,0,3844,3845,5,192,0,0,3845, + 3847,3,814,407,0,3846,3844,1,0,0,0,3846,3847,1,0,0,0,3847,3850,1, + 0,0,0,3848,3849,5,100,0,0,3849,3851,3,330,165,0,3850,3848,1,0,0, + 0,3850,3851,1,0,0,0,3851,247,1,0,0,0,3852,3853,5,417,0,0,3853,3854, + 3,662,331,0,3854,3855,5,135,0,0,3855,3858,7,54,0,0,3856,3857,5,192, + 0,0,3857,3859,3,814,407,0,3858,3856,1,0,0,0,3858,3859,1,0,0,0,3859, + 3862,1,0,0,0,3860,3861,5,100,0,0,3861,3863,3,330,165,0,3862,3860, + 1,0,0,0,3862,3863,1,0,0,0,3863,249,1,0,0,0,3864,3865,5,417,0,0,3865, + 3866,3,662,331,0,3866,3867,5,334,0,0,3867,251,1,0,0,0,3868,3869, + 5,425,0,0,3869,3870,5,173,0,0,3870,3871,5,68,0,0,3871,3876,3,726, + 363,0,3872,3873,5,868,0,0,3873,3875,3,726,363,0,3874,3872,1,0,0, + 0,3875,3878,1,0,0,0,3876,3874,1,0,0,0,3876,3877,1,0,0,0,3877,253, + 1,0,0,0,3878,3876,1,0,0,0,3879,3881,5,185,0,0,3880,3882,5,107,0, + 0,3881,3880,1,0,0,0,3881,3882,1,0,0,0,3882,3884,1,0,0,0,3883,3885, + 5,79,0,0,3884,3883,1,0,0,0,3884,3885,1,0,0,0,3885,3886,1,0,0,0,3886, + 3891,3,662,331,0,3887,3889,5,13,0,0,3888,3887,1,0,0,0,3888,3889, + 1,0,0,0,3889,3890,1,0,0,0,3890,3892,3,716,358,0,3891,3888,1,0,0, + 0,3891,3892,1,0,0,0,3892,3893,1,0,0,0,3893,3894,5,155,0,0,3894,3899, + 3,234,117,0,3895,3896,5,868,0,0,3896,3898,3,234,117,0,3897,3895, + 1,0,0,0,3898,3901,1,0,0,0,3899,3897,1,0,0,0,3899,3900,1,0,0,0,3900, + 3904,1,0,0,0,3901,3899,1,0,0,0,3902,3903,5,192,0,0,3903,3905,3,814, + 407,0,3904,3902,1,0,0,0,3904,3905,1,0,0,0,3905,3907,1,0,0,0,3906, + 3908,3,258,129,0,3907,3906,1,0,0,0,3907,3908,1,0,0,0,3908,3910,1, + 0,0,0,3909,3911,3,328,164,0,3910,3909,1,0,0,0,3910,3911,1,0,0,0, + 3911,255,1,0,0,0,3912,3914,5,185,0,0,3913,3915,5,107,0,0,3914,3913, + 1,0,0,0,3914,3915,1,0,0,0,3915,3917,1,0,0,0,3916,3918,5,79,0,0,3917, + 3916,1,0,0,0,3917,3918,1,0,0,0,3918,3919,1,0,0,0,3919,3920,3,262, + 131,0,3920,3921,5,155,0,0,3921,3926,3,234,117,0,3922,3923,5,868, + 0,0,3923,3925,3,234,117,0,3924,3922,1,0,0,0,3925,3928,1,0,0,0,3926, + 3924,1,0,0,0,3926,3927,1,0,0,0,3927,3931,1,0,0,0,3928,3926,1,0,0, + 0,3929,3930,5,192,0,0,3930,3932,3,814,407,0,3931,3929,1,0,0,0,3931, + 3932,1,0,0,0,3932,257,1,0,0,0,3933,3934,5,125,0,0,3934,3935,5,20, + 0,0,3935,3940,3,260,130,0,3936,3937,5,868,0,0,3937,3939,3,260,130, + 0,3938,3936,1,0,0,0,3939,3942,1,0,0,0,3940,3938,1,0,0,0,3940,3941, + 1,0,0,0,3941,259,1,0,0,0,3942,3940,1,0,0,0,3943,3945,3,814,407,0, + 3944,3946,7,55,0,0,3945,3944,1,0,0,0,3945,3946,1,0,0,0,3946,261, + 1,0,0,0,3947,3952,3,264,132,0,3948,3949,5,868,0,0,3949,3951,3,264, + 132,0,3950,3948,1,0,0,0,3951,3954,1,0,0,0,3952,3950,1,0,0,0,3952, + 3953,1,0,0,0,3953,263,1,0,0,0,3954,3952,1,0,0,0,3955,3959,3,266, + 133,0,3956,3958,3,276,138,0,3957,3956,1,0,0,0,3958,3961,1,0,0,0, + 3959,3957,1,0,0,0,3959,3960,1,0,0,0,3960,3974,1,0,0,0,3961,3959, + 1,0,0,0,3962,3963,5,866,0,0,3963,3967,3,266,133,0,3964,3966,3,276, + 138,0,3965,3964,1,0,0,0,3966,3969,1,0,0,0,3967,3965,1,0,0,0,3967, + 3968,1,0,0,0,3968,3970,1,0,0,0,3969,3967,1,0,0,0,3970,3971,5,867, + 0,0,3971,3974,1,0,0,0,3972,3974,3,288,144,0,3973,3955,1,0,0,0,3973, + 3962,1,0,0,0,3973,3972,1,0,0,0,3974,265,1,0,0,0,3975,3981,3,662, + 331,0,3976,3977,5,130,0,0,3977,3978,5,866,0,0,3978,3979,3,680,340, + 0,3979,3980,5,867,0,0,3980,3982,1,0,0,0,3981,3976,1,0,0,0,3981,3982, + 1,0,0,0,3982,3987,1,0,0,0,3983,3985,5,13,0,0,3984,3983,1,0,0,0,3984, + 3985,1,0,0,0,3985,3986,1,0,0,0,3986,3988,3,716,358,0,3987,3984,1, + 0,0,0,3987,3988,1,0,0,0,3988,3997,1,0,0,0,3989,3994,3,272,136,0, + 3990,3991,5,868,0,0,3991,3993,3,272,136,0,3992,3990,1,0,0,0,3993, + 3996,1,0,0,0,3994,3992,1,0,0,0,3994,3995,1,0,0,0,3995,3998,1,0,0, + 0,3996,3994,1,0,0,0,3997,3989,1,0,0,0,3997,3998,1,0,0,0,3998,4015, + 1,0,0,0,3999,4001,5,95,0,0,4000,3999,1,0,0,0,4000,4001,1,0,0,0,4001, + 4002,1,0,0,0,4002,4004,3,268,134,0,4003,4005,5,13,0,0,4004,4003, + 1,0,0,0,4004,4005,1,0,0,0,4005,4006,1,0,0,0,4006,4008,3,716,358, + 0,4007,4009,3,270,135,0,4008,4007,1,0,0,0,4008,4009,1,0,0,0,4009, + 4015,1,0,0,0,4010,4011,5,866,0,0,4011,4012,3,262,131,0,4012,4013, + 5,867,0,0,4013,4015,1,0,0,0,4014,3975,1,0,0,0,4014,4000,1,0,0,0, + 4014,4010,1,0,0,0,4015,267,1,0,0,0,4016,4022,3,210,105,0,4017,4018, + 5,866,0,0,4018,4019,3,210,105,0,4019,4020,5,867,0,0,4020,4022,1, + 0,0,0,4021,4016,1,0,0,0,4021,4017,1,0,0,0,4022,269,1,0,0,0,4023, + 4024,5,866,0,0,4024,4025,3,670,335,0,4025,4026,5,867,0,0,4026,271, + 1,0,0,0,4027,4028,7,56,0,0,4028,4031,7,19,0,0,4029,4030,5,65,0,0, + 4030,4032,3,274,137,0,4031,4029,1,0,0,0,4031,4032,1,0,0,0,4032,4033, + 1,0,0,0,4033,4035,5,866,0,0,4034,4036,3,650,325,0,4035,4034,1,0, + 0,0,4035,4036,1,0,0,0,4036,4037,1,0,0,0,4037,4038,5,867,0,0,4038, + 273,1,0,0,0,4039,4045,5,91,0,0,4040,4041,5,125,0,0,4041,4045,5,20, + 0,0,4042,4043,5,74,0,0,4043,4045,5,20,0,0,4044,4039,1,0,0,0,4044, + 4040,1,0,0,0,4044,4042,1,0,0,0,4045,275,1,0,0,0,4046,4048,7,57,0, + 0,4047,4046,1,0,0,0,4047,4048,1,0,0,0,4048,4049,1,0,0,0,4049,4051, + 5,91,0,0,4050,4052,5,95,0,0,4051,4050,1,0,0,0,4051,4052,1,0,0,0, + 4052,4053,1,0,0,0,4053,4057,3,266,133,0,4054,4056,3,278,139,0,4055, + 4054,1,0,0,0,4056,4059,1,0,0,0,4057,4055,1,0,0,0,4057,4058,1,0,0, + 0,4058,4096,1,0,0,0,4059,4057,1,0,0,0,4060,4061,5,172,0,0,4061,4065, + 3,266,133,0,4062,4064,3,278,139,0,4063,4062,1,0,0,0,4064,4067,1, + 0,0,0,4065,4063,1,0,0,0,4065,4066,1,0,0,0,4066,4096,1,0,0,0,4067, + 4065,1,0,0,0,4068,4070,7,58,0,0,4069,4071,5,127,0,0,4070,4069,1, + 0,0,0,4070,4071,1,0,0,0,4071,4072,1,0,0,0,4072,4074,5,91,0,0,4073, + 4075,5,95,0,0,4074,4073,1,0,0,0,4074,4075,1,0,0,0,4075,4076,1,0, + 0,0,4076,4080,3,266,133,0,4077,4079,3,278,139,0,4078,4077,1,0,0, + 0,4079,4082,1,0,0,0,4080,4078,1,0,0,0,4080,4081,1,0,0,0,4081,4096, + 1,0,0,0,4082,4080,1,0,0,0,4083,4091,5,113,0,0,4084,4087,5,84,0,0, + 4085,4087,7,58,0,0,4086,4084,1,0,0,0,4086,4085,1,0,0,0,4087,4089, + 1,0,0,0,4088,4090,5,127,0,0,4089,4088,1,0,0,0,4089,4090,1,0,0,0, + 4090,4092,1,0,0,0,4091,4086,1,0,0,0,4091,4092,1,0,0,0,4092,4093, + 1,0,0,0,4093,4094,5,91,0,0,4094,4096,3,266,133,0,4095,4047,1,0,0, + 0,4095,4060,1,0,0,0,4095,4068,1,0,0,0,4095,4083,1,0,0,0,4096,277, + 1,0,0,0,4097,4098,5,119,0,0,4098,4105,3,814,407,0,4099,4100,5,188, + 0,0,4100,4101,5,866,0,0,4101,4102,3,670,335,0,4102,4103,5,867,0, + 0,4103,4105,1,0,0,0,4104,4097,1,0,0,0,4104,4099,1,0,0,0,4105,279, + 1,0,0,0,4106,4107,5,866,0,0,4107,4108,3,282,141,0,4108,4109,5,867, + 0,0,4109,4115,1,0,0,0,4110,4111,5,866,0,0,4111,4112,3,280,140,0, + 4112,4113,5,867,0,0,4113,4115,1,0,0,0,4114,4106,1,0,0,0,4114,4110, + 1,0,0,0,4115,281,1,0,0,0,4116,4120,5,154,0,0,4117,4119,3,298,149, + 0,4118,4117,1,0,0,0,4119,4122,1,0,0,0,4120,4118,1,0,0,0,4120,4121, + 1,0,0,0,4121,4123,1,0,0,0,4122,4120,1,0,0,0,4123,4125,3,300,150, + 0,4124,4126,3,312,156,0,4125,4124,1,0,0,0,4125,4126,1,0,0,0,4126, + 4127,1,0,0,0,4127,4129,3,318,159,0,4128,4130,3,320,160,0,4129,4128, + 1,0,0,0,4129,4130,1,0,0,0,4130,4132,1,0,0,0,4131,4133,3,322,161, + 0,4132,4131,1,0,0,0,4132,4133,1,0,0,0,4133,4135,1,0,0,0,4134,4136, + 3,324,162,0,4135,4134,1,0,0,0,4135,4136,1,0,0,0,4136,4138,1,0,0, + 0,4137,4139,3,258,129,0,4138,4137,1,0,0,0,4138,4139,1,0,0,0,4139, + 4141,1,0,0,0,4140,4142,3,328,164,0,4141,4140,1,0,0,0,4141,4142,1, + 0,0,0,4142,4144,1,0,0,0,4143,4145,3,312,156,0,4144,4143,1,0,0,0, + 4144,4145,1,0,0,0,4145,4147,1,0,0,0,4146,4148,3,284,142,0,4147,4146, + 1,0,0,0,4147,4148,1,0,0,0,4148,283,1,0,0,0,4149,4151,5,181,0,0,4150, + 4152,7,45,0,0,4151,4150,1,0,0,0,4151,4152,1,0,0,0,4152,4155,1,0, + 0,0,4153,4156,3,282,141,0,4154,4156,3,280,140,0,4155,4153,1,0,0, + 0,4155,4154,1,0,0,0,4156,285,1,0,0,0,4157,4172,5,95,0,0,4158,4173, + 3,282,141,0,4159,4173,3,280,140,0,4160,4163,5,866,0,0,4161,4164, + 3,282,141,0,4162,4164,3,280,140,0,4163,4161,1,0,0,0,4163,4162,1, + 0,0,0,4164,4165,1,0,0,0,4165,4170,5,867,0,0,4166,4168,5,13,0,0,4167, + 4166,1,0,0,0,4167,4168,1,0,0,0,4168,4169,1,0,0,0,4169,4171,3,716, + 358,0,4170,4167,1,0,0,0,4170,4171,1,0,0,0,4171,4173,1,0,0,0,4172, + 4158,1,0,0,0,4172,4159,1,0,0,0,4172,4160,1,0,0,0,4173,287,1,0,0, + 0,4174,4175,5,253,0,0,4175,4176,5,866,0,0,4176,4177,5,882,0,0,4177, + 4178,5,868,0,0,4178,4179,5,882,0,0,4179,4180,5,337,0,0,4180,4181, + 5,866,0,0,4181,4182,3,290,145,0,4182,4183,5,867,0,0,4183,4188,5, + 867,0,0,4184,4186,5,13,0,0,4185,4184,1,0,0,0,4185,4186,1,0,0,0,4186, + 4187,1,0,0,0,4187,4189,3,716,358,0,4188,4185,1,0,0,0,4188,4189,1, + 0,0,0,4189,289,1,0,0,0,4190,4195,3,292,146,0,4191,4192,5,868,0,0, + 4192,4194,3,292,146,0,4193,4191,1,0,0,0,4194,4197,1,0,0,0,4195,4193, + 1,0,0,0,4195,4196,1,0,0,0,4196,291,1,0,0,0,4197,4195,1,0,0,0,4198, + 4215,3,672,336,0,4199,4200,5,65,0,0,4200,4216,5,256,0,0,4201,4213, + 3,736,368,0,4202,4203,5,257,0,0,4203,4205,5,882,0,0,4204,4206,3, + 294,147,0,4205,4204,1,0,0,0,4205,4206,1,0,0,0,4206,4208,1,0,0,0, + 4207,4209,3,296,148,0,4208,4207,1,0,0,0,4208,4209,1,0,0,0,4209,4214, + 1,0,0,0,4210,4211,5,60,0,0,4211,4212,5,257,0,0,4212,4214,5,882,0, + 0,4213,4202,1,0,0,0,4213,4210,1,0,0,0,4214,4216,1,0,0,0,4215,4199, + 1,0,0,0,4215,4201,1,0,0,0,4216,4228,1,0,0,0,4217,4219,5,255,0,0, + 4218,4220,5,257,0,0,4219,4218,1,0,0,0,4219,4220,1,0,0,0,4220,4221, + 1,0,0,0,4221,4222,5,882,0,0,4222,4223,5,337,0,0,4223,4224,5,866, + 0,0,4224,4225,3,290,145,0,4225,4226,5,867,0,0,4226,4228,1,0,0,0, + 4227,4198,1,0,0,0,4227,4217,1,0,0,0,4228,293,1,0,0,0,4229,4234,5, + 116,0,0,4230,4234,5,382,0,0,4231,4232,5,42,0,0,4232,4234,3,764,382, + 0,4233,4229,1,0,0,0,4233,4230,1,0,0,0,4233,4231,1,0,0,0,4234,4235, + 1,0,0,0,4235,4236,5,119,0,0,4236,4237,5,55,0,0,4237,295,1,0,0,0, + 4238,4243,5,116,0,0,4239,4243,5,382,0,0,4240,4241,5,42,0,0,4241, + 4243,3,764,382,0,4242,4238,1,0,0,0,4242,4239,1,0,0,0,4242,4240,1, + 0,0,0,4243,4244,1,0,0,0,4244,4245,5,119,0,0,4245,4246,5,382,0,0, + 4246,297,1,0,0,0,4247,4256,7,59,0,0,4248,4256,5,76,0,0,4249,4256, + 5,172,0,0,4250,4256,5,168,0,0,4251,4256,5,166,0,0,4252,4256,5,636, + 0,0,4253,4256,7,60,0,0,4254,4256,5,167,0,0,4255,4247,1,0,0,0,4255, + 4248,1,0,0,0,4255,4249,1,0,0,0,4255,4250,1,0,0,0,4255,4251,1,0,0, + 0,4255,4252,1,0,0,0,4255,4253,1,0,0,0,4255,4254,1,0,0,0,4256,299, + 1,0,0,0,4257,4260,3,306,153,0,4258,4260,3,302,151,0,4259,4257,1, + 0,0,0,4259,4258,1,0,0,0,4260,4265,1,0,0,0,4261,4262,5,868,0,0,4262, + 4264,3,302,151,0,4263,4261,1,0,0,0,4264,4267,1,0,0,0,4265,4263,1, + 0,0,0,4265,4266,1,0,0,0,4266,301,1,0,0,0,4267,4265,1,0,0,0,4268, + 4284,3,304,152,0,4269,4274,3,308,154,0,4270,4272,5,13,0,0,4271,4270, + 1,0,0,0,4271,4272,1,0,0,0,4272,4273,1,0,0,0,4273,4275,3,716,358, + 0,4274,4271,1,0,0,0,4274,4275,1,0,0,0,4275,4284,1,0,0,0,4276,4281, + 3,310,155,0,4277,4279,5,13,0,0,4278,4277,1,0,0,0,4278,4279,1,0,0, + 0,4279,4280,1,0,0,0,4280,4282,3,716,358,0,4281,4278,1,0,0,0,4281, + 4282,1,0,0,0,4282,4284,1,0,0,0,4283,4268,1,0,0,0,4283,4269,1,0,0, + 0,4283,4276,1,0,0,0,4284,303,1,0,0,0,4285,4286,3,712,356,0,4286, + 4287,5,865,0,0,4287,4288,5,850,0,0,4288,305,1,0,0,0,4289,4290,5, + 850,0,0,4290,307,1,0,0,0,4291,4292,3,672,336,0,4292,309,1,0,0,0, + 4293,4294,5,892,0,0,4294,4296,5,841,0,0,4295,4293,1,0,0,0,4295,4296, + 1,0,0,0,4296,4297,1,0,0,0,4297,4300,3,814,407,0,4298,4300,3,774, + 387,0,4299,4295,1,0,0,0,4299,4298,1,0,0,0,4300,311,1,0,0,0,4301, + 4302,5,88,0,0,4302,4307,3,236,118,0,4303,4304,5,868,0,0,4304,4306, + 3,236,118,0,4305,4303,1,0,0,0,4306,4309,1,0,0,0,4307,4305,1,0,0, + 0,4307,4308,1,0,0,0,4308,4338,1,0,0,0,4309,4307,1,0,0,0,4310,4311, + 5,88,0,0,4311,4312,5,372,0,0,4312,4338,5,882,0,0,4313,4314,5,88, + 0,0,4314,4315,5,128,0,0,4315,4319,5,882,0,0,4316,4317,5,26,0,0,4317, + 4318,5,155,0,0,4318,4320,3,698,349,0,4319,4316,1,0,0,0,4319,4320, + 1,0,0,0,4320,4327,1,0,0,0,4321,4323,7,47,0,0,4322,4324,3,314,157, + 0,4323,4322,1,0,0,0,4324,4325,1,0,0,0,4325,4323,1,0,0,0,4325,4326, + 1,0,0,0,4326,4328,1,0,0,0,4327,4321,1,0,0,0,4327,4328,1,0,0,0,4328, + 4335,1,0,0,0,4329,4331,5,102,0,0,4330,4332,3,316,158,0,4331,4330, + 1,0,0,0,4332,4333,1,0,0,0,4333,4331,1,0,0,0,4333,4334,1,0,0,0,4334, + 4336,1,0,0,0,4335,4329,1,0,0,0,4335,4336,1,0,0,0,4336,4338,1,0,0, + 0,4337,4301,1,0,0,0,4337,4310,1,0,0,0,4337,4313,1,0,0,0,4338,313, + 1,0,0,0,4339,4340,5,174,0,0,4340,4341,5,20,0,0,4341,4352,5,882,0, + 0,4342,4344,5,123,0,0,4343,4342,1,0,0,0,4343,4344,1,0,0,0,4344,4345, + 1,0,0,0,4345,4346,5,56,0,0,4346,4347,5,20,0,0,4347,4352,5,882,0, + 0,4348,4349,5,58,0,0,4349,4350,5,20,0,0,4350,4352,5,882,0,0,4351, + 4339,1,0,0,0,4351,4343,1,0,0,0,4351,4348,1,0,0,0,4352,315,1,0,0, + 0,4353,4354,5,171,0,0,4354,4355,5,20,0,0,4355,4360,5,882,0,0,4356, + 4357,5,174,0,0,4357,4358,5,20,0,0,4358,4360,5,882,0,0,4359,4353, + 1,0,0,0,4359,4356,1,0,0,0,4360,317,1,0,0,0,4361,4362,5,68,0,0,4362, + 4364,3,262,131,0,4363,4361,1,0,0,0,4363,4364,1,0,0,0,4364,4367,1, + 0,0,0,4365,4366,5,192,0,0,4366,4368,3,814,407,0,4367,4365,1,0,0, + 0,4367,4368,1,0,0,0,4368,319,1,0,0,0,4369,4370,5,74,0,0,4370,4371, + 5,20,0,0,4371,4376,3,326,163,0,4372,4373,5,868,0,0,4373,4375,3,326, + 163,0,4374,4372,1,0,0,0,4375,4378,1,0,0,0,4376,4374,1,0,0,0,4376, + 4377,1,0,0,0,4377,4381,1,0,0,0,4378,4376,1,0,0,0,4379,4380,5,194, + 0,0,4380,4382,5,584,0,0,4381,4379,1,0,0,0,4381,4382,1,0,0,0,4382, + 321,1,0,0,0,4383,4384,5,75,0,0,4384,4385,3,814,407,0,4385,323,1, + 0,0,0,4386,4387,5,689,0,0,4387,4388,3,792,396,0,4388,4389,5,13,0, + 0,4389,4390,5,866,0,0,4390,4391,3,790,395,0,4391,4401,5,867,0,0, + 4392,4393,5,868,0,0,4393,4394,3,792,396,0,4394,4395,5,13,0,0,4395, + 4396,5,866,0,0,4396,4397,3,790,395,0,4397,4398,5,867,0,0,4398,4400, + 1,0,0,0,4399,4392,1,0,0,0,4400,4403,1,0,0,0,4401,4399,1,0,0,0,4401, + 4402,1,0,0,0,4402,325,1,0,0,0,4403,4401,1,0,0,0,4404,4406,3,814, + 407,0,4405,4407,7,55,0,0,4406,4405,1,0,0,0,4406,4407,1,0,0,0,4407, + 327,1,0,0,0,4408,4419,5,100,0,0,4409,4410,3,330,165,0,4410,4411, + 5,868,0,0,4411,4413,1,0,0,0,4412,4409,1,0,0,0,4412,4413,1,0,0,0, + 4413,4414,1,0,0,0,4414,4420,3,330,165,0,4415,4416,3,330,165,0,4416, + 4417,5,509,0,0,4417,4418,3,330,165,0,4418,4420,1,0,0,0,4419,4412, + 1,0,0,0,4419,4415,1,0,0,0,4420,329,1,0,0,0,4421,4425,3,722,361,0, + 4422,4425,3,696,348,0,4423,4425,3,718,359,0,4424,4421,1,0,0,0,4424, + 4422,1,0,0,0,4424,4423,1,0,0,0,4425,331,1,0,0,0,4426,4427,5,640, + 0,0,4427,4436,5,664,0,0,4428,4433,3,354,177,0,4429,4430,5,868,0, + 0,4430,4432,3,354,177,0,4431,4429,1,0,0,0,4432,4435,1,0,0,0,4433, + 4431,1,0,0,0,4433,4434,1,0,0,0,4434,4437,1,0,0,0,4435,4433,1,0,0, + 0,4436,4428,1,0,0,0,4436,4437,1,0,0,0,4437,333,1,0,0,0,4438,4440, + 5,317,0,0,4439,4441,5,691,0,0,4440,4439,1,0,0,0,4440,4441,1,0,0, + 0,4441,335,1,0,0,0,4442,4444,5,341,0,0,4443,4445,5,691,0,0,4444, + 4443,1,0,0,0,4444,4445,1,0,0,0,4445,4451,1,0,0,0,4446,4448,5,11, + 0,0,4447,4449,5,502,0,0,4448,4447,1,0,0,0,4448,4449,1,0,0,0,4449, + 4450,1,0,0,0,4450,4452,5,326,0,0,4451,4446,1,0,0,0,4451,4452,1,0, + 0,0,4452,4457,1,0,0,0,4453,4455,5,502,0,0,4454,4453,1,0,0,0,4454, + 4455,1,0,0,0,4455,4456,1,0,0,0,4456,4458,5,140,0,0,4457,4454,1,0, + 0,0,4457,4458,1,0,0,0,4458,337,1,0,0,0,4459,4461,5,583,0,0,4460, + 4462,5,691,0,0,4461,4460,1,0,0,0,4461,4462,1,0,0,0,4462,4468,1,0, + 0,0,4463,4465,5,11,0,0,4464,4466,5,502,0,0,4465,4464,1,0,0,0,4465, + 4466,1,0,0,0,4466,4467,1,0,0,0,4467,4469,5,326,0,0,4468,4463,1,0, + 0,0,4468,4469,1,0,0,0,4469,4474,1,0,0,0,4470,4472,5,502,0,0,4471, + 4470,1,0,0,0,4471,4472,1,0,0,0,4472,4473,1,0,0,0,4473,4475,5,140, + 0,0,4474,4471,1,0,0,0,4474,4475,1,0,0,0,4475,339,1,0,0,0,4476,4477, + 5,589,0,0,4477,4478,3,716,358,0,4478,341,1,0,0,0,4479,4481,5,583, + 0,0,4480,4482,5,691,0,0,4481,4480,1,0,0,0,4481,4482,1,0,0,0,4482, + 4483,1,0,0,0,4483,4485,5,176,0,0,4484,4486,5,589,0,0,4485,4484,1, + 0,0,0,4485,4486,1,0,0,0,4486,4487,1,0,0,0,4487,4488,3,716,358,0, + 4488,343,1,0,0,0,4489,4490,5,140,0,0,4490,4491,5,589,0,0,4491,4492, + 3,716,358,0,4492,345,1,0,0,0,4493,4494,5,104,0,0,4494,4495,7,61, + 0,0,4495,4500,3,356,178,0,4496,4497,5,868,0,0,4497,4499,3,356,178, + 0,4498,4496,1,0,0,0,4499,4502,1,0,0,0,4500,4498,1,0,0,0,4500,4501, + 1,0,0,0,4501,347,1,0,0,0,4502,4500,1,0,0,0,4503,4504,5,183,0,0,4504, + 4505,5,752,0,0,4505,349,1,0,0,0,4506,4507,5,155,0,0,4507,4508,5, + 313,0,0,4508,4509,5,857,0,0,4509,4510,7,26,0,0,4510,351,1,0,0,0, + 4511,4513,5,155,0,0,4512,4514,7,62,0,0,4513,4512,1,0,0,0,4513,4514, + 1,0,0,0,4514,4515,1,0,0,0,4515,4516,5,664,0,0,4516,4521,3,360,180, + 0,4517,4518,5,868,0,0,4518,4520,3,360,180,0,4519,4517,1,0,0,0,4520, + 4523,1,0,0,0,4521,4519,1,0,0,0,4521,4522,1,0,0,0,4522,353,1,0,0, + 0,4523,4521,1,0,0,0,4524,4525,5,194,0,0,4525,4526,5,350,0,0,4526, + 4532,5,600,0,0,4527,4528,5,135,0,0,4528,4532,5,195,0,0,4529,4530, + 5,135,0,0,4530,4532,5,515,0,0,4531,4524,1,0,0,0,4531,4527,1,0,0, + 0,4531,4529,1,0,0,0,4532,355,1,0,0,0,4533,4538,3,662,331,0,4534, + 4536,5,13,0,0,4535,4534,1,0,0,0,4535,4536,1,0,0,0,4536,4537,1,0, + 0,0,4537,4539,3,716,358,0,4538,4535,1,0,0,0,4538,4539,1,0,0,0,4539, + 4540,1,0,0,0,4540,4541,3,358,179,0,4541,357,1,0,0,0,4542,4544,5, + 135,0,0,4543,4545,5,450,0,0,4544,4543,1,0,0,0,4544,4545,1,0,0,0, + 4545,4551,1,0,0,0,4546,4548,5,107,0,0,4547,4546,1,0,0,0,4547,4548, + 1,0,0,0,4548,4549,1,0,0,0,4549,4551,5,195,0,0,4550,4542,1,0,0,0, + 4550,4547,1,0,0,0,4551,359,1,0,0,0,4552,4553,5,440,0,0,4553,4554, + 5,448,0,0,4554,4560,3,362,181,0,4555,4556,5,135,0,0,4556,4560,5, + 195,0,0,4557,4558,5,135,0,0,4558,4560,5,515,0,0,4559,4552,1,0,0, + 0,4559,4555,1,0,0,0,4559,4557,1,0,0,0,4560,361,1,0,0,0,4561,4562, + 5,809,0,0,4562,4569,5,135,0,0,4563,4564,5,135,0,0,4564,4569,5,810, + 0,0,4565,4566,5,135,0,0,4566,4569,5,811,0,0,4567,4569,5,812,0,0, + 4568,4561,1,0,0,0,4568,4563,1,0,0,0,4568,4565,1,0,0,0,4568,4567, + 1,0,0,0,4569,363,1,0,0,0,4570,4571,5,25,0,0,4571,4572,5,453,0,0, + 4572,4573,5,176,0,0,4573,4578,3,380,190,0,4574,4575,5,868,0,0,4575, + 4577,3,380,190,0,4576,4574,1,0,0,0,4577,4580,1,0,0,0,4578,4576,1, + 0,0,0,4578,4579,1,0,0,0,4579,4582,1,0,0,0,4580,4578,1,0,0,0,4581, + 4583,3,400,200,0,4582,4581,1,0,0,0,4582,4583,1,0,0,0,4583,365,1, + 0,0,0,4584,4585,5,25,0,0,4585,4586,5,572,0,0,4586,4587,5,400,0,0, + 4587,4592,3,402,201,0,4588,4589,5,868,0,0,4589,4591,3,402,201,0, + 4590,4588,1,0,0,0,4591,4594,1,0,0,0,4592,4590,1,0,0,0,4592,4593, + 1,0,0,0,4593,4596,1,0,0,0,4594,4592,1,0,0,0,4595,4597,3,400,200, + 0,4596,4595,1,0,0,0,4596,4597,1,0,0,0,4597,367,1,0,0,0,4598,4599, + 5,25,0,0,4599,4600,5,572,0,0,4600,4601,5,605,0,0,4601,4602,5,176, + 0,0,4602,4607,3,390,195,0,4603,4604,5,868,0,0,4604,4606,3,390,195, + 0,4605,4603,1,0,0,0,4606,4609,1,0,0,0,4607,4605,1,0,0,0,4607,4608, + 1,0,0,0,4608,4611,1,0,0,0,4609,4607,1,0,0,0,4610,4612,3,400,200, + 0,4611,4610,1,0,0,0,4611,4612,1,0,0,0,4612,369,1,0,0,0,4613,4614, + 5,133,0,0,4614,4615,7,63,0,0,4615,4620,5,452,0,0,4616,4617,5,176, + 0,0,4617,4621,5,882,0,0,4618,4619,5,16,0,0,4619,4621,5,882,0,0,4620, + 4616,1,0,0,0,4620,4618,1,0,0,0,4621,371,1,0,0,0,4622,4623,5,640, + 0,0,4623,4632,7,64,0,0,4624,4629,3,406,203,0,4625,4626,5,868,0,0, + 4626,4628,3,406,203,0,4627,4625,1,0,0,0,4628,4631,1,0,0,0,4629,4627, + 1,0,0,0,4629,4630,1,0,0,0,4630,4633,1,0,0,0,4631,4629,1,0,0,0,4632, + 4624,1,0,0,0,4632,4633,1,0,0,0,4633,4636,1,0,0,0,4634,4635,5,676, + 0,0,4635,4637,3,408,204,0,4636,4634,1,0,0,0,4636,4637,1,0,0,0,4637, + 4641,1,0,0,0,4638,4640,3,410,205,0,4639,4638,1,0,0,0,4640,4643,1, + 0,0,0,4641,4639,1,0,0,0,4641,4642,1,0,0,0,4642,4645,1,0,0,0,4643, + 4641,1,0,0,0,4644,4646,3,400,200,0,4645,4644,1,0,0,0,4645,4646,1, + 0,0,0,4646,373,1,0,0,0,4647,4648,5,646,0,0,4648,4657,7,64,0,0,4649, + 4654,3,406,203,0,4650,4651,5,868,0,0,4651,4653,3,406,203,0,4652, + 4650,1,0,0,0,4653,4656,1,0,0,0,4654,4652,1,0,0,0,4654,4655,1,0,0, + 0,4655,4658,1,0,0,0,4656,4654,1,0,0,0,4657,4649,1,0,0,0,4657,4658, + 1,0,0,0,4658,4660,1,0,0,0,4659,4661,3,400,200,0,4660,4659,1,0,0, + 0,4660,4661,1,0,0,0,4661,375,1,0,0,0,4662,4663,5,640,0,0,4663,4667, + 5,415,0,0,4664,4665,5,678,0,0,4665,4666,5,857,0,0,4666,4668,5,882, + 0,0,4667,4664,1,0,0,0,4667,4668,1,0,0,0,4668,4673,1,0,0,0,4669,4670, + 5,868,0,0,4670,4671,5,529,0,0,4671,4672,5,857,0,0,4672,4674,5,882, + 0,0,4673,4669,1,0,0,0,4673,4674,1,0,0,0,4674,4679,1,0,0,0,4675,4676, + 5,868,0,0,4676,4677,5,363,0,0,4677,4678,5,857,0,0,4678,4680,5,882, + 0,0,4679,4675,1,0,0,0,4679,4680,1,0,0,0,4680,377,1,0,0,0,4681,4682, + 5,646,0,0,4682,4683,5,415,0,0,4683,379,1,0,0,0,4684,4685,3,382,191, + 0,4685,4686,5,857,0,0,4686,4687,5,882,0,0,4687,4712,1,0,0,0,4688, + 4689,3,384,192,0,4689,4690,5,857,0,0,4690,4691,3,722,361,0,4691, + 4712,1,0,0,0,4692,4693,3,386,193,0,4693,4694,5,857,0,0,4694,4695, + 7,26,0,0,4695,4712,1,0,0,0,4696,4712,3,388,194,0,4697,4698,5,424, + 0,0,4698,4699,5,857,0,0,4699,4708,5,866,0,0,4700,4705,3,716,358, + 0,4701,4702,5,868,0,0,4702,4704,3,716,358,0,4703,4701,1,0,0,0,4704, + 4707,1,0,0,0,4705,4703,1,0,0,0,4705,4706,1,0,0,0,4706,4709,1,0,0, + 0,4707,4705,1,0,0,0,4708,4700,1,0,0,0,4708,4709,1,0,0,0,4709,4710, + 1,0,0,0,4710,4712,5,867,0,0,4711,4684,1,0,0,0,4711,4688,1,0,0,0, + 4711,4692,1,0,0,0,4711,4696,1,0,0,0,4711,4697,1,0,0,0,4712,381,1, + 0,0,0,4713,4714,7,65,0,0,4714,383,1,0,0,0,4715,4716,7,66,0,0,4716, + 385,1,0,0,0,4717,4718,7,67,0,0,4718,387,1,0,0,0,4719,4720,5,543, + 0,0,4720,4721,5,857,0,0,4721,4733,7,68,0,0,4722,4723,5,574,0,0,4723, + 4724,5,857,0,0,4724,4733,7,69,0,0,4725,4726,5,310,0,0,4726,4730, + 5,857,0,0,4727,4731,5,507,0,0,4728,4731,5,450,0,0,4729,4731,3,412, + 206,0,4730,4727,1,0,0,0,4730,4728,1,0,0,0,4730,4729,1,0,0,0,4731, + 4733,1,0,0,0,4732,4719,1,0,0,0,4732,4722,1,0,0,0,4732,4725,1,0,0, + 0,4733,389,1,0,0,0,4734,4735,3,392,196,0,4735,4736,5,857,0,0,4736, + 4737,5,882,0,0,4737,4762,1,0,0,0,4738,4739,3,394,197,0,4739,4740, + 5,857,0,0,4740,4741,3,722,361,0,4741,4762,1,0,0,0,4742,4743,3,396, + 198,0,4743,4744,5,857,0,0,4744,4745,7,26,0,0,4745,4762,1,0,0,0,4746, + 4762,3,398,199,0,4747,4748,5,424,0,0,4748,4749,5,857,0,0,4749,4758, + 5,866,0,0,4750,4755,3,716,358,0,4751,4752,5,868,0,0,4752,4754,3, + 716,358,0,4753,4751,1,0,0,0,4754,4757,1,0,0,0,4755,4753,1,0,0,0, + 4755,4756,1,0,0,0,4756,4759,1,0,0,0,4757,4755,1,0,0,0,4758,4750, + 1,0,0,0,4758,4759,1,0,0,0,4759,4760,1,0,0,0,4760,4762,5,867,0,0, + 4761,4734,1,0,0,0,4761,4738,1,0,0,0,4761,4742,1,0,0,0,4761,4746, + 1,0,0,0,4761,4747,1,0,0,0,4762,391,1,0,0,0,4763,4764,7,70,0,0,4764, + 393,1,0,0,0,4765,4766,7,71,0,0,4766,395,1,0,0,0,4767,4768,7,72,0, + 0,4768,397,1,0,0,0,4769,4770,5,543,0,0,4770,4771,5,857,0,0,4771, + 4783,7,68,0,0,4772,4773,5,574,0,0,4773,4774,5,857,0,0,4774,4783, + 7,73,0,0,4775,4776,5,310,0,0,4776,4780,5,857,0,0,4777,4781,5,507, + 0,0,4778,4781,5,450,0,0,4779,4781,3,412,206,0,4780,4777,1,0,0,0, + 4780,4778,1,0,0,0,4780,4779,1,0,0,0,4781,4783,1,0,0,0,4782,4769, + 1,0,0,0,4782,4772,1,0,0,0,4782,4775,1,0,0,0,4783,399,1,0,0,0,4784, + 4785,5,65,0,0,4785,4786,5,328,0,0,4786,4787,5,882,0,0,4787,401,1, + 0,0,0,4788,4789,5,565,0,0,4789,4790,5,857,0,0,4790,4791,5,866,0, + 0,4791,4796,3,638,319,0,4792,4793,5,868,0,0,4793,4795,3,638,319, + 0,4794,4792,1,0,0,0,4795,4798,1,0,0,0,4796,4794,1,0,0,0,4796,4797, + 1,0,0,0,4797,4799,1,0,0,0,4798,4796,1,0,0,0,4799,4800,5,867,0,0, + 4800,4852,1,0,0,0,4801,4802,5,567,0,0,4802,4803,5,857,0,0,4803,4804, + 5,866,0,0,4804,4809,3,638,319,0,4805,4806,5,868,0,0,4806,4808,3, + 638,319,0,4807,4805,1,0,0,0,4808,4811,1,0,0,0,4809,4807,1,0,0,0, + 4809,4810,1,0,0,0,4810,4812,1,0,0,0,4811,4809,1,0,0,0,4812,4813, + 5,867,0,0,4813,4852,1,0,0,0,4814,4815,5,566,0,0,4815,4816,5,857, + 0,0,4816,4817,5,866,0,0,4817,4818,3,660,330,0,4818,4819,5,867,0, + 0,4819,4852,1,0,0,0,4820,4821,5,568,0,0,4821,4822,5,857,0,0,4822, + 4823,5,866,0,0,4823,4824,3,660,330,0,4824,4825,5,867,0,0,4825,4852, + 1,0,0,0,4826,4827,5,570,0,0,4827,4828,5,857,0,0,4828,4829,5,866, + 0,0,4829,4830,3,760,380,0,4830,4831,5,867,0,0,4831,4852,1,0,0,0, + 4832,4833,5,571,0,0,4833,4834,5,857,0,0,4834,4835,5,866,0,0,4835, + 4836,3,760,380,0,4836,4837,5,867,0,0,4837,4852,1,0,0,0,4838,4839, + 5,569,0,0,4839,4840,5,857,0,0,4840,4841,5,866,0,0,4841,4846,3,404, + 202,0,4842,4843,5,868,0,0,4843,4845,3,404,202,0,4844,4842,1,0,0, + 0,4845,4848,1,0,0,0,4846,4844,1,0,0,0,4846,4847,1,0,0,0,4847,4849, + 1,0,0,0,4848,4846,1,0,0,0,4849,4850,5,867,0,0,4850,4852,1,0,0,0, + 4851,4788,1,0,0,0,4851,4801,1,0,0,0,4851,4814,1,0,0,0,4851,4820, + 1,0,0,0,4851,4826,1,0,0,0,4851,4832,1,0,0,0,4851,4838,1,0,0,0,4852, + 403,1,0,0,0,4853,4854,5,866,0,0,4854,4855,3,662,331,0,4855,4856, + 5,868,0,0,4856,4857,3,662,331,0,4857,4858,5,867,0,0,4858,405,1,0, + 0,0,4859,4860,7,74,0,0,4860,407,1,0,0,0,4861,4862,7,75,0,0,4862, + 4863,5,857,0,0,4863,4887,3,412,206,0,4864,4865,5,460,0,0,4865,4866, + 5,857,0,0,4866,4867,5,882,0,0,4867,4868,5,868,0,0,4868,4869,5,461, + 0,0,4869,4870,5,857,0,0,4870,4887,3,722,361,0,4871,4872,5,611,0, + 0,4872,4873,5,857,0,0,4873,4874,5,882,0,0,4874,4875,5,868,0,0,4875, + 4876,5,612,0,0,4876,4877,5,857,0,0,4877,4887,3,722,361,0,4878,4879, + 5,557,0,0,4879,4880,5,857,0,0,4880,4881,5,882,0,0,4881,4882,5,868, + 0,0,4882,4883,5,558,0,0,4883,4884,5,857,0,0,4884,4887,3,722,361, + 0,4885,4887,5,634,0,0,4886,4861,1,0,0,0,4886,4864,1,0,0,0,4886,4871, + 1,0,0,0,4886,4878,1,0,0,0,4886,4885,1,0,0,0,4887,409,1,0,0,0,4888, + 4889,5,678,0,0,4889,4890,5,857,0,0,4890,4901,5,882,0,0,4891,4892, + 5,529,0,0,4892,4893,5,857,0,0,4893,4901,5,882,0,0,4894,4895,5,363, + 0,0,4895,4896,5,857,0,0,4896,4901,5,882,0,0,4897,4898,5,535,0,0, + 4898,4899,5,857,0,0,4899,4901,5,882,0,0,4900,4888,1,0,0,0,4900,4891, + 1,0,0,0,4900,4894,1,0,0,0,4900,4897,1,0,0,0,4901,411,1,0,0,0,4902, + 4907,3,706,353,0,4903,4904,5,868,0,0,4904,4906,3,706,353,0,4905, + 4903,1,0,0,0,4906,4909,1,0,0,0,4907,4905,1,0,0,0,4907,4908,1,0,0, + 0,4908,4912,1,0,0,0,4909,4907,1,0,0,0,4910,4912,5,882,0,0,4911,4902, + 1,0,0,0,4911,4910,1,0,0,0,4912,413,1,0,0,0,4913,4914,5,694,0,0,4914, + 4915,7,76,0,0,4915,4917,3,708,354,0,4916,4918,7,77,0,0,4917,4916, + 1,0,0,0,4917,4918,1,0,0,0,4918,415,1,0,0,0,4919,4920,5,694,0,0,4920, + 4921,5,378,0,0,4921,4927,3,708,354,0,4922,4925,5,654,0,0,4923,4924, + 5,65,0,0,4924,4926,5,489,0,0,4925,4923,1,0,0,0,4925,4926,1,0,0,0, + 4926,4928,1,0,0,0,4927,4922,1,0,0,0,4927,4928,1,0,0,0,4928,417,1, + 0,0,0,4929,4930,5,694,0,0,4930,4931,5,540,0,0,4931,4932,3,708,354, + 0,4932,419,1,0,0,0,4933,4934,5,694,0,0,4934,4935,5,341,0,0,4935, + 4938,3,708,354,0,4936,4937,5,513,0,0,4937,4939,5,533,0,0,4938,4936, + 1,0,0,0,4938,4939,1,0,0,0,4939,421,1,0,0,0,4940,4941,5,694,0,0,4941, + 4942,5,583,0,0,4942,4943,3,708,354,0,4943,423,1,0,0,0,4944,4945, + 5,694,0,0,4945,4948,5,551,0,0,4946,4947,5,33,0,0,4947,4949,3,708, + 354,0,4948,4946,1,0,0,0,4948,4949,1,0,0,0,4949,425,1,0,0,0,4950, + 4951,5,540,0,0,4951,4952,3,716,358,0,4952,4955,5,68,0,0,4953,4956, + 5,882,0,0,4954,4956,5,892,0,0,4955,4953,1,0,0,0,4955,4954,1,0,0, + 0,4956,427,1,0,0,0,4957,4958,5,717,0,0,4958,4961,3,716,358,0,4959, + 4960,5,188,0,0,4960,4962,3,762,381,0,4961,4959,1,0,0,0,4961,4962, + 1,0,0,0,4962,429,1,0,0,0,4963,4964,7,78,0,0,4964,4965,5,540,0,0, + 4965,4966,3,716,358,0,4966,431,1,0,0,0,4967,4970,3,434,217,0,4968, + 4970,3,4,2,0,4969,4967,1,0,0,0,4969,4968,1,0,0,0,4970,433,1,0,0, + 0,4971,4972,3,716,358,0,4972,4973,5,878,0,0,4973,4975,1,0,0,0,4974, + 4971,1,0,0,0,4974,4975,1,0,0,0,4975,4976,1,0,0,0,4976,4982,5,317, + 0,0,4977,4978,3,454,227,0,4978,4979,5,869,0,0,4979,4981,1,0,0,0, + 4980,4977,1,0,0,0,4981,4984,1,0,0,0,4982,4980,1,0,0,0,4982,4983, + 1,0,0,0,4983,4990,1,0,0,0,4984,4982,1,0,0,0,4985,4986,3,456,228, + 0,4986,4987,5,869,0,0,4987,4989,1,0,0,0,4988,4985,1,0,0,0,4989,4992, + 1,0,0,0,4990,4988,1,0,0,0,4990,4991,1,0,0,0,4991,4998,1,0,0,0,4992, + 4990,1,0,0,0,4993,4994,3,458,229,0,4994,4995,5,869,0,0,4995,4997, + 1,0,0,0,4996,4993,1,0,0,0,4997,5000,1,0,0,0,4998,4996,1,0,0,0,4998, + 4999,1,0,0,0,4999,5006,1,0,0,0,5000,4998,1,0,0,0,5001,5002,3,460, + 230,0,5002,5003,5,869,0,0,5003,5005,1,0,0,0,5004,5001,1,0,0,0,5005, + 5008,1,0,0,0,5006,5004,1,0,0,0,5006,5007,1,0,0,0,5007,5012,1,0,0, + 0,5008,5006,1,0,0,0,5009,5011,3,464,232,0,5010,5009,1,0,0,0,5011, + 5014,1,0,0,0,5012,5010,1,0,0,0,5012,5013,1,0,0,0,5013,5015,1,0,0, + 0,5014,5012,1,0,0,0,5015,5017,5,378,0,0,5016,5018,3,716,358,0,5017, + 5016,1,0,0,0,5017,5018,1,0,0,0,5018,435,1,0,0,0,5019,5022,5,23,0, + 0,5020,5023,3,716,358,0,5021,5023,3,814,407,0,5022,5020,1,0,0,0, + 5022,5021,1,0,0,0,5022,5023,1,0,0,0,5023,5025,1,0,0,0,5024,5026, + 3,466,233,0,5025,5024,1,0,0,0,5026,5027,1,0,0,0,5027,5025,1,0,0, + 0,5027,5028,1,0,0,0,5028,5035,1,0,0,0,5029,5031,5,53,0,0,5030,5032, + 3,464,232,0,5031,5030,1,0,0,0,5032,5033,1,0,0,0,5033,5031,1,0,0, + 0,5033,5034,1,0,0,0,5034,5036,1,0,0,0,5035,5029,1,0,0,0,5035,5036, + 1,0,0,0,5036,5037,1,0,0,0,5037,5038,5,378,0,0,5038,5039,5,23,0,0, + 5039,437,1,0,0,0,5040,5041,5,78,0,0,5041,5042,3,814,407,0,5042,5044, + 5,175,0,0,5043,5045,3,464,232,0,5044,5043,1,0,0,0,5045,5046,1,0, + 0,0,5046,5044,1,0,0,0,5046,5047,1,0,0,0,5047,5051,1,0,0,0,5048,5050, + 3,468,234,0,5049,5048,1,0,0,0,5050,5053,1,0,0,0,5051,5049,1,0,0, + 0,5051,5052,1,0,0,0,5052,5060,1,0,0,0,5053,5051,1,0,0,0,5054,5056, + 5,53,0,0,5055,5057,3,464,232,0,5056,5055,1,0,0,0,5057,5058,1,0,0, + 0,5058,5056,1,0,0,0,5058,5059,1,0,0,0,5059,5061,1,0,0,0,5060,5054, + 1,0,0,0,5060,5061,1,0,0,0,5061,5062,1,0,0,0,5062,5063,5,378,0,0, + 5063,5064,5,78,0,0,5064,439,1,0,0,0,5065,5066,5,90,0,0,5066,5067, + 3,716,358,0,5067,441,1,0,0,0,5068,5069,5,97,0,0,5069,5070,3,716, + 358,0,5070,443,1,0,0,0,5071,5072,3,716,358,0,5072,5073,5,878,0,0, + 5073,5075,1,0,0,0,5074,5071,1,0,0,0,5074,5075,1,0,0,0,5075,5076, + 1,0,0,0,5076,5078,5,106,0,0,5077,5079,3,464,232,0,5078,5077,1,0, + 0,0,5079,5080,1,0,0,0,5080,5078,1,0,0,0,5080,5081,1,0,0,0,5081,5082, + 1,0,0,0,5082,5083,5,378,0,0,5083,5085,5,106,0,0,5084,5086,3,716, + 358,0,5085,5084,1,0,0,0,5085,5086,1,0,0,0,5086,445,1,0,0,0,5087, + 5088,3,716,358,0,5088,5089,5,878,0,0,5089,5091,1,0,0,0,5090,5087, + 1,0,0,0,5090,5091,1,0,0,0,5091,5092,1,0,0,0,5092,5094,5,142,0,0, + 5093,5095,3,464,232,0,5094,5093,1,0,0,0,5095,5096,1,0,0,0,5096,5094, + 1,0,0,0,5096,5097,1,0,0,0,5097,5098,1,0,0,0,5098,5099,5,676,0,0, + 5099,5100,3,814,407,0,5100,5101,5,378,0,0,5101,5103,5,142,0,0,5102, + 5104,3,716,358,0,5103,5102,1,0,0,0,5103,5104,1,0,0,0,5104,447,1, + 0,0,0,5105,5106,5,148,0,0,5106,5107,3,814,407,0,5107,449,1,0,0,0, + 5108,5109,3,716,358,0,5109,5110,5,878,0,0,5110,5112,1,0,0,0,5111, + 5108,1,0,0,0,5111,5112,1,0,0,0,5112,5113,1,0,0,0,5113,5114,5,193, + 0,0,5114,5115,3,814,407,0,5115,5117,5,371,0,0,5116,5118,3,464,232, + 0,5117,5116,1,0,0,0,5118,5119,1,0,0,0,5119,5117,1,0,0,0,5119,5120, + 1,0,0,0,5120,5121,1,0,0,0,5121,5122,5,378,0,0,5122,5124,5,193,0, + 0,5123,5125,3,716,358,0,5124,5123,1,0,0,0,5124,5125,1,0,0,0,5125, + 451,1,0,0,0,5126,5127,5,334,0,0,5127,5142,3,716,358,0,5128,5133, + 5,64,0,0,5129,5131,5,501,0,0,5130,5129,1,0,0,0,5130,5131,1,0,0,0, + 5131,5132,1,0,0,0,5132,5134,5,68,0,0,5133,5130,1,0,0,0,5133,5134, + 1,0,0,0,5134,5135,1,0,0,0,5135,5136,3,716,358,0,5136,5137,5,88,0, + 0,5137,5138,3,714,357,0,5138,5142,1,0,0,0,5139,5140,5,516,0,0,5140, + 5142,3,716,358,0,5141,5126,1,0,0,0,5141,5128,1,0,0,0,5141,5139,1, + 0,0,0,5142,453,1,0,0,0,5143,5144,5,41,0,0,5144,5145,3,714,357,0, + 5145,5148,3,736,368,0,5146,5147,5,42,0,0,5147,5149,3,814,407,0,5148, + 5146,1,0,0,0,5148,5149,1,0,0,0,5149,455,1,0,0,0,5150,5151,5,41,0, + 0,5151,5152,3,716,358,0,5152,5153,5,30,0,0,5153,5160,5,65,0,0,5154, + 5161,3,722,361,0,5155,5157,5,164,0,0,5156,5158,5,682,0,0,5157,5156, + 1,0,0,0,5157,5158,1,0,0,0,5158,5159,1,0,0,0,5159,5161,5,882,0,0, + 5160,5154,1,0,0,0,5160,5155,1,0,0,0,5161,457,1,0,0,0,5162,5163,5, + 41,0,0,5163,5164,3,716,358,0,5164,5165,5,38,0,0,5165,5166,5,65,0, + 0,5166,5167,3,210,105,0,5167,459,1,0,0,0,5168,5169,5,41,0,0,5169, + 5170,7,79,0,0,5170,5171,5,417,0,0,5171,5172,5,65,0,0,5172,5177,3, + 462,231,0,5173,5174,5,868,0,0,5174,5176,3,462,231,0,5175,5173,1, + 0,0,0,5176,5179,1,0,0,0,5177,5175,1,0,0,0,5177,5178,1,0,0,0,5178, + 5180,1,0,0,0,5179,5177,1,0,0,0,5180,5181,3,432,216,0,5181,461,1, + 0,0,0,5182,5194,3,722,361,0,5183,5185,5,164,0,0,5184,5186,5,682, + 0,0,5185,5184,1,0,0,0,5185,5186,1,0,0,0,5186,5187,1,0,0,0,5187,5194, + 5,882,0,0,5188,5194,3,716,358,0,5189,5194,5,165,0,0,5190,5191,5, + 114,0,0,5191,5194,5,407,0,0,5192,5194,5,163,0,0,5193,5182,1,0,0, + 0,5193,5183,1,0,0,0,5193,5188,1,0,0,0,5193,5189,1,0,0,0,5193,5190, + 1,0,0,0,5193,5192,1,0,0,0,5194,463,1,0,0,0,5195,5198,3,18,9,0,5196, + 5198,3,4,2,0,5197,5195,1,0,0,0,5197,5196,1,0,0,0,5198,5199,1,0,0, + 0,5199,5200,5,869,0,0,5200,465,1,0,0,0,5201,5204,5,191,0,0,5202, + 5205,3,734,367,0,5203,5205,3,814,407,0,5204,5202,1,0,0,0,5204,5203, + 1,0,0,0,5205,5206,1,0,0,0,5206,5208,5,175,0,0,5207,5209,3,464,232, + 0,5208,5207,1,0,0,0,5209,5210,1,0,0,0,5210,5208,1,0,0,0,5210,5211, + 1,0,0,0,5211,467,1,0,0,0,5212,5213,5,54,0,0,5213,5214,3,814,407, + 0,5214,5216,5,175,0,0,5215,5217,3,464,232,0,5216,5215,1,0,0,0,5217, + 5218,1,0,0,0,5218,5216,1,0,0,0,5218,5219,1,0,0,0,5219,469,1,0,0, + 0,5220,5221,5,8,0,0,5221,5223,5,678,0,0,5222,5224,3,768,384,0,5223, + 5222,1,0,0,0,5223,5224,1,0,0,0,5224,5281,1,0,0,0,5225,5230,3,502, + 251,0,5226,5227,5,868,0,0,5227,5229,3,502,251,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,5282, + 1,0,0,0,5232,5230,1,0,0,0,5233,5238,3,504,252,0,5234,5235,5,868, + 0,0,5235,5237,3,504,252,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,5255,1,0,0,0,5240,5238,1,0,0, + 0,5241,5253,5,144,0,0,5242,5254,5,505,0,0,5243,5250,3,516,258,0, + 5244,5246,5,11,0,0,5245,5244,1,0,0,0,5245,5246,1,0,0,0,5246,5247, + 1,0,0,0,5247,5249,3,516,258,0,5248,5245,1,0,0,0,5249,5252,1,0,0, + 0,5250,5248,1,0,0,0,5250,5251,1,0,0,0,5251,5254,1,0,0,0,5252,5250, + 1,0,0,0,5253,5242,1,0,0,0,5253,5243,1,0,0,0,5254,5256,1,0,0,0,5255, + 5241,1,0,0,0,5255,5256,1,0,0,0,5256,5263,1,0,0,0,5257,5259,5,194, + 0,0,5258,5260,3,518,259,0,5259,5258,1,0,0,0,5260,5261,1,0,0,0,5261, + 5259,1,0,0,0,5261,5262,1,0,0,0,5262,5264,1,0,0,0,5263,5257,1,0,0, + 0,5263,5264,1,0,0,0,5264,5269,1,0,0,0,5265,5268,3,520,260,0,5266, + 5268,3,522,261,0,5267,5265,1,0,0,0,5267,5266,1,0,0,0,5268,5271,1, + 0,0,0,5269,5267,1,0,0,0,5269,5270,1,0,0,0,5270,5274,1,0,0,0,5271, + 5269,1,0,0,0,5272,5273,7,80,0,0,5273,5275,5,882,0,0,5274,5272,1, + 0,0,0,5274,5275,1,0,0,0,5275,5282,1,0,0,0,5276,5277,3,666,333,0, + 5277,5278,5,42,0,0,5278,5279,5,582,0,0,5279,5280,3,478,239,0,5280, + 5282,1,0,0,0,5281,5225,1,0,0,0,5281,5233,1,0,0,0,5281,5276,1,0,0, + 0,5282,471,1,0,0,0,5283,5284,5,34,0,0,5284,5286,5,678,0,0,5285,5287, + 3,770,385,0,5286,5285,1,0,0,0,5286,5287,1,0,0,0,5287,5288,1,0,0, + 0,5288,5290,3,694,347,0,5289,5291,3,506,253,0,5290,5289,1,0,0,0, + 5290,5291,1,0,0,0,5291,5299,1,0,0,0,5292,5293,5,868,0,0,5293,5295, + 3,694,347,0,5294,5296,3,506,253,0,5295,5294,1,0,0,0,5295,5296,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,5305,1,0,0,0,5301,5299,1,0,0, + 0,5302,5303,5,42,0,0,5303,5304,5,582,0,0,5304,5306,3,478,239,0,5305, + 5302,1,0,0,0,5305,5306,1,0,0,0,5306,5321,1,0,0,0,5307,5319,5,144, + 0,0,5308,5320,5,505,0,0,5309,5316,3,516,258,0,5310,5312,5,11,0,0, + 5311,5310,1,0,0,0,5311,5312,1,0,0,0,5312,5313,1,0,0,0,5313,5315, + 3,516,258,0,5314,5311,1,0,0,0,5315,5318,1,0,0,0,5316,5314,1,0,0, + 0,5316,5317,1,0,0,0,5317,5320,1,0,0,0,5318,5316,1,0,0,0,5319,5308, + 1,0,0,0,5319,5309,1,0,0,0,5320,5322,1,0,0,0,5321,5307,1,0,0,0,5321, + 5322,1,0,0,0,5322,5329,1,0,0,0,5323,5325,5,194,0,0,5324,5326,3,518, + 259,0,5325,5324,1,0,0,0,5326,5327,1,0,0,0,5327,5325,1,0,0,0,5327, + 5328,1,0,0,0,5328,5330,1,0,0,0,5329,5323,1,0,0,0,5329,5330,1,0,0, + 0,5330,5335,1,0,0,0,5331,5334,3,520,260,0,5332,5334,3,522,261,0, + 5333,5331,1,0,0,0,5333,5332,1,0,0,0,5334,5337,1,0,0,0,5335,5333, + 1,0,0,0,5335,5336,1,0,0,0,5336,5340,1,0,0,0,5337,5335,1,0,0,0,5338, + 5339,7,80,0,0,5339,5341,5,882,0,0,5340,5338,1,0,0,0,5340,5341,1, + 0,0,0,5341,473,1,0,0,0,5342,5343,5,51,0,0,5343,5345,5,678,0,0,5344, + 5346,3,768,384,0,5345,5344,1,0,0,0,5345,5346,1,0,0,0,5346,5347,1, + 0,0,0,5347,5352,3,694,347,0,5348,5349,5,868,0,0,5349,5351,3,694, + 347,0,5350,5348,1,0,0,0,5351,5354,1,0,0,0,5352,5350,1,0,0,0,5352, + 5353,1,0,0,0,5353,475,1,0,0,0,5354,5352,1,0,0,0,5355,5356,5,73,0, + 0,5356,5361,3,530,265,0,5357,5358,5,868,0,0,5358,5360,3,530,265, + 0,5359,5357,1,0,0,0,5360,5363,1,0,0,0,5361,5359,1,0,0,0,5361,5362, + 1,0,0,0,5362,5364,1,0,0,0,5363,5361,1,0,0,0,5364,5366,5,119,0,0, + 5365,5367,3,498,249,0,5366,5365,1,0,0,0,5366,5367,1,0,0,0,5367,5368, + 1,0,0,0,5368,5369,3,534,267,0,5369,5379,5,176,0,0,5370,5375,3,510, + 255,0,5371,5372,5,868,0,0,5372,5374,3,510,255,0,5373,5371,1,0,0, + 0,5374,5377,1,0,0,0,5375,5373,1,0,0,0,5375,5376,1,0,0,0,5376,5380, + 1,0,0,0,5377,5375,1,0,0,0,5378,5380,3,664,332,0,5379,5370,1,0,0, + 0,5379,5378,1,0,0,0,5380,5395,1,0,0,0,5381,5393,5,144,0,0,5382,5394, + 5,505,0,0,5383,5390,3,516,258,0,5384,5386,5,11,0,0,5385,5384,1,0, + 0,0,5385,5386,1,0,0,0,5386,5387,1,0,0,0,5387,5389,3,516,258,0,5388, + 5385,1,0,0,0,5389,5392,1,0,0,0,5390,5388,1,0,0,0,5390,5391,1,0,0, + 0,5391,5394,1,0,0,0,5392,5390,1,0,0,0,5393,5382,1,0,0,0,5393,5383, + 1,0,0,0,5394,5396,1,0,0,0,5395,5381,1,0,0,0,5395,5396,1,0,0,0,5396, + 5406,1,0,0,0,5397,5403,5,194,0,0,5398,5399,5,73,0,0,5399,5402,5, + 121,0,0,5400,5402,3,518,259,0,5401,5398,1,0,0,0,5401,5400,1,0,0, + 0,5402,5405,1,0,0,0,5403,5401,1,0,0,0,5403,5404,1,0,0,0,5404,5407, + 1,0,0,0,5405,5403,1,0,0,0,5406,5397,1,0,0,0,5406,5407,1,0,0,0,5407, + 5415,1,0,0,0,5408,5409,5,13,0,0,5409,5413,3,694,347,0,5410,5411, + 5,194,0,0,5411,5412,5,582,0,0,5412,5414,3,478,239,0,5413,5410,1, + 0,0,0,5413,5414,1,0,0,0,5414,5416,1,0,0,0,5415,5408,1,0,0,0,5415, + 5416,1,0,0,0,5416,5445,1,0,0,0,5417,5420,5,73,0,0,5418,5419,5,547, + 0,0,5419,5421,5,119,0,0,5420,5418,1,0,0,0,5420,5421,1,0,0,0,5421, + 5422,1,0,0,0,5422,5427,3,666,333,0,5423,5424,5,868,0,0,5424,5426, + 3,666,333,0,5425,5423,1,0,0,0,5426,5429,1,0,0,0,5427,5425,1,0,0, + 0,5427,5428,1,0,0,0,5428,5430,1,0,0,0,5429,5427,1,0,0,0,5430,5431, + 5,176,0,0,5431,5436,3,666,333,0,5432,5433,5,868,0,0,5433,5435,3, + 666,333,0,5434,5432,1,0,0,0,5435,5438,1,0,0,0,5436,5434,1,0,0,0, + 5436,5437,1,0,0,0,5437,5442,1,0,0,0,5438,5436,1,0,0,0,5439,5440, + 5,194,0,0,5440,5441,5,704,0,0,5441,5443,5,121,0,0,5442,5439,1,0, + 0,0,5442,5443,1,0,0,0,5443,5445,1,0,0,0,5444,5355,1,0,0,0,5444,5417, + 1,0,0,0,5445,477,1,0,0,0,5446,5455,5,42,0,0,5447,5455,5,505,0,0, + 5448,5451,5,7,0,0,5449,5450,5,59,0,0,5450,5452,3,664,332,0,5451, + 5449,1,0,0,0,5451,5452,1,0,0,0,5452,5455,1,0,0,0,5453,5455,3,664, + 332,0,5454,5446,1,0,0,0,5454,5447,1,0,0,0,5454,5448,1,0,0,0,5454, + 5453,1,0,0,0,5455,479,1,0,0,0,5456,5457,5,73,0,0,5457,5458,5,547, + 0,0,5458,5459,5,119,0,0,5459,5460,3,694,347,0,5460,5461,5,176,0, + 0,5461,5466,3,694,347,0,5462,5463,5,868,0,0,5463,5465,3,694,347, + 0,5464,5462,1,0,0,0,5465,5468,1,0,0,0,5466,5464,1,0,0,0,5466,5467, + 1,0,0,0,5467,5472,1,0,0,0,5468,5466,1,0,0,0,5469,5470,5,194,0,0, + 5470,5471,5,73,0,0,5471,5473,5,121,0,0,5472,5469,1,0,0,0,5472,5473, + 1,0,0,0,5473,481,1,0,0,0,5474,5475,5,8,0,0,5475,5476,5,739,0,0,5476, + 5477,5,74,0,0,5477,5483,3,656,328,0,5478,5480,5,190,0,0,5479,5481, + 5,857,0,0,5480,5479,1,0,0,0,5480,5481,1,0,0,0,5481,5482,1,0,0,0, + 5482,5484,3,490,245,0,5483,5478,1,0,0,0,5483,5484,1,0,0,0,5484,5490, + 1,0,0,0,5485,5487,5,837,0,0,5486,5488,5,857,0,0,5487,5486,1,0,0, + 0,5487,5488,1,0,0,0,5488,5489,1,0,0,0,5489,5491,3,722,361,0,5490, + 5485,1,0,0,0,5490,5491,1,0,0,0,5491,5496,1,0,0,0,5492,5494,7,39, + 0,0,5493,5495,5,66,0,0,5494,5493,1,0,0,0,5494,5495,1,0,0,0,5495, + 5497,1,0,0,0,5496,5492,1,0,0,0,5496,5497,1,0,0,0,5497,483,1,0,0, + 0,5498,5499,5,34,0,0,5499,5500,5,739,0,0,5500,5501,5,74,0,0,5501, + 5502,3,654,327,0,5502,5503,5,839,0,0,5503,5504,5,857,0,0,5504,5510, + 7,81,0,0,5505,5507,5,190,0,0,5506,5508,5,857,0,0,5507,5506,1,0,0, + 0,5507,5508,1,0,0,0,5508,5509,1,0,0,0,5509,5511,3,490,245,0,5510, + 5505,1,0,0,0,5510,5511,1,0,0,0,5511,5517,1,0,0,0,5512,5514,5,837, + 0,0,5513,5515,5,857,0,0,5514,5513,1,0,0,0,5514,5515,1,0,0,0,5515, + 5516,1,0,0,0,5516,5518,3,722,361,0,5517,5512,1,0,0,0,5517,5518,1, + 0,0,0,5518,5520,1,0,0,0,5519,5521,7,39,0,0,5520,5519,1,0,0,0,5520, + 5521,1,0,0,0,5521,485,1,0,0,0,5522,5523,5,51,0,0,5523,5524,5,739, + 0,0,5524,5525,5,74,0,0,5525,5527,3,656,328,0,5526,5528,5,66,0,0, + 5527,5526,1,0,0,0,5527,5528,1,0,0,0,5528,487,1,0,0,0,5529,5530,5, + 155,0,0,5530,5531,5,739,0,0,5531,5532,5,74,0,0,5532,5542,3,656,328, + 0,5533,5534,5,65,0,0,5534,5539,3,722,361,0,5535,5536,5,868,0,0,5536, + 5538,3,722,361,0,5537,5535,1,0,0,0,5538,5541,1,0,0,0,5539,5537,1, + 0,0,0,5539,5540,1,0,0,0,5540,5543,1,0,0,0,5541,5539,1,0,0,0,5542, + 5533,1,0,0,0,5542,5543,1,0,0,0,5543,489,1,0,0,0,5544,5550,3,722, + 361,0,5545,5546,3,722,361,0,5546,5547,5,854,0,0,5547,5548,3,722, + 361,0,5548,5550,1,0,0,0,5549,5544,1,0,0,0,5549,5545,1,0,0,0,5550, + 5555,1,0,0,0,5551,5552,5,868,0,0,5552,5554,3,490,245,0,5553,5551, + 1,0,0,0,5554,5557,1,0,0,0,5555,5553,1,0,0,0,5555,5556,1,0,0,0,5556, + 491,1,0,0,0,5557,5555,1,0,0,0,5558,5559,5,141,0,0,5559,5560,5,678, + 0,0,5560,5565,3,536,268,0,5561,5562,5,868,0,0,5562,5564,3,536,268, + 0,5563,5561,1,0,0,0,5564,5567,1,0,0,0,5565,5563,1,0,0,0,5565,5566, + 1,0,0,0,5566,493,1,0,0,0,5567,5565,1,0,0,0,5568,5570,5,149,0,0,5569, + 5571,3,768,384,0,5570,5569,1,0,0,0,5570,5571,1,0,0,0,5571,5572,1, + 0,0,0,5572,5577,3,530,265,0,5573,5574,5,868,0,0,5574,5576,3,530, + 265,0,5575,5573,1,0,0,0,5576,5579,1,0,0,0,5577,5575,1,0,0,0,5577, + 5578,1,0,0,0,5578,5580,1,0,0,0,5579,5577,1,0,0,0,5580,5582,5,119, + 0,0,5581,5583,3,498,249,0,5582,5581,1,0,0,0,5582,5583,1,0,0,0,5583, + 5584,1,0,0,0,5584,5585,3,534,267,0,5585,5586,5,68,0,0,5586,5588, + 3,664,332,0,5587,5589,3,496,248,0,5588,5587,1,0,0,0,5588,5589,1, + 0,0,0,5589,5621,1,0,0,0,5590,5592,5,149,0,0,5591,5593,3,768,384, + 0,5592,5591,1,0,0,0,5592,5593,1,0,0,0,5593,5594,1,0,0,0,5594,5596, + 5,7,0,0,5595,5597,5,734,0,0,5596,5595,1,0,0,0,5596,5597,1,0,0,0, + 5597,5598,1,0,0,0,5598,5599,5,868,0,0,5599,5600,5,73,0,0,5600,5601, + 5,121,0,0,5601,5602,5,68,0,0,5602,5604,3,664,332,0,5603,5605,3,496, + 248,0,5604,5603,1,0,0,0,5604,5605,1,0,0,0,5605,5621,1,0,0,0,5606, + 5608,5,149,0,0,5607,5609,3,768,384,0,5608,5607,1,0,0,0,5608,5609, + 1,0,0,0,5609,5612,1,0,0,0,5610,5611,5,547,0,0,5611,5613,5,119,0, + 0,5612,5610,1,0,0,0,5612,5613,1,0,0,0,5613,5614,1,0,0,0,5614,5615, + 3,664,332,0,5615,5616,5,68,0,0,5616,5618,3,664,332,0,5617,5619,3, + 496,248,0,5618,5617,1,0,0,0,5618,5619,1,0,0,0,5619,5621,1,0,0,0, + 5620,5568,1,0,0,0,5620,5590,1,0,0,0,5620,5606,1,0,0,0,5621,495,1, + 0,0,0,5622,5623,5,79,0,0,5623,5624,5,674,0,0,5624,5625,5,678,0,0, + 5625,497,1,0,0,0,5626,5627,7,82,0,0,5627,499,1,0,0,0,5628,5629,5, + 155,0,0,5629,5632,5,529,0,0,5630,5631,5,65,0,0,5631,5633,3,694,347, + 0,5632,5630,1,0,0,0,5632,5633,1,0,0,0,5633,5634,1,0,0,0,5634,5637, + 5,857,0,0,5635,5638,3,808,404,0,5636,5638,5,882,0,0,5637,5635,1, + 0,0,0,5637,5636,1,0,0,0,5638,5661,1,0,0,0,5639,5640,5,155,0,0,5640, + 5643,5,529,0,0,5641,5642,5,65,0,0,5642,5644,3,694,347,0,5643,5641, + 1,0,0,0,5643,5644,1,0,0,0,5644,5649,1,0,0,0,5645,5646,5,176,0,0, + 5646,5650,5,829,0,0,5647,5648,5,857,0,0,5648,5650,5,882,0,0,5649, + 5645,1,0,0,0,5649,5647,1,0,0,0,5650,5653,1,0,0,0,5651,5652,5,143, + 0,0,5652,5654,5,882,0,0,5653,5651,1,0,0,0,5653,5654,1,0,0,0,5654, + 5658,1,0,0,0,5655,5656,5,147,0,0,5656,5657,5,36,0,0,5657,5659,5, + 529,0,0,5658,5655,1,0,0,0,5658,5659,1,0,0,0,5659,5661,1,0,0,0,5660, + 5628,1,0,0,0,5660,5639,1,0,0,0,5661,501,1,0,0,0,5662,5663,3,694, + 347,0,5663,5664,3,520,260,0,5664,503,1,0,0,0,5665,5691,3,694,347, + 0,5666,5667,5,423,0,0,5667,5668,5,20,0,0,5668,5669,5,882,0,0,5669, + 5692,3,512,256,0,5670,5671,5,423,0,0,5671,5672,5,20,0,0,5672,5673, + 5,829,0,0,5673,5674,5,529,0,0,5674,5692,3,512,256,0,5675,5676,5, + 423,0,0,5676,5677,5,194,0,0,5677,5692,3,514,257,0,5678,5679,5,369, + 0,0,5679,5680,5,511,0,0,5680,5692,5,529,0,0,5681,5682,7,83,0,0,5682, + 5684,3,528,264,0,5683,5685,3,524,262,0,5684,5683,1,0,0,0,5684,5685, + 1,0,0,0,5685,5687,1,0,0,0,5686,5681,1,0,0,0,5687,5688,1,0,0,0,5688, + 5686,1,0,0,0,5688,5689,1,0,0,0,5689,5692,1,0,0,0,5690,5692,3,526, + 263,0,5691,5666,1,0,0,0,5691,5670,1,0,0,0,5691,5675,1,0,0,0,5691, + 5678,1,0,0,0,5691,5686,1,0,0,0,5691,5690,1,0,0,0,5691,5692,1,0,0, + 0,5692,505,1,0,0,0,5693,5694,5,423,0,0,5694,5700,5,20,0,0,5695,5701, + 5,882,0,0,5696,5697,5,829,0,0,5697,5701,5,529,0,0,5698,5699,5,529, + 0,0,5699,5701,5,882,0,0,5700,5695,1,0,0,0,5700,5696,1,0,0,0,5700, + 5698,1,0,0,0,5701,5704,1,0,0,0,5702,5703,5,11,0,0,5703,5705,3,506, + 253,0,5704,5702,1,0,0,0,5704,5705,1,0,0,0,5705,5730,1,0,0,0,5706, + 5707,5,423,0,0,5707,5708,5,194,0,0,5708,5717,3,716,358,0,5709,5713, + 5,20,0,0,5710,5714,5,882,0,0,5711,5712,5,829,0,0,5712,5714,5,529, + 0,0,5713,5710,1,0,0,0,5713,5711,1,0,0,0,5714,5718,1,0,0,0,5715,5716, + 5,13,0,0,5716,5718,5,882,0,0,5717,5709,1,0,0,0,5717,5715,1,0,0,0, + 5717,5718,1,0,0,0,5718,5721,1,0,0,0,5719,5720,5,11,0,0,5720,5722, + 3,506,253,0,5721,5719,1,0,0,0,5721,5722,1,0,0,0,5722,5730,1,0,0, + 0,5723,5724,5,423,0,0,5724,5725,5,194,0,0,5725,5727,3,716,358,0, + 5726,5728,3,508,254,0,5727,5726,1,0,0,0,5727,5728,1,0,0,0,5728,5730, + 1,0,0,0,5729,5693,1,0,0,0,5729,5706,1,0,0,0,5729,5723,1,0,0,0,5730, + 507,1,0,0,0,5731,5732,5,427,0,0,5732,5733,5,708,0,0,5733,5734,5, + 423,0,0,5734,5738,5,20,0,0,5735,5736,5,829,0,0,5736,5739,5,529,0, + 0,5737,5739,5,882,0,0,5738,5735,1,0,0,0,5738,5737,1,0,0,0,5739,5749, + 1,0,0,0,5740,5741,5,427,0,0,5741,5742,5,708,0,0,5742,5743,5,423, + 0,0,5743,5744,5,194,0,0,5744,5745,3,716,358,0,5745,5746,5,13,0,0, + 5746,5747,5,882,0,0,5747,5749,1,0,0,0,5748,5731,1,0,0,0,5748,5740, + 1,0,0,0,5749,509,1,0,0,0,5750,5751,3,694,347,0,5751,5752,5,423,0, + 0,5752,5753,5,20,0,0,5753,5754,5,529,0,0,5754,5755,5,882,0,0,5755, + 5776,1,0,0,0,5756,5757,3,694,347,0,5757,5758,5,423,0,0,5758,5759, + 5,20,0,0,5759,5760,5,829,0,0,5760,5761,5,529,0,0,5761,5762,3,512, + 256,0,5762,5776,1,0,0,0,5763,5764,3,694,347,0,5764,5765,5,423,0, + 0,5765,5766,5,20,0,0,5766,5767,5,882,0,0,5767,5768,3,512,256,0,5768, + 5776,1,0,0,0,5769,5770,3,694,347,0,5770,5771,5,423,0,0,5771,5772, + 5,194,0,0,5772,5773,3,514,257,0,5773,5776,1,0,0,0,5774,5776,3,694, + 347,0,5775,5750,1,0,0,0,5775,5756,1,0,0,0,5775,5763,1,0,0,0,5775, + 5769,1,0,0,0,5775,5774,1,0,0,0,5776,511,1,0,0,0,5777,5778,5,143, + 0,0,5778,5780,5,882,0,0,5779,5777,1,0,0,0,5779,5780,1,0,0,0,5780, + 5784,1,0,0,0,5781,5782,5,147,0,0,5782,5783,5,36,0,0,5783,5785,5, + 529,0,0,5784,5781,1,0,0,0,5784,5785,1,0,0,0,5785,513,1,0,0,0,5786, + 5794,3,716,358,0,5787,5791,7,84,0,0,5788,5792,5,882,0,0,5789,5790, + 5,829,0,0,5790,5792,5,529,0,0,5791,5788,1,0,0,0,5791,5789,1,0,0, + 0,5792,5793,1,0,0,0,5793,5795,3,512,256,0,5794,5787,1,0,0,0,5794, + 5795,1,0,0,0,5795,5801,1,0,0,0,5796,5797,3,716,358,0,5797,5798,5, + 188,0,0,5798,5799,3,808,404,0,5799,5801,1,0,0,0,5800,5786,1,0,0, + 0,5800,5796,1,0,0,0,5801,515,1,0,0,0,5802,5811,5,169,0,0,5803,5811, + 5,693,0,0,5804,5805,5,331,0,0,5805,5811,5,882,0,0,5806,5807,5,441, + 0,0,5807,5811,5,882,0,0,5808,5809,5,651,0,0,5809,5811,5,882,0,0, + 5810,5802,1,0,0,0,5810,5803,1,0,0,0,5810,5804,1,0,0,0,5810,5806, + 1,0,0,0,5810,5808,1,0,0,0,5811,517,1,0,0,0,5812,5813,5,479,0,0,5813, + 5821,3,722,361,0,5814,5815,5,482,0,0,5815,5821,3,722,361,0,5816, + 5817,5,478,0,0,5817,5821,3,722,361,0,5818,5819,5,483,0,0,5819,5821, + 3,722,361,0,5820,5812,1,0,0,0,5820,5814,1,0,0,0,5820,5816,1,0,0, + 0,5820,5818,1,0,0,0,5821,519,1,0,0,0,5822,5823,5,529,0,0,5823,5830, + 5,390,0,0,5824,5831,5,42,0,0,5825,5831,5,500,0,0,5826,5827,5,87, + 0,0,5827,5828,3,722,361,0,5828,5829,5,698,0,0,5829,5831,1,0,0,0, + 5830,5824,1,0,0,0,5830,5825,1,0,0,0,5830,5826,1,0,0,0,5830,5831, + 1,0,0,0,5831,5861,1,0,0,0,5832,5833,5,529,0,0,5833,5836,5,420,0, + 0,5834,5837,5,42,0,0,5835,5837,3,722,361,0,5836,5834,1,0,0,0,5836, + 5835,1,0,0,0,5837,5861,1,0,0,0,5838,5839,5,529,0,0,5839,5840,5,581, + 0,0,5840,5845,5,87,0,0,5841,5846,5,42,0,0,5842,5843,3,722,361,0, + 5843,5844,5,698,0,0,5844,5846,1,0,0,0,5845,5841,1,0,0,0,5845,5842, + 1,0,0,0,5846,5861,1,0,0,0,5847,5848,5,529,0,0,5848,5849,5,144,0, + 0,5849,5851,5,36,0,0,5850,5852,7,85,0,0,5851,5850,1,0,0,0,5851,5852, + 1,0,0,0,5852,5861,1,0,0,0,5853,5854,5,395,0,0,5854,5861,3,722,361, + 0,5855,5858,5,530,0,0,5856,5859,3,722,361,0,5857,5859,5,669,0,0, + 5858,5856,1,0,0,0,5858,5857,1,0,0,0,5859,5861,1,0,0,0,5860,5822, + 1,0,0,0,5860,5832,1,0,0,0,5860,5838,1,0,0,0,5860,5847,1,0,0,0,5860, + 5853,1,0,0,0,5860,5855,1,0,0,0,5861,521,1,0,0,0,5862,5863,5,304, + 0,0,5863,5864,7,86,0,0,5864,523,1,0,0,0,5865,5868,5,423,0,0,5866, + 5867,5,194,0,0,5867,5869,3,716,358,0,5868,5866,1,0,0,0,5868,5869, + 1,0,0,0,5869,5878,1,0,0,0,5870,5874,5,20,0,0,5871,5875,5,882,0,0, + 5872,5873,5,829,0,0,5873,5875,5,529,0,0,5874,5871,1,0,0,0,5874,5872, + 1,0,0,0,5875,5879,1,0,0,0,5876,5877,5,13,0,0,5877,5879,5,882,0,0, + 5878,5870,1,0,0,0,5878,5876,1,0,0,0,5879,525,1,0,0,0,5880,5881,3, + 528,264,0,5881,5882,5,429,0,0,5882,5883,5,555,0,0,5883,5896,1,0, + 0,0,5884,5885,3,528,264,0,5885,5886,5,401,0,0,5886,5887,5,555,0, + 0,5887,5888,5,155,0,0,5888,5889,5,330,0,0,5889,5890,5,13,0,0,5890, + 5891,5,882,0,0,5891,5896,1,0,0,0,5892,5893,3,528,264,0,5893,5894, + 5,675,0,0,5894,5896,1,0,0,0,5895,5880,1,0,0,0,5895,5884,1,0,0,0, + 5895,5892,1,0,0,0,5896,527,1,0,0,0,5897,5898,7,87,0,0,5898,5899, + 5,394,0,0,5899,529,1,0,0,0,5900,5905,3,532,266,0,5901,5902,5,866, + 0,0,5902,5903,3,670,335,0,5903,5904,5,867,0,0,5904,5906,1,0,0,0, + 5905,5901,1,0,0,0,5905,5906,1,0,0,0,5906,531,1,0,0,0,5907,5909,5, + 7,0,0,5908,5910,5,734,0,0,5909,5908,1,0,0,0,5909,5910,1,0,0,0,5910, + 6001,1,0,0,0,5911,5913,5,8,0,0,5912,5914,5,743,0,0,5913,5912,1,0, + 0,0,5913,5914,1,0,0,0,5914,6001,1,0,0,0,5915,5923,5,34,0,0,5916, + 5917,5,660,0,0,5917,5924,5,752,0,0,5918,5924,5,743,0,0,5919,5924, + 5,684,0,0,5920,5924,5,678,0,0,5921,5924,5,658,0,0,5922,5924,5,582, + 0,0,5923,5916,1,0,0,0,5923,5918,1,0,0,0,5923,5919,1,0,0,0,5923,5920, + 1,0,0,0,5923,5921,1,0,0,0,5923,5922,1,0,0,0,5923,5924,1,0,0,0,5924, + 6001,1,0,0,0,5925,6001,5,44,0,0,5926,5928,5,51,0,0,5927,5929,5,582, + 0,0,5928,5927,1,0,0,0,5928,5929,1,0,0,0,5929,6001,1,0,0,0,5930,6001, + 5,385,0,0,5931,6001,5,717,0,0,5932,6001,5,718,0,0,5933,5934,5,73, + 0,0,5934,6001,5,121,0,0,5935,6001,5,82,0,0,5936,6001,5,86,0,0,5937, + 5938,5,104,0,0,5938,6001,5,752,0,0,5939,6001,5,735,0,0,5940,6001, + 5,547,0,0,5941,6001,5,138,0,0,5942,6001,5,736,0,0,5943,5944,5,572, + 0,0,5944,6001,7,88,0,0,5945,6001,5,154,0,0,5946,5947,5,157,0,0,5947, + 6001,7,89,0,0,5948,6001,5,749,0,0,5949,6001,5,750,0,0,5950,6001, + 5,178,0,0,5951,6001,5,185,0,0,5952,6001,5,186,0,0,5953,6001,5,705, + 0,0,5954,6001,5,706,0,0,5955,6001,5,707,0,0,5956,6001,5,709,0,0, + 5957,6001,5,710,0,0,5958,6001,5,711,0,0,5959,6001,5,712,0,0,5960, + 6001,5,714,0,0,5961,6001,5,715,0,0,5962,6001,5,716,0,0,5963,6001, + 5,719,0,0,5964,6001,5,720,0,0,5965,6001,5,721,0,0,5966,6001,5,722, + 0,0,5967,6001,5,723,0,0,5968,6001,5,724,0,0,5969,6001,5,725,0,0, + 5970,6001,5,726,0,0,5971,6001,5,727,0,0,5972,6001,5,728,0,0,5973, + 6001,5,731,0,0,5974,6001,5,732,0,0,5975,6001,5,733,0,0,5976,6001, + 5,737,0,0,5977,6001,5,738,0,0,5978,6001,5,740,0,0,5979,6001,5,741, + 0,0,5980,6001,5,742,0,0,5981,6001,5,745,0,0,5982,6001,5,746,0,0, + 5983,6001,5,747,0,0,5984,6001,5,160,0,0,5985,6001,5,748,0,0,5986, + 6001,5,836,0,0,5987,6001,5,751,0,0,5988,6001,5,753,0,0,5989,6001, + 5,838,0,0,5990,6001,5,754,0,0,5991,6001,5,755,0,0,5992,5993,5,103, + 0,0,5993,5994,5,68,0,0,5994,6001,5,744,0,0,5995,5996,5,154,0,0,5996, + 5997,5,88,0,0,5997,6001,5,744,0,0,5998,5999,5,729,0,0,5999,6001, + 5,730,0,0,6000,5907,1,0,0,0,6000,5911,1,0,0,0,6000,5915,1,0,0,0, + 6000,5925,1,0,0,0,6000,5926,1,0,0,0,6000,5930,1,0,0,0,6000,5931, + 1,0,0,0,6000,5932,1,0,0,0,6000,5933,1,0,0,0,6000,5935,1,0,0,0,6000, + 5936,1,0,0,0,6000,5937,1,0,0,0,6000,5939,1,0,0,0,6000,5940,1,0,0, + 0,6000,5941,1,0,0,0,6000,5942,1,0,0,0,6000,5943,1,0,0,0,6000,5945, + 1,0,0,0,6000,5946,1,0,0,0,6000,5948,1,0,0,0,6000,5949,1,0,0,0,6000, + 5950,1,0,0,0,6000,5951,1,0,0,0,6000,5952,1,0,0,0,6000,5953,1,0,0, + 0,6000,5954,1,0,0,0,6000,5955,1,0,0,0,6000,5956,1,0,0,0,6000,5957, + 1,0,0,0,6000,5958,1,0,0,0,6000,5959,1,0,0,0,6000,5960,1,0,0,0,6000, + 5961,1,0,0,0,6000,5962,1,0,0,0,6000,5963,1,0,0,0,6000,5964,1,0,0, + 0,6000,5965,1,0,0,0,6000,5966,1,0,0,0,6000,5967,1,0,0,0,6000,5968, + 1,0,0,0,6000,5969,1,0,0,0,6000,5970,1,0,0,0,6000,5971,1,0,0,0,6000, + 5972,1,0,0,0,6000,5973,1,0,0,0,6000,5974,1,0,0,0,6000,5975,1,0,0, + 0,6000,5976,1,0,0,0,6000,5977,1,0,0,0,6000,5978,1,0,0,0,6000,5979, + 1,0,0,0,6000,5980,1,0,0,0,6000,5981,1,0,0,0,6000,5982,1,0,0,0,6000, + 5983,1,0,0,0,6000,5984,1,0,0,0,6000,5985,1,0,0,0,6000,5986,1,0,0, + 0,6000,5987,1,0,0,0,6000,5988,1,0,0,0,6000,5989,1,0,0,0,6000,5990, + 1,0,0,0,6000,5991,1,0,0,0,6000,5992,1,0,0,0,6000,5995,1,0,0,0,6000, + 5998,1,0,0,0,6001,533,1,0,0,0,6002,6019,5,850,0,0,6003,6004,5,850, + 0,0,6004,6005,5,865,0,0,6005,6019,5,850,0,0,6006,6007,3,716,358, + 0,6007,6008,5,865,0,0,6008,6009,5,850,0,0,6009,6019,1,0,0,0,6010, + 6011,3,716,358,0,6011,6012,5,865,0,0,6012,6013,3,716,358,0,6013, + 6019,1,0,0,0,6014,6015,3,716,358,0,6015,6016,3,720,360,0,6016,6019, + 1,0,0,0,6017,6019,3,716,358,0,6018,6002,1,0,0,0,6018,6003,1,0,0, + 0,6018,6006,1,0,0,0,6018,6010,1,0,0,0,6018,6014,1,0,0,0,6018,6017, + 1,0,0,0,6019,535,1,0,0,0,6020,6021,3,694,347,0,6021,6022,5,176,0, + 0,6022,6023,3,694,347,0,6023,537,1,0,0,0,6024,6026,5,10,0,0,6025, + 6027,3,548,274,0,6026,6025,1,0,0,0,6026,6027,1,0,0,0,6027,6028,1, + 0,0,0,6028,6029,5,173,0,0,6029,6073,3,660,330,0,6030,6032,5,10,0, + 0,6031,6033,3,548,274,0,6032,6031,1,0,0,0,6032,6033,1,0,0,0,6033, + 6034,1,0,0,0,6034,6035,5,173,0,0,6035,6036,3,662,331,0,6036,6037, + 5,185,0,0,6037,6038,5,77,0,0,6038,6039,5,119,0,0,6039,6044,3,670, + 335,0,6040,6041,5,194,0,0,6041,6042,3,722,361,0,6042,6043,5,19,0, + 0,6043,6045,1,0,0,0,6044,6040,1,0,0,0,6044,6045,1,0,0,0,6045,6073, + 1,0,0,0,6046,6048,5,10,0,0,6047,6049,3,548,274,0,6048,6047,1,0,0, + 0,6048,6049,1,0,0,0,6049,6050,1,0,0,0,6050,6051,5,173,0,0,6051,6052, + 3,662,331,0,6052,6053,5,185,0,0,6053,6054,5,77,0,0,6054,6055,5,119, + 0,0,6055,6059,3,672,336,0,6056,6057,5,188,0,0,6057,6058,5,360,0, + 0,6058,6060,5,882,0,0,6059,6056,1,0,0,0,6059,6060,1,0,0,0,6060,6073, + 1,0,0,0,6061,6063,5,10,0,0,6062,6064,3,548,274,0,6063,6062,1,0,0, + 0,6063,6064,1,0,0,0,6064,6065,1,0,0,0,6065,6066,5,173,0,0,6066,6067, + 3,662,331,0,6067,6068,5,51,0,0,6068,6069,5,77,0,0,6069,6070,5,119, + 0,0,6070,6071,3,670,335,0,6071,6073,1,0,0,0,6072,6024,1,0,0,0,6072, + 6030,1,0,0,0,6072,6046,1,0,0,0,6072,6061,1,0,0,0,6073,539,1,0,0, + 0,6074,6075,5,27,0,0,6075,6076,5,173,0,0,6076,6080,3,660,330,0,6077, + 6079,3,550,275,0,6078,6077,1,0,0,0,6079,6082,1,0,0,0,6080,6078,1, + 0,0,0,6080,6081,1,0,0,0,6081,541,1,0,0,0,6082,6080,1,0,0,0,6083, + 6084,5,329,0,0,6084,6085,5,173,0,0,6085,6087,3,660,330,0,6086,6088, + 7,90,0,0,6087,6086,1,0,0,0,6087,6088,1,0,0,0,6088,543,1,0,0,0,6089, + 6091,5,120,0,0,6090,6092,3,548,274,0,6091,6090,1,0,0,0,6091,6092, + 1,0,0,0,6092,6093,1,0,0,0,6093,6094,7,61,0,0,6094,6095,3,660,330, + 0,6095,545,1,0,0,0,6096,6098,5,562,0,0,6097,6099,3,548,274,0,6098, + 6097,1,0,0,0,6098,6099,1,0,0,0,6099,6100,1,0,0,0,6100,6101,5,173, + 0,0,6101,6103,3,660,330,0,6102,6104,5,549,0,0,6103,6102,1,0,0,0, + 6103,6104,1,0,0,0,6104,6106,1,0,0,0,6105,6107,5,392,0,0,6106,6105, + 1,0,0,0,6106,6107,1,0,0,0,6107,6109,1,0,0,0,6108,6110,5,679,0,0, + 6109,6108,1,0,0,0,6109,6110,1,0,0,0,6110,547,1,0,0,0,6111,6112,7, + 91,0,0,6112,549,1,0,0,0,6113,6114,5,65,0,0,6114,6121,5,677,0,0,6115, + 6121,5,549,0,0,6116,6121,5,396,0,0,6117,6121,5,484,0,0,6118,6121, + 5,392,0,0,6119,6121,5,327,0,0,6120,6113,1,0,0,0,6120,6115,1,0,0, + 0,6120,6116,1,0,0,0,6120,6117,1,0,0,0,6120,6118,1,0,0,0,6120,6119, + 1,0,0,0,6121,551,1,0,0,0,6122,6123,5,432,0,0,6123,6124,5,344,0,0, + 6124,6129,3,716,358,0,6125,6126,5,868,0,0,6126,6128,3,716,358,0, + 6127,6125,1,0,0,0,6128,6131,1,0,0,0,6129,6127,1,0,0,0,6129,6130, + 1,0,0,0,6130,6141,1,0,0,0,6131,6129,1,0,0,0,6132,6133,5,155,0,0, + 6133,6138,3,554,277,0,6134,6135,5,868,0,0,6135,6137,3,554,277,0, + 6136,6134,1,0,0,0,6137,6140,1,0,0,0,6138,6136,1,0,0,0,6138,6139, + 1,0,0,0,6139,6142,1,0,0,0,6140,6138,1,0,0,0,6141,6132,1,0,0,0,6141, + 6142,1,0,0,0,6142,553,1,0,0,0,6143,6144,7,92,0,0,6144,6145,3,712, + 356,0,6145,6146,5,857,0,0,6146,6147,3,814,407,0,6147,555,1,0,0,0, + 6148,6149,5,673,0,0,6149,6150,5,344,0,0,6150,6155,3,716,358,0,6151, + 6152,5,868,0,0,6152,6154,3,716,358,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,557,1,0,0,0,6157, + 6155,1,0,0,0,6158,6159,5,432,0,0,6159,6160,5,534,0,0,6160,6161,3, + 716,358,0,6161,6162,5,603,0,0,6162,6163,5,882,0,0,6163,559,1,0,0, + 0,6164,6165,5,673,0,0,6165,6166,5,534,0,0,6166,6167,3,716,358,0, + 6167,561,1,0,0,0,6168,6169,5,713,0,0,6169,6170,5,450,0,0,6170,6171, + 5,360,0,0,6171,6173,5,367,0,0,6172,6174,5,857,0,0,6173,6172,1,0, + 0,0,6173,6174,1,0,0,0,6174,6175,1,0,0,0,6175,6199,5,882,0,0,6176, + 6177,5,713,0,0,6177,6178,5,433,0,0,6178,6179,5,68,0,0,6179,6180, + 3,686,343,0,6180,6181,5,423,0,0,6181,6182,5,20,0,0,6182,6189,5,882, + 0,0,6183,6184,5,360,0,0,6184,6186,5,367,0,0,6185,6187,5,857,0,0, + 6186,6185,1,0,0,0,6186,6187,1,0,0,0,6187,6188,1,0,0,0,6188,6190, + 5,882,0,0,6189,6183,1,0,0,0,6189,6190,1,0,0,0,6190,6196,1,0,0,0, + 6191,6193,5,144,0,0,6192,6194,5,502,0,0,6193,6192,1,0,0,0,6193,6194, + 1,0,0,0,6194,6195,1,0,0,0,6195,6197,5,169,0,0,6196,6191,1,0,0,0, + 6196,6197,1,0,0,0,6197,6199,1,0,0,0,6198,6168,1,0,0,0,6198,6176, + 1,0,0,0,6199,563,1,0,0,0,6200,6201,5,155,0,0,6201,6202,3,568,284, + 0,6202,6205,7,93,0,0,6203,6206,3,814,407,0,6204,6206,5,119,0,0,6205, + 6203,1,0,0,0,6205,6204,1,0,0,0,6206,6216,1,0,0,0,6207,6208,5,868, + 0,0,6208,6209,3,568,284,0,6209,6212,7,93,0,0,6210,6213,3,814,407, + 0,6211,6213,5,119,0,0,6212,6210,1,0,0,0,6212,6211,1,0,0,0,6213,6215, + 1,0,0,0,6214,6207,1,0,0,0,6215,6218,1,0,0,0,6216,6214,1,0,0,0,6216, + 6217,1,0,0,0,6217,6253,1,0,0,0,6218,6216,1,0,0,0,6219,6220,5,155, + 0,0,6220,6223,3,58,29,0,6221,6224,3,698,349,0,6222,6224,5,42,0,0, + 6223,6221,1,0,0,0,6223,6222,1,0,0,0,6224,6253,1,0,0,0,6225,6226, + 5,155,0,0,6226,6233,5,497,0,0,6227,6230,3,698,349,0,6228,6229,5, + 28,0,0,6229,6231,3,700,350,0,6230,6228,1,0,0,0,6230,6231,1,0,0,0, + 6231,6234,1,0,0,0,6232,6234,5,42,0,0,6233,6227,1,0,0,0,6233,6232, + 1,0,0,0,6234,6253,1,0,0,0,6235,6253,3,500,250,0,6236,6253,3,352, + 176,0,6237,6253,3,350,175,0,6238,6239,5,155,0,0,6239,6240,3,712, + 356,0,6240,6241,7,93,0,0,6241,6249,3,814,407,0,6242,6243,5,868,0, + 0,6243,6244,3,712,356,0,6244,6245,7,93,0,0,6245,6246,3,814,407,0, + 6246,6248,1,0,0,0,6247,6242,1,0,0,0,6248,6251,1,0,0,0,6249,6247, + 1,0,0,0,6249,6250,1,0,0,0,6250,6253,1,0,0,0,6251,6249,1,0,0,0,6252, + 6200,1,0,0,0,6252,6219,1,0,0,0,6252,6225,1,0,0,0,6252,6235,1,0,0, + 0,6252,6236,1,0,0,0,6252,6237,1,0,0,0,6252,6238,1,0,0,0,6253,565, + 1,0,0,0,6254,6255,5,157,0,0,6255,6256,7,63,0,0,6256,6439,5,452,0, + 0,6257,6258,5,157,0,0,6258,6259,7,94,0,0,6259,6262,5,386,0,0,6260, + 6261,5,80,0,0,6261,6263,5,882,0,0,6262,6260,1,0,0,0,6262,6263,1, + 0,0,0,6263,6266,1,0,0,0,6264,6265,5,68,0,0,6265,6267,3,722,361,0, + 6266,6264,1,0,0,0,6266,6267,1,0,0,0,6267,6275,1,0,0,0,6268,6272, + 5,100,0,0,6269,6270,3,722,361,0,6270,6271,5,868,0,0,6271,6273,1, + 0,0,0,6272,6269,1,0,0,0,6272,6273,1,0,0,0,6273,6274,1,0,0,0,6274, + 6276,3,722,361,0,6275,6268,1,0,0,0,6275,6276,1,0,0,0,6276,6278,1, + 0,0,0,6277,6279,3,400,200,0,6278,6277,1,0,0,0,6278,6279,1,0,0,0, + 6279,6439,1,0,0,0,6280,6281,5,157,0,0,6281,6283,3,570,285,0,6282, + 6284,3,572,286,0,6283,6282,1,0,0,0,6283,6284,1,0,0,0,6284,6439,1, + 0,0,0,6285,6287,5,157,0,0,6286,6288,5,392,0,0,6287,6286,1,0,0,0, + 6287,6288,1,0,0,0,6288,6290,1,0,0,0,6289,6291,5,408,0,0,6290,6289, + 1,0,0,0,6290,6291,1,0,0,0,6291,6292,1,0,0,0,6292,6293,7,47,0,0,6293, + 6294,7,95,0,0,6294,6297,3,662,331,0,6295,6296,7,95,0,0,6296,6298, + 3,638,319,0,6297,6295,1,0,0,0,6297,6298,1,0,0,0,6298,6300,1,0,0, + 0,6299,6301,3,572,286,0,6300,6299,1,0,0,0,6300,6301,1,0,0,0,6301, + 6439,1,0,0,0,6302,6303,5,157,0,0,6303,6304,5,34,0,0,6304,6306,7, + 0,0,0,6305,6307,3,770,385,0,6306,6305,1,0,0,0,6306,6307,1,0,0,0, + 6307,6308,1,0,0,0,6308,6439,3,638,319,0,6309,6310,5,157,0,0,6310, + 6311,5,34,0,0,6311,6312,7,96,0,0,6312,6439,3,712,356,0,6313,6314, + 5,157,0,0,6314,6315,5,34,0,0,6315,6316,5,409,0,0,6316,6439,3,642, + 321,0,6317,6318,5,157,0,0,6318,6319,5,34,0,0,6319,6320,5,684,0,0, + 6320,6439,3,646,323,0,6321,6322,5,157,0,0,6322,6323,5,34,0,0,6323, + 6324,5,173,0,0,6324,6439,3,662,331,0,6325,6326,5,157,0,0,6326,6327, + 5,34,0,0,6327,6328,5,678,0,0,6328,6439,3,694,347,0,6329,6330,5,157, + 0,0,6330,6331,5,380,0,0,6331,6332,3,702,351,0,6332,6333,7,97,0,0, + 6333,6439,1,0,0,0,6334,6335,5,157,0,0,6335,6439,3,574,287,0,6336, + 6337,5,157,0,0,6337,6345,7,98,0,0,6338,6342,5,100,0,0,6339,6340, + 3,722,361,0,6340,6341,5,868,0,0,6341,6343,1,0,0,0,6342,6339,1,0, + 0,0,6342,6343,1,0,0,0,6343,6344,1,0,0,0,6344,6346,3,722,361,0,6345, + 6338,1,0,0,0,6345,6346,1,0,0,0,6346,6439,1,0,0,0,6347,6348,5,157, + 0,0,6348,6349,5,262,0,0,6349,6350,5,866,0,0,6350,6351,5,850,0,0, + 6351,6352,5,867,0,0,6352,6439,7,98,0,0,6353,6354,5,157,0,0,6354, + 6357,3,576,288,0,6355,6356,7,95,0,0,6356,6358,3,638,319,0,6357,6355, + 1,0,0,0,6357,6358,1,0,0,0,6358,6360,1,0,0,0,6359,6361,3,572,286, + 0,6360,6359,1,0,0,0,6360,6361,1,0,0,0,6361,6439,1,0,0,0,6362,6363, + 5,157,0,0,6363,6364,5,132,0,0,6364,6365,5,336,0,0,6365,6439,3,712, + 356,0,6366,6367,5,157,0,0,6367,6368,5,409,0,0,6368,6369,5,336,0, + 0,6369,6439,3,642,321,0,6370,6371,5,157,0,0,6371,6378,5,414,0,0, + 6372,6373,5,65,0,0,6373,6376,3,666,333,0,6374,6375,5,188,0,0,6375, + 6377,3,664,332,0,6376,6374,1,0,0,0,6376,6377,1,0,0,0,6377,6379,1, + 0,0,0,6378,6372,1,0,0,0,6378,6379,1,0,0,0,6379,6439,1,0,0,0,6380, + 6382,5,157,0,0,6381,6383,5,392,0,0,6382,6381,1,0,0,0,6382,6383,1, + 0,0,0,6383,6384,1,0,0,0,6384,6385,7,99,0,0,6385,6386,7,95,0,0,6386, + 6389,3,662,331,0,6387,6388,7,95,0,0,6388,6390,3,638,319,0,6389,6387, + 1,0,0,0,6389,6390,1,0,0,0,6390,6393,1,0,0,0,6391,6392,5,192,0,0, + 6392,6394,3,814,407,0,6393,6391,1,0,0,0,6393,6394,1,0,0,0,6394,6439, + 1,0,0,0,6395,6396,5,157,0,0,6396,6397,5,516,0,0,6397,6400,5,752, + 0,0,6398,6399,7,95,0,0,6399,6401,3,638,319,0,6400,6398,1,0,0,0,6400, + 6401,1,0,0,0,6401,6403,1,0,0,0,6402,6404,3,572,286,0,6403,6402,1, + 0,0,0,6403,6404,1,0,0,0,6404,6439,1,0,0,0,6405,6406,5,157,0,0,6406, + 6415,5,545,0,0,6407,6412,3,578,289,0,6408,6409,5,868,0,0,6409,6411, + 3,578,289,0,6410,6408,1,0,0,0,6411,6414,1,0,0,0,6412,6410,1,0,0, + 0,6412,6413,1,0,0,0,6413,6416,1,0,0,0,6414,6412,1,0,0,0,6415,6407, + 1,0,0,0,6415,6416,1,0,0,0,6416,6420,1,0,0,0,6417,6418,5,65,0,0,6418, + 6419,5,548,0,0,6419,6421,3,722,361,0,6420,6417,1,0,0,0,6420,6421, + 1,0,0,0,6421,6428,1,0,0,0,6422,6423,5,100,0,0,6423,6426,3,722,361, + 0,6424,6425,5,509,0,0,6425,6427,3,722,361,0,6426,6424,1,0,0,0,6426, + 6427,1,0,0,0,6427,6429,1,0,0,0,6428,6422,1,0,0,0,6428,6429,1,0,0, + 0,6429,6439,1,0,0,0,6430,6431,5,157,0,0,6431,6432,7,64,0,0,6432, + 6434,5,645,0,0,6433,6435,3,400,200,0,6434,6433,1,0,0,0,6434,6435, + 1,0,0,0,6435,6439,1,0,0,0,6436,6437,5,157,0,0,6437,6439,5,564,0, + 0,6438,6254,1,0,0,0,6438,6257,1,0,0,0,6438,6280,1,0,0,0,6438,6285, + 1,0,0,0,6438,6302,1,0,0,0,6438,6309,1,0,0,0,6438,6313,1,0,0,0,6438, + 6317,1,0,0,0,6438,6321,1,0,0,0,6438,6325,1,0,0,0,6438,6329,1,0,0, + 0,6438,6334,1,0,0,0,6438,6336,1,0,0,0,6438,6347,1,0,0,0,6438,6353, + 1,0,0,0,6438,6362,1,0,0,0,6438,6366,1,0,0,0,6438,6370,1,0,0,0,6438, + 6380,1,0,0,0,6438,6395,1,0,0,0,6438,6405,1,0,0,0,6438,6430,1,0,0, + 0,6438,6436,1,0,0,0,6439,567,1,0,0,0,6440,6451,5,892,0,0,6441,6451, + 5,893,0,0,6442,6443,5,870,0,0,6443,6445,5,870,0,0,6444,6442,1,0, + 0,0,6444,6445,1,0,0,0,6445,6446,1,0,0,0,6446,6448,7,100,0,0,6447, + 6444,1,0,0,0,6447,6448,1,0,0,0,6448,6449,1,0,0,0,6449,6451,3,716, + 358,0,6450,6440,1,0,0,0,6450,6441,1,0,0,0,6450,6447,1,0,0,0,6451, + 569,1,0,0,0,6452,6453,5,26,0,0,6453,6467,5,155,0,0,6454,6467,5,823, + 0,0,6455,6467,5,824,0,0,6456,6467,5,40,0,0,6457,6467,5,153,0,0,6458, + 6459,5,409,0,0,6459,6467,5,645,0,0,6460,6461,5,132,0,0,6461,6467, + 5,645,0,0,6462,6464,7,62,0,0,6463,6462,1,0,0,0,6463,6464,1,0,0,0, + 6464,6465,1,0,0,0,6465,6467,7,101,0,0,6466,6452,1,0,0,0,6466,6454, + 1,0,0,0,6466,6455,1,0,0,0,6466,6456,1,0,0,0,6466,6457,1,0,0,0,6466, + 6458,1,0,0,0,6466,6460,1,0,0,0,6466,6463,1,0,0,0,6467,571,1,0,0, + 0,6468,6469,5,99,0,0,6469,6473,5,882,0,0,6470,6471,5,192,0,0,6471, + 6473,3,814,407,0,6472,6468,1,0,0,0,6472,6470,1,0,0,0,6473,573,1, + 0,0,0,6474,6476,5,647,0,0,6475,6474,1,0,0,0,6475,6476,1,0,0,0,6476, + 6477,1,0,0,0,6477,6492,5,381,0,0,6478,6479,5,453,0,0,6479,6492,5, + 645,0,0,6480,6492,5,536,0,0,6481,6492,5,734,0,0,6482,6484,5,408, + 0,0,6483,6482,1,0,0,0,6483,6484,1,0,0,0,6484,6485,1,0,0,0,6485,6492, + 5,544,0,0,6486,6492,5,546,0,0,6487,6488,5,598,0,0,6488,6492,5,422, + 0,0,6489,6492,5,312,0,0,6490,6492,5,356,0,0,6491,6475,1,0,0,0,6491, + 6478,1,0,0,0,6491,6480,1,0,0,0,6491,6481,1,0,0,0,6491,6483,1,0,0, + 0,6491,6486,1,0,0,0,6491,6487,1,0,0,0,6491,6489,1,0,0,0,6491,6490, + 1,0,0,0,6492,575,1,0,0,0,6493,6505,5,386,0,0,6494,6495,5,173,0,0, + 6495,6505,5,645,0,0,6496,6498,5,392,0,0,6497,6496,1,0,0,0,6497,6498, + 1,0,0,0,6498,6500,1,0,0,0,6499,6501,5,408,0,0,6500,6499,1,0,0,0, + 6500,6501,1,0,0,0,6501,6502,1,0,0,0,6502,6505,5,752,0,0,6503,6505, + 5,667,0,0,6504,6493,1,0,0,0,6504,6494,1,0,0,0,6504,6497,1,0,0,0, + 6504,6503,1,0,0,0,6505,577,1,0,0,0,6506,6519,5,7,0,0,6507,6508,5, + 320,0,0,6508,6519,5,437,0,0,6509,6510,5,355,0,0,6510,6519,5,656, + 0,0,6511,6519,5,358,0,0,6512,6519,5,439,0,0,6513,6519,5,802,0,0, + 6514,6515,5,521,0,0,6515,6519,5,397,0,0,6516,6519,5,605,0,0,6517, + 6519,5,655,0,0,6518,6506,1,0,0,0,6518,6507,1,0,0,0,6518,6509,1,0, + 0,0,6518,6511,1,0,0,0,6518,6512,1,0,0,0,6518,6513,1,0,0,0,6518,6514, + 1,0,0,0,6518,6516,1,0,0,0,6518,6517,1,0,0,0,6519,579,1,0,0,0,6520, + 6521,5,318,0,0,6521,6522,5,882,0,0,6522,581,1,0,0,0,6523,6524,5, + 324,0,0,6524,6542,5,82,0,0,6525,6530,3,602,301,0,6526,6527,5,868, + 0,0,6527,6529,3,602,301,0,6528,6526,1,0,0,0,6529,6532,1,0,0,0,6530, + 6528,1,0,0,0,6530,6531,1,0,0,0,6531,6543,1,0,0,0,6532,6530,1,0,0, + 0,6533,6534,3,662,331,0,6534,6535,5,130,0,0,6535,6538,5,866,0,0, + 6536,6539,3,680,340,0,6537,6539,5,7,0,0,6538,6536,1,0,0,0,6538,6537, + 1,0,0,0,6539,6540,1,0,0,0,6540,6541,5,867,0,0,6541,6543,1,0,0,0, + 6542,6525,1,0,0,0,6542,6533,1,0,0,0,6543,6544,1,0,0,0,6544,6545, + 5,80,0,0,6545,6546,3,638,319,0,6546,583,1,0,0,0,6547,6549,5,404, + 0,0,6548,6550,3,548,274,0,6549,6548,1,0,0,0,6549,6550,1,0,0,0,6550, + 6551,1,0,0,0,6551,6556,3,604,302,0,6552,6553,5,868,0,0,6553,6555, + 3,604,302,0,6554,6552,1,0,0,0,6555,6558,1,0,0,0,6556,6554,1,0,0, + 0,6556,6557,1,0,0,0,6557,585,1,0,0,0,6558,6556,1,0,0,0,6559,6561, + 5,94,0,0,6560,6562,7,102,0,0,6561,6560,1,0,0,0,6561,6562,1,0,0,0, + 6562,6563,1,0,0,0,6563,6564,3,814,407,0,6564,587,1,0,0,0,6565,6566, + 5,103,0,0,6566,6567,5,82,0,0,6567,6568,5,88,0,0,6568,6569,5,324, + 0,0,6569,6574,3,608,304,0,6570,6571,5,868,0,0,6571,6573,3,608,304, + 0,6572,6570,1,0,0,0,6573,6576,1,0,0,0,6574,6572,1,0,0,0,6574,6575, + 1,0,0,0,6575,589,1,0,0,0,6576,6574,1,0,0,0,6577,6578,5,575,0,0,6578, + 6583,3,592,296,0,6579,6580,5,868,0,0,6580,6582,3,592,296,0,6581, + 6579,1,0,0,0,6582,6585,1,0,0,0,6583,6581,1,0,0,0,6583,6584,1,0,0, + 0,6584,591,1,0,0,0,6585,6583,1,0,0,0,6586,6592,5,453,0,0,6587,6592, + 5,563,0,0,6588,6589,5,548,0,0,6589,6592,5,324,0,0,6590,6592,5,598, + 0,0,6591,6586,1,0,0,0,6591,6587,1,0,0,0,6591,6588,1,0,0,0,6591,6590, + 1,0,0,0,6592,593,1,0,0,0,6593,6594,5,575,0,0,6594,6599,5,531,0,0, + 6595,6597,3,768,384,0,6596,6595,1,0,0,0,6596,6597,1,0,0,0,6597,6598, + 1,0,0,0,6598,6600,3,716,358,0,6599,6596,1,0,0,0,6599,6600,1,0,0, + 0,6600,595,1,0,0,0,6601,6602,5,575,0,0,6602,6604,7,64,0,0,6603,6605, + 5,7,0,0,6604,6603,1,0,0,0,6604,6605,1,0,0,0,6605,6607,1,0,0,0,6606, + 6608,3,400,200,0,6607,6606,1,0,0,0,6607,6608,1,0,0,0,6608,597,1, + 0,0,0,6609,6610,5,576,0,0,6610,599,1,0,0,0,6611,6612,5,749,0,0,6612, + 601,1,0,0,0,6613,6619,3,662,331,0,6614,6615,7,19,0,0,6615,6616,5, + 866,0,0,6616,6617,3,650,325,0,6617,6618,5,867,0,0,6618,6620,1,0, + 0,0,6619,6614,1,0,0,0,6619,6620,1,0,0,0,6620,603,1,0,0,0,6621,6640, + 5,366,0,0,6622,6640,5,422,0,0,6623,6625,7,103,0,0,6624,6623,1,0, + 0,0,6624,6625,1,0,0,0,6625,6626,1,0,0,0,6626,6640,5,452,0,0,6627, + 6640,5,517,0,0,6628,6640,5,734,0,0,6629,6630,5,548,0,0,6630,6640, + 5,324,0,0,6631,6640,5,645,0,0,6632,6640,5,680,0,0,6633,6637,5,752, + 0,0,6634,6635,5,194,0,0,6635,6636,5,135,0,0,6636,6638,5,104,0,0, + 6637,6634,1,0,0,0,6637,6638,1,0,0,0,6638,6640,1,0,0,0,6639,6621, + 1,0,0,0,6639,6622,1,0,0,0,6639,6624,1,0,0,0,6639,6627,1,0,0,0,6639, + 6628,1,0,0,0,6639,6629,1,0,0,0,6639,6631,1,0,0,0,6639,6632,1,0,0, + 0,6639,6633,1,0,0,0,6640,6654,1,0,0,0,6641,6642,5,556,0,0,6642,6644, + 5,452,0,0,6643,6645,3,400,200,0,6644,6643,1,0,0,0,6644,6645,1,0, + 0,0,6645,6654,1,0,0,0,6646,6648,7,61,0,0,6647,6649,3,660,330,0,6648, + 6647,1,0,0,0,6648,6649,1,0,0,0,6649,6651,1,0,0,0,6650,6652,3,606, + 303,0,6651,6650,1,0,0,0,6651,6652,1,0,0,0,6652,6654,1,0,0,0,6653, + 6639,1,0,0,0,6653,6641,1,0,0,0,6653,6646,1,0,0,0,6654,605,1,0,0, + 0,6655,6656,5,194,0,0,6656,6657,5,135,0,0,6657,6661,5,104,0,0,6658, + 6659,5,65,0,0,6659,6661,5,391,0,0,6660,6655,1,0,0,0,6660,6658,1, + 0,0,0,6661,607,1,0,0,0,6662,6670,3,662,331,0,6663,6664,5,130,0,0, + 6664,6667,5,866,0,0,6665,6668,3,680,340,0,6666,6668,5,7,0,0,6667, + 6665,1,0,0,0,6667,6666,1,0,0,0,6668,6669,1,0,0,0,6669,6671,5,867, + 0,0,6670,6663,1,0,0,0,6670,6671,1,0,0,0,6671,6679,1,0,0,0,6672,6674, + 7,19,0,0,6673,6672,1,0,0,0,6673,6674,1,0,0,0,6674,6675,1,0,0,0,6675, + 6676,5,866,0,0,6676,6677,3,650,325,0,6677,6678,5,867,0,0,6678,6680, + 1,0,0,0,6679,6673,1,0,0,0,6679,6680,1,0,0,0,6680,6683,1,0,0,0,6681, + 6682,5,79,0,0,6682,6684,5,446,0,0,6683,6681,1,0,0,0,6683,6684,1, + 0,0,0,6684,609,1,0,0,0,6685,6686,7,104,0,0,6686,6689,3,662,331,0, + 6687,6690,3,672,336,0,6688,6690,5,882,0,0,6689,6687,1,0,0,0,6689, + 6688,1,0,0,0,6689,6690,1,0,0,0,6690,611,1,0,0,0,6691,6697,7,104, + 0,0,6692,6698,5,392,0,0,6693,6698,5,528,0,0,6694,6695,5,826,0,0, + 6695,6696,5,857,0,0,6696,6698,7,105,0,0,6697,6692,1,0,0,0,6697,6693, + 1,0,0,0,6697,6694,1,0,0,0,6697,6698,1,0,0,0,6698,6699,1,0,0,0,6699, + 6700,3,634,317,0,6700,613,1,0,0,0,6701,6702,7,104,0,0,6702,6706, + 5,10,0,0,6703,6704,5,826,0,0,6704,6705,5,857,0,0,6705,6707,5,666, + 0,0,6706,6703,1,0,0,0,6706,6707,1,0,0,0,6707,6708,1,0,0,0,6708,6709, + 3,210,105,0,6709,615,1,0,0,0,6710,6711,5,419,0,0,6711,6712,5,882, + 0,0,6712,617,1,0,0,0,6713,6714,5,187,0,0,6714,6715,3,638,319,0,6715, + 619,1,0,0,0,6716,6724,5,158,0,0,6717,6719,5,164,0,0,6718,6720,5, + 682,0,0,6719,6718,1,0,0,0,6719,6720,1,0,0,0,6720,6721,1,0,0,0,6721, + 6725,3,726,363,0,6722,6725,5,889,0,0,6723,6725,5,890,0,0,6724,6717, + 1,0,0,0,6724,6722,1,0,0,0,6724,6723,1,0,0,0,6725,6735,1,0,0,0,6726, + 6727,5,155,0,0,6727,6732,3,624,312,0,6728,6729,5,868,0,0,6729,6731, + 3,624,312,0,6730,6728,1,0,0,0,6731,6734,1,0,0,0,6732,6730,1,0,0, + 0,6732,6733,1,0,0,0,6733,6736,1,0,0,0,6734,6732,1,0,0,0,6735,6726, + 1,0,0,0,6735,6736,1,0,0,0,6736,621,1,0,0,0,6737,6745,5,145,0,0,6738, + 6740,5,164,0,0,6739,6741,5,682,0,0,6740,6739,1,0,0,0,6740,6741,1, + 0,0,0,6741,6742,1,0,0,0,6742,6746,3,726,363,0,6743,6746,5,889,0, + 0,6744,6746,5,890,0,0,6745,6738,1,0,0,0,6745,6743,1,0,0,0,6745,6744, + 1,0,0,0,6745,6746,1,0,0,0,6746,6756,1,0,0,0,6747,6748,5,155,0,0, + 6748,6753,3,624,312,0,6749,6750,5,868,0,0,6750,6752,3,624,312,0, + 6751,6749,1,0,0,0,6752,6755,1,0,0,0,6753,6751,1,0,0,0,6753,6754, + 1,0,0,0,6754,6757,1,0,0,0,6755,6753,1,0,0,0,6756,6747,1,0,0,0,6756, + 6757,1,0,0,0,6757,623,1,0,0,0,6758,6759,7,106,0,0,6759,6764,5,857, + 0,0,6760,6765,3,726,363,0,6761,6765,5,883,0,0,6762,6765,3,696,348, + 0,6763,6765,3,718,359,0,6764,6760,1,0,0,0,6764,6761,1,0,0,0,6764, + 6762,1,0,0,0,6764,6763,1,0,0,0,6765,625,1,0,0,0,6766,6768,5,194, + 0,0,6767,6769,5,552,0,0,6768,6767,1,0,0,0,6768,6769,1,0,0,0,6769, + 6770,1,0,0,0,6770,6775,3,52,26,0,6771,6772,5,868,0,0,6772,6774,3, + 52,26,0,6773,6771,1,0,0,0,6774,6777,1,0,0,0,6775,6773,1,0,0,0,6775, + 6776,1,0,0,0,6776,627,1,0,0,0,6777,6775,1,0,0,0,6778,6779,5,173, + 0,0,6779,6781,3,662,331,0,6780,6782,3,258,129,0,6781,6780,1,0,0, + 0,6781,6782,1,0,0,0,6782,6784,1,0,0,0,6783,6785,3,328,164,0,6784, + 6783,1,0,0,0,6784,6785,1,0,0,0,6785,629,1,0,0,0,6786,6788,5,72,0, + 0,6787,6789,7,107,0,0,6788,6787,1,0,0,0,6788,6789,1,0,0,0,6789,6790, + 1,0,0,0,6790,6822,5,48,0,0,6791,6792,3,568,284,0,6792,6793,5,857, + 0,0,6793,6801,7,108,0,0,6794,6795,5,868,0,0,6795,6796,3,568,284, + 0,6796,6797,5,857,0,0,6797,6798,7,108,0,0,6798,6800,1,0,0,0,6799, + 6794,1,0,0,0,6800,6803,1,0,0,0,6801,6799,1,0,0,0,6801,6802,1,0,0, + 0,6802,6823,1,0,0,0,6803,6801,1,0,0,0,6804,6807,5,30,0,0,6805,6808, + 3,722,361,0,6806,6808,3,568,284,0,6807,6805,1,0,0,0,6807,6806,1, + 0,0,0,6808,6809,1,0,0,0,6809,6810,3,568,284,0,6810,6811,5,857,0, + 0,6811,6819,3,632,316,0,6812,6813,5,868,0,0,6813,6814,3,568,284, + 0,6814,6815,5,857,0,0,6815,6816,3,632,316,0,6816,6818,1,0,0,0,6817, + 6812,1,0,0,0,6818,6821,1,0,0,0,6819,6817,1,0,0,0,6819,6820,1,0,0, + 0,6820,6823,1,0,0,0,6821,6819,1,0,0,0,6822,6791,1,0,0,0,6822,6804, + 1,0,0,0,6823,631,1,0,0,0,6824,6825,7,109,0,0,6825,633,1,0,0,0,6826, + 6832,3,210,105,0,6827,6832,3,186,93,0,6828,6832,3,192,96,0,6829, + 6832,3,208,104,0,6830,6832,3,220,110,0,6831,6826,1,0,0,0,6831,6827, + 1,0,0,0,6831,6828,1,0,0,0,6831,6829,1,0,0,0,6831,6830,1,0,0,0,6832, + 6837,1,0,0,0,6833,6834,5,65,0,0,6834,6835,5,349,0,0,6835,6837,3, + 716,358,0,6836,6831,1,0,0,0,6836,6833,1,0,0,0,6837,635,1,0,0,0,6838, + 6839,3,712,356,0,6839,637,1,0,0,0,6840,6841,3,712,356,0,6841,639, + 1,0,0,0,6842,6843,3,712,356,0,6843,641,1,0,0,0,6844,6845,3,712,356, + 0,6845,643,1,0,0,0,6846,6847,3,712,356,0,6847,645,1,0,0,0,6848,6849, + 3,712,356,0,6849,647,1,0,0,0,6850,6851,3,716,358,0,6851,649,1,0, + 0,0,6852,6857,3,652,326,0,6853,6854,5,868,0,0,6854,6856,3,652,326, + 0,6855,6853,1,0,0,0,6856,6859,1,0,0,0,6857,6855,1,0,0,0,6857,6858, + 1,0,0,0,6858,651,1,0,0,0,6859,6857,1,0,0,0,6860,6861,3,716,358,0, + 6861,653,1,0,0,0,6862,6863,3,716,358,0,6863,655,1,0,0,0,6864,6865, + 3,716,358,0,6865,657,1,0,0,0,6866,6867,3,712,356,0,6867,659,1,0, + 0,0,6868,6873,3,662,331,0,6869,6870,5,868,0,0,6870,6872,3,662,331, + 0,6871,6869,1,0,0,0,6872,6875,1,0,0,0,6873,6871,1,0,0,0,6873,6874, + 1,0,0,0,6874,661,1,0,0,0,6875,6873,1,0,0,0,6876,6877,3,712,356,0, + 6877,663,1,0,0,0,6878,6883,3,666,333,0,6879,6880,5,868,0,0,6880, + 6882,3,666,333,0,6881,6879,1,0,0,0,6882,6885,1,0,0,0,6883,6881,1, + 0,0,0,6883,6884,1,0,0,0,6884,665,1,0,0,0,6885,6883,1,0,0,0,6886, + 6889,3,694,347,0,6887,6889,3,716,358,0,6888,6886,1,0,0,0,6888,6887, + 1,0,0,0,6889,667,1,0,0,0,6890,6895,3,716,358,0,6891,6893,3,720,360, + 0,6892,6894,3,720,360,0,6893,6892,1,0,0,0,6893,6894,1,0,0,0,6894, + 6896,1,0,0,0,6895,6891,1,0,0,0,6895,6896,1,0,0,0,6896,6905,1,0,0, + 0,6897,6899,9,0,0,0,6898,6897,1,0,0,0,6898,6899,1,0,0,0,6899,6900, + 1,0,0,0,6900,6902,3,720,360,0,6901,6903,3,720,360,0,6902,6901,1, + 0,0,0,6902,6903,1,0,0,0,6903,6905,1,0,0,0,6904,6890,1,0,0,0,6904, + 6898,1,0,0,0,6905,669,1,0,0,0,6906,6911,3,672,336,0,6907,6908,5, + 868,0,0,6908,6910,3,672,336,0,6909,6907,1,0,0,0,6910,6913,1,0,0, + 0,6911,6909,1,0,0,0,6911,6912,1,0,0,0,6912,671,1,0,0,0,6913,6911, + 1,0,0,0,6914,6919,3,716,358,0,6915,6917,3,720,360,0,6916,6918,3, + 720,360,0,6917,6916,1,0,0,0,6917,6918,1,0,0,0,6918,6920,1,0,0,0, + 6919,6915,1,0,0,0,6919,6920,1,0,0,0,6920,6930,1,0,0,0,6921,6923, + 9,0,0,0,6922,6921,1,0,0,0,6922,6923,1,0,0,0,6923,6924,1,0,0,0,6924, + 6926,3,720,360,0,6925,6927,3,720,360,0,6926,6925,1,0,0,0,6926,6927, + 1,0,0,0,6927,6930,1,0,0,0,6928,6930,4,336,3,0,6929,6914,1,0,0,0, + 6929,6922,1,0,0,0,6929,6928,1,0,0,0,6930,673,1,0,0,0,6931,6932,3, + 716,358,0,6932,675,1,0,0,0,6933,6934,3,716,358,0,6934,677,1,0,0, + 0,6935,6936,3,716,358,0,6936,679,1,0,0,0,6937,6942,3,682,341,0,6938, + 6939,5,868,0,0,6939,6941,3,682,341,0,6940,6938,1,0,0,0,6941,6944, + 1,0,0,0,6942,6940,1,0,0,0,6942,6943,1,0,0,0,6943,681,1,0,0,0,6944, + 6942,1,0,0,0,6945,6946,3,716,358,0,6946,683,1,0,0,0,6947,6952,3, + 716,358,0,6948,6949,5,866,0,0,6949,6950,3,722,361,0,6950,6951,5, + 867,0,0,6951,6953,1,0,0,0,6952,6948,1,0,0,0,6952,6953,1,0,0,0,6953, + 6956,1,0,0,0,6954,6956,3,814,407,0,6955,6947,1,0,0,0,6955,6954,1, + 0,0,0,6956,6958,1,0,0,0,6957,6959,7,55,0,0,6958,6957,1,0,0,0,6958, + 6959,1,0,0,0,6959,685,1,0,0,0,6960,6961,3,688,344,0,6961,6962,5, + 878,0,0,6962,6963,3,722,361,0,6963,687,1,0,0,0,6964,6965,3,690,345, + 0,6965,6966,5,891,0,0,6966,689,1,0,0,0,6967,6972,5,882,0,0,6968, + 6972,5,889,0,0,6969,6972,5,704,0,0,6970,6972,3,844,422,0,6971,6967, + 1,0,0,0,6971,6968,1,0,0,0,6971,6969,1,0,0,0,6971,6970,1,0,0,0,6972, + 691,1,0,0,0,6973,6974,7,110,0,0,6974,693,1,0,0,0,6975,6977,3,690, + 345,0,6976,6978,3,692,346,0,6977,6976,1,0,0,0,6977,6978,1,0,0,0, + 6978,6981,1,0,0,0,6979,6981,3,60,30,0,6980,6975,1,0,0,0,6980,6979, + 1,0,0,0,6981,695,1,0,0,0,6982,6983,7,111,0,0,6983,697,1,0,0,0,6984, + 6989,5,228,0,0,6985,6989,3,834,417,0,6986,6989,5,882,0,0,6987,6989, + 5,879,0,0,6988,6984,1,0,0,0,6988,6985,1,0,0,0,6988,6986,1,0,0,0, + 6988,6987,1,0,0,0,6989,699,1,0,0,0,6990,6991,3,716,358,0,6991,701, + 1,0,0,0,6992,6996,3,704,352,0,6993,6996,5,889,0,0,6994,6996,5,882, + 0,0,6995,6992,1,0,0,0,6995,6993,1,0,0,0,6995,6994,1,0,0,0,6996,703, + 1,0,0,0,6997,6998,7,112,0,0,6998,705,1,0,0,0,6999,7000,3,722,361, + 0,7000,7001,5,854,0,0,7001,7002,3,722,361,0,7002,7003,5,854,0,0, + 7003,7004,3,722,361,0,7004,7005,5,854,0,0,7005,7006,3,722,361,0, + 7006,7007,5,854,0,0,7007,7013,3,722,361,0,7008,7009,5,878,0,0,7009, + 7010,3,722,361,0,7010,7011,5,854,0,0,7011,7012,3,722,361,0,7012, + 7014,1,0,0,0,7013,7008,1,0,0,0,7014,7015,1,0,0,0,7015,7013,1,0,0, + 0,7015,7016,1,0,0,0,7016,707,1,0,0,0,7017,7024,3,710,355,0,7018, + 7019,5,868,0,0,7019,7022,3,710,355,0,7020,7021,5,868,0,0,7021,7023, + 3,722,361,0,7022,7020,1,0,0,0,7022,7023,1,0,0,0,7023,7025,1,0,0, + 0,7024,7018,1,0,0,0,7024,7025,1,0,0,0,7025,709,1,0,0,0,7026,7034, + 5,882,0,0,7027,7034,5,887,0,0,7028,7030,5,884,0,0,7029,7028,1,0, + 0,0,7030,7031,1,0,0,0,7031,7029,1,0,0,0,7031,7032,1,0,0,0,7032,7034, + 1,0,0,0,7033,7026,1,0,0,0,7033,7027,1,0,0,0,7033,7029,1,0,0,0,7034, + 711,1,0,0,0,7035,7037,3,716,358,0,7036,7038,3,720,360,0,7037,7036, + 1,0,0,0,7037,7038,1,0,0,0,7038,713,1,0,0,0,7039,7044,3,716,358,0, + 7040,7041,5,868,0,0,7041,7043,3,716,358,0,7042,7040,1,0,0,0,7043, + 7046,1,0,0,0,7044,7042,1,0,0,0,7044,7045,1,0,0,0,7045,715,1,0,0, + 0,7046,7044,1,0,0,0,7047,7051,3,718,359,0,7048,7051,5,879,0,0,7049, + 7051,5,882,0,0,7050,7047,1,0,0,0,7050,7048,1,0,0,0,7050,7049,1,0, + 0,0,7051,717,1,0,0,0,7052,7062,5,889,0,0,7053,7062,3,834,417,0,7054, + 7062,3,836,418,0,7055,7062,3,704,352,0,7056,7062,3,838,419,0,7057, + 7062,3,840,420,0,7058,7062,3,842,421,0,7059,7062,3,844,422,0,7060, + 7062,3,806,403,0,7061,7052,1,0,0,0,7061,7053,1,0,0,0,7061,7054,1, + 0,0,0,7061,7055,1,0,0,0,7061,7056,1,0,0,0,7061,7057,1,0,0,0,7061, + 7058,1,0,0,0,7061,7059,1,0,0,0,7061,7060,1,0,0,0,7062,719,1,0,0, + 0,7063,7064,5,865,0,0,7064,7068,5,889,0,0,7065,7066,5,865,0,0,7066, + 7068,3,716,358,0,7067,7063,1,0,0,0,7067,7065,1,0,0,0,7068,721,1, + 0,0,0,7069,7070,7,113,0,0,7070,723,1,0,0,0,7071,7074,5,880,0,0,7072, + 7074,3,722,361,0,7073,7071,1,0,0,0,7073,7072,1,0,0,0,7074,725,1, + 0,0,0,7075,7077,5,888,0,0,7076,7075,1,0,0,0,7076,7077,1,0,0,0,7077, + 7078,1,0,0,0,7078,7081,5,882,0,0,7079,7081,5,881,0,0,7080,7076,1, + 0,0,0,7080,7079,1,0,0,0,7081,7083,1,0,0,0,7082,7084,5,882,0,0,7083, + 7082,1,0,0,0,7084,7085,1,0,0,0,7085,7083,1,0,0,0,7085,7086,1,0,0, + 0,7086,7099,1,0,0,0,7087,7089,5,888,0,0,7088,7087,1,0,0,0,7088,7089, + 1,0,0,0,7089,7090,1,0,0,0,7090,7093,5,882,0,0,7091,7093,5,881,0, + 0,7092,7088,1,0,0,0,7092,7091,1,0,0,0,7093,7096,1,0,0,0,7094,7095, + 5,28,0,0,7095,7097,3,700,350,0,7096,7094,1,0,0,0,7096,7097,1,0,0, + 0,7097,7099,1,0,0,0,7098,7080,1,0,0,0,7098,7092,1,0,0,0,7099,727, + 1,0,0,0,7100,7101,7,114,0,0,7101,729,1,0,0,0,7102,7104,5,888,0,0, + 7103,7102,1,0,0,0,7103,7104,1,0,0,0,7104,7105,1,0,0,0,7105,7106, + 5,884,0,0,7106,731,1,0,0,0,7107,7109,5,114,0,0,7108,7107,1,0,0,0, + 7108,7109,1,0,0,0,7109,7110,1,0,0,0,7110,7111,7,115,0,0,7111,733, + 1,0,0,0,7112,7125,3,726,363,0,7113,7125,3,722,361,0,7114,7115,5, + 854,0,0,7115,7125,3,722,361,0,7116,7125,3,730,365,0,7117,7125,3, + 728,364,0,7118,7125,5,885,0,0,7119,7125,5,887,0,0,7120,7122,5,114, + 0,0,7121,7120,1,0,0,0,7121,7122,1,0,0,0,7122,7123,1,0,0,0,7123,7125, + 7,115,0,0,7124,7112,1,0,0,0,7124,7113,1,0,0,0,7124,7114,1,0,0,0, + 7124,7116,1,0,0,0,7124,7117,1,0,0,0,7124,7118,1,0,0,0,7124,7119, + 1,0,0,0,7124,7121,1,0,0,0,7125,735,1,0,0,0,7126,7128,7,116,0,0,7127, + 7129,5,240,0,0,7128,7127,1,0,0,0,7128,7129,1,0,0,0,7129,7131,1,0, + 0,0,7130,7132,3,742,371,0,7131,7130,1,0,0,0,7131,7132,1,0,0,0,7132, + 7134,1,0,0,0,7133,7135,5,228,0,0,7134,7133,1,0,0,0,7134,7135,1,0, + 0,0,7135,7139,1,0,0,0,7136,7137,3,58,29,0,7137,7138,3,698,349,0, + 7138,7140,1,0,0,0,7139,7136,1,0,0,0,7139,7140,1,0,0,0,7140,7144, + 1,0,0,0,7141,7142,5,28,0,0,7142,7145,3,700,350,0,7143,7145,5,228, + 0,0,7144,7141,1,0,0,0,7144,7143,1,0,0,0,7144,7145,1,0,0,0,7145,7253, + 1,0,0,0,7146,7147,5,227,0,0,7147,7148,7,117,0,0,7148,7150,5,240, + 0,0,7149,7151,3,742,371,0,7150,7149,1,0,0,0,7150,7151,1,0,0,0,7151, + 7153,1,0,0,0,7152,7154,5,228,0,0,7153,7152,1,0,0,0,7153,7154,1,0, + 0,0,7154,7253,1,0,0,0,7155,7156,5,227,0,0,7156,7158,7,118,0,0,7157, + 7159,3,742,371,0,7158,7157,1,0,0,0,7158,7159,1,0,0,0,7159,7161,1, + 0,0,0,7160,7162,5,228,0,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162, + 7253,1,0,0,0,7163,7164,5,498,0,0,7164,7166,5,225,0,0,7165,7167,3, + 742,371,0,7166,7165,1,0,0,0,7166,7167,1,0,0,0,7167,7169,1,0,0,0, + 7168,7170,5,228,0,0,7169,7168,1,0,0,0,7169,7170,1,0,0,0,7170,7253, + 1,0,0,0,7171,7173,7,119,0,0,7172,7174,3,742,371,0,7173,7172,1,0, + 0,0,7173,7174,1,0,0,0,7174,7178,1,0,0,0,7175,7177,7,120,0,0,7176, + 7175,1,0,0,0,7177,7180,1,0,0,0,7178,7176,1,0,0,0,7178,7179,1,0,0, + 0,7179,7253,1,0,0,0,7180,7178,1,0,0,0,7181,7183,5,210,0,0,7182,7184, + 3,744,372,0,7183,7182,1,0,0,0,7183,7184,1,0,0,0,7184,7188,1,0,0, + 0,7185,7187,7,120,0,0,7186,7185,1,0,0,0,7187,7190,1,0,0,0,7188,7186, + 1,0,0,0,7188,7189,1,0,0,0,7189,7253,1,0,0,0,7190,7188,1,0,0,0,7191, + 7193,5,211,0,0,7192,7194,5,212,0,0,7193,7192,1,0,0,0,7193,7194,1, + 0,0,0,7194,7196,1,0,0,0,7195,7197,3,744,372,0,7196,7195,1,0,0,0, + 7196,7197,1,0,0,0,7197,7201,1,0,0,0,7198,7200,7,120,0,0,7199,7198, + 1,0,0,0,7200,7203,1,0,0,0,7201,7199,1,0,0,0,7201,7202,1,0,0,0,7202, + 7253,1,0,0,0,7203,7201,1,0,0,0,7204,7206,7,121,0,0,7205,7207,3,746, + 373,0,7206,7205,1,0,0,0,7206,7207,1,0,0,0,7207,7211,1,0,0,0,7208, + 7210,7,120,0,0,7209,7208,1,0,0,0,7210,7213,1,0,0,0,7211,7209,1,0, + 0,0,7211,7212,1,0,0,0,7212,7253,1,0,0,0,7213,7211,1,0,0,0,7214,7253, + 7,122,0,0,7215,7217,7,123,0,0,7216,7218,3,742,371,0,7217,7216,1, + 0,0,0,7217,7218,1,0,0,0,7218,7253,1,0,0,0,7219,7220,7,124,0,0,7220, + 7222,3,738,369,0,7221,7223,5,228,0,0,7222,7221,1,0,0,0,7222,7223, + 1,0,0,0,7223,7227,1,0,0,0,7224,7225,3,58,29,0,7225,7226,3,698,349, + 0,7226,7228,1,0,0,0,7227,7224,1,0,0,0,7227,7228,1,0,0,0,7228,7253, + 1,0,0,0,7229,7232,7,125,0,0,7230,7231,5,834,0,0,7231,7233,3,722, + 361,0,7232,7230,1,0,0,0,7232,7233,1,0,0,0,7233,7253,1,0,0,0,7234, + 7236,5,233,0,0,7235,7237,5,225,0,0,7236,7235,1,0,0,0,7236,7237,1, + 0,0,0,7237,7239,1,0,0,0,7238,7240,5,228,0,0,7239,7238,1,0,0,0,7239, + 7240,1,0,0,0,7240,7244,1,0,0,0,7241,7242,3,58,29,0,7242,7243,3,698, + 349,0,7243,7245,1,0,0,0,7244,7241,1,0,0,0,7244,7245,1,0,0,0,7245, + 7248,1,0,0,0,7246,7247,5,28,0,0,7247,7249,3,700,350,0,7248,7246, + 1,0,0,0,7248,7249,1,0,0,0,7249,7253,1,0,0,0,7250,7251,5,233,0,0, + 7251,7253,5,229,0,0,7252,7126,1,0,0,0,7252,7146,1,0,0,0,7252,7155, + 1,0,0,0,7252,7163,1,0,0,0,7252,7171,1,0,0,0,7252,7181,1,0,0,0,7252, + 7191,1,0,0,0,7252,7204,1,0,0,0,7252,7214,1,0,0,0,7252,7215,1,0,0, + 0,7252,7219,1,0,0,0,7252,7229,1,0,0,0,7252,7234,1,0,0,0,7252,7250, + 1,0,0,0,7253,737,1,0,0,0,7254,7255,5,866,0,0,7255,7260,5,882,0,0, + 7256,7257,5,868,0,0,7257,7259,5,882,0,0,7258,7256,1,0,0,0,7259,7262, + 1,0,0,0,7260,7258,1,0,0,0,7260,7261,1,0,0,0,7261,7263,1,0,0,0,7262, + 7260,1,0,0,0,7263,7264,5,867,0,0,7264,739,1,0,0,0,7265,7267,7,126, + 0,0,7266,7268,3,742,371,0,7267,7266,1,0,0,0,7267,7268,1,0,0,0,7268, + 7288,1,0,0,0,7269,7271,5,224,0,0,7270,7272,3,742,371,0,7271,7270, + 1,0,0,0,7271,7272,1,0,0,0,7272,7276,1,0,0,0,7273,7274,3,58,29,0, + 7274,7275,3,698,349,0,7275,7277,1,0,0,0,7276,7273,1,0,0,0,7276,7277, + 1,0,0,0,7277,7288,1,0,0,0,7278,7288,7,127,0,0,7279,7281,7,128,0, + 0,7280,7282,3,746,373,0,7281,7280,1,0,0,0,7281,7282,1,0,0,0,7282, + 7288,1,0,0,0,7283,7285,7,129,0,0,7284,7286,7,130,0,0,7285,7284,1, + 0,0,0,7285,7286,1,0,0,0,7286,7288,1,0,0,0,7287,7265,1,0,0,0,7287, + 7269,1,0,0,0,7287,7278,1,0,0,0,7287,7279,1,0,0,0,7287,7283,1,0,0, + 0,7288,7290,1,0,0,0,7289,7291,5,12,0,0,7290,7289,1,0,0,0,7290,7291, + 1,0,0,0,7291,741,1,0,0,0,7292,7293,5,866,0,0,7293,7294,3,722,361, + 0,7294,7295,5,867,0,0,7295,743,1,0,0,0,7296,7297,5,866,0,0,7297, + 7298,3,722,361,0,7298,7299,5,868,0,0,7299,7300,3,722,361,0,7300, + 7301,5,867,0,0,7301,745,1,0,0,0,7302,7303,5,866,0,0,7303,7306,3, + 722,361,0,7304,7305,5,868,0,0,7305,7307,3,722,361,0,7306,7304,1, + 0,0,0,7306,7307,1,0,0,0,7307,7308,1,0,0,0,7308,7309,5,867,0,0,7309, + 747,1,0,0,0,7310,7311,5,866,0,0,7311,7316,3,684,342,0,7312,7313, + 5,868,0,0,7313,7315,3,684,342,0,7314,7312,1,0,0,0,7315,7318,1,0, + 0,0,7316,7314,1,0,0,0,7316,7317,1,0,0,0,7317,7319,1,0,0,0,7318,7316, + 1,0,0,0,7319,7320,5,867,0,0,7320,749,1,0,0,0,7321,7326,3,814,407, + 0,7322,7323,5,868,0,0,7323,7325,3,814,407,0,7324,7322,1,0,0,0,7325, + 7328,1,0,0,0,7326,7324,1,0,0,0,7326,7327,1,0,0,0,7327,751,1,0,0, + 0,7328,7326,1,0,0,0,7329,7330,7,131,0,0,7330,7335,3,754,377,0,7331, + 7332,5,868,0,0,7332,7334,3,754,377,0,7333,7331,1,0,0,0,7334,7337, + 1,0,0,0,7335,7333,1,0,0,0,7335,7336,1,0,0,0,7336,753,1,0,0,0,7337, + 7335,1,0,0,0,7338,7339,5,866,0,0,7339,7344,3,756,378,0,7340,7341, + 5,868,0,0,7341,7343,3,756,378,0,7342,7340,1,0,0,0,7343,7346,1,0, + 0,0,7344,7342,1,0,0,0,7344,7345,1,0,0,0,7345,7347,1,0,0,0,7346,7344, + 1,0,0,0,7347,7348,5,867,0,0,7348,755,1,0,0,0,7349,7352,3,814,407, + 0,7350,7352,5,42,0,0,7351,7349,1,0,0,0,7351,7350,1,0,0,0,7352,757, + 1,0,0,0,7353,7358,3,734,367,0,7354,7355,5,868,0,0,7355,7357,3,734, + 367,0,7356,7354,1,0,0,0,7357,7360,1,0,0,0,7358,7356,1,0,0,0,7358, + 7359,1,0,0,0,7359,759,1,0,0,0,7360,7358,1,0,0,0,7361,7366,5,882, + 0,0,7362,7363,5,868,0,0,7363,7365,5,882,0,0,7364,7362,1,0,0,0,7365, + 7368,1,0,0,0,7366,7364,1,0,0,0,7366,7367,1,0,0,0,7367,761,1,0,0, + 0,7368,7366,1,0,0,0,7369,7374,5,892,0,0,7370,7371,5,868,0,0,7371, + 7373,5,892,0,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,763,1,0,0,0,7376,7374,1,0,0,0,7377,7404, + 5,116,0,0,7378,7379,5,24,0,0,7379,7380,5,866,0,0,7380,7381,3,814, + 407,0,7381,7382,5,13,0,0,7382,7383,3,740,370,0,7383,7384,5,867,0, + 0,7384,7404,1,0,0,0,7385,7387,3,820,410,0,7386,7385,1,0,0,0,7386, + 7387,1,0,0,0,7387,7388,1,0,0,0,7388,7404,3,734,367,0,7389,7393,3, + 766,383,0,7390,7391,5,119,0,0,7391,7392,5,185,0,0,7392,7394,3,766, + 383,0,7393,7390,1,0,0,0,7393,7394,1,0,0,0,7394,7404,1,0,0,0,7395, + 7396,5,866,0,0,7396,7397,3,814,407,0,7397,7398,5,867,0,0,7398,7404, + 1,0,0,0,7399,7400,5,866,0,0,7400,7401,3,712,356,0,7401,7402,5,867, + 0,0,7402,7404,1,0,0,0,7403,7377,1,0,0,0,7403,7378,1,0,0,0,7403,7386, + 1,0,0,0,7403,7389,1,0,0,0,7403,7395,1,0,0,0,7403,7399,1,0,0,0,7404, + 765,1,0,0,0,7405,7411,7,132,0,0,7406,7408,5,866,0,0,7407,7409,3, + 722,361,0,7408,7407,1,0,0,0,7408,7409,1,0,0,0,7409,7410,1,0,0,0, + 7410,7412,5,867,0,0,7411,7406,1,0,0,0,7411,7412,1,0,0,0,7412,7420, + 1,0,0,0,7413,7414,5,295,0,0,7414,7416,5,866,0,0,7415,7417,3,722, + 361,0,7416,7415,1,0,0,0,7416,7417,1,0,0,0,7417,7418,1,0,0,0,7418, + 7420,5,867,0,0,7419,7405,1,0,0,0,7419,7413,1,0,0,0,7420,767,1,0, + 0,0,7421,7422,5,78,0,0,7422,7423,5,60,0,0,7423,769,1,0,0,0,7424, + 7425,5,78,0,0,7425,7426,5,114,0,0,7426,7427,5,60,0,0,7427,771,1, + 0,0,0,7428,7429,5,124,0,0,7429,7430,5,143,0,0,7430,773,1,0,0,0,7431, + 7454,3,776,388,0,7432,7454,3,784,392,0,7433,7454,3,786,393,0,7434, + 7441,3,806,403,0,7435,7436,5,866,0,0,7436,7442,5,867,0,0,7437,7438, + 5,866,0,0,7438,7439,3,810,405,0,7439,7440,5,867,0,0,7440,7442,1, + 0,0,0,7441,7435,1,0,0,0,7441,7437,1,0,0,0,7442,7454,1,0,0,0,7443, + 7450,3,642,321,0,7444,7445,5,866,0,0,7445,7451,5,867,0,0,7446,7447, + 5,866,0,0,7447,7448,3,810,405,0,7448,7449,5,867,0,0,7449,7451,1, + 0,0,0,7450,7444,1,0,0,0,7450,7446,1,0,0,0,7451,7454,1,0,0,0,7452, + 7454,3,808,404,0,7453,7431,1,0,0,0,7453,7432,1,0,0,0,7453,7433,1, + 0,0,0,7453,7434,1,0,0,0,7453,7443,1,0,0,0,7453,7452,1,0,0,0,7454, + 775,1,0,0,0,7455,7458,7,133,0,0,7456,7457,5,866,0,0,7457,7459,5, + 867,0,0,7458,7456,1,0,0,0,7458,7459,1,0,0,0,7459,7635,1,0,0,0,7460, + 7635,3,60,30,0,7461,7462,5,33,0,0,7462,7463,5,866,0,0,7463,7464, + 3,814,407,0,7464,7465,5,868,0,0,7465,7466,3,740,370,0,7466,7467, + 5,867,0,0,7467,7635,1,0,0,0,7468,7469,5,33,0,0,7469,7470,5,866,0, + 0,7470,7471,3,814,407,0,7471,7472,5,188,0,0,7472,7473,3,698,349, + 0,7473,7474,5,867,0,0,7474,7635,1,0,0,0,7475,7476,5,24,0,0,7476, + 7477,5,866,0,0,7477,7478,3,814,407,0,7478,7479,5,13,0,0,7479,7480, + 3,740,370,0,7480,7481,5,867,0,0,7481,7635,1,0,0,0,7482,7483,5,189, + 0,0,7483,7484,5,866,0,0,7484,7485,3,672,336,0,7485,7486,5,867,0, + 0,7486,7635,1,0,0,0,7487,7489,5,23,0,0,7488,7490,3,778,389,0,7489, + 7488,1,0,0,0,7490,7491,1,0,0,0,7491,7489,1,0,0,0,7491,7492,1,0,0, + 0,7492,7495,1,0,0,0,7493,7494,5,53,0,0,7494,7496,3,812,406,0,7495, + 7493,1,0,0,0,7495,7496,1,0,0,0,7496,7497,1,0,0,0,7497,7498,5,378, + 0,0,7498,7635,1,0,0,0,7499,7500,5,23,0,0,7500,7502,3,814,407,0,7501, + 7503,3,778,389,0,7502,7501,1,0,0,0,7503,7504,1,0,0,0,7504,7502,1, + 0,0,0,7504,7505,1,0,0,0,7505,7508,1,0,0,0,7506,7507,5,53,0,0,7507, + 7509,3,812,406,0,7508,7506,1,0,0,0,7508,7509,1,0,0,0,7509,7510,1, + 0,0,0,7510,7511,5,378,0,0,7511,7635,1,0,0,0,7512,7513,5,224,0,0, + 7513,7514,5,866,0,0,7514,7517,3,810,405,0,7515,7516,5,188,0,0,7516, + 7518,3,698,349,0,7517,7515,1,0,0,0,7517,7518,1,0,0,0,7518,7519,1, + 0,0,0,7519,7520,5,867,0,0,7520,7635,1,0,0,0,7521,7522,5,296,0,0, + 7522,7525,5,866,0,0,7523,7526,3,726,363,0,7524,7526,3,814,407,0, + 7525,7523,1,0,0,0,7525,7524,1,0,0,0,7526,7527,1,0,0,0,7527,7530, + 5,80,0,0,7528,7531,3,726,363,0,7529,7531,3,814,407,0,7530,7528,1, + 0,0,0,7530,7529,1,0,0,0,7531,7532,1,0,0,0,7532,7533,5,867,0,0,7533, + 7635,1,0,0,0,7534,7535,7,134,0,0,7535,7538,5,866,0,0,7536,7539,3, + 726,363,0,7537,7539,3,814,407,0,7538,7536,1,0,0,0,7538,7537,1,0, + 0,0,7539,7540,1,0,0,0,7540,7543,5,68,0,0,7541,7544,3,722,361,0,7542, + 7544,3,814,407,0,7543,7541,1,0,0,0,7543,7542,1,0,0,0,7544,7550,1, + 0,0,0,7545,7548,5,65,0,0,7546,7549,3,722,361,0,7547,7549,3,814,407, + 0,7548,7546,1,0,0,0,7548,7547,1,0,0,0,7549,7551,1,0,0,0,7550,7545, + 1,0,0,0,7550,7551,1,0,0,0,7551,7552,1,0,0,0,7552,7553,5,867,0,0, + 7553,7635,1,0,0,0,7554,7555,5,300,0,0,7555,7556,5,866,0,0,7556,7559, + 7,135,0,0,7557,7560,3,726,363,0,7558,7560,3,814,407,0,7559,7557, + 1,0,0,0,7559,7558,1,0,0,0,7559,7560,1,0,0,0,7560,7561,1,0,0,0,7561, + 7564,5,68,0,0,7562,7565,3,726,363,0,7563,7565,3,814,407,0,7564,7562, + 1,0,0,0,7564,7563,1,0,0,0,7565,7566,1,0,0,0,7566,7567,5,867,0,0, + 7567,7635,1,0,0,0,7568,7569,5,300,0,0,7569,7572,5,866,0,0,7570,7573, + 3,726,363,0,7571,7573,3,814,407,0,7572,7570,1,0,0,0,7572,7571,1, + 0,0,0,7573,7574,1,0,0,0,7574,7577,5,68,0,0,7575,7578,3,726,363,0, + 7576,7578,3,814,407,0,7577,7575,1,0,0,0,7577,7576,1,0,0,0,7578,7579, + 1,0,0,0,7579,7580,5,867,0,0,7580,7635,1,0,0,0,7581,7582,5,840,0, + 0,7582,7585,5,866,0,0,7583,7586,3,726,363,0,7584,7586,3,814,407, + 0,7585,7583,1,0,0,0,7585,7584,1,0,0,0,7586,7593,1,0,0,0,7587,7588, + 5,13,0,0,7588,7589,7,136,0,0,7589,7590,5,866,0,0,7590,7591,3,722, + 361,0,7591,7592,5,867,0,0,7592,7594,1,0,0,0,7593,7587,1,0,0,0,7593, + 7594,1,0,0,0,7594,7596,1,0,0,0,7595,7597,3,780,390,0,7596,7595,1, + 0,0,0,7596,7597,1,0,0,0,7597,7598,1,0,0,0,7598,7599,5,867,0,0,7599, + 7635,1,0,0,0,7600,7601,5,293,0,0,7601,7602,5,866,0,0,7602,7603,3, + 70,35,0,7603,7606,5,68,0,0,7604,7607,3,726,363,0,7605,7607,3,814, + 407,0,7606,7604,1,0,0,0,7606,7605,1,0,0,0,7607,7608,1,0,0,0,7608, + 7609,5,867,0,0,7609,7635,1,0,0,0,7610,7611,5,827,0,0,7611,7612,5, + 866,0,0,7612,7613,7,137,0,0,7613,7614,5,868,0,0,7614,7615,3,726, + 363,0,7615,7616,5,867,0,0,7616,7635,1,0,0,0,7617,7618,5,254,0,0, + 7618,7619,5,866,0,0,7619,7620,3,814,407,0,7620,7621,5,868,0,0,7621, + 7624,3,814,407,0,7622,7623,5,579,0,0,7623,7625,3,740,370,0,7624, + 7622,1,0,0,0,7624,7625,1,0,0,0,7625,7627,1,0,0,0,7626,7628,3,294, + 147,0,7627,7626,1,0,0,0,7627,7628,1,0,0,0,7628,7630,1,0,0,0,7629, + 7631,3,296,148,0,7630,7629,1,0,0,0,7630,7631,1,0,0,0,7631,7632,1, + 0,0,0,7632,7633,5,867,0,0,7633,7635,1,0,0,0,7634,7455,1,0,0,0,7634, + 7460,1,0,0,0,7634,7461,1,0,0,0,7634,7468,1,0,0,0,7634,7475,1,0,0, + 0,7634,7482,1,0,0,0,7634,7487,1,0,0,0,7634,7499,1,0,0,0,7634,7512, + 1,0,0,0,7634,7521,1,0,0,0,7634,7534,1,0,0,0,7634,7554,1,0,0,0,7634, + 7568,1,0,0,0,7634,7581,1,0,0,0,7634,7600,1,0,0,0,7634,7610,1,0,0, + 0,7634,7617,1,0,0,0,7635,777,1,0,0,0,7636,7637,5,191,0,0,7637,7638, + 3,812,406,0,7638,7639,5,175,0,0,7639,7640,3,812,406,0,7640,779,1, + 0,0,0,7641,7642,5,448,0,0,7642,7647,3,782,391,0,7643,7644,5,868, + 0,0,7644,7646,3,782,391,0,7645,7643,1,0,0,0,7646,7649,1,0,0,0,7647, + 7645,1,0,0,0,7647,7648,1,0,0,0,7648,7656,1,0,0,0,7649,7647,1,0,0, + 0,7650,7651,5,448,0,0,7651,7652,3,722,361,0,7652,7653,5,854,0,0, + 7653,7654,3,722,361,0,7654,7656,1,0,0,0,7655,7641,1,0,0,0,7655,7650, + 1,0,0,0,7656,781,1,0,0,0,7657,7659,3,722,361,0,7658,7660,7,138,0, + 0,7659,7658,1,0,0,0,7659,7660,1,0,0,0,7660,783,1,0,0,0,7661,7662, + 7,139,0,0,7662,7664,5,866,0,0,7663,7665,7,45,0,0,7664,7663,1,0,0, + 0,7664,7665,1,0,0,0,7665,7666,1,0,0,0,7666,7667,3,812,406,0,7667, + 7669,5,867,0,0,7668,7670,3,788,394,0,7669,7668,1,0,0,0,7669,7670, + 1,0,0,0,7670,7721,1,0,0,0,7671,7672,5,262,0,0,7672,7680,5,866,0, + 0,7673,7681,5,850,0,0,7674,7676,5,7,0,0,7675,7674,1,0,0,0,7675,7676, + 1,0,0,0,7676,7677,1,0,0,0,7677,7681,3,812,406,0,7678,7679,5,49,0, + 0,7679,7681,3,810,405,0,7680,7673,1,0,0,0,7680,7675,1,0,0,0,7680, + 7678,1,0,0,0,7681,7682,1,0,0,0,7682,7684,5,867,0,0,7683,7685,3,788, + 394,0,7684,7683,1,0,0,0,7684,7685,1,0,0,0,7685,7721,1,0,0,0,7686, + 7687,7,140,0,0,7687,7689,5,866,0,0,7688,7690,5,7,0,0,7689,7688,1, + 0,0,0,7689,7690,1,0,0,0,7690,7691,1,0,0,0,7691,7692,3,812,406,0, + 7692,7694,5,867,0,0,7693,7695,3,788,394,0,7694,7693,1,0,0,0,7694, + 7695,1,0,0,0,7695,7721,1,0,0,0,7696,7697,5,266,0,0,7697,7699,5,866, + 0,0,7698,7700,5,49,0,0,7699,7698,1,0,0,0,7699,7700,1,0,0,0,7700, + 7701,1,0,0,0,7701,7712,3,810,405,0,7702,7703,5,125,0,0,7703,7704, + 5,20,0,0,7704,7709,3,260,130,0,7705,7706,5,868,0,0,7706,7708,3,260, + 130,0,7707,7705,1,0,0,0,7708,7711,1,0,0,0,7709,7707,1,0,0,0,7709, + 7710,1,0,0,0,7710,7713,1,0,0,0,7711,7709,1,0,0,0,7712,7702,1,0,0, + 0,7712,7713,1,0,0,0,7713,7716,1,0,0,0,7714,7715,5,156,0,0,7715,7717, + 5,882,0,0,7716,7714,1,0,0,0,7716,7717,1,0,0,0,7717,7718,1,0,0,0, + 7718,7719,5,867,0,0,7719,7721,1,0,0,0,7720,7661,1,0,0,0,7720,7671, + 1,0,0,0,7720,7686,1,0,0,0,7720,7696,1,0,0,0,7721,785,1,0,0,0,7722, + 7723,7,141,0,0,7723,7724,5,866,0,0,7724,7727,3,814,407,0,7725,7726, + 5,868,0,0,7726,7728,3,722,361,0,7727,7725,1,0,0,0,7727,7728,1,0, + 0,0,7728,7731,1,0,0,0,7729,7730,5,868,0,0,7730,7732,3,722,361,0, + 7731,7729,1,0,0,0,7731,7732,1,0,0,0,7732,7733,1,0,0,0,7733,7734, + 5,867,0,0,7734,7735,3,788,394,0,7735,7761,1,0,0,0,7736,7737,7,142, + 0,0,7737,7738,5,866,0,0,7738,7739,3,814,407,0,7739,7740,5,867,0, + 0,7740,7741,3,788,394,0,7741,7761,1,0,0,0,7742,7743,7,143,0,0,7743, + 7744,5,866,0,0,7744,7745,5,867,0,0,7745,7761,3,788,394,0,7746,7747, + 5,273,0,0,7747,7748,5,866,0,0,7748,7749,3,814,407,0,7749,7750,5, + 868,0,0,7750,7751,3,722,361,0,7751,7752,5,867,0,0,7752,7753,3,788, + 394,0,7753,7761,1,0,0,0,7754,7755,5,272,0,0,7755,7756,5,866,0,0, + 7756,7757,3,722,361,0,7757,7758,5,867,0,0,7758,7759,3,788,394,0, + 7759,7761,1,0,0,0,7760,7722,1,0,0,0,7760,7736,1,0,0,0,7760,7742, + 1,0,0,0,7760,7746,1,0,0,0,7760,7754,1,0,0,0,7761,787,1,0,0,0,7762, + 7768,5,129,0,0,7763,7764,5,866,0,0,7764,7765,3,790,395,0,7765,7766, + 5,867,0,0,7766,7769,1,0,0,0,7767,7769,3,792,396,0,7768,7763,1,0, + 0,0,7768,7767,1,0,0,0,7769,789,1,0,0,0,7770,7772,3,792,396,0,7771, + 7770,1,0,0,0,7771,7772,1,0,0,0,7772,7774,1,0,0,0,7773,7775,3,804, + 402,0,7774,7773,1,0,0,0,7774,7775,1,0,0,0,7775,7777,1,0,0,0,7776, + 7778,3,258,129,0,7777,7776,1,0,0,0,7777,7778,1,0,0,0,7778,7780,1, + 0,0,0,7779,7781,3,794,397,0,7780,7779,1,0,0,0,7780,7781,1,0,0,0, + 7781,791,1,0,0,0,7782,7783,3,716,358,0,7783,793,1,0,0,0,7784,7785, + 3,796,398,0,7785,7786,3,798,399,0,7786,795,1,0,0,0,7787,7788,7,144, + 0,0,7788,797,1,0,0,0,7789,7792,3,802,401,0,7790,7792,3,800,400,0, + 7791,7789,1,0,0,0,7791,7790,1,0,0,0,7792,799,1,0,0,0,7793,7794,5, + 17,0,0,7794,7795,3,802,401,0,7795,7796,5,11,0,0,7796,7797,3,802, + 401,0,7797,801,1,0,0,0,7798,7799,5,36,0,0,7799,7806,5,586,0,0,7800, + 7801,5,669,0,0,7801,7806,7,145,0,0,7802,7803,3,814,407,0,7803,7804, + 7,145,0,0,7804,7806,1,0,0,0,7805,7798,1,0,0,0,7805,7800,1,0,0,0, + 7805,7802,1,0,0,0,7806,803,1,0,0,0,7807,7808,5,130,0,0,7808,7809, + 5,20,0,0,7809,7814,3,814,407,0,7810,7811,5,868,0,0,7811,7813,3,814, + 407,0,7812,7810,1,0,0,0,7813,7816,1,0,0,0,7814,7812,1,0,0,0,7814, + 7815,1,0,0,0,7815,805,1,0,0,0,7816,7814,1,0,0,0,7817,7842,3,846, + 423,0,7818,7842,5,757,0,0,7819,7842,5,289,0,0,7820,7842,5,285,0, + 0,7821,7842,5,286,0,0,7822,7842,5,287,0,0,7823,7842,5,290,0,0,7824, + 7842,5,291,0,0,7825,7842,5,292,0,0,7826,7842,5,78,0,0,7827,7842, + 5,86,0,0,7828,7842,5,288,0,0,7829,7842,5,294,0,0,7830,7842,5,488, + 0,0,7831,7842,5,295,0,0,7832,7842,5,142,0,0,7833,7842,5,143,0,0, + 7834,7842,5,297,0,0,7835,7842,5,298,0,0,7836,7842,5,299,0,0,7837, + 7842,5,300,0,0,7838,7842,5,301,0,0,7839,7842,5,302,0,0,7840,7842, + 5,303,0,0,7841,7817,1,0,0,0,7841,7818,1,0,0,0,7841,7819,1,0,0,0, + 7841,7820,1,0,0,0,7841,7821,1,0,0,0,7841,7822,1,0,0,0,7841,7823, + 1,0,0,0,7841,7824,1,0,0,0,7841,7825,1,0,0,0,7841,7826,1,0,0,0,7841, + 7827,1,0,0,0,7841,7828,1,0,0,0,7841,7829,1,0,0,0,7841,7830,1,0,0, + 0,7841,7831,1,0,0,0,7841,7832,1,0,0,0,7841,7833,1,0,0,0,7841,7834, + 1,0,0,0,7841,7835,1,0,0,0,7841,7836,1,0,0,0,7841,7837,1,0,0,0,7841, + 7838,1,0,0,0,7841,7839,1,0,0,0,7841,7840,1,0,0,0,7842,807,1,0,0, + 0,7843,7844,7,146,0,0,7844,7845,5,866,0,0,7845,7846,3,812,406,0, + 7846,7847,5,867,0,0,7847,809,1,0,0,0,7848,7853,3,812,406,0,7849, + 7850,5,868,0,0,7850,7852,3,812,406,0,7851,7849,1,0,0,0,7852,7855, + 1,0,0,0,7853,7851,1,0,0,0,7853,7854,1,0,0,0,7854,811,1,0,0,0,7855, + 7853,1,0,0,0,7856,7860,3,734,367,0,7857,7860,3,774,387,0,7858,7860, + 3,814,407,0,7859,7856,1,0,0,0,7859,7857,1,0,0,0,7859,7858,1,0,0, + 0,7860,813,1,0,0,0,7861,7862,6,407,-1,0,7862,7863,7,147,0,0,7863, + 7873,3,814,407,4,7864,7865,3,816,408,0,7865,7867,5,89,0,0,7866,7868, + 5,114,0,0,7867,7866,1,0,0,0,7867,7868,1,0,0,0,7868,7869,1,0,0,0, + 7869,7870,7,148,0,0,7870,7873,1,0,0,0,7871,7873,3,816,408,0,7872, + 7861,1,0,0,0,7872,7864,1,0,0,0,7872,7871,1,0,0,0,7873,7880,1,0,0, + 0,7874,7875,10,3,0,0,7875,7876,3,826,413,0,7876,7877,3,814,407,4, + 7877,7879,1,0,0,0,7878,7874,1,0,0,0,7879,7882,1,0,0,0,7880,7878, + 1,0,0,0,7880,7881,1,0,0,0,7881,815,1,0,0,0,7882,7880,1,0,0,0,7883, + 7884,6,408,-1,0,7884,7885,3,818,409,0,7885,7949,1,0,0,0,7886,7888, + 10,6,0,0,7887,7889,5,114,0,0,7888,7887,1,0,0,0,7888,7889,1,0,0,0, + 7889,7890,1,0,0,0,7890,7891,5,17,0,0,7891,7892,3,816,408,0,7892, + 7893,5,11,0,0,7893,7894,3,816,408,7,7894,7948,1,0,0,0,7895,7896, + 10,5,0,0,7896,7897,5,604,0,0,7897,7898,5,99,0,0,7898,7948,3,816, + 408,6,7899,7901,10,3,0,0,7900,7902,5,114,0,0,7901,7900,1,0,0,0,7901, + 7902,1,0,0,0,7902,7903,1,0,0,0,7903,7904,7,149,0,0,7904,7948,3,816, + 408,4,7905,7907,10,9,0,0,7906,7908,5,114,0,0,7907,7906,1,0,0,0,7907, + 7908,1,0,0,0,7908,7909,1,0,0,0,7909,7910,5,80,0,0,7910,7913,5,866, + 0,0,7911,7914,3,210,105,0,7912,7914,3,750,375,0,7913,7911,1,0,0, + 0,7913,7912,1,0,0,0,7914,7915,1,0,0,0,7915,7916,5,867,0,0,7916,7948, + 1,0,0,0,7917,7918,10,8,0,0,7918,7919,5,89,0,0,7919,7948,3,732,366, + 0,7920,7921,10,7,0,0,7921,7928,3,822,411,0,7922,7923,7,150,0,0,7923, + 7924,5,866,0,0,7924,7925,3,210,105,0,7925,7926,5,867,0,0,7926,7929, + 1,0,0,0,7927,7929,3,816,408,0,7928,7922,1,0,0,0,7928,7927,1,0,0, + 0,7929,7948,1,0,0,0,7930,7932,10,4,0,0,7931,7933,5,114,0,0,7932, + 7931,1,0,0,0,7932,7933,1,0,0,0,7933,7934,1,0,0,0,7934,7935,5,99, + 0,0,7935,7938,3,816,408,0,7936,7937,5,384,0,0,7937,7939,5,882,0, + 0,7938,7936,1,0,0,0,7938,7939,1,0,0,0,7939,7948,1,0,0,0,7940,7941, + 10,2,0,0,7941,7942,5,485,0,0,7942,7943,5,510,0,0,7943,7944,5,866, + 0,0,7944,7945,3,816,408,0,7945,7946,5,867,0,0,7946,7948,1,0,0,0, + 7947,7886,1,0,0,0,7947,7895,1,0,0,0,7947,7899,1,0,0,0,7947,7905, + 1,0,0,0,7947,7917,1,0,0,0,7947,7920,1,0,0,0,7947,7930,1,0,0,0,7947, + 7940,1,0,0,0,7948,7951,1,0,0,0,7949,7947,1,0,0,0,7949,7950,1,0,0, + 0,7950,817,1,0,0,0,7951,7949,1,0,0,0,7952,7953,6,409,-1,0,7953,8001, + 3,734,367,0,7954,8001,3,774,387,0,7955,8001,3,696,348,0,7956,7957, + 3,820,410,0,7957,7958,3,818,409,12,7958,8001,1,0,0,0,7959,7960,5, + 228,0,0,7960,8001,3,818,409,11,7961,7962,5,892,0,0,7962,7963,5,841, + 0,0,7963,8001,3,818,409,10,7964,7965,5,866,0,0,7965,7970,3,814,407, + 0,7966,7967,5,868,0,0,7967,7969,3,814,407,0,7968,7966,1,0,0,0,7969, + 7972,1,0,0,0,7970,7968,1,0,0,0,7970,7971,1,0,0,0,7971,7973,1,0,0, + 0,7972,7970,1,0,0,0,7973,7974,5,867,0,0,7974,8001,1,0,0,0,7975,7976, + 5,586,0,0,7976,7977,5,866,0,0,7977,7980,3,814,407,0,7978,7979,5, + 868,0,0,7979,7981,3,814,407,0,7980,7978,1,0,0,0,7981,7982,1,0,0, + 0,7982,7980,1,0,0,0,7982,7983,1,0,0,0,7983,7984,1,0,0,0,7984,7985, + 5,867,0,0,7985,8001,1,0,0,0,7986,7987,5,60,0,0,7987,7988,5,866,0, + 0,7988,7989,3,210,105,0,7989,7990,5,867,0,0,7990,8001,1,0,0,0,7991, + 7992,5,866,0,0,7992,7993,3,210,105,0,7993,7994,5,867,0,0,7994,8001, + 1,0,0,0,7995,7996,5,87,0,0,7996,7997,3,814,407,0,7997,7998,3,70, + 35,0,7998,8001,1,0,0,0,7999,8001,3,672,336,0,8000,7952,1,0,0,0,8000, + 7954,1,0,0,0,8000,7955,1,0,0,0,8000,7956,1,0,0,0,8000,7959,1,0,0, + 0,8000,7961,1,0,0,0,8000,7964,1,0,0,0,8000,7975,1,0,0,0,8000,7986, + 1,0,0,0,8000,7991,1,0,0,0,8000,7995,1,0,0,0,8000,7999,1,0,0,0,8001, + 8019,1,0,0,0,8002,8003,10,4,0,0,8003,8004,3,832,416,0,8004,8005, + 3,818,409,5,8005,8018,1,0,0,0,8006,8007,10,3,0,0,8007,8008,3,828, + 414,0,8008,8009,3,818,409,4,8009,8018,1,0,0,0,8010,8011,10,2,0,0, + 8011,8012,3,830,415,0,8012,8013,3,818,409,3,8013,8018,1,0,0,0,8014, + 8015,10,14,0,0,8015,8016,5,28,0,0,8016,8018,3,700,350,0,8017,8002, + 1,0,0,0,8017,8006,1,0,0,0,8017,8010,1,0,0,0,8017,8014,1,0,0,0,8018, + 8021,1,0,0,0,8019,8017,1,0,0,0,8019,8020,1,0,0,0,8020,819,1,0,0, + 0,8021,8019,1,0,0,0,8022,8023,7,151,0,0,8023,821,1,0,0,0,8024,8025, + 5,859,0,0,8025,8033,5,858,0,0,8026,8027,5,860,0,0,8027,8033,5,857, + 0,0,8028,8029,5,859,0,0,8029,8030,5,857,0,0,8030,8033,5,858,0,0, + 8031,8033,3,824,412,0,8032,8024,1,0,0,0,8032,8026,1,0,0,0,8032,8028, + 1,0,0,0,8032,8031,1,0,0,0,8033,823,1,0,0,0,8034,8035,5,859,0,0,8035, + 8042,5,857,0,0,8036,8037,5,858,0,0,8037,8042,5,857,0,0,8038,8042, + 5,857,0,0,8039,8042,5,858,0,0,8040,8042,5,859,0,0,8041,8034,1,0, + 0,0,8041,8036,1,0,0,0,8041,8038,1,0,0,0,8041,8039,1,0,0,0,8041,8040, + 1,0,0,0,8042,825,1,0,0,0,8043,8051,5,11,0,0,8044,8045,5,863,0,0, + 8045,8051,5,863,0,0,8046,8051,5,196,0,0,8047,8051,5,124,0,0,8048, + 8049,5,862,0,0,8049,8051,5,862,0,0,8050,8043,1,0,0,0,8050,8044,1, + 0,0,0,8050,8046,1,0,0,0,8050,8047,1,0,0,0,8050,8048,1,0,0,0,8051, + 827,1,0,0,0,8052,8053,5,859,0,0,8053,8060,5,859,0,0,8054,8055,5, + 858,0,0,8055,8060,5,858,0,0,8056,8060,5,863,0,0,8057,8060,5,864, + 0,0,8058,8060,5,862,0,0,8059,8052,1,0,0,0,8059,8054,1,0,0,0,8059, + 8056,1,0,0,0,8059,8057,1,0,0,0,8059,8058,1,0,0,0,8060,829,1,0,0, + 0,8061,8062,7,152,0,0,8062,831,1,0,0,0,8063,8064,5,854,0,0,8064, + 8069,5,858,0,0,8065,8066,5,854,0,0,8066,8067,5,858,0,0,8067,8069, + 5,858,0,0,8068,8063,1,0,0,0,8068,8065,1,0,0,0,8069,833,1,0,0,0,8070, + 8071,7,153,0,0,8071,835,1,0,0,0,8072,8073,7,154,0,0,8073,837,1,0, + 0,0,8074,8075,7,155,0,0,8075,839,1,0,0,0,8076,8077,7,156,0,0,8077, + 841,1,0,0,0,8078,8079,7,157,0,0,8079,843,1,0,0,0,8080,8081,7,158, + 0,0,8081,845,1,0,0,0,8082,8083,7,159,0,0,8083,847,1,0,0,0,1162,851, + 858,861,870,914,933,944,960,965,977,1012,1022,1027,1033,1038,1042, + 1051,1054,1057,1061,1068,1071,1076,1084,1089,1094,1097,1099,1111, + 1114,1118,1121,1125,1128,1132,1135,1138,1142,1145,1149,1155,1159, + 1164,1170,1177,1184,1187,1191,1196,1202,1211,1216,1220,1224,1235, + 1253,1260,1264,1268,1272,1277,1280,1283,1286,1289,1295,1299,1309, + 1313,1317,1323,1328,1331,1334,1336,1340,1347,1351,1354,1359,1363, + 1366,1370,1373,1377,1390,1393,1397,1400,1404,1407,1411,1414,1418, + 1421,1424,1428,1431,1435,1441,1444,1448,1460,1466,1477,1482,1490, + 1494,1499,1502,1507,1517,1522,1527,1533,1538,1542,1544,1547,1551, + 1555,1558,1562,1566,1570,1576,1579,1586,1591,1597,1604,1610,1618, + 1621,1628,1631,1633,1639,1645,1662,1669,1676,1688,1693,1696,1699, + 1712,1725,1730,1746,1754,1764,1767,1773,1778,1781,1787,1791,1796, + 1802,1806,1810,1813,1816,1822,1826,1831,1842,1845,1852,1855,1859, + 1865,1877,1880,1885,1898,1905,1911,1916,1920,1923,1931,1939,1941, + 1951,1955,1958,1962,1967,1972,1977,1981,1985,1989,1993,1997,2001, + 2006,2011,2016,2022,2027,2032,2037,2042,2047,2053,2058,2063,2068, + 2073,2078,2083,2088,2095,2100,2105,2110,2114,2119,2127,2132,2138, + 2150,2157,2159,2167,2172,2175,2183,2189,2193,2206,2218,2220,2223, + 2231,2237,2243,2256,2263,2272,2277,2288,2297,2302,2314,2321,2330, + 2335,2347,2354,2363,2368,2375,2384,2389,2391,2396,2404,2413,2417, + 2420,2424,2429,2435,2441,2446,2451,2456,2461,2464,2469,2474,2484, + 2488,2495,2500,2503,2508,2511,2515,2519,2527,2546,2549,2552,2556, + 2566,2579,2592,2595,2601,2604,2608,2617,2620,2623,2628,2632,2635, + 2639,2643,2646,2650,2653,2657,2660,2666,2669,2674,2682,2688,2692, + 2696,2701,2706,2713,2717,2728,2736,2739,2745,2751,2754,2760,2766, + 2768,2773,2779,2785,2787,2791,2794,2797,2803,2809,2811,2816,2823, + 2832,2835,2839,2844,2854,2863,2871,2874,2882,2885,2892,2897,2905, + 2921,2926,2933,2952,2958,2968,2980,2987,2994,3009,3022,3028,3034, + 3040,3046,3052,3058,3063,3070,3077,3084,3089,3092,3094,3103,3110, + 3117,3124,3133,3139,3143,3147,3151,3157,3160,3165,3172,3179,3183, + 3188,3198,3206,3212,3221,3230,3239,3242,3246,3255,3259,3262,3265, + 3271,3274,3277,3281,3284,3287,3290,3301,3304,3309,3315,3320,3325, + 3328,3332,3337,3340,3345,3355,3360,3366,3368,3374,3376,3382,3390, + 3395,3403,3406,3411,3414,3419,3427,3433,3437,3439,3445,3453,3458, + 3466,3469,3474,3477,3481,3484,3487,3491,3494,3502,3508,3512,3518, + 3523,3527,3529,3535,3539,3542,3545,3548,3554,3559,3562,3565,3568, + 3571,3573,3576,3580,3583,3586,3594,3600,3603,3605,3614,3619,3626, + 3629,3632,3636,3640,3646,3650,3657,3661,3664,3667,3672,3679,3689, + 3698,3707,3717,3720,3724,3730,3734,3737,3740,3745,3748,3755,3759, + 3762,3766,3770,3773,3776,3781,3787,3791,3801,3807,3811,3817,3821, + 3827,3830,3842,3846,3850,3858,3862,3876,3881,3884,3888,3891,3899, + 3904,3907,3910,3914,3917,3926,3931,3940,3945,3952,3959,3967,3973, + 3981,3984,3987,3994,3997,4000,4004,4008,4014,4021,4031,4035,4044, + 4047,4051,4057,4065,4070,4074,4080,4086,4089,4091,4095,4104,4114, + 4120,4125,4129,4132,4135,4138,4141,4144,4147,4151,4155,4163,4167, + 4170,4172,4185,4188,4195,4205,4208,4213,4215,4219,4227,4233,4242, + 4255,4259,4265,4271,4274,4278,4281,4283,4295,4299,4307,4319,4325, + 4327,4333,4335,4337,4343,4351,4359,4363,4367,4376,4381,4401,4406, + 4412,4419,4424,4433,4436,4440,4444,4448,4451,4454,4457,4461,4465, + 4468,4471,4474,4481,4485,4500,4513,4521,4531,4535,4538,4544,4547, + 4550,4559,4568,4578,4582,4592,4596,4607,4611,4620,4629,4632,4636, + 4641,4645,4654,4657,4660,4667,4673,4679,4705,4708,4711,4730,4732, + 4755,4758,4761,4780,4782,4796,4809,4846,4851,4886,4900,4907,4911, + 4917,4925,4927,4938,4948,4955,4961,4969,4974,4982,4990,4998,5006, + 5012,5017,5022,5027,5033,5035,5046,5051,5058,5060,5074,5080,5085, + 5090,5096,5103,5111,5119,5124,5130,5133,5141,5148,5157,5160,5177, + 5185,5193,5197,5204,5210,5218,5223,5230,5238,5245,5250,5253,5255, + 5261,5263,5267,5269,5274,5281,5286,5290,5295,5299,5305,5311,5316, + 5319,5321,5327,5329,5333,5335,5340,5345,5352,5361,5366,5375,5379, + 5385,5390,5393,5395,5401,5403,5406,5413,5415,5420,5427,5436,5442, + 5444,5451,5454,5466,5472,5480,5483,5487,5490,5494,5496,5507,5510, + 5514,5517,5520,5527,5539,5542,5549,5555,5565,5570,5577,5582,5588, + 5592,5596,5604,5608,5612,5618,5620,5632,5637,5643,5649,5653,5658, + 5660,5684,5688,5691,5700,5704,5713,5717,5721,5727,5729,5738,5748, + 5775,5779,5784,5791,5794,5800,5810,5820,5830,5836,5845,5851,5858, + 5860,5868,5874,5878,5895,5905,5909,5913,5923,5928,6000,6018,6026, + 6032,6044,6048,6059,6063,6072,6080,6087,6091,6098,6103,6106,6109, + 6120,6129,6138,6141,6155,6173,6186,6189,6193,6196,6198,6205,6212, + 6216,6223,6230,6233,6249,6252,6262,6266,6272,6275,6278,6283,6287, + 6290,6297,6300,6306,6342,6345,6357,6360,6376,6378,6382,6389,6393, + 6400,6403,6412,6415,6420,6426,6428,6434,6438,6444,6447,6450,6463, + 6466,6472,6475,6483,6491,6497,6500,6504,6518,6530,6538,6542,6549, + 6556,6561,6574,6583,6591,6596,6599,6604,6607,6619,6624,6637,6639, + 6644,6648,6651,6653,6660,6667,6670,6673,6679,6683,6689,6697,6706, + 6719,6724,6732,6735,6740,6745,6753,6756,6764,6768,6775,6781,6784, + 6788,6801,6807,6819,6822,6831,6836,6857,6873,6883,6888,6893,6895, + 6898,6902,6904,6911,6917,6919,6922,6926,6929,6942,6952,6955,6958, + 6971,6977,6980,6988,6995,7015,7022,7024,7031,7033,7037,7044,7050, + 7061,7067,7073,7076,7080,7085,7088,7092,7096,7098,7103,7108,7121, + 7124,7128,7131,7134,7139,7144,7150,7153,7158,7161,7166,7169,7173, + 7178,7183,7188,7193,7196,7201,7206,7211,7217,7222,7227,7232,7236, + 7239,7244,7248,7252,7260,7267,7271,7276,7281,7285,7287,7290,7306, + 7316,7326,7335,7344,7351,7358,7366,7374,7386,7393,7403,7408,7411, + 7416,7419,7441,7450,7453,7458,7491,7495,7504,7508,7517,7525,7530, + 7538,7543,7548,7550,7559,7564,7572,7577,7585,7593,7596,7606,7624, + 7627,7630,7634,7647,7655,7659,7664,7669,7675,7680,7684,7689,7694, + 7699,7709,7712,7716,7720,7727,7731,7760,7768,7771,7774,7777,7780, + 7791,7805,7814,7841,7853,7859,7867,7872,7880,7888,7901,7907,7913, + 7928,7932,7938,7947,7949,7970,7982,8000,8017,8019,8032,8041,8050, + 8059,8068 ]; private static __ATN: antlr.ATN; @@ -64635,24 +64748,17 @@ export class TableSourceItemContext extends antlr.ParserRuleContext { } } export class SubqueryTableItemContext extends TableSourceItemContext { - public _parenthesisSubquery?: SelectStatementContext; public _alias?: UidContext; public constructor(ctx: TableSourceItemContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + return this.getRuleContext(0, AtomSubQueryTableSourceContext)!; + } public uid(): UidContext { return this.getRuleContext(0, UidContext)!; } - public selectStatement(): SelectStatementContext | null { - return this.getRuleContext(0, SelectStatementContext); - } - public LR_BRACKET(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.LR_BRACKET, 0); - } - public RR_BRACKET(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.RR_BRACKET, 0); - } public KW_LATERAL(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_LATERAL, 0); } @@ -64777,6 +64883,43 @@ export class TableSourcesItemContext extends TableSourceItemContext { } +export class AtomSubQueryTableSourceContext extends antlr.ParserRuleContext { + public _parenthesisSubquery?: SelectStatementContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public selectStatement(): SelectStatementContext { + return this.getRuleContext(0, SelectStatementContext)!; + } + public LR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LR_BRACKET, 0); + } + public RR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.RR_BRACKET, 0); + } + public override get ruleIndex(): number { + return MySqlParser.RULE_atomSubQueryTableSource; + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterAtomSubQueryTableSource) { + listener.enterAtomSubQueryTableSource(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitAtomSubQueryTableSource) { + listener.exitAtomSubQueryTableSource(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitAtomSubQueryTableSource) { + return visitor.visitAtomSubQueryTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class FullColumnNamesContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -65692,10 +65835,12 @@ export class SelectSpecContext extends antlr.ParserRuleContext { export class SelectElementsContext extends antlr.ParserRuleContext { - public _star?: Token | null; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public pureAllColumns(): PureAllColumnsContext | null { + return this.getRuleContext(0, PureAllColumnsContext); + } public selectElement(): SelectElementContext[]; public selectElement(i: number): SelectElementContext | null; public selectElement(i?: number): SelectElementContext[] | SelectElementContext | null { @@ -65705,9 +65850,6 @@ export class SelectElementsContext extends antlr.ParserRuleContext { return this.getRuleContext(i, SelectElementContext); } - public STAR(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.STAR, 0); - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -65741,149 +65883,208 @@ export class SelectElementsContext extends antlr.ParserRuleContext { export class SelectElementContext extends antlr.ParserRuleContext { + public _alias?: UidContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_AS, 0); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); + } public override get ruleIndex(): number { return MySqlParser.RULE_selectElement; } - public override copyFrom(ctx: SelectElementContext): void { - super.copyFrom(ctx); + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterSelectElement) { + listener.enterSelectElement(this); + } } -} -export class SelectExpressionElementContext extends SelectElementContext { - public _alias?: UidContext; - public constructor(ctx: SelectElementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitSelectElement) { + listener.exitSelectElement(this); + } } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitSelectElement) { + return visitor.visitSelectElement(this); + } else { + return visitor.visitChildren(this); + } } - public LOCAL_ID(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.LOCAL_ID, 0); +} + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public VAR_ASSIGN(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.VAR_ASSIGN, 0); + public fullId(): FullIdContext { + return this.getRuleContext(0, FullIdContext)!; } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); + public DOT(): antlr.TerminalNode { + return this.getToken(MySqlParser.DOT, 0)!; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_AS, 0); + public STAR(): antlr.TerminalNode { + return this.getToken(MySqlParser.STAR, 0)!; + } + public override get ruleIndex(): number { + return MySqlParser.RULE_tableAllColumns; } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectExpressionElement) { - listener.enterSelectExpressionElement(this); + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectExpressionElement) { - listener.exitSelectExpressionElement(this); + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectExpressionElement) { - return visitor.visitSelectExpressionElement(this); + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); } else { return visitor.visitChildren(this); } } } -export class SelectFunctionElementContext extends SelectElementContext { - public _alias?: UidContext; - public constructor(ctx: SelectElementContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class PureAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public functionCall(): FunctionCallContext { - return this.getRuleContext(0, FunctionCallContext)!; + public STAR(): antlr.TerminalNode { + return this.getToken(MySqlParser.STAR, 0)!; } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); + public override get ruleIndex(): number { + return MySqlParser.RULE_pureAllColumns; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_AS, 0); + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterPureAllColumns) { + listener.enterPureAllColumns(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitPureAllColumns) { + listener.exitPureAllColumns(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitPureAllColumns) { + return visitor.visitPureAllColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public override get ruleIndex(): number { + return MySqlParser.RULE_selectLiteralColumnName; } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectFunctionElement) { - listener.enterSelectFunctionElement(this); + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectFunctionElement) { - listener.exitSelectFunctionElement(this); + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectFunctionElement) { - return visitor.visitSelectFunctionElement(this); + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); } else { return visitor.visitChildren(this); } } } -export class SelectStarElementContext extends SelectElementContext { - public _select_element?: FullIdContext; - public constructor(ctx: SelectElementContext) { + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return MySqlParser.RULE_selectExpressionColumnName; + } + public override copyFrom(ctx: SelectExpressionColumnNameContext): void { + super.copyFrom(ctx); + } +} +export class SelectExpressionElementContext extends SelectExpressionColumnNameContext { + public constructor(ctx: SelectExpressionColumnNameContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public DOT(): antlr.TerminalNode { - return this.getToken(MySqlParser.DOT, 0)!; + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; } - public STAR(): antlr.TerminalNode { - return this.getToken(MySqlParser.STAR, 0)!; + public LOCAL_ID(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.LOCAL_ID, 0); } - public fullId(): FullIdContext { - return this.getRuleContext(0, FullIdContext)!; + public VAR_ASSIGN(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.VAR_ASSIGN, 0); } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectStarElement) { - listener.enterSelectStarElement(this); + if(listener.enterSelectExpressionElement) { + listener.enterSelectExpressionElement(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectStarElement) { - listener.exitSelectStarElement(this); + if(listener.exitSelectExpressionElement) { + listener.exitSelectExpressionElement(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectStarElement) { - return visitor.visitSelectStarElement(this); + if (visitor.visitSelectExpressionElement) { + return visitor.visitSelectExpressionElement(this); } else { return visitor.visitChildren(this); } } } -export class SelectColumnElementContext extends SelectElementContext { - public _alias?: UidContext; - public constructor(ctx: SelectElementContext) { +export class SelectFunctionElementContext extends SelectExpressionColumnNameContext { + public constructor(ctx: SelectExpressionColumnNameContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public columnName(): ColumnNameContext { - return this.getRuleContext(0, ColumnNameContext)!; - } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); - } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.KW_AS, 0); + public functionCall(): FunctionCallContext { + return this.getRuleContext(0, FunctionCallContext)!; } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectColumnElement) { - listener.enterSelectColumnElement(this); + if(listener.enterSelectFunctionElement) { + listener.enterSelectFunctionElement(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectColumnElement) { - listener.exitSelectColumnElement(this); + if(listener.exitSelectFunctionElement) { + listener.exitSelectFunctionElement(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectColumnElement) { - return visitor.visitSelectColumnElement(this); + if (visitor.visitSelectFunctionElement) { + return visitor.visitSelectFunctionElement(this); } else { return visitor.visitChildren(this); } diff --git a/src/lib/mysql/MySqlParserListener.ts b/src/lib/mysql/MySqlParserListener.ts index 3eb533704..5d751b93a 100644 --- a/src/lib/mysql/MySqlParserListener.ts +++ b/src/lib/mysql/MySqlParserListener.ts @@ -261,6 +261,7 @@ import { TableJsonContext } from "./MySqlParser.js"; import { AtomTableItemContext } from "./MySqlParser.js"; import { SubqueryTableItemContext } from "./MySqlParser.js"; import { TableSourcesItemContext } from "./MySqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./MySqlParser.js"; import { FullColumnNamesContext } from "./MySqlParser.js"; import { IndexHintContext } from "./MySqlParser.js"; import { IndexHintTypeContext } from "./MySqlParser.js"; @@ -280,10 +281,12 @@ import { JsonOnEmptyContext } from "./MySqlParser.js"; import { JsonOnErrorContext } from "./MySqlParser.js"; import { SelectSpecContext } from "./MySqlParser.js"; import { SelectElementsContext } from "./MySqlParser.js"; +import { SelectElementContext } from "./MySqlParser.js"; +import { TableAllColumnsContext } from "./MySqlParser.js"; +import { PureAllColumnsContext } from "./MySqlParser.js"; +import { SelectLiteralColumnNameContext } from "./MySqlParser.js"; import { SelectExpressionElementContext } from "./MySqlParser.js"; import { SelectFunctionElementContext } from "./MySqlParser.js"; -import { SelectStarElementContext } from "./MySqlParser.js"; -import { SelectColumnElementContext } from "./MySqlParser.js"; import { SelectIntoVariablesContext } from "./MySqlParser.js"; import { SelectIntoDumpFileContext } from "./MySqlParser.js"; import { SelectIntoTextFileContext } from "./MySqlParser.js"; @@ -3484,6 +3487,16 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTableSourcesItem?: (ctx: TableSourcesItemContext) => void; + /** + * Enter a parse tree produced by `MySqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + enterAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; + /** + * Exit a parse tree produced by `MySqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + exitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; /** * Enter a parse tree produced by `MySqlParser.fullColumnNames`. * @param ctx the parse tree @@ -3683,53 +3696,69 @@ export class MySqlParserListener implements ParseTreeListener { */ exitSelectElements?: (ctx: SelectElementsContext) => void; /** - * Enter a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Enter a parse tree produced by `MySqlParser.selectElement`. * @param ctx the parse tree */ - enterSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + enterSelectElement?: (ctx: SelectElementContext) => void; /** - * Exit a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Exit a parse tree produced by `MySqlParser.selectElement`. * @param ctx the parse tree */ - exitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + exitSelectElement?: (ctx: SelectElementContext) => void; /** - * Enter a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Enter a parse tree produced by `MySqlParser.tableAllColumns`. * @param ctx the parse tree */ - enterSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** - * Exit a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Exit a parse tree produced by `MySqlParser.tableAllColumns`. * @param ctx the parse tree */ - exitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; + /** + * Enter a parse tree produced by `MySqlParser.pureAllColumns`. + * @param ctx the parse tree + */ + enterPureAllColumns?: (ctx: PureAllColumnsContext) => void; /** - * Enter a parse tree produced by the `selectStarElement` - * labeled alternative in `MySqlParser.selectElement`. + * Exit a parse tree produced by `MySqlParser.pureAllColumns`. * @param ctx the parse tree */ - enterSelectStarElement?: (ctx: SelectStarElementContext) => void; + exitPureAllColumns?: (ctx: PureAllColumnsContext) => void; /** - * Exit a parse tree produced by the `selectStarElement` - * labeled alternative in `MySqlParser.selectElement`. + * Enter a parse tree produced by `MySqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - exitSelectStarElement?: (ctx: SelectStarElementContext) => void; + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** - * Enter a parse tree produced by the `selectColumnElement` - * labeled alternative in `MySqlParser.selectElement`. + * Exit a parse tree produced by `MySqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - enterSelectColumnElement?: (ctx: SelectColumnElementContext) => void; + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** - * Exit a parse tree produced by the `selectColumnElement` - * labeled alternative in `MySqlParser.selectElement`. + * Enter a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. * @param ctx the parse tree */ - exitSelectColumnElement?: (ctx: SelectColumnElementContext) => void; + enterSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + /** + * Exit a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => void; + /** + * Enter a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; + /** + * Exit a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => void; /** * Enter a parse tree produced by the `selectIntoVariables` * labeled alternative in `MySqlParser.intoClause`. diff --git a/src/lib/mysql/MySqlParserVisitor.ts b/src/lib/mysql/MySqlParserVisitor.ts index 6ddd8c452..6f2360956 100644 --- a/src/lib/mysql/MySqlParserVisitor.ts +++ b/src/lib/mysql/MySqlParserVisitor.ts @@ -261,6 +261,7 @@ import { TableJsonContext } from "./MySqlParser.js"; import { AtomTableItemContext } from "./MySqlParser.js"; import { SubqueryTableItemContext } from "./MySqlParser.js"; import { TableSourcesItemContext } from "./MySqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./MySqlParser.js"; import { FullColumnNamesContext } from "./MySqlParser.js"; import { IndexHintContext } from "./MySqlParser.js"; import { IndexHintTypeContext } from "./MySqlParser.js"; @@ -280,10 +281,12 @@ import { JsonOnEmptyContext } from "./MySqlParser.js"; import { JsonOnErrorContext } from "./MySqlParser.js"; import { SelectSpecContext } from "./MySqlParser.js"; import { SelectElementsContext } from "./MySqlParser.js"; +import { SelectElementContext } from "./MySqlParser.js"; +import { TableAllColumnsContext } from "./MySqlParser.js"; +import { PureAllColumnsContext } from "./MySqlParser.js"; +import { SelectLiteralColumnNameContext } from "./MySqlParser.js"; import { SelectExpressionElementContext } from "./MySqlParser.js"; import { SelectFunctionElementContext } from "./MySqlParser.js"; -import { SelectStarElementContext } from "./MySqlParser.js"; -import { SelectColumnElementContext } from "./MySqlParser.js"; import { SelectIntoVariablesContext } from "./MySqlParser.js"; import { SelectIntoDumpFileContext } from "./MySqlParser.js"; import { SelectIntoTextFileContext } from "./MySqlParser.js"; @@ -2341,6 +2344,12 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitTableSourcesItem?: (ctx: TableSourcesItemContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => Result; /** * Visit a parse tree produced by `MySqlParser.fullColumnNames`. * @param ctx the parse tree @@ -2460,33 +2469,43 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor */ visitSelectElements?: (ctx: SelectElementsContext) => Result; /** - * Visit a parse tree produced by the `selectExpressionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Visit a parse tree produced by `MySqlParser.selectElement`. * @param ctx the parse tree * @return the visitor result */ - visitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => Result; + visitSelectElement?: (ctx: SelectElementContext) => Result; /** - * Visit a parse tree produced by the `selectFunctionElement` - * labeled alternative in `MySqlParser.selectElement`. + * Visit a parse tree produced by `MySqlParser.tableAllColumns`. * @param ctx the parse tree * @return the visitor result */ - visitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => Result; + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.pureAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitPureAllColumns?: (ctx: PureAllColumnsContext) => Result; + /** + * Visit a parse tree produced by `MySqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; /** - * Visit a parse tree produced by the `selectStarElement` - * labeled alternative in `MySqlParser.selectElement`. + * Visit a parse tree produced by the `selectExpressionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. * @param ctx the parse tree * @return the visitor result */ - visitSelectStarElement?: (ctx: SelectStarElementContext) => Result; + visitSelectExpressionElement?: (ctx: SelectExpressionElementContext) => Result; /** - * Visit a parse tree produced by the `selectColumnElement` - * labeled alternative in `MySqlParser.selectElement`. + * Visit a parse tree produced by the `selectFunctionElement` + * labeled alternative in `MySqlParser.selectExpressionColumnName`. * @param ctx the parse tree * @return the visitor result */ - visitSelectColumnElement?: (ctx: SelectColumnElementContext) => Result; + visitSelectFunctionElement?: (ctx: SelectFunctionElementContext) => Result; /** * Visit a parse tree produced by the `selectIntoVariables` * labeled alternative in `MySqlParser.intoClause`. diff --git a/src/lib/postgresql/PostgreSqlParser.interp b/src/lib/postgresql/PostgreSqlParser.interp index eebffe450..e14644618 100644 --- a/src/lib/postgresql/PostgreSqlParser.interp +++ b/src/lib/postgresql/PostgreSqlParser.interp @@ -1493,6 +1493,7 @@ values_clause from_clause from_list table_ref +expressionTable alias_clause func_alias_clause join_type @@ -1565,6 +1566,7 @@ indirection opt_indirection target_list target_el +tableAllColumns qualified_name_list table_name_list schema_name_list @@ -1654,4 +1656,4 @@ sql_expression atn: -[4, 1, 590, 8489, 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, 1, 0, 5, 0, 934, 8, 0, 10, 0, 12, 0, 937, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 943, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1063, 8, 2, 3, 2, 1065, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1074, 8, 4, 1, 4, 5, 4, 1077, 8, 4, 10, 4, 12, 4, 1080, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1085, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1120, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1130, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1136, 8, 7, 1, 7, 5, 7, 1139, 8, 7, 10, 7, 12, 7, 1142, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1148, 8, 8, 1, 8, 5, 8, 1151, 8, 8, 10, 8, 12, 8, 1154, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1160, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1171, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1177, 8, 11, 10, 11, 12, 11, 1180, 9, 11, 1, 11, 3, 11, 1183, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1195, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1201, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1207, 8, 12, 1, 12, 1, 12, 3, 12, 1211, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1216, 8, 12, 1, 12, 1, 12, 3, 12, 1220, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1233, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1243, 8, 12, 3, 12, 1245, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1251, 8, 13, 1, 13, 5, 13, 1254, 8, 13, 10, 13, 12, 13, 1257, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1269, 8, 15, 1, 15, 3, 15, 1272, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1277, 8, 15, 1, 15, 5, 15, 1280, 8, 15, 10, 15, 12, 15, 1283, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1293, 8, 17, 1, 18, 1, 18, 3, 18, 1297, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1309, 8, 19, 1, 20, 1, 20, 3, 20, 1313, 8, 20, 1, 20, 3, 20, 1316, 8, 20, 1, 20, 1, 20, 3, 20, 1320, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1332, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 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, 1350, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1355, 8, 22, 10, 22, 12, 22, 1358, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1363, 8, 23, 10, 23, 12, 23, 1366, 9, 23, 1, 24, 1, 24, 3, 24, 1370, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1377, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1385, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1391, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1399, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1407, 8, 28, 1, 29, 1, 29, 3, 29, 1411, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1425, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1430, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1435, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1447, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1453, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1465, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1470, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1480, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1486, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1491, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1499, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1504, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1511, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1516, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1521, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1531, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1536, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1541, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1548, 8, 38, 1, 38, 1, 38, 3, 38, 1552, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1566, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1572, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1578, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1583, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1588, 8, 39, 10, 39, 12, 39, 1591, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1602, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1608, 8, 41, 10, 41, 12, 41, 1611, 9, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1618, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1634, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1643, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1650, 8, 46, 10, 46, 12, 46, 1653, 9, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1661, 8, 46, 1, 46, 1, 46, 3, 46, 1665, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1677, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1685, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1695, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 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, 1715, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1720, 8, 46, 1, 46, 3, 46, 1723, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1730, 8, 46, 1, 46, 3, 46, 1733, 8, 46, 1, 46, 1, 46, 3, 46, 1737, 8, 46, 1, 46, 1, 46, 3, 46, 1741, 8, 46, 1, 46, 3, 46, 1744, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1749, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1754, 8, 46, 1, 46, 1, 46, 3, 46, 1758, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1767, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1773, 8, 46, 1, 46, 1, 46, 3, 46, 1777, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1786, 8, 46, 1, 46, 3, 46, 1789, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1795, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1804, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 4, 46, 1814, 8, 46, 11, 46, 12, 46, 1815, 1, 46, 1, 46, 3, 46, 1820, 8, 46, 1, 46, 1, 46, 3, 46, 1824, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1829, 8, 46, 1, 46, 3, 46, 1832, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1838, 8, 46, 4, 46, 1840, 8, 46, 11, 46, 12, 46, 1841, 1, 46, 1, 46, 3, 46, 1846, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1852, 8, 46, 1, 46, 1, 46, 3, 46, 1856, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1861, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1866, 8, 46, 1, 46, 1, 46, 3, 46, 1870, 8, 46, 1, 46, 3, 46, 1873, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1880, 8, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1891, 8, 50, 10, 50, 12, 50, 1894, 9, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1906, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1930, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1938, 8, 54, 10, 54, 12, 54, 1941, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1947, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1952, 8, 55, 1, 55, 1, 55, 3, 55, 1956, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1963, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1968, 8, 55, 1, 55, 3, 55, 1971, 8, 55, 3, 55, 1973, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1978, 8, 56, 1, 57, 1, 57, 3, 57, 1982, 8, 57, 1, 57, 1, 57, 3, 57, 1986, 8, 57, 1, 57, 1, 57, 3, 57, 1990, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1995, 8, 57, 1, 57, 3, 57, 1998, 8, 57, 1, 57, 1, 57, 3, 57, 2002, 8, 57, 1, 57, 3, 57, 2005, 8, 57, 1, 57, 1, 57, 3, 57, 2009, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2017, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2022, 8, 57, 1, 57, 3, 57, 2025, 8, 57, 1, 57, 1, 57, 3, 57, 2029, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2035, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2044, 8, 58, 1, 58, 1, 58, 3, 58, 2048, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2054, 8, 58, 10, 58, 12, 58, 2057, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2063, 8, 58, 10, 58, 12, 58, 2066, 9, 58, 1, 58, 1, 58, 3, 58, 2070, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2080, 8, 59, 10, 59, 12, 59, 2083, 9, 59, 1, 59, 1, 59, 3, 59, 2087, 8, 59, 1, 60, 1, 60, 3, 60, 2091, 8, 60, 1, 60, 1, 60, 3, 60, 2095, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2100, 8, 60, 1, 60, 1, 60, 3, 60, 2104, 8, 60, 1, 60, 3, 60, 2107, 8, 60, 1, 60, 3, 60, 2110, 8, 60, 1, 60, 3, 60, 2113, 8, 60, 1, 60, 3, 60, 2116, 8, 60, 1, 60, 3, 60, 2119, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2124, 8, 60, 1, 60, 3, 60, 2127, 8, 60, 1, 60, 3, 60, 2130, 8, 60, 1, 60, 3, 60, 2133, 8, 60, 1, 60, 3, 60, 2136, 8, 60, 1, 60, 3, 60, 2139, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2145, 8, 60, 1, 60, 1, 60, 3, 60, 2149, 8, 60, 1, 60, 3, 60, 2152, 8, 60, 1, 60, 3, 60, 2155, 8, 60, 1, 60, 3, 60, 2158, 8, 60, 1, 60, 3, 60, 2161, 8, 60, 3, 60, 2163, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2170, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2176, 8, 62, 10, 62, 12, 62, 2179, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 5, 63, 2186, 8, 63, 10, 63, 12, 63, 2189, 9, 63, 1, 64, 1, 64, 3, 64, 2193, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2201, 8, 64, 10, 64, 12, 64, 2204, 9, 64, 3, 64, 2206, 8, 64, 1, 65, 1, 65, 1, 65, 3, 65, 2211, 8, 65, 1, 65, 5, 65, 2214, 8, 65, 10, 65, 12, 65, 2217, 9, 65, 1, 65, 1, 65, 3, 65, 2221, 8, 65, 1, 65, 3, 65, 2224, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2229, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2238, 8, 66, 3, 66, 2240, 8, 66, 1, 66, 1, 66, 3, 66, 2244, 8, 66, 1, 66, 3, 66, 2247, 8, 66, 1, 66, 1, 66, 3, 66, 2251, 8, 66, 1, 66, 5, 66, 2254, 8, 66, 10, 66, 12, 66, 2257, 9, 66, 1, 67, 1, 67, 3, 67, 2261, 8, 67, 1, 67, 1, 67, 3, 67, 2265, 8, 67, 1, 67, 3, 67, 2268, 8, 67, 1, 67, 1, 67, 3, 67, 2272, 8, 67, 1, 68, 3, 68, 2275, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2280, 8, 68, 1, 68, 3, 68, 2283, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2288, 8, 68, 1, 68, 3, 68, 2291, 8, 68, 1, 68, 1, 68, 3, 68, 2295, 8, 68, 1, 68, 3, 68, 2298, 8, 68, 1, 68, 3, 68, 2301, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2306, 8, 68, 1, 68, 3, 68, 2309, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2317, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 4, 68, 2327, 8, 68, 11, 68, 12, 68, 2328, 1, 68, 1, 68, 3, 68, 2333, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2340, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2345, 8, 68, 1, 68, 3, 68, 2348, 8, 68, 1, 68, 3, 68, 2351, 8, 68, 1, 68, 3, 68, 2354, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2359, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2368, 8, 71, 10, 71, 12, 71, 2371, 9, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2376, 8, 71, 1, 71, 1, 71, 3, 71, 2380, 8, 71, 1, 71, 3, 71, 2383, 8, 71, 1, 71, 3, 71, 2386, 8, 71, 1, 71, 5, 71, 2389, 8, 71, 10, 71, 12, 71, 2392, 9, 71, 1, 71, 1, 71, 5, 71, 2396, 8, 71, 10, 71, 12, 71, 2399, 9, 71, 3, 71, 2401, 8, 71, 1, 71, 1, 71, 3, 71, 2405, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2411, 8, 71, 10, 71, 12, 71, 2414, 9, 71, 1, 71, 1, 71, 3, 71, 2418, 8, 71, 1, 71, 3, 71, 2421, 8, 71, 1, 71, 3, 71, 2424, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2431, 8, 71, 1, 71, 5, 71, 2434, 8, 71, 10, 71, 12, 71, 2437, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2445, 8, 71, 1, 71, 3, 71, 2448, 8, 71, 1, 71, 3, 71, 2451, 8, 71, 1, 71, 5, 71, 2454, 8, 71, 10, 71, 12, 71, 2457, 9, 71, 3, 71, 2459, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2469, 8, 73, 10, 73, 12, 73, 2472, 9, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 5, 74, 2479, 8, 74, 10, 74, 12, 74, 2482, 9, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2498, 8, 77, 1, 78, 1, 78, 3, 78, 2502, 8, 78, 1, 78, 1, 78, 3, 78, 2506, 8, 78, 3, 78, 2508, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2525, 8, 81, 3, 81, 2527, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2541, 8, 83, 10, 83, 12, 83, 2544, 9, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2554, 8, 84, 1, 84, 3, 84, 2557, 8, 84, 1, 84, 3, 84, 2560, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2569, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2578, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 3, 91, 2594, 8, 91, 1, 91, 3, 91, 2597, 8, 91, 1, 91, 3, 91, 2600, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 2606, 8, 91, 10, 91, 12, 91, 2609, 9, 91, 1, 91, 3, 91, 2612, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 2619, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2628, 8, 93, 1, 93, 1, 93, 3, 93, 2632, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2638, 8, 93, 1, 94, 1, 94, 3, 94, 2642, 8, 94, 1, 94, 3, 94, 2645, 8, 94, 1, 94, 3, 94, 2648, 8, 94, 1, 94, 3, 94, 2651, 8, 94, 1, 94, 3, 94, 2654, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2660, 8, 95, 1, 96, 1, 96, 3, 96, 2664, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2669, 8, 96, 1, 96, 1, 96, 3, 96, 2673, 8, 96, 1, 96, 3, 96, 2676, 8, 96, 1, 96, 3, 96, 2679, 8, 96, 1, 96, 3, 96, 2682, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2687, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2693, 8, 97, 1, 97, 1, 97, 3, 97, 2697, 8, 97, 1, 98, 1, 98, 3, 98, 2701, 8, 98, 1, 98, 1, 98, 3, 98, 2705, 8, 98, 1, 98, 1, 98, 4, 98, 2709, 8, 98, 11, 98, 12, 98, 2710, 3, 98, 2713, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2718, 8, 99, 1, 99, 1, 99, 4, 99, 2722, 8, 99, 11, 99, 12, 99, 2723, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2730, 8, 100, 1, 100, 1, 100, 3, 100, 2734, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2749, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2754, 8, 100, 1, 100, 3, 100, 2757, 8, 100, 3, 100, 2759, 8, 100, 1, 101, 3, 101, 2762, 8, 101, 1, 101, 1, 101, 3, 101, 2766, 8, 101, 1, 102, 1, 102, 3, 102, 2770, 8, 102, 1, 102, 3, 102, 2773, 8, 102, 1, 102, 3, 102, 2776, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2784, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2790, 8, 102, 3, 102, 2792, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2798, 8, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2803, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2808, 8, 104, 1, 104, 1, 104, 3, 104, 2812, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 2819, 8, 104, 10, 104, 12, 104, 2822, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 2830, 8, 105, 10, 105, 12, 105, 2833, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2871, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 4, 107, 2879, 8, 107, 11, 107, 12, 107, 2880, 3, 107, 2883, 8, 107, 1, 107, 3, 107, 2886, 8, 107, 1, 108, 1, 108, 3, 108, 2890, 8, 108, 1, 108, 1, 108, 3, 108, 2894, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 4, 109, 2902, 8, 109, 11, 109, 12, 109, 2903, 3, 109, 2906, 8, 109, 1, 109, 1, 109, 4, 109, 2910, 8, 109, 11, 109, 12, 109, 2911, 3, 109, 2914, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2921, 8, 110, 10, 110, 12, 110, 2924, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 2933, 8, 111, 10, 111, 12, 111, 2936, 9, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2949, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2954, 8, 114, 1, 114, 3, 114, 2957, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2964, 8, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2969, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2977, 8, 116, 3, 116, 2979, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2985, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2990, 8, 117, 1, 117, 1, 117, 3, 117, 2994, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2999, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3005, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3012, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3018, 8, 117, 3, 117, 3020, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3029, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3035, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3043, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3049, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3054, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3059, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3067, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3082, 8, 121, 3, 121, 3084, 8, 121, 1, 121, 1, 121, 3, 121, 3088, 8, 121, 1, 121, 1, 121, 3, 121, 3092, 8, 121, 1, 121, 3, 121, 3095, 8, 121, 1, 121, 3, 121, 3098, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3107, 8, 122, 1, 122, 3, 122, 3110, 8, 122, 1, 122, 3, 122, 3113, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3119, 8, 123, 1, 123, 1, 123, 5, 123, 3123, 8, 123, 10, 123, 12, 123, 3126, 9, 123, 1, 123, 3, 123, 3129, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3141, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3147, 8, 123, 1, 124, 3, 124, 3150, 8, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3155, 8, 124, 1, 124, 1, 124, 3, 124, 3159, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3166, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3176, 8, 124, 3, 124, 3178, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3202, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3214, 8, 128, 1, 128, 4, 128, 3217, 8, 128, 11, 128, 12, 128, 3218, 3, 128, 3221, 8, 128, 1, 128, 1, 128, 3, 128, 3225, 8, 128, 1, 128, 3, 128, 3228, 8, 128, 1, 128, 3, 128, 3231, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3241, 8, 128, 1, 128, 3, 128, 3244, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3254, 8, 128, 1, 128, 5, 128, 3257, 8, 128, 10, 128, 12, 128, 3260, 9, 128, 1, 128, 1, 128, 3, 128, 3264, 8, 128, 1, 128, 3, 128, 3267, 8, 128, 1, 128, 3, 128, 3270, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3278, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3284, 8, 129, 1, 130, 1, 130, 1, 130, 5, 130, 3289, 8, 130, 10, 130, 12, 130, 3292, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3299, 8, 131, 1, 131, 3, 131, 3302, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3313, 8, 133, 1, 134, 1, 134, 3, 134, 3317, 8, 134, 1, 134, 1, 134, 5, 134, 3321, 8, 134, 10, 134, 12, 134, 3324, 9, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3330, 8, 135, 1, 136, 3, 136, 3333, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3342, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3354, 8, 137, 10, 137, 12, 137, 3357, 9, 137, 3, 137, 3359, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3371, 8, 138, 10, 138, 12, 138, 3374, 9, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3384, 8, 139, 1, 139, 3, 139, 3387, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3397, 8, 140, 10, 140, 12, 140, 3400, 9, 140, 1, 141, 1, 141, 3, 141, 3404, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3415, 8, 141, 10, 141, 12, 141, 3418, 9, 141, 1, 141, 1, 141, 3, 141, 3422, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3435, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3442, 8, 141, 10, 141, 12, 141, 3445, 9, 141, 3, 141, 3447, 8, 141, 1, 141, 3, 141, 3450, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3457, 8, 141, 1, 141, 3, 141, 3460, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3472, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3478, 8, 141, 3, 141, 3480, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3486, 8, 142, 10, 142, 12, 142, 3489, 9, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 3, 143, 3496, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3504, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3516, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3521, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3532, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3543, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3551, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3557, 8, 148, 10, 148, 12, 148, 3560, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3566, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3573, 8, 149, 3, 149, 3575, 8, 149, 1, 149, 3, 149, 3578, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3583, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3588, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3605, 8, 151, 10, 151, 12, 151, 3608, 9, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3614, 8, 151, 10, 151, 12, 151, 3617, 9, 151, 3, 151, 3619, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3646, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3655, 8, 154, 1, 154, 3, 154, 3658, 8, 154, 1, 154, 1, 154, 3, 154, 3662, 8, 154, 1, 154, 1, 154, 3, 154, 3666, 8, 154, 1, 154, 1, 154, 3, 154, 3670, 8, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3675, 8, 154, 10, 154, 12, 154, 3678, 9, 154, 1, 154, 3, 154, 3681, 8, 154, 1, 154, 1, 154, 3, 154, 3685, 8, 154, 1, 154, 1, 154, 3, 154, 3689, 8, 154, 1, 154, 1, 154, 3, 154, 3693, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3698, 8, 154, 1, 154, 1, 154, 3, 154, 3702, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3707, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3713, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3718, 8, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3723, 8, 154, 10, 154, 12, 154, 3726, 9, 154, 1, 154, 3, 154, 3729, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3735, 8, 154, 1, 154, 1, 154, 3, 154, 3739, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3744, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3752, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3758, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3763, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3770, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3775, 8, 154, 1, 154, 1, 154, 3, 154, 3779, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3784, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3790, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3797, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3802, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3809, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3814, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3821, 8, 154, 1, 154, 1, 154, 3, 154, 3825, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3831, 8, 154, 10, 154, 12, 154, 3834, 9, 154, 1, 154, 3, 154, 3837, 8, 154, 3, 154, 3839, 8, 154, 1, 155, 3, 155, 3842, 8, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3847, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3857, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3872, 8, 156, 1, 156, 3, 156, 3875, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3883, 8, 156, 1, 157, 1, 157, 1, 157, 5, 157, 3888, 8, 157, 10, 157, 12, 157, 3891, 9, 157, 1, 158, 1, 158, 3, 158, 3895, 8, 158, 1, 159, 1, 159, 4, 159, 3899, 8, 159, 11, 159, 12, 159, 3900, 1, 160, 1, 160, 3, 160, 3905, 8, 160, 1, 160, 1, 160, 1, 160, 5, 160, 3910, 8, 160, 10, 160, 12, 160, 3913, 9, 160, 1, 160, 1, 160, 3, 160, 3917, 8, 160, 1, 160, 3, 160, 3920, 8, 160, 1, 161, 3, 161, 3923, 8, 161, 1, 161, 1, 161, 3, 161, 3927, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3936, 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, 1, 162, 1, 162, 3, 162, 3954, 8, 162, 1, 162, 3, 162, 3957, 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, 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, 1, 162, 1, 162, 3, 162, 3989, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3994, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4000, 8, 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, 4020, 8, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4025, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 3, 165, 4031, 8, 165, 1, 165, 3, 165, 4034, 8, 165, 1, 165, 1, 165, 3, 165, 4038, 8, 165, 1, 165, 1, 165, 3, 165, 4042, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4048, 8, 165, 1, 165, 3, 165, 4051, 8, 165, 1, 165, 1, 165, 3, 165, 4055, 8, 165, 1, 165, 1, 165, 3, 165, 4059, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4064, 8, 165, 1, 165, 3, 165, 4067, 8, 165, 1, 165, 3, 165, 4070, 8, 165, 1, 165, 3, 165, 4073, 8, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 4086, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4092, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4100, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 4105, 8, 169, 10, 169, 12, 169, 4108, 9, 169, 1, 169, 1, 169, 3, 169, 4112, 8, 169, 1, 169, 3, 169, 4115, 8, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4120, 8, 169, 10, 169, 12, 169, 4123, 9, 169, 3, 169, 4125, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4133, 8, 171, 1, 171, 3, 171, 4136, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 4141, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4148, 8, 172, 1, 172, 3, 172, 4151, 8, 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, 5, 172, 4169, 8, 172, 10, 172, 12, 172, 4172, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4183, 8, 172, 1, 173, 3, 173, 4186, 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 4192, 8, 173, 1, 173, 5, 173, 4195, 8, 173, 10, 173, 12, 173, 4198, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 4204, 8, 174, 10, 174, 12, 174, 4207, 9, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4214, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4219, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4225, 8, 175, 1, 175, 1, 175, 1, 175, 5, 175, 4230, 8, 175, 10, 175, 12, 175, 4233, 9, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4240, 8, 175, 1, 175, 3, 175, 4243, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4254, 8, 176, 10, 176, 12, 176, 4257, 9, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4270, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4276, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4284, 8, 177, 3, 177, 4286, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4292, 8, 179, 1, 179, 1, 179, 3, 179, 4296, 8, 179, 1, 179, 3, 179, 4299, 8, 179, 1, 179, 3, 179, 4302, 8, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4307, 8, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4312, 8, 179, 1, 179, 1, 179, 3, 179, 4316, 8, 179, 1, 179, 3, 179, 4319, 8, 179, 1, 179, 3, 179, 4322, 8, 179, 1, 179, 3, 179, 4325, 8, 179, 1, 179, 3, 179, 4328, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 5, 180, 4334, 8, 180, 10, 180, 12, 180, 4337, 9, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4347, 8, 181, 1, 181, 3, 181, 4350, 8, 181, 1, 181, 3, 181, 4353, 8, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4358, 8, 181, 1, 181, 3, 181, 4361, 8, 181, 1, 181, 1, 181, 3, 181, 4365, 8, 181, 1, 182, 1, 182, 3, 182, 4369, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4375, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4381, 8, 182, 10, 182, 12, 182, 4384, 9, 182, 3, 182, 4386, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4397, 8, 182, 10, 182, 12, 182, 4400, 9, 182, 1, 182, 1, 182, 3, 182, 4404, 8, 182, 3, 182, 4406, 8, 182, 1, 182, 4, 182, 4409, 8, 182, 11, 182, 12, 182, 4410, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4418, 8, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 3, 184, 4425, 8, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4432, 8, 185, 10, 185, 12, 185, 4435, 9, 185, 1, 186, 1, 186, 1, 186, 5, 186, 4440, 8, 186, 10, 186, 12, 186, 4443, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4450, 8, 187, 1, 188, 1, 188, 1, 188, 5, 188, 4455, 8, 188, 10, 188, 12, 188, 4458, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4465, 8, 189, 1, 190, 1, 190, 1, 190, 5, 190, 4470, 8, 190, 10, 190, 12, 190, 4473, 9, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4480, 8, 191, 1, 192, 1, 192, 3, 192, 4484, 8, 192, 1, 192, 1, 192, 3, 192, 4488, 8, 192, 3, 192, 4490, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 3, 193, 4496, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4501, 8, 193, 1, 194, 1, 194, 3, 194, 4505, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4512, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4517, 8, 195, 1, 196, 1, 196, 1, 196, 3, 196, 4522, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4527, 8, 196, 3, 196, 4529, 8, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 3, 198, 4539, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4549, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4565, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 4581, 8, 199, 10, 199, 12, 199, 4584, 9, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4595, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4602, 8, 199, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4617, 8, 202, 1, 202, 4, 202, 4620, 8, 202, 11, 202, 12, 202, 4621, 1, 202, 3, 202, 4625, 8, 202, 1, 203, 1, 203, 1, 203, 3, 203, 4630, 8, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4635, 8, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4640, 8, 203, 1, 203, 3, 203, 4643, 8, 203, 1, 203, 3, 203, 4646, 8, 203, 1, 204, 1, 204, 1, 204, 3, 204, 4651, 8, 204, 1, 204, 1, 204, 1, 204, 5, 204, 4656, 8, 204, 10, 204, 12, 204, 4659, 9, 204, 1, 204, 3, 204, 4662, 8, 204, 1, 205, 1, 205, 1, 205, 3, 205, 4667, 8, 205, 1, 205, 1, 205, 1, 205, 5, 205, 4672, 8, 205, 10, 205, 12, 205, 4675, 9, 205, 1, 205, 3, 205, 4678, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4684, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4693, 8, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 5, 207, 4700, 8, 207, 10, 207, 12, 207, 4703, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 4, 209, 4714, 8, 209, 11, 209, 12, 209, 4715, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4729, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4735, 8, 210, 1, 210, 1, 210, 3, 210, 4739, 8, 210, 3, 210, 4741, 8, 210, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 3, 212, 4748, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4761, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4768, 8, 212, 3, 212, 4770, 8, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 4784, 8, 214, 10, 214, 12, 214, 4787, 9, 214, 1, 214, 3, 214, 4790, 8, 214, 1, 214, 1, 214, 3, 214, 4794, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4799, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4804, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4809, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4814, 8, 214, 1, 214, 3, 214, 4817, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4829, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4882, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4891, 8, 216, 1, 216, 1, 216, 3, 216, 4895, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4904, 8, 216, 1, 216, 1, 216, 3, 216, 4908, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4917, 8, 216, 1, 216, 1, 216, 3, 216, 4921, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4926, 8, 216, 1, 216, 3, 216, 4929, 8, 216, 1, 216, 1, 216, 3, 216, 4933, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4938, 8, 216, 3, 216, 4940, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4949, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4954, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4965, 8, 216, 1, 216, 1, 216, 3, 216, 4969, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4983, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4991, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 5029, 8, 216, 3, 216, 5031, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 5050, 8, 217, 1, 217, 3, 217, 5053, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5080, 8, 218, 1, 218, 1, 218, 3, 218, 5084, 8, 218, 1, 218, 1, 218, 3, 218, 5088, 8, 218, 1, 218, 1, 218, 3, 218, 5092, 8, 218, 1, 218, 1, 218, 3, 218, 5096, 8, 218, 1, 218, 3, 218, 5099, 8, 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, 5114, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5121, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 5, 220, 5133, 8, 220, 10, 220, 12, 220, 5136, 9, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5148, 8, 221, 1, 222, 1, 222, 1, 222, 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, 3, 223, 5173, 8, 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, 5192, 8, 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, 5207, 8, 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, 5223, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5230, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5241, 8, 224, 1, 224, 3, 224, 5244, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 5261, 8, 225, 10, 225, 12, 225, 5264, 9, 225, 3, 225, 5266, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 5, 226, 5277, 8, 226, 10, 226, 12, 226, 5280, 9, 226, 1, 226, 3, 226, 5283, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5303, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5313, 8, 227, 10, 227, 12, 227, 5316, 9, 227, 1, 227, 3, 227, 5319, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5341, 8, 227, 1, 228, 1, 228, 3, 228, 5345, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5355, 8, 228, 1, 228, 1, 228, 3, 228, 5359, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5365, 8, 228, 1, 228, 1, 228, 3, 228, 5369, 8, 228, 5, 228, 5371, 8, 228, 10, 228, 12, 228, 5374, 9, 228, 1, 228, 3, 228, 5377, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 5384, 8, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5389, 8, 230, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5400, 8, 233, 1, 234, 1, 234, 3, 234, 5404, 8, 234, 1, 234, 3, 234, 5407, 8, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5412, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5418, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5429, 8, 234, 1, 234, 1, 234, 3, 234, 5433, 8, 234, 1, 234, 3, 234, 5436, 8, 234, 1, 234, 1, 234, 3, 234, 5440, 8, 234, 1, 234, 1, 234, 3, 234, 5444, 8, 234, 1, 234, 3, 234, 5447, 8, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5457, 8, 236, 1, 236, 3, 236, 5460, 8, 236, 1, 237, 1, 237, 3, 237, 5464, 8, 237, 1, 237, 5, 237, 5467, 8, 237, 10, 237, 12, 237, 5470, 9, 237, 1, 238, 1, 238, 1, 238, 3, 238, 5475, 8, 238, 1, 238, 3, 238, 5478, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5483, 8, 238, 1, 238, 3, 238, 5486, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5493, 8, 238, 3, 238, 5495, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5501, 8, 238, 1, 238, 1, 238, 3, 238, 5505, 8, 238, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5514, 8, 240, 1, 240, 4, 240, 5517, 8, 240, 11, 240, 12, 240, 5518, 3, 240, 5521, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5531, 8, 241, 1, 241, 3, 241, 5534, 8, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5539, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5547, 8, 242, 1, 242, 3, 242, 5550, 8, 242, 1, 242, 4, 242, 5553, 8, 242, 11, 242, 12, 242, 5554, 3, 242, 5557, 8, 242, 3, 242, 5559, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5565, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5582, 8, 246, 1, 246, 1, 246, 5, 246, 5586, 8, 246, 10, 246, 12, 246, 5589, 9, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5601, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5607, 8, 247, 1, 247, 1, 247, 3, 247, 5611, 8, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5616, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5646, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5661, 8, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5666, 8, 249, 1, 250, 1, 250, 3, 250, 5670, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 5683, 8, 251, 1, 251, 1, 251, 3, 251, 5687, 8, 251, 3, 251, 5689, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 5696, 8, 251, 10, 251, 12, 251, 5699, 9, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5704, 8, 251, 3, 251, 5706, 8, 251, 1, 252, 1, 252, 3, 252, 5710, 8, 252, 1, 252, 3, 252, 5713, 8, 252, 1, 252, 3, 252, 5716, 8, 252, 1, 252, 3, 252, 5719, 8, 252, 1, 252, 3, 252, 5722, 8, 252, 3, 252, 5724, 8, 252, 1, 252, 3, 252, 5727, 8, 252, 1, 253, 1, 253, 3, 253, 5731, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 5737, 8, 253, 10, 253, 12, 253, 5740, 9, 253, 1, 253, 1, 253, 3, 253, 5744, 8, 253, 1, 253, 3, 253, 5747, 8, 253, 1, 254, 1, 254, 1, 255, 1, 255, 3, 255, 5753, 8, 255, 1, 255, 1, 255, 3, 255, 5757, 8, 255, 1, 256, 1, 256, 3, 256, 5761, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5766, 8, 256, 3, 256, 5768, 8, 256, 1, 257, 1, 257, 3, 257, 5772, 8, 257, 1, 258, 1, 258, 3, 258, 5776, 8, 258, 1, 259, 1, 259, 1, 259, 5, 259, 5781, 8, 259, 10, 259, 12, 259, 5784, 9, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5789, 8, 260, 1, 260, 1, 260, 3, 260, 5793, 8, 260, 3, 260, 5795, 8, 260, 3, 260, 5797, 8, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5810, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 5816, 8, 262, 10, 262, 12, 262, 5819, 9, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5826, 8, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 5, 264, 5835, 8, 264, 10, 264, 12, 264, 5838, 9, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5846, 8, 265, 1, 266, 1, 266, 1, 266, 3, 266, 5851, 8, 266, 1, 266, 1, 266, 3, 266, 5855, 8, 266, 1, 266, 1, 266, 3, 266, 5859, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5866, 8, 266, 1, 266, 3, 266, 5869, 8, 266, 3, 266, 5871, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 5879, 8, 268, 1, 268, 1, 268, 3, 268, 5883, 8, 268, 1, 269, 3, 269, 5886, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5893, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5900, 8, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5905, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5912, 8, 269, 1, 269, 3, 269, 5915, 8, 269, 3, 269, 5917, 8, 269, 1, 269, 3, 269, 5920, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5926, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5931, 8, 270, 1, 270, 1, 270, 3, 270, 5935, 8, 270, 1, 271, 1, 271, 1, 271, 5, 271, 5940, 8, 271, 10, 271, 12, 271, 5943, 9, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 274, 3, 274, 5952, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5959, 8, 274, 1, 274, 3, 274, 5962, 8, 274, 1, 274, 3, 274, 5965, 8, 274, 1, 275, 1, 275, 3, 275, 5969, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 5980, 8, 275, 1, 275, 3, 275, 5983, 8, 275, 1, 275, 3, 275, 5986, 8, 275, 1, 275, 3, 275, 5989, 8, 275, 1, 276, 3, 276, 5992, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 5999, 8, 276, 1, 276, 3, 276, 6002, 8, 276, 1, 276, 3, 276, 6005, 8, 276, 1, 277, 1, 277, 1, 277, 5, 277, 6010, 8, 277, 10, 277, 12, 277, 6013, 9, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6024, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6031, 8, 278, 3, 278, 6033, 8, 278, 1, 279, 1, 279, 1, 279, 3, 279, 6038, 8, 279, 1, 279, 1, 279, 1, 279, 5, 279, 6043, 8, 279, 10, 279, 12, 279, 6046, 9, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6051, 8, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 3, 280, 6058, 8, 280, 1, 281, 1, 281, 1, 281, 3, 281, 6063, 8, 281, 1, 281, 1, 281, 1, 282, 3, 282, 6068, 8, 282, 1, 282, 1, 282, 3, 282, 6072, 8, 282, 1, 282, 1, 282, 3, 282, 6076, 8, 282, 1, 282, 1, 282, 3, 282, 6080, 8, 282, 3, 282, 6082, 8, 282, 1, 283, 1, 283, 3, 283, 6086, 8, 283, 1, 284, 1, 284, 3, 284, 6090, 8, 284, 1, 284, 3, 284, 6093, 8, 284, 1, 284, 3, 284, 6096, 8, 284, 3, 284, 6098, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6108, 8, 284, 3, 284, 6110, 8, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6115, 8, 284, 5, 284, 6117, 8, 284, 10, 284, 12, 284, 6120, 9, 284, 1, 285, 1, 285, 3, 285, 6124, 8, 285, 1, 286, 1, 286, 3, 286, 6128, 8, 286, 1, 286, 1, 286, 1, 286, 5, 286, 6133, 8, 286, 10, 286, 12, 286, 6136, 9, 286, 1, 287, 1, 287, 3, 287, 6140, 8, 287, 1, 287, 1, 287, 3, 287, 6144, 8, 287, 1, 287, 3, 287, 6147, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6153, 8, 287, 1, 287, 3, 287, 6156, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6175, 8, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 3, 290, 6182, 8, 290, 1, 290, 1, 290, 3, 290, 6186, 8, 290, 1, 291, 3, 291, 6189, 8, 291, 1, 291, 1, 291, 3, 291, 6193, 8, 291, 1, 291, 1, 291, 3, 291, 6197, 8, 291, 1, 291, 3, 291, 6200, 8, 291, 1, 291, 3, 291, 6203, 8, 291, 1, 292, 1, 292, 1, 292, 3, 292, 6208, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 5, 293, 6215, 8, 293, 10, 293, 12, 293, 6218, 9, 293, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6224, 8, 294, 1, 294, 1, 294, 3, 294, 6228, 8, 294, 1, 295, 1, 295, 3, 295, 6232, 8, 295, 1, 295, 1, 295, 3, 295, 6236, 8, 295, 1, 295, 3, 295, 6239, 8, 295, 3, 295, 6241, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6246, 8, 296, 1, 296, 1, 296, 3, 296, 6250, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6255, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6261, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6268, 8, 298, 1, 299, 1, 299, 1, 299, 3, 299, 6273, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6278, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 5, 301, 6285, 8, 301, 10, 301, 12, 301, 6288, 9, 301, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6294, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 5, 302, 6300, 8, 302, 10, 302, 12, 302, 6303, 9, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6313, 8, 302, 1, 303, 1, 303, 1, 303, 3, 303, 6318, 8, 303, 1, 303, 1, 303, 3, 303, 6322, 8, 303, 1, 303, 3, 303, 6325, 8, 303, 1, 303, 1, 303, 3, 303, 6329, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6334, 8, 303, 4, 303, 6336, 8, 303, 11, 303, 12, 303, 6337, 1, 303, 1, 303, 1, 303, 3, 303, 6343, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6349, 8, 304, 10, 304, 12, 304, 6352, 9, 304, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 5, 306, 6360, 8, 306, 10, 306, 12, 306, 6363, 9, 306, 1, 307, 1, 307, 3, 307, 6367, 8, 307, 1, 307, 1, 307, 3, 307, 6371, 8, 307, 1, 307, 3, 307, 6374, 8, 307, 1, 307, 3, 307, 6377, 8, 307, 3, 307, 6379, 8, 307, 1, 307, 3, 307, 6382, 8, 307, 1, 307, 3, 307, 6385, 8, 307, 1, 307, 3, 307, 6388, 8, 307, 1, 307, 1, 307, 3, 307, 6392, 8, 307, 1, 307, 1, 307, 3, 307, 6396, 8, 307, 1, 307, 1, 307, 3, 307, 6400, 8, 307, 3, 307, 6402, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6411, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6416, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6422, 8, 307, 1, 307, 1, 307, 3, 307, 6426, 8, 307, 3, 307, 6428, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6435, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6440, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 5, 307, 6446, 8, 307, 10, 307, 12, 307, 6449, 9, 307, 1, 308, 3, 308, 6452, 8, 308, 1, 308, 1, 308, 1, 308, 1, 308, 1, 308, 3, 308, 6459, 8, 308, 1, 309, 1, 309, 1, 309, 3, 309, 6464, 8, 309, 1, 309, 3, 309, 6467, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6473, 8, 309, 1, 310, 1, 310, 3, 310, 6477, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6483, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6492, 8, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6498, 8, 312, 3, 312, 6500, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 6505, 8, 313, 1, 313, 3, 313, 6508, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6517, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6524, 8, 313, 3, 313, 6526, 8, 313, 1, 314, 1, 314, 1, 314, 5, 314, 6531, 8, 314, 10, 314, 12, 314, 6534, 9, 314, 1, 315, 1, 315, 3, 315, 6538, 8, 315, 1, 315, 3, 315, 6541, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 6551, 8, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 5, 317, 6560, 8, 317, 10, 317, 12, 317, 6563, 9, 317, 1, 317, 1, 317, 3, 317, 6567, 8, 317, 1, 317, 1, 317, 3, 317, 6571, 8, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6579, 8, 318, 1, 319, 1, 319, 1, 319, 1, 320, 1, 320, 1, 320, 1, 320, 1, 320, 3, 320, 6589, 8, 320, 1, 321, 1, 321, 1, 321, 5, 321, 6594, 8, 321, 10, 321, 12, 321, 6597, 9, 321, 1, 322, 1, 322, 1, 322, 3, 322, 6602, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 6611, 8, 323, 10, 323, 12, 323, 6614, 9, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6619, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 6627, 8, 323, 10, 323, 12, 323, 6630, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6638, 8, 324, 1, 324, 1, 324, 3, 324, 6642, 8, 324, 1, 324, 4, 324, 6645, 8, 324, 11, 324, 12, 324, 6646, 3, 324, 6649, 8, 324, 1, 324, 1, 324, 3, 324, 6653, 8, 324, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6661, 8, 325, 1, 326, 3, 326, 6664, 8, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6669, 8, 326, 1, 326, 5, 326, 6672, 8, 326, 10, 326, 12, 326, 6675, 9, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6681, 8, 326, 3, 326, 6683, 8, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6689, 8, 326, 1, 327, 1, 327, 3, 327, 6693, 8, 327, 1, 327, 3, 327, 6696, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6701, 8, 327, 1, 327, 3, 327, 6704, 8, 327, 3, 327, 6706, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 3, 328, 6712, 8, 328, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6721, 8, 329, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6727, 8, 329, 1, 329, 3, 329, 6730, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 331, 1, 331, 3, 331, 6738, 8, 331, 1, 331, 3, 331, 6741, 8, 331, 1, 332, 1, 332, 3, 332, 6745, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6751, 8, 332, 3, 332, 6753, 8, 332, 1, 332, 3, 332, 6756, 8, 332, 1, 333, 1, 333, 3, 333, 6760, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 6765, 8, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6772, 8, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6779, 8, 334, 3, 334, 6781, 8, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6787, 8, 334, 3, 334, 6789, 8, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6794, 8, 334, 3, 334, 6796, 8, 334, 1, 335, 1, 335, 3, 335, 6800, 8, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 338, 3, 338, 6809, 8, 338, 1, 338, 1, 338, 3, 338, 6813, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 6821, 8, 338, 10, 338, 12, 338, 6824, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6837, 8, 339, 1, 339, 3, 339, 6840, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6848, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 5, 339, 6855, 8, 339, 10, 339, 12, 339, 6858, 9, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6863, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6868, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6876, 8, 339, 3, 339, 6878, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6883, 8, 339, 1, 339, 1, 339, 3, 339, 6887, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6892, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6897, 8, 339, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6903, 8, 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, 5, 340, 6919, 8, 340, 10, 340, 12, 340, 6922, 9, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6930, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6945, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6950, 8, 341, 1, 341, 3, 341, 6953, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6959, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6964, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6977, 8, 341, 1, 341, 4, 341, 6980, 8, 341, 11, 341, 12, 341, 6981, 1, 341, 1, 341, 3, 341, 6986, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6993, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7012, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7024, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7029, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7037, 8, 341, 5, 341, 7039, 8, 341, 10, 341, 12, 341, 7042, 9, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7050, 8, 342, 1, 342, 3, 342, 7053, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7058, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7063, 8, 342, 1, 342, 3, 342, 7066, 8, 342, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7077, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7085, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7090, 8, 343, 3, 343, 7092, 8, 343, 1, 343, 3, 343, 7095, 8, 343, 1, 344, 1, 344, 3, 344, 7099, 8, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7110, 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, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7131, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7139, 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, 7152, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7162, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7168, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7174, 8, 345, 1, 345, 3, 345, 7177, 8, 345, 1, 345, 3, 345, 7180, 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, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7206, 8, 345, 3, 345, 7208, 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, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7229, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7239, 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, 7252, 8, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7257, 8, 345, 1, 345, 1, 345, 3, 345, 7261, 8, 345, 3, 345, 7263, 8, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7275, 8, 345, 1, 346, 1, 346, 1, 346, 5, 346, 7280, 8, 346, 10, 346, 12, 346, 7283, 9, 346, 1, 347, 1, 347, 1, 347, 3, 347, 7288, 8, 347, 1, 348, 1, 348, 1, 349, 1, 349, 3, 349, 7294, 8, 349, 1, 349, 1, 349, 3, 349, 7298, 8, 349, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 5, 351, 7307, 8, 351, 10, 351, 12, 351, 7310, 9, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 3, 353, 7319, 8, 353, 1, 354, 1, 354, 3, 354, 7323, 8, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7328, 8, 354, 1, 354, 3, 354, 7331, 8, 354, 1, 354, 3, 354, 7334, 8, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7343, 8, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7354, 8, 355, 3, 355, 7356, 8, 355, 1, 356, 1, 356, 3, 356, 7360, 8, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7365, 8, 356, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 7374, 8, 357, 1, 358, 1, 358, 1, 358, 3, 358, 7379, 8, 358, 1, 358, 1, 358, 1, 359, 1, 359, 1, 360, 1, 360, 3, 360, 7387, 8, 360, 1, 361, 1, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7397, 8, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7405, 8, 363, 1, 364, 1, 364, 3, 364, 7409, 8, 364, 1, 364, 3, 364, 7412, 8, 364, 1, 365, 1, 365, 1, 365, 5, 365, 7417, 8, 365, 10, 365, 12, 365, 7420, 9, 365, 1, 366, 1, 366, 1, 366, 1, 366, 1, 366, 3, 366, 7427, 8, 366, 1, 367, 1, 367, 3, 367, 7431, 8, 367, 1, 368, 1, 368, 1, 368, 5, 368, 7436, 8, 368, 10, 368, 12, 368, 7439, 9, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 3, 369, 7446, 8, 369, 3, 369, 7448, 8, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 5, 370, 7455, 8, 370, 10, 370, 12, 370, 7458, 9, 370, 3, 370, 7460, 8, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7472, 8, 371, 1, 372, 1, 372, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7481, 8, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7488, 8, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7497, 8, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 3, 375, 7507, 8, 375, 1, 375, 1, 375, 1, 375, 3, 375, 7512, 8, 375, 1, 375, 1, 375, 3, 375, 7516, 8, 375, 3, 375, 7518, 8, 375, 1, 375, 3, 375, 7521, 8, 375, 1, 376, 4, 376, 7524, 8, 376, 11, 376, 12, 376, 7525, 1, 377, 5, 377, 7529, 8, 377, 10, 377, 12, 377, 7532, 9, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7537, 8, 378, 10, 378, 12, 378, 7540, 9, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 3, 379, 7547, 8, 379, 1, 379, 3, 379, 7550, 8, 379, 1, 380, 1, 380, 1, 380, 5, 380, 7555, 8, 380, 10, 380, 12, 380, 7558, 9, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7563, 8, 381, 10, 381, 12, 381, 7566, 9, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7571, 8, 382, 10, 382, 12, 382, 7574, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7579, 8, 383, 10, 383, 12, 383, 7582, 9, 383, 1, 384, 1, 384, 1, 385, 1, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 3, 390, 7598, 8, 390, 1, 391, 1, 391, 1, 391, 5, 391, 7603, 8, 391, 10, 391, 12, 391, 7606, 9, 391, 1, 392, 1, 392, 1, 392, 5, 392, 7611, 8, 392, 10, 392, 12, 392, 7614, 9, 392, 1, 393, 1, 393, 1, 394, 1, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7630, 8, 398, 1, 399, 1, 399, 1, 399, 1, 399, 3, 399, 7636, 8, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7642, 8, 400, 1, 401, 1, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7650, 8, 402, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7656, 8, 403, 1, 404, 1, 404, 1, 404, 3, 404, 7661, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 5, 405, 7667, 8, 405, 10, 405, 12, 405, 7670, 9, 405, 1, 405, 1, 405, 3, 405, 7674, 8, 405, 1, 406, 3, 406, 7677, 8, 406, 1, 406, 1, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7686, 8, 407, 1, 408, 1, 408, 1, 408, 5, 408, 7691, 8, 408, 10, 408, 12, 408, 7694, 9, 408, 1, 409, 1, 409, 3, 409, 7698, 8, 409, 1, 410, 1, 410, 3, 410, 7702, 8, 410, 1, 411, 1, 411, 1, 411, 3, 411, 7707, 8, 411, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7713, 8, 412, 1, 413, 1, 413, 1, 413, 3, 413, 7718, 8, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 7726, 8, 413, 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, 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, 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, 1, 415, 1, 415, 1, 415, 3, 415, 7781, 8, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 418, 3, 418, 7788, 8, 418, 1, 418, 1, 418, 1, 418, 1, 418, 4, 418, 7794, 8, 418, 11, 418, 12, 418, 7795, 3, 418, 7798, 8, 418, 3, 418, 7800, 8, 418, 1, 418, 1, 418, 5, 418, 7804, 8, 418, 10, 418, 12, 418, 7807, 9, 418, 1, 418, 3, 418, 7810, 8, 418, 1, 418, 1, 418, 3, 418, 7814, 8, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7825, 8, 420, 1, 420, 3, 420, 7828, 8, 420, 1, 420, 1, 420, 3, 420, 7832, 8, 420, 1, 420, 1, 420, 3, 420, 7836, 8, 420, 1, 420, 1, 420, 3, 420, 7840, 8, 420, 1, 420, 3, 420, 7843, 8, 420, 1, 420, 3, 420, 7846, 8, 420, 1, 420, 3, 420, 7849, 8, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 5, 420, 7856, 8, 420, 10, 420, 12, 420, 7859, 9, 420, 1, 420, 1, 420, 3, 420, 7863, 8, 420, 1, 420, 1, 420, 3, 420, 7867, 8, 420, 1, 420, 1, 420, 1, 421, 1, 421, 1, 421, 1, 422, 1, 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, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 3, 423, 7900, 8, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7910, 8, 425, 1, 425, 1, 425, 3, 425, 7914, 8, 425, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7920, 8, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7925, 8, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 3, 427, 7934, 8, 427, 1, 427, 1, 427, 1, 427, 1, 427, 5, 427, 7940, 8, 427, 10, 427, 12, 427, 7943, 9, 427, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 3, 429, 7953, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7959, 8, 429, 10, 429, 12, 429, 7962, 9, 429, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 7968, 8, 430, 10, 430, 12, 430, 7971, 9, 430, 1, 430, 1, 430, 1, 430, 1, 430, 5, 430, 7977, 8, 430, 10, 430, 12, 430, 7980, 9, 430, 5, 430, 7982, 8, 430, 10, 430, 12, 430, 7985, 9, 430, 1, 430, 3, 430, 7988, 8, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 5, 431, 7996, 8, 431, 10, 431, 12, 431, 7999, 9, 431, 1, 432, 1, 432, 3, 432, 8003, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 8009, 8, 432, 10, 432, 12, 432, 8012, 9, 432, 4, 432, 8014, 8, 432, 11, 432, 12, 432, 8015, 1, 432, 3, 432, 8019, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 3, 433, 8026, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 3, 433, 8032, 8, 433, 1, 433, 1, 433, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8040, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8048, 8, 434, 1, 434, 3, 434, 8051, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 434, 3, 434, 8058, 8, 434, 3, 434, 8060, 8, 434, 1, 435, 3, 435, 8063, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 8069, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 3, 436, 8078, 8, 436, 1, 436, 1, 436, 3, 436, 8082, 8, 436, 1, 436, 1, 436, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8096, 8, 437, 1, 437, 3, 437, 8099, 8, 437, 3, 437, 8101, 8, 437, 1, 437, 1, 437, 1, 438, 1, 438, 3, 438, 8107, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 4, 438, 8115, 8, 438, 11, 438, 12, 438, 8116, 3, 438, 8119, 8, 438, 3, 438, 8121, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 5, 438, 8127, 8, 438, 10, 438, 12, 438, 8130, 9, 438, 3, 438, 8132, 8, 438, 1, 438, 3, 438, 8135, 8, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8145, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 5, 441, 8151, 8, 441, 10, 441, 12, 441, 8154, 9, 441, 1, 441, 1, 441, 1, 441, 3, 441, 8159, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 3, 442, 8165, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 3, 443, 8172, 8, 443, 1, 443, 1, 443, 3, 443, 8176, 8, 443, 1, 443, 1, 443, 3, 443, 8180, 8, 443, 1, 443, 3, 443, 8183, 8, 443, 1, 443, 3, 443, 8186, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 3, 444, 8192, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 3, 445, 8199, 8, 445, 1, 445, 3, 445, 8202, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8210, 8, 445, 3, 445, 8212, 8, 445, 1, 445, 1, 445, 1, 445, 1, 445, 1, 445, 5, 445, 8219, 8, 445, 10, 445, 12, 445, 8222, 9, 445, 1, 445, 1, 445, 3, 445, 8226, 8, 445, 3, 445, 8228, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 1, 446, 3, 446, 8235, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8241, 8, 447, 1, 447, 3, 447, 8244, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 8256, 8, 448, 1, 448, 1, 448, 1, 448, 1, 448, 1, 448, 3, 448, 8263, 8, 448, 3, 448, 8265, 8, 448, 1, 449, 1, 449, 3, 449, 8269, 8, 449, 1, 449, 1, 449, 1, 449, 1, 450, 3, 450, 8275, 8, 450, 1, 450, 1, 450, 1, 450, 3, 450, 8280, 8, 450, 1, 450, 1, 450, 3, 450, 8284, 8, 450, 1, 450, 3, 450, 8287, 8, 450, 1, 450, 3, 450, 8290, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 4, 450, 8297, 8, 450, 11, 450, 12, 450, 8298, 1, 451, 3, 451, 8302, 8, 451, 1, 451, 1, 451, 3, 451, 8306, 8, 451, 1, 451, 1, 451, 3, 451, 8310, 8, 451, 3, 451, 8312, 8, 451, 1, 451, 3, 451, 8315, 8, 451, 1, 451, 3, 451, 8318, 8, 451, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8324, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8331, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8338, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8344, 8, 452, 3, 452, 8346, 8, 452, 1, 453, 1, 453, 3, 453, 8350, 8, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8355, 8, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 5, 454, 8371, 8, 454, 10, 454, 12, 454, 8374, 9, 454, 1, 454, 1, 454, 4, 454, 8378, 8, 454, 11, 454, 12, 454, 8379, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 5, 455, 8387, 8, 455, 10, 455, 12, 455, 8390, 9, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8396, 8, 455, 1, 456, 1, 456, 3, 456, 8400, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 3, 459, 8412, 8, 459, 1, 459, 3, 459, 8415, 8, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 3, 460, 8428, 8, 460, 1, 460, 3, 460, 8431, 8, 460, 1, 461, 1, 461, 3, 461, 8435, 8, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 5, 462, 8442, 8, 462, 10, 462, 12, 462, 8445, 9, 462, 1, 462, 1, 462, 5, 462, 8449, 8, 462, 10, 462, 12, 462, 8452, 9, 462, 4, 462, 8454, 8, 462, 11, 462, 12, 462, 8455, 1, 463, 1, 463, 1, 463, 3, 463, 8461, 8, 463, 1, 464, 1, 464, 3, 464, 8465, 8, 464, 1, 465, 3, 465, 8468, 8, 465, 1, 465, 3, 465, 8471, 8, 465, 1, 465, 3, 465, 8474, 8, 465, 1, 465, 3, 465, 8477, 8, 465, 1, 465, 3, 465, 8480, 8, 465, 1, 465, 1, 465, 3, 465, 8484, 8, 465, 1, 465, 3, 465, 8487, 8, 465, 1, 465, 0, 3, 676, 680, 682, 466, 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, 0, 118, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 158, 158, 277, 277, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 2, 0, 213, 213, 254, 254, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 571, 571, 573, 573, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9923, 0, 935, 1, 0, 0, 0, 2, 940, 1, 0, 0, 0, 4, 1064, 1, 0, 0, 0, 6, 1066, 1, 0, 0, 0, 8, 1069, 1, 0, 0, 0, 10, 1119, 1, 0, 0, 0, 12, 1129, 1, 0, 0, 0, 14, 1131, 1, 0, 0, 0, 16, 1143, 1, 0, 0, 0, 18, 1155, 1, 0, 0, 0, 20, 1166, 1, 0, 0, 0, 22, 1200, 1, 0, 0, 0, 24, 1244, 1, 0, 0, 0, 26, 1246, 1, 0, 0, 0, 28, 1258, 1, 0, 0, 0, 30, 1265, 1, 0, 0, 0, 32, 1284, 1, 0, 0, 0, 34, 1292, 1, 0, 0, 0, 36, 1294, 1, 0, 0, 0, 38, 1308, 1, 0, 0, 0, 40, 1312, 1, 0, 0, 0, 42, 1349, 1, 0, 0, 0, 44, 1351, 1, 0, 0, 0, 46, 1359, 1, 0, 0, 0, 48, 1369, 1, 0, 0, 0, 50, 1376, 1, 0, 0, 0, 52, 1384, 1, 0, 0, 0, 54, 1390, 1, 0, 0, 0, 56, 1406, 1, 0, 0, 0, 58, 1410, 1, 0, 0, 0, 60, 1412, 1, 0, 0, 0, 62, 1424, 1, 0, 0, 0, 64, 1429, 1, 0, 0, 0, 66, 1434, 1, 0, 0, 0, 68, 1436, 1, 0, 0, 0, 70, 1448, 1, 0, 0, 0, 72, 1456, 1, 0, 0, 0, 74, 1458, 1, 0, 0, 0, 76, 1582, 1, 0, 0, 0, 78, 1584, 1, 0, 0, 0, 80, 1601, 1, 0, 0, 0, 82, 1603, 1, 0, 0, 0, 84, 1617, 1, 0, 0, 0, 86, 1619, 1, 0, 0, 0, 88, 1633, 1, 0, 0, 0, 90, 1635, 1, 0, 0, 0, 92, 1872, 1, 0, 0, 0, 94, 1879, 1, 0, 0, 0, 96, 1881, 1, 0, 0, 0, 98, 1883, 1, 0, 0, 0, 100, 1886, 1, 0, 0, 0, 102, 1897, 1, 0, 0, 0, 104, 1900, 1, 0, 0, 0, 106, 1929, 1, 0, 0, 0, 108, 1931, 1, 0, 0, 0, 110, 1972, 1, 0, 0, 0, 112, 1974, 1, 0, 0, 0, 114, 2028, 1, 0, 0, 0, 116, 2069, 1, 0, 0, 0, 118, 2071, 1, 0, 0, 0, 120, 2088, 1, 0, 0, 0, 122, 2169, 1, 0, 0, 0, 124, 2171, 1, 0, 0, 0, 126, 2182, 1, 0, 0, 0, 128, 2205, 1, 0, 0, 0, 130, 2223, 1, 0, 0, 0, 132, 2225, 1, 0, 0, 0, 134, 2260, 1, 0, 0, 0, 136, 2353, 1, 0, 0, 0, 138, 2358, 1, 0, 0, 0, 140, 2360, 1, 0, 0, 0, 142, 2458, 1, 0, 0, 0, 144, 2460, 1, 0, 0, 0, 146, 2464, 1, 0, 0, 0, 148, 2475, 1, 0, 0, 0, 150, 2483, 1, 0, 0, 0, 152, 2486, 1, 0, 0, 0, 154, 2489, 1, 0, 0, 0, 156, 2507, 1, 0, 0, 0, 158, 2509, 1, 0, 0, 0, 160, 2513, 1, 0, 0, 0, 162, 2526, 1, 0, 0, 0, 164, 2528, 1, 0, 0, 0, 166, 2533, 1, 0, 0, 0, 168, 2553, 1, 0, 0, 0, 170, 2561, 1, 0, 0, 0, 172, 2568, 1, 0, 0, 0, 174, 2570, 1, 0, 0, 0, 176, 2579, 1, 0, 0, 0, 178, 2582, 1, 0, 0, 0, 180, 2586, 1, 0, 0, 0, 182, 2590, 1, 0, 0, 0, 184, 2615, 1, 0, 0, 0, 186, 2625, 1, 0, 0, 0, 188, 2639, 1, 0, 0, 0, 190, 2655, 1, 0, 0, 0, 192, 2661, 1, 0, 0, 0, 194, 2688, 1, 0, 0, 0, 196, 2698, 1, 0, 0, 0, 198, 2714, 1, 0, 0, 0, 200, 2758, 1, 0, 0, 0, 202, 2765, 1, 0, 0, 0, 204, 2767, 1, 0, 0, 0, 206, 2793, 1, 0, 0, 0, 208, 2804, 1, 0, 0, 0, 210, 2823, 1, 0, 0, 0, 212, 2834, 1, 0, 0, 0, 214, 2872, 1, 0, 0, 0, 216, 2893, 1, 0, 0, 0, 218, 2895, 1, 0, 0, 0, 220, 2915, 1, 0, 0, 0, 222, 2927, 1, 0, 0, 0, 224, 2939, 1, 0, 0, 0, 226, 2942, 1, 0, 0, 0, 228, 2945, 1, 0, 0, 0, 230, 2965, 1, 0, 0, 0, 232, 2970, 1, 0, 0, 0, 234, 3019, 1, 0, 0, 0, 236, 3021, 1, 0, 0, 0, 238, 3044, 1, 0, 0, 0, 240, 3060, 1, 0, 0, 0, 242, 3072, 1, 0, 0, 0, 244, 3099, 1, 0, 0, 0, 246, 3114, 1, 0, 0, 0, 248, 3177, 1, 0, 0, 0, 250, 3179, 1, 0, 0, 0, 252, 3184, 1, 0, 0, 0, 254, 3190, 1, 0, 0, 0, 256, 3277, 1, 0, 0, 0, 258, 3283, 1, 0, 0, 0, 260, 3285, 1, 0, 0, 0, 262, 3301, 1, 0, 0, 0, 264, 3303, 1, 0, 0, 0, 266, 3312, 1, 0, 0, 0, 268, 3316, 1, 0, 0, 0, 270, 3329, 1, 0, 0, 0, 272, 3341, 1, 0, 0, 0, 274, 3343, 1, 0, 0, 0, 276, 3365, 1, 0, 0, 0, 278, 3377, 1, 0, 0, 0, 280, 3388, 1, 0, 0, 0, 282, 3479, 1, 0, 0, 0, 284, 3481, 1, 0, 0, 0, 286, 3492, 1, 0, 0, 0, 288, 3503, 1, 0, 0, 0, 290, 3505, 1, 0, 0, 0, 292, 3531, 1, 0, 0, 0, 294, 3533, 1, 0, 0, 0, 296, 3537, 1, 0, 0, 0, 298, 3587, 1, 0, 0, 0, 300, 3589, 1, 0, 0, 0, 302, 3595, 1, 0, 0, 0, 304, 3620, 1, 0, 0, 0, 306, 3624, 1, 0, 0, 0, 308, 3838, 1, 0, 0, 0, 310, 3856, 1, 0, 0, 0, 312, 3882, 1, 0, 0, 0, 314, 3884, 1, 0, 0, 0, 316, 3892, 1, 0, 0, 0, 318, 3898, 1, 0, 0, 0, 320, 3902, 1, 0, 0, 0, 322, 3922, 1, 0, 0, 0, 324, 3928, 1, 0, 0, 0, 326, 3995, 1, 0, 0, 0, 328, 4026, 1, 0, 0, 0, 330, 4072, 1, 0, 0, 0, 332, 4074, 1, 0, 0, 0, 334, 4076, 1, 0, 0, 0, 336, 4087, 1, 0, 0, 0, 338, 4124, 1, 0, 0, 0, 340, 4126, 1, 0, 0, 0, 342, 4132, 1, 0, 0, 0, 344, 4182, 1, 0, 0, 0, 346, 4185, 1, 0, 0, 0, 348, 4199, 1, 0, 0, 0, 350, 4220, 1, 0, 0, 0, 352, 4244, 1, 0, 0, 0, 354, 4285, 1, 0, 0, 0, 356, 4287, 1, 0, 0, 0, 358, 4289, 1, 0, 0, 0, 360, 4329, 1, 0, 0, 0, 362, 4346, 1, 0, 0, 0, 364, 4366, 1, 0, 0, 0, 366, 4419, 1, 0, 0, 0, 368, 4422, 1, 0, 0, 0, 370, 4428, 1, 0, 0, 0, 372, 4436, 1, 0, 0, 0, 374, 4449, 1, 0, 0, 0, 376, 4451, 1, 0, 0, 0, 378, 4464, 1, 0, 0, 0, 380, 4466, 1, 0, 0, 0, 382, 4479, 1, 0, 0, 0, 384, 4489, 1, 0, 0, 0, 386, 4500, 1, 0, 0, 0, 388, 4511, 1, 0, 0, 0, 390, 4513, 1, 0, 0, 0, 392, 4518, 1, 0, 0, 0, 394, 4532, 1, 0, 0, 0, 396, 4564, 1, 0, 0, 0, 398, 4601, 1, 0, 0, 0, 400, 4603, 1, 0, 0, 0, 402, 4606, 1, 0, 0, 0, 404, 4609, 1, 0, 0, 0, 406, 4626, 1, 0, 0, 0, 408, 4647, 1, 0, 0, 0, 410, 4663, 1, 0, 0, 0, 412, 4679, 1, 0, 0, 0, 414, 4701, 1, 0, 0, 0, 416, 4706, 1, 0, 0, 0, 418, 4709, 1, 0, 0, 0, 420, 4717, 1, 0, 0, 0, 422, 4742, 1, 0, 0, 0, 424, 4745, 1, 0, 0, 0, 426, 4773, 1, 0, 0, 0, 428, 4778, 1, 0, 0, 0, 430, 4818, 1, 0, 0, 0, 432, 5030, 1, 0, 0, 0, 434, 5032, 1, 0, 0, 0, 436, 5120, 1, 0, 0, 0, 438, 5122, 1, 0, 0, 0, 440, 5128, 1, 0, 0, 0, 442, 5139, 1, 0, 0, 0, 444, 5149, 1, 0, 0, 0, 446, 5229, 1, 0, 0, 0, 448, 5231, 1, 0, 0, 0, 450, 5245, 1, 0, 0, 0, 452, 5267, 1, 0, 0, 0, 454, 5340, 1, 0, 0, 0, 456, 5342, 1, 0, 0, 0, 458, 5383, 1, 0, 0, 0, 460, 5385, 1, 0, 0, 0, 462, 5390, 1, 0, 0, 0, 464, 5393, 1, 0, 0, 0, 466, 5396, 1, 0, 0, 0, 468, 5446, 1, 0, 0, 0, 470, 5448, 1, 0, 0, 0, 472, 5459, 1, 0, 0, 0, 474, 5461, 1, 0, 0, 0, 476, 5471, 1, 0, 0, 0, 478, 5506, 1, 0, 0, 0, 480, 5509, 1, 0, 0, 0, 482, 5530, 1, 0, 0, 0, 484, 5540, 1, 0, 0, 0, 486, 5560, 1, 0, 0, 0, 488, 5566, 1, 0, 0, 0, 490, 5572, 1, 0, 0, 0, 492, 5577, 1, 0, 0, 0, 494, 5590, 1, 0, 0, 0, 496, 5617, 1, 0, 0, 0, 498, 5665, 1, 0, 0, 0, 500, 5667, 1, 0, 0, 0, 502, 5705, 1, 0, 0, 0, 504, 5707, 1, 0, 0, 0, 506, 5728, 1, 0, 0, 0, 508, 5748, 1, 0, 0, 0, 510, 5752, 1, 0, 0, 0, 512, 5767, 1, 0, 0, 0, 514, 5769, 1, 0, 0, 0, 516, 5773, 1, 0, 0, 0, 518, 5777, 1, 0, 0, 0, 520, 5785, 1, 0, 0, 0, 522, 5809, 1, 0, 0, 0, 524, 5811, 1, 0, 0, 0, 526, 5822, 1, 0, 0, 0, 528, 5830, 1, 0, 0, 0, 530, 5845, 1, 0, 0, 0, 532, 5870, 1, 0, 0, 0, 534, 5872, 1, 0, 0, 0, 536, 5876, 1, 0, 0, 0, 538, 5885, 1, 0, 0, 0, 540, 5925, 1, 0, 0, 0, 542, 5936, 1, 0, 0, 0, 544, 5944, 1, 0, 0, 0, 546, 5947, 1, 0, 0, 0, 548, 5951, 1, 0, 0, 0, 550, 5966, 1, 0, 0, 0, 552, 5991, 1, 0, 0, 0, 554, 6006, 1, 0, 0, 0, 556, 6032, 1, 0, 0, 0, 558, 6034, 1, 0, 0, 0, 560, 6057, 1, 0, 0, 0, 562, 6059, 1, 0, 0, 0, 564, 6067, 1, 0, 0, 0, 566, 6085, 1, 0, 0, 0, 568, 6109, 1, 0, 0, 0, 570, 6121, 1, 0, 0, 0, 572, 6125, 1, 0, 0, 0, 574, 6137, 1, 0, 0, 0, 576, 6157, 1, 0, 0, 0, 578, 6165, 1, 0, 0, 0, 580, 6179, 1, 0, 0, 0, 582, 6202, 1, 0, 0, 0, 584, 6204, 1, 0, 0, 0, 586, 6209, 1, 0, 0, 0, 588, 6219, 1, 0, 0, 0, 590, 6240, 1, 0, 0, 0, 592, 6242, 1, 0, 0, 0, 594, 6251, 1, 0, 0, 0, 596, 6262, 1, 0, 0, 0, 598, 6272, 1, 0, 0, 0, 600, 6274, 1, 0, 0, 0, 602, 6281, 1, 0, 0, 0, 604, 6312, 1, 0, 0, 0, 606, 6342, 1, 0, 0, 0, 608, 6344, 1, 0, 0, 0, 610, 6353, 1, 0, 0, 0, 612, 6356, 1, 0, 0, 0, 614, 6427, 1, 0, 0, 0, 616, 6451, 1, 0, 0, 0, 618, 6472, 1, 0, 0, 0, 620, 6474, 1, 0, 0, 0, 622, 6482, 1, 0, 0, 0, 624, 6499, 1, 0, 0, 0, 626, 6525, 1, 0, 0, 0, 628, 6527, 1, 0, 0, 0, 630, 6535, 1, 0, 0, 0, 632, 6542, 1, 0, 0, 0, 634, 6566, 1, 0, 0, 0, 636, 6572, 1, 0, 0, 0, 638, 6580, 1, 0, 0, 0, 640, 6583, 1, 0, 0, 0, 642, 6590, 1, 0, 0, 0, 644, 6598, 1, 0, 0, 0, 646, 6603, 1, 0, 0, 0, 648, 6633, 1, 0, 0, 0, 650, 6660, 1, 0, 0, 0, 652, 6688, 1, 0, 0, 0, 654, 6705, 1, 0, 0, 0, 656, 6711, 1, 0, 0, 0, 658, 6729, 1, 0, 0, 0, 660, 6731, 1, 0, 0, 0, 662, 6735, 1, 0, 0, 0, 664, 6752, 1, 0, 0, 0, 666, 6757, 1, 0, 0, 0, 668, 6795, 1, 0, 0, 0, 670, 6797, 1, 0, 0, 0, 672, 6801, 1, 0, 0, 0, 674, 6803, 1, 0, 0, 0, 676, 6812, 1, 0, 0, 0, 678, 6896, 1, 0, 0, 0, 680, 6902, 1, 0, 0, 0, 682, 7011, 1, 0, 0, 0, 684, 7043, 1, 0, 0, 0, 686, 7094, 1, 0, 0, 0, 688, 7098, 1, 0, 0, 0, 690, 7274, 1, 0, 0, 0, 692, 7276, 1, 0, 0, 0, 694, 7284, 1, 0, 0, 0, 696, 7289, 1, 0, 0, 0, 698, 7291, 1, 0, 0, 0, 700, 7299, 1, 0, 0, 0, 702, 7302, 1, 0, 0, 0, 704, 7311, 1, 0, 0, 0, 706, 7315, 1, 0, 0, 0, 708, 7320, 1, 0, 0, 0, 710, 7337, 1, 0, 0, 0, 712, 7364, 1, 0, 0, 0, 714, 7373, 1, 0, 0, 0, 716, 7375, 1, 0, 0, 0, 718, 7382, 1, 0, 0, 0, 720, 7386, 1, 0, 0, 0, 722, 7388, 1, 0, 0, 0, 724, 7396, 1, 0, 0, 0, 726, 7404, 1, 0, 0, 0, 728, 7411, 1, 0, 0, 0, 730, 7413, 1, 0, 0, 0, 732, 7426, 1, 0, 0, 0, 734, 7430, 1, 0, 0, 0, 736, 7432, 1, 0, 0, 0, 738, 7447, 1, 0, 0, 0, 740, 7449, 1, 0, 0, 0, 742, 7471, 1, 0, 0, 0, 744, 7473, 1, 0, 0, 0, 746, 7496, 1, 0, 0, 0, 748, 7498, 1, 0, 0, 0, 750, 7520, 1, 0, 0, 0, 752, 7523, 1, 0, 0, 0, 754, 7530, 1, 0, 0, 0, 756, 7533, 1, 0, 0, 0, 758, 7549, 1, 0, 0, 0, 760, 7551, 1, 0, 0, 0, 762, 7559, 1, 0, 0, 0, 764, 7567, 1, 0, 0, 0, 766, 7575, 1, 0, 0, 0, 768, 7583, 1, 0, 0, 0, 770, 7585, 1, 0, 0, 0, 772, 7587, 1, 0, 0, 0, 774, 7589, 1, 0, 0, 0, 776, 7591, 1, 0, 0, 0, 778, 7593, 1, 0, 0, 0, 780, 7595, 1, 0, 0, 0, 782, 7599, 1, 0, 0, 0, 784, 7607, 1, 0, 0, 0, 786, 7615, 1, 0, 0, 0, 788, 7617, 1, 0, 0, 0, 790, 7619, 1, 0, 0, 0, 792, 7621, 1, 0, 0, 0, 794, 7623, 1, 0, 0, 0, 796, 7629, 1, 0, 0, 0, 798, 7635, 1, 0, 0, 0, 800, 7641, 1, 0, 0, 0, 802, 7643, 1, 0, 0, 0, 804, 7649, 1, 0, 0, 0, 806, 7655, 1, 0, 0, 0, 808, 7657, 1, 0, 0, 0, 810, 7673, 1, 0, 0, 0, 812, 7676, 1, 0, 0, 0, 814, 7685, 1, 0, 0, 0, 816, 7687, 1, 0, 0, 0, 818, 7697, 1, 0, 0, 0, 820, 7701, 1, 0, 0, 0, 822, 7706, 1, 0, 0, 0, 824, 7712, 1, 0, 0, 0, 826, 7725, 1, 0, 0, 0, 828, 7727, 1, 0, 0, 0, 830, 7780, 1, 0, 0, 0, 832, 7782, 1, 0, 0, 0, 834, 7784, 1, 0, 0, 0, 836, 7787, 1, 0, 0, 0, 838, 7815, 1, 0, 0, 0, 840, 7819, 1, 0, 0, 0, 842, 7870, 1, 0, 0, 0, 844, 7873, 1, 0, 0, 0, 846, 7899, 1, 0, 0, 0, 848, 7901, 1, 0, 0, 0, 850, 7924, 1, 0, 0, 0, 852, 7926, 1, 0, 0, 0, 854, 7931, 1, 0, 0, 0, 856, 7946, 1, 0, 0, 0, 858, 7952, 1, 0, 0, 0, 860, 7963, 1, 0, 0, 0, 862, 7993, 1, 0, 0, 0, 864, 8000, 1, 0, 0, 0, 866, 8025, 1, 0, 0, 0, 868, 8035, 1, 0, 0, 0, 870, 8062, 1, 0, 0, 0, 872, 8075, 1, 0, 0, 0, 874, 8085, 1, 0, 0, 0, 876, 8104, 1, 0, 0, 0, 878, 8136, 1, 0, 0, 0, 880, 8140, 1, 0, 0, 0, 882, 8148, 1, 0, 0, 0, 884, 8162, 1, 0, 0, 0, 886, 8168, 1, 0, 0, 0, 888, 8189, 1, 0, 0, 0, 890, 8195, 1, 0, 0, 0, 892, 8234, 1, 0, 0, 0, 894, 8238, 1, 0, 0, 0, 896, 8264, 1, 0, 0, 0, 898, 8266, 1, 0, 0, 0, 900, 8274, 1, 0, 0, 0, 902, 8311, 1, 0, 0, 0, 904, 8345, 1, 0, 0, 0, 906, 8347, 1, 0, 0, 0, 908, 8358, 1, 0, 0, 0, 910, 8395, 1, 0, 0, 0, 912, 8399, 1, 0, 0, 0, 914, 8401, 1, 0, 0, 0, 916, 8405, 1, 0, 0, 0, 918, 8408, 1, 0, 0, 0, 920, 8430, 1, 0, 0, 0, 922, 8434, 1, 0, 0, 0, 924, 8436, 1, 0, 0, 0, 926, 8460, 1, 0, 0, 0, 928, 8464, 1, 0, 0, 0, 930, 8467, 1, 0, 0, 0, 932, 934, 3, 2, 1, 0, 933, 932, 1, 0, 0, 0, 934, 937, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 935, 1, 0, 0, 0, 938, 939, 5, 0, 0, 1, 939, 1, 1, 0, 0, 0, 940, 942, 3, 4, 2, 0, 941, 943, 5, 7, 0, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 3, 1, 0, 0, 0, 944, 1065, 3, 278, 139, 0, 945, 1065, 3, 488, 244, 0, 946, 1065, 3, 484, 242, 0, 947, 1065, 3, 486, 243, 0, 948, 1065, 3, 352, 176, 0, 949, 1065, 3, 494, 247, 0, 950, 1065, 3, 292, 146, 0, 951, 1065, 3, 210, 105, 0, 952, 1065, 3, 212, 106, 0, 953, 1065, 3, 218, 109, 0, 954, 1065, 3, 232, 116, 0, 955, 1065, 3, 404, 202, 0, 956, 1065, 3, 28, 14, 0, 957, 1065, 3, 434, 217, 0, 958, 1065, 3, 436, 218, 0, 959, 1065, 3, 446, 223, 0, 960, 1065, 3, 438, 219, 0, 961, 1065, 3, 444, 222, 0, 962, 1065, 3, 244, 122, 0, 963, 1065, 3, 246, 123, 0, 964, 1065, 3, 198, 99, 0, 965, 1065, 3, 490, 245, 0, 966, 1065, 3, 76, 38, 0, 967, 1065, 3, 430, 215, 0, 968, 1065, 3, 108, 54, 0, 969, 1065, 3, 450, 225, 0, 970, 1065, 3, 18, 9, 0, 971, 1065, 3, 20, 10, 0, 972, 1065, 3, 16, 8, 0, 973, 1065, 3, 454, 227, 0, 974, 1065, 3, 184, 92, 0, 975, 1065, 3, 498, 249, 0, 976, 1065, 3, 496, 248, 0, 977, 1065, 3, 240, 120, 0, 978, 1065, 3, 506, 253, 0, 979, 1065, 3, 6, 3, 0, 980, 1065, 3, 72, 36, 0, 981, 1065, 3, 112, 56, 0, 982, 1065, 3, 502, 251, 0, 983, 1065, 3, 324, 162, 0, 984, 1065, 3, 70, 35, 0, 985, 1065, 3, 114, 57, 0, 986, 1065, 3, 254, 127, 0, 987, 1065, 3, 186, 93, 0, 988, 1065, 3, 280, 140, 0, 989, 1065, 3, 420, 210, 0, 990, 1065, 3, 500, 250, 0, 991, 1065, 3, 492, 246, 0, 992, 1065, 3, 208, 104, 0, 993, 1065, 3, 214, 107, 0, 994, 1065, 3, 228, 114, 0, 995, 1065, 3, 234, 117, 0, 996, 1065, 3, 364, 182, 0, 997, 1065, 3, 26, 13, 0, 998, 1065, 3, 192, 96, 0, 999, 1065, 3, 296, 148, 0, 1000, 1065, 3, 300, 150, 0, 1001, 1065, 3, 448, 224, 0, 1002, 1065, 3, 302, 151, 0, 1003, 1065, 3, 242, 121, 0, 1004, 1065, 3, 204, 102, 0, 1005, 1065, 3, 30, 15, 0, 1006, 1065, 3, 196, 98, 0, 1007, 1065, 3, 120, 60, 0, 1008, 1065, 3, 452, 226, 0, 1009, 1065, 3, 182, 91, 0, 1010, 1065, 3, 206, 103, 0, 1011, 1065, 3, 424, 212, 0, 1012, 1065, 3, 256, 128, 0, 1013, 1065, 3, 274, 137, 0, 1014, 1065, 3, 8, 4, 0, 1015, 1065, 3, 14, 7, 0, 1016, 1065, 3, 238, 119, 0, 1017, 1065, 3, 480, 240, 0, 1018, 1065, 3, 536, 268, 0, 1019, 1065, 3, 558, 279, 0, 1020, 1065, 3, 282, 141, 0, 1021, 1065, 3, 548, 274, 0, 1022, 1065, 3, 74, 37, 0, 1023, 1065, 3, 418, 209, 0, 1024, 1065, 3, 308, 154, 0, 1025, 1065, 3, 532, 266, 0, 1026, 1065, 3, 520, 260, 0, 1027, 1065, 3, 328, 164, 0, 1028, 1065, 3, 334, 167, 0, 1029, 1065, 3, 348, 174, 0, 1030, 1065, 3, 900, 450, 0, 1031, 1065, 3, 236, 118, 0, 1032, 1065, 3, 358, 179, 0, 1033, 1065, 3, 538, 269, 0, 1034, 1065, 3, 464, 232, 0, 1035, 1065, 3, 194, 97, 0, 1036, 1065, 3, 478, 239, 0, 1037, 1065, 3, 550, 275, 0, 1038, 1065, 3, 460, 230, 0, 1039, 1065, 3, 526, 263, 0, 1040, 1065, 3, 306, 153, 0, 1041, 1065, 3, 428, 214, 0, 1042, 1065, 3, 408, 204, 0, 1043, 1065, 3, 406, 203, 0, 1044, 1065, 3, 410, 205, 0, 1045, 1065, 3, 432, 216, 0, 1046, 1065, 3, 336, 168, 0, 1047, 1065, 3, 350, 175, 0, 1048, 1065, 3, 456, 228, 0, 1049, 1065, 3, 326, 163, 0, 1050, 1065, 3, 560, 280, 0, 1051, 1065, 3, 468, 234, 0, 1052, 1065, 3, 320, 160, 0, 1053, 1065, 3, 466, 233, 0, 1054, 1065, 3, 552, 276, 0, 1055, 1065, 3, 504, 252, 0, 1056, 1065, 3, 60, 30, 0, 1057, 1065, 3, 36, 18, 0, 1058, 1065, 3, 68, 34, 0, 1059, 1065, 3, 476, 238, 0, 1060, 1062, 5, 581, 0, 0, 1061, 1063, 5, 582, 0, 0, 1062, 1061, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 944, 1, 0, 0, 0, 1064, 945, 1, 0, 0, 0, 1064, 946, 1, 0, 0, 0, 1064, 947, 1, 0, 0, 0, 1064, 948, 1, 0, 0, 0, 1064, 949, 1, 0, 0, 0, 1064, 950, 1, 0, 0, 0, 1064, 951, 1, 0, 0, 0, 1064, 952, 1, 0, 0, 0, 1064, 953, 1, 0, 0, 0, 1064, 954, 1, 0, 0, 0, 1064, 955, 1, 0, 0, 0, 1064, 956, 1, 0, 0, 0, 1064, 957, 1, 0, 0, 0, 1064, 958, 1, 0, 0, 0, 1064, 959, 1, 0, 0, 0, 1064, 960, 1, 0, 0, 0, 1064, 961, 1, 0, 0, 0, 1064, 962, 1, 0, 0, 0, 1064, 963, 1, 0, 0, 0, 1064, 964, 1, 0, 0, 0, 1064, 965, 1, 0, 0, 0, 1064, 966, 1, 0, 0, 0, 1064, 967, 1, 0, 0, 0, 1064, 968, 1, 0, 0, 0, 1064, 969, 1, 0, 0, 0, 1064, 970, 1, 0, 0, 0, 1064, 971, 1, 0, 0, 0, 1064, 972, 1, 0, 0, 0, 1064, 973, 1, 0, 0, 0, 1064, 974, 1, 0, 0, 0, 1064, 975, 1, 0, 0, 0, 1064, 976, 1, 0, 0, 0, 1064, 977, 1, 0, 0, 0, 1064, 978, 1, 0, 0, 0, 1064, 979, 1, 0, 0, 0, 1064, 980, 1, 0, 0, 0, 1064, 981, 1, 0, 0, 0, 1064, 982, 1, 0, 0, 0, 1064, 983, 1, 0, 0, 0, 1064, 984, 1, 0, 0, 0, 1064, 985, 1, 0, 0, 0, 1064, 986, 1, 0, 0, 0, 1064, 987, 1, 0, 0, 0, 1064, 988, 1, 0, 0, 0, 1064, 989, 1, 0, 0, 0, 1064, 990, 1, 0, 0, 0, 1064, 991, 1, 0, 0, 0, 1064, 992, 1, 0, 0, 0, 1064, 993, 1, 0, 0, 0, 1064, 994, 1, 0, 0, 0, 1064, 995, 1, 0, 0, 0, 1064, 996, 1, 0, 0, 0, 1064, 997, 1, 0, 0, 0, 1064, 998, 1, 0, 0, 0, 1064, 999, 1, 0, 0, 0, 1064, 1000, 1, 0, 0, 0, 1064, 1001, 1, 0, 0, 0, 1064, 1002, 1, 0, 0, 0, 1064, 1003, 1, 0, 0, 0, 1064, 1004, 1, 0, 0, 0, 1064, 1005, 1, 0, 0, 0, 1064, 1006, 1, 0, 0, 0, 1064, 1007, 1, 0, 0, 0, 1064, 1008, 1, 0, 0, 0, 1064, 1009, 1, 0, 0, 0, 1064, 1010, 1, 0, 0, 0, 1064, 1011, 1, 0, 0, 0, 1064, 1012, 1, 0, 0, 0, 1064, 1013, 1, 0, 0, 0, 1064, 1014, 1, 0, 0, 0, 1064, 1015, 1, 0, 0, 0, 1064, 1016, 1, 0, 0, 0, 1064, 1017, 1, 0, 0, 0, 1064, 1018, 1, 0, 0, 0, 1064, 1019, 1, 0, 0, 0, 1064, 1020, 1, 0, 0, 0, 1064, 1021, 1, 0, 0, 0, 1064, 1022, 1, 0, 0, 0, 1064, 1023, 1, 0, 0, 0, 1064, 1024, 1, 0, 0, 0, 1064, 1025, 1, 0, 0, 0, 1064, 1026, 1, 0, 0, 0, 1064, 1027, 1, 0, 0, 0, 1064, 1028, 1, 0, 0, 0, 1064, 1029, 1, 0, 0, 0, 1064, 1030, 1, 0, 0, 0, 1064, 1031, 1, 0, 0, 0, 1064, 1032, 1, 0, 0, 0, 1064, 1033, 1, 0, 0, 0, 1064, 1034, 1, 0, 0, 0, 1064, 1035, 1, 0, 0, 0, 1064, 1036, 1, 0, 0, 0, 1064, 1037, 1, 0, 0, 0, 1064, 1038, 1, 0, 0, 0, 1064, 1039, 1, 0, 0, 0, 1064, 1040, 1, 0, 0, 0, 1064, 1041, 1, 0, 0, 0, 1064, 1042, 1, 0, 0, 0, 1064, 1043, 1, 0, 0, 0, 1064, 1044, 1, 0, 0, 0, 1064, 1045, 1, 0, 0, 0, 1064, 1046, 1, 0, 0, 0, 1064, 1047, 1, 0, 0, 0, 1064, 1048, 1, 0, 0, 0, 1064, 1049, 1, 0, 0, 0, 1064, 1050, 1, 0, 0, 0, 1064, 1051, 1, 0, 0, 0, 1064, 1052, 1, 0, 0, 0, 1064, 1053, 1, 0, 0, 0, 1064, 1054, 1, 0, 0, 0, 1064, 1055, 1, 0, 0, 0, 1064, 1056, 1, 0, 0, 0, 1064, 1057, 1, 0, 0, 0, 1064, 1058, 1, 0, 0, 0, 1064, 1059, 1, 0, 0, 0, 1064, 1060, 1, 0, 0, 0, 1065, 5, 1, 0, 0, 0, 1066, 1067, 5, 433, 0, 0, 1067, 1068, 3, 684, 342, 0, 1068, 7, 1, 0, 0, 0, 1069, 1070, 5, 46, 0, 0, 1070, 1071, 5, 318, 0, 0, 1071, 1073, 3, 814, 407, 0, 1072, 1074, 5, 105, 0, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1078, 1, 0, 0, 0, 1075, 1077, 3, 12, 6, 0, 1076, 1075, 1, 0, 0, 0, 1077, 1080, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 9, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1081, 1084, 5, 287, 0, 0, 1082, 1085, 3, 808, 404, 0, 1083, 1085, 5, 78, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1120, 1, 0, 0, 0, 1086, 1087, 7, 0, 0, 0, 1087, 1088, 5, 287, 0, 0, 1088, 1120, 3, 808, 404, 0, 1089, 1120, 5, 228, 0, 0, 1090, 1120, 5, 229, 0, 0, 1091, 1120, 5, 236, 0, 0, 1092, 1120, 5, 237, 0, 0, 1093, 1120, 5, 234, 0, 0, 1094, 1120, 5, 235, 0, 0, 1095, 1120, 5, 232, 0, 0, 1096, 1120, 5, 233, 0, 0, 1097, 1120, 5, 230, 0, 0, 1098, 1120, 5, 231, 0, 0, 1099, 1120, 5, 535, 0, 0, 1100, 1120, 5, 536, 0, 0, 1101, 1120, 5, 537, 0, 0, 1102, 1120, 5, 538, 0, 0, 1103, 1120, 5, 539, 0, 0, 1104, 1120, 5, 540, 0, 0, 1105, 1106, 5, 164, 0, 0, 1106, 1107, 5, 74, 0, 0, 1107, 1120, 3, 812, 406, 0, 1108, 1109, 5, 371, 0, 0, 1109, 1110, 5, 368, 0, 0, 1110, 1120, 3, 808, 404, 0, 1111, 1112, 5, 68, 0, 0, 1112, 1113, 7, 1, 0, 0, 1113, 1120, 3, 784, 392, 0, 1114, 1115, 7, 2, 0, 0, 1115, 1120, 3, 816, 408, 0, 1116, 1117, 5, 134, 0, 0, 1117, 1120, 3, 784, 392, 0, 1118, 1120, 3, 826, 413, 0, 1119, 1081, 1, 0, 0, 0, 1119, 1086, 1, 0, 0, 0, 1119, 1089, 1, 0, 0, 0, 1119, 1090, 1, 0, 0, 0, 1119, 1091, 1, 0, 0, 0, 1119, 1092, 1, 0, 0, 0, 1119, 1093, 1, 0, 0, 0, 1119, 1094, 1, 0, 0, 0, 1119, 1095, 1, 0, 0, 0, 1119, 1096, 1, 0, 0, 0, 1119, 1097, 1, 0, 0, 0, 1119, 1098, 1, 0, 0, 0, 1119, 1099, 1, 0, 0, 0, 1119, 1100, 1, 0, 0, 0, 1119, 1101, 1, 0, 0, 0, 1119, 1102, 1, 0, 0, 0, 1119, 1103, 1, 0, 0, 0, 1119, 1104, 1, 0, 0, 0, 1119, 1105, 1, 0, 0, 0, 1119, 1108, 1, 0, 0, 0, 1119, 1111, 1, 0, 0, 0, 1119, 1114, 1, 0, 0, 0, 1119, 1116, 1, 0, 0, 0, 1119, 1118, 1, 0, 0, 0, 1120, 11, 1, 0, 0, 0, 1121, 1130, 3, 10, 5, 0, 1122, 1123, 5, 348, 0, 0, 1123, 1130, 5, 571, 0, 0, 1124, 1125, 7, 3, 0, 0, 1125, 1130, 3, 816, 408, 0, 1126, 1127, 5, 68, 0, 0, 1127, 1128, 7, 1, 0, 0, 1128, 1130, 3, 816, 408, 0, 1129, 1121, 1, 0, 0, 0, 1129, 1122, 1, 0, 0, 0, 1129, 1124, 1, 0, 0, 0, 1129, 1126, 1, 0, 0, 0, 1130, 13, 1, 0, 0, 0, 1131, 1132, 5, 46, 0, 0, 1132, 1133, 5, 99, 0, 0, 1133, 1135, 3, 814, 407, 0, 1134, 1136, 5, 105, 0, 0, 1135, 1134, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1140, 1, 0, 0, 0, 1137, 1139, 3, 12, 6, 0, 1138, 1137, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 15, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1144, 5, 138, 0, 0, 1144, 1145, 7, 2, 0, 0, 1145, 1147, 3, 814, 407, 0, 1146, 1148, 5, 105, 0, 0, 1147, 1146, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1152, 1, 0, 0, 0, 1149, 1151, 3, 10, 5, 0, 1150, 1149, 1, 0, 0, 0, 1151, 1154, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 17, 1, 0, 0, 0, 1154, 1152, 1, 0, 0, 0, 1155, 1156, 5, 138, 0, 0, 1156, 1159, 7, 2, 0, 0, 1157, 1160, 5, 30, 0, 0, 1158, 1160, 3, 814, 407, 0, 1159, 1157, 1, 0, 0, 0, 1159, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 5, 68, 0, 0, 1162, 1163, 5, 175, 0, 0, 1163, 1164, 3, 788, 394, 0, 1164, 1165, 3, 64, 32, 0, 1165, 19, 1, 0, 0, 0, 1166, 1167, 5, 138, 0, 0, 1167, 1168, 5, 442, 0, 0, 1168, 1170, 3, 794, 397, 0, 1169, 1171, 3, 368, 184, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 3, 22, 11, 0, 1173, 21, 1, 0, 0, 0, 1174, 1178, 3, 24, 12, 0, 1175, 1177, 3, 24, 12, 0, 1176, 1175, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1182, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1183, 5, 315, 0, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1201, 1, 0, 0, 0, 1184, 1185, 5, 309, 0, 0, 1185, 1186, 5, 94, 0, 0, 1186, 1201, 3, 792, 396, 0, 1187, 1188, 5, 282, 0, 0, 1188, 1189, 5, 94, 0, 0, 1189, 1201, 3, 814, 407, 0, 1190, 1191, 5, 333, 0, 0, 1191, 1192, 5, 323, 0, 0, 1192, 1201, 3, 32, 16, 0, 1193, 1195, 5, 269, 0, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 462, 0, 0, 1197, 1198, 5, 80, 0, 0, 1198, 1199, 5, 204, 0, 0, 1199, 1201, 3, 818, 409, 0, 1200, 1174, 1, 0, 0, 0, 1200, 1184, 1, 0, 0, 0, 1200, 1187, 1, 0, 0, 0, 1200, 1190, 1, 0, 0, 0, 1200, 1194, 1, 0, 0, 0, 1201, 23, 1, 0, 0, 0, 1202, 1245, 5, 222, 0, 0, 1203, 1245, 5, 338, 0, 0, 1204, 1245, 5, 377, 0, 0, 1205, 1207, 5, 77, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1245, 5, 250, 0, 0, 1209, 1211, 5, 205, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 327, 0, 0, 1213, 1220, 5, 243, 0, 0, 1214, 1216, 5, 205, 0, 0, 1215, 1214, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 5, 327, 0, 0, 1218, 1220, 5, 181, 0, 0, 1219, 1210, 1, 0, 0, 0, 1219, 1215, 1, 0, 0, 0, 1220, 1245, 1, 0, 0, 0, 1221, 1222, 5, 460, 0, 0, 1222, 1245, 7, 4, 0, 0, 1223, 1224, 5, 170, 0, 0, 1224, 1245, 3, 824, 412, 0, 1225, 1226, 5, 320, 0, 0, 1226, 1245, 3, 818, 409, 0, 1227, 1228, 5, 333, 0, 0, 1228, 1229, 3, 818, 409, 0, 1229, 1232, 7, 5, 0, 0, 1230, 1233, 3, 818, 409, 0, 1231, 1233, 5, 53, 0, 0, 1232, 1230, 1, 0, 0, 0, 1232, 1231, 1, 0, 0, 0, 1233, 1245, 1, 0, 0, 0, 1234, 1235, 5, 333, 0, 0, 1235, 1236, 3, 818, 409, 0, 1236, 1237, 5, 64, 0, 0, 1237, 1238, 5, 434, 0, 0, 1238, 1245, 1, 0, 0, 0, 1239, 1242, 5, 313, 0, 0, 1240, 1243, 3, 818, 409, 0, 1241, 1243, 5, 30, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1245, 1, 0, 0, 0, 1244, 1202, 1, 0, 0, 0, 1244, 1203, 1, 0, 0, 0, 1244, 1204, 1, 0, 0, 0, 1244, 1206, 1, 0, 0, 0, 1244, 1219, 1, 0, 0, 0, 1244, 1221, 1, 0, 0, 0, 1244, 1223, 1, 0, 0, 0, 1244, 1225, 1, 0, 0, 0, 1244, 1227, 1, 0, 0, 0, 1244, 1234, 1, 0, 0, 0, 1244, 1239, 1, 0, 0, 0, 1245, 25, 1, 0, 0, 0, 1246, 1247, 5, 46, 0, 0, 1247, 1248, 5, 66, 0, 0, 1248, 1250, 3, 814, 407, 0, 1249, 1251, 5, 105, 0, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1255, 1, 0, 0, 0, 1252, 1254, 3, 12, 6, 0, 1253, 1252, 1, 0, 0, 0, 1254, 1257, 1, 0, 0, 0, 1255, 1253, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 27, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1259, 5, 138, 0, 0, 1259, 1260, 5, 66, 0, 0, 1260, 1261, 3, 814, 407, 0, 1261, 1262, 7, 6, 0, 0, 1262, 1263, 5, 99, 0, 0, 1263, 1264, 3, 816, 408, 0, 1264, 29, 1, 0, 0, 0, 1265, 1266, 5, 46, 0, 0, 1266, 1268, 5, 323, 0, 0, 1267, 1269, 3, 294, 147, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1276, 1, 0, 0, 0, 1270, 1272, 3, 32, 16, 0, 1271, 1270, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 5, 106, 0, 0, 1274, 1277, 3, 814, 407, 0, 1275, 1277, 3, 32, 16, 0, 1276, 1271, 1, 0, 0, 0, 1276, 1275, 1, 0, 0, 0, 1277, 1281, 1, 0, 0, 0, 1278, 1280, 3, 34, 17, 0, 1279, 1278, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 31, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1285, 3, 316, 158, 0, 1285, 33, 1, 0, 0, 0, 1286, 1293, 3, 120, 60, 0, 1287, 1293, 3, 358, 179, 0, 1288, 1293, 3, 196, 98, 0, 1289, 1293, 3, 256, 128, 0, 1290, 1293, 3, 334, 167, 0, 1291, 1293, 3, 476, 238, 0, 1292, 1286, 1, 0, 0, 0, 1292, 1287, 1, 0, 0, 0, 1292, 1288, 1, 0, 0, 0, 1292, 1289, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1292, 1291, 1, 0, 0, 0, 1293, 35, 1, 0, 0, 0, 1294, 1296, 5, 333, 0, 0, 1295, 1297, 7, 7, 0, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 3, 38, 19, 0, 1299, 37, 1, 0, 0, 0, 1300, 1301, 5, 356, 0, 0, 1301, 1309, 3, 474, 237, 0, 1302, 1303, 5, 332, 0, 0, 1303, 1304, 5, 154, 0, 0, 1304, 1305, 5, 36, 0, 0, 1305, 1306, 5, 356, 0, 0, 1306, 1309, 3, 474, 237, 0, 1307, 1309, 3, 42, 21, 0, 1308, 1300, 1, 0, 0, 0, 1308, 1302, 1, 0, 0, 0, 1308, 1307, 1, 0, 0, 0, 1309, 39, 1, 0, 0, 0, 1310, 1313, 5, 30, 0, 0, 1311, 1313, 3, 44, 22, 0, 1312, 1310, 1, 0, 0, 0, 1312, 1311, 1, 0, 0, 0, 1313, 1315, 1, 0, 0, 0, 1314, 1316, 7, 5, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1319, 1, 0, 0, 0, 1317, 1320, 5, 53, 0, 0, 1318, 1320, 3, 46, 23, 0, 1319, 1317, 1, 0, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 41, 1, 0, 0, 0, 1321, 1322, 5, 418, 0, 0, 1322, 1323, 5, 386, 0, 0, 1323, 1350, 3, 56, 28, 0, 1324, 1325, 5, 152, 0, 0, 1325, 1350, 3, 808, 404, 0, 1326, 1327, 5, 323, 0, 0, 1327, 1350, 3, 790, 395, 0, 1328, 1331, 5, 267, 0, 0, 1329, 1332, 3, 808, 404, 0, 1330, 1332, 5, 53, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1350, 1, 0, 0, 0, 1333, 1334, 5, 318, 0, 0, 1334, 1350, 3, 58, 29, 0, 1335, 1336, 5, 332, 0, 0, 1336, 1337, 5, 106, 0, 0, 1337, 1350, 3, 58, 29, 0, 1338, 1339, 5, 383, 0, 0, 1339, 1340, 5, 279, 0, 0, 1340, 1350, 3, 696, 348, 0, 1341, 1342, 5, 356, 0, 0, 1342, 1343, 5, 337, 0, 0, 1343, 1350, 3, 808, 404, 0, 1344, 1345, 3, 44, 22, 0, 1345, 1346, 5, 64, 0, 0, 1346, 1347, 5, 434, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1350, 3, 40, 20, 0, 1349, 1321, 1, 0, 0, 0, 1349, 1324, 1, 0, 0, 0, 1349, 1326, 1, 0, 0, 0, 1349, 1328, 1, 0, 0, 0, 1349, 1333, 1, 0, 0, 0, 1349, 1335, 1, 0, 0, 0, 1349, 1338, 1, 0, 0, 0, 1349, 1341, 1, 0, 0, 0, 1349, 1344, 1, 0, 0, 0, 1349, 1348, 1, 0, 0, 0, 1350, 43, 1, 0, 0, 0, 1351, 1356, 3, 818, 409, 0, 1352, 1353, 5, 11, 0, 0, 1353, 1355, 3, 818, 409, 0, 1354, 1352, 1, 0, 0, 0, 1355, 1358, 1, 0, 0, 0, 1356, 1354, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 45, 1, 0, 0, 0, 1358, 1356, 1, 0, 0, 0, 1359, 1364, 3, 48, 24, 0, 1360, 1361, 5, 6, 0, 0, 1361, 1363, 3, 48, 24, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1366, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 47, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1370, 3, 54, 27, 0, 1368, 1370, 3, 202, 101, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1368, 1, 0, 0, 0, 1370, 49, 1, 0, 0, 0, 1371, 1372, 5, 300, 0, 0, 1372, 1377, 7, 8, 0, 0, 1373, 1374, 5, 310, 0, 0, 1374, 1377, 5, 300, 0, 0, 1375, 1377, 5, 330, 0, 0, 1376, 1371, 1, 0, 0, 0, 1376, 1373, 1, 0, 0, 0, 1376, 1375, 1, 0, 0, 0, 1377, 51, 1, 0, 0, 0, 1378, 1385, 5, 96, 0, 0, 1379, 1385, 5, 60, 0, 0, 1380, 1385, 5, 80, 0, 0, 1381, 1385, 3, 800, 400, 0, 1382, 1385, 3, 832, 416, 0, 1383, 1385, 3, 808, 404, 0, 1384, 1378, 1, 0, 0, 0, 1384, 1379, 1, 0, 0, 0, 1384, 1380, 1, 0, 0, 0, 1384, 1381, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 53, 1, 0, 0, 0, 1386, 1391, 5, 96, 0, 0, 1387, 1391, 5, 60, 0, 0, 1388, 1391, 5, 80, 0, 0, 1389, 1391, 3, 58, 29, 0, 1390, 1386, 1, 0, 0, 0, 1390, 1387, 1, 0, 0, 0, 1390, 1388, 1, 0, 0, 0, 1390, 1389, 1, 0, 0, 0, 1391, 55, 1, 0, 0, 0, 1392, 1407, 3, 808, 404, 0, 1393, 1407, 5, 53, 0, 0, 1394, 1407, 3, 826, 413, 0, 1395, 1396, 5, 403, 0, 0, 1396, 1398, 3, 808, 404, 0, 1397, 1399, 3, 668, 334, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1407, 1, 0, 0, 0, 1400, 1401, 5, 403, 0, 0, 1401, 1402, 3, 660, 330, 0, 1402, 1403, 3, 808, 404, 0, 1403, 1407, 1, 0, 0, 0, 1404, 1407, 3, 202, 101, 0, 1405, 1407, 5, 254, 0, 0, 1406, 1392, 1, 0, 0, 0, 1406, 1393, 1, 0, 0, 0, 1406, 1394, 1, 0, 0, 0, 1406, 1395, 1, 0, 0, 0, 1406, 1400, 1, 0, 0, 0, 1406, 1404, 1, 0, 0, 0, 1406, 1405, 1, 0, 0, 0, 1407, 57, 1, 0, 0, 0, 1408, 1411, 3, 822, 411, 0, 1409, 1411, 3, 808, 404, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1409, 1, 0, 0, 0, 1411, 59, 1, 0, 0, 0, 1412, 1413, 5, 313, 0, 0, 1413, 1414, 3, 62, 31, 0, 1414, 61, 1, 0, 0, 0, 1415, 1416, 5, 418, 0, 0, 1416, 1425, 5, 386, 0, 0, 1417, 1418, 5, 356, 0, 0, 1418, 1419, 5, 244, 0, 0, 1419, 1425, 5, 251, 0, 0, 1420, 1421, 5, 332, 0, 0, 1421, 1425, 5, 106, 0, 0, 1422, 1425, 5, 30, 0, 0, 1423, 1425, 3, 44, 22, 0, 1424, 1415, 1, 0, 0, 0, 1424, 1417, 1, 0, 0, 0, 1424, 1420, 1, 0, 0, 0, 1424, 1422, 1, 0, 0, 0, 1424, 1423, 1, 0, 0, 0, 1425, 63, 1, 0, 0, 0, 1426, 1427, 5, 333, 0, 0, 1427, 1430, 3, 38, 19, 0, 1428, 1430, 3, 60, 30, 0, 1429, 1426, 1, 0, 0, 0, 1429, 1428, 1, 0, 0, 0, 1430, 65, 1, 0, 0, 0, 1431, 1432, 5, 333, 0, 0, 1432, 1435, 3, 42, 21, 0, 1433, 1435, 3, 60, 30, 0, 1434, 1431, 1, 0, 0, 0, 1434, 1433, 1, 0, 0, 0, 1435, 67, 1, 0, 0, 0, 1436, 1446, 5, 335, 0, 0, 1437, 1447, 3, 44, 22, 0, 1438, 1439, 5, 418, 0, 0, 1439, 1447, 5, 386, 0, 0, 1440, 1441, 5, 356, 0, 0, 1441, 1442, 5, 244, 0, 0, 1442, 1447, 5, 251, 0, 0, 1443, 1444, 5, 332, 0, 0, 1444, 1447, 5, 106, 0, 0, 1445, 1447, 5, 30, 0, 0, 1446, 1437, 1, 0, 0, 0, 1446, 1438, 1, 0, 0, 0, 1446, 1440, 1, 0, 0, 0, 1446, 1443, 1, 0, 0, 0, 1446, 1445, 1, 0, 0, 0, 1447, 69, 1, 0, 0, 0, 1448, 1449, 5, 333, 0, 0, 1449, 1452, 5, 165, 0, 0, 1450, 1453, 5, 30, 0, 0, 1451, 1453, 3, 760, 380, 0, 1452, 1450, 1, 0, 0, 0, 1452, 1451, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 7, 9, 0, 0, 1455, 71, 1, 0, 0, 0, 1456, 1457, 5, 155, 0, 0, 1457, 73, 1, 0, 0, 0, 1458, 1459, 5, 187, 0, 0, 1459, 1460, 7, 10, 0, 0, 1460, 75, 1, 0, 0, 0, 1461, 1462, 5, 138, 0, 0, 1462, 1464, 5, 92, 0, 0, 1463, 1465, 3, 422, 211, 0, 1464, 1463, 1, 0, 0, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 3, 624, 312, 0, 1467, 1470, 3, 78, 39, 0, 1468, 1470, 3, 88, 44, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1468, 1, 0, 0, 0, 1470, 1583, 1, 0, 0, 0, 1471, 1472, 5, 138, 0, 0, 1472, 1473, 5, 92, 0, 0, 1473, 1474, 5, 30, 0, 0, 1474, 1475, 5, 68, 0, 0, 1475, 1479, 3, 176, 88, 0, 1476, 1477, 5, 281, 0, 0, 1477, 1478, 5, 147, 0, 0, 1478, 1480, 3, 816, 408, 0, 1479, 1476, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 5, 333, 0, 0, 1482, 1483, 5, 351, 0, 0, 1483, 1485, 3, 768, 384, 0, 1484, 1486, 5, 272, 0, 0, 1485, 1484, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1583, 1, 0, 0, 0, 1487, 1488, 5, 138, 0, 0, 1488, 1490, 5, 92, 0, 0, 1489, 1491, 3, 422, 211, 0, 1490, 1489, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 3, 774, 387, 0, 1493, 1498, 3, 90, 45, 0, 1494, 1495, 5, 62, 0, 0, 1495, 1496, 5, 422, 0, 0, 1496, 1499, 3, 80, 40, 0, 1497, 1499, 5, 53, 0, 0, 1498, 1494, 1, 0, 0, 0, 1498, 1497, 1, 0, 0, 0, 1499, 1583, 1, 0, 0, 0, 1500, 1501, 5, 138, 0, 0, 1501, 1503, 5, 92, 0, 0, 1502, 1504, 3, 422, 211, 0, 1503, 1502, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 1, 0, 0, 0, 1505, 1506, 3, 774, 387, 0, 1506, 1507, 5, 436, 0, 0, 1507, 1508, 5, 285, 0, 0, 1508, 1510, 3, 780, 390, 0, 1509, 1511, 7, 11, 0, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1583, 1, 0, 0, 0, 1512, 1513, 5, 138, 0, 0, 1513, 1515, 5, 226, 0, 0, 1514, 1516, 3, 422, 211, 0, 1515, 1514, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1520, 3, 780, 390, 0, 1518, 1521, 3, 78, 39, 0, 1519, 1521, 3, 90, 45, 0, 1520, 1518, 1, 0, 0, 0, 1520, 1519, 1, 0, 0, 0, 1521, 1583, 1, 0, 0, 0, 1522, 1523, 5, 138, 0, 0, 1523, 1524, 5, 226, 0, 0, 1524, 1525, 5, 30, 0, 0, 1525, 1526, 5, 68, 0, 0, 1526, 1530, 3, 176, 88, 0, 1527, 1528, 5, 281, 0, 0, 1528, 1529, 5, 147, 0, 0, 1529, 1531, 3, 816, 408, 0, 1530, 1527, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 5, 333, 0, 0, 1533, 1535, 3, 176, 88, 0, 1534, 1536, 5, 272, 0, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1583, 1, 0, 0, 0, 1537, 1538, 5, 138, 0, 0, 1538, 1540, 5, 328, 0, 0, 1539, 1541, 3, 422, 211, 0, 1540, 1539, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 3, 780, 390, 0, 1543, 1544, 3, 78, 39, 0, 1544, 1583, 1, 0, 0, 0, 1545, 1547, 5, 138, 0, 0, 1546, 1548, 5, 259, 0, 0, 1547, 1546, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 5, 376, 0, 0, 1550, 1552, 3, 422, 211, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 3, 778, 389, 0, 1554, 1555, 3, 78, 39, 0, 1555, 1583, 1, 0, 0, 0, 1556, 1557, 5, 138, 0, 0, 1557, 1558, 5, 259, 0, 0, 1558, 1559, 5, 376, 0, 0, 1559, 1560, 5, 30, 0, 0, 1560, 1561, 5, 68, 0, 0, 1561, 1565, 3, 176, 88, 0, 1562, 1563, 5, 281, 0, 0, 1563, 1564, 5, 147, 0, 0, 1564, 1566, 3, 816, 408, 0, 1565, 1562, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 5, 333, 0, 0, 1568, 1569, 5, 351, 0, 0, 1569, 1571, 3, 768, 384, 0, 1570, 1572, 5, 272, 0, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1583, 1, 0, 0, 0, 1573, 1574, 5, 138, 0, 0, 1574, 1575, 5, 63, 0, 0, 1575, 1577, 5, 92, 0, 0, 1576, 1578, 3, 422, 211, 0, 1577, 1576, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 3, 624, 312, 0, 1580, 1581, 3, 78, 39, 0, 1581, 1583, 1, 0, 0, 0, 1582, 1461, 1, 0, 0, 0, 1582, 1471, 1, 0, 0, 0, 1582, 1487, 1, 0, 0, 0, 1582, 1500, 1, 0, 0, 0, 1582, 1512, 1, 0, 0, 0, 1582, 1522, 1, 0, 0, 0, 1582, 1537, 1, 0, 0, 0, 1582, 1545, 1, 0, 0, 0, 1582, 1556, 1, 0, 0, 0, 1582, 1573, 1, 0, 0, 0, 1583, 77, 1, 0, 0, 0, 1584, 1589, 3, 92, 46, 0, 1585, 1586, 5, 6, 0, 0, 1586, 1588, 3, 92, 46, 0, 1587, 1585, 1, 0, 0, 0, 1588, 1591, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 79, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, 5, 68, 0, 0, 1593, 1602, 3, 534, 267, 0, 1594, 1595, 5, 64, 0, 0, 1595, 1596, 3, 82, 41, 0, 1596, 1597, 5, 94, 0, 0, 1597, 1598, 3, 82, 41, 0, 1598, 1602, 1, 0, 0, 0, 1599, 1600, 5, 105, 0, 0, 1600, 1602, 3, 86, 43, 0, 1601, 1592, 1, 0, 0, 0, 1601, 1594, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 81, 1, 0, 0, 0, 1603, 1604, 5, 2, 0, 0, 1604, 1609, 3, 84, 42, 0, 1605, 1606, 5, 6, 0, 0, 1606, 1608, 3, 84, 42, 0, 1607, 1605, 1, 0, 0, 0, 1608, 1611, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1609, 1, 0, 0, 0, 1612, 1613, 5, 3, 0, 0, 1613, 83, 1, 0, 0, 0, 1614, 1618, 3, 534, 267, 0, 1615, 1618, 5, 262, 0, 0, 1616, 1618, 5, 260, 0, 0, 1617, 1614, 1, 0, 0, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1616, 1, 0, 0, 0, 1618, 85, 1, 0, 0, 0, 1619, 1620, 5, 2, 0, 0, 1620, 1621, 5, 533, 0, 0, 1621, 1622, 3, 202, 101, 0, 1622, 1623, 5, 6, 0, 0, 1623, 1624, 5, 534, 0, 0, 1624, 1625, 3, 202, 101, 0, 1625, 1626, 5, 3, 0, 0, 1626, 87, 1, 0, 0, 0, 1627, 1628, 3, 90, 45, 0, 1628, 1629, 3, 106, 53, 0, 1629, 1634, 1, 0, 0, 0, 1630, 1631, 5, 436, 0, 0, 1631, 1632, 5, 285, 0, 0, 1632, 1634, 3, 780, 390, 0, 1633, 1627, 1, 0, 0, 0, 1633, 1630, 1, 0, 0, 0, 1634, 89, 1, 0, 0, 0, 1635, 1636, 5, 435, 0, 0, 1636, 1637, 5, 285, 0, 0, 1637, 1638, 3, 780, 390, 0, 1638, 91, 1, 0, 0, 0, 1639, 1642, 5, 133, 0, 0, 1640, 1641, 5, 45, 0, 0, 1641, 1643, 3, 818, 409, 0, 1642, 1640, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1873, 3, 142, 71, 0, 1645, 1646, 5, 138, 0, 0, 1646, 1647, 5, 45, 0, 0, 1647, 1651, 3, 818, 409, 0, 1648, 1650, 3, 272, 136, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1653, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1873, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1654, 1655, 5, 372, 0, 0, 1655, 1656, 5, 45, 0, 0, 1656, 1873, 3, 818, 409, 0, 1657, 1658, 5, 191, 0, 0, 1658, 1660, 5, 45, 0, 0, 1659, 1661, 3, 422, 211, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 3, 818, 409, 0, 1663, 1665, 3, 96, 48, 0, 1664, 1663, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1873, 1, 0, 0, 0, 1666, 1667, 5, 333, 0, 0, 1667, 1668, 5, 379, 0, 0, 1668, 1873, 7, 12, 0, 0, 1669, 1670, 5, 158, 0, 0, 1670, 1671, 5, 80, 0, 0, 1671, 1873, 3, 818, 409, 0, 1672, 1673, 5, 333, 0, 0, 1673, 1873, 7, 13, 0, 0, 1674, 1676, 5, 193, 0, 0, 1675, 1677, 7, 14, 0, 0, 1676, 1675, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1873, 5, 357, 0, 0, 1679, 1680, 5, 186, 0, 0, 1680, 1684, 5, 357, 0, 0, 1681, 1685, 5, 30, 0, 0, 1682, 1685, 5, 99, 0, 0, 1683, 1685, 3, 818, 409, 0, 1684, 1681, 1, 0, 0, 0, 1684, 1682, 1, 0, 0, 0, 1684, 1683, 1, 0, 0, 0, 1685, 1873, 1, 0, 0, 0, 1686, 1687, 5, 193, 0, 0, 1687, 1688, 7, 14, 0, 0, 1688, 1689, 5, 321, 0, 0, 1689, 1873, 3, 818, 409, 0, 1690, 1691, 5, 186, 0, 0, 1691, 1692, 5, 321, 0, 0, 1692, 1873, 3, 818, 409, 0, 1693, 1695, 5, 269, 0, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 5, 228, 0, 0, 1697, 1873, 3, 780, 390, 0, 1698, 1699, 5, 275, 0, 0, 1699, 1873, 3, 316, 158, 0, 1700, 1701, 5, 77, 0, 0, 1701, 1873, 5, 275, 0, 0, 1702, 1703, 5, 282, 0, 0, 1703, 1704, 5, 94, 0, 0, 1704, 1873, 3, 814, 407, 0, 1705, 1706, 5, 333, 0, 0, 1706, 1707, 5, 351, 0, 0, 1707, 1873, 3, 768, 384, 0, 1708, 1709, 5, 312, 0, 0, 1709, 1714, 5, 219, 0, 0, 1710, 1715, 5, 270, 0, 0, 1711, 1715, 5, 113, 0, 0, 1712, 1715, 5, 53, 0, 0, 1713, 1715, 3, 180, 90, 0, 1714, 1710, 1, 0, 0, 0, 1714, 1711, 1, 0, 0, 0, 1714, 1712, 1, 0, 0, 0, 1714, 1713, 1, 0, 0, 0, 1715, 1873, 1, 0, 0, 0, 1716, 1723, 5, 193, 0, 0, 1717, 1723, 5, 186, 0, 0, 1718, 1720, 5, 269, 0, 0, 1719, 1718, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1723, 5, 209, 0, 0, 1722, 1716, 1, 0, 0, 0, 1722, 1717, 1, 0, 0, 0, 1722, 1719, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 5, 414, 0, 0, 1725, 1726, 5, 251, 0, 0, 1726, 1873, 5, 327, 0, 0, 1727, 1729, 5, 191, 0, 0, 1728, 1730, 5, 44, 0, 0, 1729, 1728, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1732, 1, 0, 0, 0, 1731, 1733, 3, 422, 211, 0, 1732, 1731, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1736, 3, 800, 400, 0, 1735, 1737, 3, 96, 48, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1873, 1, 0, 0, 0, 1738, 1740, 5, 133, 0, 0, 1739, 1741, 5, 44, 0, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1743, 1, 0, 0, 0, 1742, 1744, 3, 294, 147, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1873, 3, 132, 66, 0, 1746, 1748, 5, 138, 0, 0, 1747, 1749, 5, 44, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1753, 3, 800, 400, 0, 1751, 1754, 3, 94, 47, 0, 1752, 1754, 3, 222, 111, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1752, 1, 0, 0, 0, 1754, 1873, 1, 0, 0, 0, 1755, 1757, 5, 138, 0, 0, 1756, 1758, 5, 44, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 3, 800, 400, 0, 1760, 1761, 7, 15, 0, 0, 1761, 1762, 5, 77, 0, 0, 1762, 1763, 5, 78, 0, 0, 1763, 1873, 1, 0, 0, 0, 1764, 1766, 5, 138, 0, 0, 1765, 1767, 5, 44, 0, 0, 1766, 1765, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 3, 800, 400, 0, 1769, 1770, 5, 191, 0, 0, 1770, 1772, 5, 437, 0, 0, 1771, 1773, 3, 422, 211, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1873, 1, 0, 0, 0, 1774, 1776, 5, 138, 0, 0, 1775, 1777, 5, 44, 0, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 3, 800, 400, 0, 1779, 1780, 5, 333, 0, 0, 1780, 1781, 5, 342, 0, 0, 1781, 1782, 3, 812, 406, 0, 1782, 1873, 1, 0, 0, 0, 1783, 1785, 5, 138, 0, 0, 1784, 1786, 5, 44, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 3, 800, 400, 0, 1788, 1783, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 7, 16, 0, 0, 1791, 1873, 3, 100, 50, 0, 1792, 1794, 5, 138, 0, 0, 1793, 1795, 5, 44, 0, 0, 1794, 1793, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 3, 800, 400, 0, 1797, 1798, 5, 333, 0, 0, 1798, 1799, 5, 345, 0, 0, 1799, 1800, 3, 818, 409, 0, 1800, 1873, 1, 0, 0, 0, 1801, 1803, 5, 138, 0, 0, 1802, 1804, 5, 44, 0, 0, 1803, 1802, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 3, 800, 400, 0, 1806, 1807, 5, 133, 0, 0, 1807, 1808, 5, 438, 0, 0, 1808, 1809, 3, 138, 69, 0, 1809, 1810, 5, 36, 0, 0, 1810, 1819, 5, 219, 0, 0, 1811, 1813, 5, 2, 0, 0, 1812, 1814, 3, 200, 100, 0, 1813, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 5, 3, 0, 0, 1818, 1820, 1, 0, 0, 0, 1819, 1811, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1873, 1, 0, 0, 0, 1821, 1823, 5, 138, 0, 0, 1822, 1824, 5, 44, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1839, 3, 800, 400, 0, 1826, 1831, 5, 314, 0, 0, 1827, 1829, 5, 105, 0, 0, 1828, 1827, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1832, 3, 202, 101, 0, 1831, 1828, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1840, 1, 0, 0, 0, 1833, 1837, 5, 333, 0, 0, 1834, 1838, 3, 200, 100, 0, 1835, 1836, 5, 438, 0, 0, 1836, 1838, 3, 138, 69, 0, 1837, 1834, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1840, 1, 0, 0, 0, 1839, 1826, 1, 0, 0, 0, 1839, 1833, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1873, 1, 0, 0, 0, 1843, 1845, 5, 138, 0, 0, 1844, 1846, 5, 44, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 3, 800, 400, 0, 1848, 1849, 5, 191, 0, 0, 1849, 1851, 5, 219, 0, 0, 1850, 1852, 3, 422, 211, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1873, 1, 0, 0, 0, 1853, 1855, 5, 138, 0, 0, 1854, 1856, 5, 44, 0, 0, 1855, 1854, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1860, 3, 800, 400, 0, 1858, 1859, 5, 333, 0, 0, 1859, 1861, 5, 174, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 5, 360, 0, 0, 1863, 1865, 3, 652, 326, 0, 1864, 1866, 3, 98, 49, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1869, 1, 0, 0, 0, 1867, 1868, 5, 100, 0, 0, 1868, 1870, 3, 674, 337, 0, 1869, 1867, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1873, 1, 0, 0, 0, 1871, 1873, 3, 222, 111, 0, 1872, 1639, 1, 0, 0, 0, 1872, 1645, 1, 0, 0, 0, 1872, 1654, 1, 0, 0, 0, 1872, 1657, 1, 0, 0, 0, 1872, 1666, 1, 0, 0, 0, 1872, 1669, 1, 0, 0, 0, 1872, 1672, 1, 0, 0, 0, 1872, 1674, 1, 0, 0, 0, 1872, 1679, 1, 0, 0, 0, 1872, 1686, 1, 0, 0, 0, 1872, 1690, 1, 0, 0, 0, 1872, 1694, 1, 0, 0, 0, 1872, 1698, 1, 0, 0, 0, 1872, 1700, 1, 0, 0, 0, 1872, 1702, 1, 0, 0, 0, 1872, 1705, 1, 0, 0, 0, 1872, 1708, 1, 0, 0, 0, 1872, 1722, 1, 0, 0, 0, 1872, 1727, 1, 0, 0, 0, 1872, 1738, 1, 0, 0, 0, 1872, 1746, 1, 0, 0, 0, 1872, 1755, 1, 0, 0, 0, 1872, 1764, 1, 0, 0, 0, 1872, 1774, 1, 0, 0, 0, 1872, 1788, 1, 0, 0, 0, 1872, 1792, 1, 0, 0, 0, 1872, 1801, 1, 0, 0, 0, 1872, 1821, 1, 0, 0, 0, 1872, 1843, 1, 0, 0, 0, 1872, 1853, 1, 0, 0, 0, 1872, 1871, 1, 0, 0, 0, 1873, 93, 1, 0, 0, 0, 1874, 1875, 5, 333, 0, 0, 1875, 1876, 5, 53, 0, 0, 1876, 1880, 3, 674, 337, 0, 1877, 1878, 5, 191, 0, 0, 1878, 1880, 5, 53, 0, 0, 1879, 1874, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 95, 1, 0, 0, 0, 1881, 1882, 7, 17, 0, 0, 1882, 97, 1, 0, 0, 0, 1883, 1884, 5, 43, 0, 0, 1884, 1885, 3, 316, 158, 0, 1885, 99, 1, 0, 0, 0, 1886, 1887, 5, 2, 0, 0, 1887, 1892, 3, 104, 52, 0, 1888, 1889, 5, 6, 0, 0, 1889, 1891, 3, 104, 52, 0, 1890, 1888, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1895, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1896, 5, 3, 0, 0, 1896, 101, 1, 0, 0, 0, 1897, 1898, 5, 105, 0, 0, 1898, 1899, 3, 100, 50, 0, 1899, 103, 1, 0, 0, 0, 1900, 1905, 3, 824, 412, 0, 1901, 1902, 5, 10, 0, 0, 1902, 1906, 3, 288, 144, 0, 1903, 1904, 5, 11, 0, 0, 1904, 1906, 3, 286, 143, 0, 1905, 1901, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 105, 1, 0, 0, 0, 1907, 1908, 5, 62, 0, 0, 1908, 1909, 5, 422, 0, 0, 1909, 1910, 5, 105, 0, 0, 1910, 1911, 5, 2, 0, 0, 1911, 1912, 5, 533, 0, 0, 1912, 1913, 5, 571, 0, 0, 1913, 1914, 5, 6, 0, 0, 1914, 1915, 5, 534, 0, 0, 1915, 1916, 5, 571, 0, 0, 1916, 1930, 5, 3, 0, 0, 1917, 1918, 5, 62, 0, 0, 1918, 1919, 5, 422, 0, 0, 1919, 1920, 5, 68, 0, 0, 1920, 1930, 3, 534, 267, 0, 1921, 1922, 5, 62, 0, 0, 1922, 1923, 5, 422, 0, 0, 1923, 1924, 5, 64, 0, 0, 1924, 1925, 3, 534, 267, 0, 1925, 1926, 5, 94, 0, 0, 1926, 1927, 3, 534, 267, 0, 1927, 1930, 1, 0, 0, 0, 1928, 1930, 5, 53, 0, 0, 1929, 1907, 1, 0, 0, 0, 1929, 1917, 1, 0, 0, 0, 1929, 1921, 1, 0, 0, 0, 1929, 1928, 1, 0, 0, 0, 1930, 107, 1, 0, 0, 0, 1931, 1932, 5, 138, 0, 0, 1932, 1933, 5, 360, 0, 0, 1933, 1934, 3, 316, 158, 0, 1934, 1939, 3, 110, 55, 0, 1935, 1936, 5, 6, 0, 0, 1936, 1938, 3, 110, 55, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1941, 1, 0, 0, 0, 1939, 1937, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 109, 1, 0, 0, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1943, 5, 133, 0, 0, 1943, 1944, 5, 143, 0, 0, 1944, 1946, 3, 644, 322, 0, 1945, 1947, 3, 96, 48, 0, 1946, 1945, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1973, 1, 0, 0, 0, 1948, 1949, 5, 191, 0, 0, 1949, 1951, 5, 143, 0, 0, 1950, 1952, 3, 422, 211, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1955, 3, 818, 409, 0, 1954, 1956, 3, 96, 48, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1973, 1, 0, 0, 0, 1957, 1958, 5, 138, 0, 0, 1958, 1959, 5, 143, 0, 0, 1959, 1962, 3, 818, 409, 0, 1960, 1961, 5, 333, 0, 0, 1961, 1963, 5, 174, 0, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 5, 360, 0, 0, 1965, 1967, 3, 652, 326, 0, 1966, 1968, 3, 98, 49, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1970, 1, 0, 0, 0, 1969, 1971, 3, 96, 48, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1973, 1, 0, 0, 0, 1972, 1942, 1, 0, 0, 0, 1972, 1948, 1, 0, 0, 0, 1972, 1957, 1, 0, 0, 0, 1973, 111, 1, 0, 0, 0, 1974, 1977, 5, 157, 0, 0, 1975, 1978, 3, 818, 409, 0, 1976, 1978, 5, 30, 0, 0, 1977, 1975, 1, 0, 0, 0, 1977, 1976, 1, 0, 0, 0, 1978, 113, 1, 0, 0, 0, 1979, 1981, 5, 169, 0, 0, 1980, 1982, 5, 107, 0, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 3, 774, 387, 0, 1984, 1986, 3, 144, 72, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1989, 7, 18, 0, 0, 1988, 1990, 5, 297, 0, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1994, 1, 0, 0, 0, 1991, 1995, 3, 808, 404, 0, 1992, 1995, 5, 343, 0, 0, 1993, 1995, 5, 344, 0, 0, 1994, 1991, 1, 0, 0, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1993, 1, 0, 0, 0, 1995, 2001, 1, 0, 0, 0, 1996, 1998, 5, 100, 0, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 5, 184, 0, 0, 2000, 2002, 3, 808, 404, 0, 2001, 1997, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2004, 1, 0, 0, 0, 2003, 2005, 5, 105, 0, 0, 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2008, 3, 116, 58, 0, 2007, 2009, 3, 638, 319, 0, 2008, 2007, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2029, 1, 0, 0, 0, 2010, 2011, 5, 169, 0, 0, 2011, 2012, 5, 2, 0, 0, 2012, 2013, 3, 530, 265, 0, 2013, 2014, 5, 3, 0, 0, 2014, 2016, 5, 94, 0, 0, 2015, 2017, 5, 297, 0, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2021, 1, 0, 0, 0, 2018, 2022, 3, 808, 404, 0, 2019, 2022, 5, 343, 0, 0, 2020, 2022, 5, 344, 0, 0, 2021, 2018, 1, 0, 0, 0, 2021, 2019, 1, 0, 0, 0, 2021, 2020, 1, 0, 0, 0, 2022, 2024, 1, 0, 0, 0, 2023, 2025, 5, 105, 0, 0, 2024, 2023, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 3, 116, 58, 0, 2027, 2029, 1, 0, 0, 0, 2028, 1979, 1, 0, 0, 0, 2028, 2010, 1, 0, 0, 0, 2029, 115, 1, 0, 0, 0, 2030, 2054, 5, 107, 0, 0, 2031, 2054, 5, 112, 0, 0, 2032, 2034, 7, 19, 0, 0, 2033, 2035, 5, 36, 0, 0, 2034, 2033, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2054, 3, 808, 404, 0, 2037, 2054, 5, 171, 0, 0, 2038, 2054, 5, 216, 0, 0, 2039, 2040, 5, 209, 0, 0, 2040, 2043, 5, 298, 0, 0, 2041, 2044, 3, 148, 74, 0, 2042, 2044, 5, 9, 0, 0, 2043, 2041, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 2054, 1, 0, 0, 0, 2045, 2047, 5, 209, 0, 0, 2046, 2048, 5, 77, 0, 0, 2047, 2046, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 5, 78, 0, 0, 2050, 2054, 3, 148, 74, 0, 2051, 2052, 5, 194, 0, 0, 2052, 2054, 3, 808, 404, 0, 2053, 2030, 1, 0, 0, 0, 2053, 2031, 1, 0, 0, 0, 2053, 2032, 1, 0, 0, 0, 2053, 2037, 1, 0, 0, 0, 2053, 2038, 1, 0, 0, 0, 2053, 2039, 1, 0, 0, 0, 2053, 2045, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2054, 2057, 1, 0, 0, 0, 2055, 2053, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2070, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2058, 2059, 5, 2, 0, 0, 2059, 2064, 3, 118, 59, 0, 2060, 2061, 5, 6, 0, 0, 2061, 2063, 3, 118, 59, 0, 2062, 2060, 1, 0, 0, 0, 2063, 2066, 1, 0, 0, 0, 2064, 2062, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2067, 1, 0, 0, 0, 2066, 2064, 1, 0, 0, 0, 2067, 2068, 5, 3, 0, 0, 2068, 2070, 1, 0, 0, 0, 2069, 2055, 1, 0, 0, 0, 2069, 2058, 1, 0, 0, 0, 2070, 117, 1, 0, 0, 0, 2071, 2086, 3, 824, 412, 0, 2072, 2087, 3, 54, 27, 0, 2073, 2087, 3, 202, 101, 0, 2074, 2087, 5, 9, 0, 0, 2075, 2076, 5, 2, 0, 0, 2076, 2081, 3, 52, 26, 0, 2077, 2078, 5, 6, 0, 0, 2078, 2080, 3, 52, 26, 0, 2079, 2077, 1, 0, 0, 0, 2080, 2083, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2084, 1, 0, 0, 0, 2083, 2081, 1, 0, 0, 0, 2084, 2085, 5, 3, 0, 0, 2085, 2087, 1, 0, 0, 0, 2086, 2072, 1, 0, 0, 0, 2086, 2073, 1, 0, 0, 0, 2086, 2074, 1, 0, 0, 0, 2086, 2075, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 119, 1, 0, 0, 0, 2088, 2090, 5, 46, 0, 0, 2089, 2091, 3, 122, 61, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 5, 92, 0, 0, 2093, 2095, 3, 294, 147, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2162, 3, 772, 386, 0, 2097, 2099, 5, 2, 0, 0, 2098, 2100, 3, 126, 63, 0, 2099, 2098, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2103, 5, 3, 0, 0, 2102, 2104, 3, 164, 82, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2107, 3, 166, 83, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2109, 1, 0, 0, 0, 2108, 2110, 3, 170, 85, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2113, 3, 172, 86, 0, 2112, 2111, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2115, 1, 0, 0, 0, 2114, 2116, 3, 174, 87, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2119, 3, 176, 88, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2163, 1, 0, 0, 0, 2120, 2121, 5, 275, 0, 0, 2121, 2123, 3, 316, 158, 0, 2122, 2124, 3, 124, 62, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 166, 83, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2130, 3, 170, 85, 0, 2129, 2128, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, 2132, 1, 0, 0, 0, 2131, 2133, 3, 172, 86, 0, 2132, 2131, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2135, 1, 0, 0, 0, 2134, 2136, 3, 174, 87, 0, 2135, 2134, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2138, 1, 0, 0, 0, 2137, 2139, 3, 176, 88, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2163, 1, 0, 0, 0, 2140, 2141, 5, 285, 0, 0, 2141, 2142, 5, 275, 0, 0, 2142, 2144, 3, 780, 390, 0, 2143, 2145, 3, 124, 62, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 3, 106, 53, 0, 2147, 2149, 3, 166, 83, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2152, 3, 170, 85, 0, 2151, 2150, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2154, 1, 0, 0, 0, 2153, 2155, 3, 172, 86, 0, 2154, 2153, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 1, 0, 0, 0, 2156, 2158, 3, 174, 87, 0, 2157, 2156, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2161, 3, 176, 88, 0, 2160, 2159, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2097, 1, 0, 0, 0, 2162, 2120, 1, 0, 0, 0, 2162, 2140, 1, 0, 0, 0, 2163, 121, 1, 0, 0, 0, 2164, 2170, 5, 354, 0, 0, 2165, 2170, 5, 352, 0, 0, 2166, 2167, 7, 20, 0, 0, 2167, 2170, 7, 21, 0, 0, 2168, 2170, 5, 367, 0, 0, 2169, 2164, 1, 0, 0, 0, 2169, 2165, 1, 0, 0, 0, 2169, 2166, 1, 0, 0, 0, 2169, 2168, 1, 0, 0, 0, 2170, 123, 1, 0, 0, 0, 2171, 2172, 5, 2, 0, 0, 2172, 2177, 3, 130, 65, 0, 2173, 2174, 5, 6, 0, 0, 2174, 2176, 3, 130, 65, 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, 3, 0, 0, 2181, 125, 1, 0, 0, 0, 2182, 2187, 3, 128, 64, 0, 2183, 2184, 5, 6, 0, 0, 2184, 2186, 3, 128, 64, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2189, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 127, 1, 0, 0, 0, 2189, 2187, 1, 0, 0, 0, 2190, 2191, 5, 45, 0, 0, 2191, 2193, 3, 818, 409, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2206, 3, 142, 71, 0, 2195, 2206, 3, 132, 66, 0, 2196, 2197, 5, 120, 0, 0, 2197, 2202, 3, 780, 390, 0, 2198, 2199, 7, 22, 0, 0, 2199, 2201, 3, 140, 70, 0, 2200, 2198, 1, 0, 0, 0, 2201, 2204, 1, 0, 0, 0, 2202, 2200, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2206, 1, 0, 0, 0, 2204, 2202, 1, 0, 0, 0, 2205, 2192, 1, 0, 0, 0, 2205, 2195, 1, 0, 0, 0, 2205, 2196, 1, 0, 0, 0, 2206, 129, 1, 0, 0, 0, 2207, 2210, 3, 802, 401, 0, 2208, 2209, 5, 105, 0, 0, 2209, 2211, 5, 280, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2215, 1, 0, 0, 0, 2212, 2214, 3, 134, 67, 0, 2213, 2212, 1, 0, 0, 0, 2214, 2217, 1, 0, 0, 0, 2215, 2213, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2224, 1, 0, 0, 0, 2217, 2215, 1, 0, 0, 0, 2218, 2219, 5, 45, 0, 0, 2219, 2221, 3, 818, 409, 0, 2220, 2218, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2224, 3, 142, 71, 0, 2223, 2207, 1, 0, 0, 0, 2223, 2220, 1, 0, 0, 0, 2224, 131, 1, 0, 0, 0, 2225, 2226, 3, 802, 401, 0, 2226, 2228, 3, 652, 326, 0, 2227, 2229, 3, 220, 110, 0, 2228, 2227, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2239, 1, 0, 0, 0, 2230, 2237, 5, 345, 0, 0, 2231, 2238, 5, 544, 0, 0, 2232, 2238, 5, 205, 0, 0, 2233, 2238, 5, 545, 0, 0, 2234, 2238, 5, 546, 0, 0, 2235, 2238, 5, 53, 0, 0, 2236, 2238, 3, 818, 409, 0, 2237, 2231, 1, 0, 0, 0, 2237, 2232, 1, 0, 0, 0, 2237, 2233, 1, 0, 0, 0, 2237, 2234, 1, 0, 0, 0, 2237, 2235, 1, 0, 0, 0, 2237, 2236, 1, 0, 0, 0, 2238, 2240, 1, 0, 0, 0, 2239, 2230, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2243, 1, 0, 0, 0, 2241, 2242, 5, 543, 0, 0, 2242, 2244, 3, 818, 409, 0, 2243, 2241, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2246, 1, 0, 0, 0, 2245, 2247, 3, 98, 49, 0, 2246, 2245, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2250, 1, 0, 0, 0, 2248, 2249, 5, 105, 0, 0, 2249, 2251, 5, 280, 0, 0, 2250, 2248, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2255, 1, 0, 0, 0, 2252, 2254, 3, 134, 67, 0, 2253, 2252, 1, 0, 0, 0, 2254, 2257, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 133, 1, 0, 0, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2259, 5, 45, 0, 0, 2259, 2261, 3, 818, 409, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2267, 3, 136, 68, 0, 2263, 2265, 5, 77, 0, 0, 2264, 2263, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2268, 5, 54, 0, 0, 2267, 2264, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2271, 1, 0, 0, 0, 2269, 2270, 5, 69, 0, 0, 2270, 2272, 7, 9, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 135, 1, 0, 0, 0, 2273, 2275, 5, 77, 0, 0, 2274, 2273, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2354, 5, 78, 0, 0, 2277, 2279, 5, 98, 0, 0, 2278, 2280, 3, 400, 200, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2282, 1, 0, 0, 0, 2281, 2283, 3, 178, 89, 0, 2282, 2281, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2354, 1, 0, 0, 0, 2284, 2290, 5, 98, 0, 0, 2285, 2287, 5, 273, 0, 0, 2286, 2288, 5, 77, 0, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2291, 5, 56, 0, 0, 2290, 2285, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2293, 5, 441, 0, 0, 2293, 2295, 3, 360, 180, 0, 2294, 2292, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2297, 1, 0, 0, 0, 2296, 2298, 3, 572, 286, 0, 2297, 2296, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2301, 3, 178, 89, 0, 2300, 2299, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2301, 2354, 1, 0, 0, 0, 2302, 2303, 5, 85, 0, 0, 2303, 2305, 5, 245, 0, 0, 2304, 2306, 3, 400, 200, 0, 2305, 2304, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2308, 1, 0, 0, 0, 2307, 2309, 3, 178, 89, 0, 2308, 2307, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2354, 1, 0, 0, 0, 2310, 2311, 5, 42, 0, 0, 2311, 2312, 5, 2, 0, 0, 2312, 2313, 3, 674, 337, 0, 2313, 2316, 5, 3, 0, 0, 2314, 2315, 5, 269, 0, 0, 2315, 2317, 5, 228, 0, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2354, 1, 0, 0, 0, 2318, 2319, 5, 53, 0, 0, 2319, 2354, 3, 682, 341, 0, 2320, 2321, 5, 438, 0, 0, 2321, 2322, 3, 138, 69, 0, 2322, 2339, 5, 36, 0, 0, 2323, 2332, 5, 219, 0, 0, 2324, 2326, 5, 2, 0, 0, 2325, 2327, 3, 200, 100, 0, 2326, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2326, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, 5, 3, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2324, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2340, 1, 0, 0, 0, 2334, 2335, 5, 2, 0, 0, 2335, 2336, 3, 674, 337, 0, 2336, 2337, 5, 3, 0, 0, 2337, 2338, 5, 440, 0, 0, 2338, 2340, 1, 0, 0, 0, 2339, 2323, 1, 0, 0, 0, 2339, 2334, 1, 0, 0, 0, 2340, 2354, 1, 0, 0, 0, 2341, 2342, 5, 86, 0, 0, 2342, 2344, 3, 780, 390, 0, 2343, 2345, 3, 144, 72, 0, 2344, 2343, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2347, 1, 0, 0, 0, 2346, 2348, 3, 152, 76, 0, 2347, 2346, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2350, 1, 0, 0, 0, 2349, 2351, 3, 156, 78, 0, 2350, 2349, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2354, 3, 98, 49, 0, 2353, 2274, 1, 0, 0, 0, 2353, 2277, 1, 0, 0, 0, 2353, 2284, 1, 0, 0, 0, 2353, 2302, 1, 0, 0, 0, 2353, 2310, 1, 0, 0, 0, 2353, 2318, 1, 0, 0, 0, 2353, 2320, 1, 0, 0, 0, 2353, 2341, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 137, 1, 0, 0, 0, 2355, 2359, 5, 139, 0, 0, 2356, 2357, 5, 147, 0, 0, 2357, 2359, 5, 53, 0, 0, 2358, 2355, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2359, 139, 1, 0, 0, 0, 2360, 2361, 7, 23, 0, 0, 2361, 141, 1, 0, 0, 0, 2362, 2363, 5, 42, 0, 0, 2363, 2364, 5, 2, 0, 0, 2364, 2365, 3, 674, 337, 0, 2365, 2369, 5, 3, 0, 0, 2366, 2368, 3, 272, 136, 0, 2367, 2366, 1, 0, 0, 0, 2368, 2371, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2459, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2372, 2376, 5, 98, 0, 0, 2373, 2374, 5, 85, 0, 0, 2374, 2376, 5, 245, 0, 0, 2375, 2372, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2400, 1, 0, 0, 0, 2377, 2379, 3, 144, 72, 0, 2378, 2380, 3, 150, 75, 0, 2379, 2378, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2383, 3, 400, 200, 0, 2382, 2381, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2385, 1, 0, 0, 0, 2384, 2386, 3, 178, 89, 0, 2385, 2384, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2390, 1, 0, 0, 0, 2387, 2389, 3, 272, 136, 0, 2388, 2387, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2401, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2397, 3, 180, 90, 0, 2394, 2396, 3, 272, 136, 0, 2395, 2394, 1, 0, 0, 0, 2396, 2399, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2401, 1, 0, 0, 0, 2399, 2397, 1, 0, 0, 0, 2400, 2377, 1, 0, 0, 0, 2400, 2393, 1, 0, 0, 0, 2401, 2459, 1, 0, 0, 0, 2402, 2404, 5, 199, 0, 0, 2403, 2405, 3, 170, 85, 0, 2404, 2403, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 5, 2, 0, 0, 2407, 2412, 3, 154, 77, 0, 2408, 2409, 5, 6, 0, 0, 2409, 2411, 3, 154, 77, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2414, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2415, 1, 0, 0, 0, 2414, 2412, 1, 0, 0, 0, 2415, 2417, 5, 3, 0, 0, 2416, 2418, 3, 150, 75, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2421, 3, 400, 200, 0, 2420, 2419, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2424, 3, 178, 89, 0, 2423, 2422, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2430, 1, 0, 0, 0, 2425, 2426, 5, 103, 0, 0, 2426, 2427, 5, 2, 0, 0, 2427, 2428, 3, 674, 337, 0, 2428, 2429, 5, 3, 0, 0, 2429, 2431, 1, 0, 0, 0, 2430, 2425, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2435, 1, 0, 0, 0, 2432, 2434, 3, 272, 136, 0, 2433, 2432, 1, 0, 0, 0, 2434, 2437, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2459, 1, 0, 0, 0, 2437, 2435, 1, 0, 0, 0, 2438, 2439, 5, 63, 0, 0, 2439, 2440, 5, 245, 0, 0, 2440, 2441, 3, 144, 72, 0, 2441, 2442, 5, 86, 0, 0, 2442, 2444, 3, 780, 390, 0, 2443, 2445, 3, 144, 72, 0, 2444, 2443, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2447, 1, 0, 0, 0, 2446, 2448, 3, 152, 76, 0, 2447, 2446, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2450, 1, 0, 0, 0, 2449, 2451, 3, 156, 78, 0, 2450, 2449, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 2455, 1, 0, 0, 0, 2452, 2454, 3, 272, 136, 0, 2453, 2452, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2459, 1, 0, 0, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2362, 1, 0, 0, 0, 2458, 2375, 1, 0, 0, 0, 2458, 2402, 1, 0, 0, 0, 2458, 2438, 1, 0, 0, 0, 2459, 143, 1, 0, 0, 0, 2460, 2461, 5, 2, 0, 0, 2461, 2462, 3, 148, 74, 0, 2462, 2463, 5, 3, 0, 0, 2463, 145, 1, 0, 0, 0, 2464, 2465, 5, 2, 0, 0, 2465, 2470, 3, 802, 401, 0, 2466, 2467, 5, 6, 0, 0, 2467, 2469, 3, 802, 401, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2472, 1, 0, 0, 0, 2470, 2468, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2473, 1, 0, 0, 0, 2472, 2470, 1, 0, 0, 0, 2473, 2474, 5, 3, 0, 0, 2474, 147, 1, 0, 0, 0, 2475, 2480, 3, 800, 400, 0, 2476, 2477, 5, 6, 0, 0, 2477, 2479, 3, 800, 400, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2482, 1, 0, 0, 0, 2480, 2478, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 149, 1, 0, 0, 0, 2482, 2480, 1, 0, 0, 0, 2483, 2484, 5, 441, 0, 0, 2484, 2485, 3, 144, 72, 0, 2485, 151, 1, 0, 0, 0, 2486, 2487, 5, 258, 0, 0, 2487, 2488, 7, 24, 0, 0, 2488, 153, 1, 0, 0, 0, 2489, 2490, 3, 362, 181, 0, 2490, 2497, 5, 105, 0, 0, 2491, 2498, 3, 414, 207, 0, 2492, 2493, 5, 278, 0, 0, 2493, 2494, 5, 2, 0, 0, 2494, 2495, 3, 414, 207, 0, 2495, 2496, 5, 3, 0, 0, 2496, 2498, 1, 0, 0, 0, 2497, 2491, 1, 0, 0, 0, 2497, 2492, 1, 0, 0, 0, 2498, 155, 1, 0, 0, 0, 2499, 2501, 3, 158, 79, 0, 2500, 2502, 3, 160, 80, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2508, 1, 0, 0, 0, 2503, 2505, 3, 160, 80, 0, 2504, 2506, 3, 158, 79, 0, 2505, 2504, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2508, 1, 0, 0, 0, 2507, 2499, 1, 0, 0, 0, 2507, 2503, 1, 0, 0, 0, 2508, 157, 1, 0, 0, 0, 2509, 2510, 5, 80, 0, 0, 2510, 2511, 5, 369, 0, 0, 2511, 2512, 3, 162, 81, 0, 2512, 159, 1, 0, 0, 0, 2513, 2514, 5, 80, 0, 0, 2514, 2515, 5, 182, 0, 0, 2515, 2516, 3, 162, 81, 0, 2516, 161, 1, 0, 0, 0, 2517, 2518, 5, 269, 0, 0, 2518, 2527, 5, 132, 0, 0, 2519, 2527, 5, 315, 0, 0, 2520, 2527, 5, 150, 0, 0, 2521, 2522, 5, 333, 0, 0, 2522, 2524, 7, 25, 0, 0, 2523, 2525, 3, 148, 74, 0, 2524, 2523, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2527, 1, 0, 0, 0, 2526, 2517, 1, 0, 0, 0, 2526, 2519, 1, 0, 0, 0, 2526, 2520, 1, 0, 0, 0, 2526, 2521, 1, 0, 0, 0, 2527, 163, 1, 0, 0, 0, 2528, 2529, 5, 238, 0, 0, 2529, 2530, 5, 2, 0, 0, 2530, 2531, 3, 760, 380, 0, 2531, 2532, 5, 3, 0, 0, 2532, 165, 1, 0, 0, 0, 2533, 2534, 5, 285, 0, 0, 2534, 2535, 5, 147, 0, 0, 2535, 2536, 3, 818, 409, 0, 2536, 2537, 5, 2, 0, 0, 2537, 2542, 3, 168, 84, 0, 2538, 2539, 5, 6, 0, 0, 2539, 2541, 3, 168, 84, 0, 2540, 2538, 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, 3, 0, 0, 2546, 167, 1, 0, 0, 0, 2547, 2554, 3, 800, 400, 0, 2548, 2554, 3, 688, 344, 0, 2549, 2550, 5, 2, 0, 0, 2550, 2551, 3, 674, 337, 0, 2551, 2552, 5, 3, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2547, 1, 0, 0, 0, 2553, 2548, 1, 0, 0, 0, 2553, 2549, 1, 0, 0, 0, 2554, 2556, 1, 0, 0, 0, 2555, 2557, 3, 98, 49, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2559, 1, 0, 0, 0, 2558, 2560, 3, 316, 158, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 169, 1, 0, 0, 0, 2561, 2562, 5, 100, 0, 0, 2562, 2563, 3, 818, 409, 0, 2563, 171, 1, 0, 0, 0, 2564, 2565, 5, 105, 0, 0, 2565, 2569, 3, 100, 50, 0, 2566, 2567, 7, 26, 0, 0, 2567, 2569, 5, 277, 0, 0, 2568, 2564, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2569, 173, 1, 0, 0, 0, 2570, 2571, 5, 80, 0, 0, 2571, 2577, 5, 161, 0, 0, 2572, 2578, 5, 191, 0, 0, 2573, 2574, 5, 182, 0, 0, 2574, 2578, 5, 320, 0, 0, 2575, 2576, 5, 292, 0, 0, 2576, 2578, 5, 320, 0, 0, 2577, 2572, 1, 0, 0, 0, 2577, 2573, 1, 0, 0, 0, 2577, 2575, 1, 0, 0, 0, 2578, 175, 1, 0, 0, 0, 2579, 2580, 5, 351, 0, 0, 2580, 2581, 3, 770, 385, 0, 2581, 177, 1, 0, 0, 0, 2582, 2583, 5, 100, 0, 0, 2583, 2584, 5, 226, 0, 0, 2584, 2585, 3, 176, 88, 0, 2585, 179, 1, 0, 0, 0, 2586, 2587, 5, 100, 0, 0, 2587, 2588, 5, 226, 0, 0, 2588, 2589, 3, 818, 409, 0, 2589, 181, 1, 0, 0, 0, 2590, 2591, 5, 46, 0, 0, 2591, 2596, 5, 342, 0, 0, 2592, 2594, 3, 294, 147, 0, 2593, 2592, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 3, 316, 158, 0, 2596, 2593, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2599, 1, 0, 0, 0, 2598, 2600, 3, 144, 72, 0, 2599, 2598, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2611, 5, 80, 0, 0, 2602, 2607, 3, 732, 366, 0, 2603, 2604, 5, 6, 0, 0, 2604, 2606, 3, 732, 366, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2609, 1, 0, 0, 0, 2607, 2605, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2612, 1, 0, 0, 0, 2609, 2607, 1, 0, 0, 0, 2610, 2612, 3, 730, 365, 0, 2611, 2602, 1, 0, 0, 0, 2611, 2610, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 2614, 3, 610, 305, 0, 2614, 183, 1, 0, 0, 0, 2615, 2616, 5, 138, 0, 0, 2616, 2618, 5, 342, 0, 0, 2617, 2619, 3, 422, 211, 0, 2618, 2617, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2621, 3, 316, 158, 0, 2621, 2622, 5, 333, 0, 0, 2622, 2623, 5, 342, 0, 0, 2623, 2624, 3, 812, 406, 0, 2624, 185, 1, 0, 0, 0, 2625, 2627, 5, 46, 0, 0, 2626, 2628, 3, 122, 61, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2631, 5, 92, 0, 0, 2630, 2632, 3, 294, 147, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2634, 3, 188, 94, 0, 2634, 2635, 5, 36, 0, 0, 2635, 2637, 3, 560, 280, 0, 2636, 2638, 3, 190, 95, 0, 2637, 2636, 1, 0, 0, 0, 2637, 2638, 1, 0, 0, 0, 2638, 187, 1, 0, 0, 0, 2639, 2641, 3, 772, 386, 0, 2640, 2642, 3, 146, 73, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 1, 0, 0, 0, 2643, 2645, 3, 170, 85, 0, 2644, 2643, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2647, 1, 0, 0, 0, 2646, 2648, 3, 172, 86, 0, 2647, 2646, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2650, 1, 0, 0, 0, 2649, 2651, 3, 174, 87, 0, 2650, 2649, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2654, 3, 176, 88, 0, 2653, 2652, 1, 0, 0, 0, 2653, 2654, 1, 0, 0, 0, 2654, 189, 1, 0, 0, 0, 2655, 2659, 5, 105, 0, 0, 2656, 2660, 5, 174, 0, 0, 2657, 2658, 5, 269, 0, 0, 2658, 2660, 5, 174, 0, 0, 2659, 2656, 1, 0, 0, 0, 2659, 2657, 1, 0, 0, 0, 2660, 191, 1, 0, 0, 0, 2661, 2663, 5, 46, 0, 0, 2662, 2664, 5, 367, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 5, 259, 0, 0, 2666, 2668, 5, 376, 0, 0, 2667, 2669, 3, 294, 147, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 3, 776, 388, 0, 2671, 2673, 3, 146, 73, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2676, 3, 170, 85, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2678, 1, 0, 0, 0, 2677, 2679, 3, 102, 51, 0, 2678, 2677, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2682, 3, 176, 88, 0, 2681, 2680, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 5, 36, 0, 0, 2684, 2686, 3, 560, 280, 0, 2685, 2687, 3, 190, 95, 0, 2686, 2685, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 193, 1, 0, 0, 0, 2688, 2689, 5, 305, 0, 0, 2689, 2690, 5, 259, 0, 0, 2690, 2692, 5, 376, 0, 0, 2691, 2693, 5, 109, 0, 0, 2692, 2691, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2696, 3, 778, 389, 0, 2695, 2697, 3, 190, 95, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 195, 1, 0, 0, 0, 2698, 2700, 5, 46, 0, 0, 2699, 2701, 3, 122, 61, 0, 2700, 2699, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2704, 5, 328, 0, 0, 2703, 2705, 3, 294, 147, 0, 2704, 2703, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2712, 3, 780, 390, 0, 2707, 2709, 3, 200, 100, 0, 2708, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 2713, 1, 0, 0, 0, 2712, 2708, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 197, 1, 0, 0, 0, 2714, 2715, 5, 138, 0, 0, 2715, 2717, 5, 328, 0, 0, 2716, 2718, 3, 422, 211, 0, 2717, 2716, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2721, 3, 780, 390, 0, 2720, 2722, 3, 200, 100, 0, 2721, 2720, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2721, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 199, 1, 0, 0, 0, 2725, 2726, 5, 36, 0, 0, 2726, 2759, 3, 654, 327, 0, 2727, 2729, 5, 148, 0, 0, 2728, 2730, 3, 202, 101, 0, 2729, 2728, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2759, 1, 0, 0, 0, 2731, 2733, 5, 225, 0, 0, 2732, 2734, 5, 147, 0, 0, 2733, 2732, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2759, 3, 202, 101, 0, 2736, 2737, 7, 27, 0, 0, 2737, 2759, 3, 202, 101, 0, 2738, 2739, 5, 269, 0, 0, 2739, 2759, 7, 28, 0, 0, 2740, 2741, 5, 281, 0, 0, 2741, 2742, 5, 147, 0, 0, 2742, 2759, 3, 800, 400, 0, 2743, 2744, 5, 328, 0, 0, 2744, 2745, 5, 266, 0, 0, 2745, 2759, 3, 316, 158, 0, 2746, 2748, 5, 340, 0, 0, 2747, 2749, 5, 105, 0, 0, 2748, 2747, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2759, 3, 202, 101, 0, 2751, 2753, 5, 314, 0, 0, 2752, 2754, 5, 105, 0, 0, 2753, 2752, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2756, 1, 0, 0, 0, 2755, 2757, 3, 202, 101, 0, 2756, 2755, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2759, 1, 0, 0, 0, 2758, 2725, 1, 0, 0, 0, 2758, 2727, 1, 0, 0, 0, 2758, 2731, 1, 0, 0, 0, 2758, 2736, 1, 0, 0, 0, 2758, 2738, 1, 0, 0, 0, 2758, 2740, 1, 0, 0, 0, 2758, 2743, 1, 0, 0, 0, 2758, 2746, 1, 0, 0, 0, 2758, 2751, 1, 0, 0, 0, 2759, 201, 1, 0, 0, 0, 2760, 2762, 7, 29, 0, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2766, 5, 573, 0, 0, 2764, 2766, 3, 812, 406, 0, 2765, 2761, 1, 0, 0, 0, 2765, 2764, 1, 0, 0, 0, 2766, 203, 1, 0, 0, 0, 2767, 2769, 5, 46, 0, 0, 2768, 2770, 3, 366, 183, 0, 2769, 2768, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2773, 5, 359, 0, 0, 2772, 2771, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2776, 5, 295, 0, 0, 2775, 2774, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 5, 247, 0, 0, 2778, 2791, 3, 818, 409, 0, 2779, 2780, 5, 215, 0, 0, 2780, 2783, 3, 316, 158, 0, 2781, 2782, 5, 239, 0, 0, 2782, 2784, 3, 316, 158, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2789, 1, 0, 0, 0, 2785, 2786, 5, 373, 0, 0, 2786, 2790, 3, 316, 158, 0, 2787, 2788, 5, 269, 0, 0, 2788, 2790, 5, 373, 0, 0, 2789, 2785, 1, 0, 0, 0, 2789, 2787, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 2792, 1, 0, 0, 0, 2791, 2779, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 205, 1, 0, 0, 0, 2793, 2794, 5, 46, 0, 0, 2794, 2797, 3, 176, 88, 0, 2795, 2796, 5, 282, 0, 0, 2796, 2798, 3, 814, 407, 0, 2797, 2795, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2800, 5, 255, 0, 0, 2800, 2802, 3, 808, 404, 0, 2801, 2803, 3, 102, 51, 0, 2802, 2801, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 207, 1, 0, 0, 0, 2804, 2805, 5, 46, 0, 0, 2805, 2807, 5, 204, 0, 0, 2806, 2808, 3, 294, 147, 0, 2807, 2806, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, 0, 2809, 2811, 3, 818, 409, 0, 2810, 2812, 5, 105, 0, 0, 2811, 2810, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2820, 1, 0, 0, 0, 2813, 2814, 5, 323, 0, 0, 2814, 2819, 3, 790, 395, 0, 2815, 2816, 7, 30, 0, 0, 2816, 2819, 3, 58, 29, 0, 2817, 2819, 5, 150, 0, 0, 2818, 2813, 1, 0, 0, 0, 2818, 2815, 1, 0, 0, 0, 2818, 2817, 1, 0, 0, 0, 2819, 2822, 1, 0, 0, 0, 2820, 2818, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 209, 1, 0, 0, 0, 2822, 2820, 1, 0, 0, 0, 2823, 2824, 5, 138, 0, 0, 2824, 2825, 5, 204, 0, 0, 2825, 2826, 3, 818, 409, 0, 2826, 2831, 5, 369, 0, 0, 2827, 2828, 5, 94, 0, 0, 2828, 2830, 3, 58, 29, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2833, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 211, 1, 0, 0, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2835, 5, 138, 0, 0, 2835, 2836, 5, 204, 0, 0, 2836, 2837, 3, 818, 409, 0, 2837, 2870, 7, 6, 0, 0, 2838, 2839, 5, 443, 0, 0, 2839, 2840, 5, 62, 0, 0, 2840, 2841, 3, 652, 326, 0, 2841, 2842, 5, 247, 0, 0, 2842, 2843, 3, 818, 409, 0, 2843, 2871, 1, 0, 0, 0, 2844, 2845, 5, 442, 0, 0, 2845, 2871, 3, 374, 187, 0, 2846, 2847, 5, 296, 0, 0, 2847, 2871, 3, 378, 189, 0, 2848, 2849, 5, 278, 0, 0, 2849, 2850, 7, 31, 0, 0, 2850, 2851, 3, 316, 158, 0, 2851, 2852, 3, 170, 85, 0, 2852, 2871, 1, 0, 0, 0, 2853, 2854, 5, 278, 0, 0, 2854, 2871, 3, 416, 208, 0, 2855, 2856, 5, 211, 0, 0, 2856, 2871, 3, 382, 191, 0, 2857, 2858, 7, 32, 0, 0, 2858, 2871, 3, 652, 326, 0, 2859, 2860, 5, 41, 0, 0, 2860, 2861, 5, 2, 0, 0, 2861, 2862, 3, 652, 326, 0, 2862, 2863, 5, 36, 0, 0, 2863, 2864, 3, 652, 326, 0, 2864, 2865, 5, 3, 0, 0, 2865, 2871, 1, 0, 0, 0, 2866, 2867, 5, 136, 0, 0, 2867, 2871, 3, 394, 197, 0, 2868, 2871, 3, 312, 156, 0, 2869, 2871, 3, 310, 155, 0, 2870, 2838, 1, 0, 0, 0, 2870, 2844, 1, 0, 0, 0, 2870, 2846, 1, 0, 0, 0, 2870, 2848, 1, 0, 0, 0, 2870, 2853, 1, 0, 0, 0, 2870, 2855, 1, 0, 0, 0, 2870, 2857, 1, 0, 0, 0, 2870, 2859, 1, 0, 0, 0, 2870, 2866, 1, 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2870, 2869, 1, 0, 0, 0, 2871, 213, 1, 0, 0, 0, 2872, 2873, 5, 46, 0, 0, 2873, 2874, 5, 63, 0, 0, 2874, 2875, 5, 174, 0, 0, 2875, 2876, 5, 381, 0, 0, 2876, 2882, 3, 818, 409, 0, 2877, 2879, 3, 216, 108, 0, 2878, 2877, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2883, 1, 0, 0, 0, 2882, 2878, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2885, 1, 0, 0, 0, 2884, 2886, 3, 220, 110, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 215, 1, 0, 0, 0, 2887, 2889, 7, 33, 0, 0, 2888, 2890, 3, 316, 158, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2894, 1, 0, 0, 0, 2891, 2892, 5, 269, 0, 0, 2892, 2894, 7, 33, 0, 0, 2893, 2887, 1, 0, 0, 0, 2893, 2891, 1, 0, 0, 0, 2894, 217, 1, 0, 0, 0, 2895, 2896, 5, 138, 0, 0, 2896, 2897, 5, 63, 0, 0, 2897, 2898, 5, 174, 0, 0, 2898, 2899, 5, 381, 0, 0, 2899, 2913, 3, 818, 409, 0, 2900, 2902, 3, 216, 108, 0, 2901, 2900, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2901, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2906, 1, 0, 0, 0, 2905, 2901, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2914, 3, 222, 111, 0, 2908, 2910, 3, 216, 108, 0, 2909, 2908, 1, 0, 0, 0, 2910, 2911, 1, 0, 0, 0, 2911, 2909, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2914, 1, 0, 0, 0, 2913, 2905, 1, 0, 0, 0, 2913, 2909, 1, 0, 0, 0, 2914, 219, 1, 0, 0, 0, 2915, 2916, 5, 280, 0, 0, 2916, 2917, 5, 2, 0, 0, 2917, 2922, 3, 226, 113, 0, 2918, 2919, 5, 6, 0, 0, 2919, 2921, 3, 226, 113, 0, 2920, 2918, 1, 0, 0, 0, 2921, 2924, 1, 0, 0, 0, 2922, 2920, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2925, 1, 0, 0, 0, 2924, 2922, 1, 0, 0, 0, 2925, 2926, 5, 3, 0, 0, 2926, 221, 1, 0, 0, 0, 2927, 2928, 5, 280, 0, 0, 2928, 2929, 5, 2, 0, 0, 2929, 2934, 3, 224, 112, 0, 2930, 2931, 5, 6, 0, 0, 2931, 2933, 3, 224, 112, 0, 2932, 2930, 1, 0, 0, 0, 2933, 2936, 1, 0, 0, 0, 2934, 2932, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2937, 1, 0, 0, 0, 2936, 2934, 1, 0, 0, 0, 2937, 2938, 5, 3, 0, 0, 2938, 223, 1, 0, 0, 0, 2939, 2940, 7, 34, 0, 0, 2940, 2941, 3, 226, 113, 0, 2941, 225, 1, 0, 0, 0, 2942, 2943, 3, 824, 412, 0, 2943, 2944, 3, 808, 404, 0, 2944, 227, 1, 0, 0, 0, 2945, 2946, 5, 46, 0, 0, 2946, 2948, 5, 331, 0, 0, 2947, 2949, 3, 294, 147, 0, 2948, 2947, 1, 0, 0, 0, 2948, 2949, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 2953, 3, 818, 409, 0, 2951, 2952, 5, 360, 0, 0, 2952, 2954, 3, 808, 404, 0, 2953, 2951, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2956, 1, 0, 0, 0, 2955, 2957, 3, 230, 115, 0, 2956, 2955, 1, 0, 0, 0, 2956, 2957, 1, 0, 0, 0, 2957, 2958, 1, 0, 0, 0, 2958, 2959, 5, 63, 0, 0, 2959, 2960, 5, 174, 0, 0, 2960, 2961, 5, 381, 0, 0, 2961, 2963, 3, 818, 409, 0, 2962, 2964, 3, 220, 110, 0, 2963, 2962, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 229, 1, 0, 0, 0, 2965, 2968, 5, 375, 0, 0, 2966, 2969, 3, 808, 404, 0, 2967, 2969, 5, 78, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2967, 1, 0, 0, 0, 2969, 231, 1, 0, 0, 0, 2970, 2971, 5, 138, 0, 0, 2971, 2972, 5, 331, 0, 0, 2972, 2978, 3, 818, 409, 0, 2973, 2979, 3, 222, 111, 0, 2974, 2976, 3, 230, 115, 0, 2975, 2977, 3, 222, 111, 0, 2976, 2975, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2979, 1, 0, 0, 0, 2978, 2973, 1, 0, 0, 0, 2978, 2974, 1, 0, 0, 0, 2979, 233, 1, 0, 0, 0, 2980, 2981, 5, 46, 0, 0, 2981, 2982, 5, 63, 0, 0, 2982, 2984, 5, 92, 0, 0, 2983, 2985, 3, 294, 147, 0, 2984, 2983, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 3, 772, 386, 0, 2987, 2989, 5, 2, 0, 0, 2988, 2990, 3, 126, 63, 0, 2989, 2988, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 5, 3, 0, 0, 2992, 2994, 3, 164, 82, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2996, 5, 331, 0, 0, 2996, 2998, 3, 818, 409, 0, 2997, 2999, 3, 220, 110, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3020, 1, 0, 0, 0, 3000, 3001, 5, 46, 0, 0, 3001, 3002, 5, 63, 0, 0, 3002, 3004, 5, 92, 0, 0, 3003, 3005, 3, 294, 147, 0, 3004, 3003, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 3, 772, 386, 0, 3007, 3008, 5, 285, 0, 0, 3008, 3009, 5, 275, 0, 0, 3009, 3011, 3, 774, 387, 0, 3010, 3012, 3, 124, 62, 0, 3011, 3010, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3014, 3, 106, 53, 0, 3014, 3015, 5, 331, 0, 0, 3015, 3017, 3, 818, 409, 0, 3016, 3018, 3, 220, 110, 0, 3017, 3016, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3020, 1, 0, 0, 0, 3019, 2980, 1, 0, 0, 0, 3019, 3000, 1, 0, 0, 0, 3020, 235, 1, 0, 0, 0, 3021, 3022, 5, 444, 0, 0, 3022, 3023, 5, 63, 0, 0, 3023, 3024, 5, 323, 0, 0, 3024, 3034, 3, 790, 395, 0, 3025, 3026, 5, 74, 0, 0, 3026, 3029, 5, 94, 0, 0, 3027, 3029, 5, 59, 0, 0, 3028, 3025, 1, 0, 0, 0, 3028, 3027, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3031, 5, 2, 0, 0, 3031, 3032, 3, 628, 314, 0, 3032, 3033, 5, 3, 0, 0, 3033, 3035, 1, 0, 0, 0, 3034, 3028, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3037, 5, 64, 0, 0, 3037, 3038, 5, 331, 0, 0, 3038, 3039, 3, 818, 409, 0, 3039, 3040, 5, 71, 0, 0, 3040, 3042, 3, 818, 409, 0, 3041, 3043, 3, 220, 110, 0, 3042, 3041, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 237, 1, 0, 0, 0, 3044, 3045, 5, 46, 0, 0, 3045, 3046, 5, 99, 0, 0, 3046, 3048, 5, 257, 0, 0, 3047, 3049, 3, 294, 147, 0, 3048, 3047, 1, 0, 0, 0, 3048, 3049, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3053, 5, 62, 0, 0, 3051, 3054, 3, 814, 407, 0, 3052, 3054, 5, 99, 0, 0, 3053, 3051, 1, 0, 0, 0, 3053, 3052, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3056, 5, 331, 0, 0, 3056, 3058, 3, 818, 409, 0, 3057, 3059, 3, 220, 110, 0, 3058, 3057, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 239, 1, 0, 0, 0, 3060, 3061, 5, 138, 0, 0, 3061, 3062, 5, 99, 0, 0, 3062, 3063, 5, 257, 0, 0, 3063, 3066, 5, 62, 0, 0, 3064, 3067, 3, 814, 407, 0, 3065, 3067, 5, 99, 0, 0, 3066, 3064, 1, 0, 0, 0, 3066, 3065, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 5, 331, 0, 0, 3069, 3070, 3, 818, 409, 0, 3070, 3071, 3, 222, 111, 0, 3071, 241, 1, 0, 0, 0, 3072, 3073, 5, 46, 0, 0, 3073, 3074, 5, 445, 0, 0, 3074, 3075, 3, 818, 409, 0, 3075, 3076, 5, 80, 0, 0, 3076, 3083, 3, 780, 390, 0, 3077, 3081, 5, 36, 0, 0, 3078, 3082, 5, 541, 0, 0, 3079, 3082, 5, 542, 0, 0, 3080, 3082, 3, 826, 413, 0, 3081, 3078, 1, 0, 0, 0, 3081, 3079, 1, 0, 0, 0, 3081, 3080, 1, 0, 0, 0, 3082, 3084, 1, 0, 0, 0, 3083, 3077, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3087, 1, 0, 0, 0, 3085, 3086, 5, 62, 0, 0, 3086, 3088, 7, 35, 0, 0, 3087, 3085, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3091, 1, 0, 0, 0, 3089, 3090, 5, 94, 0, 0, 3090, 3092, 3, 816, 408, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3094, 1, 0, 0, 0, 3093, 3095, 3, 250, 125, 0, 3094, 3093, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3097, 1, 0, 0, 0, 3096, 3098, 3, 252, 126, 0, 3097, 3096, 1, 0, 0, 0, 3097, 3098, 1, 0, 0, 0, 3098, 243, 1, 0, 0, 0, 3099, 3100, 5, 138, 0, 0, 3100, 3101, 5, 445, 0, 0, 3101, 3102, 3, 818, 409, 0, 3102, 3103, 5, 80, 0, 0, 3103, 3106, 3, 780, 390, 0, 3104, 3105, 5, 94, 0, 0, 3105, 3107, 3, 816, 408, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 3109, 1, 0, 0, 0, 3108, 3110, 3, 250, 125, 0, 3109, 3108, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3112, 1, 0, 0, 0, 3111, 3113, 3, 252, 126, 0, 3112, 3111, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 245, 1, 0, 0, 0, 3114, 3115, 5, 138, 0, 0, 3115, 3116, 5, 296, 0, 0, 3116, 3118, 3, 796, 398, 0, 3117, 3119, 3, 368, 184, 0, 3118, 3117, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3146, 1, 0, 0, 0, 3120, 3124, 3, 248, 124, 0, 3121, 3123, 3, 248, 124, 0, 3122, 3121, 1, 0, 0, 0, 3123, 3126, 1, 0, 0, 0, 3124, 3122, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3128, 1, 0, 0, 0, 3126, 3124, 1, 0, 0, 0, 3127, 3129, 5, 315, 0, 0, 3128, 3127, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3147, 1, 0, 0, 0, 3130, 3131, 5, 309, 0, 0, 3131, 3132, 5, 94, 0, 0, 3132, 3147, 3, 798, 399, 0, 3133, 3134, 5, 282, 0, 0, 3134, 3135, 5, 94, 0, 0, 3135, 3147, 3, 814, 407, 0, 3136, 3137, 5, 333, 0, 0, 3137, 3138, 5, 323, 0, 0, 3138, 3147, 3, 32, 16, 0, 3139, 3141, 5, 269, 0, 0, 3140, 3139, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 5, 462, 0, 0, 3143, 3144, 5, 80, 0, 0, 3144, 3145, 5, 204, 0, 0, 3145, 3147, 3, 818, 409, 0, 3146, 3120, 1, 0, 0, 0, 3146, 3130, 1, 0, 0, 0, 3146, 3133, 1, 0, 0, 0, 3146, 3136, 1, 0, 0, 0, 3146, 3140, 1, 0, 0, 0, 3147, 247, 1, 0, 0, 0, 3148, 3150, 5, 205, 0, 0, 3149, 3148, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3152, 5, 327, 0, 0, 3152, 3159, 5, 243, 0, 0, 3153, 3155, 5, 205, 0, 0, 3154, 3153, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 5, 327, 0, 0, 3157, 3159, 5, 181, 0, 0, 3158, 3149, 1, 0, 0, 0, 3158, 3154, 1, 0, 0, 0, 3159, 3178, 1, 0, 0, 0, 3160, 3161, 5, 333, 0, 0, 3161, 3162, 3, 818, 409, 0, 3162, 3165, 7, 36, 0, 0, 3163, 3166, 3, 818, 409, 0, 3164, 3166, 5, 53, 0, 0, 3165, 3163, 1, 0, 0, 0, 3165, 3164, 1, 0, 0, 0, 3166, 3178, 1, 0, 0, 0, 3167, 3168, 5, 333, 0, 0, 3168, 3169, 3, 818, 409, 0, 3169, 3170, 5, 64, 0, 0, 3170, 3171, 5, 434, 0, 0, 3171, 3178, 1, 0, 0, 0, 3172, 3175, 5, 313, 0, 0, 3173, 3176, 3, 818, 409, 0, 3174, 3176, 5, 30, 0, 0, 3175, 3173, 1, 0, 0, 0, 3175, 3174, 1, 0, 0, 0, 3176, 3178, 1, 0, 0, 0, 3177, 3158, 1, 0, 0, 0, 3177, 3160, 1, 0, 0, 0, 3177, 3167, 1, 0, 0, 0, 3177, 3172, 1, 0, 0, 0, 3178, 249, 1, 0, 0, 0, 3179, 3180, 5, 100, 0, 0, 3180, 3181, 5, 2, 0, 0, 3181, 3182, 3, 674, 337, 0, 3182, 3183, 5, 3, 0, 0, 3183, 251, 1, 0, 0, 0, 3184, 3185, 5, 105, 0, 0, 3185, 3186, 5, 42, 0, 0, 3186, 3187, 5, 2, 0, 0, 3187, 3188, 3, 674, 337, 0, 3188, 3189, 5, 3, 0, 0, 3189, 253, 1, 0, 0, 0, 3190, 3191, 5, 46, 0, 0, 3191, 3192, 5, 131, 0, 0, 3192, 3193, 5, 446, 0, 0, 3193, 3194, 3, 818, 409, 0, 3194, 3195, 5, 360, 0, 0, 3195, 3196, 7, 37, 0, 0, 3196, 3197, 5, 215, 0, 0, 3197, 3198, 3, 316, 158, 0, 3198, 255, 1, 0, 0, 0, 3199, 3201, 5, 46, 0, 0, 3200, 3202, 3, 366, 183, 0, 3201, 3200, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3204, 5, 357, 0, 0, 3204, 3205, 3, 818, 409, 0, 3205, 3206, 3, 258, 129, 0, 3206, 3207, 3, 260, 130, 0, 3207, 3208, 5, 80, 0, 0, 3208, 3220, 3, 774, 387, 0, 3209, 3216, 5, 447, 0, 0, 3210, 3211, 7, 38, 0, 0, 3211, 3213, 7, 39, 0, 0, 3212, 3214, 5, 36, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 3, 818, 409, 0, 3216, 3210, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3216, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3221, 1, 0, 0, 0, 3220, 3209, 1, 0, 0, 0, 3220, 3221, 1, 0, 0, 0, 3221, 3227, 1, 0, 0, 0, 3222, 3224, 5, 62, 0, 0, 3223, 3225, 5, 192, 0, 0, 3224, 3223, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 7, 40, 0, 0, 3227, 3222, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3230, 1, 0, 0, 0, 3229, 3231, 3, 264, 132, 0, 3230, 3229, 1, 0, 0, 0, 3230, 3231, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3233, 5, 202, 0, 0, 3233, 3234, 3, 266, 133, 0, 3234, 3235, 5, 2, 0, 0, 3235, 3236, 3, 268, 134, 0, 3236, 3237, 5, 3, 0, 0, 3237, 3278, 1, 0, 0, 0, 3238, 3240, 5, 46, 0, 0, 3239, 3241, 3, 366, 183, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3244, 5, 45, 0, 0, 3243, 3242, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3246, 5, 357, 0, 0, 3246, 3247, 3, 818, 409, 0, 3247, 3248, 3, 258, 129, 0, 3248, 3249, 3, 260, 130, 0, 3249, 3250, 5, 80, 0, 0, 3250, 3253, 3, 774, 387, 0, 3251, 3252, 5, 64, 0, 0, 3252, 3254, 3, 780, 390, 0, 3253, 3251, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3258, 1, 0, 0, 0, 3255, 3257, 3, 272, 136, 0, 3256, 3255, 1, 0, 0, 0, 3257, 3260, 1, 0, 0, 0, 3258, 3256, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3266, 1, 0, 0, 0, 3260, 3258, 1, 0, 0, 0, 3261, 3263, 5, 62, 0, 0, 3262, 3264, 5, 192, 0, 0, 3263, 3262, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 7, 40, 0, 0, 3266, 3261, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3269, 1, 0, 0, 0, 3268, 3270, 3, 264, 132, 0, 3269, 3268, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3272, 5, 202, 0, 0, 3272, 3273, 3, 266, 133, 0, 3273, 3274, 5, 2, 0, 0, 3274, 3275, 3, 268, 134, 0, 3275, 3276, 5, 3, 0, 0, 3276, 3278, 1, 0, 0, 0, 3277, 3199, 1, 0, 0, 0, 3277, 3238, 1, 0, 0, 0, 3278, 257, 1, 0, 0, 0, 3279, 3284, 5, 145, 0, 0, 3280, 3284, 5, 135, 0, 0, 3281, 3282, 5, 242, 0, 0, 3282, 3284, 5, 275, 0, 0, 3283, 3279, 1, 0, 0, 0, 3283, 3280, 1, 0, 0, 0, 3283, 3281, 1, 0, 0, 0, 3284, 259, 1, 0, 0, 0, 3285, 3290, 3, 262, 131, 0, 3286, 3287, 5, 82, 0, 0, 3287, 3289, 3, 262, 131, 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, 261, 1, 0, 0, 0, 3292, 3290, 1, 0, 0, 0, 3293, 3302, 5, 241, 0, 0, 3294, 3302, 5, 182, 0, 0, 3295, 3298, 5, 369, 0, 0, 3296, 3297, 5, 275, 0, 0, 3297, 3299, 3, 148, 74, 0, 3298, 3296, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3302, 1, 0, 0, 0, 3300, 3302, 5, 358, 0, 0, 3301, 3293, 1, 0, 0, 0, 3301, 3294, 1, 0, 0, 0, 3301, 3295, 1, 0, 0, 0, 3301, 3300, 1, 0, 0, 0, 3302, 263, 1, 0, 0, 0, 3303, 3304, 5, 102, 0, 0, 3304, 3305, 5, 2, 0, 0, 3305, 3306, 3, 674, 337, 0, 3306, 3307, 5, 3, 0, 0, 3307, 265, 1, 0, 0, 0, 3308, 3309, 5, 211, 0, 0, 3309, 3313, 3, 806, 403, 0, 3310, 3311, 5, 296, 0, 0, 3311, 3313, 3, 796, 398, 0, 3312, 3308, 1, 0, 0, 0, 3312, 3310, 1, 0, 0, 0, 3313, 267, 1, 0, 0, 0, 3314, 3317, 3, 270, 135, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3314, 1, 0, 0, 0, 3316, 3315, 1, 0, 0, 0, 3317, 3322, 1, 0, 0, 0, 3318, 3319, 5, 6, 0, 0, 3319, 3321, 3, 270, 135, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 269, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3325, 3330, 5, 571, 0, 0, 3326, 3330, 5, 573, 0, 0, 3327, 3330, 3, 808, 404, 0, 3328, 3330, 3, 824, 412, 0, 3329, 3325, 1, 0, 0, 0, 3329, 3326, 1, 0, 0, 0, 3329, 3327, 1, 0, 0, 0, 3329, 3328, 1, 0, 0, 0, 3330, 271, 1, 0, 0, 0, 3331, 3333, 5, 77, 0, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3342, 5, 54, 0, 0, 3335, 3336, 5, 69, 0, 0, 3336, 3342, 7, 9, 0, 0, 3337, 3338, 5, 77, 0, 0, 3338, 3342, 5, 371, 0, 0, 3339, 3340, 5, 269, 0, 0, 3340, 3342, 5, 228, 0, 0, 3341, 3332, 1, 0, 0, 0, 3341, 3335, 1, 0, 0, 0, 3341, 3337, 1, 0, 0, 0, 3341, 3339, 1, 0, 0, 0, 3342, 273, 1, 0, 0, 0, 3343, 3344, 5, 46, 0, 0, 3344, 3345, 5, 198, 0, 0, 3345, 3346, 5, 357, 0, 0, 3346, 3347, 3, 818, 409, 0, 3347, 3348, 5, 80, 0, 0, 3348, 3358, 3, 824, 412, 0, 3349, 3350, 5, 102, 0, 0, 3350, 3355, 3, 276, 138, 0, 3351, 3352, 5, 33, 0, 0, 3352, 3354, 3, 276, 138, 0, 3353, 3351, 1, 0, 0, 0, 3354, 3357, 1, 0, 0, 0, 3355, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3359, 1, 0, 0, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3349, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3361, 5, 202, 0, 0, 3361, 3362, 3, 266, 133, 0, 3362, 3363, 5, 2, 0, 0, 3363, 3364, 5, 3, 0, 0, 3364, 275, 1, 0, 0, 0, 3365, 3366, 3, 818, 409, 0, 3366, 3367, 5, 68, 0, 0, 3367, 3368, 5, 2, 0, 0, 3368, 3372, 3, 808, 404, 0, 3369, 3371, 3, 462, 231, 0, 3370, 3369, 1, 0, 0, 0, 3371, 3374, 1, 0, 0, 0, 3372, 3370, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3375, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3375, 3376, 5, 3, 0, 0, 3376, 277, 1, 0, 0, 0, 3377, 3378, 5, 138, 0, 0, 3378, 3379, 5, 198, 0, 0, 3379, 3380, 5, 357, 0, 0, 3380, 3386, 3, 818, 409, 0, 3381, 3383, 5, 193, 0, 0, 3382, 3384, 7, 14, 0, 0, 3383, 3382, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 3387, 1, 0, 0, 0, 3385, 3387, 5, 186, 0, 0, 3386, 3381, 1, 0, 0, 0, 3386, 3385, 1, 0, 0, 0, 3387, 279, 1, 0, 0, 0, 3388, 3389, 5, 46, 0, 0, 3389, 3390, 5, 140, 0, 0, 3390, 3391, 3, 316, 158, 0, 3391, 3392, 5, 42, 0, 0, 3392, 3393, 5, 2, 0, 0, 3393, 3394, 3, 674, 337, 0, 3394, 3398, 5, 3, 0, 0, 3395, 3397, 3, 272, 136, 0, 3396, 3395, 1, 0, 0, 0, 3397, 3400, 1, 0, 0, 0, 3398, 3396, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 281, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3403, 5, 46, 0, 0, 3402, 3404, 3, 366, 183, 0, 3403, 3402, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3406, 5, 136, 0, 0, 3406, 3421, 3, 806, 403, 0, 3407, 3408, 3, 392, 196, 0, 3408, 3409, 3, 284, 142, 0, 3409, 3422, 1, 0, 0, 0, 3410, 3411, 5, 2, 0, 0, 3411, 3416, 3, 290, 145, 0, 3412, 3413, 5, 6, 0, 0, 3413, 3415, 3, 290, 145, 0, 3414, 3412, 1, 0, 0, 0, 3415, 3418, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3419, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3419, 3420, 5, 3, 0, 0, 3420, 3422, 1, 0, 0, 0, 3421, 3407, 1, 0, 0, 0, 3421, 3410, 1, 0, 0, 0, 3422, 3480, 1, 0, 0, 0, 3423, 3424, 5, 46, 0, 0, 3424, 3425, 5, 278, 0, 0, 3425, 3426, 3, 414, 207, 0, 3426, 3427, 3, 284, 142, 0, 3427, 3480, 1, 0, 0, 0, 3428, 3429, 5, 46, 0, 0, 3429, 3430, 5, 360, 0, 0, 3430, 3431, 3, 316, 158, 0, 3431, 3449, 5, 36, 0, 0, 3432, 3434, 5, 2, 0, 0, 3433, 3435, 3, 642, 321, 0, 3434, 3433, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3450, 5, 3, 0, 0, 3437, 3438, 5, 196, 0, 0, 3438, 3446, 5, 2, 0, 0, 3439, 3443, 3, 808, 404, 0, 3440, 3442, 3, 462, 231, 0, 3441, 3440, 1, 0, 0, 0, 3442, 3445, 1, 0, 0, 0, 3443, 3441, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3447, 1, 0, 0, 0, 3445, 3443, 1, 0, 0, 0, 3446, 3439, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 3450, 5, 3, 0, 0, 3449, 3432, 1, 0, 0, 0, 3449, 3437, 1, 0, 0, 0, 3450, 3480, 1, 0, 0, 0, 3451, 3452, 5, 46, 0, 0, 3452, 3453, 5, 360, 0, 0, 3453, 3459, 3, 316, 158, 0, 3454, 3455, 5, 36, 0, 0, 3455, 3457, 5, 299, 0, 0, 3456, 3454, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3460, 3, 284, 142, 0, 3459, 3456, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 3480, 1, 0, 0, 0, 3461, 3462, 5, 46, 0, 0, 3462, 3463, 5, 355, 0, 0, 3463, 3464, 5, 325, 0, 0, 3464, 3465, 7, 41, 0, 0, 3465, 3466, 3, 316, 158, 0, 3466, 3467, 3, 284, 142, 0, 3467, 3480, 1, 0, 0, 0, 3468, 3469, 5, 46, 0, 0, 3469, 3471, 5, 108, 0, 0, 3470, 3472, 3, 294, 147, 0, 3471, 3470, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3477, 3, 316, 158, 0, 3474, 3478, 3, 284, 142, 0, 3475, 3476, 5, 64, 0, 0, 3476, 3478, 3, 316, 158, 0, 3477, 3474, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3480, 1, 0, 0, 0, 3479, 3401, 1, 0, 0, 0, 3479, 3423, 1, 0, 0, 0, 3479, 3428, 1, 0, 0, 0, 3479, 3451, 1, 0, 0, 0, 3479, 3461, 1, 0, 0, 0, 3479, 3468, 1, 0, 0, 0, 3480, 283, 1, 0, 0, 0, 3481, 3482, 5, 2, 0, 0, 3482, 3487, 3, 286, 143, 0, 3483, 3484, 5, 6, 0, 0, 3484, 3486, 3, 286, 143, 0, 3485, 3483, 1, 0, 0, 0, 3486, 3489, 1, 0, 0, 0, 3487, 3485, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3490, 1, 0, 0, 0, 3489, 3487, 1, 0, 0, 0, 3490, 3491, 5, 3, 0, 0, 3491, 285, 1, 0, 0, 0, 3492, 3495, 3, 824, 412, 0, 3493, 3494, 5, 10, 0, 0, 3494, 3496, 3, 288, 144, 0, 3495, 3493, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 287, 1, 0, 0, 0, 3497, 3504, 3, 388, 194, 0, 3498, 3504, 3, 834, 417, 0, 3499, 3504, 3, 726, 363, 0, 3500, 3504, 3, 202, 101, 0, 3501, 3504, 3, 808, 404, 0, 3502, 3504, 5, 407, 0, 0, 3503, 3497, 1, 0, 0, 0, 3503, 3498, 1, 0, 0, 0, 3503, 3499, 1, 0, 0, 0, 3503, 3500, 1, 0, 0, 0, 3503, 3501, 1, 0, 0, 0, 3503, 3502, 1, 0, 0, 0, 3504, 289, 1, 0, 0, 0, 3505, 3506, 3, 826, 413, 0, 3506, 3507, 5, 10, 0, 0, 3507, 3508, 3, 288, 144, 0, 3508, 291, 1, 0, 0, 0, 3509, 3510, 5, 138, 0, 0, 3510, 3511, 5, 360, 0, 0, 3511, 3512, 3, 316, 158, 0, 3512, 3513, 5, 133, 0, 0, 3513, 3515, 5, 450, 0, 0, 3514, 3516, 3, 294, 147, 0, 3515, 3514, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3520, 3, 808, 404, 0, 3518, 3519, 7, 42, 0, 0, 3519, 3521, 3, 808, 404, 0, 3520, 3518, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3532, 1, 0, 0, 0, 3522, 3523, 5, 138, 0, 0, 3523, 3524, 5, 360, 0, 0, 3524, 3525, 3, 316, 158, 0, 3525, 3526, 5, 309, 0, 0, 3526, 3527, 5, 450, 0, 0, 3527, 3528, 3, 808, 404, 0, 3528, 3529, 5, 94, 0, 0, 3529, 3530, 3, 808, 404, 0, 3530, 3532, 1, 0, 0, 0, 3531, 3509, 1, 0, 0, 0, 3531, 3522, 1, 0, 0, 0, 3532, 293, 1, 0, 0, 0, 3533, 3534, 5, 220, 0, 0, 3534, 3535, 5, 77, 0, 0, 3535, 3536, 5, 396, 0, 0, 3536, 295, 1, 0, 0, 0, 3537, 3538, 5, 46, 0, 0, 3538, 3539, 5, 278, 0, 0, 3539, 3540, 5, 156, 0, 0, 3540, 3542, 3, 316, 158, 0, 3541, 3543, 5, 53, 0, 0, 3542, 3541, 1, 0, 0, 0, 3542, 3543, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3545, 5, 62, 0, 0, 3545, 3546, 5, 360, 0, 0, 3546, 3547, 3, 652, 326, 0, 3547, 3550, 3, 170, 85, 0, 3548, 3549, 5, 206, 0, 0, 3549, 3551, 3, 316, 158, 0, 3550, 3548, 1, 0, 0, 0, 3550, 3551, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3553, 5, 36, 0, 0, 3553, 3558, 3, 298, 149, 0, 3554, 3555, 5, 6, 0, 0, 3555, 3557, 3, 298, 149, 0, 3556, 3554, 1, 0, 0, 0, 3557, 3560, 1, 0, 0, 0, 3558, 3556, 1, 0, 0, 0, 3558, 3559, 1, 0, 0, 0, 3559, 297, 1, 0, 0, 0, 3560, 3558, 1, 0, 0, 0, 3561, 3562, 5, 278, 0, 0, 3562, 3563, 5, 571, 0, 0, 3563, 3565, 3, 414, 207, 0, 3564, 3566, 3, 412, 206, 0, 3565, 3564, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3574, 1, 0, 0, 0, 3567, 3572, 5, 62, 0, 0, 3568, 3573, 5, 325, 0, 0, 3569, 3570, 5, 83, 0, 0, 3570, 3571, 5, 147, 0, 0, 3571, 3573, 3, 316, 158, 0, 3572, 3568, 1, 0, 0, 0, 3572, 3569, 1, 0, 0, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3567, 1, 0, 0, 0, 3574, 3575, 1, 0, 0, 0, 3575, 3577, 1, 0, 0, 0, 3576, 3578, 5, 302, 0, 0, 3577, 3576, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3588, 1, 0, 0, 0, 3579, 3580, 5, 211, 0, 0, 3580, 3582, 5, 571, 0, 0, 3581, 3583, 3, 528, 264, 0, 3582, 3581, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3588, 3, 382, 191, 0, 3585, 3586, 5, 345, 0, 0, 3586, 3588, 3, 652, 326, 0, 3587, 3561, 1, 0, 0, 0, 3587, 3579, 1, 0, 0, 0, 3587, 3585, 1, 0, 0, 0, 3588, 299, 1, 0, 0, 0, 3589, 3590, 5, 46, 0, 0, 3590, 3591, 5, 278, 0, 0, 3591, 3592, 5, 206, 0, 0, 3592, 3593, 3, 316, 158, 0, 3593, 3594, 3, 170, 85, 0, 3594, 301, 1, 0, 0, 0, 3595, 3596, 5, 138, 0, 0, 3596, 3597, 5, 278, 0, 0, 3597, 3598, 5, 206, 0, 0, 3598, 3599, 3, 316, 158, 0, 3599, 3618, 3, 170, 85, 0, 3600, 3601, 5, 133, 0, 0, 3601, 3606, 3, 298, 149, 0, 3602, 3603, 5, 6, 0, 0, 3603, 3605, 3, 298, 149, 0, 3604, 3602, 1, 0, 0, 0, 3605, 3608, 1, 0, 0, 0, 3606, 3604, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 3619, 1, 0, 0, 0, 3608, 3606, 1, 0, 0, 0, 3609, 3610, 5, 191, 0, 0, 3610, 3615, 3, 304, 152, 0, 3611, 3612, 5, 6, 0, 0, 3612, 3614, 3, 304, 152, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3617, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3615, 3616, 1, 0, 0, 0, 3616, 3619, 1, 0, 0, 0, 3617, 3615, 1, 0, 0, 0, 3618, 3600, 1, 0, 0, 0, 3618, 3609, 1, 0, 0, 0, 3619, 303, 1, 0, 0, 0, 3620, 3621, 7, 43, 0, 0, 3621, 3622, 5, 571, 0, 0, 3622, 3623, 3, 528, 264, 0, 3623, 305, 1, 0, 0, 0, 3624, 3625, 5, 301, 0, 0, 3625, 3626, 5, 281, 0, 0, 3626, 3627, 5, 147, 0, 0, 3627, 3628, 3, 816, 408, 0, 3628, 3629, 5, 94, 0, 0, 3629, 3630, 3, 814, 407, 0, 3630, 307, 1, 0, 0, 0, 3631, 3654, 5, 191, 0, 0, 3632, 3655, 5, 328, 0, 0, 3633, 3655, 5, 226, 0, 0, 3634, 3655, 5, 108, 0, 0, 3635, 3655, 5, 168, 0, 0, 3636, 3655, 5, 342, 0, 0, 3637, 3655, 5, 452, 0, 0, 3638, 3655, 5, 331, 0, 0, 3639, 3640, 5, 131, 0, 0, 3640, 3655, 5, 446, 0, 0, 3641, 3642, 5, 198, 0, 0, 3642, 3655, 5, 357, 0, 0, 3643, 3655, 5, 204, 0, 0, 3644, 3646, 5, 295, 0, 0, 3645, 3644, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3655, 5, 247, 0, 0, 3648, 3649, 5, 63, 0, 0, 3649, 3650, 5, 174, 0, 0, 3650, 3655, 5, 381, 0, 0, 3651, 3652, 5, 355, 0, 0, 3652, 3653, 5, 325, 0, 0, 3653, 3655, 7, 41, 0, 0, 3654, 3632, 1, 0, 0, 0, 3654, 3633, 1, 0, 0, 0, 3654, 3634, 1, 0, 0, 0, 3654, 3635, 1, 0, 0, 0, 3654, 3636, 1, 0, 0, 0, 3654, 3637, 1, 0, 0, 0, 3654, 3638, 1, 0, 0, 0, 3654, 3639, 1, 0, 0, 0, 3654, 3641, 1, 0, 0, 0, 3654, 3643, 1, 0, 0, 0, 3654, 3645, 1, 0, 0, 0, 3654, 3648, 1, 0, 0, 0, 3654, 3651, 1, 0, 0, 0, 3655, 3657, 1, 0, 0, 0, 3656, 3658, 3, 422, 211, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3661, 3, 784, 392, 0, 3660, 3662, 3, 96, 48, 0, 3661, 3660, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3839, 1, 0, 0, 0, 3663, 3665, 5, 191, 0, 0, 3664, 3666, 5, 259, 0, 0, 3665, 3664, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3669, 5, 376, 0, 0, 3668, 3670, 3, 422, 211, 0, 3669, 3668, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3676, 3, 778, 389, 0, 3672, 3673, 5, 6, 0, 0, 3673, 3675, 3, 778, 389, 0, 3674, 3672, 1, 0, 0, 0, 3675, 3678, 1, 0, 0, 0, 3676, 3674, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3680, 1, 0, 0, 0, 3678, 3676, 1, 0, 0, 0, 3679, 3681, 3, 96, 48, 0, 3680, 3679, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3839, 1, 0, 0, 0, 3682, 3684, 5, 191, 0, 0, 3683, 3685, 5, 63, 0, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 3688, 5, 92, 0, 0, 3687, 3689, 3, 422, 211, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3690, 3692, 3, 762, 381, 0, 3691, 3693, 3, 96, 48, 0, 3692, 3691, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3839, 1, 0, 0, 0, 3694, 3695, 5, 191, 0, 0, 3695, 3697, 5, 323, 0, 0, 3696, 3698, 3, 422, 211, 0, 3697, 3696, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3699, 1, 0, 0, 0, 3699, 3701, 3, 764, 382, 0, 3700, 3702, 3, 96, 48, 0, 3701, 3700, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3702, 3839, 1, 0, 0, 0, 3703, 3704, 5, 191, 0, 0, 3704, 3706, 7, 44, 0, 0, 3705, 3707, 3, 422, 211, 0, 3706, 3705, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3709, 3, 818, 409, 0, 3709, 3710, 5, 80, 0, 0, 3710, 3712, 3, 316, 158, 0, 3711, 3713, 3, 96, 48, 0, 3712, 3711, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3839, 1, 0, 0, 0, 3714, 3715, 5, 191, 0, 0, 3715, 3717, 7, 32, 0, 0, 3716, 3718, 3, 422, 211, 0, 3717, 3716, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3719, 3724, 3, 652, 326, 0, 3720, 3721, 5, 6, 0, 0, 3721, 3723, 3, 652, 326, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3726, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3728, 1, 0, 0, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3729, 3, 96, 48, 0, 3728, 3727, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3839, 1, 0, 0, 0, 3730, 3731, 5, 191, 0, 0, 3731, 3732, 5, 226, 0, 0, 3732, 3734, 5, 109, 0, 0, 3733, 3735, 3, 422, 211, 0, 3734, 3733, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 3, 314, 157, 0, 3737, 3739, 3, 96, 48, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3839, 1, 0, 0, 0, 3740, 3741, 5, 191, 0, 0, 3741, 3743, 5, 41, 0, 0, 3742, 3744, 3, 422, 211, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3745, 1, 0, 0, 0, 3745, 3746, 5, 2, 0, 0, 3746, 3747, 3, 652, 326, 0, 3747, 3748, 5, 36, 0, 0, 3748, 3749, 3, 652, 326, 0, 3749, 3751, 5, 3, 0, 0, 3750, 3752, 3, 96, 48, 0, 3751, 3750, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3839, 1, 0, 0, 0, 3753, 3754, 5, 191, 0, 0, 3754, 3755, 5, 278, 0, 0, 3755, 3757, 7, 31, 0, 0, 3756, 3758, 3, 422, 211, 0, 3757, 3756, 1, 0, 0, 0, 3757, 3758, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3760, 3, 316, 158, 0, 3760, 3762, 3, 170, 85, 0, 3761, 3763, 3, 96, 48, 0, 3762, 3761, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3839, 1, 0, 0, 0, 3764, 3765, 5, 191, 0, 0, 3765, 3766, 5, 281, 0, 0, 3766, 3767, 5, 147, 0, 0, 3767, 3769, 3, 816, 408, 0, 3768, 3770, 3, 96, 48, 0, 3769, 3768, 1, 0, 0, 0, 3769, 3770, 1, 0, 0, 0, 3770, 3839, 1, 0, 0, 0, 3771, 3772, 5, 191, 0, 0, 3772, 3774, 5, 451, 0, 0, 3773, 3775, 3, 422, 211, 0, 3774, 3773, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 3778, 3, 818, 409, 0, 3777, 3779, 3, 96, 48, 0, 3778, 3777, 1, 0, 0, 0, 3778, 3779, 1, 0, 0, 0, 3779, 3839, 1, 0, 0, 0, 3780, 3781, 5, 191, 0, 0, 3781, 3783, 5, 351, 0, 0, 3782, 3784, 3, 422, 211, 0, 3783, 3782, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3839, 3, 770, 385, 0, 3786, 3787, 5, 191, 0, 0, 3787, 3789, 5, 443, 0, 0, 3788, 3790, 3, 422, 211, 0, 3789, 3788, 1, 0, 0, 0, 3789, 3790, 1, 0, 0, 0, 3790, 3791, 1, 0, 0, 0, 3791, 3792, 5, 62, 0, 0, 3792, 3793, 3, 652, 326, 0, 3793, 3794, 5, 247, 0, 0, 3794, 3796, 3, 818, 409, 0, 3795, 3797, 3, 96, 48, 0, 3796, 3795, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 3839, 1, 0, 0, 0, 3798, 3799, 5, 191, 0, 0, 3799, 3801, 7, 45, 0, 0, 3800, 3802, 3, 422, 211, 0, 3801, 3800, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3803, 1, 0, 0, 0, 3803, 3839, 3, 816, 408, 0, 3804, 3805, 5, 191, 0, 0, 3805, 3806, 5, 99, 0, 0, 3806, 3808, 5, 257, 0, 0, 3807, 3809, 3, 422, 211, 0, 3808, 3807, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3813, 5, 62, 0, 0, 3811, 3814, 3, 814, 407, 0, 3812, 3814, 5, 99, 0, 0, 3813, 3811, 1, 0, 0, 0, 3813, 3812, 1, 0, 0, 0, 3814, 3815, 1, 0, 0, 0, 3815, 3816, 5, 331, 0, 0, 3816, 3839, 3, 818, 409, 0, 3817, 3818, 5, 191, 0, 0, 3818, 3820, 5, 175, 0, 0, 3819, 3821, 3, 422, 211, 0, 3820, 3819, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3836, 3, 788, 394, 0, 3823, 3825, 5, 105, 0, 0, 3824, 3823, 1, 0, 0, 0, 3824, 3825, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 3827, 5, 2, 0, 0, 3827, 3832, 5, 209, 0, 0, 3828, 3829, 5, 6, 0, 0, 3829, 3831, 5, 209, 0, 0, 3830, 3828, 1, 0, 0, 0, 3831, 3834, 1, 0, 0, 0, 3832, 3830, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3835, 1, 0, 0, 0, 3834, 3832, 1, 0, 0, 0, 3835, 3837, 5, 3, 0, 0, 3836, 3824, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3839, 1, 0, 0, 0, 3838, 3631, 1, 0, 0, 0, 3838, 3663, 1, 0, 0, 0, 3838, 3682, 1, 0, 0, 0, 3838, 3694, 1, 0, 0, 0, 3838, 3703, 1, 0, 0, 0, 3838, 3714, 1, 0, 0, 0, 3838, 3730, 1, 0, 0, 0, 3838, 3740, 1, 0, 0, 0, 3838, 3753, 1, 0, 0, 0, 3838, 3764, 1, 0, 0, 0, 3838, 3771, 1, 0, 0, 0, 3838, 3780, 1, 0, 0, 0, 3838, 3786, 1, 0, 0, 0, 3838, 3798, 1, 0, 0, 0, 3838, 3804, 1, 0, 0, 0, 3838, 3817, 1, 0, 0, 0, 3839, 309, 1, 0, 0, 0, 3840, 3842, 5, 63, 0, 0, 3841, 3840, 1, 0, 0, 0, 3841, 3842, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 3844, 5, 92, 0, 0, 3844, 3857, 3, 774, 387, 0, 3845, 3847, 5, 259, 0, 0, 3846, 3845, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3848, 1, 0, 0, 0, 3848, 3849, 5, 376, 0, 0, 3849, 3857, 3, 778, 389, 0, 3850, 3851, 7, 46, 0, 0, 3851, 3857, 3, 316, 158, 0, 3852, 3853, 5, 355, 0, 0, 3853, 3854, 5, 325, 0, 0, 3854, 3855, 7, 41, 0, 0, 3855, 3857, 3, 316, 158, 0, 3856, 3841, 1, 0, 0, 0, 3856, 3846, 1, 0, 0, 0, 3856, 3850, 1, 0, 0, 0, 3856, 3852, 1, 0, 0, 0, 3857, 311, 1, 0, 0, 0, 3858, 3859, 5, 198, 0, 0, 3859, 3875, 5, 357, 0, 0, 3860, 3861, 5, 131, 0, 0, 3861, 3875, 5, 446, 0, 0, 3862, 3875, 5, 204, 0, 0, 3863, 3875, 5, 452, 0, 0, 3864, 3875, 5, 331, 0, 0, 3865, 3875, 5, 318, 0, 0, 3866, 3875, 5, 451, 0, 0, 3867, 3868, 5, 63, 0, 0, 3868, 3869, 5, 174, 0, 0, 3869, 3875, 5, 381, 0, 0, 3870, 3872, 5, 295, 0, 0, 3871, 3870, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3873, 1, 0, 0, 0, 3873, 3875, 5, 247, 0, 0, 3874, 3858, 1, 0, 0, 0, 3874, 3860, 1, 0, 0, 0, 3874, 3862, 1, 0, 0, 0, 3874, 3863, 1, 0, 0, 0, 3874, 3864, 1, 0, 0, 0, 3874, 3865, 1, 0, 0, 0, 3874, 3866, 1, 0, 0, 0, 3874, 3867, 1, 0, 0, 0, 3874, 3871, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 3883, 3, 818, 409, 0, 3877, 3878, 5, 323, 0, 0, 3878, 3883, 3, 790, 395, 0, 3879, 3880, 5, 175, 0, 0, 3880, 3883, 3, 788, 394, 0, 3881, 3883, 3, 176, 88, 0, 3882, 3874, 1, 0, 0, 0, 3882, 3877, 1, 0, 0, 0, 3882, 3879, 1, 0, 0, 0, 3882, 3881, 1, 0, 0, 0, 3883, 313, 1, 0, 0, 0, 3884, 3889, 3, 316, 158, 0, 3885, 3886, 5, 6, 0, 0, 3886, 3888, 3, 316, 158, 0, 3887, 3885, 1, 0, 0, 0, 3888, 3891, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 315, 1, 0, 0, 0, 3891, 3889, 1, 0, 0, 0, 3892, 3894, 3, 818, 409, 0, 3893, 3895, 3, 318, 159, 0, 3894, 3893, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 317, 1, 0, 0, 0, 3896, 3897, 5, 11, 0, 0, 3897, 3899, 3, 824, 412, 0, 3898, 3896, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3898, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 319, 1, 0, 0, 0, 3902, 3904, 5, 358, 0, 0, 3903, 3905, 5, 92, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3911, 3, 322, 161, 0, 3907, 3908, 5, 6, 0, 0, 3908, 3910, 3, 322, 161, 0, 3909, 3907, 1, 0, 0, 0, 3910, 3913, 1, 0, 0, 0, 3911, 3909, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3916, 1, 0, 0, 0, 3913, 3911, 1, 0, 0, 0, 3914, 3915, 7, 47, 0, 0, 3915, 3917, 5, 219, 0, 0, 3916, 3914, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3919, 1, 0, 0, 0, 3918, 3920, 3, 96, 48, 0, 3919, 3918, 1, 0, 0, 0, 3919, 3920, 1, 0, 0, 0, 3920, 321, 1, 0, 0, 0, 3921, 3923, 5, 81, 0, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3926, 3, 774, 387, 0, 3925, 3927, 5, 9, 0, 0, 3926, 3925, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 323, 1, 0, 0, 0, 3928, 3929, 5, 159, 0, 0, 3929, 3988, 5, 80, 0, 0, 3930, 3989, 3, 310, 155, 0, 3931, 3989, 3, 312, 156, 0, 3932, 3933, 5, 44, 0, 0, 3933, 3935, 3, 818, 409, 0, 3934, 3936, 3, 318, 159, 0, 3935, 3934, 1, 0, 0, 0, 3935, 3936, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3938, 5, 11, 0, 0, 3938, 3939, 3, 800, 400, 0, 3939, 3989, 1, 0, 0, 0, 3940, 3941, 7, 32, 0, 0, 3941, 3989, 3, 652, 326, 0, 3942, 3943, 5, 136, 0, 0, 3943, 3989, 3, 394, 197, 0, 3944, 3945, 5, 211, 0, 0, 3945, 3989, 3, 382, 191, 0, 3946, 3947, 5, 278, 0, 0, 3947, 3989, 3, 416, 208, 0, 3948, 3949, 5, 45, 0, 0, 3949, 3950, 3, 818, 409, 0, 3950, 3956, 5, 80, 0, 0, 3951, 3957, 3, 774, 387, 0, 3952, 3954, 5, 189, 0, 0, 3953, 3952, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 3955, 1, 0, 0, 0, 3955, 3957, 3, 316, 158, 0, 3956, 3951, 1, 0, 0, 0, 3956, 3953, 1, 0, 0, 0, 3957, 3989, 1, 0, 0, 0, 3958, 3959, 7, 44, 0, 0, 3959, 3960, 3, 818, 409, 0, 3960, 3961, 5, 80, 0, 0, 3961, 3962, 3, 316, 158, 0, 3962, 3989, 1, 0, 0, 0, 3963, 3964, 5, 296, 0, 0, 3964, 3989, 3, 378, 189, 0, 3965, 3966, 5, 442, 0, 0, 3966, 3989, 3, 374, 187, 0, 3967, 3968, 5, 443, 0, 0, 3968, 3969, 5, 62, 0, 0, 3969, 3970, 3, 652, 326, 0, 3970, 3971, 5, 247, 0, 0, 3971, 3972, 3, 818, 409, 0, 3972, 3989, 1, 0, 0, 0, 3973, 3974, 5, 278, 0, 0, 3974, 3975, 7, 31, 0, 0, 3975, 3976, 3, 316, 158, 0, 3976, 3977, 3, 170, 85, 0, 3977, 3989, 1, 0, 0, 0, 3978, 3979, 5, 248, 0, 0, 3979, 3980, 5, 274, 0, 0, 3980, 3989, 3, 202, 101, 0, 3981, 3982, 5, 41, 0, 0, 3982, 3983, 5, 2, 0, 0, 3983, 3984, 3, 652, 326, 0, 3984, 3985, 5, 36, 0, 0, 3985, 3986, 3, 652, 326, 0, 3986, 3987, 5, 3, 0, 0, 3987, 3989, 1, 0, 0, 0, 3988, 3930, 1, 0, 0, 0, 3988, 3931, 1, 0, 0, 0, 3988, 3932, 1, 0, 0, 0, 3988, 3940, 1, 0, 0, 0, 3988, 3942, 1, 0, 0, 0, 3988, 3944, 1, 0, 0, 0, 3988, 3946, 1, 0, 0, 0, 3988, 3948, 1, 0, 0, 0, 3988, 3958, 1, 0, 0, 0, 3988, 3963, 1, 0, 0, 0, 3988, 3965, 1, 0, 0, 0, 3988, 3967, 1, 0, 0, 0, 3988, 3973, 1, 0, 0, 0, 3988, 3978, 1, 0, 0, 0, 3988, 3981, 1, 0, 0, 0, 3989, 3990, 1, 0, 0, 0, 3990, 3993, 5, 116, 0, 0, 3991, 3994, 3, 808, 404, 0, 3992, 3994, 5, 78, 0, 0, 3993, 3991, 1, 0, 0, 0, 3993, 3992, 1, 0, 0, 0, 3994, 325, 1, 0, 0, 0, 3995, 3996, 5, 327, 0, 0, 3996, 3999, 5, 246, 0, 0, 3997, 3998, 5, 62, 0, 0, 3998, 4000, 3, 58, 29, 0, 3999, 3997, 1, 0, 0, 0, 3999, 4000, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 4019, 5, 80, 0, 0, 4002, 4003, 7, 32, 0, 0, 4003, 4020, 3, 652, 326, 0, 4004, 4005, 5, 136, 0, 0, 4005, 4020, 3, 394, 197, 0, 4006, 4007, 5, 44, 0, 0, 4007, 4020, 3, 800, 400, 0, 4008, 4009, 5, 211, 0, 0, 4009, 4020, 3, 382, 191, 0, 4010, 4011, 5, 248, 0, 0, 4011, 4012, 5, 274, 0, 0, 4012, 4020, 3, 202, 101, 0, 4013, 4014, 5, 296, 0, 0, 4014, 4020, 3, 378, 189, 0, 4015, 4016, 5, 442, 0, 0, 4016, 4020, 3, 374, 187, 0, 4017, 4020, 3, 310, 155, 0, 4018, 4020, 3, 312, 156, 0, 4019, 4002, 1, 0, 0, 0, 4019, 4004, 1, 0, 0, 0, 4019, 4006, 1, 0, 0, 0, 4019, 4008, 1, 0, 0, 0, 4019, 4010, 1, 0, 0, 0, 4019, 4013, 1, 0, 0, 0, 4019, 4015, 1, 0, 0, 0, 4019, 4017, 1, 0, 0, 0, 4019, 4018, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4024, 5, 116, 0, 0, 4022, 4025, 3, 808, 404, 0, 4023, 4025, 5, 78, 0, 0, 4024, 4022, 1, 0, 0, 0, 4024, 4023, 1, 0, 0, 0, 4025, 327, 1, 0, 0, 0, 4026, 4027, 7, 48, 0, 0, 4027, 4028, 3, 330, 165, 0, 4028, 329, 1, 0, 0, 0, 4029, 4031, 7, 49, 0, 0, 4030, 4029, 1, 0, 0, 0, 4030, 4031, 1, 0, 0, 0, 4031, 4033, 1, 0, 0, 0, 4032, 4034, 3, 332, 166, 0, 4033, 4032, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4035, 1, 0, 0, 0, 4035, 4073, 3, 818, 409, 0, 4036, 4038, 7, 50, 0, 0, 4037, 4036, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4041, 3, 812, 406, 0, 4040, 4042, 3, 332, 166, 0, 4041, 4040, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4044, 3, 818, 409, 0, 4044, 4073, 1, 0, 0, 0, 4045, 4047, 5, 210, 0, 0, 4046, 4048, 3, 812, 406, 0, 4047, 4046, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4050, 1, 0, 0, 0, 4049, 4051, 3, 332, 166, 0, 4050, 4049, 1, 0, 0, 0, 4050, 4051, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4073, 3, 818, 409, 0, 4053, 4055, 5, 210, 0, 0, 4054, 4053, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4058, 5, 30, 0, 0, 4057, 4059, 3, 332, 166, 0, 4058, 4057, 1, 0, 0, 0, 4058, 4059, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4073, 3, 818, 409, 0, 4061, 4066, 5, 144, 0, 0, 4062, 4064, 5, 30, 0, 0, 4063, 4062, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4067, 1, 0, 0, 0, 4065, 4067, 3, 812, 406, 0, 4066, 4063, 1, 0, 0, 0, 4066, 4065, 1, 0, 0, 0, 4067, 4069, 1, 0, 0, 0, 4068, 4070, 3, 332, 166, 0, 4069, 4068, 1, 0, 0, 0, 4069, 4070, 1, 0, 0, 0, 4070, 4071, 1, 0, 0, 0, 4071, 4073, 3, 818, 409, 0, 4072, 4030, 1, 0, 0, 0, 4072, 4037, 1, 0, 0, 0, 4072, 4045, 1, 0, 0, 0, 4072, 4054, 1, 0, 0, 0, 4072, 4061, 1, 0, 0, 0, 4073, 331, 1, 0, 0, 0, 4074, 4075, 7, 51, 0, 0, 4075, 333, 1, 0, 0, 0, 4076, 4077, 5, 65, 0, 0, 4077, 4078, 3, 338, 169, 0, 4078, 4079, 5, 80, 0, 0, 4079, 4080, 3, 344, 172, 0, 4080, 4081, 5, 94, 0, 0, 4081, 4085, 3, 346, 173, 0, 4082, 4083, 5, 105, 0, 0, 4083, 4084, 5, 65, 0, 0, 4084, 4086, 5, 279, 0, 0, 4085, 4082, 1, 0, 0, 0, 4085, 4086, 1, 0, 0, 0, 4086, 335, 1, 0, 0, 0, 4087, 4091, 5, 317, 0, 0, 4088, 4089, 5, 65, 0, 0, 4089, 4090, 5, 279, 0, 0, 4090, 4092, 5, 62, 0, 0, 4091, 4088, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 4093, 1, 0, 0, 0, 4093, 4094, 3, 338, 169, 0, 4094, 4095, 5, 80, 0, 0, 4095, 4096, 3, 344, 172, 0, 4096, 4097, 5, 64, 0, 0, 4097, 4099, 3, 346, 173, 0, 4098, 4100, 3, 96, 48, 0, 4099, 4098, 1, 0, 0, 0, 4099, 4100, 1, 0, 0, 0, 4100, 337, 1, 0, 0, 0, 4101, 4106, 3, 342, 171, 0, 4102, 4103, 5, 6, 0, 0, 4103, 4105, 3, 342, 171, 0, 4104, 4102, 1, 0, 0, 0, 4105, 4108, 1, 0, 0, 0, 4106, 4104, 1, 0, 0, 0, 4106, 4107, 1, 0, 0, 0, 4107, 4125, 1, 0, 0, 0, 4108, 4106, 1, 0, 0, 0, 4109, 4111, 5, 30, 0, 0, 4110, 4112, 5, 294, 0, 0, 4111, 4110, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 4114, 1, 0, 0, 0, 4113, 4115, 3, 144, 72, 0, 4114, 4113, 1, 0, 0, 0, 4114, 4115, 1, 0, 0, 0, 4115, 4125, 1, 0, 0, 0, 4116, 4121, 3, 340, 170, 0, 4117, 4118, 5, 6, 0, 0, 4118, 4120, 3, 340, 170, 0, 4119, 4117, 1, 0, 0, 0, 4120, 4123, 1, 0, 0, 0, 4121, 4119, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4125, 1, 0, 0, 0, 4123, 4121, 1, 0, 0, 0, 4124, 4101, 1, 0, 0, 0, 4124, 4109, 1, 0, 0, 0, 4124, 4116, 1, 0, 0, 0, 4125, 339, 1, 0, 0, 0, 4126, 4127, 7, 52, 0, 0, 4127, 341, 1, 0, 0, 0, 4128, 4133, 5, 88, 0, 0, 4129, 4133, 5, 86, 0, 0, 4130, 4133, 5, 46, 0, 0, 4131, 4133, 3, 818, 409, 0, 4132, 4128, 1, 0, 0, 0, 4132, 4129, 1, 0, 0, 0, 4132, 4130, 1, 0, 0, 0, 4132, 4131, 1, 0, 0, 0, 4133, 4135, 1, 0, 0, 0, 4134, 4136, 3, 144, 72, 0, 4135, 4134, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 343, 1, 0, 0, 0, 4137, 4138, 5, 92, 0, 0, 4138, 4183, 3, 762, 381, 0, 4139, 4141, 5, 328, 0, 0, 4140, 4139, 1, 0, 0, 0, 4140, 4141, 1, 0, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 4183, 3, 760, 380, 0, 4143, 4147, 5, 63, 0, 0, 4144, 4145, 5, 174, 0, 0, 4145, 4148, 5, 381, 0, 0, 4146, 4148, 5, 331, 0, 0, 4147, 4144, 1, 0, 0, 0, 4147, 4146, 1, 0, 0, 0, 4148, 4151, 1, 0, 0, 0, 4149, 4151, 5, 247, 0, 0, 4150, 4143, 1, 0, 0, 0, 4150, 4149, 1, 0, 0, 0, 4151, 4152, 1, 0, 0, 0, 4152, 4183, 3, 784, 392, 0, 4153, 4154, 5, 211, 0, 0, 4154, 4183, 3, 380, 190, 0, 4155, 4156, 5, 296, 0, 0, 4156, 4183, 3, 376, 188, 0, 4157, 4158, 5, 442, 0, 0, 4158, 4183, 3, 372, 186, 0, 4159, 4160, 5, 175, 0, 0, 4160, 4183, 3, 766, 383, 0, 4161, 4162, 7, 32, 0, 0, 4162, 4183, 3, 314, 157, 0, 4163, 4164, 5, 248, 0, 0, 4164, 4165, 5, 274, 0, 0, 4165, 4170, 3, 202, 101, 0, 4166, 4167, 5, 6, 0, 0, 4167, 4169, 3, 202, 101, 0, 4168, 4166, 1, 0, 0, 0, 4169, 4172, 1, 0, 0, 0, 4170, 4168, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4183, 1, 0, 0, 0, 4172, 4170, 1, 0, 0, 0, 4173, 4174, 5, 323, 0, 0, 4174, 4183, 3, 764, 382, 0, 4175, 4176, 5, 351, 0, 0, 4176, 4183, 3, 782, 391, 0, 4177, 4178, 5, 30, 0, 0, 4178, 4179, 7, 53, 0, 0, 4179, 4180, 5, 68, 0, 0, 4180, 4181, 5, 323, 0, 0, 4181, 4183, 3, 764, 382, 0, 4182, 4137, 1, 0, 0, 0, 4182, 4140, 1, 0, 0, 0, 4182, 4150, 1, 0, 0, 0, 4182, 4153, 1, 0, 0, 0, 4182, 4155, 1, 0, 0, 0, 4182, 4157, 1, 0, 0, 0, 4182, 4159, 1, 0, 0, 0, 4182, 4161, 1, 0, 0, 0, 4182, 4163, 1, 0, 0, 0, 4182, 4173, 1, 0, 0, 0, 4182, 4175, 1, 0, 0, 0, 4182, 4177, 1, 0, 0, 0, 4183, 345, 1, 0, 0, 0, 4184, 4186, 5, 66, 0, 0, 4185, 4184, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4188, 3, 814, 407, 0, 4188, 4196, 1, 0, 0, 0, 4189, 4191, 5, 6, 0, 0, 4190, 4192, 5, 66, 0, 0, 4191, 4190, 1, 0, 0, 0, 4191, 4192, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 4195, 3, 814, 407, 0, 4194, 4189, 1, 0, 0, 0, 4195, 4198, 1, 0, 0, 0, 4196, 4194, 1, 0, 0, 0, 4196, 4197, 1, 0, 0, 0, 4197, 347, 1, 0, 0, 0, 4198, 4196, 1, 0, 0, 0, 4199, 4200, 5, 65, 0, 0, 4200, 4205, 3, 342, 171, 0, 4201, 4202, 5, 6, 0, 0, 4202, 4204, 3, 342, 171, 0, 4203, 4201, 1, 0, 0, 0, 4204, 4207, 1, 0, 0, 0, 4205, 4203, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4208, 1, 0, 0, 0, 4207, 4205, 1, 0, 0, 0, 4208, 4209, 5, 94, 0, 0, 4209, 4213, 3, 816, 408, 0, 4210, 4211, 5, 105, 0, 0, 4211, 4212, 5, 134, 0, 0, 4212, 4214, 5, 279, 0, 0, 4213, 4210, 1, 0, 0, 0, 4213, 4214, 1, 0, 0, 0, 4214, 4218, 1, 0, 0, 0, 4215, 4216, 5, 214, 0, 0, 4216, 4217, 5, 147, 0, 0, 4217, 4219, 3, 814, 407, 0, 4218, 4215, 1, 0, 0, 0, 4218, 4219, 1, 0, 0, 0, 4219, 349, 1, 0, 0, 0, 4220, 4224, 5, 317, 0, 0, 4221, 4222, 5, 134, 0, 0, 4222, 4223, 5, 279, 0, 0, 4223, 4225, 5, 62, 0, 0, 4224, 4221, 1, 0, 0, 0, 4224, 4225, 1, 0, 0, 0, 4225, 4226, 1, 0, 0, 0, 4226, 4231, 3, 342, 171, 0, 4227, 4228, 5, 6, 0, 0, 4228, 4230, 3, 342, 171, 0, 4229, 4227, 1, 0, 0, 0, 4230, 4233, 1, 0, 0, 0, 4231, 4229, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4234, 1, 0, 0, 0, 4233, 4231, 1, 0, 0, 0, 4234, 4235, 5, 64, 0, 0, 4235, 4239, 3, 816, 408, 0, 4236, 4237, 5, 214, 0, 0, 4237, 4238, 5, 147, 0, 0, 4238, 4240, 3, 814, 407, 0, 4239, 4236, 1, 0, 0, 0, 4239, 4240, 1, 0, 0, 0, 4240, 4242, 1, 0, 0, 0, 4241, 4243, 3, 96, 48, 0, 4242, 4241, 1, 0, 0, 0, 4242, 4243, 1, 0, 0, 0, 4243, 351, 1, 0, 0, 0, 4244, 4245, 5, 138, 0, 0, 4245, 4246, 5, 53, 0, 0, 4246, 4255, 5, 294, 0, 0, 4247, 4248, 5, 68, 0, 0, 4248, 4249, 5, 323, 0, 0, 4249, 4254, 3, 764, 382, 0, 4250, 4251, 5, 62, 0, 0, 4251, 4252, 7, 2, 0, 0, 4252, 4254, 3, 816, 408, 0, 4253, 4247, 1, 0, 0, 0, 4253, 4250, 1, 0, 0, 0, 4254, 4257, 1, 0, 0, 0, 4255, 4253, 1, 0, 0, 0, 4255, 4256, 1, 0, 0, 0, 4256, 4258, 1, 0, 0, 0, 4257, 4255, 1, 0, 0, 0, 4258, 4259, 3, 354, 177, 0, 4259, 353, 1, 0, 0, 0, 4260, 4261, 5, 65, 0, 0, 4261, 4262, 3, 338, 169, 0, 4262, 4263, 5, 80, 0, 0, 4263, 4264, 3, 356, 178, 0, 4264, 4265, 5, 94, 0, 0, 4265, 4269, 3, 346, 173, 0, 4266, 4267, 5, 105, 0, 0, 4267, 4268, 5, 65, 0, 0, 4268, 4270, 5, 279, 0, 0, 4269, 4266, 1, 0, 0, 0, 4269, 4270, 1, 0, 0, 0, 4270, 4286, 1, 0, 0, 0, 4271, 4275, 5, 317, 0, 0, 4272, 4273, 5, 65, 0, 0, 4273, 4274, 5, 279, 0, 0, 4274, 4276, 5, 62, 0, 0, 4275, 4272, 1, 0, 0, 0, 4275, 4276, 1, 0, 0, 0, 4276, 4277, 1, 0, 0, 0, 4277, 4278, 3, 338, 169, 0, 4278, 4279, 5, 80, 0, 0, 4279, 4280, 3, 356, 178, 0, 4280, 4281, 5, 64, 0, 0, 4281, 4283, 3, 346, 173, 0, 4282, 4284, 3, 96, 48, 0, 4283, 4282, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4286, 1, 0, 0, 0, 4285, 4260, 1, 0, 0, 0, 4285, 4271, 1, 0, 0, 0, 4286, 355, 1, 0, 0, 0, 4287, 4288, 7, 54, 0, 0, 4288, 357, 1, 0, 0, 0, 4289, 4291, 5, 46, 0, 0, 4290, 4292, 5, 98, 0, 0, 4291, 4290, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4295, 5, 226, 0, 0, 4294, 4296, 5, 109, 0, 0, 4295, 4294, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4298, 1, 0, 0, 0, 4297, 4299, 3, 294, 147, 0, 4298, 4297, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4301, 1, 0, 0, 0, 4300, 4302, 3, 818, 409, 0, 4301, 4300, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4304, 5, 80, 0, 0, 4304, 4306, 3, 624, 312, 0, 4305, 4307, 3, 170, 85, 0, 4306, 4305, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4311, 3, 360, 180, 0, 4309, 4310, 5, 441, 0, 0, 4310, 4312, 3, 360, 180, 0, 4311, 4309, 1, 0, 0, 0, 4311, 4312, 1, 0, 0, 0, 4312, 4318, 1, 0, 0, 0, 4313, 4315, 5, 273, 0, 0, 4314, 4316, 5, 77, 0, 0, 4315, 4314, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 4317, 1, 0, 0, 0, 4317, 4319, 5, 56, 0, 0, 4318, 4313, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4321, 1, 0, 0, 0, 4320, 4322, 3, 102, 51, 0, 4321, 4320, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4324, 1, 0, 0, 0, 4323, 4325, 3, 176, 88, 0, 4324, 4323, 1, 0, 0, 0, 4324, 4325, 1, 0, 0, 0, 4325, 4327, 1, 0, 0, 0, 4326, 4328, 3, 638, 319, 0, 4327, 4326, 1, 0, 0, 0, 4327, 4328, 1, 0, 0, 0, 4328, 359, 1, 0, 0, 0, 4329, 4330, 5, 2, 0, 0, 4330, 4335, 3, 362, 181, 0, 4331, 4332, 5, 6, 0, 0, 4332, 4334, 3, 362, 181, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4337, 1, 0, 0, 0, 4335, 4333, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4338, 1, 0, 0, 0, 4337, 4335, 1, 0, 0, 0, 4338, 4339, 5, 3, 0, 0, 4339, 361, 1, 0, 0, 0, 4340, 4347, 3, 800, 400, 0, 4341, 4347, 3, 688, 344, 0, 4342, 4343, 5, 2, 0, 0, 4343, 4344, 3, 674, 337, 0, 4344, 4345, 5, 3, 0, 0, 4345, 4347, 1, 0, 0, 0, 4346, 4340, 1, 0, 0, 0, 4346, 4341, 1, 0, 0, 0, 4346, 4342, 1, 0, 0, 0, 4347, 4349, 1, 0, 0, 0, 4348, 4350, 3, 98, 49, 0, 4349, 4348, 1, 0, 0, 0, 4349, 4350, 1, 0, 0, 0, 4350, 4357, 1, 0, 0, 0, 4351, 4353, 3, 316, 158, 0, 4352, 4351, 1, 0, 0, 0, 4352, 4353, 1, 0, 0, 0, 4353, 4358, 1, 0, 0, 0, 4354, 4355, 3, 316, 158, 0, 4355, 4356, 3, 100, 50, 0, 4356, 4358, 1, 0, 0, 0, 4357, 4352, 1, 0, 0, 0, 4357, 4354, 1, 0, 0, 0, 4358, 4360, 1, 0, 0, 0, 4359, 4361, 7, 55, 0, 0, 4360, 4359, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 4364, 1, 0, 0, 0, 4362, 4363, 5, 273, 0, 0, 4363, 4365, 7, 56, 0, 0, 4364, 4362, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 363, 1, 0, 0, 0, 4366, 4368, 5, 46, 0, 0, 4367, 4369, 3, 366, 183, 0, 4368, 4367, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4374, 1, 0, 0, 0, 4370, 4371, 5, 211, 0, 0, 4371, 4375, 3, 804, 402, 0, 4372, 4373, 5, 296, 0, 0, 4373, 4375, 3, 798, 399, 0, 4374, 4370, 1, 0, 0, 0, 4374, 4372, 1, 0, 0, 0, 4375, 4376, 1, 0, 0, 0, 4376, 4385, 5, 2, 0, 0, 4377, 4382, 3, 390, 195, 0, 4378, 4379, 5, 6, 0, 0, 4379, 4381, 3, 390, 195, 0, 4380, 4378, 1, 0, 0, 0, 4381, 4384, 1, 0, 0, 0, 4382, 4380, 1, 0, 0, 0, 4382, 4383, 1, 0, 0, 0, 4383, 4386, 1, 0, 0, 0, 4384, 4382, 1, 0, 0, 0, 4385, 4377, 1, 0, 0, 0, 4385, 4386, 1, 0, 0, 0, 4386, 4387, 1, 0, 0, 0, 4387, 4388, 5, 3, 0, 0, 4388, 4405, 1, 0, 0, 0, 4389, 4403, 5, 316, 0, 0, 4390, 4404, 3, 388, 194, 0, 4391, 4392, 5, 92, 0, 0, 4392, 4393, 5, 2, 0, 0, 4393, 4398, 3, 402, 201, 0, 4394, 4395, 5, 6, 0, 0, 4395, 4397, 3, 402, 201, 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, 4401, 1, 0, 0, 0, 4400, 4398, 1, 0, 0, 0, 4401, 4402, 5, 3, 0, 0, 4402, 4404, 1, 0, 0, 0, 4403, 4390, 1, 0, 0, 0, 4403, 4391, 1, 0, 0, 0, 4404, 4406, 1, 0, 0, 0, 4405, 4389, 1, 0, 0, 0, 4405, 4406, 1, 0, 0, 0, 4406, 4408, 1, 0, 0, 0, 4407, 4409, 3, 398, 199, 0, 4408, 4407, 1, 0, 0, 0, 4409, 4410, 1, 0, 0, 0, 4410, 4408, 1, 0, 0, 0, 4410, 4411, 1, 0, 0, 0, 4411, 4417, 1, 0, 0, 0, 4412, 4413, 5, 105, 0, 0, 4413, 4414, 5, 2, 0, 0, 4414, 4415, 3, 784, 392, 0, 4415, 4416, 5, 3, 0, 0, 4416, 4418, 1, 0, 0, 0, 4417, 4412, 1, 0, 0, 0, 4417, 4418, 1, 0, 0, 0, 4418, 365, 1, 0, 0, 0, 4419, 4420, 5, 82, 0, 0, 4420, 4421, 5, 311, 0, 0, 4421, 367, 1, 0, 0, 0, 4422, 4424, 5, 2, 0, 0, 4423, 4425, 3, 370, 185, 0, 4424, 4423, 1, 0, 0, 0, 4424, 4425, 1, 0, 0, 0, 4425, 4426, 1, 0, 0, 0, 4426, 4427, 5, 3, 0, 0, 4427, 369, 1, 0, 0, 0, 4428, 4433, 3, 384, 192, 0, 4429, 4430, 5, 6, 0, 0, 4430, 4432, 3, 384, 192, 0, 4431, 4429, 1, 0, 0, 0, 4432, 4435, 1, 0, 0, 0, 4433, 4431, 1, 0, 0, 0, 4433, 4434, 1, 0, 0, 0, 4434, 371, 1, 0, 0, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4441, 3, 374, 187, 0, 4437, 4438, 5, 6, 0, 0, 4438, 4440, 3, 374, 187, 0, 4439, 4437, 1, 0, 0, 0, 4440, 4443, 1, 0, 0, 0, 4441, 4439, 1, 0, 0, 0, 4441, 4442, 1, 0, 0, 0, 4442, 373, 1, 0, 0, 0, 4443, 4441, 1, 0, 0, 0, 4444, 4445, 3, 794, 397, 0, 4445, 4446, 3, 368, 184, 0, 4446, 4450, 1, 0, 0, 0, 4447, 4450, 3, 832, 416, 0, 4448, 4450, 3, 780, 390, 0, 4449, 4444, 1, 0, 0, 0, 4449, 4447, 1, 0, 0, 0, 4449, 4448, 1, 0, 0, 0, 4450, 375, 1, 0, 0, 0, 4451, 4456, 3, 378, 189, 0, 4452, 4453, 5, 6, 0, 0, 4453, 4455, 3, 378, 189, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4458, 1, 0, 0, 0, 4456, 4454, 1, 0, 0, 0, 4456, 4457, 1, 0, 0, 0, 4457, 377, 1, 0, 0, 0, 4458, 4456, 1, 0, 0, 0, 4459, 4460, 3, 796, 398, 0, 4460, 4461, 3, 368, 184, 0, 4461, 4465, 1, 0, 0, 0, 4462, 4465, 3, 832, 416, 0, 4463, 4465, 3, 780, 390, 0, 4464, 4459, 1, 0, 0, 0, 4464, 4462, 1, 0, 0, 0, 4464, 4463, 1, 0, 0, 0, 4465, 379, 1, 0, 0, 0, 4466, 4471, 3, 382, 191, 0, 4467, 4468, 5, 6, 0, 0, 4468, 4470, 3, 382, 191, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4473, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 381, 1, 0, 0, 0, 4473, 4471, 1, 0, 0, 0, 4474, 4475, 3, 806, 403, 0, 4475, 4476, 3, 368, 184, 0, 4476, 4480, 1, 0, 0, 0, 4477, 4480, 3, 832, 416, 0, 4478, 4480, 3, 780, 390, 0, 4479, 4474, 1, 0, 0, 0, 4479, 4477, 1, 0, 0, 0, 4479, 4478, 1, 0, 0, 0, 4480, 383, 1, 0, 0, 0, 4481, 4483, 3, 386, 193, 0, 4482, 4484, 3, 820, 410, 0, 4483, 4482, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 4490, 1, 0, 0, 0, 4485, 4487, 3, 820, 410, 0, 4486, 4488, 3, 386, 193, 0, 4487, 4486, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 4490, 1, 0, 0, 0, 4489, 4481, 1, 0, 0, 0, 4489, 4485, 1, 0, 0, 0, 4489, 4490, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4492, 3, 388, 194, 0, 4492, 385, 1, 0, 0, 0, 4493, 4495, 5, 68, 0, 0, 4494, 4496, 5, 453, 0, 0, 4495, 4494, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 4501, 1, 0, 0, 0, 4497, 4501, 5, 453, 0, 0, 4498, 4501, 5, 400, 0, 0, 4499, 4501, 5, 101, 0, 0, 4500, 4493, 1, 0, 0, 0, 4500, 4497, 1, 0, 0, 0, 4500, 4498, 1, 0, 0, 0, 4500, 4499, 1, 0, 0, 0, 4501, 387, 1, 0, 0, 0, 4502, 4512, 3, 652, 326, 0, 4503, 4505, 5, 415, 0, 0, 4504, 4503, 1, 0, 0, 0, 4504, 4505, 1, 0, 0, 0, 4505, 4506, 1, 0, 0, 0, 4506, 4507, 3, 820, 410, 0, 4507, 4508, 3, 318, 159, 0, 4508, 4509, 5, 27, 0, 0, 4509, 4510, 5, 360, 0, 0, 4510, 4512, 1, 0, 0, 0, 4511, 4502, 1, 0, 0, 0, 4511, 4504, 1, 0, 0, 0, 4512, 389, 1, 0, 0, 0, 4513, 4516, 3, 384, 192, 0, 4514, 4515, 7, 57, 0, 0, 4515, 4517, 3, 674, 337, 0, 4516, 4514, 1, 0, 0, 0, 4516, 4517, 1, 0, 0, 0, 4517, 391, 1, 0, 0, 0, 4518, 4528, 5, 2, 0, 0, 4519, 4529, 5, 9, 0, 0, 4520, 4522, 3, 370, 185, 0, 4521, 4520, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 4526, 1, 0, 0, 0, 4523, 4524, 5, 83, 0, 0, 4524, 4525, 5, 147, 0, 0, 4525, 4527, 3, 370, 185, 0, 4526, 4523, 1, 0, 0, 0, 4526, 4527, 1, 0, 0, 0, 4527, 4529, 1, 0, 0, 0, 4528, 4519, 1, 0, 0, 0, 4528, 4521, 1, 0, 0, 0, 4529, 4530, 1, 0, 0, 0, 4530, 4531, 5, 3, 0, 0, 4531, 393, 1, 0, 0, 0, 4532, 4533, 3, 806, 403, 0, 4533, 4534, 3, 392, 196, 0, 4534, 395, 1, 0, 0, 0, 4535, 4536, 5, 316, 0, 0, 4536, 4539, 5, 78, 0, 0, 4537, 4539, 5, 149, 0, 0, 4538, 4535, 1, 0, 0, 0, 4538, 4537, 1, 0, 0, 0, 4539, 4540, 1, 0, 0, 0, 4540, 4541, 5, 80, 0, 0, 4541, 4542, 5, 78, 0, 0, 4542, 4565, 5, 458, 0, 0, 4543, 4565, 5, 346, 0, 0, 4544, 4565, 5, 222, 0, 0, 4545, 4565, 5, 338, 0, 0, 4546, 4565, 5, 377, 0, 0, 4547, 4549, 5, 205, 0, 0, 4548, 4547, 1, 0, 0, 0, 4548, 4549, 1, 0, 0, 0, 4549, 4550, 1, 0, 0, 0, 4550, 4551, 5, 327, 0, 0, 4551, 4565, 7, 58, 0, 0, 4552, 4565, 5, 250, 0, 0, 4553, 4554, 5, 77, 0, 0, 4554, 4565, 5, 250, 0, 0, 4555, 4556, 7, 59, 0, 0, 4556, 4565, 3, 202, 101, 0, 4557, 4558, 5, 459, 0, 0, 4558, 4565, 3, 316, 158, 0, 4559, 4560, 5, 333, 0, 0, 4560, 4565, 3, 42, 21, 0, 4561, 4565, 3, 60, 30, 0, 4562, 4563, 5, 460, 0, 0, 4563, 4565, 3, 818, 409, 0, 4564, 4538, 1, 0, 0, 0, 4564, 4543, 1, 0, 0, 0, 4564, 4544, 1, 0, 0, 0, 4564, 4545, 1, 0, 0, 0, 4564, 4546, 1, 0, 0, 0, 4564, 4548, 1, 0, 0, 0, 4564, 4552, 1, 0, 0, 0, 4564, 4553, 1, 0, 0, 0, 4564, 4555, 1, 0, 0, 0, 4564, 4557, 1, 0, 0, 0, 4564, 4559, 1, 0, 0, 0, 4564, 4561, 1, 0, 0, 0, 4564, 4562, 1, 0, 0, 0, 4565, 397, 1, 0, 0, 0, 4566, 4567, 5, 36, 0, 0, 4567, 4568, 3, 808, 404, 0, 4568, 4569, 3, 462, 231, 0, 4569, 4602, 1, 0, 0, 0, 4570, 4571, 5, 247, 0, 0, 4571, 4602, 3, 58, 29, 0, 4572, 4573, 5, 443, 0, 0, 4573, 4574, 5, 62, 0, 0, 4574, 4575, 5, 360, 0, 0, 4575, 4582, 3, 652, 326, 0, 4576, 4577, 5, 6, 0, 0, 4577, 4578, 5, 62, 0, 0, 4578, 4579, 5, 360, 0, 0, 4579, 4581, 3, 652, 326, 0, 4580, 4576, 1, 0, 0, 0, 4581, 4584, 1, 0, 0, 0, 4582, 4580, 1, 0, 0, 0, 4582, 4583, 1, 0, 0, 0, 4583, 4602, 1, 0, 0, 0, 4584, 4582, 1, 0, 0, 0, 4585, 4602, 5, 104, 0, 0, 4586, 4587, 5, 333, 0, 0, 4587, 4594, 3, 818, 409, 0, 4588, 4589, 5, 94, 0, 0, 4589, 4595, 3, 818, 409, 0, 4590, 4591, 5, 10, 0, 0, 4591, 4595, 3, 818, 409, 0, 4592, 4593, 5, 64, 0, 0, 4593, 4595, 5, 434, 0, 0, 4594, 4588, 1, 0, 0, 0, 4594, 4590, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4595, 4602, 1, 0, 0, 0, 4596, 4597, 5, 36, 0, 0, 4597, 4602, 3, 818, 409, 0, 4598, 4602, 3, 4, 2, 0, 4599, 4602, 3, 396, 198, 0, 4600, 4602, 3, 818, 409, 0, 4601, 4566, 1, 0, 0, 0, 4601, 4570, 1, 0, 0, 0, 4601, 4572, 1, 0, 0, 0, 4601, 4585, 1, 0, 0, 0, 4601, 4586, 1, 0, 0, 0, 4601, 4596, 1, 0, 0, 0, 4601, 4598, 1, 0, 0, 0, 4601, 4599, 1, 0, 0, 0, 4601, 4600, 1, 0, 0, 0, 4602, 399, 1, 0, 0, 0, 4603, 4604, 5, 105, 0, 0, 4604, 4605, 3, 284, 142, 0, 4605, 401, 1, 0, 0, 0, 4606, 4607, 3, 800, 400, 0, 4607, 4608, 3, 388, 194, 0, 4608, 403, 1, 0, 0, 0, 4609, 4616, 5, 138, 0, 0, 4610, 4611, 5, 211, 0, 0, 4611, 4617, 3, 382, 191, 0, 4612, 4613, 5, 296, 0, 0, 4613, 4617, 3, 378, 189, 0, 4614, 4615, 5, 442, 0, 0, 4615, 4617, 3, 374, 187, 0, 4616, 4610, 1, 0, 0, 0, 4616, 4612, 1, 0, 0, 0, 4616, 4614, 1, 0, 0, 0, 4617, 4619, 1, 0, 0, 0, 4618, 4620, 3, 396, 198, 0, 4619, 4618, 1, 0, 0, 0, 4620, 4621, 1, 0, 0, 0, 4621, 4619, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4624, 1, 0, 0, 0, 4623, 4625, 5, 315, 0, 0, 4624, 4623, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 405, 1, 0, 0, 0, 4626, 4642, 5, 191, 0, 0, 4627, 4629, 5, 211, 0, 0, 4628, 4630, 3, 422, 211, 0, 4629, 4628, 1, 0, 0, 0, 4629, 4630, 1, 0, 0, 0, 4630, 4631, 1, 0, 0, 0, 4631, 4643, 3, 380, 190, 0, 4632, 4634, 5, 296, 0, 0, 4633, 4635, 3, 422, 211, 0, 4634, 4633, 1, 0, 0, 0, 4634, 4635, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4643, 3, 376, 188, 0, 4637, 4639, 5, 442, 0, 0, 4638, 4640, 3, 422, 211, 0, 4639, 4638, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 4641, 1, 0, 0, 0, 4641, 4643, 3, 372, 186, 0, 4642, 4627, 1, 0, 0, 0, 4642, 4632, 1, 0, 0, 0, 4642, 4637, 1, 0, 0, 0, 4643, 4645, 1, 0, 0, 0, 4644, 4646, 3, 96, 48, 0, 4645, 4644, 1, 0, 0, 0, 4645, 4646, 1, 0, 0, 0, 4646, 407, 1, 0, 0, 0, 4647, 4648, 5, 191, 0, 0, 4648, 4650, 5, 136, 0, 0, 4649, 4651, 3, 422, 211, 0, 4650, 4649, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4657, 3, 394, 197, 0, 4653, 4654, 5, 6, 0, 0, 4654, 4656, 3, 394, 197, 0, 4655, 4653, 1, 0, 0, 0, 4656, 4659, 1, 0, 0, 0, 4657, 4655, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4661, 1, 0, 0, 0, 4659, 4657, 1, 0, 0, 0, 4660, 4662, 3, 96, 48, 0, 4661, 4660, 1, 0, 0, 0, 4661, 4662, 1, 0, 0, 0, 4662, 409, 1, 0, 0, 0, 4663, 4664, 5, 191, 0, 0, 4664, 4666, 5, 278, 0, 0, 4665, 4667, 3, 422, 211, 0, 4666, 4665, 1, 0, 0, 0, 4666, 4667, 1, 0, 0, 0, 4667, 4668, 1, 0, 0, 0, 4668, 4673, 3, 416, 208, 0, 4669, 4670, 5, 6, 0, 0, 4670, 4672, 3, 416, 208, 0, 4671, 4669, 1, 0, 0, 0, 4672, 4675, 1, 0, 0, 0, 4673, 4671, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 4677, 1, 0, 0, 0, 4675, 4673, 1, 0, 0, 0, 4676, 4678, 3, 96, 48, 0, 4677, 4676, 1, 0, 0, 0, 4677, 4678, 1, 0, 0, 0, 4678, 411, 1, 0, 0, 0, 4679, 4692, 5, 2, 0, 0, 4680, 4683, 3, 652, 326, 0, 4681, 4682, 5, 6, 0, 0, 4682, 4684, 3, 652, 326, 0, 4683, 4681, 1, 0, 0, 0, 4683, 4684, 1, 0, 0, 0, 4684, 4693, 1, 0, 0, 0, 4685, 4686, 5, 407, 0, 0, 4686, 4687, 5, 6, 0, 0, 4687, 4693, 3, 652, 326, 0, 4688, 4689, 3, 652, 326, 0, 4689, 4690, 5, 6, 0, 0, 4690, 4691, 5, 407, 0, 0, 4691, 4693, 1, 0, 0, 0, 4692, 4680, 1, 0, 0, 0, 4692, 4685, 1, 0, 0, 0, 4692, 4688, 1, 0, 0, 0, 4693, 4694, 1, 0, 0, 0, 4694, 4695, 5, 3, 0, 0, 4695, 413, 1, 0, 0, 0, 4696, 4697, 3, 818, 409, 0, 4697, 4698, 5, 11, 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, 4704, 1, 0, 0, 0, 4703, 4701, 1, 0, 0, 0, 4704, 4705, 3, 720, 360, 0, 4705, 415, 1, 0, 0, 0, 4706, 4707, 3, 414, 207, 0, 4707, 4708, 3, 412, 206, 0, 4708, 417, 1, 0, 0, 0, 4709, 4713, 5, 57, 0, 0, 4710, 4714, 3, 808, 404, 0, 4711, 4712, 5, 247, 0, 0, 4712, 4714, 3, 58, 29, 0, 4713, 4710, 1, 0, 0, 0, 4713, 4711, 1, 0, 0, 0, 4714, 4715, 1, 0, 0, 0, 4715, 4713, 1, 0, 0, 0, 4715, 4716, 1, 0, 0, 0, 4716, 419, 1, 0, 0, 0, 4717, 4718, 5, 46, 0, 0, 4718, 4719, 5, 41, 0, 0, 4719, 4720, 5, 2, 0, 0, 4720, 4721, 3, 652, 326, 0, 4721, 4722, 5, 36, 0, 0, 4722, 4723, 3, 652, 326, 0, 4723, 4740, 5, 3, 0, 0, 4724, 4725, 5, 379, 0, 0, 4725, 4728, 5, 211, 0, 0, 4726, 4727, 5, 36, 0, 0, 4727, 4729, 7, 60, 0, 0, 4728, 4726, 1, 0, 0, 0, 4728, 4729, 1, 0, 0, 0, 4729, 4741, 1, 0, 0, 0, 4730, 4734, 5, 105, 0, 0, 4731, 4732, 5, 211, 0, 0, 4732, 4735, 3, 382, 191, 0, 4733, 4735, 5, 400, 0, 0, 4734, 4731, 1, 0, 0, 0, 4734, 4733, 1, 0, 0, 0, 4735, 4738, 1, 0, 0, 0, 4736, 4737, 5, 36, 0, 0, 4737, 4739, 7, 60, 0, 0, 4738, 4736, 1, 0, 0, 0, 4738, 4739, 1, 0, 0, 0, 4739, 4741, 1, 0, 0, 0, 4740, 4724, 1, 0, 0, 0, 4740, 4730, 1, 0, 0, 0, 4741, 421, 1, 0, 0, 0, 4742, 4743, 5, 220, 0, 0, 4743, 4744, 5, 396, 0, 0, 4744, 423, 1, 0, 0, 0, 4745, 4747, 5, 46, 0, 0, 4746, 4748, 3, 366, 183, 0, 4747, 4746, 1, 0, 0, 0, 4747, 4748, 1, 0, 0, 0, 4748, 4749, 1, 0, 0, 0, 4749, 4750, 5, 443, 0, 0, 4750, 4751, 5, 62, 0, 0, 4751, 4752, 3, 652, 326, 0, 4752, 4753, 5, 247, 0, 0, 4753, 4754, 3, 818, 409, 0, 4754, 4769, 5, 2, 0, 0, 4755, 4756, 5, 64, 0, 0, 4756, 4760, 3, 426, 213, 0, 4757, 4758, 5, 6, 0, 0, 4758, 4759, 5, 94, 0, 0, 4759, 4761, 3, 426, 213, 0, 4760, 4757, 1, 0, 0, 0, 4760, 4761, 1, 0, 0, 0, 4761, 4770, 1, 0, 0, 0, 4762, 4763, 5, 94, 0, 0, 4763, 4767, 3, 426, 213, 0, 4764, 4765, 5, 6, 0, 0, 4765, 4766, 5, 64, 0, 0, 4766, 4768, 3, 426, 213, 0, 4767, 4764, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4770, 1, 0, 0, 0, 4769, 4755, 1, 0, 0, 0, 4769, 4762, 1, 0, 0, 0, 4770, 4771, 1, 0, 0, 0, 4771, 4772, 5, 3, 0, 0, 4772, 425, 1, 0, 0, 0, 4773, 4774, 5, 461, 0, 0, 4774, 4775, 5, 105, 0, 0, 4775, 4776, 5, 211, 0, 0, 4776, 4777, 3, 382, 191, 0, 4777, 427, 1, 0, 0, 0, 4778, 4789, 5, 306, 0, 0, 4779, 4780, 5, 2, 0, 0, 4780, 4785, 5, 128, 0, 0, 4781, 4782, 5, 6, 0, 0, 4782, 4784, 5, 128, 0, 0, 4783, 4781, 1, 0, 0, 0, 4784, 4787, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4788, 1, 0, 0, 0, 4787, 4785, 1, 0, 0, 0, 4788, 4790, 5, 3, 0, 0, 4789, 4779, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4816, 1, 0, 0, 0, 4791, 4793, 5, 226, 0, 0, 4792, 4794, 5, 109, 0, 0, 4793, 4792, 1, 0, 0, 0, 4793, 4794, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4817, 3, 780, 390, 0, 4796, 4798, 5, 92, 0, 0, 4797, 4799, 5, 109, 0, 0, 4798, 4797, 1, 0, 0, 0, 4798, 4799, 1, 0, 0, 0, 4799, 4800, 1, 0, 0, 0, 4800, 4817, 3, 774, 387, 0, 4801, 4803, 5, 323, 0, 0, 4802, 4804, 5, 109, 0, 0, 4803, 4802, 1, 0, 0, 0, 4803, 4804, 1, 0, 0, 0, 4804, 4805, 1, 0, 0, 0, 4805, 4817, 3, 790, 395, 0, 4806, 4808, 5, 349, 0, 0, 4807, 4809, 5, 109, 0, 0, 4808, 4807, 1, 0, 0, 0, 4808, 4809, 1, 0, 0, 0, 4809, 4810, 1, 0, 0, 0, 4810, 4817, 3, 818, 409, 0, 4811, 4813, 5, 175, 0, 0, 4812, 4814, 5, 109, 0, 0, 4813, 4812, 1, 0, 0, 0, 4813, 4814, 1, 0, 0, 0, 4814, 4815, 1, 0, 0, 0, 4815, 4817, 3, 788, 394, 0, 4816, 4791, 1, 0, 0, 0, 4816, 4796, 1, 0, 0, 0, 4816, 4801, 1, 0, 0, 0, 4816, 4806, 1, 0, 0, 0, 4816, 4811, 1, 0, 0, 0, 4817, 429, 1, 0, 0, 0, 4818, 4819, 5, 138, 0, 0, 4819, 4820, 3, 176, 88, 0, 4820, 4821, 7, 16, 0, 0, 4821, 4822, 3, 100, 50, 0, 4822, 431, 1, 0, 0, 0, 4823, 4828, 5, 138, 0, 0, 4824, 4825, 5, 136, 0, 0, 4825, 4829, 3, 394, 197, 0, 4826, 4827, 5, 442, 0, 0, 4827, 4829, 3, 374, 187, 0, 4828, 4824, 1, 0, 0, 0, 4828, 4826, 1, 0, 0, 0, 4829, 4830, 1, 0, 0, 0, 4830, 4831, 5, 309, 0, 0, 4831, 4832, 5, 94, 0, 0, 4832, 4833, 3, 818, 409, 0, 4833, 5031, 1, 0, 0, 0, 4834, 4835, 5, 138, 0, 0, 4835, 4836, 5, 175, 0, 0, 4836, 4837, 3, 788, 394, 0, 4837, 4838, 5, 309, 0, 0, 4838, 4839, 5, 94, 0, 0, 4839, 4840, 3, 786, 393, 0, 4840, 5031, 1, 0, 0, 0, 4841, 4842, 5, 138, 0, 0, 4842, 4843, 7, 61, 0, 0, 4843, 4844, 3, 316, 158, 0, 4844, 4845, 5, 309, 0, 0, 4845, 4846, 5, 94, 0, 0, 4846, 4847, 3, 818, 409, 0, 4847, 5031, 1, 0, 0, 0, 4848, 4849, 5, 138, 0, 0, 4849, 4850, 5, 211, 0, 0, 4850, 4851, 3, 382, 191, 0, 4851, 4852, 5, 309, 0, 0, 4852, 4853, 5, 94, 0, 0, 4853, 4854, 3, 804, 402, 0, 4854, 5031, 1, 0, 0, 0, 4855, 4856, 5, 138, 0, 0, 4856, 4857, 5, 278, 0, 0, 4857, 4858, 7, 31, 0, 0, 4858, 4859, 3, 316, 158, 0, 4859, 4860, 3, 170, 85, 0, 4860, 4861, 5, 309, 0, 0, 4861, 4862, 5, 94, 0, 0, 4862, 4863, 3, 818, 409, 0, 4863, 5031, 1, 0, 0, 0, 4864, 4865, 5, 138, 0, 0, 4865, 4866, 5, 296, 0, 0, 4866, 4867, 3, 378, 189, 0, 4867, 4868, 5, 309, 0, 0, 4868, 4869, 5, 94, 0, 0, 4869, 4870, 3, 798, 399, 0, 4870, 5031, 1, 0, 0, 0, 4871, 4872, 5, 138, 0, 0, 4872, 4873, 5, 323, 0, 0, 4873, 4874, 3, 790, 395, 0, 4874, 4875, 5, 309, 0, 0, 4875, 4876, 5, 94, 0, 0, 4876, 4877, 3, 32, 16, 0, 4877, 5031, 1, 0, 0, 0, 4878, 4879, 5, 138, 0, 0, 4879, 4881, 7, 62, 0, 0, 4880, 4882, 3, 422, 211, 0, 4881, 4880, 1, 0, 0, 0, 4881, 4882, 1, 0, 0, 0, 4882, 4883, 1, 0, 0, 0, 4883, 4884, 3, 780, 390, 0, 4884, 4885, 5, 309, 0, 0, 4885, 4886, 5, 94, 0, 0, 4886, 4887, 3, 818, 409, 0, 4887, 5031, 1, 0, 0, 0, 4888, 4890, 5, 138, 0, 0, 4889, 4891, 5, 259, 0, 0, 4890, 4889, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4892, 1, 0, 0, 0, 4892, 4894, 5, 376, 0, 0, 4893, 4895, 3, 422, 211, 0, 4894, 4893, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4896, 1, 0, 0, 0, 4896, 4897, 3, 778, 389, 0, 4897, 4898, 5, 309, 0, 0, 4898, 4899, 5, 94, 0, 0, 4899, 4900, 3, 776, 388, 0, 4900, 5031, 1, 0, 0, 0, 4901, 4903, 5, 138, 0, 0, 4902, 4904, 5, 63, 0, 0, 4903, 4902, 1, 0, 0, 0, 4903, 4904, 1, 0, 0, 0, 4904, 4905, 1, 0, 0, 0, 4905, 4907, 5, 92, 0, 0, 4906, 4908, 3, 422, 211, 0, 4907, 4906, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4909, 1, 0, 0, 0, 4909, 4910, 3, 624, 312, 0, 4910, 4911, 5, 309, 0, 0, 4911, 4912, 5, 94, 0, 0, 4912, 4913, 3, 772, 386, 0, 4913, 5031, 1, 0, 0, 0, 4914, 4939, 5, 138, 0, 0, 4915, 4917, 5, 63, 0, 0, 4916, 4915, 1, 0, 0, 0, 4916, 4917, 1, 0, 0, 0, 4917, 4918, 1, 0, 0, 0, 4918, 4920, 5, 92, 0, 0, 4919, 4921, 3, 422, 211, 0, 4920, 4919, 1, 0, 0, 0, 4920, 4921, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 4923, 3, 624, 312, 0, 4923, 4925, 5, 309, 0, 0, 4924, 4926, 5, 44, 0, 0, 4925, 4924, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 4940, 1, 0, 0, 0, 4927, 4929, 5, 259, 0, 0, 4928, 4927, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 4932, 5, 376, 0, 0, 4931, 4933, 3, 422, 211, 0, 4932, 4931, 1, 0, 0, 0, 4932, 4933, 1, 0, 0, 0, 4933, 4934, 1, 0, 0, 0, 4934, 4935, 3, 778, 389, 0, 4935, 4937, 5, 309, 0, 0, 4936, 4938, 5, 44, 0, 0, 4937, 4936, 1, 0, 0, 0, 4937, 4938, 1, 0, 0, 0, 4938, 4940, 1, 0, 0, 0, 4939, 4916, 1, 0, 0, 0, 4939, 4928, 1, 0, 0, 0, 4940, 4941, 1, 0, 0, 0, 4941, 4942, 3, 800, 400, 0, 4942, 4943, 5, 94, 0, 0, 4943, 4944, 3, 802, 401, 0, 4944, 5031, 1, 0, 0, 0, 4945, 4953, 5, 138, 0, 0, 4946, 4948, 5, 92, 0, 0, 4947, 4949, 3, 422, 211, 0, 4948, 4947, 1, 0, 0, 0, 4948, 4949, 1, 0, 0, 0, 4949, 4950, 1, 0, 0, 0, 4950, 4954, 3, 624, 312, 0, 4951, 4952, 5, 189, 0, 0, 4952, 4954, 3, 316, 158, 0, 4953, 4946, 1, 0, 0, 0, 4953, 4951, 1, 0, 0, 0, 4954, 4955, 1, 0, 0, 0, 4955, 4956, 5, 309, 0, 0, 4956, 4957, 5, 45, 0, 0, 4957, 4958, 3, 818, 409, 0, 4958, 4959, 5, 94, 0, 0, 4959, 4960, 3, 818, 409, 0, 4960, 5031, 1, 0, 0, 0, 4961, 4968, 5, 138, 0, 0, 4962, 4964, 5, 445, 0, 0, 4963, 4965, 3, 422, 211, 0, 4964, 4963, 1, 0, 0, 0, 4964, 4965, 1, 0, 0, 0, 4965, 4969, 1, 0, 0, 0, 4966, 4969, 5, 321, 0, 0, 4967, 4969, 5, 357, 0, 0, 4968, 4962, 1, 0, 0, 0, 4968, 4966, 1, 0, 0, 0, 4968, 4967, 1, 0, 0, 0, 4969, 4970, 1, 0, 0, 0, 4970, 4971, 3, 818, 409, 0, 4971, 4972, 5, 80, 0, 0, 4972, 4973, 3, 780, 390, 0, 4973, 4974, 5, 309, 0, 0, 4974, 4975, 5, 94, 0, 0, 4975, 4976, 3, 818, 409, 0, 4976, 5031, 1, 0, 0, 0, 4977, 4990, 5, 138, 0, 0, 4978, 4979, 5, 63, 0, 0, 4979, 4980, 5, 174, 0, 0, 4980, 4991, 5, 381, 0, 0, 4981, 4983, 5, 295, 0, 0, 4982, 4981, 1, 0, 0, 0, 4982, 4983, 1, 0, 0, 0, 4983, 4984, 1, 0, 0, 0, 4984, 4991, 5, 247, 0, 0, 4985, 4991, 5, 452, 0, 0, 4986, 4991, 5, 331, 0, 0, 4987, 4991, 5, 451, 0, 0, 4988, 4989, 5, 198, 0, 0, 4989, 4991, 5, 357, 0, 0, 4990, 4978, 1, 0, 0, 0, 4990, 4982, 1, 0, 0, 0, 4990, 4985, 1, 0, 0, 0, 4990, 4986, 1, 0, 0, 0, 4990, 4987, 1, 0, 0, 0, 4990, 4988, 1, 0, 0, 0, 4991, 4992, 1, 0, 0, 0, 4992, 4993, 3, 818, 409, 0, 4993, 4994, 5, 309, 0, 0, 4994, 4995, 5, 94, 0, 0, 4995, 4996, 3, 818, 409, 0, 4996, 5031, 1, 0, 0, 0, 4997, 4998, 5, 138, 0, 0, 4998, 4999, 7, 45, 0, 0, 4999, 5000, 3, 814, 407, 0, 5000, 5001, 5, 309, 0, 0, 5001, 5002, 5, 94, 0, 0, 5002, 5003, 3, 814, 407, 0, 5003, 5031, 1, 0, 0, 0, 5004, 5005, 5, 138, 0, 0, 5005, 5006, 3, 176, 88, 0, 5006, 5007, 5, 309, 0, 0, 5007, 5008, 5, 94, 0, 0, 5008, 5009, 3, 768, 384, 0, 5009, 5031, 1, 0, 0, 0, 5010, 5011, 5, 138, 0, 0, 5011, 5012, 5, 355, 0, 0, 5012, 5013, 5, 325, 0, 0, 5013, 5014, 7, 41, 0, 0, 5014, 5015, 3, 316, 158, 0, 5015, 5016, 5, 309, 0, 0, 5016, 5017, 5, 94, 0, 0, 5017, 5018, 3, 818, 409, 0, 5018, 5031, 1, 0, 0, 0, 5019, 5020, 5, 138, 0, 0, 5020, 5021, 5, 360, 0, 0, 5021, 5022, 3, 316, 158, 0, 5022, 5023, 5, 309, 0, 0, 5023, 5024, 5, 143, 0, 0, 5024, 5025, 3, 818, 409, 0, 5025, 5026, 5, 94, 0, 0, 5026, 5028, 3, 818, 409, 0, 5027, 5029, 3, 96, 48, 0, 5028, 5027, 1, 0, 0, 0, 5028, 5029, 1, 0, 0, 0, 5029, 5031, 1, 0, 0, 0, 5030, 4823, 1, 0, 0, 0, 5030, 4834, 1, 0, 0, 0, 5030, 4841, 1, 0, 0, 0, 5030, 4848, 1, 0, 0, 0, 5030, 4855, 1, 0, 0, 0, 5030, 4864, 1, 0, 0, 0, 5030, 4871, 1, 0, 0, 0, 5030, 4878, 1, 0, 0, 0, 5030, 4888, 1, 0, 0, 0, 5030, 4901, 1, 0, 0, 0, 5030, 4914, 1, 0, 0, 0, 5030, 4945, 1, 0, 0, 0, 5030, 4961, 1, 0, 0, 0, 5030, 4977, 1, 0, 0, 0, 5030, 4997, 1, 0, 0, 0, 5030, 5004, 1, 0, 0, 0, 5030, 5010, 1, 0, 0, 0, 5030, 5019, 1, 0, 0, 0, 5031, 433, 1, 0, 0, 0, 5032, 5049, 5, 138, 0, 0, 5033, 5034, 5, 211, 0, 0, 5034, 5050, 3, 382, 191, 0, 5035, 5036, 5, 296, 0, 0, 5036, 5050, 3, 378, 189, 0, 5037, 5038, 5, 442, 0, 0, 5038, 5050, 3, 374, 187, 0, 5039, 5040, 5, 357, 0, 0, 5040, 5041, 3, 818, 409, 0, 5041, 5042, 5, 80, 0, 0, 5042, 5043, 3, 780, 390, 0, 5043, 5050, 1, 0, 0, 0, 5044, 5045, 5, 259, 0, 0, 5045, 5046, 5, 376, 0, 0, 5046, 5050, 3, 778, 389, 0, 5047, 5048, 5, 226, 0, 0, 5048, 5050, 3, 780, 390, 0, 5049, 5033, 1, 0, 0, 0, 5049, 5035, 1, 0, 0, 0, 5049, 5037, 1, 0, 0, 0, 5049, 5039, 1, 0, 0, 0, 5049, 5044, 1, 0, 0, 0, 5049, 5047, 1, 0, 0, 0, 5050, 5052, 1, 0, 0, 0, 5051, 5053, 5, 269, 0, 0, 5052, 5051, 1, 0, 0, 0, 5052, 5053, 1, 0, 0, 0, 5053, 5054, 1, 0, 0, 0, 5054, 5055, 5, 462, 0, 0, 5055, 5056, 5, 80, 0, 0, 5056, 5057, 5, 204, 0, 0, 5057, 5058, 3, 818, 409, 0, 5058, 435, 1, 0, 0, 0, 5059, 5098, 5, 138, 0, 0, 5060, 5061, 5, 136, 0, 0, 5061, 5099, 3, 394, 197, 0, 5062, 5063, 5, 204, 0, 0, 5063, 5099, 3, 818, 409, 0, 5064, 5065, 5, 211, 0, 0, 5065, 5099, 3, 382, 191, 0, 5066, 5067, 5, 278, 0, 0, 5067, 5099, 3, 416, 208, 0, 5068, 5069, 5, 278, 0, 0, 5069, 5070, 7, 31, 0, 0, 5070, 5071, 3, 316, 158, 0, 5071, 5072, 3, 170, 85, 0, 5072, 5099, 1, 0, 0, 0, 5073, 5074, 5, 296, 0, 0, 5074, 5099, 3, 378, 189, 0, 5075, 5076, 5, 442, 0, 0, 5076, 5099, 3, 374, 187, 0, 5077, 5079, 5, 328, 0, 0, 5078, 5080, 3, 422, 211, 0, 5079, 5078, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5099, 3, 780, 390, 0, 5082, 5084, 5, 259, 0, 0, 5083, 5082, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 5085, 1, 0, 0, 0, 5085, 5087, 5, 376, 0, 0, 5086, 5088, 3, 422, 211, 0, 5087, 5086, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5099, 3, 778, 389, 0, 5090, 5092, 5, 63, 0, 0, 5091, 5090, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5095, 5, 92, 0, 0, 5094, 5096, 3, 422, 211, 0, 5095, 5094, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5097, 1, 0, 0, 0, 5097, 5099, 3, 624, 312, 0, 5098, 5060, 1, 0, 0, 0, 5098, 5062, 1, 0, 0, 0, 5098, 5064, 1, 0, 0, 0, 5098, 5066, 1, 0, 0, 0, 5098, 5068, 1, 0, 0, 0, 5098, 5073, 1, 0, 0, 0, 5098, 5075, 1, 0, 0, 0, 5098, 5077, 1, 0, 0, 0, 5098, 5083, 1, 0, 0, 0, 5098, 5091, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5101, 5, 333, 0, 0, 5101, 5102, 5, 323, 0, 0, 5102, 5103, 3, 790, 395, 0, 5103, 5121, 1, 0, 0, 0, 5104, 5113, 5, 138, 0, 0, 5105, 5106, 5, 355, 0, 0, 5106, 5107, 5, 325, 0, 0, 5107, 5114, 7, 41, 0, 0, 5108, 5114, 5, 108, 0, 0, 5109, 5114, 5, 168, 0, 0, 5110, 5114, 5, 189, 0, 0, 5111, 5114, 5, 342, 0, 0, 5112, 5114, 5, 360, 0, 0, 5113, 5105, 1, 0, 0, 0, 5113, 5108, 1, 0, 0, 0, 5113, 5109, 1, 0, 0, 0, 5113, 5110, 1, 0, 0, 0, 5113, 5111, 1, 0, 0, 0, 5113, 5112, 1, 0, 0, 0, 5114, 5115, 1, 0, 0, 0, 5115, 5116, 3, 316, 158, 0, 5116, 5117, 5, 333, 0, 0, 5117, 5118, 5, 323, 0, 0, 5118, 5119, 3, 790, 395, 0, 5119, 5121, 1, 0, 0, 0, 5120, 5059, 1, 0, 0, 0, 5120, 5104, 1, 0, 0, 0, 5121, 437, 1, 0, 0, 0, 5122, 5123, 5, 138, 0, 0, 5123, 5124, 5, 278, 0, 0, 5124, 5125, 3, 416, 208, 0, 5125, 5126, 5, 333, 0, 0, 5126, 5127, 3, 440, 220, 0, 5127, 439, 1, 0, 0, 0, 5128, 5129, 5, 2, 0, 0, 5129, 5134, 3, 442, 221, 0, 5130, 5131, 5, 6, 0, 0, 5131, 5133, 3, 442, 221, 0, 5132, 5130, 1, 0, 0, 0, 5133, 5136, 1, 0, 0, 0, 5134, 5132, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5137, 1, 0, 0, 0, 5136, 5134, 1, 0, 0, 0, 5137, 5138, 5, 3, 0, 0, 5138, 441, 1, 0, 0, 0, 5139, 5140, 3, 824, 412, 0, 5140, 5147, 5, 10, 0, 0, 5141, 5148, 5, 407, 0, 0, 5142, 5148, 3, 388, 194, 0, 5143, 5148, 3, 834, 417, 0, 5144, 5148, 3, 726, 363, 0, 5145, 5148, 3, 202, 101, 0, 5146, 5148, 3, 808, 404, 0, 5147, 5141, 1, 0, 0, 0, 5147, 5142, 1, 0, 0, 0, 5147, 5143, 1, 0, 0, 0, 5147, 5144, 1, 0, 0, 0, 5147, 5145, 1, 0, 0, 0, 5147, 5146, 1, 0, 0, 0, 5148, 443, 1, 0, 0, 0, 5149, 5150, 5, 138, 0, 0, 5150, 5151, 5, 360, 0, 0, 5151, 5152, 3, 316, 158, 0, 5152, 5153, 5, 333, 0, 0, 5153, 5154, 3, 440, 220, 0, 5154, 445, 1, 0, 0, 0, 5155, 5156, 5, 138, 0, 0, 5156, 5157, 5, 278, 0, 0, 5157, 5158, 7, 31, 0, 0, 5158, 5159, 3, 316, 158, 0, 5159, 5160, 3, 170, 85, 0, 5160, 5161, 5, 282, 0, 0, 5161, 5162, 5, 94, 0, 0, 5162, 5163, 3, 814, 407, 0, 5163, 5230, 1, 0, 0, 0, 5164, 5191, 5, 138, 0, 0, 5165, 5166, 5, 136, 0, 0, 5166, 5192, 3, 394, 197, 0, 5167, 5168, 5, 175, 0, 0, 5168, 5192, 3, 788, 394, 0, 5169, 5170, 5, 211, 0, 0, 5170, 5192, 3, 382, 191, 0, 5171, 5173, 5, 295, 0, 0, 5172, 5171, 1, 0, 0, 0, 5172, 5173, 1, 0, 0, 0, 5173, 5174, 1, 0, 0, 0, 5174, 5175, 5, 247, 0, 0, 5175, 5192, 3, 818, 409, 0, 5176, 5177, 5, 248, 0, 0, 5177, 5178, 5, 274, 0, 0, 5178, 5192, 3, 202, 101, 0, 5179, 5180, 5, 248, 0, 0, 5180, 5181, 5, 274, 0, 0, 5181, 5192, 3, 202, 101, 0, 5182, 5183, 5, 278, 0, 0, 5183, 5192, 3, 416, 208, 0, 5184, 5185, 5, 296, 0, 0, 5185, 5192, 3, 378, 189, 0, 5186, 5187, 5, 442, 0, 0, 5187, 5192, 3, 374, 187, 0, 5188, 5189, 5, 323, 0, 0, 5189, 5192, 3, 790, 395, 0, 5190, 5192, 3, 176, 88, 0, 5191, 5165, 1, 0, 0, 0, 5191, 5167, 1, 0, 0, 0, 5191, 5169, 1, 0, 0, 0, 5191, 5172, 1, 0, 0, 0, 5191, 5176, 1, 0, 0, 0, 5191, 5179, 1, 0, 0, 0, 5191, 5182, 1, 0, 0, 0, 5191, 5184, 1, 0, 0, 0, 5191, 5186, 1, 0, 0, 0, 5191, 5188, 1, 0, 0, 0, 5191, 5190, 1, 0, 0, 0, 5192, 5193, 1, 0, 0, 0, 5193, 5194, 5, 282, 0, 0, 5194, 5195, 5, 94, 0, 0, 5195, 5196, 3, 814, 407, 0, 5196, 5230, 1, 0, 0, 0, 5197, 5206, 5, 138, 0, 0, 5198, 5199, 5, 355, 0, 0, 5199, 5200, 5, 325, 0, 0, 5200, 5207, 7, 63, 0, 0, 5201, 5207, 5, 108, 0, 0, 5202, 5207, 5, 168, 0, 0, 5203, 5207, 5, 189, 0, 0, 5204, 5207, 5, 360, 0, 0, 5205, 5207, 5, 342, 0, 0, 5206, 5198, 1, 0, 0, 0, 5206, 5201, 1, 0, 0, 0, 5206, 5202, 1, 0, 0, 0, 5206, 5203, 1, 0, 0, 0, 5206, 5204, 1, 0, 0, 0, 5206, 5205, 1, 0, 0, 0, 5207, 5208, 1, 0, 0, 0, 5208, 5209, 3, 316, 158, 0, 5209, 5210, 5, 282, 0, 0, 5210, 5211, 5, 94, 0, 0, 5211, 5212, 3, 814, 407, 0, 5212, 5230, 1, 0, 0, 0, 5213, 5222, 5, 138, 0, 0, 5214, 5223, 5, 331, 0, 0, 5215, 5216, 5, 63, 0, 0, 5216, 5217, 5, 174, 0, 0, 5217, 5223, 5, 381, 0, 0, 5218, 5219, 5, 198, 0, 0, 5219, 5223, 5, 357, 0, 0, 5220, 5223, 5, 452, 0, 0, 5221, 5223, 5, 451, 0, 0, 5222, 5214, 1, 0, 0, 0, 5222, 5215, 1, 0, 0, 0, 5222, 5218, 1, 0, 0, 0, 5222, 5220, 1, 0, 0, 0, 5222, 5221, 1, 0, 0, 0, 5223, 5224, 1, 0, 0, 0, 5224, 5225, 3, 818, 409, 0, 5225, 5226, 5, 282, 0, 0, 5226, 5227, 5, 94, 0, 0, 5227, 5228, 3, 814, 407, 0, 5228, 5230, 1, 0, 0, 0, 5229, 5155, 1, 0, 0, 0, 5229, 5164, 1, 0, 0, 0, 5229, 5197, 1, 0, 0, 0, 5229, 5213, 1, 0, 0, 0, 5230, 447, 1, 0, 0, 0, 5231, 5232, 5, 46, 0, 0, 5232, 5233, 5, 452, 0, 0, 5233, 5240, 3, 818, 409, 0, 5234, 5235, 5, 62, 0, 0, 5235, 5236, 5, 92, 0, 0, 5236, 5241, 3, 628, 314, 0, 5237, 5238, 5, 62, 0, 0, 5238, 5239, 5, 30, 0, 0, 5239, 5241, 5, 350, 0, 0, 5240, 5234, 1, 0, 0, 0, 5240, 5237, 1, 0, 0, 0, 5240, 5241, 1, 0, 0, 0, 5241, 5243, 1, 0, 0, 0, 5242, 5244, 3, 400, 200, 0, 5243, 5242, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 449, 1, 0, 0, 0, 5245, 5246, 5, 138, 0, 0, 5246, 5247, 5, 452, 0, 0, 5247, 5265, 3, 818, 409, 0, 5248, 5249, 5, 282, 0, 0, 5249, 5250, 5, 94, 0, 0, 5250, 5266, 3, 814, 407, 0, 5251, 5252, 5, 333, 0, 0, 5252, 5266, 3, 284, 142, 0, 5253, 5254, 5, 309, 0, 0, 5254, 5255, 5, 94, 0, 0, 5255, 5266, 3, 818, 409, 0, 5256, 5257, 7, 34, 0, 0, 5257, 5262, 3, 626, 313, 0, 5258, 5259, 5, 6, 0, 0, 5259, 5261, 3, 626, 313, 0, 5260, 5258, 1, 0, 0, 0, 5261, 5264, 1, 0, 0, 0, 5262, 5260, 1, 0, 0, 0, 5262, 5263, 1, 0, 0, 0, 5263, 5266, 1, 0, 0, 0, 5264, 5262, 1, 0, 0, 0, 5265, 5248, 1, 0, 0, 0, 5265, 5251, 1, 0, 0, 0, 5265, 5253, 1, 0, 0, 0, 5265, 5256, 1, 0, 0, 0, 5266, 451, 1, 0, 0, 0, 5267, 5268, 5, 46, 0, 0, 5268, 5269, 5, 451, 0, 0, 5269, 5270, 3, 818, 409, 0, 5270, 5271, 5, 164, 0, 0, 5271, 5272, 3, 808, 404, 0, 5272, 5273, 5, 452, 0, 0, 5273, 5278, 3, 824, 412, 0, 5274, 5275, 5, 6, 0, 0, 5275, 5277, 3, 824, 412, 0, 5276, 5274, 1, 0, 0, 0, 5277, 5280, 1, 0, 0, 0, 5278, 5276, 1, 0, 0, 0, 5278, 5279, 1, 0, 0, 0, 5279, 5282, 1, 0, 0, 0, 5280, 5278, 1, 0, 0, 0, 5281, 5283, 3, 400, 200, 0, 5282, 5281, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 453, 1, 0, 0, 0, 5284, 5285, 5, 138, 0, 0, 5285, 5286, 5, 451, 0, 0, 5286, 5287, 3, 818, 409, 0, 5287, 5288, 5, 333, 0, 0, 5288, 5289, 3, 284, 142, 0, 5289, 5341, 1, 0, 0, 0, 5290, 5291, 5, 138, 0, 0, 5291, 5292, 5, 451, 0, 0, 5292, 5293, 3, 818, 409, 0, 5293, 5294, 5, 164, 0, 0, 5294, 5295, 3, 808, 404, 0, 5295, 5341, 1, 0, 0, 0, 5296, 5297, 5, 138, 0, 0, 5297, 5298, 5, 451, 0, 0, 5298, 5299, 3, 818, 409, 0, 5299, 5300, 5, 305, 0, 0, 5300, 5302, 5, 452, 0, 0, 5301, 5303, 3, 400, 200, 0, 5302, 5301, 1, 0, 0, 0, 5302, 5303, 1, 0, 0, 0, 5303, 5341, 1, 0, 0, 0, 5304, 5305, 5, 138, 0, 0, 5305, 5306, 5, 451, 0, 0, 5306, 5307, 3, 818, 409, 0, 5307, 5308, 7, 34, 0, 0, 5308, 5309, 5, 452, 0, 0, 5309, 5314, 3, 824, 412, 0, 5310, 5311, 5, 6, 0, 0, 5311, 5313, 3, 824, 412, 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, 5318, 1, 0, 0, 0, 5316, 5314, 1, 0, 0, 0, 5317, 5319, 3, 400, 200, 0, 5318, 5317, 1, 0, 0, 0, 5318, 5319, 1, 0, 0, 0, 5319, 5341, 1, 0, 0, 0, 5320, 5321, 5, 138, 0, 0, 5321, 5322, 5, 451, 0, 0, 5322, 5323, 3, 818, 409, 0, 5323, 5324, 7, 64, 0, 0, 5324, 5341, 1, 0, 0, 0, 5325, 5326, 5, 138, 0, 0, 5326, 5327, 5, 451, 0, 0, 5327, 5328, 3, 818, 409, 0, 5328, 5329, 5, 465, 0, 0, 5329, 5330, 5, 2, 0, 0, 5330, 5331, 3, 290, 145, 0, 5331, 5332, 5, 3, 0, 0, 5332, 5341, 1, 0, 0, 0, 5333, 5334, 5, 138, 0, 0, 5334, 5335, 5, 451, 0, 0, 5335, 5336, 3, 818, 409, 0, 5336, 5337, 5, 282, 0, 0, 5337, 5338, 5, 94, 0, 0, 5338, 5339, 3, 814, 407, 0, 5339, 5341, 1, 0, 0, 0, 5340, 5284, 1, 0, 0, 0, 5340, 5290, 1, 0, 0, 0, 5340, 5296, 1, 0, 0, 0, 5340, 5304, 1, 0, 0, 0, 5340, 5320, 1, 0, 0, 0, 5340, 5325, 1, 0, 0, 0, 5340, 5333, 1, 0, 0, 0, 5341, 455, 1, 0, 0, 0, 5342, 5344, 5, 46, 0, 0, 5343, 5345, 3, 366, 183, 0, 5344, 5343, 1, 0, 0, 0, 5344, 5345, 1, 0, 0, 0, 5345, 5346, 1, 0, 0, 0, 5346, 5347, 5, 321, 0, 0, 5347, 5348, 3, 818, 409, 0, 5348, 5349, 5, 36, 0, 0, 5349, 5350, 5, 80, 0, 0, 5350, 5351, 7, 65, 0, 0, 5351, 5352, 5, 94, 0, 0, 5352, 5354, 3, 780, 390, 0, 5353, 5355, 3, 638, 319, 0, 5354, 5353, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5356, 1, 0, 0, 0, 5356, 5358, 5, 57, 0, 0, 5357, 5359, 7, 66, 0, 0, 5358, 5357, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5376, 1, 0, 0, 0, 5360, 5377, 5, 270, 0, 0, 5361, 5377, 3, 458, 229, 0, 5362, 5364, 5, 2, 0, 0, 5363, 5365, 3, 458, 229, 0, 5364, 5363, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5372, 1, 0, 0, 0, 5366, 5368, 5, 7, 0, 0, 5367, 5369, 3, 458, 229, 0, 5368, 5367, 1, 0, 0, 0, 5368, 5369, 1, 0, 0, 0, 5369, 5371, 1, 0, 0, 0, 5370, 5366, 1, 0, 0, 0, 5371, 5374, 1, 0, 0, 0, 5372, 5370, 1, 0, 0, 0, 5372, 5373, 1, 0, 0, 0, 5373, 5375, 1, 0, 0, 0, 5374, 5372, 1, 0, 0, 0, 5375, 5377, 5, 3, 0, 0, 5376, 5360, 1, 0, 0, 0, 5376, 5361, 1, 0, 0, 0, 5376, 5362, 1, 0, 0, 0, 5377, 457, 1, 0, 0, 0, 5378, 5384, 3, 560, 280, 0, 5379, 5384, 3, 538, 269, 0, 5380, 5384, 3, 552, 276, 0, 5381, 5384, 3, 548, 274, 0, 5382, 5384, 3, 460, 230, 0, 5383, 5378, 1, 0, 0, 0, 5383, 5379, 1, 0, 0, 0, 5383, 5380, 1, 0, 0, 0, 5383, 5381, 1, 0, 0, 0, 5383, 5382, 1, 0, 0, 0, 5384, 459, 1, 0, 0, 0, 5385, 5386, 5, 271, 0, 0, 5386, 5388, 3, 818, 409, 0, 5387, 5389, 3, 462, 231, 0, 5388, 5387, 1, 0, 0, 0, 5388, 5389, 1, 0, 0, 0, 5389, 461, 1, 0, 0, 0, 5390, 5391, 5, 6, 0, 0, 5391, 5392, 3, 808, 404, 0, 5392, 463, 1, 0, 0, 0, 5393, 5394, 5, 252, 0, 0, 5394, 5395, 3, 818, 409, 0, 5395, 465, 1, 0, 0, 0, 5396, 5399, 5, 366, 0, 0, 5397, 5400, 3, 818, 409, 0, 5398, 5400, 5, 9, 0, 0, 5399, 5397, 1, 0, 0, 0, 5399, 5398, 1, 0, 0, 0, 5400, 467, 1, 0, 0, 0, 5401, 5403, 5, 146, 0, 0, 5402, 5404, 3, 470, 235, 0, 5403, 5402, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5406, 1, 0, 0, 0, 5405, 5407, 3, 474, 237, 0, 5406, 5405, 1, 0, 0, 0, 5406, 5407, 1, 0, 0, 0, 5407, 5447, 1, 0, 0, 0, 5408, 5409, 5, 340, 0, 0, 5409, 5411, 5, 356, 0, 0, 5410, 5412, 3, 474, 237, 0, 5411, 5410, 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5447, 1, 0, 0, 0, 5413, 5414, 5, 322, 0, 0, 5414, 5447, 3, 818, 409, 0, 5415, 5417, 5, 308, 0, 0, 5416, 5418, 5, 322, 0, 0, 5417, 5416, 1, 0, 0, 0, 5417, 5418, 1, 0, 0, 0, 5418, 5419, 1, 0, 0, 0, 5419, 5447, 3, 818, 409, 0, 5420, 5421, 5, 290, 0, 0, 5421, 5422, 5, 356, 0, 0, 5422, 5447, 3, 808, 404, 0, 5423, 5424, 7, 67, 0, 0, 5424, 5425, 5, 291, 0, 0, 5425, 5447, 3, 808, 404, 0, 5426, 5428, 7, 68, 0, 0, 5427, 5429, 3, 470, 235, 0, 5428, 5427, 1, 0, 0, 0, 5428, 5429, 1, 0, 0, 0, 5429, 5435, 1, 0, 0, 0, 5430, 5432, 5, 33, 0, 0, 5431, 5433, 5, 269, 0, 0, 5432, 5431, 1, 0, 0, 0, 5432, 5433, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5436, 5, 153, 0, 0, 5435, 5430, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5447, 1, 0, 0, 0, 5437, 5439, 5, 319, 0, 0, 5438, 5440, 3, 470, 235, 0, 5439, 5438, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5443, 5, 94, 0, 0, 5442, 5444, 5, 322, 0, 0, 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5445, 1, 0, 0, 0, 5445, 5447, 3, 818, 409, 0, 5446, 5401, 1, 0, 0, 0, 5446, 5408, 1, 0, 0, 0, 5446, 5413, 1, 0, 0, 0, 5446, 5415, 1, 0, 0, 0, 5446, 5420, 1, 0, 0, 0, 5446, 5423, 1, 0, 0, 0, 5446, 5426, 1, 0, 0, 0, 5446, 5437, 1, 0, 0, 0, 5447, 469, 1, 0, 0, 0, 5448, 5449, 7, 69, 0, 0, 5449, 471, 1, 0, 0, 0, 5450, 5451, 5, 244, 0, 0, 5451, 5452, 5, 251, 0, 0, 5452, 5460, 3, 50, 25, 0, 5453, 5454, 5, 300, 0, 0, 5454, 5460, 7, 70, 0, 0, 5455, 5457, 5, 77, 0, 0, 5456, 5455, 1, 0, 0, 0, 5456, 5457, 1, 0, 0, 0, 5457, 5458, 1, 0, 0, 0, 5458, 5460, 5, 54, 0, 0, 5459, 5450, 1, 0, 0, 0, 5459, 5453, 1, 0, 0, 0, 5459, 5456, 1, 0, 0, 0, 5460, 473, 1, 0, 0, 0, 5461, 5468, 3, 472, 236, 0, 5462, 5464, 5, 6, 0, 0, 5463, 5462, 1, 0, 0, 0, 5463, 5464, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 5467, 3, 472, 236, 0, 5466, 5463, 1, 0, 0, 0, 5467, 5470, 1, 0, 0, 0, 5468, 5466, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 475, 1, 0, 0, 0, 5470, 5468, 1, 0, 0, 0, 5471, 5474, 5, 46, 0, 0, 5472, 5473, 5, 82, 0, 0, 5473, 5475, 5, 311, 0, 0, 5474, 5472, 1, 0, 0, 0, 5474, 5475, 1, 0, 0, 0, 5475, 5477, 1, 0, 0, 0, 5476, 5478, 3, 122, 61, 0, 5477, 5476, 1, 0, 0, 0, 5477, 5478, 1, 0, 0, 0, 5478, 5494, 1, 0, 0, 0, 5479, 5480, 5, 376, 0, 0, 5480, 5482, 3, 776, 388, 0, 5481, 5483, 3, 146, 73, 0, 5482, 5481, 1, 0, 0, 0, 5482, 5483, 1, 0, 0, 0, 5483, 5485, 1, 0, 0, 0, 5484, 5486, 3, 102, 51, 0, 5485, 5484, 1, 0, 0, 0, 5485, 5486, 1, 0, 0, 0, 5486, 5495, 1, 0, 0, 0, 5487, 5488, 5, 303, 0, 0, 5488, 5489, 5, 376, 0, 0, 5489, 5490, 3, 776, 388, 0, 5490, 5492, 3, 144, 72, 0, 5491, 5493, 3, 102, 51, 0, 5492, 5491, 1, 0, 0, 0, 5492, 5493, 1, 0, 0, 0, 5493, 5495, 1, 0, 0, 0, 5494, 5479, 1, 0, 0, 0, 5494, 5487, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5497, 5, 36, 0, 0, 5497, 5504, 3, 560, 280, 0, 5498, 5500, 5, 105, 0, 0, 5499, 5501, 7, 71, 0, 0, 5500, 5499, 1, 0, 0, 0, 5500, 5501, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, 5502, 5503, 5, 42, 0, 0, 5503, 5505, 5, 279, 0, 0, 5504, 5498, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 477, 1, 0, 0, 0, 5506, 5507, 5, 253, 0, 0, 5507, 5508, 3, 808, 404, 0, 5508, 479, 1, 0, 0, 0, 5509, 5510, 5, 46, 0, 0, 5510, 5511, 5, 175, 0, 0, 5511, 5513, 3, 786, 393, 0, 5512, 5514, 5, 105, 0, 0, 5513, 5512, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5520, 1, 0, 0, 0, 5515, 5517, 3, 482, 241, 0, 5516, 5515, 1, 0, 0, 0, 5517, 5518, 1, 0, 0, 0, 5518, 5516, 1, 0, 0, 0, 5518, 5519, 1, 0, 0, 0, 5519, 5521, 1, 0, 0, 0, 5520, 5516, 1, 0, 0, 0, 5520, 5521, 1, 0, 0, 0, 5521, 481, 1, 0, 0, 0, 5522, 5523, 5, 164, 0, 0, 5523, 5531, 5, 74, 0, 0, 5524, 5531, 5, 194, 0, 0, 5525, 5531, 5, 255, 0, 0, 5526, 5531, 5, 282, 0, 0, 5527, 5531, 5, 351, 0, 0, 5528, 5531, 5, 353, 0, 0, 5529, 5531, 3, 826, 413, 0, 5530, 5522, 1, 0, 0, 0, 5530, 5524, 1, 0, 0, 0, 5530, 5525, 1, 0, 0, 0, 5530, 5526, 1, 0, 0, 0, 5530, 5527, 1, 0, 0, 0, 5530, 5528, 1, 0, 0, 0, 5530, 5529, 1, 0, 0, 0, 5531, 5533, 1, 0, 0, 0, 5532, 5534, 5, 10, 0, 0, 5533, 5532, 1, 0, 0, 0, 5533, 5534, 1, 0, 0, 0, 5534, 5538, 1, 0, 0, 0, 5535, 5539, 3, 812, 406, 0, 5536, 5539, 3, 54, 27, 0, 5537, 5539, 5, 53, 0, 0, 5538, 5535, 1, 0, 0, 0, 5538, 5536, 1, 0, 0, 0, 5538, 5537, 1, 0, 0, 0, 5539, 483, 1, 0, 0, 0, 5540, 5541, 5, 138, 0, 0, 5541, 5542, 5, 175, 0, 0, 5542, 5558, 3, 788, 394, 0, 5543, 5544, 5, 333, 0, 0, 5544, 5545, 5, 351, 0, 0, 5545, 5547, 3, 768, 384, 0, 5546, 5543, 1, 0, 0, 0, 5546, 5547, 1, 0, 0, 0, 5547, 5559, 1, 0, 0, 0, 5548, 5550, 5, 105, 0, 0, 5549, 5548, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 5552, 1, 0, 0, 0, 5551, 5553, 3, 482, 241, 0, 5552, 5551, 1, 0, 0, 0, 5553, 5554, 1, 0, 0, 0, 5554, 5552, 1, 0, 0, 0, 5554, 5555, 1, 0, 0, 0, 5555, 5557, 1, 0, 0, 0, 5556, 5549, 1, 0, 0, 0, 5556, 5557, 1, 0, 0, 0, 5557, 5559, 1, 0, 0, 0, 5558, 5546, 1, 0, 0, 0, 5558, 5556, 1, 0, 0, 0, 5559, 485, 1, 0, 0, 0, 5560, 5561, 5, 138, 0, 0, 5561, 5562, 5, 175, 0, 0, 5562, 5564, 3, 788, 394, 0, 5563, 5565, 3, 64, 32, 0, 5564, 5563, 1, 0, 0, 0, 5564, 5565, 1, 0, 0, 0, 5565, 487, 1, 0, 0, 0, 5566, 5567, 5, 138, 0, 0, 5567, 5568, 5, 108, 0, 0, 5568, 5569, 3, 316, 158, 0, 5569, 5570, 5, 305, 0, 0, 5570, 5571, 5, 375, 0, 0, 5571, 489, 1, 0, 0, 0, 5572, 5573, 5, 138, 0, 0, 5573, 5574, 5, 349, 0, 0, 5574, 5575, 7, 16, 0, 0, 5575, 5576, 3, 40, 20, 0, 5576, 491, 1, 0, 0, 0, 5577, 5578, 5, 46, 0, 0, 5578, 5579, 5, 189, 0, 0, 5579, 5581, 3, 316, 158, 0, 5580, 5582, 5, 36, 0, 0, 5581, 5580, 1, 0, 0, 0, 5581, 5582, 1, 0, 0, 0, 5582, 5583, 1, 0, 0, 0, 5583, 5587, 3, 652, 326, 0, 5584, 5586, 3, 134, 67, 0, 5585, 5584, 1, 0, 0, 0, 5586, 5589, 1, 0, 0, 0, 5587, 5585, 1, 0, 0, 0, 5587, 5588, 1, 0, 0, 0, 5588, 493, 1, 0, 0, 0, 5589, 5587, 1, 0, 0, 0, 5590, 5591, 5, 138, 0, 0, 5591, 5592, 5, 189, 0, 0, 5592, 5615, 3, 316, 158, 0, 5593, 5616, 3, 94, 47, 0, 5594, 5595, 7, 15, 0, 0, 5595, 5596, 5, 77, 0, 0, 5596, 5616, 5, 78, 0, 0, 5597, 5600, 5, 133, 0, 0, 5598, 5599, 5, 45, 0, 0, 5599, 5601, 3, 818, 409, 0, 5600, 5598, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5602, 1, 0, 0, 0, 5602, 5616, 3, 142, 71, 0, 5603, 5604, 5, 191, 0, 0, 5604, 5606, 5, 45, 0, 0, 5605, 5607, 3, 422, 211, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5610, 3, 818, 409, 0, 5609, 5611, 3, 96, 48, 0, 5610, 5609, 1, 0, 0, 0, 5610, 5611, 1, 0, 0, 0, 5611, 5616, 1, 0, 0, 0, 5612, 5613, 5, 372, 0, 0, 5613, 5614, 5, 45, 0, 0, 5614, 5616, 3, 818, 409, 0, 5615, 5593, 1, 0, 0, 0, 5615, 5594, 1, 0, 0, 0, 5615, 5597, 1, 0, 0, 0, 5615, 5603, 1, 0, 0, 0, 5615, 5612, 1, 0, 0, 0, 5616, 495, 1, 0, 0, 0, 5617, 5618, 5, 138, 0, 0, 5618, 5619, 5, 355, 0, 0, 5619, 5620, 5, 325, 0, 0, 5620, 5621, 5, 185, 0, 0, 5621, 5622, 3, 316, 158, 0, 5622, 5623, 3, 284, 142, 0, 5623, 497, 1, 0, 0, 0, 5624, 5625, 5, 138, 0, 0, 5625, 5626, 5, 355, 0, 0, 5626, 5627, 5, 325, 0, 0, 5627, 5628, 5, 163, 0, 0, 5628, 5629, 3, 316, 158, 0, 5629, 5630, 7, 72, 0, 0, 5630, 5631, 5, 257, 0, 0, 5631, 5632, 5, 62, 0, 0, 5632, 5633, 3, 784, 392, 0, 5633, 5634, 5, 105, 0, 0, 5634, 5635, 3, 314, 157, 0, 5635, 5666, 1, 0, 0, 0, 5636, 5637, 5, 138, 0, 0, 5637, 5638, 5, 355, 0, 0, 5638, 5639, 5, 325, 0, 0, 5639, 5640, 5, 163, 0, 0, 5640, 5641, 3, 316, 158, 0, 5641, 5642, 5, 138, 0, 0, 5642, 5645, 5, 257, 0, 0, 5643, 5644, 5, 62, 0, 0, 5644, 5646, 3, 784, 392, 0, 5645, 5643, 1, 0, 0, 0, 5645, 5646, 1, 0, 0, 0, 5646, 5647, 1, 0, 0, 0, 5647, 5648, 5, 311, 0, 0, 5648, 5649, 3, 316, 158, 0, 5649, 5650, 5, 105, 0, 0, 5650, 5651, 3, 316, 158, 0, 5651, 5666, 1, 0, 0, 0, 5652, 5653, 5, 138, 0, 0, 5653, 5654, 5, 355, 0, 0, 5654, 5655, 5, 325, 0, 0, 5655, 5656, 5, 163, 0, 0, 5656, 5657, 3, 316, 158, 0, 5657, 5658, 5, 191, 0, 0, 5658, 5660, 5, 257, 0, 0, 5659, 5661, 3, 422, 211, 0, 5660, 5659, 1, 0, 0, 0, 5660, 5661, 1, 0, 0, 0, 5661, 5662, 1, 0, 0, 0, 5662, 5663, 5, 62, 0, 0, 5663, 5664, 3, 784, 392, 0, 5664, 5666, 1, 0, 0, 0, 5665, 5624, 1, 0, 0, 0, 5665, 5636, 1, 0, 0, 0, 5665, 5652, 1, 0, 0, 0, 5666, 499, 1, 0, 0, 0, 5667, 5669, 5, 46, 0, 0, 5668, 5670, 5, 53, 0, 0, 5669, 5668, 1, 0, 0, 0, 5669, 5670, 1, 0, 0, 0, 5670, 5671, 1, 0, 0, 0, 5671, 5672, 5, 168, 0, 0, 5672, 5673, 3, 316, 158, 0, 5673, 5674, 5, 62, 0, 0, 5674, 5675, 3, 808, 404, 0, 5675, 5676, 5, 94, 0, 0, 5676, 5677, 3, 808, 404, 0, 5677, 5678, 5, 64, 0, 0, 5678, 5679, 3, 316, 158, 0, 5679, 501, 1, 0, 0, 0, 5680, 5682, 5, 158, 0, 0, 5681, 5683, 3, 514, 257, 0, 5682, 5681, 1, 0, 0, 0, 5682, 5683, 1, 0, 0, 0, 5683, 5688, 1, 0, 0, 0, 5684, 5686, 3, 774, 387, 0, 5685, 5687, 3, 170, 85, 0, 5686, 5685, 1, 0, 0, 0, 5686, 5687, 1, 0, 0, 0, 5687, 5689, 1, 0, 0, 0, 5688, 5684, 1, 0, 0, 0, 5688, 5689, 1, 0, 0, 0, 5689, 5706, 1, 0, 0, 0, 5690, 5691, 5, 158, 0, 0, 5691, 5692, 5, 2, 0, 0, 5692, 5697, 3, 514, 257, 0, 5693, 5694, 5, 6, 0, 0, 5694, 5696, 3, 514, 257, 0, 5695, 5693, 1, 0, 0, 0, 5696, 5699, 1, 0, 0, 0, 5697, 5695, 1, 0, 0, 0, 5697, 5698, 1, 0, 0, 0, 5698, 5700, 1, 0, 0, 0, 5699, 5697, 1, 0, 0, 0, 5700, 5701, 5, 3, 0, 0, 5701, 5703, 3, 774, 387, 0, 5702, 5704, 3, 170, 85, 0, 5703, 5702, 1, 0, 0, 0, 5703, 5704, 1, 0, 0, 0, 5704, 5706, 1, 0, 0, 0, 5705, 5680, 1, 0, 0, 0, 5705, 5690, 1, 0, 0, 0, 5706, 503, 1, 0, 0, 0, 5707, 5723, 5, 370, 0, 0, 5708, 5710, 5, 113, 0, 0, 5709, 5708, 1, 0, 0, 0, 5709, 5710, 1, 0, 0, 0, 5710, 5712, 1, 0, 0, 0, 5711, 5713, 5, 112, 0, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5715, 1, 0, 0, 0, 5714, 5716, 3, 514, 257, 0, 5715, 5714, 1, 0, 0, 0, 5715, 5716, 1, 0, 0, 0, 5716, 5718, 1, 0, 0, 0, 5717, 5719, 3, 508, 254, 0, 5718, 5717, 1, 0, 0, 0, 5718, 5719, 1, 0, 0, 0, 5719, 5724, 1, 0, 0, 0, 5720, 5722, 3, 524, 262, 0, 5721, 5720, 1, 0, 0, 0, 5721, 5722, 1, 0, 0, 0, 5722, 5724, 1, 0, 0, 0, 5723, 5709, 1, 0, 0, 0, 5723, 5721, 1, 0, 0, 0, 5724, 5726, 1, 0, 0, 0, 5725, 5727, 3, 518, 259, 0, 5726, 5725, 1, 0, 0, 0, 5726, 5727, 1, 0, 0, 0, 5727, 505, 1, 0, 0, 0, 5728, 5743, 3, 508, 254, 0, 5729, 5731, 3, 514, 257, 0, 5730, 5729, 1, 0, 0, 0, 5730, 5731, 1, 0, 0, 0, 5731, 5744, 1, 0, 0, 0, 5732, 5733, 5, 2, 0, 0, 5733, 5738, 3, 512, 256, 0, 5734, 5735, 5, 6, 0, 0, 5735, 5737, 3, 512, 256, 0, 5736, 5734, 1, 0, 0, 0, 5737, 5740, 1, 0, 0, 0, 5738, 5736, 1, 0, 0, 0, 5738, 5739, 1, 0, 0, 0, 5739, 5741, 1, 0, 0, 0, 5740, 5738, 1, 0, 0, 0, 5741, 5742, 5, 3, 0, 0, 5742, 5744, 1, 0, 0, 0, 5743, 5730, 1, 0, 0, 0, 5743, 5732, 1, 0, 0, 0, 5744, 5746, 1, 0, 0, 0, 5745, 5747, 3, 518, 259, 0, 5746, 5745, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 507, 1, 0, 0, 0, 5748, 5749, 7, 73, 0, 0, 5749, 509, 1, 0, 0, 0, 5750, 5753, 3, 822, 411, 0, 5751, 5753, 3, 508, 254, 0, 5752, 5750, 1, 0, 0, 0, 5752, 5751, 1, 0, 0, 0, 5753, 5756, 1, 0, 0, 0, 5754, 5757, 3, 54, 27, 0, 5755, 5757, 3, 202, 101, 0, 5756, 5754, 1, 0, 0, 0, 5756, 5755, 1, 0, 0, 0, 5756, 5757, 1, 0, 0, 0, 5757, 511, 1, 0, 0, 0, 5758, 5760, 7, 74, 0, 0, 5759, 5761, 7, 75, 0, 0, 5760, 5759, 1, 0, 0, 0, 5760, 5761, 1, 0, 0, 0, 5761, 5768, 1, 0, 0, 0, 5762, 5765, 5, 548, 0, 0, 5763, 5766, 3, 202, 101, 0, 5764, 5766, 3, 808, 404, 0, 5765, 5763, 1, 0, 0, 0, 5765, 5764, 1, 0, 0, 0, 5766, 5768, 1, 0, 0, 0, 5767, 5758, 1, 0, 0, 0, 5767, 5762, 1, 0, 0, 0, 5768, 513, 1, 0, 0, 0, 5769, 5771, 5, 128, 0, 0, 5770, 5772, 7, 75, 0, 0, 5771, 5770, 1, 0, 0, 0, 5771, 5772, 1, 0, 0, 0, 5772, 515, 1, 0, 0, 0, 5773, 5775, 3, 774, 387, 0, 5774, 5776, 3, 144, 72, 0, 5775, 5774, 1, 0, 0, 0, 5775, 5776, 1, 0, 0, 0, 5776, 517, 1, 0, 0, 0, 5777, 5782, 3, 516, 258, 0, 5778, 5779, 5, 6, 0, 0, 5779, 5781, 3, 516, 258, 0, 5780, 5778, 1, 0, 0, 0, 5781, 5784, 1, 0, 0, 0, 5782, 5780, 1, 0, 0, 0, 5782, 5783, 1, 0, 0, 0, 5783, 519, 1, 0, 0, 0, 5784, 5782, 1, 0, 0, 0, 5785, 5796, 5, 203, 0, 0, 5786, 5797, 3, 524, 262, 0, 5787, 5789, 5, 128, 0, 0, 5788, 5787, 1, 0, 0, 0, 5788, 5789, 1, 0, 0, 0, 5789, 5797, 1, 0, 0, 0, 5790, 5792, 3, 508, 254, 0, 5791, 5793, 3, 514, 257, 0, 5792, 5791, 1, 0, 0, 0, 5792, 5793, 1, 0, 0, 0, 5793, 5795, 1, 0, 0, 0, 5794, 5790, 1, 0, 0, 0, 5794, 5795, 1, 0, 0, 0, 5795, 5797, 1, 0, 0, 0, 5796, 5786, 1, 0, 0, 0, 5796, 5788, 1, 0, 0, 0, 5796, 5794, 1, 0, 0, 0, 5797, 5798, 1, 0, 0, 0, 5798, 5799, 3, 522, 261, 0, 5799, 521, 1, 0, 0, 0, 5800, 5810, 3, 560, 280, 0, 5801, 5810, 3, 538, 269, 0, 5802, 5810, 3, 552, 276, 0, 5803, 5810, 3, 548, 274, 0, 5804, 5810, 3, 558, 279, 0, 5805, 5810, 3, 186, 93, 0, 5806, 5810, 3, 192, 96, 0, 5807, 5810, 3, 194, 97, 0, 5808, 5810, 3, 532, 266, 0, 5809, 5800, 1, 0, 0, 0, 5809, 5801, 1, 0, 0, 0, 5809, 5802, 1, 0, 0, 0, 5809, 5803, 1, 0, 0, 0, 5809, 5804, 1, 0, 0, 0, 5809, 5805, 1, 0, 0, 0, 5809, 5806, 1, 0, 0, 0, 5809, 5807, 1, 0, 0, 0, 5809, 5808, 1, 0, 0, 0, 5810, 523, 1, 0, 0, 0, 5811, 5812, 5, 2, 0, 0, 5812, 5817, 3, 510, 255, 0, 5813, 5814, 5, 6, 0, 0, 5814, 5816, 3, 510, 255, 0, 5815, 5813, 1, 0, 0, 0, 5816, 5819, 1, 0, 0, 0, 5817, 5815, 1, 0, 0, 0, 5817, 5818, 1, 0, 0, 0, 5818, 5820, 1, 0, 0, 0, 5819, 5817, 1, 0, 0, 0, 5820, 5821, 5, 3, 0, 0, 5821, 525, 1, 0, 0, 0, 5822, 5823, 5, 290, 0, 0, 5823, 5825, 3, 818, 409, 0, 5824, 5826, 3, 528, 264, 0, 5825, 5824, 1, 0, 0, 0, 5825, 5826, 1, 0, 0, 0, 5826, 5827, 1, 0, 0, 0, 5827, 5828, 5, 36, 0, 0, 5828, 5829, 3, 530, 265, 0, 5829, 527, 1, 0, 0, 0, 5830, 5831, 5, 2, 0, 0, 5831, 5836, 3, 652, 326, 0, 5832, 5833, 5, 6, 0, 0, 5833, 5835, 3, 652, 326, 0, 5834, 5832, 1, 0, 0, 0, 5835, 5838, 1, 0, 0, 0, 5836, 5834, 1, 0, 0, 0, 5836, 5837, 1, 0, 0, 0, 5837, 5839, 1, 0, 0, 0, 5838, 5836, 1, 0, 0, 0, 5839, 5840, 5, 3, 0, 0, 5840, 529, 1, 0, 0, 0, 5841, 5846, 3, 560, 280, 0, 5842, 5846, 3, 538, 269, 0, 5843, 5846, 3, 552, 276, 0, 5844, 5846, 3, 548, 274, 0, 5845, 5841, 1, 0, 0, 0, 5845, 5842, 1, 0, 0, 0, 5845, 5843, 1, 0, 0, 0, 5845, 5844, 1, 0, 0, 0, 5846, 531, 1, 0, 0, 0, 5847, 5848, 5, 202, 0, 0, 5848, 5850, 3, 818, 409, 0, 5849, 5851, 3, 534, 267, 0, 5850, 5849, 1, 0, 0, 0, 5850, 5851, 1, 0, 0, 0, 5851, 5871, 1, 0, 0, 0, 5852, 5854, 5, 46, 0, 0, 5853, 5855, 3, 122, 61, 0, 5854, 5853, 1, 0, 0, 0, 5854, 5855, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5858, 5, 92, 0, 0, 5857, 5859, 3, 294, 147, 0, 5858, 5857, 1, 0, 0, 0, 5858, 5859, 1, 0, 0, 0, 5859, 5860, 1, 0, 0, 0, 5860, 5861, 3, 188, 94, 0, 5861, 5862, 5, 36, 0, 0, 5862, 5863, 5, 202, 0, 0, 5863, 5865, 3, 818, 409, 0, 5864, 5866, 3, 534, 267, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5868, 1, 0, 0, 0, 5867, 5869, 3, 190, 95, 0, 5868, 5867, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5871, 1, 0, 0, 0, 5870, 5847, 1, 0, 0, 0, 5870, 5852, 1, 0, 0, 0, 5871, 533, 1, 0, 0, 0, 5872, 5873, 5, 2, 0, 0, 5873, 5874, 3, 730, 365, 0, 5874, 5875, 5, 3, 0, 0, 5875, 535, 1, 0, 0, 0, 5876, 5878, 5, 177, 0, 0, 5877, 5879, 5, 290, 0, 0, 5878, 5877, 1, 0, 0, 0, 5878, 5879, 1, 0, 0, 0, 5879, 5882, 1, 0, 0, 0, 5880, 5883, 3, 818, 409, 0, 5881, 5883, 5, 30, 0, 0, 5882, 5880, 1, 0, 0, 0, 5882, 5881, 1, 0, 0, 0, 5883, 537, 1, 0, 0, 0, 5884, 5886, 3, 572, 286, 0, 5885, 5884, 1, 0, 0, 0, 5885, 5886, 1, 0, 0, 0, 5886, 5887, 1, 0, 0, 0, 5887, 5888, 5, 241, 0, 0, 5888, 5889, 5, 71, 0, 0, 5889, 5892, 3, 774, 387, 0, 5890, 5891, 5, 36, 0, 0, 5891, 5893, 3, 818, 409, 0, 5892, 5890, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5894, 1, 0, 0, 0, 5894, 5916, 3, 540, 270, 0, 5895, 5896, 5, 80, 0, 0, 5896, 5904, 5, 464, 0, 0, 5897, 5899, 3, 360, 180, 0, 5898, 5900, 3, 638, 319, 0, 5899, 5898, 1, 0, 0, 0, 5899, 5900, 1, 0, 0, 0, 5900, 5905, 1, 0, 0, 0, 5901, 5902, 5, 80, 0, 0, 5902, 5903, 5, 45, 0, 0, 5903, 5905, 3, 818, 409, 0, 5904, 5897, 1, 0, 0, 0, 5904, 5901, 1, 0, 0, 0, 5904, 5905, 1, 0, 0, 0, 5905, 5906, 1, 0, 0, 0, 5906, 5914, 5, 57, 0, 0, 5907, 5908, 5, 369, 0, 0, 5908, 5909, 5, 333, 0, 0, 5909, 5911, 3, 554, 277, 0, 5910, 5912, 3, 638, 319, 0, 5911, 5910, 1, 0, 0, 0, 5911, 5912, 1, 0, 0, 0, 5912, 5915, 1, 0, 0, 0, 5913, 5915, 5, 270, 0, 0, 5914, 5907, 1, 0, 0, 0, 5914, 5913, 1, 0, 0, 0, 5915, 5917, 1, 0, 0, 0, 5916, 5895, 1, 0, 0, 0, 5916, 5917, 1, 0, 0, 0, 5917, 5919, 1, 0, 0, 0, 5918, 5920, 3, 546, 273, 0, 5919, 5918, 1, 0, 0, 0, 5919, 5920, 1, 0, 0, 0, 5920, 539, 1, 0, 0, 0, 5921, 5922, 5, 2, 0, 0, 5922, 5923, 3, 542, 271, 0, 5923, 5924, 5, 3, 0, 0, 5924, 5926, 1, 0, 0, 0, 5925, 5921, 1, 0, 0, 0, 5925, 5926, 1, 0, 0, 0, 5926, 5930, 1, 0, 0, 0, 5927, 5928, 5, 463, 0, 0, 5928, 5929, 7, 76, 0, 0, 5929, 5931, 5, 450, 0, 0, 5930, 5927, 1, 0, 0, 0, 5930, 5931, 1, 0, 0, 0, 5931, 5934, 1, 0, 0, 0, 5932, 5935, 3, 910, 455, 0, 5933, 5935, 3, 560, 280, 0, 5934, 5932, 1, 0, 0, 0, 5934, 5933, 1, 0, 0, 0, 5935, 541, 1, 0, 0, 0, 5936, 5941, 3, 544, 272, 0, 5937, 5938, 5, 6, 0, 0, 5938, 5940, 3, 544, 272, 0, 5939, 5937, 1, 0, 0, 0, 5940, 5943, 1, 0, 0, 0, 5941, 5939, 1, 0, 0, 0, 5941, 5942, 1, 0, 0, 0, 5942, 543, 1, 0, 0, 0, 5943, 5941, 1, 0, 0, 0, 5944, 5945, 3, 800, 400, 0, 5945, 5946, 3, 754, 377, 0, 5946, 545, 1, 0, 0, 0, 5947, 5948, 5, 87, 0, 0, 5948, 5949, 3, 756, 378, 0, 5949, 547, 1, 0, 0, 0, 5950, 5952, 3, 572, 286, 0, 5951, 5950, 1, 0, 0, 0, 5951, 5952, 1, 0, 0, 0, 5952, 5953, 1, 0, 0, 0, 5953, 5954, 5, 182, 0, 0, 5954, 5955, 5, 64, 0, 0, 5955, 5958, 3, 630, 315, 0, 5956, 5957, 5, 100, 0, 0, 5957, 5959, 3, 612, 306, 0, 5958, 5956, 1, 0, 0, 0, 5958, 5959, 1, 0, 0, 0, 5959, 5961, 1, 0, 0, 0, 5960, 5962, 3, 640, 320, 0, 5961, 5960, 1, 0, 0, 0, 5961, 5962, 1, 0, 0, 0, 5962, 5964, 1, 0, 0, 0, 5963, 5965, 3, 546, 273, 0, 5964, 5963, 1, 0, 0, 0, 5964, 5965, 1, 0, 0, 0, 5965, 549, 1, 0, 0, 0, 5966, 5968, 5, 256, 0, 0, 5967, 5969, 5, 92, 0, 0, 5968, 5967, 1, 0, 0, 0, 5968, 5969, 1, 0, 0, 0, 5969, 5970, 1, 0, 0, 0, 5970, 5985, 3, 628, 314, 0, 5971, 5982, 5, 68, 0, 0, 5972, 5973, 7, 77, 0, 0, 5973, 5983, 7, 78, 0, 0, 5974, 5979, 5, 334, 0, 0, 5975, 5976, 5, 369, 0, 0, 5976, 5980, 5, 201, 0, 0, 5977, 5978, 5, 414, 0, 0, 5978, 5980, 5, 201, 0, 0, 5979, 5975, 1, 0, 0, 0, 5979, 5977, 1, 0, 0, 0, 5979, 5980, 1, 0, 0, 0, 5980, 5983, 1, 0, 0, 0, 5981, 5983, 5, 201, 0, 0, 5982, 5972, 1, 0, 0, 0, 5982, 5974, 1, 0, 0, 0, 5982, 5981, 1, 0, 0, 0, 5983, 5984, 1, 0, 0, 0, 5984, 5986, 5, 263, 0, 0, 5985, 5971, 1, 0, 0, 0, 5985, 5986, 1, 0, 0, 0, 5986, 5988, 1, 0, 0, 0, 5987, 5989, 5, 272, 0, 0, 5988, 5987, 1, 0, 0, 0, 5988, 5989, 1, 0, 0, 0, 5989, 551, 1, 0, 0, 0, 5990, 5992, 3, 572, 286, 0, 5991, 5990, 1, 0, 0, 0, 5991, 5992, 1, 0, 0, 0, 5992, 5993, 1, 0, 0, 0, 5993, 5994, 5, 369, 0, 0, 5994, 5995, 3, 630, 315, 0, 5995, 5996, 5, 333, 0, 0, 5996, 5998, 3, 554, 277, 0, 5997, 5999, 3, 610, 305, 0, 5998, 5997, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 6001, 1, 0, 0, 0, 6000, 6002, 3, 640, 320, 0, 6001, 6000, 1, 0, 0, 0, 6001, 6002, 1, 0, 0, 0, 6002, 6004, 1, 0, 0, 0, 6003, 6005, 3, 546, 273, 0, 6004, 6003, 1, 0, 0, 0, 6004, 6005, 1, 0, 0, 0, 6005, 553, 1, 0, 0, 0, 6006, 6011, 3, 556, 278, 0, 6007, 6008, 5, 6, 0, 0, 6008, 6010, 3, 556, 278, 0, 6009, 6007, 1, 0, 0, 0, 6010, 6013, 1, 0, 0, 0, 6011, 6009, 1, 0, 0, 0, 6011, 6012, 1, 0, 0, 0, 6012, 555, 1, 0, 0, 0, 6013, 6011, 1, 0, 0, 0, 6014, 6015, 3, 544, 272, 0, 6015, 6016, 5, 10, 0, 0, 6016, 6017, 3, 674, 337, 0, 6017, 6033, 1, 0, 0, 0, 6018, 6019, 5, 2, 0, 0, 6019, 6020, 3, 542, 271, 0, 6020, 6021, 5, 3, 0, 0, 6021, 6030, 5, 10, 0, 0, 6022, 6024, 5, 414, 0, 0, 6023, 6022, 1, 0, 0, 0, 6023, 6024, 1, 0, 0, 0, 6024, 6025, 1, 0, 0, 0, 6025, 6031, 3, 674, 337, 0, 6026, 6027, 5, 2, 0, 0, 6027, 6028, 3, 566, 283, 0, 6028, 6029, 5, 3, 0, 0, 6029, 6031, 1, 0, 0, 0, 6030, 6023, 1, 0, 0, 0, 6030, 6026, 1, 0, 0, 0, 6031, 6033, 1, 0, 0, 0, 6032, 6014, 1, 0, 0, 0, 6032, 6018, 1, 0, 0, 0, 6033, 557, 1, 0, 0, 0, 6034, 6035, 5, 178, 0, 0, 6035, 6044, 3, 818, 409, 0, 6036, 6038, 5, 269, 0, 0, 6037, 6036, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6039, 1, 0, 0, 0, 6039, 6043, 5, 324, 0, 0, 6040, 6043, 5, 107, 0, 0, 6041, 6043, 5, 240, 0, 0, 6042, 6037, 1, 0, 0, 0, 6042, 6040, 1, 0, 0, 0, 6042, 6041, 1, 0, 0, 0, 6043, 6046, 1, 0, 0, 0, 6044, 6042, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6047, 1, 0, 0, 0, 6046, 6044, 1, 0, 0, 0, 6047, 6050, 5, 172, 0, 0, 6048, 6049, 7, 26, 0, 0, 6049, 6051, 5, 217, 0, 0, 6050, 6048, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6053, 5, 62, 0, 0, 6053, 6054, 3, 560, 280, 0, 6054, 559, 1, 0, 0, 0, 6055, 6058, 3, 564, 282, 0, 6056, 6058, 3, 562, 281, 0, 6057, 6055, 1, 0, 0, 0, 6057, 6056, 1, 0, 0, 0, 6058, 561, 1, 0, 0, 0, 6059, 6062, 5, 2, 0, 0, 6060, 6063, 3, 564, 282, 0, 6061, 6063, 3, 562, 281, 0, 6062, 6060, 1, 0, 0, 0, 6062, 6061, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6065, 5, 3, 0, 0, 6065, 563, 1, 0, 0, 0, 6066, 6068, 3, 572, 286, 0, 6067, 6066, 1, 0, 0, 0, 6067, 6068, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6071, 3, 566, 283, 0, 6070, 6072, 3, 586, 293, 0, 6071, 6070, 1, 0, 0, 0, 6071, 6072, 1, 0, 0, 0, 6072, 6081, 1, 0, 0, 0, 6073, 6075, 3, 606, 303, 0, 6074, 6076, 3, 590, 295, 0, 6075, 6074, 1, 0, 0, 0, 6075, 6076, 1, 0, 0, 0, 6076, 6082, 1, 0, 0, 0, 6077, 6079, 3, 590, 295, 0, 6078, 6080, 3, 606, 303, 0, 6079, 6078, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6082, 1, 0, 0, 0, 6081, 6073, 1, 0, 0, 0, 6081, 6077, 1, 0, 0, 0, 6081, 6082, 1, 0, 0, 0, 6082, 565, 1, 0, 0, 0, 6083, 6086, 3, 568, 284, 0, 6084, 6086, 3, 562, 281, 0, 6085, 6083, 1, 0, 0, 0, 6085, 6084, 1, 0, 0, 0, 6086, 567, 1, 0, 0, 0, 6087, 6097, 5, 88, 0, 0, 6088, 6090, 5, 30, 0, 0, 6089, 6088, 1, 0, 0, 0, 6089, 6090, 1, 0, 0, 0, 6090, 6092, 1, 0, 0, 0, 6091, 6093, 3, 580, 290, 0, 6092, 6091, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6098, 1, 0, 0, 0, 6094, 6096, 3, 584, 292, 0, 6095, 6094, 1, 0, 0, 0, 6095, 6096, 1, 0, 0, 0, 6096, 6098, 1, 0, 0, 0, 6097, 6089, 1, 0, 0, 0, 6097, 6095, 1, 0, 0, 0, 6098, 6099, 1, 0, 0, 0, 6099, 6110, 3, 930, 465, 0, 6100, 6110, 3, 608, 304, 0, 6101, 6102, 5, 92, 0, 0, 6102, 6110, 3, 624, 312, 0, 6103, 6104, 3, 562, 281, 0, 6104, 6107, 3, 570, 285, 0, 6105, 6108, 3, 568, 284, 0, 6106, 6108, 3, 562, 281, 0, 6107, 6105, 1, 0, 0, 0, 6107, 6106, 1, 0, 0, 0, 6108, 6110, 1, 0, 0, 0, 6109, 6087, 1, 0, 0, 0, 6109, 6100, 1, 0, 0, 0, 6109, 6101, 1, 0, 0, 0, 6109, 6103, 1, 0, 0, 0, 6110, 6118, 1, 0, 0, 0, 6111, 6114, 3, 570, 285, 0, 6112, 6115, 3, 568, 284, 0, 6113, 6115, 3, 562, 281, 0, 6114, 6112, 1, 0, 0, 0, 6114, 6113, 1, 0, 0, 0, 6115, 6117, 1, 0, 0, 0, 6116, 6111, 1, 0, 0, 0, 6117, 6120, 1, 0, 0, 0, 6118, 6116, 1, 0, 0, 0, 6118, 6119, 1, 0, 0, 0, 6119, 569, 1, 0, 0, 0, 6120, 6118, 1, 0, 0, 0, 6121, 6123, 7, 79, 0, 0, 6122, 6124, 7, 80, 0, 0, 6123, 6122, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 571, 1, 0, 0, 0, 6125, 6127, 5, 105, 0, 0, 6126, 6128, 5, 303, 0, 0, 6127, 6126, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 6129, 1, 0, 0, 0, 6129, 6134, 3, 574, 287, 0, 6130, 6131, 5, 6, 0, 0, 6131, 6133, 3, 574, 287, 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, 573, 1, 0, 0, 0, 6136, 6134, 1, 0, 0, 0, 6137, 6139, 3, 818, 409, 0, 6138, 6140, 3, 144, 72, 0, 6139, 6138, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6141, 1, 0, 0, 0, 6141, 6146, 5, 36, 0, 0, 6142, 6144, 5, 77, 0, 0, 6143, 6142, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6145, 1, 0, 0, 0, 6145, 6147, 5, 259, 0, 0, 6146, 6143, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6148, 1, 0, 0, 0, 6148, 6149, 5, 2, 0, 0, 6149, 6150, 3, 530, 265, 0, 6150, 6152, 5, 3, 0, 0, 6151, 6153, 3, 576, 288, 0, 6152, 6151, 1, 0, 0, 0, 6152, 6153, 1, 0, 0, 0, 6153, 6155, 1, 0, 0, 0, 6154, 6156, 3, 578, 289, 0, 6155, 6154, 1, 0, 0, 0, 6155, 6156, 1, 0, 0, 0, 6156, 575, 1, 0, 0, 0, 6157, 6158, 5, 325, 0, 0, 6158, 6159, 7, 81, 0, 0, 6159, 6160, 5, 207, 0, 0, 6160, 6161, 5, 147, 0, 0, 6161, 6162, 3, 148, 74, 0, 6162, 6163, 5, 333, 0, 0, 6163, 6164, 3, 800, 400, 0, 6164, 577, 1, 0, 0, 0, 6165, 6166, 5, 173, 0, 0, 6166, 6167, 3, 148, 74, 0, 6167, 6168, 5, 333, 0, 0, 6168, 6174, 3, 800, 400, 0, 6169, 6170, 5, 94, 0, 0, 6170, 6171, 3, 818, 409, 0, 6171, 6172, 5, 53, 0, 0, 6172, 6173, 3, 818, 409, 0, 6173, 6175, 1, 0, 0, 0, 6174, 6169, 1, 0, 0, 0, 6174, 6175, 1, 0, 0, 0, 6175, 6176, 1, 0, 0, 0, 6176, 6177, 5, 100, 0, 0, 6177, 6178, 3, 800, 400, 0, 6178, 579, 1, 0, 0, 0, 6179, 6185, 5, 71, 0, 0, 6180, 6182, 5, 346, 0, 0, 6181, 6180, 1, 0, 0, 0, 6181, 6182, 1, 0, 0, 0, 6182, 6183, 1, 0, 0, 0, 6183, 6186, 3, 582, 291, 0, 6184, 6186, 3, 730, 365, 0, 6185, 6181, 1, 0, 0, 0, 6185, 6184, 1, 0, 0, 0, 6186, 581, 1, 0, 0, 0, 6187, 6189, 7, 20, 0, 0, 6188, 6187, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 6192, 7, 21, 0, 0, 6191, 6193, 5, 92, 0, 0, 6192, 6191, 1, 0, 0, 0, 6192, 6193, 1, 0, 0, 0, 6193, 6194, 1, 0, 0, 0, 6194, 6203, 3, 772, 386, 0, 6195, 6197, 5, 367, 0, 0, 6196, 6195, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6199, 1, 0, 0, 0, 6198, 6200, 5, 92, 0, 0, 6199, 6198, 1, 0, 0, 0, 6199, 6200, 1, 0, 0, 0, 6200, 6201, 1, 0, 0, 0, 6201, 6203, 3, 772, 386, 0, 6202, 6188, 1, 0, 0, 0, 6202, 6196, 1, 0, 0, 0, 6203, 583, 1, 0, 0, 0, 6204, 6207, 5, 56, 0, 0, 6205, 6206, 5, 80, 0, 0, 6206, 6208, 3, 534, 267, 0, 6207, 6205, 1, 0, 0, 0, 6207, 6208, 1, 0, 0, 0, 6208, 585, 1, 0, 0, 0, 6209, 6210, 5, 83, 0, 0, 6210, 6211, 5, 147, 0, 0, 6211, 6216, 3, 588, 294, 0, 6212, 6213, 5, 6, 0, 0, 6213, 6215, 3, 588, 294, 0, 6214, 6212, 1, 0, 0, 0, 6215, 6218, 1, 0, 0, 0, 6216, 6214, 1, 0, 0, 0, 6216, 6217, 1, 0, 0, 0, 6217, 587, 1, 0, 0, 0, 6218, 6216, 1, 0, 0, 0, 6219, 6223, 3, 734, 367, 0, 6220, 6221, 5, 100, 0, 0, 6221, 6224, 3, 726, 363, 0, 6222, 6224, 7, 55, 0, 0, 6223, 6220, 1, 0, 0, 0, 6223, 6222, 1, 0, 0, 0, 6223, 6224, 1, 0, 0, 0, 6224, 6227, 1, 0, 0, 0, 6225, 6226, 5, 273, 0, 0, 6226, 6228, 7, 56, 0, 0, 6227, 6225, 1, 0, 0, 0, 6227, 6228, 1, 0, 0, 0, 6228, 589, 1, 0, 0, 0, 6229, 6231, 3, 596, 298, 0, 6230, 6232, 3, 594, 297, 0, 6231, 6230, 1, 0, 0, 0, 6231, 6232, 1, 0, 0, 0, 6232, 6241, 1, 0, 0, 0, 6233, 6236, 3, 592, 296, 0, 6234, 6236, 3, 594, 297, 0, 6235, 6233, 1, 0, 0, 0, 6235, 6234, 1, 0, 0, 0, 6236, 6238, 1, 0, 0, 0, 6237, 6239, 3, 596, 298, 0, 6238, 6237, 1, 0, 0, 0, 6238, 6239, 1, 0, 0, 0, 6239, 6241, 1, 0, 0, 0, 6240, 6229, 1, 0, 0, 0, 6240, 6235, 1, 0, 0, 0, 6241, 591, 1, 0, 0, 0, 6242, 6245, 5, 74, 0, 0, 6243, 6246, 3, 674, 337, 0, 6244, 6246, 5, 30, 0, 0, 6245, 6243, 1, 0, 0, 0, 6245, 6244, 1, 0, 0, 0, 6246, 6249, 1, 0, 0, 0, 6247, 6248, 5, 6, 0, 0, 6248, 6250, 3, 674, 337, 0, 6249, 6247, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, 593, 1, 0, 0, 0, 6251, 6252, 5, 61, 0, 0, 6252, 6254, 7, 82, 0, 0, 6253, 6255, 3, 598, 299, 0, 6254, 6253, 1, 0, 0, 0, 6254, 6255, 1, 0, 0, 0, 6255, 6256, 1, 0, 0, 0, 6256, 6260, 7, 83, 0, 0, 6257, 6261, 5, 81, 0, 0, 6258, 6259, 5, 105, 0, 0, 6259, 6261, 5, 467, 0, 0, 6260, 6257, 1, 0, 0, 0, 6260, 6258, 1, 0, 0, 0, 6261, 595, 1, 0, 0, 0, 6262, 6267, 5, 79, 0, 0, 6263, 6264, 3, 598, 299, 0, 6264, 6265, 7, 83, 0, 0, 6265, 6268, 1, 0, 0, 0, 6266, 6268, 3, 674, 337, 0, 6267, 6263, 1, 0, 0, 0, 6267, 6266, 1, 0, 0, 0, 6268, 597, 1, 0, 0, 0, 6269, 6270, 7, 29, 0, 0, 6270, 6273, 7, 84, 0, 0, 6271, 6273, 3, 682, 341, 0, 6272, 6269, 1, 0, 0, 0, 6272, 6271, 1, 0, 0, 0, 6273, 599, 1, 0, 0, 0, 6274, 6275, 5, 66, 0, 0, 6275, 6277, 5, 147, 0, 0, 6276, 6278, 7, 80, 0, 0, 6277, 6276, 1, 0, 0, 0, 6277, 6278, 1, 0, 0, 0, 6278, 6279, 1, 0, 0, 0, 6279, 6280, 3, 602, 301, 0, 6280, 601, 1, 0, 0, 0, 6281, 6286, 3, 604, 302, 0, 6282, 6283, 5, 6, 0, 0, 6283, 6285, 3, 604, 302, 0, 6284, 6282, 1, 0, 0, 0, 6285, 6288, 1, 0, 0, 0, 6286, 6284, 1, 0, 0, 0, 6286, 6287, 1, 0, 0, 0, 6287, 603, 1, 0, 0, 0, 6288, 6286, 1, 0, 0, 0, 6289, 6313, 3, 734, 367, 0, 6290, 6291, 5, 2, 0, 0, 6291, 6313, 5, 3, 0, 0, 6292, 6294, 7, 85, 0, 0, 6293, 6292, 1, 0, 0, 0, 6293, 6294, 1, 0, 0, 0, 6294, 6295, 1, 0, 0, 0, 6295, 6296, 5, 2, 0, 0, 6296, 6301, 3, 734, 367, 0, 6297, 6298, 5, 6, 0, 0, 6298, 6300, 3, 734, 367, 0, 6299, 6297, 1, 0, 0, 0, 6300, 6303, 1, 0, 0, 0, 6301, 6299, 1, 0, 0, 0, 6301, 6302, 1, 0, 0, 0, 6302, 6304, 1, 0, 0, 0, 6303, 6301, 1, 0, 0, 0, 6304, 6305, 5, 3, 0, 0, 6305, 6313, 1, 0, 0, 0, 6306, 6307, 5, 470, 0, 0, 6307, 6308, 5, 471, 0, 0, 6308, 6309, 5, 2, 0, 0, 6309, 6310, 3, 602, 301, 0, 6310, 6311, 5, 3, 0, 0, 6311, 6313, 1, 0, 0, 0, 6312, 6289, 1, 0, 0, 0, 6312, 6290, 1, 0, 0, 0, 6312, 6293, 1, 0, 0, 0, 6312, 6306, 1, 0, 0, 0, 6313, 605, 1, 0, 0, 0, 6314, 6324, 5, 62, 0, 0, 6315, 6316, 5, 269, 0, 0, 6316, 6318, 5, 245, 0, 0, 6317, 6315, 1, 0, 0, 0, 6317, 6318, 1, 0, 0, 0, 6318, 6319, 1, 0, 0, 0, 6319, 6325, 5, 369, 0, 0, 6320, 6322, 5, 245, 0, 0, 6321, 6320, 1, 0, 0, 0, 6321, 6322, 1, 0, 0, 0, 6322, 6323, 1, 0, 0, 0, 6323, 6325, 5, 334, 0, 0, 6324, 6317, 1, 0, 0, 0, 6324, 6321, 1, 0, 0, 0, 6325, 6328, 1, 0, 0, 0, 6326, 6327, 5, 275, 0, 0, 6327, 6329, 3, 760, 380, 0, 6328, 6326, 1, 0, 0, 0, 6328, 6329, 1, 0, 0, 0, 6329, 6333, 1, 0, 0, 0, 6330, 6334, 5, 272, 0, 0, 6331, 6332, 5, 465, 0, 0, 6332, 6334, 5, 466, 0, 0, 6333, 6330, 1, 0, 0, 0, 6333, 6331, 1, 0, 0, 0, 6333, 6334, 1, 0, 0, 0, 6334, 6336, 1, 0, 0, 0, 6335, 6314, 1, 0, 0, 0, 6336, 6337, 1, 0, 0, 0, 6337, 6335, 1, 0, 0, 0, 6337, 6338, 1, 0, 0, 0, 6338, 6343, 1, 0, 0, 0, 6339, 6340, 5, 62, 0, 0, 6340, 6341, 5, 300, 0, 0, 6341, 6343, 5, 81, 0, 0, 6342, 6335, 1, 0, 0, 0, 6342, 6339, 1, 0, 0, 0, 6343, 607, 1, 0, 0, 0, 6344, 6345, 5, 422, 0, 0, 6345, 6350, 3, 534, 267, 0, 6346, 6347, 5, 6, 0, 0, 6347, 6349, 3, 534, 267, 0, 6348, 6346, 1, 0, 0, 0, 6349, 6352, 1, 0, 0, 0, 6350, 6348, 1, 0, 0, 0, 6350, 6351, 1, 0, 0, 0, 6351, 609, 1, 0, 0, 0, 6352, 6350, 1, 0, 0, 0, 6353, 6354, 5, 64, 0, 0, 6354, 6355, 3, 612, 306, 0, 6355, 611, 1, 0, 0, 0, 6356, 6361, 3, 614, 307, 0, 6357, 6358, 5, 6, 0, 0, 6358, 6360, 3, 614, 307, 0, 6359, 6357, 1, 0, 0, 0, 6360, 6363, 1, 0, 0, 0, 6361, 6359, 1, 0, 0, 0, 6361, 6362, 1, 0, 0, 0, 6362, 613, 1, 0, 0, 0, 6363, 6361, 1, 0, 0, 0, 6364, 6379, 3, 624, 312, 0, 6365, 6367, 5, 81, 0, 0, 6366, 6365, 1, 0, 0, 0, 6366, 6367, 1, 0, 0, 0, 6367, 6368, 1, 0, 0, 0, 6368, 6370, 3, 778, 389, 0, 6369, 6371, 5, 9, 0, 0, 6370, 6369, 1, 0, 0, 0, 6370, 6371, 1, 0, 0, 0, 6371, 6373, 1, 0, 0, 0, 6372, 6374, 3, 148, 74, 0, 6373, 6372, 1, 0, 0, 0, 6373, 6374, 1, 0, 0, 0, 6374, 6376, 1, 0, 0, 0, 6375, 6377, 3, 638, 319, 0, 6376, 6375, 1, 0, 0, 0, 6376, 6377, 1, 0, 0, 0, 6377, 6379, 1, 0, 0, 0, 6378, 6364, 1, 0, 0, 0, 6378, 6366, 1, 0, 0, 0, 6379, 6381, 1, 0, 0, 0, 6380, 6382, 3, 616, 308, 0, 6381, 6380, 1, 0, 0, 0, 6381, 6382, 1, 0, 0, 0, 6382, 6384, 1, 0, 0, 0, 6383, 6385, 3, 632, 316, 0, 6384, 6383, 1, 0, 0, 0, 6384, 6385, 1, 0, 0, 0, 6385, 6428, 1, 0, 0, 0, 6386, 6388, 5, 72, 0, 0, 6387, 6386, 1, 0, 0, 0, 6387, 6388, 1, 0, 0, 0, 6388, 6401, 1, 0, 0, 0, 6389, 6391, 3, 646, 323, 0, 6390, 6392, 3, 616, 308, 0, 6391, 6390, 1, 0, 0, 0, 6391, 6392, 1, 0, 0, 0, 6392, 6402, 1, 0, 0, 0, 6393, 6395, 3, 634, 317, 0, 6394, 6396, 3, 618, 309, 0, 6395, 6394, 1, 0, 0, 0, 6395, 6396, 1, 0, 0, 0, 6396, 6402, 1, 0, 0, 0, 6397, 6399, 3, 562, 281, 0, 6398, 6400, 3, 616, 308, 0, 6399, 6398, 1, 0, 0, 0, 6399, 6400, 1, 0, 0, 0, 6400, 6402, 1, 0, 0, 0, 6401, 6389, 1, 0, 0, 0, 6401, 6393, 1, 0, 0, 0, 6401, 6397, 1, 0, 0, 0, 6402, 6428, 1, 0, 0, 0, 6403, 6404, 5, 2, 0, 0, 6404, 6421, 3, 614, 307, 0, 6405, 6406, 5, 110, 0, 0, 6406, 6407, 5, 118, 0, 0, 6407, 6422, 3, 614, 307, 0, 6408, 6410, 5, 121, 0, 0, 6409, 6411, 3, 620, 310, 0, 6410, 6409, 1, 0, 0, 0, 6410, 6411, 1, 0, 0, 0, 6411, 6412, 1, 0, 0, 0, 6412, 6413, 5, 118, 0, 0, 6413, 6422, 3, 614, 307, 0, 6414, 6416, 3, 620, 310, 0, 6415, 6414, 1, 0, 0, 0, 6415, 6416, 1, 0, 0, 0, 6416, 6417, 1, 0, 0, 0, 6417, 6418, 5, 118, 0, 0, 6418, 6419, 3, 614, 307, 0, 6419, 6420, 3, 622, 311, 0, 6420, 6422, 1, 0, 0, 0, 6421, 6405, 1, 0, 0, 0, 6421, 6408, 1, 0, 0, 0, 6421, 6415, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 1, 0, 0, 0, 6423, 6425, 5, 3, 0, 0, 6424, 6426, 3, 616, 308, 0, 6425, 6424, 1, 0, 0, 0, 6425, 6426, 1, 0, 0, 0, 6426, 6428, 1, 0, 0, 0, 6427, 6378, 1, 0, 0, 0, 6427, 6387, 1, 0, 0, 0, 6427, 6403, 1, 0, 0, 0, 6428, 6447, 1, 0, 0, 0, 6429, 6430, 5, 110, 0, 0, 6430, 6431, 5, 118, 0, 0, 6431, 6446, 3, 614, 307, 0, 6432, 6434, 5, 121, 0, 0, 6433, 6435, 3, 620, 310, 0, 6434, 6433, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6436, 1, 0, 0, 0, 6436, 6437, 5, 118, 0, 0, 6437, 6446, 3, 614, 307, 0, 6438, 6440, 3, 620, 310, 0, 6439, 6438, 1, 0, 0, 0, 6439, 6440, 1, 0, 0, 0, 6440, 6441, 1, 0, 0, 0, 6441, 6442, 5, 118, 0, 0, 6442, 6443, 3, 614, 307, 0, 6443, 6444, 3, 622, 311, 0, 6444, 6446, 1, 0, 0, 0, 6445, 6429, 1, 0, 0, 0, 6445, 6432, 1, 0, 0, 0, 6445, 6439, 1, 0, 0, 0, 6446, 6449, 1, 0, 0, 0, 6447, 6445, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 615, 1, 0, 0, 0, 6449, 6447, 1, 0, 0, 0, 6450, 6452, 5, 36, 0, 0, 6451, 6450, 1, 0, 0, 0, 6451, 6452, 1, 0, 0, 0, 6452, 6453, 1, 0, 0, 0, 6453, 6458, 3, 818, 409, 0, 6454, 6455, 5, 2, 0, 0, 6455, 6456, 3, 784, 392, 0, 6456, 6457, 5, 3, 0, 0, 6457, 6459, 1, 0, 0, 0, 6458, 6454, 1, 0, 0, 0, 6458, 6459, 1, 0, 0, 0, 6459, 617, 1, 0, 0, 0, 6460, 6473, 3, 616, 308, 0, 6461, 6463, 5, 36, 0, 0, 6462, 6464, 3, 818, 409, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6467, 1, 0, 0, 0, 6465, 6467, 3, 818, 409, 0, 6466, 6461, 1, 0, 0, 0, 6466, 6465, 1, 0, 0, 0, 6467, 6468, 1, 0, 0, 0, 6468, 6469, 5, 2, 0, 0, 6469, 6470, 3, 642, 321, 0, 6470, 6471, 5, 3, 0, 0, 6471, 6473, 1, 0, 0, 0, 6472, 6460, 1, 0, 0, 0, 6472, 6466, 1, 0, 0, 0, 6473, 619, 1, 0, 0, 0, 6474, 6476, 7, 86, 0, 0, 6475, 6477, 5, 123, 0, 0, 6476, 6475, 1, 0, 0, 0, 6476, 6477, 1, 0, 0, 0, 6477, 621, 1, 0, 0, 0, 6478, 6479, 5, 100, 0, 0, 6479, 6483, 3, 144, 72, 0, 6480, 6481, 5, 80, 0, 0, 6481, 6483, 3, 674, 337, 0, 6482, 6478, 1, 0, 0, 0, 6482, 6480, 1, 0, 0, 0, 6483, 623, 1, 0, 0, 0, 6484, 6500, 3, 322, 161, 0, 6485, 6491, 5, 81, 0, 0, 6486, 6492, 3, 774, 387, 0, 6487, 6488, 5, 2, 0, 0, 6488, 6489, 3, 774, 387, 0, 6489, 6490, 5, 3, 0, 0, 6490, 6492, 1, 0, 0, 0, 6491, 6486, 1, 0, 0, 0, 6491, 6487, 1, 0, 0, 0, 6492, 6500, 1, 0, 0, 0, 6493, 6494, 5, 68, 0, 0, 6494, 6497, 5, 323, 0, 0, 6495, 6498, 3, 790, 395, 0, 6496, 6498, 5, 111, 0, 0, 6497, 6495, 1, 0, 0, 0, 6497, 6496, 1, 0, 0, 0, 6498, 6500, 1, 0, 0, 0, 6499, 6484, 1, 0, 0, 0, 6499, 6485, 1, 0, 0, 0, 6499, 6493, 1, 0, 0, 0, 6500, 625, 1, 0, 0, 0, 6501, 6502, 5, 92, 0, 0, 6502, 6504, 3, 322, 161, 0, 6503, 6505, 3, 144, 72, 0, 6504, 6503, 1, 0, 0, 0, 6504, 6505, 1, 0, 0, 0, 6505, 6507, 1, 0, 0, 0, 6506, 6508, 3, 638, 319, 0, 6507, 6506, 1, 0, 0, 0, 6507, 6508, 1, 0, 0, 0, 6508, 6526, 1, 0, 0, 0, 6509, 6510, 5, 92, 0, 0, 6510, 6516, 5, 81, 0, 0, 6511, 6517, 3, 774, 387, 0, 6512, 6513, 5, 2, 0, 0, 6513, 6514, 3, 774, 387, 0, 6514, 6515, 5, 3, 0, 0, 6515, 6517, 1, 0, 0, 0, 6516, 6511, 1, 0, 0, 0, 6516, 6512, 1, 0, 0, 0, 6517, 6526, 1, 0, 0, 0, 6518, 6519, 5, 350, 0, 0, 6519, 6520, 5, 68, 0, 0, 6520, 6523, 5, 323, 0, 0, 6521, 6524, 3, 790, 395, 0, 6522, 6524, 5, 111, 0, 0, 6523, 6521, 1, 0, 0, 0, 6523, 6522, 1, 0, 0, 0, 6524, 6526, 1, 0, 0, 0, 6525, 6501, 1, 0, 0, 0, 6525, 6509, 1, 0, 0, 0, 6525, 6518, 1, 0, 0, 0, 6526, 627, 1, 0, 0, 0, 6527, 6532, 3, 624, 312, 0, 6528, 6529, 5, 6, 0, 0, 6529, 6531, 3, 624, 312, 0, 6530, 6528, 1, 0, 0, 0, 6531, 6534, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6532, 6533, 1, 0, 0, 0, 6533, 629, 1, 0, 0, 0, 6534, 6532, 1, 0, 0, 0, 6535, 6540, 3, 624, 312, 0, 6536, 6538, 5, 36, 0, 0, 6537, 6536, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 6539, 1, 0, 0, 0, 6539, 6541, 3, 818, 409, 0, 6540, 6537, 1, 0, 0, 0, 6540, 6541, 1, 0, 0, 0, 6541, 631, 1, 0, 0, 0, 6542, 6543, 5, 472, 0, 0, 6543, 6544, 3, 806, 403, 0, 6544, 6550, 3, 534, 267, 0, 6545, 6546, 5, 310, 0, 0, 6546, 6547, 5, 2, 0, 0, 6547, 6548, 3, 674, 337, 0, 6548, 6549, 5, 3, 0, 0, 6549, 6551, 1, 0, 0, 0, 6550, 6545, 1, 0, 0, 0, 6550, 6551, 1, 0, 0, 0, 6551, 633, 1, 0, 0, 0, 6552, 6567, 3, 688, 344, 0, 6553, 6554, 5, 320, 0, 0, 6554, 6555, 5, 64, 0, 0, 6555, 6556, 5, 2, 0, 0, 6556, 6561, 3, 636, 318, 0, 6557, 6558, 5, 6, 0, 0, 6558, 6560, 3, 636, 318, 0, 6559, 6557, 1, 0, 0, 0, 6560, 6563, 1, 0, 0, 0, 6561, 6559, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 6564, 1, 0, 0, 0, 6563, 6561, 1, 0, 0, 0, 6564, 6565, 5, 3, 0, 0, 6565, 6567, 1, 0, 0, 0, 6566, 6552, 1, 0, 0, 0, 6566, 6553, 1, 0, 0, 0, 6567, 6570, 1, 0, 0, 0, 6568, 6569, 5, 105, 0, 0, 6569, 6571, 5, 473, 0, 0, 6570, 6568, 1, 0, 0, 0, 6570, 6571, 1, 0, 0, 0, 6571, 635, 1, 0, 0, 0, 6572, 6578, 3, 688, 344, 0, 6573, 6574, 5, 36, 0, 0, 6574, 6575, 5, 2, 0, 0, 6575, 6576, 3, 642, 321, 0, 6576, 6577, 5, 3, 0, 0, 6577, 6579, 1, 0, 0, 0, 6578, 6573, 1, 0, 0, 0, 6578, 6579, 1, 0, 0, 0, 6579, 637, 1, 0, 0, 0, 6580, 6581, 5, 103, 0, 0, 6581, 6582, 3, 734, 367, 0, 6582, 639, 1, 0, 0, 0, 6583, 6588, 5, 103, 0, 0, 6584, 6585, 5, 434, 0, 0, 6585, 6586, 5, 275, 0, 0, 6586, 6589, 3, 818, 409, 0, 6587, 6589, 3, 674, 337, 0, 6588, 6584, 1, 0, 0, 0, 6588, 6587, 1, 0, 0, 0, 6589, 641, 1, 0, 0, 0, 6590, 6595, 3, 644, 322, 0, 6591, 6592, 5, 6, 0, 0, 6592, 6594, 3, 644, 322, 0, 6593, 6591, 1, 0, 0, 0, 6594, 6597, 1, 0, 0, 0, 6595, 6593, 1, 0, 0, 0, 6595, 6596, 1, 0, 0, 0, 6596, 643, 1, 0, 0, 0, 6597, 6595, 1, 0, 0, 0, 6598, 6599, 3, 818, 409, 0, 6599, 6601, 3, 652, 326, 0, 6600, 6602, 3, 98, 49, 0, 6601, 6600, 1, 0, 0, 0, 6601, 6602, 1, 0, 0, 0, 6602, 645, 1, 0, 0, 0, 6603, 6604, 5, 474, 0, 0, 6604, 6618, 5, 2, 0, 0, 6605, 6606, 5, 476, 0, 0, 6606, 6607, 5, 2, 0, 0, 6607, 6612, 3, 650, 325, 0, 6608, 6609, 5, 6, 0, 0, 6609, 6611, 3, 650, 325, 0, 6610, 6608, 1, 0, 0, 0, 6611, 6614, 1, 0, 0, 0, 6612, 6610, 1, 0, 0, 0, 6612, 6613, 1, 0, 0, 0, 6613, 6615, 1, 0, 0, 0, 6614, 6612, 1, 0, 0, 0, 6615, 6616, 5, 3, 0, 0, 6616, 6617, 5, 6, 0, 0, 6617, 6619, 1, 0, 0, 0, 6618, 6605, 1, 0, 0, 0, 6618, 6619, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 6621, 3, 682, 341, 0, 6621, 6622, 3, 698, 349, 0, 6622, 6623, 5, 475, 0, 0, 6623, 6628, 3, 648, 324, 0, 6624, 6625, 5, 6, 0, 0, 6625, 6627, 3, 648, 324, 0, 6626, 6624, 1, 0, 0, 0, 6627, 6630, 1, 0, 0, 0, 6628, 6626, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6631, 1, 0, 0, 0, 6630, 6628, 1, 0, 0, 0, 6631, 6632, 5, 3, 0, 0, 6632, 647, 1, 0, 0, 0, 6633, 6652, 3, 818, 409, 0, 6634, 6648, 3, 652, 326, 0, 6635, 6638, 5, 53, 0, 0, 6636, 6638, 3, 826, 413, 0, 6637, 6635, 1, 0, 0, 0, 6637, 6636, 1, 0, 0, 0, 6638, 6639, 1, 0, 0, 0, 6639, 6645, 3, 674, 337, 0, 6640, 6642, 5, 77, 0, 0, 6641, 6640, 1, 0, 0, 0, 6641, 6642, 1, 0, 0, 0, 6642, 6643, 1, 0, 0, 0, 6643, 6645, 5, 78, 0, 0, 6644, 6637, 1, 0, 0, 0, 6644, 6641, 1, 0, 0, 0, 6645, 6646, 1, 0, 0, 0, 6646, 6644, 1, 0, 0, 0, 6646, 6647, 1, 0, 0, 0, 6647, 6649, 1, 0, 0, 0, 6648, 6644, 1, 0, 0, 0, 6648, 6649, 1, 0, 0, 0, 6649, 6653, 1, 0, 0, 0, 6650, 6651, 5, 62, 0, 0, 6651, 6653, 5, 473, 0, 0, 6652, 6634, 1, 0, 0, 0, 6652, 6650, 1, 0, 0, 0, 6653, 649, 1, 0, 0, 0, 6654, 6655, 3, 682, 341, 0, 6655, 6656, 5, 36, 0, 0, 6656, 6657, 3, 824, 412, 0, 6657, 6661, 1, 0, 0, 0, 6658, 6659, 5, 53, 0, 0, 6659, 6661, 3, 682, 341, 0, 6660, 6654, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6661, 651, 1, 0, 0, 0, 6662, 6664, 5, 415, 0, 0, 6663, 6662, 1, 0, 0, 0, 6663, 6664, 1, 0, 0, 0, 6664, 6665, 1, 0, 0, 0, 6665, 6682, 3, 654, 327, 0, 6666, 6668, 5, 4, 0, 0, 6667, 6669, 5, 571, 0, 0, 6668, 6667, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6670, 1, 0, 0, 0, 6670, 6672, 5, 5, 0, 0, 6671, 6666, 1, 0, 0, 0, 6672, 6675, 1, 0, 0, 0, 6673, 6671, 1, 0, 0, 0, 6673, 6674, 1, 0, 0, 0, 6674, 6683, 1, 0, 0, 0, 6675, 6673, 1, 0, 0, 0, 6676, 6680, 5, 35, 0, 0, 6677, 6678, 5, 4, 0, 0, 6678, 6679, 5, 571, 0, 0, 6679, 6681, 5, 5, 0, 0, 6680, 6677, 1, 0, 0, 0, 6680, 6681, 1, 0, 0, 0, 6681, 6683, 1, 0, 0, 0, 6682, 6673, 1, 0, 0, 0, 6682, 6676, 1, 0, 0, 0, 6683, 6689, 1, 0, 0, 0, 6684, 6685, 3, 780, 390, 0, 6685, 6686, 5, 27, 0, 0, 6686, 6687, 7, 87, 0, 0, 6687, 6689, 1, 0, 0, 0, 6688, 6663, 1, 0, 0, 0, 6688, 6684, 1, 0, 0, 0, 6689, 653, 1, 0, 0, 0, 6690, 6692, 3, 820, 410, 0, 6691, 6693, 3, 318, 159, 0, 6692, 6691, 1, 0, 0, 0, 6692, 6693, 1, 0, 0, 0, 6693, 6695, 1, 0, 0, 0, 6694, 6696, 3, 534, 267, 0, 6695, 6694, 1, 0, 0, 0, 6695, 6696, 1, 0, 0, 0, 6696, 6706, 1, 0, 0, 0, 6697, 6706, 3, 656, 328, 0, 6698, 6703, 5, 403, 0, 0, 6699, 6701, 3, 668, 334, 0, 6700, 6699, 1, 0, 0, 0, 6700, 6701, 1, 0, 0, 0, 6701, 6704, 1, 0, 0, 0, 6702, 6704, 3, 660, 330, 0, 6703, 6700, 1, 0, 0, 0, 6703, 6702, 1, 0, 0, 0, 6704, 6706, 1, 0, 0, 0, 6705, 6690, 1, 0, 0, 0, 6705, 6697, 1, 0, 0, 0, 6705, 6698, 1, 0, 0, 0, 6706, 655, 1, 0, 0, 0, 6707, 6712, 3, 658, 329, 0, 6708, 6712, 3, 662, 331, 0, 6709, 6712, 3, 664, 332, 0, 6710, 6712, 3, 666, 333, 0, 6711, 6707, 1, 0, 0, 0, 6711, 6708, 1, 0, 0, 0, 6711, 6709, 1, 0, 0, 0, 6711, 6710, 1, 0, 0, 0, 6712, 657, 1, 0, 0, 0, 6713, 6730, 5, 401, 0, 0, 6714, 6730, 5, 402, 0, 0, 6715, 6730, 5, 416, 0, 0, 6716, 6730, 5, 388, 0, 0, 6717, 6730, 5, 413, 0, 0, 6718, 6720, 5, 398, 0, 0, 6719, 6721, 3, 660, 330, 0, 6720, 6719, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6730, 1, 0, 0, 0, 6722, 6723, 5, 190, 0, 0, 6723, 6730, 5, 412, 0, 0, 6724, 6726, 7, 88, 0, 0, 6725, 6727, 3, 534, 267, 0, 6726, 6725, 1, 0, 0, 0, 6726, 6727, 1, 0, 0, 0, 6727, 6730, 1, 0, 0, 0, 6728, 6730, 5, 390, 0, 0, 6729, 6713, 1, 0, 0, 0, 6729, 6714, 1, 0, 0, 0, 6729, 6715, 1, 0, 0, 0, 6729, 6716, 1, 0, 0, 0, 6729, 6717, 1, 0, 0, 0, 6729, 6718, 1, 0, 0, 0, 6729, 6722, 1, 0, 0, 0, 6729, 6724, 1, 0, 0, 0, 6729, 6728, 1, 0, 0, 0, 6730, 659, 1, 0, 0, 0, 6731, 6732, 5, 2, 0, 0, 6732, 6733, 5, 571, 0, 0, 6733, 6734, 5, 3, 0, 0, 6734, 661, 1, 0, 0, 0, 6735, 6737, 5, 389, 0, 0, 6736, 6738, 5, 374, 0, 0, 6737, 6736, 1, 0, 0, 0, 6737, 6738, 1, 0, 0, 0, 6738, 6740, 1, 0, 0, 0, 6739, 6741, 3, 534, 267, 0, 6740, 6739, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 663, 1, 0, 0, 0, 6742, 6744, 7, 89, 0, 0, 6743, 6745, 5, 374, 0, 0, 6744, 6743, 1, 0, 0, 0, 6744, 6745, 1, 0, 0, 0, 6745, 6753, 1, 0, 0, 0, 6746, 6753, 5, 423, 0, 0, 6747, 6748, 5, 405, 0, 0, 6748, 6750, 7, 90, 0, 0, 6749, 6751, 5, 374, 0, 0, 6750, 6749, 1, 0, 0, 0, 6750, 6751, 1, 0, 0, 0, 6751, 6753, 1, 0, 0, 0, 6752, 6742, 1, 0, 0, 0, 6752, 6746, 1, 0, 0, 0, 6752, 6747, 1, 0, 0, 0, 6753, 6755, 1, 0, 0, 0, 6754, 6756, 3, 660, 330, 0, 6755, 6754, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 665, 1, 0, 0, 0, 6757, 6759, 7, 91, 0, 0, 6758, 6760, 3, 660, 330, 0, 6759, 6758, 1, 0, 0, 0, 6759, 6760, 1, 0, 0, 0, 6760, 6764, 1, 0, 0, 0, 6761, 6762, 7, 26, 0, 0, 6762, 6763, 5, 418, 0, 0, 6763, 6765, 5, 386, 0, 0, 6764, 6761, 1, 0, 0, 0, 6764, 6765, 1, 0, 0, 0, 6765, 667, 1, 0, 0, 0, 6766, 6796, 5, 264, 0, 0, 6767, 6796, 3, 670, 335, 0, 6768, 6771, 5, 384, 0, 0, 6769, 6770, 5, 94, 0, 0, 6770, 6772, 5, 264, 0, 0, 6771, 6769, 1, 0, 0, 0, 6771, 6772, 1, 0, 0, 0, 6772, 6796, 1, 0, 0, 0, 6773, 6780, 5, 176, 0, 0, 6774, 6778, 5, 94, 0, 0, 6775, 6779, 5, 218, 0, 0, 6776, 6779, 5, 261, 0, 0, 6777, 6779, 3, 670, 335, 0, 6778, 6775, 1, 0, 0, 0, 6778, 6776, 1, 0, 0, 0, 6778, 6777, 1, 0, 0, 0, 6779, 6781, 1, 0, 0, 0, 6780, 6774, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 6796, 1, 0, 0, 0, 6782, 6788, 5, 218, 0, 0, 6783, 6786, 5, 94, 0, 0, 6784, 6787, 5, 261, 0, 0, 6785, 6787, 3, 670, 335, 0, 6786, 6784, 1, 0, 0, 0, 6786, 6785, 1, 0, 0, 0, 6787, 6789, 1, 0, 0, 0, 6788, 6783, 1, 0, 0, 0, 6788, 6789, 1, 0, 0, 0, 6789, 6796, 1, 0, 0, 0, 6790, 6793, 5, 261, 0, 0, 6791, 6792, 5, 94, 0, 0, 6792, 6794, 3, 670, 335, 0, 6793, 6791, 1, 0, 0, 0, 6793, 6794, 1, 0, 0, 0, 6794, 6796, 1, 0, 0, 0, 6795, 6766, 1, 0, 0, 0, 6795, 6767, 1, 0, 0, 0, 6795, 6768, 1, 0, 0, 0, 6795, 6773, 1, 0, 0, 0, 6795, 6782, 1, 0, 0, 0, 6795, 6790, 1, 0, 0, 0, 6796, 669, 1, 0, 0, 0, 6797, 6799, 5, 326, 0, 0, 6798, 6800, 3, 660, 330, 0, 6799, 6798, 1, 0, 0, 0, 6799, 6800, 1, 0, 0, 0, 6800, 671, 1, 0, 0, 0, 6801, 6802, 7, 92, 0, 0, 6802, 673, 1, 0, 0, 0, 6803, 6804, 3, 676, 338, 0, 6804, 675, 1, 0, 0, 0, 6805, 6806, 6, 338, -1, 0, 6806, 6808, 3, 680, 340, 0, 6807, 6809, 3, 678, 339, 0, 6808, 6807, 1, 0, 0, 0, 6808, 6809, 1, 0, 0, 0, 6809, 6813, 1, 0, 0, 0, 6810, 6811, 5, 77, 0, 0, 6811, 6813, 3, 676, 338, 3, 6812, 6805, 1, 0, 0, 0, 6812, 6810, 1, 0, 0, 0, 6813, 6822, 1, 0, 0, 0, 6814, 6815, 10, 2, 0, 0, 6815, 6816, 5, 33, 0, 0, 6816, 6821, 3, 676, 338, 3, 6817, 6818, 10, 1, 0, 0, 6818, 6819, 5, 82, 0, 0, 6819, 6821, 3, 676, 338, 2, 6820, 6814, 1, 0, 0, 0, 6820, 6817, 1, 0, 0, 0, 6821, 6824, 1, 0, 0, 0, 6822, 6820, 1, 0, 0, 0, 6822, 6823, 1, 0, 0, 0, 6823, 677, 1, 0, 0, 0, 6824, 6822, 1, 0, 0, 0, 6825, 6826, 3, 672, 336, 0, 6826, 6827, 3, 680, 340, 0, 6827, 6897, 1, 0, 0, 0, 6828, 6829, 3, 672, 336, 0, 6829, 6830, 3, 728, 364, 0, 6830, 6836, 3, 718, 359, 0, 6831, 6837, 3, 562, 281, 0, 6832, 6833, 5, 2, 0, 0, 6833, 6834, 3, 674, 337, 0, 6834, 6835, 5, 3, 0, 0, 6835, 6837, 1, 0, 0, 0, 6836, 6831, 1, 0, 0, 0, 6836, 6832, 1, 0, 0, 0, 6837, 6897, 1, 0, 0, 0, 6838, 6840, 5, 77, 0, 0, 6839, 6838, 1, 0, 0, 0, 6839, 6840, 1, 0, 0, 0, 6840, 6841, 1, 0, 0, 0, 6841, 6842, 5, 387, 0, 0, 6842, 6843, 3, 680, 340, 0, 6843, 6844, 5, 33, 0, 0, 6844, 6845, 3, 680, 340, 0, 6845, 6897, 1, 0, 0, 0, 6846, 6848, 5, 77, 0, 0, 6847, 6846, 1, 0, 0, 0, 6847, 6848, 1, 0, 0, 0, 6848, 6849, 1, 0, 0, 0, 6849, 6850, 5, 68, 0, 0, 6850, 6851, 5, 2, 0, 0, 6851, 6856, 3, 674, 337, 0, 6852, 6853, 5, 6, 0, 0, 6853, 6855, 3, 674, 337, 0, 6854, 6852, 1, 0, 0, 0, 6855, 6858, 1, 0, 0, 0, 6856, 6854, 1, 0, 0, 0, 6856, 6857, 1, 0, 0, 0, 6857, 6859, 1, 0, 0, 0, 6858, 6856, 1, 0, 0, 0, 6859, 6860, 5, 3, 0, 0, 6860, 6897, 1, 0, 0, 0, 6861, 6863, 5, 77, 0, 0, 6862, 6861, 1, 0, 0, 0, 6862, 6863, 1, 0, 0, 0, 6863, 6864, 1, 0, 0, 0, 6864, 6865, 5, 68, 0, 0, 6865, 6897, 3, 562, 281, 0, 6866, 6868, 5, 77, 0, 0, 6867, 6866, 1, 0, 0, 0, 6867, 6868, 1, 0, 0, 0, 6868, 6877, 1, 0, 0, 0, 6869, 6878, 5, 120, 0, 0, 6870, 6878, 5, 114, 0, 0, 6871, 6872, 5, 127, 0, 0, 6872, 6878, 5, 94, 0, 0, 6873, 6875, 5, 387, 0, 0, 6874, 6876, 5, 91, 0, 0, 6875, 6874, 1, 0, 0, 0, 6875, 6876, 1, 0, 0, 0, 6876, 6878, 1, 0, 0, 0, 6877, 6869, 1, 0, 0, 0, 6877, 6870, 1, 0, 0, 0, 6877, 6871, 1, 0, 0, 0, 6877, 6873, 1, 0, 0, 0, 6878, 6879, 1, 0, 0, 0, 6879, 6882, 3, 680, 340, 0, 6880, 6881, 5, 197, 0, 0, 6881, 6883, 3, 680, 340, 0, 6882, 6880, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6897, 1, 0, 0, 0, 6884, 6886, 5, 116, 0, 0, 6885, 6887, 5, 77, 0, 0, 6886, 6885, 1, 0, 0, 0, 6886, 6887, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 6897, 5, 78, 0, 0, 6889, 6891, 5, 116, 0, 0, 6890, 6892, 5, 77, 0, 0, 6891, 6890, 1, 0, 0, 0, 6891, 6892, 1, 0, 0, 0, 6892, 6893, 1, 0, 0, 0, 6893, 6894, 5, 56, 0, 0, 6894, 6895, 5, 64, 0, 0, 6895, 6897, 3, 680, 340, 0, 6896, 6825, 1, 0, 0, 0, 6896, 6828, 1, 0, 0, 0, 6896, 6839, 1, 0, 0, 0, 6896, 6847, 1, 0, 0, 0, 6896, 6862, 1, 0, 0, 0, 6896, 6867, 1, 0, 0, 0, 6896, 6884, 1, 0, 0, 0, 6896, 6889, 1, 0, 0, 0, 6897, 679, 1, 0, 0, 0, 6898, 6899, 6, 340, -1, 0, 6899, 6903, 3, 682, 341, 0, 6900, 6901, 7, 29, 0, 0, 6901, 6903, 3, 680, 340, 4, 6902, 6898, 1, 0, 0, 0, 6902, 6900, 1, 0, 0, 0, 6903, 6920, 1, 0, 0, 0, 6904, 6905, 10, 3, 0, 0, 6905, 6906, 7, 93, 0, 0, 6906, 6919, 3, 680, 340, 4, 6907, 6908, 10, 2, 0, 0, 6908, 6909, 7, 29, 0, 0, 6909, 6919, 3, 680, 340, 3, 6910, 6911, 10, 1, 0, 0, 6911, 6912, 5, 15, 0, 0, 6912, 6919, 3, 680, 340, 2, 6913, 6914, 10, 5, 0, 0, 6914, 6915, 5, 142, 0, 0, 6915, 6916, 5, 418, 0, 0, 6916, 6917, 5, 386, 0, 0, 6917, 6919, 3, 674, 337, 0, 6918, 6904, 1, 0, 0, 0, 6918, 6907, 1, 0, 0, 0, 6918, 6910, 1, 0, 0, 0, 6918, 6913, 1, 0, 0, 0, 6919, 6922, 1, 0, 0, 0, 6920, 6918, 1, 0, 0, 0, 6920, 6921, 1, 0, 0, 0, 6921, 681, 1, 0, 0, 0, 6922, 6920, 1, 0, 0, 0, 6923, 6924, 6, 341, -1, 0, 6924, 6925, 7, 94, 0, 0, 6925, 7012, 3, 562, 281, 0, 6926, 6929, 5, 35, 0, 0, 6927, 6930, 3, 562, 281, 0, 6928, 6930, 3, 740, 370, 0, 6929, 6927, 1, 0, 0, 0, 6929, 6928, 1, 0, 0, 0, 6930, 7012, 1, 0, 0, 0, 6931, 6932, 5, 28, 0, 0, 6932, 7012, 3, 754, 377, 0, 6933, 6934, 5, 470, 0, 0, 6934, 7012, 3, 534, 267, 0, 6935, 7012, 5, 571, 0, 0, 6936, 7012, 5, 573, 0, 0, 6937, 7012, 5, 563, 0, 0, 6938, 7012, 5, 567, 0, 0, 6939, 6949, 3, 806, 403, 0, 6940, 6950, 3, 808, 404, 0, 6941, 6942, 5, 2, 0, 0, 6942, 6944, 3, 736, 368, 0, 6943, 6945, 3, 586, 293, 0, 6944, 6943, 1, 0, 0, 0, 6944, 6945, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6947, 5, 3, 0, 0, 6947, 6948, 3, 808, 404, 0, 6948, 6950, 1, 0, 0, 0, 6949, 6940, 1, 0, 0, 0, 6949, 6941, 1, 0, 0, 0, 6950, 7012, 1, 0, 0, 0, 6951, 6953, 3, 656, 328, 0, 6952, 6951, 1, 0, 0, 0, 6952, 6953, 1, 0, 0, 0, 6953, 6954, 1, 0, 0, 0, 6954, 7012, 3, 808, 404, 0, 6955, 6963, 5, 403, 0, 0, 6956, 6958, 3, 808, 404, 0, 6957, 6959, 3, 668, 334, 0, 6958, 6957, 1, 0, 0, 0, 6958, 6959, 1, 0, 0, 0, 6959, 6964, 1, 0, 0, 0, 6960, 6961, 3, 660, 330, 0, 6961, 6962, 3, 808, 404, 0, 6962, 6964, 1, 0, 0, 0, 6963, 6956, 1, 0, 0, 0, 6963, 6960, 1, 0, 0, 0, 6964, 7012, 1, 0, 0, 0, 6965, 7012, 5, 96, 0, 0, 6966, 7012, 5, 60, 0, 0, 6967, 7012, 5, 78, 0, 0, 6968, 7012, 5, 574, 0, 0, 6969, 6970, 5, 2, 0, 0, 6970, 6971, 3, 674, 337, 0, 6971, 6972, 5, 3, 0, 0, 6972, 6973, 3, 754, 377, 0, 6973, 7012, 1, 0, 0, 0, 6974, 6976, 5, 40, 0, 0, 6975, 6977, 3, 674, 337, 0, 6976, 6975, 1, 0, 0, 0, 6976, 6977, 1, 0, 0, 0, 6977, 6979, 1, 0, 0, 0, 6978, 6980, 3, 748, 374, 0, 6979, 6978, 1, 0, 0, 0, 6980, 6981, 1, 0, 0, 0, 6981, 6979, 1, 0, 0, 0, 6981, 6982, 1, 0, 0, 0, 6982, 6985, 1, 0, 0, 0, 6983, 6984, 5, 58, 0, 0, 6984, 6986, 3, 674, 337, 0, 6985, 6983, 1, 0, 0, 0, 6985, 6986, 1, 0, 0, 0, 6986, 6987, 1, 0, 0, 0, 6987, 6988, 5, 454, 0, 0, 6988, 7012, 1, 0, 0, 0, 6989, 7012, 3, 686, 343, 0, 6990, 6992, 3, 562, 281, 0, 6991, 6993, 3, 752, 376, 0, 6992, 6991, 1, 0, 0, 0, 6992, 6993, 1, 0, 0, 0, 6993, 7012, 1, 0, 0, 0, 6994, 7012, 3, 716, 358, 0, 6995, 6996, 5, 2, 0, 0, 6996, 6997, 3, 674, 337, 0, 6997, 6998, 5, 6, 0, 0, 6998, 6999, 3, 730, 365, 0, 6999, 7000, 5, 3, 0, 0, 7000, 7012, 1, 0, 0, 0, 7001, 7002, 3, 714, 357, 0, 7002, 7003, 5, 125, 0, 0, 7003, 7004, 3, 714, 357, 0, 7004, 7012, 1, 0, 0, 0, 7005, 7012, 3, 780, 390, 0, 7006, 7007, 7, 29, 0, 0, 7007, 7012, 3, 682, 341, 5, 7008, 7009, 3, 724, 362, 0, 7009, 7010, 3, 682, 341, 2, 7010, 7012, 1, 0, 0, 0, 7011, 6923, 1, 0, 0, 0, 7011, 6926, 1, 0, 0, 0, 7011, 6931, 1, 0, 0, 0, 7011, 6933, 1, 0, 0, 0, 7011, 6935, 1, 0, 0, 0, 7011, 6936, 1, 0, 0, 0, 7011, 6937, 1, 0, 0, 0, 7011, 6938, 1, 0, 0, 0, 7011, 6939, 1, 0, 0, 0, 7011, 6952, 1, 0, 0, 0, 7011, 6955, 1, 0, 0, 0, 7011, 6965, 1, 0, 0, 0, 7011, 6966, 1, 0, 0, 0, 7011, 6967, 1, 0, 0, 0, 7011, 6968, 1, 0, 0, 0, 7011, 6969, 1, 0, 0, 0, 7011, 6974, 1, 0, 0, 0, 7011, 6989, 1, 0, 0, 0, 7011, 6990, 1, 0, 0, 0, 7011, 6994, 1, 0, 0, 0, 7011, 6995, 1, 0, 0, 0, 7011, 7001, 1, 0, 0, 0, 7011, 7005, 1, 0, 0, 0, 7011, 7006, 1, 0, 0, 0, 7011, 7008, 1, 0, 0, 0, 7012, 7040, 1, 0, 0, 0, 7013, 7014, 10, 3, 0, 0, 7014, 7015, 3, 722, 361, 0, 7015, 7016, 3, 682, 341, 4, 7016, 7039, 1, 0, 0, 0, 7017, 7018, 10, 6, 0, 0, 7018, 7019, 5, 26, 0, 0, 7019, 7039, 3, 652, 326, 0, 7020, 7021, 10, 4, 0, 0, 7021, 7023, 3, 724, 362, 0, 7022, 7024, 3, 682, 341, 0, 7023, 7022, 1, 0, 0, 0, 7023, 7024, 1, 0, 0, 0, 7024, 7039, 1, 0, 0, 0, 7025, 7026, 10, 1, 0, 0, 7026, 7028, 5, 116, 0, 0, 7027, 7029, 5, 77, 0, 0, 7028, 7027, 1, 0, 0, 0, 7028, 7029, 1, 0, 0, 0, 7029, 7036, 1, 0, 0, 0, 7030, 7031, 5, 56, 0, 0, 7031, 7032, 5, 64, 0, 0, 7032, 7037, 3, 682, 341, 0, 7033, 7034, 5, 275, 0, 0, 7034, 7037, 3, 528, 264, 0, 7035, 7037, 5, 188, 0, 0, 7036, 7030, 1, 0, 0, 0, 7036, 7033, 1, 0, 0, 0, 7036, 7035, 1, 0, 0, 0, 7037, 7039, 1, 0, 0, 0, 7038, 7013, 1, 0, 0, 0, 7038, 7017, 1, 0, 0, 0, 7038, 7020, 1, 0, 0, 0, 7038, 7025, 1, 0, 0, 0, 7039, 7042, 1, 0, 0, 0, 7040, 7038, 1, 0, 0, 0, 7040, 7041, 1, 0, 0, 0, 7041, 683, 1, 0, 0, 0, 7042, 7040, 1, 0, 0, 0, 7043, 7044, 3, 806, 403, 0, 7044, 7065, 5, 2, 0, 0, 7045, 7049, 3, 736, 368, 0, 7046, 7047, 5, 6, 0, 0, 7047, 7048, 5, 101, 0, 0, 7048, 7050, 3, 738, 369, 0, 7049, 7046, 1, 0, 0, 0, 7049, 7050, 1, 0, 0, 0, 7050, 7052, 1, 0, 0, 0, 7051, 7053, 3, 586, 293, 0, 7052, 7051, 1, 0, 0, 0, 7052, 7053, 1, 0, 0, 0, 7053, 7066, 1, 0, 0, 0, 7054, 7055, 5, 101, 0, 0, 7055, 7057, 3, 738, 369, 0, 7056, 7058, 3, 586, 293, 0, 7057, 7056, 1, 0, 0, 0, 7057, 7058, 1, 0, 0, 0, 7058, 7066, 1, 0, 0, 0, 7059, 7060, 7, 80, 0, 0, 7060, 7062, 3, 736, 368, 0, 7061, 7063, 3, 586, 293, 0, 7062, 7061, 1, 0, 0, 0, 7062, 7063, 1, 0, 0, 0, 7063, 7066, 1, 0, 0, 0, 7064, 7066, 5, 9, 0, 0, 7065, 7045, 1, 0, 0, 0, 7065, 7054, 1, 0, 0, 0, 7065, 7059, 1, 0, 0, 0, 7065, 7064, 1, 0, 0, 0, 7065, 7066, 1, 0, 0, 0, 7066, 7067, 1, 0, 0, 0, 7067, 7068, 5, 3, 0, 0, 7068, 685, 1, 0, 0, 0, 7069, 7076, 3, 684, 342, 0, 7070, 7071, 5, 479, 0, 0, 7071, 7072, 5, 66, 0, 0, 7072, 7073, 5, 2, 0, 0, 7073, 7074, 3, 586, 293, 0, 7074, 7075, 5, 3, 0, 0, 7075, 7077, 1, 0, 0, 0, 7076, 7070, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7084, 1, 0, 0, 0, 7078, 7079, 5, 480, 0, 0, 7079, 7080, 5, 2, 0, 0, 7080, 7081, 5, 103, 0, 0, 7081, 7082, 3, 674, 337, 0, 7082, 7083, 5, 3, 0, 0, 7083, 7085, 1, 0, 0, 0, 7084, 7078, 1, 0, 0, 0, 7084, 7085, 1, 0, 0, 0, 7085, 7091, 1, 0, 0, 0, 7086, 7089, 5, 124, 0, 0, 7087, 7090, 3, 708, 354, 0, 7088, 7090, 3, 818, 409, 0, 7089, 7087, 1, 0, 0, 0, 7089, 7088, 1, 0, 0, 0, 7090, 7092, 1, 0, 0, 0, 7091, 7086, 1, 0, 0, 0, 7091, 7092, 1, 0, 0, 0, 7092, 7095, 1, 0, 0, 0, 7093, 7095, 3, 690, 345, 0, 7094, 7069, 1, 0, 0, 0, 7094, 7093, 1, 0, 0, 0, 7095, 687, 1, 0, 0, 0, 7096, 7099, 3, 684, 342, 0, 7097, 7099, 3, 690, 345, 0, 7098, 7096, 1, 0, 0, 0, 7098, 7097, 1, 0, 0, 0, 7099, 689, 1, 0, 0, 0, 7100, 7101, 5, 108, 0, 0, 7101, 7102, 5, 62, 0, 0, 7102, 7103, 5, 2, 0, 0, 7103, 7104, 3, 674, 337, 0, 7104, 7105, 5, 3, 0, 0, 7105, 7275, 1, 0, 0, 0, 7106, 7275, 5, 48, 0, 0, 7107, 7109, 7, 95, 0, 0, 7108, 7110, 3, 660, 330, 0, 7109, 7108, 1, 0, 0, 0, 7109, 7110, 1, 0, 0, 0, 7110, 7275, 1, 0, 0, 0, 7111, 7275, 5, 49, 0, 0, 7112, 7275, 5, 52, 0, 0, 7113, 7275, 5, 89, 0, 0, 7114, 7275, 5, 99, 0, 0, 7115, 7275, 5, 47, 0, 0, 7116, 7275, 5, 111, 0, 0, 7117, 7118, 7, 96, 0, 0, 7118, 7119, 5, 2, 0, 0, 7119, 7120, 3, 674, 337, 0, 7120, 7121, 5, 36, 0, 0, 7121, 7122, 3, 652, 326, 0, 7122, 7123, 5, 3, 0, 0, 7123, 7275, 1, 0, 0, 0, 7124, 7125, 5, 397, 0, 0, 7125, 7130, 5, 2, 0, 0, 7126, 7127, 3, 742, 371, 0, 7127, 7128, 5, 64, 0, 0, 7128, 7129, 3, 674, 337, 0, 7129, 7131, 1, 0, 0, 0, 7130, 7126, 1, 0, 0, 0, 7130, 7131, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7275, 5, 3, 0, 0, 7133, 7134, 5, 489, 0, 0, 7134, 7135, 5, 2, 0, 0, 7135, 7138, 3, 674, 337, 0, 7136, 7137, 5, 6, 0, 0, 7137, 7139, 3, 744, 372, 0, 7138, 7136, 1, 0, 0, 0, 7138, 7139, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 5, 3, 0, 0, 7141, 7275, 1, 0, 0, 0, 7142, 7143, 5, 410, 0, 0, 7143, 7144, 5, 2, 0, 0, 7144, 7145, 3, 674, 337, 0, 7145, 7146, 5, 84, 0, 0, 7146, 7147, 3, 674, 337, 0, 7147, 7148, 5, 64, 0, 0, 7148, 7151, 3, 674, 337, 0, 7149, 7150, 5, 62, 0, 0, 7150, 7152, 3, 674, 337, 0, 7151, 7149, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7153, 1, 0, 0, 0, 7153, 7154, 5, 3, 0, 0, 7154, 7275, 1, 0, 0, 0, 7155, 7156, 5, 411, 0, 0, 7156, 7161, 5, 2, 0, 0, 7157, 7158, 3, 682, 341, 0, 7158, 7159, 5, 68, 0, 0, 7159, 7160, 3, 682, 341, 0, 7160, 7162, 1, 0, 0, 0, 7161, 7157, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7275, 5, 3, 0, 0, 7164, 7165, 5, 417, 0, 0, 7165, 7167, 5, 2, 0, 0, 7166, 7168, 3, 746, 373, 0, 7167, 7166, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7169, 1, 0, 0, 0, 7169, 7275, 5, 3, 0, 0, 7170, 7171, 5, 421, 0, 0, 7171, 7173, 5, 2, 0, 0, 7172, 7174, 7, 97, 0, 0, 7173, 7172, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7179, 1, 0, 0, 0, 7175, 7177, 3, 674, 337, 0, 7176, 7175, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7178, 1, 0, 0, 0, 7178, 7180, 5, 64, 0, 0, 7179, 7176, 1, 0, 0, 0, 7179, 7180, 1, 0, 0, 0, 7180, 7181, 1, 0, 0, 0, 7181, 7182, 3, 730, 365, 0, 7182, 7183, 1, 0, 0, 0, 7183, 7184, 5, 3, 0, 0, 7184, 7275, 1, 0, 0, 0, 7185, 7186, 5, 408, 0, 0, 7186, 7187, 5, 2, 0, 0, 7187, 7188, 3, 674, 337, 0, 7188, 7189, 5, 6, 0, 0, 7189, 7190, 3, 674, 337, 0, 7190, 7191, 5, 3, 0, 0, 7191, 7275, 1, 0, 0, 0, 7192, 7193, 7, 98, 0, 0, 7193, 7275, 3, 534, 267, 0, 7194, 7195, 5, 426, 0, 0, 7195, 7196, 5, 2, 0, 0, 7196, 7197, 5, 266, 0, 0, 7197, 7207, 3, 824, 412, 0, 7198, 7205, 5, 6, 0, 0, 7199, 7200, 5, 424, 0, 0, 7200, 7201, 5, 2, 0, 0, 7201, 7202, 3, 692, 346, 0, 7202, 7203, 5, 3, 0, 0, 7203, 7206, 1, 0, 0, 0, 7204, 7206, 3, 730, 365, 0, 7205, 7199, 1, 0, 0, 0, 7205, 7204, 1, 0, 0, 0, 7206, 7208, 1, 0, 0, 0, 7207, 7198, 1, 0, 0, 0, 7207, 7208, 1, 0, 0, 0, 7208, 7209, 1, 0, 0, 0, 7209, 7210, 5, 3, 0, 0, 7210, 7275, 1, 0, 0, 0, 7211, 7212, 5, 427, 0, 0, 7212, 7213, 5, 2, 0, 0, 7213, 7214, 3, 682, 341, 0, 7214, 7215, 3, 698, 349, 0, 7215, 7216, 5, 3, 0, 0, 7216, 7275, 1, 0, 0, 0, 7217, 7218, 5, 428, 0, 0, 7218, 7219, 5, 2, 0, 0, 7219, 7220, 3, 692, 346, 0, 7220, 7221, 5, 3, 0, 0, 7221, 7275, 1, 0, 0, 0, 7222, 7223, 5, 429, 0, 0, 7223, 7224, 5, 2, 0, 0, 7224, 7225, 3, 696, 348, 0, 7225, 7228, 3, 674, 337, 0, 7226, 7227, 7, 99, 0, 0, 7227, 7229, 5, 378, 0, 0, 7228, 7226, 1, 0, 0, 0, 7228, 7229, 1, 0, 0, 0, 7229, 7230, 1, 0, 0, 0, 7230, 7231, 5, 3, 0, 0, 7231, 7275, 1, 0, 0, 0, 7232, 7233, 5, 430, 0, 0, 7233, 7234, 5, 2, 0, 0, 7234, 7235, 5, 266, 0, 0, 7235, 7238, 3, 824, 412, 0, 7236, 7237, 5, 6, 0, 0, 7237, 7239, 3, 674, 337, 0, 7238, 7236, 1, 0, 0, 0, 7238, 7239, 1, 0, 0, 0, 7239, 7240, 1, 0, 0, 0, 7240, 7241, 5, 3, 0, 0, 7241, 7275, 1, 0, 0, 0, 7242, 7243, 5, 431, 0, 0, 7243, 7244, 5, 2, 0, 0, 7244, 7245, 5, 383, 0, 0, 7245, 7246, 3, 674, 337, 0, 7246, 7247, 5, 6, 0, 0, 7247, 7251, 5, 375, 0, 0, 7248, 7249, 5, 269, 0, 0, 7249, 7252, 5, 450, 0, 0, 7250, 7252, 3, 674, 337, 0, 7251, 7248, 1, 0, 0, 0, 7251, 7250, 1, 0, 0, 0, 7252, 7262, 1, 0, 0, 0, 7253, 7254, 5, 6, 0, 0, 7254, 7260, 5, 339, 0, 0, 7255, 7257, 5, 269, 0, 0, 7256, 7255, 1, 0, 0, 0, 7256, 7257, 1, 0, 0, 0, 7257, 7258, 1, 0, 0, 0, 7258, 7261, 5, 450, 0, 0, 7259, 7261, 5, 385, 0, 0, 7260, 7256, 1, 0, 0, 0, 7260, 7259, 1, 0, 0, 0, 7261, 7263, 1, 0, 0, 0, 7262, 7253, 1, 0, 0, 0, 7262, 7263, 1, 0, 0, 0, 7263, 7264, 1, 0, 0, 0, 7264, 7265, 5, 3, 0, 0, 7265, 7275, 1, 0, 0, 0, 7266, 7267, 5, 432, 0, 0, 7267, 7268, 5, 2, 0, 0, 7268, 7269, 3, 696, 348, 0, 7269, 7270, 3, 674, 337, 0, 7270, 7271, 5, 36, 0, 0, 7271, 7272, 3, 654, 327, 0, 7272, 7273, 5, 3, 0, 0, 7273, 7275, 1, 0, 0, 0, 7274, 7100, 1, 0, 0, 0, 7274, 7106, 1, 0, 0, 0, 7274, 7107, 1, 0, 0, 0, 7274, 7111, 1, 0, 0, 0, 7274, 7112, 1, 0, 0, 0, 7274, 7113, 1, 0, 0, 0, 7274, 7114, 1, 0, 0, 0, 7274, 7115, 1, 0, 0, 0, 7274, 7116, 1, 0, 0, 0, 7274, 7117, 1, 0, 0, 0, 7274, 7124, 1, 0, 0, 0, 7274, 7133, 1, 0, 0, 0, 7274, 7142, 1, 0, 0, 0, 7274, 7155, 1, 0, 0, 0, 7274, 7164, 1, 0, 0, 0, 7274, 7170, 1, 0, 0, 0, 7274, 7185, 1, 0, 0, 0, 7274, 7192, 1, 0, 0, 0, 7274, 7194, 1, 0, 0, 0, 7274, 7211, 1, 0, 0, 0, 7274, 7217, 1, 0, 0, 0, 7274, 7222, 1, 0, 0, 0, 7274, 7232, 1, 0, 0, 0, 7274, 7242, 1, 0, 0, 0, 7274, 7266, 1, 0, 0, 0, 7275, 691, 1, 0, 0, 0, 7276, 7281, 3, 694, 347, 0, 7277, 7278, 5, 6, 0, 0, 7278, 7280, 3, 694, 347, 0, 7279, 7277, 1, 0, 0, 0, 7280, 7283, 1, 0, 0, 0, 7281, 7279, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 693, 1, 0, 0, 0, 7283, 7281, 1, 0, 0, 0, 7284, 7287, 3, 674, 337, 0, 7285, 7286, 5, 36, 0, 0, 7286, 7288, 3, 824, 412, 0, 7287, 7285, 1, 0, 0, 0, 7287, 7288, 1, 0, 0, 0, 7288, 695, 1, 0, 0, 0, 7289, 7290, 7, 100, 0, 0, 7290, 697, 1, 0, 0, 0, 7291, 7293, 5, 286, 0, 0, 7292, 7294, 3, 700, 350, 0, 7293, 7292, 1, 0, 0, 0, 7293, 7294, 1, 0, 0, 0, 7294, 7295, 1, 0, 0, 0, 7295, 7297, 3, 682, 341, 0, 7296, 7298, 3, 700, 350, 0, 7297, 7296, 1, 0, 0, 0, 7297, 7298, 1, 0, 0, 0, 7298, 699, 1, 0, 0, 0, 7299, 7300, 5, 147, 0, 0, 7300, 7301, 7, 101, 0, 0, 7301, 701, 1, 0, 0, 0, 7302, 7303, 5, 104, 0, 0, 7303, 7308, 3, 704, 352, 0, 7304, 7305, 5, 6, 0, 0, 7305, 7307, 3, 704, 352, 0, 7306, 7304, 1, 0, 0, 0, 7307, 7310, 1, 0, 0, 0, 7308, 7306, 1, 0, 0, 0, 7308, 7309, 1, 0, 0, 0, 7309, 703, 1, 0, 0, 0, 7310, 7308, 1, 0, 0, 0, 7311, 7312, 3, 818, 409, 0, 7312, 7313, 5, 36, 0, 0, 7313, 7314, 3, 708, 354, 0, 7314, 705, 1, 0, 0, 0, 7315, 7318, 5, 124, 0, 0, 7316, 7319, 3, 708, 354, 0, 7317, 7319, 3, 818, 409, 0, 7318, 7316, 1, 0, 0, 0, 7318, 7317, 1, 0, 0, 0, 7319, 707, 1, 0, 0, 0, 7320, 7322, 5, 2, 0, 0, 7321, 7323, 3, 818, 409, 0, 7322, 7321, 1, 0, 0, 0, 7322, 7323, 1, 0, 0, 0, 7323, 7327, 1, 0, 0, 0, 7324, 7325, 5, 285, 0, 0, 7325, 7326, 5, 147, 0, 0, 7326, 7328, 3, 730, 365, 0, 7327, 7324, 1, 0, 0, 0, 7327, 7328, 1, 0, 0, 0, 7328, 7330, 1, 0, 0, 0, 7329, 7331, 3, 586, 293, 0, 7330, 7329, 1, 0, 0, 0, 7330, 7331, 1, 0, 0, 0, 7331, 7333, 1, 0, 0, 0, 7332, 7334, 3, 710, 355, 0, 7333, 7332, 1, 0, 0, 0, 7333, 7334, 1, 0, 0, 0, 7334, 7335, 1, 0, 0, 0, 7335, 7336, 5, 3, 0, 0, 7336, 709, 1, 0, 0, 0, 7337, 7342, 7, 102, 0, 0, 7338, 7339, 5, 387, 0, 0, 7339, 7340, 3, 712, 356, 0, 7340, 7341, 5, 33, 0, 0, 7341, 7343, 1, 0, 0, 0, 7342, 7338, 1, 0, 0, 0, 7342, 7343, 1, 0, 0, 0, 7343, 7344, 1, 0, 0, 0, 7344, 7345, 3, 712, 356, 0, 7345, 7355, 1, 0, 0, 0, 7346, 7353, 5, 199, 0, 0, 7347, 7348, 5, 434, 0, 0, 7348, 7354, 5, 414, 0, 0, 7349, 7354, 5, 66, 0, 0, 7350, 7354, 5, 467, 0, 0, 7351, 7352, 5, 269, 0, 0, 7352, 7354, 5, 482, 0, 0, 7353, 7347, 1, 0, 0, 0, 7353, 7349, 1, 0, 0, 0, 7353, 7350, 1, 0, 0, 0, 7353, 7351, 1, 0, 0, 0, 7354, 7356, 1, 0, 0, 0, 7355, 7346, 1, 0, 0, 0, 7355, 7356, 1, 0, 0, 0, 7356, 711, 1, 0, 0, 0, 7357, 7360, 5, 362, 0, 0, 7358, 7360, 3, 674, 337, 0, 7359, 7357, 1, 0, 0, 0, 7359, 7358, 1, 0, 0, 0, 7360, 7361, 1, 0, 0, 0, 7361, 7365, 7, 103, 0, 0, 7362, 7363, 5, 434, 0, 0, 7363, 7365, 5, 414, 0, 0, 7364, 7359, 1, 0, 0, 0, 7364, 7362, 1, 0, 0, 0, 7365, 713, 1, 0, 0, 0, 7366, 7374, 3, 716, 358, 0, 7367, 7368, 5, 2, 0, 0, 7368, 7369, 3, 730, 365, 0, 7369, 7370, 5, 6, 0, 0, 7370, 7371, 3, 674, 337, 0, 7371, 7372, 5, 3, 0, 0, 7372, 7374, 1, 0, 0, 0, 7373, 7366, 1, 0, 0, 0, 7373, 7367, 1, 0, 0, 0, 7374, 715, 1, 0, 0, 0, 7375, 7376, 5, 414, 0, 0, 7376, 7378, 5, 2, 0, 0, 7377, 7379, 3, 730, 365, 0, 7378, 7377, 1, 0, 0, 0, 7378, 7379, 1, 0, 0, 0, 7379, 7380, 1, 0, 0, 0, 7380, 7381, 5, 3, 0, 0, 7381, 717, 1, 0, 0, 0, 7382, 7383, 7, 104, 0, 0, 7383, 719, 1, 0, 0, 0, 7384, 7387, 5, 29, 0, 0, 7385, 7387, 3, 722, 361, 0, 7386, 7384, 1, 0, 0, 0, 7386, 7385, 1, 0, 0, 0, 7387, 721, 1, 0, 0, 0, 7388, 7389, 7, 105, 0, 0, 7389, 723, 1, 0, 0, 0, 7390, 7397, 5, 29, 0, 0, 7391, 7392, 5, 278, 0, 0, 7392, 7393, 5, 2, 0, 0, 7393, 7394, 3, 414, 207, 0, 7394, 7395, 5, 3, 0, 0, 7395, 7397, 1, 0, 0, 0, 7396, 7390, 1, 0, 0, 0, 7396, 7391, 1, 0, 0, 0, 7397, 725, 1, 0, 0, 0, 7398, 7405, 3, 720, 360, 0, 7399, 7400, 5, 278, 0, 0, 7400, 7401, 5, 2, 0, 0, 7401, 7402, 3, 414, 207, 0, 7402, 7403, 5, 3, 0, 0, 7403, 7405, 1, 0, 0, 0, 7404, 7398, 1, 0, 0, 0, 7404, 7399, 1, 0, 0, 0, 7405, 727, 1, 0, 0, 0, 7406, 7412, 3, 726, 363, 0, 7407, 7409, 5, 77, 0, 0, 7408, 7407, 1, 0, 0, 0, 7408, 7409, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 7412, 7, 106, 0, 0, 7411, 7406, 1, 0, 0, 0, 7411, 7408, 1, 0, 0, 0, 7412, 729, 1, 0, 0, 0, 7413, 7418, 3, 674, 337, 0, 7414, 7415, 5, 6, 0, 0, 7415, 7417, 3, 674, 337, 0, 7416, 7414, 1, 0, 0, 0, 7417, 7420, 1, 0, 0, 0, 7418, 7416, 1, 0, 0, 0, 7418, 7419, 1, 0, 0, 0, 7419, 731, 1, 0, 0, 0, 7420, 7418, 1, 0, 0, 0, 7421, 7422, 5, 2, 0, 0, 7422, 7423, 3, 674, 337, 0, 7423, 7424, 5, 3, 0, 0, 7424, 7427, 1, 0, 0, 0, 7425, 7427, 3, 800, 400, 0, 7426, 7421, 1, 0, 0, 0, 7426, 7425, 1, 0, 0, 0, 7427, 733, 1, 0, 0, 0, 7428, 7431, 3, 674, 337, 0, 7429, 7431, 3, 800, 400, 0, 7430, 7428, 1, 0, 0, 0, 7430, 7429, 1, 0, 0, 0, 7431, 735, 1, 0, 0, 0, 7432, 7437, 3, 738, 369, 0, 7433, 7434, 5, 6, 0, 0, 7434, 7436, 3, 738, 369, 0, 7435, 7433, 1, 0, 0, 0, 7436, 7439, 1, 0, 0, 0, 7437, 7435, 1, 0, 0, 0, 7437, 7438, 1, 0, 0, 0, 7438, 737, 1, 0, 0, 0, 7439, 7437, 1, 0, 0, 0, 7440, 7448, 3, 800, 400, 0, 7441, 7448, 3, 674, 337, 0, 7442, 7445, 3, 820, 410, 0, 7443, 7444, 7, 107, 0, 0, 7444, 7446, 3, 674, 337, 0, 7445, 7443, 1, 0, 0, 0, 7445, 7446, 1, 0, 0, 0, 7446, 7448, 1, 0, 0, 0, 7447, 7440, 1, 0, 0, 0, 7447, 7441, 1, 0, 0, 0, 7447, 7442, 1, 0, 0, 0, 7448, 739, 1, 0, 0, 0, 7449, 7459, 5, 4, 0, 0, 7450, 7460, 3, 730, 365, 0, 7451, 7456, 3, 740, 370, 0, 7452, 7453, 5, 6, 0, 0, 7453, 7455, 3, 740, 370, 0, 7454, 7452, 1, 0, 0, 0, 7455, 7458, 1, 0, 0, 0, 7456, 7454, 1, 0, 0, 0, 7456, 7457, 1, 0, 0, 0, 7457, 7460, 1, 0, 0, 0, 7458, 7456, 1, 0, 0, 0, 7459, 7450, 1, 0, 0, 0, 7459, 7451, 1, 0, 0, 0, 7459, 7460, 1, 0, 0, 0, 7460, 7461, 1, 0, 0, 0, 7461, 7462, 5, 5, 0, 0, 7462, 741, 1, 0, 0, 0, 7463, 7472, 3, 826, 413, 0, 7464, 7472, 5, 384, 0, 0, 7465, 7472, 5, 264, 0, 0, 7466, 7472, 5, 176, 0, 0, 7467, 7472, 5, 218, 0, 0, 7468, 7472, 5, 261, 0, 0, 7469, 7472, 5, 326, 0, 0, 7470, 7472, 3, 808, 404, 0, 7471, 7463, 1, 0, 0, 0, 7471, 7464, 1, 0, 0, 0, 7471, 7465, 1, 0, 0, 0, 7471, 7466, 1, 0, 0, 0, 7471, 7467, 1, 0, 0, 0, 7471, 7468, 1, 0, 0, 0, 7471, 7469, 1, 0, 0, 0, 7471, 7470, 1, 0, 0, 0, 7472, 743, 1, 0, 0, 0, 7473, 7474, 7, 108, 0, 0, 7474, 745, 1, 0, 0, 0, 7475, 7476, 3, 674, 337, 0, 7476, 7477, 5, 64, 0, 0, 7477, 7480, 3, 674, 337, 0, 7478, 7479, 5, 62, 0, 0, 7479, 7481, 3, 674, 337, 0, 7480, 7478, 1, 0, 0, 0, 7480, 7481, 1, 0, 0, 0, 7481, 7497, 1, 0, 0, 0, 7482, 7483, 3, 674, 337, 0, 7483, 7484, 5, 62, 0, 0, 7484, 7487, 3, 674, 337, 0, 7485, 7486, 5, 64, 0, 0, 7486, 7488, 3, 674, 337, 0, 7487, 7485, 1, 0, 0, 0, 7487, 7488, 1, 0, 0, 0, 7488, 7497, 1, 0, 0, 0, 7489, 7490, 3, 674, 337, 0, 7490, 7491, 5, 127, 0, 0, 7491, 7492, 3, 674, 337, 0, 7492, 7493, 5, 197, 0, 0, 7493, 7494, 3, 674, 337, 0, 7494, 7497, 1, 0, 0, 0, 7495, 7497, 3, 730, 365, 0, 7496, 7475, 1, 0, 0, 0, 7496, 7482, 1, 0, 0, 0, 7496, 7489, 1, 0, 0, 0, 7496, 7495, 1, 0, 0, 0, 7497, 747, 1, 0, 0, 0, 7498, 7499, 5, 102, 0, 0, 7499, 7500, 3, 674, 337, 0, 7500, 7501, 5, 93, 0, 0, 7501, 7502, 3, 674, 337, 0, 7502, 749, 1, 0, 0, 0, 7503, 7506, 5, 11, 0, 0, 7504, 7507, 3, 824, 412, 0, 7505, 7507, 5, 9, 0, 0, 7506, 7504, 1, 0, 0, 0, 7506, 7505, 1, 0, 0, 0, 7507, 7521, 1, 0, 0, 0, 7508, 7517, 5, 4, 0, 0, 7509, 7518, 3, 674, 337, 0, 7510, 7512, 3, 674, 337, 0, 7511, 7510, 1, 0, 0, 0, 7511, 7512, 1, 0, 0, 0, 7512, 7513, 1, 0, 0, 0, 7513, 7515, 5, 8, 0, 0, 7514, 7516, 3, 674, 337, 0, 7515, 7514, 1, 0, 0, 0, 7515, 7516, 1, 0, 0, 0, 7516, 7518, 1, 0, 0, 0, 7517, 7509, 1, 0, 0, 0, 7517, 7511, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7521, 5, 5, 0, 0, 7520, 7503, 1, 0, 0, 0, 7520, 7508, 1, 0, 0, 0, 7521, 751, 1, 0, 0, 0, 7522, 7524, 3, 750, 375, 0, 7523, 7522, 1, 0, 0, 0, 7524, 7525, 1, 0, 0, 0, 7525, 7523, 1, 0, 0, 0, 7525, 7526, 1, 0, 0, 0, 7526, 753, 1, 0, 0, 0, 7527, 7529, 3, 750, 375, 0, 7528, 7527, 1, 0, 0, 0, 7529, 7532, 1, 0, 0, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7531, 1, 0, 0, 0, 7531, 755, 1, 0, 0, 0, 7532, 7530, 1, 0, 0, 0, 7533, 7538, 3, 758, 379, 0, 7534, 7535, 5, 6, 0, 0, 7535, 7537, 3, 758, 379, 0, 7536, 7534, 1, 0, 0, 0, 7537, 7540, 1, 0, 0, 0, 7538, 7536, 1, 0, 0, 0, 7538, 7539, 1, 0, 0, 0, 7539, 757, 1, 0, 0, 0, 7540, 7538, 1, 0, 0, 0, 7541, 7546, 3, 734, 367, 0, 7542, 7543, 5, 36, 0, 0, 7543, 7547, 3, 824, 412, 0, 7544, 7547, 3, 826, 413, 0, 7545, 7547, 1, 0, 0, 0, 7546, 7542, 1, 0, 0, 0, 7546, 7544, 1, 0, 0, 0, 7546, 7545, 1, 0, 0, 0, 7547, 7550, 1, 0, 0, 0, 7548, 7550, 5, 9, 0, 0, 7549, 7541, 1, 0, 0, 0, 7549, 7548, 1, 0, 0, 0, 7550, 759, 1, 0, 0, 0, 7551, 7556, 3, 780, 390, 0, 7552, 7553, 5, 6, 0, 0, 7553, 7555, 3, 780, 390, 0, 7554, 7552, 1, 0, 0, 0, 7555, 7558, 1, 0, 0, 0, 7556, 7554, 1, 0, 0, 0, 7556, 7557, 1, 0, 0, 0, 7557, 761, 1, 0, 0, 0, 7558, 7556, 1, 0, 0, 0, 7559, 7564, 3, 774, 387, 0, 7560, 7561, 5, 6, 0, 0, 7561, 7563, 3, 774, 387, 0, 7562, 7560, 1, 0, 0, 0, 7563, 7566, 1, 0, 0, 0, 7564, 7562, 1, 0, 0, 0, 7564, 7565, 1, 0, 0, 0, 7565, 763, 1, 0, 0, 0, 7566, 7564, 1, 0, 0, 0, 7567, 7572, 3, 790, 395, 0, 7568, 7569, 5, 6, 0, 0, 7569, 7571, 3, 790, 395, 0, 7570, 7568, 1, 0, 0, 0, 7571, 7574, 1, 0, 0, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7573, 1, 0, 0, 0, 7573, 765, 1, 0, 0, 0, 7574, 7572, 1, 0, 0, 0, 7575, 7580, 3, 788, 394, 0, 7576, 7577, 5, 6, 0, 0, 7577, 7579, 3, 788, 394, 0, 7578, 7576, 1, 0, 0, 0, 7579, 7582, 1, 0, 0, 0, 7580, 7578, 1, 0, 0, 0, 7580, 7581, 1, 0, 0, 0, 7581, 767, 1, 0, 0, 0, 7582, 7580, 1, 0, 0, 0, 7583, 7584, 3, 780, 390, 0, 7584, 769, 1, 0, 0, 0, 7585, 7586, 3, 780, 390, 0, 7586, 771, 1, 0, 0, 0, 7587, 7588, 3, 780, 390, 0, 7588, 773, 1, 0, 0, 0, 7589, 7590, 3, 780, 390, 0, 7590, 775, 1, 0, 0, 0, 7591, 7592, 3, 780, 390, 0, 7592, 777, 1, 0, 0, 0, 7593, 7594, 3, 316, 158, 0, 7594, 779, 1, 0, 0, 0, 7595, 7597, 3, 818, 409, 0, 7596, 7598, 3, 752, 376, 0, 7597, 7596, 1, 0, 0, 0, 7597, 7598, 1, 0, 0, 0, 7598, 781, 1, 0, 0, 0, 7599, 7604, 3, 770, 385, 0, 7600, 7601, 5, 6, 0, 0, 7601, 7603, 3, 770, 385, 0, 7602, 7600, 1, 0, 0, 0, 7603, 7606, 1, 0, 0, 0, 7604, 7602, 1, 0, 0, 0, 7604, 7605, 1, 0, 0, 0, 7605, 783, 1, 0, 0, 0, 7606, 7604, 1, 0, 0, 0, 7607, 7612, 3, 818, 409, 0, 7608, 7609, 5, 6, 0, 0, 7609, 7611, 3, 818, 409, 0, 7610, 7608, 1, 0, 0, 0, 7611, 7614, 1, 0, 0, 0, 7612, 7610, 1, 0, 0, 0, 7612, 7613, 1, 0, 0, 0, 7613, 785, 1, 0, 0, 0, 7614, 7612, 1, 0, 0, 0, 7615, 7616, 3, 316, 158, 0, 7616, 787, 1, 0, 0, 0, 7617, 7618, 3, 316, 158, 0, 7618, 789, 1, 0, 0, 0, 7619, 7620, 3, 316, 158, 0, 7620, 791, 1, 0, 0, 0, 7621, 7622, 3, 818, 409, 0, 7622, 793, 1, 0, 0, 0, 7623, 7624, 3, 818, 409, 0, 7624, 795, 1, 0, 0, 0, 7625, 7630, 3, 820, 410, 0, 7626, 7627, 3, 818, 409, 0, 7627, 7628, 3, 752, 376, 0, 7628, 7630, 1, 0, 0, 0, 7629, 7625, 1, 0, 0, 0, 7629, 7626, 1, 0, 0, 0, 7630, 797, 1, 0, 0, 0, 7631, 7636, 3, 820, 410, 0, 7632, 7633, 3, 818, 409, 0, 7633, 7634, 3, 752, 376, 0, 7634, 7636, 1, 0, 0, 0, 7635, 7631, 1, 0, 0, 0, 7635, 7632, 1, 0, 0, 0, 7636, 799, 1, 0, 0, 0, 7637, 7638, 3, 818, 409, 0, 7638, 7639, 3, 754, 377, 0, 7639, 7642, 1, 0, 0, 0, 7640, 7642, 4, 400, 10, 0, 7641, 7637, 1, 0, 0, 0, 7641, 7640, 1, 0, 0, 0, 7642, 801, 1, 0, 0, 0, 7643, 7644, 3, 818, 409, 0, 7644, 803, 1, 0, 0, 0, 7645, 7650, 3, 820, 410, 0, 7646, 7647, 3, 818, 409, 0, 7647, 7648, 3, 752, 376, 0, 7648, 7650, 1, 0, 0, 0, 7649, 7645, 1, 0, 0, 0, 7649, 7646, 1, 0, 0, 0, 7650, 805, 1, 0, 0, 0, 7651, 7656, 3, 820, 410, 0, 7652, 7653, 3, 818, 409, 0, 7653, 7654, 3, 752, 376, 0, 7654, 7656, 1, 0, 0, 0, 7655, 7651, 1, 0, 0, 0, 7655, 7652, 1, 0, 0, 0, 7656, 807, 1, 0, 0, 0, 7657, 7660, 3, 810, 405, 0, 7658, 7659, 5, 487, 0, 0, 7659, 7661, 3, 810, 405, 0, 7660, 7658, 1, 0, 0, 0, 7660, 7661, 1, 0, 0, 0, 7661, 809, 1, 0, 0, 0, 7662, 7674, 5, 558, 0, 0, 7663, 7674, 5, 560, 0, 0, 7664, 7668, 5, 562, 0, 0, 7665, 7667, 5, 588, 0, 0, 7666, 7665, 1, 0, 0, 0, 7667, 7670, 1, 0, 0, 0, 7668, 7666, 1, 0, 0, 0, 7668, 7669, 1, 0, 0, 0, 7669, 7671, 1, 0, 0, 0, 7670, 7668, 1, 0, 0, 0, 7671, 7674, 5, 589, 0, 0, 7672, 7674, 5, 584, 0, 0, 7673, 7662, 1, 0, 0, 0, 7673, 7663, 1, 0, 0, 0, 7673, 7664, 1, 0, 0, 0, 7673, 7672, 1, 0, 0, 0, 7674, 811, 1, 0, 0, 0, 7675, 7677, 7, 29, 0, 0, 7676, 7675, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 7678, 1, 0, 0, 0, 7678, 7679, 5, 571, 0, 0, 7679, 813, 1, 0, 0, 0, 7680, 7686, 3, 822, 411, 0, 7681, 7686, 5, 52, 0, 0, 7682, 7686, 5, 49, 0, 0, 7683, 7686, 5, 89, 0, 0, 7684, 7686, 5, 524, 0, 0, 7685, 7680, 1, 0, 0, 0, 7685, 7681, 1, 0, 0, 0, 7685, 7682, 1, 0, 0, 0, 7685, 7683, 1, 0, 0, 0, 7685, 7684, 1, 0, 0, 0, 7686, 815, 1, 0, 0, 0, 7687, 7692, 3, 814, 407, 0, 7688, 7689, 5, 6, 0, 0, 7689, 7691, 3, 814, 407, 0, 7690, 7688, 1, 0, 0, 0, 7691, 7694, 1, 0, 0, 0, 7692, 7690, 1, 0, 0, 0, 7692, 7693, 1, 0, 0, 0, 7693, 817, 1, 0, 0, 0, 7694, 7692, 1, 0, 0, 0, 7695, 7698, 3, 826, 413, 0, 7696, 7698, 3, 830, 415, 0, 7697, 7695, 1, 0, 0, 0, 7697, 7696, 1, 0, 0, 0, 7698, 819, 1, 0, 0, 0, 7699, 7702, 3, 826, 413, 0, 7700, 7702, 3, 832, 416, 0, 7701, 7699, 1, 0, 0, 0, 7701, 7700, 1, 0, 0, 0, 7702, 821, 1, 0, 0, 0, 7703, 7707, 3, 826, 413, 0, 7704, 7707, 3, 830, 415, 0, 7705, 7707, 3, 832, 416, 0, 7706, 7703, 1, 0, 0, 0, 7706, 7704, 1, 0, 0, 0, 7706, 7705, 1, 0, 0, 0, 7707, 823, 1, 0, 0, 0, 7708, 7713, 3, 826, 413, 0, 7709, 7713, 3, 830, 415, 0, 7710, 7713, 3, 832, 416, 0, 7711, 7713, 3, 834, 417, 0, 7712, 7708, 1, 0, 0, 0, 7712, 7709, 1, 0, 0, 0, 7712, 7710, 1, 0, 0, 0, 7712, 7711, 1, 0, 0, 0, 7713, 825, 1, 0, 0, 0, 7714, 7717, 5, 549, 0, 0, 7715, 7716, 5, 487, 0, 0, 7716, 7718, 3, 810, 405, 0, 7717, 7715, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 7726, 1, 0, 0, 0, 7719, 7726, 3, 808, 404, 0, 7720, 7726, 5, 550, 0, 0, 7721, 7726, 5, 554, 0, 0, 7722, 7726, 5, 574, 0, 0, 7723, 7726, 5, 575, 0, 0, 7724, 7726, 3, 828, 414, 0, 7725, 7714, 1, 0, 0, 0, 7725, 7719, 1, 0, 0, 0, 7725, 7720, 1, 0, 0, 0, 7725, 7721, 1, 0, 0, 0, 7725, 7722, 1, 0, 0, 0, 7725, 7723, 1, 0, 0, 0, 7725, 7724, 1, 0, 0, 0, 7726, 827, 1, 0, 0, 0, 7727, 7728, 7, 109, 0, 0, 7728, 829, 1, 0, 0, 0, 7729, 7781, 5, 387, 0, 0, 7730, 7781, 5, 388, 0, 0, 7731, 7781, 3, 662, 331, 0, 7732, 7781, 5, 390, 0, 0, 7733, 7781, 5, 391, 0, 0, 7734, 7781, 3, 664, 332, 0, 7735, 7781, 5, 393, 0, 0, 7736, 7781, 5, 394, 0, 0, 7737, 7781, 5, 395, 0, 0, 7738, 7781, 5, 396, 0, 0, 7739, 7781, 5, 397, 0, 0, 7740, 7781, 5, 398, 0, 0, 7741, 7781, 5, 399, 0, 0, 7742, 7781, 5, 470, 0, 0, 7743, 7781, 5, 400, 0, 0, 7744, 7781, 5, 401, 0, 0, 7745, 7781, 5, 402, 0, 0, 7746, 7781, 5, 403, 0, 0, 7747, 7781, 5, 404, 0, 0, 7748, 7781, 5, 405, 0, 0, 7749, 7781, 5, 406, 0, 0, 7750, 7781, 5, 407, 0, 0, 7751, 7781, 5, 489, 0, 0, 7752, 7781, 5, 408, 0, 0, 7753, 7781, 3, 658, 329, 0, 7754, 7781, 5, 453, 0, 0, 7755, 7781, 5, 410, 0, 0, 7756, 7781, 5, 411, 0, 0, 7757, 7781, 5, 412, 0, 0, 7758, 7781, 5, 413, 0, 0, 7759, 7781, 5, 414, 0, 0, 7760, 7781, 5, 415, 0, 0, 7761, 7781, 5, 416, 0, 0, 7762, 7781, 5, 417, 0, 0, 7763, 7781, 5, 418, 0, 0, 7764, 7781, 5, 419, 0, 0, 7765, 7781, 5, 420, 0, 0, 7766, 7781, 5, 421, 0, 0, 7767, 7781, 5, 422, 0, 0, 7768, 7781, 5, 423, 0, 0, 7769, 7781, 5, 424, 0, 0, 7770, 7781, 5, 425, 0, 0, 7771, 7781, 5, 426, 0, 0, 7772, 7781, 5, 427, 0, 0, 7773, 7781, 5, 428, 0, 0, 7774, 7781, 5, 476, 0, 0, 7775, 7781, 5, 429, 0, 0, 7776, 7781, 5, 430, 0, 0, 7777, 7781, 5, 431, 0, 0, 7778, 7781, 5, 432, 0, 0, 7779, 7781, 5, 474, 0, 0, 7780, 7729, 1, 0, 0, 0, 7780, 7730, 1, 0, 0, 0, 7780, 7731, 1, 0, 0, 0, 7780, 7732, 1, 0, 0, 0, 7780, 7733, 1, 0, 0, 0, 7780, 7734, 1, 0, 0, 0, 7780, 7735, 1, 0, 0, 0, 7780, 7736, 1, 0, 0, 0, 7780, 7737, 1, 0, 0, 0, 7780, 7738, 1, 0, 0, 0, 7780, 7739, 1, 0, 0, 0, 7780, 7740, 1, 0, 0, 0, 7780, 7741, 1, 0, 0, 0, 7780, 7742, 1, 0, 0, 0, 7780, 7743, 1, 0, 0, 0, 7780, 7744, 1, 0, 0, 0, 7780, 7745, 1, 0, 0, 0, 7780, 7746, 1, 0, 0, 0, 7780, 7747, 1, 0, 0, 0, 7780, 7748, 1, 0, 0, 0, 7780, 7749, 1, 0, 0, 0, 7780, 7750, 1, 0, 0, 0, 7780, 7751, 1, 0, 0, 0, 7780, 7752, 1, 0, 0, 0, 7780, 7753, 1, 0, 0, 0, 7780, 7754, 1, 0, 0, 0, 7780, 7755, 1, 0, 0, 0, 7780, 7756, 1, 0, 0, 0, 7780, 7757, 1, 0, 0, 0, 7780, 7758, 1, 0, 0, 0, 7780, 7759, 1, 0, 0, 0, 7780, 7760, 1, 0, 0, 0, 7780, 7761, 1, 0, 0, 0, 7780, 7762, 1, 0, 0, 0, 7780, 7763, 1, 0, 0, 0, 7780, 7764, 1, 0, 0, 0, 7780, 7765, 1, 0, 0, 0, 7780, 7766, 1, 0, 0, 0, 7780, 7767, 1, 0, 0, 0, 7780, 7768, 1, 0, 0, 0, 7780, 7769, 1, 0, 0, 0, 7780, 7770, 1, 0, 0, 0, 7780, 7771, 1, 0, 0, 0, 7780, 7772, 1, 0, 0, 0, 7780, 7773, 1, 0, 0, 0, 7780, 7774, 1, 0, 0, 0, 7780, 7775, 1, 0, 0, 0, 7780, 7776, 1, 0, 0, 0, 7780, 7777, 1, 0, 0, 0, 7780, 7778, 1, 0, 0, 0, 7780, 7779, 1, 0, 0, 0, 7781, 831, 1, 0, 0, 0, 7782, 7783, 7, 110, 0, 0, 7783, 833, 1, 0, 0, 0, 7784, 7785, 7, 111, 0, 0, 7785, 835, 1, 0, 0, 0, 7786, 7788, 3, 838, 419, 0, 7787, 7786, 1, 0, 0, 0, 7787, 7788, 1, 0, 0, 0, 7788, 7799, 1, 0, 0, 0, 7789, 7797, 5, 178, 0, 0, 7790, 7794, 3, 840, 420, 0, 7791, 7794, 5, 178, 0, 0, 7792, 7794, 3, 838, 419, 0, 7793, 7790, 1, 0, 0, 0, 7793, 7791, 1, 0, 0, 0, 7793, 7792, 1, 0, 0, 0, 7794, 7795, 1, 0, 0, 0, 7795, 7793, 1, 0, 0, 0, 7795, 7796, 1, 0, 0, 0, 7796, 7798, 1, 0, 0, 0, 7797, 7793, 1, 0, 0, 0, 7797, 7798, 1, 0, 0, 0, 7798, 7800, 1, 0, 0, 0, 7799, 7789, 1, 0, 0, 0, 7799, 7800, 1, 0, 0, 0, 7800, 7801, 1, 0, 0, 0, 7801, 7805, 5, 146, 0, 0, 7802, 7804, 3, 846, 423, 0, 7803, 7802, 1, 0, 0, 0, 7804, 7807, 1, 0, 0, 0, 7805, 7803, 1, 0, 0, 0, 7805, 7806, 1, 0, 0, 0, 7806, 7809, 1, 0, 0, 0, 7807, 7805, 1, 0, 0, 0, 7808, 7810, 3, 924, 462, 0, 7809, 7808, 1, 0, 0, 0, 7809, 7810, 1, 0, 0, 0, 7810, 7811, 1, 0, 0, 0, 7811, 7813, 5, 454, 0, 0, 7812, 7814, 3, 928, 464, 0, 7813, 7812, 1, 0, 0, 0, 7813, 7814, 1, 0, 0, 0, 7814, 837, 1, 0, 0, 0, 7815, 7816, 5, 18, 0, 0, 7816, 7817, 3, 928, 464, 0, 7817, 7818, 5, 19, 0, 0, 7818, 839, 1, 0, 0, 0, 7819, 7866, 3, 928, 464, 0, 7820, 7821, 5, 496, 0, 0, 7821, 7824, 5, 62, 0, 0, 7822, 7825, 5, 28, 0, 0, 7823, 7825, 3, 818, 409, 0, 7824, 7822, 1, 0, 0, 0, 7824, 7823, 1, 0, 0, 0, 7825, 7867, 1, 0, 0, 0, 7826, 7828, 5, 497, 0, 0, 7827, 7826, 1, 0, 0, 0, 7827, 7828, 1, 0, 0, 0, 7828, 7829, 1, 0, 0, 0, 7829, 7831, 3, 652, 326, 0, 7830, 7832, 3, 98, 49, 0, 7831, 7830, 1, 0, 0, 0, 7831, 7832, 1, 0, 0, 0, 7832, 7835, 1, 0, 0, 0, 7833, 7834, 5, 77, 0, 0, 7834, 7836, 5, 78, 0, 0, 7835, 7833, 1, 0, 0, 0, 7835, 7836, 1, 0, 0, 0, 7836, 7842, 1, 0, 0, 0, 7837, 7840, 3, 844, 422, 0, 7838, 7840, 5, 53, 0, 0, 7839, 7837, 1, 0, 0, 0, 7839, 7838, 1, 0, 0, 0, 7840, 7841, 1, 0, 0, 0, 7841, 7843, 3, 930, 465, 0, 7842, 7839, 1, 0, 0, 0, 7842, 7843, 1, 0, 0, 0, 7843, 7867, 1, 0, 0, 0, 7844, 7846, 5, 269, 0, 0, 7845, 7844, 1, 0, 0, 0, 7845, 7846, 1, 0, 0, 0, 7846, 7847, 1, 0, 0, 0, 7847, 7849, 5, 324, 0, 0, 7848, 7845, 1, 0, 0, 0, 7848, 7849, 1, 0, 0, 0, 7849, 7850, 1, 0, 0, 0, 7850, 7862, 5, 172, 0, 0, 7851, 7852, 5, 2, 0, 0, 7852, 7857, 3, 842, 421, 0, 7853, 7854, 5, 6, 0, 0, 7854, 7856, 3, 842, 421, 0, 7855, 7853, 1, 0, 0, 0, 7856, 7859, 1, 0, 0, 0, 7857, 7855, 1, 0, 0, 0, 7857, 7858, 1, 0, 0, 0, 7858, 7860, 1, 0, 0, 0, 7859, 7857, 1, 0, 0, 0, 7860, 7861, 5, 3, 0, 0, 7861, 7863, 1, 0, 0, 0, 7862, 7851, 1, 0, 0, 0, 7862, 7863, 1, 0, 0, 0, 7863, 7864, 1, 0, 0, 0, 7864, 7865, 7, 112, 0, 0, 7865, 7867, 3, 560, 280, 0, 7866, 7820, 1, 0, 0, 0, 7866, 7827, 1, 0, 0, 0, 7866, 7848, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 7869, 5, 7, 0, 0, 7869, 841, 1, 0, 0, 0, 7870, 7871, 3, 928, 464, 0, 7871, 7872, 3, 652, 326, 0, 7872, 843, 1, 0, 0, 0, 7873, 7874, 7, 113, 0, 0, 7874, 845, 1, 0, 0, 0, 7875, 7876, 3, 836, 418, 0, 7876, 7877, 5, 7, 0, 0, 7877, 7900, 1, 0, 0, 0, 7878, 7900, 3, 874, 437, 0, 7879, 7900, 3, 876, 438, 0, 7880, 7900, 3, 852, 426, 0, 7881, 7900, 3, 860, 430, 0, 7882, 7900, 3, 864, 432, 0, 7883, 7900, 3, 866, 433, 0, 7884, 7900, 3, 870, 435, 0, 7885, 7900, 3, 872, 436, 0, 7886, 7900, 3, 880, 440, 0, 7887, 7900, 3, 884, 442, 0, 7888, 7900, 3, 886, 443, 0, 7889, 7900, 3, 848, 424, 0, 7890, 7900, 3, 850, 425, 0, 7891, 7900, 3, 854, 427, 0, 7892, 7900, 3, 890, 445, 0, 7893, 7900, 3, 894, 447, 0, 7894, 7900, 3, 898, 449, 0, 7895, 7900, 3, 914, 457, 0, 7896, 7900, 3, 916, 458, 0, 7897, 7900, 3, 918, 459, 0, 7898, 7900, 3, 920, 460, 0, 7899, 7875, 1, 0, 0, 0, 7899, 7878, 1, 0, 0, 0, 7899, 7879, 1, 0, 0, 0, 7899, 7880, 1, 0, 0, 0, 7899, 7881, 1, 0, 0, 0, 7899, 7882, 1, 0, 0, 0, 7899, 7883, 1, 0, 0, 0, 7899, 7884, 1, 0, 0, 0, 7899, 7885, 1, 0, 0, 0, 7899, 7886, 1, 0, 0, 0, 7899, 7887, 1, 0, 0, 0, 7899, 7888, 1, 0, 0, 0, 7899, 7889, 1, 0, 0, 0, 7899, 7890, 1, 0, 0, 0, 7899, 7891, 1, 0, 0, 0, 7899, 7892, 1, 0, 0, 0, 7899, 7893, 1, 0, 0, 0, 7899, 7894, 1, 0, 0, 0, 7899, 7895, 1, 0, 0, 0, 7899, 7896, 1, 0, 0, 0, 7899, 7897, 1, 0, 0, 0, 7899, 7898, 1, 0, 0, 0, 7900, 847, 1, 0, 0, 0, 7901, 7902, 5, 498, 0, 0, 7902, 7903, 3, 930, 465, 0, 7903, 7904, 5, 7, 0, 0, 7904, 849, 1, 0, 0, 0, 7905, 7906, 5, 433, 0, 0, 7906, 7913, 3, 928, 464, 0, 7907, 7909, 5, 2, 0, 0, 7908, 7910, 3, 730, 365, 0, 7909, 7908, 1, 0, 0, 0, 7909, 7910, 1, 0, 0, 0, 7910, 7911, 1, 0, 0, 0, 7911, 7912, 5, 3, 0, 0, 7912, 7914, 5, 7, 0, 0, 7913, 7907, 1, 0, 0, 0, 7913, 7914, 1, 0, 0, 0, 7914, 7925, 1, 0, 0, 0, 7915, 7916, 5, 57, 0, 0, 7916, 7917, 3, 928, 464, 0, 7917, 7919, 5, 2, 0, 0, 7918, 7920, 3, 730, 365, 0, 7919, 7918, 1, 0, 0, 0, 7919, 7920, 1, 0, 0, 0, 7920, 7921, 1, 0, 0, 0, 7921, 7922, 5, 3, 0, 0, 7922, 7923, 5, 7, 0, 0, 7923, 7925, 1, 0, 0, 0, 7924, 7905, 1, 0, 0, 0, 7924, 7915, 1, 0, 0, 0, 7925, 851, 1, 0, 0, 0, 7926, 7927, 3, 858, 429, 0, 7927, 7928, 3, 844, 422, 0, 7928, 7929, 3, 930, 465, 0, 7929, 7930, 5, 7, 0, 0, 7930, 853, 1, 0, 0, 0, 7931, 7933, 5, 499, 0, 0, 7932, 7934, 7, 114, 0, 0, 7933, 7932, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 7935, 1, 0, 0, 0, 7935, 7936, 5, 500, 0, 0, 7936, 7941, 3, 856, 428, 0, 7937, 7938, 5, 6, 0, 0, 7938, 7940, 3, 856, 428, 0, 7939, 7937, 1, 0, 0, 0, 7940, 7943, 1, 0, 0, 0, 7941, 7939, 1, 0, 0, 0, 7941, 7942, 1, 0, 0, 0, 7942, 7944, 1, 0, 0, 0, 7943, 7941, 1, 0, 0, 0, 7944, 7945, 5, 7, 0, 0, 7945, 855, 1, 0, 0, 0, 7946, 7947, 3, 858, 429, 0, 7947, 7948, 3, 844, 422, 0, 7948, 7949, 3, 818, 409, 0, 7949, 857, 1, 0, 0, 0, 7950, 7953, 3, 316, 158, 0, 7951, 7953, 5, 28, 0, 0, 7952, 7950, 1, 0, 0, 0, 7952, 7951, 1, 0, 0, 0, 7953, 7960, 1, 0, 0, 0, 7954, 7955, 5, 4, 0, 0, 7955, 7956, 3, 674, 337, 0, 7956, 7957, 5, 5, 0, 0, 7957, 7959, 1, 0, 0, 0, 7958, 7954, 1, 0, 0, 0, 7959, 7962, 1, 0, 0, 0, 7960, 7958, 1, 0, 0, 0, 7960, 7961, 1, 0, 0, 0, 7961, 859, 1, 0, 0, 0, 7962, 7960, 1, 0, 0, 0, 7963, 7964, 5, 220, 0, 0, 7964, 7965, 3, 930, 465, 0, 7965, 7969, 5, 93, 0, 0, 7966, 7968, 3, 846, 423, 0, 7967, 7966, 1, 0, 0, 0, 7968, 7971, 1, 0, 0, 0, 7969, 7967, 1, 0, 0, 0, 7969, 7970, 1, 0, 0, 0, 7970, 7983, 1, 0, 0, 0, 7971, 7969, 1, 0, 0, 0, 7972, 7973, 5, 502, 0, 0, 7973, 7974, 3, 674, 337, 0, 7974, 7978, 5, 93, 0, 0, 7975, 7977, 3, 846, 423, 0, 7976, 7975, 1, 0, 0, 0, 7977, 7980, 1, 0, 0, 0, 7978, 7976, 1, 0, 0, 0, 7978, 7979, 1, 0, 0, 0, 7979, 7982, 1, 0, 0, 0, 7980, 7978, 1, 0, 0, 0, 7981, 7972, 1, 0, 0, 0, 7982, 7985, 1, 0, 0, 0, 7983, 7981, 1, 0, 0, 0, 7983, 7984, 1, 0, 0, 0, 7984, 7987, 1, 0, 0, 0, 7985, 7983, 1, 0, 0, 0, 7986, 7988, 3, 862, 431, 0, 7987, 7986, 1, 0, 0, 0, 7987, 7988, 1, 0, 0, 0, 7988, 7989, 1, 0, 0, 0, 7989, 7990, 5, 454, 0, 0, 7990, 7991, 5, 220, 0, 0, 7991, 7992, 5, 7, 0, 0, 7992, 861, 1, 0, 0, 0, 7993, 7997, 5, 58, 0, 0, 7994, 7996, 3, 846, 423, 0, 7995, 7994, 1, 0, 0, 0, 7996, 7999, 1, 0, 0, 0, 7997, 7995, 1, 0, 0, 0, 7997, 7998, 1, 0, 0, 0, 7998, 863, 1, 0, 0, 0, 7999, 7997, 1, 0, 0, 0, 8000, 8002, 5, 40, 0, 0, 8001, 8003, 3, 930, 465, 0, 8002, 8001, 1, 0, 0, 0, 8002, 8003, 1, 0, 0, 0, 8003, 8013, 1, 0, 0, 0, 8004, 8005, 5, 102, 0, 0, 8005, 8006, 3, 730, 365, 0, 8006, 8010, 5, 93, 0, 0, 8007, 8009, 3, 846, 423, 0, 8008, 8007, 1, 0, 0, 0, 8009, 8012, 1, 0, 0, 0, 8010, 8008, 1, 0, 0, 0, 8010, 8011, 1, 0, 0, 0, 8011, 8014, 1, 0, 0, 0, 8012, 8010, 1, 0, 0, 0, 8013, 8004, 1, 0, 0, 0, 8014, 8015, 1, 0, 0, 0, 8015, 8013, 1, 0, 0, 0, 8015, 8016, 1, 0, 0, 0, 8016, 8018, 1, 0, 0, 0, 8017, 8019, 3, 862, 431, 0, 8018, 8017, 1, 0, 0, 0, 8018, 8019, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 8021, 5, 454, 0, 0, 8021, 8022, 5, 40, 0, 0, 8022, 8023, 5, 7, 0, 0, 8023, 865, 1, 0, 0, 0, 8024, 8026, 3, 838, 419, 0, 8025, 8024, 1, 0, 0, 0, 8025, 8026, 1, 0, 0, 0, 8026, 8031, 1, 0, 0, 0, 8027, 8028, 5, 503, 0, 0, 8028, 8032, 3, 674, 337, 0, 8029, 8030, 5, 62, 0, 0, 8030, 8032, 3, 868, 434, 0, 8031, 8027, 1, 0, 0, 0, 8031, 8029, 1, 0, 0, 0, 8031, 8032, 1, 0, 0, 0, 8032, 8033, 1, 0, 0, 0, 8033, 8034, 3, 882, 441, 0, 8034, 867, 1, 0, 0, 0, 8035, 8036, 3, 314, 157, 0, 8036, 8059, 5, 68, 0, 0, 8037, 8039, 3, 818, 409, 0, 8038, 8040, 3, 534, 267, 0, 8039, 8038, 1, 0, 0, 0, 8039, 8040, 1, 0, 0, 0, 8040, 8060, 1, 0, 0, 0, 8041, 8060, 3, 560, 280, 0, 8042, 8060, 3, 520, 260, 0, 8043, 8044, 5, 202, 0, 0, 8044, 8047, 3, 674, 337, 0, 8045, 8046, 5, 100, 0, 0, 8046, 8048, 3, 730, 365, 0, 8047, 8045, 1, 0, 0, 0, 8047, 8048, 1, 0, 0, 0, 8048, 8060, 1, 0, 0, 0, 8049, 8051, 5, 504, 0, 0, 8050, 8049, 1, 0, 0, 0, 8050, 8051, 1, 0, 0, 0, 8051, 8052, 1, 0, 0, 0, 8052, 8053, 3, 674, 337, 0, 8053, 8054, 5, 24, 0, 0, 8054, 8057, 3, 674, 337, 0, 8055, 8056, 5, 147, 0, 0, 8056, 8058, 3, 674, 337, 0, 8057, 8055, 1, 0, 0, 0, 8057, 8058, 1, 0, 0, 0, 8058, 8060, 1, 0, 0, 0, 8059, 8037, 1, 0, 0, 0, 8059, 8041, 1, 0, 0, 0, 8059, 8042, 1, 0, 0, 0, 8059, 8043, 1, 0, 0, 0, 8059, 8050, 1, 0, 0, 0, 8060, 869, 1, 0, 0, 0, 8061, 8063, 3, 838, 419, 0, 8062, 8061, 1, 0, 0, 0, 8062, 8063, 1, 0, 0, 0, 8063, 8064, 1, 0, 0, 0, 8064, 8065, 5, 505, 0, 0, 8065, 8068, 3, 314, 157, 0, 8066, 8067, 5, 506, 0, 0, 8067, 8069, 5, 571, 0, 0, 8068, 8066, 1, 0, 0, 0, 8068, 8069, 1, 0, 0, 0, 8069, 8070, 1, 0, 0, 0, 8070, 8071, 5, 68, 0, 0, 8071, 8072, 5, 35, 0, 0, 8072, 8073, 3, 674, 337, 0, 8073, 8074, 3, 882, 441, 0, 8074, 871, 1, 0, 0, 0, 8075, 8077, 7, 115, 0, 0, 8076, 8078, 3, 928, 464, 0, 8077, 8076, 1, 0, 0, 0, 8077, 8078, 1, 0, 0, 0, 8078, 8081, 1, 0, 0, 0, 8079, 8080, 5, 102, 0, 0, 8080, 8082, 3, 930, 465, 0, 8081, 8079, 1, 0, 0, 0, 8081, 8082, 1, 0, 0, 0, 8082, 8083, 1, 0, 0, 0, 8083, 8084, 5, 7, 0, 0, 8084, 873, 1, 0, 0, 0, 8085, 8100, 5, 508, 0, 0, 8086, 8087, 5, 268, 0, 0, 8087, 8101, 3, 930, 465, 0, 8088, 8095, 5, 509, 0, 0, 8089, 8090, 5, 202, 0, 0, 8090, 8091, 3, 674, 337, 0, 8091, 8092, 5, 100, 0, 0, 8092, 8093, 3, 730, 365, 0, 8093, 8096, 1, 0, 0, 0, 8094, 8096, 3, 560, 280, 0, 8095, 8089, 1, 0, 0, 0, 8095, 8094, 1, 0, 0, 0, 8096, 8101, 1, 0, 0, 0, 8097, 8099, 3, 930, 465, 0, 8098, 8097, 1, 0, 0, 0, 8098, 8099, 1, 0, 0, 0, 8099, 8101, 1, 0, 0, 0, 8100, 8086, 1, 0, 0, 0, 8100, 8088, 1, 0, 0, 0, 8100, 8098, 1, 0, 0, 0, 8101, 8102, 1, 0, 0, 0, 8102, 8103, 5, 7, 0, 0, 8103, 875, 1, 0, 0, 0, 8104, 8134, 5, 510, 0, 0, 8105, 8107, 7, 116, 0, 0, 8106, 8105, 1, 0, 0, 0, 8106, 8107, 1, 0, 0, 0, 8107, 8120, 1, 0, 0, 0, 8108, 8121, 3, 826, 413, 0, 8109, 8110, 5, 511, 0, 0, 8110, 8121, 3, 808, 404, 0, 8111, 8118, 3, 808, 404, 0, 8112, 8113, 5, 6, 0, 0, 8113, 8115, 3, 674, 337, 0, 8114, 8112, 1, 0, 0, 0, 8115, 8116, 1, 0, 0, 0, 8116, 8114, 1, 0, 0, 0, 8116, 8117, 1, 0, 0, 0, 8117, 8119, 1, 0, 0, 0, 8118, 8114, 1, 0, 0, 0, 8118, 8119, 1, 0, 0, 0, 8119, 8121, 1, 0, 0, 0, 8120, 8108, 1, 0, 0, 0, 8120, 8109, 1, 0, 0, 0, 8120, 8111, 1, 0, 0, 0, 8120, 8121, 1, 0, 0, 0, 8121, 8131, 1, 0, 0, 0, 8122, 8123, 5, 100, 0, 0, 8123, 8128, 3, 878, 439, 0, 8124, 8125, 5, 6, 0, 0, 8125, 8127, 3, 878, 439, 0, 8126, 8124, 1, 0, 0, 0, 8127, 8130, 1, 0, 0, 0, 8128, 8126, 1, 0, 0, 0, 8128, 8129, 1, 0, 0, 0, 8129, 8132, 1, 0, 0, 0, 8130, 8128, 1, 0, 0, 0, 8131, 8122, 1, 0, 0, 0, 8131, 8132, 1, 0, 0, 0, 8132, 8133, 1, 0, 0, 0, 8133, 8135, 5, 7, 0, 0, 8134, 8106, 1, 0, 0, 0, 8134, 8135, 1, 0, 0, 0, 8135, 877, 1, 0, 0, 0, 8136, 8137, 3, 826, 413, 0, 8137, 8138, 5, 10, 0, 0, 8138, 8139, 3, 674, 337, 0, 8139, 879, 1, 0, 0, 0, 8140, 8141, 5, 518, 0, 0, 8141, 8144, 3, 930, 465, 0, 8142, 8143, 5, 6, 0, 0, 8143, 8145, 3, 930, 465, 0, 8144, 8142, 1, 0, 0, 0, 8144, 8145, 1, 0, 0, 0, 8145, 8146, 1, 0, 0, 0, 8146, 8147, 5, 7, 0, 0, 8147, 881, 1, 0, 0, 0, 8148, 8152, 5, 519, 0, 0, 8149, 8151, 3, 846, 423, 0, 8150, 8149, 1, 0, 0, 0, 8151, 8154, 1, 0, 0, 0, 8152, 8150, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8155, 1, 0, 0, 0, 8154, 8152, 1, 0, 0, 0, 8155, 8156, 5, 454, 0, 0, 8156, 8158, 5, 519, 0, 0, 8157, 8159, 3, 928, 464, 0, 8158, 8157, 1, 0, 0, 0, 8158, 8159, 1, 0, 0, 0, 8159, 8160, 1, 0, 0, 0, 8160, 8161, 5, 7, 0, 0, 8161, 883, 1, 0, 0, 0, 8162, 8164, 3, 4, 2, 0, 8163, 8165, 3, 888, 444, 0, 8164, 8163, 1, 0, 0, 0, 8164, 8165, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8167, 5, 7, 0, 0, 8167, 885, 1, 0, 0, 0, 8168, 8169, 5, 202, 0, 0, 8169, 8185, 3, 674, 337, 0, 8170, 8172, 3, 888, 444, 0, 8171, 8170, 1, 0, 0, 0, 8171, 8172, 1, 0, 0, 0, 8172, 8175, 1, 0, 0, 0, 8173, 8174, 5, 100, 0, 0, 8174, 8176, 3, 730, 365, 0, 8175, 8173, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 8186, 1, 0, 0, 0, 8177, 8178, 5, 100, 0, 0, 8178, 8180, 3, 730, 365, 0, 8179, 8177, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 8182, 1, 0, 0, 0, 8181, 8183, 3, 888, 444, 0, 8182, 8181, 1, 0, 0, 0, 8182, 8183, 1, 0, 0, 0, 8183, 8186, 1, 0, 0, 0, 8184, 8186, 1, 0, 0, 0, 8185, 8171, 1, 0, 0, 0, 8185, 8179, 1, 0, 0, 0, 8185, 8184, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8188, 5, 7, 0, 0, 8188, 887, 1, 0, 0, 0, 8189, 8191, 5, 71, 0, 0, 8190, 8192, 5, 346, 0, 0, 8191, 8190, 1, 0, 0, 0, 8191, 8192, 1, 0, 0, 0, 8192, 8193, 1, 0, 0, 0, 8193, 8194, 3, 730, 365, 0, 8194, 889, 1, 0, 0, 0, 8195, 8227, 5, 520, 0, 0, 8196, 8201, 3, 922, 461, 0, 8197, 8199, 5, 269, 0, 0, 8198, 8197, 1, 0, 0, 0, 8198, 8199, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8202, 5, 324, 0, 0, 8201, 8198, 1, 0, 0, 0, 8201, 8202, 1, 0, 0, 0, 8202, 8203, 1, 0, 0, 0, 8203, 8211, 5, 62, 0, 0, 8204, 8212, 3, 560, 280, 0, 8205, 8206, 5, 202, 0, 0, 8206, 8209, 3, 930, 465, 0, 8207, 8208, 5, 100, 0, 0, 8208, 8210, 3, 730, 365, 0, 8209, 8207, 1, 0, 0, 0, 8209, 8210, 1, 0, 0, 0, 8210, 8212, 1, 0, 0, 0, 8211, 8204, 1, 0, 0, 0, 8211, 8205, 1, 0, 0, 0, 8212, 8228, 1, 0, 0, 0, 8213, 8225, 3, 818, 409, 0, 8214, 8215, 5, 2, 0, 0, 8215, 8220, 3, 892, 446, 0, 8216, 8217, 5, 6, 0, 0, 8217, 8219, 3, 892, 446, 0, 8218, 8216, 1, 0, 0, 0, 8219, 8222, 1, 0, 0, 0, 8220, 8218, 1, 0, 0, 0, 8220, 8221, 1, 0, 0, 0, 8221, 8223, 1, 0, 0, 0, 8222, 8220, 1, 0, 0, 0, 8223, 8224, 5, 3, 0, 0, 8224, 8226, 1, 0, 0, 0, 8225, 8214, 1, 0, 0, 0, 8225, 8226, 1, 0, 0, 0, 8226, 8228, 1, 0, 0, 0, 8227, 8196, 1, 0, 0, 0, 8227, 8213, 1, 0, 0, 0, 8228, 8229, 1, 0, 0, 0, 8229, 8230, 5, 7, 0, 0, 8230, 891, 1, 0, 0, 0, 8231, 8232, 3, 818, 409, 0, 8232, 8233, 5, 20, 0, 0, 8233, 8235, 1, 0, 0, 0, 8234, 8231, 1, 0, 0, 0, 8234, 8235, 1, 0, 0, 0, 8235, 8236, 1, 0, 0, 0, 8236, 8237, 3, 674, 337, 0, 8237, 893, 1, 0, 0, 0, 8238, 8240, 5, 61, 0, 0, 8239, 8241, 3, 896, 448, 0, 8240, 8239, 1, 0, 0, 0, 8240, 8241, 1, 0, 0, 0, 8241, 8243, 1, 0, 0, 0, 8242, 8244, 3, 332, 166, 0, 8243, 8242, 1, 0, 0, 0, 8243, 8244, 1, 0, 0, 0, 8244, 8245, 1, 0, 0, 0, 8245, 8246, 3, 922, 461, 0, 8246, 8247, 5, 71, 0, 0, 8247, 8248, 3, 730, 365, 0, 8248, 8249, 5, 7, 0, 0, 8249, 895, 1, 0, 0, 0, 8250, 8265, 5, 268, 0, 0, 8251, 8265, 5, 293, 0, 0, 8252, 8265, 5, 207, 0, 0, 8253, 8265, 5, 249, 0, 0, 8254, 8256, 7, 50, 0, 0, 8255, 8254, 1, 0, 0, 0, 8255, 8256, 1, 0, 0, 0, 8256, 8257, 1, 0, 0, 0, 8257, 8265, 3, 674, 337, 0, 8258, 8265, 5, 30, 0, 0, 8259, 8262, 7, 117, 0, 0, 8260, 8263, 3, 674, 337, 0, 8261, 8263, 5, 30, 0, 0, 8262, 8260, 1, 0, 0, 0, 8262, 8261, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8265, 1, 0, 0, 0, 8264, 8250, 1, 0, 0, 0, 8264, 8251, 1, 0, 0, 0, 8264, 8252, 1, 0, 0, 0, 8264, 8253, 1, 0, 0, 0, 8264, 8255, 1, 0, 0, 0, 8264, 8258, 1, 0, 0, 0, 8264, 8259, 1, 0, 0, 0, 8265, 897, 1, 0, 0, 0, 8266, 8268, 5, 265, 0, 0, 8267, 8269, 3, 896, 448, 0, 8268, 8267, 1, 0, 0, 0, 8268, 8269, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8271, 3, 922, 461, 0, 8271, 8272, 5, 7, 0, 0, 8272, 899, 1, 0, 0, 0, 8273, 8275, 3, 572, 286, 0, 8274, 8273, 1, 0, 0, 0, 8274, 8275, 1, 0, 0, 0, 8275, 8276, 1, 0, 0, 0, 8276, 8277, 5, 525, 0, 0, 8277, 8279, 5, 71, 0, 0, 8278, 8280, 5, 81, 0, 0, 8279, 8278, 1, 0, 0, 0, 8279, 8280, 1, 0, 0, 0, 8280, 8281, 1, 0, 0, 0, 8281, 8283, 3, 774, 387, 0, 8282, 8284, 5, 9, 0, 0, 8283, 8282, 1, 0, 0, 0, 8283, 8284, 1, 0, 0, 0, 8284, 8289, 1, 0, 0, 0, 8285, 8287, 5, 36, 0, 0, 8286, 8285, 1, 0, 0, 0, 8286, 8287, 1, 0, 0, 0, 8287, 8288, 1, 0, 0, 0, 8288, 8290, 3, 818, 409, 0, 8289, 8286, 1, 0, 0, 0, 8289, 8290, 1, 0, 0, 0, 8290, 8291, 1, 0, 0, 0, 8291, 8292, 5, 100, 0, 0, 8292, 8293, 3, 902, 451, 0, 8293, 8294, 5, 80, 0, 0, 8294, 8296, 3, 674, 337, 0, 8295, 8297, 3, 904, 452, 0, 8296, 8295, 1, 0, 0, 0, 8297, 8298, 1, 0, 0, 0, 8298, 8296, 1, 0, 0, 0, 8298, 8299, 1, 0, 0, 0, 8299, 901, 1, 0, 0, 0, 8300, 8302, 5, 81, 0, 0, 8301, 8300, 1, 0, 0, 0, 8301, 8302, 1, 0, 0, 0, 8302, 8303, 1, 0, 0, 0, 8303, 8305, 3, 774, 387, 0, 8304, 8306, 5, 9, 0, 0, 8305, 8304, 1, 0, 0, 0, 8305, 8306, 1, 0, 0, 0, 8306, 8312, 1, 0, 0, 0, 8307, 8310, 3, 564, 282, 0, 8308, 8310, 3, 608, 304, 0, 8309, 8307, 1, 0, 0, 0, 8309, 8308, 1, 0, 0, 0, 8310, 8312, 1, 0, 0, 0, 8311, 8301, 1, 0, 0, 0, 8311, 8309, 1, 0, 0, 0, 8312, 8317, 1, 0, 0, 0, 8313, 8315, 5, 36, 0, 0, 8314, 8313, 1, 0, 0, 0, 8314, 8315, 1, 0, 0, 0, 8315, 8316, 1, 0, 0, 0, 8316, 8318, 3, 818, 409, 0, 8317, 8314, 1, 0, 0, 0, 8317, 8318, 1, 0, 0, 0, 8318, 903, 1, 0, 0, 0, 8319, 8320, 5, 102, 0, 0, 8320, 8323, 5, 526, 0, 0, 8321, 8322, 5, 33, 0, 0, 8322, 8324, 3, 674, 337, 0, 8323, 8321, 1, 0, 0, 0, 8323, 8324, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8330, 5, 93, 0, 0, 8326, 8331, 3, 908, 454, 0, 8327, 8331, 5, 182, 0, 0, 8328, 8329, 5, 57, 0, 0, 8329, 8331, 5, 270, 0, 0, 8330, 8326, 1, 0, 0, 0, 8330, 8327, 1, 0, 0, 0, 8330, 8328, 1, 0, 0, 0, 8331, 8346, 1, 0, 0, 0, 8332, 8333, 5, 102, 0, 0, 8333, 8334, 5, 77, 0, 0, 8334, 8337, 5, 526, 0, 0, 8335, 8336, 5, 33, 0, 0, 8336, 8338, 3, 674, 337, 0, 8337, 8335, 1, 0, 0, 0, 8337, 8338, 1, 0, 0, 0, 8338, 8339, 1, 0, 0, 0, 8339, 8343, 5, 93, 0, 0, 8340, 8344, 3, 906, 453, 0, 8341, 8342, 5, 57, 0, 0, 8342, 8344, 5, 270, 0, 0, 8343, 8340, 1, 0, 0, 0, 8343, 8341, 1, 0, 0, 0, 8344, 8346, 1, 0, 0, 0, 8345, 8319, 1, 0, 0, 0, 8345, 8332, 1, 0, 0, 0, 8346, 905, 1, 0, 0, 0, 8347, 8349, 5, 241, 0, 0, 8348, 8350, 3, 144, 72, 0, 8349, 8348, 1, 0, 0, 0, 8349, 8350, 1, 0, 0, 0, 8350, 8354, 1, 0, 0, 0, 8351, 8352, 5, 463, 0, 0, 8352, 8353, 7, 76, 0, 0, 8353, 8355, 5, 450, 0, 0, 8354, 8351, 1, 0, 0, 0, 8354, 8355, 1, 0, 0, 0, 8355, 8356, 1, 0, 0, 0, 8356, 8357, 3, 910, 455, 0, 8357, 907, 1, 0, 0, 0, 8358, 8359, 5, 369, 0, 0, 8359, 8377, 5, 333, 0, 0, 8360, 8361, 3, 800, 400, 0, 8361, 8362, 5, 10, 0, 0, 8362, 8363, 3, 912, 456, 0, 8363, 8378, 1, 0, 0, 0, 8364, 8365, 3, 144, 72, 0, 8365, 8366, 5, 10, 0, 0, 8366, 8367, 5, 2, 0, 0, 8367, 8372, 3, 912, 456, 0, 8368, 8369, 5, 6, 0, 0, 8369, 8371, 3, 912, 456, 0, 8370, 8368, 1, 0, 0, 0, 8371, 8374, 1, 0, 0, 0, 8372, 8370, 1, 0, 0, 0, 8372, 8373, 1, 0, 0, 0, 8373, 8375, 1, 0, 0, 0, 8374, 8372, 1, 0, 0, 0, 8375, 8376, 5, 3, 0, 0, 8376, 8378, 1, 0, 0, 0, 8377, 8360, 1, 0, 0, 0, 8377, 8364, 1, 0, 0, 0, 8378, 8379, 1, 0, 0, 0, 8379, 8377, 1, 0, 0, 0, 8379, 8380, 1, 0, 0, 0, 8380, 909, 1, 0, 0, 0, 8381, 8382, 5, 422, 0, 0, 8382, 8383, 5, 2, 0, 0, 8383, 8388, 3, 912, 456, 0, 8384, 8385, 5, 6, 0, 0, 8385, 8387, 3, 912, 456, 0, 8386, 8384, 1, 0, 0, 0, 8387, 8390, 1, 0, 0, 0, 8388, 8386, 1, 0, 0, 0, 8388, 8389, 1, 0, 0, 0, 8389, 8391, 1, 0, 0, 0, 8390, 8388, 1, 0, 0, 0, 8391, 8392, 5, 3, 0, 0, 8392, 8396, 1, 0, 0, 0, 8393, 8394, 5, 53, 0, 0, 8394, 8396, 5, 422, 0, 0, 8395, 8381, 1, 0, 0, 0, 8395, 8393, 1, 0, 0, 0, 8396, 911, 1, 0, 0, 0, 8397, 8400, 3, 588, 294, 0, 8398, 8400, 5, 53, 0, 0, 8399, 8397, 1, 0, 0, 0, 8399, 8398, 1, 0, 0, 0, 8400, 913, 1, 0, 0, 0, 8401, 8402, 5, 157, 0, 0, 8402, 8403, 3, 922, 461, 0, 8403, 8404, 5, 7, 0, 0, 8404, 915, 1, 0, 0, 0, 8405, 8406, 5, 78, 0, 0, 8406, 8407, 5, 7, 0, 0, 8407, 917, 1, 0, 0, 0, 8408, 8414, 7, 67, 0, 0, 8409, 8411, 5, 33, 0, 0, 8410, 8412, 5, 269, 0, 0, 8411, 8410, 1, 0, 0, 0, 8411, 8412, 1, 0, 0, 0, 8412, 8413, 1, 0, 0, 0, 8413, 8415, 5, 153, 0, 0, 8414, 8409, 1, 0, 0, 0, 8414, 8415, 1, 0, 0, 0, 8415, 8416, 1, 0, 0, 0, 8416, 8417, 5, 7, 0, 0, 8417, 919, 1, 0, 0, 0, 8418, 8419, 5, 333, 0, 0, 8419, 8420, 3, 316, 158, 0, 8420, 8421, 5, 94, 0, 0, 8421, 8422, 5, 53, 0, 0, 8422, 8423, 5, 7, 0, 0, 8423, 8431, 1, 0, 0, 0, 8424, 8427, 5, 313, 0, 0, 8425, 8428, 3, 316, 158, 0, 8426, 8428, 5, 30, 0, 0, 8427, 8425, 1, 0, 0, 0, 8427, 8426, 1, 0, 0, 0, 8428, 8429, 1, 0, 0, 0, 8429, 8431, 5, 7, 0, 0, 8430, 8418, 1, 0, 0, 0, 8430, 8424, 1, 0, 0, 0, 8431, 921, 1, 0, 0, 0, 8432, 8435, 3, 818, 409, 0, 8433, 8435, 5, 28, 0, 0, 8434, 8432, 1, 0, 0, 0, 8434, 8433, 1, 0, 0, 0, 8435, 923, 1, 0, 0, 0, 8436, 8453, 5, 517, 0, 0, 8437, 8438, 5, 102, 0, 0, 8438, 8443, 3, 926, 463, 0, 8439, 8440, 5, 82, 0, 0, 8440, 8442, 3, 926, 463, 0, 8441, 8439, 1, 0, 0, 0, 8442, 8445, 1, 0, 0, 0, 8443, 8441, 1, 0, 0, 0, 8443, 8444, 1, 0, 0, 0, 8444, 8446, 1, 0, 0, 0, 8445, 8443, 1, 0, 0, 0, 8446, 8450, 5, 93, 0, 0, 8447, 8449, 3, 846, 423, 0, 8448, 8447, 1, 0, 0, 0, 8449, 8452, 1, 0, 0, 0, 8450, 8448, 1, 0, 0, 0, 8450, 8451, 1, 0, 0, 0, 8451, 8454, 1, 0, 0, 0, 8452, 8450, 1, 0, 0, 0, 8453, 8437, 1, 0, 0, 0, 8454, 8455, 1, 0, 0, 0, 8455, 8453, 1, 0, 0, 0, 8455, 8456, 1, 0, 0, 0, 8456, 925, 1, 0, 0, 0, 8457, 8461, 3, 928, 464, 0, 8458, 8459, 5, 511, 0, 0, 8459, 8461, 3, 808, 404, 0, 8460, 8457, 1, 0, 0, 0, 8460, 8458, 1, 0, 0, 0, 8461, 927, 1, 0, 0, 0, 8462, 8465, 3, 818, 409, 0, 8463, 8465, 3, 828, 414, 0, 8464, 8462, 1, 0, 0, 0, 8464, 8463, 1, 0, 0, 0, 8465, 929, 1, 0, 0, 0, 8466, 8468, 3, 756, 378, 0, 8467, 8466, 1, 0, 0, 0, 8467, 8468, 1, 0, 0, 0, 8468, 8470, 1, 0, 0, 0, 8469, 8471, 3, 580, 290, 0, 8470, 8469, 1, 0, 0, 0, 8470, 8471, 1, 0, 0, 0, 8471, 8473, 1, 0, 0, 0, 8472, 8474, 3, 610, 305, 0, 8473, 8472, 1, 0, 0, 0, 8473, 8474, 1, 0, 0, 0, 8474, 8476, 1, 0, 0, 0, 8475, 8477, 3, 638, 319, 0, 8476, 8475, 1, 0, 0, 0, 8476, 8477, 1, 0, 0, 0, 8477, 8479, 1, 0, 0, 0, 8478, 8480, 3, 600, 300, 0, 8479, 8478, 1, 0, 0, 0, 8479, 8480, 1, 0, 0, 0, 8480, 8483, 1, 0, 0, 0, 8481, 8482, 5, 67, 0, 0, 8482, 8484, 3, 674, 337, 0, 8483, 8481, 1, 0, 0, 0, 8483, 8484, 1, 0, 0, 0, 8484, 8486, 1, 0, 0, 0, 8485, 8487, 3, 702, 351, 0, 8486, 8485, 1, 0, 0, 0, 8486, 8487, 1, 0, 0, 0, 8487, 931, 1, 0, 0, 0, 1187, 935, 942, 1062, 1064, 1073, 1078, 1084, 1119, 1129, 1135, 1140, 1147, 1152, 1159, 1170, 1178, 1182, 1194, 1200, 1206, 1210, 1215, 1219, 1232, 1242, 1244, 1250, 1255, 1268, 1271, 1276, 1281, 1292, 1296, 1308, 1312, 1315, 1319, 1331, 1349, 1356, 1364, 1369, 1376, 1384, 1390, 1398, 1406, 1410, 1424, 1429, 1434, 1446, 1452, 1464, 1469, 1479, 1485, 1490, 1498, 1503, 1510, 1515, 1520, 1530, 1535, 1540, 1547, 1551, 1565, 1571, 1577, 1582, 1589, 1601, 1609, 1617, 1633, 1642, 1651, 1660, 1664, 1676, 1684, 1694, 1714, 1719, 1722, 1729, 1732, 1736, 1740, 1743, 1748, 1753, 1757, 1766, 1772, 1776, 1785, 1788, 1794, 1803, 1815, 1819, 1823, 1828, 1831, 1837, 1839, 1841, 1845, 1851, 1855, 1860, 1865, 1869, 1872, 1879, 1892, 1905, 1929, 1939, 1946, 1951, 1955, 1962, 1967, 1970, 1972, 1977, 1981, 1985, 1989, 1994, 1997, 2001, 2004, 2008, 2016, 2021, 2024, 2028, 2034, 2043, 2047, 2053, 2055, 2064, 2069, 2081, 2086, 2090, 2094, 2099, 2103, 2106, 2109, 2112, 2115, 2118, 2123, 2126, 2129, 2132, 2135, 2138, 2144, 2148, 2151, 2154, 2157, 2160, 2162, 2169, 2177, 2187, 2192, 2202, 2205, 2210, 2215, 2220, 2223, 2228, 2237, 2239, 2243, 2246, 2250, 2255, 2260, 2264, 2267, 2271, 2274, 2279, 2282, 2287, 2290, 2294, 2297, 2300, 2305, 2308, 2316, 2328, 2332, 2339, 2344, 2347, 2350, 2353, 2358, 2369, 2375, 2379, 2382, 2385, 2390, 2397, 2400, 2404, 2412, 2417, 2420, 2423, 2430, 2435, 2444, 2447, 2450, 2455, 2458, 2470, 2480, 2497, 2501, 2505, 2507, 2524, 2526, 2542, 2553, 2556, 2559, 2568, 2577, 2593, 2596, 2599, 2607, 2611, 2618, 2627, 2631, 2637, 2641, 2644, 2647, 2650, 2653, 2659, 2663, 2668, 2672, 2675, 2678, 2681, 2686, 2692, 2696, 2700, 2704, 2710, 2712, 2717, 2723, 2729, 2733, 2748, 2753, 2756, 2758, 2761, 2765, 2769, 2772, 2775, 2783, 2789, 2791, 2797, 2802, 2807, 2811, 2818, 2820, 2831, 2870, 2880, 2882, 2885, 2889, 2893, 2903, 2905, 2911, 2913, 2922, 2934, 2948, 2953, 2956, 2963, 2968, 2976, 2978, 2984, 2989, 2993, 2998, 3004, 3011, 3017, 3019, 3028, 3034, 3042, 3048, 3053, 3058, 3066, 3081, 3083, 3087, 3091, 3094, 3097, 3106, 3109, 3112, 3118, 3124, 3128, 3140, 3146, 3149, 3154, 3158, 3165, 3175, 3177, 3201, 3213, 3218, 3220, 3224, 3227, 3230, 3240, 3243, 3253, 3258, 3263, 3266, 3269, 3277, 3283, 3290, 3298, 3301, 3312, 3316, 3322, 3329, 3332, 3341, 3355, 3358, 3372, 3383, 3386, 3398, 3403, 3416, 3421, 3434, 3443, 3446, 3449, 3456, 3459, 3471, 3477, 3479, 3487, 3495, 3503, 3515, 3520, 3531, 3542, 3550, 3558, 3565, 3572, 3574, 3577, 3582, 3587, 3606, 3615, 3618, 3645, 3654, 3657, 3661, 3665, 3669, 3676, 3680, 3684, 3688, 3692, 3697, 3701, 3706, 3712, 3717, 3724, 3728, 3734, 3738, 3743, 3751, 3757, 3762, 3769, 3774, 3778, 3783, 3789, 3796, 3801, 3808, 3813, 3820, 3824, 3832, 3836, 3838, 3841, 3846, 3856, 3871, 3874, 3882, 3889, 3894, 3900, 3904, 3911, 3916, 3919, 3922, 3926, 3935, 3953, 3956, 3988, 3993, 3999, 4019, 4024, 4030, 4033, 4037, 4041, 4047, 4050, 4054, 4058, 4063, 4066, 4069, 4072, 4085, 4091, 4099, 4106, 4111, 4114, 4121, 4124, 4132, 4135, 4140, 4147, 4150, 4170, 4182, 4185, 4191, 4196, 4205, 4213, 4218, 4224, 4231, 4239, 4242, 4253, 4255, 4269, 4275, 4283, 4285, 4291, 4295, 4298, 4301, 4306, 4311, 4315, 4318, 4321, 4324, 4327, 4335, 4346, 4349, 4352, 4357, 4360, 4364, 4368, 4374, 4382, 4385, 4398, 4403, 4405, 4410, 4417, 4424, 4433, 4441, 4449, 4456, 4464, 4471, 4479, 4483, 4487, 4489, 4495, 4500, 4504, 4511, 4516, 4521, 4526, 4528, 4538, 4548, 4564, 4582, 4594, 4601, 4616, 4621, 4624, 4629, 4634, 4639, 4642, 4645, 4650, 4657, 4661, 4666, 4673, 4677, 4683, 4692, 4701, 4713, 4715, 4728, 4734, 4738, 4740, 4747, 4760, 4767, 4769, 4785, 4789, 4793, 4798, 4803, 4808, 4813, 4816, 4828, 4881, 4890, 4894, 4903, 4907, 4916, 4920, 4925, 4928, 4932, 4937, 4939, 4948, 4953, 4964, 4968, 4982, 4990, 5028, 5030, 5049, 5052, 5079, 5083, 5087, 5091, 5095, 5098, 5113, 5120, 5134, 5147, 5172, 5191, 5206, 5222, 5229, 5240, 5243, 5262, 5265, 5278, 5282, 5302, 5314, 5318, 5340, 5344, 5354, 5358, 5364, 5368, 5372, 5376, 5383, 5388, 5399, 5403, 5406, 5411, 5417, 5428, 5432, 5435, 5439, 5443, 5446, 5456, 5459, 5463, 5468, 5474, 5477, 5482, 5485, 5492, 5494, 5500, 5504, 5513, 5518, 5520, 5530, 5533, 5538, 5546, 5549, 5554, 5556, 5558, 5564, 5581, 5587, 5600, 5606, 5610, 5615, 5645, 5660, 5665, 5669, 5682, 5686, 5688, 5697, 5703, 5705, 5709, 5712, 5715, 5718, 5721, 5723, 5726, 5730, 5738, 5743, 5746, 5752, 5756, 5760, 5765, 5767, 5771, 5775, 5782, 5788, 5792, 5794, 5796, 5809, 5817, 5825, 5836, 5845, 5850, 5854, 5858, 5865, 5868, 5870, 5878, 5882, 5885, 5892, 5899, 5904, 5911, 5914, 5916, 5919, 5925, 5930, 5934, 5941, 5951, 5958, 5961, 5964, 5968, 5979, 5982, 5985, 5988, 5991, 5998, 6001, 6004, 6011, 6023, 6030, 6032, 6037, 6042, 6044, 6050, 6057, 6062, 6067, 6071, 6075, 6079, 6081, 6085, 6089, 6092, 6095, 6097, 6107, 6109, 6114, 6118, 6123, 6127, 6134, 6139, 6143, 6146, 6152, 6155, 6174, 6181, 6185, 6188, 6192, 6196, 6199, 6202, 6207, 6216, 6223, 6227, 6231, 6235, 6238, 6240, 6245, 6249, 6254, 6260, 6267, 6272, 6277, 6286, 6293, 6301, 6312, 6317, 6321, 6324, 6328, 6333, 6337, 6342, 6350, 6361, 6366, 6370, 6373, 6376, 6378, 6381, 6384, 6387, 6391, 6395, 6399, 6401, 6410, 6415, 6421, 6425, 6427, 6434, 6439, 6445, 6447, 6451, 6458, 6463, 6466, 6472, 6476, 6482, 6491, 6497, 6499, 6504, 6507, 6516, 6523, 6525, 6532, 6537, 6540, 6550, 6561, 6566, 6570, 6578, 6588, 6595, 6601, 6612, 6618, 6628, 6637, 6641, 6644, 6646, 6648, 6652, 6660, 6663, 6668, 6673, 6680, 6682, 6688, 6692, 6695, 6700, 6703, 6705, 6711, 6720, 6726, 6729, 6737, 6740, 6744, 6750, 6752, 6755, 6759, 6764, 6771, 6778, 6780, 6786, 6788, 6793, 6795, 6799, 6808, 6812, 6820, 6822, 6836, 6839, 6847, 6856, 6862, 6867, 6875, 6877, 6882, 6886, 6891, 6896, 6902, 6918, 6920, 6929, 6944, 6949, 6952, 6958, 6963, 6976, 6981, 6985, 6992, 7011, 7023, 7028, 7036, 7038, 7040, 7049, 7052, 7057, 7062, 7065, 7076, 7084, 7089, 7091, 7094, 7098, 7109, 7130, 7138, 7151, 7161, 7167, 7173, 7176, 7179, 7205, 7207, 7228, 7238, 7251, 7256, 7260, 7262, 7274, 7281, 7287, 7293, 7297, 7308, 7318, 7322, 7327, 7330, 7333, 7342, 7353, 7355, 7359, 7364, 7373, 7378, 7386, 7396, 7404, 7408, 7411, 7418, 7426, 7430, 7437, 7445, 7447, 7456, 7459, 7471, 7480, 7487, 7496, 7506, 7511, 7515, 7517, 7520, 7525, 7530, 7538, 7546, 7549, 7556, 7564, 7572, 7580, 7597, 7604, 7612, 7629, 7635, 7641, 7649, 7655, 7660, 7668, 7673, 7676, 7685, 7692, 7697, 7701, 7706, 7712, 7717, 7725, 7780, 7787, 7793, 7795, 7797, 7799, 7805, 7809, 7813, 7824, 7827, 7831, 7835, 7839, 7842, 7845, 7848, 7857, 7862, 7866, 7899, 7909, 7913, 7919, 7924, 7933, 7941, 7952, 7960, 7969, 7978, 7983, 7987, 7997, 8002, 8010, 8015, 8018, 8025, 8031, 8039, 8047, 8050, 8057, 8059, 8062, 8068, 8077, 8081, 8095, 8098, 8100, 8106, 8116, 8118, 8120, 8128, 8131, 8134, 8144, 8152, 8158, 8164, 8171, 8175, 8179, 8182, 8185, 8191, 8198, 8201, 8209, 8211, 8220, 8225, 8227, 8234, 8240, 8243, 8255, 8262, 8264, 8268, 8274, 8279, 8283, 8286, 8289, 8298, 8301, 8305, 8309, 8311, 8314, 8317, 8323, 8330, 8337, 8343, 8345, 8349, 8354, 8372, 8377, 8379, 8388, 8395, 8399, 8411, 8414, 8427, 8430, 8434, 8443, 8450, 8455, 8460, 8464, 8467, 8470, 8473, 8476, 8479, 8483, 8486] \ No newline at end of file +[4, 1, 590, 8505, 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, 1, 0, 5, 0, 938, 8, 0, 10, 0, 12, 0, 941, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 947, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1067, 8, 2, 3, 2, 1069, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1078, 8, 4, 1, 4, 5, 4, 1081, 8, 4, 10, 4, 12, 4, 1084, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1089, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1124, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1134, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1140, 8, 7, 1, 7, 5, 7, 1143, 8, 7, 10, 7, 12, 7, 1146, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1152, 8, 8, 1, 8, 5, 8, 1155, 8, 8, 10, 8, 12, 8, 1158, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1164, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1175, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1181, 8, 11, 10, 11, 12, 11, 1184, 9, 11, 1, 11, 3, 11, 1187, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1199, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1205, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1211, 8, 12, 1, 12, 1, 12, 3, 12, 1215, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1220, 8, 12, 1, 12, 1, 12, 3, 12, 1224, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1237, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1247, 8, 12, 3, 12, 1249, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1255, 8, 13, 1, 13, 5, 13, 1258, 8, 13, 10, 13, 12, 13, 1261, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1273, 8, 15, 1, 15, 3, 15, 1276, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1281, 8, 15, 1, 15, 5, 15, 1284, 8, 15, 10, 15, 12, 15, 1287, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1297, 8, 17, 1, 18, 1, 18, 3, 18, 1301, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1313, 8, 19, 1, 20, 1, 20, 3, 20, 1317, 8, 20, 1, 20, 3, 20, 1320, 8, 20, 1, 20, 1, 20, 3, 20, 1324, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1336, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 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, 1354, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1359, 8, 22, 10, 22, 12, 22, 1362, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1367, 8, 23, 10, 23, 12, 23, 1370, 9, 23, 1, 24, 1, 24, 3, 24, 1374, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1381, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1389, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1395, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1403, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1411, 8, 28, 1, 29, 1, 29, 3, 29, 1415, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1429, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1434, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1439, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1451, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1457, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1469, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1474, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1484, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1490, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1495, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1503, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1508, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1515, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1520, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1525, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1535, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1540, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1545, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1552, 8, 38, 1, 38, 1, 38, 3, 38, 1556, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1570, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1576, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1582, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1587, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1592, 8, 39, 10, 39, 12, 39, 1595, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1606, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 1612, 8, 41, 10, 41, 12, 41, 1615, 9, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1622, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1638, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1647, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1654, 8, 46, 10, 46, 12, 46, 1657, 9, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1665, 8, 46, 1, 46, 1, 46, 3, 46, 1669, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1681, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1689, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1699, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 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, 1719, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1724, 8, 46, 1, 46, 3, 46, 1727, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1734, 8, 46, 1, 46, 3, 46, 1737, 8, 46, 1, 46, 1, 46, 3, 46, 1741, 8, 46, 1, 46, 1, 46, 3, 46, 1745, 8, 46, 1, 46, 3, 46, 1748, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1753, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1758, 8, 46, 1, 46, 1, 46, 3, 46, 1762, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1771, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1777, 8, 46, 1, 46, 1, 46, 3, 46, 1781, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1790, 8, 46, 1, 46, 3, 46, 1793, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1799, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1808, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 4, 46, 1818, 8, 46, 11, 46, 12, 46, 1819, 1, 46, 1, 46, 3, 46, 1824, 8, 46, 1, 46, 1, 46, 3, 46, 1828, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1833, 8, 46, 1, 46, 3, 46, 1836, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1842, 8, 46, 4, 46, 1844, 8, 46, 11, 46, 12, 46, 1845, 1, 46, 1, 46, 3, 46, 1850, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1856, 8, 46, 1, 46, 1, 46, 3, 46, 1860, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1865, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1870, 8, 46, 1, 46, 1, 46, 3, 46, 1874, 8, 46, 1, 46, 3, 46, 1877, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1884, 8, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1895, 8, 50, 10, 50, 12, 50, 1898, 9, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1910, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1934, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1942, 8, 54, 10, 54, 12, 54, 1945, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1951, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1956, 8, 55, 1, 55, 1, 55, 3, 55, 1960, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1967, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1972, 8, 55, 1, 55, 3, 55, 1975, 8, 55, 3, 55, 1977, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1982, 8, 56, 1, 57, 1, 57, 3, 57, 1986, 8, 57, 1, 57, 1, 57, 3, 57, 1990, 8, 57, 1, 57, 1, 57, 3, 57, 1994, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1999, 8, 57, 1, 57, 3, 57, 2002, 8, 57, 1, 57, 1, 57, 3, 57, 2006, 8, 57, 1, 57, 3, 57, 2009, 8, 57, 1, 57, 1, 57, 3, 57, 2013, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2021, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2026, 8, 57, 1, 57, 3, 57, 2029, 8, 57, 1, 57, 1, 57, 3, 57, 2033, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2039, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2048, 8, 58, 1, 58, 1, 58, 3, 58, 2052, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2058, 8, 58, 10, 58, 12, 58, 2061, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2067, 8, 58, 10, 58, 12, 58, 2070, 9, 58, 1, 58, 1, 58, 3, 58, 2074, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2084, 8, 59, 10, 59, 12, 59, 2087, 9, 59, 1, 59, 1, 59, 3, 59, 2091, 8, 59, 1, 60, 1, 60, 3, 60, 2095, 8, 60, 1, 60, 1, 60, 3, 60, 2099, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2104, 8, 60, 1, 60, 1, 60, 3, 60, 2108, 8, 60, 1, 60, 3, 60, 2111, 8, 60, 1, 60, 3, 60, 2114, 8, 60, 1, 60, 3, 60, 2117, 8, 60, 1, 60, 3, 60, 2120, 8, 60, 1, 60, 3, 60, 2123, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2128, 8, 60, 1, 60, 3, 60, 2131, 8, 60, 1, 60, 3, 60, 2134, 8, 60, 1, 60, 3, 60, 2137, 8, 60, 1, 60, 3, 60, 2140, 8, 60, 1, 60, 3, 60, 2143, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2149, 8, 60, 1, 60, 1, 60, 3, 60, 2153, 8, 60, 1, 60, 3, 60, 2156, 8, 60, 1, 60, 3, 60, 2159, 8, 60, 1, 60, 3, 60, 2162, 8, 60, 1, 60, 3, 60, 2165, 8, 60, 3, 60, 2167, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2174, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2180, 8, 62, 10, 62, 12, 62, 2183, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 5, 63, 2190, 8, 63, 10, 63, 12, 63, 2193, 9, 63, 1, 64, 1, 64, 3, 64, 2197, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 2205, 8, 64, 10, 64, 12, 64, 2208, 9, 64, 3, 64, 2210, 8, 64, 1, 65, 1, 65, 1, 65, 3, 65, 2215, 8, 65, 1, 65, 5, 65, 2218, 8, 65, 10, 65, 12, 65, 2221, 9, 65, 1, 65, 1, 65, 3, 65, 2225, 8, 65, 1, 65, 3, 65, 2228, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2233, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2242, 8, 66, 3, 66, 2244, 8, 66, 1, 66, 1, 66, 3, 66, 2248, 8, 66, 1, 66, 3, 66, 2251, 8, 66, 1, 66, 1, 66, 3, 66, 2255, 8, 66, 1, 66, 5, 66, 2258, 8, 66, 10, 66, 12, 66, 2261, 9, 66, 1, 67, 1, 67, 3, 67, 2265, 8, 67, 1, 67, 1, 67, 3, 67, 2269, 8, 67, 1, 67, 3, 67, 2272, 8, 67, 1, 67, 1, 67, 3, 67, 2276, 8, 67, 1, 68, 3, 68, 2279, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2284, 8, 68, 1, 68, 3, 68, 2287, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2292, 8, 68, 1, 68, 3, 68, 2295, 8, 68, 1, 68, 1, 68, 3, 68, 2299, 8, 68, 1, 68, 3, 68, 2302, 8, 68, 1, 68, 3, 68, 2305, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2310, 8, 68, 1, 68, 3, 68, 2313, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2321, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 4, 68, 2331, 8, 68, 11, 68, 12, 68, 2332, 1, 68, 1, 68, 3, 68, 2337, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2344, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2349, 8, 68, 1, 68, 3, 68, 2352, 8, 68, 1, 68, 3, 68, 2355, 8, 68, 1, 68, 3, 68, 2358, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2363, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2372, 8, 71, 10, 71, 12, 71, 2375, 9, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2380, 8, 71, 1, 71, 1, 71, 3, 71, 2384, 8, 71, 1, 71, 3, 71, 2387, 8, 71, 1, 71, 3, 71, 2390, 8, 71, 1, 71, 5, 71, 2393, 8, 71, 10, 71, 12, 71, 2396, 9, 71, 1, 71, 1, 71, 5, 71, 2400, 8, 71, 10, 71, 12, 71, 2403, 9, 71, 3, 71, 2405, 8, 71, 1, 71, 1, 71, 3, 71, 2409, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2415, 8, 71, 10, 71, 12, 71, 2418, 9, 71, 1, 71, 1, 71, 3, 71, 2422, 8, 71, 1, 71, 3, 71, 2425, 8, 71, 1, 71, 3, 71, 2428, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2435, 8, 71, 1, 71, 5, 71, 2438, 8, 71, 10, 71, 12, 71, 2441, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2449, 8, 71, 1, 71, 3, 71, 2452, 8, 71, 1, 71, 3, 71, 2455, 8, 71, 1, 71, 5, 71, 2458, 8, 71, 10, 71, 12, 71, 2461, 9, 71, 3, 71, 2463, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2473, 8, 73, 10, 73, 12, 73, 2476, 9, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 5, 74, 2483, 8, 74, 10, 74, 12, 74, 2486, 9, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2502, 8, 77, 1, 78, 1, 78, 3, 78, 2506, 8, 78, 1, 78, 1, 78, 3, 78, 2510, 8, 78, 3, 78, 2512, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2529, 8, 81, 3, 81, 2531, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2545, 8, 83, 10, 83, 12, 83, 2548, 9, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2558, 8, 84, 1, 84, 3, 84, 2561, 8, 84, 1, 84, 3, 84, 2564, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2573, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2582, 8, 87, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 3, 91, 2598, 8, 91, 1, 91, 3, 91, 2601, 8, 91, 1, 91, 3, 91, 2604, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 5, 91, 2610, 8, 91, 10, 91, 12, 91, 2613, 9, 91, 1, 91, 3, 91, 2616, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 2623, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 3, 93, 2632, 8, 93, 1, 93, 1, 93, 3, 93, 2636, 8, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2642, 8, 93, 1, 94, 1, 94, 3, 94, 2646, 8, 94, 1, 94, 3, 94, 2649, 8, 94, 1, 94, 3, 94, 2652, 8, 94, 1, 94, 3, 94, 2655, 8, 94, 1, 94, 3, 94, 2658, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2664, 8, 95, 1, 96, 1, 96, 3, 96, 2668, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2673, 8, 96, 1, 96, 1, 96, 3, 96, 2677, 8, 96, 1, 96, 3, 96, 2680, 8, 96, 1, 96, 3, 96, 2683, 8, 96, 1, 96, 3, 96, 2686, 8, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2691, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2697, 8, 97, 1, 97, 1, 97, 3, 97, 2701, 8, 97, 1, 98, 1, 98, 3, 98, 2705, 8, 98, 1, 98, 1, 98, 3, 98, 2709, 8, 98, 1, 98, 1, 98, 4, 98, 2713, 8, 98, 11, 98, 12, 98, 2714, 3, 98, 2717, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 2722, 8, 99, 1, 99, 1, 99, 4, 99, 2726, 8, 99, 11, 99, 12, 99, 2727, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2734, 8, 100, 1, 100, 1, 100, 3, 100, 2738, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2753, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2758, 8, 100, 1, 100, 3, 100, 2761, 8, 100, 3, 100, 2763, 8, 100, 1, 101, 3, 101, 2766, 8, 101, 1, 101, 1, 101, 3, 101, 2770, 8, 101, 1, 102, 1, 102, 3, 102, 2774, 8, 102, 1, 102, 3, 102, 2777, 8, 102, 1, 102, 3, 102, 2780, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2788, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2794, 8, 102, 3, 102, 2796, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2802, 8, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2807, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2812, 8, 104, 1, 104, 1, 104, 3, 104, 2816, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 2823, 8, 104, 10, 104, 12, 104, 2826, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 2834, 8, 105, 10, 105, 12, 105, 2837, 9, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 2875, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 4, 107, 2883, 8, 107, 11, 107, 12, 107, 2884, 3, 107, 2887, 8, 107, 1, 107, 3, 107, 2890, 8, 107, 1, 108, 1, 108, 3, 108, 2894, 8, 108, 1, 108, 1, 108, 3, 108, 2898, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 4, 109, 2906, 8, 109, 11, 109, 12, 109, 2907, 3, 109, 2910, 8, 109, 1, 109, 1, 109, 4, 109, 2914, 8, 109, 11, 109, 12, 109, 2915, 3, 109, 2918, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2925, 8, 110, 10, 110, 12, 110, 2928, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 2937, 8, 111, 10, 111, 12, 111, 2940, 9, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2953, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2958, 8, 114, 1, 114, 3, 114, 2961, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2968, 8, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2973, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2981, 8, 116, 3, 116, 2983, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2989, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 2994, 8, 117, 1, 117, 1, 117, 3, 117, 2998, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3003, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3009, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3016, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3022, 8, 117, 3, 117, 3024, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3033, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3039, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3047, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3053, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3058, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3063, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3071, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3086, 8, 121, 3, 121, 3088, 8, 121, 1, 121, 1, 121, 3, 121, 3092, 8, 121, 1, 121, 1, 121, 3, 121, 3096, 8, 121, 1, 121, 3, 121, 3099, 8, 121, 1, 121, 3, 121, 3102, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3111, 8, 122, 1, 122, 3, 122, 3114, 8, 122, 1, 122, 3, 122, 3117, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3123, 8, 123, 1, 123, 1, 123, 5, 123, 3127, 8, 123, 10, 123, 12, 123, 3130, 9, 123, 1, 123, 3, 123, 3133, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3145, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3151, 8, 123, 1, 124, 3, 124, 3154, 8, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3159, 8, 124, 1, 124, 1, 124, 3, 124, 3163, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3170, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3180, 8, 124, 3, 124, 3182, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3206, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3218, 8, 128, 1, 128, 4, 128, 3221, 8, 128, 11, 128, 12, 128, 3222, 3, 128, 3225, 8, 128, 1, 128, 1, 128, 3, 128, 3229, 8, 128, 1, 128, 3, 128, 3232, 8, 128, 1, 128, 3, 128, 3235, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3245, 8, 128, 1, 128, 3, 128, 3248, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3258, 8, 128, 1, 128, 5, 128, 3261, 8, 128, 10, 128, 12, 128, 3264, 9, 128, 1, 128, 1, 128, 3, 128, 3268, 8, 128, 1, 128, 3, 128, 3271, 8, 128, 1, 128, 3, 128, 3274, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3282, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3288, 8, 129, 1, 130, 1, 130, 1, 130, 5, 130, 3293, 8, 130, 10, 130, 12, 130, 3296, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3303, 8, 131, 1, 131, 3, 131, 3306, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3317, 8, 133, 1, 134, 1, 134, 3, 134, 3321, 8, 134, 1, 134, 1, 134, 5, 134, 3325, 8, 134, 10, 134, 12, 134, 3328, 9, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3334, 8, 135, 1, 136, 3, 136, 3337, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3346, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3358, 8, 137, 10, 137, 12, 137, 3361, 9, 137, 3, 137, 3363, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3375, 8, 138, 10, 138, 12, 138, 3378, 9, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3388, 8, 139, 1, 139, 3, 139, 3391, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3401, 8, 140, 10, 140, 12, 140, 3404, 9, 140, 1, 141, 1, 141, 3, 141, 3408, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3419, 8, 141, 10, 141, 12, 141, 3422, 9, 141, 1, 141, 1, 141, 3, 141, 3426, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3439, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 5, 141, 3446, 8, 141, 10, 141, 12, 141, 3449, 9, 141, 3, 141, 3451, 8, 141, 1, 141, 3, 141, 3454, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3461, 8, 141, 1, 141, 3, 141, 3464, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3476, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3482, 8, 141, 3, 141, 3484, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3490, 8, 142, 10, 142, 12, 142, 3493, 9, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 3, 143, 3500, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3508, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3520, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3525, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3536, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3547, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3555, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3561, 8, 148, 10, 148, 12, 148, 3564, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3570, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3577, 8, 149, 3, 149, 3579, 8, 149, 1, 149, 3, 149, 3582, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3587, 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3592, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3609, 8, 151, 10, 151, 12, 151, 3612, 9, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3618, 8, 151, 10, 151, 12, 151, 3621, 9, 151, 3, 151, 3623, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3650, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3659, 8, 154, 1, 154, 3, 154, 3662, 8, 154, 1, 154, 1, 154, 3, 154, 3666, 8, 154, 1, 154, 1, 154, 3, 154, 3670, 8, 154, 1, 154, 1, 154, 3, 154, 3674, 8, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3679, 8, 154, 10, 154, 12, 154, 3682, 9, 154, 1, 154, 3, 154, 3685, 8, 154, 1, 154, 1, 154, 3, 154, 3689, 8, 154, 1, 154, 1, 154, 3, 154, 3693, 8, 154, 1, 154, 1, 154, 3, 154, 3697, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3702, 8, 154, 1, 154, 1, 154, 3, 154, 3706, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3711, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3717, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3722, 8, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3727, 8, 154, 10, 154, 12, 154, 3730, 9, 154, 1, 154, 3, 154, 3733, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3739, 8, 154, 1, 154, 1, 154, 3, 154, 3743, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3748, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3756, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3762, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3767, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3774, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3779, 8, 154, 1, 154, 1, 154, 3, 154, 3783, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3788, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3794, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3801, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3806, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3813, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3818, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3825, 8, 154, 1, 154, 1, 154, 3, 154, 3829, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 3835, 8, 154, 10, 154, 12, 154, 3838, 9, 154, 1, 154, 3, 154, 3841, 8, 154, 3, 154, 3843, 8, 154, 1, 155, 3, 155, 3846, 8, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3851, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 3861, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3876, 8, 156, 1, 156, 3, 156, 3879, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3887, 8, 156, 1, 157, 1, 157, 1, 157, 5, 157, 3892, 8, 157, 10, 157, 12, 157, 3895, 9, 157, 1, 158, 1, 158, 3, 158, 3899, 8, 158, 1, 159, 1, 159, 4, 159, 3903, 8, 159, 11, 159, 12, 159, 3904, 1, 160, 1, 160, 3, 160, 3909, 8, 160, 1, 160, 1, 160, 1, 160, 5, 160, 3914, 8, 160, 10, 160, 12, 160, 3917, 9, 160, 1, 160, 1, 160, 3, 160, 3921, 8, 160, 1, 160, 3, 160, 3924, 8, 160, 1, 161, 3, 161, 3927, 8, 161, 1, 161, 1, 161, 3, 161, 3931, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3940, 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, 1, 162, 1, 162, 3, 162, 3958, 8, 162, 1, 162, 3, 162, 3961, 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, 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, 1, 162, 1, 162, 3, 162, 3993, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 3998, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4004, 8, 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, 4024, 8, 163, 1, 163, 1, 163, 1, 163, 3, 163, 4029, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 3, 165, 4035, 8, 165, 1, 165, 3, 165, 4038, 8, 165, 1, 165, 1, 165, 3, 165, 4042, 8, 165, 1, 165, 1, 165, 3, 165, 4046, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4052, 8, 165, 1, 165, 3, 165, 4055, 8, 165, 1, 165, 1, 165, 3, 165, 4059, 8, 165, 1, 165, 1, 165, 3, 165, 4063, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4068, 8, 165, 1, 165, 3, 165, 4071, 8, 165, 1, 165, 3, 165, 4074, 8, 165, 1, 165, 3, 165, 4077, 8, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 4090, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4096, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4104, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 4109, 8, 169, 10, 169, 12, 169, 4112, 9, 169, 1, 169, 1, 169, 3, 169, 4116, 8, 169, 1, 169, 3, 169, 4119, 8, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4124, 8, 169, 10, 169, 12, 169, 4127, 9, 169, 3, 169, 4129, 8, 169, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4137, 8, 171, 1, 171, 3, 171, 4140, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 4145, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4152, 8, 172, 1, 172, 3, 172, 4155, 8, 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, 5, 172, 4173, 8, 172, 10, 172, 12, 172, 4176, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4187, 8, 172, 1, 173, 3, 173, 4190, 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 4196, 8, 173, 1, 173, 5, 173, 4199, 8, 173, 10, 173, 12, 173, 4202, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 5, 174, 4208, 8, 174, 10, 174, 12, 174, 4211, 9, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4218, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4223, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4229, 8, 175, 1, 175, 1, 175, 1, 175, 5, 175, 4234, 8, 175, 10, 175, 12, 175, 4237, 9, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 4244, 8, 175, 1, 175, 3, 175, 4247, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4258, 8, 176, 10, 176, 12, 176, 4261, 9, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4274, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4280, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4288, 8, 177, 3, 177, 4290, 8, 177, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4296, 8, 179, 1, 179, 1, 179, 3, 179, 4300, 8, 179, 1, 179, 3, 179, 4303, 8, 179, 1, 179, 3, 179, 4306, 8, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4311, 8, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4316, 8, 179, 1, 179, 1, 179, 3, 179, 4320, 8, 179, 1, 179, 3, 179, 4323, 8, 179, 1, 179, 3, 179, 4326, 8, 179, 1, 179, 3, 179, 4329, 8, 179, 1, 179, 3, 179, 4332, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 5, 180, 4338, 8, 180, 10, 180, 12, 180, 4341, 9, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4351, 8, 181, 1, 181, 3, 181, 4354, 8, 181, 1, 181, 3, 181, 4357, 8, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4362, 8, 181, 1, 181, 3, 181, 4365, 8, 181, 1, 181, 1, 181, 3, 181, 4369, 8, 181, 1, 182, 1, 182, 3, 182, 4373, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4379, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4385, 8, 182, 10, 182, 12, 182, 4388, 9, 182, 3, 182, 4390, 8, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4401, 8, 182, 10, 182, 12, 182, 4404, 9, 182, 1, 182, 1, 182, 3, 182, 4408, 8, 182, 3, 182, 4410, 8, 182, 1, 182, 4, 182, 4413, 8, 182, 11, 182, 12, 182, 4414, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 4422, 8, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 3, 184, 4429, 8, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4436, 8, 185, 10, 185, 12, 185, 4439, 9, 185, 1, 186, 1, 186, 1, 186, 5, 186, 4444, 8, 186, 10, 186, 12, 186, 4447, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 4454, 8, 187, 1, 188, 1, 188, 1, 188, 5, 188, 4459, 8, 188, 10, 188, 12, 188, 4462, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 4469, 8, 189, 1, 190, 1, 190, 1, 190, 5, 190, 4474, 8, 190, 10, 190, 12, 190, 4477, 9, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4484, 8, 191, 1, 192, 1, 192, 3, 192, 4488, 8, 192, 1, 192, 1, 192, 3, 192, 4492, 8, 192, 3, 192, 4494, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 3, 193, 4500, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4505, 8, 193, 1, 194, 1, 194, 3, 194, 4509, 8, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4516, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4521, 8, 195, 1, 196, 1, 196, 1, 196, 3, 196, 4526, 8, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4531, 8, 196, 3, 196, 4533, 8, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 3, 198, 4543, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4553, 8, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 3, 198, 4569, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 4585, 8, 199, 10, 199, 12, 199, 4588, 9, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4599, 8, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4606, 8, 199, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 4621, 8, 202, 1, 202, 4, 202, 4624, 8, 202, 11, 202, 12, 202, 4625, 1, 202, 3, 202, 4629, 8, 202, 1, 203, 1, 203, 1, 203, 3, 203, 4634, 8, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4639, 8, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4644, 8, 203, 1, 203, 3, 203, 4647, 8, 203, 1, 203, 3, 203, 4650, 8, 203, 1, 204, 1, 204, 1, 204, 3, 204, 4655, 8, 204, 1, 204, 1, 204, 1, 204, 5, 204, 4660, 8, 204, 10, 204, 12, 204, 4663, 9, 204, 1, 204, 3, 204, 4666, 8, 204, 1, 205, 1, 205, 1, 205, 3, 205, 4671, 8, 205, 1, 205, 1, 205, 1, 205, 5, 205, 4676, 8, 205, 10, 205, 12, 205, 4679, 9, 205, 1, 205, 3, 205, 4682, 8, 205, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4688, 8, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4697, 8, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 5, 207, 4704, 8, 207, 10, 207, 12, 207, 4707, 9, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 4, 209, 4718, 8, 209, 11, 209, 12, 209, 4719, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4733, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4739, 8, 210, 1, 210, 1, 210, 3, 210, 4743, 8, 210, 3, 210, 4745, 8, 210, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 3, 212, 4752, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4765, 8, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4772, 8, 212, 3, 212, 4774, 8, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 5, 214, 4788, 8, 214, 10, 214, 12, 214, 4791, 9, 214, 1, 214, 3, 214, 4794, 8, 214, 1, 214, 1, 214, 3, 214, 4798, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4803, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4808, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4813, 8, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4818, 8, 214, 1, 214, 3, 214, 4821, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4833, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4886, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4895, 8, 216, 1, 216, 1, 216, 3, 216, 4899, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4908, 8, 216, 1, 216, 1, 216, 3, 216, 4912, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4921, 8, 216, 1, 216, 1, 216, 3, 216, 4925, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4930, 8, 216, 1, 216, 3, 216, 4933, 8, 216, 1, 216, 1, 216, 3, 216, 4937, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4942, 8, 216, 3, 216, 4944, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4953, 8, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4958, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4969, 8, 216, 1, 216, 1, 216, 3, 216, 4973, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4987, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 4995, 8, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 3, 216, 5033, 8, 216, 3, 216, 5035, 8, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 5054, 8, 217, 1, 217, 3, 217, 5057, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5084, 8, 218, 1, 218, 1, 218, 3, 218, 5088, 8, 218, 1, 218, 1, 218, 3, 218, 5092, 8, 218, 1, 218, 1, 218, 3, 218, 5096, 8, 218, 1, 218, 1, 218, 3, 218, 5100, 8, 218, 1, 218, 3, 218, 5103, 8, 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, 5118, 8, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5125, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 5, 220, 5137, 8, 220, 10, 220, 12, 220, 5140, 9, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5152, 8, 221, 1, 222, 1, 222, 1, 222, 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, 3, 223, 5177, 8, 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, 5196, 8, 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, 5211, 8, 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, 5227, 8, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5234, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5245, 8, 224, 1, 224, 3, 224, 5248, 8, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 5, 225, 5265, 8, 225, 10, 225, 12, 225, 5268, 9, 225, 3, 225, 5270, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 5, 226, 5281, 8, 226, 10, 226, 12, 226, 5284, 9, 226, 1, 226, 3, 226, 5287, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5307, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 5, 227, 5317, 8, 227, 10, 227, 12, 227, 5320, 9, 227, 1, 227, 3, 227, 5323, 8, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5345, 8, 227, 1, 228, 1, 228, 3, 228, 5349, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5359, 8, 228, 1, 228, 1, 228, 3, 228, 5363, 8, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5369, 8, 228, 1, 228, 1, 228, 3, 228, 5373, 8, 228, 5, 228, 5375, 8, 228, 10, 228, 12, 228, 5378, 9, 228, 1, 228, 3, 228, 5381, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 5388, 8, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5393, 8, 230, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5404, 8, 233, 1, 234, 1, 234, 3, 234, 5408, 8, 234, 1, 234, 3, 234, 5411, 8, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5416, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5422, 8, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 5433, 8, 234, 1, 234, 1, 234, 3, 234, 5437, 8, 234, 1, 234, 3, 234, 5440, 8, 234, 1, 234, 1, 234, 3, 234, 5444, 8, 234, 1, 234, 1, 234, 3, 234, 5448, 8, 234, 1, 234, 3, 234, 5451, 8, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5461, 8, 236, 1, 236, 3, 236, 5464, 8, 236, 1, 237, 1, 237, 3, 237, 5468, 8, 237, 1, 237, 5, 237, 5471, 8, 237, 10, 237, 12, 237, 5474, 9, 237, 1, 238, 1, 238, 1, 238, 3, 238, 5479, 8, 238, 1, 238, 3, 238, 5482, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5487, 8, 238, 1, 238, 3, 238, 5490, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5497, 8, 238, 3, 238, 5499, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5505, 8, 238, 1, 238, 1, 238, 3, 238, 5509, 8, 238, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5518, 8, 240, 1, 240, 4, 240, 5521, 8, 240, 11, 240, 12, 240, 5522, 3, 240, 5525, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5535, 8, 241, 1, 241, 3, 241, 5538, 8, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5543, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5551, 8, 242, 1, 242, 3, 242, 5554, 8, 242, 1, 242, 4, 242, 5557, 8, 242, 11, 242, 12, 242, 5558, 3, 242, 5561, 8, 242, 3, 242, 5563, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5569, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5586, 8, 246, 1, 246, 1, 246, 5, 246, 5590, 8, 246, 10, 246, 12, 246, 5593, 9, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5605, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5611, 8, 247, 1, 247, 1, 247, 3, 247, 5615, 8, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5620, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5650, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5665, 8, 249, 1, 249, 1, 249, 1, 249, 3, 249, 5670, 8, 249, 1, 250, 1, 250, 3, 250, 5674, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 3, 251, 5687, 8, 251, 1, 251, 1, 251, 3, 251, 5691, 8, 251, 3, 251, 5693, 8, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 5700, 8, 251, 10, 251, 12, 251, 5703, 9, 251, 1, 251, 1, 251, 1, 251, 3, 251, 5708, 8, 251, 3, 251, 5710, 8, 251, 1, 252, 1, 252, 3, 252, 5714, 8, 252, 1, 252, 3, 252, 5717, 8, 252, 1, 252, 3, 252, 5720, 8, 252, 1, 252, 3, 252, 5723, 8, 252, 1, 252, 3, 252, 5726, 8, 252, 3, 252, 5728, 8, 252, 1, 252, 3, 252, 5731, 8, 252, 1, 253, 1, 253, 3, 253, 5735, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 5741, 8, 253, 10, 253, 12, 253, 5744, 9, 253, 1, 253, 1, 253, 3, 253, 5748, 8, 253, 1, 253, 3, 253, 5751, 8, 253, 1, 254, 1, 254, 1, 255, 1, 255, 3, 255, 5757, 8, 255, 1, 255, 1, 255, 3, 255, 5761, 8, 255, 1, 256, 1, 256, 3, 256, 5765, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5770, 8, 256, 3, 256, 5772, 8, 256, 1, 257, 1, 257, 3, 257, 5776, 8, 257, 1, 258, 1, 258, 3, 258, 5780, 8, 258, 1, 259, 1, 259, 1, 259, 5, 259, 5785, 8, 259, 10, 259, 12, 259, 5788, 9, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5793, 8, 260, 1, 260, 1, 260, 3, 260, 5797, 8, 260, 3, 260, 5799, 8, 260, 3, 260, 5801, 8, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 1, 261, 3, 261, 5814, 8, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 5820, 8, 262, 10, 262, 12, 262, 5823, 9, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5830, 8, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 5, 264, 5839, 8, 264, 10, 264, 12, 264, 5842, 9, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5850, 8, 265, 1, 266, 1, 266, 1, 266, 3, 266, 5855, 8, 266, 1, 266, 1, 266, 3, 266, 5859, 8, 266, 1, 266, 1, 266, 3, 266, 5863, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5870, 8, 266, 1, 266, 3, 266, 5873, 8, 266, 3, 266, 5875, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 3, 268, 5883, 8, 268, 1, 268, 1, 268, 3, 268, 5887, 8, 268, 1, 269, 3, 269, 5890, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5897, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5904, 8, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5909, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 5916, 8, 269, 1, 269, 3, 269, 5919, 8, 269, 3, 269, 5921, 8, 269, 1, 269, 3, 269, 5924, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5930, 8, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5935, 8, 270, 1, 270, 1, 270, 3, 270, 5939, 8, 270, 1, 271, 1, 271, 1, 271, 5, 271, 5944, 8, 271, 10, 271, 12, 271, 5947, 9, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 274, 3, 274, 5956, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5963, 8, 274, 1, 274, 3, 274, 5966, 8, 274, 1, 274, 3, 274, 5969, 8, 274, 1, 275, 1, 275, 3, 275, 5973, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 5984, 8, 275, 1, 275, 3, 275, 5987, 8, 275, 1, 275, 3, 275, 5990, 8, 275, 1, 275, 3, 275, 5993, 8, 275, 1, 276, 3, 276, 5996, 8, 276, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6003, 8, 276, 1, 276, 3, 276, 6006, 8, 276, 1, 276, 3, 276, 6009, 8, 276, 1, 277, 1, 277, 1, 277, 5, 277, 6014, 8, 277, 10, 277, 12, 277, 6017, 9, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6028, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 6035, 8, 278, 3, 278, 6037, 8, 278, 1, 279, 1, 279, 1, 279, 3, 279, 6042, 8, 279, 1, 279, 1, 279, 1, 279, 5, 279, 6047, 8, 279, 10, 279, 12, 279, 6050, 9, 279, 1, 279, 1, 279, 1, 279, 3, 279, 6055, 8, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 3, 280, 6062, 8, 280, 1, 281, 1, 281, 1, 281, 3, 281, 6067, 8, 281, 1, 281, 1, 281, 1, 282, 3, 282, 6072, 8, 282, 1, 282, 1, 282, 3, 282, 6076, 8, 282, 1, 282, 1, 282, 3, 282, 6080, 8, 282, 1, 282, 1, 282, 3, 282, 6084, 8, 282, 3, 282, 6086, 8, 282, 1, 283, 1, 283, 3, 283, 6090, 8, 283, 1, 284, 1, 284, 3, 284, 6094, 8, 284, 1, 284, 3, 284, 6097, 8, 284, 1, 284, 3, 284, 6100, 8, 284, 3, 284, 6102, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6112, 8, 284, 3, 284, 6114, 8, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6119, 8, 284, 5, 284, 6121, 8, 284, 10, 284, 12, 284, 6124, 9, 284, 1, 285, 1, 285, 3, 285, 6128, 8, 285, 1, 286, 1, 286, 3, 286, 6132, 8, 286, 1, 286, 1, 286, 1, 286, 5, 286, 6137, 8, 286, 10, 286, 12, 286, 6140, 9, 286, 1, 287, 1, 287, 3, 287, 6144, 8, 287, 1, 287, 1, 287, 3, 287, 6148, 8, 287, 1, 287, 3, 287, 6151, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6157, 8, 287, 1, 287, 3, 287, 6160, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6179, 8, 289, 1, 289, 1, 289, 1, 289, 1, 290, 1, 290, 3, 290, 6186, 8, 290, 1, 290, 1, 290, 3, 290, 6190, 8, 290, 1, 291, 3, 291, 6193, 8, 291, 1, 291, 1, 291, 3, 291, 6197, 8, 291, 1, 291, 1, 291, 3, 291, 6201, 8, 291, 1, 291, 3, 291, 6204, 8, 291, 1, 291, 3, 291, 6207, 8, 291, 1, 292, 1, 292, 1, 292, 3, 292, 6212, 8, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 5, 293, 6219, 8, 293, 10, 293, 12, 293, 6222, 9, 293, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6228, 8, 294, 1, 294, 1, 294, 3, 294, 6232, 8, 294, 1, 295, 1, 295, 3, 295, 6236, 8, 295, 1, 295, 1, 295, 3, 295, 6240, 8, 295, 1, 295, 3, 295, 6243, 8, 295, 3, 295, 6245, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6250, 8, 296, 1, 296, 1, 296, 3, 296, 6254, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6259, 8, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 6265, 8, 297, 1, 298, 1, 298, 1, 298, 1, 298, 1, 298, 3, 298, 6272, 8, 298, 1, 299, 1, 299, 1, 299, 3, 299, 6277, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6282, 8, 300, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 5, 301, 6289, 8, 301, 10, 301, 12, 301, 6292, 9, 301, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6298, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 5, 302, 6304, 8, 302, 10, 302, 12, 302, 6307, 9, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6317, 8, 302, 1, 303, 1, 303, 1, 303, 3, 303, 6322, 8, 303, 1, 303, 1, 303, 3, 303, 6326, 8, 303, 1, 303, 3, 303, 6329, 8, 303, 1, 303, 1, 303, 3, 303, 6333, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6338, 8, 303, 4, 303, 6340, 8, 303, 11, 303, 12, 303, 6341, 1, 303, 1, 303, 1, 303, 3, 303, 6347, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6353, 8, 304, 10, 304, 12, 304, 6356, 9, 304, 1, 305, 1, 305, 1, 305, 1, 306, 1, 306, 1, 306, 5, 306, 6364, 8, 306, 10, 306, 12, 306, 6367, 9, 306, 1, 307, 1, 307, 3, 307, 6371, 8, 307, 1, 307, 1, 307, 3, 307, 6375, 8, 307, 1, 307, 3, 307, 6378, 8, 307, 1, 307, 3, 307, 6381, 8, 307, 3, 307, 6383, 8, 307, 1, 307, 3, 307, 6386, 8, 307, 1, 307, 3, 307, 6389, 8, 307, 1, 307, 3, 307, 6392, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6402, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6407, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6413, 8, 307, 1, 307, 1, 307, 3, 307, 6417, 8, 307, 3, 307, 6419, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6426, 8, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6431, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 5, 307, 6437, 8, 307, 10, 307, 12, 307, 6440, 9, 307, 1, 308, 1, 308, 3, 308, 6444, 8, 308, 1, 308, 1, 308, 3, 308, 6448, 8, 308, 1, 308, 1, 308, 3, 308, 6452, 8, 308, 3, 308, 6454, 8, 308, 1, 309, 3, 309, 6457, 8, 309, 1, 309, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6464, 8, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6469, 8, 310, 1, 310, 3, 310, 6472, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6478, 8, 310, 1, 311, 1, 311, 3, 311, 6482, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6488, 8, 312, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6497, 8, 313, 1, 313, 1, 313, 1, 313, 1, 313, 3, 313, 6503, 8, 313, 3, 313, 6505, 8, 313, 1, 314, 1, 314, 1, 314, 3, 314, 6510, 8, 314, 1, 314, 3, 314, 6513, 8, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 6522, 8, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 6529, 8, 314, 3, 314, 6531, 8, 314, 1, 315, 1, 315, 1, 315, 5, 315, 6536, 8, 315, 10, 315, 12, 315, 6539, 9, 315, 1, 316, 1, 316, 3, 316, 6543, 8, 316, 1, 316, 3, 316, 6546, 8, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6556, 8, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 5, 318, 6565, 8, 318, 10, 318, 12, 318, 6568, 9, 318, 1, 318, 1, 318, 3, 318, 6572, 8, 318, 1, 318, 1, 318, 3, 318, 6576, 8, 318, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 1, 319, 3, 319, 6584, 8, 319, 1, 320, 1, 320, 1, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6594, 8, 321, 1, 322, 1, 322, 1, 322, 5, 322, 6599, 8, 322, 10, 322, 12, 322, 6602, 9, 322, 1, 323, 1, 323, 1, 323, 3, 323, 6607, 8, 323, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 5, 324, 6616, 8, 324, 10, 324, 12, 324, 6619, 9, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6624, 8, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 1, 324, 5, 324, 6632, 8, 324, 10, 324, 12, 324, 6635, 9, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6643, 8, 325, 1, 325, 1, 325, 3, 325, 6647, 8, 325, 1, 325, 4, 325, 6650, 8, 325, 11, 325, 12, 325, 6651, 3, 325, 6654, 8, 325, 1, 325, 1, 325, 3, 325, 6658, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6666, 8, 326, 1, 327, 3, 327, 6669, 8, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6674, 8, 327, 1, 327, 5, 327, 6677, 8, 327, 10, 327, 12, 327, 6680, 9, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6686, 8, 327, 3, 327, 6688, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6694, 8, 327, 1, 328, 1, 328, 3, 328, 6698, 8, 328, 1, 328, 3, 328, 6701, 8, 328, 1, 328, 1, 328, 1, 328, 3, 328, 6706, 8, 328, 1, 328, 3, 328, 6709, 8, 328, 3, 328, 6711, 8, 328, 1, 329, 1, 329, 1, 329, 1, 329, 3, 329, 6717, 8, 329, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6726, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6732, 8, 330, 1, 330, 3, 330, 6735, 8, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 332, 1, 332, 3, 332, 6743, 8, 332, 1, 332, 3, 332, 6746, 8, 332, 1, 333, 1, 333, 3, 333, 6750, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 6756, 8, 333, 3, 333, 6758, 8, 333, 1, 333, 3, 333, 6761, 8, 333, 1, 334, 1, 334, 3, 334, 6765, 8, 334, 1, 334, 1, 334, 1, 334, 3, 334, 6770, 8, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6777, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6784, 8, 335, 3, 335, 6786, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6792, 8, 335, 3, 335, 6794, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 6799, 8, 335, 3, 335, 6801, 8, 335, 1, 336, 1, 336, 3, 336, 6805, 8, 336, 1, 337, 1, 337, 1, 338, 1, 338, 1, 339, 1, 339, 1, 339, 3, 339, 6814, 8, 339, 1, 339, 1, 339, 3, 339, 6818, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 5, 339, 6826, 8, 339, 10, 339, 12, 339, 6829, 9, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6842, 8, 340, 1, 340, 3, 340, 6845, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6853, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 5, 340, 6860, 8, 340, 10, 340, 12, 340, 6863, 9, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6868, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6873, 8, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6881, 8, 340, 3, 340, 6883, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6888, 8, 340, 1, 340, 1, 340, 3, 340, 6892, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6897, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 6902, 8, 340, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6908, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 5, 341, 6924, 8, 341, 10, 341, 12, 341, 6927, 9, 341, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6935, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6950, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6955, 8, 342, 1, 342, 3, 342, 6958, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6964, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6969, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6982, 8, 342, 1, 342, 4, 342, 6985, 8, 342, 11, 342, 12, 342, 6986, 1, 342, 1, 342, 3, 342, 6991, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6998, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7017, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7029, 8, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7034, 8, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 7042, 8, 342, 5, 342, 7044, 8, 342, 10, 342, 12, 342, 7047, 9, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7055, 8, 343, 1, 343, 3, 343, 7058, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7063, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7068, 8, 343, 1, 343, 3, 343, 7071, 8, 343, 1, 343, 1, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 7082, 8, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 7090, 8, 344, 1, 344, 1, 344, 1, 344, 3, 344, 7095, 8, 344, 3, 344, 7097, 8, 344, 1, 344, 3, 344, 7100, 8, 344, 1, 345, 1, 345, 3, 345, 7104, 8, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7115, 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, 3, 346, 7136, 8, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7144, 8, 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, 7157, 8, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7167, 8, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7173, 8, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7179, 8, 346, 1, 346, 3, 346, 7182, 8, 346, 1, 346, 3, 346, 7185, 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, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7211, 8, 346, 3, 346, 7213, 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, 3, 346, 7234, 8, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7244, 8, 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, 7257, 8, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7262, 8, 346, 1, 346, 1, 346, 3, 346, 7266, 8, 346, 3, 346, 7268, 8, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 1, 346, 3, 346, 7280, 8, 346, 1, 347, 1, 347, 1, 347, 5, 347, 7285, 8, 347, 10, 347, 12, 347, 7288, 9, 347, 1, 348, 1, 348, 1, 348, 3, 348, 7293, 8, 348, 1, 349, 1, 349, 1, 350, 1, 350, 3, 350, 7299, 8, 350, 1, 350, 1, 350, 3, 350, 7303, 8, 350, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 5, 352, 7312, 8, 352, 10, 352, 12, 352, 7315, 9, 352, 1, 353, 1, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 3, 354, 7324, 8, 354, 1, 355, 1, 355, 3, 355, 7328, 8, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7333, 8, 355, 1, 355, 3, 355, 7336, 8, 355, 1, 355, 3, 355, 7339, 8, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7348, 8, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7359, 8, 356, 3, 356, 7361, 8, 356, 1, 357, 1, 357, 3, 357, 7365, 8, 357, 1, 357, 1, 357, 1, 357, 3, 357, 7370, 8, 357, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 7379, 8, 358, 1, 359, 1, 359, 1, 359, 3, 359, 7384, 8, 359, 1, 359, 1, 359, 1, 360, 1, 360, 1, 361, 1, 361, 3, 361, 7392, 8, 361, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7402, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7410, 8, 364, 1, 365, 1, 365, 3, 365, 7414, 8, 365, 1, 365, 3, 365, 7417, 8, 365, 1, 366, 1, 366, 1, 366, 5, 366, 7422, 8, 366, 10, 366, 12, 366, 7425, 9, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7432, 8, 367, 1, 368, 1, 368, 3, 368, 7436, 8, 368, 1, 369, 1, 369, 1, 369, 5, 369, 7441, 8, 369, 10, 369, 12, 369, 7444, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7451, 8, 370, 3, 370, 7453, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 5, 371, 7460, 8, 371, 10, 371, 12, 371, 7463, 9, 371, 3, 371, 7465, 8, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7477, 8, 372, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7486, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7493, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7502, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 3, 376, 7512, 8, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7517, 8, 376, 1, 376, 1, 376, 3, 376, 7521, 8, 376, 3, 376, 7523, 8, 376, 1, 376, 3, 376, 7526, 8, 376, 1, 377, 4, 377, 7529, 8, 377, 11, 377, 12, 377, 7530, 1, 378, 5, 378, 7534, 8, 378, 10, 378, 12, 378, 7537, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7542, 8, 379, 10, 379, 12, 379, 7545, 9, 379, 1, 380, 1, 380, 1, 380, 3, 380, 7550, 8, 380, 1, 380, 1, 380, 3, 380, 7554, 8, 380, 3, 380, 7556, 8, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7561, 8, 381, 10, 381, 12, 381, 7564, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7571, 8, 382, 10, 382, 12, 382, 7574, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7579, 8, 383, 10, 383, 12, 383, 7582, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7587, 8, 384, 10, 384, 12, 384, 7590, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7595, 8, 385, 10, 385, 12, 385, 7598, 9, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7614, 8, 392, 1, 393, 1, 393, 1, 393, 5, 393, 7619, 8, 393, 10, 393, 12, 393, 7622, 9, 393, 1, 394, 1, 394, 1, 394, 5, 394, 7627, 8, 394, 10, 394, 12, 394, 7630, 9, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7646, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7652, 8, 401, 1, 402, 1, 402, 1, 402, 1, 402, 3, 402, 7658, 8, 402, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7666, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7672, 8, 405, 1, 406, 1, 406, 1, 406, 3, 406, 7677, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 5, 407, 7683, 8, 407, 10, 407, 12, 407, 7686, 9, 407, 1, 407, 1, 407, 3, 407, 7690, 8, 407, 1, 408, 3, 408, 7693, 8, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7702, 8, 409, 1, 410, 1, 410, 1, 410, 5, 410, 7707, 8, 410, 10, 410, 12, 410, 7710, 9, 410, 1, 411, 1, 411, 3, 411, 7714, 8, 411, 1, 412, 1, 412, 3, 412, 7718, 8, 412, 1, 413, 1, 413, 1, 413, 3, 413, 7723, 8, 413, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7729, 8, 414, 1, 415, 1, 415, 1, 415, 3, 415, 7734, 8, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 7742, 8, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 7797, 8, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 420, 3, 420, 7804, 8, 420, 1, 420, 1, 420, 1, 420, 1, 420, 4, 420, 7810, 8, 420, 11, 420, 12, 420, 7811, 3, 420, 7814, 8, 420, 3, 420, 7816, 8, 420, 1, 420, 1, 420, 5, 420, 7820, 8, 420, 10, 420, 12, 420, 7823, 9, 420, 1, 420, 3, 420, 7826, 8, 420, 1, 420, 1, 420, 3, 420, 7830, 8, 420, 1, 421, 1, 421, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 3, 422, 7841, 8, 422, 1, 422, 3, 422, 7844, 8, 422, 1, 422, 1, 422, 3, 422, 7848, 8, 422, 1, 422, 1, 422, 3, 422, 7852, 8, 422, 1, 422, 1, 422, 3, 422, 7856, 8, 422, 1, 422, 3, 422, 7859, 8, 422, 1, 422, 3, 422, 7862, 8, 422, 1, 422, 3, 422, 7865, 8, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 5, 422, 7872, 8, 422, 10, 422, 12, 422, 7875, 9, 422, 1, 422, 1, 422, 3, 422, 7879, 8, 422, 1, 422, 1, 422, 3, 422, 7883, 8, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7916, 8, 425, 1, 426, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 3, 427, 7926, 8, 427, 1, 427, 1, 427, 3, 427, 7930, 8, 427, 1, 427, 1, 427, 1, 427, 1, 427, 3, 427, 7936, 8, 427, 1, 427, 1, 427, 1, 427, 3, 427, 7941, 8, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 3, 429, 7950, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 5, 429, 7956, 8, 429, 10, 429, 12, 429, 7959, 9, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 3, 431, 7969, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 7975, 8, 431, 10, 431, 12, 431, 7978, 9, 431, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 7984, 8, 432, 10, 432, 12, 432, 7987, 9, 432, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 7993, 8, 432, 10, 432, 12, 432, 7996, 9, 432, 5, 432, 7998, 8, 432, 10, 432, 12, 432, 8001, 9, 432, 1, 432, 3, 432, 8004, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 5, 433, 8012, 8, 433, 10, 433, 12, 433, 8015, 9, 433, 1, 434, 1, 434, 3, 434, 8019, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 5, 434, 8025, 8, 434, 10, 434, 12, 434, 8028, 9, 434, 4, 434, 8030, 8, 434, 11, 434, 12, 434, 8031, 1, 434, 3, 434, 8035, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 3, 435, 8042, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 3, 435, 8048, 8, 435, 1, 435, 1, 435, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8056, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8064, 8, 436, 1, 436, 3, 436, 8067, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 436, 3, 436, 8074, 8, 436, 3, 436, 8076, 8, 436, 1, 437, 3, 437, 8079, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8085, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 1, 438, 3, 438, 8094, 8, 438, 1, 438, 1, 438, 3, 438, 8098, 8, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8112, 8, 439, 1, 439, 3, 439, 8115, 8, 439, 3, 439, 8117, 8, 439, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 8123, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 4, 440, 8131, 8, 440, 11, 440, 12, 440, 8132, 3, 440, 8135, 8, 440, 3, 440, 8137, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 5, 440, 8143, 8, 440, 10, 440, 12, 440, 8146, 9, 440, 3, 440, 8148, 8, 440, 1, 440, 3, 440, 8151, 8, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 3, 442, 8161, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 5, 443, 8167, 8, 443, 10, 443, 12, 443, 8170, 9, 443, 1, 443, 1, 443, 1, 443, 3, 443, 8175, 8, 443, 1, 443, 1, 443, 1, 444, 1, 444, 3, 444, 8181, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 3, 445, 8188, 8, 445, 1, 445, 1, 445, 3, 445, 8192, 8, 445, 1, 445, 1, 445, 3, 445, 8196, 8, 445, 1, 445, 3, 445, 8199, 8, 445, 1, 445, 3, 445, 8202, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 3, 446, 8208, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 3, 447, 8215, 8, 447, 1, 447, 3, 447, 8218, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 3, 447, 8226, 8, 447, 3, 447, 8228, 8, 447, 1, 447, 1, 447, 1, 447, 1, 447, 1, 447, 5, 447, 8235, 8, 447, 10, 447, 12, 447, 8238, 9, 447, 1, 447, 1, 447, 3, 447, 8242, 8, 447, 3, 447, 8244, 8, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 3, 448, 8251, 8, 448, 1, 448, 1, 448, 1, 449, 1, 449, 3, 449, 8257, 8, 449, 1, 449, 3, 449, 8260, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 3, 450, 8272, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 3, 450, 8279, 8, 450, 3, 450, 8281, 8, 450, 1, 451, 1, 451, 3, 451, 8285, 8, 451, 1, 451, 1, 451, 1, 451, 1, 452, 3, 452, 8291, 8, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8296, 8, 452, 1, 452, 1, 452, 3, 452, 8300, 8, 452, 1, 452, 3, 452, 8303, 8, 452, 1, 452, 3, 452, 8306, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 4, 452, 8313, 8, 452, 11, 452, 12, 452, 8314, 1, 453, 3, 453, 8318, 8, 453, 1, 453, 1, 453, 3, 453, 8322, 8, 453, 1, 453, 1, 453, 3, 453, 8326, 8, 453, 3, 453, 8328, 8, 453, 1, 453, 3, 453, 8331, 8, 453, 1, 453, 3, 453, 8334, 8, 453, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8340, 8, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8347, 8, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8354, 8, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8360, 8, 454, 3, 454, 8362, 8, 454, 1, 455, 1, 455, 3, 455, 8366, 8, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8371, 8, 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, 1, 456, 1, 456, 5, 456, 8387, 8, 456, 10, 456, 12, 456, 8390, 9, 456, 1, 456, 1, 456, 4, 456, 8394, 8, 456, 11, 456, 12, 456, 8395, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 5, 457, 8403, 8, 457, 10, 457, 12, 457, 8406, 9, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8412, 8, 457, 1, 458, 1, 458, 3, 458, 8416, 8, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 3, 461, 8428, 8, 461, 1, 461, 3, 461, 8431, 8, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 1, 462, 3, 462, 8444, 8, 462, 1, 462, 3, 462, 8447, 8, 462, 1, 463, 1, 463, 3, 463, 8451, 8, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 5, 464, 8458, 8, 464, 10, 464, 12, 464, 8461, 9, 464, 1, 464, 1, 464, 5, 464, 8465, 8, 464, 10, 464, 12, 464, 8468, 9, 464, 4, 464, 8470, 8, 464, 11, 464, 12, 464, 8471, 1, 465, 1, 465, 1, 465, 3, 465, 8477, 8, 465, 1, 466, 1, 466, 3, 466, 8481, 8, 466, 1, 467, 3, 467, 8484, 8, 467, 1, 467, 3, 467, 8487, 8, 467, 1, 467, 3, 467, 8490, 8, 467, 1, 467, 3, 467, 8493, 8, 467, 1, 467, 3, 467, 8496, 8, 467, 1, 467, 1, 467, 3, 467, 8500, 8, 467, 1, 467, 3, 467, 8503, 8, 467, 1, 467, 0, 3, 678, 682, 684, 468, 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, 0, 118, 2, 0, 195, 195, 364, 364, 2, 0, 66, 66, 318, 318, 2, 0, 99, 99, 318, 318, 2, 0, 134, 134, 318, 318, 1, 0, 529, 531, 2, 0, 10, 10, 94, 94, 2, 0, 133, 133, 191, 191, 2, 0, 254, 254, 332, 332, 2, 0, 162, 162, 363, 363, 2, 0, 180, 180, 221, 221, 5, 0, 30, 30, 288, 288, 329, 329, 352, 352, 354, 354, 2, 0, 109, 109, 532, 532, 2, 0, 158, 158, 277, 277, 2, 0, 367, 367, 439, 439, 2, 0, 139, 139, 312, 312, 2, 0, 191, 191, 333, 333, 2, 0, 313, 313, 333, 333, 2, 0, 150, 150, 315, 315, 2, 0, 64, 64, 94, 94, 4, 0, 78, 78, 183, 183, 197, 197, 298, 298, 2, 0, 213, 213, 254, 254, 2, 0, 352, 352, 354, 354, 2, 0, 200, 200, 224, 224, 9, 0, 30, 30, 160, 160, 165, 165, 179, 179, 219, 219, 227, 227, 342, 342, 345, 345, 438, 438, 3, 0, 113, 113, 284, 284, 336, 336, 2, 0, 53, 53, 78, 78, 2, 0, 105, 105, 379, 379, 2, 0, 260, 260, 262, 262, 3, 0, 173, 173, 260, 260, 262, 262, 1, 0, 12, 13, 2, 0, 64, 64, 375, 375, 2, 0, 156, 156, 206, 206, 2, 0, 189, 189, 360, 360, 2, 0, 215, 215, 373, 373, 3, 0, 133, 133, 191, 191, 333, 333, 5, 0, 30, 30, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 9, 9, 94, 94, 2, 0, 92, 92, 226, 226, 1, 0, 448, 449, 2, 0, 92, 92, 414, 414, 2, 0, 341, 341, 414, 414, 4, 0, 163, 163, 185, 185, 283, 283, 353, 353, 2, 0, 135, 135, 145, 145, 2, 0, 211, 211, 278, 278, 3, 0, 321, 321, 357, 357, 445, 445, 3, 0, 66, 66, 99, 99, 318, 318, 5, 0, 108, 108, 168, 168, 226, 226, 328, 328, 342, 342, 2, 0, 167, 167, 314, 314, 2, 0, 61, 61, 265, 265, 4, 0, 207, 207, 249, 249, 268, 268, 293, 293, 2, 0, 130, 130, 307, 307, 2, 0, 64, 64, 68, 68, 10, 0, 46, 46, 88, 88, 182, 182, 202, 202, 241, 241, 352, 352, 354, 354, 357, 358, 369, 369, 521, 523, 5, 0, 212, 212, 329, 329, 350, 350, 455, 455, 457, 457, 5, 0, 212, 212, 329, 329, 350, 350, 361, 361, 455, 456, 2, 0, 37, 37, 55, 55, 2, 0, 207, 207, 249, 249, 2, 0, 10, 10, 53, 53, 2, 0, 181, 181, 243, 243, 2, 0, 170, 170, 320, 320, 2, 0, 141, 141, 223, 223, 5, 0, 108, 108, 168, 168, 189, 189, 342, 342, 360, 360, 2, 0, 226, 226, 328, 328, 2, 0, 163, 163, 185, 185, 2, 0, 186, 186, 193, 193, 4, 0, 88, 88, 182, 182, 241, 241, 369, 369, 2, 0, 137, 137, 242, 242, 2, 0, 161, 161, 319, 319, 4, 0, 129, 129, 161, 161, 319, 319, 454, 454, 2, 0, 356, 356, 380, 380, 2, 0, 81, 81, 382, 382, 2, 0, 151, 151, 254, 254, 2, 0, 133, 133, 138, 138, 1, 0, 31, 32, 2, 0, 128, 128, 547, 547, 2, 0, 60, 60, 96, 96, 2, 0, 99, 99, 349, 349, 2, 0, 131, 131, 414, 414, 2, 0, 201, 201, 334, 334, 3, 0, 59, 59, 70, 70, 97, 97, 2, 0, 30, 30, 56, 56, 1, 0, 527, 528, 2, 0, 207, 207, 268, 268, 2, 0, 320, 320, 414, 414, 2, 0, 571, 571, 573, 573, 1, 0, 468, 469, 4, 0, 113, 113, 115, 115, 119, 119, 126, 126, 2, 0, 360, 360, 477, 477, 2, 0, 394, 395, 409, 409, 2, 0, 391, 392, 406, 406, 1, 0, 391, 392, 1, 0, 418, 419, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, 3, 0, 9, 9, 14, 14, 27, 27, 2, 0, 98, 98, 396, 396, 2, 0, 50, 51, 75, 76, 2, 0, 41, 41, 420, 420, 3, 0, 39, 39, 73, 73, 95, 95, 4, 0, 393, 393, 399, 399, 404, 404, 425, 425, 2, 0, 292, 292, 347, 347, 2, 0, 166, 166, 188, 188, 2, 0, 304, 304, 450, 450, 3, 0, 299, 299, 320, 320, 481, 481, 2, 0, 208, 208, 289, 289, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 114, 114, 120, 120, 2, 0, 20, 20, 22, 22, 1, 0, 483, 486, 17, 0, 53, 53, 116, 116, 123, 124, 129, 228, 238, 386, 433, 452, 455, 469, 471, 471, 473, 473, 475, 475, 477, 488, 490, 502, 504, 504, 506, 518, 520, 520, 524, 524, 547, 548, 3, 0, 106, 123, 125, 128, 472, 472, 4, 0, 30, 52, 54, 70, 72, 105, 454, 454, 2, 0, 62, 62, 116, 116, 2, 0, 10, 10, 20, 20, 2, 0, 434, 434, 501, 501, 2, 0, 167, 167, 507, 507, 1, 0, 512, 517, 2, 0, 144, 144, 210, 210, 9938, 0, 939, 1, 0, 0, 0, 2, 944, 1, 0, 0, 0, 4, 1068, 1, 0, 0, 0, 6, 1070, 1, 0, 0, 0, 8, 1073, 1, 0, 0, 0, 10, 1123, 1, 0, 0, 0, 12, 1133, 1, 0, 0, 0, 14, 1135, 1, 0, 0, 0, 16, 1147, 1, 0, 0, 0, 18, 1159, 1, 0, 0, 0, 20, 1170, 1, 0, 0, 0, 22, 1204, 1, 0, 0, 0, 24, 1248, 1, 0, 0, 0, 26, 1250, 1, 0, 0, 0, 28, 1262, 1, 0, 0, 0, 30, 1269, 1, 0, 0, 0, 32, 1288, 1, 0, 0, 0, 34, 1296, 1, 0, 0, 0, 36, 1298, 1, 0, 0, 0, 38, 1312, 1, 0, 0, 0, 40, 1316, 1, 0, 0, 0, 42, 1353, 1, 0, 0, 0, 44, 1355, 1, 0, 0, 0, 46, 1363, 1, 0, 0, 0, 48, 1373, 1, 0, 0, 0, 50, 1380, 1, 0, 0, 0, 52, 1388, 1, 0, 0, 0, 54, 1394, 1, 0, 0, 0, 56, 1410, 1, 0, 0, 0, 58, 1414, 1, 0, 0, 0, 60, 1416, 1, 0, 0, 0, 62, 1428, 1, 0, 0, 0, 64, 1433, 1, 0, 0, 0, 66, 1438, 1, 0, 0, 0, 68, 1440, 1, 0, 0, 0, 70, 1452, 1, 0, 0, 0, 72, 1460, 1, 0, 0, 0, 74, 1462, 1, 0, 0, 0, 76, 1586, 1, 0, 0, 0, 78, 1588, 1, 0, 0, 0, 80, 1605, 1, 0, 0, 0, 82, 1607, 1, 0, 0, 0, 84, 1621, 1, 0, 0, 0, 86, 1623, 1, 0, 0, 0, 88, 1637, 1, 0, 0, 0, 90, 1639, 1, 0, 0, 0, 92, 1876, 1, 0, 0, 0, 94, 1883, 1, 0, 0, 0, 96, 1885, 1, 0, 0, 0, 98, 1887, 1, 0, 0, 0, 100, 1890, 1, 0, 0, 0, 102, 1901, 1, 0, 0, 0, 104, 1904, 1, 0, 0, 0, 106, 1933, 1, 0, 0, 0, 108, 1935, 1, 0, 0, 0, 110, 1976, 1, 0, 0, 0, 112, 1978, 1, 0, 0, 0, 114, 2032, 1, 0, 0, 0, 116, 2073, 1, 0, 0, 0, 118, 2075, 1, 0, 0, 0, 120, 2092, 1, 0, 0, 0, 122, 2173, 1, 0, 0, 0, 124, 2175, 1, 0, 0, 0, 126, 2186, 1, 0, 0, 0, 128, 2209, 1, 0, 0, 0, 130, 2227, 1, 0, 0, 0, 132, 2229, 1, 0, 0, 0, 134, 2264, 1, 0, 0, 0, 136, 2357, 1, 0, 0, 0, 138, 2362, 1, 0, 0, 0, 140, 2364, 1, 0, 0, 0, 142, 2462, 1, 0, 0, 0, 144, 2464, 1, 0, 0, 0, 146, 2468, 1, 0, 0, 0, 148, 2479, 1, 0, 0, 0, 150, 2487, 1, 0, 0, 0, 152, 2490, 1, 0, 0, 0, 154, 2493, 1, 0, 0, 0, 156, 2511, 1, 0, 0, 0, 158, 2513, 1, 0, 0, 0, 160, 2517, 1, 0, 0, 0, 162, 2530, 1, 0, 0, 0, 164, 2532, 1, 0, 0, 0, 166, 2537, 1, 0, 0, 0, 168, 2557, 1, 0, 0, 0, 170, 2565, 1, 0, 0, 0, 172, 2572, 1, 0, 0, 0, 174, 2574, 1, 0, 0, 0, 176, 2583, 1, 0, 0, 0, 178, 2586, 1, 0, 0, 0, 180, 2590, 1, 0, 0, 0, 182, 2594, 1, 0, 0, 0, 184, 2619, 1, 0, 0, 0, 186, 2629, 1, 0, 0, 0, 188, 2643, 1, 0, 0, 0, 190, 2659, 1, 0, 0, 0, 192, 2665, 1, 0, 0, 0, 194, 2692, 1, 0, 0, 0, 196, 2702, 1, 0, 0, 0, 198, 2718, 1, 0, 0, 0, 200, 2762, 1, 0, 0, 0, 202, 2769, 1, 0, 0, 0, 204, 2771, 1, 0, 0, 0, 206, 2797, 1, 0, 0, 0, 208, 2808, 1, 0, 0, 0, 210, 2827, 1, 0, 0, 0, 212, 2838, 1, 0, 0, 0, 214, 2876, 1, 0, 0, 0, 216, 2897, 1, 0, 0, 0, 218, 2899, 1, 0, 0, 0, 220, 2919, 1, 0, 0, 0, 222, 2931, 1, 0, 0, 0, 224, 2943, 1, 0, 0, 0, 226, 2946, 1, 0, 0, 0, 228, 2949, 1, 0, 0, 0, 230, 2969, 1, 0, 0, 0, 232, 2974, 1, 0, 0, 0, 234, 3023, 1, 0, 0, 0, 236, 3025, 1, 0, 0, 0, 238, 3048, 1, 0, 0, 0, 240, 3064, 1, 0, 0, 0, 242, 3076, 1, 0, 0, 0, 244, 3103, 1, 0, 0, 0, 246, 3118, 1, 0, 0, 0, 248, 3181, 1, 0, 0, 0, 250, 3183, 1, 0, 0, 0, 252, 3188, 1, 0, 0, 0, 254, 3194, 1, 0, 0, 0, 256, 3281, 1, 0, 0, 0, 258, 3287, 1, 0, 0, 0, 260, 3289, 1, 0, 0, 0, 262, 3305, 1, 0, 0, 0, 264, 3307, 1, 0, 0, 0, 266, 3316, 1, 0, 0, 0, 268, 3320, 1, 0, 0, 0, 270, 3333, 1, 0, 0, 0, 272, 3345, 1, 0, 0, 0, 274, 3347, 1, 0, 0, 0, 276, 3369, 1, 0, 0, 0, 278, 3381, 1, 0, 0, 0, 280, 3392, 1, 0, 0, 0, 282, 3483, 1, 0, 0, 0, 284, 3485, 1, 0, 0, 0, 286, 3496, 1, 0, 0, 0, 288, 3507, 1, 0, 0, 0, 290, 3509, 1, 0, 0, 0, 292, 3535, 1, 0, 0, 0, 294, 3537, 1, 0, 0, 0, 296, 3541, 1, 0, 0, 0, 298, 3591, 1, 0, 0, 0, 300, 3593, 1, 0, 0, 0, 302, 3599, 1, 0, 0, 0, 304, 3624, 1, 0, 0, 0, 306, 3628, 1, 0, 0, 0, 308, 3842, 1, 0, 0, 0, 310, 3860, 1, 0, 0, 0, 312, 3886, 1, 0, 0, 0, 314, 3888, 1, 0, 0, 0, 316, 3896, 1, 0, 0, 0, 318, 3902, 1, 0, 0, 0, 320, 3906, 1, 0, 0, 0, 322, 3926, 1, 0, 0, 0, 324, 3932, 1, 0, 0, 0, 326, 3999, 1, 0, 0, 0, 328, 4030, 1, 0, 0, 0, 330, 4076, 1, 0, 0, 0, 332, 4078, 1, 0, 0, 0, 334, 4080, 1, 0, 0, 0, 336, 4091, 1, 0, 0, 0, 338, 4128, 1, 0, 0, 0, 340, 4130, 1, 0, 0, 0, 342, 4136, 1, 0, 0, 0, 344, 4186, 1, 0, 0, 0, 346, 4189, 1, 0, 0, 0, 348, 4203, 1, 0, 0, 0, 350, 4224, 1, 0, 0, 0, 352, 4248, 1, 0, 0, 0, 354, 4289, 1, 0, 0, 0, 356, 4291, 1, 0, 0, 0, 358, 4293, 1, 0, 0, 0, 360, 4333, 1, 0, 0, 0, 362, 4350, 1, 0, 0, 0, 364, 4370, 1, 0, 0, 0, 366, 4423, 1, 0, 0, 0, 368, 4426, 1, 0, 0, 0, 370, 4432, 1, 0, 0, 0, 372, 4440, 1, 0, 0, 0, 374, 4453, 1, 0, 0, 0, 376, 4455, 1, 0, 0, 0, 378, 4468, 1, 0, 0, 0, 380, 4470, 1, 0, 0, 0, 382, 4483, 1, 0, 0, 0, 384, 4493, 1, 0, 0, 0, 386, 4504, 1, 0, 0, 0, 388, 4515, 1, 0, 0, 0, 390, 4517, 1, 0, 0, 0, 392, 4522, 1, 0, 0, 0, 394, 4536, 1, 0, 0, 0, 396, 4568, 1, 0, 0, 0, 398, 4605, 1, 0, 0, 0, 400, 4607, 1, 0, 0, 0, 402, 4610, 1, 0, 0, 0, 404, 4613, 1, 0, 0, 0, 406, 4630, 1, 0, 0, 0, 408, 4651, 1, 0, 0, 0, 410, 4667, 1, 0, 0, 0, 412, 4683, 1, 0, 0, 0, 414, 4705, 1, 0, 0, 0, 416, 4710, 1, 0, 0, 0, 418, 4713, 1, 0, 0, 0, 420, 4721, 1, 0, 0, 0, 422, 4746, 1, 0, 0, 0, 424, 4749, 1, 0, 0, 0, 426, 4777, 1, 0, 0, 0, 428, 4782, 1, 0, 0, 0, 430, 4822, 1, 0, 0, 0, 432, 5034, 1, 0, 0, 0, 434, 5036, 1, 0, 0, 0, 436, 5124, 1, 0, 0, 0, 438, 5126, 1, 0, 0, 0, 440, 5132, 1, 0, 0, 0, 442, 5143, 1, 0, 0, 0, 444, 5153, 1, 0, 0, 0, 446, 5233, 1, 0, 0, 0, 448, 5235, 1, 0, 0, 0, 450, 5249, 1, 0, 0, 0, 452, 5271, 1, 0, 0, 0, 454, 5344, 1, 0, 0, 0, 456, 5346, 1, 0, 0, 0, 458, 5387, 1, 0, 0, 0, 460, 5389, 1, 0, 0, 0, 462, 5394, 1, 0, 0, 0, 464, 5397, 1, 0, 0, 0, 466, 5400, 1, 0, 0, 0, 468, 5450, 1, 0, 0, 0, 470, 5452, 1, 0, 0, 0, 472, 5463, 1, 0, 0, 0, 474, 5465, 1, 0, 0, 0, 476, 5475, 1, 0, 0, 0, 478, 5510, 1, 0, 0, 0, 480, 5513, 1, 0, 0, 0, 482, 5534, 1, 0, 0, 0, 484, 5544, 1, 0, 0, 0, 486, 5564, 1, 0, 0, 0, 488, 5570, 1, 0, 0, 0, 490, 5576, 1, 0, 0, 0, 492, 5581, 1, 0, 0, 0, 494, 5594, 1, 0, 0, 0, 496, 5621, 1, 0, 0, 0, 498, 5669, 1, 0, 0, 0, 500, 5671, 1, 0, 0, 0, 502, 5709, 1, 0, 0, 0, 504, 5711, 1, 0, 0, 0, 506, 5732, 1, 0, 0, 0, 508, 5752, 1, 0, 0, 0, 510, 5756, 1, 0, 0, 0, 512, 5771, 1, 0, 0, 0, 514, 5773, 1, 0, 0, 0, 516, 5777, 1, 0, 0, 0, 518, 5781, 1, 0, 0, 0, 520, 5789, 1, 0, 0, 0, 522, 5813, 1, 0, 0, 0, 524, 5815, 1, 0, 0, 0, 526, 5826, 1, 0, 0, 0, 528, 5834, 1, 0, 0, 0, 530, 5849, 1, 0, 0, 0, 532, 5874, 1, 0, 0, 0, 534, 5876, 1, 0, 0, 0, 536, 5880, 1, 0, 0, 0, 538, 5889, 1, 0, 0, 0, 540, 5929, 1, 0, 0, 0, 542, 5940, 1, 0, 0, 0, 544, 5948, 1, 0, 0, 0, 546, 5951, 1, 0, 0, 0, 548, 5955, 1, 0, 0, 0, 550, 5970, 1, 0, 0, 0, 552, 5995, 1, 0, 0, 0, 554, 6010, 1, 0, 0, 0, 556, 6036, 1, 0, 0, 0, 558, 6038, 1, 0, 0, 0, 560, 6061, 1, 0, 0, 0, 562, 6063, 1, 0, 0, 0, 564, 6071, 1, 0, 0, 0, 566, 6089, 1, 0, 0, 0, 568, 6113, 1, 0, 0, 0, 570, 6125, 1, 0, 0, 0, 572, 6129, 1, 0, 0, 0, 574, 6141, 1, 0, 0, 0, 576, 6161, 1, 0, 0, 0, 578, 6169, 1, 0, 0, 0, 580, 6183, 1, 0, 0, 0, 582, 6206, 1, 0, 0, 0, 584, 6208, 1, 0, 0, 0, 586, 6213, 1, 0, 0, 0, 588, 6223, 1, 0, 0, 0, 590, 6244, 1, 0, 0, 0, 592, 6246, 1, 0, 0, 0, 594, 6255, 1, 0, 0, 0, 596, 6266, 1, 0, 0, 0, 598, 6276, 1, 0, 0, 0, 600, 6278, 1, 0, 0, 0, 602, 6285, 1, 0, 0, 0, 604, 6316, 1, 0, 0, 0, 606, 6346, 1, 0, 0, 0, 608, 6348, 1, 0, 0, 0, 610, 6357, 1, 0, 0, 0, 612, 6360, 1, 0, 0, 0, 614, 6418, 1, 0, 0, 0, 616, 6453, 1, 0, 0, 0, 618, 6456, 1, 0, 0, 0, 620, 6477, 1, 0, 0, 0, 622, 6479, 1, 0, 0, 0, 624, 6487, 1, 0, 0, 0, 626, 6504, 1, 0, 0, 0, 628, 6530, 1, 0, 0, 0, 630, 6532, 1, 0, 0, 0, 632, 6540, 1, 0, 0, 0, 634, 6547, 1, 0, 0, 0, 636, 6571, 1, 0, 0, 0, 638, 6577, 1, 0, 0, 0, 640, 6585, 1, 0, 0, 0, 642, 6588, 1, 0, 0, 0, 644, 6595, 1, 0, 0, 0, 646, 6603, 1, 0, 0, 0, 648, 6608, 1, 0, 0, 0, 650, 6638, 1, 0, 0, 0, 652, 6665, 1, 0, 0, 0, 654, 6693, 1, 0, 0, 0, 656, 6710, 1, 0, 0, 0, 658, 6716, 1, 0, 0, 0, 660, 6734, 1, 0, 0, 0, 662, 6736, 1, 0, 0, 0, 664, 6740, 1, 0, 0, 0, 666, 6757, 1, 0, 0, 0, 668, 6762, 1, 0, 0, 0, 670, 6800, 1, 0, 0, 0, 672, 6802, 1, 0, 0, 0, 674, 6806, 1, 0, 0, 0, 676, 6808, 1, 0, 0, 0, 678, 6817, 1, 0, 0, 0, 680, 6901, 1, 0, 0, 0, 682, 6907, 1, 0, 0, 0, 684, 7016, 1, 0, 0, 0, 686, 7048, 1, 0, 0, 0, 688, 7099, 1, 0, 0, 0, 690, 7103, 1, 0, 0, 0, 692, 7279, 1, 0, 0, 0, 694, 7281, 1, 0, 0, 0, 696, 7289, 1, 0, 0, 0, 698, 7294, 1, 0, 0, 0, 700, 7296, 1, 0, 0, 0, 702, 7304, 1, 0, 0, 0, 704, 7307, 1, 0, 0, 0, 706, 7316, 1, 0, 0, 0, 708, 7320, 1, 0, 0, 0, 710, 7325, 1, 0, 0, 0, 712, 7342, 1, 0, 0, 0, 714, 7369, 1, 0, 0, 0, 716, 7378, 1, 0, 0, 0, 718, 7380, 1, 0, 0, 0, 720, 7387, 1, 0, 0, 0, 722, 7391, 1, 0, 0, 0, 724, 7393, 1, 0, 0, 0, 726, 7401, 1, 0, 0, 0, 728, 7409, 1, 0, 0, 0, 730, 7416, 1, 0, 0, 0, 732, 7418, 1, 0, 0, 0, 734, 7431, 1, 0, 0, 0, 736, 7435, 1, 0, 0, 0, 738, 7437, 1, 0, 0, 0, 740, 7452, 1, 0, 0, 0, 742, 7454, 1, 0, 0, 0, 744, 7476, 1, 0, 0, 0, 746, 7478, 1, 0, 0, 0, 748, 7501, 1, 0, 0, 0, 750, 7503, 1, 0, 0, 0, 752, 7525, 1, 0, 0, 0, 754, 7528, 1, 0, 0, 0, 756, 7535, 1, 0, 0, 0, 758, 7538, 1, 0, 0, 0, 760, 7555, 1, 0, 0, 0, 762, 7562, 1, 0, 0, 0, 764, 7567, 1, 0, 0, 0, 766, 7575, 1, 0, 0, 0, 768, 7583, 1, 0, 0, 0, 770, 7591, 1, 0, 0, 0, 772, 7599, 1, 0, 0, 0, 774, 7601, 1, 0, 0, 0, 776, 7603, 1, 0, 0, 0, 778, 7605, 1, 0, 0, 0, 780, 7607, 1, 0, 0, 0, 782, 7609, 1, 0, 0, 0, 784, 7611, 1, 0, 0, 0, 786, 7615, 1, 0, 0, 0, 788, 7623, 1, 0, 0, 0, 790, 7631, 1, 0, 0, 0, 792, 7633, 1, 0, 0, 0, 794, 7635, 1, 0, 0, 0, 796, 7637, 1, 0, 0, 0, 798, 7639, 1, 0, 0, 0, 800, 7645, 1, 0, 0, 0, 802, 7651, 1, 0, 0, 0, 804, 7657, 1, 0, 0, 0, 806, 7659, 1, 0, 0, 0, 808, 7665, 1, 0, 0, 0, 810, 7671, 1, 0, 0, 0, 812, 7673, 1, 0, 0, 0, 814, 7689, 1, 0, 0, 0, 816, 7692, 1, 0, 0, 0, 818, 7701, 1, 0, 0, 0, 820, 7703, 1, 0, 0, 0, 822, 7713, 1, 0, 0, 0, 824, 7717, 1, 0, 0, 0, 826, 7722, 1, 0, 0, 0, 828, 7728, 1, 0, 0, 0, 830, 7741, 1, 0, 0, 0, 832, 7743, 1, 0, 0, 0, 834, 7796, 1, 0, 0, 0, 836, 7798, 1, 0, 0, 0, 838, 7800, 1, 0, 0, 0, 840, 7803, 1, 0, 0, 0, 842, 7831, 1, 0, 0, 0, 844, 7835, 1, 0, 0, 0, 846, 7886, 1, 0, 0, 0, 848, 7889, 1, 0, 0, 0, 850, 7915, 1, 0, 0, 0, 852, 7917, 1, 0, 0, 0, 854, 7940, 1, 0, 0, 0, 856, 7942, 1, 0, 0, 0, 858, 7947, 1, 0, 0, 0, 860, 7962, 1, 0, 0, 0, 862, 7968, 1, 0, 0, 0, 864, 7979, 1, 0, 0, 0, 866, 8009, 1, 0, 0, 0, 868, 8016, 1, 0, 0, 0, 870, 8041, 1, 0, 0, 0, 872, 8051, 1, 0, 0, 0, 874, 8078, 1, 0, 0, 0, 876, 8091, 1, 0, 0, 0, 878, 8101, 1, 0, 0, 0, 880, 8120, 1, 0, 0, 0, 882, 8152, 1, 0, 0, 0, 884, 8156, 1, 0, 0, 0, 886, 8164, 1, 0, 0, 0, 888, 8178, 1, 0, 0, 0, 890, 8184, 1, 0, 0, 0, 892, 8205, 1, 0, 0, 0, 894, 8211, 1, 0, 0, 0, 896, 8250, 1, 0, 0, 0, 898, 8254, 1, 0, 0, 0, 900, 8280, 1, 0, 0, 0, 902, 8282, 1, 0, 0, 0, 904, 8290, 1, 0, 0, 0, 906, 8327, 1, 0, 0, 0, 908, 8361, 1, 0, 0, 0, 910, 8363, 1, 0, 0, 0, 912, 8374, 1, 0, 0, 0, 914, 8411, 1, 0, 0, 0, 916, 8415, 1, 0, 0, 0, 918, 8417, 1, 0, 0, 0, 920, 8421, 1, 0, 0, 0, 922, 8424, 1, 0, 0, 0, 924, 8446, 1, 0, 0, 0, 926, 8450, 1, 0, 0, 0, 928, 8452, 1, 0, 0, 0, 930, 8476, 1, 0, 0, 0, 932, 8480, 1, 0, 0, 0, 934, 8483, 1, 0, 0, 0, 936, 938, 3, 2, 1, 0, 937, 936, 1, 0, 0, 0, 938, 941, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 942, 943, 5, 0, 0, 1, 943, 1, 1, 0, 0, 0, 944, 946, 3, 4, 2, 0, 945, 947, 5, 7, 0, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 3, 1, 0, 0, 0, 948, 1069, 3, 278, 139, 0, 949, 1069, 3, 488, 244, 0, 950, 1069, 3, 484, 242, 0, 951, 1069, 3, 486, 243, 0, 952, 1069, 3, 352, 176, 0, 953, 1069, 3, 494, 247, 0, 954, 1069, 3, 292, 146, 0, 955, 1069, 3, 210, 105, 0, 956, 1069, 3, 212, 106, 0, 957, 1069, 3, 218, 109, 0, 958, 1069, 3, 232, 116, 0, 959, 1069, 3, 404, 202, 0, 960, 1069, 3, 28, 14, 0, 961, 1069, 3, 434, 217, 0, 962, 1069, 3, 436, 218, 0, 963, 1069, 3, 446, 223, 0, 964, 1069, 3, 438, 219, 0, 965, 1069, 3, 444, 222, 0, 966, 1069, 3, 244, 122, 0, 967, 1069, 3, 246, 123, 0, 968, 1069, 3, 198, 99, 0, 969, 1069, 3, 490, 245, 0, 970, 1069, 3, 76, 38, 0, 971, 1069, 3, 430, 215, 0, 972, 1069, 3, 108, 54, 0, 973, 1069, 3, 450, 225, 0, 974, 1069, 3, 18, 9, 0, 975, 1069, 3, 20, 10, 0, 976, 1069, 3, 16, 8, 0, 977, 1069, 3, 454, 227, 0, 978, 1069, 3, 184, 92, 0, 979, 1069, 3, 498, 249, 0, 980, 1069, 3, 496, 248, 0, 981, 1069, 3, 240, 120, 0, 982, 1069, 3, 506, 253, 0, 983, 1069, 3, 6, 3, 0, 984, 1069, 3, 72, 36, 0, 985, 1069, 3, 112, 56, 0, 986, 1069, 3, 502, 251, 0, 987, 1069, 3, 324, 162, 0, 988, 1069, 3, 70, 35, 0, 989, 1069, 3, 114, 57, 0, 990, 1069, 3, 254, 127, 0, 991, 1069, 3, 186, 93, 0, 992, 1069, 3, 280, 140, 0, 993, 1069, 3, 420, 210, 0, 994, 1069, 3, 500, 250, 0, 995, 1069, 3, 492, 246, 0, 996, 1069, 3, 208, 104, 0, 997, 1069, 3, 214, 107, 0, 998, 1069, 3, 228, 114, 0, 999, 1069, 3, 234, 117, 0, 1000, 1069, 3, 364, 182, 0, 1001, 1069, 3, 26, 13, 0, 1002, 1069, 3, 192, 96, 0, 1003, 1069, 3, 296, 148, 0, 1004, 1069, 3, 300, 150, 0, 1005, 1069, 3, 448, 224, 0, 1006, 1069, 3, 302, 151, 0, 1007, 1069, 3, 242, 121, 0, 1008, 1069, 3, 204, 102, 0, 1009, 1069, 3, 30, 15, 0, 1010, 1069, 3, 196, 98, 0, 1011, 1069, 3, 120, 60, 0, 1012, 1069, 3, 452, 226, 0, 1013, 1069, 3, 182, 91, 0, 1014, 1069, 3, 206, 103, 0, 1015, 1069, 3, 424, 212, 0, 1016, 1069, 3, 256, 128, 0, 1017, 1069, 3, 274, 137, 0, 1018, 1069, 3, 8, 4, 0, 1019, 1069, 3, 14, 7, 0, 1020, 1069, 3, 238, 119, 0, 1021, 1069, 3, 480, 240, 0, 1022, 1069, 3, 536, 268, 0, 1023, 1069, 3, 558, 279, 0, 1024, 1069, 3, 282, 141, 0, 1025, 1069, 3, 548, 274, 0, 1026, 1069, 3, 74, 37, 0, 1027, 1069, 3, 418, 209, 0, 1028, 1069, 3, 308, 154, 0, 1029, 1069, 3, 532, 266, 0, 1030, 1069, 3, 520, 260, 0, 1031, 1069, 3, 328, 164, 0, 1032, 1069, 3, 334, 167, 0, 1033, 1069, 3, 348, 174, 0, 1034, 1069, 3, 904, 452, 0, 1035, 1069, 3, 236, 118, 0, 1036, 1069, 3, 358, 179, 0, 1037, 1069, 3, 538, 269, 0, 1038, 1069, 3, 464, 232, 0, 1039, 1069, 3, 194, 97, 0, 1040, 1069, 3, 478, 239, 0, 1041, 1069, 3, 550, 275, 0, 1042, 1069, 3, 460, 230, 0, 1043, 1069, 3, 526, 263, 0, 1044, 1069, 3, 306, 153, 0, 1045, 1069, 3, 428, 214, 0, 1046, 1069, 3, 408, 204, 0, 1047, 1069, 3, 406, 203, 0, 1048, 1069, 3, 410, 205, 0, 1049, 1069, 3, 432, 216, 0, 1050, 1069, 3, 336, 168, 0, 1051, 1069, 3, 350, 175, 0, 1052, 1069, 3, 456, 228, 0, 1053, 1069, 3, 326, 163, 0, 1054, 1069, 3, 560, 280, 0, 1055, 1069, 3, 468, 234, 0, 1056, 1069, 3, 320, 160, 0, 1057, 1069, 3, 466, 233, 0, 1058, 1069, 3, 552, 276, 0, 1059, 1069, 3, 504, 252, 0, 1060, 1069, 3, 60, 30, 0, 1061, 1069, 3, 36, 18, 0, 1062, 1069, 3, 68, 34, 0, 1063, 1069, 3, 476, 238, 0, 1064, 1066, 5, 581, 0, 0, 1065, 1067, 5, 582, 0, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1069, 1, 0, 0, 0, 1068, 948, 1, 0, 0, 0, 1068, 949, 1, 0, 0, 0, 1068, 950, 1, 0, 0, 0, 1068, 951, 1, 0, 0, 0, 1068, 952, 1, 0, 0, 0, 1068, 953, 1, 0, 0, 0, 1068, 954, 1, 0, 0, 0, 1068, 955, 1, 0, 0, 0, 1068, 956, 1, 0, 0, 0, 1068, 957, 1, 0, 0, 0, 1068, 958, 1, 0, 0, 0, 1068, 959, 1, 0, 0, 0, 1068, 960, 1, 0, 0, 0, 1068, 961, 1, 0, 0, 0, 1068, 962, 1, 0, 0, 0, 1068, 963, 1, 0, 0, 0, 1068, 964, 1, 0, 0, 0, 1068, 965, 1, 0, 0, 0, 1068, 966, 1, 0, 0, 0, 1068, 967, 1, 0, 0, 0, 1068, 968, 1, 0, 0, 0, 1068, 969, 1, 0, 0, 0, 1068, 970, 1, 0, 0, 0, 1068, 971, 1, 0, 0, 0, 1068, 972, 1, 0, 0, 0, 1068, 973, 1, 0, 0, 0, 1068, 974, 1, 0, 0, 0, 1068, 975, 1, 0, 0, 0, 1068, 976, 1, 0, 0, 0, 1068, 977, 1, 0, 0, 0, 1068, 978, 1, 0, 0, 0, 1068, 979, 1, 0, 0, 0, 1068, 980, 1, 0, 0, 0, 1068, 981, 1, 0, 0, 0, 1068, 982, 1, 0, 0, 0, 1068, 983, 1, 0, 0, 0, 1068, 984, 1, 0, 0, 0, 1068, 985, 1, 0, 0, 0, 1068, 986, 1, 0, 0, 0, 1068, 987, 1, 0, 0, 0, 1068, 988, 1, 0, 0, 0, 1068, 989, 1, 0, 0, 0, 1068, 990, 1, 0, 0, 0, 1068, 991, 1, 0, 0, 0, 1068, 992, 1, 0, 0, 0, 1068, 993, 1, 0, 0, 0, 1068, 994, 1, 0, 0, 0, 1068, 995, 1, 0, 0, 0, 1068, 996, 1, 0, 0, 0, 1068, 997, 1, 0, 0, 0, 1068, 998, 1, 0, 0, 0, 1068, 999, 1, 0, 0, 0, 1068, 1000, 1, 0, 0, 0, 1068, 1001, 1, 0, 0, 0, 1068, 1002, 1, 0, 0, 0, 1068, 1003, 1, 0, 0, 0, 1068, 1004, 1, 0, 0, 0, 1068, 1005, 1, 0, 0, 0, 1068, 1006, 1, 0, 0, 0, 1068, 1007, 1, 0, 0, 0, 1068, 1008, 1, 0, 0, 0, 1068, 1009, 1, 0, 0, 0, 1068, 1010, 1, 0, 0, 0, 1068, 1011, 1, 0, 0, 0, 1068, 1012, 1, 0, 0, 0, 1068, 1013, 1, 0, 0, 0, 1068, 1014, 1, 0, 0, 0, 1068, 1015, 1, 0, 0, 0, 1068, 1016, 1, 0, 0, 0, 1068, 1017, 1, 0, 0, 0, 1068, 1018, 1, 0, 0, 0, 1068, 1019, 1, 0, 0, 0, 1068, 1020, 1, 0, 0, 0, 1068, 1021, 1, 0, 0, 0, 1068, 1022, 1, 0, 0, 0, 1068, 1023, 1, 0, 0, 0, 1068, 1024, 1, 0, 0, 0, 1068, 1025, 1, 0, 0, 0, 1068, 1026, 1, 0, 0, 0, 1068, 1027, 1, 0, 0, 0, 1068, 1028, 1, 0, 0, 0, 1068, 1029, 1, 0, 0, 0, 1068, 1030, 1, 0, 0, 0, 1068, 1031, 1, 0, 0, 0, 1068, 1032, 1, 0, 0, 0, 1068, 1033, 1, 0, 0, 0, 1068, 1034, 1, 0, 0, 0, 1068, 1035, 1, 0, 0, 0, 1068, 1036, 1, 0, 0, 0, 1068, 1037, 1, 0, 0, 0, 1068, 1038, 1, 0, 0, 0, 1068, 1039, 1, 0, 0, 0, 1068, 1040, 1, 0, 0, 0, 1068, 1041, 1, 0, 0, 0, 1068, 1042, 1, 0, 0, 0, 1068, 1043, 1, 0, 0, 0, 1068, 1044, 1, 0, 0, 0, 1068, 1045, 1, 0, 0, 0, 1068, 1046, 1, 0, 0, 0, 1068, 1047, 1, 0, 0, 0, 1068, 1048, 1, 0, 0, 0, 1068, 1049, 1, 0, 0, 0, 1068, 1050, 1, 0, 0, 0, 1068, 1051, 1, 0, 0, 0, 1068, 1052, 1, 0, 0, 0, 1068, 1053, 1, 0, 0, 0, 1068, 1054, 1, 0, 0, 0, 1068, 1055, 1, 0, 0, 0, 1068, 1056, 1, 0, 0, 0, 1068, 1057, 1, 0, 0, 0, 1068, 1058, 1, 0, 0, 0, 1068, 1059, 1, 0, 0, 0, 1068, 1060, 1, 0, 0, 0, 1068, 1061, 1, 0, 0, 0, 1068, 1062, 1, 0, 0, 0, 1068, 1063, 1, 0, 0, 0, 1068, 1064, 1, 0, 0, 0, 1069, 5, 1, 0, 0, 0, 1070, 1071, 5, 433, 0, 0, 1071, 1072, 3, 686, 343, 0, 1072, 7, 1, 0, 0, 0, 1073, 1074, 5, 46, 0, 0, 1074, 1075, 5, 318, 0, 0, 1075, 1077, 3, 818, 409, 0, 1076, 1078, 5, 105, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1082, 1, 0, 0, 0, 1079, 1081, 3, 12, 6, 0, 1080, 1079, 1, 0, 0, 0, 1081, 1084, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 9, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1085, 1088, 5, 287, 0, 0, 1086, 1089, 3, 812, 406, 0, 1087, 1089, 5, 78, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1087, 1, 0, 0, 0, 1089, 1124, 1, 0, 0, 0, 1090, 1091, 7, 0, 0, 0, 1091, 1092, 5, 287, 0, 0, 1092, 1124, 3, 812, 406, 0, 1093, 1124, 5, 228, 0, 0, 1094, 1124, 5, 229, 0, 0, 1095, 1124, 5, 236, 0, 0, 1096, 1124, 5, 237, 0, 0, 1097, 1124, 5, 234, 0, 0, 1098, 1124, 5, 235, 0, 0, 1099, 1124, 5, 232, 0, 0, 1100, 1124, 5, 233, 0, 0, 1101, 1124, 5, 230, 0, 0, 1102, 1124, 5, 231, 0, 0, 1103, 1124, 5, 535, 0, 0, 1104, 1124, 5, 536, 0, 0, 1105, 1124, 5, 537, 0, 0, 1106, 1124, 5, 538, 0, 0, 1107, 1124, 5, 539, 0, 0, 1108, 1124, 5, 540, 0, 0, 1109, 1110, 5, 164, 0, 0, 1110, 1111, 5, 74, 0, 0, 1111, 1124, 3, 816, 408, 0, 1112, 1113, 5, 371, 0, 0, 1113, 1114, 5, 368, 0, 0, 1114, 1124, 3, 812, 406, 0, 1115, 1116, 5, 68, 0, 0, 1116, 1117, 7, 1, 0, 0, 1117, 1124, 3, 788, 394, 0, 1118, 1119, 7, 2, 0, 0, 1119, 1124, 3, 820, 410, 0, 1120, 1121, 5, 134, 0, 0, 1121, 1124, 3, 788, 394, 0, 1122, 1124, 3, 830, 415, 0, 1123, 1085, 1, 0, 0, 0, 1123, 1090, 1, 0, 0, 0, 1123, 1093, 1, 0, 0, 0, 1123, 1094, 1, 0, 0, 0, 1123, 1095, 1, 0, 0, 0, 1123, 1096, 1, 0, 0, 0, 1123, 1097, 1, 0, 0, 0, 1123, 1098, 1, 0, 0, 0, 1123, 1099, 1, 0, 0, 0, 1123, 1100, 1, 0, 0, 0, 1123, 1101, 1, 0, 0, 0, 1123, 1102, 1, 0, 0, 0, 1123, 1103, 1, 0, 0, 0, 1123, 1104, 1, 0, 0, 0, 1123, 1105, 1, 0, 0, 0, 1123, 1106, 1, 0, 0, 0, 1123, 1107, 1, 0, 0, 0, 1123, 1108, 1, 0, 0, 0, 1123, 1109, 1, 0, 0, 0, 1123, 1112, 1, 0, 0, 0, 1123, 1115, 1, 0, 0, 0, 1123, 1118, 1, 0, 0, 0, 1123, 1120, 1, 0, 0, 0, 1123, 1122, 1, 0, 0, 0, 1124, 11, 1, 0, 0, 0, 1125, 1134, 3, 10, 5, 0, 1126, 1127, 5, 348, 0, 0, 1127, 1134, 5, 571, 0, 0, 1128, 1129, 7, 3, 0, 0, 1129, 1134, 3, 820, 410, 0, 1130, 1131, 5, 68, 0, 0, 1131, 1132, 7, 1, 0, 0, 1132, 1134, 3, 820, 410, 0, 1133, 1125, 1, 0, 0, 0, 1133, 1126, 1, 0, 0, 0, 1133, 1128, 1, 0, 0, 0, 1133, 1130, 1, 0, 0, 0, 1134, 13, 1, 0, 0, 0, 1135, 1136, 5, 46, 0, 0, 1136, 1137, 5, 99, 0, 0, 1137, 1139, 3, 818, 409, 0, 1138, 1140, 5, 105, 0, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1144, 1, 0, 0, 0, 1141, 1143, 3, 12, 6, 0, 1142, 1141, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 15, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1148, 5, 138, 0, 0, 1148, 1149, 7, 2, 0, 0, 1149, 1151, 3, 818, 409, 0, 1150, 1152, 5, 105, 0, 0, 1151, 1150, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1156, 1, 0, 0, 0, 1153, 1155, 3, 10, 5, 0, 1154, 1153, 1, 0, 0, 0, 1155, 1158, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 17, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1160, 5, 138, 0, 0, 1160, 1163, 7, 2, 0, 0, 1161, 1164, 5, 30, 0, 0, 1162, 1164, 3, 818, 409, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1162, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 5, 68, 0, 0, 1166, 1167, 5, 175, 0, 0, 1167, 1168, 3, 792, 396, 0, 1168, 1169, 3, 64, 32, 0, 1169, 19, 1, 0, 0, 0, 1170, 1171, 5, 138, 0, 0, 1171, 1172, 5, 442, 0, 0, 1172, 1174, 3, 798, 399, 0, 1173, 1175, 3, 368, 184, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1177, 3, 22, 11, 0, 1177, 21, 1, 0, 0, 0, 1178, 1182, 3, 24, 12, 0, 1179, 1181, 3, 24, 12, 0, 1180, 1179, 1, 0, 0, 0, 1181, 1184, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1187, 5, 315, 0, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1205, 1, 0, 0, 0, 1188, 1189, 5, 309, 0, 0, 1189, 1190, 5, 94, 0, 0, 1190, 1205, 3, 796, 398, 0, 1191, 1192, 5, 282, 0, 0, 1192, 1193, 5, 94, 0, 0, 1193, 1205, 3, 818, 409, 0, 1194, 1195, 5, 333, 0, 0, 1195, 1196, 5, 323, 0, 0, 1196, 1205, 3, 32, 16, 0, 1197, 1199, 5, 269, 0, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 5, 462, 0, 0, 1201, 1202, 5, 80, 0, 0, 1202, 1203, 5, 204, 0, 0, 1203, 1205, 3, 822, 411, 0, 1204, 1178, 1, 0, 0, 0, 1204, 1188, 1, 0, 0, 0, 1204, 1191, 1, 0, 0, 0, 1204, 1194, 1, 0, 0, 0, 1204, 1198, 1, 0, 0, 0, 1205, 23, 1, 0, 0, 0, 1206, 1249, 5, 222, 0, 0, 1207, 1249, 5, 338, 0, 0, 1208, 1249, 5, 377, 0, 0, 1209, 1211, 5, 77, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1249, 5, 250, 0, 0, 1213, 1215, 5, 205, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 5, 327, 0, 0, 1217, 1224, 5, 243, 0, 0, 1218, 1220, 5, 205, 0, 0, 1219, 1218, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 5, 327, 0, 0, 1222, 1224, 5, 181, 0, 0, 1223, 1214, 1, 0, 0, 0, 1223, 1219, 1, 0, 0, 0, 1224, 1249, 1, 0, 0, 0, 1225, 1226, 5, 460, 0, 0, 1226, 1249, 7, 4, 0, 0, 1227, 1228, 5, 170, 0, 0, 1228, 1249, 3, 828, 414, 0, 1229, 1230, 5, 320, 0, 0, 1230, 1249, 3, 822, 411, 0, 1231, 1232, 5, 333, 0, 0, 1232, 1233, 3, 822, 411, 0, 1233, 1236, 7, 5, 0, 0, 1234, 1237, 3, 822, 411, 0, 1235, 1237, 5, 53, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 1249, 1, 0, 0, 0, 1238, 1239, 5, 333, 0, 0, 1239, 1240, 3, 822, 411, 0, 1240, 1241, 5, 64, 0, 0, 1241, 1242, 5, 434, 0, 0, 1242, 1249, 1, 0, 0, 0, 1243, 1246, 5, 313, 0, 0, 1244, 1247, 3, 822, 411, 0, 1245, 1247, 5, 30, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1245, 1, 0, 0, 0, 1247, 1249, 1, 0, 0, 0, 1248, 1206, 1, 0, 0, 0, 1248, 1207, 1, 0, 0, 0, 1248, 1208, 1, 0, 0, 0, 1248, 1210, 1, 0, 0, 0, 1248, 1223, 1, 0, 0, 0, 1248, 1225, 1, 0, 0, 0, 1248, 1227, 1, 0, 0, 0, 1248, 1229, 1, 0, 0, 0, 1248, 1231, 1, 0, 0, 0, 1248, 1238, 1, 0, 0, 0, 1248, 1243, 1, 0, 0, 0, 1249, 25, 1, 0, 0, 0, 1250, 1251, 5, 46, 0, 0, 1251, 1252, 5, 66, 0, 0, 1252, 1254, 3, 818, 409, 0, 1253, 1255, 5, 105, 0, 0, 1254, 1253, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1259, 1, 0, 0, 0, 1256, 1258, 3, 12, 6, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 27, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1263, 5, 138, 0, 0, 1263, 1264, 5, 66, 0, 0, 1264, 1265, 3, 818, 409, 0, 1265, 1266, 7, 6, 0, 0, 1266, 1267, 5, 99, 0, 0, 1267, 1268, 3, 820, 410, 0, 1268, 29, 1, 0, 0, 0, 1269, 1270, 5, 46, 0, 0, 1270, 1272, 5, 323, 0, 0, 1271, 1273, 3, 294, 147, 0, 1272, 1271, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1280, 1, 0, 0, 0, 1274, 1276, 3, 32, 16, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 5, 106, 0, 0, 1278, 1281, 3, 818, 409, 0, 1279, 1281, 3, 32, 16, 0, 1280, 1275, 1, 0, 0, 0, 1280, 1279, 1, 0, 0, 0, 1281, 1285, 1, 0, 0, 0, 1282, 1284, 3, 34, 17, 0, 1283, 1282, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 31, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1288, 1289, 3, 316, 158, 0, 1289, 33, 1, 0, 0, 0, 1290, 1297, 3, 120, 60, 0, 1291, 1297, 3, 358, 179, 0, 1292, 1297, 3, 196, 98, 0, 1293, 1297, 3, 256, 128, 0, 1294, 1297, 3, 334, 167, 0, 1295, 1297, 3, 476, 238, 0, 1296, 1290, 1, 0, 0, 0, 1296, 1291, 1, 0, 0, 0, 1296, 1292, 1, 0, 0, 0, 1296, 1293, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1296, 1295, 1, 0, 0, 0, 1297, 35, 1, 0, 0, 0, 1298, 1300, 5, 333, 0, 0, 1299, 1301, 7, 7, 0, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 3, 38, 19, 0, 1303, 37, 1, 0, 0, 0, 1304, 1305, 5, 356, 0, 0, 1305, 1313, 3, 474, 237, 0, 1306, 1307, 5, 332, 0, 0, 1307, 1308, 5, 154, 0, 0, 1308, 1309, 5, 36, 0, 0, 1309, 1310, 5, 356, 0, 0, 1310, 1313, 3, 474, 237, 0, 1311, 1313, 3, 42, 21, 0, 1312, 1304, 1, 0, 0, 0, 1312, 1306, 1, 0, 0, 0, 1312, 1311, 1, 0, 0, 0, 1313, 39, 1, 0, 0, 0, 1314, 1317, 5, 30, 0, 0, 1315, 1317, 3, 44, 22, 0, 1316, 1314, 1, 0, 0, 0, 1316, 1315, 1, 0, 0, 0, 1317, 1319, 1, 0, 0, 0, 1318, 1320, 7, 5, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1323, 1, 0, 0, 0, 1321, 1324, 5, 53, 0, 0, 1322, 1324, 3, 46, 23, 0, 1323, 1321, 1, 0, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 41, 1, 0, 0, 0, 1325, 1326, 5, 418, 0, 0, 1326, 1327, 5, 386, 0, 0, 1327, 1354, 3, 56, 28, 0, 1328, 1329, 5, 152, 0, 0, 1329, 1354, 3, 812, 406, 0, 1330, 1331, 5, 323, 0, 0, 1331, 1354, 3, 794, 397, 0, 1332, 1335, 5, 267, 0, 0, 1333, 1336, 3, 812, 406, 0, 1334, 1336, 5, 53, 0, 0, 1335, 1333, 1, 0, 0, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1354, 1, 0, 0, 0, 1337, 1338, 5, 318, 0, 0, 1338, 1354, 3, 58, 29, 0, 1339, 1340, 5, 332, 0, 0, 1340, 1341, 5, 106, 0, 0, 1341, 1354, 3, 58, 29, 0, 1342, 1343, 5, 383, 0, 0, 1343, 1344, 5, 279, 0, 0, 1344, 1354, 3, 698, 349, 0, 1345, 1346, 5, 356, 0, 0, 1346, 1347, 5, 337, 0, 0, 1347, 1354, 3, 812, 406, 0, 1348, 1349, 3, 44, 22, 0, 1349, 1350, 5, 64, 0, 0, 1350, 1351, 5, 434, 0, 0, 1351, 1354, 1, 0, 0, 0, 1352, 1354, 3, 40, 20, 0, 1353, 1325, 1, 0, 0, 0, 1353, 1328, 1, 0, 0, 0, 1353, 1330, 1, 0, 0, 0, 1353, 1332, 1, 0, 0, 0, 1353, 1337, 1, 0, 0, 0, 1353, 1339, 1, 0, 0, 0, 1353, 1342, 1, 0, 0, 0, 1353, 1345, 1, 0, 0, 0, 1353, 1348, 1, 0, 0, 0, 1353, 1352, 1, 0, 0, 0, 1354, 43, 1, 0, 0, 0, 1355, 1360, 3, 822, 411, 0, 1356, 1357, 5, 11, 0, 0, 1357, 1359, 3, 822, 411, 0, 1358, 1356, 1, 0, 0, 0, 1359, 1362, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 45, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1368, 3, 48, 24, 0, 1364, 1365, 5, 6, 0, 0, 1365, 1367, 3, 48, 24, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1370, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 47, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1374, 3, 54, 27, 0, 1372, 1374, 3, 202, 101, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 49, 1, 0, 0, 0, 1375, 1376, 5, 300, 0, 0, 1376, 1381, 7, 8, 0, 0, 1377, 1378, 5, 310, 0, 0, 1378, 1381, 5, 300, 0, 0, 1379, 1381, 5, 330, 0, 0, 1380, 1375, 1, 0, 0, 0, 1380, 1377, 1, 0, 0, 0, 1380, 1379, 1, 0, 0, 0, 1381, 51, 1, 0, 0, 0, 1382, 1389, 5, 96, 0, 0, 1383, 1389, 5, 60, 0, 0, 1384, 1389, 5, 80, 0, 0, 1385, 1389, 3, 804, 402, 0, 1386, 1389, 3, 836, 418, 0, 1387, 1389, 3, 812, 406, 0, 1388, 1382, 1, 0, 0, 0, 1388, 1383, 1, 0, 0, 0, 1388, 1384, 1, 0, 0, 0, 1388, 1385, 1, 0, 0, 0, 1388, 1386, 1, 0, 0, 0, 1388, 1387, 1, 0, 0, 0, 1389, 53, 1, 0, 0, 0, 1390, 1395, 5, 96, 0, 0, 1391, 1395, 5, 60, 0, 0, 1392, 1395, 5, 80, 0, 0, 1393, 1395, 3, 58, 29, 0, 1394, 1390, 1, 0, 0, 0, 1394, 1391, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1394, 1393, 1, 0, 0, 0, 1395, 55, 1, 0, 0, 0, 1396, 1411, 3, 812, 406, 0, 1397, 1411, 5, 53, 0, 0, 1398, 1411, 3, 830, 415, 0, 1399, 1400, 5, 403, 0, 0, 1400, 1402, 3, 812, 406, 0, 1401, 1403, 3, 670, 335, 0, 1402, 1401, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1411, 1, 0, 0, 0, 1404, 1405, 5, 403, 0, 0, 1405, 1406, 3, 662, 331, 0, 1406, 1407, 3, 812, 406, 0, 1407, 1411, 1, 0, 0, 0, 1408, 1411, 3, 202, 101, 0, 1409, 1411, 5, 254, 0, 0, 1410, 1396, 1, 0, 0, 0, 1410, 1397, 1, 0, 0, 0, 1410, 1398, 1, 0, 0, 0, 1410, 1399, 1, 0, 0, 0, 1410, 1404, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1409, 1, 0, 0, 0, 1411, 57, 1, 0, 0, 0, 1412, 1415, 3, 826, 413, 0, 1413, 1415, 3, 812, 406, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1413, 1, 0, 0, 0, 1415, 59, 1, 0, 0, 0, 1416, 1417, 5, 313, 0, 0, 1417, 1418, 3, 62, 31, 0, 1418, 61, 1, 0, 0, 0, 1419, 1420, 5, 418, 0, 0, 1420, 1429, 5, 386, 0, 0, 1421, 1422, 5, 356, 0, 0, 1422, 1423, 5, 244, 0, 0, 1423, 1429, 5, 251, 0, 0, 1424, 1425, 5, 332, 0, 0, 1425, 1429, 5, 106, 0, 0, 1426, 1429, 5, 30, 0, 0, 1427, 1429, 3, 44, 22, 0, 1428, 1419, 1, 0, 0, 0, 1428, 1421, 1, 0, 0, 0, 1428, 1424, 1, 0, 0, 0, 1428, 1426, 1, 0, 0, 0, 1428, 1427, 1, 0, 0, 0, 1429, 63, 1, 0, 0, 0, 1430, 1431, 5, 333, 0, 0, 1431, 1434, 3, 38, 19, 0, 1432, 1434, 3, 60, 30, 0, 1433, 1430, 1, 0, 0, 0, 1433, 1432, 1, 0, 0, 0, 1434, 65, 1, 0, 0, 0, 1435, 1436, 5, 333, 0, 0, 1436, 1439, 3, 42, 21, 0, 1437, 1439, 3, 60, 30, 0, 1438, 1435, 1, 0, 0, 0, 1438, 1437, 1, 0, 0, 0, 1439, 67, 1, 0, 0, 0, 1440, 1450, 5, 335, 0, 0, 1441, 1451, 3, 44, 22, 0, 1442, 1443, 5, 418, 0, 0, 1443, 1451, 5, 386, 0, 0, 1444, 1445, 5, 356, 0, 0, 1445, 1446, 5, 244, 0, 0, 1446, 1451, 5, 251, 0, 0, 1447, 1448, 5, 332, 0, 0, 1448, 1451, 5, 106, 0, 0, 1449, 1451, 5, 30, 0, 0, 1450, 1441, 1, 0, 0, 0, 1450, 1442, 1, 0, 0, 0, 1450, 1444, 1, 0, 0, 0, 1450, 1447, 1, 0, 0, 0, 1450, 1449, 1, 0, 0, 0, 1451, 69, 1, 0, 0, 0, 1452, 1453, 5, 333, 0, 0, 1453, 1456, 5, 165, 0, 0, 1454, 1457, 5, 30, 0, 0, 1455, 1457, 3, 764, 382, 0, 1456, 1454, 1, 0, 0, 0, 1456, 1455, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 7, 9, 0, 0, 1459, 71, 1, 0, 0, 0, 1460, 1461, 5, 155, 0, 0, 1461, 73, 1, 0, 0, 0, 1462, 1463, 5, 187, 0, 0, 1463, 1464, 7, 10, 0, 0, 1464, 75, 1, 0, 0, 0, 1465, 1466, 5, 138, 0, 0, 1466, 1468, 5, 92, 0, 0, 1467, 1469, 3, 422, 211, 0, 1468, 1467, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1473, 3, 626, 313, 0, 1471, 1474, 3, 78, 39, 0, 1472, 1474, 3, 88, 44, 0, 1473, 1471, 1, 0, 0, 0, 1473, 1472, 1, 0, 0, 0, 1474, 1587, 1, 0, 0, 0, 1475, 1476, 5, 138, 0, 0, 1476, 1477, 5, 92, 0, 0, 1477, 1478, 5, 30, 0, 0, 1478, 1479, 5, 68, 0, 0, 1479, 1483, 3, 176, 88, 0, 1480, 1481, 5, 281, 0, 0, 1481, 1482, 5, 147, 0, 0, 1482, 1484, 3, 820, 410, 0, 1483, 1480, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 5, 333, 0, 0, 1486, 1487, 5, 351, 0, 0, 1487, 1489, 3, 772, 386, 0, 1488, 1490, 5, 272, 0, 0, 1489, 1488, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1587, 1, 0, 0, 0, 1491, 1492, 5, 138, 0, 0, 1492, 1494, 5, 92, 0, 0, 1493, 1495, 3, 422, 211, 0, 1494, 1493, 1, 0, 0, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 3, 778, 389, 0, 1497, 1502, 3, 90, 45, 0, 1498, 1499, 5, 62, 0, 0, 1499, 1500, 5, 422, 0, 0, 1500, 1503, 3, 80, 40, 0, 1501, 1503, 5, 53, 0, 0, 1502, 1498, 1, 0, 0, 0, 1502, 1501, 1, 0, 0, 0, 1503, 1587, 1, 0, 0, 0, 1504, 1505, 5, 138, 0, 0, 1505, 1507, 5, 92, 0, 0, 1506, 1508, 3, 422, 211, 0, 1507, 1506, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 3, 778, 389, 0, 1510, 1511, 5, 436, 0, 0, 1511, 1512, 5, 285, 0, 0, 1512, 1514, 3, 784, 392, 0, 1513, 1515, 7, 11, 0, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1587, 1, 0, 0, 0, 1516, 1517, 5, 138, 0, 0, 1517, 1519, 5, 226, 0, 0, 1518, 1520, 3, 422, 211, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1524, 3, 784, 392, 0, 1522, 1525, 3, 78, 39, 0, 1523, 1525, 3, 90, 45, 0, 1524, 1522, 1, 0, 0, 0, 1524, 1523, 1, 0, 0, 0, 1525, 1587, 1, 0, 0, 0, 1526, 1527, 5, 138, 0, 0, 1527, 1528, 5, 226, 0, 0, 1528, 1529, 5, 30, 0, 0, 1529, 1530, 5, 68, 0, 0, 1530, 1534, 3, 176, 88, 0, 1531, 1532, 5, 281, 0, 0, 1532, 1533, 5, 147, 0, 0, 1533, 1535, 3, 820, 410, 0, 1534, 1531, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 5, 333, 0, 0, 1537, 1539, 3, 176, 88, 0, 1538, 1540, 5, 272, 0, 0, 1539, 1538, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1587, 1, 0, 0, 0, 1541, 1542, 5, 138, 0, 0, 1542, 1544, 5, 328, 0, 0, 1543, 1545, 3, 422, 211, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 3, 784, 392, 0, 1547, 1548, 3, 78, 39, 0, 1548, 1587, 1, 0, 0, 0, 1549, 1551, 5, 138, 0, 0, 1550, 1552, 5, 259, 0, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 5, 376, 0, 0, 1554, 1556, 3, 422, 211, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 3, 782, 391, 0, 1558, 1559, 3, 78, 39, 0, 1559, 1587, 1, 0, 0, 0, 1560, 1561, 5, 138, 0, 0, 1561, 1562, 5, 259, 0, 0, 1562, 1563, 5, 376, 0, 0, 1563, 1564, 5, 30, 0, 0, 1564, 1565, 5, 68, 0, 0, 1565, 1569, 3, 176, 88, 0, 1566, 1567, 5, 281, 0, 0, 1567, 1568, 5, 147, 0, 0, 1568, 1570, 3, 820, 410, 0, 1569, 1566, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 5, 333, 0, 0, 1572, 1573, 5, 351, 0, 0, 1573, 1575, 3, 772, 386, 0, 1574, 1576, 5, 272, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1587, 1, 0, 0, 0, 1577, 1578, 5, 138, 0, 0, 1578, 1579, 5, 63, 0, 0, 1579, 1581, 5, 92, 0, 0, 1580, 1582, 3, 422, 211, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 3, 626, 313, 0, 1584, 1585, 3, 78, 39, 0, 1585, 1587, 1, 0, 0, 0, 1586, 1465, 1, 0, 0, 0, 1586, 1475, 1, 0, 0, 0, 1586, 1491, 1, 0, 0, 0, 1586, 1504, 1, 0, 0, 0, 1586, 1516, 1, 0, 0, 0, 1586, 1526, 1, 0, 0, 0, 1586, 1541, 1, 0, 0, 0, 1586, 1549, 1, 0, 0, 0, 1586, 1560, 1, 0, 0, 0, 1586, 1577, 1, 0, 0, 0, 1587, 77, 1, 0, 0, 0, 1588, 1593, 3, 92, 46, 0, 1589, 1590, 5, 6, 0, 0, 1590, 1592, 3, 92, 46, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 79, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 5, 68, 0, 0, 1597, 1606, 3, 534, 267, 0, 1598, 1599, 5, 64, 0, 0, 1599, 1600, 3, 82, 41, 0, 1600, 1601, 5, 94, 0, 0, 1601, 1602, 3, 82, 41, 0, 1602, 1606, 1, 0, 0, 0, 1603, 1604, 5, 105, 0, 0, 1604, 1606, 3, 86, 43, 0, 1605, 1596, 1, 0, 0, 0, 1605, 1598, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1606, 81, 1, 0, 0, 0, 1607, 1608, 5, 2, 0, 0, 1608, 1613, 3, 84, 42, 0, 1609, 1610, 5, 6, 0, 0, 1610, 1612, 3, 84, 42, 0, 1611, 1609, 1, 0, 0, 0, 1612, 1615, 1, 0, 0, 0, 1613, 1611, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1616, 1, 0, 0, 0, 1615, 1613, 1, 0, 0, 0, 1616, 1617, 5, 3, 0, 0, 1617, 83, 1, 0, 0, 0, 1618, 1622, 3, 534, 267, 0, 1619, 1622, 5, 262, 0, 0, 1620, 1622, 5, 260, 0, 0, 1621, 1618, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1620, 1, 0, 0, 0, 1622, 85, 1, 0, 0, 0, 1623, 1624, 5, 2, 0, 0, 1624, 1625, 5, 533, 0, 0, 1625, 1626, 3, 202, 101, 0, 1626, 1627, 5, 6, 0, 0, 1627, 1628, 5, 534, 0, 0, 1628, 1629, 3, 202, 101, 0, 1629, 1630, 5, 3, 0, 0, 1630, 87, 1, 0, 0, 0, 1631, 1632, 3, 90, 45, 0, 1632, 1633, 3, 106, 53, 0, 1633, 1638, 1, 0, 0, 0, 1634, 1635, 5, 436, 0, 0, 1635, 1636, 5, 285, 0, 0, 1636, 1638, 3, 784, 392, 0, 1637, 1631, 1, 0, 0, 0, 1637, 1634, 1, 0, 0, 0, 1638, 89, 1, 0, 0, 0, 1639, 1640, 5, 435, 0, 0, 1640, 1641, 5, 285, 0, 0, 1641, 1642, 3, 784, 392, 0, 1642, 91, 1, 0, 0, 0, 1643, 1646, 5, 133, 0, 0, 1644, 1645, 5, 45, 0, 0, 1645, 1647, 3, 822, 411, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1877, 3, 142, 71, 0, 1649, 1650, 5, 138, 0, 0, 1650, 1651, 5, 45, 0, 0, 1651, 1655, 3, 822, 411, 0, 1652, 1654, 3, 272, 136, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1657, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1877, 1, 0, 0, 0, 1657, 1655, 1, 0, 0, 0, 1658, 1659, 5, 372, 0, 0, 1659, 1660, 5, 45, 0, 0, 1660, 1877, 3, 822, 411, 0, 1661, 1662, 5, 191, 0, 0, 1662, 1664, 5, 45, 0, 0, 1663, 1665, 3, 422, 211, 0, 1664, 1663, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1668, 3, 822, 411, 0, 1667, 1669, 3, 96, 48, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1877, 1, 0, 0, 0, 1670, 1671, 5, 333, 0, 0, 1671, 1672, 5, 379, 0, 0, 1672, 1877, 7, 12, 0, 0, 1673, 1674, 5, 158, 0, 0, 1674, 1675, 5, 80, 0, 0, 1675, 1877, 3, 822, 411, 0, 1676, 1677, 5, 333, 0, 0, 1677, 1877, 7, 13, 0, 0, 1678, 1680, 5, 193, 0, 0, 1679, 1681, 7, 14, 0, 0, 1680, 1679, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1877, 5, 357, 0, 0, 1683, 1684, 5, 186, 0, 0, 1684, 1688, 5, 357, 0, 0, 1685, 1689, 5, 30, 0, 0, 1686, 1689, 5, 99, 0, 0, 1687, 1689, 3, 822, 411, 0, 1688, 1685, 1, 0, 0, 0, 1688, 1686, 1, 0, 0, 0, 1688, 1687, 1, 0, 0, 0, 1689, 1877, 1, 0, 0, 0, 1690, 1691, 5, 193, 0, 0, 1691, 1692, 7, 14, 0, 0, 1692, 1693, 5, 321, 0, 0, 1693, 1877, 3, 822, 411, 0, 1694, 1695, 5, 186, 0, 0, 1695, 1696, 5, 321, 0, 0, 1696, 1877, 3, 822, 411, 0, 1697, 1699, 5, 269, 0, 0, 1698, 1697, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 5, 228, 0, 0, 1701, 1877, 3, 784, 392, 0, 1702, 1703, 5, 275, 0, 0, 1703, 1877, 3, 316, 158, 0, 1704, 1705, 5, 77, 0, 0, 1705, 1877, 5, 275, 0, 0, 1706, 1707, 5, 282, 0, 0, 1707, 1708, 5, 94, 0, 0, 1708, 1877, 3, 818, 409, 0, 1709, 1710, 5, 333, 0, 0, 1710, 1711, 5, 351, 0, 0, 1711, 1877, 3, 772, 386, 0, 1712, 1713, 5, 312, 0, 0, 1713, 1718, 5, 219, 0, 0, 1714, 1719, 5, 270, 0, 0, 1715, 1719, 5, 113, 0, 0, 1716, 1719, 5, 53, 0, 0, 1717, 1719, 3, 180, 90, 0, 1718, 1714, 1, 0, 0, 0, 1718, 1715, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1718, 1717, 1, 0, 0, 0, 1719, 1877, 1, 0, 0, 0, 1720, 1727, 5, 193, 0, 0, 1721, 1727, 5, 186, 0, 0, 1722, 1724, 5, 269, 0, 0, 1723, 1722, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1727, 5, 209, 0, 0, 1726, 1720, 1, 0, 0, 0, 1726, 1721, 1, 0, 0, 0, 1726, 1723, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 5, 414, 0, 0, 1729, 1730, 5, 251, 0, 0, 1730, 1877, 5, 327, 0, 0, 1731, 1733, 5, 191, 0, 0, 1732, 1734, 5, 44, 0, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1736, 1, 0, 0, 0, 1735, 1737, 3, 422, 211, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1740, 3, 804, 402, 0, 1739, 1741, 3, 96, 48, 0, 1740, 1739, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1877, 1, 0, 0, 0, 1742, 1744, 5, 133, 0, 0, 1743, 1745, 5, 44, 0, 0, 1744, 1743, 1, 0, 0, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1747, 1, 0, 0, 0, 1746, 1748, 3, 294, 147, 0, 1747, 1746, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1877, 3, 132, 66, 0, 1750, 1752, 5, 138, 0, 0, 1751, 1753, 5, 44, 0, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1757, 3, 804, 402, 0, 1755, 1758, 3, 94, 47, 0, 1756, 1758, 3, 222, 111, 0, 1757, 1755, 1, 0, 0, 0, 1757, 1756, 1, 0, 0, 0, 1758, 1877, 1, 0, 0, 0, 1759, 1761, 5, 138, 0, 0, 1760, 1762, 5, 44, 0, 0, 1761, 1760, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 3, 804, 402, 0, 1764, 1765, 7, 15, 0, 0, 1765, 1766, 5, 77, 0, 0, 1766, 1767, 5, 78, 0, 0, 1767, 1877, 1, 0, 0, 0, 1768, 1770, 5, 138, 0, 0, 1769, 1771, 5, 44, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 3, 804, 402, 0, 1773, 1774, 5, 191, 0, 0, 1774, 1776, 5, 437, 0, 0, 1775, 1777, 3, 422, 211, 0, 1776, 1775, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1877, 1, 0, 0, 0, 1778, 1780, 5, 138, 0, 0, 1779, 1781, 5, 44, 0, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 3, 804, 402, 0, 1783, 1784, 5, 333, 0, 0, 1784, 1785, 5, 342, 0, 0, 1785, 1786, 3, 816, 408, 0, 1786, 1877, 1, 0, 0, 0, 1787, 1789, 5, 138, 0, 0, 1788, 1790, 5, 44, 0, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1793, 3, 804, 402, 0, 1792, 1787, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 7, 16, 0, 0, 1795, 1877, 3, 100, 50, 0, 1796, 1798, 5, 138, 0, 0, 1797, 1799, 5, 44, 0, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 3, 804, 402, 0, 1801, 1802, 5, 333, 0, 0, 1802, 1803, 5, 345, 0, 0, 1803, 1804, 3, 822, 411, 0, 1804, 1877, 1, 0, 0, 0, 1805, 1807, 5, 138, 0, 0, 1806, 1808, 5, 44, 0, 0, 1807, 1806, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1810, 3, 804, 402, 0, 1810, 1811, 5, 133, 0, 0, 1811, 1812, 5, 438, 0, 0, 1812, 1813, 3, 138, 69, 0, 1813, 1814, 5, 36, 0, 0, 1814, 1823, 5, 219, 0, 0, 1815, 1817, 5, 2, 0, 0, 1816, 1818, 3, 200, 100, 0, 1817, 1816, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 5, 3, 0, 0, 1822, 1824, 1, 0, 0, 0, 1823, 1815, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1877, 1, 0, 0, 0, 1825, 1827, 5, 138, 0, 0, 1826, 1828, 5, 44, 0, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1843, 3, 804, 402, 0, 1830, 1835, 5, 314, 0, 0, 1831, 1833, 5, 105, 0, 0, 1832, 1831, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1836, 3, 202, 101, 0, 1835, 1832, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1844, 1, 0, 0, 0, 1837, 1841, 5, 333, 0, 0, 1838, 1842, 3, 200, 100, 0, 1839, 1840, 5, 438, 0, 0, 1840, 1842, 3, 138, 69, 0, 1841, 1838, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1844, 1, 0, 0, 0, 1843, 1830, 1, 0, 0, 0, 1843, 1837, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1877, 1, 0, 0, 0, 1847, 1849, 5, 138, 0, 0, 1848, 1850, 5, 44, 0, 0, 1849, 1848, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1852, 3, 804, 402, 0, 1852, 1853, 5, 191, 0, 0, 1853, 1855, 5, 219, 0, 0, 1854, 1856, 3, 422, 211, 0, 1855, 1854, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1877, 1, 0, 0, 0, 1857, 1859, 5, 138, 0, 0, 1858, 1860, 5, 44, 0, 0, 1859, 1858, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1864, 3, 804, 402, 0, 1862, 1863, 5, 333, 0, 0, 1863, 1865, 5, 174, 0, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 5, 360, 0, 0, 1867, 1869, 3, 654, 327, 0, 1868, 1870, 3, 98, 49, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1873, 1, 0, 0, 0, 1871, 1872, 5, 100, 0, 0, 1872, 1874, 3, 676, 338, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1877, 1, 0, 0, 0, 1875, 1877, 3, 222, 111, 0, 1876, 1643, 1, 0, 0, 0, 1876, 1649, 1, 0, 0, 0, 1876, 1658, 1, 0, 0, 0, 1876, 1661, 1, 0, 0, 0, 1876, 1670, 1, 0, 0, 0, 1876, 1673, 1, 0, 0, 0, 1876, 1676, 1, 0, 0, 0, 1876, 1678, 1, 0, 0, 0, 1876, 1683, 1, 0, 0, 0, 1876, 1690, 1, 0, 0, 0, 1876, 1694, 1, 0, 0, 0, 1876, 1698, 1, 0, 0, 0, 1876, 1702, 1, 0, 0, 0, 1876, 1704, 1, 0, 0, 0, 1876, 1706, 1, 0, 0, 0, 1876, 1709, 1, 0, 0, 0, 1876, 1712, 1, 0, 0, 0, 1876, 1726, 1, 0, 0, 0, 1876, 1731, 1, 0, 0, 0, 1876, 1742, 1, 0, 0, 0, 1876, 1750, 1, 0, 0, 0, 1876, 1759, 1, 0, 0, 0, 1876, 1768, 1, 0, 0, 0, 1876, 1778, 1, 0, 0, 0, 1876, 1792, 1, 0, 0, 0, 1876, 1796, 1, 0, 0, 0, 1876, 1805, 1, 0, 0, 0, 1876, 1825, 1, 0, 0, 0, 1876, 1847, 1, 0, 0, 0, 1876, 1857, 1, 0, 0, 0, 1876, 1875, 1, 0, 0, 0, 1877, 93, 1, 0, 0, 0, 1878, 1879, 5, 333, 0, 0, 1879, 1880, 5, 53, 0, 0, 1880, 1884, 3, 676, 338, 0, 1881, 1882, 5, 191, 0, 0, 1882, 1884, 5, 53, 0, 0, 1883, 1878, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1884, 95, 1, 0, 0, 0, 1885, 1886, 7, 17, 0, 0, 1886, 97, 1, 0, 0, 0, 1887, 1888, 5, 43, 0, 0, 1888, 1889, 3, 316, 158, 0, 1889, 99, 1, 0, 0, 0, 1890, 1891, 5, 2, 0, 0, 1891, 1896, 3, 104, 52, 0, 1892, 1893, 5, 6, 0, 0, 1893, 1895, 3, 104, 52, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1898, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1899, 1, 0, 0, 0, 1898, 1896, 1, 0, 0, 0, 1899, 1900, 5, 3, 0, 0, 1900, 101, 1, 0, 0, 0, 1901, 1902, 5, 105, 0, 0, 1902, 1903, 3, 100, 50, 0, 1903, 103, 1, 0, 0, 0, 1904, 1909, 3, 828, 414, 0, 1905, 1906, 5, 10, 0, 0, 1906, 1910, 3, 288, 144, 0, 1907, 1908, 5, 11, 0, 0, 1908, 1910, 3, 286, 143, 0, 1909, 1905, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 105, 1, 0, 0, 0, 1911, 1912, 5, 62, 0, 0, 1912, 1913, 5, 422, 0, 0, 1913, 1914, 5, 105, 0, 0, 1914, 1915, 5, 2, 0, 0, 1915, 1916, 5, 533, 0, 0, 1916, 1917, 5, 571, 0, 0, 1917, 1918, 5, 6, 0, 0, 1918, 1919, 5, 534, 0, 0, 1919, 1920, 5, 571, 0, 0, 1920, 1934, 5, 3, 0, 0, 1921, 1922, 5, 62, 0, 0, 1922, 1923, 5, 422, 0, 0, 1923, 1924, 5, 68, 0, 0, 1924, 1934, 3, 534, 267, 0, 1925, 1926, 5, 62, 0, 0, 1926, 1927, 5, 422, 0, 0, 1927, 1928, 5, 64, 0, 0, 1928, 1929, 3, 534, 267, 0, 1929, 1930, 5, 94, 0, 0, 1930, 1931, 3, 534, 267, 0, 1931, 1934, 1, 0, 0, 0, 1932, 1934, 5, 53, 0, 0, 1933, 1911, 1, 0, 0, 0, 1933, 1921, 1, 0, 0, 0, 1933, 1925, 1, 0, 0, 0, 1933, 1932, 1, 0, 0, 0, 1934, 107, 1, 0, 0, 0, 1935, 1936, 5, 138, 0, 0, 1936, 1937, 5, 360, 0, 0, 1937, 1938, 3, 316, 158, 0, 1938, 1943, 3, 110, 55, 0, 1939, 1940, 5, 6, 0, 0, 1940, 1942, 3, 110, 55, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 109, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1947, 5, 133, 0, 0, 1947, 1948, 5, 143, 0, 0, 1948, 1950, 3, 646, 323, 0, 1949, 1951, 3, 96, 48, 0, 1950, 1949, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1977, 1, 0, 0, 0, 1952, 1953, 5, 191, 0, 0, 1953, 1955, 5, 143, 0, 0, 1954, 1956, 3, 422, 211, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1959, 3, 822, 411, 0, 1958, 1960, 3, 96, 48, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1977, 1, 0, 0, 0, 1961, 1962, 5, 138, 0, 0, 1962, 1963, 5, 143, 0, 0, 1963, 1966, 3, 822, 411, 0, 1964, 1965, 5, 333, 0, 0, 1965, 1967, 5, 174, 0, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 5, 360, 0, 0, 1969, 1971, 3, 654, 327, 0, 1970, 1972, 3, 98, 49, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 3, 96, 48, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1946, 1, 0, 0, 0, 1976, 1952, 1, 0, 0, 0, 1976, 1961, 1, 0, 0, 0, 1977, 111, 1, 0, 0, 0, 1978, 1981, 5, 157, 0, 0, 1979, 1982, 3, 822, 411, 0, 1980, 1982, 5, 30, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1980, 1, 0, 0, 0, 1982, 113, 1, 0, 0, 0, 1983, 1985, 5, 169, 0, 0, 1984, 1986, 5, 107, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1989, 3, 778, 389, 0, 1988, 1990, 3, 144, 72, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1993, 7, 18, 0, 0, 1992, 1994, 5, 297, 0, 0, 1993, 1992, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1998, 1, 0, 0, 0, 1995, 1999, 3, 812, 406, 0, 1996, 1999, 5, 343, 0, 0, 1997, 1999, 5, 344, 0, 0, 1998, 1995, 1, 0, 0, 0, 1998, 1996, 1, 0, 0, 0, 1998, 1997, 1, 0, 0, 0, 1999, 2005, 1, 0, 0, 0, 2000, 2002, 5, 100, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 5, 184, 0, 0, 2004, 2006, 3, 812, 406, 0, 2005, 2001, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2008, 1, 0, 0, 0, 2007, 2009, 5, 105, 0, 0, 2008, 2007, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2012, 3, 116, 58, 0, 2011, 2013, 3, 640, 320, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2033, 1, 0, 0, 0, 2014, 2015, 5, 169, 0, 0, 2015, 2016, 5, 2, 0, 0, 2016, 2017, 3, 530, 265, 0, 2017, 2018, 5, 3, 0, 0, 2018, 2020, 5, 94, 0, 0, 2019, 2021, 5, 297, 0, 0, 2020, 2019, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2025, 1, 0, 0, 0, 2022, 2026, 3, 812, 406, 0, 2023, 2026, 5, 343, 0, 0, 2024, 2026, 5, 344, 0, 0, 2025, 2022, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2025, 2024, 1, 0, 0, 0, 2026, 2028, 1, 0, 0, 0, 2027, 2029, 5, 105, 0, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2031, 3, 116, 58, 0, 2031, 2033, 1, 0, 0, 0, 2032, 1983, 1, 0, 0, 0, 2032, 2014, 1, 0, 0, 0, 2033, 115, 1, 0, 0, 0, 2034, 2058, 5, 107, 0, 0, 2035, 2058, 5, 112, 0, 0, 2036, 2038, 7, 19, 0, 0, 2037, 2039, 5, 36, 0, 0, 2038, 2037, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2058, 3, 812, 406, 0, 2041, 2058, 5, 171, 0, 0, 2042, 2058, 5, 216, 0, 0, 2043, 2044, 5, 209, 0, 0, 2044, 2047, 5, 298, 0, 0, 2045, 2048, 3, 148, 74, 0, 2046, 2048, 5, 9, 0, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2046, 1, 0, 0, 0, 2048, 2058, 1, 0, 0, 0, 2049, 2051, 5, 209, 0, 0, 2050, 2052, 5, 77, 0, 0, 2051, 2050, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2054, 5, 78, 0, 0, 2054, 2058, 3, 148, 74, 0, 2055, 2056, 5, 194, 0, 0, 2056, 2058, 3, 812, 406, 0, 2057, 2034, 1, 0, 0, 0, 2057, 2035, 1, 0, 0, 0, 2057, 2036, 1, 0, 0, 0, 2057, 2041, 1, 0, 0, 0, 2057, 2042, 1, 0, 0, 0, 2057, 2043, 1, 0, 0, 0, 2057, 2049, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2058, 2061, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2074, 1, 0, 0, 0, 2061, 2059, 1, 0, 0, 0, 2062, 2063, 5, 2, 0, 0, 2063, 2068, 3, 118, 59, 0, 2064, 2065, 5, 6, 0, 0, 2065, 2067, 3, 118, 59, 0, 2066, 2064, 1, 0, 0, 0, 2067, 2070, 1, 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2071, 1, 0, 0, 0, 2070, 2068, 1, 0, 0, 0, 2071, 2072, 5, 3, 0, 0, 2072, 2074, 1, 0, 0, 0, 2073, 2059, 1, 0, 0, 0, 2073, 2062, 1, 0, 0, 0, 2074, 117, 1, 0, 0, 0, 2075, 2090, 3, 828, 414, 0, 2076, 2091, 3, 54, 27, 0, 2077, 2091, 3, 202, 101, 0, 2078, 2091, 5, 9, 0, 0, 2079, 2080, 5, 2, 0, 0, 2080, 2085, 3, 52, 26, 0, 2081, 2082, 5, 6, 0, 0, 2082, 2084, 3, 52, 26, 0, 2083, 2081, 1, 0, 0, 0, 2084, 2087, 1, 0, 0, 0, 2085, 2083, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2088, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2089, 5, 3, 0, 0, 2089, 2091, 1, 0, 0, 0, 2090, 2076, 1, 0, 0, 0, 2090, 2077, 1, 0, 0, 0, 2090, 2078, 1, 0, 0, 0, 2090, 2079, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 119, 1, 0, 0, 0, 2092, 2094, 5, 46, 0, 0, 2093, 2095, 3, 122, 61, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 5, 92, 0, 0, 2097, 2099, 3, 294, 147, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2166, 3, 776, 388, 0, 2101, 2103, 5, 2, 0, 0, 2102, 2104, 3, 126, 63, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2107, 5, 3, 0, 0, 2106, 2108, 3, 164, 82, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2110, 1, 0, 0, 0, 2109, 2111, 3, 166, 83, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2114, 3, 170, 85, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2117, 3, 172, 86, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2119, 1, 0, 0, 0, 2118, 2120, 3, 174, 87, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2123, 3, 176, 88, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2167, 1, 0, 0, 0, 2124, 2125, 5, 275, 0, 0, 2125, 2127, 3, 316, 158, 0, 2126, 2128, 3, 124, 62, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2130, 1, 0, 0, 0, 2129, 2131, 3, 166, 83, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2134, 3, 170, 85, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2136, 1, 0, 0, 0, 2135, 2137, 3, 172, 86, 0, 2136, 2135, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, 2139, 1, 0, 0, 0, 2138, 2140, 3, 174, 87, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2143, 3, 176, 88, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2167, 1, 0, 0, 0, 2144, 2145, 5, 285, 0, 0, 2145, 2146, 5, 275, 0, 0, 2146, 2148, 3, 784, 392, 0, 2147, 2149, 3, 124, 62, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2152, 3, 106, 53, 0, 2151, 2153, 3, 166, 83, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2155, 1, 0, 0, 0, 2154, 2156, 3, 170, 85, 0, 2155, 2154, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2158, 1, 0, 0, 0, 2157, 2159, 3, 172, 86, 0, 2158, 2157, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2161, 1, 0, 0, 0, 2160, 2162, 3, 174, 87, 0, 2161, 2160, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2165, 3, 176, 88, 0, 2164, 2163, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 1, 0, 0, 0, 2166, 2101, 1, 0, 0, 0, 2166, 2124, 1, 0, 0, 0, 2166, 2144, 1, 0, 0, 0, 2167, 121, 1, 0, 0, 0, 2168, 2174, 5, 354, 0, 0, 2169, 2174, 5, 352, 0, 0, 2170, 2171, 7, 20, 0, 0, 2171, 2174, 7, 21, 0, 0, 2172, 2174, 5, 367, 0, 0, 2173, 2168, 1, 0, 0, 0, 2173, 2169, 1, 0, 0, 0, 2173, 2170, 1, 0, 0, 0, 2173, 2172, 1, 0, 0, 0, 2174, 123, 1, 0, 0, 0, 2175, 2176, 5, 2, 0, 0, 2176, 2181, 3, 130, 65, 0, 2177, 2178, 5, 6, 0, 0, 2178, 2180, 3, 130, 65, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2183, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 2184, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2185, 5, 3, 0, 0, 2185, 125, 1, 0, 0, 0, 2186, 2191, 3, 128, 64, 0, 2187, 2188, 5, 6, 0, 0, 2188, 2190, 3, 128, 64, 0, 2189, 2187, 1, 0, 0, 0, 2190, 2193, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 127, 1, 0, 0, 0, 2193, 2191, 1, 0, 0, 0, 2194, 2195, 5, 45, 0, 0, 2195, 2197, 3, 822, 411, 0, 2196, 2194, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2210, 3, 142, 71, 0, 2199, 2210, 3, 132, 66, 0, 2200, 2201, 5, 120, 0, 0, 2201, 2206, 3, 784, 392, 0, 2202, 2203, 7, 22, 0, 0, 2203, 2205, 3, 140, 70, 0, 2204, 2202, 1, 0, 0, 0, 2205, 2208, 1, 0, 0, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2210, 1, 0, 0, 0, 2208, 2206, 1, 0, 0, 0, 2209, 2196, 1, 0, 0, 0, 2209, 2199, 1, 0, 0, 0, 2209, 2200, 1, 0, 0, 0, 2210, 129, 1, 0, 0, 0, 2211, 2214, 3, 806, 403, 0, 2212, 2213, 5, 105, 0, 0, 2213, 2215, 5, 280, 0, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2219, 1, 0, 0, 0, 2216, 2218, 3, 134, 67, 0, 2217, 2216, 1, 0, 0, 0, 2218, 2221, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2228, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2222, 2223, 5, 45, 0, 0, 2223, 2225, 3, 822, 411, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 3, 142, 71, 0, 2227, 2211, 1, 0, 0, 0, 2227, 2224, 1, 0, 0, 0, 2228, 131, 1, 0, 0, 0, 2229, 2230, 3, 806, 403, 0, 2230, 2232, 3, 654, 327, 0, 2231, 2233, 3, 220, 110, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2243, 1, 0, 0, 0, 2234, 2241, 5, 345, 0, 0, 2235, 2242, 5, 544, 0, 0, 2236, 2242, 5, 205, 0, 0, 2237, 2242, 5, 545, 0, 0, 2238, 2242, 5, 546, 0, 0, 2239, 2242, 5, 53, 0, 0, 2240, 2242, 3, 822, 411, 0, 2241, 2235, 1, 0, 0, 0, 2241, 2236, 1, 0, 0, 0, 2241, 2237, 1, 0, 0, 0, 2241, 2238, 1, 0, 0, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2240, 1, 0, 0, 0, 2242, 2244, 1, 0, 0, 0, 2243, 2234, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2247, 1, 0, 0, 0, 2245, 2246, 5, 543, 0, 0, 2246, 2248, 3, 822, 411, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2250, 1, 0, 0, 0, 2249, 2251, 3, 98, 49, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2254, 1, 0, 0, 0, 2252, 2253, 5, 105, 0, 0, 2253, 2255, 5, 280, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 2259, 1, 0, 0, 0, 2256, 2258, 3, 134, 67, 0, 2257, 2256, 1, 0, 0, 0, 2258, 2261, 1, 0, 0, 0, 2259, 2257, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 133, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2263, 5, 45, 0, 0, 2263, 2265, 3, 822, 411, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2271, 3, 136, 68, 0, 2267, 2269, 5, 77, 0, 0, 2268, 2267, 1, 0, 0, 0, 2268, 2269, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 5, 54, 0, 0, 2271, 2268, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2275, 1, 0, 0, 0, 2273, 2274, 5, 69, 0, 0, 2274, 2276, 7, 9, 0, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 135, 1, 0, 0, 0, 2277, 2279, 5, 77, 0, 0, 2278, 2277, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2358, 5, 78, 0, 0, 2281, 2283, 5, 98, 0, 0, 2282, 2284, 3, 400, 200, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2287, 3, 178, 89, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2358, 1, 0, 0, 0, 2288, 2294, 5, 98, 0, 0, 2289, 2291, 5, 273, 0, 0, 2290, 2292, 5, 77, 0, 0, 2291, 2290, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 5, 56, 0, 0, 2294, 2289, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2298, 1, 0, 0, 0, 2296, 2297, 5, 441, 0, 0, 2297, 2299, 3, 360, 180, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2301, 1, 0, 0, 0, 2300, 2302, 3, 572, 286, 0, 2301, 2300, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2305, 3, 178, 89, 0, 2304, 2303, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2358, 1, 0, 0, 0, 2306, 2307, 5, 85, 0, 0, 2307, 2309, 5, 245, 0, 0, 2308, 2310, 3, 400, 200, 0, 2309, 2308, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2312, 1, 0, 0, 0, 2311, 2313, 3, 178, 89, 0, 2312, 2311, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2358, 1, 0, 0, 0, 2314, 2315, 5, 42, 0, 0, 2315, 2316, 5, 2, 0, 0, 2316, 2317, 3, 676, 338, 0, 2317, 2320, 5, 3, 0, 0, 2318, 2319, 5, 269, 0, 0, 2319, 2321, 5, 228, 0, 0, 2320, 2318, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2358, 1, 0, 0, 0, 2322, 2323, 5, 53, 0, 0, 2323, 2358, 3, 684, 342, 0, 2324, 2325, 5, 438, 0, 0, 2325, 2326, 3, 138, 69, 0, 2326, 2343, 5, 36, 0, 0, 2327, 2336, 5, 219, 0, 0, 2328, 2330, 5, 2, 0, 0, 2329, 2331, 3, 200, 100, 0, 2330, 2329, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2330, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 5, 3, 0, 0, 2335, 2337, 1, 0, 0, 0, 2336, 2328, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2344, 1, 0, 0, 0, 2338, 2339, 5, 2, 0, 0, 2339, 2340, 3, 676, 338, 0, 2340, 2341, 5, 3, 0, 0, 2341, 2342, 5, 440, 0, 0, 2342, 2344, 1, 0, 0, 0, 2343, 2327, 1, 0, 0, 0, 2343, 2338, 1, 0, 0, 0, 2344, 2358, 1, 0, 0, 0, 2345, 2346, 5, 86, 0, 0, 2346, 2348, 3, 784, 392, 0, 2347, 2349, 3, 144, 72, 0, 2348, 2347, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2351, 1, 0, 0, 0, 2350, 2352, 3, 152, 76, 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2354, 1, 0, 0, 0, 2353, 2355, 3, 156, 78, 0, 2354, 2353, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2358, 1, 0, 0, 0, 2356, 2358, 3, 98, 49, 0, 2357, 2278, 1, 0, 0, 0, 2357, 2281, 1, 0, 0, 0, 2357, 2288, 1, 0, 0, 0, 2357, 2306, 1, 0, 0, 0, 2357, 2314, 1, 0, 0, 0, 2357, 2322, 1, 0, 0, 0, 2357, 2324, 1, 0, 0, 0, 2357, 2345, 1, 0, 0, 0, 2357, 2356, 1, 0, 0, 0, 2358, 137, 1, 0, 0, 0, 2359, 2363, 5, 139, 0, 0, 2360, 2361, 5, 147, 0, 0, 2361, 2363, 5, 53, 0, 0, 2362, 2359, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2363, 139, 1, 0, 0, 0, 2364, 2365, 7, 23, 0, 0, 2365, 141, 1, 0, 0, 0, 2366, 2367, 5, 42, 0, 0, 2367, 2368, 5, 2, 0, 0, 2368, 2369, 3, 676, 338, 0, 2369, 2373, 5, 3, 0, 0, 2370, 2372, 3, 272, 136, 0, 2371, 2370, 1, 0, 0, 0, 2372, 2375, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 2463, 1, 0, 0, 0, 2375, 2373, 1, 0, 0, 0, 2376, 2380, 5, 98, 0, 0, 2377, 2378, 5, 85, 0, 0, 2378, 2380, 5, 245, 0, 0, 2379, 2376, 1, 0, 0, 0, 2379, 2377, 1, 0, 0, 0, 2380, 2404, 1, 0, 0, 0, 2381, 2383, 3, 144, 72, 0, 2382, 2384, 3, 150, 75, 0, 2383, 2382, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2387, 3, 400, 200, 0, 2386, 2385, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2390, 3, 178, 89, 0, 2389, 2388, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2394, 1, 0, 0, 0, 2391, 2393, 3, 272, 136, 0, 2392, 2391, 1, 0, 0, 0, 2393, 2396, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2405, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2401, 3, 180, 90, 0, 2398, 2400, 3, 272, 136, 0, 2399, 2398, 1, 0, 0, 0, 2400, 2403, 1, 0, 0, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2404, 2381, 1, 0, 0, 0, 2404, 2397, 1, 0, 0, 0, 2405, 2463, 1, 0, 0, 0, 2406, 2408, 5, 199, 0, 0, 2407, 2409, 3, 170, 85, 0, 2408, 2407, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2411, 5, 2, 0, 0, 2411, 2416, 3, 154, 77, 0, 2412, 2413, 5, 6, 0, 0, 2413, 2415, 3, 154, 77, 0, 2414, 2412, 1, 0, 0, 0, 2415, 2418, 1, 0, 0, 0, 2416, 2414, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2419, 1, 0, 0, 0, 2418, 2416, 1, 0, 0, 0, 2419, 2421, 5, 3, 0, 0, 2420, 2422, 3, 150, 75, 0, 2421, 2420, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2424, 1, 0, 0, 0, 2423, 2425, 3, 400, 200, 0, 2424, 2423, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2427, 1, 0, 0, 0, 2426, 2428, 3, 178, 89, 0, 2427, 2426, 1, 0, 0, 0, 2427, 2428, 1, 0, 0, 0, 2428, 2434, 1, 0, 0, 0, 2429, 2430, 5, 103, 0, 0, 2430, 2431, 5, 2, 0, 0, 2431, 2432, 3, 676, 338, 0, 2432, 2433, 5, 3, 0, 0, 2433, 2435, 1, 0, 0, 0, 2434, 2429, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2439, 1, 0, 0, 0, 2436, 2438, 3, 272, 136, 0, 2437, 2436, 1, 0, 0, 0, 2438, 2441, 1, 0, 0, 0, 2439, 2437, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2463, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2442, 2443, 5, 63, 0, 0, 2443, 2444, 5, 245, 0, 0, 2444, 2445, 3, 144, 72, 0, 2445, 2446, 5, 86, 0, 0, 2446, 2448, 3, 784, 392, 0, 2447, 2449, 3, 144, 72, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2451, 1, 0, 0, 0, 2450, 2452, 3, 152, 76, 0, 2451, 2450, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2454, 1, 0, 0, 0, 2453, 2455, 3, 156, 78, 0, 2454, 2453, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2459, 1, 0, 0, 0, 2456, 2458, 3, 272, 136, 0, 2457, 2456, 1, 0, 0, 0, 2458, 2461, 1, 0, 0, 0, 2459, 2457, 1, 0, 0, 0, 2459, 2460, 1, 0, 0, 0, 2460, 2463, 1, 0, 0, 0, 2461, 2459, 1, 0, 0, 0, 2462, 2366, 1, 0, 0, 0, 2462, 2379, 1, 0, 0, 0, 2462, 2406, 1, 0, 0, 0, 2462, 2442, 1, 0, 0, 0, 2463, 143, 1, 0, 0, 0, 2464, 2465, 5, 2, 0, 0, 2465, 2466, 3, 148, 74, 0, 2466, 2467, 5, 3, 0, 0, 2467, 145, 1, 0, 0, 0, 2468, 2469, 5, 2, 0, 0, 2469, 2474, 3, 806, 403, 0, 2470, 2471, 5, 6, 0, 0, 2471, 2473, 3, 806, 403, 0, 2472, 2470, 1, 0, 0, 0, 2473, 2476, 1, 0, 0, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2477, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2477, 2478, 5, 3, 0, 0, 2478, 147, 1, 0, 0, 0, 2479, 2484, 3, 804, 402, 0, 2480, 2481, 5, 6, 0, 0, 2481, 2483, 3, 804, 402, 0, 2482, 2480, 1, 0, 0, 0, 2483, 2486, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 149, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2487, 2488, 5, 441, 0, 0, 2488, 2489, 3, 144, 72, 0, 2489, 151, 1, 0, 0, 0, 2490, 2491, 5, 258, 0, 0, 2491, 2492, 7, 24, 0, 0, 2492, 153, 1, 0, 0, 0, 2493, 2494, 3, 362, 181, 0, 2494, 2501, 5, 105, 0, 0, 2495, 2502, 3, 414, 207, 0, 2496, 2497, 5, 278, 0, 0, 2497, 2498, 5, 2, 0, 0, 2498, 2499, 3, 414, 207, 0, 2499, 2500, 5, 3, 0, 0, 2500, 2502, 1, 0, 0, 0, 2501, 2495, 1, 0, 0, 0, 2501, 2496, 1, 0, 0, 0, 2502, 155, 1, 0, 0, 0, 2503, 2505, 3, 158, 79, 0, 2504, 2506, 3, 160, 80, 0, 2505, 2504, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2512, 1, 0, 0, 0, 2507, 2509, 3, 160, 80, 0, 2508, 2510, 3, 158, 79, 0, 2509, 2508, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2512, 1, 0, 0, 0, 2511, 2503, 1, 0, 0, 0, 2511, 2507, 1, 0, 0, 0, 2512, 157, 1, 0, 0, 0, 2513, 2514, 5, 80, 0, 0, 2514, 2515, 5, 369, 0, 0, 2515, 2516, 3, 162, 81, 0, 2516, 159, 1, 0, 0, 0, 2517, 2518, 5, 80, 0, 0, 2518, 2519, 5, 182, 0, 0, 2519, 2520, 3, 162, 81, 0, 2520, 161, 1, 0, 0, 0, 2521, 2522, 5, 269, 0, 0, 2522, 2531, 5, 132, 0, 0, 2523, 2531, 5, 315, 0, 0, 2524, 2531, 5, 150, 0, 0, 2525, 2526, 5, 333, 0, 0, 2526, 2528, 7, 25, 0, 0, 2527, 2529, 3, 148, 74, 0, 2528, 2527, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2531, 1, 0, 0, 0, 2530, 2521, 1, 0, 0, 0, 2530, 2523, 1, 0, 0, 0, 2530, 2524, 1, 0, 0, 0, 2530, 2525, 1, 0, 0, 0, 2531, 163, 1, 0, 0, 0, 2532, 2533, 5, 238, 0, 0, 2533, 2534, 5, 2, 0, 0, 2534, 2535, 3, 764, 382, 0, 2535, 2536, 5, 3, 0, 0, 2536, 165, 1, 0, 0, 0, 2537, 2538, 5, 285, 0, 0, 2538, 2539, 5, 147, 0, 0, 2539, 2540, 3, 822, 411, 0, 2540, 2541, 5, 2, 0, 0, 2541, 2546, 3, 168, 84, 0, 2542, 2543, 5, 6, 0, 0, 2543, 2545, 3, 168, 84, 0, 2544, 2542, 1, 0, 0, 0, 2545, 2548, 1, 0, 0, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2549, 1, 0, 0, 0, 2548, 2546, 1, 0, 0, 0, 2549, 2550, 5, 3, 0, 0, 2550, 167, 1, 0, 0, 0, 2551, 2558, 3, 804, 402, 0, 2552, 2558, 3, 690, 345, 0, 2553, 2554, 5, 2, 0, 0, 2554, 2555, 3, 676, 338, 0, 2555, 2556, 5, 3, 0, 0, 2556, 2558, 1, 0, 0, 0, 2557, 2551, 1, 0, 0, 0, 2557, 2552, 1, 0, 0, 0, 2557, 2553, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 98, 49, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 316, 158, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 169, 1, 0, 0, 0, 2565, 2566, 5, 100, 0, 0, 2566, 2567, 3, 822, 411, 0, 2567, 171, 1, 0, 0, 0, 2568, 2569, 5, 105, 0, 0, 2569, 2573, 3, 100, 50, 0, 2570, 2571, 7, 26, 0, 0, 2571, 2573, 5, 277, 0, 0, 2572, 2568, 1, 0, 0, 0, 2572, 2570, 1, 0, 0, 0, 2573, 173, 1, 0, 0, 0, 2574, 2575, 5, 80, 0, 0, 2575, 2581, 5, 161, 0, 0, 2576, 2582, 5, 191, 0, 0, 2577, 2578, 5, 182, 0, 0, 2578, 2582, 5, 320, 0, 0, 2579, 2580, 5, 292, 0, 0, 2580, 2582, 5, 320, 0, 0, 2581, 2576, 1, 0, 0, 0, 2581, 2577, 1, 0, 0, 0, 2581, 2579, 1, 0, 0, 0, 2582, 175, 1, 0, 0, 0, 2583, 2584, 5, 351, 0, 0, 2584, 2585, 3, 774, 387, 0, 2585, 177, 1, 0, 0, 0, 2586, 2587, 5, 100, 0, 0, 2587, 2588, 5, 226, 0, 0, 2588, 2589, 3, 176, 88, 0, 2589, 179, 1, 0, 0, 0, 2590, 2591, 5, 100, 0, 0, 2591, 2592, 5, 226, 0, 0, 2592, 2593, 3, 822, 411, 0, 2593, 181, 1, 0, 0, 0, 2594, 2595, 5, 46, 0, 0, 2595, 2600, 5, 342, 0, 0, 2596, 2598, 3, 294, 147, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 3, 316, 158, 0, 2600, 2597, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2603, 1, 0, 0, 0, 2602, 2604, 3, 144, 72, 0, 2603, 2602, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2615, 5, 80, 0, 0, 2606, 2611, 3, 734, 367, 0, 2607, 2608, 5, 6, 0, 0, 2608, 2610, 3, 734, 367, 0, 2609, 2607, 1, 0, 0, 0, 2610, 2613, 1, 0, 0, 0, 2611, 2609, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2616, 1, 0, 0, 0, 2613, 2611, 1, 0, 0, 0, 2614, 2616, 3, 732, 366, 0, 2615, 2606, 1, 0, 0, 0, 2615, 2614, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2618, 3, 610, 305, 0, 2618, 183, 1, 0, 0, 0, 2619, 2620, 5, 138, 0, 0, 2620, 2622, 5, 342, 0, 0, 2621, 2623, 3, 422, 211, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 3, 316, 158, 0, 2625, 2626, 5, 333, 0, 0, 2626, 2627, 5, 342, 0, 0, 2627, 2628, 3, 816, 408, 0, 2628, 185, 1, 0, 0, 0, 2629, 2631, 5, 46, 0, 0, 2630, 2632, 3, 122, 61, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2635, 5, 92, 0, 0, 2634, 2636, 3, 294, 147, 0, 2635, 2634, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2638, 3, 188, 94, 0, 2638, 2639, 5, 36, 0, 0, 2639, 2641, 3, 560, 280, 0, 2640, 2642, 3, 190, 95, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 187, 1, 0, 0, 0, 2643, 2645, 3, 776, 388, 0, 2644, 2646, 3, 146, 73, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 170, 85, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2652, 3, 172, 86, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2654, 1, 0, 0, 0, 2653, 2655, 3, 174, 87, 0, 2654, 2653, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2658, 3, 176, 88, 0, 2657, 2656, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 189, 1, 0, 0, 0, 2659, 2663, 5, 105, 0, 0, 2660, 2664, 5, 174, 0, 0, 2661, 2662, 5, 269, 0, 0, 2662, 2664, 5, 174, 0, 0, 2663, 2660, 1, 0, 0, 0, 2663, 2661, 1, 0, 0, 0, 2664, 191, 1, 0, 0, 0, 2665, 2667, 5, 46, 0, 0, 2666, 2668, 5, 367, 0, 0, 2667, 2666, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 5, 259, 0, 0, 2670, 2672, 5, 376, 0, 0, 2671, 2673, 3, 294, 147, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2676, 3, 780, 390, 0, 2675, 2677, 3, 146, 73, 0, 2676, 2675, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 1, 0, 0, 0, 2678, 2680, 3, 170, 85, 0, 2679, 2678, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2682, 1, 0, 0, 0, 2681, 2683, 3, 102, 51, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2685, 1, 0, 0, 0, 2684, 2686, 3, 176, 88, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 5, 36, 0, 0, 2688, 2690, 3, 560, 280, 0, 2689, 2691, 3, 190, 95, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 193, 1, 0, 0, 0, 2692, 2693, 5, 305, 0, 0, 2693, 2694, 5, 259, 0, 0, 2694, 2696, 5, 376, 0, 0, 2695, 2697, 5, 109, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2700, 3, 782, 391, 0, 2699, 2701, 3, 190, 95, 0, 2700, 2699, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 195, 1, 0, 0, 0, 2702, 2704, 5, 46, 0, 0, 2703, 2705, 3, 122, 61, 0, 2704, 2703, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2708, 5, 328, 0, 0, 2707, 2709, 3, 294, 147, 0, 2708, 2707, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2716, 3, 784, 392, 0, 2711, 2713, 3, 200, 100, 0, 2712, 2711, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2712, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2717, 1, 0, 0, 0, 2716, 2712, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 197, 1, 0, 0, 0, 2718, 2719, 5, 138, 0, 0, 2719, 2721, 5, 328, 0, 0, 2720, 2722, 3, 422, 211, 0, 2721, 2720, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2725, 3, 784, 392, 0, 2724, 2726, 3, 200, 100, 0, 2725, 2724, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 2725, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 199, 1, 0, 0, 0, 2729, 2730, 5, 36, 0, 0, 2730, 2763, 3, 656, 328, 0, 2731, 2733, 5, 148, 0, 0, 2732, 2734, 3, 202, 101, 0, 2733, 2732, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 2763, 1, 0, 0, 0, 2735, 2737, 5, 225, 0, 0, 2736, 2738, 5, 147, 0, 0, 2737, 2736, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2763, 3, 202, 101, 0, 2740, 2741, 7, 27, 0, 0, 2741, 2763, 3, 202, 101, 0, 2742, 2743, 5, 269, 0, 0, 2743, 2763, 7, 28, 0, 0, 2744, 2745, 5, 281, 0, 0, 2745, 2746, 5, 147, 0, 0, 2746, 2763, 3, 804, 402, 0, 2747, 2748, 5, 328, 0, 0, 2748, 2749, 5, 266, 0, 0, 2749, 2763, 3, 316, 158, 0, 2750, 2752, 5, 340, 0, 0, 2751, 2753, 5, 105, 0, 0, 2752, 2751, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2763, 3, 202, 101, 0, 2755, 2757, 5, 314, 0, 0, 2756, 2758, 5, 105, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2761, 3, 202, 101, 0, 2760, 2759, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2763, 1, 0, 0, 0, 2762, 2729, 1, 0, 0, 0, 2762, 2731, 1, 0, 0, 0, 2762, 2735, 1, 0, 0, 0, 2762, 2740, 1, 0, 0, 0, 2762, 2742, 1, 0, 0, 0, 2762, 2744, 1, 0, 0, 0, 2762, 2747, 1, 0, 0, 0, 2762, 2750, 1, 0, 0, 0, 2762, 2755, 1, 0, 0, 0, 2763, 201, 1, 0, 0, 0, 2764, 2766, 7, 29, 0, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2770, 5, 573, 0, 0, 2768, 2770, 3, 816, 408, 0, 2769, 2765, 1, 0, 0, 0, 2769, 2768, 1, 0, 0, 0, 2770, 203, 1, 0, 0, 0, 2771, 2773, 5, 46, 0, 0, 2772, 2774, 3, 366, 183, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2776, 1, 0, 0, 0, 2775, 2777, 5, 359, 0, 0, 2776, 2775, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2779, 1, 0, 0, 0, 2778, 2780, 5, 295, 0, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 5, 247, 0, 0, 2782, 2795, 3, 822, 411, 0, 2783, 2784, 5, 215, 0, 0, 2784, 2787, 3, 316, 158, 0, 2785, 2786, 5, 239, 0, 0, 2786, 2788, 3, 316, 158, 0, 2787, 2785, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2793, 1, 0, 0, 0, 2789, 2790, 5, 373, 0, 0, 2790, 2794, 3, 316, 158, 0, 2791, 2792, 5, 269, 0, 0, 2792, 2794, 5, 373, 0, 0, 2793, 2789, 1, 0, 0, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2796, 1, 0, 0, 0, 2795, 2783, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 205, 1, 0, 0, 0, 2797, 2798, 5, 46, 0, 0, 2798, 2801, 3, 176, 88, 0, 2799, 2800, 5, 282, 0, 0, 2800, 2802, 3, 818, 409, 0, 2801, 2799, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2804, 5, 255, 0, 0, 2804, 2806, 3, 812, 406, 0, 2805, 2807, 3, 102, 51, 0, 2806, 2805, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 207, 1, 0, 0, 0, 2808, 2809, 5, 46, 0, 0, 2809, 2811, 5, 204, 0, 0, 2810, 2812, 3, 294, 147, 0, 2811, 2810, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2815, 3, 822, 411, 0, 2814, 2816, 5, 105, 0, 0, 2815, 2814, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2824, 1, 0, 0, 0, 2817, 2818, 5, 323, 0, 0, 2818, 2823, 3, 794, 397, 0, 2819, 2820, 7, 30, 0, 0, 2820, 2823, 3, 58, 29, 0, 2821, 2823, 5, 150, 0, 0, 2822, 2817, 1, 0, 0, 0, 2822, 2819, 1, 0, 0, 0, 2822, 2821, 1, 0, 0, 0, 2823, 2826, 1, 0, 0, 0, 2824, 2822, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 209, 1, 0, 0, 0, 2826, 2824, 1, 0, 0, 0, 2827, 2828, 5, 138, 0, 0, 2828, 2829, 5, 204, 0, 0, 2829, 2830, 3, 822, 411, 0, 2830, 2835, 5, 369, 0, 0, 2831, 2832, 5, 94, 0, 0, 2832, 2834, 3, 58, 29, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2837, 1, 0, 0, 0, 2835, 2833, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 211, 1, 0, 0, 0, 2837, 2835, 1, 0, 0, 0, 2838, 2839, 5, 138, 0, 0, 2839, 2840, 5, 204, 0, 0, 2840, 2841, 3, 822, 411, 0, 2841, 2874, 7, 6, 0, 0, 2842, 2843, 5, 443, 0, 0, 2843, 2844, 5, 62, 0, 0, 2844, 2845, 3, 654, 327, 0, 2845, 2846, 5, 247, 0, 0, 2846, 2847, 3, 822, 411, 0, 2847, 2875, 1, 0, 0, 0, 2848, 2849, 5, 442, 0, 0, 2849, 2875, 3, 374, 187, 0, 2850, 2851, 5, 296, 0, 0, 2851, 2875, 3, 378, 189, 0, 2852, 2853, 5, 278, 0, 0, 2853, 2854, 7, 31, 0, 0, 2854, 2855, 3, 316, 158, 0, 2855, 2856, 3, 170, 85, 0, 2856, 2875, 1, 0, 0, 0, 2857, 2858, 5, 278, 0, 0, 2858, 2875, 3, 416, 208, 0, 2859, 2860, 5, 211, 0, 0, 2860, 2875, 3, 382, 191, 0, 2861, 2862, 7, 32, 0, 0, 2862, 2875, 3, 654, 327, 0, 2863, 2864, 5, 41, 0, 0, 2864, 2865, 5, 2, 0, 0, 2865, 2866, 3, 654, 327, 0, 2866, 2867, 5, 36, 0, 0, 2867, 2868, 3, 654, 327, 0, 2868, 2869, 5, 3, 0, 0, 2869, 2875, 1, 0, 0, 0, 2870, 2871, 5, 136, 0, 0, 2871, 2875, 3, 394, 197, 0, 2872, 2875, 3, 312, 156, 0, 2873, 2875, 3, 310, 155, 0, 2874, 2842, 1, 0, 0, 0, 2874, 2848, 1, 0, 0, 0, 2874, 2850, 1, 0, 0, 0, 2874, 2852, 1, 0, 0, 0, 2874, 2857, 1, 0, 0, 0, 2874, 2859, 1, 0, 0, 0, 2874, 2861, 1, 0, 0, 0, 2874, 2863, 1, 0, 0, 0, 2874, 2870, 1, 0, 0, 0, 2874, 2872, 1, 0, 0, 0, 2874, 2873, 1, 0, 0, 0, 2875, 213, 1, 0, 0, 0, 2876, 2877, 5, 46, 0, 0, 2877, 2878, 5, 63, 0, 0, 2878, 2879, 5, 174, 0, 0, 2879, 2880, 5, 381, 0, 0, 2880, 2886, 3, 822, 411, 0, 2881, 2883, 3, 216, 108, 0, 2882, 2881, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2882, 1, 0, 0, 0, 2884, 2885, 1, 0, 0, 0, 2885, 2887, 1, 0, 0, 0, 2886, 2882, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2889, 1, 0, 0, 0, 2888, 2890, 3, 220, 110, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 215, 1, 0, 0, 0, 2891, 2893, 7, 33, 0, 0, 2892, 2894, 3, 316, 158, 0, 2893, 2892, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2898, 1, 0, 0, 0, 2895, 2896, 5, 269, 0, 0, 2896, 2898, 7, 33, 0, 0, 2897, 2891, 1, 0, 0, 0, 2897, 2895, 1, 0, 0, 0, 2898, 217, 1, 0, 0, 0, 2899, 2900, 5, 138, 0, 0, 2900, 2901, 5, 63, 0, 0, 2901, 2902, 5, 174, 0, 0, 2902, 2903, 5, 381, 0, 0, 2903, 2917, 3, 822, 411, 0, 2904, 2906, 3, 216, 108, 0, 2905, 2904, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2905, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2910, 1, 0, 0, 0, 2909, 2905, 1, 0, 0, 0, 2909, 2910, 1, 0, 0, 0, 2910, 2911, 1, 0, 0, 0, 2911, 2918, 3, 222, 111, 0, 2912, 2914, 3, 216, 108, 0, 2913, 2912, 1, 0, 0, 0, 2914, 2915, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2918, 1, 0, 0, 0, 2917, 2909, 1, 0, 0, 0, 2917, 2913, 1, 0, 0, 0, 2918, 219, 1, 0, 0, 0, 2919, 2920, 5, 280, 0, 0, 2920, 2921, 5, 2, 0, 0, 2921, 2926, 3, 226, 113, 0, 2922, 2923, 5, 6, 0, 0, 2923, 2925, 3, 226, 113, 0, 2924, 2922, 1, 0, 0, 0, 2925, 2928, 1, 0, 0, 0, 2926, 2924, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2929, 1, 0, 0, 0, 2928, 2926, 1, 0, 0, 0, 2929, 2930, 5, 3, 0, 0, 2930, 221, 1, 0, 0, 0, 2931, 2932, 5, 280, 0, 0, 2932, 2933, 5, 2, 0, 0, 2933, 2938, 3, 224, 112, 0, 2934, 2935, 5, 6, 0, 0, 2935, 2937, 3, 224, 112, 0, 2936, 2934, 1, 0, 0, 0, 2937, 2940, 1, 0, 0, 0, 2938, 2936, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2941, 1, 0, 0, 0, 2940, 2938, 1, 0, 0, 0, 2941, 2942, 5, 3, 0, 0, 2942, 223, 1, 0, 0, 0, 2943, 2944, 7, 34, 0, 0, 2944, 2945, 3, 226, 113, 0, 2945, 225, 1, 0, 0, 0, 2946, 2947, 3, 828, 414, 0, 2947, 2948, 3, 812, 406, 0, 2948, 227, 1, 0, 0, 0, 2949, 2950, 5, 46, 0, 0, 2950, 2952, 5, 331, 0, 0, 2951, 2953, 3, 294, 147, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2957, 3, 822, 411, 0, 2955, 2956, 5, 360, 0, 0, 2956, 2958, 3, 812, 406, 0, 2957, 2955, 1, 0, 0, 0, 2957, 2958, 1, 0, 0, 0, 2958, 2960, 1, 0, 0, 0, 2959, 2961, 3, 230, 115, 0, 2960, 2959, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 2963, 5, 63, 0, 0, 2963, 2964, 5, 174, 0, 0, 2964, 2965, 5, 381, 0, 0, 2965, 2967, 3, 822, 411, 0, 2966, 2968, 3, 220, 110, 0, 2967, 2966, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 229, 1, 0, 0, 0, 2969, 2972, 5, 375, 0, 0, 2970, 2973, 3, 812, 406, 0, 2971, 2973, 5, 78, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2971, 1, 0, 0, 0, 2973, 231, 1, 0, 0, 0, 2974, 2975, 5, 138, 0, 0, 2975, 2976, 5, 331, 0, 0, 2976, 2982, 3, 822, 411, 0, 2977, 2983, 3, 222, 111, 0, 2978, 2980, 3, 230, 115, 0, 2979, 2981, 3, 222, 111, 0, 2980, 2979, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2983, 1, 0, 0, 0, 2982, 2977, 1, 0, 0, 0, 2982, 2978, 1, 0, 0, 0, 2983, 233, 1, 0, 0, 0, 2984, 2985, 5, 46, 0, 0, 2985, 2986, 5, 63, 0, 0, 2986, 2988, 5, 92, 0, 0, 2987, 2989, 3, 294, 147, 0, 2988, 2987, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 3, 776, 388, 0, 2991, 2993, 5, 2, 0, 0, 2992, 2994, 3, 126, 63, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2997, 5, 3, 0, 0, 2996, 2998, 3, 164, 82, 0, 2997, 2996, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3000, 5, 331, 0, 0, 3000, 3002, 3, 822, 411, 0, 3001, 3003, 3, 220, 110, 0, 3002, 3001, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3024, 1, 0, 0, 0, 3004, 3005, 5, 46, 0, 0, 3005, 3006, 5, 63, 0, 0, 3006, 3008, 5, 92, 0, 0, 3007, 3009, 3, 294, 147, 0, 3008, 3007, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 3, 776, 388, 0, 3011, 3012, 5, 285, 0, 0, 3012, 3013, 5, 275, 0, 0, 3013, 3015, 3, 778, 389, 0, 3014, 3016, 3, 124, 62, 0, 3015, 3014, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 3, 106, 53, 0, 3018, 3019, 5, 331, 0, 0, 3019, 3021, 3, 822, 411, 0, 3020, 3022, 3, 220, 110, 0, 3021, 3020, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3024, 1, 0, 0, 0, 3023, 2984, 1, 0, 0, 0, 3023, 3004, 1, 0, 0, 0, 3024, 235, 1, 0, 0, 0, 3025, 3026, 5, 444, 0, 0, 3026, 3027, 5, 63, 0, 0, 3027, 3028, 5, 323, 0, 0, 3028, 3038, 3, 794, 397, 0, 3029, 3030, 5, 74, 0, 0, 3030, 3033, 5, 94, 0, 0, 3031, 3033, 5, 59, 0, 0, 3032, 3029, 1, 0, 0, 0, 3032, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3035, 5, 2, 0, 0, 3035, 3036, 3, 630, 315, 0, 3036, 3037, 5, 3, 0, 0, 3037, 3039, 1, 0, 0, 0, 3038, 3032, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3041, 5, 64, 0, 0, 3041, 3042, 5, 331, 0, 0, 3042, 3043, 3, 822, 411, 0, 3043, 3044, 5, 71, 0, 0, 3044, 3046, 3, 822, 411, 0, 3045, 3047, 3, 220, 110, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 237, 1, 0, 0, 0, 3048, 3049, 5, 46, 0, 0, 3049, 3050, 5, 99, 0, 0, 3050, 3052, 5, 257, 0, 0, 3051, 3053, 3, 294, 147, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3057, 5, 62, 0, 0, 3055, 3058, 3, 818, 409, 0, 3056, 3058, 5, 99, 0, 0, 3057, 3055, 1, 0, 0, 0, 3057, 3056, 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 3060, 5, 331, 0, 0, 3060, 3062, 3, 822, 411, 0, 3061, 3063, 3, 220, 110, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 239, 1, 0, 0, 0, 3064, 3065, 5, 138, 0, 0, 3065, 3066, 5, 99, 0, 0, 3066, 3067, 5, 257, 0, 0, 3067, 3070, 5, 62, 0, 0, 3068, 3071, 3, 818, 409, 0, 3069, 3071, 5, 99, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3069, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 5, 331, 0, 0, 3073, 3074, 3, 822, 411, 0, 3074, 3075, 3, 222, 111, 0, 3075, 241, 1, 0, 0, 0, 3076, 3077, 5, 46, 0, 0, 3077, 3078, 5, 445, 0, 0, 3078, 3079, 3, 822, 411, 0, 3079, 3080, 5, 80, 0, 0, 3080, 3087, 3, 784, 392, 0, 3081, 3085, 5, 36, 0, 0, 3082, 3086, 5, 541, 0, 0, 3083, 3086, 5, 542, 0, 0, 3084, 3086, 3, 830, 415, 0, 3085, 3082, 1, 0, 0, 0, 3085, 3083, 1, 0, 0, 0, 3085, 3084, 1, 0, 0, 0, 3086, 3088, 1, 0, 0, 0, 3087, 3081, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3091, 1, 0, 0, 0, 3089, 3090, 5, 62, 0, 0, 3090, 3092, 7, 35, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3095, 1, 0, 0, 0, 3093, 3094, 5, 94, 0, 0, 3094, 3096, 3, 820, 410, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3098, 1, 0, 0, 0, 3097, 3099, 3, 250, 125, 0, 3098, 3097, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3101, 1, 0, 0, 0, 3100, 3102, 3, 252, 126, 0, 3101, 3100, 1, 0, 0, 0, 3101, 3102, 1, 0, 0, 0, 3102, 243, 1, 0, 0, 0, 3103, 3104, 5, 138, 0, 0, 3104, 3105, 5, 445, 0, 0, 3105, 3106, 3, 822, 411, 0, 3106, 3107, 5, 80, 0, 0, 3107, 3110, 3, 784, 392, 0, 3108, 3109, 5, 94, 0, 0, 3109, 3111, 3, 820, 410, 0, 3110, 3108, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3113, 1, 0, 0, 0, 3112, 3114, 3, 250, 125, 0, 3113, 3112, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3116, 1, 0, 0, 0, 3115, 3117, 3, 252, 126, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 245, 1, 0, 0, 0, 3118, 3119, 5, 138, 0, 0, 3119, 3120, 5, 296, 0, 0, 3120, 3122, 3, 800, 400, 0, 3121, 3123, 3, 368, 184, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3150, 1, 0, 0, 0, 3124, 3128, 3, 248, 124, 0, 3125, 3127, 3, 248, 124, 0, 3126, 3125, 1, 0, 0, 0, 3127, 3130, 1, 0, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 3132, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3133, 5, 315, 0, 0, 3132, 3131, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3151, 1, 0, 0, 0, 3134, 3135, 5, 309, 0, 0, 3135, 3136, 5, 94, 0, 0, 3136, 3151, 3, 802, 401, 0, 3137, 3138, 5, 282, 0, 0, 3138, 3139, 5, 94, 0, 0, 3139, 3151, 3, 818, 409, 0, 3140, 3141, 5, 333, 0, 0, 3141, 3142, 5, 323, 0, 0, 3142, 3151, 3, 32, 16, 0, 3143, 3145, 5, 269, 0, 0, 3144, 3143, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3147, 5, 462, 0, 0, 3147, 3148, 5, 80, 0, 0, 3148, 3149, 5, 204, 0, 0, 3149, 3151, 3, 822, 411, 0, 3150, 3124, 1, 0, 0, 0, 3150, 3134, 1, 0, 0, 0, 3150, 3137, 1, 0, 0, 0, 3150, 3140, 1, 0, 0, 0, 3150, 3144, 1, 0, 0, 0, 3151, 247, 1, 0, 0, 0, 3152, 3154, 5, 205, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3156, 5, 327, 0, 0, 3156, 3163, 5, 243, 0, 0, 3157, 3159, 5, 205, 0, 0, 3158, 3157, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3161, 5, 327, 0, 0, 3161, 3163, 5, 181, 0, 0, 3162, 3153, 1, 0, 0, 0, 3162, 3158, 1, 0, 0, 0, 3163, 3182, 1, 0, 0, 0, 3164, 3165, 5, 333, 0, 0, 3165, 3166, 3, 822, 411, 0, 3166, 3169, 7, 36, 0, 0, 3167, 3170, 3, 822, 411, 0, 3168, 3170, 5, 53, 0, 0, 3169, 3167, 1, 0, 0, 0, 3169, 3168, 1, 0, 0, 0, 3170, 3182, 1, 0, 0, 0, 3171, 3172, 5, 333, 0, 0, 3172, 3173, 3, 822, 411, 0, 3173, 3174, 5, 64, 0, 0, 3174, 3175, 5, 434, 0, 0, 3175, 3182, 1, 0, 0, 0, 3176, 3179, 5, 313, 0, 0, 3177, 3180, 3, 822, 411, 0, 3178, 3180, 5, 30, 0, 0, 3179, 3177, 1, 0, 0, 0, 3179, 3178, 1, 0, 0, 0, 3180, 3182, 1, 0, 0, 0, 3181, 3162, 1, 0, 0, 0, 3181, 3164, 1, 0, 0, 0, 3181, 3171, 1, 0, 0, 0, 3181, 3176, 1, 0, 0, 0, 3182, 249, 1, 0, 0, 0, 3183, 3184, 5, 100, 0, 0, 3184, 3185, 5, 2, 0, 0, 3185, 3186, 3, 676, 338, 0, 3186, 3187, 5, 3, 0, 0, 3187, 251, 1, 0, 0, 0, 3188, 3189, 5, 105, 0, 0, 3189, 3190, 5, 42, 0, 0, 3190, 3191, 5, 2, 0, 0, 3191, 3192, 3, 676, 338, 0, 3192, 3193, 5, 3, 0, 0, 3193, 253, 1, 0, 0, 0, 3194, 3195, 5, 46, 0, 0, 3195, 3196, 5, 131, 0, 0, 3196, 3197, 5, 446, 0, 0, 3197, 3198, 3, 822, 411, 0, 3198, 3199, 5, 360, 0, 0, 3199, 3200, 7, 37, 0, 0, 3200, 3201, 5, 215, 0, 0, 3201, 3202, 3, 316, 158, 0, 3202, 255, 1, 0, 0, 0, 3203, 3205, 5, 46, 0, 0, 3204, 3206, 3, 366, 183, 0, 3205, 3204, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3208, 5, 357, 0, 0, 3208, 3209, 3, 822, 411, 0, 3209, 3210, 3, 258, 129, 0, 3210, 3211, 3, 260, 130, 0, 3211, 3212, 5, 80, 0, 0, 3212, 3224, 3, 778, 389, 0, 3213, 3220, 5, 447, 0, 0, 3214, 3215, 7, 38, 0, 0, 3215, 3217, 7, 39, 0, 0, 3216, 3218, 5, 36, 0, 0, 3217, 3216, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3221, 3, 822, 411, 0, 3220, 3214, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3220, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3213, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3231, 1, 0, 0, 0, 3226, 3228, 5, 62, 0, 0, 3227, 3229, 5, 192, 0, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3232, 7, 40, 0, 0, 3231, 3226, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 264, 132, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3236, 1, 0, 0, 0, 3236, 3237, 5, 202, 0, 0, 3237, 3238, 3, 266, 133, 0, 3238, 3239, 5, 2, 0, 0, 3239, 3240, 3, 268, 134, 0, 3240, 3241, 5, 3, 0, 0, 3241, 3282, 1, 0, 0, 0, 3242, 3244, 5, 46, 0, 0, 3243, 3245, 3, 366, 183, 0, 3244, 3243, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3247, 1, 0, 0, 0, 3246, 3248, 5, 45, 0, 0, 3247, 3246, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3250, 5, 357, 0, 0, 3250, 3251, 3, 822, 411, 0, 3251, 3252, 3, 258, 129, 0, 3252, 3253, 3, 260, 130, 0, 3253, 3254, 5, 80, 0, 0, 3254, 3257, 3, 778, 389, 0, 3255, 3256, 5, 64, 0, 0, 3256, 3258, 3, 784, 392, 0, 3257, 3255, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3262, 1, 0, 0, 0, 3259, 3261, 3, 272, 136, 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, 3270, 1, 0, 0, 0, 3264, 3262, 1, 0, 0, 0, 3265, 3267, 5, 62, 0, 0, 3266, 3268, 5, 192, 0, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 7, 40, 0, 0, 3270, 3265, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3273, 1, 0, 0, 0, 3272, 3274, 3, 264, 132, 0, 3273, 3272, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3276, 5, 202, 0, 0, 3276, 3277, 3, 266, 133, 0, 3277, 3278, 5, 2, 0, 0, 3278, 3279, 3, 268, 134, 0, 3279, 3280, 5, 3, 0, 0, 3280, 3282, 1, 0, 0, 0, 3281, 3203, 1, 0, 0, 0, 3281, 3242, 1, 0, 0, 0, 3282, 257, 1, 0, 0, 0, 3283, 3288, 5, 145, 0, 0, 3284, 3288, 5, 135, 0, 0, 3285, 3286, 5, 242, 0, 0, 3286, 3288, 5, 275, 0, 0, 3287, 3283, 1, 0, 0, 0, 3287, 3284, 1, 0, 0, 0, 3287, 3285, 1, 0, 0, 0, 3288, 259, 1, 0, 0, 0, 3289, 3294, 3, 262, 131, 0, 3290, 3291, 5, 82, 0, 0, 3291, 3293, 3, 262, 131, 0, 3292, 3290, 1, 0, 0, 0, 3293, 3296, 1, 0, 0, 0, 3294, 3292, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 261, 1, 0, 0, 0, 3296, 3294, 1, 0, 0, 0, 3297, 3306, 5, 241, 0, 0, 3298, 3306, 5, 182, 0, 0, 3299, 3302, 5, 369, 0, 0, 3300, 3301, 5, 275, 0, 0, 3301, 3303, 3, 148, 74, 0, 3302, 3300, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3306, 1, 0, 0, 0, 3304, 3306, 5, 358, 0, 0, 3305, 3297, 1, 0, 0, 0, 3305, 3298, 1, 0, 0, 0, 3305, 3299, 1, 0, 0, 0, 3305, 3304, 1, 0, 0, 0, 3306, 263, 1, 0, 0, 0, 3307, 3308, 5, 102, 0, 0, 3308, 3309, 5, 2, 0, 0, 3309, 3310, 3, 676, 338, 0, 3310, 3311, 5, 3, 0, 0, 3311, 265, 1, 0, 0, 0, 3312, 3313, 5, 211, 0, 0, 3313, 3317, 3, 810, 405, 0, 3314, 3315, 5, 296, 0, 0, 3315, 3317, 3, 800, 400, 0, 3316, 3312, 1, 0, 0, 0, 3316, 3314, 1, 0, 0, 0, 3317, 267, 1, 0, 0, 0, 3318, 3321, 3, 270, 135, 0, 3319, 3321, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3320, 3319, 1, 0, 0, 0, 3321, 3326, 1, 0, 0, 0, 3322, 3323, 5, 6, 0, 0, 3323, 3325, 3, 270, 135, 0, 3324, 3322, 1, 0, 0, 0, 3325, 3328, 1, 0, 0, 0, 3326, 3324, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 269, 1, 0, 0, 0, 3328, 3326, 1, 0, 0, 0, 3329, 3334, 5, 571, 0, 0, 3330, 3334, 5, 573, 0, 0, 3331, 3334, 3, 812, 406, 0, 3332, 3334, 3, 828, 414, 0, 3333, 3329, 1, 0, 0, 0, 3333, 3330, 1, 0, 0, 0, 3333, 3331, 1, 0, 0, 0, 3333, 3332, 1, 0, 0, 0, 3334, 271, 1, 0, 0, 0, 3335, 3337, 5, 77, 0, 0, 3336, 3335, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3346, 5, 54, 0, 0, 3339, 3340, 5, 69, 0, 0, 3340, 3346, 7, 9, 0, 0, 3341, 3342, 5, 77, 0, 0, 3342, 3346, 5, 371, 0, 0, 3343, 3344, 5, 269, 0, 0, 3344, 3346, 5, 228, 0, 0, 3345, 3336, 1, 0, 0, 0, 3345, 3339, 1, 0, 0, 0, 3345, 3341, 1, 0, 0, 0, 3345, 3343, 1, 0, 0, 0, 3346, 273, 1, 0, 0, 0, 3347, 3348, 5, 46, 0, 0, 3348, 3349, 5, 198, 0, 0, 3349, 3350, 5, 357, 0, 0, 3350, 3351, 3, 822, 411, 0, 3351, 3352, 5, 80, 0, 0, 3352, 3362, 3, 828, 414, 0, 3353, 3354, 5, 102, 0, 0, 3354, 3359, 3, 276, 138, 0, 3355, 3356, 5, 33, 0, 0, 3356, 3358, 3, 276, 138, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3361, 1, 0, 0, 0, 3359, 3357, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3363, 1, 0, 0, 0, 3361, 3359, 1, 0, 0, 0, 3362, 3353, 1, 0, 0, 0, 3362, 3363, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3365, 5, 202, 0, 0, 3365, 3366, 3, 266, 133, 0, 3366, 3367, 5, 2, 0, 0, 3367, 3368, 5, 3, 0, 0, 3368, 275, 1, 0, 0, 0, 3369, 3370, 3, 822, 411, 0, 3370, 3371, 5, 68, 0, 0, 3371, 3372, 5, 2, 0, 0, 3372, 3376, 3, 812, 406, 0, 3373, 3375, 3, 462, 231, 0, 3374, 3373, 1, 0, 0, 0, 3375, 3378, 1, 0, 0, 0, 3376, 3374, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3379, 1, 0, 0, 0, 3378, 3376, 1, 0, 0, 0, 3379, 3380, 5, 3, 0, 0, 3380, 277, 1, 0, 0, 0, 3381, 3382, 5, 138, 0, 0, 3382, 3383, 5, 198, 0, 0, 3383, 3384, 5, 357, 0, 0, 3384, 3390, 3, 822, 411, 0, 3385, 3387, 5, 193, 0, 0, 3386, 3388, 7, 14, 0, 0, 3387, 3386, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3391, 1, 0, 0, 0, 3389, 3391, 5, 186, 0, 0, 3390, 3385, 1, 0, 0, 0, 3390, 3389, 1, 0, 0, 0, 3391, 279, 1, 0, 0, 0, 3392, 3393, 5, 46, 0, 0, 3393, 3394, 5, 140, 0, 0, 3394, 3395, 3, 316, 158, 0, 3395, 3396, 5, 42, 0, 0, 3396, 3397, 5, 2, 0, 0, 3397, 3398, 3, 676, 338, 0, 3398, 3402, 5, 3, 0, 0, 3399, 3401, 3, 272, 136, 0, 3400, 3399, 1, 0, 0, 0, 3401, 3404, 1, 0, 0, 0, 3402, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 281, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3405, 3407, 5, 46, 0, 0, 3406, 3408, 3, 366, 183, 0, 3407, 3406, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 3410, 5, 136, 0, 0, 3410, 3425, 3, 810, 405, 0, 3411, 3412, 3, 392, 196, 0, 3412, 3413, 3, 284, 142, 0, 3413, 3426, 1, 0, 0, 0, 3414, 3415, 5, 2, 0, 0, 3415, 3420, 3, 290, 145, 0, 3416, 3417, 5, 6, 0, 0, 3417, 3419, 3, 290, 145, 0, 3418, 3416, 1, 0, 0, 0, 3419, 3422, 1, 0, 0, 0, 3420, 3418, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3423, 1, 0, 0, 0, 3422, 3420, 1, 0, 0, 0, 3423, 3424, 5, 3, 0, 0, 3424, 3426, 1, 0, 0, 0, 3425, 3411, 1, 0, 0, 0, 3425, 3414, 1, 0, 0, 0, 3426, 3484, 1, 0, 0, 0, 3427, 3428, 5, 46, 0, 0, 3428, 3429, 5, 278, 0, 0, 3429, 3430, 3, 414, 207, 0, 3430, 3431, 3, 284, 142, 0, 3431, 3484, 1, 0, 0, 0, 3432, 3433, 5, 46, 0, 0, 3433, 3434, 5, 360, 0, 0, 3434, 3435, 3, 316, 158, 0, 3435, 3453, 5, 36, 0, 0, 3436, 3438, 5, 2, 0, 0, 3437, 3439, 3, 644, 322, 0, 3438, 3437, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3454, 5, 3, 0, 0, 3441, 3442, 5, 196, 0, 0, 3442, 3450, 5, 2, 0, 0, 3443, 3447, 3, 812, 406, 0, 3444, 3446, 3, 462, 231, 0, 3445, 3444, 1, 0, 0, 0, 3446, 3449, 1, 0, 0, 0, 3447, 3445, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 3451, 1, 0, 0, 0, 3449, 3447, 1, 0, 0, 0, 3450, 3443, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3454, 5, 3, 0, 0, 3453, 3436, 1, 0, 0, 0, 3453, 3441, 1, 0, 0, 0, 3454, 3484, 1, 0, 0, 0, 3455, 3456, 5, 46, 0, 0, 3456, 3457, 5, 360, 0, 0, 3457, 3463, 3, 316, 158, 0, 3458, 3459, 5, 36, 0, 0, 3459, 3461, 5, 299, 0, 0, 3460, 3458, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 3, 284, 142, 0, 3463, 3460, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 3484, 1, 0, 0, 0, 3465, 3466, 5, 46, 0, 0, 3466, 3467, 5, 355, 0, 0, 3467, 3468, 5, 325, 0, 0, 3468, 3469, 7, 41, 0, 0, 3469, 3470, 3, 316, 158, 0, 3470, 3471, 3, 284, 142, 0, 3471, 3484, 1, 0, 0, 0, 3472, 3473, 5, 46, 0, 0, 3473, 3475, 5, 108, 0, 0, 3474, 3476, 3, 294, 147, 0, 3475, 3474, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3481, 3, 316, 158, 0, 3478, 3482, 3, 284, 142, 0, 3479, 3480, 5, 64, 0, 0, 3480, 3482, 3, 316, 158, 0, 3481, 3478, 1, 0, 0, 0, 3481, 3479, 1, 0, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3405, 1, 0, 0, 0, 3483, 3427, 1, 0, 0, 0, 3483, 3432, 1, 0, 0, 0, 3483, 3455, 1, 0, 0, 0, 3483, 3465, 1, 0, 0, 0, 3483, 3472, 1, 0, 0, 0, 3484, 283, 1, 0, 0, 0, 3485, 3486, 5, 2, 0, 0, 3486, 3491, 3, 286, 143, 0, 3487, 3488, 5, 6, 0, 0, 3488, 3490, 3, 286, 143, 0, 3489, 3487, 1, 0, 0, 0, 3490, 3493, 1, 0, 0, 0, 3491, 3489, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3494, 1, 0, 0, 0, 3493, 3491, 1, 0, 0, 0, 3494, 3495, 5, 3, 0, 0, 3495, 285, 1, 0, 0, 0, 3496, 3499, 3, 828, 414, 0, 3497, 3498, 5, 10, 0, 0, 3498, 3500, 3, 288, 144, 0, 3499, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 287, 1, 0, 0, 0, 3501, 3508, 3, 388, 194, 0, 3502, 3508, 3, 838, 419, 0, 3503, 3508, 3, 728, 364, 0, 3504, 3508, 3, 202, 101, 0, 3505, 3508, 3, 812, 406, 0, 3506, 3508, 5, 407, 0, 0, 3507, 3501, 1, 0, 0, 0, 3507, 3502, 1, 0, 0, 0, 3507, 3503, 1, 0, 0, 0, 3507, 3504, 1, 0, 0, 0, 3507, 3505, 1, 0, 0, 0, 3507, 3506, 1, 0, 0, 0, 3508, 289, 1, 0, 0, 0, 3509, 3510, 3, 830, 415, 0, 3510, 3511, 5, 10, 0, 0, 3511, 3512, 3, 288, 144, 0, 3512, 291, 1, 0, 0, 0, 3513, 3514, 5, 138, 0, 0, 3514, 3515, 5, 360, 0, 0, 3515, 3516, 3, 316, 158, 0, 3516, 3517, 5, 133, 0, 0, 3517, 3519, 5, 450, 0, 0, 3518, 3520, 3, 294, 147, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3524, 3, 812, 406, 0, 3522, 3523, 7, 42, 0, 0, 3523, 3525, 3, 812, 406, 0, 3524, 3522, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3536, 1, 0, 0, 0, 3526, 3527, 5, 138, 0, 0, 3527, 3528, 5, 360, 0, 0, 3528, 3529, 3, 316, 158, 0, 3529, 3530, 5, 309, 0, 0, 3530, 3531, 5, 450, 0, 0, 3531, 3532, 3, 812, 406, 0, 3532, 3533, 5, 94, 0, 0, 3533, 3534, 3, 812, 406, 0, 3534, 3536, 1, 0, 0, 0, 3535, 3513, 1, 0, 0, 0, 3535, 3526, 1, 0, 0, 0, 3536, 293, 1, 0, 0, 0, 3537, 3538, 5, 220, 0, 0, 3538, 3539, 5, 77, 0, 0, 3539, 3540, 5, 396, 0, 0, 3540, 295, 1, 0, 0, 0, 3541, 3542, 5, 46, 0, 0, 3542, 3543, 5, 278, 0, 0, 3543, 3544, 5, 156, 0, 0, 3544, 3546, 3, 316, 158, 0, 3545, 3547, 5, 53, 0, 0, 3546, 3545, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 3549, 5, 62, 0, 0, 3549, 3550, 5, 360, 0, 0, 3550, 3551, 3, 654, 327, 0, 3551, 3554, 3, 170, 85, 0, 3552, 3553, 5, 206, 0, 0, 3553, 3555, 3, 316, 158, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 3557, 5, 36, 0, 0, 3557, 3562, 3, 298, 149, 0, 3558, 3559, 5, 6, 0, 0, 3559, 3561, 3, 298, 149, 0, 3560, 3558, 1, 0, 0, 0, 3561, 3564, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 297, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3565, 3566, 5, 278, 0, 0, 3566, 3567, 5, 571, 0, 0, 3567, 3569, 3, 414, 207, 0, 3568, 3570, 3, 412, 206, 0, 3569, 3568, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3578, 1, 0, 0, 0, 3571, 3576, 5, 62, 0, 0, 3572, 3577, 5, 325, 0, 0, 3573, 3574, 5, 83, 0, 0, 3574, 3575, 5, 147, 0, 0, 3575, 3577, 3, 316, 158, 0, 3576, 3572, 1, 0, 0, 0, 3576, 3573, 1, 0, 0, 0, 3577, 3579, 1, 0, 0, 0, 3578, 3571, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3581, 1, 0, 0, 0, 3580, 3582, 5, 302, 0, 0, 3581, 3580, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3592, 1, 0, 0, 0, 3583, 3584, 5, 211, 0, 0, 3584, 3586, 5, 571, 0, 0, 3585, 3587, 3, 528, 264, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 3592, 3, 382, 191, 0, 3589, 3590, 5, 345, 0, 0, 3590, 3592, 3, 654, 327, 0, 3591, 3565, 1, 0, 0, 0, 3591, 3583, 1, 0, 0, 0, 3591, 3589, 1, 0, 0, 0, 3592, 299, 1, 0, 0, 0, 3593, 3594, 5, 46, 0, 0, 3594, 3595, 5, 278, 0, 0, 3595, 3596, 5, 206, 0, 0, 3596, 3597, 3, 316, 158, 0, 3597, 3598, 3, 170, 85, 0, 3598, 301, 1, 0, 0, 0, 3599, 3600, 5, 138, 0, 0, 3600, 3601, 5, 278, 0, 0, 3601, 3602, 5, 206, 0, 0, 3602, 3603, 3, 316, 158, 0, 3603, 3622, 3, 170, 85, 0, 3604, 3605, 5, 133, 0, 0, 3605, 3610, 3, 298, 149, 0, 3606, 3607, 5, 6, 0, 0, 3607, 3609, 3, 298, 149, 0, 3608, 3606, 1, 0, 0, 0, 3609, 3612, 1, 0, 0, 0, 3610, 3608, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3623, 1, 0, 0, 0, 3612, 3610, 1, 0, 0, 0, 3613, 3614, 5, 191, 0, 0, 3614, 3619, 3, 304, 152, 0, 3615, 3616, 5, 6, 0, 0, 3616, 3618, 3, 304, 152, 0, 3617, 3615, 1, 0, 0, 0, 3618, 3621, 1, 0, 0, 0, 3619, 3617, 1, 0, 0, 0, 3619, 3620, 1, 0, 0, 0, 3620, 3623, 1, 0, 0, 0, 3621, 3619, 1, 0, 0, 0, 3622, 3604, 1, 0, 0, 0, 3622, 3613, 1, 0, 0, 0, 3623, 303, 1, 0, 0, 0, 3624, 3625, 7, 43, 0, 0, 3625, 3626, 5, 571, 0, 0, 3626, 3627, 3, 528, 264, 0, 3627, 305, 1, 0, 0, 0, 3628, 3629, 5, 301, 0, 0, 3629, 3630, 5, 281, 0, 0, 3630, 3631, 5, 147, 0, 0, 3631, 3632, 3, 820, 410, 0, 3632, 3633, 5, 94, 0, 0, 3633, 3634, 3, 818, 409, 0, 3634, 307, 1, 0, 0, 0, 3635, 3658, 5, 191, 0, 0, 3636, 3659, 5, 328, 0, 0, 3637, 3659, 5, 226, 0, 0, 3638, 3659, 5, 108, 0, 0, 3639, 3659, 5, 168, 0, 0, 3640, 3659, 5, 342, 0, 0, 3641, 3659, 5, 452, 0, 0, 3642, 3659, 5, 331, 0, 0, 3643, 3644, 5, 131, 0, 0, 3644, 3659, 5, 446, 0, 0, 3645, 3646, 5, 198, 0, 0, 3646, 3659, 5, 357, 0, 0, 3647, 3659, 5, 204, 0, 0, 3648, 3650, 5, 295, 0, 0, 3649, 3648, 1, 0, 0, 0, 3649, 3650, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3659, 5, 247, 0, 0, 3652, 3653, 5, 63, 0, 0, 3653, 3654, 5, 174, 0, 0, 3654, 3659, 5, 381, 0, 0, 3655, 3656, 5, 355, 0, 0, 3656, 3657, 5, 325, 0, 0, 3657, 3659, 7, 41, 0, 0, 3658, 3636, 1, 0, 0, 0, 3658, 3637, 1, 0, 0, 0, 3658, 3638, 1, 0, 0, 0, 3658, 3639, 1, 0, 0, 0, 3658, 3640, 1, 0, 0, 0, 3658, 3641, 1, 0, 0, 0, 3658, 3642, 1, 0, 0, 0, 3658, 3643, 1, 0, 0, 0, 3658, 3645, 1, 0, 0, 0, 3658, 3647, 1, 0, 0, 0, 3658, 3649, 1, 0, 0, 0, 3658, 3652, 1, 0, 0, 0, 3658, 3655, 1, 0, 0, 0, 3659, 3661, 1, 0, 0, 0, 3660, 3662, 3, 422, 211, 0, 3661, 3660, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3665, 3, 788, 394, 0, 3664, 3666, 3, 96, 48, 0, 3665, 3664, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3843, 1, 0, 0, 0, 3667, 3669, 5, 191, 0, 0, 3668, 3670, 5, 259, 0, 0, 3669, 3668, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3673, 5, 376, 0, 0, 3672, 3674, 3, 422, 211, 0, 3673, 3672, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3680, 3, 782, 391, 0, 3676, 3677, 5, 6, 0, 0, 3677, 3679, 3, 782, 391, 0, 3678, 3676, 1, 0, 0, 0, 3679, 3682, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3684, 1, 0, 0, 0, 3682, 3680, 1, 0, 0, 0, 3683, 3685, 3, 96, 48, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3843, 1, 0, 0, 0, 3686, 3688, 5, 191, 0, 0, 3687, 3689, 5, 63, 0, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3690, 1, 0, 0, 0, 3690, 3692, 5, 92, 0, 0, 3691, 3693, 3, 422, 211, 0, 3692, 3691, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3696, 3, 766, 383, 0, 3695, 3697, 3, 96, 48, 0, 3696, 3695, 1, 0, 0, 0, 3696, 3697, 1, 0, 0, 0, 3697, 3843, 1, 0, 0, 0, 3698, 3699, 5, 191, 0, 0, 3699, 3701, 5, 323, 0, 0, 3700, 3702, 3, 422, 211, 0, 3701, 3700, 1, 0, 0, 0, 3701, 3702, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3705, 3, 768, 384, 0, 3704, 3706, 3, 96, 48, 0, 3705, 3704, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3843, 1, 0, 0, 0, 3707, 3708, 5, 191, 0, 0, 3708, 3710, 7, 44, 0, 0, 3709, 3711, 3, 422, 211, 0, 3710, 3709, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3712, 1, 0, 0, 0, 3712, 3713, 3, 822, 411, 0, 3713, 3714, 5, 80, 0, 0, 3714, 3716, 3, 316, 158, 0, 3715, 3717, 3, 96, 48, 0, 3716, 3715, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3843, 1, 0, 0, 0, 3718, 3719, 5, 191, 0, 0, 3719, 3721, 7, 32, 0, 0, 3720, 3722, 3, 422, 211, 0, 3721, 3720, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3728, 3, 654, 327, 0, 3724, 3725, 5, 6, 0, 0, 3725, 3727, 3, 654, 327, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3730, 1, 0, 0, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3732, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3733, 3, 96, 48, 0, 3732, 3731, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3843, 1, 0, 0, 0, 3734, 3735, 5, 191, 0, 0, 3735, 3736, 5, 226, 0, 0, 3736, 3738, 5, 109, 0, 0, 3737, 3739, 3, 422, 211, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3742, 3, 314, 157, 0, 3741, 3743, 3, 96, 48, 0, 3742, 3741, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3843, 1, 0, 0, 0, 3744, 3745, 5, 191, 0, 0, 3745, 3747, 5, 41, 0, 0, 3746, 3748, 3, 422, 211, 0, 3747, 3746, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3750, 5, 2, 0, 0, 3750, 3751, 3, 654, 327, 0, 3751, 3752, 5, 36, 0, 0, 3752, 3753, 3, 654, 327, 0, 3753, 3755, 5, 3, 0, 0, 3754, 3756, 3, 96, 48, 0, 3755, 3754, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3843, 1, 0, 0, 0, 3757, 3758, 5, 191, 0, 0, 3758, 3759, 5, 278, 0, 0, 3759, 3761, 7, 31, 0, 0, 3760, 3762, 3, 422, 211, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3764, 3, 316, 158, 0, 3764, 3766, 3, 170, 85, 0, 3765, 3767, 3, 96, 48, 0, 3766, 3765, 1, 0, 0, 0, 3766, 3767, 1, 0, 0, 0, 3767, 3843, 1, 0, 0, 0, 3768, 3769, 5, 191, 0, 0, 3769, 3770, 5, 281, 0, 0, 3770, 3771, 5, 147, 0, 0, 3771, 3773, 3, 820, 410, 0, 3772, 3774, 3, 96, 48, 0, 3773, 3772, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3843, 1, 0, 0, 0, 3775, 3776, 5, 191, 0, 0, 3776, 3778, 5, 451, 0, 0, 3777, 3779, 3, 422, 211, 0, 3778, 3777, 1, 0, 0, 0, 3778, 3779, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3782, 3, 822, 411, 0, 3781, 3783, 3, 96, 48, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3843, 1, 0, 0, 0, 3784, 3785, 5, 191, 0, 0, 3785, 3787, 5, 351, 0, 0, 3786, 3788, 3, 422, 211, 0, 3787, 3786, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3843, 3, 774, 387, 0, 3790, 3791, 5, 191, 0, 0, 3791, 3793, 5, 443, 0, 0, 3792, 3794, 3, 422, 211, 0, 3793, 3792, 1, 0, 0, 0, 3793, 3794, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3796, 5, 62, 0, 0, 3796, 3797, 3, 654, 327, 0, 3797, 3798, 5, 247, 0, 0, 3798, 3800, 3, 822, 411, 0, 3799, 3801, 3, 96, 48, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3843, 1, 0, 0, 0, 3802, 3803, 5, 191, 0, 0, 3803, 3805, 7, 45, 0, 0, 3804, 3806, 3, 422, 211, 0, 3805, 3804, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3843, 3, 820, 410, 0, 3808, 3809, 5, 191, 0, 0, 3809, 3810, 5, 99, 0, 0, 3810, 3812, 5, 257, 0, 0, 3811, 3813, 3, 422, 211, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3817, 5, 62, 0, 0, 3815, 3818, 3, 818, 409, 0, 3816, 3818, 5, 99, 0, 0, 3817, 3815, 1, 0, 0, 0, 3817, 3816, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3820, 5, 331, 0, 0, 3820, 3843, 3, 822, 411, 0, 3821, 3822, 5, 191, 0, 0, 3822, 3824, 5, 175, 0, 0, 3823, 3825, 3, 422, 211, 0, 3824, 3823, 1, 0, 0, 0, 3824, 3825, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 3840, 3, 792, 396, 0, 3827, 3829, 5, 105, 0, 0, 3828, 3827, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 3831, 5, 2, 0, 0, 3831, 3836, 5, 209, 0, 0, 3832, 3833, 5, 6, 0, 0, 3833, 3835, 5, 209, 0, 0, 3834, 3832, 1, 0, 0, 0, 3835, 3838, 1, 0, 0, 0, 3836, 3834, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3839, 1, 0, 0, 0, 3838, 3836, 1, 0, 0, 0, 3839, 3841, 5, 3, 0, 0, 3840, 3828, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3635, 1, 0, 0, 0, 3842, 3667, 1, 0, 0, 0, 3842, 3686, 1, 0, 0, 0, 3842, 3698, 1, 0, 0, 0, 3842, 3707, 1, 0, 0, 0, 3842, 3718, 1, 0, 0, 0, 3842, 3734, 1, 0, 0, 0, 3842, 3744, 1, 0, 0, 0, 3842, 3757, 1, 0, 0, 0, 3842, 3768, 1, 0, 0, 0, 3842, 3775, 1, 0, 0, 0, 3842, 3784, 1, 0, 0, 0, 3842, 3790, 1, 0, 0, 0, 3842, 3802, 1, 0, 0, 0, 3842, 3808, 1, 0, 0, 0, 3842, 3821, 1, 0, 0, 0, 3843, 309, 1, 0, 0, 0, 3844, 3846, 5, 63, 0, 0, 3845, 3844, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3847, 1, 0, 0, 0, 3847, 3848, 5, 92, 0, 0, 3848, 3861, 3, 778, 389, 0, 3849, 3851, 5, 259, 0, 0, 3850, 3849, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 3852, 1, 0, 0, 0, 3852, 3853, 5, 376, 0, 0, 3853, 3861, 3, 782, 391, 0, 3854, 3855, 7, 46, 0, 0, 3855, 3861, 3, 316, 158, 0, 3856, 3857, 5, 355, 0, 0, 3857, 3858, 5, 325, 0, 0, 3858, 3859, 7, 41, 0, 0, 3859, 3861, 3, 316, 158, 0, 3860, 3845, 1, 0, 0, 0, 3860, 3850, 1, 0, 0, 0, 3860, 3854, 1, 0, 0, 0, 3860, 3856, 1, 0, 0, 0, 3861, 311, 1, 0, 0, 0, 3862, 3863, 5, 198, 0, 0, 3863, 3879, 5, 357, 0, 0, 3864, 3865, 5, 131, 0, 0, 3865, 3879, 5, 446, 0, 0, 3866, 3879, 5, 204, 0, 0, 3867, 3879, 5, 452, 0, 0, 3868, 3879, 5, 331, 0, 0, 3869, 3879, 5, 318, 0, 0, 3870, 3879, 5, 451, 0, 0, 3871, 3872, 5, 63, 0, 0, 3872, 3873, 5, 174, 0, 0, 3873, 3879, 5, 381, 0, 0, 3874, 3876, 5, 295, 0, 0, 3875, 3874, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 3877, 1, 0, 0, 0, 3877, 3879, 5, 247, 0, 0, 3878, 3862, 1, 0, 0, 0, 3878, 3864, 1, 0, 0, 0, 3878, 3866, 1, 0, 0, 0, 3878, 3867, 1, 0, 0, 0, 3878, 3868, 1, 0, 0, 0, 3878, 3869, 1, 0, 0, 0, 3878, 3870, 1, 0, 0, 0, 3878, 3871, 1, 0, 0, 0, 3878, 3875, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3887, 3, 822, 411, 0, 3881, 3882, 5, 323, 0, 0, 3882, 3887, 3, 794, 397, 0, 3883, 3884, 5, 175, 0, 0, 3884, 3887, 3, 792, 396, 0, 3885, 3887, 3, 176, 88, 0, 3886, 3878, 1, 0, 0, 0, 3886, 3881, 1, 0, 0, 0, 3886, 3883, 1, 0, 0, 0, 3886, 3885, 1, 0, 0, 0, 3887, 313, 1, 0, 0, 0, 3888, 3893, 3, 316, 158, 0, 3889, 3890, 5, 6, 0, 0, 3890, 3892, 3, 316, 158, 0, 3891, 3889, 1, 0, 0, 0, 3892, 3895, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 315, 1, 0, 0, 0, 3895, 3893, 1, 0, 0, 0, 3896, 3898, 3, 822, 411, 0, 3897, 3899, 3, 318, 159, 0, 3898, 3897, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 317, 1, 0, 0, 0, 3900, 3901, 5, 11, 0, 0, 3901, 3903, 3, 828, 414, 0, 3902, 3900, 1, 0, 0, 0, 3903, 3904, 1, 0, 0, 0, 3904, 3902, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 319, 1, 0, 0, 0, 3906, 3908, 5, 358, 0, 0, 3907, 3909, 5, 92, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3915, 3, 322, 161, 0, 3911, 3912, 5, 6, 0, 0, 3912, 3914, 3, 322, 161, 0, 3913, 3911, 1, 0, 0, 0, 3914, 3917, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 3920, 1, 0, 0, 0, 3917, 3915, 1, 0, 0, 0, 3918, 3919, 7, 47, 0, 0, 3919, 3921, 5, 219, 0, 0, 3920, 3918, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3923, 1, 0, 0, 0, 3922, 3924, 3, 96, 48, 0, 3923, 3922, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 321, 1, 0, 0, 0, 3925, 3927, 5, 81, 0, 0, 3926, 3925, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3928, 1, 0, 0, 0, 3928, 3930, 3, 778, 389, 0, 3929, 3931, 5, 9, 0, 0, 3930, 3929, 1, 0, 0, 0, 3930, 3931, 1, 0, 0, 0, 3931, 323, 1, 0, 0, 0, 3932, 3933, 5, 159, 0, 0, 3933, 3992, 5, 80, 0, 0, 3934, 3993, 3, 310, 155, 0, 3935, 3993, 3, 312, 156, 0, 3936, 3937, 5, 44, 0, 0, 3937, 3939, 3, 822, 411, 0, 3938, 3940, 3, 318, 159, 0, 3939, 3938, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 3941, 1, 0, 0, 0, 3941, 3942, 5, 11, 0, 0, 3942, 3943, 3, 804, 402, 0, 3943, 3993, 1, 0, 0, 0, 3944, 3945, 7, 32, 0, 0, 3945, 3993, 3, 654, 327, 0, 3946, 3947, 5, 136, 0, 0, 3947, 3993, 3, 394, 197, 0, 3948, 3949, 5, 211, 0, 0, 3949, 3993, 3, 382, 191, 0, 3950, 3951, 5, 278, 0, 0, 3951, 3993, 3, 416, 208, 0, 3952, 3953, 5, 45, 0, 0, 3953, 3954, 3, 822, 411, 0, 3954, 3960, 5, 80, 0, 0, 3955, 3961, 3, 778, 389, 0, 3956, 3958, 5, 189, 0, 0, 3957, 3956, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3959, 1, 0, 0, 0, 3959, 3961, 3, 316, 158, 0, 3960, 3955, 1, 0, 0, 0, 3960, 3957, 1, 0, 0, 0, 3961, 3993, 1, 0, 0, 0, 3962, 3963, 7, 44, 0, 0, 3963, 3964, 3, 822, 411, 0, 3964, 3965, 5, 80, 0, 0, 3965, 3966, 3, 316, 158, 0, 3966, 3993, 1, 0, 0, 0, 3967, 3968, 5, 296, 0, 0, 3968, 3993, 3, 378, 189, 0, 3969, 3970, 5, 442, 0, 0, 3970, 3993, 3, 374, 187, 0, 3971, 3972, 5, 443, 0, 0, 3972, 3973, 5, 62, 0, 0, 3973, 3974, 3, 654, 327, 0, 3974, 3975, 5, 247, 0, 0, 3975, 3976, 3, 822, 411, 0, 3976, 3993, 1, 0, 0, 0, 3977, 3978, 5, 278, 0, 0, 3978, 3979, 7, 31, 0, 0, 3979, 3980, 3, 316, 158, 0, 3980, 3981, 3, 170, 85, 0, 3981, 3993, 1, 0, 0, 0, 3982, 3983, 5, 248, 0, 0, 3983, 3984, 5, 274, 0, 0, 3984, 3993, 3, 202, 101, 0, 3985, 3986, 5, 41, 0, 0, 3986, 3987, 5, 2, 0, 0, 3987, 3988, 3, 654, 327, 0, 3988, 3989, 5, 36, 0, 0, 3989, 3990, 3, 654, 327, 0, 3990, 3991, 5, 3, 0, 0, 3991, 3993, 1, 0, 0, 0, 3992, 3934, 1, 0, 0, 0, 3992, 3935, 1, 0, 0, 0, 3992, 3936, 1, 0, 0, 0, 3992, 3944, 1, 0, 0, 0, 3992, 3946, 1, 0, 0, 0, 3992, 3948, 1, 0, 0, 0, 3992, 3950, 1, 0, 0, 0, 3992, 3952, 1, 0, 0, 0, 3992, 3962, 1, 0, 0, 0, 3992, 3967, 1, 0, 0, 0, 3992, 3969, 1, 0, 0, 0, 3992, 3971, 1, 0, 0, 0, 3992, 3977, 1, 0, 0, 0, 3992, 3982, 1, 0, 0, 0, 3992, 3985, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 3997, 5, 116, 0, 0, 3995, 3998, 3, 812, 406, 0, 3996, 3998, 5, 78, 0, 0, 3997, 3995, 1, 0, 0, 0, 3997, 3996, 1, 0, 0, 0, 3998, 325, 1, 0, 0, 0, 3999, 4000, 5, 327, 0, 0, 4000, 4003, 5, 246, 0, 0, 4001, 4002, 5, 62, 0, 0, 4002, 4004, 3, 58, 29, 0, 4003, 4001, 1, 0, 0, 0, 4003, 4004, 1, 0, 0, 0, 4004, 4005, 1, 0, 0, 0, 4005, 4023, 5, 80, 0, 0, 4006, 4007, 7, 32, 0, 0, 4007, 4024, 3, 654, 327, 0, 4008, 4009, 5, 136, 0, 0, 4009, 4024, 3, 394, 197, 0, 4010, 4011, 5, 44, 0, 0, 4011, 4024, 3, 804, 402, 0, 4012, 4013, 5, 211, 0, 0, 4013, 4024, 3, 382, 191, 0, 4014, 4015, 5, 248, 0, 0, 4015, 4016, 5, 274, 0, 0, 4016, 4024, 3, 202, 101, 0, 4017, 4018, 5, 296, 0, 0, 4018, 4024, 3, 378, 189, 0, 4019, 4020, 5, 442, 0, 0, 4020, 4024, 3, 374, 187, 0, 4021, 4024, 3, 310, 155, 0, 4022, 4024, 3, 312, 156, 0, 4023, 4006, 1, 0, 0, 0, 4023, 4008, 1, 0, 0, 0, 4023, 4010, 1, 0, 0, 0, 4023, 4012, 1, 0, 0, 0, 4023, 4014, 1, 0, 0, 0, 4023, 4017, 1, 0, 0, 0, 4023, 4019, 1, 0, 0, 0, 4023, 4021, 1, 0, 0, 0, 4023, 4022, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4028, 5, 116, 0, 0, 4026, 4029, 3, 812, 406, 0, 4027, 4029, 5, 78, 0, 0, 4028, 4026, 1, 0, 0, 0, 4028, 4027, 1, 0, 0, 0, 4029, 327, 1, 0, 0, 0, 4030, 4031, 7, 48, 0, 0, 4031, 4032, 3, 330, 165, 0, 4032, 329, 1, 0, 0, 0, 4033, 4035, 7, 49, 0, 0, 4034, 4033, 1, 0, 0, 0, 4034, 4035, 1, 0, 0, 0, 4035, 4037, 1, 0, 0, 0, 4036, 4038, 3, 332, 166, 0, 4037, 4036, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4077, 3, 822, 411, 0, 4040, 4042, 7, 50, 0, 0, 4041, 4040, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4045, 3, 816, 408, 0, 4044, 4046, 3, 332, 166, 0, 4045, 4044, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4048, 3, 822, 411, 0, 4048, 4077, 1, 0, 0, 0, 4049, 4051, 5, 210, 0, 0, 4050, 4052, 3, 816, 408, 0, 4051, 4050, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4054, 1, 0, 0, 0, 4053, 4055, 3, 332, 166, 0, 4054, 4053, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4077, 3, 822, 411, 0, 4057, 4059, 5, 210, 0, 0, 4058, 4057, 1, 0, 0, 0, 4058, 4059, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4062, 5, 30, 0, 0, 4061, 4063, 3, 332, 166, 0, 4062, 4061, 1, 0, 0, 0, 4062, 4063, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4077, 3, 822, 411, 0, 4065, 4070, 5, 144, 0, 0, 4066, 4068, 5, 30, 0, 0, 4067, 4066, 1, 0, 0, 0, 4067, 4068, 1, 0, 0, 0, 4068, 4071, 1, 0, 0, 0, 4069, 4071, 3, 816, 408, 0, 4070, 4067, 1, 0, 0, 0, 4070, 4069, 1, 0, 0, 0, 4071, 4073, 1, 0, 0, 0, 4072, 4074, 3, 332, 166, 0, 4073, 4072, 1, 0, 0, 0, 4073, 4074, 1, 0, 0, 0, 4074, 4075, 1, 0, 0, 0, 4075, 4077, 3, 822, 411, 0, 4076, 4034, 1, 0, 0, 0, 4076, 4041, 1, 0, 0, 0, 4076, 4049, 1, 0, 0, 0, 4076, 4058, 1, 0, 0, 0, 4076, 4065, 1, 0, 0, 0, 4077, 331, 1, 0, 0, 0, 4078, 4079, 7, 51, 0, 0, 4079, 333, 1, 0, 0, 0, 4080, 4081, 5, 65, 0, 0, 4081, 4082, 3, 338, 169, 0, 4082, 4083, 5, 80, 0, 0, 4083, 4084, 3, 344, 172, 0, 4084, 4085, 5, 94, 0, 0, 4085, 4089, 3, 346, 173, 0, 4086, 4087, 5, 105, 0, 0, 4087, 4088, 5, 65, 0, 0, 4088, 4090, 5, 279, 0, 0, 4089, 4086, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 335, 1, 0, 0, 0, 4091, 4095, 5, 317, 0, 0, 4092, 4093, 5, 65, 0, 0, 4093, 4094, 5, 279, 0, 0, 4094, 4096, 5, 62, 0, 0, 4095, 4092, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 4097, 1, 0, 0, 0, 4097, 4098, 3, 338, 169, 0, 4098, 4099, 5, 80, 0, 0, 4099, 4100, 3, 344, 172, 0, 4100, 4101, 5, 64, 0, 0, 4101, 4103, 3, 346, 173, 0, 4102, 4104, 3, 96, 48, 0, 4103, 4102, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 337, 1, 0, 0, 0, 4105, 4110, 3, 342, 171, 0, 4106, 4107, 5, 6, 0, 0, 4107, 4109, 3, 342, 171, 0, 4108, 4106, 1, 0, 0, 0, 4109, 4112, 1, 0, 0, 0, 4110, 4108, 1, 0, 0, 0, 4110, 4111, 1, 0, 0, 0, 4111, 4129, 1, 0, 0, 0, 4112, 4110, 1, 0, 0, 0, 4113, 4115, 5, 30, 0, 0, 4114, 4116, 5, 294, 0, 0, 4115, 4114, 1, 0, 0, 0, 4115, 4116, 1, 0, 0, 0, 4116, 4118, 1, 0, 0, 0, 4117, 4119, 3, 144, 72, 0, 4118, 4117, 1, 0, 0, 0, 4118, 4119, 1, 0, 0, 0, 4119, 4129, 1, 0, 0, 0, 4120, 4125, 3, 340, 170, 0, 4121, 4122, 5, 6, 0, 0, 4122, 4124, 3, 340, 170, 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, 4129, 1, 0, 0, 0, 4127, 4125, 1, 0, 0, 0, 4128, 4105, 1, 0, 0, 0, 4128, 4113, 1, 0, 0, 0, 4128, 4120, 1, 0, 0, 0, 4129, 339, 1, 0, 0, 0, 4130, 4131, 7, 52, 0, 0, 4131, 341, 1, 0, 0, 0, 4132, 4137, 5, 88, 0, 0, 4133, 4137, 5, 86, 0, 0, 4134, 4137, 5, 46, 0, 0, 4135, 4137, 3, 822, 411, 0, 4136, 4132, 1, 0, 0, 0, 4136, 4133, 1, 0, 0, 0, 4136, 4134, 1, 0, 0, 0, 4136, 4135, 1, 0, 0, 0, 4137, 4139, 1, 0, 0, 0, 4138, 4140, 3, 144, 72, 0, 4139, 4138, 1, 0, 0, 0, 4139, 4140, 1, 0, 0, 0, 4140, 343, 1, 0, 0, 0, 4141, 4142, 5, 92, 0, 0, 4142, 4187, 3, 766, 383, 0, 4143, 4145, 5, 328, 0, 0, 4144, 4143, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4146, 1, 0, 0, 0, 4146, 4187, 3, 764, 382, 0, 4147, 4151, 5, 63, 0, 0, 4148, 4149, 5, 174, 0, 0, 4149, 4152, 5, 381, 0, 0, 4150, 4152, 5, 331, 0, 0, 4151, 4148, 1, 0, 0, 0, 4151, 4150, 1, 0, 0, 0, 4152, 4155, 1, 0, 0, 0, 4153, 4155, 5, 247, 0, 0, 4154, 4147, 1, 0, 0, 0, 4154, 4153, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4187, 3, 788, 394, 0, 4157, 4158, 5, 211, 0, 0, 4158, 4187, 3, 380, 190, 0, 4159, 4160, 5, 296, 0, 0, 4160, 4187, 3, 376, 188, 0, 4161, 4162, 5, 442, 0, 0, 4162, 4187, 3, 372, 186, 0, 4163, 4164, 5, 175, 0, 0, 4164, 4187, 3, 770, 385, 0, 4165, 4166, 7, 32, 0, 0, 4166, 4187, 3, 314, 157, 0, 4167, 4168, 5, 248, 0, 0, 4168, 4169, 5, 274, 0, 0, 4169, 4174, 3, 202, 101, 0, 4170, 4171, 5, 6, 0, 0, 4171, 4173, 3, 202, 101, 0, 4172, 4170, 1, 0, 0, 0, 4173, 4176, 1, 0, 0, 0, 4174, 4172, 1, 0, 0, 0, 4174, 4175, 1, 0, 0, 0, 4175, 4187, 1, 0, 0, 0, 4176, 4174, 1, 0, 0, 0, 4177, 4178, 5, 323, 0, 0, 4178, 4187, 3, 768, 384, 0, 4179, 4180, 5, 351, 0, 0, 4180, 4187, 3, 786, 393, 0, 4181, 4182, 5, 30, 0, 0, 4182, 4183, 7, 53, 0, 0, 4183, 4184, 5, 68, 0, 0, 4184, 4185, 5, 323, 0, 0, 4185, 4187, 3, 768, 384, 0, 4186, 4141, 1, 0, 0, 0, 4186, 4144, 1, 0, 0, 0, 4186, 4154, 1, 0, 0, 0, 4186, 4157, 1, 0, 0, 0, 4186, 4159, 1, 0, 0, 0, 4186, 4161, 1, 0, 0, 0, 4186, 4163, 1, 0, 0, 0, 4186, 4165, 1, 0, 0, 0, 4186, 4167, 1, 0, 0, 0, 4186, 4177, 1, 0, 0, 0, 4186, 4179, 1, 0, 0, 0, 4186, 4181, 1, 0, 0, 0, 4187, 345, 1, 0, 0, 0, 4188, 4190, 5, 66, 0, 0, 4189, 4188, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4191, 1, 0, 0, 0, 4191, 4192, 3, 818, 409, 0, 4192, 4200, 1, 0, 0, 0, 4193, 4195, 5, 6, 0, 0, 4194, 4196, 5, 66, 0, 0, 4195, 4194, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 4197, 1, 0, 0, 0, 4197, 4199, 3, 818, 409, 0, 4198, 4193, 1, 0, 0, 0, 4199, 4202, 1, 0, 0, 0, 4200, 4198, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 347, 1, 0, 0, 0, 4202, 4200, 1, 0, 0, 0, 4203, 4204, 5, 65, 0, 0, 4204, 4209, 3, 342, 171, 0, 4205, 4206, 5, 6, 0, 0, 4206, 4208, 3, 342, 171, 0, 4207, 4205, 1, 0, 0, 0, 4208, 4211, 1, 0, 0, 0, 4209, 4207, 1, 0, 0, 0, 4209, 4210, 1, 0, 0, 0, 4210, 4212, 1, 0, 0, 0, 4211, 4209, 1, 0, 0, 0, 4212, 4213, 5, 94, 0, 0, 4213, 4217, 3, 820, 410, 0, 4214, 4215, 5, 105, 0, 0, 4215, 4216, 5, 134, 0, 0, 4216, 4218, 5, 279, 0, 0, 4217, 4214, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4222, 1, 0, 0, 0, 4219, 4220, 5, 214, 0, 0, 4220, 4221, 5, 147, 0, 0, 4221, 4223, 3, 818, 409, 0, 4222, 4219, 1, 0, 0, 0, 4222, 4223, 1, 0, 0, 0, 4223, 349, 1, 0, 0, 0, 4224, 4228, 5, 317, 0, 0, 4225, 4226, 5, 134, 0, 0, 4226, 4227, 5, 279, 0, 0, 4227, 4229, 5, 62, 0, 0, 4228, 4225, 1, 0, 0, 0, 4228, 4229, 1, 0, 0, 0, 4229, 4230, 1, 0, 0, 0, 4230, 4235, 3, 342, 171, 0, 4231, 4232, 5, 6, 0, 0, 4232, 4234, 3, 342, 171, 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, 4238, 1, 0, 0, 0, 4237, 4235, 1, 0, 0, 0, 4238, 4239, 5, 64, 0, 0, 4239, 4243, 3, 820, 410, 0, 4240, 4241, 5, 214, 0, 0, 4241, 4242, 5, 147, 0, 0, 4242, 4244, 3, 818, 409, 0, 4243, 4240, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4246, 1, 0, 0, 0, 4245, 4247, 3, 96, 48, 0, 4246, 4245, 1, 0, 0, 0, 4246, 4247, 1, 0, 0, 0, 4247, 351, 1, 0, 0, 0, 4248, 4249, 5, 138, 0, 0, 4249, 4250, 5, 53, 0, 0, 4250, 4259, 5, 294, 0, 0, 4251, 4252, 5, 68, 0, 0, 4252, 4253, 5, 323, 0, 0, 4253, 4258, 3, 768, 384, 0, 4254, 4255, 5, 62, 0, 0, 4255, 4256, 7, 2, 0, 0, 4256, 4258, 3, 820, 410, 0, 4257, 4251, 1, 0, 0, 0, 4257, 4254, 1, 0, 0, 0, 4258, 4261, 1, 0, 0, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4260, 1, 0, 0, 0, 4260, 4262, 1, 0, 0, 0, 4261, 4259, 1, 0, 0, 0, 4262, 4263, 3, 354, 177, 0, 4263, 353, 1, 0, 0, 0, 4264, 4265, 5, 65, 0, 0, 4265, 4266, 3, 338, 169, 0, 4266, 4267, 5, 80, 0, 0, 4267, 4268, 3, 356, 178, 0, 4268, 4269, 5, 94, 0, 0, 4269, 4273, 3, 346, 173, 0, 4270, 4271, 5, 105, 0, 0, 4271, 4272, 5, 65, 0, 0, 4272, 4274, 5, 279, 0, 0, 4273, 4270, 1, 0, 0, 0, 4273, 4274, 1, 0, 0, 0, 4274, 4290, 1, 0, 0, 0, 4275, 4279, 5, 317, 0, 0, 4276, 4277, 5, 65, 0, 0, 4277, 4278, 5, 279, 0, 0, 4278, 4280, 5, 62, 0, 0, 4279, 4276, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4281, 1, 0, 0, 0, 4281, 4282, 3, 338, 169, 0, 4282, 4283, 5, 80, 0, 0, 4283, 4284, 3, 356, 178, 0, 4284, 4285, 5, 64, 0, 0, 4285, 4287, 3, 346, 173, 0, 4286, 4288, 3, 96, 48, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4290, 1, 0, 0, 0, 4289, 4264, 1, 0, 0, 0, 4289, 4275, 1, 0, 0, 0, 4290, 355, 1, 0, 0, 0, 4291, 4292, 7, 54, 0, 0, 4292, 357, 1, 0, 0, 0, 4293, 4295, 5, 46, 0, 0, 4294, 4296, 5, 98, 0, 0, 4295, 4294, 1, 0, 0, 0, 4295, 4296, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4299, 5, 226, 0, 0, 4298, 4300, 5, 109, 0, 0, 4299, 4298, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 4302, 1, 0, 0, 0, 4301, 4303, 3, 294, 147, 0, 4302, 4301, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4305, 1, 0, 0, 0, 4304, 4306, 3, 822, 411, 0, 4305, 4304, 1, 0, 0, 0, 4305, 4306, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, 0, 4307, 4308, 5, 80, 0, 0, 4308, 4310, 3, 626, 313, 0, 4309, 4311, 3, 170, 85, 0, 4310, 4309, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4312, 1, 0, 0, 0, 4312, 4315, 3, 360, 180, 0, 4313, 4314, 5, 441, 0, 0, 4314, 4316, 3, 360, 180, 0, 4315, 4313, 1, 0, 0, 0, 4315, 4316, 1, 0, 0, 0, 4316, 4322, 1, 0, 0, 0, 4317, 4319, 5, 273, 0, 0, 4318, 4320, 5, 77, 0, 0, 4319, 4318, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4323, 5, 56, 0, 0, 4322, 4317, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 4325, 1, 0, 0, 0, 4324, 4326, 3, 102, 51, 0, 4325, 4324, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 4328, 1, 0, 0, 0, 4327, 4329, 3, 176, 88, 0, 4328, 4327, 1, 0, 0, 0, 4328, 4329, 1, 0, 0, 0, 4329, 4331, 1, 0, 0, 0, 4330, 4332, 3, 640, 320, 0, 4331, 4330, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 359, 1, 0, 0, 0, 4333, 4334, 5, 2, 0, 0, 4334, 4339, 3, 362, 181, 0, 4335, 4336, 5, 6, 0, 0, 4336, 4338, 3, 362, 181, 0, 4337, 4335, 1, 0, 0, 0, 4338, 4341, 1, 0, 0, 0, 4339, 4337, 1, 0, 0, 0, 4339, 4340, 1, 0, 0, 0, 4340, 4342, 1, 0, 0, 0, 4341, 4339, 1, 0, 0, 0, 4342, 4343, 5, 3, 0, 0, 4343, 361, 1, 0, 0, 0, 4344, 4351, 3, 804, 402, 0, 4345, 4351, 3, 690, 345, 0, 4346, 4347, 5, 2, 0, 0, 4347, 4348, 3, 676, 338, 0, 4348, 4349, 5, 3, 0, 0, 4349, 4351, 1, 0, 0, 0, 4350, 4344, 1, 0, 0, 0, 4350, 4345, 1, 0, 0, 0, 4350, 4346, 1, 0, 0, 0, 4351, 4353, 1, 0, 0, 0, 4352, 4354, 3, 98, 49, 0, 4353, 4352, 1, 0, 0, 0, 4353, 4354, 1, 0, 0, 0, 4354, 4361, 1, 0, 0, 0, 4355, 4357, 3, 316, 158, 0, 4356, 4355, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4362, 1, 0, 0, 0, 4358, 4359, 3, 316, 158, 0, 4359, 4360, 3, 100, 50, 0, 4360, 4362, 1, 0, 0, 0, 4361, 4356, 1, 0, 0, 0, 4361, 4358, 1, 0, 0, 0, 4362, 4364, 1, 0, 0, 0, 4363, 4365, 7, 55, 0, 0, 4364, 4363, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 4368, 1, 0, 0, 0, 4366, 4367, 5, 273, 0, 0, 4367, 4369, 7, 56, 0, 0, 4368, 4366, 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 363, 1, 0, 0, 0, 4370, 4372, 5, 46, 0, 0, 4371, 4373, 3, 366, 183, 0, 4372, 4371, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 4378, 1, 0, 0, 0, 4374, 4375, 5, 211, 0, 0, 4375, 4379, 3, 808, 404, 0, 4376, 4377, 5, 296, 0, 0, 4377, 4379, 3, 802, 401, 0, 4378, 4374, 1, 0, 0, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4380, 1, 0, 0, 0, 4380, 4389, 5, 2, 0, 0, 4381, 4386, 3, 390, 195, 0, 4382, 4383, 5, 6, 0, 0, 4383, 4385, 3, 390, 195, 0, 4384, 4382, 1, 0, 0, 0, 4385, 4388, 1, 0, 0, 0, 4386, 4384, 1, 0, 0, 0, 4386, 4387, 1, 0, 0, 0, 4387, 4390, 1, 0, 0, 0, 4388, 4386, 1, 0, 0, 0, 4389, 4381, 1, 0, 0, 0, 4389, 4390, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 4392, 5, 3, 0, 0, 4392, 4409, 1, 0, 0, 0, 4393, 4407, 5, 316, 0, 0, 4394, 4408, 3, 388, 194, 0, 4395, 4396, 5, 92, 0, 0, 4396, 4397, 5, 2, 0, 0, 4397, 4402, 3, 402, 201, 0, 4398, 4399, 5, 6, 0, 0, 4399, 4401, 3, 402, 201, 0, 4400, 4398, 1, 0, 0, 0, 4401, 4404, 1, 0, 0, 0, 4402, 4400, 1, 0, 0, 0, 4402, 4403, 1, 0, 0, 0, 4403, 4405, 1, 0, 0, 0, 4404, 4402, 1, 0, 0, 0, 4405, 4406, 5, 3, 0, 0, 4406, 4408, 1, 0, 0, 0, 4407, 4394, 1, 0, 0, 0, 4407, 4395, 1, 0, 0, 0, 4408, 4410, 1, 0, 0, 0, 4409, 4393, 1, 0, 0, 0, 4409, 4410, 1, 0, 0, 0, 4410, 4412, 1, 0, 0, 0, 4411, 4413, 3, 398, 199, 0, 4412, 4411, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4412, 1, 0, 0, 0, 4414, 4415, 1, 0, 0, 0, 4415, 4421, 1, 0, 0, 0, 4416, 4417, 5, 105, 0, 0, 4417, 4418, 5, 2, 0, 0, 4418, 4419, 3, 788, 394, 0, 4419, 4420, 5, 3, 0, 0, 4420, 4422, 1, 0, 0, 0, 4421, 4416, 1, 0, 0, 0, 4421, 4422, 1, 0, 0, 0, 4422, 365, 1, 0, 0, 0, 4423, 4424, 5, 82, 0, 0, 4424, 4425, 5, 311, 0, 0, 4425, 367, 1, 0, 0, 0, 4426, 4428, 5, 2, 0, 0, 4427, 4429, 3, 370, 185, 0, 4428, 4427, 1, 0, 0, 0, 4428, 4429, 1, 0, 0, 0, 4429, 4430, 1, 0, 0, 0, 4430, 4431, 5, 3, 0, 0, 4431, 369, 1, 0, 0, 0, 4432, 4437, 3, 384, 192, 0, 4433, 4434, 5, 6, 0, 0, 4434, 4436, 3, 384, 192, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4439, 1, 0, 0, 0, 4437, 4435, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 371, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 4445, 3, 374, 187, 0, 4441, 4442, 5, 6, 0, 0, 4442, 4444, 3, 374, 187, 0, 4443, 4441, 1, 0, 0, 0, 4444, 4447, 1, 0, 0, 0, 4445, 4443, 1, 0, 0, 0, 4445, 4446, 1, 0, 0, 0, 4446, 373, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4448, 4449, 3, 798, 399, 0, 4449, 4450, 3, 368, 184, 0, 4450, 4454, 1, 0, 0, 0, 4451, 4454, 3, 836, 418, 0, 4452, 4454, 3, 784, 392, 0, 4453, 4448, 1, 0, 0, 0, 4453, 4451, 1, 0, 0, 0, 4453, 4452, 1, 0, 0, 0, 4454, 375, 1, 0, 0, 0, 4455, 4460, 3, 378, 189, 0, 4456, 4457, 5, 6, 0, 0, 4457, 4459, 3, 378, 189, 0, 4458, 4456, 1, 0, 0, 0, 4459, 4462, 1, 0, 0, 0, 4460, 4458, 1, 0, 0, 0, 4460, 4461, 1, 0, 0, 0, 4461, 377, 1, 0, 0, 0, 4462, 4460, 1, 0, 0, 0, 4463, 4464, 3, 800, 400, 0, 4464, 4465, 3, 368, 184, 0, 4465, 4469, 1, 0, 0, 0, 4466, 4469, 3, 836, 418, 0, 4467, 4469, 3, 784, 392, 0, 4468, 4463, 1, 0, 0, 0, 4468, 4466, 1, 0, 0, 0, 4468, 4467, 1, 0, 0, 0, 4469, 379, 1, 0, 0, 0, 4470, 4475, 3, 382, 191, 0, 4471, 4472, 5, 6, 0, 0, 4472, 4474, 3, 382, 191, 0, 4473, 4471, 1, 0, 0, 0, 4474, 4477, 1, 0, 0, 0, 4475, 4473, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 381, 1, 0, 0, 0, 4477, 4475, 1, 0, 0, 0, 4478, 4479, 3, 810, 405, 0, 4479, 4480, 3, 368, 184, 0, 4480, 4484, 1, 0, 0, 0, 4481, 4484, 3, 836, 418, 0, 4482, 4484, 3, 784, 392, 0, 4483, 4478, 1, 0, 0, 0, 4483, 4481, 1, 0, 0, 0, 4483, 4482, 1, 0, 0, 0, 4484, 383, 1, 0, 0, 0, 4485, 4487, 3, 386, 193, 0, 4486, 4488, 3, 824, 412, 0, 4487, 4486, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 4494, 1, 0, 0, 0, 4489, 4491, 3, 824, 412, 0, 4490, 4492, 3, 386, 193, 0, 4491, 4490, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4494, 1, 0, 0, 0, 4493, 4485, 1, 0, 0, 0, 4493, 4489, 1, 0, 0, 0, 4493, 4494, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4496, 3, 388, 194, 0, 4496, 385, 1, 0, 0, 0, 4497, 4499, 5, 68, 0, 0, 4498, 4500, 5, 453, 0, 0, 4499, 4498, 1, 0, 0, 0, 4499, 4500, 1, 0, 0, 0, 4500, 4505, 1, 0, 0, 0, 4501, 4505, 5, 453, 0, 0, 4502, 4505, 5, 400, 0, 0, 4503, 4505, 5, 101, 0, 0, 4504, 4497, 1, 0, 0, 0, 4504, 4501, 1, 0, 0, 0, 4504, 4502, 1, 0, 0, 0, 4504, 4503, 1, 0, 0, 0, 4505, 387, 1, 0, 0, 0, 4506, 4516, 3, 654, 327, 0, 4507, 4509, 5, 415, 0, 0, 4508, 4507, 1, 0, 0, 0, 4508, 4509, 1, 0, 0, 0, 4509, 4510, 1, 0, 0, 0, 4510, 4511, 3, 824, 412, 0, 4511, 4512, 3, 318, 159, 0, 4512, 4513, 5, 27, 0, 0, 4513, 4514, 5, 360, 0, 0, 4514, 4516, 1, 0, 0, 0, 4515, 4506, 1, 0, 0, 0, 4515, 4508, 1, 0, 0, 0, 4516, 389, 1, 0, 0, 0, 4517, 4520, 3, 384, 192, 0, 4518, 4519, 7, 57, 0, 0, 4519, 4521, 3, 676, 338, 0, 4520, 4518, 1, 0, 0, 0, 4520, 4521, 1, 0, 0, 0, 4521, 391, 1, 0, 0, 0, 4522, 4532, 5, 2, 0, 0, 4523, 4533, 5, 9, 0, 0, 4524, 4526, 3, 370, 185, 0, 4525, 4524, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4530, 1, 0, 0, 0, 4527, 4528, 5, 83, 0, 0, 4528, 4529, 5, 147, 0, 0, 4529, 4531, 3, 370, 185, 0, 4530, 4527, 1, 0, 0, 0, 4530, 4531, 1, 0, 0, 0, 4531, 4533, 1, 0, 0, 0, 4532, 4523, 1, 0, 0, 0, 4532, 4525, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 4535, 5, 3, 0, 0, 4535, 393, 1, 0, 0, 0, 4536, 4537, 3, 810, 405, 0, 4537, 4538, 3, 392, 196, 0, 4538, 395, 1, 0, 0, 0, 4539, 4540, 5, 316, 0, 0, 4540, 4543, 5, 78, 0, 0, 4541, 4543, 5, 149, 0, 0, 4542, 4539, 1, 0, 0, 0, 4542, 4541, 1, 0, 0, 0, 4543, 4544, 1, 0, 0, 0, 4544, 4545, 5, 80, 0, 0, 4545, 4546, 5, 78, 0, 0, 4546, 4569, 5, 458, 0, 0, 4547, 4569, 5, 346, 0, 0, 4548, 4569, 5, 222, 0, 0, 4549, 4569, 5, 338, 0, 0, 4550, 4569, 5, 377, 0, 0, 4551, 4553, 5, 205, 0, 0, 4552, 4551, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 4555, 5, 327, 0, 0, 4555, 4569, 7, 58, 0, 0, 4556, 4569, 5, 250, 0, 0, 4557, 4558, 5, 77, 0, 0, 4558, 4569, 5, 250, 0, 0, 4559, 4560, 7, 59, 0, 0, 4560, 4569, 3, 202, 101, 0, 4561, 4562, 5, 459, 0, 0, 4562, 4569, 3, 316, 158, 0, 4563, 4564, 5, 333, 0, 0, 4564, 4569, 3, 42, 21, 0, 4565, 4569, 3, 60, 30, 0, 4566, 4567, 5, 460, 0, 0, 4567, 4569, 3, 822, 411, 0, 4568, 4542, 1, 0, 0, 0, 4568, 4547, 1, 0, 0, 0, 4568, 4548, 1, 0, 0, 0, 4568, 4549, 1, 0, 0, 0, 4568, 4550, 1, 0, 0, 0, 4568, 4552, 1, 0, 0, 0, 4568, 4556, 1, 0, 0, 0, 4568, 4557, 1, 0, 0, 0, 4568, 4559, 1, 0, 0, 0, 4568, 4561, 1, 0, 0, 0, 4568, 4563, 1, 0, 0, 0, 4568, 4565, 1, 0, 0, 0, 4568, 4566, 1, 0, 0, 0, 4569, 397, 1, 0, 0, 0, 4570, 4571, 5, 36, 0, 0, 4571, 4572, 3, 812, 406, 0, 4572, 4573, 3, 462, 231, 0, 4573, 4606, 1, 0, 0, 0, 4574, 4575, 5, 247, 0, 0, 4575, 4606, 3, 58, 29, 0, 4576, 4577, 5, 443, 0, 0, 4577, 4578, 5, 62, 0, 0, 4578, 4579, 5, 360, 0, 0, 4579, 4586, 3, 654, 327, 0, 4580, 4581, 5, 6, 0, 0, 4581, 4582, 5, 62, 0, 0, 4582, 4583, 5, 360, 0, 0, 4583, 4585, 3, 654, 327, 0, 4584, 4580, 1, 0, 0, 0, 4585, 4588, 1, 0, 0, 0, 4586, 4584, 1, 0, 0, 0, 4586, 4587, 1, 0, 0, 0, 4587, 4606, 1, 0, 0, 0, 4588, 4586, 1, 0, 0, 0, 4589, 4606, 5, 104, 0, 0, 4590, 4591, 5, 333, 0, 0, 4591, 4598, 3, 822, 411, 0, 4592, 4593, 5, 94, 0, 0, 4593, 4599, 3, 822, 411, 0, 4594, 4595, 5, 10, 0, 0, 4595, 4599, 3, 822, 411, 0, 4596, 4597, 5, 64, 0, 0, 4597, 4599, 5, 434, 0, 0, 4598, 4592, 1, 0, 0, 0, 4598, 4594, 1, 0, 0, 0, 4598, 4596, 1, 0, 0, 0, 4599, 4606, 1, 0, 0, 0, 4600, 4601, 5, 36, 0, 0, 4601, 4606, 3, 822, 411, 0, 4602, 4606, 3, 4, 2, 0, 4603, 4606, 3, 396, 198, 0, 4604, 4606, 3, 822, 411, 0, 4605, 4570, 1, 0, 0, 0, 4605, 4574, 1, 0, 0, 0, 4605, 4576, 1, 0, 0, 0, 4605, 4589, 1, 0, 0, 0, 4605, 4590, 1, 0, 0, 0, 4605, 4600, 1, 0, 0, 0, 4605, 4602, 1, 0, 0, 0, 4605, 4603, 1, 0, 0, 0, 4605, 4604, 1, 0, 0, 0, 4606, 399, 1, 0, 0, 0, 4607, 4608, 5, 105, 0, 0, 4608, 4609, 3, 284, 142, 0, 4609, 401, 1, 0, 0, 0, 4610, 4611, 3, 804, 402, 0, 4611, 4612, 3, 388, 194, 0, 4612, 403, 1, 0, 0, 0, 4613, 4620, 5, 138, 0, 0, 4614, 4615, 5, 211, 0, 0, 4615, 4621, 3, 382, 191, 0, 4616, 4617, 5, 296, 0, 0, 4617, 4621, 3, 378, 189, 0, 4618, 4619, 5, 442, 0, 0, 4619, 4621, 3, 374, 187, 0, 4620, 4614, 1, 0, 0, 0, 4620, 4616, 1, 0, 0, 0, 4620, 4618, 1, 0, 0, 0, 4621, 4623, 1, 0, 0, 0, 4622, 4624, 3, 396, 198, 0, 4623, 4622, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4623, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4628, 1, 0, 0, 0, 4627, 4629, 5, 315, 0, 0, 4628, 4627, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 405, 1, 0, 0, 0, 4630, 4646, 5, 191, 0, 0, 4631, 4633, 5, 211, 0, 0, 4632, 4634, 3, 422, 211, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4635, 1, 0, 0, 0, 4635, 4647, 3, 380, 190, 0, 4636, 4638, 5, 296, 0, 0, 4637, 4639, 3, 422, 211, 0, 4638, 4637, 1, 0, 0, 0, 4638, 4639, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 4647, 3, 376, 188, 0, 4641, 4643, 5, 442, 0, 0, 4642, 4644, 3, 422, 211, 0, 4643, 4642, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4645, 1, 0, 0, 0, 4645, 4647, 3, 372, 186, 0, 4646, 4631, 1, 0, 0, 0, 4646, 4636, 1, 0, 0, 0, 4646, 4641, 1, 0, 0, 0, 4647, 4649, 1, 0, 0, 0, 4648, 4650, 3, 96, 48, 0, 4649, 4648, 1, 0, 0, 0, 4649, 4650, 1, 0, 0, 0, 4650, 407, 1, 0, 0, 0, 4651, 4652, 5, 191, 0, 0, 4652, 4654, 5, 136, 0, 0, 4653, 4655, 3, 422, 211, 0, 4654, 4653, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4661, 3, 394, 197, 0, 4657, 4658, 5, 6, 0, 0, 4658, 4660, 3, 394, 197, 0, 4659, 4657, 1, 0, 0, 0, 4660, 4663, 1, 0, 0, 0, 4661, 4659, 1, 0, 0, 0, 4661, 4662, 1, 0, 0, 0, 4662, 4665, 1, 0, 0, 0, 4663, 4661, 1, 0, 0, 0, 4664, 4666, 3, 96, 48, 0, 4665, 4664, 1, 0, 0, 0, 4665, 4666, 1, 0, 0, 0, 4666, 409, 1, 0, 0, 0, 4667, 4668, 5, 191, 0, 0, 4668, 4670, 5, 278, 0, 0, 4669, 4671, 3, 422, 211, 0, 4670, 4669, 1, 0, 0, 0, 4670, 4671, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 4677, 3, 416, 208, 0, 4673, 4674, 5, 6, 0, 0, 4674, 4676, 3, 416, 208, 0, 4675, 4673, 1, 0, 0, 0, 4676, 4679, 1, 0, 0, 0, 4677, 4675, 1, 0, 0, 0, 4677, 4678, 1, 0, 0, 0, 4678, 4681, 1, 0, 0, 0, 4679, 4677, 1, 0, 0, 0, 4680, 4682, 3, 96, 48, 0, 4681, 4680, 1, 0, 0, 0, 4681, 4682, 1, 0, 0, 0, 4682, 411, 1, 0, 0, 0, 4683, 4696, 5, 2, 0, 0, 4684, 4687, 3, 654, 327, 0, 4685, 4686, 5, 6, 0, 0, 4686, 4688, 3, 654, 327, 0, 4687, 4685, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4697, 1, 0, 0, 0, 4689, 4690, 5, 407, 0, 0, 4690, 4691, 5, 6, 0, 0, 4691, 4697, 3, 654, 327, 0, 4692, 4693, 3, 654, 327, 0, 4693, 4694, 5, 6, 0, 0, 4694, 4695, 5, 407, 0, 0, 4695, 4697, 1, 0, 0, 0, 4696, 4684, 1, 0, 0, 0, 4696, 4689, 1, 0, 0, 0, 4696, 4692, 1, 0, 0, 0, 4697, 4698, 1, 0, 0, 0, 4698, 4699, 5, 3, 0, 0, 4699, 413, 1, 0, 0, 0, 4700, 4701, 3, 822, 411, 0, 4701, 4702, 5, 11, 0, 0, 4702, 4704, 1, 0, 0, 0, 4703, 4700, 1, 0, 0, 0, 4704, 4707, 1, 0, 0, 0, 4705, 4703, 1, 0, 0, 0, 4705, 4706, 1, 0, 0, 0, 4706, 4708, 1, 0, 0, 0, 4707, 4705, 1, 0, 0, 0, 4708, 4709, 3, 722, 361, 0, 4709, 415, 1, 0, 0, 0, 4710, 4711, 3, 414, 207, 0, 4711, 4712, 3, 412, 206, 0, 4712, 417, 1, 0, 0, 0, 4713, 4717, 5, 57, 0, 0, 4714, 4718, 3, 812, 406, 0, 4715, 4716, 5, 247, 0, 0, 4716, 4718, 3, 58, 29, 0, 4717, 4714, 1, 0, 0, 0, 4717, 4715, 1, 0, 0, 0, 4718, 4719, 1, 0, 0, 0, 4719, 4717, 1, 0, 0, 0, 4719, 4720, 1, 0, 0, 0, 4720, 419, 1, 0, 0, 0, 4721, 4722, 5, 46, 0, 0, 4722, 4723, 5, 41, 0, 0, 4723, 4724, 5, 2, 0, 0, 4724, 4725, 3, 654, 327, 0, 4725, 4726, 5, 36, 0, 0, 4726, 4727, 3, 654, 327, 0, 4727, 4744, 5, 3, 0, 0, 4728, 4729, 5, 379, 0, 0, 4729, 4732, 5, 211, 0, 0, 4730, 4731, 5, 36, 0, 0, 4731, 4733, 7, 60, 0, 0, 4732, 4730, 1, 0, 0, 0, 4732, 4733, 1, 0, 0, 0, 4733, 4745, 1, 0, 0, 0, 4734, 4738, 5, 105, 0, 0, 4735, 4736, 5, 211, 0, 0, 4736, 4739, 3, 382, 191, 0, 4737, 4739, 5, 400, 0, 0, 4738, 4735, 1, 0, 0, 0, 4738, 4737, 1, 0, 0, 0, 4739, 4742, 1, 0, 0, 0, 4740, 4741, 5, 36, 0, 0, 4741, 4743, 7, 60, 0, 0, 4742, 4740, 1, 0, 0, 0, 4742, 4743, 1, 0, 0, 0, 4743, 4745, 1, 0, 0, 0, 4744, 4728, 1, 0, 0, 0, 4744, 4734, 1, 0, 0, 0, 4745, 421, 1, 0, 0, 0, 4746, 4747, 5, 220, 0, 0, 4747, 4748, 5, 396, 0, 0, 4748, 423, 1, 0, 0, 0, 4749, 4751, 5, 46, 0, 0, 4750, 4752, 3, 366, 183, 0, 4751, 4750, 1, 0, 0, 0, 4751, 4752, 1, 0, 0, 0, 4752, 4753, 1, 0, 0, 0, 4753, 4754, 5, 443, 0, 0, 4754, 4755, 5, 62, 0, 0, 4755, 4756, 3, 654, 327, 0, 4756, 4757, 5, 247, 0, 0, 4757, 4758, 3, 822, 411, 0, 4758, 4773, 5, 2, 0, 0, 4759, 4760, 5, 64, 0, 0, 4760, 4764, 3, 426, 213, 0, 4761, 4762, 5, 6, 0, 0, 4762, 4763, 5, 94, 0, 0, 4763, 4765, 3, 426, 213, 0, 4764, 4761, 1, 0, 0, 0, 4764, 4765, 1, 0, 0, 0, 4765, 4774, 1, 0, 0, 0, 4766, 4767, 5, 94, 0, 0, 4767, 4771, 3, 426, 213, 0, 4768, 4769, 5, 6, 0, 0, 4769, 4770, 5, 64, 0, 0, 4770, 4772, 3, 426, 213, 0, 4771, 4768, 1, 0, 0, 0, 4771, 4772, 1, 0, 0, 0, 4772, 4774, 1, 0, 0, 0, 4773, 4759, 1, 0, 0, 0, 4773, 4766, 1, 0, 0, 0, 4774, 4775, 1, 0, 0, 0, 4775, 4776, 5, 3, 0, 0, 4776, 425, 1, 0, 0, 0, 4777, 4778, 5, 461, 0, 0, 4778, 4779, 5, 105, 0, 0, 4779, 4780, 5, 211, 0, 0, 4780, 4781, 3, 382, 191, 0, 4781, 427, 1, 0, 0, 0, 4782, 4793, 5, 306, 0, 0, 4783, 4784, 5, 2, 0, 0, 4784, 4789, 5, 128, 0, 0, 4785, 4786, 5, 6, 0, 0, 4786, 4788, 5, 128, 0, 0, 4787, 4785, 1, 0, 0, 0, 4788, 4791, 1, 0, 0, 0, 4789, 4787, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4792, 1, 0, 0, 0, 4791, 4789, 1, 0, 0, 0, 4792, 4794, 5, 3, 0, 0, 4793, 4783, 1, 0, 0, 0, 4793, 4794, 1, 0, 0, 0, 4794, 4820, 1, 0, 0, 0, 4795, 4797, 5, 226, 0, 0, 4796, 4798, 5, 109, 0, 0, 4797, 4796, 1, 0, 0, 0, 4797, 4798, 1, 0, 0, 0, 4798, 4799, 1, 0, 0, 0, 4799, 4821, 3, 784, 392, 0, 4800, 4802, 5, 92, 0, 0, 4801, 4803, 5, 109, 0, 0, 4802, 4801, 1, 0, 0, 0, 4802, 4803, 1, 0, 0, 0, 4803, 4804, 1, 0, 0, 0, 4804, 4821, 3, 778, 389, 0, 4805, 4807, 5, 323, 0, 0, 4806, 4808, 5, 109, 0, 0, 4807, 4806, 1, 0, 0, 0, 4807, 4808, 1, 0, 0, 0, 4808, 4809, 1, 0, 0, 0, 4809, 4821, 3, 794, 397, 0, 4810, 4812, 5, 349, 0, 0, 4811, 4813, 5, 109, 0, 0, 4812, 4811, 1, 0, 0, 0, 4812, 4813, 1, 0, 0, 0, 4813, 4814, 1, 0, 0, 0, 4814, 4821, 3, 822, 411, 0, 4815, 4817, 5, 175, 0, 0, 4816, 4818, 5, 109, 0, 0, 4817, 4816, 1, 0, 0, 0, 4817, 4818, 1, 0, 0, 0, 4818, 4819, 1, 0, 0, 0, 4819, 4821, 3, 792, 396, 0, 4820, 4795, 1, 0, 0, 0, 4820, 4800, 1, 0, 0, 0, 4820, 4805, 1, 0, 0, 0, 4820, 4810, 1, 0, 0, 0, 4820, 4815, 1, 0, 0, 0, 4821, 429, 1, 0, 0, 0, 4822, 4823, 5, 138, 0, 0, 4823, 4824, 3, 176, 88, 0, 4824, 4825, 7, 16, 0, 0, 4825, 4826, 3, 100, 50, 0, 4826, 431, 1, 0, 0, 0, 4827, 4832, 5, 138, 0, 0, 4828, 4829, 5, 136, 0, 0, 4829, 4833, 3, 394, 197, 0, 4830, 4831, 5, 442, 0, 0, 4831, 4833, 3, 374, 187, 0, 4832, 4828, 1, 0, 0, 0, 4832, 4830, 1, 0, 0, 0, 4833, 4834, 1, 0, 0, 0, 4834, 4835, 5, 309, 0, 0, 4835, 4836, 5, 94, 0, 0, 4836, 4837, 3, 822, 411, 0, 4837, 5035, 1, 0, 0, 0, 4838, 4839, 5, 138, 0, 0, 4839, 4840, 5, 175, 0, 0, 4840, 4841, 3, 792, 396, 0, 4841, 4842, 5, 309, 0, 0, 4842, 4843, 5, 94, 0, 0, 4843, 4844, 3, 790, 395, 0, 4844, 5035, 1, 0, 0, 0, 4845, 4846, 5, 138, 0, 0, 4846, 4847, 7, 61, 0, 0, 4847, 4848, 3, 316, 158, 0, 4848, 4849, 5, 309, 0, 0, 4849, 4850, 5, 94, 0, 0, 4850, 4851, 3, 822, 411, 0, 4851, 5035, 1, 0, 0, 0, 4852, 4853, 5, 138, 0, 0, 4853, 4854, 5, 211, 0, 0, 4854, 4855, 3, 382, 191, 0, 4855, 4856, 5, 309, 0, 0, 4856, 4857, 5, 94, 0, 0, 4857, 4858, 3, 808, 404, 0, 4858, 5035, 1, 0, 0, 0, 4859, 4860, 5, 138, 0, 0, 4860, 4861, 5, 278, 0, 0, 4861, 4862, 7, 31, 0, 0, 4862, 4863, 3, 316, 158, 0, 4863, 4864, 3, 170, 85, 0, 4864, 4865, 5, 309, 0, 0, 4865, 4866, 5, 94, 0, 0, 4866, 4867, 3, 822, 411, 0, 4867, 5035, 1, 0, 0, 0, 4868, 4869, 5, 138, 0, 0, 4869, 4870, 5, 296, 0, 0, 4870, 4871, 3, 378, 189, 0, 4871, 4872, 5, 309, 0, 0, 4872, 4873, 5, 94, 0, 0, 4873, 4874, 3, 802, 401, 0, 4874, 5035, 1, 0, 0, 0, 4875, 4876, 5, 138, 0, 0, 4876, 4877, 5, 323, 0, 0, 4877, 4878, 3, 794, 397, 0, 4878, 4879, 5, 309, 0, 0, 4879, 4880, 5, 94, 0, 0, 4880, 4881, 3, 32, 16, 0, 4881, 5035, 1, 0, 0, 0, 4882, 4883, 5, 138, 0, 0, 4883, 4885, 7, 62, 0, 0, 4884, 4886, 3, 422, 211, 0, 4885, 4884, 1, 0, 0, 0, 4885, 4886, 1, 0, 0, 0, 4886, 4887, 1, 0, 0, 0, 4887, 4888, 3, 784, 392, 0, 4888, 4889, 5, 309, 0, 0, 4889, 4890, 5, 94, 0, 0, 4890, 4891, 3, 822, 411, 0, 4891, 5035, 1, 0, 0, 0, 4892, 4894, 5, 138, 0, 0, 4893, 4895, 5, 259, 0, 0, 4894, 4893, 1, 0, 0, 0, 4894, 4895, 1, 0, 0, 0, 4895, 4896, 1, 0, 0, 0, 4896, 4898, 5, 376, 0, 0, 4897, 4899, 3, 422, 211, 0, 4898, 4897, 1, 0, 0, 0, 4898, 4899, 1, 0, 0, 0, 4899, 4900, 1, 0, 0, 0, 4900, 4901, 3, 782, 391, 0, 4901, 4902, 5, 309, 0, 0, 4902, 4903, 5, 94, 0, 0, 4903, 4904, 3, 780, 390, 0, 4904, 5035, 1, 0, 0, 0, 4905, 4907, 5, 138, 0, 0, 4906, 4908, 5, 63, 0, 0, 4907, 4906, 1, 0, 0, 0, 4907, 4908, 1, 0, 0, 0, 4908, 4909, 1, 0, 0, 0, 4909, 4911, 5, 92, 0, 0, 4910, 4912, 3, 422, 211, 0, 4911, 4910, 1, 0, 0, 0, 4911, 4912, 1, 0, 0, 0, 4912, 4913, 1, 0, 0, 0, 4913, 4914, 3, 626, 313, 0, 4914, 4915, 5, 309, 0, 0, 4915, 4916, 5, 94, 0, 0, 4916, 4917, 3, 776, 388, 0, 4917, 5035, 1, 0, 0, 0, 4918, 4943, 5, 138, 0, 0, 4919, 4921, 5, 63, 0, 0, 4920, 4919, 1, 0, 0, 0, 4920, 4921, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 4924, 5, 92, 0, 0, 4923, 4925, 3, 422, 211, 0, 4924, 4923, 1, 0, 0, 0, 4924, 4925, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 4927, 3, 626, 313, 0, 4927, 4929, 5, 309, 0, 0, 4928, 4930, 5, 44, 0, 0, 4929, 4928, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 4944, 1, 0, 0, 0, 4931, 4933, 5, 259, 0, 0, 4932, 4931, 1, 0, 0, 0, 4932, 4933, 1, 0, 0, 0, 4933, 4934, 1, 0, 0, 0, 4934, 4936, 5, 376, 0, 0, 4935, 4937, 3, 422, 211, 0, 4936, 4935, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4938, 1, 0, 0, 0, 4938, 4939, 3, 782, 391, 0, 4939, 4941, 5, 309, 0, 0, 4940, 4942, 5, 44, 0, 0, 4941, 4940, 1, 0, 0, 0, 4941, 4942, 1, 0, 0, 0, 4942, 4944, 1, 0, 0, 0, 4943, 4920, 1, 0, 0, 0, 4943, 4932, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4946, 3, 804, 402, 0, 4946, 4947, 5, 94, 0, 0, 4947, 4948, 3, 806, 403, 0, 4948, 5035, 1, 0, 0, 0, 4949, 4957, 5, 138, 0, 0, 4950, 4952, 5, 92, 0, 0, 4951, 4953, 3, 422, 211, 0, 4952, 4951, 1, 0, 0, 0, 4952, 4953, 1, 0, 0, 0, 4953, 4954, 1, 0, 0, 0, 4954, 4958, 3, 626, 313, 0, 4955, 4956, 5, 189, 0, 0, 4956, 4958, 3, 316, 158, 0, 4957, 4950, 1, 0, 0, 0, 4957, 4955, 1, 0, 0, 0, 4958, 4959, 1, 0, 0, 0, 4959, 4960, 5, 309, 0, 0, 4960, 4961, 5, 45, 0, 0, 4961, 4962, 3, 822, 411, 0, 4962, 4963, 5, 94, 0, 0, 4963, 4964, 3, 822, 411, 0, 4964, 5035, 1, 0, 0, 0, 4965, 4972, 5, 138, 0, 0, 4966, 4968, 5, 445, 0, 0, 4967, 4969, 3, 422, 211, 0, 4968, 4967, 1, 0, 0, 0, 4968, 4969, 1, 0, 0, 0, 4969, 4973, 1, 0, 0, 0, 4970, 4973, 5, 321, 0, 0, 4971, 4973, 5, 357, 0, 0, 4972, 4966, 1, 0, 0, 0, 4972, 4970, 1, 0, 0, 0, 4972, 4971, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 4975, 3, 822, 411, 0, 4975, 4976, 5, 80, 0, 0, 4976, 4977, 3, 784, 392, 0, 4977, 4978, 5, 309, 0, 0, 4978, 4979, 5, 94, 0, 0, 4979, 4980, 3, 822, 411, 0, 4980, 5035, 1, 0, 0, 0, 4981, 4994, 5, 138, 0, 0, 4982, 4983, 5, 63, 0, 0, 4983, 4984, 5, 174, 0, 0, 4984, 4995, 5, 381, 0, 0, 4985, 4987, 5, 295, 0, 0, 4986, 4985, 1, 0, 0, 0, 4986, 4987, 1, 0, 0, 0, 4987, 4988, 1, 0, 0, 0, 4988, 4995, 5, 247, 0, 0, 4989, 4995, 5, 452, 0, 0, 4990, 4995, 5, 331, 0, 0, 4991, 4995, 5, 451, 0, 0, 4992, 4993, 5, 198, 0, 0, 4993, 4995, 5, 357, 0, 0, 4994, 4982, 1, 0, 0, 0, 4994, 4986, 1, 0, 0, 0, 4994, 4989, 1, 0, 0, 0, 4994, 4990, 1, 0, 0, 0, 4994, 4991, 1, 0, 0, 0, 4994, 4992, 1, 0, 0, 0, 4995, 4996, 1, 0, 0, 0, 4996, 4997, 3, 822, 411, 0, 4997, 4998, 5, 309, 0, 0, 4998, 4999, 5, 94, 0, 0, 4999, 5000, 3, 822, 411, 0, 5000, 5035, 1, 0, 0, 0, 5001, 5002, 5, 138, 0, 0, 5002, 5003, 7, 45, 0, 0, 5003, 5004, 3, 818, 409, 0, 5004, 5005, 5, 309, 0, 0, 5005, 5006, 5, 94, 0, 0, 5006, 5007, 3, 818, 409, 0, 5007, 5035, 1, 0, 0, 0, 5008, 5009, 5, 138, 0, 0, 5009, 5010, 3, 176, 88, 0, 5010, 5011, 5, 309, 0, 0, 5011, 5012, 5, 94, 0, 0, 5012, 5013, 3, 772, 386, 0, 5013, 5035, 1, 0, 0, 0, 5014, 5015, 5, 138, 0, 0, 5015, 5016, 5, 355, 0, 0, 5016, 5017, 5, 325, 0, 0, 5017, 5018, 7, 41, 0, 0, 5018, 5019, 3, 316, 158, 0, 5019, 5020, 5, 309, 0, 0, 5020, 5021, 5, 94, 0, 0, 5021, 5022, 3, 822, 411, 0, 5022, 5035, 1, 0, 0, 0, 5023, 5024, 5, 138, 0, 0, 5024, 5025, 5, 360, 0, 0, 5025, 5026, 3, 316, 158, 0, 5026, 5027, 5, 309, 0, 0, 5027, 5028, 5, 143, 0, 0, 5028, 5029, 3, 822, 411, 0, 5029, 5030, 5, 94, 0, 0, 5030, 5032, 3, 822, 411, 0, 5031, 5033, 3, 96, 48, 0, 5032, 5031, 1, 0, 0, 0, 5032, 5033, 1, 0, 0, 0, 5033, 5035, 1, 0, 0, 0, 5034, 4827, 1, 0, 0, 0, 5034, 4838, 1, 0, 0, 0, 5034, 4845, 1, 0, 0, 0, 5034, 4852, 1, 0, 0, 0, 5034, 4859, 1, 0, 0, 0, 5034, 4868, 1, 0, 0, 0, 5034, 4875, 1, 0, 0, 0, 5034, 4882, 1, 0, 0, 0, 5034, 4892, 1, 0, 0, 0, 5034, 4905, 1, 0, 0, 0, 5034, 4918, 1, 0, 0, 0, 5034, 4949, 1, 0, 0, 0, 5034, 4965, 1, 0, 0, 0, 5034, 4981, 1, 0, 0, 0, 5034, 5001, 1, 0, 0, 0, 5034, 5008, 1, 0, 0, 0, 5034, 5014, 1, 0, 0, 0, 5034, 5023, 1, 0, 0, 0, 5035, 433, 1, 0, 0, 0, 5036, 5053, 5, 138, 0, 0, 5037, 5038, 5, 211, 0, 0, 5038, 5054, 3, 382, 191, 0, 5039, 5040, 5, 296, 0, 0, 5040, 5054, 3, 378, 189, 0, 5041, 5042, 5, 442, 0, 0, 5042, 5054, 3, 374, 187, 0, 5043, 5044, 5, 357, 0, 0, 5044, 5045, 3, 822, 411, 0, 5045, 5046, 5, 80, 0, 0, 5046, 5047, 3, 784, 392, 0, 5047, 5054, 1, 0, 0, 0, 5048, 5049, 5, 259, 0, 0, 5049, 5050, 5, 376, 0, 0, 5050, 5054, 3, 782, 391, 0, 5051, 5052, 5, 226, 0, 0, 5052, 5054, 3, 784, 392, 0, 5053, 5037, 1, 0, 0, 0, 5053, 5039, 1, 0, 0, 0, 5053, 5041, 1, 0, 0, 0, 5053, 5043, 1, 0, 0, 0, 5053, 5048, 1, 0, 0, 0, 5053, 5051, 1, 0, 0, 0, 5054, 5056, 1, 0, 0, 0, 5055, 5057, 5, 269, 0, 0, 5056, 5055, 1, 0, 0, 0, 5056, 5057, 1, 0, 0, 0, 5057, 5058, 1, 0, 0, 0, 5058, 5059, 5, 462, 0, 0, 5059, 5060, 5, 80, 0, 0, 5060, 5061, 5, 204, 0, 0, 5061, 5062, 3, 822, 411, 0, 5062, 435, 1, 0, 0, 0, 5063, 5102, 5, 138, 0, 0, 5064, 5065, 5, 136, 0, 0, 5065, 5103, 3, 394, 197, 0, 5066, 5067, 5, 204, 0, 0, 5067, 5103, 3, 822, 411, 0, 5068, 5069, 5, 211, 0, 0, 5069, 5103, 3, 382, 191, 0, 5070, 5071, 5, 278, 0, 0, 5071, 5103, 3, 416, 208, 0, 5072, 5073, 5, 278, 0, 0, 5073, 5074, 7, 31, 0, 0, 5074, 5075, 3, 316, 158, 0, 5075, 5076, 3, 170, 85, 0, 5076, 5103, 1, 0, 0, 0, 5077, 5078, 5, 296, 0, 0, 5078, 5103, 3, 378, 189, 0, 5079, 5080, 5, 442, 0, 0, 5080, 5103, 3, 374, 187, 0, 5081, 5083, 5, 328, 0, 0, 5082, 5084, 3, 422, 211, 0, 5083, 5082, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 5085, 1, 0, 0, 0, 5085, 5103, 3, 784, 392, 0, 5086, 5088, 5, 259, 0, 0, 5087, 5086, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5091, 5, 376, 0, 0, 5090, 5092, 3, 422, 211, 0, 5091, 5090, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5103, 3, 782, 391, 0, 5094, 5096, 5, 63, 0, 0, 5095, 5094, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5097, 1, 0, 0, 0, 5097, 5099, 5, 92, 0, 0, 5098, 5100, 3, 422, 211, 0, 5099, 5098, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5101, 1, 0, 0, 0, 5101, 5103, 3, 626, 313, 0, 5102, 5064, 1, 0, 0, 0, 5102, 5066, 1, 0, 0, 0, 5102, 5068, 1, 0, 0, 0, 5102, 5070, 1, 0, 0, 0, 5102, 5072, 1, 0, 0, 0, 5102, 5077, 1, 0, 0, 0, 5102, 5079, 1, 0, 0, 0, 5102, 5081, 1, 0, 0, 0, 5102, 5087, 1, 0, 0, 0, 5102, 5095, 1, 0, 0, 0, 5103, 5104, 1, 0, 0, 0, 5104, 5105, 5, 333, 0, 0, 5105, 5106, 5, 323, 0, 0, 5106, 5107, 3, 794, 397, 0, 5107, 5125, 1, 0, 0, 0, 5108, 5117, 5, 138, 0, 0, 5109, 5110, 5, 355, 0, 0, 5110, 5111, 5, 325, 0, 0, 5111, 5118, 7, 41, 0, 0, 5112, 5118, 5, 108, 0, 0, 5113, 5118, 5, 168, 0, 0, 5114, 5118, 5, 189, 0, 0, 5115, 5118, 5, 342, 0, 0, 5116, 5118, 5, 360, 0, 0, 5117, 5109, 1, 0, 0, 0, 5117, 5112, 1, 0, 0, 0, 5117, 5113, 1, 0, 0, 0, 5117, 5114, 1, 0, 0, 0, 5117, 5115, 1, 0, 0, 0, 5117, 5116, 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5120, 3, 316, 158, 0, 5120, 5121, 5, 333, 0, 0, 5121, 5122, 5, 323, 0, 0, 5122, 5123, 3, 794, 397, 0, 5123, 5125, 1, 0, 0, 0, 5124, 5063, 1, 0, 0, 0, 5124, 5108, 1, 0, 0, 0, 5125, 437, 1, 0, 0, 0, 5126, 5127, 5, 138, 0, 0, 5127, 5128, 5, 278, 0, 0, 5128, 5129, 3, 416, 208, 0, 5129, 5130, 5, 333, 0, 0, 5130, 5131, 3, 440, 220, 0, 5131, 439, 1, 0, 0, 0, 5132, 5133, 5, 2, 0, 0, 5133, 5138, 3, 442, 221, 0, 5134, 5135, 5, 6, 0, 0, 5135, 5137, 3, 442, 221, 0, 5136, 5134, 1, 0, 0, 0, 5137, 5140, 1, 0, 0, 0, 5138, 5136, 1, 0, 0, 0, 5138, 5139, 1, 0, 0, 0, 5139, 5141, 1, 0, 0, 0, 5140, 5138, 1, 0, 0, 0, 5141, 5142, 5, 3, 0, 0, 5142, 441, 1, 0, 0, 0, 5143, 5144, 3, 828, 414, 0, 5144, 5151, 5, 10, 0, 0, 5145, 5152, 5, 407, 0, 0, 5146, 5152, 3, 388, 194, 0, 5147, 5152, 3, 838, 419, 0, 5148, 5152, 3, 728, 364, 0, 5149, 5152, 3, 202, 101, 0, 5150, 5152, 3, 812, 406, 0, 5151, 5145, 1, 0, 0, 0, 5151, 5146, 1, 0, 0, 0, 5151, 5147, 1, 0, 0, 0, 5151, 5148, 1, 0, 0, 0, 5151, 5149, 1, 0, 0, 0, 5151, 5150, 1, 0, 0, 0, 5152, 443, 1, 0, 0, 0, 5153, 5154, 5, 138, 0, 0, 5154, 5155, 5, 360, 0, 0, 5155, 5156, 3, 316, 158, 0, 5156, 5157, 5, 333, 0, 0, 5157, 5158, 3, 440, 220, 0, 5158, 445, 1, 0, 0, 0, 5159, 5160, 5, 138, 0, 0, 5160, 5161, 5, 278, 0, 0, 5161, 5162, 7, 31, 0, 0, 5162, 5163, 3, 316, 158, 0, 5163, 5164, 3, 170, 85, 0, 5164, 5165, 5, 282, 0, 0, 5165, 5166, 5, 94, 0, 0, 5166, 5167, 3, 818, 409, 0, 5167, 5234, 1, 0, 0, 0, 5168, 5195, 5, 138, 0, 0, 5169, 5170, 5, 136, 0, 0, 5170, 5196, 3, 394, 197, 0, 5171, 5172, 5, 175, 0, 0, 5172, 5196, 3, 792, 396, 0, 5173, 5174, 5, 211, 0, 0, 5174, 5196, 3, 382, 191, 0, 5175, 5177, 5, 295, 0, 0, 5176, 5175, 1, 0, 0, 0, 5176, 5177, 1, 0, 0, 0, 5177, 5178, 1, 0, 0, 0, 5178, 5179, 5, 247, 0, 0, 5179, 5196, 3, 822, 411, 0, 5180, 5181, 5, 248, 0, 0, 5181, 5182, 5, 274, 0, 0, 5182, 5196, 3, 202, 101, 0, 5183, 5184, 5, 248, 0, 0, 5184, 5185, 5, 274, 0, 0, 5185, 5196, 3, 202, 101, 0, 5186, 5187, 5, 278, 0, 0, 5187, 5196, 3, 416, 208, 0, 5188, 5189, 5, 296, 0, 0, 5189, 5196, 3, 378, 189, 0, 5190, 5191, 5, 442, 0, 0, 5191, 5196, 3, 374, 187, 0, 5192, 5193, 5, 323, 0, 0, 5193, 5196, 3, 794, 397, 0, 5194, 5196, 3, 176, 88, 0, 5195, 5169, 1, 0, 0, 0, 5195, 5171, 1, 0, 0, 0, 5195, 5173, 1, 0, 0, 0, 5195, 5176, 1, 0, 0, 0, 5195, 5180, 1, 0, 0, 0, 5195, 5183, 1, 0, 0, 0, 5195, 5186, 1, 0, 0, 0, 5195, 5188, 1, 0, 0, 0, 5195, 5190, 1, 0, 0, 0, 5195, 5192, 1, 0, 0, 0, 5195, 5194, 1, 0, 0, 0, 5196, 5197, 1, 0, 0, 0, 5197, 5198, 5, 282, 0, 0, 5198, 5199, 5, 94, 0, 0, 5199, 5200, 3, 818, 409, 0, 5200, 5234, 1, 0, 0, 0, 5201, 5210, 5, 138, 0, 0, 5202, 5203, 5, 355, 0, 0, 5203, 5204, 5, 325, 0, 0, 5204, 5211, 7, 63, 0, 0, 5205, 5211, 5, 108, 0, 0, 5206, 5211, 5, 168, 0, 0, 5207, 5211, 5, 189, 0, 0, 5208, 5211, 5, 360, 0, 0, 5209, 5211, 5, 342, 0, 0, 5210, 5202, 1, 0, 0, 0, 5210, 5205, 1, 0, 0, 0, 5210, 5206, 1, 0, 0, 0, 5210, 5207, 1, 0, 0, 0, 5210, 5208, 1, 0, 0, 0, 5210, 5209, 1, 0, 0, 0, 5211, 5212, 1, 0, 0, 0, 5212, 5213, 3, 316, 158, 0, 5213, 5214, 5, 282, 0, 0, 5214, 5215, 5, 94, 0, 0, 5215, 5216, 3, 818, 409, 0, 5216, 5234, 1, 0, 0, 0, 5217, 5226, 5, 138, 0, 0, 5218, 5227, 5, 331, 0, 0, 5219, 5220, 5, 63, 0, 0, 5220, 5221, 5, 174, 0, 0, 5221, 5227, 5, 381, 0, 0, 5222, 5223, 5, 198, 0, 0, 5223, 5227, 5, 357, 0, 0, 5224, 5227, 5, 452, 0, 0, 5225, 5227, 5, 451, 0, 0, 5226, 5218, 1, 0, 0, 0, 5226, 5219, 1, 0, 0, 0, 5226, 5222, 1, 0, 0, 0, 5226, 5224, 1, 0, 0, 0, 5226, 5225, 1, 0, 0, 0, 5227, 5228, 1, 0, 0, 0, 5228, 5229, 3, 822, 411, 0, 5229, 5230, 5, 282, 0, 0, 5230, 5231, 5, 94, 0, 0, 5231, 5232, 3, 818, 409, 0, 5232, 5234, 1, 0, 0, 0, 5233, 5159, 1, 0, 0, 0, 5233, 5168, 1, 0, 0, 0, 5233, 5201, 1, 0, 0, 0, 5233, 5217, 1, 0, 0, 0, 5234, 447, 1, 0, 0, 0, 5235, 5236, 5, 46, 0, 0, 5236, 5237, 5, 452, 0, 0, 5237, 5244, 3, 822, 411, 0, 5238, 5239, 5, 62, 0, 0, 5239, 5240, 5, 92, 0, 0, 5240, 5245, 3, 630, 315, 0, 5241, 5242, 5, 62, 0, 0, 5242, 5243, 5, 30, 0, 0, 5243, 5245, 5, 350, 0, 0, 5244, 5238, 1, 0, 0, 0, 5244, 5241, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5247, 1, 0, 0, 0, 5246, 5248, 3, 400, 200, 0, 5247, 5246, 1, 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 449, 1, 0, 0, 0, 5249, 5250, 5, 138, 0, 0, 5250, 5251, 5, 452, 0, 0, 5251, 5269, 3, 822, 411, 0, 5252, 5253, 5, 282, 0, 0, 5253, 5254, 5, 94, 0, 0, 5254, 5270, 3, 818, 409, 0, 5255, 5256, 5, 333, 0, 0, 5256, 5270, 3, 284, 142, 0, 5257, 5258, 5, 309, 0, 0, 5258, 5259, 5, 94, 0, 0, 5259, 5270, 3, 822, 411, 0, 5260, 5261, 7, 34, 0, 0, 5261, 5266, 3, 628, 314, 0, 5262, 5263, 5, 6, 0, 0, 5263, 5265, 3, 628, 314, 0, 5264, 5262, 1, 0, 0, 0, 5265, 5268, 1, 0, 0, 0, 5266, 5264, 1, 0, 0, 0, 5266, 5267, 1, 0, 0, 0, 5267, 5270, 1, 0, 0, 0, 5268, 5266, 1, 0, 0, 0, 5269, 5252, 1, 0, 0, 0, 5269, 5255, 1, 0, 0, 0, 5269, 5257, 1, 0, 0, 0, 5269, 5260, 1, 0, 0, 0, 5270, 451, 1, 0, 0, 0, 5271, 5272, 5, 46, 0, 0, 5272, 5273, 5, 451, 0, 0, 5273, 5274, 3, 822, 411, 0, 5274, 5275, 5, 164, 0, 0, 5275, 5276, 3, 812, 406, 0, 5276, 5277, 5, 452, 0, 0, 5277, 5282, 3, 828, 414, 0, 5278, 5279, 5, 6, 0, 0, 5279, 5281, 3, 828, 414, 0, 5280, 5278, 1, 0, 0, 0, 5281, 5284, 1, 0, 0, 0, 5282, 5280, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 5286, 1, 0, 0, 0, 5284, 5282, 1, 0, 0, 0, 5285, 5287, 3, 400, 200, 0, 5286, 5285, 1, 0, 0, 0, 5286, 5287, 1, 0, 0, 0, 5287, 453, 1, 0, 0, 0, 5288, 5289, 5, 138, 0, 0, 5289, 5290, 5, 451, 0, 0, 5290, 5291, 3, 822, 411, 0, 5291, 5292, 5, 333, 0, 0, 5292, 5293, 3, 284, 142, 0, 5293, 5345, 1, 0, 0, 0, 5294, 5295, 5, 138, 0, 0, 5295, 5296, 5, 451, 0, 0, 5296, 5297, 3, 822, 411, 0, 5297, 5298, 5, 164, 0, 0, 5298, 5299, 3, 812, 406, 0, 5299, 5345, 1, 0, 0, 0, 5300, 5301, 5, 138, 0, 0, 5301, 5302, 5, 451, 0, 0, 5302, 5303, 3, 822, 411, 0, 5303, 5304, 5, 305, 0, 0, 5304, 5306, 5, 452, 0, 0, 5305, 5307, 3, 400, 200, 0, 5306, 5305, 1, 0, 0, 0, 5306, 5307, 1, 0, 0, 0, 5307, 5345, 1, 0, 0, 0, 5308, 5309, 5, 138, 0, 0, 5309, 5310, 5, 451, 0, 0, 5310, 5311, 3, 822, 411, 0, 5311, 5312, 7, 34, 0, 0, 5312, 5313, 5, 452, 0, 0, 5313, 5318, 3, 828, 414, 0, 5314, 5315, 5, 6, 0, 0, 5315, 5317, 3, 828, 414, 0, 5316, 5314, 1, 0, 0, 0, 5317, 5320, 1, 0, 0, 0, 5318, 5316, 1, 0, 0, 0, 5318, 5319, 1, 0, 0, 0, 5319, 5322, 1, 0, 0, 0, 5320, 5318, 1, 0, 0, 0, 5321, 5323, 3, 400, 200, 0, 5322, 5321, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5345, 1, 0, 0, 0, 5324, 5325, 5, 138, 0, 0, 5325, 5326, 5, 451, 0, 0, 5326, 5327, 3, 822, 411, 0, 5327, 5328, 7, 64, 0, 0, 5328, 5345, 1, 0, 0, 0, 5329, 5330, 5, 138, 0, 0, 5330, 5331, 5, 451, 0, 0, 5331, 5332, 3, 822, 411, 0, 5332, 5333, 5, 465, 0, 0, 5333, 5334, 5, 2, 0, 0, 5334, 5335, 3, 290, 145, 0, 5335, 5336, 5, 3, 0, 0, 5336, 5345, 1, 0, 0, 0, 5337, 5338, 5, 138, 0, 0, 5338, 5339, 5, 451, 0, 0, 5339, 5340, 3, 822, 411, 0, 5340, 5341, 5, 282, 0, 0, 5341, 5342, 5, 94, 0, 0, 5342, 5343, 3, 818, 409, 0, 5343, 5345, 1, 0, 0, 0, 5344, 5288, 1, 0, 0, 0, 5344, 5294, 1, 0, 0, 0, 5344, 5300, 1, 0, 0, 0, 5344, 5308, 1, 0, 0, 0, 5344, 5324, 1, 0, 0, 0, 5344, 5329, 1, 0, 0, 0, 5344, 5337, 1, 0, 0, 0, 5345, 455, 1, 0, 0, 0, 5346, 5348, 5, 46, 0, 0, 5347, 5349, 3, 366, 183, 0, 5348, 5347, 1, 0, 0, 0, 5348, 5349, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 5351, 5, 321, 0, 0, 5351, 5352, 3, 822, 411, 0, 5352, 5353, 5, 36, 0, 0, 5353, 5354, 5, 80, 0, 0, 5354, 5355, 7, 65, 0, 0, 5355, 5356, 5, 94, 0, 0, 5356, 5358, 3, 784, 392, 0, 5357, 5359, 3, 640, 320, 0, 5358, 5357, 1, 0, 0, 0, 5358, 5359, 1, 0, 0, 0, 5359, 5360, 1, 0, 0, 0, 5360, 5362, 5, 57, 0, 0, 5361, 5363, 7, 66, 0, 0, 5362, 5361, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5380, 1, 0, 0, 0, 5364, 5381, 5, 270, 0, 0, 5365, 5381, 3, 458, 229, 0, 5366, 5368, 5, 2, 0, 0, 5367, 5369, 3, 458, 229, 0, 5368, 5367, 1, 0, 0, 0, 5368, 5369, 1, 0, 0, 0, 5369, 5376, 1, 0, 0, 0, 5370, 5372, 5, 7, 0, 0, 5371, 5373, 3, 458, 229, 0, 5372, 5371, 1, 0, 0, 0, 5372, 5373, 1, 0, 0, 0, 5373, 5375, 1, 0, 0, 0, 5374, 5370, 1, 0, 0, 0, 5375, 5378, 1, 0, 0, 0, 5376, 5374, 1, 0, 0, 0, 5376, 5377, 1, 0, 0, 0, 5377, 5379, 1, 0, 0, 0, 5378, 5376, 1, 0, 0, 0, 5379, 5381, 5, 3, 0, 0, 5380, 5364, 1, 0, 0, 0, 5380, 5365, 1, 0, 0, 0, 5380, 5366, 1, 0, 0, 0, 5381, 457, 1, 0, 0, 0, 5382, 5388, 3, 560, 280, 0, 5383, 5388, 3, 538, 269, 0, 5384, 5388, 3, 552, 276, 0, 5385, 5388, 3, 548, 274, 0, 5386, 5388, 3, 460, 230, 0, 5387, 5382, 1, 0, 0, 0, 5387, 5383, 1, 0, 0, 0, 5387, 5384, 1, 0, 0, 0, 5387, 5385, 1, 0, 0, 0, 5387, 5386, 1, 0, 0, 0, 5388, 459, 1, 0, 0, 0, 5389, 5390, 5, 271, 0, 0, 5390, 5392, 3, 822, 411, 0, 5391, 5393, 3, 462, 231, 0, 5392, 5391, 1, 0, 0, 0, 5392, 5393, 1, 0, 0, 0, 5393, 461, 1, 0, 0, 0, 5394, 5395, 5, 6, 0, 0, 5395, 5396, 3, 812, 406, 0, 5396, 463, 1, 0, 0, 0, 5397, 5398, 5, 252, 0, 0, 5398, 5399, 3, 822, 411, 0, 5399, 465, 1, 0, 0, 0, 5400, 5403, 5, 366, 0, 0, 5401, 5404, 3, 822, 411, 0, 5402, 5404, 5, 9, 0, 0, 5403, 5401, 1, 0, 0, 0, 5403, 5402, 1, 0, 0, 0, 5404, 467, 1, 0, 0, 0, 5405, 5407, 5, 146, 0, 0, 5406, 5408, 3, 470, 235, 0, 5407, 5406, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5410, 1, 0, 0, 0, 5409, 5411, 3, 474, 237, 0, 5410, 5409, 1, 0, 0, 0, 5410, 5411, 1, 0, 0, 0, 5411, 5451, 1, 0, 0, 0, 5412, 5413, 5, 340, 0, 0, 5413, 5415, 5, 356, 0, 0, 5414, 5416, 3, 474, 237, 0, 5415, 5414, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5451, 1, 0, 0, 0, 5417, 5418, 5, 322, 0, 0, 5418, 5451, 3, 822, 411, 0, 5419, 5421, 5, 308, 0, 0, 5420, 5422, 5, 322, 0, 0, 5421, 5420, 1, 0, 0, 0, 5421, 5422, 1, 0, 0, 0, 5422, 5423, 1, 0, 0, 0, 5423, 5451, 3, 822, 411, 0, 5424, 5425, 5, 290, 0, 0, 5425, 5426, 5, 356, 0, 0, 5426, 5451, 3, 812, 406, 0, 5427, 5428, 7, 67, 0, 0, 5428, 5429, 5, 291, 0, 0, 5429, 5451, 3, 812, 406, 0, 5430, 5432, 7, 68, 0, 0, 5431, 5433, 3, 470, 235, 0, 5432, 5431, 1, 0, 0, 0, 5432, 5433, 1, 0, 0, 0, 5433, 5439, 1, 0, 0, 0, 5434, 5436, 5, 33, 0, 0, 5435, 5437, 5, 269, 0, 0, 5436, 5435, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 5438, 1, 0, 0, 0, 5438, 5440, 5, 153, 0, 0, 5439, 5434, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5451, 1, 0, 0, 0, 5441, 5443, 5, 319, 0, 0, 5442, 5444, 3, 470, 235, 0, 5443, 5442, 1, 0, 0, 0, 5443, 5444, 1, 0, 0, 0, 5444, 5445, 1, 0, 0, 0, 5445, 5447, 5, 94, 0, 0, 5446, 5448, 5, 322, 0, 0, 5447, 5446, 1, 0, 0, 0, 5447, 5448, 1, 0, 0, 0, 5448, 5449, 1, 0, 0, 0, 5449, 5451, 3, 822, 411, 0, 5450, 5405, 1, 0, 0, 0, 5450, 5412, 1, 0, 0, 0, 5450, 5417, 1, 0, 0, 0, 5450, 5419, 1, 0, 0, 0, 5450, 5424, 1, 0, 0, 0, 5450, 5427, 1, 0, 0, 0, 5450, 5430, 1, 0, 0, 0, 5450, 5441, 1, 0, 0, 0, 5451, 469, 1, 0, 0, 0, 5452, 5453, 7, 69, 0, 0, 5453, 471, 1, 0, 0, 0, 5454, 5455, 5, 244, 0, 0, 5455, 5456, 5, 251, 0, 0, 5456, 5464, 3, 50, 25, 0, 5457, 5458, 5, 300, 0, 0, 5458, 5464, 7, 70, 0, 0, 5459, 5461, 5, 77, 0, 0, 5460, 5459, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5462, 1, 0, 0, 0, 5462, 5464, 5, 54, 0, 0, 5463, 5454, 1, 0, 0, 0, 5463, 5457, 1, 0, 0, 0, 5463, 5460, 1, 0, 0, 0, 5464, 473, 1, 0, 0, 0, 5465, 5472, 3, 472, 236, 0, 5466, 5468, 5, 6, 0, 0, 5467, 5466, 1, 0, 0, 0, 5467, 5468, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5471, 3, 472, 236, 0, 5470, 5467, 1, 0, 0, 0, 5471, 5474, 1, 0, 0, 0, 5472, 5470, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 475, 1, 0, 0, 0, 5474, 5472, 1, 0, 0, 0, 5475, 5478, 5, 46, 0, 0, 5476, 5477, 5, 82, 0, 0, 5477, 5479, 5, 311, 0, 0, 5478, 5476, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5481, 1, 0, 0, 0, 5480, 5482, 3, 122, 61, 0, 5481, 5480, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5498, 1, 0, 0, 0, 5483, 5484, 5, 376, 0, 0, 5484, 5486, 3, 780, 390, 0, 5485, 5487, 3, 146, 73, 0, 5486, 5485, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 5489, 1, 0, 0, 0, 5488, 5490, 3, 102, 51, 0, 5489, 5488, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 5499, 1, 0, 0, 0, 5491, 5492, 5, 303, 0, 0, 5492, 5493, 5, 376, 0, 0, 5493, 5494, 3, 780, 390, 0, 5494, 5496, 3, 144, 72, 0, 5495, 5497, 3, 102, 51, 0, 5496, 5495, 1, 0, 0, 0, 5496, 5497, 1, 0, 0, 0, 5497, 5499, 1, 0, 0, 0, 5498, 5483, 1, 0, 0, 0, 5498, 5491, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5501, 5, 36, 0, 0, 5501, 5508, 3, 560, 280, 0, 5502, 5504, 5, 105, 0, 0, 5503, 5505, 7, 71, 0, 0, 5504, 5503, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5506, 1, 0, 0, 0, 5506, 5507, 5, 42, 0, 0, 5507, 5509, 5, 279, 0, 0, 5508, 5502, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 477, 1, 0, 0, 0, 5510, 5511, 5, 253, 0, 0, 5511, 5512, 3, 812, 406, 0, 5512, 479, 1, 0, 0, 0, 5513, 5514, 5, 46, 0, 0, 5514, 5515, 5, 175, 0, 0, 5515, 5517, 3, 790, 395, 0, 5516, 5518, 5, 105, 0, 0, 5517, 5516, 1, 0, 0, 0, 5517, 5518, 1, 0, 0, 0, 5518, 5524, 1, 0, 0, 0, 5519, 5521, 3, 482, 241, 0, 5520, 5519, 1, 0, 0, 0, 5521, 5522, 1, 0, 0, 0, 5522, 5520, 1, 0, 0, 0, 5522, 5523, 1, 0, 0, 0, 5523, 5525, 1, 0, 0, 0, 5524, 5520, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 481, 1, 0, 0, 0, 5526, 5527, 5, 164, 0, 0, 5527, 5535, 5, 74, 0, 0, 5528, 5535, 5, 194, 0, 0, 5529, 5535, 5, 255, 0, 0, 5530, 5535, 5, 282, 0, 0, 5531, 5535, 5, 351, 0, 0, 5532, 5535, 5, 353, 0, 0, 5533, 5535, 3, 830, 415, 0, 5534, 5526, 1, 0, 0, 0, 5534, 5528, 1, 0, 0, 0, 5534, 5529, 1, 0, 0, 0, 5534, 5530, 1, 0, 0, 0, 5534, 5531, 1, 0, 0, 0, 5534, 5532, 1, 0, 0, 0, 5534, 5533, 1, 0, 0, 0, 5535, 5537, 1, 0, 0, 0, 5536, 5538, 5, 10, 0, 0, 5537, 5536, 1, 0, 0, 0, 5537, 5538, 1, 0, 0, 0, 5538, 5542, 1, 0, 0, 0, 5539, 5543, 3, 816, 408, 0, 5540, 5543, 3, 54, 27, 0, 5541, 5543, 5, 53, 0, 0, 5542, 5539, 1, 0, 0, 0, 5542, 5540, 1, 0, 0, 0, 5542, 5541, 1, 0, 0, 0, 5543, 483, 1, 0, 0, 0, 5544, 5545, 5, 138, 0, 0, 5545, 5546, 5, 175, 0, 0, 5546, 5562, 3, 792, 396, 0, 5547, 5548, 5, 333, 0, 0, 5548, 5549, 5, 351, 0, 0, 5549, 5551, 3, 772, 386, 0, 5550, 5547, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 5563, 1, 0, 0, 0, 5552, 5554, 5, 105, 0, 0, 5553, 5552, 1, 0, 0, 0, 5553, 5554, 1, 0, 0, 0, 5554, 5556, 1, 0, 0, 0, 5555, 5557, 3, 482, 241, 0, 5556, 5555, 1, 0, 0, 0, 5557, 5558, 1, 0, 0, 0, 5558, 5556, 1, 0, 0, 0, 5558, 5559, 1, 0, 0, 0, 5559, 5561, 1, 0, 0, 0, 5560, 5553, 1, 0, 0, 0, 5560, 5561, 1, 0, 0, 0, 5561, 5563, 1, 0, 0, 0, 5562, 5550, 1, 0, 0, 0, 5562, 5560, 1, 0, 0, 0, 5563, 485, 1, 0, 0, 0, 5564, 5565, 5, 138, 0, 0, 5565, 5566, 5, 175, 0, 0, 5566, 5568, 3, 792, 396, 0, 5567, 5569, 3, 64, 32, 0, 5568, 5567, 1, 0, 0, 0, 5568, 5569, 1, 0, 0, 0, 5569, 487, 1, 0, 0, 0, 5570, 5571, 5, 138, 0, 0, 5571, 5572, 5, 108, 0, 0, 5572, 5573, 3, 316, 158, 0, 5573, 5574, 5, 305, 0, 0, 5574, 5575, 5, 375, 0, 0, 5575, 489, 1, 0, 0, 0, 5576, 5577, 5, 138, 0, 0, 5577, 5578, 5, 349, 0, 0, 5578, 5579, 7, 16, 0, 0, 5579, 5580, 3, 40, 20, 0, 5580, 491, 1, 0, 0, 0, 5581, 5582, 5, 46, 0, 0, 5582, 5583, 5, 189, 0, 0, 5583, 5585, 3, 316, 158, 0, 5584, 5586, 5, 36, 0, 0, 5585, 5584, 1, 0, 0, 0, 5585, 5586, 1, 0, 0, 0, 5586, 5587, 1, 0, 0, 0, 5587, 5591, 3, 654, 327, 0, 5588, 5590, 3, 134, 67, 0, 5589, 5588, 1, 0, 0, 0, 5590, 5593, 1, 0, 0, 0, 5591, 5589, 1, 0, 0, 0, 5591, 5592, 1, 0, 0, 0, 5592, 493, 1, 0, 0, 0, 5593, 5591, 1, 0, 0, 0, 5594, 5595, 5, 138, 0, 0, 5595, 5596, 5, 189, 0, 0, 5596, 5619, 3, 316, 158, 0, 5597, 5620, 3, 94, 47, 0, 5598, 5599, 7, 15, 0, 0, 5599, 5600, 5, 77, 0, 0, 5600, 5620, 5, 78, 0, 0, 5601, 5604, 5, 133, 0, 0, 5602, 5603, 5, 45, 0, 0, 5603, 5605, 3, 822, 411, 0, 5604, 5602, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5606, 1, 0, 0, 0, 5606, 5620, 3, 142, 71, 0, 5607, 5608, 5, 191, 0, 0, 5608, 5610, 5, 45, 0, 0, 5609, 5611, 3, 422, 211, 0, 5610, 5609, 1, 0, 0, 0, 5610, 5611, 1, 0, 0, 0, 5611, 5612, 1, 0, 0, 0, 5612, 5614, 3, 822, 411, 0, 5613, 5615, 3, 96, 48, 0, 5614, 5613, 1, 0, 0, 0, 5614, 5615, 1, 0, 0, 0, 5615, 5620, 1, 0, 0, 0, 5616, 5617, 5, 372, 0, 0, 5617, 5618, 5, 45, 0, 0, 5618, 5620, 3, 822, 411, 0, 5619, 5597, 1, 0, 0, 0, 5619, 5598, 1, 0, 0, 0, 5619, 5601, 1, 0, 0, 0, 5619, 5607, 1, 0, 0, 0, 5619, 5616, 1, 0, 0, 0, 5620, 495, 1, 0, 0, 0, 5621, 5622, 5, 138, 0, 0, 5622, 5623, 5, 355, 0, 0, 5623, 5624, 5, 325, 0, 0, 5624, 5625, 5, 185, 0, 0, 5625, 5626, 3, 316, 158, 0, 5626, 5627, 3, 284, 142, 0, 5627, 497, 1, 0, 0, 0, 5628, 5629, 5, 138, 0, 0, 5629, 5630, 5, 355, 0, 0, 5630, 5631, 5, 325, 0, 0, 5631, 5632, 5, 163, 0, 0, 5632, 5633, 3, 316, 158, 0, 5633, 5634, 7, 72, 0, 0, 5634, 5635, 5, 257, 0, 0, 5635, 5636, 5, 62, 0, 0, 5636, 5637, 3, 788, 394, 0, 5637, 5638, 5, 105, 0, 0, 5638, 5639, 3, 314, 157, 0, 5639, 5670, 1, 0, 0, 0, 5640, 5641, 5, 138, 0, 0, 5641, 5642, 5, 355, 0, 0, 5642, 5643, 5, 325, 0, 0, 5643, 5644, 5, 163, 0, 0, 5644, 5645, 3, 316, 158, 0, 5645, 5646, 5, 138, 0, 0, 5646, 5649, 5, 257, 0, 0, 5647, 5648, 5, 62, 0, 0, 5648, 5650, 3, 788, 394, 0, 5649, 5647, 1, 0, 0, 0, 5649, 5650, 1, 0, 0, 0, 5650, 5651, 1, 0, 0, 0, 5651, 5652, 5, 311, 0, 0, 5652, 5653, 3, 316, 158, 0, 5653, 5654, 5, 105, 0, 0, 5654, 5655, 3, 316, 158, 0, 5655, 5670, 1, 0, 0, 0, 5656, 5657, 5, 138, 0, 0, 5657, 5658, 5, 355, 0, 0, 5658, 5659, 5, 325, 0, 0, 5659, 5660, 5, 163, 0, 0, 5660, 5661, 3, 316, 158, 0, 5661, 5662, 5, 191, 0, 0, 5662, 5664, 5, 257, 0, 0, 5663, 5665, 3, 422, 211, 0, 5664, 5663, 1, 0, 0, 0, 5664, 5665, 1, 0, 0, 0, 5665, 5666, 1, 0, 0, 0, 5666, 5667, 5, 62, 0, 0, 5667, 5668, 3, 788, 394, 0, 5668, 5670, 1, 0, 0, 0, 5669, 5628, 1, 0, 0, 0, 5669, 5640, 1, 0, 0, 0, 5669, 5656, 1, 0, 0, 0, 5670, 499, 1, 0, 0, 0, 5671, 5673, 5, 46, 0, 0, 5672, 5674, 5, 53, 0, 0, 5673, 5672, 1, 0, 0, 0, 5673, 5674, 1, 0, 0, 0, 5674, 5675, 1, 0, 0, 0, 5675, 5676, 5, 168, 0, 0, 5676, 5677, 3, 316, 158, 0, 5677, 5678, 5, 62, 0, 0, 5678, 5679, 3, 812, 406, 0, 5679, 5680, 5, 94, 0, 0, 5680, 5681, 3, 812, 406, 0, 5681, 5682, 5, 64, 0, 0, 5682, 5683, 3, 316, 158, 0, 5683, 501, 1, 0, 0, 0, 5684, 5686, 5, 158, 0, 0, 5685, 5687, 3, 514, 257, 0, 5686, 5685, 1, 0, 0, 0, 5686, 5687, 1, 0, 0, 0, 5687, 5692, 1, 0, 0, 0, 5688, 5690, 3, 778, 389, 0, 5689, 5691, 3, 170, 85, 0, 5690, 5689, 1, 0, 0, 0, 5690, 5691, 1, 0, 0, 0, 5691, 5693, 1, 0, 0, 0, 5692, 5688, 1, 0, 0, 0, 5692, 5693, 1, 0, 0, 0, 5693, 5710, 1, 0, 0, 0, 5694, 5695, 5, 158, 0, 0, 5695, 5696, 5, 2, 0, 0, 5696, 5701, 3, 514, 257, 0, 5697, 5698, 5, 6, 0, 0, 5698, 5700, 3, 514, 257, 0, 5699, 5697, 1, 0, 0, 0, 5700, 5703, 1, 0, 0, 0, 5701, 5699, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5704, 1, 0, 0, 0, 5703, 5701, 1, 0, 0, 0, 5704, 5705, 5, 3, 0, 0, 5705, 5707, 3, 778, 389, 0, 5706, 5708, 3, 170, 85, 0, 5707, 5706, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 5710, 1, 0, 0, 0, 5709, 5684, 1, 0, 0, 0, 5709, 5694, 1, 0, 0, 0, 5710, 503, 1, 0, 0, 0, 5711, 5727, 5, 370, 0, 0, 5712, 5714, 5, 113, 0, 0, 5713, 5712, 1, 0, 0, 0, 5713, 5714, 1, 0, 0, 0, 5714, 5716, 1, 0, 0, 0, 5715, 5717, 5, 112, 0, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5719, 1, 0, 0, 0, 5718, 5720, 3, 514, 257, 0, 5719, 5718, 1, 0, 0, 0, 5719, 5720, 1, 0, 0, 0, 5720, 5722, 1, 0, 0, 0, 5721, 5723, 3, 508, 254, 0, 5722, 5721, 1, 0, 0, 0, 5722, 5723, 1, 0, 0, 0, 5723, 5728, 1, 0, 0, 0, 5724, 5726, 3, 524, 262, 0, 5725, 5724, 1, 0, 0, 0, 5725, 5726, 1, 0, 0, 0, 5726, 5728, 1, 0, 0, 0, 5727, 5713, 1, 0, 0, 0, 5727, 5725, 1, 0, 0, 0, 5728, 5730, 1, 0, 0, 0, 5729, 5731, 3, 518, 259, 0, 5730, 5729, 1, 0, 0, 0, 5730, 5731, 1, 0, 0, 0, 5731, 505, 1, 0, 0, 0, 5732, 5747, 3, 508, 254, 0, 5733, 5735, 3, 514, 257, 0, 5734, 5733, 1, 0, 0, 0, 5734, 5735, 1, 0, 0, 0, 5735, 5748, 1, 0, 0, 0, 5736, 5737, 5, 2, 0, 0, 5737, 5742, 3, 512, 256, 0, 5738, 5739, 5, 6, 0, 0, 5739, 5741, 3, 512, 256, 0, 5740, 5738, 1, 0, 0, 0, 5741, 5744, 1, 0, 0, 0, 5742, 5740, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 5745, 1, 0, 0, 0, 5744, 5742, 1, 0, 0, 0, 5745, 5746, 5, 3, 0, 0, 5746, 5748, 1, 0, 0, 0, 5747, 5734, 1, 0, 0, 0, 5747, 5736, 1, 0, 0, 0, 5748, 5750, 1, 0, 0, 0, 5749, 5751, 3, 518, 259, 0, 5750, 5749, 1, 0, 0, 0, 5750, 5751, 1, 0, 0, 0, 5751, 507, 1, 0, 0, 0, 5752, 5753, 7, 73, 0, 0, 5753, 509, 1, 0, 0, 0, 5754, 5757, 3, 826, 413, 0, 5755, 5757, 3, 508, 254, 0, 5756, 5754, 1, 0, 0, 0, 5756, 5755, 1, 0, 0, 0, 5757, 5760, 1, 0, 0, 0, 5758, 5761, 3, 54, 27, 0, 5759, 5761, 3, 202, 101, 0, 5760, 5758, 1, 0, 0, 0, 5760, 5759, 1, 0, 0, 0, 5760, 5761, 1, 0, 0, 0, 5761, 511, 1, 0, 0, 0, 5762, 5764, 7, 74, 0, 0, 5763, 5765, 7, 75, 0, 0, 5764, 5763, 1, 0, 0, 0, 5764, 5765, 1, 0, 0, 0, 5765, 5772, 1, 0, 0, 0, 5766, 5769, 5, 548, 0, 0, 5767, 5770, 3, 202, 101, 0, 5768, 5770, 3, 812, 406, 0, 5769, 5767, 1, 0, 0, 0, 5769, 5768, 1, 0, 0, 0, 5770, 5772, 1, 0, 0, 0, 5771, 5762, 1, 0, 0, 0, 5771, 5766, 1, 0, 0, 0, 5772, 513, 1, 0, 0, 0, 5773, 5775, 5, 128, 0, 0, 5774, 5776, 7, 75, 0, 0, 5775, 5774, 1, 0, 0, 0, 5775, 5776, 1, 0, 0, 0, 5776, 515, 1, 0, 0, 0, 5777, 5779, 3, 778, 389, 0, 5778, 5780, 3, 144, 72, 0, 5779, 5778, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 517, 1, 0, 0, 0, 5781, 5786, 3, 516, 258, 0, 5782, 5783, 5, 6, 0, 0, 5783, 5785, 3, 516, 258, 0, 5784, 5782, 1, 0, 0, 0, 5785, 5788, 1, 0, 0, 0, 5786, 5784, 1, 0, 0, 0, 5786, 5787, 1, 0, 0, 0, 5787, 519, 1, 0, 0, 0, 5788, 5786, 1, 0, 0, 0, 5789, 5800, 5, 203, 0, 0, 5790, 5801, 3, 524, 262, 0, 5791, 5793, 5, 128, 0, 0, 5792, 5791, 1, 0, 0, 0, 5792, 5793, 1, 0, 0, 0, 5793, 5801, 1, 0, 0, 0, 5794, 5796, 3, 508, 254, 0, 5795, 5797, 3, 514, 257, 0, 5796, 5795, 1, 0, 0, 0, 5796, 5797, 1, 0, 0, 0, 5797, 5799, 1, 0, 0, 0, 5798, 5794, 1, 0, 0, 0, 5798, 5799, 1, 0, 0, 0, 5799, 5801, 1, 0, 0, 0, 5800, 5790, 1, 0, 0, 0, 5800, 5792, 1, 0, 0, 0, 5800, 5798, 1, 0, 0, 0, 5801, 5802, 1, 0, 0, 0, 5802, 5803, 3, 522, 261, 0, 5803, 521, 1, 0, 0, 0, 5804, 5814, 3, 560, 280, 0, 5805, 5814, 3, 538, 269, 0, 5806, 5814, 3, 552, 276, 0, 5807, 5814, 3, 548, 274, 0, 5808, 5814, 3, 558, 279, 0, 5809, 5814, 3, 186, 93, 0, 5810, 5814, 3, 192, 96, 0, 5811, 5814, 3, 194, 97, 0, 5812, 5814, 3, 532, 266, 0, 5813, 5804, 1, 0, 0, 0, 5813, 5805, 1, 0, 0, 0, 5813, 5806, 1, 0, 0, 0, 5813, 5807, 1, 0, 0, 0, 5813, 5808, 1, 0, 0, 0, 5813, 5809, 1, 0, 0, 0, 5813, 5810, 1, 0, 0, 0, 5813, 5811, 1, 0, 0, 0, 5813, 5812, 1, 0, 0, 0, 5814, 523, 1, 0, 0, 0, 5815, 5816, 5, 2, 0, 0, 5816, 5821, 3, 510, 255, 0, 5817, 5818, 5, 6, 0, 0, 5818, 5820, 3, 510, 255, 0, 5819, 5817, 1, 0, 0, 0, 5820, 5823, 1, 0, 0, 0, 5821, 5819, 1, 0, 0, 0, 5821, 5822, 1, 0, 0, 0, 5822, 5824, 1, 0, 0, 0, 5823, 5821, 1, 0, 0, 0, 5824, 5825, 5, 3, 0, 0, 5825, 525, 1, 0, 0, 0, 5826, 5827, 5, 290, 0, 0, 5827, 5829, 3, 822, 411, 0, 5828, 5830, 3, 528, 264, 0, 5829, 5828, 1, 0, 0, 0, 5829, 5830, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, 5831, 5832, 5, 36, 0, 0, 5832, 5833, 3, 530, 265, 0, 5833, 527, 1, 0, 0, 0, 5834, 5835, 5, 2, 0, 0, 5835, 5840, 3, 654, 327, 0, 5836, 5837, 5, 6, 0, 0, 5837, 5839, 3, 654, 327, 0, 5838, 5836, 1, 0, 0, 0, 5839, 5842, 1, 0, 0, 0, 5840, 5838, 1, 0, 0, 0, 5840, 5841, 1, 0, 0, 0, 5841, 5843, 1, 0, 0, 0, 5842, 5840, 1, 0, 0, 0, 5843, 5844, 5, 3, 0, 0, 5844, 529, 1, 0, 0, 0, 5845, 5850, 3, 560, 280, 0, 5846, 5850, 3, 538, 269, 0, 5847, 5850, 3, 552, 276, 0, 5848, 5850, 3, 548, 274, 0, 5849, 5845, 1, 0, 0, 0, 5849, 5846, 1, 0, 0, 0, 5849, 5847, 1, 0, 0, 0, 5849, 5848, 1, 0, 0, 0, 5850, 531, 1, 0, 0, 0, 5851, 5852, 5, 202, 0, 0, 5852, 5854, 3, 822, 411, 0, 5853, 5855, 3, 534, 267, 0, 5854, 5853, 1, 0, 0, 0, 5854, 5855, 1, 0, 0, 0, 5855, 5875, 1, 0, 0, 0, 5856, 5858, 5, 46, 0, 0, 5857, 5859, 3, 122, 61, 0, 5858, 5857, 1, 0, 0, 0, 5858, 5859, 1, 0, 0, 0, 5859, 5860, 1, 0, 0, 0, 5860, 5862, 5, 92, 0, 0, 5861, 5863, 3, 294, 147, 0, 5862, 5861, 1, 0, 0, 0, 5862, 5863, 1, 0, 0, 0, 5863, 5864, 1, 0, 0, 0, 5864, 5865, 3, 188, 94, 0, 5865, 5866, 5, 36, 0, 0, 5866, 5867, 5, 202, 0, 0, 5867, 5869, 3, 822, 411, 0, 5868, 5870, 3, 534, 267, 0, 5869, 5868, 1, 0, 0, 0, 5869, 5870, 1, 0, 0, 0, 5870, 5872, 1, 0, 0, 0, 5871, 5873, 3, 190, 95, 0, 5872, 5871, 1, 0, 0, 0, 5872, 5873, 1, 0, 0, 0, 5873, 5875, 1, 0, 0, 0, 5874, 5851, 1, 0, 0, 0, 5874, 5856, 1, 0, 0, 0, 5875, 533, 1, 0, 0, 0, 5876, 5877, 5, 2, 0, 0, 5877, 5878, 3, 732, 366, 0, 5878, 5879, 5, 3, 0, 0, 5879, 535, 1, 0, 0, 0, 5880, 5882, 5, 177, 0, 0, 5881, 5883, 5, 290, 0, 0, 5882, 5881, 1, 0, 0, 0, 5882, 5883, 1, 0, 0, 0, 5883, 5886, 1, 0, 0, 0, 5884, 5887, 3, 822, 411, 0, 5885, 5887, 5, 30, 0, 0, 5886, 5884, 1, 0, 0, 0, 5886, 5885, 1, 0, 0, 0, 5887, 537, 1, 0, 0, 0, 5888, 5890, 3, 572, 286, 0, 5889, 5888, 1, 0, 0, 0, 5889, 5890, 1, 0, 0, 0, 5890, 5891, 1, 0, 0, 0, 5891, 5892, 5, 241, 0, 0, 5892, 5893, 5, 71, 0, 0, 5893, 5896, 3, 778, 389, 0, 5894, 5895, 5, 36, 0, 0, 5895, 5897, 3, 822, 411, 0, 5896, 5894, 1, 0, 0, 0, 5896, 5897, 1, 0, 0, 0, 5897, 5898, 1, 0, 0, 0, 5898, 5920, 3, 540, 270, 0, 5899, 5900, 5, 80, 0, 0, 5900, 5908, 5, 464, 0, 0, 5901, 5903, 3, 360, 180, 0, 5902, 5904, 3, 640, 320, 0, 5903, 5902, 1, 0, 0, 0, 5903, 5904, 1, 0, 0, 0, 5904, 5909, 1, 0, 0, 0, 5905, 5906, 5, 80, 0, 0, 5906, 5907, 5, 45, 0, 0, 5907, 5909, 3, 822, 411, 0, 5908, 5901, 1, 0, 0, 0, 5908, 5905, 1, 0, 0, 0, 5908, 5909, 1, 0, 0, 0, 5909, 5910, 1, 0, 0, 0, 5910, 5918, 5, 57, 0, 0, 5911, 5912, 5, 369, 0, 0, 5912, 5913, 5, 333, 0, 0, 5913, 5915, 3, 554, 277, 0, 5914, 5916, 3, 640, 320, 0, 5915, 5914, 1, 0, 0, 0, 5915, 5916, 1, 0, 0, 0, 5916, 5919, 1, 0, 0, 0, 5917, 5919, 5, 270, 0, 0, 5918, 5911, 1, 0, 0, 0, 5918, 5917, 1, 0, 0, 0, 5919, 5921, 1, 0, 0, 0, 5920, 5899, 1, 0, 0, 0, 5920, 5921, 1, 0, 0, 0, 5921, 5923, 1, 0, 0, 0, 5922, 5924, 3, 546, 273, 0, 5923, 5922, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 539, 1, 0, 0, 0, 5925, 5926, 5, 2, 0, 0, 5926, 5927, 3, 542, 271, 0, 5927, 5928, 5, 3, 0, 0, 5928, 5930, 1, 0, 0, 0, 5929, 5925, 1, 0, 0, 0, 5929, 5930, 1, 0, 0, 0, 5930, 5934, 1, 0, 0, 0, 5931, 5932, 5, 463, 0, 0, 5932, 5933, 7, 76, 0, 0, 5933, 5935, 5, 450, 0, 0, 5934, 5931, 1, 0, 0, 0, 5934, 5935, 1, 0, 0, 0, 5935, 5938, 1, 0, 0, 0, 5936, 5939, 3, 914, 457, 0, 5937, 5939, 3, 560, 280, 0, 5938, 5936, 1, 0, 0, 0, 5938, 5937, 1, 0, 0, 0, 5939, 541, 1, 0, 0, 0, 5940, 5945, 3, 544, 272, 0, 5941, 5942, 5, 6, 0, 0, 5942, 5944, 3, 544, 272, 0, 5943, 5941, 1, 0, 0, 0, 5944, 5947, 1, 0, 0, 0, 5945, 5943, 1, 0, 0, 0, 5945, 5946, 1, 0, 0, 0, 5946, 543, 1, 0, 0, 0, 5947, 5945, 1, 0, 0, 0, 5948, 5949, 3, 804, 402, 0, 5949, 5950, 3, 756, 378, 0, 5950, 545, 1, 0, 0, 0, 5951, 5952, 5, 87, 0, 0, 5952, 5953, 3, 758, 379, 0, 5953, 547, 1, 0, 0, 0, 5954, 5956, 3, 572, 286, 0, 5955, 5954, 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 5957, 1, 0, 0, 0, 5957, 5958, 5, 182, 0, 0, 5958, 5959, 5, 64, 0, 0, 5959, 5962, 3, 632, 316, 0, 5960, 5961, 5, 100, 0, 0, 5961, 5963, 3, 612, 306, 0, 5962, 5960, 1, 0, 0, 0, 5962, 5963, 1, 0, 0, 0, 5963, 5965, 1, 0, 0, 0, 5964, 5966, 3, 642, 321, 0, 5965, 5964, 1, 0, 0, 0, 5965, 5966, 1, 0, 0, 0, 5966, 5968, 1, 0, 0, 0, 5967, 5969, 3, 546, 273, 0, 5968, 5967, 1, 0, 0, 0, 5968, 5969, 1, 0, 0, 0, 5969, 549, 1, 0, 0, 0, 5970, 5972, 5, 256, 0, 0, 5971, 5973, 5, 92, 0, 0, 5972, 5971, 1, 0, 0, 0, 5972, 5973, 1, 0, 0, 0, 5973, 5974, 1, 0, 0, 0, 5974, 5989, 3, 630, 315, 0, 5975, 5986, 5, 68, 0, 0, 5976, 5977, 7, 77, 0, 0, 5977, 5987, 7, 78, 0, 0, 5978, 5983, 5, 334, 0, 0, 5979, 5980, 5, 369, 0, 0, 5980, 5984, 5, 201, 0, 0, 5981, 5982, 5, 414, 0, 0, 5982, 5984, 5, 201, 0, 0, 5983, 5979, 1, 0, 0, 0, 5983, 5981, 1, 0, 0, 0, 5983, 5984, 1, 0, 0, 0, 5984, 5987, 1, 0, 0, 0, 5985, 5987, 5, 201, 0, 0, 5986, 5976, 1, 0, 0, 0, 5986, 5978, 1, 0, 0, 0, 5986, 5985, 1, 0, 0, 0, 5987, 5988, 1, 0, 0, 0, 5988, 5990, 5, 263, 0, 0, 5989, 5975, 1, 0, 0, 0, 5989, 5990, 1, 0, 0, 0, 5990, 5992, 1, 0, 0, 0, 5991, 5993, 5, 272, 0, 0, 5992, 5991, 1, 0, 0, 0, 5992, 5993, 1, 0, 0, 0, 5993, 551, 1, 0, 0, 0, 5994, 5996, 3, 572, 286, 0, 5995, 5994, 1, 0, 0, 0, 5995, 5996, 1, 0, 0, 0, 5996, 5997, 1, 0, 0, 0, 5997, 5998, 5, 369, 0, 0, 5998, 5999, 3, 632, 316, 0, 5999, 6000, 5, 333, 0, 0, 6000, 6002, 3, 554, 277, 0, 6001, 6003, 3, 610, 305, 0, 6002, 6001, 1, 0, 0, 0, 6002, 6003, 1, 0, 0, 0, 6003, 6005, 1, 0, 0, 0, 6004, 6006, 3, 642, 321, 0, 6005, 6004, 1, 0, 0, 0, 6005, 6006, 1, 0, 0, 0, 6006, 6008, 1, 0, 0, 0, 6007, 6009, 3, 546, 273, 0, 6008, 6007, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 553, 1, 0, 0, 0, 6010, 6015, 3, 556, 278, 0, 6011, 6012, 5, 6, 0, 0, 6012, 6014, 3, 556, 278, 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, 555, 1, 0, 0, 0, 6017, 6015, 1, 0, 0, 0, 6018, 6019, 3, 544, 272, 0, 6019, 6020, 5, 10, 0, 0, 6020, 6021, 3, 676, 338, 0, 6021, 6037, 1, 0, 0, 0, 6022, 6023, 5, 2, 0, 0, 6023, 6024, 3, 542, 271, 0, 6024, 6025, 5, 3, 0, 0, 6025, 6034, 5, 10, 0, 0, 6026, 6028, 5, 414, 0, 0, 6027, 6026, 1, 0, 0, 0, 6027, 6028, 1, 0, 0, 0, 6028, 6029, 1, 0, 0, 0, 6029, 6035, 3, 676, 338, 0, 6030, 6031, 5, 2, 0, 0, 6031, 6032, 3, 566, 283, 0, 6032, 6033, 5, 3, 0, 0, 6033, 6035, 1, 0, 0, 0, 6034, 6027, 1, 0, 0, 0, 6034, 6030, 1, 0, 0, 0, 6035, 6037, 1, 0, 0, 0, 6036, 6018, 1, 0, 0, 0, 6036, 6022, 1, 0, 0, 0, 6037, 557, 1, 0, 0, 0, 6038, 6039, 5, 178, 0, 0, 6039, 6048, 3, 822, 411, 0, 6040, 6042, 5, 269, 0, 0, 6041, 6040, 1, 0, 0, 0, 6041, 6042, 1, 0, 0, 0, 6042, 6043, 1, 0, 0, 0, 6043, 6047, 5, 324, 0, 0, 6044, 6047, 5, 107, 0, 0, 6045, 6047, 5, 240, 0, 0, 6046, 6041, 1, 0, 0, 0, 6046, 6044, 1, 0, 0, 0, 6046, 6045, 1, 0, 0, 0, 6047, 6050, 1, 0, 0, 0, 6048, 6046, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6051, 1, 0, 0, 0, 6050, 6048, 1, 0, 0, 0, 6051, 6054, 5, 172, 0, 0, 6052, 6053, 7, 26, 0, 0, 6053, 6055, 5, 217, 0, 0, 6054, 6052, 1, 0, 0, 0, 6054, 6055, 1, 0, 0, 0, 6055, 6056, 1, 0, 0, 0, 6056, 6057, 5, 62, 0, 0, 6057, 6058, 3, 560, 280, 0, 6058, 559, 1, 0, 0, 0, 6059, 6062, 3, 564, 282, 0, 6060, 6062, 3, 562, 281, 0, 6061, 6059, 1, 0, 0, 0, 6061, 6060, 1, 0, 0, 0, 6062, 561, 1, 0, 0, 0, 6063, 6066, 5, 2, 0, 0, 6064, 6067, 3, 564, 282, 0, 6065, 6067, 3, 562, 281, 0, 6066, 6064, 1, 0, 0, 0, 6066, 6065, 1, 0, 0, 0, 6067, 6068, 1, 0, 0, 0, 6068, 6069, 5, 3, 0, 0, 6069, 563, 1, 0, 0, 0, 6070, 6072, 3, 572, 286, 0, 6071, 6070, 1, 0, 0, 0, 6071, 6072, 1, 0, 0, 0, 6072, 6073, 1, 0, 0, 0, 6073, 6075, 3, 566, 283, 0, 6074, 6076, 3, 586, 293, 0, 6075, 6074, 1, 0, 0, 0, 6075, 6076, 1, 0, 0, 0, 6076, 6085, 1, 0, 0, 0, 6077, 6079, 3, 606, 303, 0, 6078, 6080, 3, 590, 295, 0, 6079, 6078, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6086, 1, 0, 0, 0, 6081, 6083, 3, 590, 295, 0, 6082, 6084, 3, 606, 303, 0, 6083, 6082, 1, 0, 0, 0, 6083, 6084, 1, 0, 0, 0, 6084, 6086, 1, 0, 0, 0, 6085, 6077, 1, 0, 0, 0, 6085, 6081, 1, 0, 0, 0, 6085, 6086, 1, 0, 0, 0, 6086, 565, 1, 0, 0, 0, 6087, 6090, 3, 568, 284, 0, 6088, 6090, 3, 562, 281, 0, 6089, 6087, 1, 0, 0, 0, 6089, 6088, 1, 0, 0, 0, 6090, 567, 1, 0, 0, 0, 6091, 6101, 5, 88, 0, 0, 6092, 6094, 5, 30, 0, 0, 6093, 6092, 1, 0, 0, 0, 6093, 6094, 1, 0, 0, 0, 6094, 6096, 1, 0, 0, 0, 6095, 6097, 3, 580, 290, 0, 6096, 6095, 1, 0, 0, 0, 6096, 6097, 1, 0, 0, 0, 6097, 6102, 1, 0, 0, 0, 6098, 6100, 3, 584, 292, 0, 6099, 6098, 1, 0, 0, 0, 6099, 6100, 1, 0, 0, 0, 6100, 6102, 1, 0, 0, 0, 6101, 6093, 1, 0, 0, 0, 6101, 6099, 1, 0, 0, 0, 6102, 6103, 1, 0, 0, 0, 6103, 6114, 3, 934, 467, 0, 6104, 6114, 3, 608, 304, 0, 6105, 6106, 5, 92, 0, 0, 6106, 6114, 3, 626, 313, 0, 6107, 6108, 3, 562, 281, 0, 6108, 6111, 3, 570, 285, 0, 6109, 6112, 3, 568, 284, 0, 6110, 6112, 3, 562, 281, 0, 6111, 6109, 1, 0, 0, 0, 6111, 6110, 1, 0, 0, 0, 6112, 6114, 1, 0, 0, 0, 6113, 6091, 1, 0, 0, 0, 6113, 6104, 1, 0, 0, 0, 6113, 6105, 1, 0, 0, 0, 6113, 6107, 1, 0, 0, 0, 6114, 6122, 1, 0, 0, 0, 6115, 6118, 3, 570, 285, 0, 6116, 6119, 3, 568, 284, 0, 6117, 6119, 3, 562, 281, 0, 6118, 6116, 1, 0, 0, 0, 6118, 6117, 1, 0, 0, 0, 6119, 6121, 1, 0, 0, 0, 6120, 6115, 1, 0, 0, 0, 6121, 6124, 1, 0, 0, 0, 6122, 6120, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 569, 1, 0, 0, 0, 6124, 6122, 1, 0, 0, 0, 6125, 6127, 7, 79, 0, 0, 6126, 6128, 7, 80, 0, 0, 6127, 6126, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 571, 1, 0, 0, 0, 6129, 6131, 5, 105, 0, 0, 6130, 6132, 5, 303, 0, 0, 6131, 6130, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 6133, 1, 0, 0, 0, 6133, 6138, 3, 574, 287, 0, 6134, 6135, 5, 6, 0, 0, 6135, 6137, 3, 574, 287, 0, 6136, 6134, 1, 0, 0, 0, 6137, 6140, 1, 0, 0, 0, 6138, 6136, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 573, 1, 0, 0, 0, 6140, 6138, 1, 0, 0, 0, 6141, 6143, 3, 822, 411, 0, 6142, 6144, 3, 144, 72, 0, 6143, 6142, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6145, 1, 0, 0, 0, 6145, 6150, 5, 36, 0, 0, 6146, 6148, 5, 77, 0, 0, 6147, 6146, 1, 0, 0, 0, 6147, 6148, 1, 0, 0, 0, 6148, 6149, 1, 0, 0, 0, 6149, 6151, 5, 259, 0, 0, 6150, 6147, 1, 0, 0, 0, 6150, 6151, 1, 0, 0, 0, 6151, 6152, 1, 0, 0, 0, 6152, 6153, 5, 2, 0, 0, 6153, 6154, 3, 530, 265, 0, 6154, 6156, 5, 3, 0, 0, 6155, 6157, 3, 576, 288, 0, 6156, 6155, 1, 0, 0, 0, 6156, 6157, 1, 0, 0, 0, 6157, 6159, 1, 0, 0, 0, 6158, 6160, 3, 578, 289, 0, 6159, 6158, 1, 0, 0, 0, 6159, 6160, 1, 0, 0, 0, 6160, 575, 1, 0, 0, 0, 6161, 6162, 5, 325, 0, 0, 6162, 6163, 7, 81, 0, 0, 6163, 6164, 5, 207, 0, 0, 6164, 6165, 5, 147, 0, 0, 6165, 6166, 3, 148, 74, 0, 6166, 6167, 5, 333, 0, 0, 6167, 6168, 3, 804, 402, 0, 6168, 577, 1, 0, 0, 0, 6169, 6170, 5, 173, 0, 0, 6170, 6171, 3, 148, 74, 0, 6171, 6172, 5, 333, 0, 0, 6172, 6178, 3, 804, 402, 0, 6173, 6174, 5, 94, 0, 0, 6174, 6175, 3, 822, 411, 0, 6175, 6176, 5, 53, 0, 0, 6176, 6177, 3, 822, 411, 0, 6177, 6179, 1, 0, 0, 0, 6178, 6173, 1, 0, 0, 0, 6178, 6179, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6181, 5, 100, 0, 0, 6181, 6182, 3, 804, 402, 0, 6182, 579, 1, 0, 0, 0, 6183, 6189, 5, 71, 0, 0, 6184, 6186, 5, 346, 0, 0, 6185, 6184, 1, 0, 0, 0, 6185, 6186, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6190, 3, 582, 291, 0, 6188, 6190, 3, 732, 366, 0, 6189, 6185, 1, 0, 0, 0, 6189, 6188, 1, 0, 0, 0, 6190, 581, 1, 0, 0, 0, 6191, 6193, 7, 20, 0, 0, 6192, 6191, 1, 0, 0, 0, 6192, 6193, 1, 0, 0, 0, 6193, 6194, 1, 0, 0, 0, 6194, 6196, 7, 21, 0, 0, 6195, 6197, 5, 92, 0, 0, 6196, 6195, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6198, 1, 0, 0, 0, 6198, 6207, 3, 776, 388, 0, 6199, 6201, 5, 367, 0, 0, 6200, 6199, 1, 0, 0, 0, 6200, 6201, 1, 0, 0, 0, 6201, 6203, 1, 0, 0, 0, 6202, 6204, 5, 92, 0, 0, 6203, 6202, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6205, 1, 0, 0, 0, 6205, 6207, 3, 776, 388, 0, 6206, 6192, 1, 0, 0, 0, 6206, 6200, 1, 0, 0, 0, 6207, 583, 1, 0, 0, 0, 6208, 6211, 5, 56, 0, 0, 6209, 6210, 5, 80, 0, 0, 6210, 6212, 3, 534, 267, 0, 6211, 6209, 1, 0, 0, 0, 6211, 6212, 1, 0, 0, 0, 6212, 585, 1, 0, 0, 0, 6213, 6214, 5, 83, 0, 0, 6214, 6215, 5, 147, 0, 0, 6215, 6220, 3, 588, 294, 0, 6216, 6217, 5, 6, 0, 0, 6217, 6219, 3, 588, 294, 0, 6218, 6216, 1, 0, 0, 0, 6219, 6222, 1, 0, 0, 0, 6220, 6218, 1, 0, 0, 0, 6220, 6221, 1, 0, 0, 0, 6221, 587, 1, 0, 0, 0, 6222, 6220, 1, 0, 0, 0, 6223, 6227, 3, 736, 368, 0, 6224, 6225, 5, 100, 0, 0, 6225, 6228, 3, 728, 364, 0, 6226, 6228, 7, 55, 0, 0, 6227, 6224, 1, 0, 0, 0, 6227, 6226, 1, 0, 0, 0, 6227, 6228, 1, 0, 0, 0, 6228, 6231, 1, 0, 0, 0, 6229, 6230, 5, 273, 0, 0, 6230, 6232, 7, 56, 0, 0, 6231, 6229, 1, 0, 0, 0, 6231, 6232, 1, 0, 0, 0, 6232, 589, 1, 0, 0, 0, 6233, 6235, 3, 596, 298, 0, 6234, 6236, 3, 594, 297, 0, 6235, 6234, 1, 0, 0, 0, 6235, 6236, 1, 0, 0, 0, 6236, 6245, 1, 0, 0, 0, 6237, 6240, 3, 592, 296, 0, 6238, 6240, 3, 594, 297, 0, 6239, 6237, 1, 0, 0, 0, 6239, 6238, 1, 0, 0, 0, 6240, 6242, 1, 0, 0, 0, 6241, 6243, 3, 596, 298, 0, 6242, 6241, 1, 0, 0, 0, 6242, 6243, 1, 0, 0, 0, 6243, 6245, 1, 0, 0, 0, 6244, 6233, 1, 0, 0, 0, 6244, 6239, 1, 0, 0, 0, 6245, 591, 1, 0, 0, 0, 6246, 6249, 5, 74, 0, 0, 6247, 6250, 3, 676, 338, 0, 6248, 6250, 5, 30, 0, 0, 6249, 6247, 1, 0, 0, 0, 6249, 6248, 1, 0, 0, 0, 6250, 6253, 1, 0, 0, 0, 6251, 6252, 5, 6, 0, 0, 6252, 6254, 3, 676, 338, 0, 6253, 6251, 1, 0, 0, 0, 6253, 6254, 1, 0, 0, 0, 6254, 593, 1, 0, 0, 0, 6255, 6256, 5, 61, 0, 0, 6256, 6258, 7, 82, 0, 0, 6257, 6259, 3, 598, 299, 0, 6258, 6257, 1, 0, 0, 0, 6258, 6259, 1, 0, 0, 0, 6259, 6260, 1, 0, 0, 0, 6260, 6264, 7, 83, 0, 0, 6261, 6265, 5, 81, 0, 0, 6262, 6263, 5, 105, 0, 0, 6263, 6265, 5, 467, 0, 0, 6264, 6261, 1, 0, 0, 0, 6264, 6262, 1, 0, 0, 0, 6265, 595, 1, 0, 0, 0, 6266, 6271, 5, 79, 0, 0, 6267, 6268, 3, 598, 299, 0, 6268, 6269, 7, 83, 0, 0, 6269, 6272, 1, 0, 0, 0, 6270, 6272, 3, 676, 338, 0, 6271, 6267, 1, 0, 0, 0, 6271, 6270, 1, 0, 0, 0, 6272, 597, 1, 0, 0, 0, 6273, 6274, 7, 29, 0, 0, 6274, 6277, 7, 84, 0, 0, 6275, 6277, 3, 684, 342, 0, 6276, 6273, 1, 0, 0, 0, 6276, 6275, 1, 0, 0, 0, 6277, 599, 1, 0, 0, 0, 6278, 6279, 5, 66, 0, 0, 6279, 6281, 5, 147, 0, 0, 6280, 6282, 7, 80, 0, 0, 6281, 6280, 1, 0, 0, 0, 6281, 6282, 1, 0, 0, 0, 6282, 6283, 1, 0, 0, 0, 6283, 6284, 3, 602, 301, 0, 6284, 601, 1, 0, 0, 0, 6285, 6290, 3, 604, 302, 0, 6286, 6287, 5, 6, 0, 0, 6287, 6289, 3, 604, 302, 0, 6288, 6286, 1, 0, 0, 0, 6289, 6292, 1, 0, 0, 0, 6290, 6288, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 603, 1, 0, 0, 0, 6292, 6290, 1, 0, 0, 0, 6293, 6317, 3, 736, 368, 0, 6294, 6295, 5, 2, 0, 0, 6295, 6317, 5, 3, 0, 0, 6296, 6298, 7, 85, 0, 0, 6297, 6296, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6299, 1, 0, 0, 0, 6299, 6300, 5, 2, 0, 0, 6300, 6305, 3, 736, 368, 0, 6301, 6302, 5, 6, 0, 0, 6302, 6304, 3, 736, 368, 0, 6303, 6301, 1, 0, 0, 0, 6304, 6307, 1, 0, 0, 0, 6305, 6303, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 6308, 1, 0, 0, 0, 6307, 6305, 1, 0, 0, 0, 6308, 6309, 5, 3, 0, 0, 6309, 6317, 1, 0, 0, 0, 6310, 6311, 5, 470, 0, 0, 6311, 6312, 5, 471, 0, 0, 6312, 6313, 5, 2, 0, 0, 6313, 6314, 3, 602, 301, 0, 6314, 6315, 5, 3, 0, 0, 6315, 6317, 1, 0, 0, 0, 6316, 6293, 1, 0, 0, 0, 6316, 6294, 1, 0, 0, 0, 6316, 6297, 1, 0, 0, 0, 6316, 6310, 1, 0, 0, 0, 6317, 605, 1, 0, 0, 0, 6318, 6328, 5, 62, 0, 0, 6319, 6320, 5, 269, 0, 0, 6320, 6322, 5, 245, 0, 0, 6321, 6319, 1, 0, 0, 0, 6321, 6322, 1, 0, 0, 0, 6322, 6323, 1, 0, 0, 0, 6323, 6329, 5, 369, 0, 0, 6324, 6326, 5, 245, 0, 0, 6325, 6324, 1, 0, 0, 0, 6325, 6326, 1, 0, 0, 0, 6326, 6327, 1, 0, 0, 0, 6327, 6329, 5, 334, 0, 0, 6328, 6321, 1, 0, 0, 0, 6328, 6325, 1, 0, 0, 0, 6329, 6332, 1, 0, 0, 0, 6330, 6331, 5, 275, 0, 0, 6331, 6333, 3, 764, 382, 0, 6332, 6330, 1, 0, 0, 0, 6332, 6333, 1, 0, 0, 0, 6333, 6337, 1, 0, 0, 0, 6334, 6338, 5, 272, 0, 0, 6335, 6336, 5, 465, 0, 0, 6336, 6338, 5, 466, 0, 0, 6337, 6334, 1, 0, 0, 0, 6337, 6335, 1, 0, 0, 0, 6337, 6338, 1, 0, 0, 0, 6338, 6340, 1, 0, 0, 0, 6339, 6318, 1, 0, 0, 0, 6340, 6341, 1, 0, 0, 0, 6341, 6339, 1, 0, 0, 0, 6341, 6342, 1, 0, 0, 0, 6342, 6347, 1, 0, 0, 0, 6343, 6344, 5, 62, 0, 0, 6344, 6345, 5, 300, 0, 0, 6345, 6347, 5, 81, 0, 0, 6346, 6339, 1, 0, 0, 0, 6346, 6343, 1, 0, 0, 0, 6347, 607, 1, 0, 0, 0, 6348, 6349, 5, 422, 0, 0, 6349, 6354, 3, 534, 267, 0, 6350, 6351, 5, 6, 0, 0, 6351, 6353, 3, 534, 267, 0, 6352, 6350, 1, 0, 0, 0, 6353, 6356, 1, 0, 0, 0, 6354, 6352, 1, 0, 0, 0, 6354, 6355, 1, 0, 0, 0, 6355, 609, 1, 0, 0, 0, 6356, 6354, 1, 0, 0, 0, 6357, 6358, 5, 64, 0, 0, 6358, 6359, 3, 612, 306, 0, 6359, 611, 1, 0, 0, 0, 6360, 6365, 3, 614, 307, 0, 6361, 6362, 5, 6, 0, 0, 6362, 6364, 3, 614, 307, 0, 6363, 6361, 1, 0, 0, 0, 6364, 6367, 1, 0, 0, 0, 6365, 6363, 1, 0, 0, 0, 6365, 6366, 1, 0, 0, 0, 6366, 613, 1, 0, 0, 0, 6367, 6365, 1, 0, 0, 0, 6368, 6383, 3, 626, 313, 0, 6369, 6371, 5, 81, 0, 0, 6370, 6369, 1, 0, 0, 0, 6370, 6371, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6374, 3, 782, 391, 0, 6373, 6375, 5, 9, 0, 0, 6374, 6373, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6377, 1, 0, 0, 0, 6376, 6378, 3, 148, 74, 0, 6377, 6376, 1, 0, 0, 0, 6377, 6378, 1, 0, 0, 0, 6378, 6380, 1, 0, 0, 0, 6379, 6381, 3, 640, 320, 0, 6380, 6379, 1, 0, 0, 0, 6380, 6381, 1, 0, 0, 0, 6381, 6383, 1, 0, 0, 0, 6382, 6368, 1, 0, 0, 0, 6382, 6370, 1, 0, 0, 0, 6383, 6385, 1, 0, 0, 0, 6384, 6386, 3, 618, 309, 0, 6385, 6384, 1, 0, 0, 0, 6385, 6386, 1, 0, 0, 0, 6386, 6388, 1, 0, 0, 0, 6387, 6389, 3, 634, 317, 0, 6388, 6387, 1, 0, 0, 0, 6388, 6389, 1, 0, 0, 0, 6389, 6419, 1, 0, 0, 0, 6390, 6392, 5, 72, 0, 0, 6391, 6390, 1, 0, 0, 0, 6391, 6392, 1, 0, 0, 0, 6392, 6393, 1, 0, 0, 0, 6393, 6419, 3, 616, 308, 0, 6394, 6395, 5, 2, 0, 0, 6395, 6412, 3, 614, 307, 0, 6396, 6397, 5, 110, 0, 0, 6397, 6398, 5, 118, 0, 0, 6398, 6413, 3, 614, 307, 0, 6399, 6401, 5, 121, 0, 0, 6400, 6402, 3, 622, 311, 0, 6401, 6400, 1, 0, 0, 0, 6401, 6402, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6404, 5, 118, 0, 0, 6404, 6413, 3, 614, 307, 0, 6405, 6407, 3, 622, 311, 0, 6406, 6405, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6409, 5, 118, 0, 0, 6409, 6410, 3, 614, 307, 0, 6410, 6411, 3, 624, 312, 0, 6411, 6413, 1, 0, 0, 0, 6412, 6396, 1, 0, 0, 0, 6412, 6399, 1, 0, 0, 0, 6412, 6406, 1, 0, 0, 0, 6412, 6413, 1, 0, 0, 0, 6413, 6414, 1, 0, 0, 0, 6414, 6416, 5, 3, 0, 0, 6415, 6417, 3, 618, 309, 0, 6416, 6415, 1, 0, 0, 0, 6416, 6417, 1, 0, 0, 0, 6417, 6419, 1, 0, 0, 0, 6418, 6382, 1, 0, 0, 0, 6418, 6391, 1, 0, 0, 0, 6418, 6394, 1, 0, 0, 0, 6419, 6438, 1, 0, 0, 0, 6420, 6421, 5, 110, 0, 0, 6421, 6422, 5, 118, 0, 0, 6422, 6437, 3, 614, 307, 0, 6423, 6425, 5, 121, 0, 0, 6424, 6426, 3, 622, 311, 0, 6425, 6424, 1, 0, 0, 0, 6425, 6426, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6428, 5, 118, 0, 0, 6428, 6437, 3, 614, 307, 0, 6429, 6431, 3, 622, 311, 0, 6430, 6429, 1, 0, 0, 0, 6430, 6431, 1, 0, 0, 0, 6431, 6432, 1, 0, 0, 0, 6432, 6433, 5, 118, 0, 0, 6433, 6434, 3, 614, 307, 0, 6434, 6435, 3, 624, 312, 0, 6435, 6437, 1, 0, 0, 0, 6436, 6420, 1, 0, 0, 0, 6436, 6423, 1, 0, 0, 0, 6436, 6430, 1, 0, 0, 0, 6437, 6440, 1, 0, 0, 0, 6438, 6436, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 615, 1, 0, 0, 0, 6440, 6438, 1, 0, 0, 0, 6441, 6443, 3, 648, 324, 0, 6442, 6444, 3, 618, 309, 0, 6443, 6442, 1, 0, 0, 0, 6443, 6444, 1, 0, 0, 0, 6444, 6454, 1, 0, 0, 0, 6445, 6447, 3, 636, 318, 0, 6446, 6448, 3, 620, 310, 0, 6447, 6446, 1, 0, 0, 0, 6447, 6448, 1, 0, 0, 0, 6448, 6454, 1, 0, 0, 0, 6449, 6451, 3, 562, 281, 0, 6450, 6452, 3, 618, 309, 0, 6451, 6450, 1, 0, 0, 0, 6451, 6452, 1, 0, 0, 0, 6452, 6454, 1, 0, 0, 0, 6453, 6441, 1, 0, 0, 0, 6453, 6445, 1, 0, 0, 0, 6453, 6449, 1, 0, 0, 0, 6454, 617, 1, 0, 0, 0, 6455, 6457, 5, 36, 0, 0, 6456, 6455, 1, 0, 0, 0, 6456, 6457, 1, 0, 0, 0, 6457, 6458, 1, 0, 0, 0, 6458, 6463, 3, 822, 411, 0, 6459, 6460, 5, 2, 0, 0, 6460, 6461, 3, 788, 394, 0, 6461, 6462, 5, 3, 0, 0, 6462, 6464, 1, 0, 0, 0, 6463, 6459, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 619, 1, 0, 0, 0, 6465, 6478, 3, 618, 309, 0, 6466, 6468, 5, 36, 0, 0, 6467, 6469, 3, 822, 411, 0, 6468, 6467, 1, 0, 0, 0, 6468, 6469, 1, 0, 0, 0, 6469, 6472, 1, 0, 0, 0, 6470, 6472, 3, 822, 411, 0, 6471, 6466, 1, 0, 0, 0, 6471, 6470, 1, 0, 0, 0, 6472, 6473, 1, 0, 0, 0, 6473, 6474, 5, 2, 0, 0, 6474, 6475, 3, 644, 322, 0, 6475, 6476, 5, 3, 0, 0, 6476, 6478, 1, 0, 0, 0, 6477, 6465, 1, 0, 0, 0, 6477, 6471, 1, 0, 0, 0, 6478, 621, 1, 0, 0, 0, 6479, 6481, 7, 86, 0, 0, 6480, 6482, 5, 123, 0, 0, 6481, 6480, 1, 0, 0, 0, 6481, 6482, 1, 0, 0, 0, 6482, 623, 1, 0, 0, 0, 6483, 6484, 5, 100, 0, 0, 6484, 6488, 3, 144, 72, 0, 6485, 6486, 5, 80, 0, 0, 6486, 6488, 3, 676, 338, 0, 6487, 6483, 1, 0, 0, 0, 6487, 6485, 1, 0, 0, 0, 6488, 625, 1, 0, 0, 0, 6489, 6505, 3, 322, 161, 0, 6490, 6496, 5, 81, 0, 0, 6491, 6497, 3, 778, 389, 0, 6492, 6493, 5, 2, 0, 0, 6493, 6494, 3, 778, 389, 0, 6494, 6495, 5, 3, 0, 0, 6495, 6497, 1, 0, 0, 0, 6496, 6491, 1, 0, 0, 0, 6496, 6492, 1, 0, 0, 0, 6497, 6505, 1, 0, 0, 0, 6498, 6499, 5, 68, 0, 0, 6499, 6502, 5, 323, 0, 0, 6500, 6503, 3, 794, 397, 0, 6501, 6503, 5, 111, 0, 0, 6502, 6500, 1, 0, 0, 0, 6502, 6501, 1, 0, 0, 0, 6503, 6505, 1, 0, 0, 0, 6504, 6489, 1, 0, 0, 0, 6504, 6490, 1, 0, 0, 0, 6504, 6498, 1, 0, 0, 0, 6505, 627, 1, 0, 0, 0, 6506, 6507, 5, 92, 0, 0, 6507, 6509, 3, 322, 161, 0, 6508, 6510, 3, 144, 72, 0, 6509, 6508, 1, 0, 0, 0, 6509, 6510, 1, 0, 0, 0, 6510, 6512, 1, 0, 0, 0, 6511, 6513, 3, 640, 320, 0, 6512, 6511, 1, 0, 0, 0, 6512, 6513, 1, 0, 0, 0, 6513, 6531, 1, 0, 0, 0, 6514, 6515, 5, 92, 0, 0, 6515, 6521, 5, 81, 0, 0, 6516, 6522, 3, 778, 389, 0, 6517, 6518, 5, 2, 0, 0, 6518, 6519, 3, 778, 389, 0, 6519, 6520, 5, 3, 0, 0, 6520, 6522, 1, 0, 0, 0, 6521, 6516, 1, 0, 0, 0, 6521, 6517, 1, 0, 0, 0, 6522, 6531, 1, 0, 0, 0, 6523, 6524, 5, 350, 0, 0, 6524, 6525, 5, 68, 0, 0, 6525, 6528, 5, 323, 0, 0, 6526, 6529, 3, 794, 397, 0, 6527, 6529, 5, 111, 0, 0, 6528, 6526, 1, 0, 0, 0, 6528, 6527, 1, 0, 0, 0, 6529, 6531, 1, 0, 0, 0, 6530, 6506, 1, 0, 0, 0, 6530, 6514, 1, 0, 0, 0, 6530, 6523, 1, 0, 0, 0, 6531, 629, 1, 0, 0, 0, 6532, 6537, 3, 626, 313, 0, 6533, 6534, 5, 6, 0, 0, 6534, 6536, 3, 626, 313, 0, 6535, 6533, 1, 0, 0, 0, 6536, 6539, 1, 0, 0, 0, 6537, 6535, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 631, 1, 0, 0, 0, 6539, 6537, 1, 0, 0, 0, 6540, 6545, 3, 626, 313, 0, 6541, 6543, 5, 36, 0, 0, 6542, 6541, 1, 0, 0, 0, 6542, 6543, 1, 0, 0, 0, 6543, 6544, 1, 0, 0, 0, 6544, 6546, 3, 822, 411, 0, 6545, 6542, 1, 0, 0, 0, 6545, 6546, 1, 0, 0, 0, 6546, 633, 1, 0, 0, 0, 6547, 6548, 5, 472, 0, 0, 6548, 6549, 3, 810, 405, 0, 6549, 6555, 3, 534, 267, 0, 6550, 6551, 5, 310, 0, 0, 6551, 6552, 5, 2, 0, 0, 6552, 6553, 3, 676, 338, 0, 6553, 6554, 5, 3, 0, 0, 6554, 6556, 1, 0, 0, 0, 6555, 6550, 1, 0, 0, 0, 6555, 6556, 1, 0, 0, 0, 6556, 635, 1, 0, 0, 0, 6557, 6572, 3, 690, 345, 0, 6558, 6559, 5, 320, 0, 0, 6559, 6560, 5, 64, 0, 0, 6560, 6561, 5, 2, 0, 0, 6561, 6566, 3, 638, 319, 0, 6562, 6563, 5, 6, 0, 0, 6563, 6565, 3, 638, 319, 0, 6564, 6562, 1, 0, 0, 0, 6565, 6568, 1, 0, 0, 0, 6566, 6564, 1, 0, 0, 0, 6566, 6567, 1, 0, 0, 0, 6567, 6569, 1, 0, 0, 0, 6568, 6566, 1, 0, 0, 0, 6569, 6570, 5, 3, 0, 0, 6570, 6572, 1, 0, 0, 0, 6571, 6557, 1, 0, 0, 0, 6571, 6558, 1, 0, 0, 0, 6572, 6575, 1, 0, 0, 0, 6573, 6574, 5, 105, 0, 0, 6574, 6576, 5, 473, 0, 0, 6575, 6573, 1, 0, 0, 0, 6575, 6576, 1, 0, 0, 0, 6576, 637, 1, 0, 0, 0, 6577, 6583, 3, 690, 345, 0, 6578, 6579, 5, 36, 0, 0, 6579, 6580, 5, 2, 0, 0, 6580, 6581, 3, 644, 322, 0, 6581, 6582, 5, 3, 0, 0, 6582, 6584, 1, 0, 0, 0, 6583, 6578, 1, 0, 0, 0, 6583, 6584, 1, 0, 0, 0, 6584, 639, 1, 0, 0, 0, 6585, 6586, 5, 103, 0, 0, 6586, 6587, 3, 736, 368, 0, 6587, 641, 1, 0, 0, 0, 6588, 6593, 5, 103, 0, 0, 6589, 6590, 5, 434, 0, 0, 6590, 6591, 5, 275, 0, 0, 6591, 6594, 3, 822, 411, 0, 6592, 6594, 3, 676, 338, 0, 6593, 6589, 1, 0, 0, 0, 6593, 6592, 1, 0, 0, 0, 6594, 643, 1, 0, 0, 0, 6595, 6600, 3, 646, 323, 0, 6596, 6597, 5, 6, 0, 0, 6597, 6599, 3, 646, 323, 0, 6598, 6596, 1, 0, 0, 0, 6599, 6602, 1, 0, 0, 0, 6600, 6598, 1, 0, 0, 0, 6600, 6601, 1, 0, 0, 0, 6601, 645, 1, 0, 0, 0, 6602, 6600, 1, 0, 0, 0, 6603, 6604, 3, 822, 411, 0, 6604, 6606, 3, 654, 327, 0, 6605, 6607, 3, 98, 49, 0, 6606, 6605, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, 647, 1, 0, 0, 0, 6608, 6609, 5, 474, 0, 0, 6609, 6623, 5, 2, 0, 0, 6610, 6611, 5, 476, 0, 0, 6611, 6612, 5, 2, 0, 0, 6612, 6617, 3, 652, 326, 0, 6613, 6614, 5, 6, 0, 0, 6614, 6616, 3, 652, 326, 0, 6615, 6613, 1, 0, 0, 0, 6616, 6619, 1, 0, 0, 0, 6617, 6615, 1, 0, 0, 0, 6617, 6618, 1, 0, 0, 0, 6618, 6620, 1, 0, 0, 0, 6619, 6617, 1, 0, 0, 0, 6620, 6621, 5, 3, 0, 0, 6621, 6622, 5, 6, 0, 0, 6622, 6624, 1, 0, 0, 0, 6623, 6610, 1, 0, 0, 0, 6623, 6624, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 6626, 3, 684, 342, 0, 6626, 6627, 3, 700, 350, 0, 6627, 6628, 5, 475, 0, 0, 6628, 6633, 3, 650, 325, 0, 6629, 6630, 5, 6, 0, 0, 6630, 6632, 3, 650, 325, 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, 6636, 1, 0, 0, 0, 6635, 6633, 1, 0, 0, 0, 6636, 6637, 5, 3, 0, 0, 6637, 649, 1, 0, 0, 0, 6638, 6657, 3, 822, 411, 0, 6639, 6653, 3, 654, 327, 0, 6640, 6643, 5, 53, 0, 0, 6641, 6643, 3, 830, 415, 0, 6642, 6640, 1, 0, 0, 0, 6642, 6641, 1, 0, 0, 0, 6643, 6644, 1, 0, 0, 0, 6644, 6650, 3, 676, 338, 0, 6645, 6647, 5, 77, 0, 0, 6646, 6645, 1, 0, 0, 0, 6646, 6647, 1, 0, 0, 0, 6647, 6648, 1, 0, 0, 0, 6648, 6650, 5, 78, 0, 0, 6649, 6642, 1, 0, 0, 0, 6649, 6646, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 6649, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6654, 1, 0, 0, 0, 6653, 6649, 1, 0, 0, 0, 6653, 6654, 1, 0, 0, 0, 6654, 6658, 1, 0, 0, 0, 6655, 6656, 5, 62, 0, 0, 6656, 6658, 5, 473, 0, 0, 6657, 6639, 1, 0, 0, 0, 6657, 6655, 1, 0, 0, 0, 6658, 651, 1, 0, 0, 0, 6659, 6660, 3, 684, 342, 0, 6660, 6661, 5, 36, 0, 0, 6661, 6662, 3, 828, 414, 0, 6662, 6666, 1, 0, 0, 0, 6663, 6664, 5, 53, 0, 0, 6664, 6666, 3, 684, 342, 0, 6665, 6659, 1, 0, 0, 0, 6665, 6663, 1, 0, 0, 0, 6666, 653, 1, 0, 0, 0, 6667, 6669, 5, 415, 0, 0, 6668, 6667, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6670, 1, 0, 0, 0, 6670, 6687, 3, 656, 328, 0, 6671, 6673, 5, 4, 0, 0, 6672, 6674, 5, 571, 0, 0, 6673, 6672, 1, 0, 0, 0, 6673, 6674, 1, 0, 0, 0, 6674, 6675, 1, 0, 0, 0, 6675, 6677, 5, 5, 0, 0, 6676, 6671, 1, 0, 0, 0, 6677, 6680, 1, 0, 0, 0, 6678, 6676, 1, 0, 0, 0, 6678, 6679, 1, 0, 0, 0, 6679, 6688, 1, 0, 0, 0, 6680, 6678, 1, 0, 0, 0, 6681, 6685, 5, 35, 0, 0, 6682, 6683, 5, 4, 0, 0, 6683, 6684, 5, 571, 0, 0, 6684, 6686, 5, 5, 0, 0, 6685, 6682, 1, 0, 0, 0, 6685, 6686, 1, 0, 0, 0, 6686, 6688, 1, 0, 0, 0, 6687, 6678, 1, 0, 0, 0, 6687, 6681, 1, 0, 0, 0, 6688, 6694, 1, 0, 0, 0, 6689, 6690, 3, 784, 392, 0, 6690, 6691, 5, 27, 0, 0, 6691, 6692, 7, 87, 0, 0, 6692, 6694, 1, 0, 0, 0, 6693, 6668, 1, 0, 0, 0, 6693, 6689, 1, 0, 0, 0, 6694, 655, 1, 0, 0, 0, 6695, 6697, 3, 824, 412, 0, 6696, 6698, 3, 318, 159, 0, 6697, 6696, 1, 0, 0, 0, 6697, 6698, 1, 0, 0, 0, 6698, 6700, 1, 0, 0, 0, 6699, 6701, 3, 534, 267, 0, 6700, 6699, 1, 0, 0, 0, 6700, 6701, 1, 0, 0, 0, 6701, 6711, 1, 0, 0, 0, 6702, 6711, 3, 658, 329, 0, 6703, 6708, 5, 403, 0, 0, 6704, 6706, 3, 670, 335, 0, 6705, 6704, 1, 0, 0, 0, 6705, 6706, 1, 0, 0, 0, 6706, 6709, 1, 0, 0, 0, 6707, 6709, 3, 662, 331, 0, 6708, 6705, 1, 0, 0, 0, 6708, 6707, 1, 0, 0, 0, 6709, 6711, 1, 0, 0, 0, 6710, 6695, 1, 0, 0, 0, 6710, 6702, 1, 0, 0, 0, 6710, 6703, 1, 0, 0, 0, 6711, 657, 1, 0, 0, 0, 6712, 6717, 3, 660, 330, 0, 6713, 6717, 3, 664, 332, 0, 6714, 6717, 3, 666, 333, 0, 6715, 6717, 3, 668, 334, 0, 6716, 6712, 1, 0, 0, 0, 6716, 6713, 1, 0, 0, 0, 6716, 6714, 1, 0, 0, 0, 6716, 6715, 1, 0, 0, 0, 6717, 659, 1, 0, 0, 0, 6718, 6735, 5, 401, 0, 0, 6719, 6735, 5, 402, 0, 0, 6720, 6735, 5, 416, 0, 0, 6721, 6735, 5, 388, 0, 0, 6722, 6735, 5, 413, 0, 0, 6723, 6725, 5, 398, 0, 0, 6724, 6726, 3, 662, 331, 0, 6725, 6724, 1, 0, 0, 0, 6725, 6726, 1, 0, 0, 0, 6726, 6735, 1, 0, 0, 0, 6727, 6728, 5, 190, 0, 0, 6728, 6735, 5, 412, 0, 0, 6729, 6731, 7, 88, 0, 0, 6730, 6732, 3, 534, 267, 0, 6731, 6730, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6735, 1, 0, 0, 0, 6733, 6735, 5, 390, 0, 0, 6734, 6718, 1, 0, 0, 0, 6734, 6719, 1, 0, 0, 0, 6734, 6720, 1, 0, 0, 0, 6734, 6721, 1, 0, 0, 0, 6734, 6722, 1, 0, 0, 0, 6734, 6723, 1, 0, 0, 0, 6734, 6727, 1, 0, 0, 0, 6734, 6729, 1, 0, 0, 0, 6734, 6733, 1, 0, 0, 0, 6735, 661, 1, 0, 0, 0, 6736, 6737, 5, 2, 0, 0, 6737, 6738, 5, 571, 0, 0, 6738, 6739, 5, 3, 0, 0, 6739, 663, 1, 0, 0, 0, 6740, 6742, 5, 389, 0, 0, 6741, 6743, 5, 374, 0, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 6745, 1, 0, 0, 0, 6744, 6746, 3, 534, 267, 0, 6745, 6744, 1, 0, 0, 0, 6745, 6746, 1, 0, 0, 0, 6746, 665, 1, 0, 0, 0, 6747, 6749, 7, 89, 0, 0, 6748, 6750, 5, 374, 0, 0, 6749, 6748, 1, 0, 0, 0, 6749, 6750, 1, 0, 0, 0, 6750, 6758, 1, 0, 0, 0, 6751, 6758, 5, 423, 0, 0, 6752, 6753, 5, 405, 0, 0, 6753, 6755, 7, 90, 0, 0, 6754, 6756, 5, 374, 0, 0, 6755, 6754, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 6758, 1, 0, 0, 0, 6757, 6747, 1, 0, 0, 0, 6757, 6751, 1, 0, 0, 0, 6757, 6752, 1, 0, 0, 0, 6758, 6760, 1, 0, 0, 0, 6759, 6761, 3, 662, 331, 0, 6760, 6759, 1, 0, 0, 0, 6760, 6761, 1, 0, 0, 0, 6761, 667, 1, 0, 0, 0, 6762, 6764, 7, 91, 0, 0, 6763, 6765, 3, 662, 331, 0, 6764, 6763, 1, 0, 0, 0, 6764, 6765, 1, 0, 0, 0, 6765, 6769, 1, 0, 0, 0, 6766, 6767, 7, 26, 0, 0, 6767, 6768, 5, 418, 0, 0, 6768, 6770, 5, 386, 0, 0, 6769, 6766, 1, 0, 0, 0, 6769, 6770, 1, 0, 0, 0, 6770, 669, 1, 0, 0, 0, 6771, 6801, 5, 264, 0, 0, 6772, 6801, 3, 672, 336, 0, 6773, 6776, 5, 384, 0, 0, 6774, 6775, 5, 94, 0, 0, 6775, 6777, 5, 264, 0, 0, 6776, 6774, 1, 0, 0, 0, 6776, 6777, 1, 0, 0, 0, 6777, 6801, 1, 0, 0, 0, 6778, 6785, 5, 176, 0, 0, 6779, 6783, 5, 94, 0, 0, 6780, 6784, 5, 218, 0, 0, 6781, 6784, 5, 261, 0, 0, 6782, 6784, 3, 672, 336, 0, 6783, 6780, 1, 0, 0, 0, 6783, 6781, 1, 0, 0, 0, 6783, 6782, 1, 0, 0, 0, 6784, 6786, 1, 0, 0, 0, 6785, 6779, 1, 0, 0, 0, 6785, 6786, 1, 0, 0, 0, 6786, 6801, 1, 0, 0, 0, 6787, 6793, 5, 218, 0, 0, 6788, 6791, 5, 94, 0, 0, 6789, 6792, 5, 261, 0, 0, 6790, 6792, 3, 672, 336, 0, 6791, 6789, 1, 0, 0, 0, 6791, 6790, 1, 0, 0, 0, 6792, 6794, 1, 0, 0, 0, 6793, 6788, 1, 0, 0, 0, 6793, 6794, 1, 0, 0, 0, 6794, 6801, 1, 0, 0, 0, 6795, 6798, 5, 261, 0, 0, 6796, 6797, 5, 94, 0, 0, 6797, 6799, 3, 672, 336, 0, 6798, 6796, 1, 0, 0, 0, 6798, 6799, 1, 0, 0, 0, 6799, 6801, 1, 0, 0, 0, 6800, 6771, 1, 0, 0, 0, 6800, 6772, 1, 0, 0, 0, 6800, 6773, 1, 0, 0, 0, 6800, 6778, 1, 0, 0, 0, 6800, 6787, 1, 0, 0, 0, 6800, 6795, 1, 0, 0, 0, 6801, 671, 1, 0, 0, 0, 6802, 6804, 5, 326, 0, 0, 6803, 6805, 3, 662, 331, 0, 6804, 6803, 1, 0, 0, 0, 6804, 6805, 1, 0, 0, 0, 6805, 673, 1, 0, 0, 0, 6806, 6807, 7, 92, 0, 0, 6807, 675, 1, 0, 0, 0, 6808, 6809, 3, 678, 339, 0, 6809, 677, 1, 0, 0, 0, 6810, 6811, 6, 339, -1, 0, 6811, 6813, 3, 682, 341, 0, 6812, 6814, 3, 680, 340, 0, 6813, 6812, 1, 0, 0, 0, 6813, 6814, 1, 0, 0, 0, 6814, 6818, 1, 0, 0, 0, 6815, 6816, 5, 77, 0, 0, 6816, 6818, 3, 678, 339, 3, 6817, 6810, 1, 0, 0, 0, 6817, 6815, 1, 0, 0, 0, 6818, 6827, 1, 0, 0, 0, 6819, 6820, 10, 2, 0, 0, 6820, 6821, 5, 33, 0, 0, 6821, 6826, 3, 678, 339, 3, 6822, 6823, 10, 1, 0, 0, 6823, 6824, 5, 82, 0, 0, 6824, 6826, 3, 678, 339, 2, 6825, 6819, 1, 0, 0, 0, 6825, 6822, 1, 0, 0, 0, 6826, 6829, 1, 0, 0, 0, 6827, 6825, 1, 0, 0, 0, 6827, 6828, 1, 0, 0, 0, 6828, 679, 1, 0, 0, 0, 6829, 6827, 1, 0, 0, 0, 6830, 6831, 3, 674, 337, 0, 6831, 6832, 3, 682, 341, 0, 6832, 6902, 1, 0, 0, 0, 6833, 6834, 3, 674, 337, 0, 6834, 6835, 3, 730, 365, 0, 6835, 6841, 3, 720, 360, 0, 6836, 6842, 3, 562, 281, 0, 6837, 6838, 5, 2, 0, 0, 6838, 6839, 3, 676, 338, 0, 6839, 6840, 5, 3, 0, 0, 6840, 6842, 1, 0, 0, 0, 6841, 6836, 1, 0, 0, 0, 6841, 6837, 1, 0, 0, 0, 6842, 6902, 1, 0, 0, 0, 6843, 6845, 5, 77, 0, 0, 6844, 6843, 1, 0, 0, 0, 6844, 6845, 1, 0, 0, 0, 6845, 6846, 1, 0, 0, 0, 6846, 6847, 5, 387, 0, 0, 6847, 6848, 3, 682, 341, 0, 6848, 6849, 5, 33, 0, 0, 6849, 6850, 3, 682, 341, 0, 6850, 6902, 1, 0, 0, 0, 6851, 6853, 5, 77, 0, 0, 6852, 6851, 1, 0, 0, 0, 6852, 6853, 1, 0, 0, 0, 6853, 6854, 1, 0, 0, 0, 6854, 6855, 5, 68, 0, 0, 6855, 6856, 5, 2, 0, 0, 6856, 6861, 3, 676, 338, 0, 6857, 6858, 5, 6, 0, 0, 6858, 6860, 3, 676, 338, 0, 6859, 6857, 1, 0, 0, 0, 6860, 6863, 1, 0, 0, 0, 6861, 6859, 1, 0, 0, 0, 6861, 6862, 1, 0, 0, 0, 6862, 6864, 1, 0, 0, 0, 6863, 6861, 1, 0, 0, 0, 6864, 6865, 5, 3, 0, 0, 6865, 6902, 1, 0, 0, 0, 6866, 6868, 5, 77, 0, 0, 6867, 6866, 1, 0, 0, 0, 6867, 6868, 1, 0, 0, 0, 6868, 6869, 1, 0, 0, 0, 6869, 6870, 5, 68, 0, 0, 6870, 6902, 3, 562, 281, 0, 6871, 6873, 5, 77, 0, 0, 6872, 6871, 1, 0, 0, 0, 6872, 6873, 1, 0, 0, 0, 6873, 6882, 1, 0, 0, 0, 6874, 6883, 5, 120, 0, 0, 6875, 6883, 5, 114, 0, 0, 6876, 6877, 5, 127, 0, 0, 6877, 6883, 5, 94, 0, 0, 6878, 6880, 5, 387, 0, 0, 6879, 6881, 5, 91, 0, 0, 6880, 6879, 1, 0, 0, 0, 6880, 6881, 1, 0, 0, 0, 6881, 6883, 1, 0, 0, 0, 6882, 6874, 1, 0, 0, 0, 6882, 6875, 1, 0, 0, 0, 6882, 6876, 1, 0, 0, 0, 6882, 6878, 1, 0, 0, 0, 6883, 6884, 1, 0, 0, 0, 6884, 6887, 3, 682, 341, 0, 6885, 6886, 5, 197, 0, 0, 6886, 6888, 3, 682, 341, 0, 6887, 6885, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 6902, 1, 0, 0, 0, 6889, 6891, 5, 116, 0, 0, 6890, 6892, 5, 77, 0, 0, 6891, 6890, 1, 0, 0, 0, 6891, 6892, 1, 0, 0, 0, 6892, 6893, 1, 0, 0, 0, 6893, 6902, 5, 78, 0, 0, 6894, 6896, 5, 116, 0, 0, 6895, 6897, 5, 77, 0, 0, 6896, 6895, 1, 0, 0, 0, 6896, 6897, 1, 0, 0, 0, 6897, 6898, 1, 0, 0, 0, 6898, 6899, 5, 56, 0, 0, 6899, 6900, 5, 64, 0, 0, 6900, 6902, 3, 682, 341, 0, 6901, 6830, 1, 0, 0, 0, 6901, 6833, 1, 0, 0, 0, 6901, 6844, 1, 0, 0, 0, 6901, 6852, 1, 0, 0, 0, 6901, 6867, 1, 0, 0, 0, 6901, 6872, 1, 0, 0, 0, 6901, 6889, 1, 0, 0, 0, 6901, 6894, 1, 0, 0, 0, 6902, 681, 1, 0, 0, 0, 6903, 6904, 6, 341, -1, 0, 6904, 6908, 3, 684, 342, 0, 6905, 6906, 7, 29, 0, 0, 6906, 6908, 3, 682, 341, 4, 6907, 6903, 1, 0, 0, 0, 6907, 6905, 1, 0, 0, 0, 6908, 6925, 1, 0, 0, 0, 6909, 6910, 10, 3, 0, 0, 6910, 6911, 7, 93, 0, 0, 6911, 6924, 3, 682, 341, 4, 6912, 6913, 10, 2, 0, 0, 6913, 6914, 7, 29, 0, 0, 6914, 6924, 3, 682, 341, 3, 6915, 6916, 10, 1, 0, 0, 6916, 6917, 5, 15, 0, 0, 6917, 6924, 3, 682, 341, 2, 6918, 6919, 10, 5, 0, 0, 6919, 6920, 5, 142, 0, 0, 6920, 6921, 5, 418, 0, 0, 6921, 6922, 5, 386, 0, 0, 6922, 6924, 3, 676, 338, 0, 6923, 6909, 1, 0, 0, 0, 6923, 6912, 1, 0, 0, 0, 6923, 6915, 1, 0, 0, 0, 6923, 6918, 1, 0, 0, 0, 6924, 6927, 1, 0, 0, 0, 6925, 6923, 1, 0, 0, 0, 6925, 6926, 1, 0, 0, 0, 6926, 683, 1, 0, 0, 0, 6927, 6925, 1, 0, 0, 0, 6928, 6929, 6, 342, -1, 0, 6929, 6930, 7, 94, 0, 0, 6930, 7017, 3, 562, 281, 0, 6931, 6934, 5, 35, 0, 0, 6932, 6935, 3, 562, 281, 0, 6933, 6935, 3, 742, 371, 0, 6934, 6932, 1, 0, 0, 0, 6934, 6933, 1, 0, 0, 0, 6935, 7017, 1, 0, 0, 0, 6936, 6937, 5, 28, 0, 0, 6937, 7017, 3, 756, 378, 0, 6938, 6939, 5, 470, 0, 0, 6939, 7017, 3, 534, 267, 0, 6940, 7017, 5, 571, 0, 0, 6941, 7017, 5, 573, 0, 0, 6942, 7017, 5, 563, 0, 0, 6943, 7017, 5, 567, 0, 0, 6944, 6954, 3, 810, 405, 0, 6945, 6955, 3, 812, 406, 0, 6946, 6947, 5, 2, 0, 0, 6947, 6949, 3, 738, 369, 0, 6948, 6950, 3, 586, 293, 0, 6949, 6948, 1, 0, 0, 0, 6949, 6950, 1, 0, 0, 0, 6950, 6951, 1, 0, 0, 0, 6951, 6952, 5, 3, 0, 0, 6952, 6953, 3, 812, 406, 0, 6953, 6955, 1, 0, 0, 0, 6954, 6945, 1, 0, 0, 0, 6954, 6946, 1, 0, 0, 0, 6955, 7017, 1, 0, 0, 0, 6956, 6958, 3, 658, 329, 0, 6957, 6956, 1, 0, 0, 0, 6957, 6958, 1, 0, 0, 0, 6958, 6959, 1, 0, 0, 0, 6959, 7017, 3, 812, 406, 0, 6960, 6968, 5, 403, 0, 0, 6961, 6963, 3, 812, 406, 0, 6962, 6964, 3, 670, 335, 0, 6963, 6962, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6969, 1, 0, 0, 0, 6965, 6966, 3, 662, 331, 0, 6966, 6967, 3, 812, 406, 0, 6967, 6969, 1, 0, 0, 0, 6968, 6961, 1, 0, 0, 0, 6968, 6965, 1, 0, 0, 0, 6969, 7017, 1, 0, 0, 0, 6970, 7017, 5, 96, 0, 0, 6971, 7017, 5, 60, 0, 0, 6972, 7017, 5, 78, 0, 0, 6973, 7017, 5, 574, 0, 0, 6974, 6975, 5, 2, 0, 0, 6975, 6976, 3, 676, 338, 0, 6976, 6977, 5, 3, 0, 0, 6977, 6978, 3, 756, 378, 0, 6978, 7017, 1, 0, 0, 0, 6979, 6981, 5, 40, 0, 0, 6980, 6982, 3, 676, 338, 0, 6981, 6980, 1, 0, 0, 0, 6981, 6982, 1, 0, 0, 0, 6982, 6984, 1, 0, 0, 0, 6983, 6985, 3, 750, 375, 0, 6984, 6983, 1, 0, 0, 0, 6985, 6986, 1, 0, 0, 0, 6986, 6984, 1, 0, 0, 0, 6986, 6987, 1, 0, 0, 0, 6987, 6990, 1, 0, 0, 0, 6988, 6989, 5, 58, 0, 0, 6989, 6991, 3, 676, 338, 0, 6990, 6988, 1, 0, 0, 0, 6990, 6991, 1, 0, 0, 0, 6991, 6992, 1, 0, 0, 0, 6992, 6993, 5, 454, 0, 0, 6993, 7017, 1, 0, 0, 0, 6994, 7017, 3, 688, 344, 0, 6995, 6997, 3, 562, 281, 0, 6996, 6998, 3, 754, 377, 0, 6997, 6996, 1, 0, 0, 0, 6997, 6998, 1, 0, 0, 0, 6998, 7017, 1, 0, 0, 0, 6999, 7017, 3, 718, 359, 0, 7000, 7001, 5, 2, 0, 0, 7001, 7002, 3, 676, 338, 0, 7002, 7003, 5, 6, 0, 0, 7003, 7004, 3, 732, 366, 0, 7004, 7005, 5, 3, 0, 0, 7005, 7017, 1, 0, 0, 0, 7006, 7007, 3, 716, 358, 0, 7007, 7008, 5, 125, 0, 0, 7008, 7009, 3, 716, 358, 0, 7009, 7017, 1, 0, 0, 0, 7010, 7017, 3, 784, 392, 0, 7011, 7012, 7, 29, 0, 0, 7012, 7017, 3, 684, 342, 5, 7013, 7014, 3, 726, 363, 0, 7014, 7015, 3, 684, 342, 2, 7015, 7017, 1, 0, 0, 0, 7016, 6928, 1, 0, 0, 0, 7016, 6931, 1, 0, 0, 0, 7016, 6936, 1, 0, 0, 0, 7016, 6938, 1, 0, 0, 0, 7016, 6940, 1, 0, 0, 0, 7016, 6941, 1, 0, 0, 0, 7016, 6942, 1, 0, 0, 0, 7016, 6943, 1, 0, 0, 0, 7016, 6944, 1, 0, 0, 0, 7016, 6957, 1, 0, 0, 0, 7016, 6960, 1, 0, 0, 0, 7016, 6970, 1, 0, 0, 0, 7016, 6971, 1, 0, 0, 0, 7016, 6972, 1, 0, 0, 0, 7016, 6973, 1, 0, 0, 0, 7016, 6974, 1, 0, 0, 0, 7016, 6979, 1, 0, 0, 0, 7016, 6994, 1, 0, 0, 0, 7016, 6995, 1, 0, 0, 0, 7016, 6999, 1, 0, 0, 0, 7016, 7000, 1, 0, 0, 0, 7016, 7006, 1, 0, 0, 0, 7016, 7010, 1, 0, 0, 0, 7016, 7011, 1, 0, 0, 0, 7016, 7013, 1, 0, 0, 0, 7017, 7045, 1, 0, 0, 0, 7018, 7019, 10, 3, 0, 0, 7019, 7020, 3, 724, 362, 0, 7020, 7021, 3, 684, 342, 4, 7021, 7044, 1, 0, 0, 0, 7022, 7023, 10, 6, 0, 0, 7023, 7024, 5, 26, 0, 0, 7024, 7044, 3, 654, 327, 0, 7025, 7026, 10, 4, 0, 0, 7026, 7028, 3, 726, 363, 0, 7027, 7029, 3, 684, 342, 0, 7028, 7027, 1, 0, 0, 0, 7028, 7029, 1, 0, 0, 0, 7029, 7044, 1, 0, 0, 0, 7030, 7031, 10, 1, 0, 0, 7031, 7033, 5, 116, 0, 0, 7032, 7034, 5, 77, 0, 0, 7033, 7032, 1, 0, 0, 0, 7033, 7034, 1, 0, 0, 0, 7034, 7041, 1, 0, 0, 0, 7035, 7036, 5, 56, 0, 0, 7036, 7037, 5, 64, 0, 0, 7037, 7042, 3, 684, 342, 0, 7038, 7039, 5, 275, 0, 0, 7039, 7042, 3, 528, 264, 0, 7040, 7042, 5, 188, 0, 0, 7041, 7035, 1, 0, 0, 0, 7041, 7038, 1, 0, 0, 0, 7041, 7040, 1, 0, 0, 0, 7042, 7044, 1, 0, 0, 0, 7043, 7018, 1, 0, 0, 0, 7043, 7022, 1, 0, 0, 0, 7043, 7025, 1, 0, 0, 0, 7043, 7030, 1, 0, 0, 0, 7044, 7047, 1, 0, 0, 0, 7045, 7043, 1, 0, 0, 0, 7045, 7046, 1, 0, 0, 0, 7046, 685, 1, 0, 0, 0, 7047, 7045, 1, 0, 0, 0, 7048, 7049, 3, 810, 405, 0, 7049, 7070, 5, 2, 0, 0, 7050, 7054, 3, 738, 369, 0, 7051, 7052, 5, 6, 0, 0, 7052, 7053, 5, 101, 0, 0, 7053, 7055, 3, 740, 370, 0, 7054, 7051, 1, 0, 0, 0, 7054, 7055, 1, 0, 0, 0, 7055, 7057, 1, 0, 0, 0, 7056, 7058, 3, 586, 293, 0, 7057, 7056, 1, 0, 0, 0, 7057, 7058, 1, 0, 0, 0, 7058, 7071, 1, 0, 0, 0, 7059, 7060, 5, 101, 0, 0, 7060, 7062, 3, 740, 370, 0, 7061, 7063, 3, 586, 293, 0, 7062, 7061, 1, 0, 0, 0, 7062, 7063, 1, 0, 0, 0, 7063, 7071, 1, 0, 0, 0, 7064, 7065, 7, 80, 0, 0, 7065, 7067, 3, 738, 369, 0, 7066, 7068, 3, 586, 293, 0, 7067, 7066, 1, 0, 0, 0, 7067, 7068, 1, 0, 0, 0, 7068, 7071, 1, 0, 0, 0, 7069, 7071, 5, 9, 0, 0, 7070, 7050, 1, 0, 0, 0, 7070, 7059, 1, 0, 0, 0, 7070, 7064, 1, 0, 0, 0, 7070, 7069, 1, 0, 0, 0, 7070, 7071, 1, 0, 0, 0, 7071, 7072, 1, 0, 0, 0, 7072, 7073, 5, 3, 0, 0, 7073, 687, 1, 0, 0, 0, 7074, 7081, 3, 686, 343, 0, 7075, 7076, 5, 479, 0, 0, 7076, 7077, 5, 66, 0, 0, 7077, 7078, 5, 2, 0, 0, 7078, 7079, 3, 586, 293, 0, 7079, 7080, 5, 3, 0, 0, 7080, 7082, 1, 0, 0, 0, 7081, 7075, 1, 0, 0, 0, 7081, 7082, 1, 0, 0, 0, 7082, 7089, 1, 0, 0, 0, 7083, 7084, 5, 480, 0, 0, 7084, 7085, 5, 2, 0, 0, 7085, 7086, 5, 103, 0, 0, 7086, 7087, 3, 676, 338, 0, 7087, 7088, 5, 3, 0, 0, 7088, 7090, 1, 0, 0, 0, 7089, 7083, 1, 0, 0, 0, 7089, 7090, 1, 0, 0, 0, 7090, 7096, 1, 0, 0, 0, 7091, 7094, 5, 124, 0, 0, 7092, 7095, 3, 710, 355, 0, 7093, 7095, 3, 822, 411, 0, 7094, 7092, 1, 0, 0, 0, 7094, 7093, 1, 0, 0, 0, 7095, 7097, 1, 0, 0, 0, 7096, 7091, 1, 0, 0, 0, 7096, 7097, 1, 0, 0, 0, 7097, 7100, 1, 0, 0, 0, 7098, 7100, 3, 692, 346, 0, 7099, 7074, 1, 0, 0, 0, 7099, 7098, 1, 0, 0, 0, 7100, 689, 1, 0, 0, 0, 7101, 7104, 3, 686, 343, 0, 7102, 7104, 3, 692, 346, 0, 7103, 7101, 1, 0, 0, 0, 7103, 7102, 1, 0, 0, 0, 7104, 691, 1, 0, 0, 0, 7105, 7106, 5, 108, 0, 0, 7106, 7107, 5, 62, 0, 0, 7107, 7108, 5, 2, 0, 0, 7108, 7109, 3, 676, 338, 0, 7109, 7110, 5, 3, 0, 0, 7110, 7280, 1, 0, 0, 0, 7111, 7280, 5, 48, 0, 0, 7112, 7114, 7, 95, 0, 0, 7113, 7115, 3, 662, 331, 0, 7114, 7113, 1, 0, 0, 0, 7114, 7115, 1, 0, 0, 0, 7115, 7280, 1, 0, 0, 0, 7116, 7280, 5, 49, 0, 0, 7117, 7280, 5, 52, 0, 0, 7118, 7280, 5, 89, 0, 0, 7119, 7280, 5, 99, 0, 0, 7120, 7280, 5, 47, 0, 0, 7121, 7280, 5, 111, 0, 0, 7122, 7123, 7, 96, 0, 0, 7123, 7124, 5, 2, 0, 0, 7124, 7125, 3, 676, 338, 0, 7125, 7126, 5, 36, 0, 0, 7126, 7127, 3, 654, 327, 0, 7127, 7128, 5, 3, 0, 0, 7128, 7280, 1, 0, 0, 0, 7129, 7130, 5, 397, 0, 0, 7130, 7135, 5, 2, 0, 0, 7131, 7132, 3, 744, 372, 0, 7132, 7133, 5, 64, 0, 0, 7133, 7134, 3, 676, 338, 0, 7134, 7136, 1, 0, 0, 0, 7135, 7131, 1, 0, 0, 0, 7135, 7136, 1, 0, 0, 0, 7136, 7137, 1, 0, 0, 0, 7137, 7280, 5, 3, 0, 0, 7138, 7139, 5, 489, 0, 0, 7139, 7140, 5, 2, 0, 0, 7140, 7143, 3, 676, 338, 0, 7141, 7142, 5, 6, 0, 0, 7142, 7144, 3, 746, 373, 0, 7143, 7141, 1, 0, 0, 0, 7143, 7144, 1, 0, 0, 0, 7144, 7145, 1, 0, 0, 0, 7145, 7146, 5, 3, 0, 0, 7146, 7280, 1, 0, 0, 0, 7147, 7148, 5, 410, 0, 0, 7148, 7149, 5, 2, 0, 0, 7149, 7150, 3, 676, 338, 0, 7150, 7151, 5, 84, 0, 0, 7151, 7152, 3, 676, 338, 0, 7152, 7153, 5, 64, 0, 0, 7153, 7156, 3, 676, 338, 0, 7154, 7155, 5, 62, 0, 0, 7155, 7157, 3, 676, 338, 0, 7156, 7154, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7158, 1, 0, 0, 0, 7158, 7159, 5, 3, 0, 0, 7159, 7280, 1, 0, 0, 0, 7160, 7161, 5, 411, 0, 0, 7161, 7166, 5, 2, 0, 0, 7162, 7163, 3, 684, 342, 0, 7163, 7164, 5, 68, 0, 0, 7164, 7165, 3, 684, 342, 0, 7165, 7167, 1, 0, 0, 0, 7166, 7162, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7280, 5, 3, 0, 0, 7169, 7170, 5, 417, 0, 0, 7170, 7172, 5, 2, 0, 0, 7171, 7173, 3, 748, 374, 0, 7172, 7171, 1, 0, 0, 0, 7172, 7173, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7280, 5, 3, 0, 0, 7175, 7176, 5, 421, 0, 0, 7176, 7178, 5, 2, 0, 0, 7177, 7179, 7, 97, 0, 0, 7178, 7177, 1, 0, 0, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7184, 1, 0, 0, 0, 7180, 7182, 3, 676, 338, 0, 7181, 7180, 1, 0, 0, 0, 7181, 7182, 1, 0, 0, 0, 7182, 7183, 1, 0, 0, 0, 7183, 7185, 5, 64, 0, 0, 7184, 7181, 1, 0, 0, 0, 7184, 7185, 1, 0, 0, 0, 7185, 7186, 1, 0, 0, 0, 7186, 7187, 3, 732, 366, 0, 7187, 7188, 1, 0, 0, 0, 7188, 7189, 5, 3, 0, 0, 7189, 7280, 1, 0, 0, 0, 7190, 7191, 5, 408, 0, 0, 7191, 7192, 5, 2, 0, 0, 7192, 7193, 3, 676, 338, 0, 7193, 7194, 5, 6, 0, 0, 7194, 7195, 3, 676, 338, 0, 7195, 7196, 5, 3, 0, 0, 7196, 7280, 1, 0, 0, 0, 7197, 7198, 7, 98, 0, 0, 7198, 7280, 3, 534, 267, 0, 7199, 7200, 5, 426, 0, 0, 7200, 7201, 5, 2, 0, 0, 7201, 7202, 5, 266, 0, 0, 7202, 7212, 3, 828, 414, 0, 7203, 7210, 5, 6, 0, 0, 7204, 7205, 5, 424, 0, 0, 7205, 7206, 5, 2, 0, 0, 7206, 7207, 3, 694, 347, 0, 7207, 7208, 5, 3, 0, 0, 7208, 7211, 1, 0, 0, 0, 7209, 7211, 3, 732, 366, 0, 7210, 7204, 1, 0, 0, 0, 7210, 7209, 1, 0, 0, 0, 7211, 7213, 1, 0, 0, 0, 7212, 7203, 1, 0, 0, 0, 7212, 7213, 1, 0, 0, 0, 7213, 7214, 1, 0, 0, 0, 7214, 7215, 5, 3, 0, 0, 7215, 7280, 1, 0, 0, 0, 7216, 7217, 5, 427, 0, 0, 7217, 7218, 5, 2, 0, 0, 7218, 7219, 3, 684, 342, 0, 7219, 7220, 3, 700, 350, 0, 7220, 7221, 5, 3, 0, 0, 7221, 7280, 1, 0, 0, 0, 7222, 7223, 5, 428, 0, 0, 7223, 7224, 5, 2, 0, 0, 7224, 7225, 3, 694, 347, 0, 7225, 7226, 5, 3, 0, 0, 7226, 7280, 1, 0, 0, 0, 7227, 7228, 5, 429, 0, 0, 7228, 7229, 5, 2, 0, 0, 7229, 7230, 3, 698, 349, 0, 7230, 7233, 3, 676, 338, 0, 7231, 7232, 7, 99, 0, 0, 7232, 7234, 5, 378, 0, 0, 7233, 7231, 1, 0, 0, 0, 7233, 7234, 1, 0, 0, 0, 7234, 7235, 1, 0, 0, 0, 7235, 7236, 5, 3, 0, 0, 7236, 7280, 1, 0, 0, 0, 7237, 7238, 5, 430, 0, 0, 7238, 7239, 5, 2, 0, 0, 7239, 7240, 5, 266, 0, 0, 7240, 7243, 3, 828, 414, 0, 7241, 7242, 5, 6, 0, 0, 7242, 7244, 3, 676, 338, 0, 7243, 7241, 1, 0, 0, 0, 7243, 7244, 1, 0, 0, 0, 7244, 7245, 1, 0, 0, 0, 7245, 7246, 5, 3, 0, 0, 7246, 7280, 1, 0, 0, 0, 7247, 7248, 5, 431, 0, 0, 7248, 7249, 5, 2, 0, 0, 7249, 7250, 5, 383, 0, 0, 7250, 7251, 3, 676, 338, 0, 7251, 7252, 5, 6, 0, 0, 7252, 7256, 5, 375, 0, 0, 7253, 7254, 5, 269, 0, 0, 7254, 7257, 5, 450, 0, 0, 7255, 7257, 3, 676, 338, 0, 7256, 7253, 1, 0, 0, 0, 7256, 7255, 1, 0, 0, 0, 7257, 7267, 1, 0, 0, 0, 7258, 7259, 5, 6, 0, 0, 7259, 7265, 5, 339, 0, 0, 7260, 7262, 5, 269, 0, 0, 7261, 7260, 1, 0, 0, 0, 7261, 7262, 1, 0, 0, 0, 7262, 7263, 1, 0, 0, 0, 7263, 7266, 5, 450, 0, 0, 7264, 7266, 5, 385, 0, 0, 7265, 7261, 1, 0, 0, 0, 7265, 7264, 1, 0, 0, 0, 7266, 7268, 1, 0, 0, 0, 7267, 7258, 1, 0, 0, 0, 7267, 7268, 1, 0, 0, 0, 7268, 7269, 1, 0, 0, 0, 7269, 7270, 5, 3, 0, 0, 7270, 7280, 1, 0, 0, 0, 7271, 7272, 5, 432, 0, 0, 7272, 7273, 5, 2, 0, 0, 7273, 7274, 3, 698, 349, 0, 7274, 7275, 3, 676, 338, 0, 7275, 7276, 5, 36, 0, 0, 7276, 7277, 3, 656, 328, 0, 7277, 7278, 5, 3, 0, 0, 7278, 7280, 1, 0, 0, 0, 7279, 7105, 1, 0, 0, 0, 7279, 7111, 1, 0, 0, 0, 7279, 7112, 1, 0, 0, 0, 7279, 7116, 1, 0, 0, 0, 7279, 7117, 1, 0, 0, 0, 7279, 7118, 1, 0, 0, 0, 7279, 7119, 1, 0, 0, 0, 7279, 7120, 1, 0, 0, 0, 7279, 7121, 1, 0, 0, 0, 7279, 7122, 1, 0, 0, 0, 7279, 7129, 1, 0, 0, 0, 7279, 7138, 1, 0, 0, 0, 7279, 7147, 1, 0, 0, 0, 7279, 7160, 1, 0, 0, 0, 7279, 7169, 1, 0, 0, 0, 7279, 7175, 1, 0, 0, 0, 7279, 7190, 1, 0, 0, 0, 7279, 7197, 1, 0, 0, 0, 7279, 7199, 1, 0, 0, 0, 7279, 7216, 1, 0, 0, 0, 7279, 7222, 1, 0, 0, 0, 7279, 7227, 1, 0, 0, 0, 7279, 7237, 1, 0, 0, 0, 7279, 7247, 1, 0, 0, 0, 7279, 7271, 1, 0, 0, 0, 7280, 693, 1, 0, 0, 0, 7281, 7286, 3, 696, 348, 0, 7282, 7283, 5, 6, 0, 0, 7283, 7285, 3, 696, 348, 0, 7284, 7282, 1, 0, 0, 0, 7285, 7288, 1, 0, 0, 0, 7286, 7284, 1, 0, 0, 0, 7286, 7287, 1, 0, 0, 0, 7287, 695, 1, 0, 0, 0, 7288, 7286, 1, 0, 0, 0, 7289, 7292, 3, 676, 338, 0, 7290, 7291, 5, 36, 0, 0, 7291, 7293, 3, 828, 414, 0, 7292, 7290, 1, 0, 0, 0, 7292, 7293, 1, 0, 0, 0, 7293, 697, 1, 0, 0, 0, 7294, 7295, 7, 100, 0, 0, 7295, 699, 1, 0, 0, 0, 7296, 7298, 5, 286, 0, 0, 7297, 7299, 3, 702, 351, 0, 7298, 7297, 1, 0, 0, 0, 7298, 7299, 1, 0, 0, 0, 7299, 7300, 1, 0, 0, 0, 7300, 7302, 3, 684, 342, 0, 7301, 7303, 3, 702, 351, 0, 7302, 7301, 1, 0, 0, 0, 7302, 7303, 1, 0, 0, 0, 7303, 701, 1, 0, 0, 0, 7304, 7305, 5, 147, 0, 0, 7305, 7306, 7, 101, 0, 0, 7306, 703, 1, 0, 0, 0, 7307, 7308, 5, 104, 0, 0, 7308, 7313, 3, 706, 353, 0, 7309, 7310, 5, 6, 0, 0, 7310, 7312, 3, 706, 353, 0, 7311, 7309, 1, 0, 0, 0, 7312, 7315, 1, 0, 0, 0, 7313, 7311, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 705, 1, 0, 0, 0, 7315, 7313, 1, 0, 0, 0, 7316, 7317, 3, 822, 411, 0, 7317, 7318, 5, 36, 0, 0, 7318, 7319, 3, 710, 355, 0, 7319, 707, 1, 0, 0, 0, 7320, 7323, 5, 124, 0, 0, 7321, 7324, 3, 710, 355, 0, 7322, 7324, 3, 822, 411, 0, 7323, 7321, 1, 0, 0, 0, 7323, 7322, 1, 0, 0, 0, 7324, 709, 1, 0, 0, 0, 7325, 7327, 5, 2, 0, 0, 7326, 7328, 3, 822, 411, 0, 7327, 7326, 1, 0, 0, 0, 7327, 7328, 1, 0, 0, 0, 7328, 7332, 1, 0, 0, 0, 7329, 7330, 5, 285, 0, 0, 7330, 7331, 5, 147, 0, 0, 7331, 7333, 3, 732, 366, 0, 7332, 7329, 1, 0, 0, 0, 7332, 7333, 1, 0, 0, 0, 7333, 7335, 1, 0, 0, 0, 7334, 7336, 3, 586, 293, 0, 7335, 7334, 1, 0, 0, 0, 7335, 7336, 1, 0, 0, 0, 7336, 7338, 1, 0, 0, 0, 7337, 7339, 3, 712, 356, 0, 7338, 7337, 1, 0, 0, 0, 7338, 7339, 1, 0, 0, 0, 7339, 7340, 1, 0, 0, 0, 7340, 7341, 5, 3, 0, 0, 7341, 711, 1, 0, 0, 0, 7342, 7347, 7, 102, 0, 0, 7343, 7344, 5, 387, 0, 0, 7344, 7345, 3, 714, 357, 0, 7345, 7346, 5, 33, 0, 0, 7346, 7348, 1, 0, 0, 0, 7347, 7343, 1, 0, 0, 0, 7347, 7348, 1, 0, 0, 0, 7348, 7349, 1, 0, 0, 0, 7349, 7350, 3, 714, 357, 0, 7350, 7360, 1, 0, 0, 0, 7351, 7358, 5, 199, 0, 0, 7352, 7353, 5, 434, 0, 0, 7353, 7359, 5, 414, 0, 0, 7354, 7359, 5, 66, 0, 0, 7355, 7359, 5, 467, 0, 0, 7356, 7357, 5, 269, 0, 0, 7357, 7359, 5, 482, 0, 0, 7358, 7352, 1, 0, 0, 0, 7358, 7354, 1, 0, 0, 0, 7358, 7355, 1, 0, 0, 0, 7358, 7356, 1, 0, 0, 0, 7359, 7361, 1, 0, 0, 0, 7360, 7351, 1, 0, 0, 0, 7360, 7361, 1, 0, 0, 0, 7361, 713, 1, 0, 0, 0, 7362, 7365, 5, 362, 0, 0, 7363, 7365, 3, 676, 338, 0, 7364, 7362, 1, 0, 0, 0, 7364, 7363, 1, 0, 0, 0, 7365, 7366, 1, 0, 0, 0, 7366, 7370, 7, 103, 0, 0, 7367, 7368, 5, 434, 0, 0, 7368, 7370, 5, 414, 0, 0, 7369, 7364, 1, 0, 0, 0, 7369, 7367, 1, 0, 0, 0, 7370, 715, 1, 0, 0, 0, 7371, 7379, 3, 718, 359, 0, 7372, 7373, 5, 2, 0, 0, 7373, 7374, 3, 732, 366, 0, 7374, 7375, 5, 6, 0, 0, 7375, 7376, 3, 676, 338, 0, 7376, 7377, 5, 3, 0, 0, 7377, 7379, 1, 0, 0, 0, 7378, 7371, 1, 0, 0, 0, 7378, 7372, 1, 0, 0, 0, 7379, 717, 1, 0, 0, 0, 7380, 7381, 5, 414, 0, 0, 7381, 7383, 5, 2, 0, 0, 7382, 7384, 3, 732, 366, 0, 7383, 7382, 1, 0, 0, 0, 7383, 7384, 1, 0, 0, 0, 7384, 7385, 1, 0, 0, 0, 7385, 7386, 5, 3, 0, 0, 7386, 719, 1, 0, 0, 0, 7387, 7388, 7, 104, 0, 0, 7388, 721, 1, 0, 0, 0, 7389, 7392, 5, 29, 0, 0, 7390, 7392, 3, 724, 362, 0, 7391, 7389, 1, 0, 0, 0, 7391, 7390, 1, 0, 0, 0, 7392, 723, 1, 0, 0, 0, 7393, 7394, 7, 105, 0, 0, 7394, 725, 1, 0, 0, 0, 7395, 7402, 5, 29, 0, 0, 7396, 7397, 5, 278, 0, 0, 7397, 7398, 5, 2, 0, 0, 7398, 7399, 3, 414, 207, 0, 7399, 7400, 5, 3, 0, 0, 7400, 7402, 1, 0, 0, 0, 7401, 7395, 1, 0, 0, 0, 7401, 7396, 1, 0, 0, 0, 7402, 727, 1, 0, 0, 0, 7403, 7410, 3, 722, 361, 0, 7404, 7405, 5, 278, 0, 0, 7405, 7406, 5, 2, 0, 0, 7406, 7407, 3, 414, 207, 0, 7407, 7408, 5, 3, 0, 0, 7408, 7410, 1, 0, 0, 0, 7409, 7403, 1, 0, 0, 0, 7409, 7404, 1, 0, 0, 0, 7410, 729, 1, 0, 0, 0, 7411, 7417, 3, 728, 364, 0, 7412, 7414, 5, 77, 0, 0, 7413, 7412, 1, 0, 0, 0, 7413, 7414, 1, 0, 0, 0, 7414, 7415, 1, 0, 0, 0, 7415, 7417, 7, 106, 0, 0, 7416, 7411, 1, 0, 0, 0, 7416, 7413, 1, 0, 0, 0, 7417, 731, 1, 0, 0, 0, 7418, 7423, 3, 676, 338, 0, 7419, 7420, 5, 6, 0, 0, 7420, 7422, 3, 676, 338, 0, 7421, 7419, 1, 0, 0, 0, 7422, 7425, 1, 0, 0, 0, 7423, 7421, 1, 0, 0, 0, 7423, 7424, 1, 0, 0, 0, 7424, 733, 1, 0, 0, 0, 7425, 7423, 1, 0, 0, 0, 7426, 7427, 5, 2, 0, 0, 7427, 7428, 3, 676, 338, 0, 7428, 7429, 5, 3, 0, 0, 7429, 7432, 1, 0, 0, 0, 7430, 7432, 3, 804, 402, 0, 7431, 7426, 1, 0, 0, 0, 7431, 7430, 1, 0, 0, 0, 7432, 735, 1, 0, 0, 0, 7433, 7436, 3, 676, 338, 0, 7434, 7436, 3, 804, 402, 0, 7435, 7433, 1, 0, 0, 0, 7435, 7434, 1, 0, 0, 0, 7436, 737, 1, 0, 0, 0, 7437, 7442, 3, 740, 370, 0, 7438, 7439, 5, 6, 0, 0, 7439, 7441, 3, 740, 370, 0, 7440, 7438, 1, 0, 0, 0, 7441, 7444, 1, 0, 0, 0, 7442, 7440, 1, 0, 0, 0, 7442, 7443, 1, 0, 0, 0, 7443, 739, 1, 0, 0, 0, 7444, 7442, 1, 0, 0, 0, 7445, 7453, 3, 804, 402, 0, 7446, 7453, 3, 676, 338, 0, 7447, 7450, 3, 824, 412, 0, 7448, 7449, 7, 107, 0, 0, 7449, 7451, 3, 676, 338, 0, 7450, 7448, 1, 0, 0, 0, 7450, 7451, 1, 0, 0, 0, 7451, 7453, 1, 0, 0, 0, 7452, 7445, 1, 0, 0, 0, 7452, 7446, 1, 0, 0, 0, 7452, 7447, 1, 0, 0, 0, 7453, 741, 1, 0, 0, 0, 7454, 7464, 5, 4, 0, 0, 7455, 7465, 3, 732, 366, 0, 7456, 7461, 3, 742, 371, 0, 7457, 7458, 5, 6, 0, 0, 7458, 7460, 3, 742, 371, 0, 7459, 7457, 1, 0, 0, 0, 7460, 7463, 1, 0, 0, 0, 7461, 7459, 1, 0, 0, 0, 7461, 7462, 1, 0, 0, 0, 7462, 7465, 1, 0, 0, 0, 7463, 7461, 1, 0, 0, 0, 7464, 7455, 1, 0, 0, 0, 7464, 7456, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7466, 1, 0, 0, 0, 7466, 7467, 5, 5, 0, 0, 7467, 743, 1, 0, 0, 0, 7468, 7477, 3, 830, 415, 0, 7469, 7477, 5, 384, 0, 0, 7470, 7477, 5, 264, 0, 0, 7471, 7477, 5, 176, 0, 0, 7472, 7477, 5, 218, 0, 0, 7473, 7477, 5, 261, 0, 0, 7474, 7477, 5, 326, 0, 0, 7475, 7477, 3, 812, 406, 0, 7476, 7468, 1, 0, 0, 0, 7476, 7469, 1, 0, 0, 0, 7476, 7470, 1, 0, 0, 0, 7476, 7471, 1, 0, 0, 0, 7476, 7472, 1, 0, 0, 0, 7476, 7473, 1, 0, 0, 0, 7476, 7474, 1, 0, 0, 0, 7476, 7475, 1, 0, 0, 0, 7477, 745, 1, 0, 0, 0, 7478, 7479, 7, 108, 0, 0, 7479, 747, 1, 0, 0, 0, 7480, 7481, 3, 676, 338, 0, 7481, 7482, 5, 64, 0, 0, 7482, 7485, 3, 676, 338, 0, 7483, 7484, 5, 62, 0, 0, 7484, 7486, 3, 676, 338, 0, 7485, 7483, 1, 0, 0, 0, 7485, 7486, 1, 0, 0, 0, 7486, 7502, 1, 0, 0, 0, 7487, 7488, 3, 676, 338, 0, 7488, 7489, 5, 62, 0, 0, 7489, 7492, 3, 676, 338, 0, 7490, 7491, 5, 64, 0, 0, 7491, 7493, 3, 676, 338, 0, 7492, 7490, 1, 0, 0, 0, 7492, 7493, 1, 0, 0, 0, 7493, 7502, 1, 0, 0, 0, 7494, 7495, 3, 676, 338, 0, 7495, 7496, 5, 127, 0, 0, 7496, 7497, 3, 676, 338, 0, 7497, 7498, 5, 197, 0, 0, 7498, 7499, 3, 676, 338, 0, 7499, 7502, 1, 0, 0, 0, 7500, 7502, 3, 732, 366, 0, 7501, 7480, 1, 0, 0, 0, 7501, 7487, 1, 0, 0, 0, 7501, 7494, 1, 0, 0, 0, 7501, 7500, 1, 0, 0, 0, 7502, 749, 1, 0, 0, 0, 7503, 7504, 5, 102, 0, 0, 7504, 7505, 3, 676, 338, 0, 7505, 7506, 5, 93, 0, 0, 7506, 7507, 3, 676, 338, 0, 7507, 751, 1, 0, 0, 0, 7508, 7511, 5, 11, 0, 0, 7509, 7512, 3, 828, 414, 0, 7510, 7512, 5, 9, 0, 0, 7511, 7509, 1, 0, 0, 0, 7511, 7510, 1, 0, 0, 0, 7512, 7526, 1, 0, 0, 0, 7513, 7522, 5, 4, 0, 0, 7514, 7523, 3, 676, 338, 0, 7515, 7517, 3, 676, 338, 0, 7516, 7515, 1, 0, 0, 0, 7516, 7517, 1, 0, 0, 0, 7517, 7518, 1, 0, 0, 0, 7518, 7520, 5, 8, 0, 0, 7519, 7521, 3, 676, 338, 0, 7520, 7519, 1, 0, 0, 0, 7520, 7521, 1, 0, 0, 0, 7521, 7523, 1, 0, 0, 0, 7522, 7514, 1, 0, 0, 0, 7522, 7516, 1, 0, 0, 0, 7523, 7524, 1, 0, 0, 0, 7524, 7526, 5, 5, 0, 0, 7525, 7508, 1, 0, 0, 0, 7525, 7513, 1, 0, 0, 0, 7526, 753, 1, 0, 0, 0, 7527, 7529, 3, 752, 376, 0, 7528, 7527, 1, 0, 0, 0, 7529, 7530, 1, 0, 0, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7531, 1, 0, 0, 0, 7531, 755, 1, 0, 0, 0, 7532, 7534, 3, 752, 376, 0, 7533, 7532, 1, 0, 0, 0, 7534, 7537, 1, 0, 0, 0, 7535, 7533, 1, 0, 0, 0, 7535, 7536, 1, 0, 0, 0, 7536, 757, 1, 0, 0, 0, 7537, 7535, 1, 0, 0, 0, 7538, 7543, 3, 760, 380, 0, 7539, 7540, 5, 6, 0, 0, 7540, 7542, 3, 760, 380, 0, 7541, 7539, 1, 0, 0, 0, 7542, 7545, 1, 0, 0, 0, 7543, 7541, 1, 0, 0, 0, 7543, 7544, 1, 0, 0, 0, 7544, 759, 1, 0, 0, 0, 7545, 7543, 1, 0, 0, 0, 7546, 7556, 3, 762, 381, 0, 7547, 7553, 3, 736, 368, 0, 7548, 7550, 5, 36, 0, 0, 7549, 7548, 1, 0, 0, 0, 7549, 7550, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7554, 3, 830, 415, 0, 7552, 7554, 1, 0, 0, 0, 7553, 7549, 1, 0, 0, 0, 7553, 7552, 1, 0, 0, 0, 7554, 7556, 1, 0, 0, 0, 7555, 7546, 1, 0, 0, 0, 7555, 7547, 1, 0, 0, 0, 7556, 761, 1, 0, 0, 0, 7557, 7558, 3, 822, 411, 0, 7558, 7559, 5, 11, 0, 0, 7559, 7561, 1, 0, 0, 0, 7560, 7557, 1, 0, 0, 0, 7561, 7564, 1, 0, 0, 0, 7562, 7560, 1, 0, 0, 0, 7562, 7563, 1, 0, 0, 0, 7563, 7565, 1, 0, 0, 0, 7564, 7562, 1, 0, 0, 0, 7565, 7566, 5, 9, 0, 0, 7566, 763, 1, 0, 0, 0, 7567, 7572, 3, 784, 392, 0, 7568, 7569, 5, 6, 0, 0, 7569, 7571, 3, 784, 392, 0, 7570, 7568, 1, 0, 0, 0, 7571, 7574, 1, 0, 0, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7573, 1, 0, 0, 0, 7573, 765, 1, 0, 0, 0, 7574, 7572, 1, 0, 0, 0, 7575, 7580, 3, 778, 389, 0, 7576, 7577, 5, 6, 0, 0, 7577, 7579, 3, 778, 389, 0, 7578, 7576, 1, 0, 0, 0, 7579, 7582, 1, 0, 0, 0, 7580, 7578, 1, 0, 0, 0, 7580, 7581, 1, 0, 0, 0, 7581, 767, 1, 0, 0, 0, 7582, 7580, 1, 0, 0, 0, 7583, 7588, 3, 794, 397, 0, 7584, 7585, 5, 6, 0, 0, 7585, 7587, 3, 794, 397, 0, 7586, 7584, 1, 0, 0, 0, 7587, 7590, 1, 0, 0, 0, 7588, 7586, 1, 0, 0, 0, 7588, 7589, 1, 0, 0, 0, 7589, 769, 1, 0, 0, 0, 7590, 7588, 1, 0, 0, 0, 7591, 7596, 3, 792, 396, 0, 7592, 7593, 5, 6, 0, 0, 7593, 7595, 3, 792, 396, 0, 7594, 7592, 1, 0, 0, 0, 7595, 7598, 1, 0, 0, 0, 7596, 7594, 1, 0, 0, 0, 7596, 7597, 1, 0, 0, 0, 7597, 771, 1, 0, 0, 0, 7598, 7596, 1, 0, 0, 0, 7599, 7600, 3, 784, 392, 0, 7600, 773, 1, 0, 0, 0, 7601, 7602, 3, 784, 392, 0, 7602, 775, 1, 0, 0, 0, 7603, 7604, 3, 784, 392, 0, 7604, 777, 1, 0, 0, 0, 7605, 7606, 3, 784, 392, 0, 7606, 779, 1, 0, 0, 0, 7607, 7608, 3, 784, 392, 0, 7608, 781, 1, 0, 0, 0, 7609, 7610, 3, 316, 158, 0, 7610, 783, 1, 0, 0, 0, 7611, 7613, 3, 822, 411, 0, 7612, 7614, 3, 754, 377, 0, 7613, 7612, 1, 0, 0, 0, 7613, 7614, 1, 0, 0, 0, 7614, 785, 1, 0, 0, 0, 7615, 7620, 3, 774, 387, 0, 7616, 7617, 5, 6, 0, 0, 7617, 7619, 3, 774, 387, 0, 7618, 7616, 1, 0, 0, 0, 7619, 7622, 1, 0, 0, 0, 7620, 7618, 1, 0, 0, 0, 7620, 7621, 1, 0, 0, 0, 7621, 787, 1, 0, 0, 0, 7622, 7620, 1, 0, 0, 0, 7623, 7628, 3, 822, 411, 0, 7624, 7625, 5, 6, 0, 0, 7625, 7627, 3, 822, 411, 0, 7626, 7624, 1, 0, 0, 0, 7627, 7630, 1, 0, 0, 0, 7628, 7626, 1, 0, 0, 0, 7628, 7629, 1, 0, 0, 0, 7629, 789, 1, 0, 0, 0, 7630, 7628, 1, 0, 0, 0, 7631, 7632, 3, 316, 158, 0, 7632, 791, 1, 0, 0, 0, 7633, 7634, 3, 316, 158, 0, 7634, 793, 1, 0, 0, 0, 7635, 7636, 3, 316, 158, 0, 7636, 795, 1, 0, 0, 0, 7637, 7638, 3, 822, 411, 0, 7638, 797, 1, 0, 0, 0, 7639, 7640, 3, 822, 411, 0, 7640, 799, 1, 0, 0, 0, 7641, 7646, 3, 824, 412, 0, 7642, 7643, 3, 822, 411, 0, 7643, 7644, 3, 754, 377, 0, 7644, 7646, 1, 0, 0, 0, 7645, 7641, 1, 0, 0, 0, 7645, 7642, 1, 0, 0, 0, 7646, 801, 1, 0, 0, 0, 7647, 7652, 3, 824, 412, 0, 7648, 7649, 3, 822, 411, 0, 7649, 7650, 3, 754, 377, 0, 7650, 7652, 1, 0, 0, 0, 7651, 7647, 1, 0, 0, 0, 7651, 7648, 1, 0, 0, 0, 7652, 803, 1, 0, 0, 0, 7653, 7654, 3, 822, 411, 0, 7654, 7655, 3, 756, 378, 0, 7655, 7658, 1, 0, 0, 0, 7656, 7658, 4, 402, 10, 0, 7657, 7653, 1, 0, 0, 0, 7657, 7656, 1, 0, 0, 0, 7658, 805, 1, 0, 0, 0, 7659, 7660, 3, 822, 411, 0, 7660, 807, 1, 0, 0, 0, 7661, 7666, 3, 824, 412, 0, 7662, 7663, 3, 822, 411, 0, 7663, 7664, 3, 754, 377, 0, 7664, 7666, 1, 0, 0, 0, 7665, 7661, 1, 0, 0, 0, 7665, 7662, 1, 0, 0, 0, 7666, 809, 1, 0, 0, 0, 7667, 7672, 3, 824, 412, 0, 7668, 7669, 3, 822, 411, 0, 7669, 7670, 3, 754, 377, 0, 7670, 7672, 1, 0, 0, 0, 7671, 7667, 1, 0, 0, 0, 7671, 7668, 1, 0, 0, 0, 7672, 811, 1, 0, 0, 0, 7673, 7676, 3, 814, 407, 0, 7674, 7675, 5, 487, 0, 0, 7675, 7677, 3, 814, 407, 0, 7676, 7674, 1, 0, 0, 0, 7676, 7677, 1, 0, 0, 0, 7677, 813, 1, 0, 0, 0, 7678, 7690, 5, 558, 0, 0, 7679, 7690, 5, 560, 0, 0, 7680, 7684, 5, 562, 0, 0, 7681, 7683, 5, 588, 0, 0, 7682, 7681, 1, 0, 0, 0, 7683, 7686, 1, 0, 0, 0, 7684, 7682, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7687, 1, 0, 0, 0, 7686, 7684, 1, 0, 0, 0, 7687, 7690, 5, 589, 0, 0, 7688, 7690, 5, 584, 0, 0, 7689, 7678, 1, 0, 0, 0, 7689, 7679, 1, 0, 0, 0, 7689, 7680, 1, 0, 0, 0, 7689, 7688, 1, 0, 0, 0, 7690, 815, 1, 0, 0, 0, 7691, 7693, 7, 29, 0, 0, 7692, 7691, 1, 0, 0, 0, 7692, 7693, 1, 0, 0, 0, 7693, 7694, 1, 0, 0, 0, 7694, 7695, 5, 571, 0, 0, 7695, 817, 1, 0, 0, 0, 7696, 7702, 3, 826, 413, 0, 7697, 7702, 5, 52, 0, 0, 7698, 7702, 5, 49, 0, 0, 7699, 7702, 5, 89, 0, 0, 7700, 7702, 5, 524, 0, 0, 7701, 7696, 1, 0, 0, 0, 7701, 7697, 1, 0, 0, 0, 7701, 7698, 1, 0, 0, 0, 7701, 7699, 1, 0, 0, 0, 7701, 7700, 1, 0, 0, 0, 7702, 819, 1, 0, 0, 0, 7703, 7708, 3, 818, 409, 0, 7704, 7705, 5, 6, 0, 0, 7705, 7707, 3, 818, 409, 0, 7706, 7704, 1, 0, 0, 0, 7707, 7710, 1, 0, 0, 0, 7708, 7706, 1, 0, 0, 0, 7708, 7709, 1, 0, 0, 0, 7709, 821, 1, 0, 0, 0, 7710, 7708, 1, 0, 0, 0, 7711, 7714, 3, 830, 415, 0, 7712, 7714, 3, 834, 417, 0, 7713, 7711, 1, 0, 0, 0, 7713, 7712, 1, 0, 0, 0, 7714, 823, 1, 0, 0, 0, 7715, 7718, 3, 830, 415, 0, 7716, 7718, 3, 836, 418, 0, 7717, 7715, 1, 0, 0, 0, 7717, 7716, 1, 0, 0, 0, 7718, 825, 1, 0, 0, 0, 7719, 7723, 3, 830, 415, 0, 7720, 7723, 3, 834, 417, 0, 7721, 7723, 3, 836, 418, 0, 7722, 7719, 1, 0, 0, 0, 7722, 7720, 1, 0, 0, 0, 7722, 7721, 1, 0, 0, 0, 7723, 827, 1, 0, 0, 0, 7724, 7729, 3, 830, 415, 0, 7725, 7729, 3, 834, 417, 0, 7726, 7729, 3, 836, 418, 0, 7727, 7729, 3, 838, 419, 0, 7728, 7724, 1, 0, 0, 0, 7728, 7725, 1, 0, 0, 0, 7728, 7726, 1, 0, 0, 0, 7728, 7727, 1, 0, 0, 0, 7729, 829, 1, 0, 0, 0, 7730, 7733, 5, 549, 0, 0, 7731, 7732, 5, 487, 0, 0, 7732, 7734, 3, 814, 407, 0, 7733, 7731, 1, 0, 0, 0, 7733, 7734, 1, 0, 0, 0, 7734, 7742, 1, 0, 0, 0, 7735, 7742, 3, 812, 406, 0, 7736, 7742, 5, 550, 0, 0, 7737, 7742, 5, 554, 0, 0, 7738, 7742, 5, 574, 0, 0, 7739, 7742, 5, 575, 0, 0, 7740, 7742, 3, 832, 416, 0, 7741, 7730, 1, 0, 0, 0, 7741, 7735, 1, 0, 0, 0, 7741, 7736, 1, 0, 0, 0, 7741, 7737, 1, 0, 0, 0, 7741, 7738, 1, 0, 0, 0, 7741, 7739, 1, 0, 0, 0, 7741, 7740, 1, 0, 0, 0, 7742, 831, 1, 0, 0, 0, 7743, 7744, 7, 109, 0, 0, 7744, 833, 1, 0, 0, 0, 7745, 7797, 5, 387, 0, 0, 7746, 7797, 5, 388, 0, 0, 7747, 7797, 3, 664, 332, 0, 7748, 7797, 5, 390, 0, 0, 7749, 7797, 5, 391, 0, 0, 7750, 7797, 3, 666, 333, 0, 7751, 7797, 5, 393, 0, 0, 7752, 7797, 5, 394, 0, 0, 7753, 7797, 5, 395, 0, 0, 7754, 7797, 5, 396, 0, 0, 7755, 7797, 5, 397, 0, 0, 7756, 7797, 5, 398, 0, 0, 7757, 7797, 5, 399, 0, 0, 7758, 7797, 5, 470, 0, 0, 7759, 7797, 5, 400, 0, 0, 7760, 7797, 5, 401, 0, 0, 7761, 7797, 5, 402, 0, 0, 7762, 7797, 5, 403, 0, 0, 7763, 7797, 5, 404, 0, 0, 7764, 7797, 5, 405, 0, 0, 7765, 7797, 5, 406, 0, 0, 7766, 7797, 5, 407, 0, 0, 7767, 7797, 5, 489, 0, 0, 7768, 7797, 5, 408, 0, 0, 7769, 7797, 3, 660, 330, 0, 7770, 7797, 5, 453, 0, 0, 7771, 7797, 5, 410, 0, 0, 7772, 7797, 5, 411, 0, 0, 7773, 7797, 5, 412, 0, 0, 7774, 7797, 5, 413, 0, 0, 7775, 7797, 5, 414, 0, 0, 7776, 7797, 5, 415, 0, 0, 7777, 7797, 5, 416, 0, 0, 7778, 7797, 5, 417, 0, 0, 7779, 7797, 5, 418, 0, 0, 7780, 7797, 5, 419, 0, 0, 7781, 7797, 5, 420, 0, 0, 7782, 7797, 5, 421, 0, 0, 7783, 7797, 5, 422, 0, 0, 7784, 7797, 5, 423, 0, 0, 7785, 7797, 5, 424, 0, 0, 7786, 7797, 5, 425, 0, 0, 7787, 7797, 5, 426, 0, 0, 7788, 7797, 5, 427, 0, 0, 7789, 7797, 5, 428, 0, 0, 7790, 7797, 5, 476, 0, 0, 7791, 7797, 5, 429, 0, 0, 7792, 7797, 5, 430, 0, 0, 7793, 7797, 5, 431, 0, 0, 7794, 7797, 5, 432, 0, 0, 7795, 7797, 5, 474, 0, 0, 7796, 7745, 1, 0, 0, 0, 7796, 7746, 1, 0, 0, 0, 7796, 7747, 1, 0, 0, 0, 7796, 7748, 1, 0, 0, 0, 7796, 7749, 1, 0, 0, 0, 7796, 7750, 1, 0, 0, 0, 7796, 7751, 1, 0, 0, 0, 7796, 7752, 1, 0, 0, 0, 7796, 7753, 1, 0, 0, 0, 7796, 7754, 1, 0, 0, 0, 7796, 7755, 1, 0, 0, 0, 7796, 7756, 1, 0, 0, 0, 7796, 7757, 1, 0, 0, 0, 7796, 7758, 1, 0, 0, 0, 7796, 7759, 1, 0, 0, 0, 7796, 7760, 1, 0, 0, 0, 7796, 7761, 1, 0, 0, 0, 7796, 7762, 1, 0, 0, 0, 7796, 7763, 1, 0, 0, 0, 7796, 7764, 1, 0, 0, 0, 7796, 7765, 1, 0, 0, 0, 7796, 7766, 1, 0, 0, 0, 7796, 7767, 1, 0, 0, 0, 7796, 7768, 1, 0, 0, 0, 7796, 7769, 1, 0, 0, 0, 7796, 7770, 1, 0, 0, 0, 7796, 7771, 1, 0, 0, 0, 7796, 7772, 1, 0, 0, 0, 7796, 7773, 1, 0, 0, 0, 7796, 7774, 1, 0, 0, 0, 7796, 7775, 1, 0, 0, 0, 7796, 7776, 1, 0, 0, 0, 7796, 7777, 1, 0, 0, 0, 7796, 7778, 1, 0, 0, 0, 7796, 7779, 1, 0, 0, 0, 7796, 7780, 1, 0, 0, 0, 7796, 7781, 1, 0, 0, 0, 7796, 7782, 1, 0, 0, 0, 7796, 7783, 1, 0, 0, 0, 7796, 7784, 1, 0, 0, 0, 7796, 7785, 1, 0, 0, 0, 7796, 7786, 1, 0, 0, 0, 7796, 7787, 1, 0, 0, 0, 7796, 7788, 1, 0, 0, 0, 7796, 7789, 1, 0, 0, 0, 7796, 7790, 1, 0, 0, 0, 7796, 7791, 1, 0, 0, 0, 7796, 7792, 1, 0, 0, 0, 7796, 7793, 1, 0, 0, 0, 7796, 7794, 1, 0, 0, 0, 7796, 7795, 1, 0, 0, 0, 7797, 835, 1, 0, 0, 0, 7798, 7799, 7, 110, 0, 0, 7799, 837, 1, 0, 0, 0, 7800, 7801, 7, 111, 0, 0, 7801, 839, 1, 0, 0, 0, 7802, 7804, 3, 842, 421, 0, 7803, 7802, 1, 0, 0, 0, 7803, 7804, 1, 0, 0, 0, 7804, 7815, 1, 0, 0, 0, 7805, 7813, 5, 178, 0, 0, 7806, 7810, 3, 844, 422, 0, 7807, 7810, 5, 178, 0, 0, 7808, 7810, 3, 842, 421, 0, 7809, 7806, 1, 0, 0, 0, 7809, 7807, 1, 0, 0, 0, 7809, 7808, 1, 0, 0, 0, 7810, 7811, 1, 0, 0, 0, 7811, 7809, 1, 0, 0, 0, 7811, 7812, 1, 0, 0, 0, 7812, 7814, 1, 0, 0, 0, 7813, 7809, 1, 0, 0, 0, 7813, 7814, 1, 0, 0, 0, 7814, 7816, 1, 0, 0, 0, 7815, 7805, 1, 0, 0, 0, 7815, 7816, 1, 0, 0, 0, 7816, 7817, 1, 0, 0, 0, 7817, 7821, 5, 146, 0, 0, 7818, 7820, 3, 850, 425, 0, 7819, 7818, 1, 0, 0, 0, 7820, 7823, 1, 0, 0, 0, 7821, 7819, 1, 0, 0, 0, 7821, 7822, 1, 0, 0, 0, 7822, 7825, 1, 0, 0, 0, 7823, 7821, 1, 0, 0, 0, 7824, 7826, 3, 928, 464, 0, 7825, 7824, 1, 0, 0, 0, 7825, 7826, 1, 0, 0, 0, 7826, 7827, 1, 0, 0, 0, 7827, 7829, 5, 454, 0, 0, 7828, 7830, 3, 932, 466, 0, 7829, 7828, 1, 0, 0, 0, 7829, 7830, 1, 0, 0, 0, 7830, 841, 1, 0, 0, 0, 7831, 7832, 5, 18, 0, 0, 7832, 7833, 3, 932, 466, 0, 7833, 7834, 5, 19, 0, 0, 7834, 843, 1, 0, 0, 0, 7835, 7882, 3, 932, 466, 0, 7836, 7837, 5, 496, 0, 0, 7837, 7840, 5, 62, 0, 0, 7838, 7841, 5, 28, 0, 0, 7839, 7841, 3, 822, 411, 0, 7840, 7838, 1, 0, 0, 0, 7840, 7839, 1, 0, 0, 0, 7841, 7883, 1, 0, 0, 0, 7842, 7844, 5, 497, 0, 0, 7843, 7842, 1, 0, 0, 0, 7843, 7844, 1, 0, 0, 0, 7844, 7845, 1, 0, 0, 0, 7845, 7847, 3, 654, 327, 0, 7846, 7848, 3, 98, 49, 0, 7847, 7846, 1, 0, 0, 0, 7847, 7848, 1, 0, 0, 0, 7848, 7851, 1, 0, 0, 0, 7849, 7850, 5, 77, 0, 0, 7850, 7852, 5, 78, 0, 0, 7851, 7849, 1, 0, 0, 0, 7851, 7852, 1, 0, 0, 0, 7852, 7858, 1, 0, 0, 0, 7853, 7856, 3, 848, 424, 0, 7854, 7856, 5, 53, 0, 0, 7855, 7853, 1, 0, 0, 0, 7855, 7854, 1, 0, 0, 0, 7856, 7857, 1, 0, 0, 0, 7857, 7859, 3, 934, 467, 0, 7858, 7855, 1, 0, 0, 0, 7858, 7859, 1, 0, 0, 0, 7859, 7883, 1, 0, 0, 0, 7860, 7862, 5, 269, 0, 0, 7861, 7860, 1, 0, 0, 0, 7861, 7862, 1, 0, 0, 0, 7862, 7863, 1, 0, 0, 0, 7863, 7865, 5, 324, 0, 0, 7864, 7861, 1, 0, 0, 0, 7864, 7865, 1, 0, 0, 0, 7865, 7866, 1, 0, 0, 0, 7866, 7878, 5, 172, 0, 0, 7867, 7868, 5, 2, 0, 0, 7868, 7873, 3, 846, 423, 0, 7869, 7870, 5, 6, 0, 0, 7870, 7872, 3, 846, 423, 0, 7871, 7869, 1, 0, 0, 0, 7872, 7875, 1, 0, 0, 0, 7873, 7871, 1, 0, 0, 0, 7873, 7874, 1, 0, 0, 0, 7874, 7876, 1, 0, 0, 0, 7875, 7873, 1, 0, 0, 0, 7876, 7877, 5, 3, 0, 0, 7877, 7879, 1, 0, 0, 0, 7878, 7867, 1, 0, 0, 0, 7878, 7879, 1, 0, 0, 0, 7879, 7880, 1, 0, 0, 0, 7880, 7881, 7, 112, 0, 0, 7881, 7883, 3, 560, 280, 0, 7882, 7836, 1, 0, 0, 0, 7882, 7843, 1, 0, 0, 0, 7882, 7864, 1, 0, 0, 0, 7883, 7884, 1, 0, 0, 0, 7884, 7885, 5, 7, 0, 0, 7885, 845, 1, 0, 0, 0, 7886, 7887, 3, 932, 466, 0, 7887, 7888, 3, 654, 327, 0, 7888, 847, 1, 0, 0, 0, 7889, 7890, 7, 113, 0, 0, 7890, 849, 1, 0, 0, 0, 7891, 7892, 3, 840, 420, 0, 7892, 7893, 5, 7, 0, 0, 7893, 7916, 1, 0, 0, 0, 7894, 7916, 3, 878, 439, 0, 7895, 7916, 3, 880, 440, 0, 7896, 7916, 3, 856, 428, 0, 7897, 7916, 3, 864, 432, 0, 7898, 7916, 3, 868, 434, 0, 7899, 7916, 3, 870, 435, 0, 7900, 7916, 3, 874, 437, 0, 7901, 7916, 3, 876, 438, 0, 7902, 7916, 3, 884, 442, 0, 7903, 7916, 3, 888, 444, 0, 7904, 7916, 3, 890, 445, 0, 7905, 7916, 3, 852, 426, 0, 7906, 7916, 3, 854, 427, 0, 7907, 7916, 3, 858, 429, 0, 7908, 7916, 3, 894, 447, 0, 7909, 7916, 3, 898, 449, 0, 7910, 7916, 3, 902, 451, 0, 7911, 7916, 3, 918, 459, 0, 7912, 7916, 3, 920, 460, 0, 7913, 7916, 3, 922, 461, 0, 7914, 7916, 3, 924, 462, 0, 7915, 7891, 1, 0, 0, 0, 7915, 7894, 1, 0, 0, 0, 7915, 7895, 1, 0, 0, 0, 7915, 7896, 1, 0, 0, 0, 7915, 7897, 1, 0, 0, 0, 7915, 7898, 1, 0, 0, 0, 7915, 7899, 1, 0, 0, 0, 7915, 7900, 1, 0, 0, 0, 7915, 7901, 1, 0, 0, 0, 7915, 7902, 1, 0, 0, 0, 7915, 7903, 1, 0, 0, 0, 7915, 7904, 1, 0, 0, 0, 7915, 7905, 1, 0, 0, 0, 7915, 7906, 1, 0, 0, 0, 7915, 7907, 1, 0, 0, 0, 7915, 7908, 1, 0, 0, 0, 7915, 7909, 1, 0, 0, 0, 7915, 7910, 1, 0, 0, 0, 7915, 7911, 1, 0, 0, 0, 7915, 7912, 1, 0, 0, 0, 7915, 7913, 1, 0, 0, 0, 7915, 7914, 1, 0, 0, 0, 7916, 851, 1, 0, 0, 0, 7917, 7918, 5, 498, 0, 0, 7918, 7919, 3, 934, 467, 0, 7919, 7920, 5, 7, 0, 0, 7920, 853, 1, 0, 0, 0, 7921, 7922, 5, 433, 0, 0, 7922, 7929, 3, 932, 466, 0, 7923, 7925, 5, 2, 0, 0, 7924, 7926, 3, 732, 366, 0, 7925, 7924, 1, 0, 0, 0, 7925, 7926, 1, 0, 0, 0, 7926, 7927, 1, 0, 0, 0, 7927, 7928, 5, 3, 0, 0, 7928, 7930, 5, 7, 0, 0, 7929, 7923, 1, 0, 0, 0, 7929, 7930, 1, 0, 0, 0, 7930, 7941, 1, 0, 0, 0, 7931, 7932, 5, 57, 0, 0, 7932, 7933, 3, 932, 466, 0, 7933, 7935, 5, 2, 0, 0, 7934, 7936, 3, 732, 366, 0, 7935, 7934, 1, 0, 0, 0, 7935, 7936, 1, 0, 0, 0, 7936, 7937, 1, 0, 0, 0, 7937, 7938, 5, 3, 0, 0, 7938, 7939, 5, 7, 0, 0, 7939, 7941, 1, 0, 0, 0, 7940, 7921, 1, 0, 0, 0, 7940, 7931, 1, 0, 0, 0, 7941, 855, 1, 0, 0, 0, 7942, 7943, 3, 862, 431, 0, 7943, 7944, 3, 848, 424, 0, 7944, 7945, 3, 934, 467, 0, 7945, 7946, 5, 7, 0, 0, 7946, 857, 1, 0, 0, 0, 7947, 7949, 5, 499, 0, 0, 7948, 7950, 7, 114, 0, 0, 7949, 7948, 1, 0, 0, 0, 7949, 7950, 1, 0, 0, 0, 7950, 7951, 1, 0, 0, 0, 7951, 7952, 5, 500, 0, 0, 7952, 7957, 3, 860, 430, 0, 7953, 7954, 5, 6, 0, 0, 7954, 7956, 3, 860, 430, 0, 7955, 7953, 1, 0, 0, 0, 7956, 7959, 1, 0, 0, 0, 7957, 7955, 1, 0, 0, 0, 7957, 7958, 1, 0, 0, 0, 7958, 7960, 1, 0, 0, 0, 7959, 7957, 1, 0, 0, 0, 7960, 7961, 5, 7, 0, 0, 7961, 859, 1, 0, 0, 0, 7962, 7963, 3, 862, 431, 0, 7963, 7964, 3, 848, 424, 0, 7964, 7965, 3, 822, 411, 0, 7965, 861, 1, 0, 0, 0, 7966, 7969, 3, 316, 158, 0, 7967, 7969, 5, 28, 0, 0, 7968, 7966, 1, 0, 0, 0, 7968, 7967, 1, 0, 0, 0, 7969, 7976, 1, 0, 0, 0, 7970, 7971, 5, 4, 0, 0, 7971, 7972, 3, 676, 338, 0, 7972, 7973, 5, 5, 0, 0, 7973, 7975, 1, 0, 0, 0, 7974, 7970, 1, 0, 0, 0, 7975, 7978, 1, 0, 0, 0, 7976, 7974, 1, 0, 0, 0, 7976, 7977, 1, 0, 0, 0, 7977, 863, 1, 0, 0, 0, 7978, 7976, 1, 0, 0, 0, 7979, 7980, 5, 220, 0, 0, 7980, 7981, 3, 934, 467, 0, 7981, 7985, 5, 93, 0, 0, 7982, 7984, 3, 850, 425, 0, 7983, 7982, 1, 0, 0, 0, 7984, 7987, 1, 0, 0, 0, 7985, 7983, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7999, 1, 0, 0, 0, 7987, 7985, 1, 0, 0, 0, 7988, 7989, 5, 502, 0, 0, 7989, 7990, 3, 676, 338, 0, 7990, 7994, 5, 93, 0, 0, 7991, 7993, 3, 850, 425, 0, 7992, 7991, 1, 0, 0, 0, 7993, 7996, 1, 0, 0, 0, 7994, 7992, 1, 0, 0, 0, 7994, 7995, 1, 0, 0, 0, 7995, 7998, 1, 0, 0, 0, 7996, 7994, 1, 0, 0, 0, 7997, 7988, 1, 0, 0, 0, 7998, 8001, 1, 0, 0, 0, 7999, 7997, 1, 0, 0, 0, 7999, 8000, 1, 0, 0, 0, 8000, 8003, 1, 0, 0, 0, 8001, 7999, 1, 0, 0, 0, 8002, 8004, 3, 866, 433, 0, 8003, 8002, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 8005, 1, 0, 0, 0, 8005, 8006, 5, 454, 0, 0, 8006, 8007, 5, 220, 0, 0, 8007, 8008, 5, 7, 0, 0, 8008, 865, 1, 0, 0, 0, 8009, 8013, 5, 58, 0, 0, 8010, 8012, 3, 850, 425, 0, 8011, 8010, 1, 0, 0, 0, 8012, 8015, 1, 0, 0, 0, 8013, 8011, 1, 0, 0, 0, 8013, 8014, 1, 0, 0, 0, 8014, 867, 1, 0, 0, 0, 8015, 8013, 1, 0, 0, 0, 8016, 8018, 5, 40, 0, 0, 8017, 8019, 3, 934, 467, 0, 8018, 8017, 1, 0, 0, 0, 8018, 8019, 1, 0, 0, 0, 8019, 8029, 1, 0, 0, 0, 8020, 8021, 5, 102, 0, 0, 8021, 8022, 3, 732, 366, 0, 8022, 8026, 5, 93, 0, 0, 8023, 8025, 3, 850, 425, 0, 8024, 8023, 1, 0, 0, 0, 8025, 8028, 1, 0, 0, 0, 8026, 8024, 1, 0, 0, 0, 8026, 8027, 1, 0, 0, 0, 8027, 8030, 1, 0, 0, 0, 8028, 8026, 1, 0, 0, 0, 8029, 8020, 1, 0, 0, 0, 8030, 8031, 1, 0, 0, 0, 8031, 8029, 1, 0, 0, 0, 8031, 8032, 1, 0, 0, 0, 8032, 8034, 1, 0, 0, 0, 8033, 8035, 3, 866, 433, 0, 8034, 8033, 1, 0, 0, 0, 8034, 8035, 1, 0, 0, 0, 8035, 8036, 1, 0, 0, 0, 8036, 8037, 5, 454, 0, 0, 8037, 8038, 5, 40, 0, 0, 8038, 8039, 5, 7, 0, 0, 8039, 869, 1, 0, 0, 0, 8040, 8042, 3, 842, 421, 0, 8041, 8040, 1, 0, 0, 0, 8041, 8042, 1, 0, 0, 0, 8042, 8047, 1, 0, 0, 0, 8043, 8044, 5, 503, 0, 0, 8044, 8048, 3, 676, 338, 0, 8045, 8046, 5, 62, 0, 0, 8046, 8048, 3, 872, 436, 0, 8047, 8043, 1, 0, 0, 0, 8047, 8045, 1, 0, 0, 0, 8047, 8048, 1, 0, 0, 0, 8048, 8049, 1, 0, 0, 0, 8049, 8050, 3, 886, 443, 0, 8050, 871, 1, 0, 0, 0, 8051, 8052, 3, 314, 157, 0, 8052, 8075, 5, 68, 0, 0, 8053, 8055, 3, 822, 411, 0, 8054, 8056, 3, 534, 267, 0, 8055, 8054, 1, 0, 0, 0, 8055, 8056, 1, 0, 0, 0, 8056, 8076, 1, 0, 0, 0, 8057, 8076, 3, 560, 280, 0, 8058, 8076, 3, 520, 260, 0, 8059, 8060, 5, 202, 0, 0, 8060, 8063, 3, 676, 338, 0, 8061, 8062, 5, 100, 0, 0, 8062, 8064, 3, 732, 366, 0, 8063, 8061, 1, 0, 0, 0, 8063, 8064, 1, 0, 0, 0, 8064, 8076, 1, 0, 0, 0, 8065, 8067, 5, 504, 0, 0, 8066, 8065, 1, 0, 0, 0, 8066, 8067, 1, 0, 0, 0, 8067, 8068, 1, 0, 0, 0, 8068, 8069, 3, 676, 338, 0, 8069, 8070, 5, 24, 0, 0, 8070, 8073, 3, 676, 338, 0, 8071, 8072, 5, 147, 0, 0, 8072, 8074, 3, 676, 338, 0, 8073, 8071, 1, 0, 0, 0, 8073, 8074, 1, 0, 0, 0, 8074, 8076, 1, 0, 0, 0, 8075, 8053, 1, 0, 0, 0, 8075, 8057, 1, 0, 0, 0, 8075, 8058, 1, 0, 0, 0, 8075, 8059, 1, 0, 0, 0, 8075, 8066, 1, 0, 0, 0, 8076, 873, 1, 0, 0, 0, 8077, 8079, 3, 842, 421, 0, 8078, 8077, 1, 0, 0, 0, 8078, 8079, 1, 0, 0, 0, 8079, 8080, 1, 0, 0, 0, 8080, 8081, 5, 505, 0, 0, 8081, 8084, 3, 314, 157, 0, 8082, 8083, 5, 506, 0, 0, 8083, 8085, 5, 571, 0, 0, 8084, 8082, 1, 0, 0, 0, 8084, 8085, 1, 0, 0, 0, 8085, 8086, 1, 0, 0, 0, 8086, 8087, 5, 68, 0, 0, 8087, 8088, 5, 35, 0, 0, 8088, 8089, 3, 676, 338, 0, 8089, 8090, 3, 886, 443, 0, 8090, 875, 1, 0, 0, 0, 8091, 8093, 7, 115, 0, 0, 8092, 8094, 3, 932, 466, 0, 8093, 8092, 1, 0, 0, 0, 8093, 8094, 1, 0, 0, 0, 8094, 8097, 1, 0, 0, 0, 8095, 8096, 5, 102, 0, 0, 8096, 8098, 3, 934, 467, 0, 8097, 8095, 1, 0, 0, 0, 8097, 8098, 1, 0, 0, 0, 8098, 8099, 1, 0, 0, 0, 8099, 8100, 5, 7, 0, 0, 8100, 877, 1, 0, 0, 0, 8101, 8116, 5, 508, 0, 0, 8102, 8103, 5, 268, 0, 0, 8103, 8117, 3, 934, 467, 0, 8104, 8111, 5, 509, 0, 0, 8105, 8106, 5, 202, 0, 0, 8106, 8107, 3, 676, 338, 0, 8107, 8108, 5, 100, 0, 0, 8108, 8109, 3, 732, 366, 0, 8109, 8112, 1, 0, 0, 0, 8110, 8112, 3, 560, 280, 0, 8111, 8105, 1, 0, 0, 0, 8111, 8110, 1, 0, 0, 0, 8112, 8117, 1, 0, 0, 0, 8113, 8115, 3, 934, 467, 0, 8114, 8113, 1, 0, 0, 0, 8114, 8115, 1, 0, 0, 0, 8115, 8117, 1, 0, 0, 0, 8116, 8102, 1, 0, 0, 0, 8116, 8104, 1, 0, 0, 0, 8116, 8114, 1, 0, 0, 0, 8117, 8118, 1, 0, 0, 0, 8118, 8119, 5, 7, 0, 0, 8119, 879, 1, 0, 0, 0, 8120, 8150, 5, 510, 0, 0, 8121, 8123, 7, 116, 0, 0, 8122, 8121, 1, 0, 0, 0, 8122, 8123, 1, 0, 0, 0, 8123, 8136, 1, 0, 0, 0, 8124, 8137, 3, 830, 415, 0, 8125, 8126, 5, 511, 0, 0, 8126, 8137, 3, 812, 406, 0, 8127, 8134, 3, 812, 406, 0, 8128, 8129, 5, 6, 0, 0, 8129, 8131, 3, 676, 338, 0, 8130, 8128, 1, 0, 0, 0, 8131, 8132, 1, 0, 0, 0, 8132, 8130, 1, 0, 0, 0, 8132, 8133, 1, 0, 0, 0, 8133, 8135, 1, 0, 0, 0, 8134, 8130, 1, 0, 0, 0, 8134, 8135, 1, 0, 0, 0, 8135, 8137, 1, 0, 0, 0, 8136, 8124, 1, 0, 0, 0, 8136, 8125, 1, 0, 0, 0, 8136, 8127, 1, 0, 0, 0, 8136, 8137, 1, 0, 0, 0, 8137, 8147, 1, 0, 0, 0, 8138, 8139, 5, 100, 0, 0, 8139, 8144, 3, 882, 441, 0, 8140, 8141, 5, 6, 0, 0, 8141, 8143, 3, 882, 441, 0, 8142, 8140, 1, 0, 0, 0, 8143, 8146, 1, 0, 0, 0, 8144, 8142, 1, 0, 0, 0, 8144, 8145, 1, 0, 0, 0, 8145, 8148, 1, 0, 0, 0, 8146, 8144, 1, 0, 0, 0, 8147, 8138, 1, 0, 0, 0, 8147, 8148, 1, 0, 0, 0, 8148, 8149, 1, 0, 0, 0, 8149, 8151, 5, 7, 0, 0, 8150, 8122, 1, 0, 0, 0, 8150, 8151, 1, 0, 0, 0, 8151, 881, 1, 0, 0, 0, 8152, 8153, 3, 830, 415, 0, 8153, 8154, 5, 10, 0, 0, 8154, 8155, 3, 676, 338, 0, 8155, 883, 1, 0, 0, 0, 8156, 8157, 5, 518, 0, 0, 8157, 8160, 3, 934, 467, 0, 8158, 8159, 5, 6, 0, 0, 8159, 8161, 3, 934, 467, 0, 8160, 8158, 1, 0, 0, 0, 8160, 8161, 1, 0, 0, 0, 8161, 8162, 1, 0, 0, 0, 8162, 8163, 5, 7, 0, 0, 8163, 885, 1, 0, 0, 0, 8164, 8168, 5, 519, 0, 0, 8165, 8167, 3, 850, 425, 0, 8166, 8165, 1, 0, 0, 0, 8167, 8170, 1, 0, 0, 0, 8168, 8166, 1, 0, 0, 0, 8168, 8169, 1, 0, 0, 0, 8169, 8171, 1, 0, 0, 0, 8170, 8168, 1, 0, 0, 0, 8171, 8172, 5, 454, 0, 0, 8172, 8174, 5, 519, 0, 0, 8173, 8175, 3, 932, 466, 0, 8174, 8173, 1, 0, 0, 0, 8174, 8175, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 8177, 5, 7, 0, 0, 8177, 887, 1, 0, 0, 0, 8178, 8180, 3, 4, 2, 0, 8179, 8181, 3, 892, 446, 0, 8180, 8179, 1, 0, 0, 0, 8180, 8181, 1, 0, 0, 0, 8181, 8182, 1, 0, 0, 0, 8182, 8183, 5, 7, 0, 0, 8183, 889, 1, 0, 0, 0, 8184, 8185, 5, 202, 0, 0, 8185, 8201, 3, 676, 338, 0, 8186, 8188, 3, 892, 446, 0, 8187, 8186, 1, 0, 0, 0, 8187, 8188, 1, 0, 0, 0, 8188, 8191, 1, 0, 0, 0, 8189, 8190, 5, 100, 0, 0, 8190, 8192, 3, 732, 366, 0, 8191, 8189, 1, 0, 0, 0, 8191, 8192, 1, 0, 0, 0, 8192, 8202, 1, 0, 0, 0, 8193, 8194, 5, 100, 0, 0, 8194, 8196, 3, 732, 366, 0, 8195, 8193, 1, 0, 0, 0, 8195, 8196, 1, 0, 0, 0, 8196, 8198, 1, 0, 0, 0, 8197, 8199, 3, 892, 446, 0, 8198, 8197, 1, 0, 0, 0, 8198, 8199, 1, 0, 0, 0, 8199, 8202, 1, 0, 0, 0, 8200, 8202, 1, 0, 0, 0, 8201, 8187, 1, 0, 0, 0, 8201, 8195, 1, 0, 0, 0, 8201, 8200, 1, 0, 0, 0, 8202, 8203, 1, 0, 0, 0, 8203, 8204, 5, 7, 0, 0, 8204, 891, 1, 0, 0, 0, 8205, 8207, 5, 71, 0, 0, 8206, 8208, 5, 346, 0, 0, 8207, 8206, 1, 0, 0, 0, 8207, 8208, 1, 0, 0, 0, 8208, 8209, 1, 0, 0, 0, 8209, 8210, 3, 732, 366, 0, 8210, 893, 1, 0, 0, 0, 8211, 8243, 5, 520, 0, 0, 8212, 8217, 3, 926, 463, 0, 8213, 8215, 5, 269, 0, 0, 8214, 8213, 1, 0, 0, 0, 8214, 8215, 1, 0, 0, 0, 8215, 8216, 1, 0, 0, 0, 8216, 8218, 5, 324, 0, 0, 8217, 8214, 1, 0, 0, 0, 8217, 8218, 1, 0, 0, 0, 8218, 8219, 1, 0, 0, 0, 8219, 8227, 5, 62, 0, 0, 8220, 8228, 3, 560, 280, 0, 8221, 8222, 5, 202, 0, 0, 8222, 8225, 3, 934, 467, 0, 8223, 8224, 5, 100, 0, 0, 8224, 8226, 3, 732, 366, 0, 8225, 8223, 1, 0, 0, 0, 8225, 8226, 1, 0, 0, 0, 8226, 8228, 1, 0, 0, 0, 8227, 8220, 1, 0, 0, 0, 8227, 8221, 1, 0, 0, 0, 8228, 8244, 1, 0, 0, 0, 8229, 8241, 3, 822, 411, 0, 8230, 8231, 5, 2, 0, 0, 8231, 8236, 3, 896, 448, 0, 8232, 8233, 5, 6, 0, 0, 8233, 8235, 3, 896, 448, 0, 8234, 8232, 1, 0, 0, 0, 8235, 8238, 1, 0, 0, 0, 8236, 8234, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8239, 1, 0, 0, 0, 8238, 8236, 1, 0, 0, 0, 8239, 8240, 5, 3, 0, 0, 8240, 8242, 1, 0, 0, 0, 8241, 8230, 1, 0, 0, 0, 8241, 8242, 1, 0, 0, 0, 8242, 8244, 1, 0, 0, 0, 8243, 8212, 1, 0, 0, 0, 8243, 8229, 1, 0, 0, 0, 8244, 8245, 1, 0, 0, 0, 8245, 8246, 5, 7, 0, 0, 8246, 895, 1, 0, 0, 0, 8247, 8248, 3, 822, 411, 0, 8248, 8249, 5, 20, 0, 0, 8249, 8251, 1, 0, 0, 0, 8250, 8247, 1, 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 8252, 1, 0, 0, 0, 8252, 8253, 3, 676, 338, 0, 8253, 897, 1, 0, 0, 0, 8254, 8256, 5, 61, 0, 0, 8255, 8257, 3, 900, 450, 0, 8256, 8255, 1, 0, 0, 0, 8256, 8257, 1, 0, 0, 0, 8257, 8259, 1, 0, 0, 0, 8258, 8260, 3, 332, 166, 0, 8259, 8258, 1, 0, 0, 0, 8259, 8260, 1, 0, 0, 0, 8260, 8261, 1, 0, 0, 0, 8261, 8262, 3, 926, 463, 0, 8262, 8263, 5, 71, 0, 0, 8263, 8264, 3, 732, 366, 0, 8264, 8265, 5, 7, 0, 0, 8265, 899, 1, 0, 0, 0, 8266, 8281, 5, 268, 0, 0, 8267, 8281, 5, 293, 0, 0, 8268, 8281, 5, 207, 0, 0, 8269, 8281, 5, 249, 0, 0, 8270, 8272, 7, 50, 0, 0, 8271, 8270, 1, 0, 0, 0, 8271, 8272, 1, 0, 0, 0, 8272, 8273, 1, 0, 0, 0, 8273, 8281, 3, 676, 338, 0, 8274, 8281, 5, 30, 0, 0, 8275, 8278, 7, 117, 0, 0, 8276, 8279, 3, 676, 338, 0, 8277, 8279, 5, 30, 0, 0, 8278, 8276, 1, 0, 0, 0, 8278, 8277, 1, 0, 0, 0, 8278, 8279, 1, 0, 0, 0, 8279, 8281, 1, 0, 0, 0, 8280, 8266, 1, 0, 0, 0, 8280, 8267, 1, 0, 0, 0, 8280, 8268, 1, 0, 0, 0, 8280, 8269, 1, 0, 0, 0, 8280, 8271, 1, 0, 0, 0, 8280, 8274, 1, 0, 0, 0, 8280, 8275, 1, 0, 0, 0, 8281, 901, 1, 0, 0, 0, 8282, 8284, 5, 265, 0, 0, 8283, 8285, 3, 900, 450, 0, 8284, 8283, 1, 0, 0, 0, 8284, 8285, 1, 0, 0, 0, 8285, 8286, 1, 0, 0, 0, 8286, 8287, 3, 926, 463, 0, 8287, 8288, 5, 7, 0, 0, 8288, 903, 1, 0, 0, 0, 8289, 8291, 3, 572, 286, 0, 8290, 8289, 1, 0, 0, 0, 8290, 8291, 1, 0, 0, 0, 8291, 8292, 1, 0, 0, 0, 8292, 8293, 5, 525, 0, 0, 8293, 8295, 5, 71, 0, 0, 8294, 8296, 5, 81, 0, 0, 8295, 8294, 1, 0, 0, 0, 8295, 8296, 1, 0, 0, 0, 8296, 8297, 1, 0, 0, 0, 8297, 8299, 3, 778, 389, 0, 8298, 8300, 5, 9, 0, 0, 8299, 8298, 1, 0, 0, 0, 8299, 8300, 1, 0, 0, 0, 8300, 8305, 1, 0, 0, 0, 8301, 8303, 5, 36, 0, 0, 8302, 8301, 1, 0, 0, 0, 8302, 8303, 1, 0, 0, 0, 8303, 8304, 1, 0, 0, 0, 8304, 8306, 3, 822, 411, 0, 8305, 8302, 1, 0, 0, 0, 8305, 8306, 1, 0, 0, 0, 8306, 8307, 1, 0, 0, 0, 8307, 8308, 5, 100, 0, 0, 8308, 8309, 3, 906, 453, 0, 8309, 8310, 5, 80, 0, 0, 8310, 8312, 3, 676, 338, 0, 8311, 8313, 3, 908, 454, 0, 8312, 8311, 1, 0, 0, 0, 8313, 8314, 1, 0, 0, 0, 8314, 8312, 1, 0, 0, 0, 8314, 8315, 1, 0, 0, 0, 8315, 905, 1, 0, 0, 0, 8316, 8318, 5, 81, 0, 0, 8317, 8316, 1, 0, 0, 0, 8317, 8318, 1, 0, 0, 0, 8318, 8319, 1, 0, 0, 0, 8319, 8321, 3, 778, 389, 0, 8320, 8322, 5, 9, 0, 0, 8321, 8320, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 8328, 1, 0, 0, 0, 8323, 8326, 3, 564, 282, 0, 8324, 8326, 3, 608, 304, 0, 8325, 8323, 1, 0, 0, 0, 8325, 8324, 1, 0, 0, 0, 8326, 8328, 1, 0, 0, 0, 8327, 8317, 1, 0, 0, 0, 8327, 8325, 1, 0, 0, 0, 8328, 8333, 1, 0, 0, 0, 8329, 8331, 5, 36, 0, 0, 8330, 8329, 1, 0, 0, 0, 8330, 8331, 1, 0, 0, 0, 8331, 8332, 1, 0, 0, 0, 8332, 8334, 3, 822, 411, 0, 8333, 8330, 1, 0, 0, 0, 8333, 8334, 1, 0, 0, 0, 8334, 907, 1, 0, 0, 0, 8335, 8336, 5, 102, 0, 0, 8336, 8339, 5, 526, 0, 0, 8337, 8338, 5, 33, 0, 0, 8338, 8340, 3, 676, 338, 0, 8339, 8337, 1, 0, 0, 0, 8339, 8340, 1, 0, 0, 0, 8340, 8341, 1, 0, 0, 0, 8341, 8346, 5, 93, 0, 0, 8342, 8347, 3, 912, 456, 0, 8343, 8347, 5, 182, 0, 0, 8344, 8345, 5, 57, 0, 0, 8345, 8347, 5, 270, 0, 0, 8346, 8342, 1, 0, 0, 0, 8346, 8343, 1, 0, 0, 0, 8346, 8344, 1, 0, 0, 0, 8347, 8362, 1, 0, 0, 0, 8348, 8349, 5, 102, 0, 0, 8349, 8350, 5, 77, 0, 0, 8350, 8353, 5, 526, 0, 0, 8351, 8352, 5, 33, 0, 0, 8352, 8354, 3, 676, 338, 0, 8353, 8351, 1, 0, 0, 0, 8353, 8354, 1, 0, 0, 0, 8354, 8355, 1, 0, 0, 0, 8355, 8359, 5, 93, 0, 0, 8356, 8360, 3, 910, 455, 0, 8357, 8358, 5, 57, 0, 0, 8358, 8360, 5, 270, 0, 0, 8359, 8356, 1, 0, 0, 0, 8359, 8357, 1, 0, 0, 0, 8360, 8362, 1, 0, 0, 0, 8361, 8335, 1, 0, 0, 0, 8361, 8348, 1, 0, 0, 0, 8362, 909, 1, 0, 0, 0, 8363, 8365, 5, 241, 0, 0, 8364, 8366, 3, 144, 72, 0, 8365, 8364, 1, 0, 0, 0, 8365, 8366, 1, 0, 0, 0, 8366, 8370, 1, 0, 0, 0, 8367, 8368, 5, 463, 0, 0, 8368, 8369, 7, 76, 0, 0, 8369, 8371, 5, 450, 0, 0, 8370, 8367, 1, 0, 0, 0, 8370, 8371, 1, 0, 0, 0, 8371, 8372, 1, 0, 0, 0, 8372, 8373, 3, 914, 457, 0, 8373, 911, 1, 0, 0, 0, 8374, 8375, 5, 369, 0, 0, 8375, 8393, 5, 333, 0, 0, 8376, 8377, 3, 804, 402, 0, 8377, 8378, 5, 10, 0, 0, 8378, 8379, 3, 916, 458, 0, 8379, 8394, 1, 0, 0, 0, 8380, 8381, 3, 144, 72, 0, 8381, 8382, 5, 10, 0, 0, 8382, 8383, 5, 2, 0, 0, 8383, 8388, 3, 916, 458, 0, 8384, 8385, 5, 6, 0, 0, 8385, 8387, 3, 916, 458, 0, 8386, 8384, 1, 0, 0, 0, 8387, 8390, 1, 0, 0, 0, 8388, 8386, 1, 0, 0, 0, 8388, 8389, 1, 0, 0, 0, 8389, 8391, 1, 0, 0, 0, 8390, 8388, 1, 0, 0, 0, 8391, 8392, 5, 3, 0, 0, 8392, 8394, 1, 0, 0, 0, 8393, 8376, 1, 0, 0, 0, 8393, 8380, 1, 0, 0, 0, 8394, 8395, 1, 0, 0, 0, 8395, 8393, 1, 0, 0, 0, 8395, 8396, 1, 0, 0, 0, 8396, 913, 1, 0, 0, 0, 8397, 8398, 5, 422, 0, 0, 8398, 8399, 5, 2, 0, 0, 8399, 8404, 3, 916, 458, 0, 8400, 8401, 5, 6, 0, 0, 8401, 8403, 3, 916, 458, 0, 8402, 8400, 1, 0, 0, 0, 8403, 8406, 1, 0, 0, 0, 8404, 8402, 1, 0, 0, 0, 8404, 8405, 1, 0, 0, 0, 8405, 8407, 1, 0, 0, 0, 8406, 8404, 1, 0, 0, 0, 8407, 8408, 5, 3, 0, 0, 8408, 8412, 1, 0, 0, 0, 8409, 8410, 5, 53, 0, 0, 8410, 8412, 5, 422, 0, 0, 8411, 8397, 1, 0, 0, 0, 8411, 8409, 1, 0, 0, 0, 8412, 915, 1, 0, 0, 0, 8413, 8416, 3, 588, 294, 0, 8414, 8416, 5, 53, 0, 0, 8415, 8413, 1, 0, 0, 0, 8415, 8414, 1, 0, 0, 0, 8416, 917, 1, 0, 0, 0, 8417, 8418, 5, 157, 0, 0, 8418, 8419, 3, 926, 463, 0, 8419, 8420, 5, 7, 0, 0, 8420, 919, 1, 0, 0, 0, 8421, 8422, 5, 78, 0, 0, 8422, 8423, 5, 7, 0, 0, 8423, 921, 1, 0, 0, 0, 8424, 8430, 7, 67, 0, 0, 8425, 8427, 5, 33, 0, 0, 8426, 8428, 5, 269, 0, 0, 8427, 8426, 1, 0, 0, 0, 8427, 8428, 1, 0, 0, 0, 8428, 8429, 1, 0, 0, 0, 8429, 8431, 5, 153, 0, 0, 8430, 8425, 1, 0, 0, 0, 8430, 8431, 1, 0, 0, 0, 8431, 8432, 1, 0, 0, 0, 8432, 8433, 5, 7, 0, 0, 8433, 923, 1, 0, 0, 0, 8434, 8435, 5, 333, 0, 0, 8435, 8436, 3, 316, 158, 0, 8436, 8437, 5, 94, 0, 0, 8437, 8438, 5, 53, 0, 0, 8438, 8439, 5, 7, 0, 0, 8439, 8447, 1, 0, 0, 0, 8440, 8443, 5, 313, 0, 0, 8441, 8444, 3, 316, 158, 0, 8442, 8444, 5, 30, 0, 0, 8443, 8441, 1, 0, 0, 0, 8443, 8442, 1, 0, 0, 0, 8444, 8445, 1, 0, 0, 0, 8445, 8447, 5, 7, 0, 0, 8446, 8434, 1, 0, 0, 0, 8446, 8440, 1, 0, 0, 0, 8447, 925, 1, 0, 0, 0, 8448, 8451, 3, 822, 411, 0, 8449, 8451, 5, 28, 0, 0, 8450, 8448, 1, 0, 0, 0, 8450, 8449, 1, 0, 0, 0, 8451, 927, 1, 0, 0, 0, 8452, 8469, 5, 517, 0, 0, 8453, 8454, 5, 102, 0, 0, 8454, 8459, 3, 930, 465, 0, 8455, 8456, 5, 82, 0, 0, 8456, 8458, 3, 930, 465, 0, 8457, 8455, 1, 0, 0, 0, 8458, 8461, 1, 0, 0, 0, 8459, 8457, 1, 0, 0, 0, 8459, 8460, 1, 0, 0, 0, 8460, 8462, 1, 0, 0, 0, 8461, 8459, 1, 0, 0, 0, 8462, 8466, 5, 93, 0, 0, 8463, 8465, 3, 850, 425, 0, 8464, 8463, 1, 0, 0, 0, 8465, 8468, 1, 0, 0, 0, 8466, 8464, 1, 0, 0, 0, 8466, 8467, 1, 0, 0, 0, 8467, 8470, 1, 0, 0, 0, 8468, 8466, 1, 0, 0, 0, 8469, 8453, 1, 0, 0, 0, 8470, 8471, 1, 0, 0, 0, 8471, 8469, 1, 0, 0, 0, 8471, 8472, 1, 0, 0, 0, 8472, 929, 1, 0, 0, 0, 8473, 8477, 3, 932, 466, 0, 8474, 8475, 5, 511, 0, 0, 8475, 8477, 3, 812, 406, 0, 8476, 8473, 1, 0, 0, 0, 8476, 8474, 1, 0, 0, 0, 8477, 931, 1, 0, 0, 0, 8478, 8481, 3, 822, 411, 0, 8479, 8481, 3, 832, 416, 0, 8480, 8478, 1, 0, 0, 0, 8480, 8479, 1, 0, 0, 0, 8481, 933, 1, 0, 0, 0, 8482, 8484, 3, 758, 379, 0, 8483, 8482, 1, 0, 0, 0, 8483, 8484, 1, 0, 0, 0, 8484, 8486, 1, 0, 0, 0, 8485, 8487, 3, 580, 290, 0, 8486, 8485, 1, 0, 0, 0, 8486, 8487, 1, 0, 0, 0, 8487, 8489, 1, 0, 0, 0, 8488, 8490, 3, 610, 305, 0, 8489, 8488, 1, 0, 0, 0, 8489, 8490, 1, 0, 0, 0, 8490, 8492, 1, 0, 0, 0, 8491, 8493, 3, 640, 320, 0, 8492, 8491, 1, 0, 0, 0, 8492, 8493, 1, 0, 0, 0, 8493, 8495, 1, 0, 0, 0, 8494, 8496, 3, 600, 300, 0, 8495, 8494, 1, 0, 0, 0, 8495, 8496, 1, 0, 0, 0, 8496, 8499, 1, 0, 0, 0, 8497, 8498, 5, 67, 0, 0, 8498, 8500, 3, 676, 338, 0, 8499, 8497, 1, 0, 0, 0, 8499, 8500, 1, 0, 0, 0, 8500, 8502, 1, 0, 0, 0, 8501, 8503, 3, 704, 352, 0, 8502, 8501, 1, 0, 0, 0, 8502, 8503, 1, 0, 0, 0, 8503, 935, 1, 0, 0, 0, 1189, 939, 946, 1066, 1068, 1077, 1082, 1088, 1123, 1133, 1139, 1144, 1151, 1156, 1163, 1174, 1182, 1186, 1198, 1204, 1210, 1214, 1219, 1223, 1236, 1246, 1248, 1254, 1259, 1272, 1275, 1280, 1285, 1296, 1300, 1312, 1316, 1319, 1323, 1335, 1353, 1360, 1368, 1373, 1380, 1388, 1394, 1402, 1410, 1414, 1428, 1433, 1438, 1450, 1456, 1468, 1473, 1483, 1489, 1494, 1502, 1507, 1514, 1519, 1524, 1534, 1539, 1544, 1551, 1555, 1569, 1575, 1581, 1586, 1593, 1605, 1613, 1621, 1637, 1646, 1655, 1664, 1668, 1680, 1688, 1698, 1718, 1723, 1726, 1733, 1736, 1740, 1744, 1747, 1752, 1757, 1761, 1770, 1776, 1780, 1789, 1792, 1798, 1807, 1819, 1823, 1827, 1832, 1835, 1841, 1843, 1845, 1849, 1855, 1859, 1864, 1869, 1873, 1876, 1883, 1896, 1909, 1933, 1943, 1950, 1955, 1959, 1966, 1971, 1974, 1976, 1981, 1985, 1989, 1993, 1998, 2001, 2005, 2008, 2012, 2020, 2025, 2028, 2032, 2038, 2047, 2051, 2057, 2059, 2068, 2073, 2085, 2090, 2094, 2098, 2103, 2107, 2110, 2113, 2116, 2119, 2122, 2127, 2130, 2133, 2136, 2139, 2142, 2148, 2152, 2155, 2158, 2161, 2164, 2166, 2173, 2181, 2191, 2196, 2206, 2209, 2214, 2219, 2224, 2227, 2232, 2241, 2243, 2247, 2250, 2254, 2259, 2264, 2268, 2271, 2275, 2278, 2283, 2286, 2291, 2294, 2298, 2301, 2304, 2309, 2312, 2320, 2332, 2336, 2343, 2348, 2351, 2354, 2357, 2362, 2373, 2379, 2383, 2386, 2389, 2394, 2401, 2404, 2408, 2416, 2421, 2424, 2427, 2434, 2439, 2448, 2451, 2454, 2459, 2462, 2474, 2484, 2501, 2505, 2509, 2511, 2528, 2530, 2546, 2557, 2560, 2563, 2572, 2581, 2597, 2600, 2603, 2611, 2615, 2622, 2631, 2635, 2641, 2645, 2648, 2651, 2654, 2657, 2663, 2667, 2672, 2676, 2679, 2682, 2685, 2690, 2696, 2700, 2704, 2708, 2714, 2716, 2721, 2727, 2733, 2737, 2752, 2757, 2760, 2762, 2765, 2769, 2773, 2776, 2779, 2787, 2793, 2795, 2801, 2806, 2811, 2815, 2822, 2824, 2835, 2874, 2884, 2886, 2889, 2893, 2897, 2907, 2909, 2915, 2917, 2926, 2938, 2952, 2957, 2960, 2967, 2972, 2980, 2982, 2988, 2993, 2997, 3002, 3008, 3015, 3021, 3023, 3032, 3038, 3046, 3052, 3057, 3062, 3070, 3085, 3087, 3091, 3095, 3098, 3101, 3110, 3113, 3116, 3122, 3128, 3132, 3144, 3150, 3153, 3158, 3162, 3169, 3179, 3181, 3205, 3217, 3222, 3224, 3228, 3231, 3234, 3244, 3247, 3257, 3262, 3267, 3270, 3273, 3281, 3287, 3294, 3302, 3305, 3316, 3320, 3326, 3333, 3336, 3345, 3359, 3362, 3376, 3387, 3390, 3402, 3407, 3420, 3425, 3438, 3447, 3450, 3453, 3460, 3463, 3475, 3481, 3483, 3491, 3499, 3507, 3519, 3524, 3535, 3546, 3554, 3562, 3569, 3576, 3578, 3581, 3586, 3591, 3610, 3619, 3622, 3649, 3658, 3661, 3665, 3669, 3673, 3680, 3684, 3688, 3692, 3696, 3701, 3705, 3710, 3716, 3721, 3728, 3732, 3738, 3742, 3747, 3755, 3761, 3766, 3773, 3778, 3782, 3787, 3793, 3800, 3805, 3812, 3817, 3824, 3828, 3836, 3840, 3842, 3845, 3850, 3860, 3875, 3878, 3886, 3893, 3898, 3904, 3908, 3915, 3920, 3923, 3926, 3930, 3939, 3957, 3960, 3992, 3997, 4003, 4023, 4028, 4034, 4037, 4041, 4045, 4051, 4054, 4058, 4062, 4067, 4070, 4073, 4076, 4089, 4095, 4103, 4110, 4115, 4118, 4125, 4128, 4136, 4139, 4144, 4151, 4154, 4174, 4186, 4189, 4195, 4200, 4209, 4217, 4222, 4228, 4235, 4243, 4246, 4257, 4259, 4273, 4279, 4287, 4289, 4295, 4299, 4302, 4305, 4310, 4315, 4319, 4322, 4325, 4328, 4331, 4339, 4350, 4353, 4356, 4361, 4364, 4368, 4372, 4378, 4386, 4389, 4402, 4407, 4409, 4414, 4421, 4428, 4437, 4445, 4453, 4460, 4468, 4475, 4483, 4487, 4491, 4493, 4499, 4504, 4508, 4515, 4520, 4525, 4530, 4532, 4542, 4552, 4568, 4586, 4598, 4605, 4620, 4625, 4628, 4633, 4638, 4643, 4646, 4649, 4654, 4661, 4665, 4670, 4677, 4681, 4687, 4696, 4705, 4717, 4719, 4732, 4738, 4742, 4744, 4751, 4764, 4771, 4773, 4789, 4793, 4797, 4802, 4807, 4812, 4817, 4820, 4832, 4885, 4894, 4898, 4907, 4911, 4920, 4924, 4929, 4932, 4936, 4941, 4943, 4952, 4957, 4968, 4972, 4986, 4994, 5032, 5034, 5053, 5056, 5083, 5087, 5091, 5095, 5099, 5102, 5117, 5124, 5138, 5151, 5176, 5195, 5210, 5226, 5233, 5244, 5247, 5266, 5269, 5282, 5286, 5306, 5318, 5322, 5344, 5348, 5358, 5362, 5368, 5372, 5376, 5380, 5387, 5392, 5403, 5407, 5410, 5415, 5421, 5432, 5436, 5439, 5443, 5447, 5450, 5460, 5463, 5467, 5472, 5478, 5481, 5486, 5489, 5496, 5498, 5504, 5508, 5517, 5522, 5524, 5534, 5537, 5542, 5550, 5553, 5558, 5560, 5562, 5568, 5585, 5591, 5604, 5610, 5614, 5619, 5649, 5664, 5669, 5673, 5686, 5690, 5692, 5701, 5707, 5709, 5713, 5716, 5719, 5722, 5725, 5727, 5730, 5734, 5742, 5747, 5750, 5756, 5760, 5764, 5769, 5771, 5775, 5779, 5786, 5792, 5796, 5798, 5800, 5813, 5821, 5829, 5840, 5849, 5854, 5858, 5862, 5869, 5872, 5874, 5882, 5886, 5889, 5896, 5903, 5908, 5915, 5918, 5920, 5923, 5929, 5934, 5938, 5945, 5955, 5962, 5965, 5968, 5972, 5983, 5986, 5989, 5992, 5995, 6002, 6005, 6008, 6015, 6027, 6034, 6036, 6041, 6046, 6048, 6054, 6061, 6066, 6071, 6075, 6079, 6083, 6085, 6089, 6093, 6096, 6099, 6101, 6111, 6113, 6118, 6122, 6127, 6131, 6138, 6143, 6147, 6150, 6156, 6159, 6178, 6185, 6189, 6192, 6196, 6200, 6203, 6206, 6211, 6220, 6227, 6231, 6235, 6239, 6242, 6244, 6249, 6253, 6258, 6264, 6271, 6276, 6281, 6290, 6297, 6305, 6316, 6321, 6325, 6328, 6332, 6337, 6341, 6346, 6354, 6365, 6370, 6374, 6377, 6380, 6382, 6385, 6388, 6391, 6401, 6406, 6412, 6416, 6418, 6425, 6430, 6436, 6438, 6443, 6447, 6451, 6453, 6456, 6463, 6468, 6471, 6477, 6481, 6487, 6496, 6502, 6504, 6509, 6512, 6521, 6528, 6530, 6537, 6542, 6545, 6555, 6566, 6571, 6575, 6583, 6593, 6600, 6606, 6617, 6623, 6633, 6642, 6646, 6649, 6651, 6653, 6657, 6665, 6668, 6673, 6678, 6685, 6687, 6693, 6697, 6700, 6705, 6708, 6710, 6716, 6725, 6731, 6734, 6742, 6745, 6749, 6755, 6757, 6760, 6764, 6769, 6776, 6783, 6785, 6791, 6793, 6798, 6800, 6804, 6813, 6817, 6825, 6827, 6841, 6844, 6852, 6861, 6867, 6872, 6880, 6882, 6887, 6891, 6896, 6901, 6907, 6923, 6925, 6934, 6949, 6954, 6957, 6963, 6968, 6981, 6986, 6990, 6997, 7016, 7028, 7033, 7041, 7043, 7045, 7054, 7057, 7062, 7067, 7070, 7081, 7089, 7094, 7096, 7099, 7103, 7114, 7135, 7143, 7156, 7166, 7172, 7178, 7181, 7184, 7210, 7212, 7233, 7243, 7256, 7261, 7265, 7267, 7279, 7286, 7292, 7298, 7302, 7313, 7323, 7327, 7332, 7335, 7338, 7347, 7358, 7360, 7364, 7369, 7378, 7383, 7391, 7401, 7409, 7413, 7416, 7423, 7431, 7435, 7442, 7450, 7452, 7461, 7464, 7476, 7485, 7492, 7501, 7511, 7516, 7520, 7522, 7525, 7530, 7535, 7543, 7549, 7553, 7555, 7562, 7572, 7580, 7588, 7596, 7613, 7620, 7628, 7645, 7651, 7657, 7665, 7671, 7676, 7684, 7689, 7692, 7701, 7708, 7713, 7717, 7722, 7728, 7733, 7741, 7796, 7803, 7809, 7811, 7813, 7815, 7821, 7825, 7829, 7840, 7843, 7847, 7851, 7855, 7858, 7861, 7864, 7873, 7878, 7882, 7915, 7925, 7929, 7935, 7940, 7949, 7957, 7968, 7976, 7985, 7994, 7999, 8003, 8013, 8018, 8026, 8031, 8034, 8041, 8047, 8055, 8063, 8066, 8073, 8075, 8078, 8084, 8093, 8097, 8111, 8114, 8116, 8122, 8132, 8134, 8136, 8144, 8147, 8150, 8160, 8168, 8174, 8180, 8187, 8191, 8195, 8198, 8201, 8207, 8214, 8217, 8225, 8227, 8236, 8241, 8243, 8250, 8256, 8259, 8271, 8278, 8280, 8284, 8290, 8295, 8299, 8302, 8305, 8314, 8317, 8321, 8325, 8327, 8330, 8333, 8339, 8346, 8353, 8359, 8361, 8365, 8370, 8388, 8393, 8395, 8404, 8411, 8415, 8427, 8430, 8443, 8446, 8450, 8459, 8466, 8471, 8476, 8480, 8483, 8486, 8489, 8492, 8495, 8499, 8502] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlParser.ts b/src/lib/postgresql/PostgreSqlParser.ts index 5dc0570b5..d1c638c51 100644 --- a/src/lib/postgresql/PostgreSqlParser.ts +++ b/src/lib/postgresql/PostgreSqlParser.ts @@ -915,164 +915,166 @@ export class PostgreSqlParser extends SQLParserBase { public static readonly RULE_from_clause = 305; public static readonly RULE_from_list = 306; public static readonly RULE_table_ref = 307; - public static readonly RULE_alias_clause = 308; - public static readonly RULE_func_alias_clause = 309; - public static readonly RULE_join_type = 310; - public static readonly RULE_join_qual = 311; - public static readonly RULE_relation_expr = 312; - public static readonly RULE_publication_relation_expr = 313; - public static readonly RULE_relation_expr_list = 314; - public static readonly RULE_relation_expr_opt_alias = 315; - public static readonly RULE_tablesample_clause = 316; - public static readonly RULE_func_table = 317; - public static readonly RULE_rowsfrom_item = 318; - public static readonly RULE_where_clause = 319; - public static readonly RULE_where_or_current_clause = 320; - public static readonly RULE_tablefuncelementlist = 321; - public static readonly RULE_tablefuncelement = 322; - public static readonly RULE_xmltable = 323; - public static readonly RULE_xmltable_column_el = 324; - public static readonly RULE_xml_namespace_el = 325; - public static readonly RULE_typename = 326; - public static readonly RULE_simpletypename = 327; - public static readonly RULE_consttypename = 328; - public static readonly RULE_numeric = 329; - public static readonly RULE_opt_float = 330; - public static readonly RULE_bit = 331; - public static readonly RULE_character = 332; - public static readonly RULE_constdatetime = 333; - public static readonly RULE_opt_interval = 334; - public static readonly RULE_interval_second = 335; - public static readonly RULE_comparisonOperator = 336; - public static readonly RULE_expression = 337; - public static readonly RULE_booleanExpression = 338; - public static readonly RULE_predicate = 339; - public static readonly RULE_valueExpression = 340; - public static readonly RULE_primaryExpression = 341; - public static readonly RULE_func_application = 342; - public static readonly RULE_func_expr = 343; - public static readonly RULE_func_expr_windowless = 344; - public static readonly RULE_func_expr_common_subexpr = 345; - public static readonly RULE_xml_attribute_list = 346; - public static readonly RULE_xml_attribute_el = 347; - public static readonly RULE_document_or_content = 348; - public static readonly RULE_xmlexists_argument = 349; - public static readonly RULE_xml_passing_mech = 350; - public static readonly RULE_window_clause = 351; - public static readonly RULE_window_definition = 352; - public static readonly RULE_over_clause = 353; - public static readonly RULE_window_specification = 354; - public static readonly RULE_opt_frame_clause = 355; - public static readonly RULE_frame_bound = 356; - public static readonly RULE_row = 357; - public static readonly RULE_explicit_row = 358; - public static readonly RULE_sub_type = 359; - public static readonly RULE_all_op = 360; - public static readonly RULE_mathop = 361; - public static readonly RULE_qual_op = 362; - public static readonly RULE_qual_all_op = 363; - public static readonly RULE_subquery_Op = 364; - public static readonly RULE_expr_list = 365; - public static readonly RULE_column_expr = 366; - public static readonly RULE_column_expr_noparen = 367; - public static readonly RULE_func_arg_list = 368; - public static readonly RULE_func_arg_expr = 369; - public static readonly RULE_array_expr = 370; - public static readonly RULE_extract_arg = 371; - public static readonly RULE_unicode_normal_form = 372; - public static readonly RULE_substr_list = 373; - public static readonly RULE_when_clause = 374; - public static readonly RULE_indirection_el = 375; - public static readonly RULE_indirection = 376; - public static readonly RULE_opt_indirection = 377; - public static readonly RULE_target_list = 378; - public static readonly RULE_target_el = 379; - public static readonly RULE_qualified_name_list = 380; - public static readonly RULE_table_name_list = 381; - public static readonly RULE_schema_name_list = 382; - public static readonly RULE_database_nameList = 383; - public static readonly RULE_tablespace_name_create = 384; - public static readonly RULE_tablespace_name = 385; - public static readonly RULE_table_name_create = 386; - public static readonly RULE_table_name = 387; - public static readonly RULE_view_name_create = 388; - public static readonly RULE_view_name = 389; - public static readonly RULE_qualified_name = 390; - public static readonly RULE_tablespace_name_list = 391; - public static readonly RULE_name_list = 392; - public static readonly RULE_database_name_create = 393; - public static readonly RULE_database_name = 394; - public static readonly RULE_schema_name = 395; - public static readonly RULE_routine_name_create = 396; - public static readonly RULE_routine_name = 397; - public static readonly RULE_procedure_name = 398; - public static readonly RULE_procedure_name_create = 399; - public static readonly RULE_column_name = 400; - public static readonly RULE_column_name_create = 401; - public static readonly RULE_function_name_create = 402; - public static readonly RULE_function_name = 403; - public static readonly RULE_sconst = 404; - public static readonly RULE_anysconst = 405; - public static readonly RULE_signediconst = 406; - public static readonly RULE_rolespec = 407; - public static readonly RULE_role_list = 408; - public static readonly RULE_colid = 409; - public static readonly RULE_type_function_name = 410; - public static readonly RULE_nonreservedword = 411; - public static readonly RULE_collabel = 412; - public static readonly RULE_identifier = 413; - public static readonly RULE_unreserved_keyword = 414; - public static readonly RULE_col_name_keyword = 415; - public static readonly RULE_type_func_name_keyword = 416; - public static readonly RULE_reserved_keyword = 417; - public static readonly RULE_pl_block = 418; - public static readonly RULE_label_decl = 419; - public static readonly RULE_decl_statement = 420; - public static readonly RULE_decl_cursor_arg = 421; - public static readonly RULE_assign_operator = 422; - public static readonly RULE_proc_stmt = 423; - public static readonly RULE_stmt_perform = 424; - public static readonly RULE_stmt_call = 425; - public static readonly RULE_stmt_assign = 426; - public static readonly RULE_stmt_getdiag = 427; - public static readonly RULE_getdiag_list_item = 428; - public static readonly RULE_assign_var = 429; - public static readonly RULE_stmt_if = 430; - public static readonly RULE_stmt_else = 431; - public static readonly RULE_stmt_case = 432; - public static readonly RULE_stmt_loop_while_for = 433; - public static readonly RULE_for_control = 434; - public static readonly RULE_stmt_foreach_a = 435; - public static readonly RULE_stmt_exit = 436; - public static readonly RULE_stmt_return = 437; - public static readonly RULE_stmt_raise = 438; - public static readonly RULE_opt_raise_using_elem = 439; - public static readonly RULE_stmt_assert = 440; - public static readonly RULE_loop_body = 441; - public static readonly RULE_stmt_execsql = 442; - public static readonly RULE_stmt_dynexecute = 443; - public static readonly RULE_opt_execute_into = 444; - public static readonly RULE_stmt_open = 445; - public static readonly RULE_opt_open_bound_list_item = 446; - public static readonly RULE_stmt_fetch = 447; - public static readonly RULE_opt_fetch_direction = 448; - public static readonly RULE_stmt_move = 449; - public static readonly RULE_mergestmt = 450; - public static readonly RULE_data_source = 451; - public static readonly RULE_merge_when_clause = 452; - public static readonly RULE_merge_insert = 453; - public static readonly RULE_merge_update = 454; - public static readonly RULE_default_values_or_values = 455; - public static readonly RULE_exprofdefault = 456; - public static readonly RULE_stmt_close = 457; - public static readonly RULE_stmt_null = 458; - public static readonly RULE_stmt_commit_or_rollback = 459; - public static readonly RULE_stmt_set = 460; - public static readonly RULE_cursor_variable = 461; - public static readonly RULE_exception_sect = 462; - public static readonly RULE_proc_condition = 463; - public static readonly RULE_any_identifier = 464; - public static readonly RULE_sql_expression = 465; + public static readonly RULE_expressionTable = 308; + public static readonly RULE_alias_clause = 309; + public static readonly RULE_func_alias_clause = 310; + public static readonly RULE_join_type = 311; + public static readonly RULE_join_qual = 312; + public static readonly RULE_relation_expr = 313; + public static readonly RULE_publication_relation_expr = 314; + public static readonly RULE_relation_expr_list = 315; + public static readonly RULE_relation_expr_opt_alias = 316; + public static readonly RULE_tablesample_clause = 317; + public static readonly RULE_func_table = 318; + public static readonly RULE_rowsfrom_item = 319; + public static readonly RULE_where_clause = 320; + public static readonly RULE_where_or_current_clause = 321; + public static readonly RULE_tablefuncelementlist = 322; + public static readonly RULE_tablefuncelement = 323; + public static readonly RULE_xmltable = 324; + public static readonly RULE_xmltable_column_el = 325; + public static readonly RULE_xml_namespace_el = 326; + public static readonly RULE_typename = 327; + public static readonly RULE_simpletypename = 328; + public static readonly RULE_consttypename = 329; + public static readonly RULE_numeric = 330; + public static readonly RULE_opt_float = 331; + public static readonly RULE_bit = 332; + public static readonly RULE_character = 333; + public static readonly RULE_constdatetime = 334; + public static readonly RULE_opt_interval = 335; + public static readonly RULE_interval_second = 336; + public static readonly RULE_comparisonOperator = 337; + public static readonly RULE_expression = 338; + public static readonly RULE_booleanExpression = 339; + public static readonly RULE_predicate = 340; + public static readonly RULE_valueExpression = 341; + public static readonly RULE_primaryExpression = 342; + public static readonly RULE_func_application = 343; + public static readonly RULE_func_expr = 344; + public static readonly RULE_func_expr_windowless = 345; + public static readonly RULE_func_expr_common_subexpr = 346; + public static readonly RULE_xml_attribute_list = 347; + public static readonly RULE_xml_attribute_el = 348; + public static readonly RULE_document_or_content = 349; + public static readonly RULE_xmlexists_argument = 350; + public static readonly RULE_xml_passing_mech = 351; + public static readonly RULE_window_clause = 352; + public static readonly RULE_window_definition = 353; + public static readonly RULE_over_clause = 354; + public static readonly RULE_window_specification = 355; + public static readonly RULE_opt_frame_clause = 356; + public static readonly RULE_frame_bound = 357; + public static readonly RULE_row = 358; + public static readonly RULE_explicit_row = 359; + public static readonly RULE_sub_type = 360; + public static readonly RULE_all_op = 361; + public static readonly RULE_mathop = 362; + public static readonly RULE_qual_op = 363; + public static readonly RULE_qual_all_op = 364; + public static readonly RULE_subquery_Op = 365; + public static readonly RULE_expr_list = 366; + public static readonly RULE_column_expr = 367; + public static readonly RULE_column_expr_noparen = 368; + public static readonly RULE_func_arg_list = 369; + public static readonly RULE_func_arg_expr = 370; + public static readonly RULE_array_expr = 371; + public static readonly RULE_extract_arg = 372; + public static readonly RULE_unicode_normal_form = 373; + public static readonly RULE_substr_list = 374; + public static readonly RULE_when_clause = 375; + public static readonly RULE_indirection_el = 376; + public static readonly RULE_indirection = 377; + public static readonly RULE_opt_indirection = 378; + public static readonly RULE_target_list = 379; + public static readonly RULE_target_el = 380; + public static readonly RULE_tableAllColumns = 381; + public static readonly RULE_qualified_name_list = 382; + public static readonly RULE_table_name_list = 383; + public static readonly RULE_schema_name_list = 384; + public static readonly RULE_database_nameList = 385; + public static readonly RULE_tablespace_name_create = 386; + public static readonly RULE_tablespace_name = 387; + public static readonly RULE_table_name_create = 388; + public static readonly RULE_table_name = 389; + public static readonly RULE_view_name_create = 390; + public static readonly RULE_view_name = 391; + public static readonly RULE_qualified_name = 392; + public static readonly RULE_tablespace_name_list = 393; + public static readonly RULE_name_list = 394; + public static readonly RULE_database_name_create = 395; + public static readonly RULE_database_name = 396; + public static readonly RULE_schema_name = 397; + public static readonly RULE_routine_name_create = 398; + public static readonly RULE_routine_name = 399; + public static readonly RULE_procedure_name = 400; + public static readonly RULE_procedure_name_create = 401; + public static readonly RULE_column_name = 402; + public static readonly RULE_column_name_create = 403; + public static readonly RULE_function_name_create = 404; + public static readonly RULE_function_name = 405; + public static readonly RULE_sconst = 406; + public static readonly RULE_anysconst = 407; + public static readonly RULE_signediconst = 408; + public static readonly RULE_rolespec = 409; + public static readonly RULE_role_list = 410; + public static readonly RULE_colid = 411; + public static readonly RULE_type_function_name = 412; + public static readonly RULE_nonreservedword = 413; + public static readonly RULE_collabel = 414; + public static readonly RULE_identifier = 415; + public static readonly RULE_unreserved_keyword = 416; + public static readonly RULE_col_name_keyword = 417; + public static readonly RULE_type_func_name_keyword = 418; + public static readonly RULE_reserved_keyword = 419; + public static readonly RULE_pl_block = 420; + public static readonly RULE_label_decl = 421; + public static readonly RULE_decl_statement = 422; + public static readonly RULE_decl_cursor_arg = 423; + public static readonly RULE_assign_operator = 424; + public static readonly RULE_proc_stmt = 425; + public static readonly RULE_stmt_perform = 426; + public static readonly RULE_stmt_call = 427; + public static readonly RULE_stmt_assign = 428; + public static readonly RULE_stmt_getdiag = 429; + public static readonly RULE_getdiag_list_item = 430; + public static readonly RULE_assign_var = 431; + public static readonly RULE_stmt_if = 432; + public static readonly RULE_stmt_else = 433; + public static readonly RULE_stmt_case = 434; + public static readonly RULE_stmt_loop_while_for = 435; + public static readonly RULE_for_control = 436; + public static readonly RULE_stmt_foreach_a = 437; + public static readonly RULE_stmt_exit = 438; + public static readonly RULE_stmt_return = 439; + public static readonly RULE_stmt_raise = 440; + public static readonly RULE_opt_raise_using_elem = 441; + public static readonly RULE_stmt_assert = 442; + public static readonly RULE_loop_body = 443; + public static readonly RULE_stmt_execsql = 444; + public static readonly RULE_stmt_dynexecute = 445; + public static readonly RULE_opt_execute_into = 446; + public static readonly RULE_stmt_open = 447; + public static readonly RULE_opt_open_bound_list_item = 448; + public static readonly RULE_stmt_fetch = 449; + public static readonly RULE_opt_fetch_direction = 450; + public static readonly RULE_stmt_move = 451; + public static readonly RULE_mergestmt = 452; + public static readonly RULE_data_source = 453; + public static readonly RULE_merge_when_clause = 454; + public static readonly RULE_merge_insert = 455; + public static readonly RULE_merge_update = 456; + public static readonly RULE_default_values_or_values = 457; + public static readonly RULE_exprofdefault = 458; + public static readonly RULE_stmt_close = 459; + public static readonly RULE_stmt_null = 460; + public static readonly RULE_stmt_commit_or_rollback = 461; + public static readonly RULE_stmt_set = 462; + public static readonly RULE_cursor_variable = 463; + public static readonly RULE_exception_sect = 464; + public static readonly RULE_proc_condition = 465; + public static readonly RULE_any_identifier = 466; + public static readonly RULE_sql_expression = 467; public static readonly literalNames = [ null, "'$'", "'('", "')'", "'['", "']'", "','", "';'", "':'", "'*'", @@ -1383,25 +1385,25 @@ export class PostgreSqlParser extends SQLParserBase { "select_limit", "limit_clause", "fetch_clause", "offset_clause", "select_fetch_first_value", "group_clause", "group_by_list", "group_by_item", "for_locking_clause", "values_clause", "from_clause", "from_list", - "table_ref", "alias_clause", "func_alias_clause", "join_type", "join_qual", - "relation_expr", "publication_relation_expr", "relation_expr_list", - "relation_expr_opt_alias", "tablesample_clause", "func_table", "rowsfrom_item", - "where_clause", "where_or_current_clause", "tablefuncelementlist", - "tablefuncelement", "xmltable", "xmltable_column_el", "xml_namespace_el", - "typename", "simpletypename", "consttypename", "numeric", "opt_float", - "bit", "character", "constdatetime", "opt_interval", "interval_second", - "comparisonOperator", "expression", "booleanExpression", "predicate", - "valueExpression", "primaryExpression", "func_application", "func_expr", - "func_expr_windowless", "func_expr_common_subexpr", "xml_attribute_list", - "xml_attribute_el", "document_or_content", "xmlexists_argument", - "xml_passing_mech", "window_clause", "window_definition", "over_clause", - "window_specification", "opt_frame_clause", "frame_bound", "row", - "explicit_row", "sub_type", "all_op", "mathop", "qual_op", "qual_all_op", - "subquery_Op", "expr_list", "column_expr", "column_expr_noparen", + "table_ref", "expressionTable", "alias_clause", "func_alias_clause", + "join_type", "join_qual", "relation_expr", "publication_relation_expr", + "relation_expr_list", "relation_expr_opt_alias", "tablesample_clause", + "func_table", "rowsfrom_item", "where_clause", "where_or_current_clause", + "tablefuncelementlist", "tablefuncelement", "xmltable", "xmltable_column_el", + "xml_namespace_el", "typename", "simpletypename", "consttypename", + "numeric", "opt_float", "bit", "character", "constdatetime", "opt_interval", + "interval_second", "comparisonOperator", "expression", "booleanExpression", + "predicate", "valueExpression", "primaryExpression", "func_application", + "func_expr", "func_expr_windowless", "func_expr_common_subexpr", + "xml_attribute_list", "xml_attribute_el", "document_or_content", + "xmlexists_argument", "xml_passing_mech", "window_clause", "window_definition", + "over_clause", "window_specification", "opt_frame_clause", "frame_bound", + "row", "explicit_row", "sub_type", "all_op", "mathop", "qual_op", + "qual_all_op", "subquery_Op", "expr_list", "column_expr", "column_expr_noparen", "func_arg_list", "func_arg_expr", "array_expr", "extract_arg", "unicode_normal_form", "substr_list", "when_clause", "indirection_el", "indirection", "opt_indirection", - "target_list", "target_el", "qualified_name_list", "table_name_list", - "schema_name_list", "database_nameList", "tablespace_name_create", + "target_list", "target_el", "tableAllColumns", "qualified_name_list", + "table_name_list", "schema_name_list", "database_nameList", "tablespace_name_create", "tablespace_name", "table_name_create", "table_name", "view_name_create", "view_name", "qualified_name", "tablespace_name_list", "name_list", "database_name_create", "database_name", "schema_name", "routine_name_create", @@ -1444,21 +1446,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 935; + this.state = 939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_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 - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1090557953) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 679839745) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 272417) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 6401) !== 0) || ((((_la - 422)) & ~0x1F) === 0 && ((1 << (_la - 422)) & 4196353) !== 0) || _la === 454 || _la === 525 || _la === 581) { { { - this.state = 932; + this.state = 936; this.singleStmt(); } } - this.state = 937; + this.state = 941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 938; + this.state = 942; this.match(PostgreSqlParser.EOF); } } @@ -1483,14 +1485,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 940; + this.state = 944; this.stmt(); - this.state = 942; + this.state = 946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 941; + this.state = 945; this.match(PostgreSqlParser.SEMI); } } @@ -1516,832 +1518,832 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 4, PostgreSqlParser.RULE_stmt); let _la: number; try { - this.state = 1064; + this.state = 1068; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 944; + this.state = 948; this.altereventtrigstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 945; + this.state = 949; this.altercollationstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 946; + this.state = 950; this.alterdatabasestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 947; + this.state = 951; this.alterdatabasesetstmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 948; + this.state = 952; this.alterdefaultprivilegesstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 949; + this.state = 953; this.alterdomainstmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 950; + this.state = 954; this.alterenumstmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 951; + this.state = 955; this.alterextensionstmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 952; + this.state = 956; this.alterextensioncontentsstmt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 953; + this.state = 957; this.alterfdwstmt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 954; + this.state = 958; this.alterforeignserverstmt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 955; + this.state = 959; this.alterfunctionstmt(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 956; + this.state = 960; this.altergroupstmt(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 957; + this.state = 961; this.alterobjectdependsstmt(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 958; + this.state = 962; this.alterobjectschemastmt(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 959; + this.state = 963; this.alterownerstmt(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 960; + this.state = 964; this.alteroperatorstmt(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 961; + this.state = 965; this.altertypestmt(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 962; + this.state = 966; this.alterpolicystmt(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 963; + this.state = 967; this.alterprocedurestmt(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 964; + this.state = 968; this.alterseqstmt(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 965; + this.state = 969; this.altersystemstmt(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 966; + this.state = 970; this.altertablestmt(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 967; + this.state = 971; this.altertblspcstmt(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 968; + this.state = 972; this.altercompositetypestmt(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 969; + this.state = 973; this.alterpublicationstmt(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 970; + this.state = 974; this.alterrolesetstmt(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 971; + this.state = 975; this.alterroutinestmt(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 972; + this.state = 976; this.alterrolestmt(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 973; + this.state = 977; this.altersubscriptionstmt(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 974; + this.state = 978; this.alterstatsstmt(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 975; + this.state = 979; this.altertsconfigurationstmt(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 976; + this.state = 980; this.altertsdictionarystmt(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 977; + this.state = 981; this.alterusermappingstmt(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 978; + this.state = 982; this.analyzestmt(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 979; + this.state = 983; this.callstmt(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 980; + this.state = 984; this.checkpointstmt(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 981; + this.state = 985; this.closeportalstmt(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 982; + this.state = 986; this.clusterstmt(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 983; + this.state = 987; this.commentstmt(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 984; + this.state = 988; this.constraintssetstmt(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 985; + this.state = 989; this.copystmt(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 986; + this.state = 990; this.createamstmt(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 987; + this.state = 991; this.createasstmt(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 988; + this.state = 992; this.createassertionstmt(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 989; + this.state = 993; this.createcaststmt(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 990; + this.state = 994; this.createconversionstmt(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 991; + this.state = 995; this.createdomainstmt(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 992; + this.state = 996; this.createextensionstmt(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 993; + this.state = 997; this.createfdwstmt(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 994; + this.state = 998; this.createforeignserverstmt(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 995; + this.state = 999; this.createforeigntablestmt(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 996; + this.state = 1000; this.createfunctionstmt(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 997; + this.state = 1001; this.creategroupstmt(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 998; + this.state = 1002; this.creatematviewstmt(); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 999; + this.state = 1003; this.createopclassstmt(); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1000; + this.state = 1004; this.createopfamilystmt(); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1001; + this.state = 1005; this.createpublicationstmt(); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1002; + this.state = 1006; this.alteropfamilystmt(); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1003; + this.state = 1007; this.createpolicystmt(); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1004; + this.state = 1008; this.createplangstmt(); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1005; + this.state = 1009; this.createschemastmt(); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1006; + this.state = 1010; this.createseqstmt(); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1007; + this.state = 1011; this.createstmt(); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1008; + this.state = 1012; this.createsubscriptionstmt(); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1009; + this.state = 1013; this.createstatsstmt(); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1010; + this.state = 1014; this.createtablespacestmt(); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1011; + this.state = 1015; this.createtransformstmt(); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1012; + this.state = 1016; this.createtrigstmt(); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1013; + this.state = 1017; this.createeventtrigstmt(); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1014; + this.state = 1018; this.createrolestmt(); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1015; + this.state = 1019; this.createuserstmt(); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1016; + this.state = 1020; this.createusermappingstmt(); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1017; + this.state = 1021; this.createdbstmt(); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1018; + this.state = 1022; this.deallocatestmt(); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1019; + this.state = 1023; this.declarecursorstmt(); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1020; + this.state = 1024; this.definestmt(); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1021; + this.state = 1025; this.deletestmt(); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1022; + this.state = 1026; this.discardstmt(); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1023; + this.state = 1027; this.dostmt(); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1024; + this.state = 1028; this.dropstmt(); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1025; + this.state = 1029; this.executestmt(); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1026; + this.state = 1030; this.explainstmt(); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1027; + this.state = 1031; this.fetchstmt(); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1028; + this.state = 1032; this.grantstmt(); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1029; + this.state = 1033; this.grantrolestmt(); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1030; + this.state = 1034; this.mergestmt(); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1031; + this.state = 1035; this.importforeignschemastmt(); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1032; + this.state = 1036; this.indexstmt(); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1033; + this.state = 1037; this.insertstmt(); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1034; + this.state = 1038; this.listenstmt(); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1035; + this.state = 1039; this.refreshmatviewstmt(); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1036; + this.state = 1040; this.loadstmt(); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1037; + this.state = 1041; this.lockstmt(); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1038; + this.state = 1042; this.notifystmt(); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1039; + this.state = 1043; this.preparestmt(); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1040; + this.state = 1044; this.reassignownedstmt(); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1041; + this.state = 1045; this.reindexstmt(); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1042; + this.state = 1046; this.removeaggrstmt(); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1043; + this.state = 1047; this.removefuncstmt(); } break; case 101: this.enterOuterAlt(localContext, 101); { - this.state = 1044; + this.state = 1048; this.removeoperstmt(); } break; case 102: this.enterOuterAlt(localContext, 102); { - this.state = 1045; + this.state = 1049; this.renamestmt(); } break; case 103: this.enterOuterAlt(localContext, 103); { - this.state = 1046; + this.state = 1050; this.revokestmt(); } break; case 104: this.enterOuterAlt(localContext, 104); { - this.state = 1047; + this.state = 1051; this.revokerolestmt(); } break; case 105: this.enterOuterAlt(localContext, 105); { - this.state = 1048; + this.state = 1052; this.rulestmt(); } break; case 106: this.enterOuterAlt(localContext, 106); { - this.state = 1049; + this.state = 1053; this.seclabelstmt(); } break; case 107: this.enterOuterAlt(localContext, 107); { - this.state = 1050; + this.state = 1054; this.selectstmt(); } break; case 108: this.enterOuterAlt(localContext, 108); { - this.state = 1051; + this.state = 1055; this.transactionstmt(); } break; case 109: this.enterOuterAlt(localContext, 109); { - this.state = 1052; + this.state = 1056; this.truncatestmt(); } break; case 110: this.enterOuterAlt(localContext, 110); { - this.state = 1053; + this.state = 1057; this.unlistenstmt(); } break; case 111: this.enterOuterAlt(localContext, 111); { - this.state = 1054; + this.state = 1058; this.updatestmt(); } break; case 112: this.enterOuterAlt(localContext, 112); { - this.state = 1055; + this.state = 1059; this.vacuumstmt(); } break; case 113: this.enterOuterAlt(localContext, 113); { - this.state = 1056; + this.state = 1060; this.variableresetstmt(); } break; case 114: this.enterOuterAlt(localContext, 114); { - this.state = 1057; + this.state = 1061; this.variablesetstmt(); } break; case 115: this.enterOuterAlt(localContext, 115); { - this.state = 1058; + this.state = 1062; this.variableshowstmt(); } break; case 116: this.enterOuterAlt(localContext, 116); { - this.state = 1059; + this.state = 1063; this.viewstmt(); } break; case 117: this.enterOuterAlt(localContext, 117); { - this.state = 1060; + this.state = 1064; this.match(PostgreSqlParser.MetaCommand); - this.state = 1062; + this.state = 1066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 1061; + this.state = 1065; this.match(PostgreSqlParser.EndMetaCommand); } } @@ -2370,9 +2372,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1066; + this.state = 1070; this.match(PostgreSqlParser.KW_CALL); - this.state = 1067; + this.state = 1071; this.func_application(); } } @@ -2397,35 +2399,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1069; + this.state = 1073; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1070; + this.state = 1074; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1071; + this.state = 1075; this.rolespec(); - this.state = 1073; + this.state = 1077; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 1072; + this.state = 1076; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1078; + this.state = 1082; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1075; + this.state = 1079; this.createoptroleelem(); } } } - this.state = 1080; + this.state = 1084; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); } @@ -2450,15 +2452,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 10, PostgreSqlParser.RULE_alteroptroleelem); let _la: number; try { - this.state = 1119; + this.state = 1123; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1081; + this.state = 1085; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1084; + this.state = 1088; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -2466,13 +2468,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1082; + this.state = 1086; this.sconst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 1083; + this.state = 1087; this.match(PostgreSqlParser.KW_NULL); } break; @@ -2484,7 +2486,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1086; + this.state = 1090; _la = this.tokenStream.LA(1); if(!(_la === 195 || _la === 364)) { this.errorHandler.recoverInline(this); @@ -2493,152 +2495,152 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1087; + this.state = 1091; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1088; + this.state = 1092; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1089; + this.state = 1093; this.match(PostgreSqlParser.KW_INHERIT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1090; + this.state = 1094; this.match(PostgreSqlParser.KW_NOINHERIT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1091; + this.state = 1095; this.match(PostgreSqlParser.KW_CREATEUSER); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1092; + this.state = 1096; this.match(PostgreSqlParser.KW_NOCREATEUSER); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1093; + this.state = 1097; this.match(PostgreSqlParser.KW_CREATEROLE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1094; + this.state = 1098; this.match(PostgreSqlParser.KW_NOCREATEROLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1095; + this.state = 1099; this.match(PostgreSqlParser.KW_CREATEDB); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1096; + this.state = 1100; this.match(PostgreSqlParser.KW_NOCREATEDB); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1097; + this.state = 1101; this.match(PostgreSqlParser.KW_SUPERUSER); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1098; + this.state = 1102; this.match(PostgreSqlParser.KW_NOSUPERUSER); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1099; + this.state = 1103; this.match(PostgreSqlParser.KW_LOGIN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1100; + this.state = 1104; this.match(PostgreSqlParser.KW_NOLOGIN); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1101; + this.state = 1105; this.match(PostgreSqlParser.KW_REPLICATION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1102; + this.state = 1106; this.match(PostgreSqlParser.KW_NOREPLICATION); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1103; + this.state = 1107; this.match(PostgreSqlParser.KW_BYPASSRLS); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1104; + this.state = 1108; this.match(PostgreSqlParser.KW_NOBYPASSRLS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1105; + this.state = 1109; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 1106; + this.state = 1110; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 1107; + this.state = 1111; this.signediconst(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1108; + this.state = 1112; this.match(PostgreSqlParser.KW_VALID); - this.state = 1109; + this.state = 1113; this.match(PostgreSqlParser.KW_UNTIL); - this.state = 1110; + this.state = 1114; this.sconst(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1111; + this.state = 1115; this.match(PostgreSqlParser.KW_IN); - this.state = 1112; + this.state = 1116; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2647,14 +2649,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1113; + this.state = 1117; this.name_list(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1114; + this.state = 1118; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2663,23 +2665,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1115; + this.state = 1119; this.role_list(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1116; + this.state = 1120; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 1117; + this.state = 1121; this.name_list(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1118; + this.state = 1122; this.identifier(); } break; @@ -2704,29 +2706,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 12, PostgreSqlParser.RULE_createoptroleelem); let _la: number; try { - this.state = 1129; + this.state = 1133; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1121; + this.state = 1125; this.alteroptroleelem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1122; + this.state = 1126; this.match(PostgreSqlParser.KW_SYSID); - this.state = 1123; + this.state = 1127; this.match(PostgreSqlParser.Integral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1124; + this.state = 1128; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2735,16 +2737,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1125; + this.state = 1129; this.role_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1126; + this.state = 1130; this.match(PostgreSqlParser.KW_IN); - this.state = 1127; + this.state = 1131; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2753,7 +2755,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1128; + this.state = 1132; this.role_list(); } break; @@ -2780,35 +2782,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1131; + this.state = 1135; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1132; + this.state = 1136; this.match(PostgreSqlParser.KW_USER); - this.state = 1133; + this.state = 1137; this.rolespec(); - this.state = 1135; + this.state = 1139; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 1134; + this.state = 1138; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1140; + this.state = 1144; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1137; + this.state = 1141; this.createoptroleelem(); } } } - this.state = 1142; + this.state = 1146; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); } @@ -2836,9 +2838,9 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1143; + this.state = 1147; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1144; + this.state = 1148; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2847,31 +2849,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1145; + this.state = 1149; this.rolespec(); - this.state = 1147; + this.state = 1151; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: { - this.state = 1146; + this.state = 1150; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1152; + this.state = 1156; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1149; + this.state = 1153; this.alteroptroleelem(); } } } - this.state = 1154; + this.state = 1158; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); } @@ -2898,9 +2900,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1155; + this.state = 1159; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1156; + this.state = 1160; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2909,12 +2911,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1159; + this.state = 1163; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1157; + this.state = 1161; this.match(PostgreSqlParser.KW_ALL); } break; @@ -3337,20 +3339,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1158; + this.state = 1162; this.rolespec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1161; + this.state = 1165; this.match(PostgreSqlParser.KW_IN); - this.state = 1162; + this.state = 1166; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 1163; + this.state = 1167; this.database_name(); - this.state = 1164; + this.state = 1168; this.setresetclause(); } } @@ -3375,23 +3377,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1166; + this.state = 1170; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1167; + this.state = 1171; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 1168; + this.state = 1172; this.routine_name(); - this.state = 1170; + this.state = 1174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1169; + this.state = 1173; this.func_args(); } } - this.state = 1172; + this.state = 1176; this.alter_routine_cluase(); } } @@ -3415,36 +3417,36 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1200; + this.state = 1204; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1174; - this.routine_action(); this.state = 1178; + this.routine_action(); + this.state = 1182; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1175; + this.state = 1179; this.routine_action(); } } } - this.state = 1180; + this.state = 1184; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); } - this.state = 1182; + this.state = 1186; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 1181; + this.state = 1185; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -3454,56 +3456,56 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1184; + this.state = 1188; this.match(PostgreSqlParser.KW_RENAME); - this.state = 1185; + this.state = 1189; this.match(PostgreSqlParser.KW_TO); - this.state = 1186; + this.state = 1190; this.routine_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1187; + this.state = 1191; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1188; + this.state = 1192; this.match(PostgreSqlParser.KW_TO); - this.state = 1189; + this.state = 1193; this.rolespec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1190; + this.state = 1194; this.match(PostgreSqlParser.KW_SET); - this.state = 1191; + this.state = 1195; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1192; + this.state = 1196; this.schema_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1194; + this.state = 1198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1193; + this.state = 1197; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1196; + this.state = 1200; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 1197; + this.state = 1201; this.match(PostgreSqlParser.KW_ON); - this.state = 1198; + this.state = 1202; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 1199; + this.state = 1203; this.colid(); } break; @@ -3528,86 +3530,86 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 24, PostgreSqlParser.RULE_routine_action); let _la: number; try { - this.state = 1244; + this.state = 1248; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1202; + this.state = 1206; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1203; + this.state = 1207; this.match(PostgreSqlParser.KW_STABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1204; + this.state = 1208; this.match(PostgreSqlParser.KW_VOLATILE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1206; + this.state = 1210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 1205; + this.state = 1209; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 1208; + this.state = 1212; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1219; + this.state = 1223; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 1210; + this.state = 1214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1209; + this.state = 1213; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1212; + this.state = 1216; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1213; + this.state = 1217; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 1215; + this.state = 1219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1214; + this.state = 1218; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1217; + this.state = 1221; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1218; + this.state = 1222; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -3617,9 +3619,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1221; + this.state = 1225; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 1222; + this.state = 1226; _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -3633,29 +3635,29 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1223; + this.state = 1227; this.match(PostgreSqlParser.KW_COST); - this.state = 1224; + this.state = 1228; this.collabel(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1225; + this.state = 1229; this.match(PostgreSqlParser.KW_ROWS); - this.state = 1226; + this.state = 1230; this.colid(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1227; + this.state = 1231; this.match(PostgreSqlParser.KW_SET); - this.state = 1228; + this.state = 1232; this.colid(); - this.state = 1229; + this.state = 1233; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -3664,18 +3666,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1232; + this.state = 1236; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 1230; + this.state = 1234; this.colid(); } break; case 2: { - this.state = 1231; + this.state = 1235; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -3685,22 +3687,22 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1234; + this.state = 1238; this.match(PostgreSqlParser.KW_SET); - this.state = 1235; + this.state = 1239; this.colid(); - this.state = 1236; + this.state = 1240; this.match(PostgreSqlParser.KW_FROM); - this.state = 1237; + this.state = 1241; this.match(PostgreSqlParser.KW_CURRENT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1239; + this.state = 1243; this.match(PostgreSqlParser.KW_RESET); - this.state = 1242; + this.state = 1246; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -4098,13 +4100,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1240; + this.state = 1244; this.colid(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1241; + this.state = 1245; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4136,35 +4138,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1246; + this.state = 1250; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1247; + this.state = 1251; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1248; + this.state = 1252; this.rolespec(); - this.state = 1250; + this.state = 1254; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 1249; + this.state = 1253; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1255; + this.state = 1259; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1252; + this.state = 1256; this.createoptroleelem(); } } } - this.state = 1257; + this.state = 1261; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -4191,13 +4193,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1258; + this.state = 1262; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1259; + this.state = 1263; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1260; + this.state = 1264; this.rolespec(); - this.state = 1261; + this.state = 1265; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -4206,9 +4208,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1262; + this.state = 1266; this.match(PostgreSqlParser.KW_USER); - this.state = 1263; + this.state = 1267; this.role_list(); } } @@ -4234,61 +4236,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1265; + this.state = 1269; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1266; + this.state = 1270; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1268; + this.state = 1272; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 1267; + this.state = 1271; this.opt_if_not_exists(); } break; } - this.state = 1276; + this.state = 1280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 1271; + this.state = 1275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 1270; + this.state = 1274; this.schema_name_create(); } } - this.state = 1273; + this.state = 1277; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1274; + this.state = 1278; this.rolespec(); } break; case 2: { - this.state = 1275; + this.state = 1279; this.schema_name_create(); } break; } - this.state = 1281; + this.state = 1285; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1278; + this.state = 1282; this.schema_stmt(); } } } - this.state = 1283; + this.state = 1287; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } @@ -4315,7 +4317,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new SchemaNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1284; + this.state = 1288; this.any_name(); } } @@ -4337,48 +4339,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Schema_stmtContext(this.context, this.state); this.enterRule(localContext, 34, PostgreSqlParser.RULE_schema_stmt); try { - this.state = 1292; + this.state = 1296; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1286; + this.state = 1290; this.createstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1287; + this.state = 1291; this.indexstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1288; + this.state = 1292; this.createseqstmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1289; + this.state = 1293; this.createtrigstmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1290; + this.state = 1294; this.grantstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1291; + this.state = 1295; this.viewstmt(); } break; @@ -4405,14 +4407,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1298; this.match(PostgreSqlParser.KW_SET); - this.state = 1296; + this.state = 1300; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 1295; + this.state = 1299; _la = this.tokenStream.LA(1); if(!(_la === 254 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -4424,7 +4426,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 1298; + this.state = 1302; this.set_rest(); } } @@ -4446,37 +4448,37 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Set_restContext(this.context, this.state); this.enterRule(localContext, 38, PostgreSqlParser.RULE_set_rest); try { - this.state = 1308; + this.state = 1312; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1300; + this.state = 1304; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1301; + this.state = 1305; this.transaction_mode_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1302; + this.state = 1306; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1303; + this.state = 1307; this.match(PostgreSqlParser.KW_CHARACTERISTICS); - this.state = 1304; + this.state = 1308; this.match(PostgreSqlParser.KW_AS); - this.state = 1305; + this.state = 1309; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1306; + this.state = 1310; this.transaction_mode_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1307; + this.state = 1311; this.set_rest_more(); } break; @@ -4503,12 +4505,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1312; + this.state = 1316; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1310; + this.state = 1314; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4907,19 +4909,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1311; + this.state = 1315; this.var_name(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1315; + this.state = 1319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 94) { { - this.state = 1314; + this.state = 1318; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -4931,18 +4933,18 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1319; + this.state = 1323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 1317; + this.state = 1321; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 1318; + this.state = 1322; this.var_list(); } break; @@ -4967,55 +4969,55 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Set_rest_moreContext(this.context, this.state); this.enterRule(localContext, 42, PostgreSqlParser.RULE_set_rest_more); try { - this.state = 1349; + this.state = 1353; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1321; + this.state = 1325; this.match(PostgreSqlParser.KW_TIME); - this.state = 1322; + this.state = 1326; this.match(PostgreSqlParser.KW_ZONE); - this.state = 1323; + this.state = 1327; this.zone_value(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1324; + this.state = 1328; this.match(PostgreSqlParser.KW_CATALOG); - this.state = 1325; + this.state = 1329; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1326; + this.state = 1330; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1327; + this.state = 1331; this.schema_name(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1328; + this.state = 1332; this.match(PostgreSqlParser.KW_NAMES); - this.state = 1331; + this.state = 1335; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 1329; + this.state = 1333; this.sconst(); } break; case 2: { - this.state = 1330; + this.state = 1334; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -5025,60 +5027,60 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1333; + this.state = 1337; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1334; + this.state = 1338; this.nonreservedword_or_sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1335; + this.state = 1339; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1336; + this.state = 1340; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1337; + this.state = 1341; this.nonreservedword_or_sconst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1338; + this.state = 1342; this.match(PostgreSqlParser.KW_XML); - this.state = 1339; + this.state = 1343; this.match(PostgreSqlParser.KW_OPTION); - this.state = 1340; + this.state = 1344; this.document_or_content(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1341; + this.state = 1345; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1342; + this.state = 1346; this.match(PostgreSqlParser.KW_SNAPSHOT); - this.state = 1343; + this.state = 1347; this.sconst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1344; + this.state = 1348; this.var_name(); - this.state = 1345; + this.state = 1349; this.match(PostgreSqlParser.KW_FROM); - this.state = 1346; + this.state = 1350; this.match(PostgreSqlParser.KW_CURRENT); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1348; + this.state = 1352; this.generic_set(); } break; @@ -5105,21 +5107,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1351; + this.state = 1355; this.colid(); - this.state = 1356; + this.state = 1360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 1352; + this.state = 1356; this.match(PostgreSqlParser.DOT); - this.state = 1353; + this.state = 1357; this.colid(); } } - this.state = 1358; + this.state = 1362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5146,21 +5148,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1359; + this.state = 1363; this.var_value(); - this.state = 1364; + this.state = 1368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1360; + this.state = 1364; this.match(PostgreSqlParser.COMMA); - this.state = 1361; + this.state = 1365; this.var_value(); } } - this.state = 1366; + this.state = 1370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5184,7 +5186,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Var_valueContext(this.context, this.state); this.enterRule(localContext, 48, PostgreSqlParser.RULE_var_value); try { - this.state = 1369; + this.state = 1373; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -5607,7 +5609,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 1367; + this.state = 1371; this.opt_boolean_or_string(); } break; @@ -5617,7 +5619,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 1368; + this.state = 1372; this.numericonly(); } break; @@ -5644,15 +5646,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 50, PostgreSqlParser.RULE_iso_level); let _la: number; try { - this.state = 1376; + this.state = 1380; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 1371; + this.state = 1375; this.match(PostgreSqlParser.KW_READ); - this.state = 1372; + this.state = 1376; _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 363)) { this.errorHandler.recoverInline(this); @@ -5666,16 +5668,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REPEATABLE: this.enterOuterAlt(localContext, 2); { - this.state = 1373; + this.state = 1377; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 1374; + this.state = 1378; this.match(PostgreSqlParser.KW_READ); } break; case PostgreSqlParser.KW_SERIALIZABLE: this.enterOuterAlt(localContext, 3); { - this.state = 1375; + this.state = 1379; this.match(PostgreSqlParser.KW_SERIALIZABLE); } break; @@ -5701,48 +5703,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Opt_boolean_or_string_columnContext(this.context, this.state); this.enterRule(localContext, 52, PostgreSqlParser.RULE_opt_boolean_or_string_column); try { - this.state = 1384; + this.state = 1388; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1378; + this.state = 1382; this.match(PostgreSqlParser.KW_TRUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1379; + this.state = 1383; this.match(PostgreSqlParser.KW_FALSE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1380; + this.state = 1384; this.match(PostgreSqlParser.KW_ON); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1381; + this.state = 1385; this.column_name(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1382; + this.state = 1386; this.type_func_name_keyword(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1383; + this.state = 1387; this.sconst(); } break; @@ -5766,27 +5768,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Opt_boolean_or_stringContext(this.context, this.state); this.enterRule(localContext, 54, PostgreSqlParser.RULE_opt_boolean_or_string); try { - this.state = 1390; + this.state = 1394; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 1); { - this.state = 1386; + this.state = 1390; this.match(PostgreSqlParser.KW_TRUE); } break; case PostgreSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 2); { - this.state = 1387; + this.state = 1391; this.match(PostgreSqlParser.KW_FALSE); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 3); { - this.state = 1388; + this.state = 1392; this.match(PostgreSqlParser.KW_ON); } break; @@ -6207,7 +6209,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 1389; + this.state = 1393; this.nonreservedword_or_sconst(); } break; @@ -6233,43 +6235,43 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Zone_valueContext(this.context, this.state); this.enterRule(localContext, 56, PostgreSqlParser.RULE_zone_value); try { - this.state = 1406; + this.state = 1410; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1392; + this.state = 1396; this.sconst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1393; + this.state = 1397; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1394; + this.state = 1398; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1395; + this.state = 1399; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1396; + this.state = 1400; this.sconst(); - this.state = 1398; + this.state = 1402; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: { - this.state = 1397; + this.state = 1401; this.opt_interval(); } break; @@ -6279,25 +6281,25 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1400; + this.state = 1404; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1401; + this.state = 1405; this.opt_float(); - this.state = 1402; + this.state = 1406; this.sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1404; + this.state = 1408; this.numericonly(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1405; + this.state = 1409; this.match(PostgreSqlParser.KW_LOCAL); } break; @@ -6321,20 +6323,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Nonreservedword_or_sconstContext(this.context, this.state); this.enterRule(localContext, 58, PostgreSqlParser.RULE_nonreservedword_or_sconst); try { - this.state = 1410; + this.state = 1414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1412; this.nonreservedword(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1409; + this.state = 1413; this.sconst(); } break; @@ -6360,9 +6362,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1412; + this.state = 1416; this.match(PostgreSqlParser.KW_RESET); - this.state = 1413; + this.state = 1417; this.reset_rest(); } } @@ -6384,49 +6386,49 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Reset_restContext(this.context, this.state); this.enterRule(localContext, 62, PostgreSqlParser.RULE_reset_rest); try { - this.state = 1424; + this.state = 1428; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1415; + this.state = 1419; this.match(PostgreSqlParser.KW_TIME); - this.state = 1416; + this.state = 1420; this.match(PostgreSqlParser.KW_ZONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1417; + this.state = 1421; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1418; + this.state = 1422; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1419; + this.state = 1423; this.match(PostgreSqlParser.KW_LEVEL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1420; + this.state = 1424; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1421; + this.state = 1425; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1422; + this.state = 1426; this.match(PostgreSqlParser.KW_ALL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1423; + this.state = 1427; this.var_name(); } break; @@ -6450,63 +6452,63 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetresetclauseContext(this.context, this.state); this.enterRule(localContext, 64, PostgreSqlParser.RULE_setresetclause); try { - this.state = 1429; + this.state = 1433; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1426; + this.state = 1430; this.match(PostgreSqlParser.KW_SET); - this.state = 1427; + this.state = 1431; this.set_rest(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 1428; - this.variableresetstmt(); - } - 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 functionsetresetclause(): FunctionsetresetclauseContext { - let localContext = new FunctionsetresetclauseContext(this.context, this.state); - this.enterRule(localContext, 66, PostgreSqlParser.RULE_functionsetresetclause); - try { - this.state = 1434; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_SET: - this.enterOuterAlt(localContext, 1); - { - this.state = 1431; - this.match(PostgreSqlParser.KW_SET); this.state = 1432; - this.set_rest_more(); - } - break; - case PostgreSqlParser.KW_RESET: - this.enterOuterAlt(localContext, 2); - { - this.state = 1433; + this.variableresetstmt(); + } + 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 functionsetresetclause(): FunctionsetresetclauseContext { + let localContext = new FunctionsetresetclauseContext(this.context, this.state); + this.enterRule(localContext, 66, PostgreSqlParser.RULE_functionsetresetclause); + try { + this.state = 1438; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_SET: + this.enterOuterAlt(localContext, 1); + { + this.state = 1435; + this.match(PostgreSqlParser.KW_SET); + this.state = 1436; + this.set_rest_more(); + } + break; + case PostgreSqlParser.KW_RESET: + this.enterOuterAlt(localContext, 2); + { + this.state = 1437; this.variableresetstmt(); } break; @@ -6534,46 +6536,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1436; + this.state = 1440; this.match(PostgreSqlParser.KW_SHOW); - this.state = 1446; + this.state = 1450; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 52, this.context) ) { case 1: { - this.state = 1437; + this.state = 1441; this.var_name(); } break; case 2: { - this.state = 1438; + this.state = 1442; this.match(PostgreSqlParser.KW_TIME); - this.state = 1439; + this.state = 1443; this.match(PostgreSqlParser.KW_ZONE); } break; case 3: { - this.state = 1440; + this.state = 1444; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1441; + this.state = 1445; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1442; + this.state = 1446; this.match(PostgreSqlParser.KW_LEVEL); } break; case 4: { - this.state = 1443; + this.state = 1447; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1444; + this.state = 1448; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 5: { - this.state = 1445; + this.state = 1449; this.match(PostgreSqlParser.KW_ALL); } break; @@ -6601,16 +6603,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1452; this.match(PostgreSqlParser.KW_SET); - this.state = 1449; + this.state = 1453; this.match(PostgreSqlParser.KW_CONSTRAINTS); - this.state = 1452; + this.state = 1456; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1450; + this.state = 1454; this.match(PostgreSqlParser.KW_ALL); } break; @@ -7009,14 +7011,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1451; + this.state = 1455; this.qualified_name_list(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1454; + this.state = 1458; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -7047,7 +7049,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1456; + this.state = 1460; this.match(PostgreSqlParser.KW_CHECKPOINT); } } @@ -7072,9 +7074,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1458; + this.state = 1462; this.match(PostgreSqlParser.KW_DISCARD); - this.state = 1459; + this.state = 1463; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 288 || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 41943041) !== 0))) { this.errorHandler.recoverInline(this); @@ -7104,29 +7106,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 76, PostgreSqlParser.RULE_altertablestmt); let _la: number; try { - this.state = 1582; + this.state = 1586; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1461; + this.state = 1465; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1462; + this.state = 1466; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1464; + this.state = 1468; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1463; + this.state = 1467; this.opt_if_exists(); } break; } - this.state = 1466; + this.state = 1470; this.relation_expr(); - this.state = 1469; + this.state = 1473; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7147,14 +7149,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1467; + this.state = 1471; this.alter_table_cmds(); } break; case PostgreSqlParser.KW_ATTACH: case PostgreSqlParser.KW_DETACH: { - this.state = 1468; + this.state = 1472; this.partition_cmd(); } break; @@ -7166,42 +7168,42 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1471; + this.state = 1475; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1472; + this.state = 1476; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1473; + this.state = 1477; this.match(PostgreSqlParser.KW_ALL); - this.state = 1474; + this.state = 1478; this.match(PostgreSqlParser.KW_IN); - this.state = 1475; - this.opttablespace(); this.state = 1479; + this.opttablespace(); + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1476; + this.state = 1480; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1477; + this.state = 1481; this.match(PostgreSqlParser.KW_BY); - this.state = 1478; + this.state = 1482; this.role_list(); } } - this.state = 1481; + this.state = 1485; this.match(PostgreSqlParser.KW_SET); - this.state = 1482; + this.state = 1486; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1483; + this.state = 1487; this.tablespace_name_create(); - this.state = 1485; + this.state = 1489; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1484; + this.state = 1488; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7211,40 +7213,40 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1487; + this.state = 1491; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1488; + this.state = 1492; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1490; + this.state = 1494; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1489; + this.state = 1493; this.opt_if_exists(); } break; } - this.state = 1492; + this.state = 1496; this.table_name(); - this.state = 1493; + this.state = 1497; this.index_partition_cmd(); - this.state = 1498; + this.state = 1502; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOR: { - this.state = 1494; + this.state = 1498; this.match(PostgreSqlParser.KW_FOR); - this.state = 1495; + this.state = 1499; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1496; + this.state = 1500; this.partition_bound_spec(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 1497; + this.state = 1501; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -7256,34 +7258,34 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1500; + this.state = 1504; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1501; + this.state = 1505; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1503; + this.state = 1507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 1502; + this.state = 1506; this.opt_if_exists(); } break; } - this.state = 1505; + this.state = 1509; this.table_name(); - this.state = 1506; + this.state = 1510; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1507; + this.state = 1511; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1508; + this.state = 1512; this.qualified_name(); - this.state = 1510; + this.state = 1514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109 || _la === 532) { { - this.state = 1509; + this.state = 1513; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 532)) { this.errorHandler.recoverInline(this); @@ -7300,23 +7302,23 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1512; + this.state = 1516; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1513; + this.state = 1517; this.match(PostgreSqlParser.KW_INDEX); - this.state = 1515; + this.state = 1519; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 62, this.context) ) { case 1: { - this.state = 1514; + this.state = 1518; this.opt_if_exists(); } break; } - this.state = 1517; + this.state = 1521; this.qualified_name(); - this.state = 1520; + this.state = 1524; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7337,13 +7339,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1518; + this.state = 1522; this.alter_table_cmds(); } break; case PostgreSqlParser.KW_ATTACH: { - this.state = 1519; + this.state = 1523; this.index_partition_cmd(); } break; @@ -7355,40 +7357,40 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1522; + this.state = 1526; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1523; + this.state = 1527; this.match(PostgreSqlParser.KW_INDEX); - this.state = 1524; + this.state = 1528; this.match(PostgreSqlParser.KW_ALL); - this.state = 1525; + this.state = 1529; this.match(PostgreSqlParser.KW_IN); - this.state = 1526; - this.opttablespace(); this.state = 1530; + this.opttablespace(); + this.state = 1534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1527; + this.state = 1531; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1528; + this.state = 1532; this.match(PostgreSqlParser.KW_BY); - this.state = 1529; + this.state = 1533; this.role_list(); } } - this.state = 1532; + this.state = 1536; this.match(PostgreSqlParser.KW_SET); - this.state = 1533; + this.state = 1537; this.opttablespace(); - this.state = 1535; + this.state = 1539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1534; + this.state = 1538; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7398,100 +7400,100 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1537; + this.state = 1541; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1538; + this.state = 1542; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 1540; + this.state = 1544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 1539; + this.state = 1543; this.opt_if_exists(); } break; } - this.state = 1542; + this.state = 1546; this.qualified_name(); - this.state = 1543; + this.state = 1547; this.alter_table_cmds(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1545; + this.state = 1549; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1547; + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1546; + this.state = 1550; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 1549; + this.state = 1553; this.match(PostgreSqlParser.KW_VIEW); - this.state = 1551; + this.state = 1555; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 68, this.context) ) { case 1: { - this.state = 1550; + this.state = 1554; this.opt_if_exists(); } break; } - this.state = 1553; + this.state = 1557; this.view_name(); - this.state = 1554; + this.state = 1558; this.alter_table_cmds(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1556; + this.state = 1560; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1557; + this.state = 1561; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 1558; + this.state = 1562; this.match(PostgreSqlParser.KW_VIEW); - this.state = 1559; + this.state = 1563; this.match(PostgreSqlParser.KW_ALL); - this.state = 1560; + this.state = 1564; this.match(PostgreSqlParser.KW_IN); - this.state = 1561; - this.opttablespace(); this.state = 1565; + this.opttablespace(); + this.state = 1569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1562; + this.state = 1566; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1563; + this.state = 1567; this.match(PostgreSqlParser.KW_BY); - this.state = 1564; + this.state = 1568; this.role_list(); } } - this.state = 1567; + this.state = 1571; this.match(PostgreSqlParser.KW_SET); - this.state = 1568; + this.state = 1572; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1569; + this.state = 1573; this.tablespace_name_create(); - this.state = 1571; + this.state = 1575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1570; + this.state = 1574; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7501,25 +7503,25 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1573; + this.state = 1577; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1574; + this.state = 1578; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 1575; + this.state = 1579; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1577; + this.state = 1581; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1576; + this.state = 1580; this.opt_if_exists(); } break; } - this.state = 1579; + this.state = 1583; this.relation_expr(); - this.state = 1580; + this.state = 1584; this.alter_table_cmds(); } break; @@ -7546,21 +7548,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1584; + this.state = 1588; this.alter_table_cmd(); - this.state = 1589; + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1585; + this.state = 1589; this.match(PostgreSqlParser.COMMA); - this.state = 1586; + this.state = 1590; this.alter_table_cmd(); } } - this.state = 1591; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7584,37 +7586,37 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Partition_bound_specContext(this.context, this.state); this.enterRule(localContext, 80, PostgreSqlParser.RULE_partition_bound_spec); try { - this.state = 1601; + this.state = 1605; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 1592; + this.state = 1596; this.match(PostgreSqlParser.KW_IN); - this.state = 1593; + this.state = 1597; this.execute_param_clause(); } break; case PostgreSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 1594; + this.state = 1598; this.match(PostgreSqlParser.KW_FROM); - this.state = 1595; + this.state = 1599; this.partition_bound_cluase(); - this.state = 1596; + this.state = 1600; this.match(PostgreSqlParser.KW_TO); - this.state = 1597; + this.state = 1601; this.partition_bound_cluase(); } break; case PostgreSqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1599; + this.state = 1603; this.match(PostgreSqlParser.KW_WITH); - this.state = 1600; + this.state = 1604; this.partition_with_cluase(); } break; @@ -7643,27 +7645,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1603; + this.state = 1607; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1604; + this.state = 1608; this.partition_bound_choose(); - this.state = 1609; + this.state = 1613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1605; + this.state = 1609; this.match(PostgreSqlParser.COMMA); - this.state = 1606; + this.state = 1610; this.partition_bound_choose(); } } - this.state = 1611; + this.state = 1615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1612; + this.state = 1616; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -7685,27 +7687,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Partition_bound_chooseContext(this.context, this.state); this.enterRule(localContext, 84, PostgreSqlParser.RULE_partition_bound_choose); try { - this.state = 1617; + this.state = 1621; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { - this.state = 1614; + this.state = 1618; this.execute_param_clause(); } break; case PostgreSqlParser.KW_MINVALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1615; + this.state = 1619; this.match(PostgreSqlParser.KW_MINVALUE); } break; case PostgreSqlParser.KW_MAXVALUE: this.enterOuterAlt(localContext, 3); { - this.state = 1616; + this.state = 1620; this.match(PostgreSqlParser.KW_MAXVALUE); } break; @@ -7733,19 +7735,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1619; + this.state = 1623; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1620; + this.state = 1624; this.match(PostgreSqlParser.KW_MODULUS); - this.state = 1621; + this.state = 1625; this.numericonly(); - this.state = 1622; + this.state = 1626; this.match(PostgreSqlParser.COMMA); - this.state = 1623; + this.state = 1627; this.match(PostgreSqlParser.KW_REMAINDER); - this.state = 1624; + this.state = 1628; this.numericonly(); - this.state = 1625; + this.state = 1629; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -7767,26 +7769,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Partition_cmdContext(this.context, this.state); this.enterRule(localContext, 88, PostgreSqlParser.RULE_partition_cmd); try { - this.state = 1633; + this.state = 1637; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ATTACH: this.enterOuterAlt(localContext, 1); { - this.state = 1627; + this.state = 1631; this.index_partition_cmd(); - this.state = 1628; + this.state = 1632; this.partitionboundspec(); } break; case PostgreSqlParser.KW_DETACH: this.enterOuterAlt(localContext, 2); { - this.state = 1630; + this.state = 1634; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1631; + this.state = 1635; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1632; + this.state = 1636; this.qualified_name(); } break; @@ -7814,11 +7816,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1635; + this.state = 1639; this.match(PostgreSqlParser.KW_ATTACH); - this.state = 1636; + this.state = 1640; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1637; + this.state = 1641; this.qualified_name(); } } @@ -7842,52 +7844,52 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1872; + this.state = 1876; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1639; + this.state = 1643; this.match(PostgreSqlParser.KW_ADD); - this.state = 1642; + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 1640; + this.state = 1644; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1641; + this.state = 1645; this.colid(); } } - this.state = 1644; + this.state = 1648; this.constraintelem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1645; + this.state = 1649; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1646; + this.state = 1650; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1647; - this.colid(); this.state = 1651; + this.colid(); + this.state = 1655; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 79, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1648; + this.state = 1652; this.constraintattributeElem(); } } } - this.state = 1653; + this.state = 1657; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 79, this.context); } @@ -7896,39 +7898,39 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1654; + this.state = 1658; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 1655; + this.state = 1659; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1656; + this.state = 1660; this.colid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1657; + this.state = 1661; this.match(PostgreSqlParser.KW_DROP); - this.state = 1658; + this.state = 1662; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1660; + this.state = 1664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { case 1: { - this.state = 1659; + this.state = 1663; this.opt_if_exists(); } break; } - this.state = 1662; + this.state = 1666; this.colid(); - this.state = 1664; + this.state = 1668; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 81, this.context) ) { case 1: { - this.state = 1663; + this.state = 1667; this.opt_drop_behavior(); } break; @@ -7938,11 +7940,11 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1666; + this.state = 1670; this.match(PostgreSqlParser.KW_SET); - this.state = 1667; + this.state = 1671; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 1668; + this.state = 1672; _la = this.tokenStream.LA(1); if(!(_la === 158 || _la === 277)) { this.errorHandler.recoverInline(this); @@ -7956,20 +7958,20 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1669; + this.state = 1673; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 1670; + this.state = 1674; this.match(PostgreSqlParser.KW_ON); - this.state = 1671; + this.state = 1675; this.colid(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1672; + this.state = 1676; this.match(PostgreSqlParser.KW_SET); - this.state = 1673; + this.state = 1677; _la = this.tokenStream.LA(1); if(!(_la === 367 || _la === 439)) { this.errorHandler.recoverInline(this); @@ -7983,14 +7985,14 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1674; + this.state = 1678; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 1676; + this.state = 1680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 312) { { - this.state = 1675; + this.state = 1679; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -8002,29 +8004,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1678; + this.state = 1682; this.match(PostgreSqlParser.KW_TRIGGER); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1679; + this.state = 1683; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1680; - this.match(PostgreSqlParser.KW_TRIGGER); this.state = 1684; + this.match(PostgreSqlParser.KW_TRIGGER); + this.state = 1688; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1681; + this.state = 1685; this.match(PostgreSqlParser.KW_ALL); } break; case PostgreSqlParser.KW_USER: { - this.state = 1682; + this.state = 1686; this.match(PostgreSqlParser.KW_USER); } break; @@ -8423,7 +8425,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1683; + this.state = 1687; this.colid(); } break; @@ -8435,9 +8437,9 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1686; + this.state = 1690; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 1687; + this.state = 1691; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -8446,113 +8448,113 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1688; + this.state = 1692; this.match(PostgreSqlParser.KW_RULE); - this.state = 1689; + this.state = 1693; this.colid(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1690; + this.state = 1694; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1691; + this.state = 1695; this.match(PostgreSqlParser.KW_RULE); - this.state = 1692; + this.state = 1696; this.colid(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1694; + this.state = 1698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1693; + this.state = 1697; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1696; + this.state = 1700; this.match(PostgreSqlParser.KW_INHERIT); - this.state = 1697; + this.state = 1701; this.qualified_name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1698; + this.state = 1702; this.match(PostgreSqlParser.KW_OF); - this.state = 1699; + this.state = 1703; this.any_name(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1700; + this.state = 1704; this.match(PostgreSqlParser.KW_NOT); - this.state = 1701; + this.state = 1705; this.match(PostgreSqlParser.KW_OF); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1702; + this.state = 1706; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1703; + this.state = 1707; this.match(PostgreSqlParser.KW_TO); - this.state = 1704; + this.state = 1708; this.rolespec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1705; + this.state = 1709; this.match(PostgreSqlParser.KW_SET); - this.state = 1706; + this.state = 1710; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1707; + this.state = 1711; this.tablespace_name_create(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1708; + this.state = 1712; this.match(PostgreSqlParser.KW_REPLICA); - this.state = 1709; + this.state = 1713; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1714; + this.state = 1718; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOTHING: { - this.state = 1710; + this.state = 1714; this.match(PostgreSqlParser.KW_NOTHING); } break; case PostgreSqlParser.KW_FULL: { - this.state = 1711; + this.state = 1715; this.match(PostgreSqlParser.KW_FULL); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 1712; + this.state = 1716; this.match(PostgreSqlParser.KW_DEFAULT); } break; case PostgreSqlParser.KW_USING: { - this.state = 1713; + this.state = 1717; this.existingindex(); } break; @@ -8564,18 +8566,18 @@ export class PostgreSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1722; + this.state = 1726; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 1716; + this.state = 1720; this.match(PostgreSqlParser.KW_ENABLE); } break; case PostgreSqlParser.KW_DISABLE: { - this.state = 1717; + this.state = 1721; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -8583,17 +8585,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: { { - this.state = 1719; + this.state = 1723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1718; + this.state = 1722; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1721; + this.state = 1725; this.match(PostgreSqlParser.KW_FORCE); } } @@ -8601,47 +8603,47 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1724; + this.state = 1728; this.match(PostgreSqlParser.KW_ROW); - this.state = 1725; + this.state = 1729; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 1726; + this.state = 1730; this.match(PostgreSqlParser.KW_SECURITY); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1727; + this.state = 1731; this.match(PostgreSqlParser.KW_DROP); - this.state = 1729; + this.state = 1733; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 1728; + this.state = 1732; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1732; + this.state = 1736; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { case 1: { - this.state = 1731; + this.state = 1735; this.opt_if_exists(); } break; } - this.state = 1734; + this.state = 1738; this.column_name(); - this.state = 1736; + this.state = 1740; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 1735; + this.state = 1739; this.opt_drop_behavior(); } break; @@ -8651,62 +8653,62 @@ export class PostgreSqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1738; + this.state = 1742; this.match(PostgreSqlParser.KW_ADD); - this.state = 1740; + this.state = 1744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1739; + this.state = 1743; this.match(PostgreSqlParser.KW_COLUMN); } } - this.state = 1743; + this.state = 1747; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1742; + this.state = 1746; this.opt_if_not_exists(); } break; } - this.state = 1745; + this.state = 1749; this.column_def(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1746; + this.state = 1750; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1748; + this.state = 1752; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1747; + this.state = 1751; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1750; + this.state = 1754; this.column_name(); - this.state = 1753; + this.state = 1757; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: case PostgreSqlParser.KW_SET: { - this.state = 1751; + this.state = 1755; this.alter_column_default(); } break; case PostgreSqlParser.KW_OPTIONS: { - this.state = 1752; + this.state = 1756; this.alter_generic_options(); } break; @@ -8718,21 +8720,21 @@ export class PostgreSqlParser extends SQLParserBase { case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1755; + this.state = 1759; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1757; + this.state = 1761; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: { - this.state = 1756; + this.state = 1760; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1759; + this.state = 1763; this.column_name(); - this.state = 1760; + this.state = 1764; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8741,39 +8743,39 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1761; + this.state = 1765; this.match(PostgreSqlParser.KW_NOT); - this.state = 1762; + this.state = 1766; this.match(PostgreSqlParser.KW_NULL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1764; + this.state = 1768; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1766; + this.state = 1770; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 96, this.context) ) { case 1: { - this.state = 1765; + this.state = 1769; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1768; + this.state = 1772; this.column_name(); - this.state = 1769; + this.state = 1773; this.match(PostgreSqlParser.KW_DROP); - this.state = 1770; + this.state = 1774; this.match(PostgreSqlParser.KW_EXPRESSION); - this.state = 1772; + this.state = 1776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: { - this.state = 1771; + this.state = 1775; this.opt_if_exists(); } break; @@ -8783,54 +8785,54 @@ export class PostgreSqlParser extends SQLParserBase { case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1774; + this.state = 1778; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1776; + this.state = 1780; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { case 1: { - this.state = 1775; + this.state = 1779; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1778; + this.state = 1782; this.column_name(); - this.state = 1779; + this.state = 1783; this.match(PostgreSqlParser.KW_SET); - this.state = 1780; + this.state = 1784; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 1781; + this.state = 1785; this.signediconst(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1788; + this.state = 1792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1783; + this.state = 1787; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1785; + this.state = 1789; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { case 1: { - this.state = 1784; + this.state = 1788; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1787; + this.state = 1791; this.column_name(); } } - this.state = 1790; + this.state = 1794; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8839,84 +8841,84 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1791; + this.state = 1795; this.reloptions(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1792; + this.state = 1796; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1794; + this.state = 1798; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1793; + this.state = 1797; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1796; + this.state = 1800; this.column_name(); - this.state = 1797; + this.state = 1801; this.match(PostgreSqlParser.KW_SET); - this.state = 1798; + this.state = 1802; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 1799; + this.state = 1803; this.colid(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1801; + this.state = 1805; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1803; + this.state = 1807; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1802; + this.state = 1806; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1805; + this.state = 1809; this.column_name(); - this.state = 1806; + this.state = 1810; this.match(PostgreSqlParser.KW_ADD); - this.state = 1807; + this.state = 1811; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1808; + this.state = 1812; this.generated_when(); - this.state = 1809; + this.state = 1813; this.match(PostgreSqlParser.KW_AS); - this.state = 1810; + this.state = 1814; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1819; + this.state = 1823; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1811; + this.state = 1815; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1813; + this.state = 1817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1812; + this.state = 1816; this.seqoptelem(); } } - this.state = 1815; + this.state = 1819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 1817; + this.state = 1821; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -8926,50 +8928,50 @@ export class PostgreSqlParser extends SQLParserBase { case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1821; + this.state = 1825; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1823; + this.state = 1827; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: { - this.state = 1822; + this.state = 1826; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1825; + this.state = 1829; this.column_name(); - this.state = 1839; + this.state = 1843; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 1839; + this.state = 1843; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RESTART: { - this.state = 1826; + this.state = 1830; this.match(PostgreSqlParser.KW_RESTART); - this.state = 1831; + this.state = 1835; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1828; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 1827; + this.state = 1831; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 1830; + this.state = 1834; this.numericonly(); } break; @@ -8978,9 +8980,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SET: { - this.state = 1833; - this.match(PostgreSqlParser.KW_SET); this.state = 1837; + this.match(PostgreSqlParser.KW_SET); + this.state = 1841; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: @@ -8994,15 +8996,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SEQUENCE: case PostgreSqlParser.KW_START: { - this.state = 1834; + this.state = 1838; this.seqoptelem(); } break; case PostgreSqlParser.KW_GENERATED: { - this.state = 1835; + this.state = 1839; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1836; + this.state = 1840; this.generated_when(); } break; @@ -9019,7 +9021,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1841; + this.state = 1845; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 110, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -9028,30 +9030,30 @@ export class PostgreSqlParser extends SQLParserBase { case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1843; + this.state = 1847; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1845; + this.state = 1849; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1844; + this.state = 1848; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1847; + this.state = 1851; this.column_name(); - this.state = 1848; + this.state = 1852; this.match(PostgreSqlParser.KW_DROP); - this.state = 1849; + this.state = 1853; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1851; + this.state = 1855; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1850; + this.state = 1854; this.opt_if_exists(); } break; @@ -9061,54 +9063,54 @@ export class PostgreSqlParser extends SQLParserBase { case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1853; + this.state = 1857; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1855; + this.state = 1859; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1854; + this.state = 1858; this.match(PostgreSqlParser.KW_COLUMN); } break; } - this.state = 1857; + this.state = 1861; this.column_name(); - this.state = 1860; + this.state = 1864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1858; + this.state = 1862; this.match(PostgreSqlParser.KW_SET); - this.state = 1859; + this.state = 1863; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1862; + this.state = 1866; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1863; + this.state = 1867; this.typename(); - this.state = 1865; + this.state = 1869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1864; + this.state = 1868; this.opt_collate_clause(); } } - this.state = 1869; + this.state = 1873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1867; + this.state = 1871; this.match(PostgreSqlParser.KW_USING); - this.state = 1868; + this.state = 1872; this.expression(); } } @@ -9118,7 +9120,7 @@ export class PostgreSqlParser extends SQLParserBase { case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1871; + this.state = 1875; this.alter_generic_options(); } break; @@ -9142,26 +9144,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Alter_column_defaultContext(this.context, this.state); this.enterRule(localContext, 94, PostgreSqlParser.RULE_alter_column_default); try { - this.state = 1879; + this.state = 1883; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1874; + this.state = 1878; this.match(PostgreSqlParser.KW_SET); - this.state = 1875; + this.state = 1879; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 1876; + this.state = 1880; this.expression(); } break; case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1877; + this.state = 1881; this.match(PostgreSqlParser.KW_DROP); - this.state = 1878; + this.state = 1882; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -9190,7 +9192,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1881; + this.state = 1885; _la = this.tokenStream.LA(1); if(!(_la === 150 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -9221,9 +9223,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1883; + this.state = 1887; this.match(PostgreSqlParser.KW_COLLATE); - this.state = 1884; + this.state = 1888; this.any_name(); } } @@ -9248,27 +9250,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1886; + this.state = 1890; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1887; + this.state = 1891; this.reloption_elem(); - this.state = 1892; + this.state = 1896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1888; + this.state = 1892; this.match(PostgreSqlParser.COMMA); - this.state = 1889; + this.state = 1893; this.reloption_elem(); } } - this.state = 1894; + this.state = 1898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1895; + this.state = 1899; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -9292,9 +9294,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1897; + this.state = 1901; this.match(PostgreSqlParser.KW_WITH); - this.state = 1898; + this.state = 1902; this.reloptions(); } } @@ -9318,24 +9320,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1900; + this.state = 1904; this.collabel(); - this.state = 1905; + this.state = 1909; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: { - this.state = 1901; + this.state = 1905; this.match(PostgreSqlParser.EQUAL); - this.state = 1902; + this.state = 1906; this.def_arg(); } break; case PostgreSqlParser.DOT: { - this.state = 1903; + this.state = 1907; this.match(PostgreSqlParser.DOT); - this.state = 1904; + this.state = 1908; this.def_elem(); } break; @@ -9365,68 +9367,68 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionboundspecContext(this.context, this.state); this.enterRule(localContext, 106, PostgreSqlParser.RULE_partitionboundspec); try { - this.state = 1929; + this.state = 1933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1907; + this.state = 1911; this.match(PostgreSqlParser.KW_FOR); - this.state = 1908; + this.state = 1912; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1909; + this.state = 1913; this.match(PostgreSqlParser.KW_WITH); - this.state = 1910; + this.state = 1914; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1911; + this.state = 1915; this.match(PostgreSqlParser.KW_MODULUS); - this.state = 1912; + this.state = 1916; this.match(PostgreSqlParser.Integral); - this.state = 1913; + this.state = 1917; this.match(PostgreSqlParser.COMMA); - this.state = 1914; + this.state = 1918; this.match(PostgreSqlParser.KW_REMAINDER); - this.state = 1915; + this.state = 1919; this.match(PostgreSqlParser.Integral); - this.state = 1916; + this.state = 1920; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1917; + this.state = 1921; this.match(PostgreSqlParser.KW_FOR); - this.state = 1918; + this.state = 1922; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1919; + this.state = 1923; this.match(PostgreSqlParser.KW_IN); - this.state = 1920; + this.state = 1924; this.execute_param_clause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1921; + this.state = 1925; this.match(PostgreSqlParser.KW_FOR); - this.state = 1922; + this.state = 1926; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1923; + this.state = 1927; this.match(PostgreSqlParser.KW_FROM); - this.state = 1924; + this.state = 1928; this.execute_param_clause(); - this.state = 1925; + this.state = 1929; this.match(PostgreSqlParser.KW_TO); - this.state = 1926; + this.state = 1930; this.execute_param_clause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1928; + this.state = 1932; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -9453,27 +9455,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1931; + this.state = 1935; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1932; + this.state = 1936; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1933; + this.state = 1937; this.any_name(); - this.state = 1934; + this.state = 1938; this.alter_type_cmd(); - this.state = 1939; + this.state = 1943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1935; + this.state = 1939; this.match(PostgreSqlParser.COMMA); - this.state = 1936; + this.state = 1940; this.alter_type_cmd(); } } - this.state = 1941; + this.state = 1945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9498,24 +9500,24 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 110, PostgreSqlParser.RULE_alter_type_cmd); let _la: number; try { - this.state = 1972; + this.state = 1976; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: this.enterOuterAlt(localContext, 1); { - this.state = 1942; + this.state = 1946; this.match(PostgreSqlParser.KW_ADD); - this.state = 1943; + this.state = 1947; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1944; + this.state = 1948; this.tablefuncelement(); - this.state = 1946; + this.state = 1950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 123, this.context) ) { case 1: { - this.state = 1945; + this.state = 1949; this.opt_drop_behavior(); } break; @@ -9525,28 +9527,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1948; + this.state = 1952; this.match(PostgreSqlParser.KW_DROP); - this.state = 1949; + this.state = 1953; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1951; + this.state = 1955; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: { - this.state = 1950; + this.state = 1954; this.opt_if_exists(); } break; } - this.state = 1953; + this.state = 1957; this.colid(); - this.state = 1955; + this.state = 1959; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: { - this.state = 1954; + this.state = 1958; this.opt_drop_behavior(); } break; @@ -9556,44 +9558,44 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 3); { - this.state = 1957; + this.state = 1961; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1958; + this.state = 1962; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1959; + this.state = 1963; this.colid(); - this.state = 1962; + this.state = 1966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1960; + this.state = 1964; this.match(PostgreSqlParser.KW_SET); - this.state = 1961; + this.state = 1965; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1964; + this.state = 1968; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1965; + this.state = 1969; this.typename(); - this.state = 1967; + this.state = 1971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1966; + this.state = 1970; this.opt_collate_clause(); } } - this.state = 1970; + this.state = 1974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1969; + this.state = 1973; this.opt_drop_behavior(); } break; @@ -9624,9 +9626,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1974; + this.state = 1978; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 1977; + this.state = 1981; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -10024,13 +10026,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1975; + this.state = 1979; this.colid(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1976; + this.state = 1980; this.match(PostgreSqlParser.KW_ALL); } break; @@ -10058,37 +10060,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 114, PostgreSqlParser.RULE_copystmt); let _la: number; try { - this.state = 2028; + this.state = 2032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1979; + this.state = 1983; this.match(PostgreSqlParser.KW_COPY); - this.state = 1981; + this.state = 1985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 1980; + this.state = 1984; this.match(PostgreSqlParser.KW_BINARY); } } - this.state = 1983; + this.state = 1987; this.table_name(); - this.state = 1985; + this.state = 1989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1984; + this.state = 1988; this.opt_column_list(); } } - this.state = 1987; + this.state = 1991; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -10097,17 +10099,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1989; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1988; + this.state = 1992; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1994; + this.state = 1998; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -10115,65 +10117,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1991; + this.state = 1995; this.sconst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1992; + this.state = 1996; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1993; + this.state = 1997; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2001; + this.state = 2005; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1997; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1996; + this.state = 2000; this.match(PostgreSqlParser.KW_USING); } } - this.state = 1999; + this.state = 2003; this.match(PostgreSqlParser.KW_DELIMITERS); - this.state = 2000; + this.state = 2004; this.sconst(); } break; } - this.state = 2004; + this.state = 2008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 2003; + this.state = 2007; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2006; + this.state = 2010; this.copy_options(); - this.state = 2008; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2007; + this.state = 2011; this.where_clause(); } } @@ -10183,27 +10185,27 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2010; + this.state = 2014; this.match(PostgreSqlParser.KW_COPY); - this.state = 2011; + this.state = 2015; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2012; + this.state = 2016; this.preparablestmt(); - this.state = 2013; + this.state = 2017; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2014; + this.state = 2018; this.match(PostgreSqlParser.KW_TO); - this.state = 2016; + this.state = 2020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 2015; + this.state = 2019; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 2021; + this.state = 2025; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -10211,36 +10213,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2018; + this.state = 2022; this.sconst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 2019; + this.state = 2023; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 2020; + this.state = 2024; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2024; + this.state = 2028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { case 1: { - this.state = 2023; + this.state = 2027; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2026; + this.state = 2030; this.copy_options(); } break; @@ -10266,36 +10268,36 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2069; + this.state = 2073; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 2059; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2053; + this.state = 2057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 2030; + this.state = 2034; this.match(PostgreSqlParser.KW_BINARY); } break; case 2: { - this.state = 2031; + this.state = 2035; this.match(PostgreSqlParser.KW_FREEZE); } break; case 3: { - this.state = 2032; + this.state = 2036; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 183 || _la === 197 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -10304,50 +10306,50 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2034; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2033; + this.state = 2037; this.match(PostgreSqlParser.KW_AS); } } - this.state = 2036; + this.state = 2040; this.sconst(); } break; case 4: { - this.state = 2037; + this.state = 2041; this.match(PostgreSqlParser.KW_CSV); } break; case 5: { - this.state = 2038; + this.state = 2042; this.match(PostgreSqlParser.KW_HEADER); } break; case 6: { - this.state = 2039; + this.state = 2043; this.match(PostgreSqlParser.KW_FORCE); - this.state = 2040; + this.state = 2044; this.match(PostgreSqlParser.KW_QUOTE); - this.state = 2043; + this.state = 2047; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 2041; + this.state = 2045; this.column_list(); } break; case 2: { - this.state = 2042; + this.state = 2046; this.match(PostgreSqlParser.STAR); } break; @@ -10356,36 +10358,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 7: { - this.state = 2045; + this.state = 2049; this.match(PostgreSqlParser.KW_FORCE); - this.state = 2047; + this.state = 2051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2046; + this.state = 2050; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2049; + this.state = 2053; this.match(PostgreSqlParser.KW_NULL); - this.state = 2050; + this.state = 2054; this.column_list(); } break; case 8: { - this.state = 2051; + this.state = 2055; this.match(PostgreSqlParser.KW_ENCODING); - this.state = 2052; + this.state = 2056; this.sconst(); } break; } } } - this.state = 2057; + this.state = 2061; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); } @@ -10394,27 +10396,27 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2058; + this.state = 2062; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2059; + this.state = 2063; this.copy_generic_opt_elem(); - this.state = 2064; + this.state = 2068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2060; + this.state = 2064; this.match(PostgreSqlParser.COMMA); - this.state = 2061; + this.state = 2065; this.copy_generic_opt_elem(); } } - this.state = 2066; + this.state = 2070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2067; + this.state = 2071; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10441,9 +10443,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2071; + this.state = 2075; this.collabel(); - this.state = 2086; + this.state = 2090; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -10865,7 +10867,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2072; + this.state = 2076; this.opt_boolean_or_string(); } break; @@ -10874,39 +10876,39 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 2073; + this.state = 2077; this.numericonly(); } break; case PostgreSqlParser.STAR: { - this.state = 2074; + this.state = 2078; this.match(PostgreSqlParser.STAR); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2075; + this.state = 2079; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2076; + this.state = 2080; this.opt_boolean_or_string_column(); - this.state = 2081; + this.state = 2085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2077; + this.state = 2081; this.match(PostgreSqlParser.COMMA); - this.state = 2078; + this.state = 2082; this.opt_boolean_or_string_column(); } } - this.state = 2083; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2084; + this.state = 2088; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10940,107 +10942,107 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2088; + this.state = 2092; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2090; + this.state = 2094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2089; + this.state = 2093; this.opttemp(); } } - this.state = 2092; + this.state = 2096; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2094; + this.state = 2098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 2093; + this.state = 2097; this.opt_if_not_exists(); } break; } - this.state = 2096; + this.state = 2100; this.table_name_create(); - this.state = 2162; + this.state = 2166; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2097; + this.state = 2101; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2099; + this.state = 2103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 2098; + this.state = 2102; this.tableelementlist(); } } - this.state = 2101; + this.state = 2105; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2103; + this.state = 2107; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 2102; + this.state = 2106; this.optinherit(); } break; } - this.state = 2106; + this.state = 2110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 2105; + this.state = 2109; this.partitionspec(); } break; } - this.state = 2109; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2108; + this.state = 2112; this.table_access_method_clause(); } } - this.state = 2112; + this.state = 2116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 2111; + this.state = 2115; this.optwith(); } break; } - this.state = 2115; + this.state = 2119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2114; + this.state = 2118; this.oncommitoption(); } } - this.state = 2118; + this.state = 2122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 2117; + this.state = 2121; this.opttablespace(); } break; @@ -11049,66 +11051,66 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_OF: { - this.state = 2120; + this.state = 2124; this.match(PostgreSqlParser.KW_OF); - this.state = 2121; + this.state = 2125; this.any_name(); - this.state = 2123; + this.state = 2127; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 2122; + this.state = 2126; this.opttypedtableelementlist(); } break; } - this.state = 2126; + this.state = 2130; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 2125; + this.state = 2129; this.partitionspec(); } break; } - this.state = 2129; + this.state = 2133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2128; + this.state = 2132; this.table_access_method_clause(); } } - this.state = 2132; + this.state = 2136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 2131; + this.state = 2135; this.optwith(); } break; } - this.state = 2135; + this.state = 2139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2134; + this.state = 2138; this.oncommitoption(); } } - this.state = 2138; + this.state = 2142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 2137; + this.state = 2141; this.opttablespace(); } break; @@ -11117,70 +11119,70 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_PARTITION: { - this.state = 2140; + this.state = 2144; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2141; + this.state = 2145; this.match(PostgreSqlParser.KW_OF); - this.state = 2142; + this.state = 2146; this.qualified_name(); - this.state = 2144; + this.state = 2148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2143; + this.state = 2147; this.opttypedtableelementlist(); } } - this.state = 2146; + this.state = 2150; this.partitionboundspec(); - this.state = 2148; + this.state = 2152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 2147; + this.state = 2151; this.partitionspec(); } break; } - this.state = 2151; + this.state = 2155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2150; + this.state = 2154; this.table_access_method_clause(); } } - this.state = 2154; + this.state = 2158; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 2153; + this.state = 2157; this.optwith(); } break; } - this.state = 2157; + this.state = 2161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2156; + this.state = 2160; this.oncommitoption(); } } - this.state = 2160; + this.state = 2164; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 2159; + this.state = 2163; this.opttablespace(); } break; @@ -11211,20 +11213,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 122, PostgreSqlParser.RULE_opttemp); let _la: number; try { - this.state = 2169; + this.state = 2173; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEMPORARY: this.enterOuterAlt(localContext, 1); { - this.state = 2164; + this.state = 2168; this.match(PostgreSqlParser.KW_TEMPORARY); } break; case PostgreSqlParser.KW_TEMP: this.enterOuterAlt(localContext, 2); { - this.state = 2165; + this.state = 2169; this.match(PostgreSqlParser.KW_TEMP); } break; @@ -11232,7 +11234,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 3); { - this.state = 2166; + this.state = 2170; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11241,7 +11243,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2167; + this.state = 2171; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -11255,7 +11257,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNLOGGED: this.enterOuterAlt(localContext, 4); { - this.state = 2168; + this.state = 2172; this.match(PostgreSqlParser.KW_UNLOGGED); } break; @@ -11284,27 +11286,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2175; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2172; + this.state = 2176; this.typedtableelement(); - this.state = 2177; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2173; + this.state = 2177; this.match(PostgreSqlParser.COMMA); - this.state = 2174; + this.state = 2178; this.typedtableelement(); } } - this.state = 2179; + this.state = 2183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2180; + this.state = 2184; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -11329,21 +11331,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2182; + this.state = 2186; this.tableelement(); - this.state = 2187; + this.state = 2191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2183; + this.state = 2187; this.match(PostgreSqlParser.COMMA); - this.state = 2184; + this.state = 2188; this.tableelement(); } } - this.state = 2189; + this.state = 2193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11368,49 +11370,49 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 128, PostgreSqlParser.RULE_tableelement); let _la: number; try { - this.state = 2205; + this.state = 2209; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2192; + this.state = 2196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2190; + this.state = 2194; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2191; + this.state = 2195; this.colid(); } } - this.state = 2194; + this.state = 2198; this.constraintelem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2195; + this.state = 2199; this.column_def(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2196; + this.state = 2200; this.match(PostgreSqlParser.KW_LIKE); - this.state = 2197; + this.state = 2201; this.qualified_name(); - this.state = 2202; + this.state = 2206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 200 || _la === 224) { { { - this.state = 2198; + this.state = 2202; _la = this.tokenStream.LA(1); if(!(_la === 200 || _la === 224)) { this.errorHandler.recoverInline(this); @@ -11419,11 +11421,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2199; + this.state = 2203; this.tablelikeoption(); } } - this.state = 2204; + this.state = 2208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11450,37 +11452,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 130, PostgreSqlParser.RULE_typedtableelement); let _la: number; try { - this.state = 2223; + this.state = 2227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2207; + this.state = 2211; this.column_name_create(); - this.state = 2210; + this.state = 2214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2208; + this.state = 2212; this.match(PostgreSqlParser.KW_WITH); - this.state = 2209; + this.state = 2213; this.match(PostgreSqlParser.KW_OPTIONS); } } - this.state = 2215; + this.state = 2219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2059) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 2097923) !== 0) || _la === 438) { { { - this.state = 2212; + this.state = 2216; this.colconstraint(); } } - this.state = 2217; + this.state = 2221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11489,19 +11491,19 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2220; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2218; + this.state = 2222; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2219; + this.state = 2223; this.colid(); } } - this.state = 2222; + this.state = 2226; this.constraintelem(); } break; @@ -11529,63 +11531,63 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2225; + this.state = 2229; this.column_name_create(); - this.state = 2226; + this.state = 2230; localContext._colType = this.typename(); - this.state = 2228; + this.state = 2232; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: { - this.state = 2227; + this.state = 2231; this.create_generic_options(); } break; } - this.state = 2239; + this.state = 2243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 2230; + this.state = 2234; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 2237; + this.state = 2241; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 2231; + this.state = 2235; this.match(PostgreSqlParser.KW_PLAIN); } break; case 2: { - this.state = 2232; + this.state = 2236; this.match(PostgreSqlParser.KW_EXTERNAL); } break; case 3: { - this.state = 2233; + this.state = 2237; this.match(PostgreSqlParser.KW_EXTENDED); } break; case 4: { - this.state = 2234; + this.state = 2238; this.match(PostgreSqlParser.KW_MAIN); } break; case 5: { - this.state = 2235; + this.state = 2239; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 6: { - this.state = 2236; + this.state = 2240; this.colid(); } break; @@ -11593,53 +11595,53 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 2243; + this.state = 2247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 543) { { - this.state = 2241; + this.state = 2245; this.match(PostgreSqlParser.KW_COMPRESSION); - this.state = 2242; + this.state = 2246; this.colid(); } } - this.state = 2246; + this.state = 2250; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 2245; + this.state = 2249; this.opt_collate_clause(); } break; } - this.state = 2250; + this.state = 2254; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: { - this.state = 2248; + this.state = 2252; this.match(PostgreSqlParser.KW_WITH); - this.state = 2249; + this.state = 2253; this.match(PostgreSqlParser.KW_OPTIONS); } break; } - this.state = 2255; + this.state = 2259; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2252; + this.state = 2256; this.colconstraint(); } } } - this.state = 2257; + this.state = 2261; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); } @@ -11666,48 +11668,48 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2260; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2258; + this.state = 2262; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2259; + this.state = 2263; this.colid(); } } - this.state = 2262; + this.state = 2266; this.colconstraintelem(); - this.state = 2267; + this.state = 2271; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: { - this.state = 2264; + this.state = 2268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2263; + this.state = 2267; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2266; + this.state = 2270; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; } - this.state = 2271; + this.state = 2275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 2269; + this.state = 2273; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 2270; + this.state = 2274; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -11740,47 +11742,47 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 136, PostgreSqlParser.RULE_colconstraintelem); let _la: number; try { - this.state = 2353; + this.state = 2357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2273; + this.state = 2277; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2276; + this.state = 2280; this.match(PostgreSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2277; + this.state = 2281; this.match(PostgreSqlParser.KW_UNIQUE); - this.state = 2279; + this.state = 2283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { case 1: { - this.state = 2278; + this.state = 2282; this.opt_definition(); } break; } - this.state = 2282; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2281; + this.state = 2285; this.optconstablespace(); } } @@ -11790,59 +11792,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2284; + this.state = 2288; this.match(PostgreSqlParser.KW_UNIQUE); - this.state = 2290; + this.state = 2294; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 2285; + this.state = 2289; this.match(PostgreSqlParser.KW_NULLS); - this.state = 2287; + this.state = 2291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2286; + this.state = 2290; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2289; + this.state = 2293; this.match(PostgreSqlParser.KW_DISTINCT); } break; } { - this.state = 2294; + this.state = 2298; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: { - this.state = 2292; + this.state = 2296; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2293; + this.state = 2297; this.index_params(); } break; } - this.state = 2297; + this.state = 2301; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2296; + this.state = 2300; this.with_clause(); } break; } - this.state = 2300; + this.state = 2304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2299; + this.state = 2303; this.optconstablespace(); } } @@ -11853,26 +11855,26 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2302; + this.state = 2306; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2303; + this.state = 2307; this.match(PostgreSqlParser.KW_KEY); - this.state = 2305; + this.state = 2309; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { - this.state = 2304; + this.state = 2308; this.opt_definition(); } break; } - this.state = 2308; + this.state = 2312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2307; + this.state = 2311; this.optconstablespace(); } } @@ -11882,22 +11884,22 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2310; + this.state = 2314; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2311; + this.state = 2315; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2312; + this.state = 2316; this.expression(); - this.state = 2313; + this.state = 2317; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2316; + this.state = 2320; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { case 1: { - this.state = 2314; + this.state = 2318; this.match(PostgreSqlParser.KW_NO); - this.state = 2315; + this.state = 2319; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -11907,50 +11909,50 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2318; + this.state = 2322; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 2319; + this.state = 2323; this.primaryExpression(0); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2320; + this.state = 2324; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 2321; + this.state = 2325; this.generated_when(); - this.state = 2322; + this.state = 2326; this.match(PostgreSqlParser.KW_AS); - this.state = 2339; + this.state = 2343; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IDENTITY: { - this.state = 2323; + this.state = 2327; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 2332; + this.state = 2336; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 2324; + this.state = 2328; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2326; + this.state = 2330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2325; + this.state = 2329; this.seqoptelem(); } } - this.state = 2328; + this.state = 2332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 2330; + this.state = 2334; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -11959,13 +11961,13 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2334; + this.state = 2338; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2335; + this.state = 2339; this.expression(); - this.state = 2336; + this.state = 2340; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2337; + this.state = 2341; this.match(PostgreSqlParser.KW_STORED); } break; @@ -11977,36 +11979,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2341; + this.state = 2345; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2342; + this.state = 2346; this.qualified_name(); - this.state = 2344; + this.state = 2348; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2343; + this.state = 2347; this.opt_column_list(); } break; } - this.state = 2347; + this.state = 2351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: { - this.state = 2346; + this.state = 2350; this.key_match(); } break; } - this.state = 2350; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2349; + this.state = 2353; this.key_actions(); } } @@ -12016,7 +12018,7 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2352; + this.state = 2356; this.opt_collate_clause(); } break; @@ -12040,22 +12042,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Generated_whenContext(this.context, this.state); this.enterRule(localContext, 138, PostgreSqlParser.RULE_generated_when); try { - this.state = 2358; + this.state = 2362; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALWAYS: this.enterOuterAlt(localContext, 1); { - this.state = 2355; + this.state = 2359; this.match(PostgreSqlParser.KW_ALWAYS); } break; case PostgreSqlParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 2356; + this.state = 2360; this.match(PostgreSqlParser.KW_BY); - this.state = 2357; + this.state = 2361; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -12084,7 +12086,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2360; + this.state = 2364; _la = this.tokenStream.LA(1); if(!(_la === 30 || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 524321) !== 0) || _la === 219 || _la === 227 || _la === 342 || _la === 345 || _la === 438)) { this.errorHandler.recoverInline(this); @@ -12115,33 +12117,33 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2458; + this.state = 2462; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 1); { - this.state = 2362; + this.state = 2366; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2363; + this.state = 2367; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2364; + this.state = 2368; this.expression(); - this.state = 2365; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 2369; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2373; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2366; + this.state = 2370; this.constraintattributeElem(); } } } - this.state = 2371; + this.state = 2375; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); } @@ -12151,21 +12153,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2375; + this.state = 2379; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UNIQUE: { - this.state = 2372; + this.state = 2376; this.match(PostgreSqlParser.KW_UNIQUE); } break; case PostgreSqlParser.KW_PRIMARY: { { - this.state = 2373; + this.state = 2377; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2374; + this.state = 2378; this.match(PostgreSqlParser.KW_KEY); } } @@ -12173,56 +12175,56 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2400; + this.state = 2404; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2377; + this.state = 2381; this.opt_column_list(); - this.state = 2379; + this.state = 2383; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 2378; + this.state = 2382; this.opt_c_include(); } break; } - this.state = 2382; + this.state = 2386; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 2381; + this.state = 2385; this.opt_definition(); } break; } - this.state = 2385; + this.state = 2389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2384; + this.state = 2388; this.optconstablespace(); } } - this.state = 2390; + this.state = 2394; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2387; + this.state = 2391; this.constraintattributeElem(); } } } - this.state = 2392; + this.state = 2396; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } @@ -12230,21 +12232,21 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_USING: { - this.state = 2393; - this.existingindex(); this.state = 2397; + this.existingindex(); + this.state = 2401; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2394; + this.state = 2398; this.constraintattributeElem(); } } } - this.state = 2399; + this.state = 2403; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); } @@ -12258,99 +12260,99 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 3); { - this.state = 2402; + this.state = 2406; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 2404; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2403; + this.state = 2407; this.table_access_method_clause(); } } - this.state = 2406; + this.state = 2410; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2407; + this.state = 2411; this.exclusionconstraintelem(); - this.state = 2412; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2408; + this.state = 2412; this.match(PostgreSqlParser.COMMA); - this.state = 2409; + this.state = 2413; this.exclusionconstraintelem(); } } - this.state = 2414; + this.state = 2418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2415; + this.state = 2419; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2417; + this.state = 2421; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 2416; + this.state = 2420; this.opt_c_include(); } break; } - this.state = 2420; + this.state = 2424; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 2419; + this.state = 2423; this.opt_definition(); } break; } - this.state = 2423; + this.state = 2427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2422; + this.state = 2426; this.optconstablespace(); } } - this.state = 2430; + this.state = 2434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2425; + this.state = 2429; this.match(PostgreSqlParser.KW_WHERE); - this.state = 2426; + this.state = 2430; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2427; + this.state = 2431; this.expression(); - this.state = 2428; + this.state = 2432; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 2435; + this.state = 2439; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2432; + this.state = 2436; this.constraintattributeElem(); } } } - this.state = 2437; + this.state = 2441; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); } @@ -12359,59 +12361,59 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOREIGN: this.enterOuterAlt(localContext, 4); { - this.state = 2438; + this.state = 2442; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2439; + this.state = 2443; this.match(PostgreSqlParser.KW_KEY); - this.state = 2440; + this.state = 2444; this.opt_column_list(); - this.state = 2441; + this.state = 2445; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2442; + this.state = 2446; this.qualified_name(); - this.state = 2444; + this.state = 2448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { - this.state = 2443; + this.state = 2447; this.opt_column_list(); } break; } - this.state = 2447; + this.state = 2451; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 2446; + this.state = 2450; this.key_match(); } break; } - this.state = 2450; + this.state = 2454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2449; + this.state = 2453; this.key_actions(); } } - this.state = 2455; + this.state = 2459; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2452; + this.state = 2456; this.constraintattributeElem(); } } } - this.state = 2457; + this.state = 2461; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } @@ -12441,11 +12443,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2460; + this.state = 2464; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2461; + this.state = 2465; this.column_list(); - this.state = 2462; + this.state = 2466; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12470,27 +12472,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2464; + this.state = 2468; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2465; + this.state = 2469; this.column_name_create(); - this.state = 2470; + this.state = 2474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2466; + this.state = 2470; this.match(PostgreSqlParser.COMMA); - this.state = 2467; + this.state = 2471; this.column_name_create(); } } - this.state = 2472; + this.state = 2476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2473; + this.state = 2477; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12515,23 +12517,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2475; + this.state = 2479; this.column_name(); - this.state = 2480; + this.state = 2484; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2476; + this.state = 2480; this.match(PostgreSqlParser.COMMA); - this.state = 2477; + this.state = 2481; this.column_name(); } } } - this.state = 2482; + this.state = 2486; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); } @@ -12557,9 +12559,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2483; + this.state = 2487; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2484; + this.state = 2488; this.opt_column_list(); } } @@ -12584,9 +12586,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2486; + this.state = 2490; this.match(PostgreSqlParser.KW_MATCH); - this.state = 2487; + this.state = 2491; _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 284 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -12617,28 +12619,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2489; + this.state = 2493; this.index_elem(); - this.state = 2490; + this.state = 2494; this.match(PostgreSqlParser.KW_WITH); - this.state = 2497; + this.state = 2501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { case 1: { - this.state = 2491; + this.state = 2495; this.any_operator(); } break; case 2: { - this.state = 2492; + this.state = 2496; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2493; + this.state = 2497; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2494; + this.state = 2498; this.any_operator(); - this.state = 2495; + this.state = 2499; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -12664,20 +12666,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 156, PostgreSqlParser.RULE_key_actions); let _la: number; try { - this.state = 2507; + this.state = 2511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2499; + this.state = 2503; this.key_update(); - this.state = 2501; + this.state = 2505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2500; + this.state = 2504; this.key_delete(); } } @@ -12687,14 +12689,14 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2503; + this.state = 2507; this.key_delete(); - this.state = 2505; + this.state = 2509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2504; + this.state = 2508; this.key_update(); } } @@ -12723,11 +12725,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2509; + this.state = 2513; this.match(PostgreSqlParser.KW_ON); - this.state = 2510; + this.state = 2514; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2511; + this.state = 2515; this.key_action(); } } @@ -12751,11 +12753,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2513; + this.state = 2517; this.match(PostgreSqlParser.KW_ON); - this.state = 2514; + this.state = 2518; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2515; + this.state = 2519; this.key_action(); } } @@ -12778,38 +12780,38 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 162, PostgreSqlParser.RULE_key_action); let _la: number; try { - this.state = 2526; + this.state = 2530; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 1); { - this.state = 2517; + this.state = 2521; this.match(PostgreSqlParser.KW_NO); - this.state = 2518; + this.state = 2522; this.match(PostgreSqlParser.KW_ACTION); } break; case PostgreSqlParser.KW_RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 2519; + this.state = 2523; this.match(PostgreSqlParser.KW_RESTRICT); } break; case PostgreSqlParser.KW_CASCADE: this.enterOuterAlt(localContext, 3); { - this.state = 2520; + this.state = 2524; this.match(PostgreSqlParser.KW_CASCADE); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2521; + this.state = 2525; this.match(PostgreSqlParser.KW_SET); - this.state = 2522; + this.state = 2526; _la = this.tokenStream.LA(1); if(!(_la === 53 || _la === 78)) { this.errorHandler.recoverInline(this); @@ -12818,12 +12820,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2524; + this.state = 2528; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 2523; + this.state = 2527; this.column_list(); } break; @@ -12854,13 +12856,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2528; + this.state = 2532; this.match(PostgreSqlParser.KW_INHERITS); - this.state = 2529; + this.state = 2533; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2530; + this.state = 2534; this.qualified_name_list(); - this.state = 2531; + this.state = 2535; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12885,33 +12887,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2533; + this.state = 2537; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2534; + this.state = 2538; this.match(PostgreSqlParser.KW_BY); - this.state = 2535; + this.state = 2539; this.colid(); - this.state = 2536; + this.state = 2540; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2537; + this.state = 2541; this.part_elem(); - this.state = 2542; + this.state = 2546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2538; + this.state = 2542; this.match(PostgreSqlParser.COMMA); - this.state = 2539; + this.state = 2543; this.part_elem(); } } - this.state = 2544; + this.state = 2548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2545; + this.state = 2549; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12936,50 +12938,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2553; + this.state = 2557; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 2547; + this.state = 2551; this.column_name(); } break; case 2: { - this.state = 2548; + this.state = 2552; this.func_expr_windowless(); } break; case 3: { { - this.state = 2549; + this.state = 2553; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2550; + this.state = 2554; this.expression(); - this.state = 2551; + this.state = 2555; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 2556; + this.state = 2560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 2555; + this.state = 2559; this.opt_collate_clause(); } } - this.state = 2559; + this.state = 2563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 2558; + this.state = 2562; this.any_name(); } } @@ -13006,9 +13008,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2561; + this.state = 2565; this.match(PostgreSqlParser.KW_USING); - this.state = 2562; + this.state = 2566; this.colid(); } } @@ -13031,22 +13033,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 172, PostgreSqlParser.RULE_optwith); let _la: number; try { - this.state = 2568; + this.state = 2572; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2564; + this.state = 2568; this.match(PostgreSqlParser.KW_WITH); - this.state = 2565; + this.state = 2569; this.reloptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2566; + this.state = 2570; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -13055,7 +13057,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2567; + this.state = 2571; this.match(PostgreSqlParser.KW_OIDS); } break; @@ -13081,32 +13083,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2570; + this.state = 2574; this.match(PostgreSqlParser.KW_ON); - this.state = 2571; + this.state = 2575; this.match(PostgreSqlParser.KW_COMMIT); - this.state = 2577; + this.state = 2581; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: { - this.state = 2572; + this.state = 2576; this.match(PostgreSqlParser.KW_DROP); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 2573; + this.state = 2577; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2574; + this.state = 2578; this.match(PostgreSqlParser.KW_ROWS); } break; case PostgreSqlParser.KW_PRESERVE: { - this.state = 2575; + this.state = 2579; this.match(PostgreSqlParser.KW_PRESERVE); - this.state = 2576; + this.state = 2580; this.match(PostgreSqlParser.KW_ROWS); } break; @@ -13135,9 +13137,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2579; + this.state = 2583; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 2580; + this.state = 2584; this.tablespace_name(); } } @@ -13161,11 +13163,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2582; + this.state = 2586; this.match(PostgreSqlParser.KW_USING); - this.state = 2583; + this.state = 2587; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2584; + this.state = 2588; this.opttablespace(); } } @@ -13189,11 +13191,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2586; + this.state = 2590; this.match(PostgreSqlParser.KW_USING); - this.state = 2587; + this.state = 2591; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2588; + this.state = 2592; this.colid(); } } @@ -13218,62 +13220,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2590; + this.state = 2594; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2591; + this.state = 2595; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2596; + this.state = 2600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 2593; + this.state = 2597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2592; + this.state = 2596; this.opt_if_not_exists(); } break; } - this.state = 2595; + this.state = 2599; this.any_name(); } } - this.state = 2599; + this.state = 2603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2598; + this.state = 2602; this.opt_column_list(); } } - this.state = 2601; + this.state = 2605; this.match(PostgreSqlParser.KW_ON); - this.state = 2611; + this.state = 2615; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2602; + this.state = 2606; this.column_expr(); - this.state = 2607; + this.state = 2611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2603; + this.state = 2607; this.match(PostgreSqlParser.COMMA); - this.state = 2604; + this.state = 2608; this.column_expr(); } } - this.state = 2609; + this.state = 2613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13281,12 +13283,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 2610; + this.state = 2614; this.expr_list(); } break; } - this.state = 2613; + this.state = 2617; this.from_clause(); } } @@ -13310,27 +13312,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2619; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2616; + this.state = 2620; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2618; + this.state = 2622; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2617; + this.state = 2621; this.opt_if_exists(); } break; } - this.state = 2620; + this.state = 2624; this.any_name(); - this.state = 2621; + this.state = 2625; this.match(PostgreSqlParser.KW_SET); - this.state = 2622; + this.state = 2626; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2623; + this.state = 2627; this.signediconst(); } } @@ -13356,42 +13358,42 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2625; + this.state = 2629; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2627; + this.state = 2631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2626; + this.state = 2630; this.opttemp(); } } - this.state = 2629; + this.state = 2633; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2631; + this.state = 2635; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2630; + this.state = 2634; this.opt_if_not_exists(); } break; } - this.state = 2633; + this.state = 2637; this.create_as_target(); - this.state = 2634; + this.state = 2638; this.match(PostgreSqlParser.KW_AS); - this.state = 2635; + this.state = 2639; this.selectstmt(); - this.state = 2637; + this.state = 2641; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2636; + this.state = 2640; this.opt_with_data(); } break; @@ -13419,54 +13421,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2639; + this.state = 2643; this.table_name_create(); - this.state = 2641; + this.state = 2645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2640; + this.state = 2644; this.opt_column_list_create(); } } - this.state = 2644; + this.state = 2648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2643; + this.state = 2647; this.table_access_method_clause(); } } - this.state = 2647; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 2646; + this.state = 2650; this.optwith(); } } - this.state = 2650; + this.state = 2654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2649; + this.state = 2653; this.oncommitoption(); } } - this.state = 2653; + this.state = 2657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2652; + this.state = 2656; this.opttablespace(); } } @@ -13493,22 +13495,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2655; - this.match(PostgreSqlParser.KW_WITH); this.state = 2659; + this.match(PostgreSqlParser.KW_WITH); + this.state = 2663; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 2656; + this.state = 2660; this.match(PostgreSqlParser.KW_DATA); } break; case PostgreSqlParser.KW_NO: { - this.state = 2657; + this.state = 2661; this.match(PostgreSqlParser.KW_NO); - this.state = 2658; + this.state = 2662; this.match(PostgreSqlParser.KW_DATA); } break; @@ -13539,84 +13541,84 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2661; + this.state = 2665; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2663; + this.state = 2667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 2662; + this.state = 2666; this.match(PostgreSqlParser.KW_UNLOGGED); } } - this.state = 2665; + this.state = 2669; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2666; + this.state = 2670; this.match(PostgreSqlParser.KW_VIEW); - this.state = 2668; + this.state = 2672; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2667; + this.state = 2671; this.opt_if_not_exists(); } break; } - this.state = 2670; + this.state = 2674; this.view_name_create(); - this.state = 2672; + this.state = 2676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2671; + this.state = 2675; this.opt_column_list_create(); } } - this.state = 2675; + this.state = 2679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2674; + this.state = 2678; this.table_access_method_clause(); } } - this.state = 2678; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2677; + this.state = 2681; this.opt_reloptions(); } } - this.state = 2681; + this.state = 2685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2680; + this.state = 2684; this.opttablespace(); } } - this.state = 2683; + this.state = 2687; this.match(PostgreSqlParser.KW_AS); - this.state = 2684; + this.state = 2688; this.selectstmt(); - this.state = 2686; + this.state = 2690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2685; + this.state = 2689; this.opt_with_data(); } break; @@ -13644,30 +13646,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2688; + this.state = 2692; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 2689; + this.state = 2693; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2690; + this.state = 2694; this.match(PostgreSqlParser.KW_VIEW); - this.state = 2692; + this.state = 2696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 2691; + this.state = 2695; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 2694; + this.state = 2698; this.view_name(); - this.state = 2696; + this.state = 2700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2695; + this.state = 2699; this.opt_with_data(); } break; @@ -13696,38 +13698,38 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2698; + this.state = 2702; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2700; + this.state = 2704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2699; + this.state = 2703; this.opttemp(); } } - this.state = 2702; + this.state = 2706; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2704; + this.state = 2708; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2703; + this.state = 2707; this.opt_if_not_exists(); } break; } - this.state = 2706; + this.state = 2710; this.qualified_name(); - this.state = 2712; + this.state = 2716; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2708; + this.state = 2712; this.errorHandler.sync(this); alternative = 1; do { @@ -13735,7 +13737,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2707; + this.state = 2711; this.seqoptelem(); } } @@ -13743,7 +13745,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2710; + this.state = 2714; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 274, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13773,23 +13775,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2714; + this.state = 2718; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2715; + this.state = 2719; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2717; + this.state = 2721; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2716; + this.state = 2720; this.opt_if_exists(); } break; } - this.state = 2719; + this.state = 2723; this.qualified_name(); - this.state = 2721; + this.state = 2725; this.errorHandler.sync(this); alternative = 1; do { @@ -13797,7 +13799,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2720; + this.state = 2724; this.seqoptelem(); } } @@ -13805,7 +13807,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2723; + this.state = 2727; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 277, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13830,29 +13832,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 200, PostgreSqlParser.RULE_seqoptelem); let _la: number; try { - this.state = 2758; + this.state = 2762; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: this.enterOuterAlt(localContext, 1); { - this.state = 2725; + this.state = 2729; this.match(PostgreSqlParser.KW_AS); - this.state = 2726; + this.state = 2730; this.simpletypename(); } break; case PostgreSqlParser.KW_CACHE: this.enterOuterAlt(localContext, 2); { - this.state = 2727; + this.state = 2731; this.match(PostgreSqlParser.KW_CACHE); - this.state = 2729; + this.state = 2733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 571 || _la === 573) { { - this.state = 2728; + this.state = 2732; this.numericonly(); } } @@ -13862,19 +13864,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_INCREMENT: this.enterOuterAlt(localContext, 3); { - this.state = 2731; + this.state = 2735; this.match(PostgreSqlParser.KW_INCREMENT); - this.state = 2733; + this.state = 2737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 2732; + this.state = 2736; this.match(PostgreSqlParser.KW_BY); } } - this.state = 2735; + this.state = 2739; this.numericonly(); } break; @@ -13882,7 +13884,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINVALUE: this.enterOuterAlt(localContext, 4); { - this.state = 2736; + this.state = 2740; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13891,16 +13893,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2737; + this.state = 2741; this.numericonly(); } break; case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 5); { - this.state = 2738; + this.state = 2742; this.match(PostgreSqlParser.KW_NO); - this.state = 2739; + this.state = 2743; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13914,65 +13916,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OWNED: this.enterOuterAlt(localContext, 6); { - this.state = 2740; + this.state = 2744; this.match(PostgreSqlParser.KW_OWNED); - this.state = 2741; + this.state = 2745; this.match(PostgreSqlParser.KW_BY); - this.state = 2742; + this.state = 2746; this.column_name(); } break; case PostgreSqlParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 7); { - this.state = 2743; + this.state = 2747; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2744; + this.state = 2748; this.match(PostgreSqlParser.KW_NAME); - this.state = 2745; + this.state = 2749; this.any_name(); } break; case PostgreSqlParser.KW_START: this.enterOuterAlt(localContext, 8); { - this.state = 2746; + this.state = 2750; this.match(PostgreSqlParser.KW_START); - this.state = 2748; + this.state = 2752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2747; + this.state = 2751; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 2750; + this.state = 2754; this.numericonly(); } break; case PostgreSqlParser.KW_RESTART: this.enterOuterAlt(localContext, 9); { - this.state = 2751; + this.state = 2755; this.match(PostgreSqlParser.KW_RESTART); - this.state = 2753; + this.state = 2757; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { - this.state = 2752; + this.state = 2756; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2756; + this.state = 2760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 571 || _la === 573) { { - this.state = 2755; + this.state = 2759; this.numericonly(); } } @@ -14002,18 +14004,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 202, PostgreSqlParser.RULE_numericonly); let _la: number; try { - this.state = 2765; + this.state = 2769; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2761; + this.state = 2765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 2760; + this.state = 2764; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -14025,14 +14027,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 2763; + this.state = 2767; this.match(PostgreSqlParser.Numeric); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2764; + this.state = 2768; this.signediconst(); } break; @@ -14059,79 +14061,79 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2767; + this.state = 2771; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2769; + this.state = 2773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 2768; + this.state = 2772; this.opt_or_replace(); } } - this.state = 2772; + this.state = 2776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 359) { { - this.state = 2771; + this.state = 2775; this.match(PostgreSqlParser.KW_TRUSTED); } } - this.state = 2775; + this.state = 2779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 2774; + this.state = 2778; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 2777; + this.state = 2781; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2778; + this.state = 2782; this.colid(); - this.state = 2791; + this.state = 2795; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2779; + this.state = 2783; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 2780; + this.state = 2784; this.any_name(); - this.state = 2783; + this.state = 2787; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: { - this.state = 2781; + this.state = 2785; this.match(PostgreSqlParser.KW_INLINE); - this.state = 2782; + this.state = 2786; this.any_name(); } break; } - this.state = 2789; + this.state = 2793; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { - this.state = 2785; + this.state = 2789; this.match(PostgreSqlParser.KW_VALIDATOR); - this.state = 2786; + this.state = 2790; this.any_name(); } break; case 2: { - this.state = 2787; + this.state = 2791; this.match(PostgreSqlParser.KW_NO); - this.state = 2788; + this.state = 2792; this.match(PostgreSqlParser.KW_VALIDATOR); } break; @@ -14162,32 +14164,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2793; + this.state = 2797; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2794; + this.state = 2798; this.opttablespace(); - this.state = 2797; + this.state = 2801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 282) { { - this.state = 2795; + this.state = 2799; this.match(PostgreSqlParser.KW_OWNER); - this.state = 2796; + this.state = 2800; this.rolespec(); } } - this.state = 2799; + this.state = 2803; this.match(PostgreSqlParser.KW_LOCATION); - this.state = 2800; + this.state = 2804; this.sconst(); - this.state = 2802; + this.state = 2806; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2801; + this.state = 2805; this.opt_reloptions(); } break; @@ -14216,53 +14218,53 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2804; + this.state = 2808; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2805; + this.state = 2809; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2807; + this.state = 2811; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { - this.state = 2806; + this.state = 2810; this.opt_if_not_exists(); } break; } - this.state = 2809; + this.state = 2813; this.colid(); - this.state = 2811; + this.state = 2815; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { - this.state = 2810; + this.state = 2814; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2820; + this.state = 2824; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2818; + this.state = 2822; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SCHEMA: { - this.state = 2813; + this.state = 2817; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 2814; + this.state = 2818; this.schema_name(); } break; case PostgreSqlParser.KW_FROM: case PostgreSqlParser.KW_VERSION: { - this.state = 2815; + this.state = 2819; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -14271,13 +14273,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2816; + this.state = 2820; this.nonreservedword_or_sconst(); } break; case PostgreSqlParser.KW_CASCADE: { - this.state = 2817; + this.state = 2821; this.match(PostgreSqlParser.KW_CASCADE); } break; @@ -14286,7 +14288,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2822; + this.state = 2826; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); } @@ -14313,27 +14315,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2823; + this.state = 2827; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2824; + this.state = 2828; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2825; + this.state = 2829; this.colid(); - this.state = 2826; + this.state = 2830; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2831; + this.state = 2835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 94) { { { - this.state = 2827; + this.state = 2831; this.match(PostgreSqlParser.KW_TO); - this.state = 2828; + this.state = 2832; this.nonreservedword_or_sconst(); } } - this.state = 2833; + this.state = 2837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14360,13 +14362,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2834; + this.state = 2838; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2835; + this.state = 2839; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2836; + this.state = 2840; this.colid(); - this.state = 2837; + this.state = 2841; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -14375,44 +14377,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2870; + this.state = 2874; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2838; + this.state = 2842; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 2839; + this.state = 2843; this.match(PostgreSqlParser.KW_FOR); - this.state = 2840; + this.state = 2844; this.typename(); - this.state = 2841; + this.state = 2845; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2842; + this.state = 2846; this.colid(); } break; case 2: { - this.state = 2844; + this.state = 2848; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 2845; + this.state = 2849; this.routine_with_argtypes(); } break; case 3: { - this.state = 2846; + this.state = 2850; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 2847; + this.state = 2851; this.procedure_with_argtypes(); } break; case 4: { - this.state = 2848; + this.state = 2852; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2849; + this.state = 2853; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -14421,31 +14423,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2850; + this.state = 2854; this.any_name(); - this.state = 2851; + this.state = 2855; this.table_access_method_clause(); } break; case 5: { - this.state = 2853; + this.state = 2857; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2854; + this.state = 2858; this.operator_with_argtypes(); } break; case 6: { - this.state = 2855; + this.state = 2859; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 2856; + this.state = 2860; this.function_with_argtypes(); } break; case 7: { - this.state = 2857; + this.state = 2861; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14454,43 +14456,43 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2858; + this.state = 2862; this.typename(); } break; case 8: { - this.state = 2859; + this.state = 2863; this.match(PostgreSqlParser.KW_CAST); - this.state = 2860; + this.state = 2864; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2861; + this.state = 2865; this.typename(); - this.state = 2862; + this.state = 2866; this.match(PostgreSqlParser.KW_AS); - this.state = 2863; + this.state = 2867; this.typename(); - this.state = 2864; + this.state = 2868; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 9: { - this.state = 2866; + this.state = 2870; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 2867; + this.state = 2871; this.aggregate_with_argtypes(); } break; case 10: { - this.state = 2868; + this.state = 2872; this.object_type_name(); } break; case 11: { - this.state = 2869; + this.state = 2873; this.object_type_any_name(); } break; @@ -14518,22 +14520,22 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2872; + this.state = 2876; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2873; + this.state = 2877; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2874; + this.state = 2878; this.match(PostgreSqlParser.KW_DATA); - this.state = 2875; + this.state = 2879; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2876; + this.state = 2880; this.colid(); - this.state = 2882; + this.state = 2886; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2878; + this.state = 2882; this.errorHandler.sync(this); alternative = 1; do { @@ -14541,7 +14543,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2877; + this.state = 2881; this.fdw_option(); } } @@ -14549,19 +14551,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2880; + this.state = 2884; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 300, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 2885; + this.state = 2889; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2884; + this.state = 2888; this.create_generic_options(); } break; @@ -14587,14 +14589,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 216, PostgreSqlParser.RULE_fdw_option); let _la: number; try { - this.state = 2893; + this.state = 2897; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HANDLER: case PostgreSqlParser.KW_VALIDATOR: this.enterOuterAlt(localContext, 1); { - this.state = 2887; + this.state = 2891; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14603,12 +14605,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2889; + this.state = 2893; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2888; + this.state = 2892; this.any_name(); } break; @@ -14618,9 +14620,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 2891; + this.state = 2895; this.match(PostgreSqlParser.KW_NO); - this.state = 2892; + this.state = 2896; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14657,50 +14659,50 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2895; + this.state = 2899; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2896; + this.state = 2900; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2897; + this.state = 2901; this.match(PostgreSqlParser.KW_DATA); - this.state = 2898; + this.state = 2902; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2899; + this.state = 2903; this.colid(); - this.state = 2913; + this.state = 2917; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2905; + this.state = 2909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215 || _la === 269 || _la === 373) { { - this.state = 2901; + this.state = 2905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2900; + this.state = 2904; this.fdw_option(); } } - this.state = 2903; + this.state = 2907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 215 || _la === 269 || _la === 373); } } - this.state = 2907; + this.state = 2911; this.alter_generic_options(); } break; case 2: { - this.state = 2909; + this.state = 2913; this.errorHandler.sync(this); alternative = 1; do { @@ -14708,7 +14710,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2908; + this.state = 2912; this.fdw_option(); } } @@ -14716,7 +14718,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2911; + this.state = 2915; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 307, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -14746,29 +14748,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2915; + this.state = 2919; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2916; + this.state = 2920; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2917; + this.state = 2921; this.generic_option_elem(); - this.state = 2922; + this.state = 2926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2918; + this.state = 2922; this.match(PostgreSqlParser.COMMA); - this.state = 2919; + this.state = 2923; this.generic_option_elem(); } } - this.state = 2924; + this.state = 2928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2925; + this.state = 2929; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14793,29 +14795,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2927; + this.state = 2931; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2928; + this.state = 2932; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2929; + this.state = 2933; this.alter_generic_option_elem(); - this.state = 2934; + this.state = 2938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2930; + this.state = 2934; this.match(PostgreSqlParser.COMMA); - this.state = 2931; + this.state = 2935; this.alter_generic_option_elem(); } } - this.state = 2936; + this.state = 2940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2937; + this.state = 2941; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14840,7 +14842,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2939; + this.state = 2943; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -14849,7 +14851,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2940; + this.state = 2944; this.generic_option_elem(); } } @@ -14873,9 +14875,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2942; + this.state = 2946; this.collabel(); - this.state = 2943; + this.state = 2947; this.sconst(); } } @@ -14900,58 +14902,58 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2945; + this.state = 2949; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2946; + this.state = 2950; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2948; + this.state = 2952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { case 1: { - this.state = 2947; + this.state = 2951; this.opt_if_not_exists(); } break; } - this.state = 2950; + this.state = 2954; this.colid(); - this.state = 2953; + this.state = 2957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 2951; + this.state = 2955; this.match(PostgreSqlParser.KW_TYPE); - this.state = 2952; + this.state = 2956; this.sconst(); } } - this.state = 2956; + this.state = 2960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 375) { { - this.state = 2955; + this.state = 2959; this.foreign_server_version(); } } - this.state = 2958; + this.state = 2962; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2959; + this.state = 2963; this.match(PostgreSqlParser.KW_DATA); - this.state = 2960; + this.state = 2964; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2961; + this.state = 2965; this.colid(); - this.state = 2963; + this.state = 2967; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2962; + this.state = 2966; this.create_generic_options(); } break; @@ -14978,9 +14980,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2965; + this.state = 2969; this.match(PostgreSqlParser.KW_VERSION); - this.state = 2968; + this.state = 2972; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -14988,13 +14990,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2966; + this.state = 2970; this.sconst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 2967; + this.state = 2971; this.match(PostgreSqlParser.KW_NULL); } break; @@ -15023,31 +15025,31 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2970; + this.state = 2974; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2971; + this.state = 2975; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2972; + this.state = 2976; this.colid(); - this.state = 2978; + this.state = 2982; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPTIONS: { - this.state = 2973; + this.state = 2977; this.alter_generic_options(); } break; case PostgreSqlParser.KW_VERSION: { - this.state = 2974; + this.state = 2978; this.foreign_server_version(); - this.state = 2976; + this.state = 2980; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2975; + this.state = 2979; this.alter_generic_options(); } break; @@ -15078,65 +15080,65 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 234, PostgreSqlParser.RULE_createforeigntablestmt); let _la: number; try { - this.state = 3019; + this.state = 3023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: localContext = new CreateForeignTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2980; + this.state = 2984; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2981; + this.state = 2985; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2982; + this.state = 2986; this.match(PostgreSqlParser.KW_TABLE); - this.state = 2984; + this.state = 2988; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2983; + this.state = 2987; this.opt_if_not_exists(); } break; } - this.state = 2986; + this.state = 2990; this.table_name_create(); - this.state = 2987; + this.state = 2991; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2989; + this.state = 2993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 2988; + this.state = 2992; this.tableelementlist(); } } - this.state = 2991; + this.state = 2995; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2993; + this.state = 2997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 2992; + this.state = 2996; this.optinherit(); } } - this.state = 2995; + this.state = 2999; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2996; + this.state = 3000; this.colid(); - this.state = 2998; + this.state = 3002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { - this.state = 2997; + this.state = 3001; this.create_generic_options(); } break; @@ -15147,52 +15149,52 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreatePartitionForeignTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3000; + this.state = 3004; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3001; + this.state = 3005; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3002; + this.state = 3006; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3004; + this.state = 3008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { - this.state = 3003; + this.state = 3007; this.opt_if_not_exists(); } break; } - this.state = 3006; + this.state = 3010; this.table_name_create(); - this.state = 3007; + this.state = 3011; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 3008; + this.state = 3012; this.match(PostgreSqlParser.KW_OF); - this.state = 3009; + this.state = 3013; this.table_name(); - this.state = 3011; + this.state = 3015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3010; + this.state = 3014; this.opttypedtableelementlist(); } } - this.state = 3013; + this.state = 3017; this.partitionboundspec(); - this.state = 3014; + this.state = 3018; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3015; + this.state = 3019; this.colid(); - this.state = 3017; + this.state = 3021; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 3016; + this.state = 3020; this.create_generic_options(); } break; @@ -15222,64 +15224,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3021; + this.state = 3025; this.match(PostgreSqlParser.KW_IMPORT); - this.state = 3022; + this.state = 3026; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3023; + this.state = 3027; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3024; + this.state = 3028; this.schema_name(); - this.state = 3034; + this.state = 3038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59 || _la === 74) { { - this.state = 3028; + this.state = 3032; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 3025; + this.state = 3029; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 3026; + this.state = 3030; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_EXCEPT: { - this.state = 3027; + this.state = 3031; this.match(PostgreSqlParser.KW_EXCEPT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3030; + this.state = 3034; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3031; + this.state = 3035; this.relation_expr_list(); - this.state = 3032; + this.state = 3036; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 3036; + this.state = 3040; this.match(PostgreSqlParser.KW_FROM); - this.state = 3037; + this.state = 3041; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3038; + this.state = 3042; this.colid(); - this.state = 3039; + this.state = 3043; this.match(PostgreSqlParser.KW_INTO); - this.state = 3040; + this.state = 3044; this.colid(); - this.state = 3042; + this.state = 3046; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 3041; + this.state = 3045; this.create_generic_options(); } break; @@ -15307,25 +15309,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3044; + this.state = 3048; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3045; + this.state = 3049; this.match(PostgreSqlParser.KW_USER); - this.state = 3046; + this.state = 3050; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3048; + this.state = 3052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3047; + this.state = 3051; this.opt_if_not_exists(); } } - this.state = 3050; + this.state = 3054; this.match(PostgreSqlParser.KW_FOR); - this.state = 3053; + this.state = 3057; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -15747,29 +15749,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3051; + this.state = 3055; this.rolespec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3052; + this.state = 3056; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3055; + this.state = 3059; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3056; + this.state = 3060; this.colid(); - this.state = 3058; + this.state = 3062; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 3057; + this.state = 3061; this.create_generic_options(); } break; @@ -15796,15 +15798,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3060; + this.state = 3064; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3061; + this.state = 3065; this.match(PostgreSqlParser.KW_USER); - this.state = 3062; + this.state = 3066; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3063; + this.state = 3067; this.match(PostgreSqlParser.KW_FOR); - this.state = 3066; + this.state = 3070; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -16226,24 +16228,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3064; + this.state = 3068; this.rolespec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3065; + this.state = 3069; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3068; + this.state = 3072; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3069; + this.state = 3073; this.colid(); - this.state = 3070; + this.state = 3074; this.alter_generic_options(); } } @@ -16268,35 +16270,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3072; + this.state = 3076; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3073; + this.state = 3077; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3074; + this.state = 3078; this.colid(); - this.state = 3075; + this.state = 3079; this.match(PostgreSqlParser.KW_ON); - this.state = 3076; + this.state = 3080; this.qualified_name(); - this.state = 3083; + this.state = 3087; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 3077; - this.match(PostgreSqlParser.KW_AS); this.state = 3081; + this.match(PostgreSqlParser.KW_AS); + this.state = 3085; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_PERMISSIVE: { - this.state = 3078; + this.state = 3082; this.match(PostgreSqlParser.KW_PERMISSIVE); } break; case PostgreSqlParser.KW_RESTRICTIVE: { - this.state = 3079; + this.state = 3083; this.match(PostgreSqlParser.KW_RESTRICTIVE); } break; @@ -16644,7 +16646,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3080; + this.state = 3084; this.identifier(); } break; @@ -16654,14 +16656,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 3087; + this.state = 3091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3085; + this.state = 3089; this.match(PostgreSqlParser.KW_FOR); - this.state = 3086; + this.state = 3090; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -16673,34 +16675,34 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3091; + this.state = 3095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3089; + this.state = 3093; this.match(PostgreSqlParser.KW_TO); - this.state = 3090; + this.state = 3094; this.role_list(); } } - this.state = 3094; + this.state = 3098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3093; + this.state = 3097; this.rowsecurityoptionalexpr(); } } - this.state = 3097; + this.state = 3101; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { case 1: { - this.state = 3096; + this.state = 3100; this.rowsecurityoptionalwithcheck(); } break; @@ -16728,44 +16730,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3099; + this.state = 3103; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3100; + this.state = 3104; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3101; + this.state = 3105; this.colid(); - this.state = 3102; + this.state = 3106; this.match(PostgreSqlParser.KW_ON); - this.state = 3103; + this.state = 3107; this.qualified_name(); - this.state = 3106; + this.state = 3110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3104; + this.state = 3108; this.match(PostgreSqlParser.KW_TO); - this.state = 3105; + this.state = 3109; this.role_list(); } } - this.state = 3109; + this.state = 3113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3108; + this.state = 3112; this.rowsecurityoptionalexpr(); } } - this.state = 3112; + this.state = 3116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: { - this.state = 3111; + this.state = 3115; this.rowsecurityoptionalwithcheck(); } break; @@ -16794,51 +16796,51 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3114; + this.state = 3118; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3115; + this.state = 3119; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3116; + this.state = 3120; this.procedure_name(); - this.state = 3118; + this.state = 3122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3117; + this.state = 3121; this.func_args(); } } - this.state = 3146; + this.state = 3150; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 3120; - this.procedure_action(); this.state = 3124; + this.procedure_action(); + this.state = 3128; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 343, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3121; + this.state = 3125; this.procedure_action(); } } } - this.state = 3126; + this.state = 3130; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 343, this.context); } - this.state = 3128; + this.state = 3132; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 3127; + this.state = 3131; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -16847,53 +16849,53 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 3130; + this.state = 3134; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3131; + this.state = 3135; this.match(PostgreSqlParser.KW_TO); - this.state = 3132; + this.state = 3136; this.procedure_name_create(); } break; case 3: { - this.state = 3133; + this.state = 3137; this.match(PostgreSqlParser.KW_OWNER); - this.state = 3134; + this.state = 3138; this.match(PostgreSqlParser.KW_TO); - this.state = 3135; + this.state = 3139; this.rolespec(); } break; case 4: { - this.state = 3136; + this.state = 3140; this.match(PostgreSqlParser.KW_SET); - this.state = 3137; + this.state = 3141; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3138; + this.state = 3142; this.schema_name_create(); } break; case 5: { - this.state = 3140; + this.state = 3144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 3139; + this.state = 3143; this.match(PostgreSqlParser.KW_NO); } } - this.state = 3142; + this.state = 3146; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 3143; + this.state = 3147; this.match(PostgreSqlParser.KW_ON); - this.state = 3144; + this.state = 3148; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 3145; + this.state = 3149; this.colid(); } break; @@ -16919,48 +16921,48 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 248, PostgreSqlParser.RULE_procedure_action); let _la: number; try { - this.state = 3177; + this.state = 3181; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3158; + this.state = 3162; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 349, this.context) ) { case 1: { - this.state = 3149; + this.state = 3153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3148; + this.state = 3152; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3151; + this.state = 3155; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3152; + this.state = 3156; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 3154; + this.state = 3158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3153; + this.state = 3157; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3156; + this.state = 3160; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3157; + this.state = 3161; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -16970,11 +16972,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3160; + this.state = 3164; this.match(PostgreSqlParser.KW_SET); - this.state = 3161; + this.state = 3165; this.colid(); - this.state = 3162; + this.state = 3166; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -16983,18 +16985,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3165; + this.state = 3169; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 350, this.context) ) { case 1: { - this.state = 3163; + this.state = 3167; this.colid(); } break; case 2: { - this.state = 3164; + this.state = 3168; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -17004,22 +17006,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3167; + this.state = 3171; this.match(PostgreSqlParser.KW_SET); - this.state = 3168; + this.state = 3172; this.colid(); - this.state = 3169; + this.state = 3173; this.match(PostgreSqlParser.KW_FROM); - this.state = 3170; + this.state = 3174; this.match(PostgreSqlParser.KW_CURRENT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3172; + this.state = 3176; this.match(PostgreSqlParser.KW_RESET); - this.state = 3175; + this.state = 3179; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -17417,13 +17419,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3173; + this.state = 3177; this.colid(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 3174; + this.state = 3178; this.match(PostgreSqlParser.KW_ALL); } break; @@ -17454,13 +17456,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3179; + this.state = 3183; this.match(PostgreSqlParser.KW_USING); - this.state = 3180; + this.state = 3184; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3181; + this.state = 3185; this.expression(); - this.state = 3182; + this.state = 3186; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17484,15 +17486,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3184; + this.state = 3188; this.match(PostgreSqlParser.KW_WITH); - this.state = 3185; + this.state = 3189; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3186; + this.state = 3190; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3187; + this.state = 3191; this.expression(); - this.state = 3188; + this.state = 3192; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17517,17 +17519,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3190; + this.state = 3194; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3191; + this.state = 3195; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3192; + this.state = 3196; this.match(PostgreSqlParser.KW_METHOD); - this.state = 3193; + this.state = 3197; this.colid(); - this.state = 3194; + this.state = 3198; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3195; + this.state = 3199; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 226)) { this.errorHandler.recoverInline(this); @@ -17536,9 +17538,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3196; + this.state = 3200; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 3197; + this.state = 3201; this.any_name(); } } @@ -17561,50 +17563,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 256, PostgreSqlParser.RULE_createtrigstmt); let _la: number; try { - this.state = 3277; + this.state = 3281; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 367, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3199; + this.state = 3203; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3201; + this.state = 3205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3200; + this.state = 3204; this.opt_or_replace(); } } - this.state = 3203; + this.state = 3207; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3204; + this.state = 3208; this.colid(); - this.state = 3205; + this.state = 3209; this.triggeractiontime(); - this.state = 3206; + this.state = 3210; this.triggerevents(); - this.state = 3207; + this.state = 3211; this.match(PostgreSqlParser.KW_ON); - this.state = 3208; + this.state = 3212; this.table_name(); - this.state = 3220; + this.state = 3224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 447) { { - this.state = 3209; + this.state = 3213; this.match(PostgreSqlParser.KW_REFERENCING); - this.state = 3216; + this.state = 3220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3210; + this.state = 3214; _la = this.tokenStream.LA(1); if(!(_la === 448 || _la === 449)) { this.errorHandler.recoverInline(this); @@ -17613,7 +17615,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3211; + this.state = 3215; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17622,45 +17624,45 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3213; + this.state = 3217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3212; + this.state = 3216; this.match(PostgreSqlParser.KW_AS); } } - this.state = 3215; + this.state = 3219; this.colid(); } } - this.state = 3218; + this.state = 3222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 448 || _la === 449); } } - this.state = 3227; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3222; + this.state = 3226; this.match(PostgreSqlParser.KW_FOR); - this.state = 3224; + this.state = 3228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3223; + this.state = 3227; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3226; + this.state = 3230; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17672,109 +17674,109 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3230; + this.state = 3234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3229; + this.state = 3233; this.triggerwhen(); } } - this.state = 3232; + this.state = 3236; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3233; + this.state = 3237; this.function_or_procedure(); - this.state = 3234; + this.state = 3238; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3235; + this.state = 3239; this.triggerfuncargs(); - this.state = 3236; + this.state = 3240; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3238; + this.state = 3242; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3240; + this.state = 3244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3239; + this.state = 3243; this.opt_or_replace(); } } - this.state = 3243; + this.state = 3247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 3242; + this.state = 3246; this.match(PostgreSqlParser.KW_CONSTRAINT); } } - this.state = 3245; + this.state = 3249; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3246; + this.state = 3250; this.colid(); - this.state = 3247; + this.state = 3251; this.triggeractiontime(); - this.state = 3248; + this.state = 3252; this.triggerevents(); - this.state = 3249; + this.state = 3253; this.match(PostgreSqlParser.KW_ON); - this.state = 3250; + this.state = 3254; this.table_name(); - this.state = 3253; + this.state = 3257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 3251; + this.state = 3255; this.match(PostgreSqlParser.KW_FROM); - this.state = 3252; + this.state = 3256; this.qualified_name(); } } - this.state = 3258; + this.state = 3262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 54)) & ~0x1F) === 0 && ((1 << (_la - 54)) & 8421377) !== 0) || _la === 269) { { { - this.state = 3255; + this.state = 3259; this.constraintattributeElem(); } } - this.state = 3260; + this.state = 3264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3266; + this.state = 3270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3261; + this.state = 3265; this.match(PostgreSqlParser.KW_FOR); - this.state = 3263; + this.state = 3267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3262; + this.state = 3266; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3265; + this.state = 3269; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17786,25 +17788,25 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3269; + this.state = 3273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3268; + this.state = 3272; this.triggerwhen(); } } - this.state = 3271; + this.state = 3275; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3272; + this.state = 3276; this.function_or_procedure(); - this.state = 3273; + this.state = 3277; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3274; + this.state = 3278; this.triggerfuncargs(); - this.state = 3275; + this.state = 3279; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -17828,29 +17830,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggeractiontimeContext(this.context, this.state); this.enterRule(localContext, 258, PostgreSqlParser.RULE_triggeractiontime); try { - this.state = 3283; + this.state = 3287; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_BEFORE: this.enterOuterAlt(localContext, 1); { - this.state = 3279; + this.state = 3283; this.match(PostgreSqlParser.KW_BEFORE); } break; case PostgreSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3280; + this.state = 3284; this.match(PostgreSqlParser.KW_AFTER); } break; case PostgreSqlParser.KW_INSTEAD: this.enterOuterAlt(localContext, 3); { - this.state = 3281; + this.state = 3285; this.match(PostgreSqlParser.KW_INSTEAD); - this.state = 3282; + this.state = 3286; this.match(PostgreSqlParser.KW_OF); } break; @@ -17879,21 +17881,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3285; + this.state = 3289; this.triggeroneevent(); - this.state = 3290; + this.state = 3294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 3286; + this.state = 3290; this.match(PostgreSqlParser.KW_OR); - this.state = 3287; + this.state = 3291; this.triggeroneevent(); } } - this.state = 3292; + this.state = 3296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17918,36 +17920,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 262, PostgreSqlParser.RULE_triggeroneevent); let _la: number; try { - this.state = 3301; + this.state = 3305; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 1); { - this.state = 3293; + this.state = 3297; this.match(PostgreSqlParser.KW_INSERT); } break; case PostgreSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 2); { - this.state = 3294; + this.state = 3298; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 3); { - this.state = 3295; + this.state = 3299; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 3298; + this.state = 3302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 275) { { - this.state = 3296; + this.state = 3300; this.match(PostgreSqlParser.KW_OF); - this.state = 3297; + this.state = 3301; this.column_list(); } } @@ -17957,7 +17959,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 4); { - this.state = 3300; + this.state = 3304; this.match(PostgreSqlParser.KW_TRUNCATE); } break; @@ -17985,13 +17987,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3303; + this.state = 3307; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3304; + this.state = 3308; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3305; + this.state = 3309; this.expression(); - this.state = 3306; + this.state = 3310; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18013,24 +18015,24 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Function_or_procedureContext(this.context, this.state); this.enterRule(localContext, 266, PostgreSqlParser.RULE_function_or_procedure); try { - this.state = 3312; + this.state = 3316; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 3308; + this.state = 3312; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3309; + this.state = 3313; this.function_name(); } break; case PostgreSqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 3310; + this.state = 3314; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3311; + this.state = 3315; this.procedure_name(); } break; @@ -18059,7 +18061,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3316; + this.state = 3320; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -18555,7 +18557,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3314; + this.state = 3318; this.triggerfuncarg(); } break; @@ -18568,19 +18570,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3322; + this.state = 3326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3318; + this.state = 3322; this.match(PostgreSqlParser.COMMA); - this.state = 3319; + this.state = 3323; this.triggerfuncarg(); } } - this.state = 3324; + this.state = 3328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18604,34 +18606,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerfuncargContext(this.context, this.state); this.enterRule(localContext, 270, PostgreSqlParser.RULE_triggerfuncarg); try { - this.state = 3329; + this.state = 3333; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3325; + this.state = 3329; this.match(PostgreSqlParser.Integral); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3326; + this.state = 3330; this.match(PostgreSqlParser.Numeric); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3327; + this.state = 3331; this.sconst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3328; + this.state = 3332; this.collabel(); } break; @@ -18656,32 +18658,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 272, PostgreSqlParser.RULE_constraintattributeElem); let _la: number; try { - this.state = 3341; + this.state = 3345; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3332; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 3331; + this.state = 3335; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 3334; + this.state = 3338; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3335; + this.state = 3339; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 3336; + this.state = 3340; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -18695,18 +18697,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3337; + this.state = 3341; this.match(PostgreSqlParser.KW_NOT); - this.state = 3338; + this.state = 3342; this.match(PostgreSqlParser.KW_VALID); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3339; + this.state = 3343; this.match(PostgreSqlParser.KW_NO); - this.state = 3340; + this.state = 3344; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -18733,53 +18735,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3343; + this.state = 3347; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3344; + this.state = 3348; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3345; + this.state = 3349; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3346; + this.state = 3350; this.colid(); - this.state = 3347; + this.state = 3351; this.match(PostgreSqlParser.KW_ON); - this.state = 3348; + this.state = 3352; this.collabel(); - this.state = 3358; + this.state = 3362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3349; + this.state = 3353; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3350; + this.state = 3354; this.event_trigger_when_item(); - this.state = 3355; + this.state = 3359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 33) { { { - this.state = 3351; + this.state = 3355; this.match(PostgreSqlParser.KW_AND); - this.state = 3352; + this.state = 3356; this.event_trigger_when_item(); } } - this.state = 3357; + this.state = 3361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3360; + this.state = 3364; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3361; + this.state = 3365; this.function_or_procedure(); - this.state = 3362; + this.state = 3366; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3363; + this.state = 3367; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18804,29 +18806,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3365; + this.state = 3369; this.colid(); - this.state = 3366; + this.state = 3370; this.match(PostgreSqlParser.KW_IN); - this.state = 3367; + this.state = 3371; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3368; - this.sconst(); this.state = 3372; + this.sconst(); + this.state = 3376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3369; + this.state = 3373; this.notify_payload(); } } - this.state = 3374; + this.state = 3378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3375; + this.state = 3379; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18851,27 +18853,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3377; + this.state = 3381; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3378; + this.state = 3382; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3379; + this.state = 3383; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3380; + this.state = 3384; this.colid(); - this.state = 3386; + this.state = 3390; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 3381; + this.state = 3385; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 3383; + this.state = 3387; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 3382; + this.state = 3386; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -18887,7 +18889,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DISABLE: { - this.state = 3385; + this.state = 3389; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -18917,33 +18919,33 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3388; + this.state = 3392; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3389; + this.state = 3393; this.match(PostgreSqlParser.KW_ASSERTION); - this.state = 3390; + this.state = 3394; this.any_name(); - this.state = 3391; + this.state = 3395; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3392; + this.state = 3396; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3393; + this.state = 3397; this.expression(); - this.state = 3394; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 3398; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 3402; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 383, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3395; + this.state = 3399; this.constraintattributeElem(); } } } - this.state = 3400; + this.state = 3404; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 383, this.context); } @@ -18968,64 +18970,64 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 282, PostgreSqlParser.RULE_definestmt); let _la: number; try { - this.state = 3479; + this.state = 3483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 395, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3401; + this.state = 3405; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3403; + this.state = 3407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3402; + this.state = 3406; this.opt_or_replace(); } } - this.state = 3405; + this.state = 3409; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3406; + this.state = 3410; this.function_name(); - this.state = 3421; + this.state = 3425; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { { - this.state = 3407; + this.state = 3411; this.aggr_args(); - this.state = 3408; + this.state = 3412; this.definition(); } } break; case 2: { - this.state = 3410; + this.state = 3414; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3411; + this.state = 3415; this.old_aggr_elem(); - this.state = 3416; + this.state = 3420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3412; + this.state = 3416; this.match(PostgreSqlParser.COMMA); - this.state = 3413; + this.state = 3417; this.old_aggr_elem(); } } - this.state = 3418; + this.state = 3422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3419; + this.state = 3423; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -19035,79 +19037,79 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3423; + this.state = 3427; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3424; + this.state = 3428; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3425; + this.state = 3429; this.any_operator(); - this.state = 3426; + this.state = 3430; this.definition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3428; + this.state = 3432; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3429; + this.state = 3433; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3430; + this.state = 3434; this.any_name(); - this.state = 3431; + this.state = 3435; this.match(PostgreSqlParser.KW_AS); - this.state = 3449; + this.state = 3453; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3432; + this.state = 3436; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3434; + this.state = 3438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 3433; + this.state = 3437; this.tablefuncelementlist(); } } - this.state = 3436; + this.state = 3440; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_ENUM: { - this.state = 3437; + this.state = 3441; this.match(PostgreSqlParser.KW_ENUM); - this.state = 3438; + this.state = 3442; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3446; + this.state = 3450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 558)) & ~0x1F) === 0 && ((1 << (_la - 558)) & 67108885) !== 0)) { { - this.state = 3439; - this.sconst(); this.state = 3443; + this.sconst(); + this.state = 3447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3440; + this.state = 3444; this.notify_payload(); } } - this.state = 3445; + this.state = 3449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3448; + this.state = 3452; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -19119,30 +19121,30 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3451; + this.state = 3455; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3452; + this.state = 3456; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3453; + this.state = 3457; this.any_name(); - this.state = 3459; + this.state = 3463; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3456; + this.state = 3460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3454; + this.state = 3458; this.match(PostgreSqlParser.KW_AS); - this.state = 3455; + this.state = 3459; this.match(PostgreSqlParser.KW_RANGE); } } - this.state = 3458; + this.state = 3462; this.definition(); } break; @@ -19152,13 +19154,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3461; + this.state = 3465; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3462; + this.state = 3466; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3463; + this.state = 3467; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3464; + this.state = 3468; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19167,46 +19169,46 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3465; + this.state = 3469; this.any_name(); - this.state = 3466; + this.state = 3470; this.definition(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3468; + this.state = 3472; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3469; + this.state = 3473; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 3471; + this.state = 3475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 3470; + this.state = 3474; this.opt_if_not_exists(); } break; } - this.state = 3473; - this.any_name(); this.state = 3477; + this.any_name(); + this.state = 3481; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3474; + this.state = 3478; this.definition(); } break; case PostgreSqlParser.KW_FROM: { { - this.state = 3475; + this.state = 3479; this.match(PostgreSqlParser.KW_FROM); - this.state = 3476; + this.state = 3480; this.any_name(); } } @@ -19239,27 +19241,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3481; + this.state = 3485; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3482; + this.state = 3486; this.def_elem(); - this.state = 3487; + this.state = 3491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3483; + this.state = 3487; this.match(PostgreSqlParser.COMMA); - this.state = 3484; + this.state = 3488; this.def_elem(); } } - this.state = 3489; + this.state = 3493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3490; + this.state = 3494; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -19284,16 +19286,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3492; + this.state = 3496; this.collabel(); - this.state = 3495; + this.state = 3499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 3493; + this.state = 3497; this.match(PostgreSqlParser.EQUAL); - this.state = 3494; + this.state = 3498; this.def_arg(); } } @@ -19318,48 +19320,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Def_argContext(this.context, this.state); this.enterRule(localContext, 288, PostgreSqlParser.RULE_def_arg); try { - this.state = 3503; + this.state = 3507; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 398, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3497; + this.state = 3501; this.func_type(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3498; + this.state = 3502; this.reserved_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3499; + this.state = 3503; this.qual_all_op(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3500; + this.state = 3504; this.numericonly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3501; + this.state = 3505; this.sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3502; + this.state = 3506; this.match(PostgreSqlParser.KW_NONE); } break; @@ -19385,11 +19387,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3505; + this.state = 3509; this.identifier(); - this.state = 3506; + this.state = 3510; this.match(PostgreSqlParser.EQUAL); - this.state = 3507; + this.state = 3511; this.def_arg(); } } @@ -19412,40 +19414,40 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 292, PostgreSqlParser.RULE_alterenumstmt); let _la: number; try { - this.state = 3531; + this.state = 3535; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3509; + this.state = 3513; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3510; + this.state = 3514; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3511; + this.state = 3515; this.any_name(); - this.state = 3512; + this.state = 3516; this.match(PostgreSqlParser.KW_ADD); - this.state = 3513; + this.state = 3517; this.match(PostgreSqlParser.KW_VALUE); - this.state = 3515; + this.state = 3519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3514; + this.state = 3518; this.opt_if_not_exists(); } } - this.state = 3517; + this.state = 3521; this.sconst(); - this.state = 3520; + this.state = 3524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3518; + this.state = 3522; _la = this.tokenStream.LA(1); if(!(_la === 135 || _la === 145)) { this.errorHandler.recoverInline(this); @@ -19454,7 +19456,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3519; + this.state = 3523; this.sconst(); } break; @@ -19464,21 +19466,21 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3522; + this.state = 3526; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3523; + this.state = 3527; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3524; + this.state = 3528; this.any_name(); - this.state = 3525; + this.state = 3529; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3526; + this.state = 3530; this.match(PostgreSqlParser.KW_VALUE); - this.state = 3527; + this.state = 3531; this.sconst(); - this.state = 3528; + this.state = 3532; this.match(PostgreSqlParser.KW_TO); - this.state = 3529; + this.state = 3533; this.sconst(); } break; @@ -19504,11 +19506,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3537; this.match(PostgreSqlParser.KW_IF); - this.state = 3534; + this.state = 3538; this.match(PostgreSqlParser.KW_NOT); - this.state = 3535; + this.state = 3539; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -19533,61 +19535,61 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3537; + this.state = 3541; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3538; + this.state = 3542; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3539; + this.state = 3543; this.match(PostgreSqlParser.KW_CLASS); - this.state = 3540; + this.state = 3544; this.any_name(); - this.state = 3542; + this.state = 3546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 3541; + this.state = 3545; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 3544; + this.state = 3548; this.match(PostgreSqlParser.KW_FOR); - this.state = 3545; + this.state = 3549; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3546; + this.state = 3550; this.typename(); - this.state = 3547; + this.state = 3551; this.table_access_method_clause(); - this.state = 3550; + this.state = 3554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3548; + this.state = 3552; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3549; + this.state = 3553; this.any_name(); } } - this.state = 3552; + this.state = 3556; this.match(PostgreSqlParser.KW_AS); - this.state = 3553; + this.state = 3557; this.opclass_item(); - this.state = 3558; + this.state = 3562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3554; + this.state = 3558; this.match(PostgreSqlParser.COMMA); - this.state = 3555; + this.state = 3559; this.opclass_item(); } } - this.state = 3560; + this.state = 3564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19612,52 +19614,52 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 298, PostgreSqlParser.RULE_opclass_item); let _la: number; try { - this.state = 3587; + this.state = 3591; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 3561; + this.state = 3565; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3562; + this.state = 3566; this.match(PostgreSqlParser.Integral); - this.state = 3563; + this.state = 3567; this.any_operator(); - this.state = 3565; + this.state = 3569; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: { - this.state = 3564; + this.state = 3568; this.oper_argtypes(); } break; } - this.state = 3574; + this.state = 3578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3567; + this.state = 3571; this.match(PostgreSqlParser.KW_FOR); - this.state = 3572; + this.state = 3576; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEARCH: { - this.state = 3568; + this.state = 3572; this.match(PostgreSqlParser.KW_SEARCH); } break; case PostgreSqlParser.KW_ORDER: { { - this.state = 3569; + this.state = 3573; this.match(PostgreSqlParser.KW_ORDER); - this.state = 3570; + this.state = 3574; this.match(PostgreSqlParser.KW_BY); - this.state = 3571; + this.state = 3575; this.any_name(); } } @@ -19668,12 +19670,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3577; + this.state = 3581; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 3576; + this.state = 3580; this.match(PostgreSqlParser.KW_RECHECK); } break; @@ -19683,30 +19685,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 2); { - this.state = 3579; + this.state = 3583; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3580; + this.state = 3584; this.match(PostgreSqlParser.Integral); - this.state = 3582; + this.state = 3586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3581; + this.state = 3585; this.prep_type_clause(); } } - this.state = 3584; + this.state = 3588; this.function_with_argtypes(); } break; case PostgreSqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 3); { - this.state = 3585; + this.state = 3589; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 3586; + this.state = 3590; this.typename(); } break; @@ -19734,15 +19736,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3589; + this.state = 3593; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3590; + this.state = 3594; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3591; + this.state = 3595; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3592; + this.state = 3596; this.any_name(); - this.state = 3593; + this.state = 3597; this.table_access_method_clause(); } } @@ -19767,38 +19769,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3599; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3596; + this.state = 3600; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3597; + this.state = 3601; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3598; + this.state = 3602; this.any_name(); - this.state = 3599; + this.state = 3603; this.table_access_method_clause(); - this.state = 3618; + this.state = 3622; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: { - this.state = 3600; + this.state = 3604; this.match(PostgreSqlParser.KW_ADD); - this.state = 3601; + this.state = 3605; this.opclass_item(); - this.state = 3606; + this.state = 3610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3602; + this.state = 3606; this.match(PostgreSqlParser.COMMA); - this.state = 3603; + this.state = 3607; this.opclass_item(); } } - this.state = 3608; + this.state = 3612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19806,23 +19808,23 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DROP: { - this.state = 3609; + this.state = 3613; this.match(PostgreSqlParser.KW_DROP); - this.state = 3610; + this.state = 3614; this.opclass_drop(); - this.state = 3615; + this.state = 3619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3611; + this.state = 3615; this.match(PostgreSqlParser.COMMA); - this.state = 3612; + this.state = 3616; this.opclass_drop(); } } - this.state = 3617; + this.state = 3621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19854,7 +19856,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3620; + this.state = 3624; _la = this.tokenStream.LA(1); if(!(_la === 211 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -19863,9 +19865,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3621; + this.state = 3625; this.match(PostgreSqlParser.Integral); - this.state = 3622; + this.state = 3626; this.prep_type_clause(); } } @@ -19889,17 +19891,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3624; + this.state = 3628; this.match(PostgreSqlParser.KW_REASSIGN); - this.state = 3625; + this.state = 3629; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3626; + this.state = 3630; this.match(PostgreSqlParser.KW_BY); - this.state = 3627; + this.state = 3631; this.role_list(); - this.state = 3628; + this.state = 3632; this.match(PostgreSqlParser.KW_TO); - this.state = 3629; + this.state = 3633; this.rolespec(); } } @@ -19922,115 +19924,115 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 308, PostgreSqlParser.RULE_dropstmt); let _la: number; try { - this.state = 3838; + this.state = 3842; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3631; + this.state = 3635; this.match(PostgreSqlParser.KW_DROP); - this.state = 3654; + this.state = 3658; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEQUENCE: { - this.state = 3632; + this.state = 3636; this.match(PostgreSqlParser.KW_SEQUENCE); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 3633; + this.state = 3637; this.match(PostgreSqlParser.KW_INDEX); } break; case PostgreSqlParser.KW_COLLATION: { - this.state = 3634; + this.state = 3638; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 3635; + this.state = 3639; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 3636; + this.state = 3640; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3637; + this.state = 3641; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3638; + this.state = 3642; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3639; + this.state = 3643; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3640; + this.state = 3644; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 3641; + this.state = 3645; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3642; + this.state = 3646; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3643; + this.state = 3647; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3645; + this.state = 3649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3644; + this.state = 3648; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3647; + this.state = 3651; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3648; + this.state = 3652; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3649; + this.state = 3653; this.match(PostgreSqlParser.KW_DATA); - this.state = 3650; + this.state = 3654; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_TEXT: { - this.state = 3651; + this.state = 3655; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3652; + this.state = 3656; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3653; + this.state = 3657; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -20044,24 +20046,24 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3657; + this.state = 3661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 3656; + this.state = 3660; this.opt_if_exists(); } break; } - this.state = 3659; + this.state = 3663; this.name_list(); - this.state = 3661; + this.state = 3665; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: { - this.state = 3660; + this.state = 3664; this.opt_drop_behavior(); } break; @@ -20071,54 +20073,54 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3663; + this.state = 3667; this.match(PostgreSqlParser.KW_DROP); - this.state = 3665; + this.state = 3669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3664; + this.state = 3668; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3667; + this.state = 3671; this.match(PostgreSqlParser.KW_VIEW); - this.state = 3669; + this.state = 3673; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3668; + this.state = 3672; this.opt_if_exists(); } break; } - this.state = 3671; + this.state = 3675; this.view_name(); - this.state = 3676; + this.state = 3680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3672; + this.state = 3676; this.match(PostgreSqlParser.COMMA); - this.state = 3673; + this.state = 3677; this.view_name(); } } - this.state = 3678; + this.state = 3682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3680; + this.state = 3684; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3679; + this.state = 3683; this.opt_drop_behavior(); } break; @@ -20128,38 +20130,38 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3682; + this.state = 3686; this.match(PostgreSqlParser.KW_DROP); - this.state = 3684; + this.state = 3688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3683; + this.state = 3687; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3686; + this.state = 3690; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3688; + this.state = 3692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3687; + this.state = 3691; this.opt_if_exists(); } break; } - this.state = 3690; + this.state = 3694; this.table_name_list(); - this.state = 3692; + this.state = 3696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 3691; + this.state = 3695; this.opt_drop_behavior(); } break; @@ -20169,28 +20171,28 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3694; + this.state = 3698; this.match(PostgreSqlParser.KW_DROP); - this.state = 3695; + this.state = 3699; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3697; + this.state = 3701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { - this.state = 3696; + this.state = 3700; this.opt_if_exists(); } break; } - this.state = 3699; + this.state = 3703; this.schema_name_list(); - this.state = 3701; + this.state = 3705; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 3700; + this.state = 3704; this.opt_drop_behavior(); } break; @@ -20200,9 +20202,9 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3703; + this.state = 3707; this.match(PostgreSqlParser.KW_DROP); - this.state = 3704; + this.state = 3708; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -20211,28 +20213,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3706; + this.state = 3710; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3705; + this.state = 3709; this.opt_if_exists(); } break; } - this.state = 3708; + this.state = 3712; this.colid(); - this.state = 3709; + this.state = 3713; this.match(PostgreSqlParser.KW_ON); - this.state = 3710; + this.state = 3714; this.any_name(); - this.state = 3712; + this.state = 3716; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 3711; + this.state = 3715; this.opt_drop_behavior(); } break; @@ -20242,9 +20244,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3714; + this.state = 3718; this.match(PostgreSqlParser.KW_DROP); - this.state = 3715; + this.state = 3719; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -20253,40 +20255,40 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3717; + this.state = 3721; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: { - this.state = 3716; + this.state = 3720; this.opt_if_exists(); } break; } - this.state = 3719; + this.state = 3723; this.typename(); - this.state = 3724; + this.state = 3728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3720; + this.state = 3724; this.match(PostgreSqlParser.COMMA); - this.state = 3721; + this.state = 3725; this.typename(); } } - this.state = 3726; + this.state = 3730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3728; + this.state = 3732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: { - this.state = 3727; + this.state = 3731; this.opt_drop_behavior(); } break; @@ -20296,30 +20298,30 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3730; + this.state = 3734; this.match(PostgreSqlParser.KW_DROP); - this.state = 3731; + this.state = 3735; this.match(PostgreSqlParser.KW_INDEX); - this.state = 3732; + this.state = 3736; this.match(PostgreSqlParser.KW_CONCURRENTLY); - this.state = 3734; + this.state = 3738; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: { - this.state = 3733; + this.state = 3737; this.opt_if_exists(); } break; } - this.state = 3736; + this.state = 3740; this.any_name_list(); - this.state = 3738; + this.state = 3742; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 3737; + this.state = 3741; this.opt_drop_behavior(); } break; @@ -20329,36 +20331,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3740; + this.state = 3744; this.match(PostgreSqlParser.KW_DROP); - this.state = 3741; + this.state = 3745; this.match(PostgreSqlParser.KW_CAST); - this.state = 3743; + this.state = 3747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3742; + this.state = 3746; this.opt_if_exists(); } } - this.state = 3745; + this.state = 3749; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3746; + this.state = 3750; this.typename(); - this.state = 3747; + this.state = 3751; this.match(PostgreSqlParser.KW_AS); - this.state = 3748; + this.state = 3752; this.typename(); - this.state = 3749; + this.state = 3753; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3751; + this.state = 3755; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: { - this.state = 3750; + this.state = 3754; this.opt_drop_behavior(); } break; @@ -20368,11 +20370,11 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3753; + this.state = 3757; this.match(PostgreSqlParser.KW_DROP); - this.state = 3754; + this.state = 3758; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3755; + this.state = 3759; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -20381,26 +20383,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3757; + this.state = 3761; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { case 1: { - this.state = 3756; + this.state = 3760; this.opt_if_exists(); } break; } - this.state = 3759; + this.state = 3763; this.any_name(); - this.state = 3760; + this.state = 3764; this.table_access_method_clause(); - this.state = 3762; + this.state = 3766; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3761; + this.state = 3765; this.opt_drop_behavior(); } break; @@ -20410,20 +20412,20 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3764; + this.state = 3768; this.match(PostgreSqlParser.KW_DROP); - this.state = 3765; + this.state = 3769; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3766; + this.state = 3770; this.match(PostgreSqlParser.KW_BY); - this.state = 3767; + this.state = 3771; this.role_list(); - this.state = 3769; + this.state = 3773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3768; + this.state = 3772; this.opt_drop_behavior(); } break; @@ -20433,28 +20435,28 @@ export class PostgreSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3771; + this.state = 3775; this.match(PostgreSqlParser.KW_DROP); - this.state = 3772; + this.state = 3776; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 3774; + this.state = 3778; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3773; + this.state = 3777; this.opt_if_exists(); } break; } - this.state = 3776; + this.state = 3780; this.colid(); - this.state = 3778; + this.state = 3782; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3777; + this.state = 3781; this.opt_drop_behavior(); } break; @@ -20464,55 +20466,55 @@ export class PostgreSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3780; + this.state = 3784; this.match(PostgreSqlParser.KW_DROP); - this.state = 3781; + this.state = 3785; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 3783; + this.state = 3787; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3782; + this.state = 3786; this.opt_if_exists(); } break; } - this.state = 3785; + this.state = 3789; this.tablespace_name(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3786; + this.state = 3790; this.match(PostgreSqlParser.KW_DROP); - this.state = 3787; + this.state = 3791; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 3789; + this.state = 3793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3788; + this.state = 3792; this.opt_if_exists(); } } - this.state = 3791; + this.state = 3795; this.match(PostgreSqlParser.KW_FOR); - this.state = 3792; + this.state = 3796; this.typename(); - this.state = 3793; + this.state = 3797; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3794; + this.state = 3798; this.colid(); - this.state = 3796; + this.state = 3800; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 3795; + this.state = 3799; this.opt_drop_behavior(); } break; @@ -20522,9 +20524,9 @@ export class PostgreSqlParser extends SQLParserBase { case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3798; + this.state = 3802; this.match(PostgreSqlParser.KW_DROP); - this.state = 3799; + this.state = 3803; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -20533,42 +20535,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3801; + this.state = 3805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3800; + this.state = 3804; this.opt_if_exists(); } break; } - this.state = 3803; + this.state = 3807; this.role_list(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3804; + this.state = 3808; this.match(PostgreSqlParser.KW_DROP); - this.state = 3805; + this.state = 3809; this.match(PostgreSqlParser.KW_USER); - this.state = 3806; + this.state = 3810; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3808; + this.state = 3812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3807; + this.state = 3811; this.opt_if_exists(); } } - this.state = 3810; + this.state = 3814; this.match(PostgreSqlParser.KW_FOR); - this.state = 3813; + this.state = 3817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -20990,81 +20992,81 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3811; + this.state = 3815; this.rolespec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3812; + this.state = 3816; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3815; + this.state = 3819; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3816; + this.state = 3820; this.colid(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3817; + this.state = 3821; this.match(PostgreSqlParser.KW_DROP); - this.state = 3818; + this.state = 3822; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 3820; + this.state = 3824; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 3819; + this.state = 3823; this.opt_if_exists(); } break; } - this.state = 3822; + this.state = 3826; this.database_name(); - this.state = 3836; + this.state = 3840; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3824; + this.state = 3828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3823; + this.state = 3827; this.match(PostgreSqlParser.KW_WITH); } } { - this.state = 3826; + this.state = 3830; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3827; + this.state = 3831; this.match(PostgreSqlParser.KW_FORCE); - this.state = 3832; + this.state = 3836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3828; + this.state = 3832; this.match(PostgreSqlParser.COMMA); - this.state = 3829; + this.state = 3833; this.match(PostgreSqlParser.KW_FORCE); } } - this.state = 3834; + this.state = 3838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3835; + this.state = 3839; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -21093,26 +21095,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 310, PostgreSqlParser.RULE_object_type_any_name); let _la: number; try { - this.state = 3856; + this.state = 3860; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 3841; + this.state = 3845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3840; + this.state = 3844; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3843; + this.state = 3847; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3844; + this.state = 3848; this.table_name(); } break; @@ -21120,19 +21122,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VIEW: this.enterOuterAlt(localContext, 2); { - this.state = 3846; + this.state = 3850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3845; + this.state = 3849; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3848; + this.state = 3852; this.match(PostgreSqlParser.KW_VIEW); - this.state = 3849; + this.state = 3853; this.view_name(); } break; @@ -21143,7 +21145,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_STATISTICS: this.enterOuterAlt(localContext, 3); { - this.state = 3850; + this.state = 3854; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 226 || _la === 328 || _la === 342)) { this.errorHandler.recoverInline(this); @@ -21152,18 +21154,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3851; + this.state = 3855; this.any_name(); } break; case PostgreSqlParser.KW_TEXT: this.enterOuterAlt(localContext, 4); { - this.state = 3852; + this.state = 3856; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3853; + this.state = 3857; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3854; + this.state = 3858; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -21172,7 +21174,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3855; + this.state = 3859; this.any_name(); } break; @@ -21199,7 +21201,7 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 312, PostgreSqlParser.RULE_object_type_name); let _la: number; try { - this.state = 3882; + this.state = 3886; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: @@ -21214,111 +21216,111 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_PUBLICATION: this.enterOuterAlt(localContext, 1); { - this.state = 3874; + this.state = 3878; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EVENT: { - this.state = 3858; + this.state = 3862; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3859; + this.state = 3863; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3860; + this.state = 3864; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3861; + this.state = 3865; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3862; + this.state = 3866; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3863; + this.state = 3867; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3864; + this.state = 3868; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ROLE: { - this.state = 3865; + this.state = 3869; this.match(PostgreSqlParser.KW_ROLE); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 3866; + this.state = 3870; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3867; + this.state = 3871; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3868; + this.state = 3872; this.match(PostgreSqlParser.KW_DATA); - this.state = 3869; + this.state = 3873; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3871; + this.state = 3875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3870; + this.state = 3874; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3873; + this.state = 3877; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3876; + this.state = 3880; this.colid(); } break; case PostgreSqlParser.KW_SCHEMA: this.enterOuterAlt(localContext, 2); { - this.state = 3877; + this.state = 3881; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3878; + this.state = 3882; this.schema_name(); } break; case PostgreSqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 3); { - this.state = 3879; + this.state = 3883; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 3880; + this.state = 3884; this.database_name(); } break; case PostgreSqlParser.KW_TABLESPACE: this.enterOuterAlt(localContext, 4); { - this.state = 3881; + this.state = 3885; this.opttablespace(); } break; @@ -21347,21 +21349,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3884; + this.state = 3888; this.any_name(); - this.state = 3889; + this.state = 3893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3885; + this.state = 3889; this.match(PostgreSqlParser.COMMA); - this.state = 3886; + this.state = 3890; this.any_name(); } } - this.state = 3891; + this.state = 3895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21387,14 +21389,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3892; + this.state = 3896; this.colid(); - this.state = 3894; + this.state = 3898; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: { - this.state = 3893; + this.state = 3897; this.attrs(); } break; @@ -21422,7 +21424,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3898; + this.state = 3902; this.errorHandler.sync(this); alternative = 1; do { @@ -21430,9 +21432,9 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 3896; + this.state = 3900; this.match(PostgreSqlParser.DOT); - this.state = 3897; + this.state = 3901; this.collabel(); } } @@ -21440,7 +21442,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3900; + this.state = 3904; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 460, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -21467,42 +21469,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3902; + this.state = 3906; this.match(PostgreSqlParser.KW_TRUNCATE); - this.state = 3904; + this.state = 3908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 3903; + this.state = 3907; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 3906; + this.state = 3910; this.truncate_table(); - this.state = 3911; + this.state = 3915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3907; + this.state = 3911; this.match(PostgreSqlParser.COMMA); - this.state = 3908; + this.state = 3912; this.truncate_table(); } } - this.state = 3913; + this.state = 3917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3916; + this.state = 3920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 3914; + this.state = 3918; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 314)) { this.errorHandler.recoverInline(this); @@ -21511,17 +21513,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3915; + this.state = 3919; this.match(PostgreSqlParser.KW_IDENTITY); } break; } - this.state = 3919; + this.state = 3923; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: { - this.state = 3918; + this.state = 3922; this.opt_drop_behavior(); } break; @@ -21549,24 +21551,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3922; + this.state = 3926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 3921; + this.state = 3925; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 3924; + this.state = 3928; this.table_name(); - this.state = 3926; + this.state = 3930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 3925; + this.state = 3929; this.match(PostgreSqlParser.STAR); } } @@ -21594,52 +21596,52 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3928; + this.state = 3932; this.match(PostgreSqlParser.KW_COMMENT); - this.state = 3929; + this.state = 3933; this.match(PostgreSqlParser.KW_ON); - this.state = 3988; + this.state = 3992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3930; + this.state = 3934; this.object_type_any_name(); } break; case 2: { - this.state = 3931; + this.state = 3935; this.object_type_name(); } break; case 3: { - this.state = 3932; + this.state = 3936; this.match(PostgreSqlParser.KW_COLUMN); { - this.state = 3933; + this.state = 3937; this.colid(); - this.state = 3935; + this.state = 3939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: { - this.state = 3934; + this.state = 3938; this.attrs(); } break; } } - this.state = 3937; + this.state = 3941; this.match(PostgreSqlParser.DOT); - this.state = 3938; + this.state = 3942; this.column_name(); } break; case 4: { - this.state = 3940; + this.state = 3944; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21648,65 +21650,65 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3941; + this.state = 3945; this.typename(); } break; case 5: { - this.state = 3942; + this.state = 3946; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3943; + this.state = 3947; this.aggregate_with_argtypes(); } break; case 6: { - this.state = 3944; + this.state = 3948; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3945; + this.state = 3949; this.function_with_argtypes(); } break; case 7: { - this.state = 3946; + this.state = 3950; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3947; + this.state = 3951; this.operator_with_argtypes(); } break; case 8: { - this.state = 3948; + this.state = 3952; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 3949; + this.state = 3953; this.colid(); - this.state = 3950; + this.state = 3954; this.match(PostgreSqlParser.KW_ON); - this.state = 3956; + this.state = 3960; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3951; + this.state = 3955; this.table_name(); } break; case 2: { { - this.state = 3953; + this.state = 3957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3952; + this.state = 3956; this.match(PostgreSqlParser.KW_DOMAIN); } break; } - this.state = 3955; + this.state = 3959; this.any_name(); } } @@ -21716,7 +21718,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 9: { - this.state = 3958; + this.state = 3962; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -21725,49 +21727,49 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3959; + this.state = 3963; this.colid(); - this.state = 3960; + this.state = 3964; this.match(PostgreSqlParser.KW_ON); - this.state = 3961; + this.state = 3965; this.any_name(); } break; case 10: { - this.state = 3963; + this.state = 3967; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3964; + this.state = 3968; this.procedure_with_argtypes(); } break; case 11: { - this.state = 3965; + this.state = 3969; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 3966; + this.state = 3970; this.routine_with_argtypes(); } break; case 12: { - this.state = 3967; + this.state = 3971; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 3968; + this.state = 3972; this.match(PostgreSqlParser.KW_FOR); - this.state = 3969; + this.state = 3973; this.typename(); - this.state = 3970; + this.state = 3974; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3971; + this.state = 3975; this.colid(); } break; case 13: { - this.state = 3973; + this.state = 3977; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3974; + this.state = 3978; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -21776,42 +21778,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3975; + this.state = 3979; this.any_name(); - this.state = 3976; + this.state = 3980; this.table_access_method_clause(); } break; case 14: { - this.state = 3978; + this.state = 3982; this.match(PostgreSqlParser.KW_LARGE); - this.state = 3979; + this.state = 3983; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 3980; + this.state = 3984; this.numericonly(); } break; case 15: { - this.state = 3981; + this.state = 3985; this.match(PostgreSqlParser.KW_CAST); - this.state = 3982; + this.state = 3986; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3983; + this.state = 3987; this.typename(); - this.state = 3984; + this.state = 3988; this.match(PostgreSqlParser.KW_AS); - this.state = 3985; + this.state = 3989; this.typename(); - this.state = 3986; + this.state = 3990; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 3990; + this.state = 3994; this.match(PostgreSqlParser.KW_IS); - this.state = 3993; + this.state = 3997; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21819,13 +21821,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3991; + this.state = 3995; this.sconst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 3992; + this.state = 3996; this.match(PostgreSqlParser.KW_NULL); } break; @@ -21855,30 +21857,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3995; + this.state = 3999; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3996; + this.state = 4000; this.match(PostgreSqlParser.KW_LABEL); - this.state = 3999; + this.state = 4003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3997; + this.state = 4001; this.match(PostgreSqlParser.KW_FOR); - this.state = 3998; + this.state = 4002; this.nonreservedword_or_sconst(); } } - this.state = 4001; + this.state = 4005; this.match(PostgreSqlParser.KW_ON); - this.state = 4019; + this.state = 4023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: { - this.state = 4002; + this.state = 4006; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21887,76 +21889,76 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4003; + this.state = 4007; this.typename(); } break; case 2: { - this.state = 4004; + this.state = 4008; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4005; + this.state = 4009; this.aggregate_with_argtypes(); } break; case 3: { - this.state = 4006; + this.state = 4010; this.match(PostgreSqlParser.KW_COLUMN); - this.state = 4007; + this.state = 4011; this.column_name(); } break; case 4: { - this.state = 4008; + this.state = 4012; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4009; + this.state = 4013; this.function_with_argtypes(); } break; case 5: { - this.state = 4010; + this.state = 4014; this.match(PostgreSqlParser.KW_LARGE); - this.state = 4011; + this.state = 4015; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 4012; + this.state = 4016; this.numericonly(); } break; case 6: { - this.state = 4013; + this.state = 4017; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4014; + this.state = 4018; this.procedure_with_argtypes(); } break; case 7: { - this.state = 4015; + this.state = 4019; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4016; + this.state = 4020; this.routine_with_argtypes(); } break; case 8: { - this.state = 4017; + this.state = 4021; this.object_type_any_name(); } break; case 9: { - this.state = 4018; + this.state = 4022; this.object_type_name(); } break; } - this.state = 4021; + this.state = 4025; this.match(PostgreSqlParser.KW_IS); - this.state = 4024; + this.state = 4028; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21964,13 +21966,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4022; + this.state = 4026; this.sconst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 4023; + this.state = 4027; this.match(PostgreSqlParser.KW_NULL); } break; @@ -22000,7 +22002,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4026; + this.state = 4030; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 265)) { this.errorHandler.recoverInline(this); @@ -22009,7 +22011,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4027; + this.state = 4031; this.fetch_args(); } } @@ -22032,18 +22034,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 330, PostgreSqlParser.RULE_fetch_args); let _la: number; try { - this.state = 4072; + this.state = 4076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4030; + this.state = 4034; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 4029; + this.state = 4033; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249 || _la === 268 || _la === 293)) { this.errorHandler.recoverInline(this); @@ -22055,29 +22057,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4033; + this.state = 4037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4032; + this.state = 4036; this.from_in(); } } - this.state = 4035; + this.state = 4039; this.colid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4037; + this.state = 4041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130 || _la === 307) { { - this.state = 4036; + this.state = 4040; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -22089,86 +22091,86 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4039; + this.state = 4043; this.signediconst(); - this.state = 4041; + this.state = 4045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4040; + this.state = 4044; this.from_in(); } } - this.state = 4043; + this.state = 4047; this.colid(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4045; + this.state = 4049; this.match(PostgreSqlParser.KW_FORWARD); - this.state = 4047; + this.state = 4051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 571) { { - this.state = 4046; + this.state = 4050; this.signediconst(); } } - this.state = 4050; + this.state = 4054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4049; + this.state = 4053; this.from_in(); } } - this.state = 4052; + this.state = 4056; this.colid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4054; + this.state = 4058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 4053; + this.state = 4057; this.match(PostgreSqlParser.KW_FORWARD); } } - this.state = 4056; + this.state = 4060; this.match(PostgreSqlParser.KW_ALL); - this.state = 4058; + this.state = 4062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4057; + this.state = 4061; this.from_in(); } } - this.state = 4060; + this.state = 4064; this.colid(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4061; + this.state = 4065; this.match(PostgreSqlParser.KW_BACKWARD); - this.state = 4066; + this.state = 4070; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -22569,12 +22571,12 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4063; + this.state = 4067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 4062; + this.state = 4066; this.match(PostgreSqlParser.KW_ALL); } } @@ -22585,24 +22587,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.MINUS: case PostgreSqlParser.Integral: { - this.state = 4065; + this.state = 4069; this.signediconst(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4069; + this.state = 4073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4068; + this.state = 4072; this.from_in(); } } - this.state = 4071; + this.state = 4075; this.colid(); } break; @@ -22629,7 +22631,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4074; + this.state = 4078; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 68)) { this.errorHandler.recoverInline(this); @@ -22660,28 +22662,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4076; + this.state = 4080; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4077; + this.state = 4081; this.privileges(); - this.state = 4078; + this.state = 4082; this.match(PostgreSqlParser.KW_ON); - this.state = 4079; + this.state = 4083; this.privilege_target(); - this.state = 4080; + this.state = 4084; this.match(PostgreSqlParser.KW_TO); - this.state = 4081; - this.grantee_list(); this.state = 4085; + this.grantee_list(); + this.state = 4089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { case 1: { - this.state = 4082; + this.state = 4086; this.match(PostgreSqlParser.KW_WITH); - this.state = 4083; + this.state = 4087; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4084; + this.state = 4088; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -22709,38 +22711,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4087; - this.match(PostgreSqlParser.KW_REVOKE); this.state = 4091; + this.match(PostgreSqlParser.KW_REVOKE); + this.state = 4095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4088; + this.state = 4092; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4089; + this.state = 4093; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4090; + this.state = 4094; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4093; + this.state = 4097; this.privileges(); - this.state = 4094; + this.state = 4098; this.match(PostgreSqlParser.KW_ON); - this.state = 4095; + this.state = 4099; this.privilege_target(); - this.state = 4096; + this.state = 4100; this.match(PostgreSqlParser.KW_FROM); - this.state = 4097; + this.state = 4101; this.grantee_list(); - this.state = 4099; + this.state = 4103; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 4098; + this.state = 4102; this.opt_drop_behavior(); } break; @@ -22766,27 +22768,27 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 338, PostgreSqlParser.RULE_privileges); let _la: number; try { - this.state = 4124; + this.state = 4128; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4101; + this.state = 4105; this.privilege(); - this.state = 4106; + this.state = 4110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4102; + this.state = 4106; this.match(PostgreSqlParser.COMMA); - this.state = 4103; + this.state = 4107; this.privilege(); } } - this.state = 4108; + this.state = 4112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22795,24 +22797,24 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4109; + this.state = 4113; this.match(PostgreSqlParser.KW_ALL); - this.state = 4111; + this.state = 4115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 294) { { - this.state = 4110; + this.state = 4114; this.match(PostgreSqlParser.KW_PRIVILEGES); } } - this.state = 4114; + this.state = 4118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4113; + this.state = 4117; this.opt_column_list(); } } @@ -22822,21 +22824,21 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4116; + this.state = 4120; this.beforeprivilegeselect(); - this.state = 4121; + this.state = 4125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4117; + this.state = 4121; this.match(PostgreSqlParser.COMMA); - this.state = 4118; + this.state = 4122; this.beforeprivilegeselect(); } } - this.state = 4123; + this.state = 4127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22865,7 +22867,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4126; + this.state = 4130; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 88 || _la === 182 || _la === 202 || _la === 241 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 131173) !== 0) || ((((_la - 521)) & ~0x1F) === 0 && ((1 << (_la - 521)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -22897,24 +22899,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4132; + this.state = 4136; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 4128; + this.state = 4132; this.match(PostgreSqlParser.KW_SELECT); } break; case PostgreSqlParser.KW_REFERENCES: { - this.state = 4129; + this.state = 4133; this.match(PostgreSqlParser.KW_REFERENCES); } break; case PostgreSqlParser.KW_CREATE: { - this.state = 4130; + this.state = 4134; this.match(PostgreSqlParser.KW_CREATE); } break; @@ -23313,19 +23315,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4131; + this.state = 4135; this.colid(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4135; + this.state = 4139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4134; + this.state = 4138; this.opt_column_list(); } } @@ -23351,59 +23353,59 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 344, PostgreSqlParser.RULE_privilege_target); let _la: number; try { - this.state = 4182; + this.state = 4186; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4137; + this.state = 4141; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4138; + this.state = 4142; this.table_name_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4140; + this.state = 4144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: { - this.state = 4139; + this.state = 4143; this.match(PostgreSqlParser.KW_SEQUENCE); } break; } - this.state = 4142; + this.state = 4146; this.qualified_name_list(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4150; + this.state = 4154; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4143; - this.match(PostgreSqlParser.KW_FOREIGN); this.state = 4147; + this.match(PostgreSqlParser.KW_FOREIGN); + this.state = 4151; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 4144; + this.state = 4148; this.match(PostgreSqlParser.KW_DATA); - this.state = 4145; + this.state = 4149; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4146; + this.state = 4150; this.match(PostgreSqlParser.KW_SERVER); } break; @@ -23414,57 +23416,57 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4149; + this.state = 4153; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4152; + this.state = 4156; this.name_list(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4153; + this.state = 4157; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4154; + this.state = 4158; this.function_with_argtypes_list(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4155; + this.state = 4159; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4156; + this.state = 4160; this.procedure_with_argtypes_list(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4157; + this.state = 4161; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4158; + this.state = 4162; this.routine_with_argtypes_list(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4159; + this.state = 4163; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4160; + this.state = 4164; this.database_nameList(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4161; + this.state = 4165; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23473,32 +23475,32 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4162; + this.state = 4166; this.any_name_list(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4163; + this.state = 4167; this.match(PostgreSqlParser.KW_LARGE); - this.state = 4164; + this.state = 4168; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 4165; + this.state = 4169; this.numericonly(); - this.state = 4170; + this.state = 4174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4166; + this.state = 4170; this.match(PostgreSqlParser.COMMA); - this.state = 4167; + this.state = 4171; this.numericonly(); } } - this.state = 4172; + this.state = 4176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23507,27 +23509,27 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4173; + this.state = 4177; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4174; + this.state = 4178; this.schema_name_list(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4175; + this.state = 4179; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 4176; + this.state = 4180; this.tablespace_name_list(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4177; + this.state = 4181; this.match(PostgreSqlParser.KW_ALL); - this.state = 4178; + this.state = 4182; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 455 || _la === 457)) { this.errorHandler.recoverInline(this); @@ -23536,11 +23538,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4179; + this.state = 4183; this.match(PostgreSqlParser.KW_IN); - this.state = 4180; + this.state = 4184; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4181; + this.state = 4185; this.schema_name_list(); } break; @@ -23568,44 +23570,44 @@ export class PostgreSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 4185; + this.state = 4189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4184; + this.state = 4188; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4187; + this.state = 4191; this.rolespec(); } - this.state = 4196; + this.state = 4200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4189; + this.state = 4193; this.match(PostgreSqlParser.COMMA); { - this.state = 4191; + this.state = 4195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4190; + this.state = 4194; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4193; + this.state = 4197; this.rolespec(); } } } - this.state = 4198; + this.state = 4202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23632,54 +23634,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4199; + this.state = 4203; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4200; + this.state = 4204; this.privilege(); - this.state = 4205; + this.state = 4209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4201; + this.state = 4205; this.match(PostgreSqlParser.COMMA); - this.state = 4202; + this.state = 4206; this.privilege(); } } - this.state = 4207; + this.state = 4211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4208; + this.state = 4212; this.match(PostgreSqlParser.KW_TO); - this.state = 4209; - this.role_list(); this.state = 4213; + this.role_list(); + this.state = 4217; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { case 1: { - this.state = 4210; + this.state = 4214; this.match(PostgreSqlParser.KW_WITH); - this.state = 4211; + this.state = 4215; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4212; + this.state = 4216; this.match(PostgreSqlParser.KW_OPTION); } break; } - this.state = 4218; + this.state = 4222; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 4215; + this.state = 4219; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4216; + this.state = 4220; this.match(PostgreSqlParser.KW_BY); - this.state = 4217; + this.state = 4221; this.rolespec(); } break; @@ -23707,64 +23709,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4220; - this.match(PostgreSqlParser.KW_REVOKE); this.state = 4224; + this.match(PostgreSqlParser.KW_REVOKE); + this.state = 4228; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: { - this.state = 4221; + this.state = 4225; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4222; + this.state = 4226; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4223; + this.state = 4227; this.match(PostgreSqlParser.KW_FOR); } break; } - this.state = 4226; + this.state = 4230; this.privilege(); - this.state = 4231; + this.state = 4235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4227; + this.state = 4231; this.match(PostgreSqlParser.COMMA); - this.state = 4228; + this.state = 4232; this.privilege(); } } - this.state = 4233; + this.state = 4237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4234; + this.state = 4238; this.match(PostgreSqlParser.KW_FROM); - this.state = 4235; - this.role_list(); this.state = 4239; + this.role_list(); + this.state = 4243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 4236; + this.state = 4240; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4237; + this.state = 4241; this.match(PostgreSqlParser.KW_BY); - this.state = 4238; + this.state = 4242; this.rolespec(); } break; } - this.state = 4242; + this.state = 4246; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { case 1: { - this.state = 4241; + this.state = 4245; this.opt_drop_behavior(); } break; @@ -23792,35 +23794,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4244; + this.state = 4248; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4245; + this.state = 4249; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 4246; + this.state = 4250; this.match(PostgreSqlParser.KW_PRIVILEGES); - this.state = 4255; + this.state = 4259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 62 || _la === 68) { { - this.state = 4253; + this.state = 4257; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: { - this.state = 4247; + this.state = 4251; this.match(PostgreSqlParser.KW_IN); - this.state = 4248; + this.state = 4252; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4249; + this.state = 4253; this.schema_name_list(); } break; case PostgreSqlParser.KW_FOR: { - this.state = 4250; + this.state = 4254; this.match(PostgreSqlParser.KW_FOR); - this.state = 4251; + this.state = 4255; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -23829,7 +23831,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4252; + this.state = 4256; this.role_list(); } break; @@ -23837,11 +23839,11 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4257; + this.state = 4261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4258; + this.state = 4262; this.defaclaction(); } } @@ -23864,34 +23866,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 354, PostgreSqlParser.RULE_defaclaction); let _la: number; try { - this.state = 4285; + this.state = 4289; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_GRANT: this.enterOuterAlt(localContext, 1); { - this.state = 4260; + this.state = 4264; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4261; + this.state = 4265; this.privileges(); - this.state = 4262; + this.state = 4266; this.match(PostgreSqlParser.KW_ON); - this.state = 4263; + this.state = 4267; this.defacl_privilege_target(); - this.state = 4264; + this.state = 4268; this.match(PostgreSqlParser.KW_TO); - this.state = 4265; - this.grantee_list(); this.state = 4269; + this.grantee_list(); + this.state = 4273; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { case 1: { - this.state = 4266; + this.state = 4270; this.match(PostgreSqlParser.KW_WITH); - this.state = 4267; + this.state = 4271; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4268; + this.state = 4272; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -23901,38 +23903,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REVOKE: this.enterOuterAlt(localContext, 2); { - this.state = 4271; - this.match(PostgreSqlParser.KW_REVOKE); this.state = 4275; + this.match(PostgreSqlParser.KW_REVOKE); + this.state = 4279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4272; + this.state = 4276; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4273; + this.state = 4277; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4274; + this.state = 4278; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4277; + this.state = 4281; this.privileges(); - this.state = 4278; + this.state = 4282; this.match(PostgreSqlParser.KW_ON); - this.state = 4279; + this.state = 4283; this.defacl_privilege_target(); - this.state = 4280; + this.state = 4284; this.match(PostgreSqlParser.KW_FROM); - this.state = 4281; + this.state = 4285; this.grantee_list(); - this.state = 4283; + this.state = 4287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: { - this.state = 4282; + this.state = 4286; this.opt_drop_behavior(); } break; @@ -23964,7 +23966,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4287; + this.state = 4291; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 361 || _la === 455 || _la === 456)) { this.errorHandler.recoverInline(this); @@ -23996,126 +23998,126 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4289; + this.state = 4293; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4291; + this.state = 4295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98) { { - this.state = 4290; + this.state = 4294; this.match(PostgreSqlParser.KW_UNIQUE); } } - this.state = 4293; + this.state = 4297; this.match(PostgreSqlParser.KW_INDEX); - this.state = 4295; + this.state = 4299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4294; + this.state = 4298; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4298; + this.state = 4302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 520, this.context) ) { case 1: { - this.state = 4297; + this.state = 4301; this.opt_if_not_exists(); } break; } - this.state = 4301; + this.state = 4305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 4300; + this.state = 4304; this.colid(); } } - this.state = 4303; + this.state = 4307; this.match(PostgreSqlParser.KW_ON); - this.state = 4304; + this.state = 4308; this.relation_expr(); - this.state = 4306; + this.state = 4310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4305; + this.state = 4309; this.table_access_method_clause(); } } - this.state = 4308; + this.state = 4312; this.index_params(); - this.state = 4311; + this.state = 4315; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 523, this.context) ) { case 1: { - this.state = 4309; + this.state = 4313; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 4310; + this.state = 4314; this.index_params(); } break; } - this.state = 4318; + this.state = 4322; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { case 1: { - this.state = 4313; + this.state = 4317; this.match(PostgreSqlParser.KW_NULLS); - this.state = 4315; + this.state = 4319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 4314; + this.state = 4318; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 4317; + this.state = 4321; this.match(PostgreSqlParser.KW_DISTINCT); } break; } - this.state = 4321; + this.state = 4325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { case 1: { - this.state = 4320; + this.state = 4324; this.opt_reloptions(); } break; } - this.state = 4324; + this.state = 4328; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: { - this.state = 4323; + this.state = 4327; this.opttablespace(); } break; } - this.state = 4327; + this.state = 4331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 4326; + this.state = 4330; this.where_clause(); } } @@ -24143,27 +24145,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4329; + this.state = 4333; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4330; + this.state = 4334; this.index_elem(); - this.state = 4335; + this.state = 4339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4331; + this.state = 4335; this.match(PostgreSqlParser.COMMA); - this.state = 4332; + this.state = 4336; this.index_elem(); } } - this.state = 4337; + this.state = 4341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4338; + this.state = 4342; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24188,53 +24190,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4346; + this.state = 4350; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 530, this.context) ) { case 1: { - this.state = 4340; + this.state = 4344; this.column_name(); } break; case 2: { - this.state = 4341; + this.state = 4345; this.func_expr_windowless(); } break; case 3: { - this.state = 4342; + this.state = 4346; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4343; + this.state = 4347; this.expression(); - this.state = 4344; + this.state = 4348; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 4349; + this.state = 4353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 4348; + this.state = 4352; this.opt_collate_clause(); } } - this.state = 4357; + this.state = 4361; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { case 1: { - this.state = 4352; + this.state = 4356; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: { - this.state = 4351; + this.state = 4355; this.any_name(); } break; @@ -24243,19 +24245,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4354; + this.state = 4358; this.any_name(); - this.state = 4355; + this.state = 4359; this.reloptions(); } break; } - this.state = 4360; + this.state = 4364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 4359; + this.state = 4363; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -24267,14 +24269,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4364; + this.state = 4368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 4362; + this.state = 4366; this.match(PostgreSqlParser.KW_NULLS); - this.state = 4363; + this.state = 4367; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -24310,34 +24312,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4366; + this.state = 4370; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4368; + this.state = 4372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4367; + this.state = 4371; this.opt_or_replace(); } } - this.state = 4374; + this.state = 4378; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4370; + this.state = 4374; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4371; + this.state = 4375; this.function_name_create(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4372; + this.state = 4376; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4373; + this.state = 4377; this.procedure_name_create(); } break; @@ -24345,45 +24347,45 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } { - this.state = 4376; + this.state = 4380; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4385; + this.state = 4389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_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 - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 4377; + this.state = 4381; this.func_arg_with_default(); - this.state = 4382; + this.state = 4386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4378; + this.state = 4382; this.match(PostgreSqlParser.COMMA); - this.state = 4379; + this.state = 4383; this.func_arg_with_default(); } } - this.state = 4384; + this.state = 4388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4387; + this.state = 4391; this.match(PostgreSqlParser.CLOSE_PAREN); } - this.state = 4405; + this.state = 4409; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 542, this.context) ) { case 1: { - this.state = 4389; + this.state = 4393; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4403; + this.state = 4407; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -24802,36 +24804,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4390; + this.state = 4394; this.func_type(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4391; + this.state = 4395; this.match(PostgreSqlParser.KW_TABLE); { - this.state = 4392; + this.state = 4396; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4393; + this.state = 4397; this.table_func_column(); - this.state = 4398; + this.state = 4402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4394; + this.state = 4398; this.match(PostgreSqlParser.COMMA); - this.state = 4395; + this.state = 4399; this.table_func_column(); } } - this.state = 4400; + this.state = 4404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4401; + this.state = 4405; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24842,7 +24844,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4408; + this.state = 4412; this.errorHandler.sync(this); alternative = 1; do { @@ -24850,7 +24852,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4407; + this.state = 4411; this.createfunc_opt_item(); } } @@ -24858,22 +24860,22 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4410; + this.state = 4414; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4417; + this.state = 4421; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 4412; + this.state = 4416; this.match(PostgreSqlParser.KW_WITH); - this.state = 4413; + this.state = 4417; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4414; + this.state = 4418; this.name_list(); - this.state = 4415; + this.state = 4419; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -24900,9 +24902,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4419; + this.state = 4423; this.match(PostgreSqlParser.KW_OR); - this.state = 4420; + this.state = 4424; this.match(PostgreSqlParser.KW_REPLACE); } } @@ -24927,19 +24929,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4422; + this.state = 4426; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4424; + this.state = 4428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_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 - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 4423; + this.state = 4427; this.func_args_list(); } } - this.state = 4426; + this.state = 4430; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24964,21 +24966,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4428; + this.state = 4432; this.func_arg(); - this.state = 4433; + this.state = 4437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4429; + this.state = 4433; this.match(PostgreSqlParser.COMMA); - this.state = 4430; + this.state = 4434; this.func_arg(); } } - this.state = 4435; + this.state = 4439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25005,21 +25007,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4436; + this.state = 4440; this.routine_with_argtypes(); - this.state = 4441; + this.state = 4445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4437; + this.state = 4441; this.match(PostgreSqlParser.COMMA); - this.state = 4438; + this.state = 4442; this.routine_with_argtypes(); } } - this.state = 4443; + this.state = 4447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25043,29 +25045,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Routine_with_argtypesContext(this.context, this.state); this.enterRule(localContext, 374, PostgreSqlParser.RULE_routine_with_argtypes); try { - this.state = 4449; + this.state = 4453; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4444; + this.state = 4448; this.routine_name(); - this.state = 4445; + this.state = 4449; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4447; + this.state = 4451; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4448; + this.state = 4452; this.qualified_name(); } break; @@ -25092,21 +25094,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4451; + this.state = 4455; this.procedure_with_argtypes(); - this.state = 4456; + this.state = 4460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4452; + this.state = 4456; this.match(PostgreSqlParser.COMMA); - this.state = 4453; + this.state = 4457; this.procedure_with_argtypes(); } } - this.state = 4458; + this.state = 4462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25130,29 +25132,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Procedure_with_argtypesContext(this.context, this.state); this.enterRule(localContext, 378, PostgreSqlParser.RULE_procedure_with_argtypes); try { - this.state = 4464; + this.state = 4468; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4459; + this.state = 4463; this.procedure_name(); - this.state = 4460; + this.state = 4464; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4462; + this.state = 4466; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4463; + this.state = 4467; this.qualified_name(); } break; @@ -25179,21 +25181,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4466; + this.state = 4470; this.function_with_argtypes(); - this.state = 4471; + this.state = 4475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4467; + this.state = 4471; this.match(PostgreSqlParser.COMMA); - this.state = 4468; + this.state = 4472; this.function_with_argtypes(); } } - this.state = 4473; + this.state = 4477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25217,29 +25219,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Function_with_argtypesContext(this.context, this.state); this.enterRule(localContext, 382, PostgreSqlParser.RULE_function_with_argtypes); try { - this.state = 4479; + this.state = 4483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4474; + this.state = 4478; this.function_name(); - this.state = 4475; + this.state = 4479; this.func_args(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4477; + this.state = 4481; this.type_func_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4478; + this.state = 4482; this.qualified_name(); } break; @@ -25265,19 +25267,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4489; + this.state = 4493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: { - this.state = 4481; + this.state = 4485; this.arg_class(); - this.state = 4483; + this.state = 4487; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 4482; + this.state = 4486; this.type_function_name(); } break; @@ -25286,14 +25288,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4485; + this.state = 4489; this.type_function_name(); - this.state = 4487; + this.state = 4491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: { - this.state = 4486; + this.state = 4490; this.arg_class(); } break; @@ -25301,7 +25303,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4491; + this.state = 4495; this.func_type(); } } @@ -25323,20 +25325,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Arg_classContext(this.context, this.state); this.enterRule(localContext, 386, PostgreSqlParser.RULE_arg_class); try { - this.state = 4500; + this.state = 4504; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4493; + this.state = 4497; this.match(PostgreSqlParser.KW_IN); - this.state = 4495; + this.state = 4499; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4494; + this.state = 4498; this.match(PostgreSqlParser.KW_OUT); } break; @@ -25346,21 +25348,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OUT: this.enterOuterAlt(localContext, 2); { - this.state = 4497; + this.state = 4501; this.match(PostgreSqlParser.KW_OUT); } break; case PostgreSqlParser.KW_INOUT: this.enterOuterAlt(localContext, 3); { - this.state = 4498; + this.state = 4502; this.match(PostgreSqlParser.KW_INOUT); } break; case PostgreSqlParser.KW_VARIADIC: this.enterOuterAlt(localContext, 4); { - this.state = 4499; + this.state = 4503; this.match(PostgreSqlParser.KW_VARIADIC); } break; @@ -25387,36 +25389,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 388, PostgreSqlParser.RULE_func_type); let _la: number; try { - this.state = 4511; + this.state = 4515; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 559, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4502; + this.state = 4506; this.typename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4504; + this.state = 4508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 4503; + this.state = 4507; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 4506; + this.state = 4510; this.type_function_name(); - this.state = 4507; + this.state = 4511; this.attrs(); - this.state = 4508; + this.state = 4512; this.match(PostgreSqlParser.PERCENT); - this.state = 4509; + this.state = 4513; this.match(PostgreSqlParser.KW_TYPE); } break; @@ -25443,14 +25445,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4513; + this.state = 4517; this.func_arg(); - this.state = 4516; + this.state = 4520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 53) { { - this.state = 4514; + this.state = 4518; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 53)) { this.errorHandler.recoverInline(this); @@ -25459,7 +25461,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4515; + this.state = 4519; this.expression(); } } @@ -25487,14 +25489,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4518; + this.state = 4522; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4528; + this.state = 4532; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: { - this.state = 4519; + this.state = 4523; this.match(PostgreSqlParser.STAR); } break; @@ -25918,26 +25920,26 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4521; + this.state = 4525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_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 - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 4520; + this.state = 4524; this.func_args_list(); } } - this.state = 4526; + this.state = 4530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 4523; + this.state = 4527; this.match(PostgreSqlParser.KW_ORDER); - this.state = 4524; + this.state = 4528; this.match(PostgreSqlParser.KW_BY); - this.state = 4525; + this.state = 4529; this.func_args_list(); } } @@ -25947,7 +25949,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4530; + this.state = 4534; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -25971,9 +25973,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4532; + this.state = 4536; this.function_name(); - this.state = 4533; + this.state = 4537; this.aggr_args(); } } @@ -25996,66 +25998,66 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 396, PostgreSqlParser.RULE_common_func_opt_item); let _la: number; try { - this.state = 4564; + this.state = 4568; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALLED: case PostgreSqlParser.KW_RETURNS: this.enterOuterAlt(localContext, 1); { - this.state = 4538; + this.state = 4542; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RETURNS: { - this.state = 4535; + this.state = 4539; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4536; + this.state = 4540; this.match(PostgreSqlParser.KW_NULL); } break; case PostgreSqlParser.KW_CALLED: { - this.state = 4537; + this.state = 4541; this.match(PostgreSqlParser.KW_CALLED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4540; + this.state = 4544; this.match(PostgreSqlParser.KW_ON); - this.state = 4541; + this.state = 4545; this.match(PostgreSqlParser.KW_NULL); - this.state = 4542; + this.state = 4546; this.match(PostgreSqlParser.KW_INPUT); } break; case PostgreSqlParser.KW_STRICT: this.enterOuterAlt(localContext, 2); { - this.state = 4543; + this.state = 4547; this.match(PostgreSqlParser.KW_STRICT); } break; case PostgreSqlParser.KW_IMMUTABLE: this.enterOuterAlt(localContext, 3); { - this.state = 4544; + this.state = 4548; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case PostgreSqlParser.KW_STABLE: this.enterOuterAlt(localContext, 4); { - this.state = 4545; + this.state = 4549; this.match(PostgreSqlParser.KW_STABLE); } break; case PostgreSqlParser.KW_VOLATILE: this.enterOuterAlt(localContext, 5); { - this.state = 4546; + this.state = 4550; this.match(PostgreSqlParser.KW_VOLATILE); } break; @@ -26063,19 +26065,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SECURITY: this.enterOuterAlt(localContext, 6); { - this.state = 4548; + this.state = 4552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4547; + this.state = 4551; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 4550; + this.state = 4554; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 4551; + this.state = 4555; _la = this.tokenStream.LA(1); if(!(_la === 181 || _la === 243)) { this.errorHandler.recoverInline(this); @@ -26089,16 +26091,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEAKPROOF: this.enterOuterAlt(localContext, 7); { - this.state = 4552; + this.state = 4556; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 8); { - this.state = 4553; + this.state = 4557; this.match(PostgreSqlParser.KW_NOT); - this.state = 4554; + this.state = 4558; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; @@ -26106,7 +26108,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 9); { - this.state = 4555; + this.state = 4559; _la = this.tokenStream.LA(1); if(!(_la === 170 || _la === 320)) { this.errorHandler.recoverInline(this); @@ -26115,41 +26117,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4556; + this.state = 4560; this.numericonly(); } break; case PostgreSqlParser.KW_SUPPORT: this.enterOuterAlt(localContext, 10); { - this.state = 4557; + this.state = 4561; this.match(PostgreSqlParser.KW_SUPPORT); - this.state = 4558; + this.state = 4562; this.any_name(); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 11); { - this.state = 4559; + this.state = 4563; this.match(PostgreSqlParser.KW_SET); - this.state = 4560; + this.state = 4564; this.set_rest_more(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 12); { - this.state = 4561; + this.state = 4565; this.variableresetstmt(); } break; case PostgreSqlParser.KW_PARALLEL: this.enterOuterAlt(localContext, 13); { - this.state = 4562; + this.state = 4566; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 4563; + this.state = 4567; this.colid(); } break; @@ -26176,57 +26178,57 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 398, PostgreSqlParser.RULE_createfunc_opt_item); let _la: number; try { - this.state = 4601; + this.state = 4605; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4566; + this.state = 4570; this.match(PostgreSqlParser.KW_AS); - this.state = 4567; + this.state = 4571; this.sconst(); - this.state = 4568; + this.state = 4572; this.notify_payload(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4570; + this.state = 4574; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4571; + this.state = 4575; this.nonreservedword_or_sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4572; + this.state = 4576; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4573; + this.state = 4577; this.match(PostgreSqlParser.KW_FOR); - this.state = 4574; + this.state = 4578; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4575; + this.state = 4579; this.typename(); - this.state = 4582; + this.state = 4586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4576; + this.state = 4580; this.match(PostgreSqlParser.COMMA); - this.state = 4577; + this.state = 4581; this.match(PostgreSqlParser.KW_FOR); - this.state = 4578; + this.state = 4582; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4579; + this.state = 4583; this.typename(); } } - this.state = 4584; + this.state = 4588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26235,41 +26237,41 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4585; + this.state = 4589; this.match(PostgreSqlParser.KW_WINDOW); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4586; + this.state = 4590; this.match(PostgreSqlParser.KW_SET); - this.state = 4587; + this.state = 4591; this.colid(); - this.state = 4594; + this.state = 4598; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TO: { - this.state = 4588; + this.state = 4592; this.match(PostgreSqlParser.KW_TO); - this.state = 4589; + this.state = 4593; this.colid(); } break; case PostgreSqlParser.EQUAL: { - this.state = 4590; + this.state = 4594; this.match(PostgreSqlParser.EQUAL); - this.state = 4591; + this.state = 4595; this.colid(); } break; case PostgreSqlParser.KW_FROM: { - this.state = 4592; + this.state = 4596; this.match(PostgreSqlParser.KW_FROM); - this.state = 4593; + this.state = 4597; this.match(PostgreSqlParser.KW_CURRENT); } break; @@ -26281,30 +26283,30 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4596; + this.state = 4600; this.match(PostgreSqlParser.KW_AS); - this.state = 4597; + this.state = 4601; this.colid(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4598; + this.state = 4602; this.stmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4599; + this.state = 4603; this.common_func_opt_item(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4600; + this.state = 4604; this.colid(); } break; @@ -26330,9 +26332,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4603; + this.state = 4607; this.match(PostgreSqlParser.KW_WITH); - this.state = 4604; + this.state = 4608; this.definition(); } } @@ -26356,9 +26358,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4606; + this.state = 4610; this.column_name(); - this.state = 4607; + this.state = 4611; this.func_type(); } } @@ -26383,39 +26385,39 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4609; + this.state = 4613; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4616; + this.state = 4620; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4610; + this.state = 4614; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4611; + this.state = 4615; this.function_with_argtypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4612; + this.state = 4616; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4613; + this.state = 4617; this.procedure_with_argtypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4614; + this.state = 4618; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4615; + this.state = 4619; this.routine_with_argtypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4619; + this.state = 4623; this.errorHandler.sync(this); alternative = 1; do { @@ -26423,7 +26425,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4618; + this.state = 4622; this.common_func_opt_item(); } } @@ -26431,16 +26433,16 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4621; + this.state = 4625; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4624; + this.state = 4628; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 572, this.context) ) { case 1: { - this.state = 4623; + this.state = 4627; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -26467,74 +26469,74 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4626; + this.state = 4630; this.match(PostgreSqlParser.KW_DROP); - this.state = 4642; + this.state = 4646; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4627; + this.state = 4631; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4629; + this.state = 4633; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 573, this.context) ) { case 1: { - this.state = 4628; + this.state = 4632; this.opt_if_exists(); } break; } - this.state = 4631; + this.state = 4635; this.function_with_argtypes_list(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4632; + this.state = 4636; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4634; + this.state = 4638; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: { - this.state = 4633; + this.state = 4637; this.opt_if_exists(); } break; } - this.state = 4636; + this.state = 4640; this.procedure_with_argtypes_list(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4637; + this.state = 4641; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4639; + this.state = 4643; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4638; + this.state = 4642; this.opt_if_exists(); } break; } - this.state = 4641; + this.state = 4645; this.routine_with_argtypes_list(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4645; + this.state = 4649; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4644; + this.state = 4648; this.opt_drop_behavior(); } break; @@ -26562,46 +26564,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4647; + this.state = 4651; this.match(PostgreSqlParser.KW_DROP); - this.state = 4648; + this.state = 4652; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4650; + this.state = 4654; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: { - this.state = 4649; + this.state = 4653; this.opt_if_exists(); } break; } { - this.state = 4652; + this.state = 4656; this.aggregate_with_argtypes(); - this.state = 4657; + this.state = 4661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4653; + this.state = 4657; this.match(PostgreSqlParser.COMMA); - this.state = 4654; + this.state = 4658; this.aggregate_with_argtypes(); } } - this.state = 4659; + this.state = 4663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4661; + this.state = 4665; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4660; + this.state = 4664; this.opt_drop_behavior(); } break; @@ -26629,46 +26631,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4663; + this.state = 4667; this.match(PostgreSqlParser.KW_DROP); - this.state = 4664; + this.state = 4668; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 4666; + this.state = 4670; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: { - this.state = 4665; + this.state = 4669; this.opt_if_exists(); } break; } { - this.state = 4668; + this.state = 4672; this.operator_with_argtypes(); - this.state = 4673; + this.state = 4677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4669; + this.state = 4673; this.match(PostgreSqlParser.COMMA); - this.state = 4670; + this.state = 4674; this.operator_with_argtypes(); } } - this.state = 4675; + this.state = 4679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4677; + this.state = 4681; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4676; + this.state = 4680; this.opt_drop_behavior(); } break; @@ -26696,23 +26698,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4679; + this.state = 4683; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4692; + this.state = 4696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: { - this.state = 4680; + this.state = 4684; this.typename(); - this.state = 4683; + this.state = 4687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4681; + this.state = 4685; this.match(PostgreSqlParser.COMMA); - this.state = 4682; + this.state = 4686; this.typename(); } } @@ -26721,26 +26723,26 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4685; + this.state = 4689; this.match(PostgreSqlParser.KW_NONE); - this.state = 4686; + this.state = 4690; this.match(PostgreSqlParser.COMMA); - this.state = 4687; + this.state = 4691; this.typename(); } break; case 3: { - this.state = 4688; + this.state = 4692; this.typename(); - this.state = 4689; + this.state = 4693; this.match(PostgreSqlParser.COMMA); - this.state = 4690; + this.state = 4694; this.match(PostgreSqlParser.KW_NONE); } break; } - this.state = 4694; + this.state = 4698; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -26765,23 +26767,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4701; + this.state = 4705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { { - this.state = 4696; + this.state = 4700; this.colid(); - this.state = 4697; + this.state = 4701; this.match(PostgreSqlParser.DOT); } } - this.state = 4703; + this.state = 4707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4704; + this.state = 4708; this.all_op(); } } @@ -26805,9 +26807,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4706; + this.state = 4710; this.any_operator(); - this.state = 4707; + this.state = 4711; this.oper_argtypes(); } } @@ -26832,16 +26834,16 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4709; - this.match(PostgreSqlParser.KW_DO); this.state = 4713; + this.match(PostgreSqlParser.KW_DO); + this.state = 4717; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 4713; + this.state = 4717; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -26849,15 +26851,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4710; + this.state = 4714; this.sconst(); } break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4711; + this.state = 4715; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4712; + this.state = 4716; this.nonreservedword_or_sconst(); } break; @@ -26869,7 +26871,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4715; + this.state = 4719; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -26896,38 +26898,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4717; + this.state = 4721; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4718; + this.state = 4722; this.match(PostgreSqlParser.KW_CAST); - this.state = 4719; + this.state = 4723; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4720; + this.state = 4724; this.typename(); - this.state = 4721; + this.state = 4725; this.match(PostgreSqlParser.KW_AS); - this.state = 4722; + this.state = 4726; this.typename(); - this.state = 4723; + this.state = 4727; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 4740; + this.state = 4744; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WITHOUT: { { - this.state = 4724; + this.state = 4728; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 4725; + this.state = 4729; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4728; + this.state = 4732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { case 1: { - this.state = 4726; + this.state = 4730; this.match(PostgreSqlParser.KW_AS); - this.state = 4727; + this.state = 4731; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26945,36 +26947,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: { { - this.state = 4730; - this.match(PostgreSqlParser.KW_WITH); this.state = 4734; + this.match(PostgreSqlParser.KW_WITH); + this.state = 4738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4731; + this.state = 4735; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4732; + this.state = 4736; this.function_with_argtypes(); } break; case PostgreSqlParser.KW_INOUT: { - this.state = 4733; + this.state = 4737; this.match(PostgreSqlParser.KW_INOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4738; + this.state = 4742; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4736; + this.state = 4740; this.match(PostgreSqlParser.KW_AS); - this.state = 4737; + this.state = 4741; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -27014,9 +27016,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4742; + this.state = 4746; this.match(PostgreSqlParser.KW_IF); - this.state = 4743; + this.state = 4747; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -27041,49 +27043,49 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4745; + this.state = 4749; this.match(PostgreSqlParser.KW_CREATE); - this.state = 4747; + this.state = 4751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4746; + this.state = 4750; this.opt_or_replace(); } } - this.state = 4749; + this.state = 4753; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4750; + this.state = 4754; this.match(PostgreSqlParser.KW_FOR); - this.state = 4751; + this.state = 4755; this.typename(); - this.state = 4752; + this.state = 4756; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4753; + this.state = 4757; this.colid(); - this.state = 4754; + this.state = 4758; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4769; + this.state = 4773; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FROM: { - this.state = 4755; + this.state = 4759; this.match(PostgreSqlParser.KW_FROM); - this.state = 4756; - this.sql_with_function(); this.state = 4760; + this.sql_with_function(); + this.state = 4764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4757; + this.state = 4761; this.match(PostgreSqlParser.COMMA); - this.state = 4758; + this.state = 4762; this.match(PostgreSqlParser.KW_TO); - this.state = 4759; + this.state = 4763; this.sql_with_function(); } } @@ -27092,20 +27094,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_TO: { - this.state = 4762; + this.state = 4766; this.match(PostgreSqlParser.KW_TO); - this.state = 4763; - this.sql_with_function(); this.state = 4767; + this.sql_with_function(); + this.state = 4771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4764; + this.state = 4768; this.match(PostgreSqlParser.COMMA); - this.state = 4765; + this.state = 4769; this.match(PostgreSqlParser.KW_FROM); - this.state = 4766; + this.state = 4770; this.sql_with_function(); } } @@ -27115,7 +27117,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4771; + this.state = 4775; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -27139,13 +27141,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4773; + this.state = 4777; this.match(PostgreSqlParser.KW_SQL); - this.state = 4774; + this.state = 4778; this.match(PostgreSqlParser.KW_WITH); - this.state = 4775; + this.state = 4779; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4776; + this.state = 4780; this.function_with_argtypes(); } } @@ -27170,129 +27172,129 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4778; + this.state = 4782; this.match(PostgreSqlParser.KW_REINDEX); - this.state = 4789; + this.state = 4793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4779; + this.state = 4783; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4780; + this.state = 4784; this.match(PostgreSqlParser.KW_VERBOSE); - this.state = 4785; + this.state = 4789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4781; + this.state = 4785; this.match(PostgreSqlParser.COMMA); - this.state = 4782; + this.state = 4786; this.match(PostgreSqlParser.KW_VERBOSE); } } - this.state = 4787; + this.state = 4791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4788; + this.state = 4792; this.match(PostgreSqlParser.CLOSE_PAREN); } } { - this.state = 4816; + this.state = 4820; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INDEX: { - this.state = 4791; + this.state = 4795; this.match(PostgreSqlParser.KW_INDEX); - this.state = 4793; + this.state = 4797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4792; + this.state = 4796; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4795; + this.state = 4799; this.qualified_name(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4796; + this.state = 4800; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4798; + this.state = 4802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4797; + this.state = 4801; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4800; + this.state = 4804; this.table_name(); } break; case PostgreSqlParser.KW_SCHEMA: { - this.state = 4801; + this.state = 4805; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4803; + this.state = 4807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4802; + this.state = 4806; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4805; + this.state = 4809; this.schema_name(); } break; case PostgreSqlParser.KW_SYSTEM: { - this.state = 4806; + this.state = 4810; this.match(PostgreSqlParser.KW_SYSTEM); - this.state = 4808; + this.state = 4812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4807; + this.state = 4811; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4810; + this.state = 4814; this.colid(); } break; case PostgreSqlParser.KW_DATABASE: { - this.state = 4811; + this.state = 4815; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4813; + this.state = 4817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4812; + this.state = 4816; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4815; + this.state = 4819; this.database_name(); } break; @@ -27323,11 +27325,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4818; + this.state = 4822; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4819; + this.state = 4823; this.opttablespace(); - this.state = 4820; + this.state = 4824; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -27336,7 +27338,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4821; + this.state = 4825; this.reloptions(); } } @@ -27359,67 +27361,67 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 432, PostgreSqlParser.RULE_renamestmt); let _la: number; try { - this.state = 5030; + this.state = 5034; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4823; + this.state = 4827; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4828; + this.state = 4832; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AGGREGATE: { - this.state = 4824; + this.state = 4828; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4825; + this.state = 4829; this.aggregate_with_argtypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4826; + this.state = 4830; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4827; + this.state = 4831; this.routine_with_argtypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4830; + this.state = 4834; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4831; + this.state = 4835; this.match(PostgreSqlParser.KW_TO); - this.state = 4832; + this.state = 4836; this.colid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4834; + this.state = 4838; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4835; + this.state = 4839; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4836; + this.state = 4840; this.database_name(); - this.state = 4837; + this.state = 4841; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4838; + this.state = 4842; this.match(PostgreSqlParser.KW_TO); - this.state = 4839; + this.state = 4843; this.database_name_create(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4841; + this.state = 4845; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4842; + this.state = 4846; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 189 || _la === 342 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -27428,41 +27430,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4843; + this.state = 4847; this.any_name(); - this.state = 4844; + this.state = 4848; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4845; + this.state = 4849; this.match(PostgreSqlParser.KW_TO); - this.state = 4846; + this.state = 4850; this.colid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4848; + this.state = 4852; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4849; + this.state = 4853; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4850; + this.state = 4854; this.function_with_argtypes(); - this.state = 4851; + this.state = 4855; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4852; + this.state = 4856; this.match(PostgreSqlParser.KW_TO); - this.state = 4853; + this.state = 4857; this.function_name_create(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4855; + this.state = 4859; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4856; + this.state = 4860; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 4857; + this.state = 4861; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -27471,58 +27473,58 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4858; + this.state = 4862; this.any_name(); - this.state = 4859; + this.state = 4863; this.table_access_method_clause(); - this.state = 4860; + this.state = 4864; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4861; + this.state = 4865; this.match(PostgreSqlParser.KW_TO); - this.state = 4862; + this.state = 4866; this.colid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4864; + this.state = 4868; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4865; + this.state = 4869; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4866; + this.state = 4870; this.procedure_with_argtypes(); - this.state = 4867; + this.state = 4871; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4868; + this.state = 4872; this.match(PostgreSqlParser.KW_TO); - this.state = 4869; + this.state = 4873; this.procedure_name_create(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4871; + this.state = 4875; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4872; + this.state = 4876; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4873; + this.state = 4877; this.schema_name(); - this.state = 4874; + this.state = 4878; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4875; + this.state = 4879; this.match(PostgreSqlParser.KW_TO); - this.state = 4876; + this.state = 4880; this.schema_name_create(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4878; + this.state = 4882; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4879; + this.state = 4883; _la = this.tokenStream.LA(1); if(!(_la === 226 || _la === 328)) { this.errorHandler.recoverInline(this); @@ -27531,143 +27533,143 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4881; + this.state = 4885; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { case 1: { - this.state = 4880; + this.state = 4884; this.opt_if_exists(); } break; } - this.state = 4883; + this.state = 4887; this.qualified_name(); - this.state = 4884; + this.state = 4888; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4885; + this.state = 4889; this.match(PostgreSqlParser.KW_TO); - this.state = 4886; + this.state = 4890; this.colid(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4888; + this.state = 4892; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4890; + this.state = 4894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4889; + this.state = 4893; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4892; + this.state = 4896; this.match(PostgreSqlParser.KW_VIEW); - this.state = 4894; + this.state = 4898; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: { - this.state = 4893; + this.state = 4897; this.opt_if_exists(); } break; } - this.state = 4896; + this.state = 4900; this.view_name(); - this.state = 4897; + this.state = 4901; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4898; + this.state = 4902; this.match(PostgreSqlParser.KW_TO); - this.state = 4899; + this.state = 4903; this.view_name_create(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4901; + this.state = 4905; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4903; + this.state = 4907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4902; + this.state = 4906; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4905; + this.state = 4909; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4907; + this.state = 4911; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 4906; + this.state = 4910; this.opt_if_exists(); } break; } - this.state = 4909; + this.state = 4913; this.relation_expr(); - this.state = 4910; + this.state = 4914; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4911; + this.state = 4915; this.match(PostgreSqlParser.KW_TO); - this.state = 4912; + this.state = 4916; this.table_name_create(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4914; + this.state = 4918; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4939; + this.state = 4943; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: { - this.state = 4916; + this.state = 4920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4915; + this.state = 4919; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4918; + this.state = 4922; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4920; + this.state = 4924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: { - this.state = 4919; + this.state = 4923; this.opt_if_exists(); } break; } - this.state = 4922; + this.state = 4926; this.relation_expr(); - this.state = 4923; + this.state = 4927; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4925; + this.state = 4929; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { case 1: { - this.state = 4924; + this.state = 4928; this.match(PostgreSqlParser.KW_COLUMN); } break; @@ -27677,38 +27679,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MATERIALIZED: case PostgreSqlParser.KW_VIEW: { - this.state = 4928; + this.state = 4932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4927; + this.state = 4931; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4930; + this.state = 4934; this.match(PostgreSqlParser.KW_VIEW); - this.state = 4932; + this.state = 4936; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: { - this.state = 4931; + this.state = 4935; this.opt_if_exists(); } break; } - this.state = 4934; + this.state = 4938; this.view_name(); - this.state = 4935; + this.state = 4939; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4937; + this.state = 4941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4936; + this.state = 4940; this.match(PostgreSqlParser.KW_COLUMN); } break; @@ -27718,82 +27720,82 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4941; + this.state = 4945; this.column_name(); - this.state = 4942; + this.state = 4946; this.match(PostgreSqlParser.KW_TO); - this.state = 4943; + this.state = 4947; this.column_name_create(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4945; + this.state = 4949; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4953; + this.state = 4957; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TABLE: { - this.state = 4946; + this.state = 4950; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4948; + this.state = 4952; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 4947; + this.state = 4951; this.opt_if_exists(); } break; } - this.state = 4950; + this.state = 4954; this.relation_expr(); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 4951; + this.state = 4955; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 4952; + this.state = 4956; this.any_name(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4955; + this.state = 4959; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4956; + this.state = 4960; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 4957; + this.state = 4961; this.colid(); - this.state = 4958; + this.state = 4962; this.match(PostgreSqlParser.KW_TO); - this.state = 4959; + this.state = 4963; this.colid(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4961; + this.state = 4965; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4968; + this.state = 4972; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_POLICY: { { - this.state = 4962; + this.state = 4966; this.match(PostgreSqlParser.KW_POLICY); - this.state = 4964; + this.state = 4968; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { case 1: { - this.state = 4963; + this.state = 4967; this.opt_if_exists(); } break; @@ -27803,113 +27805,113 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RULE: { - this.state = 4966; + this.state = 4970; this.match(PostgreSqlParser.KW_RULE); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 4967; + this.state = 4971; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4970; + this.state = 4974; this.colid(); - this.state = 4971; + this.state = 4975; this.match(PostgreSqlParser.KW_ON); - this.state = 4972; + this.state = 4976; this.qualified_name(); - this.state = 4973; + this.state = 4977; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4974; + this.state = 4978; this.match(PostgreSqlParser.KW_TO); - this.state = 4975; + this.state = 4979; this.colid(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4977; + this.state = 4981; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4990; + this.state = 4994; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4978; + this.state = 4982; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 4979; + this.state = 4983; this.match(PostgreSqlParser.KW_DATA); - this.state = 4980; + this.state = 4984; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 4982; + this.state = 4986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 4981; + this.state = 4985; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 4984; + this.state = 4988; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 4985; + this.state = 4989; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4986; + this.state = 4990; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 4987; + this.state = 4991; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 4988; + this.state = 4992; this.match(PostgreSqlParser.KW_EVENT); - this.state = 4989; + this.state = 4993; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4992; + this.state = 4996; this.colid(); - this.state = 4993; + this.state = 4997; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4994; + this.state = 4998; this.match(PostgreSqlParser.KW_TO); - this.state = 4995; + this.state = 4999; this.colid(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4997; + this.state = 5001; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4998; + this.state = 5002; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -27918,41 +27920,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4999; + this.state = 5003; this.rolespec(); - this.state = 5000; + this.state = 5004; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5001; + this.state = 5005; this.match(PostgreSqlParser.KW_TO); - this.state = 5002; + this.state = 5006; this.rolespec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5004; + this.state = 5008; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5005; + this.state = 5009; this.opttablespace(); - this.state = 5006; + this.state = 5010; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5007; + this.state = 5011; this.match(PostgreSqlParser.KW_TO); - this.state = 5008; + this.state = 5012; this.tablespace_name_create(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5010; + this.state = 5014; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5011; + this.state = 5015; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5012; + this.state = 5016; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5013; + this.state = 5017; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -27961,41 +27963,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5014; + this.state = 5018; this.any_name(); - this.state = 5015; + this.state = 5019; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5016; + this.state = 5020; this.match(PostgreSqlParser.KW_TO); - this.state = 5017; + this.state = 5021; this.colid(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5019; + this.state = 5023; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5020; + this.state = 5024; this.match(PostgreSqlParser.KW_TYPE); - this.state = 5021; + this.state = 5025; this.any_name(); - this.state = 5022; + this.state = 5026; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5023; + this.state = 5027; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 5024; + this.state = 5028; this.colid(); - this.state = 5025; + this.state = 5029; this.match(PostgreSqlParser.KW_TO); - this.state = 5026; + this.state = 5030; this.colid(); - this.state = 5028; + this.state = 5032; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { case 1: { - this.state = 5027; + this.state = 5031; this.opt_drop_behavior(); } break; @@ -28025,85 +28027,85 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5032; + this.state = 5036; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5049; + this.state = 5053; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 5033; + this.state = 5037; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5034; + this.state = 5038; this.function_with_argtypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 5035; + this.state = 5039; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5036; + this.state = 5040; this.procedure_with_argtypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 5037; + this.state = 5041; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5038; + this.state = 5042; this.routine_with_argtypes(); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 5039; + this.state = 5043; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 5040; + this.state = 5044; this.colid(); - this.state = 5041; + this.state = 5045; this.match(PostgreSqlParser.KW_ON); - this.state = 5042; + this.state = 5046; this.qualified_name(); } break; case PostgreSqlParser.KW_MATERIALIZED: { - this.state = 5044; + this.state = 5048; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 5045; + this.state = 5049; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5046; + this.state = 5050; this.view_name(); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 5047; + this.state = 5051; this.match(PostgreSqlParser.KW_INDEX); - this.state = 5048; + this.state = 5052; this.qualified_name(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5052; + this.state = 5056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5051; + this.state = 5055; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5054; + this.state = 5058; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 5055; + this.state = 5059; this.match(PostgreSqlParser.KW_ON); - this.state = 5056; + this.state = 5060; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5057; + this.state = 5061; this.colid(); } } @@ -28126,54 +28128,54 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 436, PostgreSqlParser.RULE_alterobjectschemastmt); let _la: number; try { - this.state = 5120; + this.state = 5124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5059; + this.state = 5063; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5098; + this.state = 5102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { case 1: { - this.state = 5060; + this.state = 5064; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5061; + this.state = 5065; this.aggregate_with_argtypes(); } break; case 2: { - this.state = 5062; + this.state = 5066; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5063; + this.state = 5067; this.colid(); } break; case 3: { - this.state = 5064; + this.state = 5068; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5065; + this.state = 5069; this.function_with_argtypes(); } break; case 4: { - this.state = 5066; + this.state = 5070; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5067; + this.state = 5071; this.operator_with_argtypes(); } break; case 5: { - this.state = 5068; + this.state = 5072; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5069; + this.state = 5073; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28182,126 +28184,126 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5070; + this.state = 5074; this.any_name(); - this.state = 5071; + this.state = 5075; this.table_access_method_clause(); } break; case 6: { - this.state = 5073; + this.state = 5077; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5074; + this.state = 5078; this.procedure_with_argtypes(); } break; case 7: { - this.state = 5075; + this.state = 5079; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5076; + this.state = 5080; this.routine_with_argtypes(); } break; case 8: { - this.state = 5077; + this.state = 5081; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 5079; + this.state = 5083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { case 1: { - this.state = 5078; + this.state = 5082; this.opt_if_exists(); } break; } - this.state = 5081; + this.state = 5085; this.qualified_name(); } break; case 9: { - this.state = 5083; + this.state = 5087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 5082; + this.state = 5086; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 5085; + this.state = 5089; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5087; + this.state = 5091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 5086; + this.state = 5090; this.opt_if_exists(); } break; } - this.state = 5089; + this.state = 5093; this.view_name(); } break; case 10: { - this.state = 5091; + this.state = 5095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 5090; + this.state = 5094; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 5093; + this.state = 5097; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5095; + this.state = 5099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { case 1: { - this.state = 5094; + this.state = 5098; this.opt_if_exists(); } break; } - this.state = 5097; + this.state = 5101; this.relation_expr(); } break; } - this.state = 5100; + this.state = 5104; this.match(PostgreSqlParser.KW_SET); - this.state = 5101; + this.state = 5105; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5102; + this.state = 5106; this.schema_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5104; + this.state = 5108; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5113; + this.state = 5117; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5105; + this.state = 5109; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5106; + this.state = 5110; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5107; + this.state = 5111; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -28314,44 +28316,44 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5108; + this.state = 5112; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5109; + this.state = 5113; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5110; + this.state = 5114; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5111; + this.state = 5115; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5112; + this.state = 5116; this.match(PostgreSqlParser.KW_TYPE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5115; + this.state = 5119; this.any_name(); - this.state = 5116; + this.state = 5120; this.match(PostgreSqlParser.KW_SET); - this.state = 5117; + this.state = 5121; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5118; + this.state = 5122; this.schema_name(); } break; @@ -28377,15 +28379,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5122; + this.state = 5126; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5123; + this.state = 5127; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5124; + this.state = 5128; this.operator_with_argtypes(); - this.state = 5125; + this.state = 5129; this.match(PostgreSqlParser.KW_SET); - this.state = 5126; + this.state = 5130; this.operator_def_list(); } } @@ -28410,27 +28412,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5128; + this.state = 5132; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5129; + this.state = 5133; this.operator_def_elem(); - this.state = 5134; + this.state = 5138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5130; + this.state = 5134; this.match(PostgreSqlParser.COMMA); - this.state = 5131; + this.state = 5135; this.operator_def_elem(); } } - this.state = 5136; + this.state = 5140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5137; + this.state = 5141; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -28454,46 +28456,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5139; + this.state = 5143; this.collabel(); - this.state = 5140; + this.state = 5144; this.match(PostgreSqlParser.EQUAL); - this.state = 5147; + this.state = 5151; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: { - this.state = 5141; + this.state = 5145; this.match(PostgreSqlParser.KW_NONE); } break; case 2: { - this.state = 5142; + this.state = 5146; this.func_type(); } break; case 3: { - this.state = 5143; + this.state = 5147; this.reserved_keyword(); } break; case 4: { - this.state = 5144; + this.state = 5148; this.qual_all_op(); } break; case 5: { - this.state = 5145; + this.state = 5149; this.numericonly(); } break; case 6: { - this.state = 5146; + this.state = 5150; this.sconst(); } break; @@ -28520,15 +28522,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5149; + this.state = 5153; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5150; + this.state = 5154; this.match(PostgreSqlParser.KW_TYPE); - this.state = 5151; + this.state = 5155; this.any_name(); - this.state = 5152; + this.state = 5156; this.match(PostgreSqlParser.KW_SET); - this.state = 5153; + this.state = 5157; this.operator_def_list(); } } @@ -28551,17 +28553,17 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 446, PostgreSqlParser.RULE_alterownerstmt); let _la: number; try { - this.state = 5229; + this.state = 5233; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 642, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5155; + this.state = 5159; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5156; + this.state = 5160; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5157; + this.state = 5161; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28570,150 +28572,150 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5158; + this.state = 5162; this.any_name(); - this.state = 5159; + this.state = 5163; this.table_access_method_clause(); - this.state = 5160; + this.state = 5164; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5161; + this.state = 5165; this.match(PostgreSqlParser.KW_TO); - this.state = 5162; + this.state = 5166; this.rolespec(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5164; + this.state = 5168; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5191; + this.state = 5195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { case 1: { - this.state = 5165; + this.state = 5169; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5166; + this.state = 5170; this.aggregate_with_argtypes(); } break; case 2: { - this.state = 5167; + this.state = 5171; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5168; + this.state = 5172; this.database_name(); } break; case 3: { - this.state = 5169; + this.state = 5173; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5170; + this.state = 5174; this.function_with_argtypes(); } break; case 4: { - this.state = 5172; + this.state = 5176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5171; + this.state = 5175; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 5174; + this.state = 5178; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 5175; + this.state = 5179; this.colid(); } break; case 5: { - this.state = 5176; + this.state = 5180; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5177; + this.state = 5181; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5178; + this.state = 5182; this.numericonly(); } break; case 6: { - this.state = 5179; + this.state = 5183; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5180; + this.state = 5184; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5181; + this.state = 5185; this.numericonly(); } break; case 7: { - this.state = 5182; + this.state = 5186; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5183; + this.state = 5187; this.operator_with_argtypes(); } break; case 8: { - this.state = 5184; + this.state = 5188; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5185; + this.state = 5189; this.procedure_with_argtypes(); } break; case 9: { - this.state = 5186; + this.state = 5190; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5187; + this.state = 5191; this.routine_with_argtypes(); } break; case 10: { - this.state = 5188; + this.state = 5192; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5189; + this.state = 5193; this.schema_name(); } break; case 11: { - this.state = 5190; + this.state = 5194; this.opttablespace(); } break; } - this.state = 5193; + this.state = 5197; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5194; + this.state = 5198; this.match(PostgreSqlParser.KW_TO); - this.state = 5195; + this.state = 5199; this.rolespec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5197; + this.state = 5201; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5206; + this.state = 5210; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5198; + this.state = 5202; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5199; + this.state = 5203; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5200; + this.state = 5204; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -28726,69 +28728,69 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5201; + this.state = 5205; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5202; + this.state = 5206; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5203; + this.state = 5207; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5204; + this.state = 5208; this.match(PostgreSqlParser.KW_TYPE); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5205; + this.state = 5209; this.match(PostgreSqlParser.KW_STATISTICS); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5208; + this.state = 5212; this.any_name(); - this.state = 5209; + this.state = 5213; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5210; + this.state = 5214; this.match(PostgreSqlParser.KW_TO); - this.state = 5211; + this.state = 5215; this.rolespec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5213; + this.state = 5217; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5222; + this.state = 5226; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SERVER: { - this.state = 5214; + this.state = 5218; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_FOREIGN: { { - this.state = 5215; + this.state = 5219; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 5216; + this.state = 5220; this.match(PostgreSqlParser.KW_DATA); - this.state = 5217; + this.state = 5221; this.match(PostgreSqlParser.KW_WRAPPER); } } @@ -28796,35 +28798,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EVENT: { { - this.state = 5218; + this.state = 5222; this.match(PostgreSqlParser.KW_EVENT); - this.state = 5219; + this.state = 5223; this.match(PostgreSqlParser.KW_TRIGGER); } } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 5220; + this.state = 5224; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 5221; + this.state = 5225; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5224; + this.state = 5228; this.colid(); - this.state = 5225; + this.state = 5229; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5226; + this.state = 5230; this.match(PostgreSqlParser.KW_TO); - this.state = 5227; + this.state = 5231; this.rolespec(); } break; @@ -28850,42 +28852,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5231; + this.state = 5235; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5232; + this.state = 5236; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5233; + this.state = 5237; this.colid(); - this.state = 5240; + this.state = 5244; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 643, this.context) ) { case 1: { - this.state = 5234; + this.state = 5238; this.match(PostgreSqlParser.KW_FOR); - this.state = 5235; + this.state = 5239; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5236; + this.state = 5240; this.relation_expr_list(); } break; case 2: { - this.state = 5237; + this.state = 5241; this.match(PostgreSqlParser.KW_FOR); - this.state = 5238; + this.state = 5242; this.match(PostgreSqlParser.KW_ALL); - this.state = 5239; + this.state = 5243; this.match(PostgreSqlParser.KW_TABLES); } break; } - this.state = 5243; + this.state = 5247; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: { - this.state = 5242; + this.state = 5246; this.opt_definition(); } break; @@ -28913,23 +28915,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5245; + this.state = 5249; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5246; + this.state = 5250; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5247; + this.state = 5251; this.colid(); - this.state = 5265; + this.state = 5269; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { case 1: { { - this.state = 5248; + this.state = 5252; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5249; + this.state = 5253; this.match(PostgreSqlParser.KW_TO); - this.state = 5250; + this.state = 5254; this.rolespec(); } } @@ -28937,9 +28939,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: { { - this.state = 5251; + this.state = 5255; this.match(PostgreSqlParser.KW_SET); - this.state = 5252; + this.state = 5256; this.definition(); } } @@ -28947,18 +28949,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 5253; + this.state = 5257; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5254; + this.state = 5258; this.match(PostgreSqlParser.KW_TO); - this.state = 5255; + this.state = 5259; this.colid(); } } break; case 4: { - this.state = 5256; + this.state = 5260; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -28967,21 +28969,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5257; + this.state = 5261; this.publication_relation_expr(); - this.state = 5262; + this.state = 5266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5258; + this.state = 5262; this.match(PostgreSqlParser.COMMA); - this.state = 5259; + this.state = 5263; this.publication_relation_expr(); } } - this.state = 5264; + this.state = 5268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29011,44 +29013,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5267; + this.state = 5271; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5268; + this.state = 5272; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5269; + this.state = 5273; this.colid(); - this.state = 5270; + this.state = 5274; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5271; + this.state = 5275; this.sconst(); - this.state = 5272; + this.state = 5276; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5273; + this.state = 5277; this.collabel(); - this.state = 5278; + this.state = 5282; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5274; + this.state = 5278; this.match(PostgreSqlParser.COMMA); - this.state = 5275; + this.state = 5279; this.collabel(); } } - this.state = 5280; + this.state = 5284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5282; + this.state = 5286; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: { - this.state = 5281; + this.state = 5285; this.opt_definition(); } break; @@ -29074,58 +29076,58 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 454, PostgreSqlParser.RULE_altersubscriptionstmt); let _la: number; try { - this.state = 5340; + this.state = 5344; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 652, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5284; + this.state = 5288; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5285; + this.state = 5289; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5286; + this.state = 5290; this.colid(); - this.state = 5287; + this.state = 5291; this.match(PostgreSqlParser.KW_SET); - this.state = 5288; + this.state = 5292; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5290; + this.state = 5294; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5291; + this.state = 5295; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5292; + this.state = 5296; this.colid(); - this.state = 5293; + this.state = 5297; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5294; + this.state = 5298; this.sconst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5296; + this.state = 5300; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5297; + this.state = 5301; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5298; + this.state = 5302; this.colid(); - this.state = 5299; + this.state = 5303; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5300; + this.state = 5304; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5302; + this.state = 5306; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { case 1: { - this.state = 5301; + this.state = 5305; this.opt_definition(); } break; @@ -29135,13 +29137,13 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5304; + this.state = 5308; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5305; + this.state = 5309; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5306; + this.state = 5310; this.colid(); - this.state = 5307; + this.state = 5311; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -29150,34 +29152,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5308; + this.state = 5312; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5309; + this.state = 5313; this.collabel(); - this.state = 5314; + this.state = 5318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5310; + this.state = 5314; this.match(PostgreSqlParser.COMMA); - this.state = 5311; + this.state = 5315; this.collabel(); } } - this.state = 5316; + this.state = 5320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5318; + this.state = 5322; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { case 1: { - this.state = 5317; + this.state = 5321; this.opt_definition(); } break; @@ -29187,13 +29189,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5320; + this.state = 5324; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5321; + this.state = 5325; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5322; + this.state = 5326; this.colid(); - this.state = 5323; + this.state = 5327; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 193)) { this.errorHandler.recoverInline(this); @@ -29207,36 +29209,36 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5325; + this.state = 5329; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5326; + this.state = 5330; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5327; + this.state = 5331; this.colid(); - this.state = 5328; + this.state = 5332; this.match(PostgreSqlParser.KW_SKIP); - this.state = 5329; + this.state = 5333; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5330; + this.state = 5334; this.old_aggr_elem(); - this.state = 5331; + this.state = 5335; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5333; + this.state = 5337; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5334; + this.state = 5338; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5335; + this.state = 5339; this.colid(); - this.state = 5336; + this.state = 5340; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5337; + this.state = 5341; this.match(PostgreSqlParser.KW_TO); - this.state = 5338; + this.state = 5342; this.rolespec(); } break; @@ -29263,27 +29265,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5342; + this.state = 5346; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5344; + this.state = 5348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5343; + this.state = 5347; this.opt_or_replace(); } } - this.state = 5346; + this.state = 5350; this.match(PostgreSqlParser.KW_RULE); - this.state = 5347; + this.state = 5351; this.colid(); - this.state = 5348; + this.state = 5352; this.match(PostgreSqlParser.KW_AS); - this.state = 5349; + this.state = 5353; this.match(PostgreSqlParser.KW_ON); - this.state = 5350; + this.state = 5354; _la = this.tokenStream.LA(1); if(!(_la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -29292,28 +29294,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5351; + this.state = 5355; this.match(PostgreSqlParser.KW_TO); - this.state = 5352; + this.state = 5356; this.qualified_name(); - this.state = 5354; + this.state = 5358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5353; + this.state = 5357; this.where_clause(); } } - this.state = 5356; + this.state = 5360; this.match(PostgreSqlParser.KW_DO); - this.state = 5358; + this.state = 5362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137 || _la === 242) { { - this.state = 5357; + this.state = 5361; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 242)) { this.errorHandler.recoverInline(this); @@ -29325,62 +29327,62 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5376; + this.state = 5380; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 659, this.context) ) { case 1: { - this.state = 5360; + this.state = 5364; this.match(PostgreSqlParser.KW_NOTHING); } break; case 2: { - this.state = 5361; + this.state = 5365; this.ruleactionstmt(); } break; case 3: { - this.state = 5362; + this.state = 5366; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 5364; + this.state = 5368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 5363; + this.state = 5367; this.ruleactionstmt(); } } - this.state = 5372; + this.state = 5376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 7) { { { - this.state = 5366; + this.state = 5370; this.match(PostgreSqlParser.SEMI); - this.state = 5368; + this.state = 5372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 5367; + this.state = 5371; this.ruleactionstmt(); } } } } - this.state = 5374; + this.state = 5378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5375; + this.state = 5379; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -29405,41 +29407,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RuleactionstmtContext(this.context, this.state); this.enterRule(localContext, 458, PostgreSqlParser.RULE_ruleactionstmt); try { - this.state = 5383; + this.state = 5387; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 660, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5378; + this.state = 5382; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5379; + this.state = 5383; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5380; + this.state = 5384; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5381; + this.state = 5385; this.deletestmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5382; + this.state = 5386; this.notifystmt(); } break; @@ -29466,16 +29468,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5385; + this.state = 5389; this.match(PostgreSqlParser.KW_NOTIFY); - this.state = 5386; + this.state = 5390; this.colid(); - this.state = 5388; + this.state = 5392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5387; + this.state = 5391; this.notify_payload(); } } @@ -29502,9 +29504,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5390; + this.state = 5394; this.match(PostgreSqlParser.COMMA); - this.state = 5391; + this.state = 5395; this.sconst(); } } @@ -29528,9 +29530,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5393; + this.state = 5397; this.match(PostgreSqlParser.KW_LISTEN); - this.state = 5394; + this.state = 5398; this.colid(); } } @@ -29554,9 +29556,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5396; + this.state = 5400; this.match(PostgreSqlParser.KW_UNLISTEN); - this.state = 5399; + this.state = 5403; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -29954,13 +29956,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5397; + this.state = 5401; this.colid(); } break; case PostgreSqlParser.STAR: { - this.state = 5398; + this.state = 5402; this.match(PostgreSqlParser.STAR); } break; @@ -29988,30 +29990,30 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 468, PostgreSqlParser.RULE_transactionstmt); let _la: number; try { - this.state = 5446; + this.state = 5450; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 672, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5401; + this.state = 5405; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 5403; + this.state = 5407; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 663, this.context) ) { case 1: { - this.state = 5402; + this.state = 5406; this.opt_transaction(); } break; } - this.state = 5406; + this.state = 5410; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 664, this.context) ) { case 1: { - this.state = 5405; + this.state = 5409; this.transaction_mode_list(); } break; @@ -30021,16 +30023,16 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5408; + this.state = 5412; this.match(PostgreSqlParser.KW_START); - this.state = 5409; + this.state = 5413; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 5411; + this.state = 5415; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 665, this.context) ) { case 1: { - this.state = 5410; + this.state = 5414; this.transaction_mode_list(); } break; @@ -30040,46 +30042,46 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5413; + this.state = 5417; this.match(PostgreSqlParser.KW_SAVEPOINT); - this.state = 5414; + this.state = 5418; this.colid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5415; + this.state = 5419; this.match(PostgreSqlParser.KW_RELEASE); - this.state = 5417; + this.state = 5421; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 666, this.context) ) { case 1: { - this.state = 5416; + this.state = 5420; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5419; + this.state = 5423; this.colid(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5420; + this.state = 5424; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5421; + this.state = 5425; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 5422; + this.state = 5426; this.sconst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5423; + this.state = 5427; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -30088,16 +30090,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5424; + this.state = 5428; this.match(PostgreSqlParser.KW_PREPARED); - this.state = 5425; + this.state = 5429; this.sconst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5426; + this.state = 5430; _la = this.tokenStream.LA(1); if(!(_la === 129 || _la === 161 || _la === 319 || _la === 454)) { this.errorHandler.recoverInline(this); @@ -30106,34 +30108,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5428; + this.state = 5432; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 667, this.context) ) { case 1: { - this.state = 5427; + this.state = 5431; this.opt_transaction(); } break; } - this.state = 5435; + this.state = 5439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 5430; + this.state = 5434; this.match(PostgreSqlParser.KW_AND); - this.state = 5432; + this.state = 5436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5431; + this.state = 5435; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5434; + this.state = 5438; this.match(PostgreSqlParser.KW_CHAIN); } } @@ -30143,31 +30145,31 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5437; + this.state = 5441; this.match(PostgreSqlParser.KW_ROLLBACK); - this.state = 5439; + this.state = 5443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 356 || _la === 380) { { - this.state = 5438; + this.state = 5442; this.opt_transaction(); } } - this.state = 5441; + this.state = 5445; this.match(PostgreSqlParser.KW_TO); - this.state = 5443; + this.state = 5447; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 671, this.context) ) { case 1: { - this.state = 5442; + this.state = 5446; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5445; + this.state = 5449; this.colid(); } break; @@ -30194,7 +30196,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5448; + this.state = 5452; _la = this.tokenStream.LA(1); if(!(_la === 356 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -30224,26 +30226,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 472, PostgreSqlParser.RULE_transaction_mode_item); let _la: number; try { - this.state = 5459; + this.state = 5463; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 5450; + this.state = 5454; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 5451; + this.state = 5455; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 5452; + this.state = 5456; this.iso_level(); } break; case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 5453; + this.state = 5457; this.match(PostgreSqlParser.KW_READ); - this.state = 5454; + this.state = 5458; _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -30258,17 +30260,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 3); { - this.state = 5456; + this.state = 5460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 5455; + this.state = 5459; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 5458; + this.state = 5462; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; @@ -30298,31 +30300,31 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5461; + this.state = 5465; this.transaction_mode_item(); - this.state = 5468; + this.state = 5472; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 676, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5463; + this.state = 5467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5462; + this.state = 5466; this.match(PostgreSqlParser.COMMA); } } - this.state = 5465; + this.state = 5469; this.transaction_mode_item(); } } } - this.state = 5470; + this.state = 5474; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 676, this.context); } @@ -30350,55 +30352,55 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5471; + this.state = 5475; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5474; + this.state = 5478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5472; + this.state = 5476; this.match(PostgreSqlParser.KW_OR); - this.state = 5473; + this.state = 5477; this.match(PostgreSqlParser.KW_REPLACE); } } - this.state = 5477; + this.state = 5481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 5476; + this.state = 5480; this.opttemp(); } } - this.state = 5494; + this.state = 5498; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VIEW: { - this.state = 5479; + this.state = 5483; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5480; + this.state = 5484; this.view_name_create(); - this.state = 5482; + this.state = 5486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5481; + this.state = 5485; this.opt_column_list_create(); } } - this.state = 5485; + this.state = 5489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5484; + this.state = 5488; this.opt_reloptions(); } } @@ -30407,20 +30409,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RECURSIVE: { - this.state = 5487; + this.state = 5491; this.match(PostgreSqlParser.KW_RECURSIVE); - this.state = 5488; + this.state = 5492; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5489; + this.state = 5493; this.view_name_create(); - this.state = 5490; + this.state = 5494; this.opt_column_list(); - this.state = 5492; + this.state = 5496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5491; + this.state = 5495; this.opt_reloptions(); } } @@ -30430,23 +30432,23 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5496; + this.state = 5500; this.match(PostgreSqlParser.KW_AS); - this.state = 5497; + this.state = 5501; this.selectstmt(); - this.state = 5504; + this.state = 5508; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 684, this.context) ) { case 1: { - this.state = 5498; + this.state = 5502; this.match(PostgreSqlParser.KW_WITH); - this.state = 5500; + this.state = 5504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 254) { { - this.state = 5499; + this.state = 5503; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -30458,9 +30460,9 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5502; + this.state = 5506; this.match(PostgreSqlParser.KW_CHECK); - this.state = 5503; + this.state = 5507; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -30487,9 +30489,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5506; + this.state = 5510; this.match(PostgreSqlParser.KW_LOAD); - this.state = 5507; + this.state = 5511; this.sconst(); } } @@ -30515,28 +30517,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5509; + this.state = 5513; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5510; + this.state = 5514; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5511; + this.state = 5515; this.database_name_create(); - this.state = 5513; + this.state = 5517; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 685, this.context) ) { case 1: { - this.state = 5512; + this.state = 5516; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 5520; + this.state = 5524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 687, this.context) ) { case 1: { - this.state = 5516; + this.state = 5520; this.errorHandler.sync(this); alternative = 1; do { @@ -30544,7 +30546,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5515; + this.state = 5519; this.createdb_opt_item(); } } @@ -30552,7 +30554,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5518; + this.state = 5522; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 686, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30582,82 +30584,82 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5530; + this.state = 5534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 688, this.context) ) { case 1: { - this.state = 5522; + this.state = 5526; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5523; + this.state = 5527; this.match(PostgreSqlParser.KW_LIMIT); } break; case 2: { - this.state = 5524; + this.state = 5528; this.match(PostgreSqlParser.KW_ENCODING); } break; case 3: { - this.state = 5525; + this.state = 5529; this.match(PostgreSqlParser.KW_LOCATION); } break; case 4: { - this.state = 5526; + this.state = 5530; this.match(PostgreSqlParser.KW_OWNER); } break; case 5: { - this.state = 5527; + this.state = 5531; this.match(PostgreSqlParser.KW_TABLESPACE); } break; case 6: { - this.state = 5528; + this.state = 5532; this.match(PostgreSqlParser.KW_TEMPLATE); } break; case 7: { - this.state = 5529; + this.state = 5533; this.identifier(); } break; } - this.state = 5533; + this.state = 5537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 5532; + this.state = 5536; this.match(PostgreSqlParser.EQUAL); } } - this.state = 5538; + this.state = 5542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: { - this.state = 5535; + this.state = 5539; this.signediconst(); } break; case 2: { - this.state = 5536; + this.state = 5540; this.opt_boolean_or_string(); } break; case 3: { - this.state = 5537; + this.state = 5541; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -30686,27 +30688,27 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5540; + this.state = 5544; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5541; + this.state = 5545; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5542; + this.state = 5546; this.database_name(); - this.state = 5558; + this.state = 5562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 695, this.context) ) { case 1: { - this.state = 5546; + this.state = 5550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 691, this.context) ) { case 1: { - this.state = 5543; + this.state = 5547; this.match(PostgreSqlParser.KW_SET); - this.state = 5544; + this.state = 5548; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 5545; + this.state = 5549; this.tablespace_name_create(); } break; @@ -30715,22 +30717,22 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5556; + this.state = 5560; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 694, this.context) ) { case 1: { - this.state = 5549; + this.state = 5553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5548; + this.state = 5552; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 5552; + this.state = 5556; this.errorHandler.sync(this); alternative = 1; do { @@ -30738,7 +30740,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5551; + this.state = 5555; this.createdb_opt_item(); } } @@ -30746,7 +30748,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5554; + this.state = 5558; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 693, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30778,18 +30780,18 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5560; + this.state = 5564; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5561; + this.state = 5565; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5562; + this.state = 5566; this.database_name(); - this.state = 5564; + this.state = 5568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: { - this.state = 5563; + this.state = 5567; this.setresetclause(); } break; @@ -30816,15 +30818,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5566; + this.state = 5570; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5567; + this.state = 5571; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 5568; + this.state = 5572; this.any_name(); - this.state = 5569; + this.state = 5573; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5570; + this.state = 5574; this.match(PostgreSqlParser.KW_VERSION); } } @@ -30849,11 +30851,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5572; + this.state = 5576; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5573; + this.state = 5577; this.match(PostgreSqlParser.KW_SYSTEM); - this.state = 5574; + this.state = 5578; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30862,7 +30864,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5575; + this.state = 5579; this.generic_set(); } } @@ -30888,37 +30890,37 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5577; + this.state = 5581; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5578; + this.state = 5582; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5579; + this.state = 5583; this.any_name(); - this.state = 5581; + this.state = 5585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5580; + this.state = 5584; this.match(PostgreSqlParser.KW_AS); } } - this.state = 5583; - this.typename(); this.state = 5587; + this.typename(); + this.state = 5591; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 698, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5584; + this.state = 5588; this.colconstraint(); } } } - this.state = 5589; + this.state = 5593; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 698, this.context); } @@ -30945,24 +30947,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5590; + this.state = 5594; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5591; + this.state = 5595; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5592; + this.state = 5596; this.any_name(); - this.state = 5615; + this.state = 5619; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { case 1: { - this.state = 5593; + this.state = 5597; this.alter_column_default(); } break; case 2: { - this.state = 5594; + this.state = 5598; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30971,56 +30973,56 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5595; + this.state = 5599; this.match(PostgreSqlParser.KW_NOT); - this.state = 5596; + this.state = 5600; this.match(PostgreSqlParser.KW_NULL); } break; case 3: { - this.state = 5597; + this.state = 5601; this.match(PostgreSqlParser.KW_ADD); - this.state = 5600; + this.state = 5604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 5598; + this.state = 5602; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5599; + this.state = 5603; this.colid(); } } - this.state = 5602; + this.state = 5606; this.constraintelem(); } break; case 4: { - this.state = 5603; + this.state = 5607; this.match(PostgreSqlParser.KW_DROP); - this.state = 5604; + this.state = 5608; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5606; + this.state = 5610; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 700, this.context) ) { case 1: { - this.state = 5605; + this.state = 5609; this.opt_if_exists(); } break; } - this.state = 5608; + this.state = 5612; this.colid(); - this.state = 5610; + this.state = 5614; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { case 1: { - this.state = 5609; + this.state = 5613; this.opt_drop_behavior(); } break; @@ -31029,11 +31031,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 5612; + this.state = 5616; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 5613; + this.state = 5617; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5614; + this.state = 5618; this.colid(); } break; @@ -31060,17 +31062,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5617; + this.state = 5621; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5618; + this.state = 5622; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5619; + this.state = 5623; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5620; + this.state = 5624; this.match(PostgreSqlParser.KW_DICTIONARY); - this.state = 5621; + this.state = 5625; this.any_name(); - this.state = 5622; + this.state = 5626; this.definition(); } } @@ -31093,23 +31095,23 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 498, PostgreSqlParser.RULE_altertsconfigurationstmt); let _la: number; try { - this.state = 5665; + this.state = 5669; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 705, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5624; + this.state = 5628; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5625; + this.state = 5629; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5626; + this.state = 5630; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5627; + this.state = 5631; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5628; + this.state = 5632; this.any_name(); - this.state = 5629; + this.state = 5633; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 138)) { this.errorHandler.recoverInline(this); @@ -31118,87 +31120,87 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5630; + this.state = 5634; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5631; + this.state = 5635; this.match(PostgreSqlParser.KW_FOR); - this.state = 5632; + this.state = 5636; this.name_list(); - this.state = 5633; + this.state = 5637; this.match(PostgreSqlParser.KW_WITH); - this.state = 5634; + this.state = 5638; this.any_name_list(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5636; + this.state = 5640; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5637; + this.state = 5641; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5638; + this.state = 5642; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5639; + this.state = 5643; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5640; + this.state = 5644; this.any_name(); - this.state = 5641; + this.state = 5645; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5642; + this.state = 5646; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5645; + this.state = 5649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5643; + this.state = 5647; this.match(PostgreSqlParser.KW_FOR); - this.state = 5644; + this.state = 5648; this.name_list(); } } - this.state = 5647; + this.state = 5651; this.match(PostgreSqlParser.KW_REPLACE); - this.state = 5648; + this.state = 5652; this.any_name(); - this.state = 5649; + this.state = 5653; this.match(PostgreSqlParser.KW_WITH); - this.state = 5650; + this.state = 5654; this.any_name(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5652; + this.state = 5656; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5653; + this.state = 5657; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5654; + this.state = 5658; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5655; + this.state = 5659; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5656; + this.state = 5660; this.any_name(); - this.state = 5657; + this.state = 5661; this.match(PostgreSqlParser.KW_DROP); - this.state = 5658; + this.state = 5662; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5660; + this.state = 5664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5659; + this.state = 5663; this.opt_if_exists(); } } - this.state = 5662; + this.state = 5666; this.match(PostgreSqlParser.KW_FOR); - this.state = 5663; + this.state = 5667; this.name_list(); } break; @@ -31225,33 +31227,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5667; + this.state = 5671; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5669; + this.state = 5673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5668; + this.state = 5672; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 5671; + this.state = 5675; this.match(PostgreSqlParser.KW_CONVERSION); - this.state = 5672; + this.state = 5676; this.any_name(); - this.state = 5673; + this.state = 5677; this.match(PostgreSqlParser.KW_FOR); - this.state = 5674; + this.state = 5678; this.sconst(); - this.state = 5675; + this.state = 5679; this.match(PostgreSqlParser.KW_TO); - this.state = 5676; + this.state = 5680; this.sconst(); - this.state = 5677; + this.state = 5681; this.match(PostgreSqlParser.KW_FROM); - this.state = 5678; + this.state = 5682; this.any_name(); } } @@ -31274,37 +31276,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 502, PostgreSqlParser.RULE_clusterstmt); let _la: number; try { - this.state = 5705; + this.state = 5709; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 712, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5680; + this.state = 5684; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 5682; + this.state = 5686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5681; + this.state = 5685; this.opt_verbose(); } } - this.state = 5688; + this.state = 5692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { case 1: { - this.state = 5684; + this.state = 5688; this.table_name(); - this.state = 5686; + this.state = 5690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5685; + this.state = 5689; this.table_access_method_clause(); } } @@ -31317,38 +31319,38 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5690; + this.state = 5694; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 5691; + this.state = 5695; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5692; + this.state = 5696; this.opt_verbose(); - this.state = 5697; + this.state = 5701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5693; + this.state = 5697; this.match(PostgreSqlParser.COMMA); - this.state = 5694; + this.state = 5698; this.opt_verbose(); } } - this.state = 5699; + this.state = 5703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5700; + this.state = 5704; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5701; + this.state = 5705; this.table_name(); - this.state = 5703; + this.state = 5707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5702; + this.state = 5706; this.table_access_method_clause(); } } @@ -31378,50 +31380,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5707; + this.state = 5711; this.match(PostgreSqlParser.KW_VACUUM); - this.state = 5723; + this.state = 5727; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: { { - this.state = 5709; + this.state = 5713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 5708; + this.state = 5712; this.match(PostgreSqlParser.KW_FULL); } } - this.state = 5712; + this.state = 5716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 5711; + this.state = 5715; this.match(PostgreSqlParser.KW_FREEZE); } } - this.state = 5715; + this.state = 5719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5714; + this.state = 5718; this.opt_verbose(); } } - this.state = 5718; + this.state = 5722; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 716, this.context) ) { case 1: { - this.state = 5717; + this.state = 5721; this.analyze_keyword(); } break; @@ -31431,12 +31433,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5721; + this.state = 5725; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 717, this.context) ) { case 1: { - this.state = 5720; + this.state = 5724; this.explain_option_list(); } break; @@ -31444,12 +31446,12 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5726; + this.state = 5730; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { case 1: { - this.state = 5725; + this.state = 5729; this.vacuum_relation_list(); } break; @@ -31477,19 +31479,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5728; + this.state = 5732; this.analyze_keyword(); - this.state = 5743; + this.state = 5747; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 722, this.context) ) { case 1: { - this.state = 5730; + this.state = 5734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5729; + this.state = 5733; this.opt_verbose(); } } @@ -31498,37 +31500,37 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5732; + this.state = 5736; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5733; + this.state = 5737; this.analyze_option_elem(); - this.state = 5738; + this.state = 5742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5734; + this.state = 5738; this.match(PostgreSqlParser.COMMA); - this.state = 5735; + this.state = 5739; this.analyze_option_elem(); } } - this.state = 5740; + this.state = 5744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5741; + this.state = 5745; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5746; + this.state = 5750; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 723, this.context) ) { case 1: { - this.state = 5745; + this.state = 5749; this.vacuum_relation_list(); } break; @@ -31556,7 +31558,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5748; + this.state = 5752; _la = this.tokenStream.LA(1); if(!(_la === 31 || _la === 32)) { this.errorHandler.recoverInline(this); @@ -31587,7 +31589,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5752; + this.state = 5756; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -32006,21 +32008,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5750; + this.state = 5754; this.nonreservedword(); } break; case PostgreSqlParser.KW_ANALYSE: case PostgreSqlParser.KW_ANALYZE: { - this.state = 5751; + this.state = 5755; this.analyze_keyword(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5756; + this.state = 5760; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -32442,7 +32444,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5754; + this.state = 5758; this.opt_boolean_or_string(); } break; @@ -32451,7 +32453,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5755; + this.state = 5759; this.numericonly(); } break; @@ -32482,14 +32484,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 512, PostgreSqlParser.RULE_analyze_option_elem); let _la: number; try { - this.state = 5767; + this.state = 5771; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VERBOSE: case PostgreSqlParser.KW_SKIP_LOCKED: this.enterOuterAlt(localContext, 1); { - this.state = 5758; + this.state = 5762; _la = this.tokenStream.LA(1); if(!(_la === 128 || _la === 547)) { this.errorHandler.recoverInline(this); @@ -32498,12 +32500,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5760; + this.state = 5764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5759; + this.state = 5763; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32520,9 +32522,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 5762; + this.state = 5766; this.match(PostgreSqlParser.KW_BUFFER_USAGE_LIMIT); - this.state = 5765; + this.state = 5769; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PLUS: @@ -32530,7 +32532,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5763; + this.state = 5767; this.numericonly(); } break; @@ -32539,7 +32541,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5764; + this.state = 5768; this.sconst(); } break; @@ -32573,14 +32575,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5769; + this.state = 5773; this.match(PostgreSqlParser.KW_VERBOSE); - this.state = 5771; + this.state = 5775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5770; + this.state = 5774; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32614,14 +32616,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5773; + this.state = 5777; this.table_name(); - this.state = 5775; + this.state = 5779; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 730, this.context) ) { case 1: { - this.state = 5774; + this.state = 5778; this.opt_column_list(); } break; @@ -32649,21 +32651,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5777; + this.state = 5781; this.vacuum_relation(); - this.state = 5782; + this.state = 5786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5778; + this.state = 5782; this.match(PostgreSqlParser.COMMA); - this.state = 5779; + this.state = 5783; this.vacuum_relation(); } } - this.state = 5784; + this.state = 5788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32690,25 +32692,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5785; + this.state = 5789; this.match(PostgreSqlParser.KW_EXPLAIN); - this.state = 5796; + this.state = 5800; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { case 1: { - this.state = 5786; + this.state = 5790; this.explain_option_list(); } break; case 2: { - this.state = 5788; + this.state = 5792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5787; + this.state = 5791; this.match(PostgreSqlParser.KW_VERBOSE); } } @@ -32717,19 +32719,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 5794; + this.state = 5798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31 || _la === 32) { { - this.state = 5790; + this.state = 5794; this.analyze_keyword(); - this.state = 5792; + this.state = 5796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5791; + this.state = 5795; this.opt_verbose(); } } @@ -32740,7 +32742,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5798; + this.state = 5802; this.explainablestmt(); } } @@ -32762,69 +32764,69 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExplainablestmtContext(this.context, this.state); this.enterRule(localContext, 522, PostgreSqlParser.RULE_explainablestmt); try { - this.state = 5809; + this.state = 5813; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 736, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5800; + this.state = 5804; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5801; + this.state = 5805; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5802; + this.state = 5806; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5803; + this.state = 5807; this.deletestmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5804; + this.state = 5808; this.declarecursorstmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5805; + this.state = 5809; this.createasstmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5806; + this.state = 5810; this.creatematviewstmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5807; + this.state = 5811; this.refreshmatviewstmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5808; + this.state = 5812; this.executestmt(); } break; @@ -32851,27 +32853,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5811; + this.state = 5815; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5812; + this.state = 5816; this.vac_analyze_option_elem(); - this.state = 5817; + this.state = 5821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5813; + this.state = 5817; this.match(PostgreSqlParser.COMMA); - this.state = 5814; + this.state = 5818; this.vac_analyze_option_elem(); } } - this.state = 5819; + this.state = 5823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5820; + this.state = 5824; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32896,23 +32898,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5822; + this.state = 5826; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5823; + this.state = 5827; this.colid(); - this.state = 5825; + this.state = 5829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5824; + this.state = 5828; this.prep_type_clause(); } } - this.state = 5827; + this.state = 5831; this.match(PostgreSqlParser.KW_AS); - this.state = 5828; + this.state = 5832; this.preparablestmt(); } } @@ -32937,27 +32939,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5830; + this.state = 5834; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5831; + this.state = 5835; this.typename(); - this.state = 5836; + this.state = 5840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5832; + this.state = 5836; this.match(PostgreSqlParser.COMMA); - this.state = 5833; + this.state = 5837; this.typename(); } } - this.state = 5838; + this.state = 5842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5839; + this.state = 5843; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32979,34 +32981,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PreparablestmtContext(this.context, this.state); this.enterRule(localContext, 530, PostgreSqlParser.RULE_preparablestmt); try { - this.state = 5845; + this.state = 5849; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 740, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5841; + this.state = 5845; this.selectstmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5842; + this.state = 5846; this.insertstmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5843; + this.state = 5847; this.updatestmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5844; + this.state = 5848; this.deletestmt(); } break; @@ -33031,22 +33033,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 532, PostgreSqlParser.RULE_executestmt); let _la: number; try { - this.state = 5870; + this.state = 5874; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 1); { - this.state = 5847; + this.state = 5851; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5848; + this.state = 5852; this.colid(); - this.state = 5850; + this.state = 5854; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 741, this.context) ) { case 1: { - this.state = 5849; + this.state = 5853; this.execute_param_clause(); } break; @@ -33056,54 +33058,54 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 2); { - this.state = 5852; + this.state = 5856; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5854; + this.state = 5858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 5853; + this.state = 5857; this.opttemp(); } } - this.state = 5856; + this.state = 5860; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5858; + this.state = 5862; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { case 1: { - this.state = 5857; + this.state = 5861; this.opt_if_not_exists(); } break; } - this.state = 5860; + this.state = 5864; this.create_as_target(); - this.state = 5861; + this.state = 5865; this.match(PostgreSqlParser.KW_AS); - this.state = 5862; + this.state = 5866; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5863; + this.state = 5867; this.colid(); - this.state = 5865; + this.state = 5869; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 744, this.context) ) { case 1: { - this.state = 5864; + this.state = 5868; this.execute_param_clause(); } break; } - this.state = 5868; + this.state = 5872; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 5867; + this.state = 5871; this.opt_with_data(); } break; @@ -33134,11 +33136,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5872; + this.state = 5876; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5873; + this.state = 5877; this.expr_list(); - this.state = 5874; + this.state = 5878; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -33162,19 +33164,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5876; + this.state = 5880; this.match(PostgreSqlParser.KW_DEALLOCATE); - this.state = 5878; + this.state = 5882; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { case 1: { - this.state = 5877; + this.state = 5881; this.match(PostgreSqlParser.KW_PREPARE); } break; } - this.state = 5882; + this.state = 5886; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -33572,13 +33574,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5880; + this.state = 5884; this.colid(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 5881; + this.state = 5885; this.match(PostgreSqlParser.KW_ALL); } break; @@ -33609,58 +33611,58 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InsertStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5885; + this.state = 5889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5884; + this.state = 5888; this.with_clause(); } } - this.state = 5887; + this.state = 5891; this.match(PostgreSqlParser.KW_INSERT); - this.state = 5888; + this.state = 5892; this.match(PostgreSqlParser.KW_INTO); - this.state = 5889; + this.state = 5893; this.table_name(); - this.state = 5892; + this.state = 5896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5890; + this.state = 5894; this.match(PostgreSqlParser.KW_AS); - this.state = 5891; + this.state = 5895; this.colid(); } } - this.state = 5894; + this.state = 5898; this.insert_rest(); - this.state = 5916; + this.state = 5920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 5895; + this.state = 5899; this.match(PostgreSqlParser.KW_ON); - this.state = 5896; + this.state = 5900; this.match(PostgreSqlParser.KW_CONFLICT); - this.state = 5904; + this.state = 5908; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 5897; + this.state = 5901; this.index_params(); - this.state = 5899; + this.state = 5903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5898; + this.state = 5902; this.where_clause(); } } @@ -33669,11 +33671,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_ON: { - this.state = 5901; + this.state = 5905; this.match(PostgreSqlParser.KW_ON); - this.state = 5902; + this.state = 5906; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5903; + this.state = 5907; this.colid(); } break; @@ -33682,25 +33684,25 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 5906; + this.state = 5910; this.match(PostgreSqlParser.KW_DO); - this.state = 5914; + this.state = 5918; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5907; + this.state = 5911; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5908; + this.state = 5912; this.match(PostgreSqlParser.KW_SET); - this.state = 5909; + this.state = 5913; this.set_clause_list(); - this.state = 5911; + this.state = 5915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5910; + this.state = 5914; this.where_clause(); } } @@ -33709,7 +33711,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_NOTHING: { - this.state = 5913; + this.state = 5917; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -33719,12 +33721,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5919; + this.state = 5923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5918; + this.state = 5922; this.returning_clause(); } } @@ -33752,28 +33754,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5925; + this.state = 5929; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 757, this.context) ) { case 1: { - this.state = 5921; + this.state = 5925; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5922; + this.state = 5926; this.insert_column_list(); - this.state = 5923; + this.state = 5927; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5930; + this.state = 5934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 5927; + this.state = 5931; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 5928; + this.state = 5932; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -33782,23 +33784,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5929; + this.state = 5933; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 5934; + this.state = 5938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { case 1: { - this.state = 5932; + this.state = 5936; this.default_values_or_values(); } break; case 2: { - this.state = 5933; + this.state = 5937; this.selectstmt(); } break; @@ -33826,21 +33828,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5936; + this.state = 5940; this.insert_column_item(); - this.state = 5941; + this.state = 5945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5937; + this.state = 5941; this.match(PostgreSqlParser.COMMA); - this.state = 5938; + this.state = 5942; this.insert_column_item(); } } - this.state = 5943; + this.state = 5947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33866,9 +33868,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5944; + this.state = 5948; this.column_name(); - this.state = 5945; + this.state = 5949; this.opt_indirection(); } } @@ -33892,9 +33894,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5947; + this.state = 5951; this.match(PostgreSqlParser.KW_RETURNING); - this.state = 5948; + this.state = 5952; this.target_list(); } } @@ -33919,50 +33921,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5951; + this.state = 5955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5950; + this.state = 5954; this.with_clause(); } } - this.state = 5953; + this.state = 5957; this.match(PostgreSqlParser.KW_DELETE); - this.state = 5954; + this.state = 5958; this.match(PostgreSqlParser.KW_FROM); - this.state = 5955; + this.state = 5959; this.relation_expr_opt_alias(); - this.state = 5958; + this.state = 5962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5956; + this.state = 5960; this.match(PostgreSqlParser.KW_USING); - this.state = 5957; + this.state = 5961; this.from_list(); } } - this.state = 5961; + this.state = 5965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5960; + this.state = 5964; this.where_or_current_clause(); } } - this.state = 5964; + this.state = 5968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5963; + this.state = 5967; this.returning_clause(); } } @@ -33990,34 +33992,34 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5966; + this.state = 5970; this.match(PostgreSqlParser.KW_LOCK); - this.state = 5968; + this.state = 5972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 5967; + this.state = 5971; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 5970; + this.state = 5974; this.relation_expr_list(); - this.state = 5985; + this.state = 5989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 5971; + this.state = 5975; this.match(PostgreSqlParser.KW_IN); - this.state = 5982; + this.state = 5986; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ACCESS: case PostgreSqlParser.KW_ROW: { - this.state = 5972; + this.state = 5976; _la = this.tokenStream.LA(1); if(!(_la === 131 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -34026,7 +34028,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5973; + this.state = 5977; _la = this.tokenStream.LA(1); if(!(_la === 201 || _la === 334)) { this.errorHandler.recoverInline(this); @@ -34039,24 +34041,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SHARE: { - this.state = 5974; + this.state = 5978; this.match(PostgreSqlParser.KW_SHARE); - this.state = 5979; + this.state = 5983; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5975; + this.state = 5979; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5976; + this.state = 5980; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; case PostgreSqlParser.KW_ROW: { - this.state = 5977; + this.state = 5981; this.match(PostgreSqlParser.KW_ROW); - this.state = 5978; + this.state = 5982; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; @@ -34069,24 +34071,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_EXCLUSIVE: { - this.state = 5981; + this.state = 5985; this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5984; + this.state = 5988; this.match(PostgreSqlParser.KW_MODE); } } - this.state = 5988; + this.state = 5992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { case 1: { - this.state = 5987; + this.state = 5991; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -34114,50 +34116,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5991; + this.state = 5995; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5990; + this.state = 5994; this.with_clause(); } } - this.state = 5993; + this.state = 5997; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5994; + this.state = 5998; this.relation_expr_opt_alias(); - this.state = 5995; + this.state = 5999; this.match(PostgreSqlParser.KW_SET); - this.state = 5996; + this.state = 6000; this.set_clause_list(); - this.state = 5998; + this.state = 6002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 5997; + this.state = 6001; this.from_clause(); } } - this.state = 6001; + this.state = 6005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 6000; + this.state = 6004; this.where_or_current_clause(); } } - this.state = 6004; + this.state = 6008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 6003; + this.state = 6007; this.returning_clause(); } } @@ -34185,21 +34187,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6006; + this.state = 6010; this.set_clause(); - this.state = 6011; + this.state = 6015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6007; + this.state = 6011; this.match(PostgreSqlParser.COMMA); - this.state = 6008; + this.state = 6012; this.set_clause(); } } - this.state = 6013; + this.state = 6017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34223,57 +34225,57 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Set_clauseContext(this.context, this.state); this.enterRule(localContext, 556, PostgreSqlParser.RULE_set_clause); try { - this.state = 6032; + this.state = 6036; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6014; + this.state = 6018; this.insert_column_item(); - this.state = 6015; + this.state = 6019; this.match(PostgreSqlParser.EQUAL); - this.state = 6016; + this.state = 6020; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6018; + this.state = 6022; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6019; + this.state = 6023; this.insert_column_list(); - this.state = 6020; + this.state = 6024; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6021; + this.state = 6025; this.match(PostgreSqlParser.EQUAL); - this.state = 6030; + this.state = 6034; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 776, this.context) ) { case 1: { - this.state = 6023; + this.state = 6027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 775, this.context) ) { case 1: { - this.state = 6022; + this.state = 6026; this.match(PostgreSqlParser.KW_ROW); } break; } - this.state = 6025; + this.state = 6029; this.expression(); } break; case 2: { - this.state = 6026; + this.state = 6030; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6027; + this.state = 6031; this.select_clause(); - this.state = 6028; + this.state = 6032; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -34303,47 +34305,47 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6034; + this.state = 6038; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 6035; + this.state = 6039; this.colid(); { - this.state = 6044; + this.state = 6048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 107 || _la === 240 || _la === 269 || _la === 324) { { - this.state = 6042; + this.state = 6046; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_SCROLL: { { - this.state = 6037; + this.state = 6041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 6036; + this.state = 6040; this.match(PostgreSqlParser.KW_NO); } } - this.state = 6039; + this.state = 6043; this.match(PostgreSqlParser.KW_SCROLL); } } break; case PostgreSqlParser.KW_BINARY: { - this.state = 6040; + this.state = 6044; this.match(PostgreSqlParser.KW_BINARY); } break; case PostgreSqlParser.KW_INSENSITIVE: { - this.state = 6041; + this.state = 6045; this.match(PostgreSqlParser.KW_INSENSITIVE); } break; @@ -34351,19 +34353,19 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6046; + this.state = 6050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6047; + this.state = 6051; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 6050; + this.state = 6054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 6048; + this.state = 6052; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -34372,14 +34374,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6049; + this.state = 6053; this.match(PostgreSqlParser.KW_HOLD); } } - this.state = 6052; + this.state = 6056; this.match(PostgreSqlParser.KW_FOR); - this.state = 6053; + this.state = 6057; this.selectstmt(); } } @@ -34401,14 +34403,14 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SelectstmtContext(this.context, this.state); this.enterRule(localContext, 560, PostgreSqlParser.RULE_selectstmt); try { - this.state = 6057; + this.state = 6061; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 782, this.context) ) { case 1: localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6055; + this.state = 6059; this.select_no_parens(); } break; @@ -34416,7 +34418,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new SelectStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6056; + this.state = 6060; this.select_with_parens(); } break; @@ -34442,25 +34444,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6059; + this.state = 6063; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6062; + this.state = 6066; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 783, this.context) ) { case 1: { - this.state = 6060; + this.state = 6064; this.select_no_parens(); } break; case 2: { - this.state = 6061; + this.state = 6065; this.select_with_parens(); } break; } - this.state = 6064; + this.state = 6068; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -34485,41 +34487,41 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6067; + this.state = 6071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 6066; + this.state = 6070; this.with_clause(); } } - this.state = 6069; + this.state = 6073; this.select_clause(); - this.state = 6071; + this.state = 6075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6070; + this.state = 6074; this.sort_clause(); } } - this.state = 6081; + this.state = 6085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { case 1: { - this.state = 6073; + this.state = 6077; this.for_locking_clause(); - this.state = 6075; + this.state = 6079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 786, this.context) ) { case 1: { - this.state = 6074; + this.state = 6078; this.select_limit(); } break; @@ -34528,14 +34530,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6077; + this.state = 6081; this.select_limit(); - this.state = 6079; + this.state = 6083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 6078; + this.state = 6082; this.for_locking_clause(); } } @@ -34563,20 +34565,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Select_clauseContext(this.context, this.state); this.enterRule(localContext, 566, PostgreSqlParser.RULE_select_clause); try { - this.state = 6085; + this.state = 6089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 789, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6083; + this.state = 6087; this.simple_select(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6084; + this.state = 6088; this.select_with_parens(); } break; @@ -34603,34 +34605,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6109; + this.state = 6113; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 6087; + this.state = 6091; this.match(PostgreSqlParser.KW_SELECT); - this.state = 6097; + this.state = 6101; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 793, this.context) ) { case 1: { - this.state = 6089; + this.state = 6093; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { case 1: { - this.state = 6088; + this.state = 6092; this.match(PostgreSqlParser.KW_ALL); } break; } - this.state = 6092; + this.state = 6096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { case 1: { - this.state = 6091; + this.state = 6095; this.into_clause(); } break; @@ -34639,12 +34641,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6095; + this.state = 6099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { case 1: { - this.state = 6094; + this.state = 6098; this.distinct_clause(); } break; @@ -34652,42 +34654,42 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6099; + this.state = 6103; this.sql_expression(); } break; case PostgreSqlParser.KW_VALUES: { - this.state = 6100; + this.state = 6104; this.values_clause(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 6101; + this.state = 6105; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6102; + this.state = 6106; this.relation_expr(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6103; + this.state = 6107; this.select_with_parens(); - this.state = 6104; + this.state = 6108; this.set_operator_with_all_or_distinct(); - this.state = 6107; + this.state = 6111; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { case 1: { - this.state = 6105; + this.state = 6109; this.simple_select(); } break; case 2: { - this.state = 6106; + this.state = 6110; this.select_with_parens(); } break; @@ -34697,27 +34699,27 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6118; + this.state = 6122; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 797, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6111; + this.state = 6115; this.set_operator_with_all_or_distinct(); - this.state = 6114; + this.state = 6118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { case 1: { - this.state = 6112; + this.state = 6116; this.simple_select(); } break; case 2: { - this.state = 6113; + this.state = 6117; this.select_with_parens(); } break; @@ -34725,7 +34727,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 6120; + this.state = 6124; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 797, this.context); } @@ -34752,7 +34754,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6121; + this.state = 6125; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 70 || _la === 97)) { this.errorHandler.recoverInline(this); @@ -34761,12 +34763,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6123; + this.state = 6127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30 || _la === 56) { { - this.state = 6122; + this.state = 6126; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -34801,36 +34803,36 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6125; + this.state = 6129; this.match(PostgreSqlParser.KW_WITH); - this.state = 6127; + this.state = 6131; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 799, this.context) ) { case 1: { - this.state = 6126; + this.state = 6130; this.match(PostgreSqlParser.KW_RECURSIVE); } break; } { - this.state = 6129; + this.state = 6133; this.common_table_expr(); - this.state = 6134; + this.state = 6138; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 800, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6130; + this.state = 6134; this.match(PostgreSqlParser.COMMA); - this.state = 6131; + this.state = 6135; this.common_table_expr(); } } } - this.state = 6136; + this.state = 6140; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 800, this.context); } @@ -34858,62 +34860,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6137; + this.state = 6141; this.colid(); - this.state = 6139; + this.state = 6143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 6138; + this.state = 6142; this.opt_column_list(); } } - this.state = 6141; + this.state = 6145; this.match(PostgreSqlParser.KW_AS); - this.state = 6146; + this.state = 6150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77 || _la === 259) { { - this.state = 6143; + this.state = 6147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6142; + this.state = 6146; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6145; + this.state = 6149; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 6148; + this.state = 6152; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6149; + this.state = 6153; this.preparablestmt(); - this.state = 6150; + this.state = 6154; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6152; + this.state = 6156; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { case 1: { - this.state = 6151; + this.state = 6155; this.search_cluase(); } break; } - this.state = 6155; + this.state = 6159; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 805, this.context) ) { case 1: { - this.state = 6154; + this.state = 6158; this.cycle_cluase(); } break; @@ -34941,9 +34943,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6157; + this.state = 6161; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 6158; + this.state = 6162; _la = this.tokenStream.LA(1); if(!(_la === 527 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -34952,15 +34954,15 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6159; + this.state = 6163; this.match(PostgreSqlParser.KW_FIRST); - this.state = 6160; + this.state = 6164; this.match(PostgreSqlParser.KW_BY); - this.state = 6161; + this.state = 6165; this.column_list(); - this.state = 6162; + this.state = 6166; this.match(PostgreSqlParser.KW_SET); - this.state = 6163; + this.state = 6167; this.column_name(); } } @@ -34985,33 +34987,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6165; + this.state = 6169; this.match(PostgreSqlParser.KW_CYCLE); - this.state = 6166; + this.state = 6170; this.column_list(); - this.state = 6167; + this.state = 6171; this.match(PostgreSqlParser.KW_SET); - this.state = 6168; + this.state = 6172; this.column_name(); - this.state = 6174; + this.state = 6178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 6169; + this.state = 6173; this.match(PostgreSqlParser.KW_TO); - this.state = 6170; + this.state = 6174; this.colid(); - this.state = 6171; + this.state = 6175; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6172; + this.state = 6176; this.colid(); } } - this.state = 6176; + this.state = 6180; this.match(PostgreSqlParser.KW_USING); - this.state = 6177; + this.state = 6181; this.column_name(); } } @@ -35035,30 +35037,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6179; + this.state = 6183; this.match(PostgreSqlParser.KW_INTO); - this.state = 6185; + this.state = 6189; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 808, this.context) ) { case 1: { - this.state = 6181; + this.state = 6185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { case 1: { - this.state = 6180; + this.state = 6184; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 6183; + this.state = 6187; this.opttempTableName(); } break; case 2: { - this.state = 6184; + this.state = 6188; this.expr_list(); } break; @@ -35084,18 +35086,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 582, PostgreSqlParser.RULE_opttempTableName); let _la: number; try { - this.state = 6202; + this.state = 6206; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6188; + this.state = 6192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254) { { - this.state = 6187; + this.state = 6191; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -35107,7 +35109,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 6190; + this.state = 6194; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -35116,44 +35118,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6192; + this.state = 6196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 6191; + this.state = 6195; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 6194; + this.state = 6198; this.table_name_create(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6196; + this.state = 6200; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 811, this.context) ) { case 1: { - this.state = 6195; + this.state = 6199; this.match(PostgreSqlParser.KW_UNLOGGED); } break; } - this.state = 6199; + this.state = 6203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 6198; + this.state = 6202; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 6201; + this.state = 6205; this.table_name_create(); } break; @@ -35179,16 +35181,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6204; + this.state = 6208; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6207; + this.state = 6211; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { case 1: { - this.state = 6205; + this.state = 6209; this.match(PostgreSqlParser.KW_ON); - this.state = 6206; + this.state = 6210; this.execute_param_clause(); } break; @@ -35216,25 +35218,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6209; + this.state = 6213; this.match(PostgreSqlParser.KW_ORDER); - this.state = 6210; + this.state = 6214; this.match(PostgreSqlParser.KW_BY); - this.state = 6211; + this.state = 6215; this.sortby(); - this.state = 6216; + this.state = 6220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6212; + this.state = 6216; this.match(PostgreSqlParser.COMMA); - this.state = 6213; + this.state = 6217; this.sortby(); } } - this.state = 6218; + this.state = 6222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -35261,22 +35263,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6219; - this.column_expr_noparen(); this.state = 6223; + this.column_expr_noparen(); + this.state = 6227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 816, this.context) ) { case 1: { - this.state = 6220; + this.state = 6224; this.match(PostgreSqlParser.KW_USING); - this.state = 6221; + this.state = 6225; this.qual_all_op(); } break; case 2: { - this.state = 6222; + this.state = 6226; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -35288,14 +35290,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6227; + this.state = 6231; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 817, this.context) ) { case 1: { - this.state = 6225; + this.state = 6229; this.match(PostgreSqlParser.KW_NULLS); - this.state = 6226; + this.state = 6230; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -35328,20 +35330,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 590, PostgreSqlParser.RULE_select_limit); let _la: number; try { - this.state = 6240; + this.state = 6244; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OFFSET: this.enterOuterAlt(localContext, 1); { - this.state = 6229; + this.state = 6233; this.offset_clause(); - this.state = 6231; + this.state = 6235; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 818, this.context) ) { case 1: { - this.state = 6230; + this.state = 6234; this.fetch_clause(); } break; @@ -35352,30 +35354,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 6235; + this.state = 6239; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 6233; + this.state = 6237; this.limit_clause(); } break; case PostgreSqlParser.KW_FETCH: { - this.state = 6234; + this.state = 6238; this.fetch_clause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6238; + this.state = 6242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6237; + this.state = 6241; this.offset_clause(); } } @@ -35407,9 +35409,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6242; + this.state = 6246; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 6245; + this.state = 6249; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -35855,27 +35857,27 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6243; + this.state = 6247; this.expression(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 6244; + this.state = 6248; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6249; + this.state = 6253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 6247; + this.state = 6251; this.match(PostgreSqlParser.COMMA); - this.state = 6248; + this.state = 6252; this.expression(); } } @@ -35903,9 +35905,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6251; + this.state = 6255; this.match(PostgreSqlParser.KW_FETCH); - this.state = 6252; + this.state = 6256; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -35915,17 +35917,17 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 6254; + this.state = 6258; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { case 1: { - this.state = 6253; + this.state = 6257; this.select_fetch_first_value(); } break; } - this.state = 6256; + this.state = 6260; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -35934,20 +35936,20 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6260; + this.state = 6264; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ONLY: { - this.state = 6257; + this.state = 6261; this.match(PostgreSqlParser.KW_ONLY); } break; case PostgreSqlParser.KW_WITH: { - this.state = 6258; + this.state = 6262; this.match(PostgreSqlParser.KW_WITH); - this.state = 6259; + this.state = 6263; this.match(PostgreSqlParser.KW_TIES); } break; @@ -35978,16 +35980,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6262; + this.state = 6266; this.match(PostgreSqlParser.KW_OFFSET); - this.state = 6267; + this.state = 6271; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { case 1: { - this.state = 6263; + this.state = 6267; this.select_fetch_first_value(); - this.state = 6264; + this.state = 6268; _la = this.tokenStream.LA(1); if(!(_la === 320 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -36000,7 +36002,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6266; + this.state = 6270; this.expression(); } break; @@ -36026,13 +36028,13 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 598, PostgreSqlParser.RULE_select_fetch_first_value); let _la: number; try { - this.state = 6272; + this.state = 6276; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 827, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6269; + this.state = 6273; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -36041,7 +36043,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6270; + this.state = 6274; _la = this.tokenStream.LA(1); if(!(_la === 571 || _la === 573)) { this.errorHandler.recoverInline(this); @@ -36055,7 +36057,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6271; + this.state = 6275; this.primaryExpression(0); } break; @@ -36082,16 +36084,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6274; + this.state = 6278; this.match(PostgreSqlParser.KW_GROUP); - this.state = 6275; + this.state = 6279; this.match(PostgreSqlParser.KW_BY); - this.state = 6277; + this.state = 6281; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { case 1: { - this.state = 6276; + this.state = 6280; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -36103,7 +36105,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6279; + this.state = 6283; this.group_by_list(); } } @@ -36128,23 +36130,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6281; + this.state = 6285; this.group_by_item(); - this.state = 6286; + this.state = 6290; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 829, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6282; + this.state = 6286; this.match(PostgreSqlParser.COMMA); - this.state = 6283; + this.state = 6287; this.group_by_item(); } } } - this.state = 6288; + this.state = 6292; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 829, this.context); } @@ -36169,34 +36171,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 604, PostgreSqlParser.RULE_group_by_item); let _la: number; try { - this.state = 6312; + this.state = 6316; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 832, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6289; + this.state = 6293; this.column_expr_noparen(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6290; + this.state = 6294; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6291; + this.state = 6295; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6293; + this.state = 6297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 468 || _la === 469) { { - this.state = 6292; + this.state = 6296; _la = this.tokenStream.LA(1); if(!(_la === 468 || _la === 469)) { this.errorHandler.recoverInline(this); @@ -36208,44 +36210,44 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 6295; + this.state = 6299; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 6296; + this.state = 6300; this.column_expr_noparen(); - this.state = 6301; + this.state = 6305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6297; + this.state = 6301; this.match(PostgreSqlParser.COMMA); - this.state = 6298; + this.state = 6302; this.column_expr_noparen(); } } - this.state = 6303; + this.state = 6307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6304; + this.state = 6308; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6306; + this.state = 6310; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6307; + this.state = 6311; this.match(PostgreSqlParser.KW_SETS); - this.state = 6308; + this.state = 6312; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6309; + this.state = 6313; this.group_by_list(); - this.state = 6310; + this.state = 6314; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36270,95 +36272,95 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 606, PostgreSqlParser.RULE_for_locking_clause); let _la: number; try { - this.state = 6342; + this.state = 6346; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6335; + this.state = 6339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6314; + this.state = 6318; this.match(PostgreSqlParser.KW_FOR); - this.state = 6324; + this.state = 6328; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_UPDATE: { - this.state = 6317; + this.state = 6321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 6315; + this.state = 6319; this.match(PostgreSqlParser.KW_NO); - this.state = 6316; + this.state = 6320; this.match(PostgreSqlParser.KW_KEY); } } - this.state = 6319; + this.state = 6323; this.match(PostgreSqlParser.KW_UPDATE); } break; case PostgreSqlParser.KW_KEY: case PostgreSqlParser.KW_SHARE: { - this.state = 6321; + this.state = 6325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 245) { { - this.state = 6320; + this.state = 6324; this.match(PostgreSqlParser.KW_KEY); } } - this.state = 6323; + this.state = 6327; this.match(PostgreSqlParser.KW_SHARE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6328; + this.state = 6332; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { case 1: { - this.state = 6326; + this.state = 6330; this.match(PostgreSqlParser.KW_OF); - this.state = 6327; + this.state = 6331; this.qualified_name_list(); } break; } - this.state = 6333; + this.state = 6337; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { case 1: { - this.state = 6330; + this.state = 6334; this.match(PostgreSqlParser.KW_NOWAIT); } break; case 2: { - this.state = 6331; + this.state = 6335; this.match(PostgreSqlParser.KW_SKIP); - this.state = 6332; + this.state = 6336; this.match(PostgreSqlParser.KW_LOCKED); } break; } } } - this.state = 6337; + this.state = 6341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 62); @@ -36367,11 +36369,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6339; + this.state = 6343; this.match(PostgreSqlParser.KW_FOR); - this.state = 6340; + this.state = 6344; this.match(PostgreSqlParser.KW_READ); - this.state = 6341; + this.state = 6345; this.match(PostgreSqlParser.KW_ONLY); } break; @@ -36398,23 +36400,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6344; + this.state = 6348; this.match(PostgreSqlParser.KW_VALUES); - this.state = 6345; + this.state = 6349; this.execute_param_clause(); - this.state = 6350; + this.state = 6354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6346; + this.state = 6350; this.match(PostgreSqlParser.COMMA); - this.state = 6347; + this.state = 6351; this.execute_param_clause(); } } - this.state = 6352; + this.state = 6356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36440,9 +36442,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6353; + this.state = 6357; this.match(PostgreSqlParser.KW_FROM); - this.state = 6354; + this.state = 6358; this.from_list(); } } @@ -36467,23 +36469,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6356; + this.state = 6360; this.table_ref(); - this.state = 6361; + this.state = 6365; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 841, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6357; + this.state = 6361; this.match(PostgreSqlParser.COMMA); - this.state = 6358; + this.state = 6362; this.table_ref(); } } } - this.state = 6363; + this.state = 6367; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 841, this.context); } @@ -36511,61 +36513,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6427; + this.state = 6418; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 858, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 854, this.context) ) { case 1: { - this.state = 6378; + this.state = 6382; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { case 1: { - this.state = 6364; + this.state = 6368; this.relation_expr(); } break; case 2: { { - this.state = 6366; + this.state = 6370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 6365; + this.state = 6369; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 6368; + this.state = 6372; this.view_name(); - this.state = 6370; + this.state = 6374; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 843, this.context) ) { case 1: { - this.state = 6369; + this.state = 6373; this.match(PostgreSqlParser.STAR); } break; } - this.state = 6373; + this.state = 6377; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 844, this.context) ) { case 1: { - this.state = 6372; + this.state = 6376; this.column_list(); } break; } - this.state = 6376; + this.state = 6380; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 845, this.context) ) { case 1: { - this.state = 6375; + this.state = 6379; this.where_clause(); } break; @@ -36574,22 +36576,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6381; + this.state = 6385; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { case 1: { - this.state = 6380; + this.state = 6384; this.alias_clause(); } break; } - this.state = 6384; + this.state = 6388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 472) { { - this.state = 6383; + this.state = 6387; this.tablesample_clause(); } } @@ -36598,106 +36600,56 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6387; + this.state = 6391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 72) { { - this.state = 6386; + this.state = 6390; this.match(PostgreSqlParser.KW_LATERAL); } } - this.state = 6401; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { - case 1: - { - this.state = 6389; - this.xmltable(); - this.state = 6391; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 850, this.context) ) { - case 1: - { - this.state = 6390; - this.alias_clause(); - } - break; - } - } - break; - case 2: - { - this.state = 6393; - this.func_table(); - this.state = 6395; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 851, this.context) ) { - case 1: - { - this.state = 6394; - this.func_alias_clause(); - } - break; - } - } - break; - case 3: - { - this.state = 6397; - this.select_with_parens(); - this.state = 6399; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 852, this.context) ) { - case 1: - { - this.state = 6398; - this.alias_clause(); - } - break; - } - } - break; - } + this.state = 6393; + this.expressionTable(); } break; case 3: { - this.state = 6403; + this.state = 6394; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6404; + this.state = 6395; this.table_ref(); - this.state = 6421; + this.state = 6412; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CROSS: { - this.state = 6405; + this.state = 6396; this.match(PostgreSqlParser.KW_CROSS); - this.state = 6406; + this.state = 6397; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6407; + this.state = 6398; this.table_ref(); } break; case PostgreSqlParser.KW_NATURAL: { - this.state = 6408; + this.state = 6399; this.match(PostgreSqlParser.KW_NATURAL); - this.state = 6410; + this.state = 6401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6409; + this.state = 6400; this.join_type(); } } - this.state = 6412; + this.state = 6403; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6413; + this.state = 6404; this.table_ref(); } break; @@ -36707,21 +36659,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEFT: case PostgreSqlParser.KW_RIGHT: { - this.state = 6415; + this.state = 6406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6414; + this.state = 6405; this.join_type(); } } - this.state = 6417; + this.state = 6408; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6418; + this.state = 6409; this.table_ref(); - this.state = 6419; + this.state = 6410; this.join_qual(); } break; @@ -36730,14 +36682,14 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 6423; + this.state = 6414; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6425; + this.state = 6416; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 857, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { case 1: { - this.state = 6424; + this.state = 6415; this.alias_clause(); } break; @@ -36745,42 +36697,42 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 6447; + this.state = 6438; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 862, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 858, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 6445; + this.state = 6436; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CROSS: { - this.state = 6429; + this.state = 6420; this.match(PostgreSqlParser.KW_CROSS); - this.state = 6430; + this.state = 6421; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6431; + this.state = 6422; this.table_ref(); } break; case PostgreSqlParser.KW_NATURAL: { - this.state = 6432; + this.state = 6423; this.match(PostgreSqlParser.KW_NATURAL); - this.state = 6434; + this.state = 6425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6433; + this.state = 6424; this.join_type(); } } - this.state = 6436; + this.state = 6427; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6437; + this.state = 6428; this.table_ref(); } break; @@ -36790,21 +36742,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEFT: case PostgreSqlParser.KW_RIGHT: { - this.state = 6439; + this.state = 6430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { { - this.state = 6438; + this.state = 6429; this.join_type(); } } - this.state = 6441; + this.state = 6432; this.match(PostgreSqlParser.KW_JOIN); - this.state = 6442; + this.state = 6433; this.table_ref(); - this.state = 6443; + this.state = 6434; this.join_qual(); } break; @@ -36813,10 +36765,84 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 6449; + this.state = 6440; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 862, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 858, 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 expressionTable(): ExpressionTableContext { + let localContext = new ExpressionTableContext(this.context, this.state); + this.enterRule(localContext, 616, PostgreSqlParser.RULE_expressionTable); + try { + this.state = 6453; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 862, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 6441; + this.xmltable(); + this.state = 6443; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 859, this.context) ) { + case 1: + { + this.state = 6442; + this.alias_clause(); + } + break; + } + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 6445; + this.func_table(); + this.state = 6447; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { + case 1: + { + this.state = 6446; + this.func_alias_clause(); + } + break; + } + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 6449; + this.select_with_parens(); + this.state = 6451; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { + case 1: + { + this.state = 6450; + this.alias_clause(); + } + break; + } + } + break; } } catch (re) { @@ -36835,33 +36861,33 @@ export class PostgreSqlParser extends SQLParserBase { } public alias_clause(): Alias_clauseContext { let localContext = new Alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 616, PostgreSqlParser.RULE_alias_clause); + this.enterRule(localContext, 618, PostgreSqlParser.RULE_alias_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6451; + this.state = 6456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6450; + this.state = 6455; this.match(PostgreSqlParser.KW_AS); } } - this.state = 6453; - localContext._alias = this.colid(); this.state = 6458; + localContext._alias = this.colid(); + this.state = 6463; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { case 1: { - this.state = 6454; + this.state = 6459; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6455; + this.state = 6460; this.name_list(); - this.state = 6456; + this.state = 6461; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36884,35 +36910,35 @@ export class PostgreSqlParser extends SQLParserBase { } public func_alias_clause(): Func_alias_clauseContext { let localContext = new Func_alias_clauseContext(this.context, this.state); - this.enterRule(localContext, 618, PostgreSqlParser.RULE_func_alias_clause); + this.enterRule(localContext, 620, PostgreSqlParser.RULE_func_alias_clause); let _la: number; try { - this.state = 6472; + this.state = 6477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 867, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6460; + this.state = 6465; this.alias_clause(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6466; + this.state = 6471; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: { - this.state = 6461; + this.state = 6466; this.match(PostgreSqlParser.KW_AS); - this.state = 6463; + this.state = 6468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 6462; + this.state = 6467; localContext._alias = this.colid(); } } @@ -37314,18 +37340,18 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6465; + this.state = 6470; localContext._alias = this.colid(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6468; + this.state = 6473; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6469; + this.state = 6474; this.tablefuncelementlist(); - this.state = 6470; + this.state = 6475; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37347,12 +37373,12 @@ export class PostgreSqlParser extends SQLParserBase { } public join_type(): Join_typeContext { let localContext = new Join_typeContext(this.context, this.state); - this.enterRule(localContext, 620, PostgreSqlParser.RULE_join_type); + this.enterRule(localContext, 622, PostgreSqlParser.RULE_join_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6474; + this.state = 6479; _la = this.tokenStream.LA(1); if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { this.errorHandler.recoverInline(this); @@ -37361,12 +37387,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6476; + this.state = 6481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 6475; + this.state = 6480; this.match(PostgreSqlParser.KW_OUTER); } } @@ -37389,26 +37415,26 @@ export class PostgreSqlParser extends SQLParserBase { } public join_qual(): Join_qualContext { let localContext = new Join_qualContext(this.context, this.state); - this.enterRule(localContext, 622, PostgreSqlParser.RULE_join_qual); + this.enterRule(localContext, 624, PostgreSqlParser.RULE_join_qual); try { - this.state = 6482; + this.state = 6487; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_USING: this.enterOuterAlt(localContext, 1); { - this.state = 6478; + this.state = 6483; this.match(PostgreSqlParser.KW_USING); - this.state = 6479; + this.state = 6484; this.opt_column_list(); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 2); { - this.state = 6480; + this.state = 6485; this.match(PostgreSqlParser.KW_ON); - this.state = 6481; + this.state = 6486; this.expression(); } break; @@ -37432,24 +37458,24 @@ export class PostgreSqlParser extends SQLParserBase { } public relation_expr(): Relation_exprContext { let localContext = new Relation_exprContext(this.context, this.state); - this.enterRule(localContext, 624, PostgreSqlParser.RULE_relation_expr); + this.enterRule(localContext, 626, PostgreSqlParser.RULE_relation_expr); try { - this.state = 6499; + this.state = 6504; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 872, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6484; + this.state = 6489; this.truncate_table(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6485; + this.state = 6490; this.match(PostgreSqlParser.KW_ONLY); - this.state = 6491; + this.state = 6496; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -37847,17 +37873,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6486; + this.state = 6491; this.table_name(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6487; + this.state = 6492; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6488; + this.state = 6493; this.table_name(); - this.state = 6489; + this.state = 6494; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -37869,11 +37895,11 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6493; + this.state = 6498; this.match(PostgreSqlParser.KW_IN); - this.state = 6494; + this.state = 6499; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6497; + this.state = 6502; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38271,13 +38297,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6495; + this.state = 6500; this.schema_name(); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6496; + this.state = 6501; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -38304,35 +38330,35 @@ export class PostgreSqlParser extends SQLParserBase { } public publication_relation_expr(): Publication_relation_exprContext { let localContext = new Publication_relation_exprContext(this.context, this.state); - this.enterRule(localContext, 626, PostgreSqlParser.RULE_publication_relation_expr); + this.enterRule(localContext, 628, PostgreSqlParser.RULE_publication_relation_expr); let _la: number; try { - this.state = 6525; + this.state = 6530; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 877, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6501; + this.state = 6506; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6502; + this.state = 6507; this.truncate_table(); - this.state = 6504; + this.state = 6509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 873, this.context) ) { case 1: { - this.state = 6503; + this.state = 6508; this.opt_column_list(); } break; } - this.state = 6507; + this.state = 6512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 6506; + this.state = 6511; this.where_clause(); } } @@ -38342,11 +38368,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6509; + this.state = 6514; this.match(PostgreSqlParser.KW_TABLE); - this.state = 6510; + this.state = 6515; this.match(PostgreSqlParser.KW_ONLY); - this.state = 6516; + this.state = 6521; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38744,17 +38770,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6511; + this.state = 6516; this.table_name(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6512; + this.state = 6517; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6513; + this.state = 6518; this.table_name(); - this.state = 6514; + this.state = 6519; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -38766,13 +38792,13 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6518; + this.state = 6523; this.match(PostgreSqlParser.KW_TABLES); - this.state = 6519; + this.state = 6524; this.match(PostgreSqlParser.KW_IN); - this.state = 6520; + this.state = 6525; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6523; + this.state = 6528; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -39170,13 +39196,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6521; + this.state = 6526; this.schema_name(); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6522; + this.state = 6527; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -39203,26 +39229,26 @@ export class PostgreSqlParser extends SQLParserBase { } public relation_expr_list(): Relation_expr_listContext { let localContext = new Relation_expr_listContext(this.context, this.state); - this.enterRule(localContext, 628, PostgreSqlParser.RULE_relation_expr_list); + this.enterRule(localContext, 630, PostgreSqlParser.RULE_relation_expr_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6527; - this.relation_expr(); this.state = 6532; + this.relation_expr(); + this.state = 6537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6528; + this.state = 6533; this.match(PostgreSqlParser.COMMA); - this.state = 6529; + this.state = 6534; this.relation_expr(); } } - this.state = 6534; + this.state = 6539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39244,29 +39270,29 @@ export class PostgreSqlParser extends SQLParserBase { } public relation_expr_opt_alias(): Relation_expr_opt_aliasContext { let localContext = new Relation_expr_opt_aliasContext(this.context, this.state); - this.enterRule(localContext, 630, PostgreSqlParser.RULE_relation_expr_opt_alias); + this.enterRule(localContext, 632, PostgreSqlParser.RULE_relation_expr_opt_alias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6535; - this.relation_expr(); this.state = 6540; + this.relation_expr(); + this.state = 6545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 880, this.context) ) { case 1: { - this.state = 6537; + this.state = 6542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6536; + this.state = 6541; this.match(PostgreSqlParser.KW_AS); } } - this.state = 6539; + this.state = 6544; this.colid(); } break; @@ -39289,28 +39315,28 @@ export class PostgreSqlParser extends SQLParserBase { } public tablesample_clause(): Tablesample_clauseContext { let localContext = new Tablesample_clauseContext(this.context, this.state); - this.enterRule(localContext, 632, PostgreSqlParser.RULE_tablesample_clause); + this.enterRule(localContext, 634, PostgreSqlParser.RULE_tablesample_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6542; + this.state = 6547; this.match(PostgreSqlParser.KW_TABLESAMPLE); - this.state = 6543; + this.state = 6548; this.function_name(); - this.state = 6544; + this.state = 6549; this.execute_param_clause(); - this.state = 6550; + this.state = 6555; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 881, this.context) ) { case 1: { - this.state = 6545; + this.state = 6550; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 6546; + this.state = 6551; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6547; + this.state = 6552; this.expression(); - this.state = 6548; + this.state = 6553; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -39333,61 +39359,61 @@ export class PostgreSqlParser extends SQLParserBase { } public func_table(): Func_tableContext { let localContext = new Func_tableContext(this.context, this.state); - this.enterRule(localContext, 634, PostgreSqlParser.RULE_func_table); + this.enterRule(localContext, 636, PostgreSqlParser.RULE_func_table); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6566; + this.state = 6571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 883, this.context) ) { case 1: { - this.state = 6552; + this.state = 6557; this.func_expr_windowless(); } break; case 2: { { - this.state = 6553; + this.state = 6558; this.match(PostgreSqlParser.KW_ROWS); - this.state = 6554; + this.state = 6559; this.match(PostgreSqlParser.KW_FROM); - this.state = 6555; + this.state = 6560; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6556; - this.rowsfrom_item(); this.state = 6561; + this.rowsfrom_item(); + this.state = 6566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6557; + this.state = 6562; this.match(PostgreSqlParser.COMMA); - this.state = 6558; + this.state = 6563; this.rowsfrom_item(); } } - this.state = 6563; + this.state = 6568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6564; + this.state = 6569; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 6570; + this.state = 6575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 884, this.context) ) { case 1: { - this.state = 6568; + this.state = 6573; this.match(PostgreSqlParser.KW_WITH); - this.state = 6569; + this.state = 6574; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -39410,25 +39436,25 @@ export class PostgreSqlParser extends SQLParserBase { } public rowsfrom_item(): Rowsfrom_itemContext { let localContext = new Rowsfrom_itemContext(this.context, this.state); - this.enterRule(localContext, 636, PostgreSqlParser.RULE_rowsfrom_item); + this.enterRule(localContext, 638, PostgreSqlParser.RULE_rowsfrom_item); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6572; + this.state = 6577; this.func_expr_windowless(); - this.state = 6578; + this.state = 6583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 6573; + this.state = 6578; this.match(PostgreSqlParser.KW_AS); - this.state = 6574; + this.state = 6579; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6575; + this.state = 6580; this.tablefuncelementlist(); - this.state = 6576; + this.state = 6581; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39451,13 +39477,13 @@ export class PostgreSqlParser extends SQLParserBase { } public where_clause(): Where_clauseContext { let localContext = new Where_clauseContext(this.context, this.state); - this.enterRule(localContext, 638, PostgreSqlParser.RULE_where_clause); + this.enterRule(localContext, 640, PostgreSqlParser.RULE_where_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6580; + this.state = 6585; this.match(PostgreSqlParser.KW_WHERE); - this.state = 6581; + this.state = 6586; this.column_expr_noparen(); } } @@ -39477,28 +39503,28 @@ export class PostgreSqlParser extends SQLParserBase { } public where_or_current_clause(): Where_or_current_clauseContext { let localContext = new Where_or_current_clauseContext(this.context, this.state); - this.enterRule(localContext, 640, PostgreSqlParser.RULE_where_or_current_clause); + this.enterRule(localContext, 642, PostgreSqlParser.RULE_where_or_current_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6583; - this.match(PostgreSqlParser.KW_WHERE); this.state = 6588; + this.match(PostgreSqlParser.KW_WHERE); + this.state = 6593; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: { - this.state = 6584; + this.state = 6589; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 6585; + this.state = 6590; this.match(PostgreSqlParser.KW_OF); - this.state = 6586; + this.state = 6591; this.colid(); } break; case 2: { - this.state = 6587; + this.state = 6592; this.expression(); } break; @@ -39521,26 +39547,26 @@ export class PostgreSqlParser extends SQLParserBase { } public tablefuncelementlist(): TablefuncelementlistContext { let localContext = new TablefuncelementlistContext(this.context, this.state); - this.enterRule(localContext, 642, PostgreSqlParser.RULE_tablefuncelementlist); + this.enterRule(localContext, 644, PostgreSqlParser.RULE_tablefuncelementlist); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6590; - this.tablefuncelement(); this.state = 6595; + this.tablefuncelement(); + this.state = 6600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6591; + this.state = 6596; this.match(PostgreSqlParser.COMMA); - this.state = 6592; + this.state = 6597; this.tablefuncelement(); } } - this.state = 6597; + this.state = 6602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39562,21 +39588,21 @@ export class PostgreSqlParser extends SQLParserBase { } public tablefuncelement(): TablefuncelementContext { let localContext = new TablefuncelementContext(this.context, this.state); - this.enterRule(localContext, 644, PostgreSqlParser.RULE_tablefuncelement); + this.enterRule(localContext, 646, PostgreSqlParser.RULE_tablefuncelement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6598; + this.state = 6603; this.colid(); - this.state = 6599; + this.state = 6604; this.typename(); - this.state = 6601; + this.state = 6606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 6600; + this.state = 6605; this.opt_collate_clause(); } } @@ -39599,76 +39625,76 @@ export class PostgreSqlParser extends SQLParserBase { } public xmltable(): XmltableContext { let localContext = new XmltableContext(this.context, this.state); - this.enterRule(localContext, 646, PostgreSqlParser.RULE_xmltable); + this.enterRule(localContext, 648, PostgreSqlParser.RULE_xmltable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6603; + this.state = 6608; this.match(PostgreSqlParser.KW_XMLTABLE); - this.state = 6604; + this.state = 6609; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 6618; + this.state = 6623; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 890, this.context) ) { case 1: { - this.state = 6605; + this.state = 6610; this.match(PostgreSqlParser.KW_XMLNAMESPACES); - this.state = 6606; + this.state = 6611; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6607; - this.xml_namespace_el(); this.state = 6612; + this.xml_namespace_el(); + this.state = 6617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6608; + this.state = 6613; this.match(PostgreSqlParser.COMMA); - this.state = 6609; + this.state = 6614; this.xml_namespace_el(); } } - this.state = 6614; + this.state = 6619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6615; + this.state = 6620; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6616; + this.state = 6621; this.match(PostgreSqlParser.COMMA); } break; } - this.state = 6620; + this.state = 6625; this.primaryExpression(0); - this.state = 6621; + this.state = 6626; this.xmlexists_argument(); - this.state = 6622; + this.state = 6627; this.match(PostgreSqlParser.KW_COLUMNS); - this.state = 6623; - this.xmltable_column_el(); this.state = 6628; + this.xmltable_column_el(); + this.state = 6633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6624; + this.state = 6629; this.match(PostgreSqlParser.COMMA); - this.state = 6625; + this.state = 6630; this.xmltable_column_el(); } } - this.state = 6630; + this.state = 6635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 6631; + this.state = 6636; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39688,14 +39714,14 @@ export class PostgreSqlParser extends SQLParserBase { } public xmltable_column_el(): Xmltable_column_elContext { let localContext = new Xmltable_column_elContext(this.context, this.state); - this.enterRule(localContext, 648, PostgreSqlParser.RULE_xmltable_column_el); + this.enterRule(localContext, 650, PostgreSqlParser.RULE_xmltable_column_el); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6633; + this.state = 6638; this.colid(); - this.state = 6652; + this.state = 6657; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -40114,19 +40140,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6634; + this.state = 6639; this.typename(); - this.state = 6648; + this.state = 6653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 6644; + this.state = 6649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { - this.state = 6644; + this.state = 6649; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -40473,40 +40499,40 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6637; + this.state = 6642; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { case 1: { - this.state = 6635; + this.state = 6640; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 6636; + this.state = 6641; this.identifier(); } break; } - this.state = 6639; + this.state = 6644; this.expression(); } break; case PostgreSqlParser.KW_NOT: case PostgreSqlParser.KW_NULL: { - this.state = 6641; + this.state = 6646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6640; + this.state = 6645; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6643; + this.state = 6648; this.match(PostgreSqlParser.KW_NULL); } break; @@ -40514,7 +40540,7 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6646; + this.state = 6651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584); @@ -40525,9 +40551,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_FOR: { - this.state = 6650; + this.state = 6655; this.match(PostgreSqlParser.KW_FOR); - this.state = 6651; + this.state = 6656; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -40552,28 +40578,28 @@ export class PostgreSqlParser extends SQLParserBase { } public xml_namespace_el(): Xml_namespace_elContext { let localContext = new Xml_namespace_elContext(this.context, this.state); - this.enterRule(localContext, 650, PostgreSqlParser.RULE_xml_namespace_el); + this.enterRule(localContext, 652, PostgreSqlParser.RULE_xml_namespace_el); try { - this.state = 6660; + this.state = 6665; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 898, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6654; + this.state = 6659; this.primaryExpression(0); - this.state = 6655; + this.state = 6660; this.match(PostgreSqlParser.KW_AS); - this.state = 6656; + this.state = 6661; this.collabel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6658; + this.state = 6663; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6659; + this.state = 6664; this.primaryExpression(0); } break; @@ -40595,59 +40621,59 @@ export class PostgreSqlParser extends SQLParserBase { } public typename(): TypenameContext { let localContext = new TypenameContext(this.context, this.state); - this.enterRule(localContext, 652, PostgreSqlParser.RULE_typename); + this.enterRule(localContext, 654, PostgreSqlParser.RULE_typename); let _la: number; try { let alternative: number; - this.state = 6688; + this.state = 6693; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6663; + this.state = 6668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 6662; + this.state = 6667; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 6665; + this.state = 6670; this.simpletypename(); - this.state = 6682; + this.state = 6687; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 903, this.context) ) { case 1: { { - this.state = 6673; + this.state = 6678; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 901, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6666; + this.state = 6671; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 6668; + this.state = 6673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 571) { { - this.state = 6667; + this.state = 6672; this.match(PostgreSqlParser.Integral); } } - this.state = 6670; + this.state = 6675; this.match(PostgreSqlParser.CLOSE_BRACKET); } } } - this.state = 6675; + this.state = 6680; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 901, this.context); } @@ -40656,18 +40682,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6676; + this.state = 6681; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6680; + this.state = 6685; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 902, this.context) ) { case 1: { - this.state = 6677; + this.state = 6682; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 6678; + this.state = 6683; this.match(PostgreSqlParser.Integral); - this.state = 6679; + this.state = 6684; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -40680,11 +40706,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6684; + this.state = 6689; this.qualified_name(); - this.state = 6685; + this.state = 6690; this.match(PostgreSqlParser.PERCENT); - this.state = 6686; + this.state = 6691; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -40713,32 +40739,32 @@ export class PostgreSqlParser extends SQLParserBase { } public simpletypename(): SimpletypenameContext { let localContext = new SimpletypenameContext(this.context, this.state); - this.enterRule(localContext, 654, PostgreSqlParser.RULE_simpletypename); + this.enterRule(localContext, 656, PostgreSqlParser.RULE_simpletypename); try { - this.state = 6705; + this.state = 6710; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6690; + this.state = 6695; this.type_function_name(); - this.state = 6692; + this.state = 6697; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { case 1: { - this.state = 6691; + this.state = 6696; this.attrs(); } break; } - this.state = 6695; + this.state = 6700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: { - this.state = 6694; + this.state = 6699; this.execute_param_clause(); } break; @@ -40748,26 +40774,26 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6697; + this.state = 6702; this.consttypename(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6698; - this.match(PostgreSqlParser.KW_INTERVAL); this.state = 6703; + this.match(PostgreSqlParser.KW_INTERVAL); + this.state = 6708; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { case 1: { - this.state = 6700; + this.state = 6705; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { case 1: { - this.state = 6699; + this.state = 6704; this.opt_interval(); } break; @@ -40776,7 +40802,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6702; + this.state = 6707; this.opt_float(); } break; @@ -40801,9 +40827,9 @@ export class PostgreSqlParser extends SQLParserBase { } public consttypename(): ConsttypenameContext { let localContext = new ConsttypenameContext(this.context, this.state); - this.enterRule(localContext, 656, PostgreSqlParser.RULE_consttypename); + this.enterRule(localContext, 658, PostgreSqlParser.RULE_consttypename); try { - this.state = 6711; + this.state = 6716; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DOUBLE: @@ -40819,14 +40845,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 1); { - this.state = 6707; + this.state = 6712; this.numeric(); } break; case PostgreSqlParser.KW_BIT: this.enterOuterAlt(localContext, 2); { - this.state = 6708; + this.state = 6713; this.bit(); } break; @@ -40837,7 +40863,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 3); { - this.state = 6709; + this.state = 6714; this.character(); } break; @@ -40845,7 +40871,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 6710; + this.state = 6715; this.constdatetime(); } break; @@ -40869,58 +40895,58 @@ export class PostgreSqlParser extends SQLParserBase { } public numeric(): NumericContext { let localContext = new NumericContext(this.context, this.state); - this.enterRule(localContext, 658, PostgreSqlParser.RULE_numeric); + this.enterRule(localContext, 660, PostgreSqlParser.RULE_numeric); let _la: number; try { - this.state = 6729; + this.state = 6734; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INT: this.enterOuterAlt(localContext, 1); { - this.state = 6713; + this.state = 6718; this.match(PostgreSqlParser.KW_INT); } break; case PostgreSqlParser.KW_INTEGER: this.enterOuterAlt(localContext, 2); { - this.state = 6714; + this.state = 6719; this.match(PostgreSqlParser.KW_INTEGER); } break; case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 3); { - this.state = 6715; + this.state = 6720; this.match(PostgreSqlParser.KW_SMALLINT); } break; case PostgreSqlParser.KW_BIGINT: this.enterOuterAlt(localContext, 4); { - this.state = 6716; + this.state = 6721; this.match(PostgreSqlParser.KW_BIGINT); } break; case PostgreSqlParser.KW_REAL: this.enterOuterAlt(localContext, 5); { - this.state = 6717; + this.state = 6722; this.match(PostgreSqlParser.KW_REAL); } break; case PostgreSqlParser.KW_FLOAT: this.enterOuterAlt(localContext, 6); { - this.state = 6718; + this.state = 6723; this.match(PostgreSqlParser.KW_FLOAT); - this.state = 6720; + this.state = 6725; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { case 1: { - this.state = 6719; + this.state = 6724; this.opt_float(); } break; @@ -40930,9 +40956,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DOUBLE: this.enterOuterAlt(localContext, 7); { - this.state = 6722; + this.state = 6727; this.match(PostgreSqlParser.KW_DOUBLE); - this.state = 6723; + this.state = 6728; this.match(PostgreSqlParser.KW_PRECISION); } break; @@ -40941,7 +40967,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 8); { - this.state = 6724; + this.state = 6729; _la = this.tokenStream.LA(1); if(!(((((_la - 394)) & ~0x1F) === 0 && ((1 << (_la - 394)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -40950,12 +40976,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6726; + this.state = 6731; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 912, this.context) ) { case 1: { - this.state = 6725; + this.state = 6730; this.execute_param_clause(); } break; @@ -40965,7 +40991,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BOOLEAN: this.enterOuterAlt(localContext, 9); { - this.state = 6728; + this.state = 6733; this.match(PostgreSqlParser.KW_BOOLEAN); } break; @@ -40989,15 +41015,15 @@ export class PostgreSqlParser extends SQLParserBase { } public opt_float(): Opt_floatContext { let localContext = new Opt_floatContext(this.context, this.state); - this.enterRule(localContext, 660, PostgreSqlParser.RULE_opt_float); + this.enterRule(localContext, 662, PostgreSqlParser.RULE_opt_float); try { this.enterOuterAlt(localContext, 1); { - this.state = 6731; + this.state = 6736; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6732; + this.state = 6737; this.match(PostgreSqlParser.Integral); - this.state = 6733; + this.state = 6738; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -41017,28 +41043,28 @@ export class PostgreSqlParser extends SQLParserBase { } public bit(): BitContext { let localContext = new BitContext(this.context, this.state); - this.enterRule(localContext, 662, PostgreSqlParser.RULE_bit); + this.enterRule(localContext, 664, PostgreSqlParser.RULE_bit); try { this.enterOuterAlt(localContext, 1); { - this.state = 6735; + this.state = 6740; this.match(PostgreSqlParser.KW_BIT); - this.state = 6737; + this.state = 6742; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { case 1: { - this.state = 6736; + this.state = 6741; this.match(PostgreSqlParser.KW_VARYING); } break; } - this.state = 6740; + this.state = 6745; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 915, this.context) ) { case 1: { - this.state = 6739; + this.state = 6744; this.execute_param_clause(); } break; @@ -41061,19 +41087,19 @@ export class PostgreSqlParser extends SQLParserBase { } public character(): CharacterContext { let localContext = new CharacterContext(this.context, this.state); - this.enterRule(localContext, 664, PostgreSqlParser.RULE_character); + this.enterRule(localContext, 666, PostgreSqlParser.RULE_character); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6752; + this.state = 6757; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHAR: case PostgreSqlParser.KW_CHARACTER: case PostgreSqlParser.KW_NCHAR: { - this.state = 6742; + this.state = 6747; _la = this.tokenStream.LA(1); if(!(((((_la - 391)) & ~0x1F) === 0 && ((1 << (_la - 391)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -41082,12 +41108,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6744; + this.state = 6749; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { case 1: { - this.state = 6743; + this.state = 6748; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -41096,15 +41122,15 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_VARCHAR: { - this.state = 6746; + this.state = 6751; this.match(PostgreSqlParser.KW_VARCHAR); } break; case PostgreSqlParser.KW_NATIONAL: { - this.state = 6747; + this.state = 6752; this.match(PostgreSqlParser.KW_NATIONAL); - this.state = 6748; + this.state = 6753; _la = this.tokenStream.LA(1); if(!(_la === 391 || _la === 392)) { this.errorHandler.recoverInline(this); @@ -41113,12 +41139,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6750; + this.state = 6755; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 917, this.context) ) { case 1: { - this.state = 6749; + this.state = 6754; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -41128,12 +41154,12 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6755; + this.state = 6760; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 919, this.context) ) { case 1: { - this.state = 6754; + this.state = 6759; this.opt_float(); } break; @@ -41156,12 +41182,12 @@ export class PostgreSqlParser extends SQLParserBase { } public constdatetime(): ConstdatetimeContext { let localContext = new ConstdatetimeContext(this.context, this.state); - this.enterRule(localContext, 666, PostgreSqlParser.RULE_constdatetime); + this.enterRule(localContext, 668, PostgreSqlParser.RULE_constdatetime); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6757; + this.state = 6762; _la = this.tokenStream.LA(1); if(!(_la === 418 || _la === 419)) { this.errorHandler.recoverInline(this); @@ -41170,22 +41196,22 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6759; + this.state = 6764; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 920, this.context) ) { case 1: { - this.state = 6758; + this.state = 6763; this.opt_float(); } break; } - this.state = 6764; + this.state = 6769; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: { - this.state = 6761; + this.state = 6766; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -41194,9 +41220,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6762; + this.state = 6767; this.match(PostgreSqlParser.KW_TIME); - this.state = 6763; + this.state = 6768; this.match(PostgreSqlParser.KW_ZONE); } break; @@ -41219,38 +41245,38 @@ export class PostgreSqlParser extends SQLParserBase { } public opt_interval(): Opt_intervalContext { let localContext = new Opt_intervalContext(this.context, this.state); - this.enterRule(localContext, 668, PostgreSqlParser.RULE_opt_interval); + this.enterRule(localContext, 670, PostgreSqlParser.RULE_opt_interval); try { - this.state = 6795; + this.state = 6800; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_MONTH: this.enterOuterAlt(localContext, 1); { - this.state = 6766; + this.state = 6771; this.match(PostgreSqlParser.KW_MONTH); } break; case PostgreSqlParser.KW_SECOND: this.enterOuterAlt(localContext, 2); { - this.state = 6767; + this.state = 6772; this.interval_second(); } break; case PostgreSqlParser.KW_YEAR: this.enterOuterAlt(localContext, 3); { - this.state = 6768; + this.state = 6773; this.match(PostgreSqlParser.KW_YEAR); - this.state = 6771; + this.state = 6776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { case 1: { - this.state = 6769; + this.state = 6774; this.match(PostgreSqlParser.KW_TO); - this.state = 6770; + this.state = 6775; this.match(PostgreSqlParser.KW_MONTH); } break; @@ -41260,33 +41286,33 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DAY: this.enterOuterAlt(localContext, 4); { - this.state = 6773; + this.state = 6778; this.match(PostgreSqlParser.KW_DAY); - this.state = 6780; + this.state = 6785; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { case 1: { - this.state = 6774; + this.state = 6779; this.match(PostgreSqlParser.KW_TO); - this.state = 6778; + this.state = 6783; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HOUR: { - this.state = 6775; + this.state = 6780; this.match(PostgreSqlParser.KW_HOUR); } break; case PostgreSqlParser.KW_MINUTE: { - this.state = 6776; + this.state = 6781; this.match(PostgreSqlParser.KW_MINUTE); } break; case PostgreSqlParser.KW_SECOND: { - this.state = 6777; + this.state = 6782; this.interval_second(); } break; @@ -41301,27 +41327,27 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_HOUR: this.enterOuterAlt(localContext, 5); { - this.state = 6782; + this.state = 6787; this.match(PostgreSqlParser.KW_HOUR); - this.state = 6788; + this.state = 6793; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 926, this.context) ) { case 1: { - this.state = 6783; + this.state = 6788; this.match(PostgreSqlParser.KW_TO); - this.state = 6786; + this.state = 6791; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_MINUTE: { - this.state = 6784; + this.state = 6789; this.match(PostgreSqlParser.KW_MINUTE); } break; case PostgreSqlParser.KW_SECOND: { - this.state = 6785; + this.state = 6790; this.interval_second(); } break; @@ -41336,16 +41362,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINUTE: this.enterOuterAlt(localContext, 6); { - this.state = 6790; + this.state = 6795; this.match(PostgreSqlParser.KW_MINUTE); - this.state = 6793; + this.state = 6798; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 927, this.context) ) { case 1: { - this.state = 6791; + this.state = 6796; this.match(PostgreSqlParser.KW_TO); - this.state = 6792; + this.state = 6797; this.interval_second(); } break; @@ -41372,18 +41398,18 @@ export class PostgreSqlParser extends SQLParserBase { } public interval_second(): Interval_secondContext { let localContext = new Interval_secondContext(this.context, this.state); - this.enterRule(localContext, 670, PostgreSqlParser.RULE_interval_second); + this.enterRule(localContext, 672, PostgreSqlParser.RULE_interval_second); try { this.enterOuterAlt(localContext, 1); { - this.state = 6797; + this.state = 6802; this.match(PostgreSqlParser.KW_SECOND); - this.state = 6799; + this.state = 6804; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 929, this.context) ) { case 1: { - this.state = 6798; + this.state = 6803; this.opt_float(); } break; @@ -41406,12 +41432,12 @@ export class PostgreSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 672, PostgreSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 674, PostgreSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6801; + this.state = 6806; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { this.errorHandler.recoverInline(this); @@ -41438,11 +41464,11 @@ export class PostgreSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 674, PostgreSqlParser.RULE_expression); + this.enterRule(localContext, 676, PostgreSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 6803; + this.state = 6808; this.booleanExpression(0); } } @@ -41472,13 +41498,13 @@ export class PostgreSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 676; - this.enterRecursionRule(localContext, 676, PostgreSqlParser.RULE_booleanExpression, _p); + let _startState = 678; + this.enterRecursionRule(localContext, 678, PostgreSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6812; + this.state = 6817; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -41927,14 +41953,14 @@ export class PostgreSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 6806; + this.state = 6811; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 6808; + this.state = 6813; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 930, this.context) ) { case 1: { - this.state = 6807; + this.state = 6812; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -41946,9 +41972,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6810; + this.state = 6815; this.match(PostgreSqlParser.KW_NOT); - this.state = 6811; + this.state = 6816; this.booleanExpression(3); } break; @@ -41956,7 +41982,7 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 6822; + this.state = 6827; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 933, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -41966,7 +41992,7 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 6820; + this.state = 6825; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 932, this.context) ) { case 1: @@ -41974,13 +42000,13 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6814; + this.state = 6819; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6815; + this.state = 6820; (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_AND); - this.state = 6816; + this.state = 6821; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -41989,20 +42015,20 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6817; + this.state = 6822; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 6818; + this.state = 6823; (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_OR); - this.state = 6819; + this.state = 6824; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 6824; + this.state = 6829; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 933, this.context); } @@ -42024,19 +42050,19 @@ export class PostgreSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 678, PostgreSqlParser.RULE_predicate); + this.enterRule(localContext, 680, PostgreSqlParser.RULE_predicate); let _la: number; try { - this.state = 6896; + this.state = 6901; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6825; + this.state = 6830; this.comparisonOperator(); - this.state = 6826; + this.state = 6831; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -42044,28 +42070,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6828; + this.state = 6833; this.comparisonOperator(); - this.state = 6829; + this.state = 6834; this.subquery_Op(); - this.state = 6830; + this.state = 6835; this.sub_type(); - this.state = 6836; + this.state = 6841; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 934, this.context) ) { case 1: { - this.state = 6831; + this.state = 6836; this.select_with_parens(); } break; case 2: { - this.state = 6832; + this.state = 6837; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6833; + this.state = 6838; this.expression(); - this.state = 6834; + this.state = 6839; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -42076,23 +42102,23 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6839; + this.state = 6844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6838; + this.state = 6843; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6841; + this.state = 6846; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6842; + this.state = 6847; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 6843; + this.state = 6848; this.match(PostgreSqlParser.KW_AND); - this.state = 6844; + this.state = 6849; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -42100,39 +42126,39 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6847; + this.state = 6852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6846; + this.state = 6851; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6849; + this.state = 6854; this.match(PostgreSqlParser.KW_IN); - this.state = 6850; + this.state = 6855; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6851; - this.expression(); this.state = 6856; + this.expression(); + this.state = 6861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6852; + this.state = 6857; this.match(PostgreSqlParser.COMMA); - this.state = 6853; + this.state = 6858; this.expression(); } } - this.state = 6858; + this.state = 6863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6859; + this.state = 6864; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -42140,19 +42166,19 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6862; + this.state = 6867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6861; + this.state = 6866; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6864; + this.state = 6869; this.match(PostgreSqlParser.KW_IN); - this.state = 6865; + this.state = 6870; this.select_with_parens(); } break; @@ -42160,49 +42186,49 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6867; + this.state = 6872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6866; + this.state = 6871; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6877; + this.state = 6882; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIKE: { - this.state = 6869; + this.state = 6874; this.match(PostgreSqlParser.KW_LIKE); } break; case PostgreSqlParser.KW_ILIKE: { - this.state = 6870; + this.state = 6875; this.match(PostgreSqlParser.KW_ILIKE); } break; case PostgreSqlParser.KW_SIMILAR: { - this.state = 6871; + this.state = 6876; this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 6872; + this.state = 6877; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_BETWEEN: { - this.state = 6873; + this.state = 6878; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6875; + this.state = 6880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 6874; + this.state = 6879; this.match(PostgreSqlParser.KW_SYMMETRIC); } } @@ -42212,16 +42238,16 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6879; + this.state = 6884; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 6882; + this.state = 6887; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { case 1: { - this.state = 6880; + this.state = 6885; this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 6881; + this.state = 6886; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -42232,19 +42258,19 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6884; + this.state = 6889; this.match(PostgreSqlParser.KW_IS); - this.state = 6886; + this.state = 6891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6885; + this.state = 6890; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6888; + this.state = 6893; this.match(PostgreSqlParser.KW_NULL); } break; @@ -42252,23 +42278,23 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6889; + this.state = 6894; this.match(PostgreSqlParser.KW_IS); - this.state = 6891; + this.state = 6896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6890; + this.state = 6895; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6893; + this.state = 6898; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6894; + this.state = 6899; this.match(PostgreSqlParser.KW_FROM); - this.state = 6895; + this.state = 6900; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -42300,14 +42326,14 @@ export class PostgreSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 680; - this.enterRecursionRule(localContext, 680, PostgreSqlParser.RULE_valueExpression, _p); + let _startState = 682; + this.enterRecursionRule(localContext, 682, PostgreSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6902; + this.state = 6907; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { case 1: @@ -42316,7 +42342,7 @@ export class PostgreSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 6899; + this.state = 6904; this.primaryExpression(0); } break; @@ -42325,7 +42351,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 6900; + this.state = 6905; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { @@ -42335,13 +42361,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6901; + this.state = 6906; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 6920; + this.state = 6925; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 948, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42351,7 +42377,7 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 6918; + this.state = 6923; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { case 1: @@ -42359,11 +42385,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6904; + this.state = 6909; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 6905; + this.state = 6910; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { @@ -42373,7 +42399,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6906; + this.state = 6911; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -42382,11 +42408,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6907; + this.state = 6912; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6908; + this.state = 6913; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { @@ -42396,7 +42422,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6909; + this.state = 6914; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -42405,13 +42431,13 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6910; + this.state = 6915; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 6911; + this.state = 6916; this.match(PostgreSqlParser.CARET); - this.state = 6912; + this.state = 6917; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -42419,24 +42445,24 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6913; + this.state = 6918; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 6914; + this.state = 6919; this.match(PostgreSqlParser.KW_AT); - this.state = 6915; + this.state = 6920; this.match(PostgreSqlParser.KW_TIME); - this.state = 6916; + this.state = 6921; this.match(PostgreSqlParser.KW_ZONE); - this.state = 6917; + this.state = 6922; this.expression(); } break; } } } - this.state = 6922; + this.state = 6927; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 948, this.context); } @@ -42468,19 +42494,19 @@ export class PostgreSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 682; - this.enterRecursionRule(localContext, 682, PostgreSqlParser.RULE_primaryExpression, _p); + let _startState = 684; + this.enterRecursionRule(localContext, 684, PostgreSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7011; + this.state = 7016; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 959, this.context) ) { case 1: { - this.state = 6924; + this.state = 6929; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -42489,26 +42515,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6925; + this.state = 6930; this.select_with_parens(); } break; case 2: { - this.state = 6926; + this.state = 6931; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6929; + this.state = 6934; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 6927; + this.state = 6932; this.select_with_parens(); } break; case PostgreSqlParser.OPEN_BRACKET: { - this.state = 6928; + this.state = 6933; this.array_expr(); } break; @@ -42519,49 +42545,49 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 6931; + this.state = 6936; this.match(PostgreSqlParser.PARAM); - this.state = 6932; + this.state = 6937; this.opt_indirection(); } break; case 4: { - this.state = 6933; + this.state = 6938; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6934; + this.state = 6939; this.execute_param_clause(); } break; case 5: { - this.state = 6935; + this.state = 6940; this.match(PostgreSqlParser.Integral); } break; case 6: { - this.state = 6936; + this.state = 6941; this.match(PostgreSqlParser.Numeric); } break; case 7: { - this.state = 6937; + this.state = 6942; this.match(PostgreSqlParser.BinaryStringConstant); } break; case 8: { - this.state = 6938; + this.state = 6943; this.match(PostgreSqlParser.HexadecimalStringConstant); } break; case 9: { - this.state = 6939; + this.state = 6944; this.function_name(); - this.state = 6949; + this.state = 6954; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -42569,29 +42595,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6940; + this.state = 6945; this.sconst(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6941; + this.state = 6946; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6942; + this.state = 6947; this.func_arg_list(); - this.state = 6944; + this.state = 6949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6943; + this.state = 6948; this.sort_clause(); } } - this.state = 6946; + this.state = 6951; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6947; + this.state = 6952; this.sconst(); } break; @@ -42602,25 +42628,25 @@ export class PostgreSqlParser extends SQLParserBase { break; case 10: { - this.state = 6952; + this.state = 6957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190 || ((((_la - 388)) & ~0x1F) === 0 && ((1 << (_la - 388)) & 3525731551) !== 0) || _la === 423) { { - this.state = 6951; + this.state = 6956; this.consttypename(); } } - this.state = 6954; + this.state = 6959; this.sconst(); } break; case 11: { - this.state = 6955; + this.state = 6960; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6963; + this.state = 6968; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -42628,14 +42654,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6956; + this.state = 6961; this.sconst(); - this.state = 6958; + this.state = 6963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 953, this.context) ) { case 1: { - this.state = 6957; + this.state = 6962; this.opt_interval(); } break; @@ -42644,9 +42670,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6960; + this.state = 6965; this.opt_float(); - this.state = 6961; + this.state = 6966; this.sconst(); } break; @@ -42657,100 +42683,100 @@ export class PostgreSqlParser extends SQLParserBase { break; case 12: { - this.state = 6965; + this.state = 6970; this.match(PostgreSqlParser.KW_TRUE); } break; case 13: { - this.state = 6966; + this.state = 6971; this.match(PostgreSqlParser.KW_FALSE); } break; case 14: { - this.state = 6967; + this.state = 6972; this.match(PostgreSqlParser.KW_NULL); } break; case 15: { - this.state = 6968; + this.state = 6973; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case 16: { - this.state = 6969; + this.state = 6974; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6970; + this.state = 6975; localContext._a_expr_in_parens = this.expression(); - this.state = 6971; + this.state = 6976; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6972; + this.state = 6977; this.opt_indirection(); } break; case 17: { - this.state = 6974; + this.state = 6979; this.match(PostgreSqlParser.KW_CASE); - this.state = 6976; + this.state = 6981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 6975; + this.state = 6980; this.expression(); } } - this.state = 6979; + this.state = 6984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6978; + this.state = 6983; this.when_clause(); } } - this.state = 6981; + this.state = 6986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 6985; + this.state = 6990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 6983; + this.state = 6988; this.match(PostgreSqlParser.KW_ELSE); - this.state = 6984; + this.state = 6989; this.expression(); } } - this.state = 6987; + this.state = 6992; this.match(PostgreSqlParser.KW_END); } break; case 18: { - this.state = 6989; + this.state = 6994; this.func_expr(); } break; case 19: { - this.state = 6990; + this.state = 6995; this.select_with_parens(); - this.state = 6992; + this.state = 6997; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 958, this.context) ) { case 1: { - this.state = 6991; + this.state = 6996; this.indirection(); } break; @@ -42759,43 +42785,43 @@ export class PostgreSqlParser extends SQLParserBase { break; case 20: { - this.state = 6994; + this.state = 6999; this.explicit_row(); } break; case 21: { - this.state = 6995; + this.state = 7000; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6996; + this.state = 7001; this.expression(); - this.state = 6997; + this.state = 7002; this.match(PostgreSqlParser.COMMA); - this.state = 6998; + this.state = 7003; this.expr_list(); - this.state = 6999; + this.state = 7004; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 22: { - this.state = 7001; + this.state = 7006; this.row(); - this.state = 7002; + this.state = 7007; this.match(PostgreSqlParser.KW_OVERLAPS); - this.state = 7003; + this.state = 7008; this.row(); } break; case 23: { - this.state = 7005; + this.state = 7010; this.qualified_name(); } break; case 24: { - this.state = 7006; + this.state = 7011; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -42804,21 +42830,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7007; + this.state = 7012; this.primaryExpression(5); } break; case 25: { - this.state = 7008; + this.state = 7013; this.qual_op(); - this.state = 7009; + this.state = 7014; this.primaryExpression(2); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7040; + this.state = 7045; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 964, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -42828,20 +42854,20 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7038; + this.state = 7043; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 963, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7013; + this.state = 7018; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7014; + this.state = 7019; this.mathop(); - this.state = 7015; + this.state = 7020; this.primaryExpression(4); } break; @@ -42849,13 +42875,13 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7017; + this.state = 7022; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7018; + this.state = 7023; this.match(PostgreSqlParser.TYPECAST); - this.state = 7019; + this.state = 7024; this.typename(); } break; @@ -42863,18 +42889,18 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7020; + this.state = 7025; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7021; + this.state = 7026; this.qual_op(); - this.state = 7023; + this.state = 7028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 7022; + this.state = 7027; this.primaryExpression(0); } break; @@ -42885,46 +42911,46 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7025; + this.state = 7030; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 7026; + this.state = 7031; this.match(PostgreSqlParser.KW_IS); - this.state = 7028; + this.state = 7033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7027; + this.state = 7032; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7036; + this.state = 7041; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DISTINCT: { - this.state = 7030; + this.state = 7035; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 7031; + this.state = 7036; this.match(PostgreSqlParser.KW_FROM); - this.state = 7032; + this.state = 7037; this.primaryExpression(0); } break; case PostgreSqlParser.KW_OF: { - this.state = 7033; + this.state = 7038; this.match(PostgreSqlParser.KW_OF); - this.state = 7034; + this.state = 7039; this.prep_type_clause(); } break; case PostgreSqlParser.KW_DOCUMENT: { - this.state = 7035; + this.state = 7040; this.match(PostgreSqlParser.KW_DOCUMENT); } break; @@ -42936,7 +42962,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 7042; + this.state = 7047; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 964, this.context); } @@ -42958,42 +42984,42 @@ export class PostgreSqlParser extends SQLParserBase { } public func_application(): Func_applicationContext { let localContext = new Func_applicationContext(this.context, this.state); - this.enterRule(localContext, 684, PostgreSqlParser.RULE_func_application); + this.enterRule(localContext, 686, PostgreSqlParser.RULE_func_application); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7043; + this.state = 7048; this.function_name(); - this.state = 7044; + this.state = 7049; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7065; + this.state = 7070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 969, this.context) ) { case 1: { - this.state = 7045; + this.state = 7050; this.func_arg_list(); - this.state = 7049; + this.state = 7054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7046; + this.state = 7051; this.match(PostgreSqlParser.COMMA); - this.state = 7047; + this.state = 7052; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7048; + this.state = 7053; this.func_arg_expr(); } } - this.state = 7052; + this.state = 7057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7051; + this.state = 7056; this.sort_clause(); } } @@ -43002,16 +43028,16 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7054; + this.state = 7059; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7055; + this.state = 7060; this.func_arg_expr(); - this.state = 7057; + this.state = 7062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7056; + this.state = 7061; this.sort_clause(); } } @@ -43020,7 +43046,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7059; + this.state = 7064; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -43029,14 +43055,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7060; + this.state = 7065; this.func_arg_list(); - this.state = 7062; + this.state = 7067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7061; + this.state = 7066; this.sort_clause(); } } @@ -43045,12 +43071,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 4: { - this.state = 7064; + this.state = 7069; this.match(PostgreSqlParser.STAR); } break; } - this.state = 7067; + this.state = 7072; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -43070,65 +43096,65 @@ export class PostgreSqlParser extends SQLParserBase { } public func_expr(): Func_exprContext { let localContext = new Func_exprContext(this.context, this.state); - this.enterRule(localContext, 686, PostgreSqlParser.RULE_func_expr); + this.enterRule(localContext, 688, PostgreSqlParser.RULE_func_expr); try { - this.state = 7094; + this.state = 7099; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7069; + this.state = 7074; this.func_application(); - this.state = 7076; + this.state = 7081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 970, this.context) ) { case 1: { - this.state = 7070; + this.state = 7075; this.match(PostgreSqlParser.KW_WITHIN); - this.state = 7071; + this.state = 7076; this.match(PostgreSqlParser.KW_GROUP); - this.state = 7072; + this.state = 7077; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7073; + this.state = 7078; this.sort_clause(); - this.state = 7074; + this.state = 7079; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7084; + this.state = 7089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 971, this.context) ) { case 1: { - this.state = 7078; + this.state = 7083; this.match(PostgreSqlParser.KW_FILTER); - this.state = 7079; + this.state = 7084; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7080; + this.state = 7085; this.match(PostgreSqlParser.KW_WHERE); - this.state = 7081; + this.state = 7086; this.expression(); - this.state = 7082; + this.state = 7087; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7091; + this.state = 7096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 7086; + this.state = 7091; this.match(PostgreSqlParser.KW_OVER); - this.state = 7089; + this.state = 7094; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7087; + this.state = 7092; this.window_specification(); } break; @@ -43527,7 +43553,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7088; + this.state = 7093; this.colid(); } break; @@ -43542,7 +43568,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7093; + this.state = 7098; this.func_expr_common_subexpr(); } break; @@ -43564,22 +43590,22 @@ export class PostgreSqlParser extends SQLParserBase { } public func_expr_windowless(): Func_expr_windowlessContext { let localContext = new Func_expr_windowlessContext(this.context, this.state); - this.enterRule(localContext, 688, PostgreSqlParser.RULE_func_expr_windowless); + this.enterRule(localContext, 690, PostgreSqlParser.RULE_func_expr_windowless); try { - this.state = 7098; + this.state = 7103; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7096; + this.state = 7101; this.func_application(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7097; + this.state = 7102; this.func_expr_common_subexpr(); } break; @@ -43601,31 +43627,31 @@ export class PostgreSqlParser extends SQLParserBase { } public func_expr_common_subexpr(): Func_expr_common_subexprContext { let localContext = new Func_expr_common_subexprContext(this.context, this.state); - this.enterRule(localContext, 690, PostgreSqlParser.RULE_func_expr_common_subexpr); + this.enterRule(localContext, 692, PostgreSqlParser.RULE_func_expr_common_subexpr); let _la: number; try { - this.state = 7274; + this.state = 7279; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 1); { - this.state = 7100; + this.state = 7105; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 7101; + this.state = 7106; this.match(PostgreSqlParser.KW_FOR); - this.state = 7102; + this.state = 7107; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7103; + this.state = 7108; this.expression(); - this.state = 7104; + this.state = 7109; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 7106; + this.state = 7111; this.match(PostgreSqlParser.KW_CURRENT_DATE); } break; @@ -43635,7 +43661,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 7107; + this.state = 7112; _la = this.tokenStream.LA(1); if(!(((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 100663299) !== 0))) { this.errorHandler.recoverInline(this); @@ -43644,12 +43670,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7109; + this.state = 7114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: { - this.state = 7108; + this.state = 7113; this.opt_float(); } break; @@ -43659,42 +43685,42 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 4); { - this.state = 7111; + this.state = 7116; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case PostgreSqlParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 5); { - this.state = 7112; + this.state = 7117; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case PostgreSqlParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 6); { - this.state = 7113; + this.state = 7118; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case PostgreSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 7114; + this.state = 7119; this.match(PostgreSqlParser.KW_USER); } break; case PostgreSqlParser.KW_CURRENT_CATALOG: this.enterOuterAlt(localContext, 8); { - this.state = 7115; + this.state = 7120; this.match(PostgreSqlParser.KW_CURRENT_CATALOG); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: this.enterOuterAlt(localContext, 9); { - this.state = 7116; + this.state = 7121; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -43702,7 +43728,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TREAT: this.enterOuterAlt(localContext, 10); { - this.state = 7117; + this.state = 7122; _la = this.tokenStream.LA(1); if(!(_la === 41 || _la === 420)) { this.errorHandler.recoverInline(this); @@ -43711,162 +43737,162 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7118; + this.state = 7123; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7119; + this.state = 7124; this.expression(); - this.state = 7120; + this.state = 7125; this.match(PostgreSqlParser.KW_AS); - this.state = 7121; + this.state = 7126; this.typename(); - this.state = 7122; + this.state = 7127; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_EXTRACT: this.enterOuterAlt(localContext, 11); { - this.state = 7124; + this.state = 7129; this.match(PostgreSqlParser.KW_EXTRACT); - this.state = 7125; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7130; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 7126; + this.state = 7131; this.extract_arg(); - this.state = 7127; + this.state = 7132; this.match(PostgreSqlParser.KW_FROM); - this.state = 7128; + this.state = 7133; this.expression(); } } - this.state = 7132; + this.state = 7137; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NORMALIZE: this.enterOuterAlt(localContext, 12); { - this.state = 7133; + this.state = 7138; this.match(PostgreSqlParser.KW_NORMALIZE); - this.state = 7134; + this.state = 7139; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7135; + this.state = 7140; this.expression(); - this.state = 7138; + this.state = 7143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7136; + this.state = 7141; this.match(PostgreSqlParser.COMMA); - this.state = 7137; + this.state = 7142; this.unicode_normal_form(); } } - this.state = 7140; + this.state = 7145; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_OVERLAY: this.enterOuterAlt(localContext, 13); { - this.state = 7142; + this.state = 7147; this.match(PostgreSqlParser.KW_OVERLAY); - this.state = 7143; + this.state = 7148; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 7144; + this.state = 7149; this.expression(); - this.state = 7145; + this.state = 7150; this.match(PostgreSqlParser.KW_PLACING); - this.state = 7146; + this.state = 7151; this.expression(); - this.state = 7147; + this.state = 7152; this.match(PostgreSqlParser.KW_FROM); - this.state = 7148; + this.state = 7153; this.expression(); - this.state = 7151; + this.state = 7156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7149; + this.state = 7154; this.match(PostgreSqlParser.KW_FOR); - this.state = 7150; + this.state = 7155; this.expression(); } } } - this.state = 7153; + this.state = 7158; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_POSITION: this.enterOuterAlt(localContext, 14); { - this.state = 7155; + this.state = 7160; this.match(PostgreSqlParser.KW_POSITION); - this.state = 7156; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7161; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763019) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7157; + this.state = 7162; this.primaryExpression(0); - this.state = 7158; + this.state = 7163; this.match(PostgreSqlParser.KW_IN); - this.state = 7159; + this.state = 7164; this.primaryExpression(0); } } - this.state = 7163; + this.state = 7168; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 15); { - this.state = 7164; + this.state = 7169; this.match(PostgreSqlParser.KW_SUBSTRING); - this.state = 7165; + this.state = 7170; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7167; + this.state = 7172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7166; + this.state = 7171; this.substr_list(); } } - this.state = 7169; + this.state = 7174; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_TRIM: this.enterOuterAlt(localContext, 16); { - this.state = 7170; + this.state = 7175; this.match(PostgreSqlParser.KW_TRIM); - this.state = 7171; + this.state = 7176; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7173; + this.state = 7178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 73 || _la === 95) { { - this.state = 7172; + this.state = 7177; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 73 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -43879,47 +43905,47 @@ export class PostgreSqlParser extends SQLParserBase { } { - this.state = 7179; + this.state = 7184; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { case 1: { - this.state = 7176; + this.state = 7181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7175; + this.state = 7180; this.expression(); } } - this.state = 7178; + this.state = 7183; this.match(PostgreSqlParser.KW_FROM); } break; } - this.state = 7181; + this.state = 7186; this.expr_list(); } - this.state = 7183; + this.state = 7188; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NULLIF: this.enterOuterAlt(localContext, 17); { - this.state = 7185; + this.state = 7190; this.match(PostgreSqlParser.KW_NULLIF); - this.state = 7186; + this.state = 7191; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7187; + this.state = 7192; this.expression(); - this.state = 7188; + this.state = 7193; this.match(PostgreSqlParser.COMMA); - this.state = 7189; + this.state = 7194; this.expression(); - this.state = 7190; + this.state = 7195; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -43929,7 +43955,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_XMLCONCAT: this.enterOuterAlt(localContext, 18); { - this.state = 7192; + this.state = 7197; _la = this.tokenStream.LA(1); if(!(((((_la - 393)) & ~0x1F) === 0 && ((1 << (_la - 393)) & 2113) !== 0) || _la === 425)) { this.errorHandler.recoverInline(this); @@ -43938,48 +43964,48 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7193; + this.state = 7198; this.execute_param_clause(); } break; case PostgreSqlParser.KW_XMLELEMENT: this.enterOuterAlt(localContext, 19); { - this.state = 7194; + this.state = 7199; this.match(PostgreSqlParser.KW_XMLELEMENT); - this.state = 7195; + this.state = 7200; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7196; + this.state = 7201; this.match(PostgreSqlParser.KW_NAME); - this.state = 7197; + this.state = 7202; this.collabel(); - this.state = 7207; + this.state = 7212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7198; + this.state = 7203; this.match(PostgreSqlParser.COMMA); - this.state = 7205; + this.state = 7210; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 985, this.context) ) { case 1: { { - this.state = 7199; + this.state = 7204; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); - this.state = 7200; + this.state = 7205; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7201; + this.state = 7206; this.xml_attribute_list(); - this.state = 7202; + this.state = 7207; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; case 2: { - this.state = 7204; + this.state = 7209; this.expr_list(); } break; @@ -43987,55 +44013,55 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7209; + this.state = 7214; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLEXISTS: this.enterOuterAlt(localContext, 20); { - this.state = 7211; + this.state = 7216; this.match(PostgreSqlParser.KW_XMLEXISTS); - this.state = 7212; + this.state = 7217; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7213; + this.state = 7218; this.primaryExpression(0); - this.state = 7214; + this.state = 7219; this.xmlexists_argument(); - this.state = 7215; + this.state = 7220; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLFOREST: this.enterOuterAlt(localContext, 21); { - this.state = 7217; + this.state = 7222; this.match(PostgreSqlParser.KW_XMLFOREST); - this.state = 7218; + this.state = 7223; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7219; + this.state = 7224; this.xml_attribute_list(); - this.state = 7220; + this.state = 7225; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPARSE: this.enterOuterAlt(localContext, 22); { - this.state = 7222; + this.state = 7227; this.match(PostgreSqlParser.KW_XMLPARSE); - this.state = 7223; + this.state = 7228; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7224; + this.state = 7229; this.document_or_content(); - this.state = 7225; + this.state = 7230; this.expression(); - this.state = 7228; + this.state = 7233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 347) { { - this.state = 7226; + this.state = 7231; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -44044,111 +44070,111 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7227; + this.state = 7232; this.match(PostgreSqlParser.KW_WHITESPACE); } } - this.state = 7230; + this.state = 7235; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPI: this.enterOuterAlt(localContext, 23); { - this.state = 7232; + this.state = 7237; this.match(PostgreSqlParser.KW_XMLPI); - this.state = 7233; + this.state = 7238; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7234; + this.state = 7239; this.match(PostgreSqlParser.KW_NAME); - this.state = 7235; + this.state = 7240; this.collabel(); - this.state = 7238; + this.state = 7243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7236; + this.state = 7241; this.match(PostgreSqlParser.COMMA); - this.state = 7237; + this.state = 7242; this.expression(); } } - this.state = 7240; + this.state = 7245; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLROOT: this.enterOuterAlt(localContext, 24); { - this.state = 7242; + this.state = 7247; this.match(PostgreSqlParser.KW_XMLROOT); - this.state = 7243; + this.state = 7248; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7244; + this.state = 7249; this.match(PostgreSqlParser.KW_XML); - this.state = 7245; + this.state = 7250; this.expression(); - this.state = 7246; + this.state = 7251; this.match(PostgreSqlParser.COMMA); - this.state = 7247; + this.state = 7252; this.match(PostgreSqlParser.KW_VERSION); - this.state = 7251; + this.state = 7256; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 989, this.context) ) { case 1: { { - this.state = 7248; + this.state = 7253; this.match(PostgreSqlParser.KW_NO); - this.state = 7249; + this.state = 7254; this.match(PostgreSqlParser.KW_VALUE); } } break; case 2: { - this.state = 7250; + this.state = 7255; this.expression(); } break; } - this.state = 7262; + this.state = 7267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7253; + this.state = 7258; this.match(PostgreSqlParser.COMMA); - this.state = 7254; + this.state = 7259; this.match(PostgreSqlParser.KW_STANDALONE); - this.state = 7260; + this.state = 7265; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_VALUE: { { - this.state = 7256; + this.state = 7261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7255; + this.state = 7260; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7258; + this.state = 7263; this.match(PostgreSqlParser.KW_VALUE); } } break; case PostgreSqlParser.KW_YES: { - this.state = 7259; + this.state = 7264; this.match(PostgreSqlParser.KW_YES); } break; @@ -44158,26 +44184,26 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7264; + this.state = 7269; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLSERIALIZE: this.enterOuterAlt(localContext, 25); { - this.state = 7266; + this.state = 7271; this.match(PostgreSqlParser.KW_XMLSERIALIZE); - this.state = 7267; + this.state = 7272; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7268; + this.state = 7273; this.document_or_content(); - this.state = 7269; + this.state = 7274; this.expression(); - this.state = 7270; + this.state = 7275; this.match(PostgreSqlParser.KW_AS); - this.state = 7271; + this.state = 7276; this.simpletypename(); - this.state = 7272; + this.state = 7277; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -44201,26 +44227,26 @@ export class PostgreSqlParser extends SQLParserBase { } public xml_attribute_list(): Xml_attribute_listContext { let localContext = new Xml_attribute_listContext(this.context, this.state); - this.enterRule(localContext, 692, PostgreSqlParser.RULE_xml_attribute_list); + this.enterRule(localContext, 694, PostgreSqlParser.RULE_xml_attribute_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7276; - this.xml_attribute_el(); this.state = 7281; + this.xml_attribute_el(); + this.state = 7286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7277; + this.state = 7282; this.match(PostgreSqlParser.COMMA); - this.state = 7278; + this.state = 7283; this.xml_attribute_el(); } } - this.state = 7283; + this.state = 7288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44242,21 +44268,21 @@ export class PostgreSqlParser extends SQLParserBase { } public xml_attribute_el(): Xml_attribute_elContext { let localContext = new Xml_attribute_elContext(this.context, this.state); - this.enterRule(localContext, 694, PostgreSqlParser.RULE_xml_attribute_el); + this.enterRule(localContext, 696, PostgreSqlParser.RULE_xml_attribute_el); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7284; + this.state = 7289; this.expression(); - this.state = 7287; + this.state = 7292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7285; + this.state = 7290; this.match(PostgreSqlParser.KW_AS); - this.state = 7286; + this.state = 7291; this.collabel(); } } @@ -44279,12 +44305,12 @@ export class PostgreSqlParser extends SQLParserBase { } public document_or_content(): Document_or_contentContext { let localContext = new Document_or_contentContext(this.context, this.state); - this.enterRule(localContext, 696, PostgreSqlParser.RULE_document_or_content); + this.enterRule(localContext, 698, PostgreSqlParser.RULE_document_or_content); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7289; + this.state = 7294; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -44311,31 +44337,31 @@ export class PostgreSqlParser extends SQLParserBase { } public xmlexists_argument(): Xmlexists_argumentContext { let localContext = new Xmlexists_argumentContext(this.context, this.state); - this.enterRule(localContext, 698, PostgreSqlParser.RULE_xmlexists_argument); + this.enterRule(localContext, 700, PostgreSqlParser.RULE_xmlexists_argument); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7291; + this.state = 7296; this.match(PostgreSqlParser.KW_PASSING); - this.state = 7293; + this.state = 7298; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { case 1: { - this.state = 7292; + this.state = 7297; this.xml_passing_mech(); } break; } - this.state = 7295; + this.state = 7300; this.primaryExpression(0); - this.state = 7297; + this.state = 7302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 7296; + this.state = 7301; this.xml_passing_mech(); } } @@ -44358,14 +44384,14 @@ export class PostgreSqlParser extends SQLParserBase { } public xml_passing_mech(): Xml_passing_mechContext { let localContext = new Xml_passing_mechContext(this.context, this.state); - this.enterRule(localContext, 700, PostgreSqlParser.RULE_xml_passing_mech); + this.enterRule(localContext, 702, PostgreSqlParser.RULE_xml_passing_mech); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7299; + this.state = 7304; this.match(PostgreSqlParser.KW_BY); - this.state = 7300; + this.state = 7305; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -44392,30 +44418,30 @@ export class PostgreSqlParser extends SQLParserBase { } public window_clause(): Window_clauseContext { let localContext = new Window_clauseContext(this.context, this.state); - this.enterRule(localContext, 702, PostgreSqlParser.RULE_window_clause); + this.enterRule(localContext, 704, PostgreSqlParser.RULE_window_clause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7302; + this.state = 7307; this.match(PostgreSqlParser.KW_WINDOW); - this.state = 7303; - this.window_definition(); this.state = 7308; + this.window_definition(); + this.state = 7313; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 998, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7304; + this.state = 7309; this.match(PostgreSqlParser.COMMA); - this.state = 7305; + this.state = 7310; this.window_definition(); } } } - this.state = 7310; + this.state = 7315; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 998, this.context); } @@ -44437,15 +44463,15 @@ export class PostgreSqlParser extends SQLParserBase { } public window_definition(): Window_definitionContext { let localContext = new Window_definitionContext(this.context, this.state); - this.enterRule(localContext, 704, PostgreSqlParser.RULE_window_definition); + this.enterRule(localContext, 706, PostgreSqlParser.RULE_window_definition); try { this.enterOuterAlt(localContext, 1); { - this.state = 7311; + this.state = 7316; this.colid(); - this.state = 7312; + this.state = 7317; this.match(PostgreSqlParser.KW_AS); - this.state = 7313; + this.state = 7318; this.window_specification(); } } @@ -44465,18 +44491,18 @@ export class PostgreSqlParser extends SQLParserBase { } public over_clause(): Over_clauseContext { let localContext = new Over_clauseContext(this.context, this.state); - this.enterRule(localContext, 706, PostgreSqlParser.RULE_over_clause); + this.enterRule(localContext, 708, PostgreSqlParser.RULE_over_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7315; + this.state = 7320; this.match(PostgreSqlParser.KW_OVER); - this.state = 7318; + this.state = 7323; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7316; + this.state = 7321; this.window_specification(); } break; @@ -44875,7 +44901,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7317; + this.state = 7322; this.colid(); } break; @@ -44900,58 +44926,58 @@ export class PostgreSqlParser extends SQLParserBase { } public window_specification(): Window_specificationContext { let localContext = new Window_specificationContext(this.context, this.state); - this.enterRule(localContext, 708, PostgreSqlParser.RULE_window_specification); + this.enterRule(localContext, 710, PostgreSqlParser.RULE_window_specification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7320; + this.state = 7325; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7322; + this.state = 7327; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { case 1: { - this.state = 7321; + this.state = 7326; this.colid(); } break; } - this.state = 7327; + this.state = 7332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 7324; + this.state = 7329; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 7325; + this.state = 7330; this.match(PostgreSqlParser.KW_BY); - this.state = 7326; + this.state = 7331; this.expr_list(); } } - this.state = 7330; + this.state = 7335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7329; + this.state = 7334; this.sort_clause(); } } - this.state = 7333; + this.state = 7338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 299 || _la === 320 || _la === 481) { { - this.state = 7332; + this.state = 7337; this.opt_frame_clause(); } } - this.state = 7335; + this.state = 7340; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -44971,12 +44997,12 @@ export class PostgreSqlParser extends SQLParserBase { } public opt_frame_clause(): Opt_frame_clauseContext { let localContext = new Opt_frame_clauseContext(this.context, this.state); - this.enterRule(localContext, 710, PostgreSqlParser.RULE_opt_frame_clause); + this.enterRule(localContext, 712, PostgreSqlParser.RULE_opt_frame_clause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7337; + this.state = 7342; _la = this.tokenStream.LA(1); if(!(_la === 299 || _la === 320 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -44986,58 +45012,58 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 7342; + this.state = 7347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { case 1: { - this.state = 7338; + this.state = 7343; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 7339; + this.state = 7344; this.frame_bound(); - this.state = 7340; + this.state = 7345; this.match(PostgreSqlParser.KW_AND); } break; } - this.state = 7344; + this.state = 7349; this.frame_bound(); } - this.state = 7355; + this.state = 7360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 7346; + this.state = 7351; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 7353; + this.state = 7358; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT: { - this.state = 7347; + this.state = 7352; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7348; + this.state = 7353; this.match(PostgreSqlParser.KW_ROW); } break; case PostgreSqlParser.KW_GROUP: { - this.state = 7349; + this.state = 7354; this.match(PostgreSqlParser.KW_GROUP); } break; case PostgreSqlParser.KW_TIES: { - this.state = 7350; + this.state = 7355; this.match(PostgreSqlParser.KW_TIES); } break; case PostgreSqlParser.KW_NO: { - this.state = 7351; + this.state = 7356; this.match(PostgreSqlParser.KW_NO); - this.state = 7352; + this.state = 7357; this.match(PostgreSqlParser.KW_OTHERS); } break; @@ -45065,32 +45091,32 @@ export class PostgreSqlParser extends SQLParserBase { } public frame_bound(): Frame_boundContext { let localContext = new Frame_boundContext(this.context, this.state); - this.enterRule(localContext, 712, PostgreSqlParser.RULE_frame_bound); + this.enterRule(localContext, 714, PostgreSqlParser.RULE_frame_bound); let _la: number; try { - this.state = 7364; + this.state = 7369; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7359; + this.state = 7364; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { case 1: { - this.state = 7357; + this.state = 7362; this.match(PostgreSqlParser.KW_UNBOUNDED); } break; case 2: { - this.state = 7358; + this.state = 7363; this.expression(); } break; } - this.state = 7361; + this.state = 7366; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -45104,9 +45130,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7362; + this.state = 7367; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7363; + this.state = 7368; this.match(PostgreSqlParser.KW_ROW); } break; @@ -45128,30 +45154,30 @@ export class PostgreSqlParser extends SQLParserBase { } public row(): RowContext { let localContext = new RowContext(this.context, this.state); - this.enterRule(localContext, 714, PostgreSqlParser.RULE_row); + this.enterRule(localContext, 716, PostgreSqlParser.RULE_row); try { - this.state = 7373; + this.state = 7378; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ROW: this.enterOuterAlt(localContext, 1); { - this.state = 7366; + this.state = 7371; this.explicit_row(); } break; case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 7367; + this.state = 7372; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7368; + this.state = 7373; this.expr_list(); - this.state = 7369; + this.state = 7374; this.match(PostgreSqlParser.COMMA); - this.state = 7370; + this.state = 7375; this.expression(); - this.state = 7371; + this.state = 7376; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45175,26 +45201,26 @@ export class PostgreSqlParser extends SQLParserBase { } public explicit_row(): Explicit_rowContext { let localContext = new Explicit_rowContext(this.context, this.state); - this.enterRule(localContext, 716, PostgreSqlParser.RULE_explicit_row); + this.enterRule(localContext, 718, PostgreSqlParser.RULE_explicit_row); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7375; + this.state = 7380; this.match(PostgreSqlParser.KW_ROW); - this.state = 7376; + this.state = 7381; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7378; + this.state = 7383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7377; + this.state = 7382; this.expr_list(); } } - this.state = 7380; + this.state = 7385; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45214,12 +45240,12 @@ export class PostgreSqlParser extends SQLParserBase { } public sub_type(): Sub_typeContext { let localContext = new Sub_typeContext(this.context, this.state); - this.enterRule(localContext, 718, PostgreSqlParser.RULE_sub_type); + this.enterRule(localContext, 720, PostgreSqlParser.RULE_sub_type); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7382; + this.state = 7387; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 34 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -45246,15 +45272,15 @@ export class PostgreSqlParser extends SQLParserBase { } public all_op(): All_opContext { let localContext = new All_opContext(this.context, this.state); - this.enterRule(localContext, 720, PostgreSqlParser.RULE_all_op); + this.enterRule(localContext, 722, PostgreSqlParser.RULE_all_op); try { - this.state = 7386; + this.state = 7391; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7384; + this.state = 7389; this.match(PostgreSqlParser.Operator); } break; @@ -45272,7 +45298,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PERCENT: this.enterOuterAlt(localContext, 2); { - this.state = 7385; + this.state = 7390; this.mathop(); } break; @@ -45296,12 +45322,12 @@ export class PostgreSqlParser extends SQLParserBase { } public mathop(): MathopContext { let localContext = new MathopContext(this.context, this.state); - this.enterRule(localContext, 722, PostgreSqlParser.RULE_mathop); + this.enterRule(localContext, 724, PostgreSqlParser.RULE_mathop); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7388; + this.state = 7393; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { this.errorHandler.recoverInline(this); @@ -45328,28 +45354,28 @@ export class PostgreSqlParser extends SQLParserBase { } public qual_op(): Qual_opContext { let localContext = new Qual_opContext(this.context, this.state); - this.enterRule(localContext, 724, PostgreSqlParser.RULE_qual_op); + this.enterRule(localContext, 726, PostgreSqlParser.RULE_qual_op); try { - this.state = 7396; + this.state = 7401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7390; + this.state = 7395; this.match(PostgreSqlParser.Operator); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7391; + this.state = 7396; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7392; + this.state = 7397; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7393; + this.state = 7398; this.any_operator(); - this.state = 7394; + this.state = 7399; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45373,9 +45399,9 @@ export class PostgreSqlParser extends SQLParserBase { } public qual_all_op(): Qual_all_opContext { let localContext = new Qual_all_opContext(this.context, this.state); - this.enterRule(localContext, 726, PostgreSqlParser.RULE_qual_all_op); + this.enterRule(localContext, 728, PostgreSqlParser.RULE_qual_all_op); try { - this.state = 7404; + this.state = 7409; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45393,20 +45419,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7398; + this.state = 7403; this.all_op(); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7399; + this.state = 7404; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7400; + this.state = 7405; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7401; + this.state = 7406; this.any_operator(); - this.state = 7402; + this.state = 7407; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -45430,10 +45456,10 @@ export class PostgreSqlParser extends SQLParserBase { } public subquery_Op(): Subquery_OpContext { let localContext = new Subquery_OpContext(this.context, this.state); - this.enterRule(localContext, 728, PostgreSqlParser.RULE_subquery_Op); + this.enterRule(localContext, 730, PostgreSqlParser.RULE_subquery_Op); let _la: number; try { - this.state = 7411; + this.state = 7416; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -45452,7 +45478,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 7406; + this.state = 7411; this.qual_all_op(); } break; @@ -45461,17 +45487,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 7408; + this.state = 7413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7407; + this.state = 7412; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7410; + this.state = 7415; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 120)) { this.errorHandler.recoverInline(this); @@ -45502,28 +45528,28 @@ export class PostgreSqlParser extends SQLParserBase { } public expr_list(): Expr_listContext { let localContext = new Expr_listContext(this.context, this.state); - this.enterRule(localContext, 730, PostgreSqlParser.RULE_expr_list); + this.enterRule(localContext, 732, PostgreSqlParser.RULE_expr_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7413; - this.expression(); this.state = 7418; + this.expression(); + this.state = 7423; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7414; + this.state = 7419; this.match(PostgreSqlParser.COMMA); - this.state = 7415; + this.state = 7420; this.expression(); } } } - this.state = 7420; + this.state = 7425; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context); } @@ -45545,20 +45571,20 @@ export class PostgreSqlParser extends SQLParserBase { } public column_expr(): Column_exprContext { let localContext = new Column_exprContext(this.context, this.state); - this.enterRule(localContext, 732, PostgreSqlParser.RULE_column_expr); + this.enterRule(localContext, 734, PostgreSqlParser.RULE_column_expr); try { - this.state = 7426; + this.state = 7431; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 7421; + this.state = 7426; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7422; + this.state = 7427; this.expression(); - this.state = 7423; + this.state = 7428; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -45566,7 +45592,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7425; + this.state = 7430; this.column_name(); } break; @@ -45588,22 +45614,24 @@ export class PostgreSqlParser extends SQLParserBase { } public column_expr_noparen(): Column_expr_noparenContext { let localContext = new Column_expr_noparenContext(this.context, this.state); - this.enterRule(localContext, 734, PostgreSqlParser.RULE_column_expr_noparen); + this.enterRule(localContext, 736, PostgreSqlParser.RULE_column_expr_noparen); try { - this.state = 7430; + this.state = 7435; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { case 1: + localContext = new SelectExpressionColumnNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7428; + this.state = 7433; this.expression(); } break; case 2: + localContext = new SelectLiteralColumnNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7429; + this.state = 7434; this.column_name(); } break; @@ -45625,28 +45653,28 @@ export class PostgreSqlParser extends SQLParserBase { } public func_arg_list(): Func_arg_listContext { let localContext = new Func_arg_listContext(this.context, this.state); - this.enterRule(localContext, 736, PostgreSqlParser.RULE_func_arg_list); + this.enterRule(localContext, 738, PostgreSqlParser.RULE_func_arg_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7432; - this.func_arg_expr(); this.state = 7437; + this.func_arg_expr(); + this.state = 7442; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7433; + this.state = 7438; this.match(PostgreSqlParser.COMMA); - this.state = 7434; + this.state = 7439; this.func_arg_expr(); } } } - this.state = 7439; + this.state = 7444; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context); } @@ -45668,37 +45696,37 @@ export class PostgreSqlParser extends SQLParserBase { } public func_arg_expr(): Func_arg_exprContext { let localContext = new Func_arg_exprContext(this.context, this.state); - this.enterRule(localContext, 738, PostgreSqlParser.RULE_func_arg_expr); + this.enterRule(localContext, 740, PostgreSqlParser.RULE_func_arg_expr); let _la: number; try { - this.state = 7447; + this.state = 7452; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7440; + this.state = 7445; this.column_name(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7441; + this.state = 7446; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7442; + this.state = 7447; this.type_function_name(); - this.state = 7445; + this.state = 7450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 22) { { - this.state = 7443; + this.state = 7448; _la = this.tokenStream.LA(1); if(!(_la === 20 || _la === 22)) { this.errorHandler.recoverInline(this); @@ -45707,7 +45735,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7444; + this.state = 7449; this.expression(); } } @@ -45732,14 +45760,14 @@ export class PostgreSqlParser extends SQLParserBase { } public array_expr(): Array_exprContext { let localContext = new Array_exprContext(this.context, this.state); - this.enterRule(localContext, 740, PostgreSqlParser.RULE_array_expr); + this.enterRule(localContext, 742, PostgreSqlParser.RULE_array_expr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7449; + this.state = 7454; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7459; + this.state = 7464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -46185,28 +46213,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7450; + this.state = 7455; this.expr_list(); } break; case PostgreSqlParser.OPEN_BRACKET: { { - this.state = 7451; - this.array_expr(); this.state = 7456; + this.array_expr(); + this.state = 7461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7452; + this.state = 7457; this.match(PostgreSqlParser.COMMA); - this.state = 7453; + this.state = 7458; this.array_expr(); } } - this.state = 7458; + this.state = 7463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46218,7 +46246,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 7461; + this.state = 7466; this.match(PostgreSqlParser.CLOSE_BRACKET); } } @@ -46238,64 +46266,64 @@ export class PostgreSqlParser extends SQLParserBase { } public extract_arg(): Extract_argContext { let localContext = new Extract_argContext(this.context, this.state); - this.enterRule(localContext, 742, PostgreSqlParser.RULE_extract_arg); + this.enterRule(localContext, 744, PostgreSqlParser.RULE_extract_arg); try { - this.state = 7471; + this.state = 7476; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7463; + this.state = 7468; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7464; + this.state = 7469; this.match(PostgreSqlParser.KW_YEAR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7465; + this.state = 7470; this.match(PostgreSqlParser.KW_MONTH); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7466; + this.state = 7471; this.match(PostgreSqlParser.KW_DAY); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7467; + this.state = 7472; this.match(PostgreSqlParser.KW_HOUR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7468; + this.state = 7473; this.match(PostgreSqlParser.KW_MINUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7469; + this.state = 7474; this.match(PostgreSqlParser.KW_SECOND); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7470; + this.state = 7475; this.sconst(); } break; @@ -46317,12 +46345,12 @@ export class PostgreSqlParser extends SQLParserBase { } public unicode_normal_form(): Unicode_normal_formContext { let localContext = new Unicode_normal_formContext(this.context, this.state); - this.enterRule(localContext, 744, PostgreSqlParser.RULE_unicode_normal_form); + this.enterRule(localContext, 746, PostgreSqlParser.RULE_unicode_normal_form); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7473; + this.state = 7478; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -46349,29 +46377,29 @@ export class PostgreSqlParser extends SQLParserBase { } public substr_list(): Substr_listContext { let localContext = new Substr_listContext(this.context, this.state); - this.enterRule(localContext, 746, PostgreSqlParser.RULE_substr_list); + this.enterRule(localContext, 748, PostgreSqlParser.RULE_substr_list); let _la: number; try { - this.state = 7496; + this.state = 7501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7475; + this.state = 7480; this.expression(); - this.state = 7476; + this.state = 7481; this.match(PostgreSqlParser.KW_FROM); - this.state = 7477; + this.state = 7482; this.expression(); - this.state = 7480; + this.state = 7485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7478; + this.state = 7483; this.match(PostgreSqlParser.KW_FOR); - this.state = 7479; + this.state = 7484; this.expression(); } } @@ -46381,20 +46409,20 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7482; + this.state = 7487; this.expression(); - this.state = 7483; + this.state = 7488; this.match(PostgreSqlParser.KW_FOR); - this.state = 7484; + this.state = 7489; this.expression(); - this.state = 7487; + this.state = 7492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 7485; + this.state = 7490; this.match(PostgreSqlParser.KW_FROM); - this.state = 7486; + this.state = 7491; this.expression(); } } @@ -46404,22 +46432,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7489; + this.state = 7494; this.expression(); - this.state = 7490; + this.state = 7495; this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 7491; + this.state = 7496; this.expression(); - this.state = 7492; + this.state = 7497; this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 7493; + this.state = 7498; this.expression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7495; + this.state = 7500; this.expr_list(); } break; @@ -46441,17 +46469,17 @@ export class PostgreSqlParser extends SQLParserBase { } public when_clause(): When_clauseContext { let localContext = new When_clauseContext(this.context, this.state); - this.enterRule(localContext, 748, PostgreSqlParser.RULE_when_clause); + this.enterRule(localContext, 750, PostgreSqlParser.RULE_when_clause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7498; + this.state = 7503; this.match(PostgreSqlParser.KW_WHEN); - this.state = 7499; + this.state = 7504; this.expression(); - this.state = 7500; + this.state = 7505; this.match(PostgreSqlParser.KW_THEN); - this.state = 7501; + this.state = 7506; this.expression(); } } @@ -46471,18 +46499,18 @@ export class PostgreSqlParser extends SQLParserBase { } public indirection_el(): Indirection_elContext { let localContext = new Indirection_elContext(this.context, this.state); - this.enterRule(localContext, 750, PostgreSqlParser.RULE_indirection_el); + this.enterRule(localContext, 752, PostgreSqlParser.RULE_indirection_el); let _la: number; try { - this.state = 7520; + this.state = 7525; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.DOT: this.enterOuterAlt(localContext, 1); { - this.state = 7503; + this.state = 7508; this.match(PostgreSqlParser.DOT); - this.state = 7506; + this.state = 7511; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -46976,13 +47004,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7504; + this.state = 7509; this.collabel(); } break; case PostgreSqlParser.STAR: { - this.state = 7505; + this.state = 7510; this.match(PostgreSqlParser.STAR); } break; @@ -46994,37 +47022,37 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.OPEN_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 7508; + this.state = 7513; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7517; + this.state = 7522; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context) ) { case 1: { - this.state = 7509; + this.state = 7514; this.expression(); } break; case 2: { - this.state = 7511; + this.state = 7516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7510; + this.state = 7515; this.expression(); } } - this.state = 7513; + this.state = 7518; this.match(PostgreSqlParser.COLON); - this.state = 7515; + this.state = 7520; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7514; + this.state = 7519; this.expression(); } } @@ -47032,7 +47060,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 7519; + this.state = 7524; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -47056,12 +47084,12 @@ export class PostgreSqlParser extends SQLParserBase { } public indirection(): IndirectionContext { let localContext = new IndirectionContext(this.context, this.state); - this.enterRule(localContext, 752, PostgreSqlParser.RULE_indirection); + this.enterRule(localContext, 754, PostgreSqlParser.RULE_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7523; + this.state = 7528; this.errorHandler.sync(this); alternative = 1; do { @@ -47069,7 +47097,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 7522; + this.state = 7527; this.indirection_el(); } } @@ -47077,7 +47105,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7525; + this.state = 7530; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -47099,24 +47127,24 @@ export class PostgreSqlParser extends SQLParserBase { } public opt_indirection(): Opt_indirectionContext { let localContext = new Opt_indirectionContext(this.context, this.state); - this.enterRule(localContext, 754, PostgreSqlParser.RULE_opt_indirection); + this.enterRule(localContext, 756, PostgreSqlParser.RULE_opt_indirection); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7530; + this.state = 7535; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7527; + this.state = 7532; this.indirection_el(); } } } - this.state = 7532; + this.state = 7537; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context); } @@ -47138,28 +47166,28 @@ export class PostgreSqlParser extends SQLParserBase { } public target_list(): Target_listContext { let localContext = new Target_listContext(this.context, this.state); - this.enterRule(localContext, 756, PostgreSqlParser.RULE_target_list); + this.enterRule(localContext, 758, PostgreSqlParser.RULE_target_list); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7533; - this.target_el(); this.state = 7538; + this.target_el(); + this.state = 7543; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7534; + this.state = 7539; this.match(PostgreSqlParser.COMMA); - this.state = 7535; + this.state = 7540; this.target_el(); } } } - this.state = 7540; + this.state = 7545; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); } @@ -47181,35 +47209,46 @@ export class PostgreSqlParser extends SQLParserBase { } public target_el(): Target_elContext { let localContext = new Target_elContext(this.context, this.state); - this.enterRule(localContext, 758, PostgreSqlParser.RULE_target_el); + this.enterRule(localContext, 760, PostgreSqlParser.RULE_target_el); + let _la: number; try { - this.state = 7549; + this.state = 7555; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: - localContext = new Target_labelContext(localContext); + localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7541; - this.column_expr_noparen(); this.state = 7546; + this.tableAllColumns(); + } + break; + case 2: + localContext = new Target_labelContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 7547; + this.column_expr_noparen(); + this.state = 7553; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { case 1: { - this.state = 7542; - this.match(PostgreSqlParser.KW_AS); - this.state = 7543; - this.collabel(); + this.state = 7549; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36) { + { + this.state = 7548; + this.match(PostgreSqlParser.KW_AS); + } } - break; - case 2: - { - this.state = 7544; - this.identifier(); + + this.state = 7551; + (localContext as Target_labelContext)._alias = this.identifier(); } break; - case 3: + case 2: // tslint:disable-next-line:no-empty { } @@ -47217,14 +47256,47 @@ export class PostgreSqlParser extends SQLParserBase { } } break; - case 2: - localContext = new Target_starContext(localContext); - 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 tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 762, PostgreSqlParser.RULE_tableAllColumns); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7562; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 7548; - this.match(PostgreSqlParser.STAR); + { + this.state = 7557; + this.colid(); + this.state = 7558; + this.match(PostgreSqlParser.DOT); } - break; + } + this.state = 7564; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 7565; + this.match(PostgreSqlParser.STAR); } } catch (re) { @@ -47243,26 +47315,26 @@ export class PostgreSqlParser extends SQLParserBase { } public qualified_name_list(): Qualified_name_listContext { let localContext = new Qualified_name_listContext(this.context, this.state); - this.enterRule(localContext, 760, PostgreSqlParser.RULE_qualified_name_list); + this.enterRule(localContext, 764, PostgreSqlParser.RULE_qualified_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7551; + this.state = 7567; this.qualified_name(); - this.state = 7556; + this.state = 7572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7552; + this.state = 7568; this.match(PostgreSqlParser.COMMA); - this.state = 7553; + this.state = 7569; this.qualified_name(); } } - this.state = 7558; + this.state = 7574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47284,26 +47356,26 @@ export class PostgreSqlParser extends SQLParserBase { } public table_name_list(): Table_name_listContext { let localContext = new Table_name_listContext(this.context, this.state); - this.enterRule(localContext, 762, PostgreSqlParser.RULE_table_name_list); + this.enterRule(localContext, 766, PostgreSqlParser.RULE_table_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7559; + this.state = 7575; this.table_name(); - this.state = 7564; + this.state = 7580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7560; + this.state = 7576; this.match(PostgreSqlParser.COMMA); - this.state = 7561; + this.state = 7577; this.table_name(); } } - this.state = 7566; + this.state = 7582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47325,26 +47397,26 @@ export class PostgreSqlParser extends SQLParserBase { } public schema_name_list(): Schema_name_listContext { let localContext = new Schema_name_listContext(this.context, this.state); - this.enterRule(localContext, 764, PostgreSqlParser.RULE_schema_name_list); + this.enterRule(localContext, 768, PostgreSqlParser.RULE_schema_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7567; + this.state = 7583; this.schema_name(); - this.state = 7572; + this.state = 7588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7568; + this.state = 7584; this.match(PostgreSqlParser.COMMA); - this.state = 7569; + this.state = 7585; this.schema_name(); } } - this.state = 7574; + this.state = 7590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47366,26 +47438,26 @@ export class PostgreSqlParser extends SQLParserBase { } public database_nameList(): Database_nameListContext { let localContext = new Database_nameListContext(this.context, this.state); - this.enterRule(localContext, 766, PostgreSqlParser.RULE_database_nameList); + this.enterRule(localContext, 770, PostgreSqlParser.RULE_database_nameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7575; + this.state = 7591; this.database_name(); - this.state = 7580; + this.state = 7596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7576; + this.state = 7592; this.match(PostgreSqlParser.COMMA); - this.state = 7577; + this.state = 7593; this.database_name(); } } - this.state = 7582; + this.state = 7598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47407,12 +47479,12 @@ export class PostgreSqlParser extends SQLParserBase { } public tablespace_name_create(): Tablespace_name_createContext { let localContext = new Tablespace_name_createContext(this.context, this.state); - this.enterRule(localContext, 768, PostgreSqlParser.RULE_tablespace_name_create); + this.enterRule(localContext, 772, PostgreSqlParser.RULE_tablespace_name_create); try { localContext = new TablespaceNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7583; + this.state = 7599; this.qualified_name(); } } @@ -47432,12 +47504,12 @@ export class PostgreSqlParser extends SQLParserBase { } public tablespace_name(): Tablespace_nameContext { let localContext = new Tablespace_nameContext(this.context, this.state); - this.enterRule(localContext, 770, PostgreSqlParser.RULE_tablespace_name); + this.enterRule(localContext, 774, PostgreSqlParser.RULE_tablespace_name); try { localContext = new TablespaceNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7585; + this.state = 7601; this.qualified_name(); } } @@ -47457,12 +47529,12 @@ export class PostgreSqlParser extends SQLParserBase { } public table_name_create(): Table_name_createContext { let localContext = new Table_name_createContext(this.context, this.state); - this.enterRule(localContext, 772, PostgreSqlParser.RULE_table_name_create); + this.enterRule(localContext, 776, PostgreSqlParser.RULE_table_name_create); try { localContext = new TableNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7587; + this.state = 7603; this.qualified_name(); } } @@ -47482,12 +47554,12 @@ export class PostgreSqlParser extends SQLParserBase { } public table_name(): Table_nameContext { let localContext = new Table_nameContext(this.context, this.state); - this.enterRule(localContext, 774, PostgreSqlParser.RULE_table_name); + this.enterRule(localContext, 778, PostgreSqlParser.RULE_table_name); try { localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7589; + this.state = 7605; this.qualified_name(); } } @@ -47507,12 +47579,12 @@ export class PostgreSqlParser extends SQLParserBase { } public view_name_create(): View_name_createContext { let localContext = new View_name_createContext(this.context, this.state); - this.enterRule(localContext, 776, PostgreSqlParser.RULE_view_name_create); + this.enterRule(localContext, 780, PostgreSqlParser.RULE_view_name_create); try { localContext = new ViewNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7591; + this.state = 7607; this.qualified_name(); } } @@ -47532,12 +47604,12 @@ export class PostgreSqlParser extends SQLParserBase { } public view_name(): View_nameContext { let localContext = new View_nameContext(this.context, this.state); - this.enterRule(localContext, 778, PostgreSqlParser.RULE_view_name); + this.enterRule(localContext, 782, PostgreSqlParser.RULE_view_name); try { localContext = new ViewNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7593; + this.state = 7609; this.any_name(); } } @@ -47557,18 +47629,18 @@ export class PostgreSqlParser extends SQLParserBase { } public qualified_name(): Qualified_nameContext { let localContext = new Qualified_nameContext(this.context, this.state); - this.enterRule(localContext, 780, PostgreSqlParser.RULE_qualified_name); + this.enterRule(localContext, 784, PostgreSqlParser.RULE_qualified_name); try { this.enterOuterAlt(localContext, 1); { - this.state = 7595; + this.state = 7611; this.colid(); - this.state = 7597; + this.state = 7613; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7596; + this.state = 7612; this.indirection(); } break; @@ -47591,26 +47663,26 @@ export class PostgreSqlParser extends SQLParserBase { } public tablespace_name_list(): Tablespace_name_listContext { let localContext = new Tablespace_name_listContext(this.context, this.state); - this.enterRule(localContext, 782, PostgreSqlParser.RULE_tablespace_name_list); + this.enterRule(localContext, 786, PostgreSqlParser.RULE_tablespace_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7599; + this.state = 7615; this.tablespace_name(); - this.state = 7604; + this.state = 7620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7600; + this.state = 7616; this.match(PostgreSqlParser.COMMA); - this.state = 7601; + this.state = 7617; this.tablespace_name(); } } - this.state = 7606; + this.state = 7622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47632,26 +47704,26 @@ export class PostgreSqlParser extends SQLParserBase { } public name_list(): Name_listContext { let localContext = new Name_listContext(this.context, this.state); - this.enterRule(localContext, 784, PostgreSqlParser.RULE_name_list); + this.enterRule(localContext, 788, PostgreSqlParser.RULE_name_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7607; + this.state = 7623; this.colid(); - this.state = 7612; + this.state = 7628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7608; + this.state = 7624; this.match(PostgreSqlParser.COMMA); - this.state = 7609; + this.state = 7625; this.colid(); } } - this.state = 7614; + this.state = 7630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47673,12 +47745,12 @@ export class PostgreSqlParser extends SQLParserBase { } public database_name_create(): Database_name_createContext { let localContext = new Database_name_createContext(this.context, this.state); - this.enterRule(localContext, 786, PostgreSqlParser.RULE_database_name_create); + this.enterRule(localContext, 790, PostgreSqlParser.RULE_database_name_create); try { localContext = new DatabaseNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7615; + this.state = 7631; this.any_name(); } } @@ -47698,12 +47770,12 @@ export class PostgreSqlParser extends SQLParserBase { } public database_name(): Database_nameContext { let localContext = new Database_nameContext(this.context, this.state); - this.enterRule(localContext, 788, PostgreSqlParser.RULE_database_name); + this.enterRule(localContext, 792, PostgreSqlParser.RULE_database_name); try { localContext = new DatabaseNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7617; + this.state = 7633; this.any_name(); } } @@ -47723,12 +47795,12 @@ export class PostgreSqlParser extends SQLParserBase { } public schema_name(): Schema_nameContext { let localContext = new Schema_nameContext(this.context, this.state); - this.enterRule(localContext, 790, PostgreSqlParser.RULE_schema_name); + this.enterRule(localContext, 794, PostgreSqlParser.RULE_schema_name); try { localContext = new SchemaNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7619; + this.state = 7635; this.any_name(); } } @@ -47748,12 +47820,12 @@ export class PostgreSqlParser extends SQLParserBase { } public routine_name_create(): Routine_name_createContext { let localContext = new Routine_name_createContext(this.context, this.state); - this.enterRule(localContext, 792, PostgreSqlParser.RULE_routine_name_create); + this.enterRule(localContext, 796, PostgreSqlParser.RULE_routine_name_create); try { localContext = new RoutineNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7621; + this.state = 7637; this.colid(); } } @@ -47773,12 +47845,12 @@ export class PostgreSqlParser extends SQLParserBase { } public routine_name(): Routine_nameContext { let localContext = new Routine_nameContext(this.context, this.state); - this.enterRule(localContext, 794, PostgreSqlParser.RULE_routine_name); + this.enterRule(localContext, 798, PostgreSqlParser.RULE_routine_name); try { localContext = new RoutineNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7623; + this.state = 7639; this.colid(); } } @@ -47798,16 +47870,16 @@ export class PostgreSqlParser extends SQLParserBase { } public procedure_name(): Procedure_nameContext { let localContext = new Procedure_nameContext(this.context, this.state); - this.enterRule(localContext, 796, PostgreSqlParser.RULE_procedure_name); + this.enterRule(localContext, 800, PostgreSqlParser.RULE_procedure_name); try { - this.state = 7629; + this.state = 7645; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: localContext = new ProcedureNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7625; + this.state = 7641; this.type_function_name(); } break; @@ -47815,9 +47887,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ProcedureNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7626; + this.state = 7642; this.colid(); - this.state = 7627; + this.state = 7643; this.indirection(); } break; @@ -47839,16 +47911,16 @@ export class PostgreSqlParser extends SQLParserBase { } public procedure_name_create(): Procedure_name_createContext { let localContext = new Procedure_name_createContext(this.context, this.state); - this.enterRule(localContext, 798, PostgreSqlParser.RULE_procedure_name_create); + this.enterRule(localContext, 802, PostgreSqlParser.RULE_procedure_name_create); try { - this.state = 7635; + this.state = 7651; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: localContext = new ProcedureNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7631; + this.state = 7647; this.type_function_name(); } break; @@ -47856,9 +47928,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ProcedureNameCreateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7632; + this.state = 7648; this.colid(); - this.state = 7633; + this.state = 7649; this.indirection(); } break; @@ -47880,18 +47952,18 @@ export class PostgreSqlParser extends SQLParserBase { } public column_name(): Column_nameContext { let localContext = new Column_nameContext(this.context, this.state); - this.enterRule(localContext, 800, PostgreSqlParser.RULE_column_name); + this.enterRule(localContext, 804, PostgreSqlParser.RULE_column_name); try { - this.state = 7641; + this.state = 7657; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: localContext = new ColumnNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7637; + this.state = 7653; this.colid(); - this.state = 7638; + this.state = 7654; this.opt_indirection(); } break; @@ -47899,7 +47971,7 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ColumnNameMatchContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7640; + this.state = 7656; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -47923,12 +47995,12 @@ export class PostgreSqlParser extends SQLParserBase { } public column_name_create(): Column_name_createContext { let localContext = new Column_name_createContext(this.context, this.state); - this.enterRule(localContext, 802, PostgreSqlParser.RULE_column_name_create); + this.enterRule(localContext, 806, PostgreSqlParser.RULE_column_name_create); try { localContext = new ColumnNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7643; + this.state = 7659; this.colid(); } } @@ -47948,16 +48020,16 @@ export class PostgreSqlParser extends SQLParserBase { } public function_name_create(): Function_name_createContext { let localContext = new Function_name_createContext(this.context, this.state); - this.enterRule(localContext, 804, PostgreSqlParser.RULE_function_name_create); + this.enterRule(localContext, 808, PostgreSqlParser.RULE_function_name_create); try { - this.state = 7649; + this.state = 7665; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: localContext = new FunctionNameCreateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7645; + this.state = 7661; this.type_function_name(); } break; @@ -47965,9 +48037,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new FunctionNameCreateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7646; + this.state = 7662; this.colid(); - this.state = 7647; + this.state = 7663; this.indirection(); } break; @@ -47989,16 +48061,16 @@ export class PostgreSqlParser extends SQLParserBase { } public function_name(): Function_nameContext { let localContext = new Function_nameContext(this.context, this.state); - this.enterRule(localContext, 806, PostgreSqlParser.RULE_function_name); + this.enterRule(localContext, 810, PostgreSqlParser.RULE_function_name); try { - this.state = 7655; + this.state = 7671; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: localContext = new FunctionNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7651; + this.state = 7667; this.type_function_name(); } break; @@ -48006,9 +48078,9 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new FunctionNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7652; + this.state = 7668; this.colid(); - this.state = 7653; + this.state = 7669; this.indirection(); } break; @@ -48030,20 +48102,20 @@ export class PostgreSqlParser extends SQLParserBase { } public sconst(): SconstContext { let localContext = new SconstContext(this.context, this.state); - this.enterRule(localContext, 808, PostgreSqlParser.RULE_sconst); + this.enterRule(localContext, 812, PostgreSqlParser.RULE_sconst); try { this.enterOuterAlt(localContext, 1); { - this.state = 7657; + this.state = 7673; this.anysconst(); - this.state = 7660; + this.state = 7676; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7658; + this.state = 7674; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7659; + this.state = 7675; this.anysconst(); } break; @@ -48066,53 +48138,53 @@ export class PostgreSqlParser extends SQLParserBase { } public anysconst(): AnysconstContext { let localContext = new AnysconstContext(this.context, this.state); - this.enterRule(localContext, 810, PostgreSqlParser.RULE_anysconst); + this.enterRule(localContext, 814, PostgreSqlParser.RULE_anysconst); let _la: number; try { - this.state = 7673; + this.state = 7689; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7662; + this.state = 7678; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7663; + this.state = 7679; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 7664; + this.state = 7680; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 7668; + this.state = 7684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 588) { { { - this.state = 7665; + this.state = 7681; this.match(PostgreSqlParser.DollarText); } } - this.state = 7670; + this.state = 7686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7671; + this.state = 7687; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 7672; + this.state = 7688; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -48136,17 +48208,17 @@ export class PostgreSqlParser extends SQLParserBase { } public signediconst(): SignediconstContext { let localContext = new SignediconstContext(this.context, this.state); - this.enterRule(localContext, 812, PostgreSqlParser.RULE_signediconst); + this.enterRule(localContext, 816, PostgreSqlParser.RULE_signediconst); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7676; + this.state = 7692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 7675; + this.state = 7691; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -48158,7 +48230,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7678; + this.state = 7694; this.match(PostgreSqlParser.Integral); } } @@ -48178,43 +48250,43 @@ export class PostgreSqlParser extends SQLParserBase { } public rolespec(): RolespecContext { let localContext = new RolespecContext(this.context, this.state); - this.enterRule(localContext, 814, PostgreSqlParser.RULE_rolespec); + this.enterRule(localContext, 818, PostgreSqlParser.RULE_rolespec); try { - this.state = 7685; + this.state = 7701; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7680; + this.state = 7696; this.nonreservedword(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7681; + this.state = 7697; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7682; + this.state = 7698; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7683; + this.state = 7699; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7684; + this.state = 7700; this.match(PostgreSqlParser.KW_PUBLIC); } break; @@ -48236,26 +48308,26 @@ export class PostgreSqlParser extends SQLParserBase { } public role_list(): Role_listContext { let localContext = new Role_listContext(this.context, this.state); - this.enterRule(localContext, 816, PostgreSqlParser.RULE_role_list); + this.enterRule(localContext, 820, PostgreSqlParser.RULE_role_list); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7687; + this.state = 7703; this.rolespec(); - this.state = 7692; + this.state = 7708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7688; + this.state = 7704; this.match(PostgreSqlParser.COMMA); - this.state = 7689; + this.state = 7705; this.rolespec(); } } - this.state = 7694; + this.state = 7710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -48277,22 +48349,22 @@ export class PostgreSqlParser extends SQLParserBase { } public colid(): ColidContext { let localContext = new ColidContext(this.context, this.state); - this.enterRule(localContext, 818, PostgreSqlParser.RULE_colid); + this.enterRule(localContext, 822, PostgreSqlParser.RULE_colid); try { - this.state = 7697; + this.state = 7713; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7695; + this.state = 7711; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7696; + this.state = 7712; this.col_name_keyword(); } break; @@ -48314,22 +48386,22 @@ export class PostgreSqlParser extends SQLParserBase { } public type_function_name(): Type_function_nameContext { let localContext = new Type_function_nameContext(this.context, this.state); - this.enterRule(localContext, 820, PostgreSqlParser.RULE_type_function_name); + this.enterRule(localContext, 824, PostgreSqlParser.RULE_type_function_name); try { - this.state = 7701; + this.state = 7717; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7699; + this.state = 7715; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7700; + this.state = 7716; this.type_func_name_keyword(); } break; @@ -48351,29 +48423,29 @@ export class PostgreSqlParser extends SQLParserBase { } public nonreservedword(): NonreservedwordContext { let localContext = new NonreservedwordContext(this.context, this.state); - this.enterRule(localContext, 822, PostgreSqlParser.RULE_nonreservedword); + this.enterRule(localContext, 826, PostgreSqlParser.RULE_nonreservedword); try { - this.state = 7706; + this.state = 7722; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7703; + this.state = 7719; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7704; + this.state = 7720; this.col_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7705; + this.state = 7721; this.type_func_name_keyword(); } break; @@ -48395,36 +48467,36 @@ export class PostgreSqlParser extends SQLParserBase { } public collabel(): CollabelContext { let localContext = new CollabelContext(this.context, this.state); - this.enterRule(localContext, 824, PostgreSqlParser.RULE_collabel); + this.enterRule(localContext, 828, PostgreSqlParser.RULE_collabel); try { - this.state = 7712; + this.state = 7728; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7708; + this.state = 7724; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7709; + this.state = 7725; this.col_name_keyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7710; + this.state = 7726; this.type_func_name_keyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7711; + this.state = 7727; this.reserved_keyword(); } break; @@ -48446,24 +48518,24 @@ export class PostgreSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 826, PostgreSqlParser.RULE_identifier); + this.enterRule(localContext, 830, PostgreSqlParser.RULE_identifier); try { - this.state = 7725; + this.state = 7741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 7714; + this.state = 7730; this.match(PostgreSqlParser.Identifier); - this.state = 7717; + this.state = 7733; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: { - this.state = 7715; + this.state = 7731; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7716; + this.state = 7732; this.anysconst(); } break; @@ -48476,35 +48548,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7719; + this.state = 7735; this.sconst(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 7720; + this.state = 7736; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 7721; + this.state = 7737; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 7722; + this.state = 7738; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 7723; + this.state = 7739; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } break; @@ -48844,7 +48916,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 7); { - this.state = 7724; + this.state = 7740; this.unreserved_keyword(); } break; @@ -48868,12 +48940,12 @@ export class PostgreSqlParser extends SQLParserBase { } public unreserved_keyword(): Unreserved_keywordContext { let localContext = new Unreserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 828, PostgreSqlParser.RULE_unreserved_keyword); + this.enterRule(localContext, 832, PostgreSqlParser.RULE_unreserved_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7727; + this.state = 7743; _la = this.tokenStream.LA(1); if(!(_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 32767) !== 0) || ((((_la - 433)) & ~0x1F) === 0 && ((1 << (_la - 433)) & 4291821567) !== 0) || ((((_la - 465)) & ~0x1F) === 0 && ((1 << (_la - 465)) & 4278187359) !== 0) || ((((_la - 497)) & ~0x1F) === 0 && ((1 << (_la - 497)) & 146800319) !== 0) || _la === 547 || _la === 548)) { this.errorHandler.recoverInline(this); @@ -48900,365 +48972,365 @@ export class PostgreSqlParser extends SQLParserBase { } public col_name_keyword(): Col_name_keywordContext { let localContext = new Col_name_keywordContext(this.context, this.state); - this.enterRule(localContext, 830, PostgreSqlParser.RULE_col_name_keyword); + this.enterRule(localContext, 834, PostgreSqlParser.RULE_col_name_keyword); try { - this.state = 7780; + this.state = 7796; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7729; + this.state = 7745; this.match(PostgreSqlParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7730; + this.state = 7746; this.match(PostgreSqlParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7731; + this.state = 7747; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7732; + this.state = 7748; this.match(PostgreSqlParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7733; + this.state = 7749; this.match(PostgreSqlParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7734; + this.state = 7750; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7735; + this.state = 7751; this.match(PostgreSqlParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7736; + this.state = 7752; this.match(PostgreSqlParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7737; + this.state = 7753; this.match(PostgreSqlParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7738; + this.state = 7754; this.match(PostgreSqlParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7739; + this.state = 7755; this.match(PostgreSqlParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7740; + this.state = 7756; this.match(PostgreSqlParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7741; + this.state = 7757; this.match(PostgreSqlParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7742; + this.state = 7758; this.match(PostgreSqlParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7743; + this.state = 7759; this.match(PostgreSqlParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7744; + this.state = 7760; this.match(PostgreSqlParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7745; + this.state = 7761; this.match(PostgreSqlParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7746; + this.state = 7762; this.match(PostgreSqlParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7747; + this.state = 7763; this.match(PostgreSqlParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7748; + this.state = 7764; this.match(PostgreSqlParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7749; + this.state = 7765; this.match(PostgreSqlParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7750; + this.state = 7766; this.match(PostgreSqlParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7751; + this.state = 7767; this.match(PostgreSqlParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7752; + this.state = 7768; this.match(PostgreSqlParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7753; + this.state = 7769; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7754; + this.state = 7770; this.match(PostgreSqlParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7755; + this.state = 7771; this.match(PostgreSqlParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7756; + this.state = 7772; this.match(PostgreSqlParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7757; + this.state = 7773; this.match(PostgreSqlParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7758; + this.state = 7774; this.match(PostgreSqlParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7759; + this.state = 7775; this.match(PostgreSqlParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7760; + this.state = 7776; this.match(PostgreSqlParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7761; + this.state = 7777; this.match(PostgreSqlParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7762; + this.state = 7778; this.match(PostgreSqlParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7763; + this.state = 7779; this.match(PostgreSqlParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7764; + this.state = 7780; this.match(PostgreSqlParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7765; + this.state = 7781; this.match(PostgreSqlParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7766; + this.state = 7782; this.match(PostgreSqlParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7767; + this.state = 7783; this.match(PostgreSqlParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7768; + this.state = 7784; this.match(PostgreSqlParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7769; + this.state = 7785; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7770; + this.state = 7786; this.match(PostgreSqlParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7771; + this.state = 7787; this.match(PostgreSqlParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 7772; + this.state = 7788; this.match(PostgreSqlParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 7773; + this.state = 7789; this.match(PostgreSqlParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 7774; + this.state = 7790; this.match(PostgreSqlParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 7775; + this.state = 7791; this.match(PostgreSqlParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 7776; + this.state = 7792; this.match(PostgreSqlParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 7777; + this.state = 7793; this.match(PostgreSqlParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 7778; + this.state = 7794; this.match(PostgreSqlParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 7779; + this.state = 7795; this.match(PostgreSqlParser.KW_XMLTABLE); } break; @@ -49280,12 +49352,12 @@ export class PostgreSqlParser extends SQLParserBase { } public type_func_name_keyword(): Type_func_name_keywordContext { let localContext = new Type_func_name_keywordContext(this.context, this.state); - this.enterRule(localContext, 832, PostgreSqlParser.RULE_type_func_name_keyword); + this.enterRule(localContext, 836, PostgreSqlParser.RULE_type_func_name_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7782; + this.state = 7798; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -49312,12 +49384,12 @@ export class PostgreSqlParser extends SQLParserBase { } public reserved_keyword(): Reserved_keywordContext { let localContext = new Reserved_keywordContext(this.context, this.state); - this.enterRule(localContext, 834, PostgreSqlParser.RULE_reserved_keyword); + this.enterRule(localContext, 838, PostgreSqlParser.RULE_reserved_keyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7784; + this.state = 7800; _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); @@ -49344,60 +49416,60 @@ export class PostgreSqlParser extends SQLParserBase { } public pl_block(): Pl_blockContext { let localContext = new Pl_blockContext(this.context, this.state); - this.enterRule(localContext, 836, PostgreSqlParser.RULE_pl_block); + this.enterRule(localContext, 840, PostgreSqlParser.RULE_pl_block); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 7787; + this.state = 7803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 7786; + this.state = 7802; this.label_decl(); } } - this.state = 7799; + this.state = 7815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 7789; + this.state = 7805; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 7797; + this.state = 7813; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7793; + this.state = 7809; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 7793; + this.state = 7809; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: { - this.state = 7790; + this.state = 7806; this.decl_statement(); } break; case 2: { - this.state = 7791; + this.state = 7807; this.match(PostgreSqlParser.KW_DECLARE); } break; case 3: { - this.state = 7792; + this.state = 7808; this.label_decl(); } break; @@ -49407,9 +49479,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7795; + this.state = 7811; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -49418,42 +49490,42 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7801; + this.state = 7817; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 7805; + this.state = 7821; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7802; + this.state = 7818; this.proc_stmt(); } } } - this.state = 7807; + this.state = 7823; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context); } - this.state = 7809; + this.state = 7825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 7808; + this.state = 7824; this.exception_sect(); } } - this.state = 7811; + this.state = 7827; this.match(PostgreSqlParser.KW_END); - this.state = 7813; + this.state = 7829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 7812; + this.state = 7828; this.any_identifier(); } } @@ -49476,15 +49548,15 @@ export class PostgreSqlParser extends SQLParserBase { } public label_decl(): Label_declContext { let localContext = new Label_declContext(this.context, this.state); - this.enterRule(localContext, 838, PostgreSqlParser.RULE_label_decl); + this.enterRule(localContext, 842, PostgreSqlParser.RULE_label_decl); try { this.enterOuterAlt(localContext, 1); { - this.state = 7815; + this.state = 7831; this.match(PostgreSqlParser.LESS_LESS); - this.state = 7816; + this.state = 7832; this.any_identifier(); - this.state = 7817; + this.state = 7833; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -49504,28 +49576,28 @@ export class PostgreSqlParser extends SQLParserBase { } public decl_statement(): Decl_statementContext { let localContext = new Decl_statementContext(this.context, this.state); - this.enterRule(localContext, 840, PostgreSqlParser.RULE_decl_statement); + this.enterRule(localContext, 844, PostgreSqlParser.RULE_decl_statement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7819; + this.state = 7835; this.any_identifier(); - this.state = 7866; + this.state = 7882; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1081, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { case 1: { - this.state = 7820; + this.state = 7836; this.match(PostgreSqlParser.KW_ALIAS); - this.state = 7821; + this.state = 7837; this.match(PostgreSqlParser.KW_FOR); - this.state = 7824; + this.state = 7840; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: { - this.state = 7822; + this.state = 7838; this.match(PostgreSqlParser.PARAM); } break; @@ -49924,7 +49996,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7823; + this.state = 7839; this.colid(); } break; @@ -49935,65 +50007,65 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7827; + this.state = 7843; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { case 1: { - this.state = 7826; + this.state = 7842; this.match(PostgreSqlParser.KW_CONSTANT); } break; } - this.state = 7829; + this.state = 7845; this.typename(); - this.state = 7831; + this.state = 7847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 7830; + this.state = 7846; this.opt_collate_clause(); } } - this.state = 7835; + this.state = 7851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7833; + this.state = 7849; this.match(PostgreSqlParser.KW_NOT); - this.state = 7834; + this.state = 7850; this.match(PostgreSqlParser.KW_NULL); } } - this.state = 7842; + this.state = 7858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 20 || _la === 53) { { - this.state = 7839; + this.state = 7855; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: { - this.state = 7837; + this.state = 7853; this.assign_operator(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 7838; + this.state = 7854; this.match(PostgreSqlParser.KW_DEFAULT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7841; + this.state = 7857; this.sql_expression(); } } @@ -50002,59 +50074,59 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7848; + this.state = 7864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 7845; + this.state = 7861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7844; + this.state = 7860; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7847; + this.state = 7863; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 7850; + this.state = 7866; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 7862; + this.state = 7878; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7851; + this.state = 7867; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7852; + this.state = 7868; this.decl_cursor_arg(); - this.state = 7857; + this.state = 7873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7853; + this.state = 7869; this.match(PostgreSqlParser.COMMA); - this.state = 7854; + this.state = 7870; this.decl_cursor_arg(); } } - this.state = 7859; + this.state = 7875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7860; + this.state = 7876; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7864; + this.state = 7880; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -50063,12 +50135,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7865; + this.state = 7881; this.selectstmt(); } break; } - this.state = 7868; + this.state = 7884; this.match(PostgreSqlParser.SEMI); } } @@ -50088,13 +50160,13 @@ export class PostgreSqlParser extends SQLParserBase { } public decl_cursor_arg(): Decl_cursor_argContext { let localContext = new Decl_cursor_argContext(this.context, this.state); - this.enterRule(localContext, 842, PostgreSqlParser.RULE_decl_cursor_arg); + this.enterRule(localContext, 846, PostgreSqlParser.RULE_decl_cursor_arg); try { this.enterOuterAlt(localContext, 1); { - this.state = 7870; + this.state = 7886; this.any_identifier(); - this.state = 7871; + this.state = 7887; this.typename(); } } @@ -50114,12 +50186,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assign_operator(): Assign_operatorContext { let localContext = new Assign_operatorContext(this.context, this.state); - this.enterRule(localContext, 844, PostgreSqlParser.RULE_assign_operator); + this.enterRule(localContext, 848, PostgreSqlParser.RULE_assign_operator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7873; + this.state = 7889; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -50146,164 +50218,164 @@ export class PostgreSqlParser extends SQLParserBase { } public proc_stmt(): Proc_stmtContext { let localContext = new Proc_stmtContext(this.context, this.state); - this.enterRule(localContext, 846, PostgreSqlParser.RULE_proc_stmt); + this.enterRule(localContext, 850, PostgreSqlParser.RULE_proc_stmt); try { - this.state = 7899; + this.state = 7915; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1082, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7875; + this.state = 7891; this.pl_block(); - this.state = 7876; + this.state = 7892; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7878; + this.state = 7894; this.stmt_return(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7879; + this.state = 7895; this.stmt_raise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7880; + this.state = 7896; this.stmt_assign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7881; + this.state = 7897; this.stmt_if(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7882; + this.state = 7898; this.stmt_case(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7883; + this.state = 7899; this.stmt_loop_while_for(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7884; + this.state = 7900; this.stmt_foreach_a(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7885; + this.state = 7901; this.stmt_exit(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7886; + this.state = 7902; this.stmt_assert(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7887; + this.state = 7903; this.stmt_execsql(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7888; + this.state = 7904; this.stmt_dynexecute(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7889; + this.state = 7905; this.stmt_perform(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7890; + this.state = 7906; this.stmt_call(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7891; + this.state = 7907; this.stmt_getdiag(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7892; + this.state = 7908; this.stmt_open(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7893; + this.state = 7909; this.stmt_fetch(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7894; + this.state = 7910; this.stmt_move(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7895; + this.state = 7911; this.stmt_close(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7896; + this.state = 7912; this.stmt_null(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7897; + this.state = 7913; this.stmt_commit_or_rollback(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7898; + this.state = 7914; this.stmt_set(); } break; @@ -50325,15 +50397,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_perform(): Stmt_performContext { let localContext = new Stmt_performContext(this.context, this.state); - this.enterRule(localContext, 848, PostgreSqlParser.RULE_stmt_perform); + this.enterRule(localContext, 852, PostgreSqlParser.RULE_stmt_perform); try { this.enterOuterAlt(localContext, 1); { - this.state = 7901; + this.state = 7917; this.match(PostgreSqlParser.KW_PERFORM); - this.state = 7902; + this.state = 7918; this.sql_expression(); - this.state = 7903; + this.state = 7919; this.match(PostgreSqlParser.SEMI); } } @@ -50353,39 +50425,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_call(): Stmt_callContext { let localContext = new Stmt_callContext(this.context, this.state); - this.enterRule(localContext, 850, PostgreSqlParser.RULE_stmt_call); + this.enterRule(localContext, 854, PostgreSqlParser.RULE_stmt_call); let _la: number; try { - this.state = 7924; + this.state = 7940; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 7905; + this.state = 7921; this.match(PostgreSqlParser.KW_CALL); - this.state = 7906; + this.state = 7922; this.any_identifier(); - this.state = 7913; + this.state = 7929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: { - this.state = 7907; + this.state = 7923; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7909; + this.state = 7925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7908; + this.state = 7924; this.expr_list(); } } - this.state = 7911; + this.state = 7927; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7912; + this.state = 7928; this.match(PostgreSqlParser.SEMI); } break; @@ -50395,25 +50467,25 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 7915; + this.state = 7931; this.match(PostgreSqlParser.KW_DO); - this.state = 7916; + this.state = 7932; this.any_identifier(); - this.state = 7917; + this.state = 7933; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7919; + this.state = 7935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 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)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 487696527) !== 0) || _la === 584) { { - this.state = 7918; + this.state = 7934; this.expr_list(); } } - this.state = 7921; + this.state = 7937; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7922; + this.state = 7938; this.match(PostgreSqlParser.SEMI); } break; @@ -50437,17 +50509,17 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_assign(): Stmt_assignContext { let localContext = new Stmt_assignContext(this.context, this.state); - this.enterRule(localContext, 852, PostgreSqlParser.RULE_stmt_assign); + this.enterRule(localContext, 856, PostgreSqlParser.RULE_stmt_assign); try { this.enterOuterAlt(localContext, 1); { - this.state = 7926; + this.state = 7942; this.assign_var(); - this.state = 7927; + this.state = 7943; this.assign_operator(); - this.state = 7928; + this.state = 7944; this.sql_expression(); - this.state = 7929; + this.state = 7945; this.match(PostgreSqlParser.SEMI); } } @@ -50467,19 +50539,19 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_getdiag(): Stmt_getdiagContext { let localContext = new Stmt_getdiagContext(this.context, this.state); - this.enterRule(localContext, 854, PostgreSqlParser.RULE_stmt_getdiag); + this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmt_getdiag); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7931; + this.state = 7947; this.match(PostgreSqlParser.KW_GET); - this.state = 7933; + this.state = 7949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 501) { { - this.state = 7932; + this.state = 7948; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 501)) { this.errorHandler.recoverInline(this); @@ -50491,29 +50563,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7935; + this.state = 7951; this.match(PostgreSqlParser.KW_DIAGNOSTICS); { - this.state = 7936; + this.state = 7952; this.getdiag_list_item(); - this.state = 7941; + this.state = 7957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7937; + this.state = 7953; this.match(PostgreSqlParser.COMMA); - this.state = 7938; + this.state = 7954; this.getdiag_list_item(); } } - this.state = 7943; + this.state = 7959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7944; + this.state = 7960; this.match(PostgreSqlParser.SEMI); } } @@ -50533,15 +50605,15 @@ export class PostgreSqlParser extends SQLParserBase { } public getdiag_list_item(): Getdiag_list_itemContext { let localContext = new Getdiag_list_itemContext(this.context, this.state); - this.enterRule(localContext, 856, PostgreSqlParser.RULE_getdiag_list_item); + this.enterRule(localContext, 860, PostgreSqlParser.RULE_getdiag_list_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 7946; + this.state = 7962; this.assign_var(); - this.state = 7947; + this.state = 7963; this.assign_operator(); - this.state = 7948; + this.state = 7964; this.colid(); } } @@ -50561,12 +50633,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assign_var(): Assign_varContext { let localContext = new Assign_varContext(this.context, this.state); - this.enterRule(localContext, 858, PostgreSqlParser.RULE_assign_var); + this.enterRule(localContext, 862, PostgreSqlParser.RULE_assign_var); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7952; + this.state = 7968; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -50964,34 +51036,34 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7950; + this.state = 7966; this.any_name(); } break; case PostgreSqlParser.PARAM: { - this.state = 7951; + this.state = 7967; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7960; + this.state = 7976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 7954; + this.state = 7970; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7955; + this.state = 7971; this.expression(); - this.state = 7956; + this.state = 7972; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 7962; + this.state = 7978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -51013,85 +51085,85 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_if(): Stmt_ifContext { let localContext = new Stmt_ifContext(this.context, this.state); - this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmt_if); + this.enterRule(localContext, 864, PostgreSqlParser.RULE_stmt_if); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7963; + this.state = 7979; this.match(PostgreSqlParser.KW_IF); - this.state = 7964; + this.state = 7980; this.sql_expression(); - this.state = 7965; + this.state = 7981; this.match(PostgreSqlParser.KW_THEN); - this.state = 7969; + this.state = 7985; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7966; + this.state = 7982; this.proc_stmt(); } } } - this.state = 7971; + this.state = 7987; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context); } { - this.state = 7983; + this.state = 7999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 7972; + this.state = 7988; this.match(PostgreSqlParser.KW_ELSIF); - this.state = 7973; + this.state = 7989; this.expression(); - this.state = 7974; + this.state = 7990; this.match(PostgreSqlParser.KW_THEN); - this.state = 7978; + this.state = 7994; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7975; + this.state = 7991; this.proc_stmt(); } } } - this.state = 7980; + this.state = 7996; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context); } } } - this.state = 7985; + this.state = 8001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7987; + this.state = 8003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 7986; + this.state = 8002; this.stmt_else(); } } - this.state = 7989; + this.state = 8005; this.match(PostgreSqlParser.KW_END); - this.state = 7990; + this.state = 8006; this.match(PostgreSqlParser.KW_IF); - this.state = 7991; + this.state = 8007; this.match(PostgreSqlParser.SEMI); } } @@ -51111,28 +51183,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_else(): Stmt_elseContext { let localContext = new Stmt_elseContext(this.context, this.state); - this.enterRule(localContext, 862, PostgreSqlParser.RULE_stmt_else); + this.enterRule(localContext, 866, PostgreSqlParser.RULE_stmt_else); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7993; + this.state = 8009; this.match(PostgreSqlParser.KW_ELSE); - this.state = 7997; + this.state = 8013; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7994; + this.state = 8010; this.proc_stmt(); } } } - this.state = 7999; + this.state = 8015; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); } } } @@ -51152,73 +51224,73 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_case(): Stmt_caseContext { let localContext = new Stmt_caseContext(this.context, this.state); - this.enterRule(localContext, 864, PostgreSqlParser.RULE_stmt_case); + this.enterRule(localContext, 868, PostgreSqlParser.RULE_stmt_case); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8000; + this.state = 8016; this.match(PostgreSqlParser.KW_CASE); - this.state = 8002; + this.state = 8018; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { case 1: { - this.state = 8001; + this.state = 8017; this.sql_expression(); } break; } - this.state = 8013; + this.state = 8029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8004; + this.state = 8020; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8005; + this.state = 8021; this.expr_list(); - this.state = 8006; + this.state = 8022; this.match(PostgreSqlParser.KW_THEN); - this.state = 8010; + this.state = 8026; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8007; + this.state = 8023; this.proc_stmt(); } } } - this.state = 8012; + this.state = 8028; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); } } } - this.state = 8015; + this.state = 8031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8018; + this.state = 8034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8017; + this.state = 8033; this.stmt_else(); } } - this.state = 8020; + this.state = 8036; this.match(PostgreSqlParser.KW_END); - this.state = 8021; + this.state = 8037; this.match(PostgreSqlParser.KW_CASE); - this.state = 8022; + this.state = 8038; this.match(PostgreSqlParser.SEMI); } } @@ -51238,30 +51310,30 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_loop_while_for(): Stmt_loop_while_forContext { let localContext = new Stmt_loop_while_forContext(this.context, this.state); - this.enterRule(localContext, 866, PostgreSqlParser.RULE_stmt_loop_while_for); + this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmt_loop_while_for); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8025; + this.state = 8041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8024; + this.state = 8040; this.label_decl(); } } - this.state = 8031; + this.state = 8047; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WHILE: { { - this.state = 8027; + this.state = 8043; this.match(PostgreSqlParser.KW_WHILE); - this.state = 8028; + this.state = 8044; this.expression(); } } @@ -51269,9 +51341,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOR: { { - this.state = 8029; + this.state = 8045; this.match(PostgreSqlParser.KW_FOR); - this.state = 8030; + this.state = 8046; this.for_control(); } } @@ -51281,7 +51353,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 8033; + this.state = 8049; this.loop_body(); } } @@ -51301,28 +51373,28 @@ export class PostgreSqlParser extends SQLParserBase { } public for_control(): For_controlContext { let localContext = new For_controlContext(this.context, this.state); - this.enterRule(localContext, 868, PostgreSqlParser.RULE_for_control); + this.enterRule(localContext, 872, PostgreSqlParser.RULE_for_control); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8035; + this.state = 8051; this.any_name_list(); - this.state = 8036; + this.state = 8052; this.match(PostgreSqlParser.KW_IN); - this.state = 8059; + this.state = 8075; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 8037; + this.state = 8053; this.colid(); - this.state = 8039; + this.state = 8055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8038; + this.state = 8054; this.execute_param_clause(); } } @@ -51331,30 +51403,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8041; + this.state = 8057; this.selectstmt(); } break; case 3: { - this.state = 8042; + this.state = 8058; this.explainstmt(); } break; case 4: { - this.state = 8043; + this.state = 8059; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8044; + this.state = 8060; this.expression(); - this.state = 8047; + this.state = 8063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8045; + this.state = 8061; this.match(PostgreSqlParser.KW_USING); - this.state = 8046; + this.state = 8062; this.expr_list(); } } @@ -51363,30 +51435,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 8050; + this.state = 8066; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 8049; + this.state = 8065; this.match(PostgreSqlParser.KW_REVERSE); } break; } - this.state = 8052; + this.state = 8068; this.expression(); - this.state = 8053; + this.state = 8069; this.match(PostgreSqlParser.DOT_DOT); - this.state = 8054; + this.state = 8070; this.expression(); - this.state = 8057; + this.state = 8073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 8055; + this.state = 8071; this.match(PostgreSqlParser.KW_BY); - this.state = 8056; + this.state = 8072; this.expression(); } } @@ -51412,44 +51484,44 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_foreach_a(): Stmt_foreach_aContext { let localContext = new Stmt_foreach_aContext(this.context, this.state); - this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmt_foreach_a); + this.enterRule(localContext, 874, PostgreSqlParser.RULE_stmt_foreach_a); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8062; + this.state = 8078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8061; + this.state = 8077; this.label_decl(); } } - this.state = 8064; + this.state = 8080; this.match(PostgreSqlParser.KW_FOREACH); - this.state = 8065; + this.state = 8081; this.any_name_list(); - this.state = 8068; + this.state = 8084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 8066; + this.state = 8082; this.match(PostgreSqlParser.KW_SLICE); - this.state = 8067; + this.state = 8083; this.match(PostgreSqlParser.Integral); } } - this.state = 8070; + this.state = 8086; this.match(PostgreSqlParser.KW_IN); - this.state = 8071; + this.state = 8087; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 8072; + this.state = 8088; this.expression(); - this.state = 8073; + this.state = 8089; this.loop_body(); } } @@ -51469,12 +51541,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_exit(): Stmt_exitContext { let localContext = new Stmt_exitContext(this.context, this.state); - this.enterRule(localContext, 872, PostgreSqlParser.RULE_stmt_exit); + this.enterRule(localContext, 876, PostgreSqlParser.RULE_stmt_exit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8075; + this.state = 8091; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -51483,29 +51555,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8077; + this.state = 8093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 8076; + this.state = 8092; this.any_identifier(); } } - this.state = 8081; + this.state = 8097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 8079; + this.state = 8095; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8080; + this.state = 8096; this.sql_expression(); } } - this.state = 8083; + this.state = 8099; this.match(PostgreSqlParser.SEMI); } } @@ -51525,39 +51597,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_return(): Stmt_returnContext { let localContext = new Stmt_returnContext(this.context, this.state); - this.enterRule(localContext, 874, PostgreSqlParser.RULE_stmt_return); + this.enterRule(localContext, 878, PostgreSqlParser.RULE_stmt_return); try { this.enterOuterAlt(localContext, 1); { - this.state = 8085; + this.state = 8101; this.match(PostgreSqlParser.KW_RETURN); - this.state = 8100; + this.state = 8116; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1115, this.context) ) { case 1: { - this.state = 8086; + this.state = 8102; this.match(PostgreSqlParser.KW_NEXT); - this.state = 8087; + this.state = 8103; this.sql_expression(); } break; case 2: { - this.state = 8088; + this.state = 8104; this.match(PostgreSqlParser.KW_QUERY); - this.state = 8095; + this.state = 8111; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: { - this.state = 8089; + this.state = 8105; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8090; + this.state = 8106; this.expression(); - this.state = 8091; + this.state = 8107; this.match(PostgreSqlParser.KW_USING); - this.state = 8092; + this.state = 8108; this.expr_list(); } break; @@ -51567,7 +51639,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8094; + this.state = 8110; this.selectstmt(); } break; @@ -51578,12 +51650,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 8098; + this.state = 8114; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 8097; + this.state = 8113; this.sql_expression(); } break; @@ -51591,7 +51663,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8102; + this.state = 8118; this.match(PostgreSqlParser.SEMI); } } @@ -51611,24 +51683,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_raise(): Stmt_raiseContext { let localContext = new Stmt_raiseContext(this.context, this.state); - this.enterRule(localContext, 876, PostgreSqlParser.RULE_stmt_raise); + this.enterRule(localContext, 880, PostgreSqlParser.RULE_stmt_raise); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8104; + this.state = 8120; this.match(PostgreSqlParser.KW_RAISE); - this.state = 8134; + this.state = 8150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { case 1: { - this.state = 8106; + this.state = 8122; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 8105; + this.state = 8121; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -51640,21 +51712,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8120; + this.state = 8136; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 8108; + this.state = 8124; this.identifier(); } break; case 2: { { - this.state = 8109; + this.state = 8125; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8110; + this.state = 8126; this.sconst(); } } @@ -51662,26 +51734,26 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 8111; + this.state = 8127; this.sconst(); - this.state = 8118; + this.state = 8134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8114; + this.state = 8130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8112; + this.state = 8128; this.match(PostgreSqlParser.COMMA); - this.state = 8113; + this.state = 8129; this.expression(); } } - this.state = 8116; + this.state = 8132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -51692,29 +51764,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8131; + this.state = 8147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8122; + this.state = 8138; this.match(PostgreSqlParser.KW_USING); { - this.state = 8123; + this.state = 8139; this.opt_raise_using_elem(); - this.state = 8128; + this.state = 8144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8124; + this.state = 8140; this.match(PostgreSqlParser.COMMA); - this.state = 8125; + this.state = 8141; this.opt_raise_using_elem(); } } - this.state = 8130; + this.state = 8146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -51722,7 +51794,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 8133; + this.state = 8149; this.match(PostgreSqlParser.SEMI); } break; @@ -51745,15 +51817,15 @@ export class PostgreSqlParser extends SQLParserBase { } public opt_raise_using_elem(): Opt_raise_using_elemContext { let localContext = new Opt_raise_using_elemContext(this.context, this.state); - this.enterRule(localContext, 878, PostgreSqlParser.RULE_opt_raise_using_elem); + this.enterRule(localContext, 882, PostgreSqlParser.RULE_opt_raise_using_elem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8136; + this.state = 8152; this.identifier(); - this.state = 8137; + this.state = 8153; this.match(PostgreSqlParser.EQUAL); - this.state = 8138; + this.state = 8154; this.expression(); } } @@ -51773,28 +51845,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_assert(): Stmt_assertContext { let localContext = new Stmt_assertContext(this.context, this.state); - this.enterRule(localContext, 880, PostgreSqlParser.RULE_stmt_assert); + this.enterRule(localContext, 884, PostgreSqlParser.RULE_stmt_assert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8140; + this.state = 8156; this.match(PostgreSqlParser.KW_ASSERT); - this.state = 8141; + this.state = 8157; this.sql_expression(); - this.state = 8144; + this.state = 8160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8142; + this.state = 8158; this.match(PostgreSqlParser.COMMA); - this.state = 8143; + this.state = 8159; this.sql_expression(); } } - this.state = 8146; + this.state = 8162; this.match(PostgreSqlParser.SEMI); } } @@ -51814,45 +51886,45 @@ export class PostgreSqlParser extends SQLParserBase { } public loop_body(): Loop_bodyContext { let localContext = new Loop_bodyContext(this.context, this.state); - this.enterRule(localContext, 882, PostgreSqlParser.RULE_loop_body); + this.enterRule(localContext, 886, PostgreSqlParser.RULE_loop_body); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8148; + this.state = 8164; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8152; + this.state = 8168; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8149; + this.state = 8165; this.proc_stmt(); } } } - this.state = 8154; + this.state = 8170; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context); } - this.state = 8155; + this.state = 8171; this.match(PostgreSqlParser.KW_END); - this.state = 8156; + this.state = 8172; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8158; + this.state = 8174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 8157; + this.state = 8173; this.any_identifier(); } } - this.state = 8160; + this.state = 8176; this.match(PostgreSqlParser.SEMI); } } @@ -51872,24 +51944,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_execsql(): Stmt_execsqlContext { let localContext = new Stmt_execsqlContext(this.context, this.state); - this.enterRule(localContext, 884, PostgreSqlParser.RULE_stmt_execsql); + this.enterRule(localContext, 888, PostgreSqlParser.RULE_stmt_execsql); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8162; + this.state = 8178; this.stmt(); - this.state = 8164; + this.state = 8180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8163; + this.state = 8179; this.opt_execute_into(); } } - this.state = 8166; + this.state = 8182; this.match(PostgreSqlParser.SEMI); } } @@ -51909,38 +51981,38 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_dynexecute(): Stmt_dynexecuteContext { let localContext = new Stmt_dynexecuteContext(this.context, this.state); - this.enterRule(localContext, 886, PostgreSqlParser.RULE_stmt_dynexecute); + this.enterRule(localContext, 890, PostgreSqlParser.RULE_stmt_dynexecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8168; + this.state = 8184; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8169; - this.expression(); this.state = 8185; + this.expression(); + this.state = 8201; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { case 1: { - this.state = 8171; + this.state = 8187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8170; + this.state = 8186; this.opt_execute_into(); } } - this.state = 8175; + this.state = 8191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8173; + this.state = 8189; this.match(PostgreSqlParser.KW_USING); - this.state = 8174; + this.state = 8190; this.expr_list(); } } @@ -51949,24 +52021,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8179; + this.state = 8195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8177; + this.state = 8193; this.match(PostgreSqlParser.KW_USING); - this.state = 8178; + this.state = 8194; this.expr_list(); } } - this.state = 8182; + this.state = 8198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8181; + this.state = 8197; this.opt_execute_into(); } } @@ -51979,7 +52051,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8187; + this.state = 8203; this.match(PostgreSqlParser.SEMI); } } @@ -51999,23 +52071,23 @@ export class PostgreSqlParser extends SQLParserBase { } public opt_execute_into(): Opt_execute_intoContext { let localContext = new Opt_execute_intoContext(this.context, this.state); - this.enterRule(localContext, 888, PostgreSqlParser.RULE_opt_execute_into); + this.enterRule(localContext, 892, PostgreSqlParser.RULE_opt_execute_into); try { this.enterOuterAlt(localContext, 1); { - this.state = 8189; + this.state = 8205; this.match(PostgreSqlParser.KW_INTO); - this.state = 8191; + this.state = 8207; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { case 1: { - this.state = 8190; + this.state = 8206; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 8193; + this.state = 8209; this.expr_list(); } } @@ -52035,43 +52107,43 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_open(): Stmt_openContext { let localContext = new Stmt_openContext(this.context, this.state); - this.enterRule(localContext, 890, PostgreSqlParser.RULE_stmt_open); + this.enterRule(localContext, 894, PostgreSqlParser.RULE_stmt_open); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8195; + this.state = 8211; this.match(PostgreSqlParser.KW_OPEN); - this.state = 8227; + this.state = 8243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { case 1: { - this.state = 8196; + this.state = 8212; this.cursor_variable(); - this.state = 8201; + this.state = 8217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 8198; + this.state = 8214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8197; + this.state = 8213; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8200; + this.state = 8216; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 8203; + this.state = 8219; this.match(PostgreSqlParser.KW_FOR); - this.state = 8211; + this.state = 8227; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -52080,24 +52152,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8204; + this.state = 8220; this.selectstmt(); } break; case PostgreSqlParser.KW_EXECUTE: { - this.state = 8205; + this.state = 8221; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8206; + this.state = 8222; this.sql_expression(); - this.state = 8209; + this.state = 8225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8207; + this.state = 8223; this.match(PostgreSqlParser.KW_USING); - this.state = 8208; + this.state = 8224; this.expr_list(); } } @@ -52111,36 +52183,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8213; + this.state = 8229; this.colid(); - this.state = 8225; + this.state = 8241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8214; + this.state = 8230; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 8215; + this.state = 8231; this.opt_open_bound_list_item(); - this.state = 8220; + this.state = 8236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8216; + this.state = 8232; this.match(PostgreSqlParser.COMMA); - this.state = 8217; + this.state = 8233; this.opt_open_bound_list_item(); } } - this.state = 8222; + this.state = 8238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8223; + this.state = 8239; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -52148,7 +52220,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8229; + this.state = 8245; this.match(PostgreSqlParser.SEMI); } } @@ -52168,23 +52240,23 @@ export class PostgreSqlParser extends SQLParserBase { } 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, 892, PostgreSqlParser.RULE_opt_open_bound_list_item); + this.enterRule(localContext, 896, PostgreSqlParser.RULE_opt_open_bound_list_item); try { this.enterOuterAlt(localContext, 1); { - this.state = 8234; + this.state = 8250; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1138, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { case 1: { - this.state = 8231; + this.state = 8247; this.colid(); - this.state = 8232; + this.state = 8248; this.match(PostgreSqlParser.COLON_EQUALS); } break; } - this.state = 8236; + this.state = 8252; this.expression(); } } @@ -52204,40 +52276,40 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_fetch(): Stmt_fetchContext { let localContext = new Stmt_fetchContext(this.context, this.state); - this.enterRule(localContext, 894, PostgreSqlParser.RULE_stmt_fetch); + this.enterRule(localContext, 898, PostgreSqlParser.RULE_stmt_fetch); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8238; + this.state = 8254; this.match(PostgreSqlParser.KW_FETCH); - this.state = 8240; + this.state = 8256; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1139, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { - this.state = 8239; + this.state = 8255; localContext._direction = this.opt_fetch_direction(); } break; } - this.state = 8243; + this.state = 8259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 8242; + this.state = 8258; this.from_in(); } } - this.state = 8245; + this.state = 8261; this.cursor_variable(); - this.state = 8246; + this.state = 8262; this.match(PostgreSqlParser.KW_INTO); - this.state = 8247; + this.state = 8263; this.expr_list(); - this.state = 8248; + this.state = 8264; this.match(PostgreSqlParser.SEMI); } } @@ -52257,49 +52329,49 @@ export class PostgreSqlParser extends SQLParserBase { } public opt_fetch_direction(): Opt_fetch_directionContext { let localContext = new Opt_fetch_directionContext(this.context, this.state); - this.enterRule(localContext, 896, PostgreSqlParser.RULE_opt_fetch_direction); + this.enterRule(localContext, 900, PostgreSqlParser.RULE_opt_fetch_direction); let _la: number; try { - this.state = 8264; + this.state = 8280; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8250; + this.state = 8266; this.match(PostgreSqlParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8251; + this.state = 8267; this.match(PostgreSqlParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8252; + this.state = 8268; this.match(PostgreSqlParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8253; + this.state = 8269; this.match(PostgreSqlParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8255; + this.state = 8271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { case 1: { - this.state = 8254; + this.state = 8270; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -52311,21 +52383,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8257; + this.state = 8273; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8258; + this.state = 8274; this.match(PostgreSqlParser.KW_ALL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8259; + this.state = 8275; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -52334,18 +52406,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8262; + this.state = 8278; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: { - this.state = 8260; + this.state = 8276; this.expression(); } break; case 2: { - this.state = 8261; + this.state = 8277; this.match(PostgreSqlParser.KW_ALL); } break; @@ -52370,25 +52442,25 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_move(): Stmt_moveContext { let localContext = new Stmt_moveContext(this.context, this.state); - this.enterRule(localContext, 898, PostgreSqlParser.RULE_stmt_move); + this.enterRule(localContext, 902, PostgreSqlParser.RULE_stmt_move); try { this.enterOuterAlt(localContext, 1); { - this.state = 8266; + this.state = 8282; this.match(PostgreSqlParser.KW_MOVE); - this.state = 8268; + this.state = 8284; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 8267; + this.state = 8283; this.opt_fetch_direction(); } break; } - this.state = 8270; + this.state = 8286; this.cursor_variable(); - this.state = 8271; + this.state = 8287; this.match(PostgreSqlParser.SEMI); } } @@ -52408,86 +52480,86 @@ export class PostgreSqlParser extends SQLParserBase { } public mergestmt(): MergestmtContext { let localContext = new MergestmtContext(this.context, this.state); - this.enterRule(localContext, 900, PostgreSqlParser.RULE_mergestmt); + this.enterRule(localContext, 904, PostgreSqlParser.RULE_mergestmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8274; + this.state = 8290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8273; + this.state = 8289; this.with_clause(); } } - this.state = 8276; + this.state = 8292; this.match(PostgreSqlParser.KW_MERGE); - this.state = 8277; + this.state = 8293; this.match(PostgreSqlParser.KW_INTO); - this.state = 8279; + this.state = 8295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8278; + this.state = 8294; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8281; + this.state = 8297; this.table_name(); - this.state = 8283; + this.state = 8299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8282; + this.state = 8298; this.match(PostgreSqlParser.STAR); } } - this.state = 8289; + this.state = 8305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 8286; + this.state = 8302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8285; + this.state = 8301; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8288; + this.state = 8304; this.colid(); } } - this.state = 8291; + this.state = 8307; this.match(PostgreSqlParser.KW_USING); - this.state = 8292; + this.state = 8308; this.data_source(); - this.state = 8293; + this.state = 8309; this.match(PostgreSqlParser.KW_ON); - this.state = 8294; + this.state = 8310; this.expression(); - this.state = 8296; + this.state = 8312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8295; + this.state = 8311; this.merge_when_clause(); } } - this.state = 8298; + this.state = 8314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -52509,34 +52581,34 @@ export class PostgreSqlParser extends SQLParserBase { } public data_source(): Data_sourceContext { let localContext = new Data_sourceContext(this.context, this.state); - this.enterRule(localContext, 902, PostgreSqlParser.RULE_data_source); + this.enterRule(localContext, 906, PostgreSqlParser.RULE_data_source); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8311; + this.state = 8327; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1154, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { case 1: { - this.state = 8301; + this.state = 8317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8300; + this.state = 8316; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8303; + this.state = 8319; this.table_name(); - this.state = 8305; + this.state = 8321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8304; + this.state = 8320; this.match(PostgreSqlParser.STAR); } } @@ -52545,18 +52617,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8309; + this.state = 8325; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1153, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1155, this.context) ) { case 1: { - this.state = 8307; + this.state = 8323; this.select_no_parens(); } break; case 2: { - this.state = 8308; + this.state = 8324; this.values_clause(); } break; @@ -52564,22 +52636,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8317; + this.state = 8333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 53 || ((((_la - 116)) & ~0x1F) === 0 && ((1 << (_la - 116)) & 4294959489) !== 0) || ((((_la - 148)) & ~0x1F) === 0 && ((1 << (_la - 148)) & 4294967295) !== 0) || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 4294967295) !== 0) || ((((_la - 212)) & ~0x1F) === 0 && ((1 << (_la - 212)) & 4227989503) !== 0) || ((((_la - 244)) & ~0x1F) === 0 && ((1 << (_la - 244)) & 4294967295) !== 0) || ((((_la - 276)) & ~0x1F) === 0 && ((1 << (_la - 276)) & 4294967295) !== 0) || ((((_la - 308)) & ~0x1F) === 0 && ((1 << (_la - 308)) & 4294967295) !== 0) || ((((_la - 340)) & ~0x1F) === 0 && ((1 << (_la - 340)) & 4294967295) !== 0) || ((((_la - 372)) & ~0x1F) === 0 && ((1 << (_la - 372)) & 4294967295) !== 0) || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 4294967295) !== 0) || ((((_la - 436)) & ~0x1F) === 0 && ((1 << (_la - 436)) & 4294705151) !== 0) || ((((_la - 468)) & ~0x1F) === 0 && ((1 << (_la - 468)) & 4294967279) !== 0) || ((((_la - 500)) & ~0x1F) === 0 && ((1 << (_la - 500)) & 18350039) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 402696335) !== 0) || _la === 584) { { - this.state = 8314; + this.state = 8330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8313; + this.state = 8329; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8316; + this.state = 8332; this.colid(); } } @@ -52602,53 +52674,53 @@ export class PostgreSqlParser extends SQLParserBase { } public merge_when_clause(): Merge_when_clauseContext { let localContext = new Merge_when_clauseContext(this.context, this.state); - this.enterRule(localContext, 904, PostgreSqlParser.RULE_merge_when_clause); + this.enterRule(localContext, 908, PostgreSqlParser.RULE_merge_when_clause); let _la: number; try { - this.state = 8345; + this.state = 8361; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8319; + this.state = 8335; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8320; + this.state = 8336; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8323; + this.state = 8339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8321; + this.state = 8337; this.match(PostgreSqlParser.KW_AND); - this.state = 8322; + this.state = 8338; this.expression(); } } - this.state = 8325; + this.state = 8341; this.match(PostgreSqlParser.KW_THEN); - this.state = 8330; + this.state = 8346; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 8326; + this.state = 8342; this.merge_update(); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 8327; + this.state = 8343; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_DO: { - this.state = 8328; + this.state = 8344; this.match(PostgreSqlParser.KW_DO); - this.state = 8329; + this.state = 8345; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52660,40 +52732,40 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8332; + this.state = 8348; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8333; + this.state = 8349; this.match(PostgreSqlParser.KW_NOT); - this.state = 8334; + this.state = 8350; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8337; + this.state = 8353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8335; + this.state = 8351; this.match(PostgreSqlParser.KW_AND); - this.state = 8336; + this.state = 8352; this.expression(); } } - this.state = 8339; + this.state = 8355; this.match(PostgreSqlParser.KW_THEN); - this.state = 8343; + this.state = 8359; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: { - this.state = 8340; + this.state = 8356; this.merge_insert(); } break; case PostgreSqlParser.KW_DO: { - this.state = 8341; + this.state = 8357; this.match(PostgreSqlParser.KW_DO); - this.state = 8342; + this.state = 8358; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -52720,31 +52792,31 @@ export class PostgreSqlParser extends SQLParserBase { } public merge_insert(): Merge_insertContext { let localContext = new Merge_insertContext(this.context, this.state); - this.enterRule(localContext, 906, PostgreSqlParser.RULE_merge_insert); + this.enterRule(localContext, 910, PostgreSqlParser.RULE_merge_insert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8347; + this.state = 8363; this.match(PostgreSqlParser.KW_INSERT); - this.state = 8349; + this.state = 8365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8348; + this.state = 8364; this.opt_column_list(); } } - this.state = 8354; + this.state = 8370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8351; + this.state = 8367; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 8352; + this.state = 8368; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -52753,12 +52825,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8353; + this.state = 8369; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 8356; + this.state = 8372; this.default_values_or_values(); } } @@ -52778,63 +52850,63 @@ export class PostgreSqlParser extends SQLParserBase { } public merge_update(): Merge_updateContext { let localContext = new Merge_updateContext(this.context, this.state); - this.enterRule(localContext, 908, PostgreSqlParser.RULE_merge_update); + this.enterRule(localContext, 912, PostgreSqlParser.RULE_merge_update); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8358; + this.state = 8374; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 8359; + this.state = 8375; this.match(PostgreSqlParser.KW_SET); - this.state = 8377; + this.state = 8393; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 8377; + this.state = 8393; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { case 1: { - this.state = 8360; + this.state = 8376; this.column_name(); - this.state = 8361; + this.state = 8377; this.match(PostgreSqlParser.EQUAL); - this.state = 8362; + this.state = 8378; this.exprofdefault(); } break; case 2: { - this.state = 8364; + this.state = 8380; this.opt_column_list(); - this.state = 8365; + this.state = 8381; this.match(PostgreSqlParser.EQUAL); - this.state = 8366; + this.state = 8382; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8367; + this.state = 8383; this.exprofdefault(); - this.state = 8372; + this.state = 8388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8368; + this.state = 8384; this.match(PostgreSqlParser.COMMA); - this.state = 8369; + this.state = 8385; this.exprofdefault(); } } - this.state = 8374; + this.state = 8390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8375; + this.state = 8391; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -52844,9 +52916,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 8379; + this.state = 8395; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -52866,47 +52938,47 @@ export class PostgreSqlParser extends SQLParserBase { } public default_values_or_values(): Default_values_or_valuesContext { let localContext = new Default_values_or_valuesContext(this.context, this.state); - this.enterRule(localContext, 910, PostgreSqlParser.RULE_default_values_or_values); + this.enterRule(localContext, 914, PostgreSqlParser.RULE_default_values_or_values); let _la: number; try { - this.state = 8395; + this.state = 8411; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8381; + this.state = 8397; this.match(PostgreSqlParser.KW_VALUES); - this.state = 8382; + this.state = 8398; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8383; + this.state = 8399; this.exprofdefault(); - this.state = 8388; + this.state = 8404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8384; + this.state = 8400; this.match(PostgreSqlParser.COMMA); - this.state = 8385; + this.state = 8401; this.exprofdefault(); } } - this.state = 8390; + this.state = 8406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8391; + this.state = 8407; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 8393; + this.state = 8409; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8394; + this.state = 8410; this.match(PostgreSqlParser.KW_VALUES); } break; @@ -52930,22 +53002,22 @@ export class PostgreSqlParser extends SQLParserBase { } public exprofdefault(): ExprofdefaultContext { let localContext = new ExprofdefaultContext(this.context, this.state); - this.enterRule(localContext, 912, PostgreSqlParser.RULE_exprofdefault); + this.enterRule(localContext, 916, PostgreSqlParser.RULE_exprofdefault); try { - this.state = 8399; + this.state = 8415; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8397; + this.state = 8413; this.sortby(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8398; + this.state = 8414; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -52967,15 +53039,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_close(): Stmt_closeContext { let localContext = new Stmt_closeContext(this.context, this.state); - this.enterRule(localContext, 914, PostgreSqlParser.RULE_stmt_close); + this.enterRule(localContext, 918, PostgreSqlParser.RULE_stmt_close); try { this.enterOuterAlt(localContext, 1); { - this.state = 8401; + this.state = 8417; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 8402; + this.state = 8418; this.cursor_variable(); - this.state = 8403; + this.state = 8419; this.match(PostgreSqlParser.SEMI); } } @@ -52995,13 +53067,13 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_null(): Stmt_nullContext { let localContext = new Stmt_nullContext(this.context, this.state); - this.enterRule(localContext, 916, PostgreSqlParser.RULE_stmt_null); + this.enterRule(localContext, 920, PostgreSqlParser.RULE_stmt_null); try { this.enterOuterAlt(localContext, 1); { - this.state = 8405; + this.state = 8421; this.match(PostgreSqlParser.KW_NULL); - this.state = 8406; + this.state = 8422; this.match(PostgreSqlParser.SEMI); } } @@ -53021,12 +53093,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_commit_or_rollback(): Stmt_commit_or_rollbackContext { let localContext = new Stmt_commit_or_rollbackContext(this.context, this.state); - this.enterRule(localContext, 918, PostgreSqlParser.RULE_stmt_commit_or_rollback); + this.enterRule(localContext, 922, PostgreSqlParser.RULE_stmt_commit_or_rollback); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8408; + this.state = 8424; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -53035,29 +53107,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8414; + this.state = 8430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8409; + this.state = 8425; this.match(PostgreSqlParser.KW_AND); - this.state = 8411; + this.state = 8427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8410; + this.state = 8426; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8413; + this.state = 8429; this.match(PostgreSqlParser.KW_CHAIN); } } - this.state = 8416; + this.state = 8432; this.match(PostgreSqlParser.SEMI); } } @@ -53077,32 +53149,32 @@ export class PostgreSqlParser extends SQLParserBase { } public stmt_set(): Stmt_setContext { let localContext = new Stmt_setContext(this.context, this.state); - this.enterRule(localContext, 920, PostgreSqlParser.RULE_stmt_set); + this.enterRule(localContext, 924, PostgreSqlParser.RULE_stmt_set); try { - this.state = 8430; + this.state = 8446; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 8418; + this.state = 8434; this.match(PostgreSqlParser.KW_SET); - this.state = 8419; + this.state = 8435; this.any_name(); - this.state = 8420; + this.state = 8436; this.match(PostgreSqlParser.KW_TO); - this.state = 8421; + this.state = 8437; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8422; + this.state = 8438; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 8424; + this.state = 8440; this.match(PostgreSqlParser.KW_RESET); - this.state = 8427; + this.state = 8443; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53500,20 +53572,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8425; + this.state = 8441; this.any_name(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 8426; + this.state = 8442; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8429; + this.state = 8445; this.match(PostgreSqlParser.SEMI); } break; @@ -53537,9 +53609,9 @@ export class PostgreSqlParser extends SQLParserBase { } public cursor_variable(): Cursor_variableContext { let localContext = new Cursor_variableContext(this.context, this.state); - this.enterRule(localContext, 922, PostgreSqlParser.RULE_cursor_variable); + this.enterRule(localContext, 926, PostgreSqlParser.RULE_cursor_variable); try { - this.state = 8434; + this.state = 8450; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53938,14 +54010,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8432; + this.state = 8448; this.colid(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 8433; + this.state = 8449; this.match(PostgreSqlParser.PARAM); } break; @@ -53969,63 +54041,63 @@ export class PostgreSqlParser extends SQLParserBase { } public exception_sect(): Exception_sectContext { let localContext = new Exception_sectContext(this.context, this.state); - this.enterRule(localContext, 924, PostgreSqlParser.RULE_exception_sect); + this.enterRule(localContext, 928, PostgreSqlParser.RULE_exception_sect); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8436; + this.state = 8452; this.match(PostgreSqlParser.KW_EXCEPTION); - this.state = 8453; + this.state = 8469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8437; + this.state = 8453; this.match(PostgreSqlParser.KW_WHEN); { - this.state = 8438; + this.state = 8454; this.proc_condition(); - this.state = 8443; + this.state = 8459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 8439; + this.state = 8455; this.match(PostgreSqlParser.KW_OR); - this.state = 8440; + this.state = 8456; this.proc_condition(); } } - this.state = 8445; + this.state = 8461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8446; + this.state = 8462; this.match(PostgreSqlParser.KW_THEN); - this.state = 8450; + this.state = 8466; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1176, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1178, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8447; + this.state = 8463; this.proc_stmt(); } } } - this.state = 8452; + this.state = 8468; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1176, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1178, this.context); } } } - this.state = 8455; + this.state = 8471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -54047,24 +54119,24 @@ export class PostgreSqlParser extends SQLParserBase { } public proc_condition(): Proc_conditionContext { let localContext = new Proc_conditionContext(this.context, this.state); - this.enterRule(localContext, 926, PostgreSqlParser.RULE_proc_condition); + this.enterRule(localContext, 930, PostgreSqlParser.RULE_proc_condition); try { - this.state = 8460; + this.state = 8476; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1180, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8457; + this.state = 8473; this.any_identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8458; + this.state = 8474; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8459; + this.state = 8475; this.sconst(); } break; @@ -54086,22 +54158,22 @@ export class PostgreSqlParser extends SQLParserBase { } public any_identifier(): Any_identifierContext { let localContext = new Any_identifierContext(this.context, this.state); - this.enterRule(localContext, 928, PostgreSqlParser.RULE_any_identifier); + this.enterRule(localContext, 932, PostgreSqlParser.RULE_any_identifier); try { - this.state = 8464; + this.state = 8480; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1179, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8462; + this.state = 8478; this.colid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8463; + this.state = 8479; this.unreserved_keyword(); } break; @@ -54123,79 +54195,79 @@ export class PostgreSqlParser extends SQLParserBase { } public sql_expression(): Sql_expressionContext { let localContext = new Sql_expressionContext(this.context, this.state); - this.enterRule(localContext, 930, PostgreSqlParser.RULE_sql_expression); + this.enterRule(localContext, 934, PostgreSqlParser.RULE_sql_expression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8467; + this.state = 8483; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1180, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1182, this.context) ) { case 1: { - this.state = 8466; + this.state = 8482; this.target_list(); } break; } - this.state = 8470; + this.state = 8486; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context) ) { case 1: { - this.state = 8469; + this.state = 8485; this.into_clause(); } break; } - this.state = 8473; + this.state = 8489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8472; + this.state = 8488; this.from_clause(); } } - this.state = 8476; + this.state = 8492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8475; + this.state = 8491; this.where_clause(); } } - this.state = 8479; + this.state = 8495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8478; + this.state = 8494; this.group_clause(); } } - this.state = 8483; + this.state = 8499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8481; + this.state = 8497; this.match(PostgreSqlParser.KW_HAVING); - this.state = 8482; + this.state = 8498; this.expression(); } } - this.state = 8486; + this.state = 8502; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1186, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1188, this.context) ) { case 1: { - this.state = 8485; + this.state = 8501; this.window_clause(); } break; @@ -54219,13 +54291,13 @@ export class PostgreSqlParser extends SQLParserBase { public override sempred(localContext: antlr.RuleContext | null, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 338: + case 339: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 340: - return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 341: + return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); + case 342: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 400: + case 402: return this.column_name_sempred(localContext as Column_nameContext, predIndex); } return true; @@ -54274,7 +54346,7 @@ export class PostgreSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,590,8489,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,590,8505,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, @@ -54355,782 +54427,784 @@ export class PostgreSqlParser extends SQLParserBase { 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,1,0,5,0,934, - 8,0,10,0,12,0,937,9,0,1,0,1,0,1,1,1,1,3,1,943,8,1,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 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,1,0,5,0,938,8,0,10,0,12,0,941,9,0,1,0,1,0,1,1,1,1,3, + 1,947,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,3,2,1063,8,2,3,2,1065,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4, - 3,4,1074,8,4,1,4,5,4,1077,8,4,10,4,12,4,1080,9,4,1,5,1,5,1,5,3,5, - 1085,8,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,3,5,1120,8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1130, - 8,6,1,7,1,7,1,7,1,7,3,7,1136,8,7,1,7,5,7,1139,8,7,10,7,12,7,1142, - 9,7,1,8,1,8,1,8,1,8,3,8,1148,8,8,1,8,5,8,1151,8,8,10,8,12,8,1154, - 9,8,1,9,1,9,1,9,1,9,3,9,1160,8,9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1, - 10,1,10,3,10,1171,8,10,1,10,1,10,1,11,1,11,5,11,1177,8,11,10,11, - 12,11,1180,9,11,1,11,3,11,1183,8,11,1,11,1,11,1,11,1,11,1,11,1,11, - 1,11,1,11,1,11,1,11,3,11,1195,8,11,1,11,1,11,1,11,1,11,3,11,1201, - 8,11,1,12,1,12,1,12,1,12,3,12,1207,8,12,1,12,1,12,3,12,1211,8,12, - 1,12,1,12,1,12,3,12,1216,8,12,1,12,1,12,3,12,1220,8,12,1,12,1,12, - 1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,1233,8,12,1,12, - 1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,1243,8,12,3,12,1245,8,12, - 1,13,1,13,1,13,1,13,3,13,1251,8,13,1,13,5,13,1254,8,13,10,13,12, - 13,1257,9,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,3, - 15,1269,8,15,1,15,3,15,1272,8,15,1,15,1,15,1,15,3,15,1277,8,15,1, - 15,5,15,1280,8,15,10,15,12,15,1283,9,15,1,16,1,16,1,17,1,17,1,17, - 1,17,1,17,1,17,3,17,1293,8,17,1,18,1,18,3,18,1297,8,18,1,18,1,18, - 1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,1309,8,19,1,20,1,20, - 3,20,1313,8,20,1,20,3,20,1316,8,20,1,20,1,20,3,20,1320,8,20,1,21, - 1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1332,8,21,1,21, - 1,21,1,21,1,21,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,1350,8,21,1,22,1,22,1,22,5,22,1355,8,22,10,22,12, - 22,1358,9,22,1,23,1,23,1,23,5,23,1363,8,23,10,23,12,23,1366,9,23, - 1,24,1,24,3,24,1370,8,24,1,25,1,25,1,25,1,25,1,25,3,25,1377,8,25, - 1,26,1,26,1,26,1,26,1,26,1,26,3,26,1385,8,26,1,27,1,27,1,27,1,27, - 3,27,1391,8,27,1,28,1,28,1,28,1,28,1,28,1,28,3,28,1399,8,28,1,28, - 1,28,1,28,1,28,1,28,1,28,3,28,1407,8,28,1,29,1,29,3,29,1411,8,29, - 1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,31,3,31, - 1425,8,31,1,32,1,32,1,32,3,32,1430,8,32,1,33,1,33,1,33,3,33,1435, - 8,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,1447, - 8,34,1,35,1,35,1,35,1,35,3,35,1453,8,35,1,35,1,35,1,36,1,36,1,37, - 1,37,1,37,1,38,1,38,1,38,3,38,1465,8,38,1,38,1,38,1,38,3,38,1470, - 8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1480,8,38,1,38, - 1,38,1,38,1,38,3,38,1486,8,38,1,38,1,38,1,38,3,38,1491,8,38,1,38, - 1,38,1,38,1,38,1,38,1,38,3,38,1499,8,38,1,38,1,38,1,38,3,38,1504, - 8,38,1,38,1,38,1,38,1,38,1,38,3,38,1511,8,38,1,38,1,38,1,38,3,38, - 1516,8,38,1,38,1,38,1,38,3,38,1521,8,38,1,38,1,38,1,38,1,38,1,38, - 1,38,1,38,1,38,3,38,1531,8,38,1,38,1,38,1,38,3,38,1536,8,38,1,38, - 1,38,1,38,3,38,1541,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1548,8,38, - 1,38,1,38,3,38,1552,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, - 1,38,1,38,1,38,1,38,3,38,1566,8,38,1,38,1,38,1,38,1,38,3,38,1572, - 8,38,1,38,1,38,1,38,1,38,3,38,1578,8,38,1,38,1,38,1,38,3,38,1583, - 8,38,1,39,1,39,1,39,5,39,1588,8,39,10,39,12,39,1591,9,39,1,40,1, - 40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,3,40,1602,8,40,1,41,1,41,1, - 41,1,41,5,41,1608,8,41,10,41,12,41,1611,9,41,1,41,1,41,1,42,1,42, - 1,42,3,42,1618,8,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,44, - 1,44,1,44,1,44,1,44,1,44,3,44,1634,8,44,1,45,1,45,1,45,1,45,1,46, - 1,46,1,46,3,46,1643,8,46,1,46,1,46,1,46,1,46,1,46,5,46,1650,8,46, - 10,46,12,46,1653,9,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1661,8, - 46,1,46,1,46,3,46,1665,8,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1, - 46,1,46,1,46,3,46,1677,8,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1685, - 8,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1695,8,46,1,46, - 1,46,1,46,1,46,1,46,1,46,1,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,1715,8,46,1,46,1,46,1,46,3,46,1720,8,46, - 1,46,3,46,1723,8,46,1,46,1,46,1,46,1,46,1,46,3,46,1730,8,46,1,46, - 3,46,1733,8,46,1,46,1,46,3,46,1737,8,46,1,46,1,46,3,46,1741,8,46, - 1,46,3,46,1744,8,46,1,46,1,46,1,46,3,46,1749,8,46,1,46,1,46,1,46, - 3,46,1754,8,46,1,46,1,46,3,46,1758,8,46,1,46,1,46,1,46,1,46,1,46, - 1,46,1,46,3,46,1767,8,46,1,46,1,46,1,46,1,46,3,46,1773,8,46,1,46, - 1,46,3,46,1777,8,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1786, - 8,46,1,46,3,46,1789,8,46,1,46,1,46,1,46,1,46,3,46,1795,8,46,1,46, - 1,46,1,46,1,46,1,46,1,46,1,46,3,46,1804,8,46,1,46,1,46,1,46,1,46, - 1,46,1,46,1,46,1,46,4,46,1814,8,46,11,46,12,46,1815,1,46,1,46,3, - 46,1820,8,46,1,46,1,46,3,46,1824,8,46,1,46,1,46,1,46,3,46,1829,8, - 46,1,46,3,46,1832,8,46,1,46,1,46,1,46,1,46,3,46,1838,8,46,4,46,1840, - 8,46,11,46,12,46,1841,1,46,1,46,3,46,1846,8,46,1,46,1,46,1,46,1, - 46,3,46,1852,8,46,1,46,1,46,3,46,1856,8,46,1,46,1,46,1,46,3,46,1861, - 8,46,1,46,1,46,1,46,3,46,1866,8,46,1,46,1,46,3,46,1870,8,46,1,46, - 3,46,1873,8,46,1,47,1,47,1,47,1,47,1,47,3,47,1880,8,47,1,48,1,48, - 1,49,1,49,1,49,1,50,1,50,1,50,1,50,5,50,1891,8,50,10,50,12,50,1894, - 9,50,1,50,1,50,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,3,52,1906, - 8,52,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53, - 1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,1930,8,53, - 1,54,1,54,1,54,1,54,1,54,1,54,5,54,1938,8,54,10,54,12,54,1941,9, - 54,1,55,1,55,1,55,1,55,3,55,1947,8,55,1,55,1,55,1,55,3,55,1952,8, - 55,1,55,1,55,3,55,1956,8,55,1,55,1,55,1,55,1,55,1,55,3,55,1963,8, - 55,1,55,1,55,1,55,3,55,1968,8,55,1,55,3,55,1971,8,55,3,55,1973,8, - 55,1,56,1,56,1,56,3,56,1978,8,56,1,57,1,57,3,57,1982,8,57,1,57,1, - 57,3,57,1986,8,57,1,57,1,57,3,57,1990,8,57,1,57,1,57,1,57,3,57,1995, - 8,57,1,57,3,57,1998,8,57,1,57,1,57,3,57,2002,8,57,1,57,3,57,2005, - 8,57,1,57,1,57,3,57,2009,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57, - 2017,8,57,1,57,1,57,1,57,3,57,2022,8,57,1,57,3,57,2025,8,57,1,57, - 1,57,3,57,2029,8,57,1,58,1,58,1,58,1,58,3,58,2035,8,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,3,58,2044,8,58,1,58,1,58,3,58,2048,8,58, - 1,58,1,58,1,58,1,58,5,58,2054,8,58,10,58,12,58,2057,9,58,1,58,1, - 58,1,58,1,58,5,58,2063,8,58,10,58,12,58,2066,9,58,1,58,1,58,3,58, - 2070,8,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,5,59,2080,8,59, - 10,59,12,59,2083,9,59,1,59,1,59,3,59,2087,8,59,1,60,1,60,3,60,2091, - 8,60,1,60,1,60,3,60,2095,8,60,1,60,1,60,1,60,3,60,2100,8,60,1,60, - 1,60,3,60,2104,8,60,1,60,3,60,2107,8,60,1,60,3,60,2110,8,60,1,60, - 3,60,2113,8,60,1,60,3,60,2116,8,60,1,60,3,60,2119,8,60,1,60,1,60, - 1,60,3,60,2124,8,60,1,60,3,60,2127,8,60,1,60,3,60,2130,8,60,1,60, - 3,60,2133,8,60,1,60,3,60,2136,8,60,1,60,3,60,2139,8,60,1,60,1,60, - 1,60,1,60,3,60,2145,8,60,1,60,1,60,3,60,2149,8,60,1,60,3,60,2152, - 8,60,1,60,3,60,2155,8,60,1,60,3,60,2158,8,60,1,60,3,60,2161,8,60, - 3,60,2163,8,60,1,61,1,61,1,61,1,61,1,61,3,61,2170,8,61,1,62,1,62, - 1,62,1,62,5,62,2176,8,62,10,62,12,62,2179,9,62,1,62,1,62,1,63,1, - 63,1,63,5,63,2186,8,63,10,63,12,63,2189,9,63,1,64,1,64,3,64,2193, - 8,64,1,64,1,64,1,64,1,64,1,64,1,64,5,64,2201,8,64,10,64,12,64,2204, - 9,64,3,64,2206,8,64,1,65,1,65,1,65,3,65,2211,8,65,1,65,5,65,2214, - 8,65,10,65,12,65,2217,9,65,1,65,1,65,3,65,2221,8,65,1,65,3,65,2224, - 8,65,1,66,1,66,1,66,3,66,2229,8,66,1,66,1,66,1,66,1,66,1,66,1,66, - 1,66,3,66,2238,8,66,3,66,2240,8,66,1,66,1,66,3,66,2244,8,66,1,66, - 3,66,2247,8,66,1,66,1,66,3,66,2251,8,66,1,66,5,66,2254,8,66,10,66, - 12,66,2257,9,66,1,67,1,67,3,67,2261,8,67,1,67,1,67,3,67,2265,8,67, - 1,67,3,67,2268,8,67,1,67,1,67,3,67,2272,8,67,1,68,3,68,2275,8,68, - 1,68,1,68,1,68,3,68,2280,8,68,1,68,3,68,2283,8,68,1,68,1,68,1,68, - 3,68,2288,8,68,1,68,3,68,2291,8,68,1,68,1,68,3,68,2295,8,68,1,68, - 3,68,2298,8,68,1,68,3,68,2301,8,68,1,68,1,68,1,68,3,68,2306,8,68, - 1,68,3,68,2309,8,68,1,68,1,68,1,68,1,68,1,68,1,68,3,68,2317,8,68, - 1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,4,68,2327,8,68,11,68,12, - 68,2328,1,68,1,68,3,68,2333,8,68,1,68,1,68,1,68,1,68,1,68,3,68,2340, - 8,68,1,68,1,68,1,68,3,68,2345,8,68,1,68,3,68,2348,8,68,1,68,3,68, - 2351,8,68,1,68,3,68,2354,8,68,1,69,1,69,1,69,3,69,2359,8,69,1,70, - 1,70,1,71,1,71,1,71,1,71,1,71,5,71,2368,8,71,10,71,12,71,2371,9, - 71,1,71,1,71,1,71,3,71,2376,8,71,1,71,1,71,3,71,2380,8,71,1,71,3, - 71,2383,8,71,1,71,3,71,2386,8,71,1,71,5,71,2389,8,71,10,71,12,71, - 2392,9,71,1,71,1,71,5,71,2396,8,71,10,71,12,71,2399,9,71,3,71,2401, - 8,71,1,71,1,71,3,71,2405,8,71,1,71,1,71,1,71,1,71,5,71,2411,8,71, - 10,71,12,71,2414,9,71,1,71,1,71,3,71,2418,8,71,1,71,3,71,2421,8, - 71,1,71,3,71,2424,8,71,1,71,1,71,1,71,1,71,1,71,3,71,2431,8,71,1, - 71,5,71,2434,8,71,10,71,12,71,2437,9,71,1,71,1,71,1,71,1,71,1,71, - 1,71,3,71,2445,8,71,1,71,3,71,2448,8,71,1,71,3,71,2451,8,71,1,71, - 5,71,2454,8,71,10,71,12,71,2457,9,71,3,71,2459,8,71,1,72,1,72,1, - 72,1,72,1,73,1,73,1,73,1,73,5,73,2469,8,73,10,73,12,73,2472,9,73, - 1,73,1,73,1,74,1,74,1,74,5,74,2479,8,74,10,74,12,74,2482,9,74,1, - 75,1,75,1,75,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1, - 77,3,77,2498,8,77,1,78,1,78,3,78,2502,8,78,1,78,1,78,3,78,2506,8, - 78,3,78,2508,8,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,81,1, - 81,1,81,1,81,1,81,1,81,1,81,3,81,2525,8,81,3,81,2527,8,81,1,82,1, - 82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,83,5,83,2541,8, - 83,10,83,12,83,2544,9,83,1,83,1,83,1,84,1,84,1,84,1,84,1,84,1,84, - 3,84,2554,8,84,1,84,3,84,2557,8,84,1,84,3,84,2560,8,84,1,85,1,85, - 1,85,1,86,1,86,1,86,1,86,3,86,2569,8,86,1,87,1,87,1,87,1,87,1,87, - 1,87,1,87,3,87,2578,8,87,1,88,1,88,1,88,1,89,1,89,1,89,1,89,1,90, - 1,90,1,90,1,90,1,91,1,91,1,91,3,91,2594,8,91,1,91,3,91,2597,8,91, - 1,91,3,91,2600,8,91,1,91,1,91,1,91,1,91,5,91,2606,8,91,10,91,12, - 91,2609,9,91,1,91,3,91,2612,8,91,1,91,1,91,1,92,1,92,1,92,3,92,2619, - 8,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93,3,93,2628,8,93,1,93,1,93, - 3,93,2632,8,93,1,93,1,93,1,93,1,93,3,93,2638,8,93,1,94,1,94,3,94, - 2642,8,94,1,94,3,94,2645,8,94,1,94,3,94,2648,8,94,1,94,3,94,2651, - 8,94,1,94,3,94,2654,8,94,1,95,1,95,1,95,1,95,3,95,2660,8,95,1,96, - 1,96,3,96,2664,8,96,1,96,1,96,1,96,3,96,2669,8,96,1,96,1,96,3,96, - 2673,8,96,1,96,3,96,2676,8,96,1,96,3,96,2679,8,96,1,96,3,96,2682, - 8,96,1,96,1,96,1,96,3,96,2687,8,96,1,97,1,97,1,97,1,97,3,97,2693, - 8,97,1,97,1,97,3,97,2697,8,97,1,98,1,98,3,98,2701,8,98,1,98,1,98, - 3,98,2705,8,98,1,98,1,98,4,98,2709,8,98,11,98,12,98,2710,3,98,2713, - 8,98,1,99,1,99,1,99,3,99,2718,8,99,1,99,1,99,4,99,2722,8,99,11,99, - 12,99,2723,1,100,1,100,1,100,1,100,3,100,2730,8,100,1,100,1,100, - 3,100,2734,8,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,1,100,3,100,2749,8,100,1,100,1,100,1,100, - 3,100,2754,8,100,1,100,3,100,2757,8,100,3,100,2759,8,100,1,101,3, - 101,2762,8,101,1,101,1,101,3,101,2766,8,101,1,102,1,102,3,102,2770, - 8,102,1,102,3,102,2773,8,102,1,102,3,102,2776,8,102,1,102,1,102, - 1,102,1,102,1,102,1,102,3,102,2784,8,102,1,102,1,102,1,102,1,102, - 3,102,2790,8,102,3,102,2792,8,102,1,103,1,103,1,103,1,103,3,103, - 2798,8,103,1,103,1,103,1,103,3,103,2803,8,103,1,104,1,104,1,104, - 3,104,2808,8,104,1,104,1,104,3,104,2812,8,104,1,104,1,104,1,104, - 1,104,1,104,5,104,2819,8,104,10,104,12,104,2822,9,104,1,105,1,105, - 1,105,1,105,1,105,1,105,5,105,2830,8,105,10,105,12,105,2833,9,105, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1067,8,2,3,2,1069,8,2,1,3, + 1,3,1,3,1,4,1,4,1,4,1,4,3,4,1078,8,4,1,4,5,4,1081,8,4,10,4,12,4, + 1084,9,4,1,5,1,5,1,5,3,5,1089,8,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,1124,8,5,1,6,1,6,1,6,1, + 6,1,6,1,6,1,6,1,6,3,6,1134,8,6,1,7,1,7,1,7,1,7,3,7,1140,8,7,1,7, + 5,7,1143,8,7,10,7,12,7,1146,9,7,1,8,1,8,1,8,1,8,3,8,1152,8,8,1,8, + 5,8,1155,8,8,10,8,12,8,1158,9,8,1,9,1,9,1,9,1,9,3,9,1164,8,9,1,9, + 1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,3,10,1175,8,10,1,10,1,10,1,11, + 1,11,5,11,1181,8,11,10,11,12,11,1184,9,11,1,11,3,11,1187,8,11,1, + 11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,3,11,1199,8,11,1, + 11,1,11,1,11,1,11,3,11,1205,8,11,1,12,1,12,1,12,1,12,3,12,1211,8, + 12,1,12,1,12,3,12,1215,8,12,1,12,1,12,1,12,3,12,1220,8,12,1,12,1, + 12,3,12,1224,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1, + 12,1,12,3,12,1237,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3, + 12,1247,8,12,3,12,1249,8,12,1,13,1,13,1,13,1,13,3,13,1255,8,13,1, + 13,5,13,1258,8,13,10,13,12,13,1261,9,13,1,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,15,1,15,1,15,3,15,1273,8,15,1,15,3,15,1276,8,15,1,15, + 1,15,1,15,3,15,1281,8,15,1,15,5,15,1284,8,15,10,15,12,15,1287,9, + 15,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,3,17,1297,8,17,1,18,1, + 18,3,18,1301,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1, + 19,3,19,1313,8,19,1,20,1,20,3,20,1317,8,20,1,20,3,20,1320,8,20,1, + 20,1,20,3,20,1324,8,20,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1, + 21,1,21,3,21,1336,8,21,1,21,1,21,1,21,1,21,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,1354,8,21,1,22,1,22,1, + 22,5,22,1359,8,22,10,22,12,22,1362,9,22,1,23,1,23,1,23,5,23,1367, + 8,23,10,23,12,23,1370,9,23,1,24,1,24,3,24,1374,8,24,1,25,1,25,1, + 25,1,25,1,25,3,25,1381,8,25,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1389, + 8,26,1,27,1,27,1,27,1,27,3,27,1395,8,27,1,28,1,28,1,28,1,28,1,28, + 1,28,3,28,1403,8,28,1,28,1,28,1,28,1,28,1,28,1,28,3,28,1411,8,28, + 1,29,1,29,3,29,1415,8,29,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31, + 1,31,1,31,1,31,1,31,3,31,1429,8,31,1,32,1,32,1,32,3,32,1434,8,32, + 1,33,1,33,1,33,3,33,1439,8,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34, + 1,34,1,34,1,34,3,34,1451,8,34,1,35,1,35,1,35,1,35,3,35,1457,8,35, + 1,35,1,35,1,36,1,36,1,37,1,37,1,37,1,38,1,38,1,38,3,38,1469,8,38, + 1,38,1,38,1,38,3,38,1474,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, + 1,38,3,38,1484,8,38,1,38,1,38,1,38,1,38,3,38,1490,8,38,1,38,1,38, + 1,38,3,38,1495,8,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1503,8,38, + 1,38,1,38,1,38,3,38,1508,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1515, + 8,38,1,38,1,38,1,38,3,38,1520,8,38,1,38,1,38,1,38,3,38,1525,8,38, + 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1535,8,38,1,38,1,38, + 1,38,3,38,1540,8,38,1,38,1,38,1,38,3,38,1545,8,38,1,38,1,38,1,38, + 1,38,1,38,3,38,1552,8,38,1,38,1,38,3,38,1556,8,38,1,38,1,38,1,38, + 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1570,8,38,1,38, + 1,38,1,38,1,38,3,38,1576,8,38,1,38,1,38,1,38,1,38,3,38,1582,8,38, + 1,38,1,38,1,38,3,38,1587,8,38,1,39,1,39,1,39,5,39,1592,8,39,10,39, + 12,39,1595,9,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,3,40, + 1606,8,40,1,41,1,41,1,41,1,41,5,41,1612,8,41,10,41,12,41,1615,9, + 41,1,41,1,41,1,42,1,42,1,42,3,42,1622,8,42,1,43,1,43,1,43,1,43,1, + 43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1638,8,44,1, + 45,1,45,1,45,1,45,1,46,1,46,1,46,3,46,1647,8,46,1,46,1,46,1,46,1, + 46,1,46,5,46,1654,8,46,10,46,12,46,1657,9,46,1,46,1,46,1,46,1,46, + 1,46,1,46,3,46,1665,8,46,1,46,1,46,3,46,1669,8,46,1,46,1,46,1,46, + 1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1681,8,46,1,46,1,46,1,46, + 1,46,1,46,1,46,3,46,1689,8,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46, + 1,46,3,46,1699,8,46,1,46,1,46,1,46,1,46,1,46,1,46,1,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,1719,8,46,1,46, + 1,46,1,46,3,46,1724,8,46,1,46,3,46,1727,8,46,1,46,1,46,1,46,1,46, + 1,46,3,46,1734,8,46,1,46,3,46,1737,8,46,1,46,1,46,3,46,1741,8,46, + 1,46,1,46,3,46,1745,8,46,1,46,3,46,1748,8,46,1,46,1,46,1,46,3,46, + 1753,8,46,1,46,1,46,1,46,3,46,1758,8,46,1,46,1,46,3,46,1762,8,46, + 1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1771,8,46,1,46,1,46,1,46, + 1,46,3,46,1777,8,46,1,46,1,46,3,46,1781,8,46,1,46,1,46,1,46,1,46, + 1,46,1,46,1,46,3,46,1790,8,46,1,46,3,46,1793,8,46,1,46,1,46,1,46, + 1,46,3,46,1799,8,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1808, + 8,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,4,46,1818,8,46,11,46, + 12,46,1819,1,46,1,46,3,46,1824,8,46,1,46,1,46,3,46,1828,8,46,1,46, + 1,46,1,46,3,46,1833,8,46,1,46,3,46,1836,8,46,1,46,1,46,1,46,1,46, + 3,46,1842,8,46,4,46,1844,8,46,11,46,12,46,1845,1,46,1,46,3,46,1850, + 8,46,1,46,1,46,1,46,1,46,3,46,1856,8,46,1,46,1,46,3,46,1860,8,46, + 1,46,1,46,1,46,3,46,1865,8,46,1,46,1,46,1,46,3,46,1870,8,46,1,46, + 1,46,3,46,1874,8,46,1,46,3,46,1877,8,46,1,47,1,47,1,47,1,47,1,47, + 3,47,1884,8,47,1,48,1,48,1,49,1,49,1,49,1,50,1,50,1,50,1,50,5,50, + 1895,8,50,10,50,12,50,1898,9,50,1,50,1,50,1,51,1,51,1,51,1,52,1, + 52,1,52,1,52,1,52,3,52,1910,8,52,1,53,1,53,1,53,1,53,1,53,1,53,1, + 53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1, + 53,1,53,1,53,3,53,1934,8,53,1,54,1,54,1,54,1,54,1,54,1,54,5,54,1942, + 8,54,10,54,12,54,1945,9,54,1,55,1,55,1,55,1,55,3,55,1951,8,55,1, + 55,1,55,1,55,3,55,1956,8,55,1,55,1,55,3,55,1960,8,55,1,55,1,55,1, + 55,1,55,1,55,3,55,1967,8,55,1,55,1,55,1,55,3,55,1972,8,55,1,55,3, + 55,1975,8,55,3,55,1977,8,55,1,56,1,56,1,56,3,56,1982,8,56,1,57,1, + 57,3,57,1986,8,57,1,57,1,57,3,57,1990,8,57,1,57,1,57,3,57,1994,8, + 57,1,57,1,57,1,57,3,57,1999,8,57,1,57,3,57,2002,8,57,1,57,1,57,3, + 57,2006,8,57,1,57,3,57,2009,8,57,1,57,1,57,3,57,2013,8,57,1,57,1, + 57,1,57,1,57,1,57,1,57,3,57,2021,8,57,1,57,1,57,1,57,3,57,2026,8, + 57,1,57,3,57,2029,8,57,1,57,1,57,3,57,2033,8,57,1,58,1,58,1,58,1, + 58,3,58,2039,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,2048,8, + 58,1,58,1,58,3,58,2052,8,58,1,58,1,58,1,58,1,58,5,58,2058,8,58,10, + 58,12,58,2061,9,58,1,58,1,58,1,58,1,58,5,58,2067,8,58,10,58,12,58, + 2070,9,58,1,58,1,58,3,58,2074,8,58,1,59,1,59,1,59,1,59,1,59,1,59, + 1,59,1,59,5,59,2084,8,59,10,59,12,59,2087,9,59,1,59,1,59,3,59,2091, + 8,59,1,60,1,60,3,60,2095,8,60,1,60,1,60,3,60,2099,8,60,1,60,1,60, + 1,60,3,60,2104,8,60,1,60,1,60,3,60,2108,8,60,1,60,3,60,2111,8,60, + 1,60,3,60,2114,8,60,1,60,3,60,2117,8,60,1,60,3,60,2120,8,60,1,60, + 3,60,2123,8,60,1,60,1,60,1,60,3,60,2128,8,60,1,60,3,60,2131,8,60, + 1,60,3,60,2134,8,60,1,60,3,60,2137,8,60,1,60,3,60,2140,8,60,1,60, + 3,60,2143,8,60,1,60,1,60,1,60,1,60,3,60,2149,8,60,1,60,1,60,3,60, + 2153,8,60,1,60,3,60,2156,8,60,1,60,3,60,2159,8,60,1,60,3,60,2162, + 8,60,1,60,3,60,2165,8,60,3,60,2167,8,60,1,61,1,61,1,61,1,61,1,61, + 3,61,2174,8,61,1,62,1,62,1,62,1,62,5,62,2180,8,62,10,62,12,62,2183, + 9,62,1,62,1,62,1,63,1,63,1,63,5,63,2190,8,63,10,63,12,63,2193,9, + 63,1,64,1,64,3,64,2197,8,64,1,64,1,64,1,64,1,64,1,64,1,64,5,64,2205, + 8,64,10,64,12,64,2208,9,64,3,64,2210,8,64,1,65,1,65,1,65,3,65,2215, + 8,65,1,65,5,65,2218,8,65,10,65,12,65,2221,9,65,1,65,1,65,3,65,2225, + 8,65,1,65,3,65,2228,8,65,1,66,1,66,1,66,3,66,2233,8,66,1,66,1,66, + 1,66,1,66,1,66,1,66,1,66,3,66,2242,8,66,3,66,2244,8,66,1,66,1,66, + 3,66,2248,8,66,1,66,3,66,2251,8,66,1,66,1,66,3,66,2255,8,66,1,66, + 5,66,2258,8,66,10,66,12,66,2261,9,66,1,67,1,67,3,67,2265,8,67,1, + 67,1,67,3,67,2269,8,67,1,67,3,67,2272,8,67,1,67,1,67,3,67,2276,8, + 67,1,68,3,68,2279,8,68,1,68,1,68,1,68,3,68,2284,8,68,1,68,3,68,2287, + 8,68,1,68,1,68,1,68,3,68,2292,8,68,1,68,3,68,2295,8,68,1,68,1,68, + 3,68,2299,8,68,1,68,3,68,2302,8,68,1,68,3,68,2305,8,68,1,68,1,68, + 1,68,3,68,2310,8,68,1,68,3,68,2313,8,68,1,68,1,68,1,68,1,68,1,68, + 1,68,3,68,2321,8,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,4,68, + 2331,8,68,11,68,12,68,2332,1,68,1,68,3,68,2337,8,68,1,68,1,68,1, + 68,1,68,1,68,3,68,2344,8,68,1,68,1,68,1,68,3,68,2349,8,68,1,68,3, + 68,2352,8,68,1,68,3,68,2355,8,68,1,68,3,68,2358,8,68,1,69,1,69,1, + 69,3,69,2363,8,69,1,70,1,70,1,71,1,71,1,71,1,71,1,71,5,71,2372,8, + 71,10,71,12,71,2375,9,71,1,71,1,71,1,71,3,71,2380,8,71,1,71,1,71, + 3,71,2384,8,71,1,71,3,71,2387,8,71,1,71,3,71,2390,8,71,1,71,5,71, + 2393,8,71,10,71,12,71,2396,9,71,1,71,1,71,5,71,2400,8,71,10,71,12, + 71,2403,9,71,3,71,2405,8,71,1,71,1,71,3,71,2409,8,71,1,71,1,71,1, + 71,1,71,5,71,2415,8,71,10,71,12,71,2418,9,71,1,71,1,71,3,71,2422, + 8,71,1,71,3,71,2425,8,71,1,71,3,71,2428,8,71,1,71,1,71,1,71,1,71, + 1,71,3,71,2435,8,71,1,71,5,71,2438,8,71,10,71,12,71,2441,9,71,1, + 71,1,71,1,71,1,71,1,71,1,71,3,71,2449,8,71,1,71,3,71,2452,8,71,1, + 71,3,71,2455,8,71,1,71,5,71,2458,8,71,10,71,12,71,2461,9,71,3,71, + 2463,8,71,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,5,73,2473,8,73, + 10,73,12,73,2476,9,73,1,73,1,73,1,74,1,74,1,74,5,74,2483,8,74,10, + 74,12,74,2486,9,74,1,75,1,75,1,75,1,76,1,76,1,76,1,77,1,77,1,77, + 1,77,1,77,1,77,1,77,1,77,3,77,2502,8,77,1,78,1,78,3,78,2506,8,78, + 1,78,1,78,3,78,2510,8,78,3,78,2512,8,78,1,79,1,79,1,79,1,79,1,80, + 1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2529,8,81, + 3,81,2531,8,81,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83, + 1,83,1,83,5,83,2545,8,83,10,83,12,83,2548,9,83,1,83,1,83,1,84,1, + 84,1,84,1,84,1,84,1,84,3,84,2558,8,84,1,84,3,84,2561,8,84,1,84,3, + 84,2564,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,3,86,2573,8,86,1, + 87,1,87,1,87,1,87,1,87,1,87,1,87,3,87,2582,8,87,1,88,1,88,1,88,1, + 89,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,91,1,91,1,91,3,91,2598,8, + 91,1,91,3,91,2601,8,91,1,91,3,91,2604,8,91,1,91,1,91,1,91,1,91,5, + 91,2610,8,91,10,91,12,91,2613,9,91,1,91,3,91,2616,8,91,1,91,1,91, + 1,92,1,92,1,92,3,92,2623,8,92,1,92,1,92,1,92,1,92,1,92,1,93,1,93, + 3,93,2632,8,93,1,93,1,93,3,93,2636,8,93,1,93,1,93,1,93,1,93,3,93, + 2642,8,93,1,94,1,94,3,94,2646,8,94,1,94,3,94,2649,8,94,1,94,3,94, + 2652,8,94,1,94,3,94,2655,8,94,1,94,3,94,2658,8,94,1,95,1,95,1,95, + 1,95,3,95,2664,8,95,1,96,1,96,3,96,2668,8,96,1,96,1,96,1,96,3,96, + 2673,8,96,1,96,1,96,3,96,2677,8,96,1,96,3,96,2680,8,96,1,96,3,96, + 2683,8,96,1,96,3,96,2686,8,96,1,96,1,96,1,96,3,96,2691,8,96,1,97, + 1,97,1,97,1,97,3,97,2697,8,97,1,97,1,97,3,97,2701,8,97,1,98,1,98, + 3,98,2705,8,98,1,98,1,98,3,98,2709,8,98,1,98,1,98,4,98,2713,8,98, + 11,98,12,98,2714,3,98,2717,8,98,1,99,1,99,1,99,3,99,2722,8,99,1, + 99,1,99,4,99,2726,8,99,11,99,12,99,2727,1,100,1,100,1,100,1,100, + 3,100,2734,8,100,1,100,1,100,3,100,2738,8,100,1,100,1,100,1,100, + 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,3,100, + 2753,8,100,1,100,1,100,1,100,3,100,2758,8,100,1,100,3,100,2761,8, + 100,3,100,2763,8,100,1,101,3,101,2766,8,101,1,101,1,101,3,101,2770, + 8,101,1,102,1,102,3,102,2774,8,102,1,102,3,102,2777,8,102,1,102, + 3,102,2780,8,102,1,102,1,102,1,102,1,102,1,102,1,102,3,102,2788, + 8,102,1,102,1,102,1,102,1,102,3,102,2794,8,102,3,102,2796,8,102, + 1,103,1,103,1,103,1,103,3,103,2802,8,103,1,103,1,103,1,103,3,103, + 2807,8,103,1,104,1,104,1,104,3,104,2812,8,104,1,104,1,104,3,104, + 2816,8,104,1,104,1,104,1,104,1,104,1,104,5,104,2823,8,104,10,104, + 12,104,2826,9,104,1,105,1,105,1,105,1,105,1,105,1,105,5,105,2834, + 8,105,10,105,12,105,2837,9,105,1,106,1,106,1,106,1,106,1,106,1,106, 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,1,106,3,106,2871,8,106,1,107,1,107,1,107,1,107,1,107, - 1,107,4,107,2879,8,107,11,107,12,107,2880,3,107,2883,8,107,1,107, - 3,107,2886,8,107,1,108,1,108,3,108,2890,8,108,1,108,1,108,3,108, - 2894,8,108,1,109,1,109,1,109,1,109,1,109,1,109,4,109,2902,8,109, - 11,109,12,109,2903,3,109,2906,8,109,1,109,1,109,4,109,2910,8,109, - 11,109,12,109,2911,3,109,2914,8,109,1,110,1,110,1,110,1,110,1,110, - 5,110,2921,8,110,10,110,12,110,2924,9,110,1,110,1,110,1,111,1,111, - 1,111,1,111,1,111,5,111,2933,8,111,10,111,12,111,2936,9,111,1,111, - 1,111,1,112,1,112,1,112,1,113,1,113,1,113,1,114,1,114,1,114,3,114, - 2949,8,114,1,114,1,114,1,114,3,114,2954,8,114,1,114,3,114,2957,8, - 114,1,114,1,114,1,114,1,114,1,114,3,114,2964,8,114,1,115,1,115,1, - 115,3,115,2969,8,115,1,116,1,116,1,116,1,116,1,116,1,116,3,116,2977, - 8,116,3,116,2979,8,116,1,117,1,117,1,117,1,117,3,117,2985,8,117, - 1,117,1,117,1,117,3,117,2990,8,117,1,117,1,117,3,117,2994,8,117, - 1,117,1,117,1,117,3,117,2999,8,117,1,117,1,117,1,117,1,117,3,117, - 3005,8,117,1,117,1,117,1,117,1,117,1,117,3,117,3012,8,117,1,117, - 1,117,1,117,1,117,3,117,3018,8,117,3,117,3020,8,117,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,3,118,3029,8,118,1,118,1,118,1,118, - 1,118,3,118,3035,8,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118, - 3043,8,118,1,119,1,119,1,119,1,119,3,119,3049,8,119,1,119,1,119, - 1,119,3,119,3054,8,119,1,119,1,119,1,119,3,119,3059,8,119,1,120, - 1,120,1,120,1,120,1,120,1,120,3,120,3067,8,120,1,120,1,120,1,120, - 1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121, - 3082,8,121,3,121,3084,8,121,1,121,1,121,3,121,3088,8,121,1,121,1, - 121,3,121,3092,8,121,1,121,3,121,3095,8,121,1,121,3,121,3098,8,121, - 1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,3107,8,122,1,122, - 3,122,3110,8,122,1,122,3,122,3113,8,122,1,123,1,123,1,123,1,123, - 3,123,3119,8,123,1,123,1,123,5,123,3123,8,123,10,123,12,123,3126, - 9,123,1,123,3,123,3129,8,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,3,123,3141,8,123,1,123,1,123,1,123,1,123, - 3,123,3147,8,123,1,124,3,124,3150,8,124,1,124,1,124,1,124,3,124, - 3155,8,124,1,124,1,124,3,124,3159,8,124,1,124,1,124,1,124,1,124, - 1,124,3,124,3166,8,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, - 1,124,3,124,3176,8,124,3,124,3178,8,124,1,125,1,125,1,125,1,125, - 1,125,1,126,1,126,1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,1,127,1,127,1,128,1,128,3,128,3202,8,128,1,128, - 1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,3,128,3214, - 8,128,1,128,4,128,3217,8,128,11,128,12,128,3218,3,128,3221,8,128, - 1,128,1,128,3,128,3225,8,128,1,128,3,128,3228,8,128,1,128,3,128, - 3231,8,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,3,128, - 3241,8,128,1,128,3,128,3244,8,128,1,128,1,128,1,128,1,128,1,128, - 1,128,1,128,1,128,3,128,3254,8,128,1,128,5,128,3257,8,128,10,128, - 12,128,3260,9,128,1,128,1,128,3,128,3264,8,128,1,128,3,128,3267, - 8,128,1,128,3,128,3270,8,128,1,128,1,128,1,128,1,128,1,128,1,128, - 3,128,3278,8,128,1,129,1,129,1,129,1,129,3,129,3284,8,129,1,130, - 1,130,1,130,5,130,3289,8,130,10,130,12,130,3292,9,130,1,131,1,131, - 1,131,1,131,1,131,3,131,3299,8,131,1,131,3,131,3302,8,131,1,132, - 1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,3,133,3313,8,133, - 1,134,1,134,3,134,3317,8,134,1,134,1,134,5,134,3321,8,134,10,134, - 12,134,3324,9,134,1,135,1,135,1,135,1,135,3,135,3330,8,135,1,136, - 3,136,3333,8,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136, - 3342,8,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, - 1,137,5,137,3354,8,137,10,137,12,137,3357,9,137,3,137,3359,8,137, - 1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138,5,138, - 3371,8,138,10,138,12,138,3374,9,138,1,138,1,138,1,139,1,139,1,139, - 1,139,1,139,1,139,3,139,3384,8,139,1,139,3,139,3387,8,139,1,140, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,5,140,3397,8,140,10,140, - 12,140,3400,9,140,1,141,1,141,3,141,3404,8,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,5,141,3415,8,141,10,141,12,141, - 3418,9,141,1,141,1,141,3,141,3422,8,141,1,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3435,8,141,1,141, - 1,141,1,141,1,141,1,141,5,141,3442,8,141,10,141,12,141,3445,9,141, - 3,141,3447,8,141,1,141,3,141,3450,8,141,1,141,1,141,1,141,1,141, - 1,141,3,141,3457,8,141,1,141,3,141,3460,8,141,1,141,1,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3472,8,141,1,141, - 1,141,1,141,1,141,3,141,3478,8,141,3,141,3480,8,141,1,142,1,142, - 1,142,1,142,5,142,3486,8,142,10,142,12,142,3489,9,142,1,142,1,142, - 1,143,1,143,1,143,3,143,3496,8,143,1,144,1,144,1,144,1,144,1,144, - 1,144,3,144,3504,8,144,1,145,1,145,1,145,1,145,1,146,1,146,1,146, - 1,146,1,146,1,146,3,146,3516,8,146,1,146,1,146,1,146,3,146,3521, - 8,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146, - 3532,8,146,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148, - 3,148,3543,8,148,1,148,1,148,1,148,1,148,1,148,1,148,3,148,3551, - 8,148,1,148,1,148,1,148,1,148,5,148,3557,8,148,10,148,12,148,3560, - 9,148,1,149,1,149,1,149,1,149,3,149,3566,8,149,1,149,1,149,1,149, - 1,149,1,149,3,149,3573,8,149,3,149,3575,8,149,1,149,3,149,3578,8, - 149,1,149,1,149,1,149,3,149,3583,8,149,1,149,1,149,1,149,3,149,3588, - 8,149,1,150,1,150,1,150,1,150,1,150,1,150,1,151,1,151,1,151,1,151, - 1,151,1,151,1,151,1,151,1,151,5,151,3605,8,151,10,151,12,151,3608, - 9,151,1,151,1,151,1,151,1,151,5,151,3614,8,151,10,151,12,151,3617, - 9,151,3,151,3619,8,151,1,152,1,152,1,152,1,152,1,153,1,153,1,153, - 1,153,1,153,1,153,1,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154, - 1,154,1,154,1,154,1,154,1,154,1,154,1,154,3,154,3646,8,154,1,154, - 1,154,1,154,1,154,1,154,1,154,1,154,3,154,3655,8,154,1,154,3,154, - 3658,8,154,1,154,1,154,3,154,3662,8,154,1,154,1,154,3,154,3666,8, - 154,1,154,1,154,3,154,3670,8,154,1,154,1,154,1,154,5,154,3675,8, - 154,10,154,12,154,3678,9,154,1,154,3,154,3681,8,154,1,154,1,154, - 3,154,3685,8,154,1,154,1,154,3,154,3689,8,154,1,154,1,154,3,154, - 3693,8,154,1,154,1,154,1,154,3,154,3698,8,154,1,154,1,154,3,154, - 3702,8,154,1,154,1,154,1,154,3,154,3707,8,154,1,154,1,154,1,154, - 1,154,3,154,3713,8,154,1,154,1,154,1,154,3,154,3718,8,154,1,154, - 1,154,1,154,5,154,3723,8,154,10,154,12,154,3726,9,154,1,154,3,154, - 3729,8,154,1,154,1,154,1,154,1,154,3,154,3735,8,154,1,154,1,154, - 3,154,3739,8,154,1,154,1,154,1,154,3,154,3744,8,154,1,154,1,154, - 1,154,1,154,1,154,1,154,3,154,3752,8,154,1,154,1,154,1,154,1,154, - 3,154,3758,8,154,1,154,1,154,1,154,3,154,3763,8,154,1,154,1,154, - 1,154,1,154,1,154,3,154,3770,8,154,1,154,1,154,1,154,3,154,3775, - 8,154,1,154,1,154,3,154,3779,8,154,1,154,1,154,1,154,3,154,3784, - 8,154,1,154,1,154,1,154,1,154,3,154,3790,8,154,1,154,1,154,1,154, - 1,154,1,154,3,154,3797,8,154,1,154,1,154,1,154,3,154,3802,8,154, - 1,154,1,154,1,154,1,154,1,154,3,154,3809,8,154,1,154,1,154,1,154, - 3,154,3814,8,154,1,154,1,154,1,154,1,154,1,154,3,154,3821,8,154, - 1,154,1,154,3,154,3825,8,154,1,154,1,154,1,154,1,154,5,154,3831, - 8,154,10,154,12,154,3834,9,154,1,154,3,154,3837,8,154,3,154,3839, - 8,154,1,155,3,155,3842,8,155,1,155,1,155,1,155,3,155,3847,8,155, - 1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,3,155,3857,8,155, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,3,156,3872,8,156,1,156,3,156,3875,8,156,1,156,1,156, - 1,156,1,156,1,156,1,156,3,156,3883,8,156,1,157,1,157,1,157,5,157, - 3888,8,157,10,157,12,157,3891,9,157,1,158,1,158,3,158,3895,8,158, - 1,159,1,159,4,159,3899,8,159,11,159,12,159,3900,1,160,1,160,3,160, - 3905,8,160,1,160,1,160,1,160,5,160,3910,8,160,10,160,12,160,3913, - 9,160,1,160,1,160,3,160,3917,8,160,1,160,3,160,3920,8,160,1,161, - 3,161,3923,8,161,1,161,1,161,3,161,3927,8,161,1,162,1,162,1,162, - 1,162,1,162,1,162,1,162,3,162,3936,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,1,162, - 1,162,3,162,3954,8,162,1,162,3,162,3957,8,162,1,162,1,162,1,162, + 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,3,106,2875,8,106, + 1,107,1,107,1,107,1,107,1,107,1,107,4,107,2883,8,107,11,107,12,107, + 2884,3,107,2887,8,107,1,107,3,107,2890,8,107,1,108,1,108,3,108,2894, + 8,108,1,108,1,108,3,108,2898,8,108,1,109,1,109,1,109,1,109,1,109, + 1,109,4,109,2906,8,109,11,109,12,109,2907,3,109,2910,8,109,1,109, + 1,109,4,109,2914,8,109,11,109,12,109,2915,3,109,2918,8,109,1,110, + 1,110,1,110,1,110,1,110,5,110,2925,8,110,10,110,12,110,2928,9,110, + 1,110,1,110,1,111,1,111,1,111,1,111,1,111,5,111,2937,8,111,10,111, + 12,111,2940,9,111,1,111,1,111,1,112,1,112,1,112,1,113,1,113,1,113, + 1,114,1,114,1,114,3,114,2953,8,114,1,114,1,114,1,114,3,114,2958, + 8,114,1,114,3,114,2961,8,114,1,114,1,114,1,114,1,114,1,114,3,114, + 2968,8,114,1,115,1,115,1,115,3,115,2973,8,115,1,116,1,116,1,116, + 1,116,1,116,1,116,3,116,2981,8,116,3,116,2983,8,116,1,117,1,117, + 1,117,1,117,3,117,2989,8,117,1,117,1,117,1,117,3,117,2994,8,117, + 1,117,1,117,3,117,2998,8,117,1,117,1,117,1,117,3,117,3003,8,117, + 1,117,1,117,1,117,1,117,3,117,3009,8,117,1,117,1,117,1,117,1,117, + 1,117,3,117,3016,8,117,1,117,1,117,1,117,1,117,3,117,3022,8,117, + 3,117,3024,8,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118, + 3033,8,118,1,118,1,118,1,118,1,118,3,118,3039,8,118,1,118,1,118, + 1,118,1,118,1,118,1,118,3,118,3047,8,118,1,119,1,119,1,119,1,119, + 3,119,3053,8,119,1,119,1,119,1,119,3,119,3058,8,119,1,119,1,119, + 1,119,3,119,3063,8,119,1,120,1,120,1,120,1,120,1,120,1,120,3,120, + 3071,8,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,3,121,3086,8,121,3,121,3088,8,121,1,121, + 1,121,3,121,3092,8,121,1,121,1,121,3,121,3096,8,121,1,121,3,121, + 3099,8,121,1,121,3,121,3102,8,121,1,122,1,122,1,122,1,122,1,122, + 1,122,1,122,3,122,3111,8,122,1,122,3,122,3114,8,122,1,122,3,122, + 3117,8,122,1,123,1,123,1,123,1,123,3,123,3123,8,123,1,123,1,123, + 5,123,3127,8,123,10,123,12,123,3130,9,123,1,123,3,123,3133,8,123, + 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123, + 3145,8,123,1,123,1,123,1,123,1,123,3,123,3151,8,123,1,124,3,124, + 3154,8,124,1,124,1,124,1,124,3,124,3159,8,124,1,124,1,124,3,124, + 3163,8,124,1,124,1,124,1,124,1,124,1,124,3,124,3170,8,124,1,124, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,3,124,3180,8,124,3,124, + 3182,8,124,1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126, + 1,126,1,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, + 1,128,1,128,3,128,3206,8,128,1,128,1,128,1,128,1,128,1,128,1,128, + 1,128,1,128,1,128,1,128,3,128,3218,8,128,1,128,4,128,3221,8,128, + 11,128,12,128,3222,3,128,3225,8,128,1,128,1,128,3,128,3229,8,128, + 1,128,3,128,3232,8,128,1,128,3,128,3235,8,128,1,128,1,128,1,128, + 1,128,1,128,1,128,1,128,1,128,3,128,3245,8,128,1,128,3,128,3248, + 8,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,3,128,3258, + 8,128,1,128,5,128,3261,8,128,10,128,12,128,3264,9,128,1,128,1,128, + 3,128,3268,8,128,1,128,3,128,3271,8,128,1,128,3,128,3274,8,128,1, + 128,1,128,1,128,1,128,1,128,1,128,3,128,3282,8,128,1,129,1,129,1, + 129,1,129,3,129,3288,8,129,1,130,1,130,1,130,5,130,3293,8,130,10, + 130,12,130,3296,9,130,1,131,1,131,1,131,1,131,1,131,3,131,3303,8, + 131,1,131,3,131,3306,8,131,1,132,1,132,1,132,1,132,1,132,1,133,1, + 133,1,133,1,133,3,133,3317,8,133,1,134,1,134,3,134,3321,8,134,1, + 134,1,134,5,134,3325,8,134,10,134,12,134,3328,9,134,1,135,1,135, + 1,135,1,135,3,135,3334,8,135,1,136,3,136,3337,8,136,1,136,1,136, + 1,136,1,136,1,136,1,136,1,136,3,136,3346,8,136,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,5,137,3358,8,137,10,137, + 12,137,3361,9,137,3,137,3363,8,137,1,137,1,137,1,137,1,137,1,137, + 1,138,1,138,1,138,1,138,1,138,5,138,3375,8,138,10,138,12,138,3378, + 9,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139,1,139,3,139,3388, + 8,139,1,139,3,139,3391,8,139,1,140,1,140,1,140,1,140,1,140,1,140, + 1,140,1,140,5,140,3401,8,140,10,140,12,140,3404,9,140,1,141,1,141, + 3,141,3408,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,5,141,3419,8,141,10,141,12,141,3422,9,141,1,141,1,141,3,141, + 3426,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,3,141,3439,8,141,1,141,1,141,1,141,1,141,1,141,5,141, + 3446,8,141,10,141,12,141,3449,9,141,3,141,3451,8,141,1,141,3,141, + 3454,8,141,1,141,1,141,1,141,1,141,1,141,3,141,3461,8,141,1,141, + 3,141,3464,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,3,141,3476,8,141,1,141,1,141,1,141,1,141,3,141,3482, + 8,141,3,141,3484,8,141,1,142,1,142,1,142,1,142,5,142,3490,8,142, + 10,142,12,142,3493,9,142,1,142,1,142,1,143,1,143,1,143,3,143,3500, + 8,143,1,144,1,144,1,144,1,144,1,144,1,144,3,144,3508,8,144,1,145, + 1,145,1,145,1,145,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3520, + 8,146,1,146,1,146,1,146,3,146,3525,8,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,3,146,3536,8,146,1,147,1,147,1,147, + 1,147,1,148,1,148,1,148,1,148,1,148,3,148,3547,8,148,1,148,1,148, + 1,148,1,148,1,148,1,148,3,148,3555,8,148,1,148,1,148,1,148,1,148, + 5,148,3561,8,148,10,148,12,148,3564,9,148,1,149,1,149,1,149,1,149, + 3,149,3570,8,149,1,149,1,149,1,149,1,149,1,149,3,149,3577,8,149, + 3,149,3579,8,149,1,149,3,149,3582,8,149,1,149,1,149,1,149,3,149, + 3587,8,149,1,149,1,149,1,149,3,149,3592,8,149,1,150,1,150,1,150, + 1,150,1,150,1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, + 1,151,5,151,3609,8,151,10,151,12,151,3612,9,151,1,151,1,151,1,151, + 1,151,5,151,3618,8,151,10,151,12,151,3621,9,151,3,151,3623,8,151, + 1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,153,1,153, + 1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154, + 1,154,1,154,1,154,3,154,3650,8,154,1,154,1,154,1,154,1,154,1,154, + 1,154,1,154,3,154,3659,8,154,1,154,3,154,3662,8,154,1,154,1,154, + 3,154,3666,8,154,1,154,1,154,3,154,3670,8,154,1,154,1,154,3,154, + 3674,8,154,1,154,1,154,1,154,5,154,3679,8,154,10,154,12,154,3682, + 9,154,1,154,3,154,3685,8,154,1,154,1,154,3,154,3689,8,154,1,154, + 1,154,3,154,3693,8,154,1,154,1,154,3,154,3697,8,154,1,154,1,154, + 1,154,3,154,3702,8,154,1,154,1,154,3,154,3706,8,154,1,154,1,154, + 1,154,3,154,3711,8,154,1,154,1,154,1,154,1,154,3,154,3717,8,154, + 1,154,1,154,1,154,3,154,3722,8,154,1,154,1,154,1,154,5,154,3727, + 8,154,10,154,12,154,3730,9,154,1,154,3,154,3733,8,154,1,154,1,154, + 1,154,1,154,3,154,3739,8,154,1,154,1,154,3,154,3743,8,154,1,154, + 1,154,1,154,3,154,3748,8,154,1,154,1,154,1,154,1,154,1,154,1,154, + 3,154,3756,8,154,1,154,1,154,1,154,1,154,3,154,3762,8,154,1,154, + 1,154,1,154,3,154,3767,8,154,1,154,1,154,1,154,1,154,1,154,3,154, + 3774,8,154,1,154,1,154,1,154,3,154,3779,8,154,1,154,1,154,3,154, + 3783,8,154,1,154,1,154,1,154,3,154,3788,8,154,1,154,1,154,1,154, + 1,154,3,154,3794,8,154,1,154,1,154,1,154,1,154,1,154,3,154,3801, + 8,154,1,154,1,154,1,154,3,154,3806,8,154,1,154,1,154,1,154,1,154, + 1,154,3,154,3813,8,154,1,154,1,154,1,154,3,154,3818,8,154,1,154, + 1,154,1,154,1,154,1,154,3,154,3825,8,154,1,154,1,154,3,154,3829, + 8,154,1,154,1,154,1,154,1,154,5,154,3835,8,154,10,154,12,154,3838, + 9,154,1,154,3,154,3841,8,154,3,154,3843,8,154,1,155,3,155,3846,8, + 155,1,155,1,155,1,155,3,155,3851,8,155,1,155,1,155,1,155,1,155,1, + 155,1,155,1,155,1,155,3,155,3861,8,155,1,156,1,156,1,156,1,156,1, + 156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,3876,8, + 156,1,156,3,156,3879,8,156,1,156,1,156,1,156,1,156,1,156,1,156,3, + 156,3887,8,156,1,157,1,157,1,157,5,157,3892,8,157,10,157,12,157, + 3895,9,157,1,158,1,158,3,158,3899,8,158,1,159,1,159,4,159,3903,8, + 159,11,159,12,159,3904,1,160,1,160,3,160,3909,8,160,1,160,1,160, + 1,160,5,160,3914,8,160,10,160,12,160,3917,9,160,1,160,1,160,3,160, + 3921,8,160,1,160,3,160,3924,8,160,1,161,3,161,3927,8,161,1,161,1, + 161,3,161,3931,8,161,1,162,1,162,1,162,1,162,1,162,1,162,1,162,3, + 162,3940,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,1,162,1,162,3,162,3958,8,162,1, + 162,3,162,3961,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,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,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,1,162,1,162,1,162,3,162,3989,8,162,1,162,1,162,1,162, - 3,162,3994,8,162,1,163,1,163,1,163,1,163,3,163,4000,8,163,1,163, + 1,162,3,162,3993,8,162,1,162,1,162,1,162,3,162,3998,8,162,1,163, + 1,163,1,163,1,163,3,163,4004,8,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,4020,8,163,1,163,1,163, - 1,163,3,163,4025,8,163,1,164,1,164,1,164,1,165,3,165,4031,8,165, - 1,165,3,165,4034,8,165,1,165,1,165,3,165,4038,8,165,1,165,1,165, - 3,165,4042,8,165,1,165,1,165,1,165,1,165,3,165,4048,8,165,1,165, - 3,165,4051,8,165,1,165,1,165,3,165,4055,8,165,1,165,1,165,3,165, - 4059,8,165,1,165,1,165,1,165,3,165,4064,8,165,1,165,3,165,4067,8, - 165,1,165,3,165,4070,8,165,1,165,3,165,4073,8,165,1,166,1,166,1, - 167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,1,167,3,167,4086,8, - 167,1,168,1,168,1,168,1,168,3,168,4092,8,168,1,168,1,168,1,168,1, - 168,1,168,1,168,3,168,4100,8,168,1,169,1,169,1,169,5,169,4105,8, - 169,10,169,12,169,4108,9,169,1,169,1,169,3,169,4112,8,169,1,169, - 3,169,4115,8,169,1,169,1,169,1,169,5,169,4120,8,169,10,169,12,169, - 4123,9,169,3,169,4125,8,169,1,170,1,170,1,171,1,171,1,171,1,171, - 3,171,4133,8,171,1,171,3,171,4136,8,171,1,172,1,172,1,172,3,172, - 4141,8,172,1,172,1,172,1,172,1,172,1,172,3,172,4148,8,172,1,172, - 3,172,4151,8,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,5,172,4169,8,172, - 10,172,12,172,4172,9,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172, - 1,172,1,172,3,172,4183,8,172,1,173,3,173,4186,8,173,1,173,1,173, - 1,173,1,173,3,173,4192,8,173,1,173,5,173,4195,8,173,10,173,12,173, - 4198,9,173,1,174,1,174,1,174,1,174,5,174,4204,8,174,10,174,12,174, - 4207,9,174,1,174,1,174,1,174,1,174,1,174,3,174,4214,8,174,1,174, - 1,174,1,174,3,174,4219,8,174,1,175,1,175,1,175,1,175,3,175,4225, - 8,175,1,175,1,175,1,175,5,175,4230,8,175,10,175,12,175,4233,9,175, - 1,175,1,175,1,175,1,175,1,175,3,175,4240,8,175,1,175,3,175,4243, - 8,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,5,176, - 4254,8,176,10,176,12,176,4257,9,176,1,176,1,176,1,177,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,1,177,3,177,4270,8,177,1,177,1,177, - 1,177,1,177,3,177,4276,8,177,1,177,1,177,1,177,1,177,1,177,1,177, - 3,177,4284,8,177,3,177,4286,8,177,1,178,1,178,1,179,1,179,3,179, - 4292,8,179,1,179,1,179,3,179,4296,8,179,1,179,3,179,4299,8,179,1, - 179,3,179,4302,8,179,1,179,1,179,1,179,3,179,4307,8,179,1,179,1, - 179,1,179,3,179,4312,8,179,1,179,1,179,3,179,4316,8,179,1,179,3, - 179,4319,8,179,1,179,3,179,4322,8,179,1,179,3,179,4325,8,179,1,179, - 3,179,4328,8,179,1,180,1,180,1,180,1,180,5,180,4334,8,180,10,180, - 12,180,4337,9,180,1,180,1,180,1,181,1,181,1,181,1,181,1,181,1,181, - 3,181,4347,8,181,1,181,3,181,4350,8,181,1,181,3,181,4353,8,181,1, - 181,1,181,1,181,3,181,4358,8,181,1,181,3,181,4361,8,181,1,181,1, - 181,3,181,4365,8,181,1,182,1,182,3,182,4369,8,182,1,182,1,182,1, - 182,1,182,3,182,4375,8,182,1,182,1,182,1,182,1,182,5,182,4381,8, - 182,10,182,12,182,4384,9,182,3,182,4386,8,182,1,182,1,182,1,182, - 1,182,1,182,1,182,1,182,1,182,1,182,5,182,4397,8,182,10,182,12,182, - 4400,9,182,1,182,1,182,3,182,4404,8,182,3,182,4406,8,182,1,182,4, - 182,4409,8,182,11,182,12,182,4410,1,182,1,182,1,182,1,182,1,182, - 3,182,4418,8,182,1,183,1,183,1,183,1,184,1,184,3,184,4425,8,184, - 1,184,1,184,1,185,1,185,1,185,5,185,4432,8,185,10,185,12,185,4435, - 9,185,1,186,1,186,1,186,5,186,4440,8,186,10,186,12,186,4443,9,186, - 1,187,1,187,1,187,1,187,1,187,3,187,4450,8,187,1,188,1,188,1,188, - 5,188,4455,8,188,10,188,12,188,4458,9,188,1,189,1,189,1,189,1,189, - 1,189,3,189,4465,8,189,1,190,1,190,1,190,5,190,4470,8,190,10,190, - 12,190,4473,9,190,1,191,1,191,1,191,1,191,1,191,3,191,4480,8,191, - 1,192,1,192,3,192,4484,8,192,1,192,1,192,3,192,4488,8,192,3,192, - 4490,8,192,1,192,1,192,1,193,1,193,3,193,4496,8,193,1,193,1,193, - 1,193,3,193,4501,8,193,1,194,1,194,3,194,4505,8,194,1,194,1,194, - 1,194,1,194,1,194,3,194,4512,8,194,1,195,1,195,1,195,3,195,4517, - 8,195,1,196,1,196,1,196,3,196,4522,8,196,1,196,1,196,1,196,3,196, - 4527,8,196,3,196,4529,8,196,1,196,1,196,1,197,1,197,1,197,1,198, - 1,198,1,198,3,198,4539,8,198,1,198,1,198,1,198,1,198,1,198,1,198, - 1,198,1,198,3,198,4549,8,198,1,198,1,198,1,198,1,198,1,198,1,198, - 1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,3,198,4565,8,198, - 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,5,199,4581,8,199,10,199,12,199,4584,9,199,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,3,199,4595,8,199, - 1,199,1,199,1,199,1,199,1,199,3,199,4602,8,199,1,200,1,200,1,200, - 1,201,1,201,1,201,1,202,1,202,1,202,1,202,1,202,1,202,1,202,3,202, - 4617,8,202,1,202,4,202,4620,8,202,11,202,12,202,4621,1,202,3,202, - 4625,8,202,1,203,1,203,1,203,3,203,4630,8,203,1,203,1,203,1,203, - 3,203,4635,8,203,1,203,1,203,1,203,3,203,4640,8,203,1,203,3,203, - 4643,8,203,1,203,3,203,4646,8,203,1,204,1,204,1,204,3,204,4651,8, - 204,1,204,1,204,1,204,5,204,4656,8,204,10,204,12,204,4659,9,204, - 1,204,3,204,4662,8,204,1,205,1,205,1,205,3,205,4667,8,205,1,205, - 1,205,1,205,5,205,4672,8,205,10,205,12,205,4675,9,205,1,205,3,205, - 4678,8,205,1,206,1,206,1,206,1,206,3,206,4684,8,206,1,206,1,206, - 1,206,1,206,1,206,1,206,1,206,3,206,4693,8,206,1,206,1,206,1,207, - 1,207,1,207,5,207,4700,8,207,10,207,12,207,4703,9,207,1,207,1,207, - 1,208,1,208,1,208,1,209,1,209,1,209,1,209,4,209,4714,8,209,11,209, - 12,209,4715,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,3,210,4729,8,210,1,210,1,210,1,210,1,210,3,210,4735, - 8,210,1,210,1,210,3,210,4739,8,210,3,210,4741,8,210,1,211,1,211, - 1,211,1,212,1,212,3,212,4748,8,212,1,212,1,212,1,212,1,212,1,212, - 1,212,1,212,1,212,1,212,1,212,1,212,3,212,4761,8,212,1,212,1,212, - 1,212,1,212,1,212,3,212,4768,8,212,3,212,4770,8,212,1,212,1,212, - 1,213,1,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,1,214,5,214, - 4784,8,214,10,214,12,214,4787,9,214,1,214,3,214,4790,8,214,1,214, - 1,214,3,214,4794,8,214,1,214,1,214,1,214,3,214,4799,8,214,1,214, - 1,214,1,214,3,214,4804,8,214,1,214,1,214,1,214,3,214,4809,8,214, - 1,214,1,214,1,214,3,214,4814,8,214,1,214,3,214,4817,8,214,1,215, - 1,215,1,215,1,215,1,215,1,216,1,216,1,216,1,216,1,216,3,216,4829, - 8,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, + 1,163,1,163,3,163,4024,8,163,1,163,1,163,1,163,3,163,4029,8,163, + 1,164,1,164,1,164,1,165,3,165,4035,8,165,1,165,3,165,4038,8,165, + 1,165,1,165,3,165,4042,8,165,1,165,1,165,3,165,4046,8,165,1,165, + 1,165,1,165,1,165,3,165,4052,8,165,1,165,3,165,4055,8,165,1,165, + 1,165,3,165,4059,8,165,1,165,1,165,3,165,4063,8,165,1,165,1,165, + 1,165,3,165,4068,8,165,1,165,3,165,4071,8,165,1,165,3,165,4074,8, + 165,1,165,3,165,4077,8,165,1,166,1,166,1,167,1,167,1,167,1,167,1, + 167,1,167,1,167,1,167,1,167,3,167,4090,8,167,1,168,1,168,1,168,1, + 168,3,168,4096,8,168,1,168,1,168,1,168,1,168,1,168,1,168,3,168,4104, + 8,168,1,169,1,169,1,169,5,169,4109,8,169,10,169,12,169,4112,9,169, + 1,169,1,169,3,169,4116,8,169,1,169,3,169,4119,8,169,1,169,1,169, + 1,169,5,169,4124,8,169,10,169,12,169,4127,9,169,3,169,4129,8,169, + 1,170,1,170,1,171,1,171,1,171,1,171,3,171,4137,8,171,1,171,3,171, + 4140,8,171,1,172,1,172,1,172,3,172,4145,8,172,1,172,1,172,1,172, + 1,172,1,172,3,172,4152,8,172,1,172,3,172,4155,8,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,5,172,4173,8,172,10,172,12,172,4176,9,172,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,3,172,4187,8,172, + 1,173,3,173,4190,8,173,1,173,1,173,1,173,1,173,3,173,4196,8,173, + 1,173,5,173,4199,8,173,10,173,12,173,4202,9,173,1,174,1,174,1,174, + 1,174,5,174,4208,8,174,10,174,12,174,4211,9,174,1,174,1,174,1,174, + 1,174,1,174,3,174,4218,8,174,1,174,1,174,1,174,3,174,4223,8,174, + 1,175,1,175,1,175,1,175,3,175,4229,8,175,1,175,1,175,1,175,5,175, + 4234,8,175,10,175,12,175,4237,9,175,1,175,1,175,1,175,1,175,1,175, + 3,175,4244,8,175,1,175,3,175,4247,8,175,1,176,1,176,1,176,1,176, + 1,176,1,176,1,176,1,176,1,176,5,176,4258,8,176,10,176,12,176,4261, + 9,176,1,176,1,176,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177, + 1,177,3,177,4274,8,177,1,177,1,177,1,177,1,177,3,177,4280,8,177, + 1,177,1,177,1,177,1,177,1,177,1,177,3,177,4288,8,177,3,177,4290, + 8,177,1,178,1,178,1,179,1,179,3,179,4296,8,179,1,179,1,179,3,179, + 4300,8,179,1,179,3,179,4303,8,179,1,179,3,179,4306,8,179,1,179,1, + 179,1,179,3,179,4311,8,179,1,179,1,179,1,179,3,179,4316,8,179,1, + 179,1,179,3,179,4320,8,179,1,179,3,179,4323,8,179,1,179,3,179,4326, + 8,179,1,179,3,179,4329,8,179,1,179,3,179,4332,8,179,1,180,1,180, + 1,180,1,180,5,180,4338,8,180,10,180,12,180,4341,9,180,1,180,1,180, + 1,181,1,181,1,181,1,181,1,181,1,181,3,181,4351,8,181,1,181,3,181, + 4354,8,181,1,181,3,181,4357,8,181,1,181,1,181,1,181,3,181,4362,8, + 181,1,181,3,181,4365,8,181,1,181,1,181,3,181,4369,8,181,1,182,1, + 182,3,182,4373,8,182,1,182,1,182,1,182,1,182,3,182,4379,8,182,1, + 182,1,182,1,182,1,182,5,182,4385,8,182,10,182,12,182,4388,9,182, + 3,182,4390,8,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,5,182,4401,8,182,10,182,12,182,4404,9,182,1,182,1,182,3,182, + 4408,8,182,3,182,4410,8,182,1,182,4,182,4413,8,182,11,182,12,182, + 4414,1,182,1,182,1,182,1,182,1,182,3,182,4422,8,182,1,183,1,183, + 1,183,1,184,1,184,3,184,4429,8,184,1,184,1,184,1,185,1,185,1,185, + 5,185,4436,8,185,10,185,12,185,4439,9,185,1,186,1,186,1,186,5,186, + 4444,8,186,10,186,12,186,4447,9,186,1,187,1,187,1,187,1,187,1,187, + 3,187,4454,8,187,1,188,1,188,1,188,5,188,4459,8,188,10,188,12,188, + 4462,9,188,1,189,1,189,1,189,1,189,1,189,3,189,4469,8,189,1,190, + 1,190,1,190,5,190,4474,8,190,10,190,12,190,4477,9,190,1,191,1,191, + 1,191,1,191,1,191,3,191,4484,8,191,1,192,1,192,3,192,4488,8,192, + 1,192,1,192,3,192,4492,8,192,3,192,4494,8,192,1,192,1,192,1,193, + 1,193,3,193,4500,8,193,1,193,1,193,1,193,3,193,4505,8,193,1,194, + 1,194,3,194,4509,8,194,1,194,1,194,1,194,1,194,1,194,3,194,4516, + 8,194,1,195,1,195,1,195,3,195,4521,8,195,1,196,1,196,1,196,3,196, + 4526,8,196,1,196,1,196,1,196,3,196,4531,8,196,3,196,4533,8,196,1, + 196,1,196,1,197,1,197,1,197,1,198,1,198,1,198,3,198,4543,8,198,1, + 198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,3,198,4553,8,198,1, + 198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198, + 1,198,1,198,1,198,3,198,4569,8,198,1,199,1,199,1,199,1,199,1,199, + 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,5,199,4585, + 8,199,10,199,12,199,4588,9,199,1,199,1,199,1,199,1,199,1,199,1,199, + 1,199,1,199,1,199,3,199,4599,8,199,1,199,1,199,1,199,1,199,1,199, + 3,199,4606,8,199,1,200,1,200,1,200,1,201,1,201,1,201,1,202,1,202, + 1,202,1,202,1,202,1,202,1,202,3,202,4621,8,202,1,202,4,202,4624, + 8,202,11,202,12,202,4625,1,202,3,202,4629,8,202,1,203,1,203,1,203, + 3,203,4634,8,203,1,203,1,203,1,203,3,203,4639,8,203,1,203,1,203, + 1,203,3,203,4644,8,203,1,203,3,203,4647,8,203,1,203,3,203,4650,8, + 203,1,204,1,204,1,204,3,204,4655,8,204,1,204,1,204,1,204,5,204,4660, + 8,204,10,204,12,204,4663,9,204,1,204,3,204,4666,8,204,1,205,1,205, + 1,205,3,205,4671,8,205,1,205,1,205,1,205,5,205,4676,8,205,10,205, + 12,205,4679,9,205,1,205,3,205,4682,8,205,1,206,1,206,1,206,1,206, + 3,206,4688,8,206,1,206,1,206,1,206,1,206,1,206,1,206,1,206,3,206, + 4697,8,206,1,206,1,206,1,207,1,207,1,207,5,207,4704,8,207,10,207, + 12,207,4707,9,207,1,207,1,207,1,208,1,208,1,208,1,209,1,209,1,209, + 1,209,4,209,4718,8,209,11,209,12,209,4719,1,210,1,210,1,210,1,210, + 1,210,1,210,1,210,1,210,1,210,1,210,1,210,3,210,4733,8,210,1,210, + 1,210,1,210,1,210,3,210,4739,8,210,1,210,1,210,3,210,4743,8,210, + 3,210,4745,8,210,1,211,1,211,1,211,1,212,1,212,3,212,4752,8,212, + 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212, + 3,212,4765,8,212,1,212,1,212,1,212,1,212,1,212,3,212,4772,8,212, + 3,212,4774,8,212,1,212,1,212,1,213,1,213,1,213,1,213,1,213,1,214, + 1,214,1,214,1,214,1,214,5,214,4788,8,214,10,214,12,214,4791,9,214, + 1,214,3,214,4794,8,214,1,214,1,214,3,214,4798,8,214,1,214,1,214, + 1,214,3,214,4803,8,214,1,214,1,214,1,214,3,214,4808,8,214,1,214, + 1,214,1,214,3,214,4813,8,214,1,214,1,214,1,214,3,214,4818,8,214, + 1,214,3,214,4821,8,214,1,215,1,215,1,215,1,215,1,215,1,216,1,216, + 1,216,1,216,1,216,3,216,4833,8,216,1,216,1,216,1,216,1,216,1,216, + 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, - 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216,4882,8,216, - 1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216,4891,8,216,1,216, - 1,216,3,216,4895,8,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, - 3,216,4904,8,216,1,216,1,216,3,216,4908,8,216,1,216,1,216,1,216, - 1,216,1,216,1,216,1,216,3,216,4917,8,216,1,216,1,216,3,216,4921, - 8,216,1,216,1,216,1,216,3,216,4926,8,216,1,216,3,216,4929,8,216, - 1,216,1,216,3,216,4933,8,216,1,216,1,216,1,216,3,216,4938,8,216, - 3,216,4940,8,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216, - 4949,8,216,1,216,1,216,1,216,3,216,4954,8,216,1,216,1,216,1,216, - 1,216,1,216,1,216,1,216,1,216,1,216,3,216,4965,8,216,1,216,1,216, - 3,216,4969,8,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, - 1,216,1,216,1,216,1,216,3,216,4983,8,216,1,216,1,216,1,216,1,216, - 1,216,1,216,3,216,4991,8,216,1,216,1,216,1,216,1,216,1,216,1,216, + 1,216,1,216,3,216,4886,8,216,1,216,1,216,1,216,1,216,1,216,1,216, + 1,216,3,216,4895,8,216,1,216,1,216,3,216,4899,8,216,1,216,1,216, + 1,216,1,216,1,216,1,216,1,216,3,216,4908,8,216,1,216,1,216,3,216, + 4912,8,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216,4921, + 8,216,1,216,1,216,3,216,4925,8,216,1,216,1,216,1,216,3,216,4930, + 8,216,1,216,3,216,4933,8,216,1,216,1,216,3,216,4937,8,216,1,216, + 1,216,1,216,3,216,4942,8,216,3,216,4944,8,216,1,216,1,216,1,216, + 1,216,1,216,1,216,1,216,3,216,4953,8,216,1,216,1,216,1,216,3,216, + 4958,8,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, + 3,216,4969,8,216,1,216,1,216,3,216,4973,8,216,1,216,1,216,1,216, + 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216,4987, + 8,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216,4995,8,216,1,216, 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, - 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,3,216,5029,8,216, - 3,216,5031,8,216,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,3,217,5050, - 8,217,1,217,3,217,5053,8,217,1,217,1,217,1,217,1,217,1,217,1,218, + 1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216,1,216, + 1,216,1,216,3,216,5033,8,216,3,216,5035,8,216,1,217,1,217,1,217, + 1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217,1,217, + 1,217,1,217,1,217,3,217,5054,8,217,1,217,3,217,5057,8,217,1,217, + 1,217,1,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218,1,218,1,218, 1,218,1,218,1,218,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,5080,8,218, 1,218,1,218,3,218,5084,8,218,1,218,1,218,3,218,5088,8,218,1,218, - 1,218,3,218,5092,8,218,1,218,1,218,3,218,5096,8,218,1,218,3,218, - 5099,8,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,5114,8,218,1,218,1,218,1,218,1,218, - 1,218,3,218,5121,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,220, - 1,220,1,220,1,220,5,220,5133,8,220,10,220,12,220,5136,9,220,1,220, - 1,220,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,3,221,5148, - 8,221,1,222,1,222,1,222,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,3,223,5173,8,223,1,223,1,223,1,223,1,223,1,223,1,223, + 1,218,3,218,5092,8,218,1,218,1,218,3,218,5096,8,218,1,218,1,218, + 3,218,5100,8,218,1,218,3,218,5103,8,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,5118, + 8,218,1,218,1,218,1,218,1,218,1,218,3,218,5125,8,218,1,219,1,219, + 1,219,1,219,1,219,1,219,1,220,1,220,1,220,1,220,5,220,5137,8,220, + 10,220,12,220,5140,9,220,1,220,1,220,1,221,1,221,1,221,1,221,1,221, + 1,221,1,221,1,221,3,221,5152,8,221,1,222,1,222,1,222,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,3,223,5177,8,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,5192,8,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,5207,8,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,5223,8,223,1,223,1,223,1,223,1,223,1,223,3,223,5230,8,223, - 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,3,224,5241, - 8,224,1,224,3,224,5244,8,224,1,225,1,225,1,225,1,225,1,225,1,225, - 1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,5,225,5261, - 8,225,10,225,12,225,5264,9,225,3,225,5266,8,225,1,226,1,226,1,226, - 1,226,1,226,1,226,1,226,1,226,1,226,5,226,5277,8,226,10,226,12,226, - 5280,9,226,1,226,3,226,5283,8,226,1,227,1,227,1,227,1,227,1,227, + 1,223,1,223,1,223,1,223,1,223,3,223,5196,8,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, + 5211,8,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,5227,8,223,1,223,1,223,1,223, + 1,223,1,223,3,223,5234,8,223,1,224,1,224,1,224,1,224,1,224,1,224, + 1,224,1,224,1,224,3,224,5245,8,224,1,224,3,224,5248,8,224,1,225, + 1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225, + 1,225,1,225,1,225,5,225,5265,8,225,10,225,12,225,5268,9,225,3,225, + 5270,8,225,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226, + 5,226,5281,8,226,10,226,12,226,5284,9,226,1,226,3,226,5287,8,226, 1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227, - 1,227,1,227,3,227,5303,8,227,1,227,1,227,1,227,1,227,1,227,1,227, - 1,227,1,227,5,227,5313,8,227,10,227,12,227,5316,9,227,1,227,3,227, - 5319,8,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227, + 1,227,1,227,1,227,1,227,1,227,1,227,1,227,3,227,5307,8,227,1,227, + 1,227,1,227,1,227,1,227,1,227,1,227,1,227,5,227,5317,8,227,10,227, + 12,227,5320,9,227,1,227,3,227,5323,8,227,1,227,1,227,1,227,1,227, 1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,227, - 3,227,5341,8,227,1,228,1,228,3,228,5345,8,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,228,3,228,5355,8,228,1,228,1,228,3,228, - 5359,8,228,1,228,1,228,1,228,1,228,3,228,5365,8,228,1,228,1,228, - 3,228,5369,8,228,5,228,5371,8,228,10,228,12,228,5374,9,228,1,228, - 3,228,5377,8,228,1,229,1,229,1,229,1,229,1,229,3,229,5384,8,229, - 1,230,1,230,1,230,3,230,5389,8,230,1,231,1,231,1,231,1,232,1,232, - 1,232,1,233,1,233,1,233,3,233,5400,8,233,1,234,1,234,3,234,5404, - 8,234,1,234,3,234,5407,8,234,1,234,1,234,1,234,3,234,5412,8,234, - 1,234,1,234,1,234,1,234,3,234,5418,8,234,1,234,1,234,1,234,1,234, - 1,234,1,234,1,234,1,234,1,234,3,234,5429,8,234,1,234,1,234,3,234, - 5433,8,234,1,234,3,234,5436,8,234,1,234,1,234,3,234,5440,8,234,1, - 234,1,234,3,234,5444,8,234,1,234,3,234,5447,8,234,1,235,1,235,1, - 236,1,236,1,236,1,236,1,236,1,236,3,236,5457,8,236,1,236,3,236,5460, - 8,236,1,237,1,237,3,237,5464,8,237,1,237,5,237,5467,8,237,10,237, - 12,237,5470,9,237,1,238,1,238,1,238,3,238,5475,8,238,1,238,3,238, - 5478,8,238,1,238,1,238,1,238,3,238,5483,8,238,1,238,3,238,5486,8, - 238,1,238,1,238,1,238,1,238,1,238,3,238,5493,8,238,3,238,5495,8, - 238,1,238,1,238,1,238,1,238,3,238,5501,8,238,1,238,1,238,3,238,5505, - 8,238,1,239,1,239,1,239,1,240,1,240,1,240,1,240,3,240,5514,8,240, - 1,240,4,240,5517,8,240,11,240,12,240,5518,3,240,5521,8,240,1,241, - 1,241,1,241,1,241,1,241,1,241,1,241,1,241,3,241,5531,8,241,1,241, - 3,241,5534,8,241,1,241,1,241,1,241,3,241,5539,8,241,1,242,1,242, - 1,242,1,242,1,242,1,242,3,242,5547,8,242,1,242,3,242,5550,8,242, - 1,242,4,242,5553,8,242,11,242,12,242,5554,3,242,5557,8,242,3,242, - 5559,8,242,1,243,1,243,1,243,1,243,3,243,5565,8,243,1,244,1,244, - 1,244,1,244,1,244,1,244,1,245,1,245,1,245,1,245,1,245,1,246,1,246, - 1,246,1,246,3,246,5582,8,246,1,246,1,246,5,246,5586,8,246,10,246, - 12,246,5589,9,246,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247, - 1,247,1,247,3,247,5601,8,247,1,247,1,247,1,247,1,247,3,247,5607, - 8,247,1,247,1,247,3,247,5611,8,247,1,247,1,247,1,247,3,247,5616, - 8,247,1,248,1,248,1,248,1,248,1,248,1,248,1,248,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,1,249,1,249,1,249,3,249,5646,8,249,1,249, + 1,227,1,227,1,227,1,227,1,227,3,227,5345,8,227,1,228,1,228,3,228, + 5349,8,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,1,228,3,228, + 5359,8,228,1,228,1,228,3,228,5363,8,228,1,228,1,228,1,228,1,228, + 3,228,5369,8,228,1,228,1,228,3,228,5373,8,228,5,228,5375,8,228,10, + 228,12,228,5378,9,228,1,228,3,228,5381,8,228,1,229,1,229,1,229,1, + 229,1,229,3,229,5388,8,229,1,230,1,230,1,230,3,230,5393,8,230,1, + 231,1,231,1,231,1,232,1,232,1,232,1,233,1,233,1,233,3,233,5404,8, + 233,1,234,1,234,3,234,5408,8,234,1,234,3,234,5411,8,234,1,234,1, + 234,1,234,3,234,5416,8,234,1,234,1,234,1,234,1,234,3,234,5422,8, + 234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,1,234,3,234, + 5433,8,234,1,234,1,234,3,234,5437,8,234,1,234,3,234,5440,8,234,1, + 234,1,234,3,234,5444,8,234,1,234,1,234,3,234,5448,8,234,1,234,3, + 234,5451,8,234,1,235,1,235,1,236,1,236,1,236,1,236,1,236,1,236,3, + 236,5461,8,236,1,236,3,236,5464,8,236,1,237,1,237,3,237,5468,8,237, + 1,237,5,237,5471,8,237,10,237,12,237,5474,9,237,1,238,1,238,1,238, + 3,238,5479,8,238,1,238,3,238,5482,8,238,1,238,1,238,1,238,3,238, + 5487,8,238,1,238,3,238,5490,8,238,1,238,1,238,1,238,1,238,1,238, + 3,238,5497,8,238,3,238,5499,8,238,1,238,1,238,1,238,1,238,3,238, + 5505,8,238,1,238,1,238,3,238,5509,8,238,1,239,1,239,1,239,1,240, + 1,240,1,240,1,240,3,240,5518,8,240,1,240,4,240,5521,8,240,11,240, + 12,240,5522,3,240,5525,8,240,1,241,1,241,1,241,1,241,1,241,1,241, + 1,241,1,241,3,241,5535,8,241,1,241,3,241,5538,8,241,1,241,1,241, + 1,241,3,241,5543,8,241,1,242,1,242,1,242,1,242,1,242,1,242,3,242, + 5551,8,242,1,242,3,242,5554,8,242,1,242,4,242,5557,8,242,11,242, + 12,242,5558,3,242,5561,8,242,3,242,5563,8,242,1,243,1,243,1,243, + 1,243,3,243,5569,8,243,1,244,1,244,1,244,1,244,1,244,1,244,1,245, + 1,245,1,245,1,245,1,245,1,246,1,246,1,246,1,246,3,246,5586,8,246, + 1,246,1,246,5,246,5590,8,246,10,246,12,246,5593,9,246,1,247,1,247, + 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,3,247,5605,8,247, + 1,247,1,247,1,247,1,247,3,247,5611,8,247,1,247,1,247,3,247,5615, + 8,247,1,247,1,247,1,247,3,247,5620,8,247,1,248,1,248,1,248,1,248, + 1,248,1,248,1,248,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249, 1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249,1,249, - 1,249,3,249,5661,8,249,1,249,1,249,1,249,3,249,5666,8,249,1,250, - 1,250,3,250,5670,8,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250, - 1,250,1,250,1,251,1,251,3,251,5683,8,251,1,251,1,251,3,251,5687, - 8,251,3,251,5689,8,251,1,251,1,251,1,251,1,251,1,251,5,251,5696, - 8,251,10,251,12,251,5699,9,251,1,251,1,251,1,251,3,251,5704,8,251, - 3,251,5706,8,251,1,252,1,252,3,252,5710,8,252,1,252,3,252,5713,8, - 252,1,252,3,252,5716,8,252,1,252,3,252,5719,8,252,1,252,3,252,5722, - 8,252,3,252,5724,8,252,1,252,3,252,5727,8,252,1,253,1,253,3,253, - 5731,8,253,1,253,1,253,1,253,1,253,5,253,5737,8,253,10,253,12,253, - 5740,9,253,1,253,1,253,3,253,5744,8,253,1,253,3,253,5747,8,253,1, - 254,1,254,1,255,1,255,3,255,5753,8,255,1,255,1,255,3,255,5757,8, - 255,1,256,1,256,3,256,5761,8,256,1,256,1,256,1,256,3,256,5766,8, - 256,3,256,5768,8,256,1,257,1,257,3,257,5772,8,257,1,258,1,258,3, - 258,5776,8,258,1,259,1,259,1,259,5,259,5781,8,259,10,259,12,259, - 5784,9,259,1,260,1,260,1,260,3,260,5789,8,260,1,260,1,260,3,260, - 5793,8,260,3,260,5795,8,260,3,260,5797,8,260,1,260,1,260,1,261,1, - 261,1,261,1,261,1,261,1,261,1,261,1,261,1,261,3,261,5810,8,261,1, - 262,1,262,1,262,1,262,5,262,5816,8,262,10,262,12,262,5819,9,262, - 1,262,1,262,1,263,1,263,1,263,3,263,5826,8,263,1,263,1,263,1,263, - 1,264,1,264,1,264,1,264,5,264,5835,8,264,10,264,12,264,5838,9,264, - 1,264,1,264,1,265,1,265,1,265,1,265,3,265,5846,8,265,1,266,1,266, - 1,266,3,266,5851,8,266,1,266,1,266,3,266,5855,8,266,1,266,1,266, - 3,266,5859,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5866,8,266, - 1,266,3,266,5869,8,266,3,266,5871,8,266,1,267,1,267,1,267,1,267, - 1,268,1,268,3,268,5879,8,268,1,268,1,268,3,268,5883,8,268,1,269, - 3,269,5886,8,269,1,269,1,269,1,269,1,269,1,269,3,269,5893,8,269, - 1,269,1,269,1,269,1,269,1,269,3,269,5900,8,269,1,269,1,269,1,269, - 3,269,5905,8,269,1,269,1,269,1,269,1,269,1,269,3,269,5912,8,269, - 1,269,3,269,5915,8,269,3,269,5917,8,269,1,269,3,269,5920,8,269,1, - 270,1,270,1,270,1,270,3,270,5926,8,270,1,270,1,270,1,270,3,270,5931, - 8,270,1,270,1,270,3,270,5935,8,270,1,271,1,271,1,271,5,271,5940, - 8,271,10,271,12,271,5943,9,271,1,272,1,272,1,272,1,273,1,273,1,273, - 1,274,3,274,5952,8,274,1,274,1,274,1,274,1,274,1,274,3,274,5959, - 8,274,1,274,3,274,5962,8,274,1,274,3,274,5965,8,274,1,275,1,275, - 3,275,5969,8,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, - 1,275,3,275,5980,8,275,1,275,3,275,5983,8,275,1,275,3,275,5986,8, - 275,1,275,3,275,5989,8,275,1,276,3,276,5992,8,276,1,276,1,276,1, - 276,1,276,1,276,3,276,5999,8,276,1,276,3,276,6002,8,276,1,276,3, - 276,6005,8,276,1,277,1,277,1,277,5,277,6010,8,277,10,277,12,277, - 6013,9,277,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278,1,278, - 3,278,6024,8,278,1,278,1,278,1,278,1,278,1,278,3,278,6031,8,278, - 3,278,6033,8,278,1,279,1,279,1,279,3,279,6038,8,279,1,279,1,279, - 1,279,5,279,6043,8,279,10,279,12,279,6046,9,279,1,279,1,279,1,279, - 3,279,6051,8,279,1,279,1,279,1,279,1,280,1,280,3,280,6058,8,280, - 1,281,1,281,1,281,3,281,6063,8,281,1,281,1,281,1,282,3,282,6068, - 8,282,1,282,1,282,3,282,6072,8,282,1,282,1,282,3,282,6076,8,282, - 1,282,1,282,3,282,6080,8,282,3,282,6082,8,282,1,283,1,283,3,283, - 6086,8,283,1,284,1,284,3,284,6090,8,284,1,284,3,284,6093,8,284,1, - 284,3,284,6096,8,284,3,284,6098,8,284,1,284,1,284,1,284,1,284,1, - 284,1,284,1,284,1,284,3,284,6108,8,284,3,284,6110,8,284,1,284,1, - 284,1,284,3,284,6115,8,284,5,284,6117,8,284,10,284,12,284,6120,9, - 284,1,285,1,285,3,285,6124,8,285,1,286,1,286,3,286,6128,8,286,1, - 286,1,286,1,286,5,286,6133,8,286,10,286,12,286,6136,9,286,1,287, - 1,287,3,287,6140,8,287,1,287,1,287,3,287,6144,8,287,1,287,3,287, - 6147,8,287,1,287,1,287,1,287,1,287,3,287,6153,8,287,1,287,3,287, - 6156,8,287,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,288,1,289, - 1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,3,289,6175,8,289, - 1,289,1,289,1,289,1,290,1,290,3,290,6182,8,290,1,290,1,290,3,290, - 6186,8,290,1,291,3,291,6189,8,291,1,291,1,291,3,291,6193,8,291,1, - 291,1,291,3,291,6197,8,291,1,291,3,291,6200,8,291,1,291,3,291,6203, - 8,291,1,292,1,292,1,292,3,292,6208,8,292,1,293,1,293,1,293,1,293, - 1,293,5,293,6215,8,293,10,293,12,293,6218,9,293,1,294,1,294,1,294, - 1,294,3,294,6224,8,294,1,294,1,294,3,294,6228,8,294,1,295,1,295, - 3,295,6232,8,295,1,295,1,295,3,295,6236,8,295,1,295,3,295,6239,8, - 295,3,295,6241,8,295,1,296,1,296,1,296,3,296,6246,8,296,1,296,1, - 296,3,296,6250,8,296,1,297,1,297,1,297,3,297,6255,8,297,1,297,1, - 297,1,297,1,297,3,297,6261,8,297,1,298,1,298,1,298,1,298,1,298,3, - 298,6268,8,298,1,299,1,299,1,299,3,299,6273,8,299,1,300,1,300,1, - 300,3,300,6278,8,300,1,300,1,300,1,301,1,301,1,301,5,301,6285,8, - 301,10,301,12,301,6288,9,301,1,302,1,302,1,302,1,302,3,302,6294, - 8,302,1,302,1,302,1,302,1,302,5,302,6300,8,302,10,302,12,302,6303, - 9,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,1,302,3,302,6313, - 8,302,1,303,1,303,1,303,3,303,6318,8,303,1,303,1,303,3,303,6322, - 8,303,1,303,3,303,6325,8,303,1,303,1,303,3,303,6329,8,303,1,303, - 1,303,1,303,3,303,6334,8,303,4,303,6336,8,303,11,303,12,303,6337, - 1,303,1,303,1,303,3,303,6343,8,303,1,304,1,304,1,304,1,304,5,304, - 6349,8,304,10,304,12,304,6352,9,304,1,305,1,305,1,305,1,306,1,306, - 1,306,5,306,6360,8,306,10,306,12,306,6363,9,306,1,307,1,307,3,307, - 6367,8,307,1,307,1,307,3,307,6371,8,307,1,307,3,307,6374,8,307,1, - 307,3,307,6377,8,307,3,307,6379,8,307,1,307,3,307,6382,8,307,1,307, - 3,307,6385,8,307,1,307,3,307,6388,8,307,1,307,1,307,3,307,6392,8, - 307,1,307,1,307,3,307,6396,8,307,1,307,1,307,3,307,6400,8,307,3, - 307,6402,8,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,3,307,6411, - 8,307,1,307,1,307,1,307,3,307,6416,8,307,1,307,1,307,1,307,1,307, - 3,307,6422,8,307,1,307,1,307,3,307,6426,8,307,3,307,6428,8,307,1, - 307,1,307,1,307,1,307,1,307,3,307,6435,8,307,1,307,1,307,1,307,3, - 307,6440,8,307,1,307,1,307,1,307,1,307,5,307,6446,8,307,10,307,12, - 307,6449,9,307,1,308,3,308,6452,8,308,1,308,1,308,1,308,1,308,1, - 308,3,308,6459,8,308,1,309,1,309,1,309,3,309,6464,8,309,1,309,3, - 309,6467,8,309,1,309,1,309,1,309,1,309,3,309,6473,8,309,1,310,1, - 310,3,310,6477,8,310,1,311,1,311,1,311,1,311,3,311,6483,8,311,1, - 312,1,312,1,312,1,312,1,312,1,312,1,312,3,312,6492,8,312,1,312,1, - 312,1,312,1,312,3,312,6498,8,312,3,312,6500,8,312,1,313,1,313,1, - 313,3,313,6505,8,313,1,313,3,313,6508,8,313,1,313,1,313,1,313,1, - 313,1,313,1,313,1,313,3,313,6517,8,313,1,313,1,313,1,313,1,313,1, - 313,3,313,6524,8,313,3,313,6526,8,313,1,314,1,314,1,314,5,314,6531, - 8,314,10,314,12,314,6534,9,314,1,315,1,315,3,315,6538,8,315,1,315, - 3,315,6541,8,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,1,316, - 3,316,6551,8,316,1,317,1,317,1,317,1,317,1,317,1,317,1,317,5,317, - 6560,8,317,10,317,12,317,6563,9,317,1,317,1,317,3,317,6567,8,317, - 1,317,1,317,3,317,6571,8,317,1,318,1,318,1,318,1,318,1,318,1,318, - 3,318,6579,8,318,1,319,1,319,1,319,1,320,1,320,1,320,1,320,1,320, - 3,320,6589,8,320,1,321,1,321,1,321,5,321,6594,8,321,10,321,12,321, - 6597,9,321,1,322,1,322,1,322,3,322,6602,8,322,1,323,1,323,1,323, - 1,323,1,323,1,323,1,323,5,323,6611,8,323,10,323,12,323,6614,9,323, - 1,323,1,323,1,323,3,323,6619,8,323,1,323,1,323,1,323,1,323,1,323, - 1,323,5,323,6627,8,323,10,323,12,323,6630,9,323,1,323,1,323,1,324, - 1,324,1,324,1,324,3,324,6638,8,324,1,324,1,324,3,324,6642,8,324, - 1,324,4,324,6645,8,324,11,324,12,324,6646,3,324,6649,8,324,1,324, - 1,324,3,324,6653,8,324,1,325,1,325,1,325,1,325,1,325,1,325,3,325, - 6661,8,325,1,326,3,326,6664,8,326,1,326,1,326,1,326,3,326,6669,8, - 326,1,326,5,326,6672,8,326,10,326,12,326,6675,9,326,1,326,1,326, - 1,326,1,326,3,326,6681,8,326,3,326,6683,8,326,1,326,1,326,1,326, - 1,326,3,326,6689,8,326,1,327,1,327,3,327,6693,8,327,1,327,3,327, - 6696,8,327,1,327,1,327,1,327,3,327,6701,8,327,1,327,3,327,6704,8, - 327,3,327,6706,8,327,1,328,1,328,1,328,1,328,3,328,6712,8,328,1, - 329,1,329,1,329,1,329,1,329,1,329,1,329,3,329,6721,8,329,1,329,1, - 329,1,329,1,329,3,329,6727,8,329,1,329,3,329,6730,8,329,1,330,1, - 330,1,330,1,330,1,331,1,331,3,331,6738,8,331,1,331,3,331,6741,8, - 331,1,332,1,332,3,332,6745,8,332,1,332,1,332,1,332,1,332,3,332,6751, - 8,332,3,332,6753,8,332,1,332,3,332,6756,8,332,1,333,1,333,3,333, - 6760,8,333,1,333,1,333,1,333,3,333,6765,8,333,1,334,1,334,1,334, - 1,334,1,334,3,334,6772,8,334,1,334,1,334,1,334,1,334,1,334,3,334, - 6779,8,334,3,334,6781,8,334,1,334,1,334,1,334,1,334,3,334,6787,8, - 334,3,334,6789,8,334,1,334,1,334,1,334,3,334,6794,8,334,3,334,6796, - 8,334,1,335,1,335,3,335,6800,8,335,1,336,1,336,1,337,1,337,1,338, - 1,338,1,338,3,338,6809,8,338,1,338,1,338,3,338,6813,8,338,1,338, - 1,338,1,338,1,338,1,338,1,338,5,338,6821,8,338,10,338,12,338,6824, - 9,338,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, - 1,339,3,339,6837,8,339,1,339,3,339,6840,8,339,1,339,1,339,1,339, - 1,339,1,339,1,339,3,339,6848,8,339,1,339,1,339,1,339,1,339,1,339, - 5,339,6855,8,339,10,339,12,339,6858,9,339,1,339,1,339,1,339,3,339, - 6863,8,339,1,339,1,339,1,339,3,339,6868,8,339,1,339,1,339,1,339, - 1,339,1,339,1,339,3,339,6876,8,339,3,339,6878,8,339,1,339,1,339, - 1,339,3,339,6883,8,339,1,339,1,339,3,339,6887,8,339,1,339,1,339, - 1,339,3,339,6892,8,339,1,339,1,339,1,339,3,339,6897,8,339,1,340, - 1,340,1,340,1,340,3,340,6903,8,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,5,340,6919, - 8,340,10,340,12,340,6922,9,340,1,341,1,341,1,341,1,341,1,341,1,341, - 3,341,6930,8,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341, - 1,341,1,341,1,341,1,341,1,341,3,341,6945,8,341,1,341,1,341,1,341, - 3,341,6950,8,341,1,341,3,341,6953,8,341,1,341,1,341,1,341,1,341, - 3,341,6959,8,341,1,341,1,341,1,341,3,341,6964,8,341,1,341,1,341, - 1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341,6977, - 8,341,1,341,4,341,6980,8,341,11,341,12,341,6981,1,341,1,341,3,341, - 6986,8,341,1,341,1,341,1,341,1,341,1,341,3,341,6993,8,341,1,341, - 1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341, - 1,341,1,341,1,341,1,341,1,341,3,341,7012,8,341,1,341,1,341,1,341, - 1,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341,7024,8,341,1,341, - 1,341,1,341,3,341,7029,8,341,1,341,1,341,1,341,1,341,1,341,1,341, - 3,341,7037,8,341,5,341,7039,8,341,10,341,12,341,7042,9,341,1,342, - 1,342,1,342,1,342,1,342,1,342,3,342,7050,8,342,1,342,3,342,7053, - 8,342,1,342,1,342,1,342,3,342,7058,8,342,1,342,1,342,1,342,3,342, - 7063,8,342,1,342,3,342,7066,8,342,1,342,1,342,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,3,343,7077,8,343,1,343,1,343,1,343,1,343, - 1,343,1,343,3,343,7085,8,343,1,343,1,343,1,343,3,343,7090,8,343, - 3,343,7092,8,343,1,343,3,343,7095,8,343,1,344,1,344,3,344,7099,8, - 344,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,3,345, - 7110,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,1,345,1,345,1,345,1,345,1,345,3,345, - 7131,8,345,1,345,1,345,1,345,1,345,1,345,1,345,3,345,7139,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,7152,8,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345, - 3,345,7162,8,345,1,345,1,345,1,345,1,345,3,345,7168,8,345,1,345, - 1,345,1,345,1,345,3,345,7174,8,345,1,345,3,345,7177,8,345,1,345, - 3,345,7180,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,1,345,1,345,1,345,1,345,1,345, - 1,345,1,345,1,345,1,345,1,345,3,345,7206,8,345,3,345,7208,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,1,345,1,345,1,345,1,345,1,345,3,345,7229,8,345, - 1,345,1,345,1,345,1,345,1,345,1,345,1,345,1,345,3,345,7239,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,7252,8,345,1,345,1,345,1,345,3,345,7257,8,345,1,345,1,345, - 3,345,7261,8,345,3,345,7263,8,345,1,345,1,345,1,345,1,345,1,345, - 1,345,1,345,1,345,1,345,1,345,3,345,7275,8,345,1,346,1,346,1,346, - 5,346,7280,8,346,10,346,12,346,7283,9,346,1,347,1,347,1,347,3,347, - 7288,8,347,1,348,1,348,1,349,1,349,3,349,7294,8,349,1,349,1,349, - 3,349,7298,8,349,1,350,1,350,1,350,1,351,1,351,1,351,1,351,5,351, - 7307,8,351,10,351,12,351,7310,9,351,1,352,1,352,1,352,1,352,1,353, - 1,353,1,353,3,353,7319,8,353,1,354,1,354,3,354,7323,8,354,1,354, - 1,354,1,354,3,354,7328,8,354,1,354,3,354,7331,8,354,1,354,3,354, - 7334,8,354,1,354,1,354,1,355,1,355,1,355,1,355,1,355,3,355,7343, - 8,355,1,355,1,355,1,355,1,355,1,355,1,355,1,355,1,355,1,355,3,355, - 7354,8,355,3,355,7356,8,355,1,356,1,356,3,356,7360,8,356,1,356,1, - 356,1,356,3,356,7365,8,356,1,357,1,357,1,357,1,357,1,357,1,357,1, - 357,3,357,7374,8,357,1,358,1,358,1,358,3,358,7379,8,358,1,358,1, - 358,1,359,1,359,1,360,1,360,3,360,7387,8,360,1,361,1,361,1,362,1, - 362,1,362,1,362,1,362,1,362,3,362,7397,8,362,1,363,1,363,1,363,1, - 363,1,363,1,363,3,363,7405,8,363,1,364,1,364,3,364,7409,8,364,1, - 364,3,364,7412,8,364,1,365,1,365,1,365,5,365,7417,8,365,10,365,12, - 365,7420,9,365,1,366,1,366,1,366,1,366,1,366,3,366,7427,8,366,1, - 367,1,367,3,367,7431,8,367,1,368,1,368,1,368,5,368,7436,8,368,10, - 368,12,368,7439,9,368,1,369,1,369,1,369,1,369,1,369,3,369,7446,8, - 369,3,369,7448,8,369,1,370,1,370,1,370,1,370,1,370,5,370,7455,8, - 370,10,370,12,370,7458,9,370,3,370,7460,8,370,1,370,1,370,1,371, - 1,371,1,371,1,371,1,371,1,371,1,371,1,371,3,371,7472,8,371,1,372, - 1,372,1,373,1,373,1,373,1,373,1,373,3,373,7481,8,373,1,373,1,373, - 1,373,1,373,1,373,3,373,7488,8,373,1,373,1,373,1,373,1,373,1,373, - 1,373,1,373,3,373,7497,8,373,1,374,1,374,1,374,1,374,1,374,1,375, - 1,375,1,375,3,375,7507,8,375,1,375,1,375,1,375,3,375,7512,8,375, - 1,375,1,375,3,375,7516,8,375,3,375,7518,8,375,1,375,3,375,7521,8, - 375,1,376,4,376,7524,8,376,11,376,12,376,7525,1,377,5,377,7529,8, - 377,10,377,12,377,7532,9,377,1,378,1,378,1,378,5,378,7537,8,378, - 10,378,12,378,7540,9,378,1,379,1,379,1,379,1,379,1,379,3,379,7547, - 8,379,1,379,3,379,7550,8,379,1,380,1,380,1,380,5,380,7555,8,380, - 10,380,12,380,7558,9,380,1,381,1,381,1,381,5,381,7563,8,381,10,381, - 12,381,7566,9,381,1,382,1,382,1,382,5,382,7571,8,382,10,382,12,382, + 1,249,1,249,3,249,5650,8,249,1,249,1,249,1,249,1,249,1,249,1,249, + 1,249,1,249,1,249,1,249,1,249,1,249,1,249,3,249,5665,8,249,1,249, + 1,249,1,249,3,249,5670,8,249,1,250,1,250,3,250,5674,8,250,1,250, + 1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,250,1,251,1,251,3,251, + 5687,8,251,1,251,1,251,3,251,5691,8,251,3,251,5693,8,251,1,251,1, + 251,1,251,1,251,1,251,5,251,5700,8,251,10,251,12,251,5703,9,251, + 1,251,1,251,1,251,3,251,5708,8,251,3,251,5710,8,251,1,252,1,252, + 3,252,5714,8,252,1,252,3,252,5717,8,252,1,252,3,252,5720,8,252,1, + 252,3,252,5723,8,252,1,252,3,252,5726,8,252,3,252,5728,8,252,1,252, + 3,252,5731,8,252,1,253,1,253,3,253,5735,8,253,1,253,1,253,1,253, + 1,253,5,253,5741,8,253,10,253,12,253,5744,9,253,1,253,1,253,3,253, + 5748,8,253,1,253,3,253,5751,8,253,1,254,1,254,1,255,1,255,3,255, + 5757,8,255,1,255,1,255,3,255,5761,8,255,1,256,1,256,3,256,5765,8, + 256,1,256,1,256,1,256,3,256,5770,8,256,3,256,5772,8,256,1,257,1, + 257,3,257,5776,8,257,1,258,1,258,3,258,5780,8,258,1,259,1,259,1, + 259,5,259,5785,8,259,10,259,12,259,5788,9,259,1,260,1,260,1,260, + 3,260,5793,8,260,1,260,1,260,3,260,5797,8,260,3,260,5799,8,260,3, + 260,5801,8,260,1,260,1,260,1,261,1,261,1,261,1,261,1,261,1,261,1, + 261,1,261,1,261,3,261,5814,8,261,1,262,1,262,1,262,1,262,5,262,5820, + 8,262,10,262,12,262,5823,9,262,1,262,1,262,1,263,1,263,1,263,3,263, + 5830,8,263,1,263,1,263,1,263,1,264,1,264,1,264,1,264,5,264,5839, + 8,264,10,264,12,264,5842,9,264,1,264,1,264,1,265,1,265,1,265,1,265, + 3,265,5850,8,265,1,266,1,266,1,266,3,266,5855,8,266,1,266,1,266, + 3,266,5859,8,266,1,266,1,266,3,266,5863,8,266,1,266,1,266,1,266, + 1,266,1,266,3,266,5870,8,266,1,266,3,266,5873,8,266,3,266,5875,8, + 266,1,267,1,267,1,267,1,267,1,268,1,268,3,268,5883,8,268,1,268,1, + 268,3,268,5887,8,268,1,269,3,269,5890,8,269,1,269,1,269,1,269,1, + 269,1,269,3,269,5897,8,269,1,269,1,269,1,269,1,269,1,269,3,269,5904, + 8,269,1,269,1,269,1,269,3,269,5909,8,269,1,269,1,269,1,269,1,269, + 1,269,3,269,5916,8,269,1,269,3,269,5919,8,269,3,269,5921,8,269,1, + 269,3,269,5924,8,269,1,270,1,270,1,270,1,270,3,270,5930,8,270,1, + 270,1,270,1,270,3,270,5935,8,270,1,270,1,270,3,270,5939,8,270,1, + 271,1,271,1,271,5,271,5944,8,271,10,271,12,271,5947,9,271,1,272, + 1,272,1,272,1,273,1,273,1,273,1,274,3,274,5956,8,274,1,274,1,274, + 1,274,1,274,1,274,3,274,5963,8,274,1,274,3,274,5966,8,274,1,274, + 3,274,5969,8,274,1,275,1,275,3,275,5973,8,275,1,275,1,275,1,275, + 1,275,1,275,1,275,1,275,1,275,1,275,3,275,5984,8,275,1,275,3,275, + 5987,8,275,1,275,3,275,5990,8,275,1,275,3,275,5993,8,275,1,276,3, + 276,5996,8,276,1,276,1,276,1,276,1,276,1,276,3,276,6003,8,276,1, + 276,3,276,6006,8,276,1,276,3,276,6009,8,276,1,277,1,277,1,277,5, + 277,6014,8,277,10,277,12,277,6017,9,277,1,278,1,278,1,278,1,278, + 1,278,1,278,1,278,1,278,1,278,3,278,6028,8,278,1,278,1,278,1,278, + 1,278,1,278,3,278,6035,8,278,3,278,6037,8,278,1,279,1,279,1,279, + 3,279,6042,8,279,1,279,1,279,1,279,5,279,6047,8,279,10,279,12,279, + 6050,9,279,1,279,1,279,1,279,3,279,6055,8,279,1,279,1,279,1,279, + 1,280,1,280,3,280,6062,8,280,1,281,1,281,1,281,3,281,6067,8,281, + 1,281,1,281,1,282,3,282,6072,8,282,1,282,1,282,3,282,6076,8,282, + 1,282,1,282,3,282,6080,8,282,1,282,1,282,3,282,6084,8,282,3,282, + 6086,8,282,1,283,1,283,3,283,6090,8,283,1,284,1,284,3,284,6094,8, + 284,1,284,3,284,6097,8,284,1,284,3,284,6100,8,284,3,284,6102,8,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,3,284,6112,8,284, + 3,284,6114,8,284,1,284,1,284,1,284,3,284,6119,8,284,5,284,6121,8, + 284,10,284,12,284,6124,9,284,1,285,1,285,3,285,6128,8,285,1,286, + 1,286,3,286,6132,8,286,1,286,1,286,1,286,5,286,6137,8,286,10,286, + 12,286,6140,9,286,1,287,1,287,3,287,6144,8,287,1,287,1,287,3,287, + 6148,8,287,1,287,3,287,6151,8,287,1,287,1,287,1,287,1,287,3,287, + 6157,8,287,1,287,3,287,6160,8,287,1,288,1,288,1,288,1,288,1,288, + 1,288,1,288,1,288,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289, + 1,289,3,289,6179,8,289,1,289,1,289,1,289,1,290,1,290,3,290,6186, + 8,290,1,290,1,290,3,290,6190,8,290,1,291,3,291,6193,8,291,1,291, + 1,291,3,291,6197,8,291,1,291,1,291,3,291,6201,8,291,1,291,3,291, + 6204,8,291,1,291,3,291,6207,8,291,1,292,1,292,1,292,3,292,6212,8, + 292,1,293,1,293,1,293,1,293,1,293,5,293,6219,8,293,10,293,12,293, + 6222,9,293,1,294,1,294,1,294,1,294,3,294,6228,8,294,1,294,1,294, + 3,294,6232,8,294,1,295,1,295,3,295,6236,8,295,1,295,1,295,3,295, + 6240,8,295,1,295,3,295,6243,8,295,3,295,6245,8,295,1,296,1,296,1, + 296,3,296,6250,8,296,1,296,1,296,3,296,6254,8,296,1,297,1,297,1, + 297,3,297,6259,8,297,1,297,1,297,1,297,1,297,3,297,6265,8,297,1, + 298,1,298,1,298,1,298,1,298,3,298,6272,8,298,1,299,1,299,1,299,3, + 299,6277,8,299,1,300,1,300,1,300,3,300,6282,8,300,1,300,1,300,1, + 301,1,301,1,301,5,301,6289,8,301,10,301,12,301,6292,9,301,1,302, + 1,302,1,302,1,302,3,302,6298,8,302,1,302,1,302,1,302,1,302,5,302, + 6304,8,302,10,302,12,302,6307,9,302,1,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,302,3,302,6317,8,302,1,303,1,303,1,303,3,303,6322, + 8,303,1,303,1,303,3,303,6326,8,303,1,303,3,303,6329,8,303,1,303, + 1,303,3,303,6333,8,303,1,303,1,303,1,303,3,303,6338,8,303,4,303, + 6340,8,303,11,303,12,303,6341,1,303,1,303,1,303,3,303,6347,8,303, + 1,304,1,304,1,304,1,304,5,304,6353,8,304,10,304,12,304,6356,9,304, + 1,305,1,305,1,305,1,306,1,306,1,306,5,306,6364,8,306,10,306,12,306, + 6367,9,306,1,307,1,307,3,307,6371,8,307,1,307,1,307,3,307,6375,8, + 307,1,307,3,307,6378,8,307,1,307,3,307,6381,8,307,3,307,6383,8,307, + 1,307,3,307,6386,8,307,1,307,3,307,6389,8,307,1,307,3,307,6392,8, + 307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,1,307,3,307,6402,8, + 307,1,307,1,307,1,307,3,307,6407,8,307,1,307,1,307,1,307,1,307,3, + 307,6413,8,307,1,307,1,307,3,307,6417,8,307,3,307,6419,8,307,1,307, + 1,307,1,307,1,307,1,307,3,307,6426,8,307,1,307,1,307,1,307,3,307, + 6431,8,307,1,307,1,307,1,307,1,307,5,307,6437,8,307,10,307,12,307, + 6440,9,307,1,308,1,308,3,308,6444,8,308,1,308,1,308,3,308,6448,8, + 308,1,308,1,308,3,308,6452,8,308,3,308,6454,8,308,1,309,3,309,6457, + 8,309,1,309,1,309,1,309,1,309,1,309,3,309,6464,8,309,1,310,1,310, + 1,310,3,310,6469,8,310,1,310,3,310,6472,8,310,1,310,1,310,1,310, + 1,310,3,310,6478,8,310,1,311,1,311,3,311,6482,8,311,1,312,1,312, + 1,312,1,312,3,312,6488,8,312,1,313,1,313,1,313,1,313,1,313,1,313, + 1,313,3,313,6497,8,313,1,313,1,313,1,313,1,313,3,313,6503,8,313, + 3,313,6505,8,313,1,314,1,314,1,314,3,314,6510,8,314,1,314,3,314, + 6513,8,314,1,314,1,314,1,314,1,314,1,314,1,314,1,314,3,314,6522, + 8,314,1,314,1,314,1,314,1,314,1,314,3,314,6529,8,314,3,314,6531, + 8,314,1,315,1,315,1,315,5,315,6536,8,315,10,315,12,315,6539,9,315, + 1,316,1,316,3,316,6543,8,316,1,316,3,316,6546,8,316,1,317,1,317, + 1,317,1,317,1,317,1,317,1,317,1,317,3,317,6556,8,317,1,318,1,318, + 1,318,1,318,1,318,1,318,1,318,5,318,6565,8,318,10,318,12,318,6568, + 9,318,1,318,1,318,3,318,6572,8,318,1,318,1,318,3,318,6576,8,318, + 1,319,1,319,1,319,1,319,1,319,1,319,3,319,6584,8,319,1,320,1,320, + 1,320,1,321,1,321,1,321,1,321,1,321,3,321,6594,8,321,1,322,1,322, + 1,322,5,322,6599,8,322,10,322,12,322,6602,9,322,1,323,1,323,1,323, + 3,323,6607,8,323,1,324,1,324,1,324,1,324,1,324,1,324,1,324,5,324, + 6616,8,324,10,324,12,324,6619,9,324,1,324,1,324,1,324,3,324,6624, + 8,324,1,324,1,324,1,324,1,324,1,324,1,324,5,324,6632,8,324,10,324, + 12,324,6635,9,324,1,324,1,324,1,325,1,325,1,325,1,325,3,325,6643, + 8,325,1,325,1,325,3,325,6647,8,325,1,325,4,325,6650,8,325,11,325, + 12,325,6651,3,325,6654,8,325,1,325,1,325,3,325,6658,8,325,1,326, + 1,326,1,326,1,326,1,326,1,326,3,326,6666,8,326,1,327,3,327,6669, + 8,327,1,327,1,327,1,327,3,327,6674,8,327,1,327,5,327,6677,8,327, + 10,327,12,327,6680,9,327,1,327,1,327,1,327,1,327,3,327,6686,8,327, + 3,327,6688,8,327,1,327,1,327,1,327,1,327,3,327,6694,8,327,1,328, + 1,328,3,328,6698,8,328,1,328,3,328,6701,8,328,1,328,1,328,1,328, + 3,328,6706,8,328,1,328,3,328,6709,8,328,3,328,6711,8,328,1,329,1, + 329,1,329,1,329,3,329,6717,8,329,1,330,1,330,1,330,1,330,1,330,1, + 330,1,330,3,330,6726,8,330,1,330,1,330,1,330,1,330,3,330,6732,8, + 330,1,330,3,330,6735,8,330,1,331,1,331,1,331,1,331,1,332,1,332,3, + 332,6743,8,332,1,332,3,332,6746,8,332,1,333,1,333,3,333,6750,8,333, + 1,333,1,333,1,333,1,333,3,333,6756,8,333,3,333,6758,8,333,1,333, + 3,333,6761,8,333,1,334,1,334,3,334,6765,8,334,1,334,1,334,1,334, + 3,334,6770,8,334,1,335,1,335,1,335,1,335,1,335,3,335,6777,8,335, + 1,335,1,335,1,335,1,335,1,335,3,335,6784,8,335,3,335,6786,8,335, + 1,335,1,335,1,335,1,335,3,335,6792,8,335,3,335,6794,8,335,1,335, + 1,335,1,335,3,335,6799,8,335,3,335,6801,8,335,1,336,1,336,3,336, + 6805,8,336,1,337,1,337,1,338,1,338,1,339,1,339,1,339,3,339,6814, + 8,339,1,339,1,339,3,339,6818,8,339,1,339,1,339,1,339,1,339,1,339, + 1,339,5,339,6826,8,339,10,339,12,339,6829,9,339,1,340,1,340,1,340, + 1,340,1,340,1,340,1,340,1,340,1,340,1,340,1,340,3,340,6842,8,340, + 1,340,3,340,6845,8,340,1,340,1,340,1,340,1,340,1,340,1,340,3,340, + 6853,8,340,1,340,1,340,1,340,1,340,1,340,5,340,6860,8,340,10,340, + 12,340,6863,9,340,1,340,1,340,1,340,3,340,6868,8,340,1,340,1,340, + 1,340,3,340,6873,8,340,1,340,1,340,1,340,1,340,1,340,1,340,3,340, + 6881,8,340,3,340,6883,8,340,1,340,1,340,1,340,3,340,6888,8,340,1, + 340,1,340,3,340,6892,8,340,1,340,1,340,1,340,3,340,6897,8,340,1, + 340,1,340,1,340,3,340,6902,8,340,1,341,1,341,1,341,1,341,3,341,6908, + 8,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341,1,341, + 1,341,1,341,1,341,1,341,5,341,6924,8,341,10,341,12,341,6927,9,341, + 1,342,1,342,1,342,1,342,1,342,1,342,3,342,6935,8,342,1,342,1,342, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 3,342,6950,8,342,1,342,1,342,1,342,3,342,6955,8,342,1,342,3,342, + 6958,8,342,1,342,1,342,1,342,1,342,3,342,6964,8,342,1,342,1,342, + 1,342,3,342,6969,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,1,342,1,342,1,342,3,342,6982,8,342,1,342,4,342,6985,8,342, + 11,342,12,342,6986,1,342,1,342,3,342,6991,8,342,1,342,1,342,1,342, + 1,342,1,342,3,342,6998,8,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 3,342,7017,8,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342,1,342, + 1,342,1,342,3,342,7029,8,342,1,342,1,342,1,342,3,342,7034,8,342, + 1,342,1,342,1,342,1,342,1,342,1,342,3,342,7042,8,342,5,342,7044, + 8,342,10,342,12,342,7047,9,342,1,343,1,343,1,343,1,343,1,343,1,343, + 3,343,7055,8,343,1,343,3,343,7058,8,343,1,343,1,343,1,343,3,343, + 7063,8,343,1,343,1,343,1,343,3,343,7068,8,343,1,343,3,343,7071,8, + 343,1,343,1,343,1,344,1,344,1,344,1,344,1,344,1,344,1,344,3,344, + 7082,8,344,1,344,1,344,1,344,1,344,1,344,1,344,3,344,7090,8,344, + 1,344,1,344,1,344,3,344,7095,8,344,3,344,7097,8,344,1,344,3,344, + 7100,8,344,1,345,1,345,3,345,7104,8,345,1,346,1,346,1,346,1,346, + 1,346,1,346,1,346,1,346,1,346,3,346,7115,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,3,346,7136,8,346,1,346,1,346,1,346, + 1,346,1,346,1,346,3,346,7144,8,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,7157,8,346,1,346,1,346, + 1,346,1,346,1,346,1,346,1,346,1,346,3,346,7167,8,346,1,346,1,346, + 1,346,1,346,3,346,7173,8,346,1,346,1,346,1,346,1,346,3,346,7179, + 8,346,1,346,3,346,7182,8,346,1,346,3,346,7185,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,1,346,1,346,1,346,1,346,1,346, + 3,346,7211,8,346,3,346,7213,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,3,346,7234,8,346,1,346,1,346,1,346,1,346,1,346, + 1,346,1,346,1,346,3,346,7244,8,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,7257,8,346,1,346,1,346, + 1,346,3,346,7262,8,346,1,346,1,346,3,346,7266,8,346,3,346,7268,8, + 346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346,1,346, + 3,346,7280,8,346,1,347,1,347,1,347,5,347,7285,8,347,10,347,12,347, + 7288,9,347,1,348,1,348,1,348,3,348,7293,8,348,1,349,1,349,1,350, + 1,350,3,350,7299,8,350,1,350,1,350,3,350,7303,8,350,1,351,1,351, + 1,351,1,352,1,352,1,352,1,352,5,352,7312,8,352,10,352,12,352,7315, + 9,352,1,353,1,353,1,353,1,353,1,354,1,354,1,354,3,354,7324,8,354, + 1,355,1,355,3,355,7328,8,355,1,355,1,355,1,355,3,355,7333,8,355, + 1,355,3,355,7336,8,355,1,355,3,355,7339,8,355,1,355,1,355,1,356, + 1,356,1,356,1,356,1,356,3,356,7348,8,356,1,356,1,356,1,356,1,356, + 1,356,1,356,1,356,1,356,1,356,3,356,7359,8,356,3,356,7361,8,356, + 1,357,1,357,3,357,7365,8,357,1,357,1,357,1,357,3,357,7370,8,357, + 1,358,1,358,1,358,1,358,1,358,1,358,1,358,3,358,7379,8,358,1,359, + 1,359,1,359,3,359,7384,8,359,1,359,1,359,1,360,1,360,1,361,1,361, + 3,361,7392,8,361,1,362,1,362,1,363,1,363,1,363,1,363,1,363,1,363, + 3,363,7402,8,363,1,364,1,364,1,364,1,364,1,364,1,364,3,364,7410, + 8,364,1,365,1,365,3,365,7414,8,365,1,365,3,365,7417,8,365,1,366, + 1,366,1,366,5,366,7422,8,366,10,366,12,366,7425,9,366,1,367,1,367, + 1,367,1,367,1,367,3,367,7432,8,367,1,368,1,368,3,368,7436,8,368, + 1,369,1,369,1,369,5,369,7441,8,369,10,369,12,369,7444,9,369,1,370, + 1,370,1,370,1,370,1,370,3,370,7451,8,370,3,370,7453,8,370,1,371, + 1,371,1,371,1,371,1,371,5,371,7460,8,371,10,371,12,371,7463,9,371, + 3,371,7465,8,371,1,371,1,371,1,372,1,372,1,372,1,372,1,372,1,372, + 1,372,1,372,3,372,7477,8,372,1,373,1,373,1,374,1,374,1,374,1,374, + 1,374,3,374,7486,8,374,1,374,1,374,1,374,1,374,1,374,3,374,7493, + 8,374,1,374,1,374,1,374,1,374,1,374,1,374,1,374,3,374,7502,8,374, + 1,375,1,375,1,375,1,375,1,375,1,376,1,376,1,376,3,376,7512,8,376, + 1,376,1,376,1,376,3,376,7517,8,376,1,376,1,376,3,376,7521,8,376, + 3,376,7523,8,376,1,376,3,376,7526,8,376,1,377,4,377,7529,8,377,11, + 377,12,377,7530,1,378,5,378,7534,8,378,10,378,12,378,7537,9,378, + 1,379,1,379,1,379,5,379,7542,8,379,10,379,12,379,7545,9,379,1,380, + 1,380,1,380,3,380,7550,8,380,1,380,1,380,3,380,7554,8,380,3,380, + 7556,8,380,1,381,1,381,1,381,5,381,7561,8,381,10,381,12,381,7564, + 9,381,1,381,1,381,1,382,1,382,1,382,5,382,7571,8,382,10,382,12,382, 7574,9,382,1,383,1,383,1,383,5,383,7579,8,383,10,383,12,383,7582, - 9,383,1,384,1,384,1,385,1,385,1,386,1,386,1,387,1,387,1,388,1,388, - 1,389,1,389,1,390,1,390,3,390,7598,8,390,1,391,1,391,1,391,5,391, - 7603,8,391,10,391,12,391,7606,9,391,1,392,1,392,1,392,5,392,7611, - 8,392,10,392,12,392,7614,9,392,1,393,1,393,1,394,1,394,1,395,1,395, - 1,396,1,396,1,397,1,397,1,398,1,398,1,398,1,398,3,398,7630,8,398, - 1,399,1,399,1,399,1,399,3,399,7636,8,399,1,400,1,400,1,400,1,400, - 3,400,7642,8,400,1,401,1,401,1,402,1,402,1,402,1,402,3,402,7650, - 8,402,1,403,1,403,1,403,1,403,3,403,7656,8,403,1,404,1,404,1,404, - 3,404,7661,8,404,1,405,1,405,1,405,1,405,5,405,7667,8,405,10,405, - 12,405,7670,9,405,1,405,1,405,3,405,7674,8,405,1,406,3,406,7677, - 8,406,1,406,1,406,1,407,1,407,1,407,1,407,1,407,3,407,7686,8,407, - 1,408,1,408,1,408,5,408,7691,8,408,10,408,12,408,7694,9,408,1,409, - 1,409,3,409,7698,8,409,1,410,1,410,3,410,7702,8,410,1,411,1,411, - 1,411,3,411,7707,8,411,1,412,1,412,1,412,1,412,3,412,7713,8,412, - 1,413,1,413,1,413,3,413,7718,8,413,1,413,1,413,1,413,1,413,1,413, - 1,413,3,413,7726,8,413,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, - 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,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,1,415, - 1,415,1,415,3,415,7781,8,415,1,416,1,416,1,417,1,417,1,418,3,418, - 7788,8,418,1,418,1,418,1,418,1,418,4,418,7794,8,418,11,418,12,418, - 7795,3,418,7798,8,418,3,418,7800,8,418,1,418,1,418,5,418,7804,8, - 418,10,418,12,418,7807,9,418,1,418,3,418,7810,8,418,1,418,1,418, - 3,418,7814,8,418,1,419,1,419,1,419,1,419,1,420,1,420,1,420,1,420, - 1,420,3,420,7825,8,420,1,420,3,420,7828,8,420,1,420,1,420,3,420, - 7832,8,420,1,420,1,420,3,420,7836,8,420,1,420,1,420,3,420,7840,8, - 420,1,420,3,420,7843,8,420,1,420,3,420,7846,8,420,1,420,3,420,7849, - 8,420,1,420,1,420,1,420,1,420,1,420,5,420,7856,8,420,10,420,12,420, - 7859,9,420,1,420,1,420,3,420,7863,8,420,1,420,1,420,3,420,7867,8, - 420,1,420,1,420,1,421,1,421,1,421,1,422,1,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,1,423, - 1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,1,423,3,423, - 7900,8,423,1,424,1,424,1,424,1,424,1,425,1,425,1,425,1,425,3,425, - 7910,8,425,1,425,1,425,3,425,7914,8,425,1,425,1,425,1,425,1,425, - 3,425,7920,8,425,1,425,1,425,1,425,3,425,7925,8,425,1,426,1,426, - 1,426,1,426,1,426,1,427,1,427,3,427,7934,8,427,1,427,1,427,1,427, - 1,427,5,427,7940,8,427,10,427,12,427,7943,9,427,1,427,1,427,1,428, - 1,428,1,428,1,428,1,429,1,429,3,429,7953,8,429,1,429,1,429,1,429, - 1,429,5,429,7959,8,429,10,429,12,429,7962,9,429,1,430,1,430,1,430, - 1,430,5,430,7968,8,430,10,430,12,430,7971,9,430,1,430,1,430,1,430, - 1,430,5,430,7977,8,430,10,430,12,430,7980,9,430,5,430,7982,8,430, - 10,430,12,430,7985,9,430,1,430,3,430,7988,8,430,1,430,1,430,1,430, - 1,430,1,431,1,431,5,431,7996,8,431,10,431,12,431,7999,9,431,1,432, - 1,432,3,432,8003,8,432,1,432,1,432,1,432,1,432,5,432,8009,8,432, - 10,432,12,432,8012,9,432,4,432,8014,8,432,11,432,12,432,8015,1,432, - 3,432,8019,8,432,1,432,1,432,1,432,1,432,1,433,3,433,8026,8,433, - 1,433,1,433,1,433,1,433,3,433,8032,8,433,1,433,1,433,1,434,1,434, - 1,434,1,434,3,434,8040,8,434,1,434,1,434,1,434,1,434,1,434,1,434, - 3,434,8048,8,434,1,434,3,434,8051,8,434,1,434,1,434,1,434,1,434, - 1,434,3,434,8058,8,434,3,434,8060,8,434,1,435,3,435,8063,8,435,1, - 435,1,435,1,435,1,435,3,435,8069,8,435,1,435,1,435,1,435,1,435,1, - 435,1,436,1,436,3,436,8078,8,436,1,436,1,436,3,436,8082,8,436,1, - 436,1,436,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437,1,437, - 1,437,3,437,8096,8,437,1,437,3,437,8099,8,437,3,437,8101,8,437,1, - 437,1,437,1,438,1,438,3,438,8107,8,438,1,438,1,438,1,438,1,438,1, - 438,1,438,4,438,8115,8,438,11,438,12,438,8116,3,438,8119,8,438,3, - 438,8121,8,438,1,438,1,438,1,438,1,438,5,438,8127,8,438,10,438,12, - 438,8130,9,438,3,438,8132,8,438,1,438,3,438,8135,8,438,1,439,1,439, - 1,439,1,439,1,440,1,440,1,440,1,440,3,440,8145,8,440,1,440,1,440, - 1,441,1,441,5,441,8151,8,441,10,441,12,441,8154,9,441,1,441,1,441, - 1,441,3,441,8159,8,441,1,441,1,441,1,442,1,442,3,442,8165,8,442, - 1,442,1,442,1,443,1,443,1,443,3,443,8172,8,443,1,443,1,443,3,443, - 8176,8,443,1,443,1,443,3,443,8180,8,443,1,443,3,443,8183,8,443,1, - 443,3,443,8186,8,443,1,443,1,443,1,444,1,444,3,444,8192,8,444,1, - 444,1,444,1,445,1,445,1,445,3,445,8199,8,445,1,445,3,445,8202,8, - 445,1,445,1,445,1,445,1,445,1,445,1,445,3,445,8210,8,445,3,445,8212, - 8,445,1,445,1,445,1,445,1,445,1,445,5,445,8219,8,445,10,445,12,445, - 8222,9,445,1,445,1,445,3,445,8226,8,445,3,445,8228,8,445,1,445,1, - 445,1,446,1,446,1,446,3,446,8235,8,446,1,446,1,446,1,447,1,447,3, - 447,8241,8,447,1,447,3,447,8244,8,447,1,447,1,447,1,447,1,447,1, - 447,1,448,1,448,1,448,1,448,1,448,3,448,8256,8,448,1,448,1,448,1, - 448,1,448,1,448,3,448,8263,8,448,3,448,8265,8,448,1,449,1,449,3, - 449,8269,8,449,1,449,1,449,1,449,1,450,3,450,8275,8,450,1,450,1, - 450,1,450,3,450,8280,8,450,1,450,1,450,3,450,8284,8,450,1,450,3, - 450,8287,8,450,1,450,3,450,8290,8,450,1,450,1,450,1,450,1,450,1, - 450,4,450,8297,8,450,11,450,12,450,8298,1,451,3,451,8302,8,451,1, - 451,1,451,3,451,8306,8,451,1,451,1,451,3,451,8310,8,451,3,451,8312, - 8,451,1,451,3,451,8315,8,451,1,451,3,451,8318,8,451,1,452,1,452, - 1,452,1,452,3,452,8324,8,452,1,452,1,452,1,452,1,452,1,452,3,452, - 8331,8,452,1,452,1,452,1,452,1,452,1,452,3,452,8338,8,452,1,452, - 1,452,1,452,1,452,3,452,8344,8,452,3,452,8346,8,452,1,453,1,453, - 3,453,8350,8,453,1,453,1,453,1,453,3,453,8355,8,453,1,453,1,453, - 1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454,1,454, - 1,454,5,454,8371,8,454,10,454,12,454,8374,9,454,1,454,1,454,4,454, - 8378,8,454,11,454,12,454,8379,1,455,1,455,1,455,1,455,1,455,5,455, - 8387,8,455,10,455,12,455,8390,9,455,1,455,1,455,1,455,1,455,3,455, - 8396,8,455,1,456,1,456,3,456,8400,8,456,1,457,1,457,1,457,1,457, - 1,458,1,458,1,458,1,459,1,459,1,459,3,459,8412,8,459,1,459,3,459, - 8415,8,459,1,459,1,459,1,460,1,460,1,460,1,460,1,460,1,460,1,460, - 1,460,1,460,3,460,8428,8,460,1,460,3,460,8431,8,460,1,461,1,461, - 3,461,8435,8,461,1,462,1,462,1,462,1,462,1,462,5,462,8442,8,462, - 10,462,12,462,8445,9,462,1,462,1,462,5,462,8449,8,462,10,462,12, - 462,8452,9,462,4,462,8454,8,462,11,462,12,462,8455,1,463,1,463,1, - 463,3,463,8461,8,463,1,464,1,464,3,464,8465,8,464,1,465,3,465,8468, - 8,465,1,465,3,465,8471,8,465,1,465,3,465,8474,8,465,1,465,3,465, - 8477,8,465,1,465,3,465,8480,8,465,1,465,1,465,3,465,8484,8,465,1, - 465,3,465,8487,8,465,1,465,0,3,676,680,682,466,0,2,4,6,8,10,12,14, + 9,383,1,384,1,384,1,384,5,384,7587,8,384,10,384,12,384,7590,9,384, + 1,385,1,385,1,385,5,385,7595,8,385,10,385,12,385,7598,9,385,1,386, + 1,386,1,387,1,387,1,388,1,388,1,389,1,389,1,390,1,390,1,391,1,391, + 1,392,1,392,3,392,7614,8,392,1,393,1,393,1,393,5,393,7619,8,393, + 10,393,12,393,7622,9,393,1,394,1,394,1,394,5,394,7627,8,394,10,394, + 12,394,7630,9,394,1,395,1,395,1,396,1,396,1,397,1,397,1,398,1,398, + 1,399,1,399,1,400,1,400,1,400,1,400,3,400,7646,8,400,1,401,1,401, + 1,401,1,401,3,401,7652,8,401,1,402,1,402,1,402,1,402,3,402,7658, + 8,402,1,403,1,403,1,404,1,404,1,404,1,404,3,404,7666,8,404,1,405, + 1,405,1,405,1,405,3,405,7672,8,405,1,406,1,406,1,406,3,406,7677, + 8,406,1,407,1,407,1,407,1,407,5,407,7683,8,407,10,407,12,407,7686, + 9,407,1,407,1,407,3,407,7690,8,407,1,408,3,408,7693,8,408,1,408, + 1,408,1,409,1,409,1,409,1,409,1,409,3,409,7702,8,409,1,410,1,410, + 1,410,5,410,7707,8,410,10,410,12,410,7710,9,410,1,411,1,411,3,411, + 7714,8,411,1,412,1,412,3,412,7718,8,412,1,413,1,413,1,413,3,413, + 7723,8,413,1,414,1,414,1,414,1,414,3,414,7729,8,414,1,415,1,415, + 1,415,3,415,7734,8,415,1,415,1,415,1,415,1,415,1,415,1,415,3,415, + 7742,8,415,1,416,1,416,1,417,1,417,1,417,1,417,1,417,1,417,1,417, + 1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417, + 1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417, + 1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417, + 1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417,1,417, + 3,417,7797,8,417,1,418,1,418,1,419,1,419,1,420,3,420,7804,8,420, + 1,420,1,420,1,420,1,420,4,420,7810,8,420,11,420,12,420,7811,3,420, + 7814,8,420,3,420,7816,8,420,1,420,1,420,5,420,7820,8,420,10,420, + 12,420,7823,9,420,1,420,3,420,7826,8,420,1,420,1,420,3,420,7830, + 8,420,1,421,1,421,1,421,1,421,1,422,1,422,1,422,1,422,1,422,3,422, + 7841,8,422,1,422,3,422,7844,8,422,1,422,1,422,3,422,7848,8,422,1, + 422,1,422,3,422,7852,8,422,1,422,1,422,3,422,7856,8,422,1,422,3, + 422,7859,8,422,1,422,3,422,7862,8,422,1,422,3,422,7865,8,422,1,422, + 1,422,1,422,1,422,1,422,5,422,7872,8,422,10,422,12,422,7875,9,422, + 1,422,1,422,3,422,7879,8,422,1,422,1,422,3,422,7883,8,422,1,422, + 1,422,1,423,1,423,1,423,1,424,1,424,1,425,1,425,1,425,1,425,1,425, + 1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,425, + 1,425,1,425,1,425,1,425,1,425,1,425,1,425,1,425,3,425,7916,8,425, + 1,426,1,426,1,426,1,426,1,427,1,427,1,427,1,427,3,427,7926,8,427, + 1,427,1,427,3,427,7930,8,427,1,427,1,427,1,427,1,427,3,427,7936, + 8,427,1,427,1,427,1,427,3,427,7941,8,427,1,428,1,428,1,428,1,428, + 1,428,1,429,1,429,3,429,7950,8,429,1,429,1,429,1,429,1,429,5,429, + 7956,8,429,10,429,12,429,7959,9,429,1,429,1,429,1,430,1,430,1,430, + 1,430,1,431,1,431,3,431,7969,8,431,1,431,1,431,1,431,1,431,5,431, + 7975,8,431,10,431,12,431,7978,9,431,1,432,1,432,1,432,1,432,5,432, + 7984,8,432,10,432,12,432,7987,9,432,1,432,1,432,1,432,1,432,5,432, + 7993,8,432,10,432,12,432,7996,9,432,5,432,7998,8,432,10,432,12,432, + 8001,9,432,1,432,3,432,8004,8,432,1,432,1,432,1,432,1,432,1,433, + 1,433,5,433,8012,8,433,10,433,12,433,8015,9,433,1,434,1,434,3,434, + 8019,8,434,1,434,1,434,1,434,1,434,5,434,8025,8,434,10,434,12,434, + 8028,9,434,4,434,8030,8,434,11,434,12,434,8031,1,434,3,434,8035, + 8,434,1,434,1,434,1,434,1,434,1,435,3,435,8042,8,435,1,435,1,435, + 1,435,1,435,3,435,8048,8,435,1,435,1,435,1,436,1,436,1,436,1,436, + 3,436,8056,8,436,1,436,1,436,1,436,1,436,1,436,1,436,3,436,8064, + 8,436,1,436,3,436,8067,8,436,1,436,1,436,1,436,1,436,1,436,3,436, + 8074,8,436,3,436,8076,8,436,1,437,3,437,8079,8,437,1,437,1,437,1, + 437,1,437,3,437,8085,8,437,1,437,1,437,1,437,1,437,1,437,1,438,1, + 438,3,438,8094,8,438,1,438,1,438,3,438,8098,8,438,1,438,1,438,1, + 439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,1,439,3,439, + 8112,8,439,1,439,3,439,8115,8,439,3,439,8117,8,439,1,439,1,439,1, + 440,1,440,3,440,8123,8,440,1,440,1,440,1,440,1,440,1,440,1,440,4, + 440,8131,8,440,11,440,12,440,8132,3,440,8135,8,440,3,440,8137,8, + 440,1,440,1,440,1,440,1,440,5,440,8143,8,440,10,440,12,440,8146, + 9,440,3,440,8148,8,440,1,440,3,440,8151,8,440,1,441,1,441,1,441, + 1,441,1,442,1,442,1,442,1,442,3,442,8161,8,442,1,442,1,442,1,443, + 1,443,5,443,8167,8,443,10,443,12,443,8170,9,443,1,443,1,443,1,443, + 3,443,8175,8,443,1,443,1,443,1,444,1,444,3,444,8181,8,444,1,444, + 1,444,1,445,1,445,1,445,3,445,8188,8,445,1,445,1,445,3,445,8192, + 8,445,1,445,1,445,3,445,8196,8,445,1,445,3,445,8199,8,445,1,445, + 3,445,8202,8,445,1,445,1,445,1,446,1,446,3,446,8208,8,446,1,446, + 1,446,1,447,1,447,1,447,3,447,8215,8,447,1,447,3,447,8218,8,447, + 1,447,1,447,1,447,1,447,1,447,1,447,3,447,8226,8,447,3,447,8228, + 8,447,1,447,1,447,1,447,1,447,1,447,5,447,8235,8,447,10,447,12,447, + 8238,9,447,1,447,1,447,3,447,8242,8,447,3,447,8244,8,447,1,447,1, + 447,1,448,1,448,1,448,3,448,8251,8,448,1,448,1,448,1,449,1,449,3, + 449,8257,8,449,1,449,3,449,8260,8,449,1,449,1,449,1,449,1,449,1, + 449,1,450,1,450,1,450,1,450,1,450,3,450,8272,8,450,1,450,1,450,1, + 450,1,450,1,450,3,450,8279,8,450,3,450,8281,8,450,1,451,1,451,3, + 451,8285,8,451,1,451,1,451,1,451,1,452,3,452,8291,8,452,1,452,1, + 452,1,452,3,452,8296,8,452,1,452,1,452,3,452,8300,8,452,1,452,3, + 452,8303,8,452,1,452,3,452,8306,8,452,1,452,1,452,1,452,1,452,1, + 452,4,452,8313,8,452,11,452,12,452,8314,1,453,3,453,8318,8,453,1, + 453,1,453,3,453,8322,8,453,1,453,1,453,3,453,8326,8,453,3,453,8328, + 8,453,1,453,3,453,8331,8,453,1,453,3,453,8334,8,453,1,454,1,454, + 1,454,1,454,3,454,8340,8,454,1,454,1,454,1,454,1,454,1,454,3,454, + 8347,8,454,1,454,1,454,1,454,1,454,1,454,3,454,8354,8,454,1,454, + 1,454,1,454,1,454,3,454,8360,8,454,3,454,8362,8,454,1,455,1,455, + 3,455,8366,8,455,1,455,1,455,1,455,3,455,8371,8,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,1,456, + 1,456,5,456,8387,8,456,10,456,12,456,8390,9,456,1,456,1,456,4,456, + 8394,8,456,11,456,12,456,8395,1,457,1,457,1,457,1,457,1,457,5,457, + 8403,8,457,10,457,12,457,8406,9,457,1,457,1,457,1,457,1,457,3,457, + 8412,8,457,1,458,1,458,3,458,8416,8,458,1,459,1,459,1,459,1,459, + 1,460,1,460,1,460,1,461,1,461,1,461,3,461,8428,8,461,1,461,3,461, + 8431,8,461,1,461,1,461,1,462,1,462,1,462,1,462,1,462,1,462,1,462, + 1,462,1,462,3,462,8444,8,462,1,462,3,462,8447,8,462,1,463,1,463, + 3,463,8451,8,463,1,464,1,464,1,464,1,464,1,464,5,464,8458,8,464, + 10,464,12,464,8461,9,464,1,464,1,464,5,464,8465,8,464,10,464,12, + 464,8468,9,464,4,464,8470,8,464,11,464,12,464,8471,1,465,1,465,1, + 465,3,465,8477,8,465,1,466,1,466,3,466,8481,8,466,1,467,3,467,8484, + 8,467,1,467,3,467,8487,8,467,1,467,3,467,8490,8,467,1,467,3,467, + 8493,8,467,1,467,3,467,8496,8,467,1,467,1,467,3,467,8500,8,467,1, + 467,3,467,8503,8,467,1,467,0,3,678,682,684,468,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, @@ -55158,42 +55232,42 @@ export class PostgreSqlParser extends SQLParserBase { 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,0,118, - 2,0,195,195,364,364,2,0,66,66,318,318,2,0,99,99,318,318,2,0,134, - 134,318,318,1,0,529,531,2,0,10,10,94,94,2,0,133,133,191,191,2,0, - 254,254,332,332,2,0,162,162,363,363,2,0,180,180,221,221,5,0,30,30, - 288,288,329,329,352,352,354,354,2,0,109,109,532,532,2,0,158,158, - 277,277,2,0,367,367,439,439,2,0,139,139,312,312,2,0,191,191,333, - 333,2,0,313,313,333,333,2,0,150,150,315,315,2,0,64,64,94,94,4,0, - 78,78,183,183,197,197,298,298,2,0,213,213,254,254,2,0,352,352,354, - 354,2,0,200,200,224,224,9,0,30,30,160,160,165,165,179,179,219,219, - 227,227,342,342,345,345,438,438,3,0,113,113,284,284,336,336,2,0, - 53,53,78,78,2,0,105,105,379,379,2,0,260,260,262,262,3,0,173,173, - 260,260,262,262,1,0,12,13,2,0,64,64,375,375,2,0,156,156,206,206, - 2,0,189,189,360,360,2,0,215,215,373,373,3,0,133,133,191,191,333, - 333,5,0,30,30,88,88,182,182,241,241,369,369,2,0,9,9,94,94,2,0,92, - 92,226,226,1,0,448,449,2,0,92,92,414,414,2,0,341,341,414,414,4,0, - 163,163,185,185,283,283,353,353,2,0,135,135,145,145,2,0,211,211, - 278,278,3,0,321,321,357,357,445,445,3,0,66,66,99,99,318,318,5,0, - 108,108,168,168,226,226,328,328,342,342,2,0,167,167,314,314,2,0, - 61,61,265,265,4,0,207,207,249,249,268,268,293,293,2,0,130,130,307, - 307,2,0,64,64,68,68,10,0,46,46,88,88,182,182,202,202,241,241,352, - 352,354,354,357,358,369,369,521,523,5,0,212,212,329,329,350,350, - 455,455,457,457,5,0,212,212,329,329,350,350,361,361,455,456,2,0, - 37,37,55,55,2,0,207,207,249,249,2,0,10,10,53,53,2,0,181,181,243, - 243,2,0,170,170,320,320,2,0,141,141,223,223,5,0,108,108,168,168, - 189,189,342,342,360,360,2,0,226,226,328,328,2,0,163,163,185,185, - 2,0,186,186,193,193,4,0,88,88,182,182,241,241,369,369,2,0,137,137, - 242,242,2,0,161,161,319,319,4,0,129,129,161,161,319,319,454,454, - 2,0,356,356,380,380,2,0,81,81,382,382,2,0,151,151,254,254,2,0,133, - 133,138,138,1,0,31,32,2,0,128,128,547,547,2,0,60,60,96,96,2,0,99, - 99,349,349,2,0,131,131,414,414,2,0,201,201,334,334,3,0,59,59,70, - 70,97,97,2,0,30,30,56,56,1,0,527,528,2,0,207,207,268,268,2,0,320, - 320,414,414,2,0,571,571,573,573,1,0,468,469,4,0,113,113,115,115, - 119,119,126,126,2,0,360,360,477,477,2,0,394,395,409,409,2,0,391, - 392,406,406,1,0,391,392,1,0,418,419,5,0,10,10,16,17,21,21,23,23, - 25,25,3,0,9,9,14,14,27,27,2,0,98,98,396,396,2,0,50,51,75,76,2,0, - 41,41,420,420,3,0,39,39,73,73,95,95,4,0,393,393,399,399,404,404, + 902,904,906,908,910,912,914,916,918,920,922,924,926,928,930,932, + 934,0,118,2,0,195,195,364,364,2,0,66,66,318,318,2,0,99,99,318,318, + 2,0,134,134,318,318,1,0,529,531,2,0,10,10,94,94,2,0,133,133,191, + 191,2,0,254,254,332,332,2,0,162,162,363,363,2,0,180,180,221,221, + 5,0,30,30,288,288,329,329,352,352,354,354,2,0,109,109,532,532,2, + 0,158,158,277,277,2,0,367,367,439,439,2,0,139,139,312,312,2,0,191, + 191,333,333,2,0,313,313,333,333,2,0,150,150,315,315,2,0,64,64,94, + 94,4,0,78,78,183,183,197,197,298,298,2,0,213,213,254,254,2,0,352, + 352,354,354,2,0,200,200,224,224,9,0,30,30,160,160,165,165,179,179, + 219,219,227,227,342,342,345,345,438,438,3,0,113,113,284,284,336, + 336,2,0,53,53,78,78,2,0,105,105,379,379,2,0,260,260,262,262,3,0, + 173,173,260,260,262,262,1,0,12,13,2,0,64,64,375,375,2,0,156,156, + 206,206,2,0,189,189,360,360,2,0,215,215,373,373,3,0,133,133,191, + 191,333,333,5,0,30,30,88,88,182,182,241,241,369,369,2,0,9,9,94,94, + 2,0,92,92,226,226,1,0,448,449,2,0,92,92,414,414,2,0,341,341,414, + 414,4,0,163,163,185,185,283,283,353,353,2,0,135,135,145,145,2,0, + 211,211,278,278,3,0,321,321,357,357,445,445,3,0,66,66,99,99,318, + 318,5,0,108,108,168,168,226,226,328,328,342,342,2,0,167,167,314, + 314,2,0,61,61,265,265,4,0,207,207,249,249,268,268,293,293,2,0,130, + 130,307,307,2,0,64,64,68,68,10,0,46,46,88,88,182,182,202,202,241, + 241,352,352,354,354,357,358,369,369,521,523,5,0,212,212,329,329, + 350,350,455,455,457,457,5,0,212,212,329,329,350,350,361,361,455, + 456,2,0,37,37,55,55,2,0,207,207,249,249,2,0,10,10,53,53,2,0,181, + 181,243,243,2,0,170,170,320,320,2,0,141,141,223,223,5,0,108,108, + 168,168,189,189,342,342,360,360,2,0,226,226,328,328,2,0,163,163, + 185,185,2,0,186,186,193,193,4,0,88,88,182,182,241,241,369,369,2, + 0,137,137,242,242,2,0,161,161,319,319,4,0,129,129,161,161,319,319, + 454,454,2,0,356,356,380,380,2,0,81,81,382,382,2,0,151,151,254,254, + 2,0,133,133,138,138,1,0,31,32,2,0,128,128,547,547,2,0,60,60,96,96, + 2,0,99,99,349,349,2,0,131,131,414,414,2,0,201,201,334,334,3,0,59, + 59,70,70,97,97,2,0,30,30,56,56,1,0,527,528,2,0,207,207,268,268,2, + 0,320,320,414,414,2,0,571,571,573,573,1,0,468,469,4,0,113,113,115, + 115,119,119,126,126,2,0,360,360,477,477,2,0,394,395,409,409,2,0, + 391,392,406,406,1,0,391,392,1,0,418,419,5,0,10,10,16,17,21,21,23, + 23,25,25,3,0,9,9,14,14,27,27,2,0,98,98,396,396,2,0,50,51,75,76,2, + 0,41,41,420,420,3,0,39,39,73,73,95,95,4,0,393,393,399,399,404,404, 425,425,2,0,292,292,347,347,2,0,166,166,188,188,2,0,304,304,450, 450,3,0,299,299,320,320,481,481,2,0,208,208,289,289,3,0,30,30,34, 34,90,90,6,0,9,10,12,17,21,21,23,23,25,25,27,27,2,0,114,114,120, @@ -55202,2972 +55276,2975 @@ export class PostgreSqlParser extends SQLParserBase { 504,504,506,518,520,520,524,524,547,548,3,0,106,123,125,128,472, 472,4,0,30,52,54,70,72,105,454,454,2,0,62,62,116,116,2,0,10,10,20, 20,2,0,434,434,501,501,2,0,167,167,507,507,1,0,512,517,2,0,144,144, - 210,210,9923,0,935,1,0,0,0,2,940,1,0,0,0,4,1064,1,0,0,0,6,1066,1, - 0,0,0,8,1069,1,0,0,0,10,1119,1,0,0,0,12,1129,1,0,0,0,14,1131,1,0, - 0,0,16,1143,1,0,0,0,18,1155,1,0,0,0,20,1166,1,0,0,0,22,1200,1,0, - 0,0,24,1244,1,0,0,0,26,1246,1,0,0,0,28,1258,1,0,0,0,30,1265,1,0, - 0,0,32,1284,1,0,0,0,34,1292,1,0,0,0,36,1294,1,0,0,0,38,1308,1,0, - 0,0,40,1312,1,0,0,0,42,1349,1,0,0,0,44,1351,1,0,0,0,46,1359,1,0, - 0,0,48,1369,1,0,0,0,50,1376,1,0,0,0,52,1384,1,0,0,0,54,1390,1,0, - 0,0,56,1406,1,0,0,0,58,1410,1,0,0,0,60,1412,1,0,0,0,62,1424,1,0, - 0,0,64,1429,1,0,0,0,66,1434,1,0,0,0,68,1436,1,0,0,0,70,1448,1,0, - 0,0,72,1456,1,0,0,0,74,1458,1,0,0,0,76,1582,1,0,0,0,78,1584,1,0, - 0,0,80,1601,1,0,0,0,82,1603,1,0,0,0,84,1617,1,0,0,0,86,1619,1,0, - 0,0,88,1633,1,0,0,0,90,1635,1,0,0,0,92,1872,1,0,0,0,94,1879,1,0, - 0,0,96,1881,1,0,0,0,98,1883,1,0,0,0,100,1886,1,0,0,0,102,1897,1, - 0,0,0,104,1900,1,0,0,0,106,1929,1,0,0,0,108,1931,1,0,0,0,110,1972, - 1,0,0,0,112,1974,1,0,0,0,114,2028,1,0,0,0,116,2069,1,0,0,0,118,2071, - 1,0,0,0,120,2088,1,0,0,0,122,2169,1,0,0,0,124,2171,1,0,0,0,126,2182, - 1,0,0,0,128,2205,1,0,0,0,130,2223,1,0,0,0,132,2225,1,0,0,0,134,2260, - 1,0,0,0,136,2353,1,0,0,0,138,2358,1,0,0,0,140,2360,1,0,0,0,142,2458, - 1,0,0,0,144,2460,1,0,0,0,146,2464,1,0,0,0,148,2475,1,0,0,0,150,2483, - 1,0,0,0,152,2486,1,0,0,0,154,2489,1,0,0,0,156,2507,1,0,0,0,158,2509, - 1,0,0,0,160,2513,1,0,0,0,162,2526,1,0,0,0,164,2528,1,0,0,0,166,2533, - 1,0,0,0,168,2553,1,0,0,0,170,2561,1,0,0,0,172,2568,1,0,0,0,174,2570, - 1,0,0,0,176,2579,1,0,0,0,178,2582,1,0,0,0,180,2586,1,0,0,0,182,2590, - 1,0,0,0,184,2615,1,0,0,0,186,2625,1,0,0,0,188,2639,1,0,0,0,190,2655, - 1,0,0,0,192,2661,1,0,0,0,194,2688,1,0,0,0,196,2698,1,0,0,0,198,2714, - 1,0,0,0,200,2758,1,0,0,0,202,2765,1,0,0,0,204,2767,1,0,0,0,206,2793, - 1,0,0,0,208,2804,1,0,0,0,210,2823,1,0,0,0,212,2834,1,0,0,0,214,2872, - 1,0,0,0,216,2893,1,0,0,0,218,2895,1,0,0,0,220,2915,1,0,0,0,222,2927, - 1,0,0,0,224,2939,1,0,0,0,226,2942,1,0,0,0,228,2945,1,0,0,0,230,2965, - 1,0,0,0,232,2970,1,0,0,0,234,3019,1,0,0,0,236,3021,1,0,0,0,238,3044, - 1,0,0,0,240,3060,1,0,0,0,242,3072,1,0,0,0,244,3099,1,0,0,0,246,3114, - 1,0,0,0,248,3177,1,0,0,0,250,3179,1,0,0,0,252,3184,1,0,0,0,254,3190, - 1,0,0,0,256,3277,1,0,0,0,258,3283,1,0,0,0,260,3285,1,0,0,0,262,3301, - 1,0,0,0,264,3303,1,0,0,0,266,3312,1,0,0,0,268,3316,1,0,0,0,270,3329, - 1,0,0,0,272,3341,1,0,0,0,274,3343,1,0,0,0,276,3365,1,0,0,0,278,3377, - 1,0,0,0,280,3388,1,0,0,0,282,3479,1,0,0,0,284,3481,1,0,0,0,286,3492, - 1,0,0,0,288,3503,1,0,0,0,290,3505,1,0,0,0,292,3531,1,0,0,0,294,3533, - 1,0,0,0,296,3537,1,0,0,0,298,3587,1,0,0,0,300,3589,1,0,0,0,302,3595, - 1,0,0,0,304,3620,1,0,0,0,306,3624,1,0,0,0,308,3838,1,0,0,0,310,3856, - 1,0,0,0,312,3882,1,0,0,0,314,3884,1,0,0,0,316,3892,1,0,0,0,318,3898, - 1,0,0,0,320,3902,1,0,0,0,322,3922,1,0,0,0,324,3928,1,0,0,0,326,3995, - 1,0,0,0,328,4026,1,0,0,0,330,4072,1,0,0,0,332,4074,1,0,0,0,334,4076, - 1,0,0,0,336,4087,1,0,0,0,338,4124,1,0,0,0,340,4126,1,0,0,0,342,4132, - 1,0,0,0,344,4182,1,0,0,0,346,4185,1,0,0,0,348,4199,1,0,0,0,350,4220, - 1,0,0,0,352,4244,1,0,0,0,354,4285,1,0,0,0,356,4287,1,0,0,0,358,4289, - 1,0,0,0,360,4329,1,0,0,0,362,4346,1,0,0,0,364,4366,1,0,0,0,366,4419, - 1,0,0,0,368,4422,1,0,0,0,370,4428,1,0,0,0,372,4436,1,0,0,0,374,4449, - 1,0,0,0,376,4451,1,0,0,0,378,4464,1,0,0,0,380,4466,1,0,0,0,382,4479, - 1,0,0,0,384,4489,1,0,0,0,386,4500,1,0,0,0,388,4511,1,0,0,0,390,4513, - 1,0,0,0,392,4518,1,0,0,0,394,4532,1,0,0,0,396,4564,1,0,0,0,398,4601, - 1,0,0,0,400,4603,1,0,0,0,402,4606,1,0,0,0,404,4609,1,0,0,0,406,4626, - 1,0,0,0,408,4647,1,0,0,0,410,4663,1,0,0,0,412,4679,1,0,0,0,414,4701, - 1,0,0,0,416,4706,1,0,0,0,418,4709,1,0,0,0,420,4717,1,0,0,0,422,4742, - 1,0,0,0,424,4745,1,0,0,0,426,4773,1,0,0,0,428,4778,1,0,0,0,430,4818, - 1,0,0,0,432,5030,1,0,0,0,434,5032,1,0,0,0,436,5120,1,0,0,0,438,5122, - 1,0,0,0,440,5128,1,0,0,0,442,5139,1,0,0,0,444,5149,1,0,0,0,446,5229, - 1,0,0,0,448,5231,1,0,0,0,450,5245,1,0,0,0,452,5267,1,0,0,0,454,5340, - 1,0,0,0,456,5342,1,0,0,0,458,5383,1,0,0,0,460,5385,1,0,0,0,462,5390, - 1,0,0,0,464,5393,1,0,0,0,466,5396,1,0,0,0,468,5446,1,0,0,0,470,5448, - 1,0,0,0,472,5459,1,0,0,0,474,5461,1,0,0,0,476,5471,1,0,0,0,478,5506, - 1,0,0,0,480,5509,1,0,0,0,482,5530,1,0,0,0,484,5540,1,0,0,0,486,5560, - 1,0,0,0,488,5566,1,0,0,0,490,5572,1,0,0,0,492,5577,1,0,0,0,494,5590, - 1,0,0,0,496,5617,1,0,0,0,498,5665,1,0,0,0,500,5667,1,0,0,0,502,5705, - 1,0,0,0,504,5707,1,0,0,0,506,5728,1,0,0,0,508,5748,1,0,0,0,510,5752, - 1,0,0,0,512,5767,1,0,0,0,514,5769,1,0,0,0,516,5773,1,0,0,0,518,5777, - 1,0,0,0,520,5785,1,0,0,0,522,5809,1,0,0,0,524,5811,1,0,0,0,526,5822, - 1,0,0,0,528,5830,1,0,0,0,530,5845,1,0,0,0,532,5870,1,0,0,0,534,5872, - 1,0,0,0,536,5876,1,0,0,0,538,5885,1,0,0,0,540,5925,1,0,0,0,542,5936, - 1,0,0,0,544,5944,1,0,0,0,546,5947,1,0,0,0,548,5951,1,0,0,0,550,5966, - 1,0,0,0,552,5991,1,0,0,0,554,6006,1,0,0,0,556,6032,1,0,0,0,558,6034, - 1,0,0,0,560,6057,1,0,0,0,562,6059,1,0,0,0,564,6067,1,0,0,0,566,6085, - 1,0,0,0,568,6109,1,0,0,0,570,6121,1,0,0,0,572,6125,1,0,0,0,574,6137, - 1,0,0,0,576,6157,1,0,0,0,578,6165,1,0,0,0,580,6179,1,0,0,0,582,6202, - 1,0,0,0,584,6204,1,0,0,0,586,6209,1,0,0,0,588,6219,1,0,0,0,590,6240, - 1,0,0,0,592,6242,1,0,0,0,594,6251,1,0,0,0,596,6262,1,0,0,0,598,6272, - 1,0,0,0,600,6274,1,0,0,0,602,6281,1,0,0,0,604,6312,1,0,0,0,606,6342, - 1,0,0,0,608,6344,1,0,0,0,610,6353,1,0,0,0,612,6356,1,0,0,0,614,6427, - 1,0,0,0,616,6451,1,0,0,0,618,6472,1,0,0,0,620,6474,1,0,0,0,622,6482, - 1,0,0,0,624,6499,1,0,0,0,626,6525,1,0,0,0,628,6527,1,0,0,0,630,6535, - 1,0,0,0,632,6542,1,0,0,0,634,6566,1,0,0,0,636,6572,1,0,0,0,638,6580, - 1,0,0,0,640,6583,1,0,0,0,642,6590,1,0,0,0,644,6598,1,0,0,0,646,6603, - 1,0,0,0,648,6633,1,0,0,0,650,6660,1,0,0,0,652,6688,1,0,0,0,654,6705, - 1,0,0,0,656,6711,1,0,0,0,658,6729,1,0,0,0,660,6731,1,0,0,0,662,6735, - 1,0,0,0,664,6752,1,0,0,0,666,6757,1,0,0,0,668,6795,1,0,0,0,670,6797, - 1,0,0,0,672,6801,1,0,0,0,674,6803,1,0,0,0,676,6812,1,0,0,0,678,6896, - 1,0,0,0,680,6902,1,0,0,0,682,7011,1,0,0,0,684,7043,1,0,0,0,686,7094, - 1,0,0,0,688,7098,1,0,0,0,690,7274,1,0,0,0,692,7276,1,0,0,0,694,7284, - 1,0,0,0,696,7289,1,0,0,0,698,7291,1,0,0,0,700,7299,1,0,0,0,702,7302, - 1,0,0,0,704,7311,1,0,0,0,706,7315,1,0,0,0,708,7320,1,0,0,0,710,7337, - 1,0,0,0,712,7364,1,0,0,0,714,7373,1,0,0,0,716,7375,1,0,0,0,718,7382, - 1,0,0,0,720,7386,1,0,0,0,722,7388,1,0,0,0,724,7396,1,0,0,0,726,7404, - 1,0,0,0,728,7411,1,0,0,0,730,7413,1,0,0,0,732,7426,1,0,0,0,734,7430, - 1,0,0,0,736,7432,1,0,0,0,738,7447,1,0,0,0,740,7449,1,0,0,0,742,7471, - 1,0,0,0,744,7473,1,0,0,0,746,7496,1,0,0,0,748,7498,1,0,0,0,750,7520, - 1,0,0,0,752,7523,1,0,0,0,754,7530,1,0,0,0,756,7533,1,0,0,0,758,7549, - 1,0,0,0,760,7551,1,0,0,0,762,7559,1,0,0,0,764,7567,1,0,0,0,766,7575, - 1,0,0,0,768,7583,1,0,0,0,770,7585,1,0,0,0,772,7587,1,0,0,0,774,7589, - 1,0,0,0,776,7591,1,0,0,0,778,7593,1,0,0,0,780,7595,1,0,0,0,782,7599, - 1,0,0,0,784,7607,1,0,0,0,786,7615,1,0,0,0,788,7617,1,0,0,0,790,7619, - 1,0,0,0,792,7621,1,0,0,0,794,7623,1,0,0,0,796,7629,1,0,0,0,798,7635, - 1,0,0,0,800,7641,1,0,0,0,802,7643,1,0,0,0,804,7649,1,0,0,0,806,7655, - 1,0,0,0,808,7657,1,0,0,0,810,7673,1,0,0,0,812,7676,1,0,0,0,814,7685, - 1,0,0,0,816,7687,1,0,0,0,818,7697,1,0,0,0,820,7701,1,0,0,0,822,7706, - 1,0,0,0,824,7712,1,0,0,0,826,7725,1,0,0,0,828,7727,1,0,0,0,830,7780, - 1,0,0,0,832,7782,1,0,0,0,834,7784,1,0,0,0,836,7787,1,0,0,0,838,7815, - 1,0,0,0,840,7819,1,0,0,0,842,7870,1,0,0,0,844,7873,1,0,0,0,846,7899, - 1,0,0,0,848,7901,1,0,0,0,850,7924,1,0,0,0,852,7926,1,0,0,0,854,7931, - 1,0,0,0,856,7946,1,0,0,0,858,7952,1,0,0,0,860,7963,1,0,0,0,862,7993, - 1,0,0,0,864,8000,1,0,0,0,866,8025,1,0,0,0,868,8035,1,0,0,0,870,8062, - 1,0,0,0,872,8075,1,0,0,0,874,8085,1,0,0,0,876,8104,1,0,0,0,878,8136, - 1,0,0,0,880,8140,1,0,0,0,882,8148,1,0,0,0,884,8162,1,0,0,0,886,8168, - 1,0,0,0,888,8189,1,0,0,0,890,8195,1,0,0,0,892,8234,1,0,0,0,894,8238, - 1,0,0,0,896,8264,1,0,0,0,898,8266,1,0,0,0,900,8274,1,0,0,0,902,8311, - 1,0,0,0,904,8345,1,0,0,0,906,8347,1,0,0,0,908,8358,1,0,0,0,910,8395, - 1,0,0,0,912,8399,1,0,0,0,914,8401,1,0,0,0,916,8405,1,0,0,0,918,8408, - 1,0,0,0,920,8430,1,0,0,0,922,8434,1,0,0,0,924,8436,1,0,0,0,926,8460, - 1,0,0,0,928,8464,1,0,0,0,930,8467,1,0,0,0,932,934,3,2,1,0,933,932, - 1,0,0,0,934,937,1,0,0,0,935,933,1,0,0,0,935,936,1,0,0,0,936,938, - 1,0,0,0,937,935,1,0,0,0,938,939,5,0,0,1,939,1,1,0,0,0,940,942,3, - 4,2,0,941,943,5,7,0,0,942,941,1,0,0,0,942,943,1,0,0,0,943,3,1,0, - 0,0,944,1065,3,278,139,0,945,1065,3,488,244,0,946,1065,3,484,242, - 0,947,1065,3,486,243,0,948,1065,3,352,176,0,949,1065,3,494,247,0, - 950,1065,3,292,146,0,951,1065,3,210,105,0,952,1065,3,212,106,0,953, - 1065,3,218,109,0,954,1065,3,232,116,0,955,1065,3,404,202,0,956,1065, - 3,28,14,0,957,1065,3,434,217,0,958,1065,3,436,218,0,959,1065,3,446, - 223,0,960,1065,3,438,219,0,961,1065,3,444,222,0,962,1065,3,244,122, - 0,963,1065,3,246,123,0,964,1065,3,198,99,0,965,1065,3,490,245,0, - 966,1065,3,76,38,0,967,1065,3,430,215,0,968,1065,3,108,54,0,969, - 1065,3,450,225,0,970,1065,3,18,9,0,971,1065,3,20,10,0,972,1065,3, - 16,8,0,973,1065,3,454,227,0,974,1065,3,184,92,0,975,1065,3,498,249, - 0,976,1065,3,496,248,0,977,1065,3,240,120,0,978,1065,3,506,253,0, - 979,1065,3,6,3,0,980,1065,3,72,36,0,981,1065,3,112,56,0,982,1065, - 3,502,251,0,983,1065,3,324,162,0,984,1065,3,70,35,0,985,1065,3,114, - 57,0,986,1065,3,254,127,0,987,1065,3,186,93,0,988,1065,3,280,140, - 0,989,1065,3,420,210,0,990,1065,3,500,250,0,991,1065,3,492,246,0, - 992,1065,3,208,104,0,993,1065,3,214,107,0,994,1065,3,228,114,0,995, - 1065,3,234,117,0,996,1065,3,364,182,0,997,1065,3,26,13,0,998,1065, - 3,192,96,0,999,1065,3,296,148,0,1000,1065,3,300,150,0,1001,1065, - 3,448,224,0,1002,1065,3,302,151,0,1003,1065,3,242,121,0,1004,1065, - 3,204,102,0,1005,1065,3,30,15,0,1006,1065,3,196,98,0,1007,1065,3, - 120,60,0,1008,1065,3,452,226,0,1009,1065,3,182,91,0,1010,1065,3, - 206,103,0,1011,1065,3,424,212,0,1012,1065,3,256,128,0,1013,1065, - 3,274,137,0,1014,1065,3,8,4,0,1015,1065,3,14,7,0,1016,1065,3,238, - 119,0,1017,1065,3,480,240,0,1018,1065,3,536,268,0,1019,1065,3,558, - 279,0,1020,1065,3,282,141,0,1021,1065,3,548,274,0,1022,1065,3,74, - 37,0,1023,1065,3,418,209,0,1024,1065,3,308,154,0,1025,1065,3,532, - 266,0,1026,1065,3,520,260,0,1027,1065,3,328,164,0,1028,1065,3,334, - 167,0,1029,1065,3,348,174,0,1030,1065,3,900,450,0,1031,1065,3,236, - 118,0,1032,1065,3,358,179,0,1033,1065,3,538,269,0,1034,1065,3,464, - 232,0,1035,1065,3,194,97,0,1036,1065,3,478,239,0,1037,1065,3,550, - 275,0,1038,1065,3,460,230,0,1039,1065,3,526,263,0,1040,1065,3,306, - 153,0,1041,1065,3,428,214,0,1042,1065,3,408,204,0,1043,1065,3,406, - 203,0,1044,1065,3,410,205,0,1045,1065,3,432,216,0,1046,1065,3,336, - 168,0,1047,1065,3,350,175,0,1048,1065,3,456,228,0,1049,1065,3,326, - 163,0,1050,1065,3,560,280,0,1051,1065,3,468,234,0,1052,1065,3,320, - 160,0,1053,1065,3,466,233,0,1054,1065,3,552,276,0,1055,1065,3,504, - 252,0,1056,1065,3,60,30,0,1057,1065,3,36,18,0,1058,1065,3,68,34, - 0,1059,1065,3,476,238,0,1060,1062,5,581,0,0,1061,1063,5,582,0,0, - 1062,1061,1,0,0,0,1062,1063,1,0,0,0,1063,1065,1,0,0,0,1064,944,1, - 0,0,0,1064,945,1,0,0,0,1064,946,1,0,0,0,1064,947,1,0,0,0,1064,948, - 1,0,0,0,1064,949,1,0,0,0,1064,950,1,0,0,0,1064,951,1,0,0,0,1064, - 952,1,0,0,0,1064,953,1,0,0,0,1064,954,1,0,0,0,1064,955,1,0,0,0,1064, - 956,1,0,0,0,1064,957,1,0,0,0,1064,958,1,0,0,0,1064,959,1,0,0,0,1064, - 960,1,0,0,0,1064,961,1,0,0,0,1064,962,1,0,0,0,1064,963,1,0,0,0,1064, - 964,1,0,0,0,1064,965,1,0,0,0,1064,966,1,0,0,0,1064,967,1,0,0,0,1064, - 968,1,0,0,0,1064,969,1,0,0,0,1064,970,1,0,0,0,1064,971,1,0,0,0,1064, - 972,1,0,0,0,1064,973,1,0,0,0,1064,974,1,0,0,0,1064,975,1,0,0,0,1064, - 976,1,0,0,0,1064,977,1,0,0,0,1064,978,1,0,0,0,1064,979,1,0,0,0,1064, - 980,1,0,0,0,1064,981,1,0,0,0,1064,982,1,0,0,0,1064,983,1,0,0,0,1064, - 984,1,0,0,0,1064,985,1,0,0,0,1064,986,1,0,0,0,1064,987,1,0,0,0,1064, - 988,1,0,0,0,1064,989,1,0,0,0,1064,990,1,0,0,0,1064,991,1,0,0,0,1064, - 992,1,0,0,0,1064,993,1,0,0,0,1064,994,1,0,0,0,1064,995,1,0,0,0,1064, - 996,1,0,0,0,1064,997,1,0,0,0,1064,998,1,0,0,0,1064,999,1,0,0,0,1064, - 1000,1,0,0,0,1064,1001,1,0,0,0,1064,1002,1,0,0,0,1064,1003,1,0,0, - 0,1064,1004,1,0,0,0,1064,1005,1,0,0,0,1064,1006,1,0,0,0,1064,1007, - 1,0,0,0,1064,1008,1,0,0,0,1064,1009,1,0,0,0,1064,1010,1,0,0,0,1064, - 1011,1,0,0,0,1064,1012,1,0,0,0,1064,1013,1,0,0,0,1064,1014,1,0,0, - 0,1064,1015,1,0,0,0,1064,1016,1,0,0,0,1064,1017,1,0,0,0,1064,1018, - 1,0,0,0,1064,1019,1,0,0,0,1064,1020,1,0,0,0,1064,1021,1,0,0,0,1064, - 1022,1,0,0,0,1064,1023,1,0,0,0,1064,1024,1,0,0,0,1064,1025,1,0,0, - 0,1064,1026,1,0,0,0,1064,1027,1,0,0,0,1064,1028,1,0,0,0,1064,1029, - 1,0,0,0,1064,1030,1,0,0,0,1064,1031,1,0,0,0,1064,1032,1,0,0,0,1064, - 1033,1,0,0,0,1064,1034,1,0,0,0,1064,1035,1,0,0,0,1064,1036,1,0,0, - 0,1064,1037,1,0,0,0,1064,1038,1,0,0,0,1064,1039,1,0,0,0,1064,1040, - 1,0,0,0,1064,1041,1,0,0,0,1064,1042,1,0,0,0,1064,1043,1,0,0,0,1064, - 1044,1,0,0,0,1064,1045,1,0,0,0,1064,1046,1,0,0,0,1064,1047,1,0,0, - 0,1064,1048,1,0,0,0,1064,1049,1,0,0,0,1064,1050,1,0,0,0,1064,1051, - 1,0,0,0,1064,1052,1,0,0,0,1064,1053,1,0,0,0,1064,1054,1,0,0,0,1064, - 1055,1,0,0,0,1064,1056,1,0,0,0,1064,1057,1,0,0,0,1064,1058,1,0,0, - 0,1064,1059,1,0,0,0,1064,1060,1,0,0,0,1065,5,1,0,0,0,1066,1067,5, - 433,0,0,1067,1068,3,684,342,0,1068,7,1,0,0,0,1069,1070,5,46,0,0, - 1070,1071,5,318,0,0,1071,1073,3,814,407,0,1072,1074,5,105,0,0,1073, - 1072,1,0,0,0,1073,1074,1,0,0,0,1074,1078,1,0,0,0,1075,1077,3,12, - 6,0,1076,1075,1,0,0,0,1077,1080,1,0,0,0,1078,1076,1,0,0,0,1078,1079, - 1,0,0,0,1079,9,1,0,0,0,1080,1078,1,0,0,0,1081,1084,5,287,0,0,1082, - 1085,3,808,404,0,1083,1085,5,78,0,0,1084,1082,1,0,0,0,1084,1083, - 1,0,0,0,1085,1120,1,0,0,0,1086,1087,7,0,0,0,1087,1088,5,287,0,0, - 1088,1120,3,808,404,0,1089,1120,5,228,0,0,1090,1120,5,229,0,0,1091, - 1120,5,236,0,0,1092,1120,5,237,0,0,1093,1120,5,234,0,0,1094,1120, - 5,235,0,0,1095,1120,5,232,0,0,1096,1120,5,233,0,0,1097,1120,5,230, - 0,0,1098,1120,5,231,0,0,1099,1120,5,535,0,0,1100,1120,5,536,0,0, - 1101,1120,5,537,0,0,1102,1120,5,538,0,0,1103,1120,5,539,0,0,1104, - 1120,5,540,0,0,1105,1106,5,164,0,0,1106,1107,5,74,0,0,1107,1120, - 3,812,406,0,1108,1109,5,371,0,0,1109,1110,5,368,0,0,1110,1120,3, - 808,404,0,1111,1112,5,68,0,0,1112,1113,7,1,0,0,1113,1120,3,784,392, - 0,1114,1115,7,2,0,0,1115,1120,3,816,408,0,1116,1117,5,134,0,0,1117, - 1120,3,784,392,0,1118,1120,3,826,413,0,1119,1081,1,0,0,0,1119,1086, - 1,0,0,0,1119,1089,1,0,0,0,1119,1090,1,0,0,0,1119,1091,1,0,0,0,1119, - 1092,1,0,0,0,1119,1093,1,0,0,0,1119,1094,1,0,0,0,1119,1095,1,0,0, - 0,1119,1096,1,0,0,0,1119,1097,1,0,0,0,1119,1098,1,0,0,0,1119,1099, - 1,0,0,0,1119,1100,1,0,0,0,1119,1101,1,0,0,0,1119,1102,1,0,0,0,1119, - 1103,1,0,0,0,1119,1104,1,0,0,0,1119,1105,1,0,0,0,1119,1108,1,0,0, - 0,1119,1111,1,0,0,0,1119,1114,1,0,0,0,1119,1116,1,0,0,0,1119,1118, - 1,0,0,0,1120,11,1,0,0,0,1121,1130,3,10,5,0,1122,1123,5,348,0,0,1123, - 1130,5,571,0,0,1124,1125,7,3,0,0,1125,1130,3,816,408,0,1126,1127, - 5,68,0,0,1127,1128,7,1,0,0,1128,1130,3,816,408,0,1129,1121,1,0,0, - 0,1129,1122,1,0,0,0,1129,1124,1,0,0,0,1129,1126,1,0,0,0,1130,13, - 1,0,0,0,1131,1132,5,46,0,0,1132,1133,5,99,0,0,1133,1135,3,814,407, - 0,1134,1136,5,105,0,0,1135,1134,1,0,0,0,1135,1136,1,0,0,0,1136,1140, - 1,0,0,0,1137,1139,3,12,6,0,1138,1137,1,0,0,0,1139,1142,1,0,0,0,1140, - 1138,1,0,0,0,1140,1141,1,0,0,0,1141,15,1,0,0,0,1142,1140,1,0,0,0, - 1143,1144,5,138,0,0,1144,1145,7,2,0,0,1145,1147,3,814,407,0,1146, - 1148,5,105,0,0,1147,1146,1,0,0,0,1147,1148,1,0,0,0,1148,1152,1,0, - 0,0,1149,1151,3,10,5,0,1150,1149,1,0,0,0,1151,1154,1,0,0,0,1152, - 1150,1,0,0,0,1152,1153,1,0,0,0,1153,17,1,0,0,0,1154,1152,1,0,0,0, - 1155,1156,5,138,0,0,1156,1159,7,2,0,0,1157,1160,5,30,0,0,1158,1160, - 3,814,407,0,1159,1157,1,0,0,0,1159,1158,1,0,0,0,1160,1161,1,0,0, - 0,1161,1162,5,68,0,0,1162,1163,5,175,0,0,1163,1164,3,788,394,0,1164, - 1165,3,64,32,0,1165,19,1,0,0,0,1166,1167,5,138,0,0,1167,1168,5,442, - 0,0,1168,1170,3,794,397,0,1169,1171,3,368,184,0,1170,1169,1,0,0, - 0,1170,1171,1,0,0,0,1171,1172,1,0,0,0,1172,1173,3,22,11,0,1173,21, - 1,0,0,0,1174,1178,3,24,12,0,1175,1177,3,24,12,0,1176,1175,1,0,0, - 0,1177,1180,1,0,0,0,1178,1176,1,0,0,0,1178,1179,1,0,0,0,1179,1182, - 1,0,0,0,1180,1178,1,0,0,0,1181,1183,5,315,0,0,1182,1181,1,0,0,0, - 1182,1183,1,0,0,0,1183,1201,1,0,0,0,1184,1185,5,309,0,0,1185,1186, - 5,94,0,0,1186,1201,3,792,396,0,1187,1188,5,282,0,0,1188,1189,5,94, - 0,0,1189,1201,3,814,407,0,1190,1191,5,333,0,0,1191,1192,5,323,0, - 0,1192,1201,3,32,16,0,1193,1195,5,269,0,0,1194,1193,1,0,0,0,1194, - 1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197,5,462,0,0,1197,1198,5,80, - 0,0,1198,1199,5,204,0,0,1199,1201,3,818,409,0,1200,1174,1,0,0,0, - 1200,1184,1,0,0,0,1200,1187,1,0,0,0,1200,1190,1,0,0,0,1200,1194, - 1,0,0,0,1201,23,1,0,0,0,1202,1245,5,222,0,0,1203,1245,5,338,0,0, - 1204,1245,5,377,0,0,1205,1207,5,77,0,0,1206,1205,1,0,0,0,1206,1207, - 1,0,0,0,1207,1208,1,0,0,0,1208,1245,5,250,0,0,1209,1211,5,205,0, - 0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1212,1,0,0,0,1212,1213, - 5,327,0,0,1213,1220,5,243,0,0,1214,1216,5,205,0,0,1215,1214,1,0, - 0,0,1215,1216,1,0,0,0,1216,1217,1,0,0,0,1217,1218,5,327,0,0,1218, - 1220,5,181,0,0,1219,1210,1,0,0,0,1219,1215,1,0,0,0,1220,1245,1,0, - 0,0,1221,1222,5,460,0,0,1222,1245,7,4,0,0,1223,1224,5,170,0,0,1224, - 1245,3,824,412,0,1225,1226,5,320,0,0,1226,1245,3,818,409,0,1227, - 1228,5,333,0,0,1228,1229,3,818,409,0,1229,1232,7,5,0,0,1230,1233, - 3,818,409,0,1231,1233,5,53,0,0,1232,1230,1,0,0,0,1232,1231,1,0,0, - 0,1233,1245,1,0,0,0,1234,1235,5,333,0,0,1235,1236,3,818,409,0,1236, - 1237,5,64,0,0,1237,1238,5,434,0,0,1238,1245,1,0,0,0,1239,1242,5, - 313,0,0,1240,1243,3,818,409,0,1241,1243,5,30,0,0,1242,1240,1,0,0, - 0,1242,1241,1,0,0,0,1243,1245,1,0,0,0,1244,1202,1,0,0,0,1244,1203, - 1,0,0,0,1244,1204,1,0,0,0,1244,1206,1,0,0,0,1244,1219,1,0,0,0,1244, - 1221,1,0,0,0,1244,1223,1,0,0,0,1244,1225,1,0,0,0,1244,1227,1,0,0, - 0,1244,1234,1,0,0,0,1244,1239,1,0,0,0,1245,25,1,0,0,0,1246,1247, - 5,46,0,0,1247,1248,5,66,0,0,1248,1250,3,814,407,0,1249,1251,5,105, - 0,0,1250,1249,1,0,0,0,1250,1251,1,0,0,0,1251,1255,1,0,0,0,1252,1254, - 3,12,6,0,1253,1252,1,0,0,0,1254,1257,1,0,0,0,1255,1253,1,0,0,0,1255, - 1256,1,0,0,0,1256,27,1,0,0,0,1257,1255,1,0,0,0,1258,1259,5,138,0, - 0,1259,1260,5,66,0,0,1260,1261,3,814,407,0,1261,1262,7,6,0,0,1262, - 1263,5,99,0,0,1263,1264,3,816,408,0,1264,29,1,0,0,0,1265,1266,5, - 46,0,0,1266,1268,5,323,0,0,1267,1269,3,294,147,0,1268,1267,1,0,0, - 0,1268,1269,1,0,0,0,1269,1276,1,0,0,0,1270,1272,3,32,16,0,1271,1270, - 1,0,0,0,1271,1272,1,0,0,0,1272,1273,1,0,0,0,1273,1274,5,106,0,0, - 1274,1277,3,814,407,0,1275,1277,3,32,16,0,1276,1271,1,0,0,0,1276, - 1275,1,0,0,0,1277,1281,1,0,0,0,1278,1280,3,34,17,0,1279,1278,1,0, - 0,0,1280,1283,1,0,0,0,1281,1279,1,0,0,0,1281,1282,1,0,0,0,1282,31, - 1,0,0,0,1283,1281,1,0,0,0,1284,1285,3,316,158,0,1285,33,1,0,0,0, - 1286,1293,3,120,60,0,1287,1293,3,358,179,0,1288,1293,3,196,98,0, - 1289,1293,3,256,128,0,1290,1293,3,334,167,0,1291,1293,3,476,238, - 0,1292,1286,1,0,0,0,1292,1287,1,0,0,0,1292,1288,1,0,0,0,1292,1289, - 1,0,0,0,1292,1290,1,0,0,0,1292,1291,1,0,0,0,1293,35,1,0,0,0,1294, - 1296,5,333,0,0,1295,1297,7,7,0,0,1296,1295,1,0,0,0,1296,1297,1,0, - 0,0,1297,1298,1,0,0,0,1298,1299,3,38,19,0,1299,37,1,0,0,0,1300,1301, - 5,356,0,0,1301,1309,3,474,237,0,1302,1303,5,332,0,0,1303,1304,5, - 154,0,0,1304,1305,5,36,0,0,1305,1306,5,356,0,0,1306,1309,3,474,237, - 0,1307,1309,3,42,21,0,1308,1300,1,0,0,0,1308,1302,1,0,0,0,1308,1307, - 1,0,0,0,1309,39,1,0,0,0,1310,1313,5,30,0,0,1311,1313,3,44,22,0,1312, - 1310,1,0,0,0,1312,1311,1,0,0,0,1313,1315,1,0,0,0,1314,1316,7,5,0, - 0,1315,1314,1,0,0,0,1315,1316,1,0,0,0,1316,1319,1,0,0,0,1317,1320, - 5,53,0,0,1318,1320,3,46,23,0,1319,1317,1,0,0,0,1319,1318,1,0,0,0, - 1319,1320,1,0,0,0,1320,41,1,0,0,0,1321,1322,5,418,0,0,1322,1323, - 5,386,0,0,1323,1350,3,56,28,0,1324,1325,5,152,0,0,1325,1350,3,808, - 404,0,1326,1327,5,323,0,0,1327,1350,3,790,395,0,1328,1331,5,267, - 0,0,1329,1332,3,808,404,0,1330,1332,5,53,0,0,1331,1329,1,0,0,0,1331, - 1330,1,0,0,0,1331,1332,1,0,0,0,1332,1350,1,0,0,0,1333,1334,5,318, - 0,0,1334,1350,3,58,29,0,1335,1336,5,332,0,0,1336,1337,5,106,0,0, - 1337,1350,3,58,29,0,1338,1339,5,383,0,0,1339,1340,5,279,0,0,1340, - 1350,3,696,348,0,1341,1342,5,356,0,0,1342,1343,5,337,0,0,1343,1350, - 3,808,404,0,1344,1345,3,44,22,0,1345,1346,5,64,0,0,1346,1347,5,434, - 0,0,1347,1350,1,0,0,0,1348,1350,3,40,20,0,1349,1321,1,0,0,0,1349, - 1324,1,0,0,0,1349,1326,1,0,0,0,1349,1328,1,0,0,0,1349,1333,1,0,0, - 0,1349,1335,1,0,0,0,1349,1338,1,0,0,0,1349,1341,1,0,0,0,1349,1344, - 1,0,0,0,1349,1348,1,0,0,0,1350,43,1,0,0,0,1351,1356,3,818,409,0, - 1352,1353,5,11,0,0,1353,1355,3,818,409,0,1354,1352,1,0,0,0,1355, - 1358,1,0,0,0,1356,1354,1,0,0,0,1356,1357,1,0,0,0,1357,45,1,0,0,0, - 1358,1356,1,0,0,0,1359,1364,3,48,24,0,1360,1361,5,6,0,0,1361,1363, - 3,48,24,0,1362,1360,1,0,0,0,1363,1366,1,0,0,0,1364,1362,1,0,0,0, - 1364,1365,1,0,0,0,1365,47,1,0,0,0,1366,1364,1,0,0,0,1367,1370,3, - 54,27,0,1368,1370,3,202,101,0,1369,1367,1,0,0,0,1369,1368,1,0,0, - 0,1370,49,1,0,0,0,1371,1372,5,300,0,0,1372,1377,7,8,0,0,1373,1374, - 5,310,0,0,1374,1377,5,300,0,0,1375,1377,5,330,0,0,1376,1371,1,0, - 0,0,1376,1373,1,0,0,0,1376,1375,1,0,0,0,1377,51,1,0,0,0,1378,1385, - 5,96,0,0,1379,1385,5,60,0,0,1380,1385,5,80,0,0,1381,1385,3,800,400, - 0,1382,1385,3,832,416,0,1383,1385,3,808,404,0,1384,1378,1,0,0,0, - 1384,1379,1,0,0,0,1384,1380,1,0,0,0,1384,1381,1,0,0,0,1384,1382, - 1,0,0,0,1384,1383,1,0,0,0,1385,53,1,0,0,0,1386,1391,5,96,0,0,1387, - 1391,5,60,0,0,1388,1391,5,80,0,0,1389,1391,3,58,29,0,1390,1386,1, - 0,0,0,1390,1387,1,0,0,0,1390,1388,1,0,0,0,1390,1389,1,0,0,0,1391, - 55,1,0,0,0,1392,1407,3,808,404,0,1393,1407,5,53,0,0,1394,1407,3, - 826,413,0,1395,1396,5,403,0,0,1396,1398,3,808,404,0,1397,1399,3, - 668,334,0,1398,1397,1,0,0,0,1398,1399,1,0,0,0,1399,1407,1,0,0,0, - 1400,1401,5,403,0,0,1401,1402,3,660,330,0,1402,1403,3,808,404,0, - 1403,1407,1,0,0,0,1404,1407,3,202,101,0,1405,1407,5,254,0,0,1406, - 1392,1,0,0,0,1406,1393,1,0,0,0,1406,1394,1,0,0,0,1406,1395,1,0,0, - 0,1406,1400,1,0,0,0,1406,1404,1,0,0,0,1406,1405,1,0,0,0,1407,57, - 1,0,0,0,1408,1411,3,822,411,0,1409,1411,3,808,404,0,1410,1408,1, - 0,0,0,1410,1409,1,0,0,0,1411,59,1,0,0,0,1412,1413,5,313,0,0,1413, - 1414,3,62,31,0,1414,61,1,0,0,0,1415,1416,5,418,0,0,1416,1425,5,386, - 0,0,1417,1418,5,356,0,0,1418,1419,5,244,0,0,1419,1425,5,251,0,0, - 1420,1421,5,332,0,0,1421,1425,5,106,0,0,1422,1425,5,30,0,0,1423, - 1425,3,44,22,0,1424,1415,1,0,0,0,1424,1417,1,0,0,0,1424,1420,1,0, - 0,0,1424,1422,1,0,0,0,1424,1423,1,0,0,0,1425,63,1,0,0,0,1426,1427, - 5,333,0,0,1427,1430,3,38,19,0,1428,1430,3,60,30,0,1429,1426,1,0, - 0,0,1429,1428,1,0,0,0,1430,65,1,0,0,0,1431,1432,5,333,0,0,1432,1435, - 3,42,21,0,1433,1435,3,60,30,0,1434,1431,1,0,0,0,1434,1433,1,0,0, - 0,1435,67,1,0,0,0,1436,1446,5,335,0,0,1437,1447,3,44,22,0,1438,1439, - 5,418,0,0,1439,1447,5,386,0,0,1440,1441,5,356,0,0,1441,1442,5,244, - 0,0,1442,1447,5,251,0,0,1443,1444,5,332,0,0,1444,1447,5,106,0,0, - 1445,1447,5,30,0,0,1446,1437,1,0,0,0,1446,1438,1,0,0,0,1446,1440, - 1,0,0,0,1446,1443,1,0,0,0,1446,1445,1,0,0,0,1447,69,1,0,0,0,1448, - 1449,5,333,0,0,1449,1452,5,165,0,0,1450,1453,5,30,0,0,1451,1453, - 3,760,380,0,1452,1450,1,0,0,0,1452,1451,1,0,0,0,1453,1454,1,0,0, - 0,1454,1455,7,9,0,0,1455,71,1,0,0,0,1456,1457,5,155,0,0,1457,73, - 1,0,0,0,1458,1459,5,187,0,0,1459,1460,7,10,0,0,1460,75,1,0,0,0,1461, - 1462,5,138,0,0,1462,1464,5,92,0,0,1463,1465,3,422,211,0,1464,1463, - 1,0,0,0,1464,1465,1,0,0,0,1465,1466,1,0,0,0,1466,1469,3,624,312, - 0,1467,1470,3,78,39,0,1468,1470,3,88,44,0,1469,1467,1,0,0,0,1469, - 1468,1,0,0,0,1470,1583,1,0,0,0,1471,1472,5,138,0,0,1472,1473,5,92, - 0,0,1473,1474,5,30,0,0,1474,1475,5,68,0,0,1475,1479,3,176,88,0,1476, - 1477,5,281,0,0,1477,1478,5,147,0,0,1478,1480,3,816,408,0,1479,1476, - 1,0,0,0,1479,1480,1,0,0,0,1480,1481,1,0,0,0,1481,1482,5,333,0,0, - 1482,1483,5,351,0,0,1483,1485,3,768,384,0,1484,1486,5,272,0,0,1485, - 1484,1,0,0,0,1485,1486,1,0,0,0,1486,1583,1,0,0,0,1487,1488,5,138, - 0,0,1488,1490,5,92,0,0,1489,1491,3,422,211,0,1490,1489,1,0,0,0,1490, - 1491,1,0,0,0,1491,1492,1,0,0,0,1492,1493,3,774,387,0,1493,1498,3, - 90,45,0,1494,1495,5,62,0,0,1495,1496,5,422,0,0,1496,1499,3,80,40, - 0,1497,1499,5,53,0,0,1498,1494,1,0,0,0,1498,1497,1,0,0,0,1499,1583, - 1,0,0,0,1500,1501,5,138,0,0,1501,1503,5,92,0,0,1502,1504,3,422,211, - 0,1503,1502,1,0,0,0,1503,1504,1,0,0,0,1504,1505,1,0,0,0,1505,1506, - 3,774,387,0,1506,1507,5,436,0,0,1507,1508,5,285,0,0,1508,1510,3, - 780,390,0,1509,1511,7,11,0,0,1510,1509,1,0,0,0,1510,1511,1,0,0,0, - 1511,1583,1,0,0,0,1512,1513,5,138,0,0,1513,1515,5,226,0,0,1514,1516, - 3,422,211,0,1515,1514,1,0,0,0,1515,1516,1,0,0,0,1516,1517,1,0,0, - 0,1517,1520,3,780,390,0,1518,1521,3,78,39,0,1519,1521,3,90,45,0, - 1520,1518,1,0,0,0,1520,1519,1,0,0,0,1521,1583,1,0,0,0,1522,1523, - 5,138,0,0,1523,1524,5,226,0,0,1524,1525,5,30,0,0,1525,1526,5,68, - 0,0,1526,1530,3,176,88,0,1527,1528,5,281,0,0,1528,1529,5,147,0,0, - 1529,1531,3,816,408,0,1530,1527,1,0,0,0,1530,1531,1,0,0,0,1531,1532, - 1,0,0,0,1532,1533,5,333,0,0,1533,1535,3,176,88,0,1534,1536,5,272, - 0,0,1535,1534,1,0,0,0,1535,1536,1,0,0,0,1536,1583,1,0,0,0,1537,1538, - 5,138,0,0,1538,1540,5,328,0,0,1539,1541,3,422,211,0,1540,1539,1, - 0,0,0,1540,1541,1,0,0,0,1541,1542,1,0,0,0,1542,1543,3,780,390,0, - 1543,1544,3,78,39,0,1544,1583,1,0,0,0,1545,1547,5,138,0,0,1546,1548, - 5,259,0,0,1547,1546,1,0,0,0,1547,1548,1,0,0,0,1548,1549,1,0,0,0, - 1549,1551,5,376,0,0,1550,1552,3,422,211,0,1551,1550,1,0,0,0,1551, - 1552,1,0,0,0,1552,1553,1,0,0,0,1553,1554,3,778,389,0,1554,1555,3, - 78,39,0,1555,1583,1,0,0,0,1556,1557,5,138,0,0,1557,1558,5,259,0, - 0,1558,1559,5,376,0,0,1559,1560,5,30,0,0,1560,1561,5,68,0,0,1561, - 1565,3,176,88,0,1562,1563,5,281,0,0,1563,1564,5,147,0,0,1564,1566, - 3,816,408,0,1565,1562,1,0,0,0,1565,1566,1,0,0,0,1566,1567,1,0,0, - 0,1567,1568,5,333,0,0,1568,1569,5,351,0,0,1569,1571,3,768,384,0, - 1570,1572,5,272,0,0,1571,1570,1,0,0,0,1571,1572,1,0,0,0,1572,1583, - 1,0,0,0,1573,1574,5,138,0,0,1574,1575,5,63,0,0,1575,1577,5,92,0, - 0,1576,1578,3,422,211,0,1577,1576,1,0,0,0,1577,1578,1,0,0,0,1578, - 1579,1,0,0,0,1579,1580,3,624,312,0,1580,1581,3,78,39,0,1581,1583, - 1,0,0,0,1582,1461,1,0,0,0,1582,1471,1,0,0,0,1582,1487,1,0,0,0,1582, - 1500,1,0,0,0,1582,1512,1,0,0,0,1582,1522,1,0,0,0,1582,1537,1,0,0, - 0,1582,1545,1,0,0,0,1582,1556,1,0,0,0,1582,1573,1,0,0,0,1583,77, - 1,0,0,0,1584,1589,3,92,46,0,1585,1586,5,6,0,0,1586,1588,3,92,46, - 0,1587,1585,1,0,0,0,1588,1591,1,0,0,0,1589,1587,1,0,0,0,1589,1590, - 1,0,0,0,1590,79,1,0,0,0,1591,1589,1,0,0,0,1592,1593,5,68,0,0,1593, - 1602,3,534,267,0,1594,1595,5,64,0,0,1595,1596,3,82,41,0,1596,1597, - 5,94,0,0,1597,1598,3,82,41,0,1598,1602,1,0,0,0,1599,1600,5,105,0, - 0,1600,1602,3,86,43,0,1601,1592,1,0,0,0,1601,1594,1,0,0,0,1601,1599, - 1,0,0,0,1602,81,1,0,0,0,1603,1604,5,2,0,0,1604,1609,3,84,42,0,1605, - 1606,5,6,0,0,1606,1608,3,84,42,0,1607,1605,1,0,0,0,1608,1611,1,0, - 0,0,1609,1607,1,0,0,0,1609,1610,1,0,0,0,1610,1612,1,0,0,0,1611,1609, - 1,0,0,0,1612,1613,5,3,0,0,1613,83,1,0,0,0,1614,1618,3,534,267,0, - 1615,1618,5,262,0,0,1616,1618,5,260,0,0,1617,1614,1,0,0,0,1617,1615, - 1,0,0,0,1617,1616,1,0,0,0,1618,85,1,0,0,0,1619,1620,5,2,0,0,1620, - 1621,5,533,0,0,1621,1622,3,202,101,0,1622,1623,5,6,0,0,1623,1624, - 5,534,0,0,1624,1625,3,202,101,0,1625,1626,5,3,0,0,1626,87,1,0,0, - 0,1627,1628,3,90,45,0,1628,1629,3,106,53,0,1629,1634,1,0,0,0,1630, - 1631,5,436,0,0,1631,1632,5,285,0,0,1632,1634,3,780,390,0,1633,1627, - 1,0,0,0,1633,1630,1,0,0,0,1634,89,1,0,0,0,1635,1636,5,435,0,0,1636, - 1637,5,285,0,0,1637,1638,3,780,390,0,1638,91,1,0,0,0,1639,1642,5, - 133,0,0,1640,1641,5,45,0,0,1641,1643,3,818,409,0,1642,1640,1,0,0, - 0,1642,1643,1,0,0,0,1643,1644,1,0,0,0,1644,1873,3,142,71,0,1645, - 1646,5,138,0,0,1646,1647,5,45,0,0,1647,1651,3,818,409,0,1648,1650, - 3,272,136,0,1649,1648,1,0,0,0,1650,1653,1,0,0,0,1651,1649,1,0,0, - 0,1651,1652,1,0,0,0,1652,1873,1,0,0,0,1653,1651,1,0,0,0,1654,1655, - 5,372,0,0,1655,1656,5,45,0,0,1656,1873,3,818,409,0,1657,1658,5,191, - 0,0,1658,1660,5,45,0,0,1659,1661,3,422,211,0,1660,1659,1,0,0,0,1660, - 1661,1,0,0,0,1661,1662,1,0,0,0,1662,1664,3,818,409,0,1663,1665,3, - 96,48,0,1664,1663,1,0,0,0,1664,1665,1,0,0,0,1665,1873,1,0,0,0,1666, - 1667,5,333,0,0,1667,1668,5,379,0,0,1668,1873,7,12,0,0,1669,1670, - 5,158,0,0,1670,1671,5,80,0,0,1671,1873,3,818,409,0,1672,1673,5,333, - 0,0,1673,1873,7,13,0,0,1674,1676,5,193,0,0,1675,1677,7,14,0,0,1676, - 1675,1,0,0,0,1676,1677,1,0,0,0,1677,1678,1,0,0,0,1678,1873,5,357, - 0,0,1679,1680,5,186,0,0,1680,1684,5,357,0,0,1681,1685,5,30,0,0,1682, - 1685,5,99,0,0,1683,1685,3,818,409,0,1684,1681,1,0,0,0,1684,1682, - 1,0,0,0,1684,1683,1,0,0,0,1685,1873,1,0,0,0,1686,1687,5,193,0,0, - 1687,1688,7,14,0,0,1688,1689,5,321,0,0,1689,1873,3,818,409,0,1690, - 1691,5,186,0,0,1691,1692,5,321,0,0,1692,1873,3,818,409,0,1693,1695, - 5,269,0,0,1694,1693,1,0,0,0,1694,1695,1,0,0,0,1695,1696,1,0,0,0, - 1696,1697,5,228,0,0,1697,1873,3,780,390,0,1698,1699,5,275,0,0,1699, - 1873,3,316,158,0,1700,1701,5,77,0,0,1701,1873,5,275,0,0,1702,1703, - 5,282,0,0,1703,1704,5,94,0,0,1704,1873,3,814,407,0,1705,1706,5,333, - 0,0,1706,1707,5,351,0,0,1707,1873,3,768,384,0,1708,1709,5,312,0, - 0,1709,1714,5,219,0,0,1710,1715,5,270,0,0,1711,1715,5,113,0,0,1712, - 1715,5,53,0,0,1713,1715,3,180,90,0,1714,1710,1,0,0,0,1714,1711,1, - 0,0,0,1714,1712,1,0,0,0,1714,1713,1,0,0,0,1715,1873,1,0,0,0,1716, - 1723,5,193,0,0,1717,1723,5,186,0,0,1718,1720,5,269,0,0,1719,1718, - 1,0,0,0,1719,1720,1,0,0,0,1720,1721,1,0,0,0,1721,1723,5,209,0,0, - 1722,1716,1,0,0,0,1722,1717,1,0,0,0,1722,1719,1,0,0,0,1723,1724, - 1,0,0,0,1724,1725,5,414,0,0,1725,1726,5,251,0,0,1726,1873,5,327, - 0,0,1727,1729,5,191,0,0,1728,1730,5,44,0,0,1729,1728,1,0,0,0,1729, - 1730,1,0,0,0,1730,1732,1,0,0,0,1731,1733,3,422,211,0,1732,1731,1, - 0,0,0,1732,1733,1,0,0,0,1733,1734,1,0,0,0,1734,1736,3,800,400,0, - 1735,1737,3,96,48,0,1736,1735,1,0,0,0,1736,1737,1,0,0,0,1737,1873, - 1,0,0,0,1738,1740,5,133,0,0,1739,1741,5,44,0,0,1740,1739,1,0,0,0, - 1740,1741,1,0,0,0,1741,1743,1,0,0,0,1742,1744,3,294,147,0,1743,1742, - 1,0,0,0,1743,1744,1,0,0,0,1744,1745,1,0,0,0,1745,1873,3,132,66,0, - 1746,1748,5,138,0,0,1747,1749,5,44,0,0,1748,1747,1,0,0,0,1748,1749, - 1,0,0,0,1749,1750,1,0,0,0,1750,1753,3,800,400,0,1751,1754,3,94,47, - 0,1752,1754,3,222,111,0,1753,1751,1,0,0,0,1753,1752,1,0,0,0,1754, - 1873,1,0,0,0,1755,1757,5,138,0,0,1756,1758,5,44,0,0,1757,1756,1, - 0,0,0,1757,1758,1,0,0,0,1758,1759,1,0,0,0,1759,1760,3,800,400,0, - 1760,1761,7,15,0,0,1761,1762,5,77,0,0,1762,1763,5,78,0,0,1763,1873, - 1,0,0,0,1764,1766,5,138,0,0,1765,1767,5,44,0,0,1766,1765,1,0,0,0, - 1766,1767,1,0,0,0,1767,1768,1,0,0,0,1768,1769,3,800,400,0,1769,1770, - 5,191,0,0,1770,1772,5,437,0,0,1771,1773,3,422,211,0,1772,1771,1, - 0,0,0,1772,1773,1,0,0,0,1773,1873,1,0,0,0,1774,1776,5,138,0,0,1775, - 1777,5,44,0,0,1776,1775,1,0,0,0,1776,1777,1,0,0,0,1777,1778,1,0, - 0,0,1778,1779,3,800,400,0,1779,1780,5,333,0,0,1780,1781,5,342,0, - 0,1781,1782,3,812,406,0,1782,1873,1,0,0,0,1783,1785,5,138,0,0,1784, - 1786,5,44,0,0,1785,1784,1,0,0,0,1785,1786,1,0,0,0,1786,1787,1,0, - 0,0,1787,1789,3,800,400,0,1788,1783,1,0,0,0,1788,1789,1,0,0,0,1789, - 1790,1,0,0,0,1790,1791,7,16,0,0,1791,1873,3,100,50,0,1792,1794,5, - 138,0,0,1793,1795,5,44,0,0,1794,1793,1,0,0,0,1794,1795,1,0,0,0,1795, - 1796,1,0,0,0,1796,1797,3,800,400,0,1797,1798,5,333,0,0,1798,1799, - 5,345,0,0,1799,1800,3,818,409,0,1800,1873,1,0,0,0,1801,1803,5,138, - 0,0,1802,1804,5,44,0,0,1803,1802,1,0,0,0,1803,1804,1,0,0,0,1804, - 1805,1,0,0,0,1805,1806,3,800,400,0,1806,1807,5,133,0,0,1807,1808, - 5,438,0,0,1808,1809,3,138,69,0,1809,1810,5,36,0,0,1810,1819,5,219, - 0,0,1811,1813,5,2,0,0,1812,1814,3,200,100,0,1813,1812,1,0,0,0,1814, - 1815,1,0,0,0,1815,1813,1,0,0,0,1815,1816,1,0,0,0,1816,1817,1,0,0, - 0,1817,1818,5,3,0,0,1818,1820,1,0,0,0,1819,1811,1,0,0,0,1819,1820, - 1,0,0,0,1820,1873,1,0,0,0,1821,1823,5,138,0,0,1822,1824,5,44,0,0, - 1823,1822,1,0,0,0,1823,1824,1,0,0,0,1824,1825,1,0,0,0,1825,1839, - 3,800,400,0,1826,1831,5,314,0,0,1827,1829,5,105,0,0,1828,1827,1, - 0,0,0,1828,1829,1,0,0,0,1829,1830,1,0,0,0,1830,1832,3,202,101,0, - 1831,1828,1,0,0,0,1831,1832,1,0,0,0,1832,1840,1,0,0,0,1833,1837, - 5,333,0,0,1834,1838,3,200,100,0,1835,1836,5,438,0,0,1836,1838,3, - 138,69,0,1837,1834,1,0,0,0,1837,1835,1,0,0,0,1838,1840,1,0,0,0,1839, - 1826,1,0,0,0,1839,1833,1,0,0,0,1840,1841,1,0,0,0,1841,1839,1,0,0, - 0,1841,1842,1,0,0,0,1842,1873,1,0,0,0,1843,1845,5,138,0,0,1844,1846, - 5,44,0,0,1845,1844,1,0,0,0,1845,1846,1,0,0,0,1846,1847,1,0,0,0,1847, - 1848,3,800,400,0,1848,1849,5,191,0,0,1849,1851,5,219,0,0,1850,1852, - 3,422,211,0,1851,1850,1,0,0,0,1851,1852,1,0,0,0,1852,1873,1,0,0, - 0,1853,1855,5,138,0,0,1854,1856,5,44,0,0,1855,1854,1,0,0,0,1855, - 1856,1,0,0,0,1856,1857,1,0,0,0,1857,1860,3,800,400,0,1858,1859,5, - 333,0,0,1859,1861,5,174,0,0,1860,1858,1,0,0,0,1860,1861,1,0,0,0, - 1861,1862,1,0,0,0,1862,1863,5,360,0,0,1863,1865,3,652,326,0,1864, - 1866,3,98,49,0,1865,1864,1,0,0,0,1865,1866,1,0,0,0,1866,1869,1,0, - 0,0,1867,1868,5,100,0,0,1868,1870,3,674,337,0,1869,1867,1,0,0,0, - 1869,1870,1,0,0,0,1870,1873,1,0,0,0,1871,1873,3,222,111,0,1872,1639, - 1,0,0,0,1872,1645,1,0,0,0,1872,1654,1,0,0,0,1872,1657,1,0,0,0,1872, - 1666,1,0,0,0,1872,1669,1,0,0,0,1872,1672,1,0,0,0,1872,1674,1,0,0, - 0,1872,1679,1,0,0,0,1872,1686,1,0,0,0,1872,1690,1,0,0,0,1872,1694, - 1,0,0,0,1872,1698,1,0,0,0,1872,1700,1,0,0,0,1872,1702,1,0,0,0,1872, - 1705,1,0,0,0,1872,1708,1,0,0,0,1872,1722,1,0,0,0,1872,1727,1,0,0, - 0,1872,1738,1,0,0,0,1872,1746,1,0,0,0,1872,1755,1,0,0,0,1872,1764, - 1,0,0,0,1872,1774,1,0,0,0,1872,1788,1,0,0,0,1872,1792,1,0,0,0,1872, - 1801,1,0,0,0,1872,1821,1,0,0,0,1872,1843,1,0,0,0,1872,1853,1,0,0, - 0,1872,1871,1,0,0,0,1873,93,1,0,0,0,1874,1875,5,333,0,0,1875,1876, - 5,53,0,0,1876,1880,3,674,337,0,1877,1878,5,191,0,0,1878,1880,5,53, - 0,0,1879,1874,1,0,0,0,1879,1877,1,0,0,0,1880,95,1,0,0,0,1881,1882, - 7,17,0,0,1882,97,1,0,0,0,1883,1884,5,43,0,0,1884,1885,3,316,158, - 0,1885,99,1,0,0,0,1886,1887,5,2,0,0,1887,1892,3,104,52,0,1888,1889, - 5,6,0,0,1889,1891,3,104,52,0,1890,1888,1,0,0,0,1891,1894,1,0,0,0, - 1892,1890,1,0,0,0,1892,1893,1,0,0,0,1893,1895,1,0,0,0,1894,1892, - 1,0,0,0,1895,1896,5,3,0,0,1896,101,1,0,0,0,1897,1898,5,105,0,0,1898, - 1899,3,100,50,0,1899,103,1,0,0,0,1900,1905,3,824,412,0,1901,1902, - 5,10,0,0,1902,1906,3,288,144,0,1903,1904,5,11,0,0,1904,1906,3,286, - 143,0,1905,1901,1,0,0,0,1905,1903,1,0,0,0,1905,1906,1,0,0,0,1906, - 105,1,0,0,0,1907,1908,5,62,0,0,1908,1909,5,422,0,0,1909,1910,5,105, - 0,0,1910,1911,5,2,0,0,1911,1912,5,533,0,0,1912,1913,5,571,0,0,1913, - 1914,5,6,0,0,1914,1915,5,534,0,0,1915,1916,5,571,0,0,1916,1930,5, - 3,0,0,1917,1918,5,62,0,0,1918,1919,5,422,0,0,1919,1920,5,68,0,0, - 1920,1930,3,534,267,0,1921,1922,5,62,0,0,1922,1923,5,422,0,0,1923, - 1924,5,64,0,0,1924,1925,3,534,267,0,1925,1926,5,94,0,0,1926,1927, - 3,534,267,0,1927,1930,1,0,0,0,1928,1930,5,53,0,0,1929,1907,1,0,0, - 0,1929,1917,1,0,0,0,1929,1921,1,0,0,0,1929,1928,1,0,0,0,1930,107, - 1,0,0,0,1931,1932,5,138,0,0,1932,1933,5,360,0,0,1933,1934,3,316, - 158,0,1934,1939,3,110,55,0,1935,1936,5,6,0,0,1936,1938,3,110,55, - 0,1937,1935,1,0,0,0,1938,1941,1,0,0,0,1939,1937,1,0,0,0,1939,1940, - 1,0,0,0,1940,109,1,0,0,0,1941,1939,1,0,0,0,1942,1943,5,133,0,0,1943, - 1944,5,143,0,0,1944,1946,3,644,322,0,1945,1947,3,96,48,0,1946,1945, - 1,0,0,0,1946,1947,1,0,0,0,1947,1973,1,0,0,0,1948,1949,5,191,0,0, - 1949,1951,5,143,0,0,1950,1952,3,422,211,0,1951,1950,1,0,0,0,1951, - 1952,1,0,0,0,1952,1953,1,0,0,0,1953,1955,3,818,409,0,1954,1956,3, - 96,48,0,1955,1954,1,0,0,0,1955,1956,1,0,0,0,1956,1973,1,0,0,0,1957, - 1958,5,138,0,0,1958,1959,5,143,0,0,1959,1962,3,818,409,0,1960,1961, - 5,333,0,0,1961,1963,5,174,0,0,1962,1960,1,0,0,0,1962,1963,1,0,0, - 0,1963,1964,1,0,0,0,1964,1965,5,360,0,0,1965,1967,3,652,326,0,1966, - 1968,3,98,49,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968,1970,1,0, - 0,0,1969,1971,3,96,48,0,1970,1969,1,0,0,0,1970,1971,1,0,0,0,1971, - 1973,1,0,0,0,1972,1942,1,0,0,0,1972,1948,1,0,0,0,1972,1957,1,0,0, - 0,1973,111,1,0,0,0,1974,1977,5,157,0,0,1975,1978,3,818,409,0,1976, - 1978,5,30,0,0,1977,1975,1,0,0,0,1977,1976,1,0,0,0,1978,113,1,0,0, - 0,1979,1981,5,169,0,0,1980,1982,5,107,0,0,1981,1980,1,0,0,0,1981, - 1982,1,0,0,0,1982,1983,1,0,0,0,1983,1985,3,774,387,0,1984,1986,3, - 144,72,0,1985,1984,1,0,0,0,1985,1986,1,0,0,0,1986,1987,1,0,0,0,1987, - 1989,7,18,0,0,1988,1990,5,297,0,0,1989,1988,1,0,0,0,1989,1990,1, - 0,0,0,1990,1994,1,0,0,0,1991,1995,3,808,404,0,1992,1995,5,343,0, - 0,1993,1995,5,344,0,0,1994,1991,1,0,0,0,1994,1992,1,0,0,0,1994,1993, - 1,0,0,0,1995,2001,1,0,0,0,1996,1998,5,100,0,0,1997,1996,1,0,0,0, - 1997,1998,1,0,0,0,1998,1999,1,0,0,0,1999,2000,5,184,0,0,2000,2002, - 3,808,404,0,2001,1997,1,0,0,0,2001,2002,1,0,0,0,2002,2004,1,0,0, - 0,2003,2005,5,105,0,0,2004,2003,1,0,0,0,2004,2005,1,0,0,0,2005,2006, - 1,0,0,0,2006,2008,3,116,58,0,2007,2009,3,638,319,0,2008,2007,1,0, - 0,0,2008,2009,1,0,0,0,2009,2029,1,0,0,0,2010,2011,5,169,0,0,2011, - 2012,5,2,0,0,2012,2013,3,530,265,0,2013,2014,5,3,0,0,2014,2016,5, - 94,0,0,2015,2017,5,297,0,0,2016,2015,1,0,0,0,2016,2017,1,0,0,0,2017, - 2021,1,0,0,0,2018,2022,3,808,404,0,2019,2022,5,343,0,0,2020,2022, - 5,344,0,0,2021,2018,1,0,0,0,2021,2019,1,0,0,0,2021,2020,1,0,0,0, - 2022,2024,1,0,0,0,2023,2025,5,105,0,0,2024,2023,1,0,0,0,2024,2025, - 1,0,0,0,2025,2026,1,0,0,0,2026,2027,3,116,58,0,2027,2029,1,0,0,0, - 2028,1979,1,0,0,0,2028,2010,1,0,0,0,2029,115,1,0,0,0,2030,2054,5, - 107,0,0,2031,2054,5,112,0,0,2032,2034,7,19,0,0,2033,2035,5,36,0, - 0,2034,2033,1,0,0,0,2034,2035,1,0,0,0,2035,2036,1,0,0,0,2036,2054, - 3,808,404,0,2037,2054,5,171,0,0,2038,2054,5,216,0,0,2039,2040,5, - 209,0,0,2040,2043,5,298,0,0,2041,2044,3,148,74,0,2042,2044,5,9,0, - 0,2043,2041,1,0,0,0,2043,2042,1,0,0,0,2044,2054,1,0,0,0,2045,2047, - 5,209,0,0,2046,2048,5,77,0,0,2047,2046,1,0,0,0,2047,2048,1,0,0,0, - 2048,2049,1,0,0,0,2049,2050,5,78,0,0,2050,2054,3,148,74,0,2051,2052, - 5,194,0,0,2052,2054,3,808,404,0,2053,2030,1,0,0,0,2053,2031,1,0, - 0,0,2053,2032,1,0,0,0,2053,2037,1,0,0,0,2053,2038,1,0,0,0,2053,2039, - 1,0,0,0,2053,2045,1,0,0,0,2053,2051,1,0,0,0,2054,2057,1,0,0,0,2055, - 2053,1,0,0,0,2055,2056,1,0,0,0,2056,2070,1,0,0,0,2057,2055,1,0,0, - 0,2058,2059,5,2,0,0,2059,2064,3,118,59,0,2060,2061,5,6,0,0,2061, - 2063,3,118,59,0,2062,2060,1,0,0,0,2063,2066,1,0,0,0,2064,2062,1, - 0,0,0,2064,2065,1,0,0,0,2065,2067,1,0,0,0,2066,2064,1,0,0,0,2067, - 2068,5,3,0,0,2068,2070,1,0,0,0,2069,2055,1,0,0,0,2069,2058,1,0,0, - 0,2070,117,1,0,0,0,2071,2086,3,824,412,0,2072,2087,3,54,27,0,2073, - 2087,3,202,101,0,2074,2087,5,9,0,0,2075,2076,5,2,0,0,2076,2081,3, - 52,26,0,2077,2078,5,6,0,0,2078,2080,3,52,26,0,2079,2077,1,0,0,0, - 2080,2083,1,0,0,0,2081,2079,1,0,0,0,2081,2082,1,0,0,0,2082,2084, - 1,0,0,0,2083,2081,1,0,0,0,2084,2085,5,3,0,0,2085,2087,1,0,0,0,2086, - 2072,1,0,0,0,2086,2073,1,0,0,0,2086,2074,1,0,0,0,2086,2075,1,0,0, - 0,2086,2087,1,0,0,0,2087,119,1,0,0,0,2088,2090,5,46,0,0,2089,2091, - 3,122,61,0,2090,2089,1,0,0,0,2090,2091,1,0,0,0,2091,2092,1,0,0,0, - 2092,2094,5,92,0,0,2093,2095,3,294,147,0,2094,2093,1,0,0,0,2094, - 2095,1,0,0,0,2095,2096,1,0,0,0,2096,2162,3,772,386,0,2097,2099,5, - 2,0,0,2098,2100,3,126,63,0,2099,2098,1,0,0,0,2099,2100,1,0,0,0,2100, - 2101,1,0,0,0,2101,2103,5,3,0,0,2102,2104,3,164,82,0,2103,2102,1, - 0,0,0,2103,2104,1,0,0,0,2104,2106,1,0,0,0,2105,2107,3,166,83,0,2106, - 2105,1,0,0,0,2106,2107,1,0,0,0,2107,2109,1,0,0,0,2108,2110,3,170, - 85,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1,0,0,0,2111, - 2113,3,172,86,0,2112,2111,1,0,0,0,2112,2113,1,0,0,0,2113,2115,1, - 0,0,0,2114,2116,3,174,87,0,2115,2114,1,0,0,0,2115,2116,1,0,0,0,2116, - 2118,1,0,0,0,2117,2119,3,176,88,0,2118,2117,1,0,0,0,2118,2119,1, - 0,0,0,2119,2163,1,0,0,0,2120,2121,5,275,0,0,2121,2123,3,316,158, - 0,2122,2124,3,124,62,0,2123,2122,1,0,0,0,2123,2124,1,0,0,0,2124, - 2126,1,0,0,0,2125,2127,3,166,83,0,2126,2125,1,0,0,0,2126,2127,1, - 0,0,0,2127,2129,1,0,0,0,2128,2130,3,170,85,0,2129,2128,1,0,0,0,2129, - 2130,1,0,0,0,2130,2132,1,0,0,0,2131,2133,3,172,86,0,2132,2131,1, - 0,0,0,2132,2133,1,0,0,0,2133,2135,1,0,0,0,2134,2136,3,174,87,0,2135, - 2134,1,0,0,0,2135,2136,1,0,0,0,2136,2138,1,0,0,0,2137,2139,3,176, - 88,0,2138,2137,1,0,0,0,2138,2139,1,0,0,0,2139,2163,1,0,0,0,2140, - 2141,5,285,0,0,2141,2142,5,275,0,0,2142,2144,3,780,390,0,2143,2145, - 3,124,62,0,2144,2143,1,0,0,0,2144,2145,1,0,0,0,2145,2146,1,0,0,0, - 2146,2148,3,106,53,0,2147,2149,3,166,83,0,2148,2147,1,0,0,0,2148, - 2149,1,0,0,0,2149,2151,1,0,0,0,2150,2152,3,170,85,0,2151,2150,1, - 0,0,0,2151,2152,1,0,0,0,2152,2154,1,0,0,0,2153,2155,3,172,86,0,2154, - 2153,1,0,0,0,2154,2155,1,0,0,0,2155,2157,1,0,0,0,2156,2158,3,174, - 87,0,2157,2156,1,0,0,0,2157,2158,1,0,0,0,2158,2160,1,0,0,0,2159, - 2161,3,176,88,0,2160,2159,1,0,0,0,2160,2161,1,0,0,0,2161,2163,1, - 0,0,0,2162,2097,1,0,0,0,2162,2120,1,0,0,0,2162,2140,1,0,0,0,2163, - 121,1,0,0,0,2164,2170,5,354,0,0,2165,2170,5,352,0,0,2166,2167,7, - 20,0,0,2167,2170,7,21,0,0,2168,2170,5,367,0,0,2169,2164,1,0,0,0, - 2169,2165,1,0,0,0,2169,2166,1,0,0,0,2169,2168,1,0,0,0,2170,123,1, - 0,0,0,2171,2172,5,2,0,0,2172,2177,3,130,65,0,2173,2174,5,6,0,0,2174, - 2176,3,130,65,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,3,0,0,2181,125,1,0,0,0,2182,2187,3,128,64,0,2183,2184,5,6, - 0,0,2184,2186,3,128,64,0,2185,2183,1,0,0,0,2186,2189,1,0,0,0,2187, - 2185,1,0,0,0,2187,2188,1,0,0,0,2188,127,1,0,0,0,2189,2187,1,0,0, - 0,2190,2191,5,45,0,0,2191,2193,3,818,409,0,2192,2190,1,0,0,0,2192, - 2193,1,0,0,0,2193,2194,1,0,0,0,2194,2206,3,142,71,0,2195,2206,3, - 132,66,0,2196,2197,5,120,0,0,2197,2202,3,780,390,0,2198,2199,7,22, - 0,0,2199,2201,3,140,70,0,2200,2198,1,0,0,0,2201,2204,1,0,0,0,2202, - 2200,1,0,0,0,2202,2203,1,0,0,0,2203,2206,1,0,0,0,2204,2202,1,0,0, - 0,2205,2192,1,0,0,0,2205,2195,1,0,0,0,2205,2196,1,0,0,0,2206,129, - 1,0,0,0,2207,2210,3,802,401,0,2208,2209,5,105,0,0,2209,2211,5,280, - 0,0,2210,2208,1,0,0,0,2210,2211,1,0,0,0,2211,2215,1,0,0,0,2212,2214, - 3,134,67,0,2213,2212,1,0,0,0,2214,2217,1,0,0,0,2215,2213,1,0,0,0, - 2215,2216,1,0,0,0,2216,2224,1,0,0,0,2217,2215,1,0,0,0,2218,2219, - 5,45,0,0,2219,2221,3,818,409,0,2220,2218,1,0,0,0,2220,2221,1,0,0, - 0,2221,2222,1,0,0,0,2222,2224,3,142,71,0,2223,2207,1,0,0,0,2223, - 2220,1,0,0,0,2224,131,1,0,0,0,2225,2226,3,802,401,0,2226,2228,3, - 652,326,0,2227,2229,3,220,110,0,2228,2227,1,0,0,0,2228,2229,1,0, - 0,0,2229,2239,1,0,0,0,2230,2237,5,345,0,0,2231,2238,5,544,0,0,2232, - 2238,5,205,0,0,2233,2238,5,545,0,0,2234,2238,5,546,0,0,2235,2238, - 5,53,0,0,2236,2238,3,818,409,0,2237,2231,1,0,0,0,2237,2232,1,0,0, - 0,2237,2233,1,0,0,0,2237,2234,1,0,0,0,2237,2235,1,0,0,0,2237,2236, - 1,0,0,0,2238,2240,1,0,0,0,2239,2230,1,0,0,0,2239,2240,1,0,0,0,2240, - 2243,1,0,0,0,2241,2242,5,543,0,0,2242,2244,3,818,409,0,2243,2241, - 1,0,0,0,2243,2244,1,0,0,0,2244,2246,1,0,0,0,2245,2247,3,98,49,0, - 2246,2245,1,0,0,0,2246,2247,1,0,0,0,2247,2250,1,0,0,0,2248,2249, - 5,105,0,0,2249,2251,5,280,0,0,2250,2248,1,0,0,0,2250,2251,1,0,0, - 0,2251,2255,1,0,0,0,2252,2254,3,134,67,0,2253,2252,1,0,0,0,2254, - 2257,1,0,0,0,2255,2253,1,0,0,0,2255,2256,1,0,0,0,2256,133,1,0,0, - 0,2257,2255,1,0,0,0,2258,2259,5,45,0,0,2259,2261,3,818,409,0,2260, - 2258,1,0,0,0,2260,2261,1,0,0,0,2261,2262,1,0,0,0,2262,2267,3,136, - 68,0,2263,2265,5,77,0,0,2264,2263,1,0,0,0,2264,2265,1,0,0,0,2265, - 2266,1,0,0,0,2266,2268,5,54,0,0,2267,2264,1,0,0,0,2267,2268,1,0, - 0,0,2268,2271,1,0,0,0,2269,2270,5,69,0,0,2270,2272,7,9,0,0,2271, - 2269,1,0,0,0,2271,2272,1,0,0,0,2272,135,1,0,0,0,2273,2275,5,77,0, - 0,2274,2273,1,0,0,0,2274,2275,1,0,0,0,2275,2276,1,0,0,0,2276,2354, - 5,78,0,0,2277,2279,5,98,0,0,2278,2280,3,400,200,0,2279,2278,1,0, - 0,0,2279,2280,1,0,0,0,2280,2282,1,0,0,0,2281,2283,3,178,89,0,2282, - 2281,1,0,0,0,2282,2283,1,0,0,0,2283,2354,1,0,0,0,2284,2290,5,98, - 0,0,2285,2287,5,273,0,0,2286,2288,5,77,0,0,2287,2286,1,0,0,0,2287, - 2288,1,0,0,0,2288,2289,1,0,0,0,2289,2291,5,56,0,0,2290,2285,1,0, - 0,0,2290,2291,1,0,0,0,2291,2294,1,0,0,0,2292,2293,5,441,0,0,2293, - 2295,3,360,180,0,2294,2292,1,0,0,0,2294,2295,1,0,0,0,2295,2297,1, - 0,0,0,2296,2298,3,572,286,0,2297,2296,1,0,0,0,2297,2298,1,0,0,0, - 2298,2300,1,0,0,0,2299,2301,3,178,89,0,2300,2299,1,0,0,0,2300,2301, - 1,0,0,0,2301,2354,1,0,0,0,2302,2303,5,85,0,0,2303,2305,5,245,0,0, - 2304,2306,3,400,200,0,2305,2304,1,0,0,0,2305,2306,1,0,0,0,2306,2308, - 1,0,0,0,2307,2309,3,178,89,0,2308,2307,1,0,0,0,2308,2309,1,0,0,0, - 2309,2354,1,0,0,0,2310,2311,5,42,0,0,2311,2312,5,2,0,0,2312,2313, - 3,674,337,0,2313,2316,5,3,0,0,2314,2315,5,269,0,0,2315,2317,5,228, - 0,0,2316,2314,1,0,0,0,2316,2317,1,0,0,0,2317,2354,1,0,0,0,2318,2319, - 5,53,0,0,2319,2354,3,682,341,0,2320,2321,5,438,0,0,2321,2322,3,138, - 69,0,2322,2339,5,36,0,0,2323,2332,5,219,0,0,2324,2326,5,2,0,0,2325, - 2327,3,200,100,0,2326,2325,1,0,0,0,2327,2328,1,0,0,0,2328,2326,1, - 0,0,0,2328,2329,1,0,0,0,2329,2330,1,0,0,0,2330,2331,5,3,0,0,2331, - 2333,1,0,0,0,2332,2324,1,0,0,0,2332,2333,1,0,0,0,2333,2340,1,0,0, - 0,2334,2335,5,2,0,0,2335,2336,3,674,337,0,2336,2337,5,3,0,0,2337, - 2338,5,440,0,0,2338,2340,1,0,0,0,2339,2323,1,0,0,0,2339,2334,1,0, - 0,0,2340,2354,1,0,0,0,2341,2342,5,86,0,0,2342,2344,3,780,390,0,2343, - 2345,3,144,72,0,2344,2343,1,0,0,0,2344,2345,1,0,0,0,2345,2347,1, - 0,0,0,2346,2348,3,152,76,0,2347,2346,1,0,0,0,2347,2348,1,0,0,0,2348, - 2350,1,0,0,0,2349,2351,3,156,78,0,2350,2349,1,0,0,0,2350,2351,1, - 0,0,0,2351,2354,1,0,0,0,2352,2354,3,98,49,0,2353,2274,1,0,0,0,2353, - 2277,1,0,0,0,2353,2284,1,0,0,0,2353,2302,1,0,0,0,2353,2310,1,0,0, - 0,2353,2318,1,0,0,0,2353,2320,1,0,0,0,2353,2341,1,0,0,0,2353,2352, - 1,0,0,0,2354,137,1,0,0,0,2355,2359,5,139,0,0,2356,2357,5,147,0,0, - 2357,2359,5,53,0,0,2358,2355,1,0,0,0,2358,2356,1,0,0,0,2359,139, - 1,0,0,0,2360,2361,7,23,0,0,2361,141,1,0,0,0,2362,2363,5,42,0,0,2363, - 2364,5,2,0,0,2364,2365,3,674,337,0,2365,2369,5,3,0,0,2366,2368,3, - 272,136,0,2367,2366,1,0,0,0,2368,2371,1,0,0,0,2369,2367,1,0,0,0, - 2369,2370,1,0,0,0,2370,2459,1,0,0,0,2371,2369,1,0,0,0,2372,2376, - 5,98,0,0,2373,2374,5,85,0,0,2374,2376,5,245,0,0,2375,2372,1,0,0, - 0,2375,2373,1,0,0,0,2376,2400,1,0,0,0,2377,2379,3,144,72,0,2378, - 2380,3,150,75,0,2379,2378,1,0,0,0,2379,2380,1,0,0,0,2380,2382,1, - 0,0,0,2381,2383,3,400,200,0,2382,2381,1,0,0,0,2382,2383,1,0,0,0, - 2383,2385,1,0,0,0,2384,2386,3,178,89,0,2385,2384,1,0,0,0,2385,2386, - 1,0,0,0,2386,2390,1,0,0,0,2387,2389,3,272,136,0,2388,2387,1,0,0, - 0,2389,2392,1,0,0,0,2390,2388,1,0,0,0,2390,2391,1,0,0,0,2391,2401, - 1,0,0,0,2392,2390,1,0,0,0,2393,2397,3,180,90,0,2394,2396,3,272,136, - 0,2395,2394,1,0,0,0,2396,2399,1,0,0,0,2397,2395,1,0,0,0,2397,2398, - 1,0,0,0,2398,2401,1,0,0,0,2399,2397,1,0,0,0,2400,2377,1,0,0,0,2400, - 2393,1,0,0,0,2401,2459,1,0,0,0,2402,2404,5,199,0,0,2403,2405,3,170, - 85,0,2404,2403,1,0,0,0,2404,2405,1,0,0,0,2405,2406,1,0,0,0,2406, - 2407,5,2,0,0,2407,2412,3,154,77,0,2408,2409,5,6,0,0,2409,2411,3, - 154,77,0,2410,2408,1,0,0,0,2411,2414,1,0,0,0,2412,2410,1,0,0,0,2412, - 2413,1,0,0,0,2413,2415,1,0,0,0,2414,2412,1,0,0,0,2415,2417,5,3,0, - 0,2416,2418,3,150,75,0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418, - 2420,1,0,0,0,2419,2421,3,400,200,0,2420,2419,1,0,0,0,2420,2421,1, - 0,0,0,2421,2423,1,0,0,0,2422,2424,3,178,89,0,2423,2422,1,0,0,0,2423, - 2424,1,0,0,0,2424,2430,1,0,0,0,2425,2426,5,103,0,0,2426,2427,5,2, - 0,0,2427,2428,3,674,337,0,2428,2429,5,3,0,0,2429,2431,1,0,0,0,2430, - 2425,1,0,0,0,2430,2431,1,0,0,0,2431,2435,1,0,0,0,2432,2434,3,272, - 136,0,2433,2432,1,0,0,0,2434,2437,1,0,0,0,2435,2433,1,0,0,0,2435, - 2436,1,0,0,0,2436,2459,1,0,0,0,2437,2435,1,0,0,0,2438,2439,5,63, - 0,0,2439,2440,5,245,0,0,2440,2441,3,144,72,0,2441,2442,5,86,0,0, - 2442,2444,3,780,390,0,2443,2445,3,144,72,0,2444,2443,1,0,0,0,2444, - 2445,1,0,0,0,2445,2447,1,0,0,0,2446,2448,3,152,76,0,2447,2446,1, - 0,0,0,2447,2448,1,0,0,0,2448,2450,1,0,0,0,2449,2451,3,156,78,0,2450, - 2449,1,0,0,0,2450,2451,1,0,0,0,2451,2455,1,0,0,0,2452,2454,3,272, - 136,0,2453,2452,1,0,0,0,2454,2457,1,0,0,0,2455,2453,1,0,0,0,2455, - 2456,1,0,0,0,2456,2459,1,0,0,0,2457,2455,1,0,0,0,2458,2362,1,0,0, - 0,2458,2375,1,0,0,0,2458,2402,1,0,0,0,2458,2438,1,0,0,0,2459,143, - 1,0,0,0,2460,2461,5,2,0,0,2461,2462,3,148,74,0,2462,2463,5,3,0,0, - 2463,145,1,0,0,0,2464,2465,5,2,0,0,2465,2470,3,802,401,0,2466,2467, - 5,6,0,0,2467,2469,3,802,401,0,2468,2466,1,0,0,0,2469,2472,1,0,0, - 0,2470,2468,1,0,0,0,2470,2471,1,0,0,0,2471,2473,1,0,0,0,2472,2470, - 1,0,0,0,2473,2474,5,3,0,0,2474,147,1,0,0,0,2475,2480,3,800,400,0, - 2476,2477,5,6,0,0,2477,2479,3,800,400,0,2478,2476,1,0,0,0,2479,2482, - 1,0,0,0,2480,2478,1,0,0,0,2480,2481,1,0,0,0,2481,149,1,0,0,0,2482, - 2480,1,0,0,0,2483,2484,5,441,0,0,2484,2485,3,144,72,0,2485,151,1, - 0,0,0,2486,2487,5,258,0,0,2487,2488,7,24,0,0,2488,153,1,0,0,0,2489, - 2490,3,362,181,0,2490,2497,5,105,0,0,2491,2498,3,414,207,0,2492, - 2493,5,278,0,0,2493,2494,5,2,0,0,2494,2495,3,414,207,0,2495,2496, - 5,3,0,0,2496,2498,1,0,0,0,2497,2491,1,0,0,0,2497,2492,1,0,0,0,2498, - 155,1,0,0,0,2499,2501,3,158,79,0,2500,2502,3,160,80,0,2501,2500, - 1,0,0,0,2501,2502,1,0,0,0,2502,2508,1,0,0,0,2503,2505,3,160,80,0, - 2504,2506,3,158,79,0,2505,2504,1,0,0,0,2505,2506,1,0,0,0,2506,2508, - 1,0,0,0,2507,2499,1,0,0,0,2507,2503,1,0,0,0,2508,157,1,0,0,0,2509, - 2510,5,80,0,0,2510,2511,5,369,0,0,2511,2512,3,162,81,0,2512,159, - 1,0,0,0,2513,2514,5,80,0,0,2514,2515,5,182,0,0,2515,2516,3,162,81, - 0,2516,161,1,0,0,0,2517,2518,5,269,0,0,2518,2527,5,132,0,0,2519, - 2527,5,315,0,0,2520,2527,5,150,0,0,2521,2522,5,333,0,0,2522,2524, - 7,25,0,0,2523,2525,3,148,74,0,2524,2523,1,0,0,0,2524,2525,1,0,0, - 0,2525,2527,1,0,0,0,2526,2517,1,0,0,0,2526,2519,1,0,0,0,2526,2520, - 1,0,0,0,2526,2521,1,0,0,0,2527,163,1,0,0,0,2528,2529,5,238,0,0,2529, - 2530,5,2,0,0,2530,2531,3,760,380,0,2531,2532,5,3,0,0,2532,165,1, - 0,0,0,2533,2534,5,285,0,0,2534,2535,5,147,0,0,2535,2536,3,818,409, - 0,2536,2537,5,2,0,0,2537,2542,3,168,84,0,2538,2539,5,6,0,0,2539, - 2541,3,168,84,0,2540,2538,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,3,0,0,2546,167,1,0,0,0,2547,2554,3,800,400,0,2548,2554,3, - 688,344,0,2549,2550,5,2,0,0,2550,2551,3,674,337,0,2551,2552,5,3, - 0,0,2552,2554,1,0,0,0,2553,2547,1,0,0,0,2553,2548,1,0,0,0,2553,2549, - 1,0,0,0,2554,2556,1,0,0,0,2555,2557,3,98,49,0,2556,2555,1,0,0,0, - 2556,2557,1,0,0,0,2557,2559,1,0,0,0,2558,2560,3,316,158,0,2559,2558, - 1,0,0,0,2559,2560,1,0,0,0,2560,169,1,0,0,0,2561,2562,5,100,0,0,2562, - 2563,3,818,409,0,2563,171,1,0,0,0,2564,2565,5,105,0,0,2565,2569, - 3,100,50,0,2566,2567,7,26,0,0,2567,2569,5,277,0,0,2568,2564,1,0, - 0,0,2568,2566,1,0,0,0,2569,173,1,0,0,0,2570,2571,5,80,0,0,2571,2577, - 5,161,0,0,2572,2578,5,191,0,0,2573,2574,5,182,0,0,2574,2578,5,320, - 0,0,2575,2576,5,292,0,0,2576,2578,5,320,0,0,2577,2572,1,0,0,0,2577, - 2573,1,0,0,0,2577,2575,1,0,0,0,2578,175,1,0,0,0,2579,2580,5,351, - 0,0,2580,2581,3,770,385,0,2581,177,1,0,0,0,2582,2583,5,100,0,0,2583, - 2584,5,226,0,0,2584,2585,3,176,88,0,2585,179,1,0,0,0,2586,2587,5, - 100,0,0,2587,2588,5,226,0,0,2588,2589,3,818,409,0,2589,181,1,0,0, - 0,2590,2591,5,46,0,0,2591,2596,5,342,0,0,2592,2594,3,294,147,0,2593, - 2592,1,0,0,0,2593,2594,1,0,0,0,2594,2595,1,0,0,0,2595,2597,3,316, - 158,0,2596,2593,1,0,0,0,2596,2597,1,0,0,0,2597,2599,1,0,0,0,2598, - 2600,3,144,72,0,2599,2598,1,0,0,0,2599,2600,1,0,0,0,2600,2601,1, - 0,0,0,2601,2611,5,80,0,0,2602,2607,3,732,366,0,2603,2604,5,6,0,0, - 2604,2606,3,732,366,0,2605,2603,1,0,0,0,2606,2609,1,0,0,0,2607,2605, - 1,0,0,0,2607,2608,1,0,0,0,2608,2612,1,0,0,0,2609,2607,1,0,0,0,2610, - 2612,3,730,365,0,2611,2602,1,0,0,0,2611,2610,1,0,0,0,2612,2613,1, - 0,0,0,2613,2614,3,610,305,0,2614,183,1,0,0,0,2615,2616,5,138,0,0, - 2616,2618,5,342,0,0,2617,2619,3,422,211,0,2618,2617,1,0,0,0,2618, - 2619,1,0,0,0,2619,2620,1,0,0,0,2620,2621,3,316,158,0,2621,2622,5, - 333,0,0,2622,2623,5,342,0,0,2623,2624,3,812,406,0,2624,185,1,0,0, - 0,2625,2627,5,46,0,0,2626,2628,3,122,61,0,2627,2626,1,0,0,0,2627, - 2628,1,0,0,0,2628,2629,1,0,0,0,2629,2631,5,92,0,0,2630,2632,3,294, - 147,0,2631,2630,1,0,0,0,2631,2632,1,0,0,0,2632,2633,1,0,0,0,2633, - 2634,3,188,94,0,2634,2635,5,36,0,0,2635,2637,3,560,280,0,2636,2638, - 3,190,95,0,2637,2636,1,0,0,0,2637,2638,1,0,0,0,2638,187,1,0,0,0, - 2639,2641,3,772,386,0,2640,2642,3,146,73,0,2641,2640,1,0,0,0,2641, - 2642,1,0,0,0,2642,2644,1,0,0,0,2643,2645,3,170,85,0,2644,2643,1, - 0,0,0,2644,2645,1,0,0,0,2645,2647,1,0,0,0,2646,2648,3,172,86,0,2647, - 2646,1,0,0,0,2647,2648,1,0,0,0,2648,2650,1,0,0,0,2649,2651,3,174, - 87,0,2650,2649,1,0,0,0,2650,2651,1,0,0,0,2651,2653,1,0,0,0,2652, - 2654,3,176,88,0,2653,2652,1,0,0,0,2653,2654,1,0,0,0,2654,189,1,0, - 0,0,2655,2659,5,105,0,0,2656,2660,5,174,0,0,2657,2658,5,269,0,0, - 2658,2660,5,174,0,0,2659,2656,1,0,0,0,2659,2657,1,0,0,0,2660,191, - 1,0,0,0,2661,2663,5,46,0,0,2662,2664,5,367,0,0,2663,2662,1,0,0,0, - 2663,2664,1,0,0,0,2664,2665,1,0,0,0,2665,2666,5,259,0,0,2666,2668, - 5,376,0,0,2667,2669,3,294,147,0,2668,2667,1,0,0,0,2668,2669,1,0, - 0,0,2669,2670,1,0,0,0,2670,2672,3,776,388,0,2671,2673,3,146,73,0, - 2672,2671,1,0,0,0,2672,2673,1,0,0,0,2673,2675,1,0,0,0,2674,2676, - 3,170,85,0,2675,2674,1,0,0,0,2675,2676,1,0,0,0,2676,2678,1,0,0,0, - 2677,2679,3,102,51,0,2678,2677,1,0,0,0,2678,2679,1,0,0,0,2679,2681, - 1,0,0,0,2680,2682,3,176,88,0,2681,2680,1,0,0,0,2681,2682,1,0,0,0, - 2682,2683,1,0,0,0,2683,2684,5,36,0,0,2684,2686,3,560,280,0,2685, - 2687,3,190,95,0,2686,2685,1,0,0,0,2686,2687,1,0,0,0,2687,193,1,0, - 0,0,2688,2689,5,305,0,0,2689,2690,5,259,0,0,2690,2692,5,376,0,0, - 2691,2693,5,109,0,0,2692,2691,1,0,0,0,2692,2693,1,0,0,0,2693,2694, - 1,0,0,0,2694,2696,3,778,389,0,2695,2697,3,190,95,0,2696,2695,1,0, - 0,0,2696,2697,1,0,0,0,2697,195,1,0,0,0,2698,2700,5,46,0,0,2699,2701, - 3,122,61,0,2700,2699,1,0,0,0,2700,2701,1,0,0,0,2701,2702,1,0,0,0, - 2702,2704,5,328,0,0,2703,2705,3,294,147,0,2704,2703,1,0,0,0,2704, - 2705,1,0,0,0,2705,2706,1,0,0,0,2706,2712,3,780,390,0,2707,2709,3, - 200,100,0,2708,2707,1,0,0,0,2709,2710,1,0,0,0,2710,2708,1,0,0,0, - 2710,2711,1,0,0,0,2711,2713,1,0,0,0,2712,2708,1,0,0,0,2712,2713, - 1,0,0,0,2713,197,1,0,0,0,2714,2715,5,138,0,0,2715,2717,5,328,0,0, - 2716,2718,3,422,211,0,2717,2716,1,0,0,0,2717,2718,1,0,0,0,2718,2719, - 1,0,0,0,2719,2721,3,780,390,0,2720,2722,3,200,100,0,2721,2720,1, - 0,0,0,2722,2723,1,0,0,0,2723,2721,1,0,0,0,2723,2724,1,0,0,0,2724, - 199,1,0,0,0,2725,2726,5,36,0,0,2726,2759,3,654,327,0,2727,2729,5, - 148,0,0,2728,2730,3,202,101,0,2729,2728,1,0,0,0,2729,2730,1,0,0, - 0,2730,2759,1,0,0,0,2731,2733,5,225,0,0,2732,2734,5,147,0,0,2733, - 2732,1,0,0,0,2733,2734,1,0,0,0,2734,2735,1,0,0,0,2735,2759,3,202, - 101,0,2736,2737,7,27,0,0,2737,2759,3,202,101,0,2738,2739,5,269,0, - 0,2739,2759,7,28,0,0,2740,2741,5,281,0,0,2741,2742,5,147,0,0,2742, - 2759,3,800,400,0,2743,2744,5,328,0,0,2744,2745,5,266,0,0,2745,2759, - 3,316,158,0,2746,2748,5,340,0,0,2747,2749,5,105,0,0,2748,2747,1, - 0,0,0,2748,2749,1,0,0,0,2749,2750,1,0,0,0,2750,2759,3,202,101,0, - 2751,2753,5,314,0,0,2752,2754,5,105,0,0,2753,2752,1,0,0,0,2753,2754, - 1,0,0,0,2754,2756,1,0,0,0,2755,2757,3,202,101,0,2756,2755,1,0,0, - 0,2756,2757,1,0,0,0,2757,2759,1,0,0,0,2758,2725,1,0,0,0,2758,2727, - 1,0,0,0,2758,2731,1,0,0,0,2758,2736,1,0,0,0,2758,2738,1,0,0,0,2758, - 2740,1,0,0,0,2758,2743,1,0,0,0,2758,2746,1,0,0,0,2758,2751,1,0,0, - 0,2759,201,1,0,0,0,2760,2762,7,29,0,0,2761,2760,1,0,0,0,2761,2762, - 1,0,0,0,2762,2763,1,0,0,0,2763,2766,5,573,0,0,2764,2766,3,812,406, - 0,2765,2761,1,0,0,0,2765,2764,1,0,0,0,2766,203,1,0,0,0,2767,2769, - 5,46,0,0,2768,2770,3,366,183,0,2769,2768,1,0,0,0,2769,2770,1,0,0, - 0,2770,2772,1,0,0,0,2771,2773,5,359,0,0,2772,2771,1,0,0,0,2772,2773, - 1,0,0,0,2773,2775,1,0,0,0,2774,2776,5,295,0,0,2775,2774,1,0,0,0, - 2775,2776,1,0,0,0,2776,2777,1,0,0,0,2777,2778,5,247,0,0,2778,2791, - 3,818,409,0,2779,2780,5,215,0,0,2780,2783,3,316,158,0,2781,2782, - 5,239,0,0,2782,2784,3,316,158,0,2783,2781,1,0,0,0,2783,2784,1,0, - 0,0,2784,2789,1,0,0,0,2785,2786,5,373,0,0,2786,2790,3,316,158,0, - 2787,2788,5,269,0,0,2788,2790,5,373,0,0,2789,2785,1,0,0,0,2789,2787, - 1,0,0,0,2789,2790,1,0,0,0,2790,2792,1,0,0,0,2791,2779,1,0,0,0,2791, - 2792,1,0,0,0,2792,205,1,0,0,0,2793,2794,5,46,0,0,2794,2797,3,176, - 88,0,2795,2796,5,282,0,0,2796,2798,3,814,407,0,2797,2795,1,0,0,0, - 2797,2798,1,0,0,0,2798,2799,1,0,0,0,2799,2800,5,255,0,0,2800,2802, - 3,808,404,0,2801,2803,3,102,51,0,2802,2801,1,0,0,0,2802,2803,1,0, - 0,0,2803,207,1,0,0,0,2804,2805,5,46,0,0,2805,2807,5,204,0,0,2806, - 2808,3,294,147,0,2807,2806,1,0,0,0,2807,2808,1,0,0,0,2808,2809,1, - 0,0,0,2809,2811,3,818,409,0,2810,2812,5,105,0,0,2811,2810,1,0,0, - 0,2811,2812,1,0,0,0,2812,2820,1,0,0,0,2813,2814,5,323,0,0,2814,2819, - 3,790,395,0,2815,2816,7,30,0,0,2816,2819,3,58,29,0,2817,2819,5,150, - 0,0,2818,2813,1,0,0,0,2818,2815,1,0,0,0,2818,2817,1,0,0,0,2819,2822, - 1,0,0,0,2820,2818,1,0,0,0,2820,2821,1,0,0,0,2821,209,1,0,0,0,2822, - 2820,1,0,0,0,2823,2824,5,138,0,0,2824,2825,5,204,0,0,2825,2826,3, - 818,409,0,2826,2831,5,369,0,0,2827,2828,5,94,0,0,2828,2830,3,58, - 29,0,2829,2827,1,0,0,0,2830,2833,1,0,0,0,2831,2829,1,0,0,0,2831, - 2832,1,0,0,0,2832,211,1,0,0,0,2833,2831,1,0,0,0,2834,2835,5,138, - 0,0,2835,2836,5,204,0,0,2836,2837,3,818,409,0,2837,2870,7,6,0,0, - 2838,2839,5,443,0,0,2839,2840,5,62,0,0,2840,2841,3,652,326,0,2841, - 2842,5,247,0,0,2842,2843,3,818,409,0,2843,2871,1,0,0,0,2844,2845, - 5,442,0,0,2845,2871,3,374,187,0,2846,2847,5,296,0,0,2847,2871,3, - 378,189,0,2848,2849,5,278,0,0,2849,2850,7,31,0,0,2850,2851,3,316, - 158,0,2851,2852,3,170,85,0,2852,2871,1,0,0,0,2853,2854,5,278,0,0, - 2854,2871,3,416,208,0,2855,2856,5,211,0,0,2856,2871,3,382,191,0, - 2857,2858,7,32,0,0,2858,2871,3,652,326,0,2859,2860,5,41,0,0,2860, - 2861,5,2,0,0,2861,2862,3,652,326,0,2862,2863,5,36,0,0,2863,2864, - 3,652,326,0,2864,2865,5,3,0,0,2865,2871,1,0,0,0,2866,2867,5,136, - 0,0,2867,2871,3,394,197,0,2868,2871,3,312,156,0,2869,2871,3,310, - 155,0,2870,2838,1,0,0,0,2870,2844,1,0,0,0,2870,2846,1,0,0,0,2870, - 2848,1,0,0,0,2870,2853,1,0,0,0,2870,2855,1,0,0,0,2870,2857,1,0,0, - 0,2870,2859,1,0,0,0,2870,2866,1,0,0,0,2870,2868,1,0,0,0,2870,2869, - 1,0,0,0,2871,213,1,0,0,0,2872,2873,5,46,0,0,2873,2874,5,63,0,0,2874, - 2875,5,174,0,0,2875,2876,5,381,0,0,2876,2882,3,818,409,0,2877,2879, - 3,216,108,0,2878,2877,1,0,0,0,2879,2880,1,0,0,0,2880,2878,1,0,0, - 0,2880,2881,1,0,0,0,2881,2883,1,0,0,0,2882,2878,1,0,0,0,2882,2883, - 1,0,0,0,2883,2885,1,0,0,0,2884,2886,3,220,110,0,2885,2884,1,0,0, - 0,2885,2886,1,0,0,0,2886,215,1,0,0,0,2887,2889,7,33,0,0,2888,2890, - 3,316,158,0,2889,2888,1,0,0,0,2889,2890,1,0,0,0,2890,2894,1,0,0, - 0,2891,2892,5,269,0,0,2892,2894,7,33,0,0,2893,2887,1,0,0,0,2893, - 2891,1,0,0,0,2894,217,1,0,0,0,2895,2896,5,138,0,0,2896,2897,5,63, - 0,0,2897,2898,5,174,0,0,2898,2899,5,381,0,0,2899,2913,3,818,409, - 0,2900,2902,3,216,108,0,2901,2900,1,0,0,0,2902,2903,1,0,0,0,2903, - 2901,1,0,0,0,2903,2904,1,0,0,0,2904,2906,1,0,0,0,2905,2901,1,0,0, - 0,2905,2906,1,0,0,0,2906,2907,1,0,0,0,2907,2914,3,222,111,0,2908, - 2910,3,216,108,0,2909,2908,1,0,0,0,2910,2911,1,0,0,0,2911,2909,1, - 0,0,0,2911,2912,1,0,0,0,2912,2914,1,0,0,0,2913,2905,1,0,0,0,2913, - 2909,1,0,0,0,2914,219,1,0,0,0,2915,2916,5,280,0,0,2916,2917,5,2, - 0,0,2917,2922,3,226,113,0,2918,2919,5,6,0,0,2919,2921,3,226,113, - 0,2920,2918,1,0,0,0,2921,2924,1,0,0,0,2922,2920,1,0,0,0,2922,2923, - 1,0,0,0,2923,2925,1,0,0,0,2924,2922,1,0,0,0,2925,2926,5,3,0,0,2926, - 221,1,0,0,0,2927,2928,5,280,0,0,2928,2929,5,2,0,0,2929,2934,3,224, - 112,0,2930,2931,5,6,0,0,2931,2933,3,224,112,0,2932,2930,1,0,0,0, - 2933,2936,1,0,0,0,2934,2932,1,0,0,0,2934,2935,1,0,0,0,2935,2937, - 1,0,0,0,2936,2934,1,0,0,0,2937,2938,5,3,0,0,2938,223,1,0,0,0,2939, - 2940,7,34,0,0,2940,2941,3,226,113,0,2941,225,1,0,0,0,2942,2943,3, - 824,412,0,2943,2944,3,808,404,0,2944,227,1,0,0,0,2945,2946,5,46, - 0,0,2946,2948,5,331,0,0,2947,2949,3,294,147,0,2948,2947,1,0,0,0, - 2948,2949,1,0,0,0,2949,2950,1,0,0,0,2950,2953,3,818,409,0,2951,2952, - 5,360,0,0,2952,2954,3,808,404,0,2953,2951,1,0,0,0,2953,2954,1,0, - 0,0,2954,2956,1,0,0,0,2955,2957,3,230,115,0,2956,2955,1,0,0,0,2956, - 2957,1,0,0,0,2957,2958,1,0,0,0,2958,2959,5,63,0,0,2959,2960,5,174, - 0,0,2960,2961,5,381,0,0,2961,2963,3,818,409,0,2962,2964,3,220,110, - 0,2963,2962,1,0,0,0,2963,2964,1,0,0,0,2964,229,1,0,0,0,2965,2968, - 5,375,0,0,2966,2969,3,808,404,0,2967,2969,5,78,0,0,2968,2966,1,0, - 0,0,2968,2967,1,0,0,0,2969,231,1,0,0,0,2970,2971,5,138,0,0,2971, - 2972,5,331,0,0,2972,2978,3,818,409,0,2973,2979,3,222,111,0,2974, - 2976,3,230,115,0,2975,2977,3,222,111,0,2976,2975,1,0,0,0,2976,2977, - 1,0,0,0,2977,2979,1,0,0,0,2978,2973,1,0,0,0,2978,2974,1,0,0,0,2979, - 233,1,0,0,0,2980,2981,5,46,0,0,2981,2982,5,63,0,0,2982,2984,5,92, - 0,0,2983,2985,3,294,147,0,2984,2983,1,0,0,0,2984,2985,1,0,0,0,2985, - 2986,1,0,0,0,2986,2987,3,772,386,0,2987,2989,5,2,0,0,2988,2990,3, - 126,63,0,2989,2988,1,0,0,0,2989,2990,1,0,0,0,2990,2991,1,0,0,0,2991, - 2993,5,3,0,0,2992,2994,3,164,82,0,2993,2992,1,0,0,0,2993,2994,1, - 0,0,0,2994,2995,1,0,0,0,2995,2996,5,331,0,0,2996,2998,3,818,409, - 0,2997,2999,3,220,110,0,2998,2997,1,0,0,0,2998,2999,1,0,0,0,2999, - 3020,1,0,0,0,3000,3001,5,46,0,0,3001,3002,5,63,0,0,3002,3004,5,92, - 0,0,3003,3005,3,294,147,0,3004,3003,1,0,0,0,3004,3005,1,0,0,0,3005, - 3006,1,0,0,0,3006,3007,3,772,386,0,3007,3008,5,285,0,0,3008,3009, - 5,275,0,0,3009,3011,3,774,387,0,3010,3012,3,124,62,0,3011,3010,1, - 0,0,0,3011,3012,1,0,0,0,3012,3013,1,0,0,0,3013,3014,3,106,53,0,3014, - 3015,5,331,0,0,3015,3017,3,818,409,0,3016,3018,3,220,110,0,3017, - 3016,1,0,0,0,3017,3018,1,0,0,0,3018,3020,1,0,0,0,3019,2980,1,0,0, - 0,3019,3000,1,0,0,0,3020,235,1,0,0,0,3021,3022,5,444,0,0,3022,3023, - 5,63,0,0,3023,3024,5,323,0,0,3024,3034,3,790,395,0,3025,3026,5,74, - 0,0,3026,3029,5,94,0,0,3027,3029,5,59,0,0,3028,3025,1,0,0,0,3028, - 3027,1,0,0,0,3029,3030,1,0,0,0,3030,3031,5,2,0,0,3031,3032,3,628, - 314,0,3032,3033,5,3,0,0,3033,3035,1,0,0,0,3034,3028,1,0,0,0,3034, - 3035,1,0,0,0,3035,3036,1,0,0,0,3036,3037,5,64,0,0,3037,3038,5,331, - 0,0,3038,3039,3,818,409,0,3039,3040,5,71,0,0,3040,3042,3,818,409, - 0,3041,3043,3,220,110,0,3042,3041,1,0,0,0,3042,3043,1,0,0,0,3043, - 237,1,0,0,0,3044,3045,5,46,0,0,3045,3046,5,99,0,0,3046,3048,5,257, - 0,0,3047,3049,3,294,147,0,3048,3047,1,0,0,0,3048,3049,1,0,0,0,3049, - 3050,1,0,0,0,3050,3053,5,62,0,0,3051,3054,3,814,407,0,3052,3054, - 5,99,0,0,3053,3051,1,0,0,0,3053,3052,1,0,0,0,3054,3055,1,0,0,0,3055, - 3056,5,331,0,0,3056,3058,3,818,409,0,3057,3059,3,220,110,0,3058, - 3057,1,0,0,0,3058,3059,1,0,0,0,3059,239,1,0,0,0,3060,3061,5,138, - 0,0,3061,3062,5,99,0,0,3062,3063,5,257,0,0,3063,3066,5,62,0,0,3064, - 3067,3,814,407,0,3065,3067,5,99,0,0,3066,3064,1,0,0,0,3066,3065, - 1,0,0,0,3067,3068,1,0,0,0,3068,3069,5,331,0,0,3069,3070,3,818,409, - 0,3070,3071,3,222,111,0,3071,241,1,0,0,0,3072,3073,5,46,0,0,3073, - 3074,5,445,0,0,3074,3075,3,818,409,0,3075,3076,5,80,0,0,3076,3083, - 3,780,390,0,3077,3081,5,36,0,0,3078,3082,5,541,0,0,3079,3082,5,542, - 0,0,3080,3082,3,826,413,0,3081,3078,1,0,0,0,3081,3079,1,0,0,0,3081, - 3080,1,0,0,0,3082,3084,1,0,0,0,3083,3077,1,0,0,0,3083,3084,1,0,0, - 0,3084,3087,1,0,0,0,3085,3086,5,62,0,0,3086,3088,7,35,0,0,3087,3085, - 1,0,0,0,3087,3088,1,0,0,0,3088,3091,1,0,0,0,3089,3090,5,94,0,0,3090, - 3092,3,816,408,0,3091,3089,1,0,0,0,3091,3092,1,0,0,0,3092,3094,1, - 0,0,0,3093,3095,3,250,125,0,3094,3093,1,0,0,0,3094,3095,1,0,0,0, - 3095,3097,1,0,0,0,3096,3098,3,252,126,0,3097,3096,1,0,0,0,3097,3098, - 1,0,0,0,3098,243,1,0,0,0,3099,3100,5,138,0,0,3100,3101,5,445,0,0, - 3101,3102,3,818,409,0,3102,3103,5,80,0,0,3103,3106,3,780,390,0,3104, - 3105,5,94,0,0,3105,3107,3,816,408,0,3106,3104,1,0,0,0,3106,3107, - 1,0,0,0,3107,3109,1,0,0,0,3108,3110,3,250,125,0,3109,3108,1,0,0, - 0,3109,3110,1,0,0,0,3110,3112,1,0,0,0,3111,3113,3,252,126,0,3112, - 3111,1,0,0,0,3112,3113,1,0,0,0,3113,245,1,0,0,0,3114,3115,5,138, - 0,0,3115,3116,5,296,0,0,3116,3118,3,796,398,0,3117,3119,3,368,184, - 0,3118,3117,1,0,0,0,3118,3119,1,0,0,0,3119,3146,1,0,0,0,3120,3124, - 3,248,124,0,3121,3123,3,248,124,0,3122,3121,1,0,0,0,3123,3126,1, - 0,0,0,3124,3122,1,0,0,0,3124,3125,1,0,0,0,3125,3128,1,0,0,0,3126, - 3124,1,0,0,0,3127,3129,5,315,0,0,3128,3127,1,0,0,0,3128,3129,1,0, - 0,0,3129,3147,1,0,0,0,3130,3131,5,309,0,0,3131,3132,5,94,0,0,3132, - 3147,3,798,399,0,3133,3134,5,282,0,0,3134,3135,5,94,0,0,3135,3147, - 3,814,407,0,3136,3137,5,333,0,0,3137,3138,5,323,0,0,3138,3147,3, - 32,16,0,3139,3141,5,269,0,0,3140,3139,1,0,0,0,3140,3141,1,0,0,0, - 3141,3142,1,0,0,0,3142,3143,5,462,0,0,3143,3144,5,80,0,0,3144,3145, - 5,204,0,0,3145,3147,3,818,409,0,3146,3120,1,0,0,0,3146,3130,1,0, - 0,0,3146,3133,1,0,0,0,3146,3136,1,0,0,0,3146,3140,1,0,0,0,3147,247, - 1,0,0,0,3148,3150,5,205,0,0,3149,3148,1,0,0,0,3149,3150,1,0,0,0, - 3150,3151,1,0,0,0,3151,3152,5,327,0,0,3152,3159,5,243,0,0,3153,3155, - 5,205,0,0,3154,3153,1,0,0,0,3154,3155,1,0,0,0,3155,3156,1,0,0,0, - 3156,3157,5,327,0,0,3157,3159,5,181,0,0,3158,3149,1,0,0,0,3158,3154, - 1,0,0,0,3159,3178,1,0,0,0,3160,3161,5,333,0,0,3161,3162,3,818,409, - 0,3162,3165,7,36,0,0,3163,3166,3,818,409,0,3164,3166,5,53,0,0,3165, - 3163,1,0,0,0,3165,3164,1,0,0,0,3166,3178,1,0,0,0,3167,3168,5,333, - 0,0,3168,3169,3,818,409,0,3169,3170,5,64,0,0,3170,3171,5,434,0,0, - 3171,3178,1,0,0,0,3172,3175,5,313,0,0,3173,3176,3,818,409,0,3174, - 3176,5,30,0,0,3175,3173,1,0,0,0,3175,3174,1,0,0,0,3176,3178,1,0, - 0,0,3177,3158,1,0,0,0,3177,3160,1,0,0,0,3177,3167,1,0,0,0,3177,3172, - 1,0,0,0,3178,249,1,0,0,0,3179,3180,5,100,0,0,3180,3181,5,2,0,0,3181, - 3182,3,674,337,0,3182,3183,5,3,0,0,3183,251,1,0,0,0,3184,3185,5, - 105,0,0,3185,3186,5,42,0,0,3186,3187,5,2,0,0,3187,3188,3,674,337, - 0,3188,3189,5,3,0,0,3189,253,1,0,0,0,3190,3191,5,46,0,0,3191,3192, - 5,131,0,0,3192,3193,5,446,0,0,3193,3194,3,818,409,0,3194,3195,5, - 360,0,0,3195,3196,7,37,0,0,3196,3197,5,215,0,0,3197,3198,3,316,158, - 0,3198,255,1,0,0,0,3199,3201,5,46,0,0,3200,3202,3,366,183,0,3201, - 3200,1,0,0,0,3201,3202,1,0,0,0,3202,3203,1,0,0,0,3203,3204,5,357, - 0,0,3204,3205,3,818,409,0,3205,3206,3,258,129,0,3206,3207,3,260, - 130,0,3207,3208,5,80,0,0,3208,3220,3,774,387,0,3209,3216,5,447,0, - 0,3210,3211,7,38,0,0,3211,3213,7,39,0,0,3212,3214,5,36,0,0,3213, - 3212,1,0,0,0,3213,3214,1,0,0,0,3214,3215,1,0,0,0,3215,3217,3,818, - 409,0,3216,3210,1,0,0,0,3217,3218,1,0,0,0,3218,3216,1,0,0,0,3218, - 3219,1,0,0,0,3219,3221,1,0,0,0,3220,3209,1,0,0,0,3220,3221,1,0,0, - 0,3221,3227,1,0,0,0,3222,3224,5,62,0,0,3223,3225,5,192,0,0,3224, - 3223,1,0,0,0,3224,3225,1,0,0,0,3225,3226,1,0,0,0,3226,3228,7,40, - 0,0,3227,3222,1,0,0,0,3227,3228,1,0,0,0,3228,3230,1,0,0,0,3229,3231, - 3,264,132,0,3230,3229,1,0,0,0,3230,3231,1,0,0,0,3231,3232,1,0,0, - 0,3232,3233,5,202,0,0,3233,3234,3,266,133,0,3234,3235,5,2,0,0,3235, - 3236,3,268,134,0,3236,3237,5,3,0,0,3237,3278,1,0,0,0,3238,3240,5, - 46,0,0,3239,3241,3,366,183,0,3240,3239,1,0,0,0,3240,3241,1,0,0,0, - 3241,3243,1,0,0,0,3242,3244,5,45,0,0,3243,3242,1,0,0,0,3243,3244, - 1,0,0,0,3244,3245,1,0,0,0,3245,3246,5,357,0,0,3246,3247,3,818,409, - 0,3247,3248,3,258,129,0,3248,3249,3,260,130,0,3249,3250,5,80,0,0, - 3250,3253,3,774,387,0,3251,3252,5,64,0,0,3252,3254,3,780,390,0,3253, - 3251,1,0,0,0,3253,3254,1,0,0,0,3254,3258,1,0,0,0,3255,3257,3,272, - 136,0,3256,3255,1,0,0,0,3257,3260,1,0,0,0,3258,3256,1,0,0,0,3258, - 3259,1,0,0,0,3259,3266,1,0,0,0,3260,3258,1,0,0,0,3261,3263,5,62, - 0,0,3262,3264,5,192,0,0,3263,3262,1,0,0,0,3263,3264,1,0,0,0,3264, - 3265,1,0,0,0,3265,3267,7,40,0,0,3266,3261,1,0,0,0,3266,3267,1,0, - 0,0,3267,3269,1,0,0,0,3268,3270,3,264,132,0,3269,3268,1,0,0,0,3269, - 3270,1,0,0,0,3270,3271,1,0,0,0,3271,3272,5,202,0,0,3272,3273,3,266, - 133,0,3273,3274,5,2,0,0,3274,3275,3,268,134,0,3275,3276,5,3,0,0, - 3276,3278,1,0,0,0,3277,3199,1,0,0,0,3277,3238,1,0,0,0,3278,257,1, - 0,0,0,3279,3284,5,145,0,0,3280,3284,5,135,0,0,3281,3282,5,242,0, - 0,3282,3284,5,275,0,0,3283,3279,1,0,0,0,3283,3280,1,0,0,0,3283,3281, - 1,0,0,0,3284,259,1,0,0,0,3285,3290,3,262,131,0,3286,3287,5,82,0, - 0,3287,3289,3,262,131,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,261,1,0,0,0,3292,3290,1,0,0, - 0,3293,3302,5,241,0,0,3294,3302,5,182,0,0,3295,3298,5,369,0,0,3296, - 3297,5,275,0,0,3297,3299,3,148,74,0,3298,3296,1,0,0,0,3298,3299, - 1,0,0,0,3299,3302,1,0,0,0,3300,3302,5,358,0,0,3301,3293,1,0,0,0, - 3301,3294,1,0,0,0,3301,3295,1,0,0,0,3301,3300,1,0,0,0,3302,263,1, - 0,0,0,3303,3304,5,102,0,0,3304,3305,5,2,0,0,3305,3306,3,674,337, - 0,3306,3307,5,3,0,0,3307,265,1,0,0,0,3308,3309,5,211,0,0,3309,3313, - 3,806,403,0,3310,3311,5,296,0,0,3311,3313,3,796,398,0,3312,3308, - 1,0,0,0,3312,3310,1,0,0,0,3313,267,1,0,0,0,3314,3317,3,270,135,0, - 3315,3317,1,0,0,0,3316,3314,1,0,0,0,3316,3315,1,0,0,0,3317,3322, - 1,0,0,0,3318,3319,5,6,0,0,3319,3321,3,270,135,0,3320,3318,1,0,0, - 0,3321,3324,1,0,0,0,3322,3320,1,0,0,0,3322,3323,1,0,0,0,3323,269, - 1,0,0,0,3324,3322,1,0,0,0,3325,3330,5,571,0,0,3326,3330,5,573,0, - 0,3327,3330,3,808,404,0,3328,3330,3,824,412,0,3329,3325,1,0,0,0, - 3329,3326,1,0,0,0,3329,3327,1,0,0,0,3329,3328,1,0,0,0,3330,271,1, - 0,0,0,3331,3333,5,77,0,0,3332,3331,1,0,0,0,3332,3333,1,0,0,0,3333, - 3334,1,0,0,0,3334,3342,5,54,0,0,3335,3336,5,69,0,0,3336,3342,7,9, - 0,0,3337,3338,5,77,0,0,3338,3342,5,371,0,0,3339,3340,5,269,0,0,3340, - 3342,5,228,0,0,3341,3332,1,0,0,0,3341,3335,1,0,0,0,3341,3337,1,0, - 0,0,3341,3339,1,0,0,0,3342,273,1,0,0,0,3343,3344,5,46,0,0,3344,3345, - 5,198,0,0,3345,3346,5,357,0,0,3346,3347,3,818,409,0,3347,3348,5, - 80,0,0,3348,3358,3,824,412,0,3349,3350,5,102,0,0,3350,3355,3,276, - 138,0,3351,3352,5,33,0,0,3352,3354,3,276,138,0,3353,3351,1,0,0,0, - 3354,3357,1,0,0,0,3355,3353,1,0,0,0,3355,3356,1,0,0,0,3356,3359, - 1,0,0,0,3357,3355,1,0,0,0,3358,3349,1,0,0,0,3358,3359,1,0,0,0,3359, - 3360,1,0,0,0,3360,3361,5,202,0,0,3361,3362,3,266,133,0,3362,3363, - 5,2,0,0,3363,3364,5,3,0,0,3364,275,1,0,0,0,3365,3366,3,818,409,0, - 3366,3367,5,68,0,0,3367,3368,5,2,0,0,3368,3372,3,808,404,0,3369, - 3371,3,462,231,0,3370,3369,1,0,0,0,3371,3374,1,0,0,0,3372,3370,1, - 0,0,0,3372,3373,1,0,0,0,3373,3375,1,0,0,0,3374,3372,1,0,0,0,3375, - 3376,5,3,0,0,3376,277,1,0,0,0,3377,3378,5,138,0,0,3378,3379,5,198, - 0,0,3379,3380,5,357,0,0,3380,3386,3,818,409,0,3381,3383,5,193,0, - 0,3382,3384,7,14,0,0,3383,3382,1,0,0,0,3383,3384,1,0,0,0,3384,3387, - 1,0,0,0,3385,3387,5,186,0,0,3386,3381,1,0,0,0,3386,3385,1,0,0,0, - 3387,279,1,0,0,0,3388,3389,5,46,0,0,3389,3390,5,140,0,0,3390,3391, - 3,316,158,0,3391,3392,5,42,0,0,3392,3393,5,2,0,0,3393,3394,3,674, - 337,0,3394,3398,5,3,0,0,3395,3397,3,272,136,0,3396,3395,1,0,0,0, - 3397,3400,1,0,0,0,3398,3396,1,0,0,0,3398,3399,1,0,0,0,3399,281,1, - 0,0,0,3400,3398,1,0,0,0,3401,3403,5,46,0,0,3402,3404,3,366,183,0, - 3403,3402,1,0,0,0,3403,3404,1,0,0,0,3404,3405,1,0,0,0,3405,3406, - 5,136,0,0,3406,3421,3,806,403,0,3407,3408,3,392,196,0,3408,3409, - 3,284,142,0,3409,3422,1,0,0,0,3410,3411,5,2,0,0,3411,3416,3,290, - 145,0,3412,3413,5,6,0,0,3413,3415,3,290,145,0,3414,3412,1,0,0,0, - 3415,3418,1,0,0,0,3416,3414,1,0,0,0,3416,3417,1,0,0,0,3417,3419, - 1,0,0,0,3418,3416,1,0,0,0,3419,3420,5,3,0,0,3420,3422,1,0,0,0,3421, - 3407,1,0,0,0,3421,3410,1,0,0,0,3422,3480,1,0,0,0,3423,3424,5,46, - 0,0,3424,3425,5,278,0,0,3425,3426,3,414,207,0,3426,3427,3,284,142, - 0,3427,3480,1,0,0,0,3428,3429,5,46,0,0,3429,3430,5,360,0,0,3430, - 3431,3,316,158,0,3431,3449,5,36,0,0,3432,3434,5,2,0,0,3433,3435, - 3,642,321,0,3434,3433,1,0,0,0,3434,3435,1,0,0,0,3435,3436,1,0,0, - 0,3436,3450,5,3,0,0,3437,3438,5,196,0,0,3438,3446,5,2,0,0,3439,3443, - 3,808,404,0,3440,3442,3,462,231,0,3441,3440,1,0,0,0,3442,3445,1, - 0,0,0,3443,3441,1,0,0,0,3443,3444,1,0,0,0,3444,3447,1,0,0,0,3445, - 3443,1,0,0,0,3446,3439,1,0,0,0,3446,3447,1,0,0,0,3447,3448,1,0,0, - 0,3448,3450,5,3,0,0,3449,3432,1,0,0,0,3449,3437,1,0,0,0,3450,3480, - 1,0,0,0,3451,3452,5,46,0,0,3452,3453,5,360,0,0,3453,3459,3,316,158, - 0,3454,3455,5,36,0,0,3455,3457,5,299,0,0,3456,3454,1,0,0,0,3456, - 3457,1,0,0,0,3457,3458,1,0,0,0,3458,3460,3,284,142,0,3459,3456,1, - 0,0,0,3459,3460,1,0,0,0,3460,3480,1,0,0,0,3461,3462,5,46,0,0,3462, - 3463,5,355,0,0,3463,3464,5,325,0,0,3464,3465,7,41,0,0,3465,3466, - 3,316,158,0,3466,3467,3,284,142,0,3467,3480,1,0,0,0,3468,3469,5, - 46,0,0,3469,3471,5,108,0,0,3470,3472,3,294,147,0,3471,3470,1,0,0, - 0,3471,3472,1,0,0,0,3472,3473,1,0,0,0,3473,3477,3,316,158,0,3474, - 3478,3,284,142,0,3475,3476,5,64,0,0,3476,3478,3,316,158,0,3477,3474, - 1,0,0,0,3477,3475,1,0,0,0,3478,3480,1,0,0,0,3479,3401,1,0,0,0,3479, - 3423,1,0,0,0,3479,3428,1,0,0,0,3479,3451,1,0,0,0,3479,3461,1,0,0, - 0,3479,3468,1,0,0,0,3480,283,1,0,0,0,3481,3482,5,2,0,0,3482,3487, - 3,286,143,0,3483,3484,5,6,0,0,3484,3486,3,286,143,0,3485,3483,1, - 0,0,0,3486,3489,1,0,0,0,3487,3485,1,0,0,0,3487,3488,1,0,0,0,3488, - 3490,1,0,0,0,3489,3487,1,0,0,0,3490,3491,5,3,0,0,3491,285,1,0,0, - 0,3492,3495,3,824,412,0,3493,3494,5,10,0,0,3494,3496,3,288,144,0, - 3495,3493,1,0,0,0,3495,3496,1,0,0,0,3496,287,1,0,0,0,3497,3504,3, - 388,194,0,3498,3504,3,834,417,0,3499,3504,3,726,363,0,3500,3504, - 3,202,101,0,3501,3504,3,808,404,0,3502,3504,5,407,0,0,3503,3497, - 1,0,0,0,3503,3498,1,0,0,0,3503,3499,1,0,0,0,3503,3500,1,0,0,0,3503, - 3501,1,0,0,0,3503,3502,1,0,0,0,3504,289,1,0,0,0,3505,3506,3,826, - 413,0,3506,3507,5,10,0,0,3507,3508,3,288,144,0,3508,291,1,0,0,0, - 3509,3510,5,138,0,0,3510,3511,5,360,0,0,3511,3512,3,316,158,0,3512, - 3513,5,133,0,0,3513,3515,5,450,0,0,3514,3516,3,294,147,0,3515,3514, - 1,0,0,0,3515,3516,1,0,0,0,3516,3517,1,0,0,0,3517,3520,3,808,404, - 0,3518,3519,7,42,0,0,3519,3521,3,808,404,0,3520,3518,1,0,0,0,3520, - 3521,1,0,0,0,3521,3532,1,0,0,0,3522,3523,5,138,0,0,3523,3524,5,360, - 0,0,3524,3525,3,316,158,0,3525,3526,5,309,0,0,3526,3527,5,450,0, - 0,3527,3528,3,808,404,0,3528,3529,5,94,0,0,3529,3530,3,808,404,0, - 3530,3532,1,0,0,0,3531,3509,1,0,0,0,3531,3522,1,0,0,0,3532,293,1, - 0,0,0,3533,3534,5,220,0,0,3534,3535,5,77,0,0,3535,3536,5,396,0,0, - 3536,295,1,0,0,0,3537,3538,5,46,0,0,3538,3539,5,278,0,0,3539,3540, - 5,156,0,0,3540,3542,3,316,158,0,3541,3543,5,53,0,0,3542,3541,1,0, - 0,0,3542,3543,1,0,0,0,3543,3544,1,0,0,0,3544,3545,5,62,0,0,3545, - 3546,5,360,0,0,3546,3547,3,652,326,0,3547,3550,3,170,85,0,3548,3549, - 5,206,0,0,3549,3551,3,316,158,0,3550,3548,1,0,0,0,3550,3551,1,0, - 0,0,3551,3552,1,0,0,0,3552,3553,5,36,0,0,3553,3558,3,298,149,0,3554, - 3555,5,6,0,0,3555,3557,3,298,149,0,3556,3554,1,0,0,0,3557,3560,1, - 0,0,0,3558,3556,1,0,0,0,3558,3559,1,0,0,0,3559,297,1,0,0,0,3560, - 3558,1,0,0,0,3561,3562,5,278,0,0,3562,3563,5,571,0,0,3563,3565,3, - 414,207,0,3564,3566,3,412,206,0,3565,3564,1,0,0,0,3565,3566,1,0, - 0,0,3566,3574,1,0,0,0,3567,3572,5,62,0,0,3568,3573,5,325,0,0,3569, - 3570,5,83,0,0,3570,3571,5,147,0,0,3571,3573,3,316,158,0,3572,3568, - 1,0,0,0,3572,3569,1,0,0,0,3573,3575,1,0,0,0,3574,3567,1,0,0,0,3574, - 3575,1,0,0,0,3575,3577,1,0,0,0,3576,3578,5,302,0,0,3577,3576,1,0, - 0,0,3577,3578,1,0,0,0,3578,3588,1,0,0,0,3579,3580,5,211,0,0,3580, - 3582,5,571,0,0,3581,3583,3,528,264,0,3582,3581,1,0,0,0,3582,3583, - 1,0,0,0,3583,3584,1,0,0,0,3584,3588,3,382,191,0,3585,3586,5,345, - 0,0,3586,3588,3,652,326,0,3587,3561,1,0,0,0,3587,3579,1,0,0,0,3587, - 3585,1,0,0,0,3588,299,1,0,0,0,3589,3590,5,46,0,0,3590,3591,5,278, - 0,0,3591,3592,5,206,0,0,3592,3593,3,316,158,0,3593,3594,3,170,85, - 0,3594,301,1,0,0,0,3595,3596,5,138,0,0,3596,3597,5,278,0,0,3597, - 3598,5,206,0,0,3598,3599,3,316,158,0,3599,3618,3,170,85,0,3600,3601, - 5,133,0,0,3601,3606,3,298,149,0,3602,3603,5,6,0,0,3603,3605,3,298, - 149,0,3604,3602,1,0,0,0,3605,3608,1,0,0,0,3606,3604,1,0,0,0,3606, - 3607,1,0,0,0,3607,3619,1,0,0,0,3608,3606,1,0,0,0,3609,3610,5,191, - 0,0,3610,3615,3,304,152,0,3611,3612,5,6,0,0,3612,3614,3,304,152, - 0,3613,3611,1,0,0,0,3614,3617,1,0,0,0,3615,3613,1,0,0,0,3615,3616, - 1,0,0,0,3616,3619,1,0,0,0,3617,3615,1,0,0,0,3618,3600,1,0,0,0,3618, - 3609,1,0,0,0,3619,303,1,0,0,0,3620,3621,7,43,0,0,3621,3622,5,571, - 0,0,3622,3623,3,528,264,0,3623,305,1,0,0,0,3624,3625,5,301,0,0,3625, - 3626,5,281,0,0,3626,3627,5,147,0,0,3627,3628,3,816,408,0,3628,3629, - 5,94,0,0,3629,3630,3,814,407,0,3630,307,1,0,0,0,3631,3654,5,191, - 0,0,3632,3655,5,328,0,0,3633,3655,5,226,0,0,3634,3655,5,108,0,0, - 3635,3655,5,168,0,0,3636,3655,5,342,0,0,3637,3655,5,452,0,0,3638, - 3655,5,331,0,0,3639,3640,5,131,0,0,3640,3655,5,446,0,0,3641,3642, - 5,198,0,0,3642,3655,5,357,0,0,3643,3655,5,204,0,0,3644,3646,5,295, - 0,0,3645,3644,1,0,0,0,3645,3646,1,0,0,0,3646,3647,1,0,0,0,3647,3655, - 5,247,0,0,3648,3649,5,63,0,0,3649,3650,5,174,0,0,3650,3655,5,381, - 0,0,3651,3652,5,355,0,0,3652,3653,5,325,0,0,3653,3655,7,41,0,0,3654, - 3632,1,0,0,0,3654,3633,1,0,0,0,3654,3634,1,0,0,0,3654,3635,1,0,0, - 0,3654,3636,1,0,0,0,3654,3637,1,0,0,0,3654,3638,1,0,0,0,3654,3639, - 1,0,0,0,3654,3641,1,0,0,0,3654,3643,1,0,0,0,3654,3645,1,0,0,0,3654, - 3648,1,0,0,0,3654,3651,1,0,0,0,3655,3657,1,0,0,0,3656,3658,3,422, - 211,0,3657,3656,1,0,0,0,3657,3658,1,0,0,0,3658,3659,1,0,0,0,3659, - 3661,3,784,392,0,3660,3662,3,96,48,0,3661,3660,1,0,0,0,3661,3662, - 1,0,0,0,3662,3839,1,0,0,0,3663,3665,5,191,0,0,3664,3666,5,259,0, - 0,3665,3664,1,0,0,0,3665,3666,1,0,0,0,3666,3667,1,0,0,0,3667,3669, - 5,376,0,0,3668,3670,3,422,211,0,3669,3668,1,0,0,0,3669,3670,1,0, - 0,0,3670,3671,1,0,0,0,3671,3676,3,778,389,0,3672,3673,5,6,0,0,3673, - 3675,3,778,389,0,3674,3672,1,0,0,0,3675,3678,1,0,0,0,3676,3674,1, - 0,0,0,3676,3677,1,0,0,0,3677,3680,1,0,0,0,3678,3676,1,0,0,0,3679, - 3681,3,96,48,0,3680,3679,1,0,0,0,3680,3681,1,0,0,0,3681,3839,1,0, - 0,0,3682,3684,5,191,0,0,3683,3685,5,63,0,0,3684,3683,1,0,0,0,3684, - 3685,1,0,0,0,3685,3686,1,0,0,0,3686,3688,5,92,0,0,3687,3689,3,422, - 211,0,3688,3687,1,0,0,0,3688,3689,1,0,0,0,3689,3690,1,0,0,0,3690, - 3692,3,762,381,0,3691,3693,3,96,48,0,3692,3691,1,0,0,0,3692,3693, - 1,0,0,0,3693,3839,1,0,0,0,3694,3695,5,191,0,0,3695,3697,5,323,0, - 0,3696,3698,3,422,211,0,3697,3696,1,0,0,0,3697,3698,1,0,0,0,3698, - 3699,1,0,0,0,3699,3701,3,764,382,0,3700,3702,3,96,48,0,3701,3700, - 1,0,0,0,3701,3702,1,0,0,0,3702,3839,1,0,0,0,3703,3704,5,191,0,0, - 3704,3706,7,44,0,0,3705,3707,3,422,211,0,3706,3705,1,0,0,0,3706, - 3707,1,0,0,0,3707,3708,1,0,0,0,3708,3709,3,818,409,0,3709,3710,5, - 80,0,0,3710,3712,3,316,158,0,3711,3713,3,96,48,0,3712,3711,1,0,0, - 0,3712,3713,1,0,0,0,3713,3839,1,0,0,0,3714,3715,5,191,0,0,3715,3717, - 7,32,0,0,3716,3718,3,422,211,0,3717,3716,1,0,0,0,3717,3718,1,0,0, - 0,3718,3719,1,0,0,0,3719,3724,3,652,326,0,3720,3721,5,6,0,0,3721, - 3723,3,652,326,0,3722,3720,1,0,0,0,3723,3726,1,0,0,0,3724,3722,1, - 0,0,0,3724,3725,1,0,0,0,3725,3728,1,0,0,0,3726,3724,1,0,0,0,3727, - 3729,3,96,48,0,3728,3727,1,0,0,0,3728,3729,1,0,0,0,3729,3839,1,0, - 0,0,3730,3731,5,191,0,0,3731,3732,5,226,0,0,3732,3734,5,109,0,0, - 3733,3735,3,422,211,0,3734,3733,1,0,0,0,3734,3735,1,0,0,0,3735,3736, - 1,0,0,0,3736,3738,3,314,157,0,3737,3739,3,96,48,0,3738,3737,1,0, - 0,0,3738,3739,1,0,0,0,3739,3839,1,0,0,0,3740,3741,5,191,0,0,3741, - 3743,5,41,0,0,3742,3744,3,422,211,0,3743,3742,1,0,0,0,3743,3744, - 1,0,0,0,3744,3745,1,0,0,0,3745,3746,5,2,0,0,3746,3747,3,652,326, - 0,3747,3748,5,36,0,0,3748,3749,3,652,326,0,3749,3751,5,3,0,0,3750, - 3752,3,96,48,0,3751,3750,1,0,0,0,3751,3752,1,0,0,0,3752,3839,1,0, - 0,0,3753,3754,5,191,0,0,3754,3755,5,278,0,0,3755,3757,7,31,0,0,3756, - 3758,3,422,211,0,3757,3756,1,0,0,0,3757,3758,1,0,0,0,3758,3759,1, - 0,0,0,3759,3760,3,316,158,0,3760,3762,3,170,85,0,3761,3763,3,96, - 48,0,3762,3761,1,0,0,0,3762,3763,1,0,0,0,3763,3839,1,0,0,0,3764, - 3765,5,191,0,0,3765,3766,5,281,0,0,3766,3767,5,147,0,0,3767,3769, - 3,816,408,0,3768,3770,3,96,48,0,3769,3768,1,0,0,0,3769,3770,1,0, - 0,0,3770,3839,1,0,0,0,3771,3772,5,191,0,0,3772,3774,5,451,0,0,3773, - 3775,3,422,211,0,3774,3773,1,0,0,0,3774,3775,1,0,0,0,3775,3776,1, - 0,0,0,3776,3778,3,818,409,0,3777,3779,3,96,48,0,3778,3777,1,0,0, - 0,3778,3779,1,0,0,0,3779,3839,1,0,0,0,3780,3781,5,191,0,0,3781,3783, - 5,351,0,0,3782,3784,3,422,211,0,3783,3782,1,0,0,0,3783,3784,1,0, - 0,0,3784,3785,1,0,0,0,3785,3839,3,770,385,0,3786,3787,5,191,0,0, - 3787,3789,5,443,0,0,3788,3790,3,422,211,0,3789,3788,1,0,0,0,3789, - 3790,1,0,0,0,3790,3791,1,0,0,0,3791,3792,5,62,0,0,3792,3793,3,652, - 326,0,3793,3794,5,247,0,0,3794,3796,3,818,409,0,3795,3797,3,96,48, - 0,3796,3795,1,0,0,0,3796,3797,1,0,0,0,3797,3839,1,0,0,0,3798,3799, - 5,191,0,0,3799,3801,7,45,0,0,3800,3802,3,422,211,0,3801,3800,1,0, - 0,0,3801,3802,1,0,0,0,3802,3803,1,0,0,0,3803,3839,3,816,408,0,3804, - 3805,5,191,0,0,3805,3806,5,99,0,0,3806,3808,5,257,0,0,3807,3809, - 3,422,211,0,3808,3807,1,0,0,0,3808,3809,1,0,0,0,3809,3810,1,0,0, - 0,3810,3813,5,62,0,0,3811,3814,3,814,407,0,3812,3814,5,99,0,0,3813, - 3811,1,0,0,0,3813,3812,1,0,0,0,3814,3815,1,0,0,0,3815,3816,5,331, - 0,0,3816,3839,3,818,409,0,3817,3818,5,191,0,0,3818,3820,5,175,0, - 0,3819,3821,3,422,211,0,3820,3819,1,0,0,0,3820,3821,1,0,0,0,3821, - 3822,1,0,0,0,3822,3836,3,788,394,0,3823,3825,5,105,0,0,3824,3823, - 1,0,0,0,3824,3825,1,0,0,0,3825,3826,1,0,0,0,3826,3827,5,2,0,0,3827, - 3832,5,209,0,0,3828,3829,5,6,0,0,3829,3831,5,209,0,0,3830,3828,1, - 0,0,0,3831,3834,1,0,0,0,3832,3830,1,0,0,0,3832,3833,1,0,0,0,3833, - 3835,1,0,0,0,3834,3832,1,0,0,0,3835,3837,5,3,0,0,3836,3824,1,0,0, - 0,3836,3837,1,0,0,0,3837,3839,1,0,0,0,3838,3631,1,0,0,0,3838,3663, - 1,0,0,0,3838,3682,1,0,0,0,3838,3694,1,0,0,0,3838,3703,1,0,0,0,3838, - 3714,1,0,0,0,3838,3730,1,0,0,0,3838,3740,1,0,0,0,3838,3753,1,0,0, - 0,3838,3764,1,0,0,0,3838,3771,1,0,0,0,3838,3780,1,0,0,0,3838,3786, - 1,0,0,0,3838,3798,1,0,0,0,3838,3804,1,0,0,0,3838,3817,1,0,0,0,3839, - 309,1,0,0,0,3840,3842,5,63,0,0,3841,3840,1,0,0,0,3841,3842,1,0,0, - 0,3842,3843,1,0,0,0,3843,3844,5,92,0,0,3844,3857,3,774,387,0,3845, - 3847,5,259,0,0,3846,3845,1,0,0,0,3846,3847,1,0,0,0,3847,3848,1,0, - 0,0,3848,3849,5,376,0,0,3849,3857,3,778,389,0,3850,3851,7,46,0,0, - 3851,3857,3,316,158,0,3852,3853,5,355,0,0,3853,3854,5,325,0,0,3854, - 3855,7,41,0,0,3855,3857,3,316,158,0,3856,3841,1,0,0,0,3856,3846, - 1,0,0,0,3856,3850,1,0,0,0,3856,3852,1,0,0,0,3857,311,1,0,0,0,3858, - 3859,5,198,0,0,3859,3875,5,357,0,0,3860,3861,5,131,0,0,3861,3875, - 5,446,0,0,3862,3875,5,204,0,0,3863,3875,5,452,0,0,3864,3875,5,331, - 0,0,3865,3875,5,318,0,0,3866,3875,5,451,0,0,3867,3868,5,63,0,0,3868, - 3869,5,174,0,0,3869,3875,5,381,0,0,3870,3872,5,295,0,0,3871,3870, - 1,0,0,0,3871,3872,1,0,0,0,3872,3873,1,0,0,0,3873,3875,5,247,0,0, - 3874,3858,1,0,0,0,3874,3860,1,0,0,0,3874,3862,1,0,0,0,3874,3863, - 1,0,0,0,3874,3864,1,0,0,0,3874,3865,1,0,0,0,3874,3866,1,0,0,0,3874, - 3867,1,0,0,0,3874,3871,1,0,0,0,3875,3876,1,0,0,0,3876,3883,3,818, - 409,0,3877,3878,5,323,0,0,3878,3883,3,790,395,0,3879,3880,5,175, - 0,0,3880,3883,3,788,394,0,3881,3883,3,176,88,0,3882,3874,1,0,0,0, - 3882,3877,1,0,0,0,3882,3879,1,0,0,0,3882,3881,1,0,0,0,3883,313,1, - 0,0,0,3884,3889,3,316,158,0,3885,3886,5,6,0,0,3886,3888,3,316,158, - 0,3887,3885,1,0,0,0,3888,3891,1,0,0,0,3889,3887,1,0,0,0,3889,3890, - 1,0,0,0,3890,315,1,0,0,0,3891,3889,1,0,0,0,3892,3894,3,818,409,0, - 3893,3895,3,318,159,0,3894,3893,1,0,0,0,3894,3895,1,0,0,0,3895,317, - 1,0,0,0,3896,3897,5,11,0,0,3897,3899,3,824,412,0,3898,3896,1,0,0, - 0,3899,3900,1,0,0,0,3900,3898,1,0,0,0,3900,3901,1,0,0,0,3901,319, - 1,0,0,0,3902,3904,5,358,0,0,3903,3905,5,92,0,0,3904,3903,1,0,0,0, - 3904,3905,1,0,0,0,3905,3906,1,0,0,0,3906,3911,3,322,161,0,3907,3908, - 5,6,0,0,3908,3910,3,322,161,0,3909,3907,1,0,0,0,3910,3913,1,0,0, - 0,3911,3909,1,0,0,0,3911,3912,1,0,0,0,3912,3916,1,0,0,0,3913,3911, - 1,0,0,0,3914,3915,7,47,0,0,3915,3917,5,219,0,0,3916,3914,1,0,0,0, - 3916,3917,1,0,0,0,3917,3919,1,0,0,0,3918,3920,3,96,48,0,3919,3918, - 1,0,0,0,3919,3920,1,0,0,0,3920,321,1,0,0,0,3921,3923,5,81,0,0,3922, - 3921,1,0,0,0,3922,3923,1,0,0,0,3923,3924,1,0,0,0,3924,3926,3,774, - 387,0,3925,3927,5,9,0,0,3926,3925,1,0,0,0,3926,3927,1,0,0,0,3927, - 323,1,0,0,0,3928,3929,5,159,0,0,3929,3988,5,80,0,0,3930,3989,3,310, - 155,0,3931,3989,3,312,156,0,3932,3933,5,44,0,0,3933,3935,3,818,409, - 0,3934,3936,3,318,159,0,3935,3934,1,0,0,0,3935,3936,1,0,0,0,3936, - 3937,1,0,0,0,3937,3938,5,11,0,0,3938,3939,3,800,400,0,3939,3989, - 1,0,0,0,3940,3941,7,32,0,0,3941,3989,3,652,326,0,3942,3943,5,136, - 0,0,3943,3989,3,394,197,0,3944,3945,5,211,0,0,3945,3989,3,382,191, - 0,3946,3947,5,278,0,0,3947,3989,3,416,208,0,3948,3949,5,45,0,0,3949, - 3950,3,818,409,0,3950,3956,5,80,0,0,3951,3957,3,774,387,0,3952,3954, - 5,189,0,0,3953,3952,1,0,0,0,3953,3954,1,0,0,0,3954,3955,1,0,0,0, - 3955,3957,3,316,158,0,3956,3951,1,0,0,0,3956,3953,1,0,0,0,3957,3989, - 1,0,0,0,3958,3959,7,44,0,0,3959,3960,3,818,409,0,3960,3961,5,80, - 0,0,3961,3962,3,316,158,0,3962,3989,1,0,0,0,3963,3964,5,296,0,0, - 3964,3989,3,378,189,0,3965,3966,5,442,0,0,3966,3989,3,374,187,0, - 3967,3968,5,443,0,0,3968,3969,5,62,0,0,3969,3970,3,652,326,0,3970, - 3971,5,247,0,0,3971,3972,3,818,409,0,3972,3989,1,0,0,0,3973,3974, - 5,278,0,0,3974,3975,7,31,0,0,3975,3976,3,316,158,0,3976,3977,3,170, - 85,0,3977,3989,1,0,0,0,3978,3979,5,248,0,0,3979,3980,5,274,0,0,3980, - 3989,3,202,101,0,3981,3982,5,41,0,0,3982,3983,5,2,0,0,3983,3984, - 3,652,326,0,3984,3985,5,36,0,0,3985,3986,3,652,326,0,3986,3987,5, - 3,0,0,3987,3989,1,0,0,0,3988,3930,1,0,0,0,3988,3931,1,0,0,0,3988, - 3932,1,0,0,0,3988,3940,1,0,0,0,3988,3942,1,0,0,0,3988,3944,1,0,0, - 0,3988,3946,1,0,0,0,3988,3948,1,0,0,0,3988,3958,1,0,0,0,3988,3963, - 1,0,0,0,3988,3965,1,0,0,0,3988,3967,1,0,0,0,3988,3973,1,0,0,0,3988, - 3978,1,0,0,0,3988,3981,1,0,0,0,3989,3990,1,0,0,0,3990,3993,5,116, - 0,0,3991,3994,3,808,404,0,3992,3994,5,78,0,0,3993,3991,1,0,0,0,3993, - 3992,1,0,0,0,3994,325,1,0,0,0,3995,3996,5,327,0,0,3996,3999,5,246, - 0,0,3997,3998,5,62,0,0,3998,4000,3,58,29,0,3999,3997,1,0,0,0,3999, - 4000,1,0,0,0,4000,4001,1,0,0,0,4001,4019,5,80,0,0,4002,4003,7,32, - 0,0,4003,4020,3,652,326,0,4004,4005,5,136,0,0,4005,4020,3,394,197, - 0,4006,4007,5,44,0,0,4007,4020,3,800,400,0,4008,4009,5,211,0,0,4009, - 4020,3,382,191,0,4010,4011,5,248,0,0,4011,4012,5,274,0,0,4012,4020, - 3,202,101,0,4013,4014,5,296,0,0,4014,4020,3,378,189,0,4015,4016, - 5,442,0,0,4016,4020,3,374,187,0,4017,4020,3,310,155,0,4018,4020, - 3,312,156,0,4019,4002,1,0,0,0,4019,4004,1,0,0,0,4019,4006,1,0,0, - 0,4019,4008,1,0,0,0,4019,4010,1,0,0,0,4019,4013,1,0,0,0,4019,4015, - 1,0,0,0,4019,4017,1,0,0,0,4019,4018,1,0,0,0,4020,4021,1,0,0,0,4021, - 4024,5,116,0,0,4022,4025,3,808,404,0,4023,4025,5,78,0,0,4024,4022, - 1,0,0,0,4024,4023,1,0,0,0,4025,327,1,0,0,0,4026,4027,7,48,0,0,4027, - 4028,3,330,165,0,4028,329,1,0,0,0,4029,4031,7,49,0,0,4030,4029,1, - 0,0,0,4030,4031,1,0,0,0,4031,4033,1,0,0,0,4032,4034,3,332,166,0, - 4033,4032,1,0,0,0,4033,4034,1,0,0,0,4034,4035,1,0,0,0,4035,4073, - 3,818,409,0,4036,4038,7,50,0,0,4037,4036,1,0,0,0,4037,4038,1,0,0, - 0,4038,4039,1,0,0,0,4039,4041,3,812,406,0,4040,4042,3,332,166,0, - 4041,4040,1,0,0,0,4041,4042,1,0,0,0,4042,4043,1,0,0,0,4043,4044, - 3,818,409,0,4044,4073,1,0,0,0,4045,4047,5,210,0,0,4046,4048,3,812, - 406,0,4047,4046,1,0,0,0,4047,4048,1,0,0,0,4048,4050,1,0,0,0,4049, - 4051,3,332,166,0,4050,4049,1,0,0,0,4050,4051,1,0,0,0,4051,4052,1, - 0,0,0,4052,4073,3,818,409,0,4053,4055,5,210,0,0,4054,4053,1,0,0, - 0,4054,4055,1,0,0,0,4055,4056,1,0,0,0,4056,4058,5,30,0,0,4057,4059, - 3,332,166,0,4058,4057,1,0,0,0,4058,4059,1,0,0,0,4059,4060,1,0,0, - 0,4060,4073,3,818,409,0,4061,4066,5,144,0,0,4062,4064,5,30,0,0,4063, - 4062,1,0,0,0,4063,4064,1,0,0,0,4064,4067,1,0,0,0,4065,4067,3,812, - 406,0,4066,4063,1,0,0,0,4066,4065,1,0,0,0,4067,4069,1,0,0,0,4068, - 4070,3,332,166,0,4069,4068,1,0,0,0,4069,4070,1,0,0,0,4070,4071,1, - 0,0,0,4071,4073,3,818,409,0,4072,4030,1,0,0,0,4072,4037,1,0,0,0, - 4072,4045,1,0,0,0,4072,4054,1,0,0,0,4072,4061,1,0,0,0,4073,331,1, - 0,0,0,4074,4075,7,51,0,0,4075,333,1,0,0,0,4076,4077,5,65,0,0,4077, - 4078,3,338,169,0,4078,4079,5,80,0,0,4079,4080,3,344,172,0,4080,4081, - 5,94,0,0,4081,4085,3,346,173,0,4082,4083,5,105,0,0,4083,4084,5,65, - 0,0,4084,4086,5,279,0,0,4085,4082,1,0,0,0,4085,4086,1,0,0,0,4086, - 335,1,0,0,0,4087,4091,5,317,0,0,4088,4089,5,65,0,0,4089,4090,5,279, - 0,0,4090,4092,5,62,0,0,4091,4088,1,0,0,0,4091,4092,1,0,0,0,4092, - 4093,1,0,0,0,4093,4094,3,338,169,0,4094,4095,5,80,0,0,4095,4096, - 3,344,172,0,4096,4097,5,64,0,0,4097,4099,3,346,173,0,4098,4100,3, - 96,48,0,4099,4098,1,0,0,0,4099,4100,1,0,0,0,4100,337,1,0,0,0,4101, - 4106,3,342,171,0,4102,4103,5,6,0,0,4103,4105,3,342,171,0,4104,4102, - 1,0,0,0,4105,4108,1,0,0,0,4106,4104,1,0,0,0,4106,4107,1,0,0,0,4107, - 4125,1,0,0,0,4108,4106,1,0,0,0,4109,4111,5,30,0,0,4110,4112,5,294, - 0,0,4111,4110,1,0,0,0,4111,4112,1,0,0,0,4112,4114,1,0,0,0,4113,4115, - 3,144,72,0,4114,4113,1,0,0,0,4114,4115,1,0,0,0,4115,4125,1,0,0,0, - 4116,4121,3,340,170,0,4117,4118,5,6,0,0,4118,4120,3,340,170,0,4119, - 4117,1,0,0,0,4120,4123,1,0,0,0,4121,4119,1,0,0,0,4121,4122,1,0,0, - 0,4122,4125,1,0,0,0,4123,4121,1,0,0,0,4124,4101,1,0,0,0,4124,4109, - 1,0,0,0,4124,4116,1,0,0,0,4125,339,1,0,0,0,4126,4127,7,52,0,0,4127, - 341,1,0,0,0,4128,4133,5,88,0,0,4129,4133,5,86,0,0,4130,4133,5,46, - 0,0,4131,4133,3,818,409,0,4132,4128,1,0,0,0,4132,4129,1,0,0,0,4132, - 4130,1,0,0,0,4132,4131,1,0,0,0,4133,4135,1,0,0,0,4134,4136,3,144, - 72,0,4135,4134,1,0,0,0,4135,4136,1,0,0,0,4136,343,1,0,0,0,4137,4138, - 5,92,0,0,4138,4183,3,762,381,0,4139,4141,5,328,0,0,4140,4139,1,0, - 0,0,4140,4141,1,0,0,0,4141,4142,1,0,0,0,4142,4183,3,760,380,0,4143, - 4147,5,63,0,0,4144,4145,5,174,0,0,4145,4148,5,381,0,0,4146,4148, - 5,331,0,0,4147,4144,1,0,0,0,4147,4146,1,0,0,0,4148,4151,1,0,0,0, - 4149,4151,5,247,0,0,4150,4143,1,0,0,0,4150,4149,1,0,0,0,4151,4152, - 1,0,0,0,4152,4183,3,784,392,0,4153,4154,5,211,0,0,4154,4183,3,380, - 190,0,4155,4156,5,296,0,0,4156,4183,3,376,188,0,4157,4158,5,442, - 0,0,4158,4183,3,372,186,0,4159,4160,5,175,0,0,4160,4183,3,766,383, - 0,4161,4162,7,32,0,0,4162,4183,3,314,157,0,4163,4164,5,248,0,0,4164, - 4165,5,274,0,0,4165,4170,3,202,101,0,4166,4167,5,6,0,0,4167,4169, - 3,202,101,0,4168,4166,1,0,0,0,4169,4172,1,0,0,0,4170,4168,1,0,0, - 0,4170,4171,1,0,0,0,4171,4183,1,0,0,0,4172,4170,1,0,0,0,4173,4174, - 5,323,0,0,4174,4183,3,764,382,0,4175,4176,5,351,0,0,4176,4183,3, - 782,391,0,4177,4178,5,30,0,0,4178,4179,7,53,0,0,4179,4180,5,68,0, - 0,4180,4181,5,323,0,0,4181,4183,3,764,382,0,4182,4137,1,0,0,0,4182, - 4140,1,0,0,0,4182,4150,1,0,0,0,4182,4153,1,0,0,0,4182,4155,1,0,0, - 0,4182,4157,1,0,0,0,4182,4159,1,0,0,0,4182,4161,1,0,0,0,4182,4163, - 1,0,0,0,4182,4173,1,0,0,0,4182,4175,1,0,0,0,4182,4177,1,0,0,0,4183, - 345,1,0,0,0,4184,4186,5,66,0,0,4185,4184,1,0,0,0,4185,4186,1,0,0, - 0,4186,4187,1,0,0,0,4187,4188,3,814,407,0,4188,4196,1,0,0,0,4189, - 4191,5,6,0,0,4190,4192,5,66,0,0,4191,4190,1,0,0,0,4191,4192,1,0, - 0,0,4192,4193,1,0,0,0,4193,4195,3,814,407,0,4194,4189,1,0,0,0,4195, - 4198,1,0,0,0,4196,4194,1,0,0,0,4196,4197,1,0,0,0,4197,347,1,0,0, - 0,4198,4196,1,0,0,0,4199,4200,5,65,0,0,4200,4205,3,342,171,0,4201, - 4202,5,6,0,0,4202,4204,3,342,171,0,4203,4201,1,0,0,0,4204,4207,1, - 0,0,0,4205,4203,1,0,0,0,4205,4206,1,0,0,0,4206,4208,1,0,0,0,4207, - 4205,1,0,0,0,4208,4209,5,94,0,0,4209,4213,3,816,408,0,4210,4211, - 5,105,0,0,4211,4212,5,134,0,0,4212,4214,5,279,0,0,4213,4210,1,0, - 0,0,4213,4214,1,0,0,0,4214,4218,1,0,0,0,4215,4216,5,214,0,0,4216, - 4217,5,147,0,0,4217,4219,3,814,407,0,4218,4215,1,0,0,0,4218,4219, - 1,0,0,0,4219,349,1,0,0,0,4220,4224,5,317,0,0,4221,4222,5,134,0,0, - 4222,4223,5,279,0,0,4223,4225,5,62,0,0,4224,4221,1,0,0,0,4224,4225, - 1,0,0,0,4225,4226,1,0,0,0,4226,4231,3,342,171,0,4227,4228,5,6,0, - 0,4228,4230,3,342,171,0,4229,4227,1,0,0,0,4230,4233,1,0,0,0,4231, - 4229,1,0,0,0,4231,4232,1,0,0,0,4232,4234,1,0,0,0,4233,4231,1,0,0, - 0,4234,4235,5,64,0,0,4235,4239,3,816,408,0,4236,4237,5,214,0,0,4237, - 4238,5,147,0,0,4238,4240,3,814,407,0,4239,4236,1,0,0,0,4239,4240, - 1,0,0,0,4240,4242,1,0,0,0,4241,4243,3,96,48,0,4242,4241,1,0,0,0, - 4242,4243,1,0,0,0,4243,351,1,0,0,0,4244,4245,5,138,0,0,4245,4246, - 5,53,0,0,4246,4255,5,294,0,0,4247,4248,5,68,0,0,4248,4249,5,323, - 0,0,4249,4254,3,764,382,0,4250,4251,5,62,0,0,4251,4252,7,2,0,0,4252, - 4254,3,816,408,0,4253,4247,1,0,0,0,4253,4250,1,0,0,0,4254,4257,1, - 0,0,0,4255,4253,1,0,0,0,4255,4256,1,0,0,0,4256,4258,1,0,0,0,4257, - 4255,1,0,0,0,4258,4259,3,354,177,0,4259,353,1,0,0,0,4260,4261,5, - 65,0,0,4261,4262,3,338,169,0,4262,4263,5,80,0,0,4263,4264,3,356, - 178,0,4264,4265,5,94,0,0,4265,4269,3,346,173,0,4266,4267,5,105,0, - 0,4267,4268,5,65,0,0,4268,4270,5,279,0,0,4269,4266,1,0,0,0,4269, - 4270,1,0,0,0,4270,4286,1,0,0,0,4271,4275,5,317,0,0,4272,4273,5,65, - 0,0,4273,4274,5,279,0,0,4274,4276,5,62,0,0,4275,4272,1,0,0,0,4275, - 4276,1,0,0,0,4276,4277,1,0,0,0,4277,4278,3,338,169,0,4278,4279,5, - 80,0,0,4279,4280,3,356,178,0,4280,4281,5,64,0,0,4281,4283,3,346, - 173,0,4282,4284,3,96,48,0,4283,4282,1,0,0,0,4283,4284,1,0,0,0,4284, - 4286,1,0,0,0,4285,4260,1,0,0,0,4285,4271,1,0,0,0,4286,355,1,0,0, - 0,4287,4288,7,54,0,0,4288,357,1,0,0,0,4289,4291,5,46,0,0,4290,4292, - 5,98,0,0,4291,4290,1,0,0,0,4291,4292,1,0,0,0,4292,4293,1,0,0,0,4293, - 4295,5,226,0,0,4294,4296,5,109,0,0,4295,4294,1,0,0,0,4295,4296,1, - 0,0,0,4296,4298,1,0,0,0,4297,4299,3,294,147,0,4298,4297,1,0,0,0, - 4298,4299,1,0,0,0,4299,4301,1,0,0,0,4300,4302,3,818,409,0,4301,4300, - 1,0,0,0,4301,4302,1,0,0,0,4302,4303,1,0,0,0,4303,4304,5,80,0,0,4304, - 4306,3,624,312,0,4305,4307,3,170,85,0,4306,4305,1,0,0,0,4306,4307, - 1,0,0,0,4307,4308,1,0,0,0,4308,4311,3,360,180,0,4309,4310,5,441, - 0,0,4310,4312,3,360,180,0,4311,4309,1,0,0,0,4311,4312,1,0,0,0,4312, - 4318,1,0,0,0,4313,4315,5,273,0,0,4314,4316,5,77,0,0,4315,4314,1, - 0,0,0,4315,4316,1,0,0,0,4316,4317,1,0,0,0,4317,4319,5,56,0,0,4318, - 4313,1,0,0,0,4318,4319,1,0,0,0,4319,4321,1,0,0,0,4320,4322,3,102, - 51,0,4321,4320,1,0,0,0,4321,4322,1,0,0,0,4322,4324,1,0,0,0,4323, - 4325,3,176,88,0,4324,4323,1,0,0,0,4324,4325,1,0,0,0,4325,4327,1, - 0,0,0,4326,4328,3,638,319,0,4327,4326,1,0,0,0,4327,4328,1,0,0,0, - 4328,359,1,0,0,0,4329,4330,5,2,0,0,4330,4335,3,362,181,0,4331,4332, - 5,6,0,0,4332,4334,3,362,181,0,4333,4331,1,0,0,0,4334,4337,1,0,0, - 0,4335,4333,1,0,0,0,4335,4336,1,0,0,0,4336,4338,1,0,0,0,4337,4335, - 1,0,0,0,4338,4339,5,3,0,0,4339,361,1,0,0,0,4340,4347,3,800,400,0, - 4341,4347,3,688,344,0,4342,4343,5,2,0,0,4343,4344,3,674,337,0,4344, - 4345,5,3,0,0,4345,4347,1,0,0,0,4346,4340,1,0,0,0,4346,4341,1,0,0, - 0,4346,4342,1,0,0,0,4347,4349,1,0,0,0,4348,4350,3,98,49,0,4349,4348, - 1,0,0,0,4349,4350,1,0,0,0,4350,4357,1,0,0,0,4351,4353,3,316,158, - 0,4352,4351,1,0,0,0,4352,4353,1,0,0,0,4353,4358,1,0,0,0,4354,4355, - 3,316,158,0,4355,4356,3,100,50,0,4356,4358,1,0,0,0,4357,4352,1,0, - 0,0,4357,4354,1,0,0,0,4358,4360,1,0,0,0,4359,4361,7,55,0,0,4360, - 4359,1,0,0,0,4360,4361,1,0,0,0,4361,4364,1,0,0,0,4362,4363,5,273, - 0,0,4363,4365,7,56,0,0,4364,4362,1,0,0,0,4364,4365,1,0,0,0,4365, - 363,1,0,0,0,4366,4368,5,46,0,0,4367,4369,3,366,183,0,4368,4367,1, - 0,0,0,4368,4369,1,0,0,0,4369,4374,1,0,0,0,4370,4371,5,211,0,0,4371, - 4375,3,804,402,0,4372,4373,5,296,0,0,4373,4375,3,798,399,0,4374, - 4370,1,0,0,0,4374,4372,1,0,0,0,4375,4376,1,0,0,0,4376,4385,5,2,0, - 0,4377,4382,3,390,195,0,4378,4379,5,6,0,0,4379,4381,3,390,195,0, - 4380,4378,1,0,0,0,4381,4384,1,0,0,0,4382,4380,1,0,0,0,4382,4383, - 1,0,0,0,4383,4386,1,0,0,0,4384,4382,1,0,0,0,4385,4377,1,0,0,0,4385, - 4386,1,0,0,0,4386,4387,1,0,0,0,4387,4388,5,3,0,0,4388,4405,1,0,0, - 0,4389,4403,5,316,0,0,4390,4404,3,388,194,0,4391,4392,5,92,0,0,4392, - 4393,5,2,0,0,4393,4398,3,402,201,0,4394,4395,5,6,0,0,4395,4397,3, - 402,201,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,4401,1,0,0,0,4400,4398,1,0,0,0,4401,4402, - 5,3,0,0,4402,4404,1,0,0,0,4403,4390,1,0,0,0,4403,4391,1,0,0,0,4404, - 4406,1,0,0,0,4405,4389,1,0,0,0,4405,4406,1,0,0,0,4406,4408,1,0,0, - 0,4407,4409,3,398,199,0,4408,4407,1,0,0,0,4409,4410,1,0,0,0,4410, - 4408,1,0,0,0,4410,4411,1,0,0,0,4411,4417,1,0,0,0,4412,4413,5,105, - 0,0,4413,4414,5,2,0,0,4414,4415,3,784,392,0,4415,4416,5,3,0,0,4416, - 4418,1,0,0,0,4417,4412,1,0,0,0,4417,4418,1,0,0,0,4418,365,1,0,0, - 0,4419,4420,5,82,0,0,4420,4421,5,311,0,0,4421,367,1,0,0,0,4422,4424, - 5,2,0,0,4423,4425,3,370,185,0,4424,4423,1,0,0,0,4424,4425,1,0,0, - 0,4425,4426,1,0,0,0,4426,4427,5,3,0,0,4427,369,1,0,0,0,4428,4433, - 3,384,192,0,4429,4430,5,6,0,0,4430,4432,3,384,192,0,4431,4429,1, - 0,0,0,4432,4435,1,0,0,0,4433,4431,1,0,0,0,4433,4434,1,0,0,0,4434, - 371,1,0,0,0,4435,4433,1,0,0,0,4436,4441,3,374,187,0,4437,4438,5, - 6,0,0,4438,4440,3,374,187,0,4439,4437,1,0,0,0,4440,4443,1,0,0,0, - 4441,4439,1,0,0,0,4441,4442,1,0,0,0,4442,373,1,0,0,0,4443,4441,1, - 0,0,0,4444,4445,3,794,397,0,4445,4446,3,368,184,0,4446,4450,1,0, - 0,0,4447,4450,3,832,416,0,4448,4450,3,780,390,0,4449,4444,1,0,0, - 0,4449,4447,1,0,0,0,4449,4448,1,0,0,0,4450,375,1,0,0,0,4451,4456, - 3,378,189,0,4452,4453,5,6,0,0,4453,4455,3,378,189,0,4454,4452,1, - 0,0,0,4455,4458,1,0,0,0,4456,4454,1,0,0,0,4456,4457,1,0,0,0,4457, - 377,1,0,0,0,4458,4456,1,0,0,0,4459,4460,3,796,398,0,4460,4461,3, - 368,184,0,4461,4465,1,0,0,0,4462,4465,3,832,416,0,4463,4465,3,780, - 390,0,4464,4459,1,0,0,0,4464,4462,1,0,0,0,4464,4463,1,0,0,0,4465, - 379,1,0,0,0,4466,4471,3,382,191,0,4467,4468,5,6,0,0,4468,4470,3, - 382,191,0,4469,4467,1,0,0,0,4470,4473,1,0,0,0,4471,4469,1,0,0,0, - 4471,4472,1,0,0,0,4472,381,1,0,0,0,4473,4471,1,0,0,0,4474,4475,3, - 806,403,0,4475,4476,3,368,184,0,4476,4480,1,0,0,0,4477,4480,3,832, - 416,0,4478,4480,3,780,390,0,4479,4474,1,0,0,0,4479,4477,1,0,0,0, - 4479,4478,1,0,0,0,4480,383,1,0,0,0,4481,4483,3,386,193,0,4482,4484, - 3,820,410,0,4483,4482,1,0,0,0,4483,4484,1,0,0,0,4484,4490,1,0,0, - 0,4485,4487,3,820,410,0,4486,4488,3,386,193,0,4487,4486,1,0,0,0, - 4487,4488,1,0,0,0,4488,4490,1,0,0,0,4489,4481,1,0,0,0,4489,4485, - 1,0,0,0,4489,4490,1,0,0,0,4490,4491,1,0,0,0,4491,4492,3,388,194, - 0,4492,385,1,0,0,0,4493,4495,5,68,0,0,4494,4496,5,453,0,0,4495,4494, - 1,0,0,0,4495,4496,1,0,0,0,4496,4501,1,0,0,0,4497,4501,5,453,0,0, - 4498,4501,5,400,0,0,4499,4501,5,101,0,0,4500,4493,1,0,0,0,4500,4497, - 1,0,0,0,4500,4498,1,0,0,0,4500,4499,1,0,0,0,4501,387,1,0,0,0,4502, - 4512,3,652,326,0,4503,4505,5,415,0,0,4504,4503,1,0,0,0,4504,4505, - 1,0,0,0,4505,4506,1,0,0,0,4506,4507,3,820,410,0,4507,4508,3,318, - 159,0,4508,4509,5,27,0,0,4509,4510,5,360,0,0,4510,4512,1,0,0,0,4511, - 4502,1,0,0,0,4511,4504,1,0,0,0,4512,389,1,0,0,0,4513,4516,3,384, - 192,0,4514,4515,7,57,0,0,4515,4517,3,674,337,0,4516,4514,1,0,0,0, - 4516,4517,1,0,0,0,4517,391,1,0,0,0,4518,4528,5,2,0,0,4519,4529,5, - 9,0,0,4520,4522,3,370,185,0,4521,4520,1,0,0,0,4521,4522,1,0,0,0, - 4522,4526,1,0,0,0,4523,4524,5,83,0,0,4524,4525,5,147,0,0,4525,4527, - 3,370,185,0,4526,4523,1,0,0,0,4526,4527,1,0,0,0,4527,4529,1,0,0, - 0,4528,4519,1,0,0,0,4528,4521,1,0,0,0,4529,4530,1,0,0,0,4530,4531, - 5,3,0,0,4531,393,1,0,0,0,4532,4533,3,806,403,0,4533,4534,3,392,196, - 0,4534,395,1,0,0,0,4535,4536,5,316,0,0,4536,4539,5,78,0,0,4537,4539, - 5,149,0,0,4538,4535,1,0,0,0,4538,4537,1,0,0,0,4539,4540,1,0,0,0, - 4540,4541,5,80,0,0,4541,4542,5,78,0,0,4542,4565,5,458,0,0,4543,4565, - 5,346,0,0,4544,4565,5,222,0,0,4545,4565,5,338,0,0,4546,4565,5,377, - 0,0,4547,4549,5,205,0,0,4548,4547,1,0,0,0,4548,4549,1,0,0,0,4549, - 4550,1,0,0,0,4550,4551,5,327,0,0,4551,4565,7,58,0,0,4552,4565,5, - 250,0,0,4553,4554,5,77,0,0,4554,4565,5,250,0,0,4555,4556,7,59,0, - 0,4556,4565,3,202,101,0,4557,4558,5,459,0,0,4558,4565,3,316,158, - 0,4559,4560,5,333,0,0,4560,4565,3,42,21,0,4561,4565,3,60,30,0,4562, - 4563,5,460,0,0,4563,4565,3,818,409,0,4564,4538,1,0,0,0,4564,4543, - 1,0,0,0,4564,4544,1,0,0,0,4564,4545,1,0,0,0,4564,4546,1,0,0,0,4564, - 4548,1,0,0,0,4564,4552,1,0,0,0,4564,4553,1,0,0,0,4564,4555,1,0,0, - 0,4564,4557,1,0,0,0,4564,4559,1,0,0,0,4564,4561,1,0,0,0,4564,4562, - 1,0,0,0,4565,397,1,0,0,0,4566,4567,5,36,0,0,4567,4568,3,808,404, - 0,4568,4569,3,462,231,0,4569,4602,1,0,0,0,4570,4571,5,247,0,0,4571, - 4602,3,58,29,0,4572,4573,5,443,0,0,4573,4574,5,62,0,0,4574,4575, - 5,360,0,0,4575,4582,3,652,326,0,4576,4577,5,6,0,0,4577,4578,5,62, - 0,0,4578,4579,5,360,0,0,4579,4581,3,652,326,0,4580,4576,1,0,0,0, - 4581,4584,1,0,0,0,4582,4580,1,0,0,0,4582,4583,1,0,0,0,4583,4602, - 1,0,0,0,4584,4582,1,0,0,0,4585,4602,5,104,0,0,4586,4587,5,333,0, - 0,4587,4594,3,818,409,0,4588,4589,5,94,0,0,4589,4595,3,818,409,0, - 4590,4591,5,10,0,0,4591,4595,3,818,409,0,4592,4593,5,64,0,0,4593, - 4595,5,434,0,0,4594,4588,1,0,0,0,4594,4590,1,0,0,0,4594,4592,1,0, - 0,0,4595,4602,1,0,0,0,4596,4597,5,36,0,0,4597,4602,3,818,409,0,4598, - 4602,3,4,2,0,4599,4602,3,396,198,0,4600,4602,3,818,409,0,4601,4566, - 1,0,0,0,4601,4570,1,0,0,0,4601,4572,1,0,0,0,4601,4585,1,0,0,0,4601, - 4586,1,0,0,0,4601,4596,1,0,0,0,4601,4598,1,0,0,0,4601,4599,1,0,0, - 0,4601,4600,1,0,0,0,4602,399,1,0,0,0,4603,4604,5,105,0,0,4604,4605, - 3,284,142,0,4605,401,1,0,0,0,4606,4607,3,800,400,0,4607,4608,3,388, - 194,0,4608,403,1,0,0,0,4609,4616,5,138,0,0,4610,4611,5,211,0,0,4611, - 4617,3,382,191,0,4612,4613,5,296,0,0,4613,4617,3,378,189,0,4614, - 4615,5,442,0,0,4615,4617,3,374,187,0,4616,4610,1,0,0,0,4616,4612, - 1,0,0,0,4616,4614,1,0,0,0,4617,4619,1,0,0,0,4618,4620,3,396,198, - 0,4619,4618,1,0,0,0,4620,4621,1,0,0,0,4621,4619,1,0,0,0,4621,4622, - 1,0,0,0,4622,4624,1,0,0,0,4623,4625,5,315,0,0,4624,4623,1,0,0,0, - 4624,4625,1,0,0,0,4625,405,1,0,0,0,4626,4642,5,191,0,0,4627,4629, - 5,211,0,0,4628,4630,3,422,211,0,4629,4628,1,0,0,0,4629,4630,1,0, - 0,0,4630,4631,1,0,0,0,4631,4643,3,380,190,0,4632,4634,5,296,0,0, - 4633,4635,3,422,211,0,4634,4633,1,0,0,0,4634,4635,1,0,0,0,4635,4636, - 1,0,0,0,4636,4643,3,376,188,0,4637,4639,5,442,0,0,4638,4640,3,422, - 211,0,4639,4638,1,0,0,0,4639,4640,1,0,0,0,4640,4641,1,0,0,0,4641, - 4643,3,372,186,0,4642,4627,1,0,0,0,4642,4632,1,0,0,0,4642,4637,1, - 0,0,0,4643,4645,1,0,0,0,4644,4646,3,96,48,0,4645,4644,1,0,0,0,4645, - 4646,1,0,0,0,4646,407,1,0,0,0,4647,4648,5,191,0,0,4648,4650,5,136, - 0,0,4649,4651,3,422,211,0,4650,4649,1,0,0,0,4650,4651,1,0,0,0,4651, - 4652,1,0,0,0,4652,4657,3,394,197,0,4653,4654,5,6,0,0,4654,4656,3, - 394,197,0,4655,4653,1,0,0,0,4656,4659,1,0,0,0,4657,4655,1,0,0,0, - 4657,4658,1,0,0,0,4658,4661,1,0,0,0,4659,4657,1,0,0,0,4660,4662, - 3,96,48,0,4661,4660,1,0,0,0,4661,4662,1,0,0,0,4662,409,1,0,0,0,4663, - 4664,5,191,0,0,4664,4666,5,278,0,0,4665,4667,3,422,211,0,4666,4665, - 1,0,0,0,4666,4667,1,0,0,0,4667,4668,1,0,0,0,4668,4673,3,416,208, - 0,4669,4670,5,6,0,0,4670,4672,3,416,208,0,4671,4669,1,0,0,0,4672, - 4675,1,0,0,0,4673,4671,1,0,0,0,4673,4674,1,0,0,0,4674,4677,1,0,0, - 0,4675,4673,1,0,0,0,4676,4678,3,96,48,0,4677,4676,1,0,0,0,4677,4678, - 1,0,0,0,4678,411,1,0,0,0,4679,4692,5,2,0,0,4680,4683,3,652,326,0, - 4681,4682,5,6,0,0,4682,4684,3,652,326,0,4683,4681,1,0,0,0,4683,4684, - 1,0,0,0,4684,4693,1,0,0,0,4685,4686,5,407,0,0,4686,4687,5,6,0,0, - 4687,4693,3,652,326,0,4688,4689,3,652,326,0,4689,4690,5,6,0,0,4690, - 4691,5,407,0,0,4691,4693,1,0,0,0,4692,4680,1,0,0,0,4692,4685,1,0, - 0,0,4692,4688,1,0,0,0,4693,4694,1,0,0,0,4694,4695,5,3,0,0,4695,413, - 1,0,0,0,4696,4697,3,818,409,0,4697,4698,5,11,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,4704,1,0,0,0,4703,4701,1,0,0,0,4704,4705,3,720,360, - 0,4705,415,1,0,0,0,4706,4707,3,414,207,0,4707,4708,3,412,206,0,4708, - 417,1,0,0,0,4709,4713,5,57,0,0,4710,4714,3,808,404,0,4711,4712,5, - 247,0,0,4712,4714,3,58,29,0,4713,4710,1,0,0,0,4713,4711,1,0,0,0, - 4714,4715,1,0,0,0,4715,4713,1,0,0,0,4715,4716,1,0,0,0,4716,419,1, - 0,0,0,4717,4718,5,46,0,0,4718,4719,5,41,0,0,4719,4720,5,2,0,0,4720, - 4721,3,652,326,0,4721,4722,5,36,0,0,4722,4723,3,652,326,0,4723,4740, - 5,3,0,0,4724,4725,5,379,0,0,4725,4728,5,211,0,0,4726,4727,5,36,0, - 0,4727,4729,7,60,0,0,4728,4726,1,0,0,0,4728,4729,1,0,0,0,4729,4741, - 1,0,0,0,4730,4734,5,105,0,0,4731,4732,5,211,0,0,4732,4735,3,382, - 191,0,4733,4735,5,400,0,0,4734,4731,1,0,0,0,4734,4733,1,0,0,0,4735, - 4738,1,0,0,0,4736,4737,5,36,0,0,4737,4739,7,60,0,0,4738,4736,1,0, - 0,0,4738,4739,1,0,0,0,4739,4741,1,0,0,0,4740,4724,1,0,0,0,4740,4730, - 1,0,0,0,4741,421,1,0,0,0,4742,4743,5,220,0,0,4743,4744,5,396,0,0, - 4744,423,1,0,0,0,4745,4747,5,46,0,0,4746,4748,3,366,183,0,4747,4746, - 1,0,0,0,4747,4748,1,0,0,0,4748,4749,1,0,0,0,4749,4750,5,443,0,0, - 4750,4751,5,62,0,0,4751,4752,3,652,326,0,4752,4753,5,247,0,0,4753, - 4754,3,818,409,0,4754,4769,5,2,0,0,4755,4756,5,64,0,0,4756,4760, - 3,426,213,0,4757,4758,5,6,0,0,4758,4759,5,94,0,0,4759,4761,3,426, - 213,0,4760,4757,1,0,0,0,4760,4761,1,0,0,0,4761,4770,1,0,0,0,4762, - 4763,5,94,0,0,4763,4767,3,426,213,0,4764,4765,5,6,0,0,4765,4766, - 5,64,0,0,4766,4768,3,426,213,0,4767,4764,1,0,0,0,4767,4768,1,0,0, - 0,4768,4770,1,0,0,0,4769,4755,1,0,0,0,4769,4762,1,0,0,0,4770,4771, - 1,0,0,0,4771,4772,5,3,0,0,4772,425,1,0,0,0,4773,4774,5,461,0,0,4774, - 4775,5,105,0,0,4775,4776,5,211,0,0,4776,4777,3,382,191,0,4777,427, - 1,0,0,0,4778,4789,5,306,0,0,4779,4780,5,2,0,0,4780,4785,5,128,0, - 0,4781,4782,5,6,0,0,4782,4784,5,128,0,0,4783,4781,1,0,0,0,4784,4787, - 1,0,0,0,4785,4783,1,0,0,0,4785,4786,1,0,0,0,4786,4788,1,0,0,0,4787, - 4785,1,0,0,0,4788,4790,5,3,0,0,4789,4779,1,0,0,0,4789,4790,1,0,0, - 0,4790,4816,1,0,0,0,4791,4793,5,226,0,0,4792,4794,5,109,0,0,4793, - 4792,1,0,0,0,4793,4794,1,0,0,0,4794,4795,1,0,0,0,4795,4817,3,780, - 390,0,4796,4798,5,92,0,0,4797,4799,5,109,0,0,4798,4797,1,0,0,0,4798, - 4799,1,0,0,0,4799,4800,1,0,0,0,4800,4817,3,774,387,0,4801,4803,5, - 323,0,0,4802,4804,5,109,0,0,4803,4802,1,0,0,0,4803,4804,1,0,0,0, - 4804,4805,1,0,0,0,4805,4817,3,790,395,0,4806,4808,5,349,0,0,4807, - 4809,5,109,0,0,4808,4807,1,0,0,0,4808,4809,1,0,0,0,4809,4810,1,0, - 0,0,4810,4817,3,818,409,0,4811,4813,5,175,0,0,4812,4814,5,109,0, - 0,4813,4812,1,0,0,0,4813,4814,1,0,0,0,4814,4815,1,0,0,0,4815,4817, - 3,788,394,0,4816,4791,1,0,0,0,4816,4796,1,0,0,0,4816,4801,1,0,0, - 0,4816,4806,1,0,0,0,4816,4811,1,0,0,0,4817,429,1,0,0,0,4818,4819, - 5,138,0,0,4819,4820,3,176,88,0,4820,4821,7,16,0,0,4821,4822,3,100, - 50,0,4822,431,1,0,0,0,4823,4828,5,138,0,0,4824,4825,5,136,0,0,4825, - 4829,3,394,197,0,4826,4827,5,442,0,0,4827,4829,3,374,187,0,4828, - 4824,1,0,0,0,4828,4826,1,0,0,0,4829,4830,1,0,0,0,4830,4831,5,309, - 0,0,4831,4832,5,94,0,0,4832,4833,3,818,409,0,4833,5031,1,0,0,0,4834, - 4835,5,138,0,0,4835,4836,5,175,0,0,4836,4837,3,788,394,0,4837,4838, - 5,309,0,0,4838,4839,5,94,0,0,4839,4840,3,786,393,0,4840,5031,1,0, - 0,0,4841,4842,5,138,0,0,4842,4843,7,61,0,0,4843,4844,3,316,158,0, - 4844,4845,5,309,0,0,4845,4846,5,94,0,0,4846,4847,3,818,409,0,4847, - 5031,1,0,0,0,4848,4849,5,138,0,0,4849,4850,5,211,0,0,4850,4851,3, - 382,191,0,4851,4852,5,309,0,0,4852,4853,5,94,0,0,4853,4854,3,804, - 402,0,4854,5031,1,0,0,0,4855,4856,5,138,0,0,4856,4857,5,278,0,0, - 4857,4858,7,31,0,0,4858,4859,3,316,158,0,4859,4860,3,170,85,0,4860, - 4861,5,309,0,0,4861,4862,5,94,0,0,4862,4863,3,818,409,0,4863,5031, - 1,0,0,0,4864,4865,5,138,0,0,4865,4866,5,296,0,0,4866,4867,3,378, - 189,0,4867,4868,5,309,0,0,4868,4869,5,94,0,0,4869,4870,3,798,399, - 0,4870,5031,1,0,0,0,4871,4872,5,138,0,0,4872,4873,5,323,0,0,4873, - 4874,3,790,395,0,4874,4875,5,309,0,0,4875,4876,5,94,0,0,4876,4877, - 3,32,16,0,4877,5031,1,0,0,0,4878,4879,5,138,0,0,4879,4881,7,62,0, - 0,4880,4882,3,422,211,0,4881,4880,1,0,0,0,4881,4882,1,0,0,0,4882, - 4883,1,0,0,0,4883,4884,3,780,390,0,4884,4885,5,309,0,0,4885,4886, - 5,94,0,0,4886,4887,3,818,409,0,4887,5031,1,0,0,0,4888,4890,5,138, - 0,0,4889,4891,5,259,0,0,4890,4889,1,0,0,0,4890,4891,1,0,0,0,4891, - 4892,1,0,0,0,4892,4894,5,376,0,0,4893,4895,3,422,211,0,4894,4893, - 1,0,0,0,4894,4895,1,0,0,0,4895,4896,1,0,0,0,4896,4897,3,778,389, - 0,4897,4898,5,309,0,0,4898,4899,5,94,0,0,4899,4900,3,776,388,0,4900, - 5031,1,0,0,0,4901,4903,5,138,0,0,4902,4904,5,63,0,0,4903,4902,1, - 0,0,0,4903,4904,1,0,0,0,4904,4905,1,0,0,0,4905,4907,5,92,0,0,4906, - 4908,3,422,211,0,4907,4906,1,0,0,0,4907,4908,1,0,0,0,4908,4909,1, - 0,0,0,4909,4910,3,624,312,0,4910,4911,5,309,0,0,4911,4912,5,94,0, - 0,4912,4913,3,772,386,0,4913,5031,1,0,0,0,4914,4939,5,138,0,0,4915, - 4917,5,63,0,0,4916,4915,1,0,0,0,4916,4917,1,0,0,0,4917,4918,1,0, - 0,0,4918,4920,5,92,0,0,4919,4921,3,422,211,0,4920,4919,1,0,0,0,4920, - 4921,1,0,0,0,4921,4922,1,0,0,0,4922,4923,3,624,312,0,4923,4925,5, - 309,0,0,4924,4926,5,44,0,0,4925,4924,1,0,0,0,4925,4926,1,0,0,0,4926, - 4940,1,0,0,0,4927,4929,5,259,0,0,4928,4927,1,0,0,0,4928,4929,1,0, - 0,0,4929,4930,1,0,0,0,4930,4932,5,376,0,0,4931,4933,3,422,211,0, - 4932,4931,1,0,0,0,4932,4933,1,0,0,0,4933,4934,1,0,0,0,4934,4935, - 3,778,389,0,4935,4937,5,309,0,0,4936,4938,5,44,0,0,4937,4936,1,0, - 0,0,4937,4938,1,0,0,0,4938,4940,1,0,0,0,4939,4916,1,0,0,0,4939,4928, - 1,0,0,0,4940,4941,1,0,0,0,4941,4942,3,800,400,0,4942,4943,5,94,0, - 0,4943,4944,3,802,401,0,4944,5031,1,0,0,0,4945,4953,5,138,0,0,4946, - 4948,5,92,0,0,4947,4949,3,422,211,0,4948,4947,1,0,0,0,4948,4949, - 1,0,0,0,4949,4950,1,0,0,0,4950,4954,3,624,312,0,4951,4952,5,189, - 0,0,4952,4954,3,316,158,0,4953,4946,1,0,0,0,4953,4951,1,0,0,0,4954, - 4955,1,0,0,0,4955,4956,5,309,0,0,4956,4957,5,45,0,0,4957,4958,3, - 818,409,0,4958,4959,5,94,0,0,4959,4960,3,818,409,0,4960,5031,1,0, - 0,0,4961,4968,5,138,0,0,4962,4964,5,445,0,0,4963,4965,3,422,211, - 0,4964,4963,1,0,0,0,4964,4965,1,0,0,0,4965,4969,1,0,0,0,4966,4969, - 5,321,0,0,4967,4969,5,357,0,0,4968,4962,1,0,0,0,4968,4966,1,0,0, - 0,4968,4967,1,0,0,0,4969,4970,1,0,0,0,4970,4971,3,818,409,0,4971, - 4972,5,80,0,0,4972,4973,3,780,390,0,4973,4974,5,309,0,0,4974,4975, - 5,94,0,0,4975,4976,3,818,409,0,4976,5031,1,0,0,0,4977,4990,5,138, - 0,0,4978,4979,5,63,0,0,4979,4980,5,174,0,0,4980,4991,5,381,0,0,4981, - 4983,5,295,0,0,4982,4981,1,0,0,0,4982,4983,1,0,0,0,4983,4984,1,0, - 0,0,4984,4991,5,247,0,0,4985,4991,5,452,0,0,4986,4991,5,331,0,0, - 4987,4991,5,451,0,0,4988,4989,5,198,0,0,4989,4991,5,357,0,0,4990, - 4978,1,0,0,0,4990,4982,1,0,0,0,4990,4985,1,0,0,0,4990,4986,1,0,0, - 0,4990,4987,1,0,0,0,4990,4988,1,0,0,0,4991,4992,1,0,0,0,4992,4993, - 3,818,409,0,4993,4994,5,309,0,0,4994,4995,5,94,0,0,4995,4996,3,818, - 409,0,4996,5031,1,0,0,0,4997,4998,5,138,0,0,4998,4999,7,45,0,0,4999, - 5000,3,814,407,0,5000,5001,5,309,0,0,5001,5002,5,94,0,0,5002,5003, - 3,814,407,0,5003,5031,1,0,0,0,5004,5005,5,138,0,0,5005,5006,3,176, - 88,0,5006,5007,5,309,0,0,5007,5008,5,94,0,0,5008,5009,3,768,384, - 0,5009,5031,1,0,0,0,5010,5011,5,138,0,0,5011,5012,5,355,0,0,5012, - 5013,5,325,0,0,5013,5014,7,41,0,0,5014,5015,3,316,158,0,5015,5016, - 5,309,0,0,5016,5017,5,94,0,0,5017,5018,3,818,409,0,5018,5031,1,0, - 0,0,5019,5020,5,138,0,0,5020,5021,5,360,0,0,5021,5022,3,316,158, - 0,5022,5023,5,309,0,0,5023,5024,5,143,0,0,5024,5025,3,818,409,0, - 5025,5026,5,94,0,0,5026,5028,3,818,409,0,5027,5029,3,96,48,0,5028, - 5027,1,0,0,0,5028,5029,1,0,0,0,5029,5031,1,0,0,0,5030,4823,1,0,0, - 0,5030,4834,1,0,0,0,5030,4841,1,0,0,0,5030,4848,1,0,0,0,5030,4855, - 1,0,0,0,5030,4864,1,0,0,0,5030,4871,1,0,0,0,5030,4878,1,0,0,0,5030, - 4888,1,0,0,0,5030,4901,1,0,0,0,5030,4914,1,0,0,0,5030,4945,1,0,0, - 0,5030,4961,1,0,0,0,5030,4977,1,0,0,0,5030,4997,1,0,0,0,5030,5004, - 1,0,0,0,5030,5010,1,0,0,0,5030,5019,1,0,0,0,5031,433,1,0,0,0,5032, - 5049,5,138,0,0,5033,5034,5,211,0,0,5034,5050,3,382,191,0,5035,5036, - 5,296,0,0,5036,5050,3,378,189,0,5037,5038,5,442,0,0,5038,5050,3, - 374,187,0,5039,5040,5,357,0,0,5040,5041,3,818,409,0,5041,5042,5, - 80,0,0,5042,5043,3,780,390,0,5043,5050,1,0,0,0,5044,5045,5,259,0, - 0,5045,5046,5,376,0,0,5046,5050,3,778,389,0,5047,5048,5,226,0,0, - 5048,5050,3,780,390,0,5049,5033,1,0,0,0,5049,5035,1,0,0,0,5049,5037, - 1,0,0,0,5049,5039,1,0,0,0,5049,5044,1,0,0,0,5049,5047,1,0,0,0,5050, - 5052,1,0,0,0,5051,5053,5,269,0,0,5052,5051,1,0,0,0,5052,5053,1,0, - 0,0,5053,5054,1,0,0,0,5054,5055,5,462,0,0,5055,5056,5,80,0,0,5056, - 5057,5,204,0,0,5057,5058,3,818,409,0,5058,435,1,0,0,0,5059,5098, - 5,138,0,0,5060,5061,5,136,0,0,5061,5099,3,394,197,0,5062,5063,5, - 204,0,0,5063,5099,3,818,409,0,5064,5065,5,211,0,0,5065,5099,3,382, - 191,0,5066,5067,5,278,0,0,5067,5099,3,416,208,0,5068,5069,5,278, - 0,0,5069,5070,7,31,0,0,5070,5071,3,316,158,0,5071,5072,3,170,85, - 0,5072,5099,1,0,0,0,5073,5074,5,296,0,0,5074,5099,3,378,189,0,5075, - 5076,5,442,0,0,5076,5099,3,374,187,0,5077,5079,5,328,0,0,5078,5080, - 3,422,211,0,5079,5078,1,0,0,0,5079,5080,1,0,0,0,5080,5081,1,0,0, - 0,5081,5099,3,780,390,0,5082,5084,5,259,0,0,5083,5082,1,0,0,0,5083, - 5084,1,0,0,0,5084,5085,1,0,0,0,5085,5087,5,376,0,0,5086,5088,3,422, - 211,0,5087,5086,1,0,0,0,5087,5088,1,0,0,0,5088,5089,1,0,0,0,5089, - 5099,3,778,389,0,5090,5092,5,63,0,0,5091,5090,1,0,0,0,5091,5092, - 1,0,0,0,5092,5093,1,0,0,0,5093,5095,5,92,0,0,5094,5096,3,422,211, - 0,5095,5094,1,0,0,0,5095,5096,1,0,0,0,5096,5097,1,0,0,0,5097,5099, - 3,624,312,0,5098,5060,1,0,0,0,5098,5062,1,0,0,0,5098,5064,1,0,0, - 0,5098,5066,1,0,0,0,5098,5068,1,0,0,0,5098,5073,1,0,0,0,5098,5075, - 1,0,0,0,5098,5077,1,0,0,0,5098,5083,1,0,0,0,5098,5091,1,0,0,0,5099, - 5100,1,0,0,0,5100,5101,5,333,0,0,5101,5102,5,323,0,0,5102,5103,3, - 790,395,0,5103,5121,1,0,0,0,5104,5113,5,138,0,0,5105,5106,5,355, - 0,0,5106,5107,5,325,0,0,5107,5114,7,41,0,0,5108,5114,5,108,0,0,5109, - 5114,5,168,0,0,5110,5114,5,189,0,0,5111,5114,5,342,0,0,5112,5114, - 5,360,0,0,5113,5105,1,0,0,0,5113,5108,1,0,0,0,5113,5109,1,0,0,0, - 5113,5110,1,0,0,0,5113,5111,1,0,0,0,5113,5112,1,0,0,0,5114,5115, - 1,0,0,0,5115,5116,3,316,158,0,5116,5117,5,333,0,0,5117,5118,5,323, - 0,0,5118,5119,3,790,395,0,5119,5121,1,0,0,0,5120,5059,1,0,0,0,5120, - 5104,1,0,0,0,5121,437,1,0,0,0,5122,5123,5,138,0,0,5123,5124,5,278, - 0,0,5124,5125,3,416,208,0,5125,5126,5,333,0,0,5126,5127,3,440,220, - 0,5127,439,1,0,0,0,5128,5129,5,2,0,0,5129,5134,3,442,221,0,5130, - 5131,5,6,0,0,5131,5133,3,442,221,0,5132,5130,1,0,0,0,5133,5136,1, - 0,0,0,5134,5132,1,0,0,0,5134,5135,1,0,0,0,5135,5137,1,0,0,0,5136, - 5134,1,0,0,0,5137,5138,5,3,0,0,5138,441,1,0,0,0,5139,5140,3,824, - 412,0,5140,5147,5,10,0,0,5141,5148,5,407,0,0,5142,5148,3,388,194, - 0,5143,5148,3,834,417,0,5144,5148,3,726,363,0,5145,5148,3,202,101, - 0,5146,5148,3,808,404,0,5147,5141,1,0,0,0,5147,5142,1,0,0,0,5147, - 5143,1,0,0,0,5147,5144,1,0,0,0,5147,5145,1,0,0,0,5147,5146,1,0,0, - 0,5148,443,1,0,0,0,5149,5150,5,138,0,0,5150,5151,5,360,0,0,5151, - 5152,3,316,158,0,5152,5153,5,333,0,0,5153,5154,3,440,220,0,5154, - 445,1,0,0,0,5155,5156,5,138,0,0,5156,5157,5,278,0,0,5157,5158,7, - 31,0,0,5158,5159,3,316,158,0,5159,5160,3,170,85,0,5160,5161,5,282, - 0,0,5161,5162,5,94,0,0,5162,5163,3,814,407,0,5163,5230,1,0,0,0,5164, - 5191,5,138,0,0,5165,5166,5,136,0,0,5166,5192,3,394,197,0,5167,5168, - 5,175,0,0,5168,5192,3,788,394,0,5169,5170,5,211,0,0,5170,5192,3, - 382,191,0,5171,5173,5,295,0,0,5172,5171,1,0,0,0,5172,5173,1,0,0, - 0,5173,5174,1,0,0,0,5174,5175,5,247,0,0,5175,5192,3,818,409,0,5176, - 5177,5,248,0,0,5177,5178,5,274,0,0,5178,5192,3,202,101,0,5179,5180, - 5,248,0,0,5180,5181,5,274,0,0,5181,5192,3,202,101,0,5182,5183,5, - 278,0,0,5183,5192,3,416,208,0,5184,5185,5,296,0,0,5185,5192,3,378, - 189,0,5186,5187,5,442,0,0,5187,5192,3,374,187,0,5188,5189,5,323, - 0,0,5189,5192,3,790,395,0,5190,5192,3,176,88,0,5191,5165,1,0,0,0, - 5191,5167,1,0,0,0,5191,5169,1,0,0,0,5191,5172,1,0,0,0,5191,5176, - 1,0,0,0,5191,5179,1,0,0,0,5191,5182,1,0,0,0,5191,5184,1,0,0,0,5191, - 5186,1,0,0,0,5191,5188,1,0,0,0,5191,5190,1,0,0,0,5192,5193,1,0,0, - 0,5193,5194,5,282,0,0,5194,5195,5,94,0,0,5195,5196,3,814,407,0,5196, - 5230,1,0,0,0,5197,5206,5,138,0,0,5198,5199,5,355,0,0,5199,5200,5, - 325,0,0,5200,5207,7,63,0,0,5201,5207,5,108,0,0,5202,5207,5,168,0, - 0,5203,5207,5,189,0,0,5204,5207,5,360,0,0,5205,5207,5,342,0,0,5206, - 5198,1,0,0,0,5206,5201,1,0,0,0,5206,5202,1,0,0,0,5206,5203,1,0,0, - 0,5206,5204,1,0,0,0,5206,5205,1,0,0,0,5207,5208,1,0,0,0,5208,5209, - 3,316,158,0,5209,5210,5,282,0,0,5210,5211,5,94,0,0,5211,5212,3,814, - 407,0,5212,5230,1,0,0,0,5213,5222,5,138,0,0,5214,5223,5,331,0,0, - 5215,5216,5,63,0,0,5216,5217,5,174,0,0,5217,5223,5,381,0,0,5218, - 5219,5,198,0,0,5219,5223,5,357,0,0,5220,5223,5,452,0,0,5221,5223, - 5,451,0,0,5222,5214,1,0,0,0,5222,5215,1,0,0,0,5222,5218,1,0,0,0, - 5222,5220,1,0,0,0,5222,5221,1,0,0,0,5223,5224,1,0,0,0,5224,5225, - 3,818,409,0,5225,5226,5,282,0,0,5226,5227,5,94,0,0,5227,5228,3,814, - 407,0,5228,5230,1,0,0,0,5229,5155,1,0,0,0,5229,5164,1,0,0,0,5229, - 5197,1,0,0,0,5229,5213,1,0,0,0,5230,447,1,0,0,0,5231,5232,5,46,0, - 0,5232,5233,5,452,0,0,5233,5240,3,818,409,0,5234,5235,5,62,0,0,5235, - 5236,5,92,0,0,5236,5241,3,628,314,0,5237,5238,5,62,0,0,5238,5239, - 5,30,0,0,5239,5241,5,350,0,0,5240,5234,1,0,0,0,5240,5237,1,0,0,0, - 5240,5241,1,0,0,0,5241,5243,1,0,0,0,5242,5244,3,400,200,0,5243,5242, - 1,0,0,0,5243,5244,1,0,0,0,5244,449,1,0,0,0,5245,5246,5,138,0,0,5246, - 5247,5,452,0,0,5247,5265,3,818,409,0,5248,5249,5,282,0,0,5249,5250, - 5,94,0,0,5250,5266,3,814,407,0,5251,5252,5,333,0,0,5252,5266,3,284, - 142,0,5253,5254,5,309,0,0,5254,5255,5,94,0,0,5255,5266,3,818,409, - 0,5256,5257,7,34,0,0,5257,5262,3,626,313,0,5258,5259,5,6,0,0,5259, - 5261,3,626,313,0,5260,5258,1,0,0,0,5261,5264,1,0,0,0,5262,5260,1, - 0,0,0,5262,5263,1,0,0,0,5263,5266,1,0,0,0,5264,5262,1,0,0,0,5265, - 5248,1,0,0,0,5265,5251,1,0,0,0,5265,5253,1,0,0,0,5265,5256,1,0,0, - 0,5266,451,1,0,0,0,5267,5268,5,46,0,0,5268,5269,5,451,0,0,5269,5270, - 3,818,409,0,5270,5271,5,164,0,0,5271,5272,3,808,404,0,5272,5273, - 5,452,0,0,5273,5278,3,824,412,0,5274,5275,5,6,0,0,5275,5277,3,824, - 412,0,5276,5274,1,0,0,0,5277,5280,1,0,0,0,5278,5276,1,0,0,0,5278, - 5279,1,0,0,0,5279,5282,1,0,0,0,5280,5278,1,0,0,0,5281,5283,3,400, - 200,0,5282,5281,1,0,0,0,5282,5283,1,0,0,0,5283,453,1,0,0,0,5284, - 5285,5,138,0,0,5285,5286,5,451,0,0,5286,5287,3,818,409,0,5287,5288, - 5,333,0,0,5288,5289,3,284,142,0,5289,5341,1,0,0,0,5290,5291,5,138, - 0,0,5291,5292,5,451,0,0,5292,5293,3,818,409,0,5293,5294,5,164,0, - 0,5294,5295,3,808,404,0,5295,5341,1,0,0,0,5296,5297,5,138,0,0,5297, - 5298,5,451,0,0,5298,5299,3,818,409,0,5299,5300,5,305,0,0,5300,5302, - 5,452,0,0,5301,5303,3,400,200,0,5302,5301,1,0,0,0,5302,5303,1,0, - 0,0,5303,5341,1,0,0,0,5304,5305,5,138,0,0,5305,5306,5,451,0,0,5306, - 5307,3,818,409,0,5307,5308,7,34,0,0,5308,5309,5,452,0,0,5309,5314, - 3,824,412,0,5310,5311,5,6,0,0,5311,5313,3,824,412,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, - 5318,1,0,0,0,5316,5314,1,0,0,0,5317,5319,3,400,200,0,5318,5317,1, - 0,0,0,5318,5319,1,0,0,0,5319,5341,1,0,0,0,5320,5321,5,138,0,0,5321, - 5322,5,451,0,0,5322,5323,3,818,409,0,5323,5324,7,64,0,0,5324,5341, - 1,0,0,0,5325,5326,5,138,0,0,5326,5327,5,451,0,0,5327,5328,3,818, - 409,0,5328,5329,5,465,0,0,5329,5330,5,2,0,0,5330,5331,3,290,145, - 0,5331,5332,5,3,0,0,5332,5341,1,0,0,0,5333,5334,5,138,0,0,5334,5335, - 5,451,0,0,5335,5336,3,818,409,0,5336,5337,5,282,0,0,5337,5338,5, - 94,0,0,5338,5339,3,814,407,0,5339,5341,1,0,0,0,5340,5284,1,0,0,0, - 5340,5290,1,0,0,0,5340,5296,1,0,0,0,5340,5304,1,0,0,0,5340,5320, - 1,0,0,0,5340,5325,1,0,0,0,5340,5333,1,0,0,0,5341,455,1,0,0,0,5342, - 5344,5,46,0,0,5343,5345,3,366,183,0,5344,5343,1,0,0,0,5344,5345, - 1,0,0,0,5345,5346,1,0,0,0,5346,5347,5,321,0,0,5347,5348,3,818,409, - 0,5348,5349,5,36,0,0,5349,5350,5,80,0,0,5350,5351,7,65,0,0,5351, - 5352,5,94,0,0,5352,5354,3,780,390,0,5353,5355,3,638,319,0,5354,5353, - 1,0,0,0,5354,5355,1,0,0,0,5355,5356,1,0,0,0,5356,5358,5,57,0,0,5357, - 5359,7,66,0,0,5358,5357,1,0,0,0,5358,5359,1,0,0,0,5359,5376,1,0, - 0,0,5360,5377,5,270,0,0,5361,5377,3,458,229,0,5362,5364,5,2,0,0, - 5363,5365,3,458,229,0,5364,5363,1,0,0,0,5364,5365,1,0,0,0,5365,5372, - 1,0,0,0,5366,5368,5,7,0,0,5367,5369,3,458,229,0,5368,5367,1,0,0, - 0,5368,5369,1,0,0,0,5369,5371,1,0,0,0,5370,5366,1,0,0,0,5371,5374, - 1,0,0,0,5372,5370,1,0,0,0,5372,5373,1,0,0,0,5373,5375,1,0,0,0,5374, - 5372,1,0,0,0,5375,5377,5,3,0,0,5376,5360,1,0,0,0,5376,5361,1,0,0, - 0,5376,5362,1,0,0,0,5377,457,1,0,0,0,5378,5384,3,560,280,0,5379, - 5384,3,538,269,0,5380,5384,3,552,276,0,5381,5384,3,548,274,0,5382, - 5384,3,460,230,0,5383,5378,1,0,0,0,5383,5379,1,0,0,0,5383,5380,1, - 0,0,0,5383,5381,1,0,0,0,5383,5382,1,0,0,0,5384,459,1,0,0,0,5385, - 5386,5,271,0,0,5386,5388,3,818,409,0,5387,5389,3,462,231,0,5388, - 5387,1,0,0,0,5388,5389,1,0,0,0,5389,461,1,0,0,0,5390,5391,5,6,0, - 0,5391,5392,3,808,404,0,5392,463,1,0,0,0,5393,5394,5,252,0,0,5394, - 5395,3,818,409,0,5395,465,1,0,0,0,5396,5399,5,366,0,0,5397,5400, - 3,818,409,0,5398,5400,5,9,0,0,5399,5397,1,0,0,0,5399,5398,1,0,0, - 0,5400,467,1,0,0,0,5401,5403,5,146,0,0,5402,5404,3,470,235,0,5403, - 5402,1,0,0,0,5403,5404,1,0,0,0,5404,5406,1,0,0,0,5405,5407,3,474, - 237,0,5406,5405,1,0,0,0,5406,5407,1,0,0,0,5407,5447,1,0,0,0,5408, - 5409,5,340,0,0,5409,5411,5,356,0,0,5410,5412,3,474,237,0,5411,5410, - 1,0,0,0,5411,5412,1,0,0,0,5412,5447,1,0,0,0,5413,5414,5,322,0,0, - 5414,5447,3,818,409,0,5415,5417,5,308,0,0,5416,5418,5,322,0,0,5417, - 5416,1,0,0,0,5417,5418,1,0,0,0,5418,5419,1,0,0,0,5419,5447,3,818, - 409,0,5420,5421,5,290,0,0,5421,5422,5,356,0,0,5422,5447,3,808,404, - 0,5423,5424,7,67,0,0,5424,5425,5,291,0,0,5425,5447,3,808,404,0,5426, - 5428,7,68,0,0,5427,5429,3,470,235,0,5428,5427,1,0,0,0,5428,5429, - 1,0,0,0,5429,5435,1,0,0,0,5430,5432,5,33,0,0,5431,5433,5,269,0,0, - 5432,5431,1,0,0,0,5432,5433,1,0,0,0,5433,5434,1,0,0,0,5434,5436, - 5,153,0,0,5435,5430,1,0,0,0,5435,5436,1,0,0,0,5436,5447,1,0,0,0, - 5437,5439,5,319,0,0,5438,5440,3,470,235,0,5439,5438,1,0,0,0,5439, - 5440,1,0,0,0,5440,5441,1,0,0,0,5441,5443,5,94,0,0,5442,5444,5,322, - 0,0,5443,5442,1,0,0,0,5443,5444,1,0,0,0,5444,5445,1,0,0,0,5445,5447, - 3,818,409,0,5446,5401,1,0,0,0,5446,5408,1,0,0,0,5446,5413,1,0,0, - 0,5446,5415,1,0,0,0,5446,5420,1,0,0,0,5446,5423,1,0,0,0,5446,5426, - 1,0,0,0,5446,5437,1,0,0,0,5447,469,1,0,0,0,5448,5449,7,69,0,0,5449, - 471,1,0,0,0,5450,5451,5,244,0,0,5451,5452,5,251,0,0,5452,5460,3, - 50,25,0,5453,5454,5,300,0,0,5454,5460,7,70,0,0,5455,5457,5,77,0, - 0,5456,5455,1,0,0,0,5456,5457,1,0,0,0,5457,5458,1,0,0,0,5458,5460, - 5,54,0,0,5459,5450,1,0,0,0,5459,5453,1,0,0,0,5459,5456,1,0,0,0,5460, - 473,1,0,0,0,5461,5468,3,472,236,0,5462,5464,5,6,0,0,5463,5462,1, - 0,0,0,5463,5464,1,0,0,0,5464,5465,1,0,0,0,5465,5467,3,472,236,0, - 5466,5463,1,0,0,0,5467,5470,1,0,0,0,5468,5466,1,0,0,0,5468,5469, - 1,0,0,0,5469,475,1,0,0,0,5470,5468,1,0,0,0,5471,5474,5,46,0,0,5472, - 5473,5,82,0,0,5473,5475,5,311,0,0,5474,5472,1,0,0,0,5474,5475,1, - 0,0,0,5475,5477,1,0,0,0,5476,5478,3,122,61,0,5477,5476,1,0,0,0,5477, - 5478,1,0,0,0,5478,5494,1,0,0,0,5479,5480,5,376,0,0,5480,5482,3,776, - 388,0,5481,5483,3,146,73,0,5482,5481,1,0,0,0,5482,5483,1,0,0,0,5483, - 5485,1,0,0,0,5484,5486,3,102,51,0,5485,5484,1,0,0,0,5485,5486,1, - 0,0,0,5486,5495,1,0,0,0,5487,5488,5,303,0,0,5488,5489,5,376,0,0, - 5489,5490,3,776,388,0,5490,5492,3,144,72,0,5491,5493,3,102,51,0, - 5492,5491,1,0,0,0,5492,5493,1,0,0,0,5493,5495,1,0,0,0,5494,5479, - 1,0,0,0,5494,5487,1,0,0,0,5495,5496,1,0,0,0,5496,5497,5,36,0,0,5497, - 5504,3,560,280,0,5498,5500,5,105,0,0,5499,5501,7,71,0,0,5500,5499, - 1,0,0,0,5500,5501,1,0,0,0,5501,5502,1,0,0,0,5502,5503,5,42,0,0,5503, - 5505,5,279,0,0,5504,5498,1,0,0,0,5504,5505,1,0,0,0,5505,477,1,0, - 0,0,5506,5507,5,253,0,0,5507,5508,3,808,404,0,5508,479,1,0,0,0,5509, - 5510,5,46,0,0,5510,5511,5,175,0,0,5511,5513,3,786,393,0,5512,5514, - 5,105,0,0,5513,5512,1,0,0,0,5513,5514,1,0,0,0,5514,5520,1,0,0,0, - 5515,5517,3,482,241,0,5516,5515,1,0,0,0,5517,5518,1,0,0,0,5518,5516, - 1,0,0,0,5518,5519,1,0,0,0,5519,5521,1,0,0,0,5520,5516,1,0,0,0,5520, - 5521,1,0,0,0,5521,481,1,0,0,0,5522,5523,5,164,0,0,5523,5531,5,74, - 0,0,5524,5531,5,194,0,0,5525,5531,5,255,0,0,5526,5531,5,282,0,0, - 5527,5531,5,351,0,0,5528,5531,5,353,0,0,5529,5531,3,826,413,0,5530, - 5522,1,0,0,0,5530,5524,1,0,0,0,5530,5525,1,0,0,0,5530,5526,1,0,0, - 0,5530,5527,1,0,0,0,5530,5528,1,0,0,0,5530,5529,1,0,0,0,5531,5533, - 1,0,0,0,5532,5534,5,10,0,0,5533,5532,1,0,0,0,5533,5534,1,0,0,0,5534, - 5538,1,0,0,0,5535,5539,3,812,406,0,5536,5539,3,54,27,0,5537,5539, - 5,53,0,0,5538,5535,1,0,0,0,5538,5536,1,0,0,0,5538,5537,1,0,0,0,5539, - 483,1,0,0,0,5540,5541,5,138,0,0,5541,5542,5,175,0,0,5542,5558,3, - 788,394,0,5543,5544,5,333,0,0,5544,5545,5,351,0,0,5545,5547,3,768, - 384,0,5546,5543,1,0,0,0,5546,5547,1,0,0,0,5547,5559,1,0,0,0,5548, - 5550,5,105,0,0,5549,5548,1,0,0,0,5549,5550,1,0,0,0,5550,5552,1,0, - 0,0,5551,5553,3,482,241,0,5552,5551,1,0,0,0,5553,5554,1,0,0,0,5554, - 5552,1,0,0,0,5554,5555,1,0,0,0,5555,5557,1,0,0,0,5556,5549,1,0,0, - 0,5556,5557,1,0,0,0,5557,5559,1,0,0,0,5558,5546,1,0,0,0,5558,5556, - 1,0,0,0,5559,485,1,0,0,0,5560,5561,5,138,0,0,5561,5562,5,175,0,0, - 5562,5564,3,788,394,0,5563,5565,3,64,32,0,5564,5563,1,0,0,0,5564, - 5565,1,0,0,0,5565,487,1,0,0,0,5566,5567,5,138,0,0,5567,5568,5,108, - 0,0,5568,5569,3,316,158,0,5569,5570,5,305,0,0,5570,5571,5,375,0, - 0,5571,489,1,0,0,0,5572,5573,5,138,0,0,5573,5574,5,349,0,0,5574, - 5575,7,16,0,0,5575,5576,3,40,20,0,5576,491,1,0,0,0,5577,5578,5,46, - 0,0,5578,5579,5,189,0,0,5579,5581,3,316,158,0,5580,5582,5,36,0,0, - 5581,5580,1,0,0,0,5581,5582,1,0,0,0,5582,5583,1,0,0,0,5583,5587, - 3,652,326,0,5584,5586,3,134,67,0,5585,5584,1,0,0,0,5586,5589,1,0, - 0,0,5587,5585,1,0,0,0,5587,5588,1,0,0,0,5588,493,1,0,0,0,5589,5587, - 1,0,0,0,5590,5591,5,138,0,0,5591,5592,5,189,0,0,5592,5615,3,316, - 158,0,5593,5616,3,94,47,0,5594,5595,7,15,0,0,5595,5596,5,77,0,0, - 5596,5616,5,78,0,0,5597,5600,5,133,0,0,5598,5599,5,45,0,0,5599,5601, - 3,818,409,0,5600,5598,1,0,0,0,5600,5601,1,0,0,0,5601,5602,1,0,0, - 0,5602,5616,3,142,71,0,5603,5604,5,191,0,0,5604,5606,5,45,0,0,5605, - 5607,3,422,211,0,5606,5605,1,0,0,0,5606,5607,1,0,0,0,5607,5608,1, - 0,0,0,5608,5610,3,818,409,0,5609,5611,3,96,48,0,5610,5609,1,0,0, - 0,5610,5611,1,0,0,0,5611,5616,1,0,0,0,5612,5613,5,372,0,0,5613,5614, - 5,45,0,0,5614,5616,3,818,409,0,5615,5593,1,0,0,0,5615,5594,1,0,0, - 0,5615,5597,1,0,0,0,5615,5603,1,0,0,0,5615,5612,1,0,0,0,5616,495, - 1,0,0,0,5617,5618,5,138,0,0,5618,5619,5,355,0,0,5619,5620,5,325, - 0,0,5620,5621,5,185,0,0,5621,5622,3,316,158,0,5622,5623,3,284,142, - 0,5623,497,1,0,0,0,5624,5625,5,138,0,0,5625,5626,5,355,0,0,5626, - 5627,5,325,0,0,5627,5628,5,163,0,0,5628,5629,3,316,158,0,5629,5630, - 7,72,0,0,5630,5631,5,257,0,0,5631,5632,5,62,0,0,5632,5633,3,784, - 392,0,5633,5634,5,105,0,0,5634,5635,3,314,157,0,5635,5666,1,0,0, - 0,5636,5637,5,138,0,0,5637,5638,5,355,0,0,5638,5639,5,325,0,0,5639, - 5640,5,163,0,0,5640,5641,3,316,158,0,5641,5642,5,138,0,0,5642,5645, - 5,257,0,0,5643,5644,5,62,0,0,5644,5646,3,784,392,0,5645,5643,1,0, - 0,0,5645,5646,1,0,0,0,5646,5647,1,0,0,0,5647,5648,5,311,0,0,5648, - 5649,3,316,158,0,5649,5650,5,105,0,0,5650,5651,3,316,158,0,5651, - 5666,1,0,0,0,5652,5653,5,138,0,0,5653,5654,5,355,0,0,5654,5655,5, - 325,0,0,5655,5656,5,163,0,0,5656,5657,3,316,158,0,5657,5658,5,191, - 0,0,5658,5660,5,257,0,0,5659,5661,3,422,211,0,5660,5659,1,0,0,0, - 5660,5661,1,0,0,0,5661,5662,1,0,0,0,5662,5663,5,62,0,0,5663,5664, - 3,784,392,0,5664,5666,1,0,0,0,5665,5624,1,0,0,0,5665,5636,1,0,0, - 0,5665,5652,1,0,0,0,5666,499,1,0,0,0,5667,5669,5,46,0,0,5668,5670, - 5,53,0,0,5669,5668,1,0,0,0,5669,5670,1,0,0,0,5670,5671,1,0,0,0,5671, - 5672,5,168,0,0,5672,5673,3,316,158,0,5673,5674,5,62,0,0,5674,5675, - 3,808,404,0,5675,5676,5,94,0,0,5676,5677,3,808,404,0,5677,5678,5, - 64,0,0,5678,5679,3,316,158,0,5679,501,1,0,0,0,5680,5682,5,158,0, - 0,5681,5683,3,514,257,0,5682,5681,1,0,0,0,5682,5683,1,0,0,0,5683, - 5688,1,0,0,0,5684,5686,3,774,387,0,5685,5687,3,170,85,0,5686,5685, - 1,0,0,0,5686,5687,1,0,0,0,5687,5689,1,0,0,0,5688,5684,1,0,0,0,5688, - 5689,1,0,0,0,5689,5706,1,0,0,0,5690,5691,5,158,0,0,5691,5692,5,2, - 0,0,5692,5697,3,514,257,0,5693,5694,5,6,0,0,5694,5696,3,514,257, - 0,5695,5693,1,0,0,0,5696,5699,1,0,0,0,5697,5695,1,0,0,0,5697,5698, - 1,0,0,0,5698,5700,1,0,0,0,5699,5697,1,0,0,0,5700,5701,5,3,0,0,5701, - 5703,3,774,387,0,5702,5704,3,170,85,0,5703,5702,1,0,0,0,5703,5704, - 1,0,0,0,5704,5706,1,0,0,0,5705,5680,1,0,0,0,5705,5690,1,0,0,0,5706, - 503,1,0,0,0,5707,5723,5,370,0,0,5708,5710,5,113,0,0,5709,5708,1, - 0,0,0,5709,5710,1,0,0,0,5710,5712,1,0,0,0,5711,5713,5,112,0,0,5712, - 5711,1,0,0,0,5712,5713,1,0,0,0,5713,5715,1,0,0,0,5714,5716,3,514, - 257,0,5715,5714,1,0,0,0,5715,5716,1,0,0,0,5716,5718,1,0,0,0,5717, - 5719,3,508,254,0,5718,5717,1,0,0,0,5718,5719,1,0,0,0,5719,5724,1, - 0,0,0,5720,5722,3,524,262,0,5721,5720,1,0,0,0,5721,5722,1,0,0,0, - 5722,5724,1,0,0,0,5723,5709,1,0,0,0,5723,5721,1,0,0,0,5724,5726, - 1,0,0,0,5725,5727,3,518,259,0,5726,5725,1,0,0,0,5726,5727,1,0,0, - 0,5727,505,1,0,0,0,5728,5743,3,508,254,0,5729,5731,3,514,257,0,5730, - 5729,1,0,0,0,5730,5731,1,0,0,0,5731,5744,1,0,0,0,5732,5733,5,2,0, - 0,5733,5738,3,512,256,0,5734,5735,5,6,0,0,5735,5737,3,512,256,0, - 5736,5734,1,0,0,0,5737,5740,1,0,0,0,5738,5736,1,0,0,0,5738,5739, - 1,0,0,0,5739,5741,1,0,0,0,5740,5738,1,0,0,0,5741,5742,5,3,0,0,5742, - 5744,1,0,0,0,5743,5730,1,0,0,0,5743,5732,1,0,0,0,5744,5746,1,0,0, - 0,5745,5747,3,518,259,0,5746,5745,1,0,0,0,5746,5747,1,0,0,0,5747, - 507,1,0,0,0,5748,5749,7,73,0,0,5749,509,1,0,0,0,5750,5753,3,822, - 411,0,5751,5753,3,508,254,0,5752,5750,1,0,0,0,5752,5751,1,0,0,0, - 5753,5756,1,0,0,0,5754,5757,3,54,27,0,5755,5757,3,202,101,0,5756, - 5754,1,0,0,0,5756,5755,1,0,0,0,5756,5757,1,0,0,0,5757,511,1,0,0, - 0,5758,5760,7,74,0,0,5759,5761,7,75,0,0,5760,5759,1,0,0,0,5760,5761, - 1,0,0,0,5761,5768,1,0,0,0,5762,5765,5,548,0,0,5763,5766,3,202,101, - 0,5764,5766,3,808,404,0,5765,5763,1,0,0,0,5765,5764,1,0,0,0,5766, - 5768,1,0,0,0,5767,5758,1,0,0,0,5767,5762,1,0,0,0,5768,513,1,0,0, - 0,5769,5771,5,128,0,0,5770,5772,7,75,0,0,5771,5770,1,0,0,0,5771, - 5772,1,0,0,0,5772,515,1,0,0,0,5773,5775,3,774,387,0,5774,5776,3, - 144,72,0,5775,5774,1,0,0,0,5775,5776,1,0,0,0,5776,517,1,0,0,0,5777, - 5782,3,516,258,0,5778,5779,5,6,0,0,5779,5781,3,516,258,0,5780,5778, - 1,0,0,0,5781,5784,1,0,0,0,5782,5780,1,0,0,0,5782,5783,1,0,0,0,5783, - 519,1,0,0,0,5784,5782,1,0,0,0,5785,5796,5,203,0,0,5786,5797,3,524, - 262,0,5787,5789,5,128,0,0,5788,5787,1,0,0,0,5788,5789,1,0,0,0,5789, - 5797,1,0,0,0,5790,5792,3,508,254,0,5791,5793,3,514,257,0,5792,5791, - 1,0,0,0,5792,5793,1,0,0,0,5793,5795,1,0,0,0,5794,5790,1,0,0,0,5794, - 5795,1,0,0,0,5795,5797,1,0,0,0,5796,5786,1,0,0,0,5796,5788,1,0,0, - 0,5796,5794,1,0,0,0,5797,5798,1,0,0,0,5798,5799,3,522,261,0,5799, - 521,1,0,0,0,5800,5810,3,560,280,0,5801,5810,3,538,269,0,5802,5810, - 3,552,276,0,5803,5810,3,548,274,0,5804,5810,3,558,279,0,5805,5810, - 3,186,93,0,5806,5810,3,192,96,0,5807,5810,3,194,97,0,5808,5810,3, - 532,266,0,5809,5800,1,0,0,0,5809,5801,1,0,0,0,5809,5802,1,0,0,0, - 5809,5803,1,0,0,0,5809,5804,1,0,0,0,5809,5805,1,0,0,0,5809,5806, - 1,0,0,0,5809,5807,1,0,0,0,5809,5808,1,0,0,0,5810,523,1,0,0,0,5811, - 5812,5,2,0,0,5812,5817,3,510,255,0,5813,5814,5,6,0,0,5814,5816,3, - 510,255,0,5815,5813,1,0,0,0,5816,5819,1,0,0,0,5817,5815,1,0,0,0, - 5817,5818,1,0,0,0,5818,5820,1,0,0,0,5819,5817,1,0,0,0,5820,5821, - 5,3,0,0,5821,525,1,0,0,0,5822,5823,5,290,0,0,5823,5825,3,818,409, - 0,5824,5826,3,528,264,0,5825,5824,1,0,0,0,5825,5826,1,0,0,0,5826, - 5827,1,0,0,0,5827,5828,5,36,0,0,5828,5829,3,530,265,0,5829,527,1, - 0,0,0,5830,5831,5,2,0,0,5831,5836,3,652,326,0,5832,5833,5,6,0,0, - 5833,5835,3,652,326,0,5834,5832,1,0,0,0,5835,5838,1,0,0,0,5836,5834, - 1,0,0,0,5836,5837,1,0,0,0,5837,5839,1,0,0,0,5838,5836,1,0,0,0,5839, - 5840,5,3,0,0,5840,529,1,0,0,0,5841,5846,3,560,280,0,5842,5846,3, - 538,269,0,5843,5846,3,552,276,0,5844,5846,3,548,274,0,5845,5841, - 1,0,0,0,5845,5842,1,0,0,0,5845,5843,1,0,0,0,5845,5844,1,0,0,0,5846, - 531,1,0,0,0,5847,5848,5,202,0,0,5848,5850,3,818,409,0,5849,5851, - 3,534,267,0,5850,5849,1,0,0,0,5850,5851,1,0,0,0,5851,5871,1,0,0, - 0,5852,5854,5,46,0,0,5853,5855,3,122,61,0,5854,5853,1,0,0,0,5854, - 5855,1,0,0,0,5855,5856,1,0,0,0,5856,5858,5,92,0,0,5857,5859,3,294, - 147,0,5858,5857,1,0,0,0,5858,5859,1,0,0,0,5859,5860,1,0,0,0,5860, - 5861,3,188,94,0,5861,5862,5,36,0,0,5862,5863,5,202,0,0,5863,5865, - 3,818,409,0,5864,5866,3,534,267,0,5865,5864,1,0,0,0,5865,5866,1, - 0,0,0,5866,5868,1,0,0,0,5867,5869,3,190,95,0,5868,5867,1,0,0,0,5868, - 5869,1,0,0,0,5869,5871,1,0,0,0,5870,5847,1,0,0,0,5870,5852,1,0,0, - 0,5871,533,1,0,0,0,5872,5873,5,2,0,0,5873,5874,3,730,365,0,5874, - 5875,5,3,0,0,5875,535,1,0,0,0,5876,5878,5,177,0,0,5877,5879,5,290, - 0,0,5878,5877,1,0,0,0,5878,5879,1,0,0,0,5879,5882,1,0,0,0,5880,5883, - 3,818,409,0,5881,5883,5,30,0,0,5882,5880,1,0,0,0,5882,5881,1,0,0, - 0,5883,537,1,0,0,0,5884,5886,3,572,286,0,5885,5884,1,0,0,0,5885, - 5886,1,0,0,0,5886,5887,1,0,0,0,5887,5888,5,241,0,0,5888,5889,5,71, - 0,0,5889,5892,3,774,387,0,5890,5891,5,36,0,0,5891,5893,3,818,409, - 0,5892,5890,1,0,0,0,5892,5893,1,0,0,0,5893,5894,1,0,0,0,5894,5916, - 3,540,270,0,5895,5896,5,80,0,0,5896,5904,5,464,0,0,5897,5899,3,360, - 180,0,5898,5900,3,638,319,0,5899,5898,1,0,0,0,5899,5900,1,0,0,0, - 5900,5905,1,0,0,0,5901,5902,5,80,0,0,5902,5903,5,45,0,0,5903,5905, - 3,818,409,0,5904,5897,1,0,0,0,5904,5901,1,0,0,0,5904,5905,1,0,0, - 0,5905,5906,1,0,0,0,5906,5914,5,57,0,0,5907,5908,5,369,0,0,5908, - 5909,5,333,0,0,5909,5911,3,554,277,0,5910,5912,3,638,319,0,5911, - 5910,1,0,0,0,5911,5912,1,0,0,0,5912,5915,1,0,0,0,5913,5915,5,270, - 0,0,5914,5907,1,0,0,0,5914,5913,1,0,0,0,5915,5917,1,0,0,0,5916,5895, - 1,0,0,0,5916,5917,1,0,0,0,5917,5919,1,0,0,0,5918,5920,3,546,273, - 0,5919,5918,1,0,0,0,5919,5920,1,0,0,0,5920,539,1,0,0,0,5921,5922, - 5,2,0,0,5922,5923,3,542,271,0,5923,5924,5,3,0,0,5924,5926,1,0,0, - 0,5925,5921,1,0,0,0,5925,5926,1,0,0,0,5926,5930,1,0,0,0,5927,5928, - 5,463,0,0,5928,5929,7,76,0,0,5929,5931,5,450,0,0,5930,5927,1,0,0, - 0,5930,5931,1,0,0,0,5931,5934,1,0,0,0,5932,5935,3,910,455,0,5933, - 5935,3,560,280,0,5934,5932,1,0,0,0,5934,5933,1,0,0,0,5935,541,1, - 0,0,0,5936,5941,3,544,272,0,5937,5938,5,6,0,0,5938,5940,3,544,272, - 0,5939,5937,1,0,0,0,5940,5943,1,0,0,0,5941,5939,1,0,0,0,5941,5942, - 1,0,0,0,5942,543,1,0,0,0,5943,5941,1,0,0,0,5944,5945,3,800,400,0, - 5945,5946,3,754,377,0,5946,545,1,0,0,0,5947,5948,5,87,0,0,5948,5949, - 3,756,378,0,5949,547,1,0,0,0,5950,5952,3,572,286,0,5951,5950,1,0, - 0,0,5951,5952,1,0,0,0,5952,5953,1,0,0,0,5953,5954,5,182,0,0,5954, - 5955,5,64,0,0,5955,5958,3,630,315,0,5956,5957,5,100,0,0,5957,5959, - 3,612,306,0,5958,5956,1,0,0,0,5958,5959,1,0,0,0,5959,5961,1,0,0, - 0,5960,5962,3,640,320,0,5961,5960,1,0,0,0,5961,5962,1,0,0,0,5962, - 5964,1,0,0,0,5963,5965,3,546,273,0,5964,5963,1,0,0,0,5964,5965,1, - 0,0,0,5965,549,1,0,0,0,5966,5968,5,256,0,0,5967,5969,5,92,0,0,5968, - 5967,1,0,0,0,5968,5969,1,0,0,0,5969,5970,1,0,0,0,5970,5985,3,628, - 314,0,5971,5982,5,68,0,0,5972,5973,7,77,0,0,5973,5983,7,78,0,0,5974, - 5979,5,334,0,0,5975,5976,5,369,0,0,5976,5980,5,201,0,0,5977,5978, - 5,414,0,0,5978,5980,5,201,0,0,5979,5975,1,0,0,0,5979,5977,1,0,0, - 0,5979,5980,1,0,0,0,5980,5983,1,0,0,0,5981,5983,5,201,0,0,5982,5972, - 1,0,0,0,5982,5974,1,0,0,0,5982,5981,1,0,0,0,5983,5984,1,0,0,0,5984, - 5986,5,263,0,0,5985,5971,1,0,0,0,5985,5986,1,0,0,0,5986,5988,1,0, - 0,0,5987,5989,5,272,0,0,5988,5987,1,0,0,0,5988,5989,1,0,0,0,5989, - 551,1,0,0,0,5990,5992,3,572,286,0,5991,5990,1,0,0,0,5991,5992,1, - 0,0,0,5992,5993,1,0,0,0,5993,5994,5,369,0,0,5994,5995,3,630,315, - 0,5995,5996,5,333,0,0,5996,5998,3,554,277,0,5997,5999,3,610,305, - 0,5998,5997,1,0,0,0,5998,5999,1,0,0,0,5999,6001,1,0,0,0,6000,6002, - 3,640,320,0,6001,6000,1,0,0,0,6001,6002,1,0,0,0,6002,6004,1,0,0, - 0,6003,6005,3,546,273,0,6004,6003,1,0,0,0,6004,6005,1,0,0,0,6005, - 553,1,0,0,0,6006,6011,3,556,278,0,6007,6008,5,6,0,0,6008,6010,3, - 556,278,0,6009,6007,1,0,0,0,6010,6013,1,0,0,0,6011,6009,1,0,0,0, - 6011,6012,1,0,0,0,6012,555,1,0,0,0,6013,6011,1,0,0,0,6014,6015,3, - 544,272,0,6015,6016,5,10,0,0,6016,6017,3,674,337,0,6017,6033,1,0, - 0,0,6018,6019,5,2,0,0,6019,6020,3,542,271,0,6020,6021,5,3,0,0,6021, - 6030,5,10,0,0,6022,6024,5,414,0,0,6023,6022,1,0,0,0,6023,6024,1, - 0,0,0,6024,6025,1,0,0,0,6025,6031,3,674,337,0,6026,6027,5,2,0,0, - 6027,6028,3,566,283,0,6028,6029,5,3,0,0,6029,6031,1,0,0,0,6030,6023, - 1,0,0,0,6030,6026,1,0,0,0,6031,6033,1,0,0,0,6032,6014,1,0,0,0,6032, - 6018,1,0,0,0,6033,557,1,0,0,0,6034,6035,5,178,0,0,6035,6044,3,818, - 409,0,6036,6038,5,269,0,0,6037,6036,1,0,0,0,6037,6038,1,0,0,0,6038, - 6039,1,0,0,0,6039,6043,5,324,0,0,6040,6043,5,107,0,0,6041,6043,5, - 240,0,0,6042,6037,1,0,0,0,6042,6040,1,0,0,0,6042,6041,1,0,0,0,6043, - 6046,1,0,0,0,6044,6042,1,0,0,0,6044,6045,1,0,0,0,6045,6047,1,0,0, - 0,6046,6044,1,0,0,0,6047,6050,5,172,0,0,6048,6049,7,26,0,0,6049, - 6051,5,217,0,0,6050,6048,1,0,0,0,6050,6051,1,0,0,0,6051,6052,1,0, - 0,0,6052,6053,5,62,0,0,6053,6054,3,560,280,0,6054,559,1,0,0,0,6055, - 6058,3,564,282,0,6056,6058,3,562,281,0,6057,6055,1,0,0,0,6057,6056, - 1,0,0,0,6058,561,1,0,0,0,6059,6062,5,2,0,0,6060,6063,3,564,282,0, - 6061,6063,3,562,281,0,6062,6060,1,0,0,0,6062,6061,1,0,0,0,6063,6064, - 1,0,0,0,6064,6065,5,3,0,0,6065,563,1,0,0,0,6066,6068,3,572,286,0, - 6067,6066,1,0,0,0,6067,6068,1,0,0,0,6068,6069,1,0,0,0,6069,6071, - 3,566,283,0,6070,6072,3,586,293,0,6071,6070,1,0,0,0,6071,6072,1, - 0,0,0,6072,6081,1,0,0,0,6073,6075,3,606,303,0,6074,6076,3,590,295, - 0,6075,6074,1,0,0,0,6075,6076,1,0,0,0,6076,6082,1,0,0,0,6077,6079, - 3,590,295,0,6078,6080,3,606,303,0,6079,6078,1,0,0,0,6079,6080,1, - 0,0,0,6080,6082,1,0,0,0,6081,6073,1,0,0,0,6081,6077,1,0,0,0,6081, - 6082,1,0,0,0,6082,565,1,0,0,0,6083,6086,3,568,284,0,6084,6086,3, - 562,281,0,6085,6083,1,0,0,0,6085,6084,1,0,0,0,6086,567,1,0,0,0,6087, - 6097,5,88,0,0,6088,6090,5,30,0,0,6089,6088,1,0,0,0,6089,6090,1,0, - 0,0,6090,6092,1,0,0,0,6091,6093,3,580,290,0,6092,6091,1,0,0,0,6092, - 6093,1,0,0,0,6093,6098,1,0,0,0,6094,6096,3,584,292,0,6095,6094,1, - 0,0,0,6095,6096,1,0,0,0,6096,6098,1,0,0,0,6097,6089,1,0,0,0,6097, - 6095,1,0,0,0,6098,6099,1,0,0,0,6099,6110,3,930,465,0,6100,6110,3, - 608,304,0,6101,6102,5,92,0,0,6102,6110,3,624,312,0,6103,6104,3,562, - 281,0,6104,6107,3,570,285,0,6105,6108,3,568,284,0,6106,6108,3,562, - 281,0,6107,6105,1,0,0,0,6107,6106,1,0,0,0,6108,6110,1,0,0,0,6109, - 6087,1,0,0,0,6109,6100,1,0,0,0,6109,6101,1,0,0,0,6109,6103,1,0,0, - 0,6110,6118,1,0,0,0,6111,6114,3,570,285,0,6112,6115,3,568,284,0, - 6113,6115,3,562,281,0,6114,6112,1,0,0,0,6114,6113,1,0,0,0,6115,6117, - 1,0,0,0,6116,6111,1,0,0,0,6117,6120,1,0,0,0,6118,6116,1,0,0,0,6118, - 6119,1,0,0,0,6119,569,1,0,0,0,6120,6118,1,0,0,0,6121,6123,7,79,0, - 0,6122,6124,7,80,0,0,6123,6122,1,0,0,0,6123,6124,1,0,0,0,6124,571, - 1,0,0,0,6125,6127,5,105,0,0,6126,6128,5,303,0,0,6127,6126,1,0,0, - 0,6127,6128,1,0,0,0,6128,6129,1,0,0,0,6129,6134,3,574,287,0,6130, - 6131,5,6,0,0,6131,6133,3,574,287,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,573,1,0,0,0,6136, - 6134,1,0,0,0,6137,6139,3,818,409,0,6138,6140,3,144,72,0,6139,6138, - 1,0,0,0,6139,6140,1,0,0,0,6140,6141,1,0,0,0,6141,6146,5,36,0,0,6142, - 6144,5,77,0,0,6143,6142,1,0,0,0,6143,6144,1,0,0,0,6144,6145,1,0, - 0,0,6145,6147,5,259,0,0,6146,6143,1,0,0,0,6146,6147,1,0,0,0,6147, - 6148,1,0,0,0,6148,6149,5,2,0,0,6149,6150,3,530,265,0,6150,6152,5, - 3,0,0,6151,6153,3,576,288,0,6152,6151,1,0,0,0,6152,6153,1,0,0,0, - 6153,6155,1,0,0,0,6154,6156,3,578,289,0,6155,6154,1,0,0,0,6155,6156, - 1,0,0,0,6156,575,1,0,0,0,6157,6158,5,325,0,0,6158,6159,7,81,0,0, - 6159,6160,5,207,0,0,6160,6161,5,147,0,0,6161,6162,3,148,74,0,6162, - 6163,5,333,0,0,6163,6164,3,800,400,0,6164,577,1,0,0,0,6165,6166, - 5,173,0,0,6166,6167,3,148,74,0,6167,6168,5,333,0,0,6168,6174,3,800, - 400,0,6169,6170,5,94,0,0,6170,6171,3,818,409,0,6171,6172,5,53,0, - 0,6172,6173,3,818,409,0,6173,6175,1,0,0,0,6174,6169,1,0,0,0,6174, - 6175,1,0,0,0,6175,6176,1,0,0,0,6176,6177,5,100,0,0,6177,6178,3,800, - 400,0,6178,579,1,0,0,0,6179,6185,5,71,0,0,6180,6182,5,346,0,0,6181, - 6180,1,0,0,0,6181,6182,1,0,0,0,6182,6183,1,0,0,0,6183,6186,3,582, - 291,0,6184,6186,3,730,365,0,6185,6181,1,0,0,0,6185,6184,1,0,0,0, - 6186,581,1,0,0,0,6187,6189,7,20,0,0,6188,6187,1,0,0,0,6188,6189, - 1,0,0,0,6189,6190,1,0,0,0,6190,6192,7,21,0,0,6191,6193,5,92,0,0, - 6192,6191,1,0,0,0,6192,6193,1,0,0,0,6193,6194,1,0,0,0,6194,6203, - 3,772,386,0,6195,6197,5,367,0,0,6196,6195,1,0,0,0,6196,6197,1,0, - 0,0,6197,6199,1,0,0,0,6198,6200,5,92,0,0,6199,6198,1,0,0,0,6199, - 6200,1,0,0,0,6200,6201,1,0,0,0,6201,6203,3,772,386,0,6202,6188,1, - 0,0,0,6202,6196,1,0,0,0,6203,583,1,0,0,0,6204,6207,5,56,0,0,6205, - 6206,5,80,0,0,6206,6208,3,534,267,0,6207,6205,1,0,0,0,6207,6208, - 1,0,0,0,6208,585,1,0,0,0,6209,6210,5,83,0,0,6210,6211,5,147,0,0, - 6211,6216,3,588,294,0,6212,6213,5,6,0,0,6213,6215,3,588,294,0,6214, - 6212,1,0,0,0,6215,6218,1,0,0,0,6216,6214,1,0,0,0,6216,6217,1,0,0, - 0,6217,587,1,0,0,0,6218,6216,1,0,0,0,6219,6223,3,734,367,0,6220, - 6221,5,100,0,0,6221,6224,3,726,363,0,6222,6224,7,55,0,0,6223,6220, - 1,0,0,0,6223,6222,1,0,0,0,6223,6224,1,0,0,0,6224,6227,1,0,0,0,6225, - 6226,5,273,0,0,6226,6228,7,56,0,0,6227,6225,1,0,0,0,6227,6228,1, - 0,0,0,6228,589,1,0,0,0,6229,6231,3,596,298,0,6230,6232,3,594,297, - 0,6231,6230,1,0,0,0,6231,6232,1,0,0,0,6232,6241,1,0,0,0,6233,6236, - 3,592,296,0,6234,6236,3,594,297,0,6235,6233,1,0,0,0,6235,6234,1, - 0,0,0,6236,6238,1,0,0,0,6237,6239,3,596,298,0,6238,6237,1,0,0,0, - 6238,6239,1,0,0,0,6239,6241,1,0,0,0,6240,6229,1,0,0,0,6240,6235, - 1,0,0,0,6241,591,1,0,0,0,6242,6245,5,74,0,0,6243,6246,3,674,337, - 0,6244,6246,5,30,0,0,6245,6243,1,0,0,0,6245,6244,1,0,0,0,6246,6249, - 1,0,0,0,6247,6248,5,6,0,0,6248,6250,3,674,337,0,6249,6247,1,0,0, - 0,6249,6250,1,0,0,0,6250,593,1,0,0,0,6251,6252,5,61,0,0,6252,6254, - 7,82,0,0,6253,6255,3,598,299,0,6254,6253,1,0,0,0,6254,6255,1,0,0, - 0,6255,6256,1,0,0,0,6256,6260,7,83,0,0,6257,6261,5,81,0,0,6258,6259, - 5,105,0,0,6259,6261,5,467,0,0,6260,6257,1,0,0,0,6260,6258,1,0,0, - 0,6261,595,1,0,0,0,6262,6267,5,79,0,0,6263,6264,3,598,299,0,6264, - 6265,7,83,0,0,6265,6268,1,0,0,0,6266,6268,3,674,337,0,6267,6263, - 1,0,0,0,6267,6266,1,0,0,0,6268,597,1,0,0,0,6269,6270,7,29,0,0,6270, - 6273,7,84,0,0,6271,6273,3,682,341,0,6272,6269,1,0,0,0,6272,6271, - 1,0,0,0,6273,599,1,0,0,0,6274,6275,5,66,0,0,6275,6277,5,147,0,0, - 6276,6278,7,80,0,0,6277,6276,1,0,0,0,6277,6278,1,0,0,0,6278,6279, - 1,0,0,0,6279,6280,3,602,301,0,6280,601,1,0,0,0,6281,6286,3,604,302, - 0,6282,6283,5,6,0,0,6283,6285,3,604,302,0,6284,6282,1,0,0,0,6285, - 6288,1,0,0,0,6286,6284,1,0,0,0,6286,6287,1,0,0,0,6287,603,1,0,0, - 0,6288,6286,1,0,0,0,6289,6313,3,734,367,0,6290,6291,5,2,0,0,6291, - 6313,5,3,0,0,6292,6294,7,85,0,0,6293,6292,1,0,0,0,6293,6294,1,0, - 0,0,6294,6295,1,0,0,0,6295,6296,5,2,0,0,6296,6301,3,734,367,0,6297, - 6298,5,6,0,0,6298,6300,3,734,367,0,6299,6297,1,0,0,0,6300,6303,1, - 0,0,0,6301,6299,1,0,0,0,6301,6302,1,0,0,0,6302,6304,1,0,0,0,6303, - 6301,1,0,0,0,6304,6305,5,3,0,0,6305,6313,1,0,0,0,6306,6307,5,470, - 0,0,6307,6308,5,471,0,0,6308,6309,5,2,0,0,6309,6310,3,602,301,0, - 6310,6311,5,3,0,0,6311,6313,1,0,0,0,6312,6289,1,0,0,0,6312,6290, - 1,0,0,0,6312,6293,1,0,0,0,6312,6306,1,0,0,0,6313,605,1,0,0,0,6314, - 6324,5,62,0,0,6315,6316,5,269,0,0,6316,6318,5,245,0,0,6317,6315, - 1,0,0,0,6317,6318,1,0,0,0,6318,6319,1,0,0,0,6319,6325,5,369,0,0, - 6320,6322,5,245,0,0,6321,6320,1,0,0,0,6321,6322,1,0,0,0,6322,6323, - 1,0,0,0,6323,6325,5,334,0,0,6324,6317,1,0,0,0,6324,6321,1,0,0,0, - 6325,6328,1,0,0,0,6326,6327,5,275,0,0,6327,6329,3,760,380,0,6328, - 6326,1,0,0,0,6328,6329,1,0,0,0,6329,6333,1,0,0,0,6330,6334,5,272, - 0,0,6331,6332,5,465,0,0,6332,6334,5,466,0,0,6333,6330,1,0,0,0,6333, - 6331,1,0,0,0,6333,6334,1,0,0,0,6334,6336,1,0,0,0,6335,6314,1,0,0, - 0,6336,6337,1,0,0,0,6337,6335,1,0,0,0,6337,6338,1,0,0,0,6338,6343, - 1,0,0,0,6339,6340,5,62,0,0,6340,6341,5,300,0,0,6341,6343,5,81,0, - 0,6342,6335,1,0,0,0,6342,6339,1,0,0,0,6343,607,1,0,0,0,6344,6345, - 5,422,0,0,6345,6350,3,534,267,0,6346,6347,5,6,0,0,6347,6349,3,534, - 267,0,6348,6346,1,0,0,0,6349,6352,1,0,0,0,6350,6348,1,0,0,0,6350, - 6351,1,0,0,0,6351,609,1,0,0,0,6352,6350,1,0,0,0,6353,6354,5,64,0, - 0,6354,6355,3,612,306,0,6355,611,1,0,0,0,6356,6361,3,614,307,0,6357, - 6358,5,6,0,0,6358,6360,3,614,307,0,6359,6357,1,0,0,0,6360,6363,1, - 0,0,0,6361,6359,1,0,0,0,6361,6362,1,0,0,0,6362,613,1,0,0,0,6363, - 6361,1,0,0,0,6364,6379,3,624,312,0,6365,6367,5,81,0,0,6366,6365, - 1,0,0,0,6366,6367,1,0,0,0,6367,6368,1,0,0,0,6368,6370,3,778,389, - 0,6369,6371,5,9,0,0,6370,6369,1,0,0,0,6370,6371,1,0,0,0,6371,6373, - 1,0,0,0,6372,6374,3,148,74,0,6373,6372,1,0,0,0,6373,6374,1,0,0,0, - 6374,6376,1,0,0,0,6375,6377,3,638,319,0,6376,6375,1,0,0,0,6376,6377, - 1,0,0,0,6377,6379,1,0,0,0,6378,6364,1,0,0,0,6378,6366,1,0,0,0,6379, - 6381,1,0,0,0,6380,6382,3,616,308,0,6381,6380,1,0,0,0,6381,6382,1, - 0,0,0,6382,6384,1,0,0,0,6383,6385,3,632,316,0,6384,6383,1,0,0,0, - 6384,6385,1,0,0,0,6385,6428,1,0,0,0,6386,6388,5,72,0,0,6387,6386, - 1,0,0,0,6387,6388,1,0,0,0,6388,6401,1,0,0,0,6389,6391,3,646,323, - 0,6390,6392,3,616,308,0,6391,6390,1,0,0,0,6391,6392,1,0,0,0,6392, - 6402,1,0,0,0,6393,6395,3,634,317,0,6394,6396,3,618,309,0,6395,6394, - 1,0,0,0,6395,6396,1,0,0,0,6396,6402,1,0,0,0,6397,6399,3,562,281, - 0,6398,6400,3,616,308,0,6399,6398,1,0,0,0,6399,6400,1,0,0,0,6400, - 6402,1,0,0,0,6401,6389,1,0,0,0,6401,6393,1,0,0,0,6401,6397,1,0,0, - 0,6402,6428,1,0,0,0,6403,6404,5,2,0,0,6404,6421,3,614,307,0,6405, - 6406,5,110,0,0,6406,6407,5,118,0,0,6407,6422,3,614,307,0,6408,6410, - 5,121,0,0,6409,6411,3,620,310,0,6410,6409,1,0,0,0,6410,6411,1,0, - 0,0,6411,6412,1,0,0,0,6412,6413,5,118,0,0,6413,6422,3,614,307,0, - 6414,6416,3,620,310,0,6415,6414,1,0,0,0,6415,6416,1,0,0,0,6416,6417, - 1,0,0,0,6417,6418,5,118,0,0,6418,6419,3,614,307,0,6419,6420,3,622, - 311,0,6420,6422,1,0,0,0,6421,6405,1,0,0,0,6421,6408,1,0,0,0,6421, - 6415,1,0,0,0,6421,6422,1,0,0,0,6422,6423,1,0,0,0,6423,6425,5,3,0, - 0,6424,6426,3,616,308,0,6425,6424,1,0,0,0,6425,6426,1,0,0,0,6426, - 6428,1,0,0,0,6427,6378,1,0,0,0,6427,6387,1,0,0,0,6427,6403,1,0,0, - 0,6428,6447,1,0,0,0,6429,6430,5,110,0,0,6430,6431,5,118,0,0,6431, - 6446,3,614,307,0,6432,6434,5,121,0,0,6433,6435,3,620,310,0,6434, - 6433,1,0,0,0,6434,6435,1,0,0,0,6435,6436,1,0,0,0,6436,6437,5,118, - 0,0,6437,6446,3,614,307,0,6438,6440,3,620,310,0,6439,6438,1,0,0, - 0,6439,6440,1,0,0,0,6440,6441,1,0,0,0,6441,6442,5,118,0,0,6442,6443, - 3,614,307,0,6443,6444,3,622,311,0,6444,6446,1,0,0,0,6445,6429,1, - 0,0,0,6445,6432,1,0,0,0,6445,6439,1,0,0,0,6446,6449,1,0,0,0,6447, - 6445,1,0,0,0,6447,6448,1,0,0,0,6448,615,1,0,0,0,6449,6447,1,0,0, - 0,6450,6452,5,36,0,0,6451,6450,1,0,0,0,6451,6452,1,0,0,0,6452,6453, - 1,0,0,0,6453,6458,3,818,409,0,6454,6455,5,2,0,0,6455,6456,3,784, - 392,0,6456,6457,5,3,0,0,6457,6459,1,0,0,0,6458,6454,1,0,0,0,6458, - 6459,1,0,0,0,6459,617,1,0,0,0,6460,6473,3,616,308,0,6461,6463,5, - 36,0,0,6462,6464,3,818,409,0,6463,6462,1,0,0,0,6463,6464,1,0,0,0, - 6464,6467,1,0,0,0,6465,6467,3,818,409,0,6466,6461,1,0,0,0,6466,6465, - 1,0,0,0,6467,6468,1,0,0,0,6468,6469,5,2,0,0,6469,6470,3,642,321, - 0,6470,6471,5,3,0,0,6471,6473,1,0,0,0,6472,6460,1,0,0,0,6472,6466, - 1,0,0,0,6473,619,1,0,0,0,6474,6476,7,86,0,0,6475,6477,5,123,0,0, - 6476,6475,1,0,0,0,6476,6477,1,0,0,0,6477,621,1,0,0,0,6478,6479,5, - 100,0,0,6479,6483,3,144,72,0,6480,6481,5,80,0,0,6481,6483,3,674, - 337,0,6482,6478,1,0,0,0,6482,6480,1,0,0,0,6483,623,1,0,0,0,6484, - 6500,3,322,161,0,6485,6491,5,81,0,0,6486,6492,3,774,387,0,6487,6488, - 5,2,0,0,6488,6489,3,774,387,0,6489,6490,5,3,0,0,6490,6492,1,0,0, - 0,6491,6486,1,0,0,0,6491,6487,1,0,0,0,6492,6500,1,0,0,0,6493,6494, - 5,68,0,0,6494,6497,5,323,0,0,6495,6498,3,790,395,0,6496,6498,5,111, - 0,0,6497,6495,1,0,0,0,6497,6496,1,0,0,0,6498,6500,1,0,0,0,6499,6484, - 1,0,0,0,6499,6485,1,0,0,0,6499,6493,1,0,0,0,6500,625,1,0,0,0,6501, - 6502,5,92,0,0,6502,6504,3,322,161,0,6503,6505,3,144,72,0,6504,6503, - 1,0,0,0,6504,6505,1,0,0,0,6505,6507,1,0,0,0,6506,6508,3,638,319, - 0,6507,6506,1,0,0,0,6507,6508,1,0,0,0,6508,6526,1,0,0,0,6509,6510, - 5,92,0,0,6510,6516,5,81,0,0,6511,6517,3,774,387,0,6512,6513,5,2, - 0,0,6513,6514,3,774,387,0,6514,6515,5,3,0,0,6515,6517,1,0,0,0,6516, - 6511,1,0,0,0,6516,6512,1,0,0,0,6517,6526,1,0,0,0,6518,6519,5,350, - 0,0,6519,6520,5,68,0,0,6520,6523,5,323,0,0,6521,6524,3,790,395,0, - 6522,6524,5,111,0,0,6523,6521,1,0,0,0,6523,6522,1,0,0,0,6524,6526, - 1,0,0,0,6525,6501,1,0,0,0,6525,6509,1,0,0,0,6525,6518,1,0,0,0,6526, - 627,1,0,0,0,6527,6532,3,624,312,0,6528,6529,5,6,0,0,6529,6531,3, - 624,312,0,6530,6528,1,0,0,0,6531,6534,1,0,0,0,6532,6530,1,0,0,0, - 6532,6533,1,0,0,0,6533,629,1,0,0,0,6534,6532,1,0,0,0,6535,6540,3, - 624,312,0,6536,6538,5,36,0,0,6537,6536,1,0,0,0,6537,6538,1,0,0,0, - 6538,6539,1,0,0,0,6539,6541,3,818,409,0,6540,6537,1,0,0,0,6540,6541, - 1,0,0,0,6541,631,1,0,0,0,6542,6543,5,472,0,0,6543,6544,3,806,403, - 0,6544,6550,3,534,267,0,6545,6546,5,310,0,0,6546,6547,5,2,0,0,6547, - 6548,3,674,337,0,6548,6549,5,3,0,0,6549,6551,1,0,0,0,6550,6545,1, - 0,0,0,6550,6551,1,0,0,0,6551,633,1,0,0,0,6552,6567,3,688,344,0,6553, - 6554,5,320,0,0,6554,6555,5,64,0,0,6555,6556,5,2,0,0,6556,6561,3, - 636,318,0,6557,6558,5,6,0,0,6558,6560,3,636,318,0,6559,6557,1,0, - 0,0,6560,6563,1,0,0,0,6561,6559,1,0,0,0,6561,6562,1,0,0,0,6562,6564, - 1,0,0,0,6563,6561,1,0,0,0,6564,6565,5,3,0,0,6565,6567,1,0,0,0,6566, - 6552,1,0,0,0,6566,6553,1,0,0,0,6567,6570,1,0,0,0,6568,6569,5,105, - 0,0,6569,6571,5,473,0,0,6570,6568,1,0,0,0,6570,6571,1,0,0,0,6571, - 635,1,0,0,0,6572,6578,3,688,344,0,6573,6574,5,36,0,0,6574,6575,5, - 2,0,0,6575,6576,3,642,321,0,6576,6577,5,3,0,0,6577,6579,1,0,0,0, - 6578,6573,1,0,0,0,6578,6579,1,0,0,0,6579,637,1,0,0,0,6580,6581,5, - 103,0,0,6581,6582,3,734,367,0,6582,639,1,0,0,0,6583,6588,5,103,0, - 0,6584,6585,5,434,0,0,6585,6586,5,275,0,0,6586,6589,3,818,409,0, - 6587,6589,3,674,337,0,6588,6584,1,0,0,0,6588,6587,1,0,0,0,6589,641, - 1,0,0,0,6590,6595,3,644,322,0,6591,6592,5,6,0,0,6592,6594,3,644, - 322,0,6593,6591,1,0,0,0,6594,6597,1,0,0,0,6595,6593,1,0,0,0,6595, - 6596,1,0,0,0,6596,643,1,0,0,0,6597,6595,1,0,0,0,6598,6599,3,818, - 409,0,6599,6601,3,652,326,0,6600,6602,3,98,49,0,6601,6600,1,0,0, - 0,6601,6602,1,0,0,0,6602,645,1,0,0,0,6603,6604,5,474,0,0,6604,6618, - 5,2,0,0,6605,6606,5,476,0,0,6606,6607,5,2,0,0,6607,6612,3,650,325, - 0,6608,6609,5,6,0,0,6609,6611,3,650,325,0,6610,6608,1,0,0,0,6611, - 6614,1,0,0,0,6612,6610,1,0,0,0,6612,6613,1,0,0,0,6613,6615,1,0,0, - 0,6614,6612,1,0,0,0,6615,6616,5,3,0,0,6616,6617,5,6,0,0,6617,6619, - 1,0,0,0,6618,6605,1,0,0,0,6618,6619,1,0,0,0,6619,6620,1,0,0,0,6620, - 6621,3,682,341,0,6621,6622,3,698,349,0,6622,6623,5,475,0,0,6623, - 6628,3,648,324,0,6624,6625,5,6,0,0,6625,6627,3,648,324,0,6626,6624, - 1,0,0,0,6627,6630,1,0,0,0,6628,6626,1,0,0,0,6628,6629,1,0,0,0,6629, - 6631,1,0,0,0,6630,6628,1,0,0,0,6631,6632,5,3,0,0,6632,647,1,0,0, - 0,6633,6652,3,818,409,0,6634,6648,3,652,326,0,6635,6638,5,53,0,0, - 6636,6638,3,826,413,0,6637,6635,1,0,0,0,6637,6636,1,0,0,0,6638,6639, - 1,0,0,0,6639,6645,3,674,337,0,6640,6642,5,77,0,0,6641,6640,1,0,0, - 0,6641,6642,1,0,0,0,6642,6643,1,0,0,0,6643,6645,5,78,0,0,6644,6637, - 1,0,0,0,6644,6641,1,0,0,0,6645,6646,1,0,0,0,6646,6644,1,0,0,0,6646, - 6647,1,0,0,0,6647,6649,1,0,0,0,6648,6644,1,0,0,0,6648,6649,1,0,0, - 0,6649,6653,1,0,0,0,6650,6651,5,62,0,0,6651,6653,5,473,0,0,6652, - 6634,1,0,0,0,6652,6650,1,0,0,0,6653,649,1,0,0,0,6654,6655,3,682, - 341,0,6655,6656,5,36,0,0,6656,6657,3,824,412,0,6657,6661,1,0,0,0, - 6658,6659,5,53,0,0,6659,6661,3,682,341,0,6660,6654,1,0,0,0,6660, - 6658,1,0,0,0,6661,651,1,0,0,0,6662,6664,5,415,0,0,6663,6662,1,0, - 0,0,6663,6664,1,0,0,0,6664,6665,1,0,0,0,6665,6682,3,654,327,0,6666, - 6668,5,4,0,0,6667,6669,5,571,0,0,6668,6667,1,0,0,0,6668,6669,1,0, - 0,0,6669,6670,1,0,0,0,6670,6672,5,5,0,0,6671,6666,1,0,0,0,6672,6675, - 1,0,0,0,6673,6671,1,0,0,0,6673,6674,1,0,0,0,6674,6683,1,0,0,0,6675, - 6673,1,0,0,0,6676,6680,5,35,0,0,6677,6678,5,4,0,0,6678,6679,5,571, - 0,0,6679,6681,5,5,0,0,6680,6677,1,0,0,0,6680,6681,1,0,0,0,6681,6683, - 1,0,0,0,6682,6673,1,0,0,0,6682,6676,1,0,0,0,6683,6689,1,0,0,0,6684, - 6685,3,780,390,0,6685,6686,5,27,0,0,6686,6687,7,87,0,0,6687,6689, - 1,0,0,0,6688,6663,1,0,0,0,6688,6684,1,0,0,0,6689,653,1,0,0,0,6690, - 6692,3,820,410,0,6691,6693,3,318,159,0,6692,6691,1,0,0,0,6692,6693, - 1,0,0,0,6693,6695,1,0,0,0,6694,6696,3,534,267,0,6695,6694,1,0,0, - 0,6695,6696,1,0,0,0,6696,6706,1,0,0,0,6697,6706,3,656,328,0,6698, - 6703,5,403,0,0,6699,6701,3,668,334,0,6700,6699,1,0,0,0,6700,6701, - 1,0,0,0,6701,6704,1,0,0,0,6702,6704,3,660,330,0,6703,6700,1,0,0, - 0,6703,6702,1,0,0,0,6704,6706,1,0,0,0,6705,6690,1,0,0,0,6705,6697, - 1,0,0,0,6705,6698,1,0,0,0,6706,655,1,0,0,0,6707,6712,3,658,329,0, - 6708,6712,3,662,331,0,6709,6712,3,664,332,0,6710,6712,3,666,333, - 0,6711,6707,1,0,0,0,6711,6708,1,0,0,0,6711,6709,1,0,0,0,6711,6710, - 1,0,0,0,6712,657,1,0,0,0,6713,6730,5,401,0,0,6714,6730,5,402,0,0, - 6715,6730,5,416,0,0,6716,6730,5,388,0,0,6717,6730,5,413,0,0,6718, - 6720,5,398,0,0,6719,6721,3,660,330,0,6720,6719,1,0,0,0,6720,6721, - 1,0,0,0,6721,6730,1,0,0,0,6722,6723,5,190,0,0,6723,6730,5,412,0, - 0,6724,6726,7,88,0,0,6725,6727,3,534,267,0,6726,6725,1,0,0,0,6726, - 6727,1,0,0,0,6727,6730,1,0,0,0,6728,6730,5,390,0,0,6729,6713,1,0, - 0,0,6729,6714,1,0,0,0,6729,6715,1,0,0,0,6729,6716,1,0,0,0,6729,6717, - 1,0,0,0,6729,6718,1,0,0,0,6729,6722,1,0,0,0,6729,6724,1,0,0,0,6729, - 6728,1,0,0,0,6730,659,1,0,0,0,6731,6732,5,2,0,0,6732,6733,5,571, - 0,0,6733,6734,5,3,0,0,6734,661,1,0,0,0,6735,6737,5,389,0,0,6736, - 6738,5,374,0,0,6737,6736,1,0,0,0,6737,6738,1,0,0,0,6738,6740,1,0, - 0,0,6739,6741,3,534,267,0,6740,6739,1,0,0,0,6740,6741,1,0,0,0,6741, - 663,1,0,0,0,6742,6744,7,89,0,0,6743,6745,5,374,0,0,6744,6743,1,0, - 0,0,6744,6745,1,0,0,0,6745,6753,1,0,0,0,6746,6753,5,423,0,0,6747, - 6748,5,405,0,0,6748,6750,7,90,0,0,6749,6751,5,374,0,0,6750,6749, - 1,0,0,0,6750,6751,1,0,0,0,6751,6753,1,0,0,0,6752,6742,1,0,0,0,6752, - 6746,1,0,0,0,6752,6747,1,0,0,0,6753,6755,1,0,0,0,6754,6756,3,660, - 330,0,6755,6754,1,0,0,0,6755,6756,1,0,0,0,6756,665,1,0,0,0,6757, - 6759,7,91,0,0,6758,6760,3,660,330,0,6759,6758,1,0,0,0,6759,6760, - 1,0,0,0,6760,6764,1,0,0,0,6761,6762,7,26,0,0,6762,6763,5,418,0,0, - 6763,6765,5,386,0,0,6764,6761,1,0,0,0,6764,6765,1,0,0,0,6765,667, - 1,0,0,0,6766,6796,5,264,0,0,6767,6796,3,670,335,0,6768,6771,5,384, - 0,0,6769,6770,5,94,0,0,6770,6772,5,264,0,0,6771,6769,1,0,0,0,6771, - 6772,1,0,0,0,6772,6796,1,0,0,0,6773,6780,5,176,0,0,6774,6778,5,94, - 0,0,6775,6779,5,218,0,0,6776,6779,5,261,0,0,6777,6779,3,670,335, - 0,6778,6775,1,0,0,0,6778,6776,1,0,0,0,6778,6777,1,0,0,0,6779,6781, - 1,0,0,0,6780,6774,1,0,0,0,6780,6781,1,0,0,0,6781,6796,1,0,0,0,6782, - 6788,5,218,0,0,6783,6786,5,94,0,0,6784,6787,5,261,0,0,6785,6787, - 3,670,335,0,6786,6784,1,0,0,0,6786,6785,1,0,0,0,6787,6789,1,0,0, - 0,6788,6783,1,0,0,0,6788,6789,1,0,0,0,6789,6796,1,0,0,0,6790,6793, - 5,261,0,0,6791,6792,5,94,0,0,6792,6794,3,670,335,0,6793,6791,1,0, - 0,0,6793,6794,1,0,0,0,6794,6796,1,0,0,0,6795,6766,1,0,0,0,6795,6767, - 1,0,0,0,6795,6768,1,0,0,0,6795,6773,1,0,0,0,6795,6782,1,0,0,0,6795, - 6790,1,0,0,0,6796,669,1,0,0,0,6797,6799,5,326,0,0,6798,6800,3,660, - 330,0,6799,6798,1,0,0,0,6799,6800,1,0,0,0,6800,671,1,0,0,0,6801, - 6802,7,92,0,0,6802,673,1,0,0,0,6803,6804,3,676,338,0,6804,675,1, - 0,0,0,6805,6806,6,338,-1,0,6806,6808,3,680,340,0,6807,6809,3,678, - 339,0,6808,6807,1,0,0,0,6808,6809,1,0,0,0,6809,6813,1,0,0,0,6810, - 6811,5,77,0,0,6811,6813,3,676,338,3,6812,6805,1,0,0,0,6812,6810, - 1,0,0,0,6813,6822,1,0,0,0,6814,6815,10,2,0,0,6815,6816,5,33,0,0, - 6816,6821,3,676,338,3,6817,6818,10,1,0,0,6818,6819,5,82,0,0,6819, - 6821,3,676,338,2,6820,6814,1,0,0,0,6820,6817,1,0,0,0,6821,6824,1, - 0,0,0,6822,6820,1,0,0,0,6822,6823,1,0,0,0,6823,677,1,0,0,0,6824, - 6822,1,0,0,0,6825,6826,3,672,336,0,6826,6827,3,680,340,0,6827,6897, - 1,0,0,0,6828,6829,3,672,336,0,6829,6830,3,728,364,0,6830,6836,3, - 718,359,0,6831,6837,3,562,281,0,6832,6833,5,2,0,0,6833,6834,3,674, - 337,0,6834,6835,5,3,0,0,6835,6837,1,0,0,0,6836,6831,1,0,0,0,6836, - 6832,1,0,0,0,6837,6897,1,0,0,0,6838,6840,5,77,0,0,6839,6838,1,0, - 0,0,6839,6840,1,0,0,0,6840,6841,1,0,0,0,6841,6842,5,387,0,0,6842, - 6843,3,680,340,0,6843,6844,5,33,0,0,6844,6845,3,680,340,0,6845,6897, - 1,0,0,0,6846,6848,5,77,0,0,6847,6846,1,0,0,0,6847,6848,1,0,0,0,6848, - 6849,1,0,0,0,6849,6850,5,68,0,0,6850,6851,5,2,0,0,6851,6856,3,674, - 337,0,6852,6853,5,6,0,0,6853,6855,3,674,337,0,6854,6852,1,0,0,0, - 6855,6858,1,0,0,0,6856,6854,1,0,0,0,6856,6857,1,0,0,0,6857,6859, - 1,0,0,0,6858,6856,1,0,0,0,6859,6860,5,3,0,0,6860,6897,1,0,0,0,6861, - 6863,5,77,0,0,6862,6861,1,0,0,0,6862,6863,1,0,0,0,6863,6864,1,0, - 0,0,6864,6865,5,68,0,0,6865,6897,3,562,281,0,6866,6868,5,77,0,0, - 6867,6866,1,0,0,0,6867,6868,1,0,0,0,6868,6877,1,0,0,0,6869,6878, - 5,120,0,0,6870,6878,5,114,0,0,6871,6872,5,127,0,0,6872,6878,5,94, - 0,0,6873,6875,5,387,0,0,6874,6876,5,91,0,0,6875,6874,1,0,0,0,6875, - 6876,1,0,0,0,6876,6878,1,0,0,0,6877,6869,1,0,0,0,6877,6870,1,0,0, - 0,6877,6871,1,0,0,0,6877,6873,1,0,0,0,6878,6879,1,0,0,0,6879,6882, - 3,680,340,0,6880,6881,5,197,0,0,6881,6883,3,680,340,0,6882,6880, - 1,0,0,0,6882,6883,1,0,0,0,6883,6897,1,0,0,0,6884,6886,5,116,0,0, - 6885,6887,5,77,0,0,6886,6885,1,0,0,0,6886,6887,1,0,0,0,6887,6888, - 1,0,0,0,6888,6897,5,78,0,0,6889,6891,5,116,0,0,6890,6892,5,77,0, - 0,6891,6890,1,0,0,0,6891,6892,1,0,0,0,6892,6893,1,0,0,0,6893,6894, - 5,56,0,0,6894,6895,5,64,0,0,6895,6897,3,680,340,0,6896,6825,1,0, - 0,0,6896,6828,1,0,0,0,6896,6839,1,0,0,0,6896,6847,1,0,0,0,6896,6862, - 1,0,0,0,6896,6867,1,0,0,0,6896,6884,1,0,0,0,6896,6889,1,0,0,0,6897, - 679,1,0,0,0,6898,6899,6,340,-1,0,6899,6903,3,682,341,0,6900,6901, - 7,29,0,0,6901,6903,3,680,340,4,6902,6898,1,0,0,0,6902,6900,1,0,0, - 0,6903,6920,1,0,0,0,6904,6905,10,3,0,0,6905,6906,7,93,0,0,6906,6919, - 3,680,340,4,6907,6908,10,2,0,0,6908,6909,7,29,0,0,6909,6919,3,680, - 340,3,6910,6911,10,1,0,0,6911,6912,5,15,0,0,6912,6919,3,680,340, - 2,6913,6914,10,5,0,0,6914,6915,5,142,0,0,6915,6916,5,418,0,0,6916, - 6917,5,386,0,0,6917,6919,3,674,337,0,6918,6904,1,0,0,0,6918,6907, - 1,0,0,0,6918,6910,1,0,0,0,6918,6913,1,0,0,0,6919,6922,1,0,0,0,6920, - 6918,1,0,0,0,6920,6921,1,0,0,0,6921,681,1,0,0,0,6922,6920,1,0,0, - 0,6923,6924,6,341,-1,0,6924,6925,7,94,0,0,6925,7012,3,562,281,0, - 6926,6929,5,35,0,0,6927,6930,3,562,281,0,6928,6930,3,740,370,0,6929, - 6927,1,0,0,0,6929,6928,1,0,0,0,6930,7012,1,0,0,0,6931,6932,5,28, - 0,0,6932,7012,3,754,377,0,6933,6934,5,470,0,0,6934,7012,3,534,267, - 0,6935,7012,5,571,0,0,6936,7012,5,573,0,0,6937,7012,5,563,0,0,6938, - 7012,5,567,0,0,6939,6949,3,806,403,0,6940,6950,3,808,404,0,6941, - 6942,5,2,0,0,6942,6944,3,736,368,0,6943,6945,3,586,293,0,6944,6943, - 1,0,0,0,6944,6945,1,0,0,0,6945,6946,1,0,0,0,6946,6947,5,3,0,0,6947, - 6948,3,808,404,0,6948,6950,1,0,0,0,6949,6940,1,0,0,0,6949,6941,1, - 0,0,0,6950,7012,1,0,0,0,6951,6953,3,656,328,0,6952,6951,1,0,0,0, - 6952,6953,1,0,0,0,6953,6954,1,0,0,0,6954,7012,3,808,404,0,6955,6963, - 5,403,0,0,6956,6958,3,808,404,0,6957,6959,3,668,334,0,6958,6957, - 1,0,0,0,6958,6959,1,0,0,0,6959,6964,1,0,0,0,6960,6961,3,660,330, - 0,6961,6962,3,808,404,0,6962,6964,1,0,0,0,6963,6956,1,0,0,0,6963, - 6960,1,0,0,0,6964,7012,1,0,0,0,6965,7012,5,96,0,0,6966,7012,5,60, - 0,0,6967,7012,5,78,0,0,6968,7012,5,574,0,0,6969,6970,5,2,0,0,6970, - 6971,3,674,337,0,6971,6972,5,3,0,0,6972,6973,3,754,377,0,6973,7012, - 1,0,0,0,6974,6976,5,40,0,0,6975,6977,3,674,337,0,6976,6975,1,0,0, - 0,6976,6977,1,0,0,0,6977,6979,1,0,0,0,6978,6980,3,748,374,0,6979, - 6978,1,0,0,0,6980,6981,1,0,0,0,6981,6979,1,0,0,0,6981,6982,1,0,0, - 0,6982,6985,1,0,0,0,6983,6984,5,58,0,0,6984,6986,3,674,337,0,6985, - 6983,1,0,0,0,6985,6986,1,0,0,0,6986,6987,1,0,0,0,6987,6988,5,454, - 0,0,6988,7012,1,0,0,0,6989,7012,3,686,343,0,6990,6992,3,562,281, - 0,6991,6993,3,752,376,0,6992,6991,1,0,0,0,6992,6993,1,0,0,0,6993, - 7012,1,0,0,0,6994,7012,3,716,358,0,6995,6996,5,2,0,0,6996,6997,3, - 674,337,0,6997,6998,5,6,0,0,6998,6999,3,730,365,0,6999,7000,5,3, - 0,0,7000,7012,1,0,0,0,7001,7002,3,714,357,0,7002,7003,5,125,0,0, - 7003,7004,3,714,357,0,7004,7012,1,0,0,0,7005,7012,3,780,390,0,7006, - 7007,7,29,0,0,7007,7012,3,682,341,5,7008,7009,3,724,362,0,7009,7010, - 3,682,341,2,7010,7012,1,0,0,0,7011,6923,1,0,0,0,7011,6926,1,0,0, - 0,7011,6931,1,0,0,0,7011,6933,1,0,0,0,7011,6935,1,0,0,0,7011,6936, - 1,0,0,0,7011,6937,1,0,0,0,7011,6938,1,0,0,0,7011,6939,1,0,0,0,7011, - 6952,1,0,0,0,7011,6955,1,0,0,0,7011,6965,1,0,0,0,7011,6966,1,0,0, - 0,7011,6967,1,0,0,0,7011,6968,1,0,0,0,7011,6969,1,0,0,0,7011,6974, - 1,0,0,0,7011,6989,1,0,0,0,7011,6990,1,0,0,0,7011,6994,1,0,0,0,7011, - 6995,1,0,0,0,7011,7001,1,0,0,0,7011,7005,1,0,0,0,7011,7006,1,0,0, - 0,7011,7008,1,0,0,0,7012,7040,1,0,0,0,7013,7014,10,3,0,0,7014,7015, - 3,722,361,0,7015,7016,3,682,341,4,7016,7039,1,0,0,0,7017,7018,10, - 6,0,0,7018,7019,5,26,0,0,7019,7039,3,652,326,0,7020,7021,10,4,0, - 0,7021,7023,3,724,362,0,7022,7024,3,682,341,0,7023,7022,1,0,0,0, - 7023,7024,1,0,0,0,7024,7039,1,0,0,0,7025,7026,10,1,0,0,7026,7028, - 5,116,0,0,7027,7029,5,77,0,0,7028,7027,1,0,0,0,7028,7029,1,0,0,0, - 7029,7036,1,0,0,0,7030,7031,5,56,0,0,7031,7032,5,64,0,0,7032,7037, - 3,682,341,0,7033,7034,5,275,0,0,7034,7037,3,528,264,0,7035,7037, - 5,188,0,0,7036,7030,1,0,0,0,7036,7033,1,0,0,0,7036,7035,1,0,0,0, - 7037,7039,1,0,0,0,7038,7013,1,0,0,0,7038,7017,1,0,0,0,7038,7020, - 1,0,0,0,7038,7025,1,0,0,0,7039,7042,1,0,0,0,7040,7038,1,0,0,0,7040, - 7041,1,0,0,0,7041,683,1,0,0,0,7042,7040,1,0,0,0,7043,7044,3,806, - 403,0,7044,7065,5,2,0,0,7045,7049,3,736,368,0,7046,7047,5,6,0,0, - 7047,7048,5,101,0,0,7048,7050,3,738,369,0,7049,7046,1,0,0,0,7049, - 7050,1,0,0,0,7050,7052,1,0,0,0,7051,7053,3,586,293,0,7052,7051,1, - 0,0,0,7052,7053,1,0,0,0,7053,7066,1,0,0,0,7054,7055,5,101,0,0,7055, - 7057,3,738,369,0,7056,7058,3,586,293,0,7057,7056,1,0,0,0,7057,7058, - 1,0,0,0,7058,7066,1,0,0,0,7059,7060,7,80,0,0,7060,7062,3,736,368, - 0,7061,7063,3,586,293,0,7062,7061,1,0,0,0,7062,7063,1,0,0,0,7063, - 7066,1,0,0,0,7064,7066,5,9,0,0,7065,7045,1,0,0,0,7065,7054,1,0,0, - 0,7065,7059,1,0,0,0,7065,7064,1,0,0,0,7065,7066,1,0,0,0,7066,7067, - 1,0,0,0,7067,7068,5,3,0,0,7068,685,1,0,0,0,7069,7076,3,684,342,0, - 7070,7071,5,479,0,0,7071,7072,5,66,0,0,7072,7073,5,2,0,0,7073,7074, - 3,586,293,0,7074,7075,5,3,0,0,7075,7077,1,0,0,0,7076,7070,1,0,0, - 0,7076,7077,1,0,0,0,7077,7084,1,0,0,0,7078,7079,5,480,0,0,7079,7080, - 5,2,0,0,7080,7081,5,103,0,0,7081,7082,3,674,337,0,7082,7083,5,3, - 0,0,7083,7085,1,0,0,0,7084,7078,1,0,0,0,7084,7085,1,0,0,0,7085,7091, - 1,0,0,0,7086,7089,5,124,0,0,7087,7090,3,708,354,0,7088,7090,3,818, - 409,0,7089,7087,1,0,0,0,7089,7088,1,0,0,0,7090,7092,1,0,0,0,7091, - 7086,1,0,0,0,7091,7092,1,0,0,0,7092,7095,1,0,0,0,7093,7095,3,690, - 345,0,7094,7069,1,0,0,0,7094,7093,1,0,0,0,7095,687,1,0,0,0,7096, - 7099,3,684,342,0,7097,7099,3,690,345,0,7098,7096,1,0,0,0,7098,7097, - 1,0,0,0,7099,689,1,0,0,0,7100,7101,5,108,0,0,7101,7102,5,62,0,0, - 7102,7103,5,2,0,0,7103,7104,3,674,337,0,7104,7105,5,3,0,0,7105,7275, - 1,0,0,0,7106,7275,5,48,0,0,7107,7109,7,95,0,0,7108,7110,3,660,330, - 0,7109,7108,1,0,0,0,7109,7110,1,0,0,0,7110,7275,1,0,0,0,7111,7275, - 5,49,0,0,7112,7275,5,52,0,0,7113,7275,5,89,0,0,7114,7275,5,99,0, - 0,7115,7275,5,47,0,0,7116,7275,5,111,0,0,7117,7118,7,96,0,0,7118, - 7119,5,2,0,0,7119,7120,3,674,337,0,7120,7121,5,36,0,0,7121,7122, - 3,652,326,0,7122,7123,5,3,0,0,7123,7275,1,0,0,0,7124,7125,5,397, - 0,0,7125,7130,5,2,0,0,7126,7127,3,742,371,0,7127,7128,5,64,0,0,7128, - 7129,3,674,337,0,7129,7131,1,0,0,0,7130,7126,1,0,0,0,7130,7131,1, - 0,0,0,7131,7132,1,0,0,0,7132,7275,5,3,0,0,7133,7134,5,489,0,0,7134, - 7135,5,2,0,0,7135,7138,3,674,337,0,7136,7137,5,6,0,0,7137,7139,3, - 744,372,0,7138,7136,1,0,0,0,7138,7139,1,0,0,0,7139,7140,1,0,0,0, - 7140,7141,5,3,0,0,7141,7275,1,0,0,0,7142,7143,5,410,0,0,7143,7144, - 5,2,0,0,7144,7145,3,674,337,0,7145,7146,5,84,0,0,7146,7147,3,674, - 337,0,7147,7148,5,64,0,0,7148,7151,3,674,337,0,7149,7150,5,62,0, - 0,7150,7152,3,674,337,0,7151,7149,1,0,0,0,7151,7152,1,0,0,0,7152, - 7153,1,0,0,0,7153,7154,5,3,0,0,7154,7275,1,0,0,0,7155,7156,5,411, - 0,0,7156,7161,5,2,0,0,7157,7158,3,682,341,0,7158,7159,5,68,0,0,7159, - 7160,3,682,341,0,7160,7162,1,0,0,0,7161,7157,1,0,0,0,7161,7162,1, - 0,0,0,7162,7163,1,0,0,0,7163,7275,5,3,0,0,7164,7165,5,417,0,0,7165, - 7167,5,2,0,0,7166,7168,3,746,373,0,7167,7166,1,0,0,0,7167,7168,1, - 0,0,0,7168,7169,1,0,0,0,7169,7275,5,3,0,0,7170,7171,5,421,0,0,7171, - 7173,5,2,0,0,7172,7174,7,97,0,0,7173,7172,1,0,0,0,7173,7174,1,0, - 0,0,7174,7179,1,0,0,0,7175,7177,3,674,337,0,7176,7175,1,0,0,0,7176, - 7177,1,0,0,0,7177,7178,1,0,0,0,7178,7180,5,64,0,0,7179,7176,1,0, - 0,0,7179,7180,1,0,0,0,7180,7181,1,0,0,0,7181,7182,3,730,365,0,7182, - 7183,1,0,0,0,7183,7184,5,3,0,0,7184,7275,1,0,0,0,7185,7186,5,408, - 0,0,7186,7187,5,2,0,0,7187,7188,3,674,337,0,7188,7189,5,6,0,0,7189, - 7190,3,674,337,0,7190,7191,5,3,0,0,7191,7275,1,0,0,0,7192,7193,7, - 98,0,0,7193,7275,3,534,267,0,7194,7195,5,426,0,0,7195,7196,5,2,0, - 0,7196,7197,5,266,0,0,7197,7207,3,824,412,0,7198,7205,5,6,0,0,7199, - 7200,5,424,0,0,7200,7201,5,2,0,0,7201,7202,3,692,346,0,7202,7203, - 5,3,0,0,7203,7206,1,0,0,0,7204,7206,3,730,365,0,7205,7199,1,0,0, - 0,7205,7204,1,0,0,0,7206,7208,1,0,0,0,7207,7198,1,0,0,0,7207,7208, - 1,0,0,0,7208,7209,1,0,0,0,7209,7210,5,3,0,0,7210,7275,1,0,0,0,7211, - 7212,5,427,0,0,7212,7213,5,2,0,0,7213,7214,3,682,341,0,7214,7215, - 3,698,349,0,7215,7216,5,3,0,0,7216,7275,1,0,0,0,7217,7218,5,428, - 0,0,7218,7219,5,2,0,0,7219,7220,3,692,346,0,7220,7221,5,3,0,0,7221, - 7275,1,0,0,0,7222,7223,5,429,0,0,7223,7224,5,2,0,0,7224,7225,3,696, - 348,0,7225,7228,3,674,337,0,7226,7227,7,99,0,0,7227,7229,5,378,0, - 0,7228,7226,1,0,0,0,7228,7229,1,0,0,0,7229,7230,1,0,0,0,7230,7231, - 5,3,0,0,7231,7275,1,0,0,0,7232,7233,5,430,0,0,7233,7234,5,2,0,0, - 7234,7235,5,266,0,0,7235,7238,3,824,412,0,7236,7237,5,6,0,0,7237, - 7239,3,674,337,0,7238,7236,1,0,0,0,7238,7239,1,0,0,0,7239,7240,1, - 0,0,0,7240,7241,5,3,0,0,7241,7275,1,0,0,0,7242,7243,5,431,0,0,7243, - 7244,5,2,0,0,7244,7245,5,383,0,0,7245,7246,3,674,337,0,7246,7247, - 5,6,0,0,7247,7251,5,375,0,0,7248,7249,5,269,0,0,7249,7252,5,450, - 0,0,7250,7252,3,674,337,0,7251,7248,1,0,0,0,7251,7250,1,0,0,0,7252, - 7262,1,0,0,0,7253,7254,5,6,0,0,7254,7260,5,339,0,0,7255,7257,5,269, - 0,0,7256,7255,1,0,0,0,7256,7257,1,0,0,0,7257,7258,1,0,0,0,7258,7261, - 5,450,0,0,7259,7261,5,385,0,0,7260,7256,1,0,0,0,7260,7259,1,0,0, - 0,7261,7263,1,0,0,0,7262,7253,1,0,0,0,7262,7263,1,0,0,0,7263,7264, - 1,0,0,0,7264,7265,5,3,0,0,7265,7275,1,0,0,0,7266,7267,5,432,0,0, - 7267,7268,5,2,0,0,7268,7269,3,696,348,0,7269,7270,3,674,337,0,7270, - 7271,5,36,0,0,7271,7272,3,654,327,0,7272,7273,5,3,0,0,7273,7275, - 1,0,0,0,7274,7100,1,0,0,0,7274,7106,1,0,0,0,7274,7107,1,0,0,0,7274, - 7111,1,0,0,0,7274,7112,1,0,0,0,7274,7113,1,0,0,0,7274,7114,1,0,0, - 0,7274,7115,1,0,0,0,7274,7116,1,0,0,0,7274,7117,1,0,0,0,7274,7124, - 1,0,0,0,7274,7133,1,0,0,0,7274,7142,1,0,0,0,7274,7155,1,0,0,0,7274, - 7164,1,0,0,0,7274,7170,1,0,0,0,7274,7185,1,0,0,0,7274,7192,1,0,0, - 0,7274,7194,1,0,0,0,7274,7211,1,0,0,0,7274,7217,1,0,0,0,7274,7222, - 1,0,0,0,7274,7232,1,0,0,0,7274,7242,1,0,0,0,7274,7266,1,0,0,0,7275, - 691,1,0,0,0,7276,7281,3,694,347,0,7277,7278,5,6,0,0,7278,7280,3, - 694,347,0,7279,7277,1,0,0,0,7280,7283,1,0,0,0,7281,7279,1,0,0,0, - 7281,7282,1,0,0,0,7282,693,1,0,0,0,7283,7281,1,0,0,0,7284,7287,3, - 674,337,0,7285,7286,5,36,0,0,7286,7288,3,824,412,0,7287,7285,1,0, - 0,0,7287,7288,1,0,0,0,7288,695,1,0,0,0,7289,7290,7,100,0,0,7290, - 697,1,0,0,0,7291,7293,5,286,0,0,7292,7294,3,700,350,0,7293,7292, - 1,0,0,0,7293,7294,1,0,0,0,7294,7295,1,0,0,0,7295,7297,3,682,341, - 0,7296,7298,3,700,350,0,7297,7296,1,0,0,0,7297,7298,1,0,0,0,7298, - 699,1,0,0,0,7299,7300,5,147,0,0,7300,7301,7,101,0,0,7301,701,1,0, - 0,0,7302,7303,5,104,0,0,7303,7308,3,704,352,0,7304,7305,5,6,0,0, - 7305,7307,3,704,352,0,7306,7304,1,0,0,0,7307,7310,1,0,0,0,7308,7306, - 1,0,0,0,7308,7309,1,0,0,0,7309,703,1,0,0,0,7310,7308,1,0,0,0,7311, - 7312,3,818,409,0,7312,7313,5,36,0,0,7313,7314,3,708,354,0,7314,705, - 1,0,0,0,7315,7318,5,124,0,0,7316,7319,3,708,354,0,7317,7319,3,818, - 409,0,7318,7316,1,0,0,0,7318,7317,1,0,0,0,7319,707,1,0,0,0,7320, - 7322,5,2,0,0,7321,7323,3,818,409,0,7322,7321,1,0,0,0,7322,7323,1, - 0,0,0,7323,7327,1,0,0,0,7324,7325,5,285,0,0,7325,7326,5,147,0,0, - 7326,7328,3,730,365,0,7327,7324,1,0,0,0,7327,7328,1,0,0,0,7328,7330, - 1,0,0,0,7329,7331,3,586,293,0,7330,7329,1,0,0,0,7330,7331,1,0,0, - 0,7331,7333,1,0,0,0,7332,7334,3,710,355,0,7333,7332,1,0,0,0,7333, - 7334,1,0,0,0,7334,7335,1,0,0,0,7335,7336,5,3,0,0,7336,709,1,0,0, - 0,7337,7342,7,102,0,0,7338,7339,5,387,0,0,7339,7340,3,712,356,0, - 7340,7341,5,33,0,0,7341,7343,1,0,0,0,7342,7338,1,0,0,0,7342,7343, - 1,0,0,0,7343,7344,1,0,0,0,7344,7345,3,712,356,0,7345,7355,1,0,0, - 0,7346,7353,5,199,0,0,7347,7348,5,434,0,0,7348,7354,5,414,0,0,7349, - 7354,5,66,0,0,7350,7354,5,467,0,0,7351,7352,5,269,0,0,7352,7354, - 5,482,0,0,7353,7347,1,0,0,0,7353,7349,1,0,0,0,7353,7350,1,0,0,0, - 7353,7351,1,0,0,0,7354,7356,1,0,0,0,7355,7346,1,0,0,0,7355,7356, - 1,0,0,0,7356,711,1,0,0,0,7357,7360,5,362,0,0,7358,7360,3,674,337, - 0,7359,7357,1,0,0,0,7359,7358,1,0,0,0,7360,7361,1,0,0,0,7361,7365, - 7,103,0,0,7362,7363,5,434,0,0,7363,7365,5,414,0,0,7364,7359,1,0, - 0,0,7364,7362,1,0,0,0,7365,713,1,0,0,0,7366,7374,3,716,358,0,7367, - 7368,5,2,0,0,7368,7369,3,730,365,0,7369,7370,5,6,0,0,7370,7371,3, - 674,337,0,7371,7372,5,3,0,0,7372,7374,1,0,0,0,7373,7366,1,0,0,0, - 7373,7367,1,0,0,0,7374,715,1,0,0,0,7375,7376,5,414,0,0,7376,7378, - 5,2,0,0,7377,7379,3,730,365,0,7378,7377,1,0,0,0,7378,7379,1,0,0, - 0,7379,7380,1,0,0,0,7380,7381,5,3,0,0,7381,717,1,0,0,0,7382,7383, - 7,104,0,0,7383,719,1,0,0,0,7384,7387,5,29,0,0,7385,7387,3,722,361, - 0,7386,7384,1,0,0,0,7386,7385,1,0,0,0,7387,721,1,0,0,0,7388,7389, - 7,105,0,0,7389,723,1,0,0,0,7390,7397,5,29,0,0,7391,7392,5,278,0, - 0,7392,7393,5,2,0,0,7393,7394,3,414,207,0,7394,7395,5,3,0,0,7395, - 7397,1,0,0,0,7396,7390,1,0,0,0,7396,7391,1,0,0,0,7397,725,1,0,0, - 0,7398,7405,3,720,360,0,7399,7400,5,278,0,0,7400,7401,5,2,0,0,7401, - 7402,3,414,207,0,7402,7403,5,3,0,0,7403,7405,1,0,0,0,7404,7398,1, - 0,0,0,7404,7399,1,0,0,0,7405,727,1,0,0,0,7406,7412,3,726,363,0,7407, - 7409,5,77,0,0,7408,7407,1,0,0,0,7408,7409,1,0,0,0,7409,7410,1,0, - 0,0,7410,7412,7,106,0,0,7411,7406,1,0,0,0,7411,7408,1,0,0,0,7412, - 729,1,0,0,0,7413,7418,3,674,337,0,7414,7415,5,6,0,0,7415,7417,3, - 674,337,0,7416,7414,1,0,0,0,7417,7420,1,0,0,0,7418,7416,1,0,0,0, - 7418,7419,1,0,0,0,7419,731,1,0,0,0,7420,7418,1,0,0,0,7421,7422,5, - 2,0,0,7422,7423,3,674,337,0,7423,7424,5,3,0,0,7424,7427,1,0,0,0, - 7425,7427,3,800,400,0,7426,7421,1,0,0,0,7426,7425,1,0,0,0,7427,733, - 1,0,0,0,7428,7431,3,674,337,0,7429,7431,3,800,400,0,7430,7428,1, - 0,0,0,7430,7429,1,0,0,0,7431,735,1,0,0,0,7432,7437,3,738,369,0,7433, - 7434,5,6,0,0,7434,7436,3,738,369,0,7435,7433,1,0,0,0,7436,7439,1, - 0,0,0,7437,7435,1,0,0,0,7437,7438,1,0,0,0,7438,737,1,0,0,0,7439, - 7437,1,0,0,0,7440,7448,3,800,400,0,7441,7448,3,674,337,0,7442,7445, - 3,820,410,0,7443,7444,7,107,0,0,7444,7446,3,674,337,0,7445,7443, - 1,0,0,0,7445,7446,1,0,0,0,7446,7448,1,0,0,0,7447,7440,1,0,0,0,7447, - 7441,1,0,0,0,7447,7442,1,0,0,0,7448,739,1,0,0,0,7449,7459,5,4,0, - 0,7450,7460,3,730,365,0,7451,7456,3,740,370,0,7452,7453,5,6,0,0, - 7453,7455,3,740,370,0,7454,7452,1,0,0,0,7455,7458,1,0,0,0,7456,7454, - 1,0,0,0,7456,7457,1,0,0,0,7457,7460,1,0,0,0,7458,7456,1,0,0,0,7459, - 7450,1,0,0,0,7459,7451,1,0,0,0,7459,7460,1,0,0,0,7460,7461,1,0,0, - 0,7461,7462,5,5,0,0,7462,741,1,0,0,0,7463,7472,3,826,413,0,7464, - 7472,5,384,0,0,7465,7472,5,264,0,0,7466,7472,5,176,0,0,7467,7472, - 5,218,0,0,7468,7472,5,261,0,0,7469,7472,5,326,0,0,7470,7472,3,808, - 404,0,7471,7463,1,0,0,0,7471,7464,1,0,0,0,7471,7465,1,0,0,0,7471, - 7466,1,0,0,0,7471,7467,1,0,0,0,7471,7468,1,0,0,0,7471,7469,1,0,0, - 0,7471,7470,1,0,0,0,7472,743,1,0,0,0,7473,7474,7,108,0,0,7474,745, - 1,0,0,0,7475,7476,3,674,337,0,7476,7477,5,64,0,0,7477,7480,3,674, - 337,0,7478,7479,5,62,0,0,7479,7481,3,674,337,0,7480,7478,1,0,0,0, - 7480,7481,1,0,0,0,7481,7497,1,0,0,0,7482,7483,3,674,337,0,7483,7484, - 5,62,0,0,7484,7487,3,674,337,0,7485,7486,5,64,0,0,7486,7488,3,674, - 337,0,7487,7485,1,0,0,0,7487,7488,1,0,0,0,7488,7497,1,0,0,0,7489, - 7490,3,674,337,0,7490,7491,5,127,0,0,7491,7492,3,674,337,0,7492, - 7493,5,197,0,0,7493,7494,3,674,337,0,7494,7497,1,0,0,0,7495,7497, - 3,730,365,0,7496,7475,1,0,0,0,7496,7482,1,0,0,0,7496,7489,1,0,0, - 0,7496,7495,1,0,0,0,7497,747,1,0,0,0,7498,7499,5,102,0,0,7499,7500, - 3,674,337,0,7500,7501,5,93,0,0,7501,7502,3,674,337,0,7502,749,1, - 0,0,0,7503,7506,5,11,0,0,7504,7507,3,824,412,0,7505,7507,5,9,0,0, - 7506,7504,1,0,0,0,7506,7505,1,0,0,0,7507,7521,1,0,0,0,7508,7517, - 5,4,0,0,7509,7518,3,674,337,0,7510,7512,3,674,337,0,7511,7510,1, - 0,0,0,7511,7512,1,0,0,0,7512,7513,1,0,0,0,7513,7515,5,8,0,0,7514, - 7516,3,674,337,0,7515,7514,1,0,0,0,7515,7516,1,0,0,0,7516,7518,1, - 0,0,0,7517,7509,1,0,0,0,7517,7511,1,0,0,0,7518,7519,1,0,0,0,7519, - 7521,5,5,0,0,7520,7503,1,0,0,0,7520,7508,1,0,0,0,7521,751,1,0,0, - 0,7522,7524,3,750,375,0,7523,7522,1,0,0,0,7524,7525,1,0,0,0,7525, - 7523,1,0,0,0,7525,7526,1,0,0,0,7526,753,1,0,0,0,7527,7529,3,750, - 375,0,7528,7527,1,0,0,0,7529,7532,1,0,0,0,7530,7528,1,0,0,0,7530, - 7531,1,0,0,0,7531,755,1,0,0,0,7532,7530,1,0,0,0,7533,7538,3,758, - 379,0,7534,7535,5,6,0,0,7535,7537,3,758,379,0,7536,7534,1,0,0,0, - 7537,7540,1,0,0,0,7538,7536,1,0,0,0,7538,7539,1,0,0,0,7539,757,1, - 0,0,0,7540,7538,1,0,0,0,7541,7546,3,734,367,0,7542,7543,5,36,0,0, - 7543,7547,3,824,412,0,7544,7547,3,826,413,0,7545,7547,1,0,0,0,7546, - 7542,1,0,0,0,7546,7544,1,0,0,0,7546,7545,1,0,0,0,7547,7550,1,0,0, - 0,7548,7550,5,9,0,0,7549,7541,1,0,0,0,7549,7548,1,0,0,0,7550,759, - 1,0,0,0,7551,7556,3,780,390,0,7552,7553,5,6,0,0,7553,7555,3,780, - 390,0,7554,7552,1,0,0,0,7555,7558,1,0,0,0,7556,7554,1,0,0,0,7556, - 7557,1,0,0,0,7557,761,1,0,0,0,7558,7556,1,0,0,0,7559,7564,3,774, - 387,0,7560,7561,5,6,0,0,7561,7563,3,774,387,0,7562,7560,1,0,0,0, - 7563,7566,1,0,0,0,7564,7562,1,0,0,0,7564,7565,1,0,0,0,7565,763,1, - 0,0,0,7566,7564,1,0,0,0,7567,7572,3,790,395,0,7568,7569,5,6,0,0, - 7569,7571,3,790,395,0,7570,7568,1,0,0,0,7571,7574,1,0,0,0,7572,7570, - 1,0,0,0,7572,7573,1,0,0,0,7573,765,1,0,0,0,7574,7572,1,0,0,0,7575, - 7580,3,788,394,0,7576,7577,5,6,0,0,7577,7579,3,788,394,0,7578,7576, - 1,0,0,0,7579,7582,1,0,0,0,7580,7578,1,0,0,0,7580,7581,1,0,0,0,7581, - 767,1,0,0,0,7582,7580,1,0,0,0,7583,7584,3,780,390,0,7584,769,1,0, - 0,0,7585,7586,3,780,390,0,7586,771,1,0,0,0,7587,7588,3,780,390,0, - 7588,773,1,0,0,0,7589,7590,3,780,390,0,7590,775,1,0,0,0,7591,7592, - 3,780,390,0,7592,777,1,0,0,0,7593,7594,3,316,158,0,7594,779,1,0, - 0,0,7595,7597,3,818,409,0,7596,7598,3,752,376,0,7597,7596,1,0,0, - 0,7597,7598,1,0,0,0,7598,781,1,0,0,0,7599,7604,3,770,385,0,7600, - 7601,5,6,0,0,7601,7603,3,770,385,0,7602,7600,1,0,0,0,7603,7606,1, - 0,0,0,7604,7602,1,0,0,0,7604,7605,1,0,0,0,7605,783,1,0,0,0,7606, - 7604,1,0,0,0,7607,7612,3,818,409,0,7608,7609,5,6,0,0,7609,7611,3, - 818,409,0,7610,7608,1,0,0,0,7611,7614,1,0,0,0,7612,7610,1,0,0,0, - 7612,7613,1,0,0,0,7613,785,1,0,0,0,7614,7612,1,0,0,0,7615,7616,3, - 316,158,0,7616,787,1,0,0,0,7617,7618,3,316,158,0,7618,789,1,0,0, - 0,7619,7620,3,316,158,0,7620,791,1,0,0,0,7621,7622,3,818,409,0,7622, - 793,1,0,0,0,7623,7624,3,818,409,0,7624,795,1,0,0,0,7625,7630,3,820, - 410,0,7626,7627,3,818,409,0,7627,7628,3,752,376,0,7628,7630,1,0, - 0,0,7629,7625,1,0,0,0,7629,7626,1,0,0,0,7630,797,1,0,0,0,7631,7636, - 3,820,410,0,7632,7633,3,818,409,0,7633,7634,3,752,376,0,7634,7636, - 1,0,0,0,7635,7631,1,0,0,0,7635,7632,1,0,0,0,7636,799,1,0,0,0,7637, - 7638,3,818,409,0,7638,7639,3,754,377,0,7639,7642,1,0,0,0,7640,7642, - 4,400,10,0,7641,7637,1,0,0,0,7641,7640,1,0,0,0,7642,801,1,0,0,0, - 7643,7644,3,818,409,0,7644,803,1,0,0,0,7645,7650,3,820,410,0,7646, - 7647,3,818,409,0,7647,7648,3,752,376,0,7648,7650,1,0,0,0,7649,7645, - 1,0,0,0,7649,7646,1,0,0,0,7650,805,1,0,0,0,7651,7656,3,820,410,0, - 7652,7653,3,818,409,0,7653,7654,3,752,376,0,7654,7656,1,0,0,0,7655, - 7651,1,0,0,0,7655,7652,1,0,0,0,7656,807,1,0,0,0,7657,7660,3,810, - 405,0,7658,7659,5,487,0,0,7659,7661,3,810,405,0,7660,7658,1,0,0, - 0,7660,7661,1,0,0,0,7661,809,1,0,0,0,7662,7674,5,558,0,0,7663,7674, - 5,560,0,0,7664,7668,5,562,0,0,7665,7667,5,588,0,0,7666,7665,1,0, - 0,0,7667,7670,1,0,0,0,7668,7666,1,0,0,0,7668,7669,1,0,0,0,7669,7671, - 1,0,0,0,7670,7668,1,0,0,0,7671,7674,5,589,0,0,7672,7674,5,584,0, - 0,7673,7662,1,0,0,0,7673,7663,1,0,0,0,7673,7664,1,0,0,0,7673,7672, - 1,0,0,0,7674,811,1,0,0,0,7675,7677,7,29,0,0,7676,7675,1,0,0,0,7676, - 7677,1,0,0,0,7677,7678,1,0,0,0,7678,7679,5,571,0,0,7679,813,1,0, - 0,0,7680,7686,3,822,411,0,7681,7686,5,52,0,0,7682,7686,5,49,0,0, - 7683,7686,5,89,0,0,7684,7686,5,524,0,0,7685,7680,1,0,0,0,7685,7681, - 1,0,0,0,7685,7682,1,0,0,0,7685,7683,1,0,0,0,7685,7684,1,0,0,0,7686, - 815,1,0,0,0,7687,7692,3,814,407,0,7688,7689,5,6,0,0,7689,7691,3, - 814,407,0,7690,7688,1,0,0,0,7691,7694,1,0,0,0,7692,7690,1,0,0,0, - 7692,7693,1,0,0,0,7693,817,1,0,0,0,7694,7692,1,0,0,0,7695,7698,3, - 826,413,0,7696,7698,3,830,415,0,7697,7695,1,0,0,0,7697,7696,1,0, - 0,0,7698,819,1,0,0,0,7699,7702,3,826,413,0,7700,7702,3,832,416,0, - 7701,7699,1,0,0,0,7701,7700,1,0,0,0,7702,821,1,0,0,0,7703,7707,3, - 826,413,0,7704,7707,3,830,415,0,7705,7707,3,832,416,0,7706,7703, - 1,0,0,0,7706,7704,1,0,0,0,7706,7705,1,0,0,0,7707,823,1,0,0,0,7708, - 7713,3,826,413,0,7709,7713,3,830,415,0,7710,7713,3,832,416,0,7711, - 7713,3,834,417,0,7712,7708,1,0,0,0,7712,7709,1,0,0,0,7712,7710,1, - 0,0,0,7712,7711,1,0,0,0,7713,825,1,0,0,0,7714,7717,5,549,0,0,7715, - 7716,5,487,0,0,7716,7718,3,810,405,0,7717,7715,1,0,0,0,7717,7718, - 1,0,0,0,7718,7726,1,0,0,0,7719,7726,3,808,404,0,7720,7726,5,550, - 0,0,7721,7726,5,554,0,0,7722,7726,5,574,0,0,7723,7726,5,575,0,0, - 7724,7726,3,828,414,0,7725,7714,1,0,0,0,7725,7719,1,0,0,0,7725,7720, - 1,0,0,0,7725,7721,1,0,0,0,7725,7722,1,0,0,0,7725,7723,1,0,0,0,7725, - 7724,1,0,0,0,7726,827,1,0,0,0,7727,7728,7,109,0,0,7728,829,1,0,0, - 0,7729,7781,5,387,0,0,7730,7781,5,388,0,0,7731,7781,3,662,331,0, - 7732,7781,5,390,0,0,7733,7781,5,391,0,0,7734,7781,3,664,332,0,7735, - 7781,5,393,0,0,7736,7781,5,394,0,0,7737,7781,5,395,0,0,7738,7781, - 5,396,0,0,7739,7781,5,397,0,0,7740,7781,5,398,0,0,7741,7781,5,399, - 0,0,7742,7781,5,470,0,0,7743,7781,5,400,0,0,7744,7781,5,401,0,0, - 7745,7781,5,402,0,0,7746,7781,5,403,0,0,7747,7781,5,404,0,0,7748, - 7781,5,405,0,0,7749,7781,5,406,0,0,7750,7781,5,407,0,0,7751,7781, - 5,489,0,0,7752,7781,5,408,0,0,7753,7781,3,658,329,0,7754,7781,5, - 453,0,0,7755,7781,5,410,0,0,7756,7781,5,411,0,0,7757,7781,5,412, - 0,0,7758,7781,5,413,0,0,7759,7781,5,414,0,0,7760,7781,5,415,0,0, - 7761,7781,5,416,0,0,7762,7781,5,417,0,0,7763,7781,5,418,0,0,7764, - 7781,5,419,0,0,7765,7781,5,420,0,0,7766,7781,5,421,0,0,7767,7781, - 5,422,0,0,7768,7781,5,423,0,0,7769,7781,5,424,0,0,7770,7781,5,425, - 0,0,7771,7781,5,426,0,0,7772,7781,5,427,0,0,7773,7781,5,428,0,0, - 7774,7781,5,476,0,0,7775,7781,5,429,0,0,7776,7781,5,430,0,0,7777, - 7781,5,431,0,0,7778,7781,5,432,0,0,7779,7781,5,474,0,0,7780,7729, - 1,0,0,0,7780,7730,1,0,0,0,7780,7731,1,0,0,0,7780,7732,1,0,0,0,7780, - 7733,1,0,0,0,7780,7734,1,0,0,0,7780,7735,1,0,0,0,7780,7736,1,0,0, - 0,7780,7737,1,0,0,0,7780,7738,1,0,0,0,7780,7739,1,0,0,0,7780,7740, - 1,0,0,0,7780,7741,1,0,0,0,7780,7742,1,0,0,0,7780,7743,1,0,0,0,7780, - 7744,1,0,0,0,7780,7745,1,0,0,0,7780,7746,1,0,0,0,7780,7747,1,0,0, - 0,7780,7748,1,0,0,0,7780,7749,1,0,0,0,7780,7750,1,0,0,0,7780,7751, - 1,0,0,0,7780,7752,1,0,0,0,7780,7753,1,0,0,0,7780,7754,1,0,0,0,7780, - 7755,1,0,0,0,7780,7756,1,0,0,0,7780,7757,1,0,0,0,7780,7758,1,0,0, - 0,7780,7759,1,0,0,0,7780,7760,1,0,0,0,7780,7761,1,0,0,0,7780,7762, - 1,0,0,0,7780,7763,1,0,0,0,7780,7764,1,0,0,0,7780,7765,1,0,0,0,7780, - 7766,1,0,0,0,7780,7767,1,0,0,0,7780,7768,1,0,0,0,7780,7769,1,0,0, - 0,7780,7770,1,0,0,0,7780,7771,1,0,0,0,7780,7772,1,0,0,0,7780,7773, - 1,0,0,0,7780,7774,1,0,0,0,7780,7775,1,0,0,0,7780,7776,1,0,0,0,7780, - 7777,1,0,0,0,7780,7778,1,0,0,0,7780,7779,1,0,0,0,7781,831,1,0,0, - 0,7782,7783,7,110,0,0,7783,833,1,0,0,0,7784,7785,7,111,0,0,7785, - 835,1,0,0,0,7786,7788,3,838,419,0,7787,7786,1,0,0,0,7787,7788,1, - 0,0,0,7788,7799,1,0,0,0,7789,7797,5,178,0,0,7790,7794,3,840,420, - 0,7791,7794,5,178,0,0,7792,7794,3,838,419,0,7793,7790,1,0,0,0,7793, - 7791,1,0,0,0,7793,7792,1,0,0,0,7794,7795,1,0,0,0,7795,7793,1,0,0, - 0,7795,7796,1,0,0,0,7796,7798,1,0,0,0,7797,7793,1,0,0,0,7797,7798, - 1,0,0,0,7798,7800,1,0,0,0,7799,7789,1,0,0,0,7799,7800,1,0,0,0,7800, - 7801,1,0,0,0,7801,7805,5,146,0,0,7802,7804,3,846,423,0,7803,7802, - 1,0,0,0,7804,7807,1,0,0,0,7805,7803,1,0,0,0,7805,7806,1,0,0,0,7806, - 7809,1,0,0,0,7807,7805,1,0,0,0,7808,7810,3,924,462,0,7809,7808,1, - 0,0,0,7809,7810,1,0,0,0,7810,7811,1,0,0,0,7811,7813,5,454,0,0,7812, - 7814,3,928,464,0,7813,7812,1,0,0,0,7813,7814,1,0,0,0,7814,837,1, - 0,0,0,7815,7816,5,18,0,0,7816,7817,3,928,464,0,7817,7818,5,19,0, - 0,7818,839,1,0,0,0,7819,7866,3,928,464,0,7820,7821,5,496,0,0,7821, - 7824,5,62,0,0,7822,7825,5,28,0,0,7823,7825,3,818,409,0,7824,7822, - 1,0,0,0,7824,7823,1,0,0,0,7825,7867,1,0,0,0,7826,7828,5,497,0,0, - 7827,7826,1,0,0,0,7827,7828,1,0,0,0,7828,7829,1,0,0,0,7829,7831, - 3,652,326,0,7830,7832,3,98,49,0,7831,7830,1,0,0,0,7831,7832,1,0, - 0,0,7832,7835,1,0,0,0,7833,7834,5,77,0,0,7834,7836,5,78,0,0,7835, - 7833,1,0,0,0,7835,7836,1,0,0,0,7836,7842,1,0,0,0,7837,7840,3,844, - 422,0,7838,7840,5,53,0,0,7839,7837,1,0,0,0,7839,7838,1,0,0,0,7840, - 7841,1,0,0,0,7841,7843,3,930,465,0,7842,7839,1,0,0,0,7842,7843,1, - 0,0,0,7843,7867,1,0,0,0,7844,7846,5,269,0,0,7845,7844,1,0,0,0,7845, - 7846,1,0,0,0,7846,7847,1,0,0,0,7847,7849,5,324,0,0,7848,7845,1,0, - 0,0,7848,7849,1,0,0,0,7849,7850,1,0,0,0,7850,7862,5,172,0,0,7851, - 7852,5,2,0,0,7852,7857,3,842,421,0,7853,7854,5,6,0,0,7854,7856,3, - 842,421,0,7855,7853,1,0,0,0,7856,7859,1,0,0,0,7857,7855,1,0,0,0, - 7857,7858,1,0,0,0,7858,7860,1,0,0,0,7859,7857,1,0,0,0,7860,7861, - 5,3,0,0,7861,7863,1,0,0,0,7862,7851,1,0,0,0,7862,7863,1,0,0,0,7863, - 7864,1,0,0,0,7864,7865,7,112,0,0,7865,7867,3,560,280,0,7866,7820, - 1,0,0,0,7866,7827,1,0,0,0,7866,7848,1,0,0,0,7867,7868,1,0,0,0,7868, - 7869,5,7,0,0,7869,841,1,0,0,0,7870,7871,3,928,464,0,7871,7872,3, - 652,326,0,7872,843,1,0,0,0,7873,7874,7,113,0,0,7874,845,1,0,0,0, - 7875,7876,3,836,418,0,7876,7877,5,7,0,0,7877,7900,1,0,0,0,7878,7900, - 3,874,437,0,7879,7900,3,876,438,0,7880,7900,3,852,426,0,7881,7900, - 3,860,430,0,7882,7900,3,864,432,0,7883,7900,3,866,433,0,7884,7900, - 3,870,435,0,7885,7900,3,872,436,0,7886,7900,3,880,440,0,7887,7900, - 3,884,442,0,7888,7900,3,886,443,0,7889,7900,3,848,424,0,7890,7900, - 3,850,425,0,7891,7900,3,854,427,0,7892,7900,3,890,445,0,7893,7900, - 3,894,447,0,7894,7900,3,898,449,0,7895,7900,3,914,457,0,7896,7900, - 3,916,458,0,7897,7900,3,918,459,0,7898,7900,3,920,460,0,7899,7875, - 1,0,0,0,7899,7878,1,0,0,0,7899,7879,1,0,0,0,7899,7880,1,0,0,0,7899, - 7881,1,0,0,0,7899,7882,1,0,0,0,7899,7883,1,0,0,0,7899,7884,1,0,0, - 0,7899,7885,1,0,0,0,7899,7886,1,0,0,0,7899,7887,1,0,0,0,7899,7888, - 1,0,0,0,7899,7889,1,0,0,0,7899,7890,1,0,0,0,7899,7891,1,0,0,0,7899, - 7892,1,0,0,0,7899,7893,1,0,0,0,7899,7894,1,0,0,0,7899,7895,1,0,0, - 0,7899,7896,1,0,0,0,7899,7897,1,0,0,0,7899,7898,1,0,0,0,7900,847, - 1,0,0,0,7901,7902,5,498,0,0,7902,7903,3,930,465,0,7903,7904,5,7, - 0,0,7904,849,1,0,0,0,7905,7906,5,433,0,0,7906,7913,3,928,464,0,7907, - 7909,5,2,0,0,7908,7910,3,730,365,0,7909,7908,1,0,0,0,7909,7910,1, - 0,0,0,7910,7911,1,0,0,0,7911,7912,5,3,0,0,7912,7914,5,7,0,0,7913, - 7907,1,0,0,0,7913,7914,1,0,0,0,7914,7925,1,0,0,0,7915,7916,5,57, - 0,0,7916,7917,3,928,464,0,7917,7919,5,2,0,0,7918,7920,3,730,365, - 0,7919,7918,1,0,0,0,7919,7920,1,0,0,0,7920,7921,1,0,0,0,7921,7922, - 5,3,0,0,7922,7923,5,7,0,0,7923,7925,1,0,0,0,7924,7905,1,0,0,0,7924, - 7915,1,0,0,0,7925,851,1,0,0,0,7926,7927,3,858,429,0,7927,7928,3, - 844,422,0,7928,7929,3,930,465,0,7929,7930,5,7,0,0,7930,853,1,0,0, - 0,7931,7933,5,499,0,0,7932,7934,7,114,0,0,7933,7932,1,0,0,0,7933, - 7934,1,0,0,0,7934,7935,1,0,0,0,7935,7936,5,500,0,0,7936,7941,3,856, - 428,0,7937,7938,5,6,0,0,7938,7940,3,856,428,0,7939,7937,1,0,0,0, - 7940,7943,1,0,0,0,7941,7939,1,0,0,0,7941,7942,1,0,0,0,7942,7944, - 1,0,0,0,7943,7941,1,0,0,0,7944,7945,5,7,0,0,7945,855,1,0,0,0,7946, - 7947,3,858,429,0,7947,7948,3,844,422,0,7948,7949,3,818,409,0,7949, - 857,1,0,0,0,7950,7953,3,316,158,0,7951,7953,5,28,0,0,7952,7950,1, - 0,0,0,7952,7951,1,0,0,0,7953,7960,1,0,0,0,7954,7955,5,4,0,0,7955, - 7956,3,674,337,0,7956,7957,5,5,0,0,7957,7959,1,0,0,0,7958,7954,1, - 0,0,0,7959,7962,1,0,0,0,7960,7958,1,0,0,0,7960,7961,1,0,0,0,7961, - 859,1,0,0,0,7962,7960,1,0,0,0,7963,7964,5,220,0,0,7964,7965,3,930, - 465,0,7965,7969,5,93,0,0,7966,7968,3,846,423,0,7967,7966,1,0,0,0, - 7968,7971,1,0,0,0,7969,7967,1,0,0,0,7969,7970,1,0,0,0,7970,7983, - 1,0,0,0,7971,7969,1,0,0,0,7972,7973,5,502,0,0,7973,7974,3,674,337, - 0,7974,7978,5,93,0,0,7975,7977,3,846,423,0,7976,7975,1,0,0,0,7977, - 7980,1,0,0,0,7978,7976,1,0,0,0,7978,7979,1,0,0,0,7979,7982,1,0,0, - 0,7980,7978,1,0,0,0,7981,7972,1,0,0,0,7982,7985,1,0,0,0,7983,7981, - 1,0,0,0,7983,7984,1,0,0,0,7984,7987,1,0,0,0,7985,7983,1,0,0,0,7986, - 7988,3,862,431,0,7987,7986,1,0,0,0,7987,7988,1,0,0,0,7988,7989,1, - 0,0,0,7989,7990,5,454,0,0,7990,7991,5,220,0,0,7991,7992,5,7,0,0, - 7992,861,1,0,0,0,7993,7997,5,58,0,0,7994,7996,3,846,423,0,7995,7994, - 1,0,0,0,7996,7999,1,0,0,0,7997,7995,1,0,0,0,7997,7998,1,0,0,0,7998, - 863,1,0,0,0,7999,7997,1,0,0,0,8000,8002,5,40,0,0,8001,8003,3,930, - 465,0,8002,8001,1,0,0,0,8002,8003,1,0,0,0,8003,8013,1,0,0,0,8004, - 8005,5,102,0,0,8005,8006,3,730,365,0,8006,8010,5,93,0,0,8007,8009, - 3,846,423,0,8008,8007,1,0,0,0,8009,8012,1,0,0,0,8010,8008,1,0,0, - 0,8010,8011,1,0,0,0,8011,8014,1,0,0,0,8012,8010,1,0,0,0,8013,8004, - 1,0,0,0,8014,8015,1,0,0,0,8015,8013,1,0,0,0,8015,8016,1,0,0,0,8016, - 8018,1,0,0,0,8017,8019,3,862,431,0,8018,8017,1,0,0,0,8018,8019,1, - 0,0,0,8019,8020,1,0,0,0,8020,8021,5,454,0,0,8021,8022,5,40,0,0,8022, - 8023,5,7,0,0,8023,865,1,0,0,0,8024,8026,3,838,419,0,8025,8024,1, - 0,0,0,8025,8026,1,0,0,0,8026,8031,1,0,0,0,8027,8028,5,503,0,0,8028, - 8032,3,674,337,0,8029,8030,5,62,0,0,8030,8032,3,868,434,0,8031,8027, - 1,0,0,0,8031,8029,1,0,0,0,8031,8032,1,0,0,0,8032,8033,1,0,0,0,8033, - 8034,3,882,441,0,8034,867,1,0,0,0,8035,8036,3,314,157,0,8036,8059, - 5,68,0,0,8037,8039,3,818,409,0,8038,8040,3,534,267,0,8039,8038,1, - 0,0,0,8039,8040,1,0,0,0,8040,8060,1,0,0,0,8041,8060,3,560,280,0, - 8042,8060,3,520,260,0,8043,8044,5,202,0,0,8044,8047,3,674,337,0, - 8045,8046,5,100,0,0,8046,8048,3,730,365,0,8047,8045,1,0,0,0,8047, - 8048,1,0,0,0,8048,8060,1,0,0,0,8049,8051,5,504,0,0,8050,8049,1,0, - 0,0,8050,8051,1,0,0,0,8051,8052,1,0,0,0,8052,8053,3,674,337,0,8053, - 8054,5,24,0,0,8054,8057,3,674,337,0,8055,8056,5,147,0,0,8056,8058, - 3,674,337,0,8057,8055,1,0,0,0,8057,8058,1,0,0,0,8058,8060,1,0,0, - 0,8059,8037,1,0,0,0,8059,8041,1,0,0,0,8059,8042,1,0,0,0,8059,8043, - 1,0,0,0,8059,8050,1,0,0,0,8060,869,1,0,0,0,8061,8063,3,838,419,0, - 8062,8061,1,0,0,0,8062,8063,1,0,0,0,8063,8064,1,0,0,0,8064,8065, - 5,505,0,0,8065,8068,3,314,157,0,8066,8067,5,506,0,0,8067,8069,5, - 571,0,0,8068,8066,1,0,0,0,8068,8069,1,0,0,0,8069,8070,1,0,0,0,8070, - 8071,5,68,0,0,8071,8072,5,35,0,0,8072,8073,3,674,337,0,8073,8074, - 3,882,441,0,8074,871,1,0,0,0,8075,8077,7,115,0,0,8076,8078,3,928, - 464,0,8077,8076,1,0,0,0,8077,8078,1,0,0,0,8078,8081,1,0,0,0,8079, - 8080,5,102,0,0,8080,8082,3,930,465,0,8081,8079,1,0,0,0,8081,8082, - 1,0,0,0,8082,8083,1,0,0,0,8083,8084,5,7,0,0,8084,873,1,0,0,0,8085, - 8100,5,508,0,0,8086,8087,5,268,0,0,8087,8101,3,930,465,0,8088,8095, - 5,509,0,0,8089,8090,5,202,0,0,8090,8091,3,674,337,0,8091,8092,5, - 100,0,0,8092,8093,3,730,365,0,8093,8096,1,0,0,0,8094,8096,3,560, - 280,0,8095,8089,1,0,0,0,8095,8094,1,0,0,0,8096,8101,1,0,0,0,8097, - 8099,3,930,465,0,8098,8097,1,0,0,0,8098,8099,1,0,0,0,8099,8101,1, - 0,0,0,8100,8086,1,0,0,0,8100,8088,1,0,0,0,8100,8098,1,0,0,0,8101, - 8102,1,0,0,0,8102,8103,5,7,0,0,8103,875,1,0,0,0,8104,8134,5,510, - 0,0,8105,8107,7,116,0,0,8106,8105,1,0,0,0,8106,8107,1,0,0,0,8107, - 8120,1,0,0,0,8108,8121,3,826,413,0,8109,8110,5,511,0,0,8110,8121, - 3,808,404,0,8111,8118,3,808,404,0,8112,8113,5,6,0,0,8113,8115,3, - 674,337,0,8114,8112,1,0,0,0,8115,8116,1,0,0,0,8116,8114,1,0,0,0, - 8116,8117,1,0,0,0,8117,8119,1,0,0,0,8118,8114,1,0,0,0,8118,8119, - 1,0,0,0,8119,8121,1,0,0,0,8120,8108,1,0,0,0,8120,8109,1,0,0,0,8120, - 8111,1,0,0,0,8120,8121,1,0,0,0,8121,8131,1,0,0,0,8122,8123,5,100, - 0,0,8123,8128,3,878,439,0,8124,8125,5,6,0,0,8125,8127,3,878,439, - 0,8126,8124,1,0,0,0,8127,8130,1,0,0,0,8128,8126,1,0,0,0,8128,8129, - 1,0,0,0,8129,8132,1,0,0,0,8130,8128,1,0,0,0,8131,8122,1,0,0,0,8131, - 8132,1,0,0,0,8132,8133,1,0,0,0,8133,8135,5,7,0,0,8134,8106,1,0,0, - 0,8134,8135,1,0,0,0,8135,877,1,0,0,0,8136,8137,3,826,413,0,8137, - 8138,5,10,0,0,8138,8139,3,674,337,0,8139,879,1,0,0,0,8140,8141,5, - 518,0,0,8141,8144,3,930,465,0,8142,8143,5,6,0,0,8143,8145,3,930, - 465,0,8144,8142,1,0,0,0,8144,8145,1,0,0,0,8145,8146,1,0,0,0,8146, - 8147,5,7,0,0,8147,881,1,0,0,0,8148,8152,5,519,0,0,8149,8151,3,846, - 423,0,8150,8149,1,0,0,0,8151,8154,1,0,0,0,8152,8150,1,0,0,0,8152, - 8153,1,0,0,0,8153,8155,1,0,0,0,8154,8152,1,0,0,0,8155,8156,5,454, - 0,0,8156,8158,5,519,0,0,8157,8159,3,928,464,0,8158,8157,1,0,0,0, - 8158,8159,1,0,0,0,8159,8160,1,0,0,0,8160,8161,5,7,0,0,8161,883,1, - 0,0,0,8162,8164,3,4,2,0,8163,8165,3,888,444,0,8164,8163,1,0,0,0, - 8164,8165,1,0,0,0,8165,8166,1,0,0,0,8166,8167,5,7,0,0,8167,885,1, - 0,0,0,8168,8169,5,202,0,0,8169,8185,3,674,337,0,8170,8172,3,888, - 444,0,8171,8170,1,0,0,0,8171,8172,1,0,0,0,8172,8175,1,0,0,0,8173, - 8174,5,100,0,0,8174,8176,3,730,365,0,8175,8173,1,0,0,0,8175,8176, - 1,0,0,0,8176,8186,1,0,0,0,8177,8178,5,100,0,0,8178,8180,3,730,365, - 0,8179,8177,1,0,0,0,8179,8180,1,0,0,0,8180,8182,1,0,0,0,8181,8183, - 3,888,444,0,8182,8181,1,0,0,0,8182,8183,1,0,0,0,8183,8186,1,0,0, - 0,8184,8186,1,0,0,0,8185,8171,1,0,0,0,8185,8179,1,0,0,0,8185,8184, - 1,0,0,0,8186,8187,1,0,0,0,8187,8188,5,7,0,0,8188,887,1,0,0,0,8189, - 8191,5,71,0,0,8190,8192,5,346,0,0,8191,8190,1,0,0,0,8191,8192,1, - 0,0,0,8192,8193,1,0,0,0,8193,8194,3,730,365,0,8194,889,1,0,0,0,8195, - 8227,5,520,0,0,8196,8201,3,922,461,0,8197,8199,5,269,0,0,8198,8197, - 1,0,0,0,8198,8199,1,0,0,0,8199,8200,1,0,0,0,8200,8202,5,324,0,0, - 8201,8198,1,0,0,0,8201,8202,1,0,0,0,8202,8203,1,0,0,0,8203,8211, - 5,62,0,0,8204,8212,3,560,280,0,8205,8206,5,202,0,0,8206,8209,3,930, - 465,0,8207,8208,5,100,0,0,8208,8210,3,730,365,0,8209,8207,1,0,0, - 0,8209,8210,1,0,0,0,8210,8212,1,0,0,0,8211,8204,1,0,0,0,8211,8205, - 1,0,0,0,8212,8228,1,0,0,0,8213,8225,3,818,409,0,8214,8215,5,2,0, - 0,8215,8220,3,892,446,0,8216,8217,5,6,0,0,8217,8219,3,892,446,0, - 8218,8216,1,0,0,0,8219,8222,1,0,0,0,8220,8218,1,0,0,0,8220,8221, - 1,0,0,0,8221,8223,1,0,0,0,8222,8220,1,0,0,0,8223,8224,5,3,0,0,8224, - 8226,1,0,0,0,8225,8214,1,0,0,0,8225,8226,1,0,0,0,8226,8228,1,0,0, - 0,8227,8196,1,0,0,0,8227,8213,1,0,0,0,8228,8229,1,0,0,0,8229,8230, - 5,7,0,0,8230,891,1,0,0,0,8231,8232,3,818,409,0,8232,8233,5,20,0, - 0,8233,8235,1,0,0,0,8234,8231,1,0,0,0,8234,8235,1,0,0,0,8235,8236, - 1,0,0,0,8236,8237,3,674,337,0,8237,893,1,0,0,0,8238,8240,5,61,0, - 0,8239,8241,3,896,448,0,8240,8239,1,0,0,0,8240,8241,1,0,0,0,8241, - 8243,1,0,0,0,8242,8244,3,332,166,0,8243,8242,1,0,0,0,8243,8244,1, - 0,0,0,8244,8245,1,0,0,0,8245,8246,3,922,461,0,8246,8247,5,71,0,0, - 8247,8248,3,730,365,0,8248,8249,5,7,0,0,8249,895,1,0,0,0,8250,8265, - 5,268,0,0,8251,8265,5,293,0,0,8252,8265,5,207,0,0,8253,8265,5,249, - 0,0,8254,8256,7,50,0,0,8255,8254,1,0,0,0,8255,8256,1,0,0,0,8256, - 8257,1,0,0,0,8257,8265,3,674,337,0,8258,8265,5,30,0,0,8259,8262, - 7,117,0,0,8260,8263,3,674,337,0,8261,8263,5,30,0,0,8262,8260,1,0, - 0,0,8262,8261,1,0,0,0,8262,8263,1,0,0,0,8263,8265,1,0,0,0,8264,8250, - 1,0,0,0,8264,8251,1,0,0,0,8264,8252,1,0,0,0,8264,8253,1,0,0,0,8264, - 8255,1,0,0,0,8264,8258,1,0,0,0,8264,8259,1,0,0,0,8265,897,1,0,0, - 0,8266,8268,5,265,0,0,8267,8269,3,896,448,0,8268,8267,1,0,0,0,8268, - 8269,1,0,0,0,8269,8270,1,0,0,0,8270,8271,3,922,461,0,8271,8272,5, - 7,0,0,8272,899,1,0,0,0,8273,8275,3,572,286,0,8274,8273,1,0,0,0,8274, - 8275,1,0,0,0,8275,8276,1,0,0,0,8276,8277,5,525,0,0,8277,8279,5,71, - 0,0,8278,8280,5,81,0,0,8279,8278,1,0,0,0,8279,8280,1,0,0,0,8280, - 8281,1,0,0,0,8281,8283,3,774,387,0,8282,8284,5,9,0,0,8283,8282,1, - 0,0,0,8283,8284,1,0,0,0,8284,8289,1,0,0,0,8285,8287,5,36,0,0,8286, - 8285,1,0,0,0,8286,8287,1,0,0,0,8287,8288,1,0,0,0,8288,8290,3,818, - 409,0,8289,8286,1,0,0,0,8289,8290,1,0,0,0,8290,8291,1,0,0,0,8291, - 8292,5,100,0,0,8292,8293,3,902,451,0,8293,8294,5,80,0,0,8294,8296, - 3,674,337,0,8295,8297,3,904,452,0,8296,8295,1,0,0,0,8297,8298,1, - 0,0,0,8298,8296,1,0,0,0,8298,8299,1,0,0,0,8299,901,1,0,0,0,8300, - 8302,5,81,0,0,8301,8300,1,0,0,0,8301,8302,1,0,0,0,8302,8303,1,0, - 0,0,8303,8305,3,774,387,0,8304,8306,5,9,0,0,8305,8304,1,0,0,0,8305, - 8306,1,0,0,0,8306,8312,1,0,0,0,8307,8310,3,564,282,0,8308,8310,3, - 608,304,0,8309,8307,1,0,0,0,8309,8308,1,0,0,0,8310,8312,1,0,0,0, - 8311,8301,1,0,0,0,8311,8309,1,0,0,0,8312,8317,1,0,0,0,8313,8315, - 5,36,0,0,8314,8313,1,0,0,0,8314,8315,1,0,0,0,8315,8316,1,0,0,0,8316, - 8318,3,818,409,0,8317,8314,1,0,0,0,8317,8318,1,0,0,0,8318,903,1, - 0,0,0,8319,8320,5,102,0,0,8320,8323,5,526,0,0,8321,8322,5,33,0,0, - 8322,8324,3,674,337,0,8323,8321,1,0,0,0,8323,8324,1,0,0,0,8324,8325, - 1,0,0,0,8325,8330,5,93,0,0,8326,8331,3,908,454,0,8327,8331,5,182, - 0,0,8328,8329,5,57,0,0,8329,8331,5,270,0,0,8330,8326,1,0,0,0,8330, - 8327,1,0,0,0,8330,8328,1,0,0,0,8331,8346,1,0,0,0,8332,8333,5,102, - 0,0,8333,8334,5,77,0,0,8334,8337,5,526,0,0,8335,8336,5,33,0,0,8336, - 8338,3,674,337,0,8337,8335,1,0,0,0,8337,8338,1,0,0,0,8338,8339,1, - 0,0,0,8339,8343,5,93,0,0,8340,8344,3,906,453,0,8341,8342,5,57,0, - 0,8342,8344,5,270,0,0,8343,8340,1,0,0,0,8343,8341,1,0,0,0,8344,8346, - 1,0,0,0,8345,8319,1,0,0,0,8345,8332,1,0,0,0,8346,905,1,0,0,0,8347, - 8349,5,241,0,0,8348,8350,3,144,72,0,8349,8348,1,0,0,0,8349,8350, - 1,0,0,0,8350,8354,1,0,0,0,8351,8352,5,463,0,0,8352,8353,7,76,0,0, - 8353,8355,5,450,0,0,8354,8351,1,0,0,0,8354,8355,1,0,0,0,8355,8356, - 1,0,0,0,8356,8357,3,910,455,0,8357,907,1,0,0,0,8358,8359,5,369,0, - 0,8359,8377,5,333,0,0,8360,8361,3,800,400,0,8361,8362,5,10,0,0,8362, - 8363,3,912,456,0,8363,8378,1,0,0,0,8364,8365,3,144,72,0,8365,8366, - 5,10,0,0,8366,8367,5,2,0,0,8367,8372,3,912,456,0,8368,8369,5,6,0, - 0,8369,8371,3,912,456,0,8370,8368,1,0,0,0,8371,8374,1,0,0,0,8372, - 8370,1,0,0,0,8372,8373,1,0,0,0,8373,8375,1,0,0,0,8374,8372,1,0,0, - 0,8375,8376,5,3,0,0,8376,8378,1,0,0,0,8377,8360,1,0,0,0,8377,8364, - 1,0,0,0,8378,8379,1,0,0,0,8379,8377,1,0,0,0,8379,8380,1,0,0,0,8380, - 909,1,0,0,0,8381,8382,5,422,0,0,8382,8383,5,2,0,0,8383,8388,3,912, - 456,0,8384,8385,5,6,0,0,8385,8387,3,912,456,0,8386,8384,1,0,0,0, - 8387,8390,1,0,0,0,8388,8386,1,0,0,0,8388,8389,1,0,0,0,8389,8391, - 1,0,0,0,8390,8388,1,0,0,0,8391,8392,5,3,0,0,8392,8396,1,0,0,0,8393, - 8394,5,53,0,0,8394,8396,5,422,0,0,8395,8381,1,0,0,0,8395,8393,1, - 0,0,0,8396,911,1,0,0,0,8397,8400,3,588,294,0,8398,8400,5,53,0,0, - 8399,8397,1,0,0,0,8399,8398,1,0,0,0,8400,913,1,0,0,0,8401,8402,5, - 157,0,0,8402,8403,3,922,461,0,8403,8404,5,7,0,0,8404,915,1,0,0,0, - 8405,8406,5,78,0,0,8406,8407,5,7,0,0,8407,917,1,0,0,0,8408,8414, - 7,67,0,0,8409,8411,5,33,0,0,8410,8412,5,269,0,0,8411,8410,1,0,0, - 0,8411,8412,1,0,0,0,8412,8413,1,0,0,0,8413,8415,5,153,0,0,8414,8409, - 1,0,0,0,8414,8415,1,0,0,0,8415,8416,1,0,0,0,8416,8417,5,7,0,0,8417, - 919,1,0,0,0,8418,8419,5,333,0,0,8419,8420,3,316,158,0,8420,8421, - 5,94,0,0,8421,8422,5,53,0,0,8422,8423,5,7,0,0,8423,8431,1,0,0,0, - 8424,8427,5,313,0,0,8425,8428,3,316,158,0,8426,8428,5,30,0,0,8427, - 8425,1,0,0,0,8427,8426,1,0,0,0,8428,8429,1,0,0,0,8429,8431,5,7,0, - 0,8430,8418,1,0,0,0,8430,8424,1,0,0,0,8431,921,1,0,0,0,8432,8435, - 3,818,409,0,8433,8435,5,28,0,0,8434,8432,1,0,0,0,8434,8433,1,0,0, - 0,8435,923,1,0,0,0,8436,8453,5,517,0,0,8437,8438,5,102,0,0,8438, - 8443,3,926,463,0,8439,8440,5,82,0,0,8440,8442,3,926,463,0,8441,8439, - 1,0,0,0,8442,8445,1,0,0,0,8443,8441,1,0,0,0,8443,8444,1,0,0,0,8444, - 8446,1,0,0,0,8445,8443,1,0,0,0,8446,8450,5,93,0,0,8447,8449,3,846, - 423,0,8448,8447,1,0,0,0,8449,8452,1,0,0,0,8450,8448,1,0,0,0,8450, - 8451,1,0,0,0,8451,8454,1,0,0,0,8452,8450,1,0,0,0,8453,8437,1,0,0, - 0,8454,8455,1,0,0,0,8455,8453,1,0,0,0,8455,8456,1,0,0,0,8456,925, - 1,0,0,0,8457,8461,3,928,464,0,8458,8459,5,511,0,0,8459,8461,3,808, - 404,0,8460,8457,1,0,0,0,8460,8458,1,0,0,0,8461,927,1,0,0,0,8462, - 8465,3,818,409,0,8463,8465,3,828,414,0,8464,8462,1,0,0,0,8464,8463, - 1,0,0,0,8465,929,1,0,0,0,8466,8468,3,756,378,0,8467,8466,1,0,0,0, - 8467,8468,1,0,0,0,8468,8470,1,0,0,0,8469,8471,3,580,290,0,8470,8469, - 1,0,0,0,8470,8471,1,0,0,0,8471,8473,1,0,0,0,8472,8474,3,610,305, - 0,8473,8472,1,0,0,0,8473,8474,1,0,0,0,8474,8476,1,0,0,0,8475,8477, - 3,638,319,0,8476,8475,1,0,0,0,8476,8477,1,0,0,0,8477,8479,1,0,0, - 0,8478,8480,3,600,300,0,8479,8478,1,0,0,0,8479,8480,1,0,0,0,8480, - 8483,1,0,0,0,8481,8482,5,67,0,0,8482,8484,3,674,337,0,8483,8481, - 1,0,0,0,8483,8484,1,0,0,0,8484,8486,1,0,0,0,8485,8487,3,702,351, - 0,8486,8485,1,0,0,0,8486,8487,1,0,0,0,8487,931,1,0,0,0,1187,935, - 942,1062,1064,1073,1078,1084,1119,1129,1135,1140,1147,1152,1159, - 1170,1178,1182,1194,1200,1206,1210,1215,1219,1232,1242,1244,1250, - 1255,1268,1271,1276,1281,1292,1296,1308,1312,1315,1319,1331,1349, - 1356,1364,1369,1376,1384,1390,1398,1406,1410,1424,1429,1434,1446, - 1452,1464,1469,1479,1485,1490,1498,1503,1510,1515,1520,1530,1535, - 1540,1547,1551,1565,1571,1577,1582,1589,1601,1609,1617,1633,1642, - 1651,1660,1664,1676,1684,1694,1714,1719,1722,1729,1732,1736,1740, - 1743,1748,1753,1757,1766,1772,1776,1785,1788,1794,1803,1815,1819, - 1823,1828,1831,1837,1839,1841,1845,1851,1855,1860,1865,1869,1872, - 1879,1892,1905,1929,1939,1946,1951,1955,1962,1967,1970,1972,1977, - 1981,1985,1989,1994,1997,2001,2004,2008,2016,2021,2024,2028,2034, - 2043,2047,2053,2055,2064,2069,2081,2086,2090,2094,2099,2103,2106, - 2109,2112,2115,2118,2123,2126,2129,2132,2135,2138,2144,2148,2151, - 2154,2157,2160,2162,2169,2177,2187,2192,2202,2205,2210,2215,2220, - 2223,2228,2237,2239,2243,2246,2250,2255,2260,2264,2267,2271,2274, - 2279,2282,2287,2290,2294,2297,2300,2305,2308,2316,2328,2332,2339, - 2344,2347,2350,2353,2358,2369,2375,2379,2382,2385,2390,2397,2400, - 2404,2412,2417,2420,2423,2430,2435,2444,2447,2450,2455,2458,2470, - 2480,2497,2501,2505,2507,2524,2526,2542,2553,2556,2559,2568,2577, - 2593,2596,2599,2607,2611,2618,2627,2631,2637,2641,2644,2647,2650, - 2653,2659,2663,2668,2672,2675,2678,2681,2686,2692,2696,2700,2704, - 2710,2712,2717,2723,2729,2733,2748,2753,2756,2758,2761,2765,2769, - 2772,2775,2783,2789,2791,2797,2802,2807,2811,2818,2820,2831,2870, - 2880,2882,2885,2889,2893,2903,2905,2911,2913,2922,2934,2948,2953, - 2956,2963,2968,2976,2978,2984,2989,2993,2998,3004,3011,3017,3019, - 3028,3034,3042,3048,3053,3058,3066,3081,3083,3087,3091,3094,3097, - 3106,3109,3112,3118,3124,3128,3140,3146,3149,3154,3158,3165,3175, - 3177,3201,3213,3218,3220,3224,3227,3230,3240,3243,3253,3258,3263, - 3266,3269,3277,3283,3290,3298,3301,3312,3316,3322,3329,3332,3341, - 3355,3358,3372,3383,3386,3398,3403,3416,3421,3434,3443,3446,3449, - 3456,3459,3471,3477,3479,3487,3495,3503,3515,3520,3531,3542,3550, - 3558,3565,3572,3574,3577,3582,3587,3606,3615,3618,3645,3654,3657, - 3661,3665,3669,3676,3680,3684,3688,3692,3697,3701,3706,3712,3717, - 3724,3728,3734,3738,3743,3751,3757,3762,3769,3774,3778,3783,3789, - 3796,3801,3808,3813,3820,3824,3832,3836,3838,3841,3846,3856,3871, - 3874,3882,3889,3894,3900,3904,3911,3916,3919,3922,3926,3935,3953, - 3956,3988,3993,3999,4019,4024,4030,4033,4037,4041,4047,4050,4054, - 4058,4063,4066,4069,4072,4085,4091,4099,4106,4111,4114,4121,4124, - 4132,4135,4140,4147,4150,4170,4182,4185,4191,4196,4205,4213,4218, - 4224,4231,4239,4242,4253,4255,4269,4275,4283,4285,4291,4295,4298, - 4301,4306,4311,4315,4318,4321,4324,4327,4335,4346,4349,4352,4357, - 4360,4364,4368,4374,4382,4385,4398,4403,4405,4410,4417,4424,4433, - 4441,4449,4456,4464,4471,4479,4483,4487,4489,4495,4500,4504,4511, - 4516,4521,4526,4528,4538,4548,4564,4582,4594,4601,4616,4621,4624, - 4629,4634,4639,4642,4645,4650,4657,4661,4666,4673,4677,4683,4692, - 4701,4713,4715,4728,4734,4738,4740,4747,4760,4767,4769,4785,4789, - 4793,4798,4803,4808,4813,4816,4828,4881,4890,4894,4903,4907,4916, - 4920,4925,4928,4932,4937,4939,4948,4953,4964,4968,4982,4990,5028, - 5030,5049,5052,5079,5083,5087,5091,5095,5098,5113,5120,5134,5147, - 5172,5191,5206,5222,5229,5240,5243,5262,5265,5278,5282,5302,5314, - 5318,5340,5344,5354,5358,5364,5368,5372,5376,5383,5388,5399,5403, - 5406,5411,5417,5428,5432,5435,5439,5443,5446,5456,5459,5463,5468, - 5474,5477,5482,5485,5492,5494,5500,5504,5513,5518,5520,5530,5533, - 5538,5546,5549,5554,5556,5558,5564,5581,5587,5600,5606,5610,5615, - 5645,5660,5665,5669,5682,5686,5688,5697,5703,5705,5709,5712,5715, - 5718,5721,5723,5726,5730,5738,5743,5746,5752,5756,5760,5765,5767, - 5771,5775,5782,5788,5792,5794,5796,5809,5817,5825,5836,5845,5850, - 5854,5858,5865,5868,5870,5878,5882,5885,5892,5899,5904,5911,5914, - 5916,5919,5925,5930,5934,5941,5951,5958,5961,5964,5968,5979,5982, - 5985,5988,5991,5998,6001,6004,6011,6023,6030,6032,6037,6042,6044, - 6050,6057,6062,6067,6071,6075,6079,6081,6085,6089,6092,6095,6097, - 6107,6109,6114,6118,6123,6127,6134,6139,6143,6146,6152,6155,6174, - 6181,6185,6188,6192,6196,6199,6202,6207,6216,6223,6227,6231,6235, - 6238,6240,6245,6249,6254,6260,6267,6272,6277,6286,6293,6301,6312, - 6317,6321,6324,6328,6333,6337,6342,6350,6361,6366,6370,6373,6376, - 6378,6381,6384,6387,6391,6395,6399,6401,6410,6415,6421,6425,6427, - 6434,6439,6445,6447,6451,6458,6463,6466,6472,6476,6482,6491,6497, - 6499,6504,6507,6516,6523,6525,6532,6537,6540,6550,6561,6566,6570, - 6578,6588,6595,6601,6612,6618,6628,6637,6641,6644,6646,6648,6652, - 6660,6663,6668,6673,6680,6682,6688,6692,6695,6700,6703,6705,6711, - 6720,6726,6729,6737,6740,6744,6750,6752,6755,6759,6764,6771,6778, - 6780,6786,6788,6793,6795,6799,6808,6812,6820,6822,6836,6839,6847, - 6856,6862,6867,6875,6877,6882,6886,6891,6896,6902,6918,6920,6929, - 6944,6949,6952,6958,6963,6976,6981,6985,6992,7011,7023,7028,7036, - 7038,7040,7049,7052,7057,7062,7065,7076,7084,7089,7091,7094,7098, - 7109,7130,7138,7151,7161,7167,7173,7176,7179,7205,7207,7228,7238, - 7251,7256,7260,7262,7274,7281,7287,7293,7297,7308,7318,7322,7327, - 7330,7333,7342,7353,7355,7359,7364,7373,7378,7386,7396,7404,7408, - 7411,7418,7426,7430,7437,7445,7447,7456,7459,7471,7480,7487,7496, - 7506,7511,7515,7517,7520,7525,7530,7538,7546,7549,7556,7564,7572, - 7580,7597,7604,7612,7629,7635,7641,7649,7655,7660,7668,7673,7676, - 7685,7692,7697,7701,7706,7712,7717,7725,7780,7787,7793,7795,7797, - 7799,7805,7809,7813,7824,7827,7831,7835,7839,7842,7845,7848,7857, - 7862,7866,7899,7909,7913,7919,7924,7933,7941,7952,7960,7969,7978, - 7983,7987,7997,8002,8010,8015,8018,8025,8031,8039,8047,8050,8057, - 8059,8062,8068,8077,8081,8095,8098,8100,8106,8116,8118,8120,8128, - 8131,8134,8144,8152,8158,8164,8171,8175,8179,8182,8185,8191,8198, - 8201,8209,8211,8220,8225,8227,8234,8240,8243,8255,8262,8264,8268, - 8274,8279,8283,8286,8289,8298,8301,8305,8309,8311,8314,8317,8323, - 8330,8337,8343,8345,8349,8354,8372,8377,8379,8388,8395,8399,8411, - 8414,8427,8430,8434,8443,8450,8455,8460,8464,8467,8470,8473,8476, - 8479,8483,8486 + 210,210,9938,0,939,1,0,0,0,2,944,1,0,0,0,4,1068,1,0,0,0,6,1070,1, + 0,0,0,8,1073,1,0,0,0,10,1123,1,0,0,0,12,1133,1,0,0,0,14,1135,1,0, + 0,0,16,1147,1,0,0,0,18,1159,1,0,0,0,20,1170,1,0,0,0,22,1204,1,0, + 0,0,24,1248,1,0,0,0,26,1250,1,0,0,0,28,1262,1,0,0,0,30,1269,1,0, + 0,0,32,1288,1,0,0,0,34,1296,1,0,0,0,36,1298,1,0,0,0,38,1312,1,0, + 0,0,40,1316,1,0,0,0,42,1353,1,0,0,0,44,1355,1,0,0,0,46,1363,1,0, + 0,0,48,1373,1,0,0,0,50,1380,1,0,0,0,52,1388,1,0,0,0,54,1394,1,0, + 0,0,56,1410,1,0,0,0,58,1414,1,0,0,0,60,1416,1,0,0,0,62,1428,1,0, + 0,0,64,1433,1,0,0,0,66,1438,1,0,0,0,68,1440,1,0,0,0,70,1452,1,0, + 0,0,72,1460,1,0,0,0,74,1462,1,0,0,0,76,1586,1,0,0,0,78,1588,1,0, + 0,0,80,1605,1,0,0,0,82,1607,1,0,0,0,84,1621,1,0,0,0,86,1623,1,0, + 0,0,88,1637,1,0,0,0,90,1639,1,0,0,0,92,1876,1,0,0,0,94,1883,1,0, + 0,0,96,1885,1,0,0,0,98,1887,1,0,0,0,100,1890,1,0,0,0,102,1901,1, + 0,0,0,104,1904,1,0,0,0,106,1933,1,0,0,0,108,1935,1,0,0,0,110,1976, + 1,0,0,0,112,1978,1,0,0,0,114,2032,1,0,0,0,116,2073,1,0,0,0,118,2075, + 1,0,0,0,120,2092,1,0,0,0,122,2173,1,0,0,0,124,2175,1,0,0,0,126,2186, + 1,0,0,0,128,2209,1,0,0,0,130,2227,1,0,0,0,132,2229,1,0,0,0,134,2264, + 1,0,0,0,136,2357,1,0,0,0,138,2362,1,0,0,0,140,2364,1,0,0,0,142,2462, + 1,0,0,0,144,2464,1,0,0,0,146,2468,1,0,0,0,148,2479,1,0,0,0,150,2487, + 1,0,0,0,152,2490,1,0,0,0,154,2493,1,0,0,0,156,2511,1,0,0,0,158,2513, + 1,0,0,0,160,2517,1,0,0,0,162,2530,1,0,0,0,164,2532,1,0,0,0,166,2537, + 1,0,0,0,168,2557,1,0,0,0,170,2565,1,0,0,0,172,2572,1,0,0,0,174,2574, + 1,0,0,0,176,2583,1,0,0,0,178,2586,1,0,0,0,180,2590,1,0,0,0,182,2594, + 1,0,0,0,184,2619,1,0,0,0,186,2629,1,0,0,0,188,2643,1,0,0,0,190,2659, + 1,0,0,0,192,2665,1,0,0,0,194,2692,1,0,0,0,196,2702,1,0,0,0,198,2718, + 1,0,0,0,200,2762,1,0,0,0,202,2769,1,0,0,0,204,2771,1,0,0,0,206,2797, + 1,0,0,0,208,2808,1,0,0,0,210,2827,1,0,0,0,212,2838,1,0,0,0,214,2876, + 1,0,0,0,216,2897,1,0,0,0,218,2899,1,0,0,0,220,2919,1,0,0,0,222,2931, + 1,0,0,0,224,2943,1,0,0,0,226,2946,1,0,0,0,228,2949,1,0,0,0,230,2969, + 1,0,0,0,232,2974,1,0,0,0,234,3023,1,0,0,0,236,3025,1,0,0,0,238,3048, + 1,0,0,0,240,3064,1,0,0,0,242,3076,1,0,0,0,244,3103,1,0,0,0,246,3118, + 1,0,0,0,248,3181,1,0,0,0,250,3183,1,0,0,0,252,3188,1,0,0,0,254,3194, + 1,0,0,0,256,3281,1,0,0,0,258,3287,1,0,0,0,260,3289,1,0,0,0,262,3305, + 1,0,0,0,264,3307,1,0,0,0,266,3316,1,0,0,0,268,3320,1,0,0,0,270,3333, + 1,0,0,0,272,3345,1,0,0,0,274,3347,1,0,0,0,276,3369,1,0,0,0,278,3381, + 1,0,0,0,280,3392,1,0,0,0,282,3483,1,0,0,0,284,3485,1,0,0,0,286,3496, + 1,0,0,0,288,3507,1,0,0,0,290,3509,1,0,0,0,292,3535,1,0,0,0,294,3537, + 1,0,0,0,296,3541,1,0,0,0,298,3591,1,0,0,0,300,3593,1,0,0,0,302,3599, + 1,0,0,0,304,3624,1,0,0,0,306,3628,1,0,0,0,308,3842,1,0,0,0,310,3860, + 1,0,0,0,312,3886,1,0,0,0,314,3888,1,0,0,0,316,3896,1,0,0,0,318,3902, + 1,0,0,0,320,3906,1,0,0,0,322,3926,1,0,0,0,324,3932,1,0,0,0,326,3999, + 1,0,0,0,328,4030,1,0,0,0,330,4076,1,0,0,0,332,4078,1,0,0,0,334,4080, + 1,0,0,0,336,4091,1,0,0,0,338,4128,1,0,0,0,340,4130,1,0,0,0,342,4136, + 1,0,0,0,344,4186,1,0,0,0,346,4189,1,0,0,0,348,4203,1,0,0,0,350,4224, + 1,0,0,0,352,4248,1,0,0,0,354,4289,1,0,0,0,356,4291,1,0,0,0,358,4293, + 1,0,0,0,360,4333,1,0,0,0,362,4350,1,0,0,0,364,4370,1,0,0,0,366,4423, + 1,0,0,0,368,4426,1,0,0,0,370,4432,1,0,0,0,372,4440,1,0,0,0,374,4453, + 1,0,0,0,376,4455,1,0,0,0,378,4468,1,0,0,0,380,4470,1,0,0,0,382,4483, + 1,0,0,0,384,4493,1,0,0,0,386,4504,1,0,0,0,388,4515,1,0,0,0,390,4517, + 1,0,0,0,392,4522,1,0,0,0,394,4536,1,0,0,0,396,4568,1,0,0,0,398,4605, + 1,0,0,0,400,4607,1,0,0,0,402,4610,1,0,0,0,404,4613,1,0,0,0,406,4630, + 1,0,0,0,408,4651,1,0,0,0,410,4667,1,0,0,0,412,4683,1,0,0,0,414,4705, + 1,0,0,0,416,4710,1,0,0,0,418,4713,1,0,0,0,420,4721,1,0,0,0,422,4746, + 1,0,0,0,424,4749,1,0,0,0,426,4777,1,0,0,0,428,4782,1,0,0,0,430,4822, + 1,0,0,0,432,5034,1,0,0,0,434,5036,1,0,0,0,436,5124,1,0,0,0,438,5126, + 1,0,0,0,440,5132,1,0,0,0,442,5143,1,0,0,0,444,5153,1,0,0,0,446,5233, + 1,0,0,0,448,5235,1,0,0,0,450,5249,1,0,0,0,452,5271,1,0,0,0,454,5344, + 1,0,0,0,456,5346,1,0,0,0,458,5387,1,0,0,0,460,5389,1,0,0,0,462,5394, + 1,0,0,0,464,5397,1,0,0,0,466,5400,1,0,0,0,468,5450,1,0,0,0,470,5452, + 1,0,0,0,472,5463,1,0,0,0,474,5465,1,0,0,0,476,5475,1,0,0,0,478,5510, + 1,0,0,0,480,5513,1,0,0,0,482,5534,1,0,0,0,484,5544,1,0,0,0,486,5564, + 1,0,0,0,488,5570,1,0,0,0,490,5576,1,0,0,0,492,5581,1,0,0,0,494,5594, + 1,0,0,0,496,5621,1,0,0,0,498,5669,1,0,0,0,500,5671,1,0,0,0,502,5709, + 1,0,0,0,504,5711,1,0,0,0,506,5732,1,0,0,0,508,5752,1,0,0,0,510,5756, + 1,0,0,0,512,5771,1,0,0,0,514,5773,1,0,0,0,516,5777,1,0,0,0,518,5781, + 1,0,0,0,520,5789,1,0,0,0,522,5813,1,0,0,0,524,5815,1,0,0,0,526,5826, + 1,0,0,0,528,5834,1,0,0,0,530,5849,1,0,0,0,532,5874,1,0,0,0,534,5876, + 1,0,0,0,536,5880,1,0,0,0,538,5889,1,0,0,0,540,5929,1,0,0,0,542,5940, + 1,0,0,0,544,5948,1,0,0,0,546,5951,1,0,0,0,548,5955,1,0,0,0,550,5970, + 1,0,0,0,552,5995,1,0,0,0,554,6010,1,0,0,0,556,6036,1,0,0,0,558,6038, + 1,0,0,0,560,6061,1,0,0,0,562,6063,1,0,0,0,564,6071,1,0,0,0,566,6089, + 1,0,0,0,568,6113,1,0,0,0,570,6125,1,0,0,0,572,6129,1,0,0,0,574,6141, + 1,0,0,0,576,6161,1,0,0,0,578,6169,1,0,0,0,580,6183,1,0,0,0,582,6206, + 1,0,0,0,584,6208,1,0,0,0,586,6213,1,0,0,0,588,6223,1,0,0,0,590,6244, + 1,0,0,0,592,6246,1,0,0,0,594,6255,1,0,0,0,596,6266,1,0,0,0,598,6276, + 1,0,0,0,600,6278,1,0,0,0,602,6285,1,0,0,0,604,6316,1,0,0,0,606,6346, + 1,0,0,0,608,6348,1,0,0,0,610,6357,1,0,0,0,612,6360,1,0,0,0,614,6418, + 1,0,0,0,616,6453,1,0,0,0,618,6456,1,0,0,0,620,6477,1,0,0,0,622,6479, + 1,0,0,0,624,6487,1,0,0,0,626,6504,1,0,0,0,628,6530,1,0,0,0,630,6532, + 1,0,0,0,632,6540,1,0,0,0,634,6547,1,0,0,0,636,6571,1,0,0,0,638,6577, + 1,0,0,0,640,6585,1,0,0,0,642,6588,1,0,0,0,644,6595,1,0,0,0,646,6603, + 1,0,0,0,648,6608,1,0,0,0,650,6638,1,0,0,0,652,6665,1,0,0,0,654,6693, + 1,0,0,0,656,6710,1,0,0,0,658,6716,1,0,0,0,660,6734,1,0,0,0,662,6736, + 1,0,0,0,664,6740,1,0,0,0,666,6757,1,0,0,0,668,6762,1,0,0,0,670,6800, + 1,0,0,0,672,6802,1,0,0,0,674,6806,1,0,0,0,676,6808,1,0,0,0,678,6817, + 1,0,0,0,680,6901,1,0,0,0,682,6907,1,0,0,0,684,7016,1,0,0,0,686,7048, + 1,0,0,0,688,7099,1,0,0,0,690,7103,1,0,0,0,692,7279,1,0,0,0,694,7281, + 1,0,0,0,696,7289,1,0,0,0,698,7294,1,0,0,0,700,7296,1,0,0,0,702,7304, + 1,0,0,0,704,7307,1,0,0,0,706,7316,1,0,0,0,708,7320,1,0,0,0,710,7325, + 1,0,0,0,712,7342,1,0,0,0,714,7369,1,0,0,0,716,7378,1,0,0,0,718,7380, + 1,0,0,0,720,7387,1,0,0,0,722,7391,1,0,0,0,724,7393,1,0,0,0,726,7401, + 1,0,0,0,728,7409,1,0,0,0,730,7416,1,0,0,0,732,7418,1,0,0,0,734,7431, + 1,0,0,0,736,7435,1,0,0,0,738,7437,1,0,0,0,740,7452,1,0,0,0,742,7454, + 1,0,0,0,744,7476,1,0,0,0,746,7478,1,0,0,0,748,7501,1,0,0,0,750,7503, + 1,0,0,0,752,7525,1,0,0,0,754,7528,1,0,0,0,756,7535,1,0,0,0,758,7538, + 1,0,0,0,760,7555,1,0,0,0,762,7562,1,0,0,0,764,7567,1,0,0,0,766,7575, + 1,0,0,0,768,7583,1,0,0,0,770,7591,1,0,0,0,772,7599,1,0,0,0,774,7601, + 1,0,0,0,776,7603,1,0,0,0,778,7605,1,0,0,0,780,7607,1,0,0,0,782,7609, + 1,0,0,0,784,7611,1,0,0,0,786,7615,1,0,0,0,788,7623,1,0,0,0,790,7631, + 1,0,0,0,792,7633,1,0,0,0,794,7635,1,0,0,0,796,7637,1,0,0,0,798,7639, + 1,0,0,0,800,7645,1,0,0,0,802,7651,1,0,0,0,804,7657,1,0,0,0,806,7659, + 1,0,0,0,808,7665,1,0,0,0,810,7671,1,0,0,0,812,7673,1,0,0,0,814,7689, + 1,0,0,0,816,7692,1,0,0,0,818,7701,1,0,0,0,820,7703,1,0,0,0,822,7713, + 1,0,0,0,824,7717,1,0,0,0,826,7722,1,0,0,0,828,7728,1,0,0,0,830,7741, + 1,0,0,0,832,7743,1,0,0,0,834,7796,1,0,0,0,836,7798,1,0,0,0,838,7800, + 1,0,0,0,840,7803,1,0,0,0,842,7831,1,0,0,0,844,7835,1,0,0,0,846,7886, + 1,0,0,0,848,7889,1,0,0,0,850,7915,1,0,0,0,852,7917,1,0,0,0,854,7940, + 1,0,0,0,856,7942,1,0,0,0,858,7947,1,0,0,0,860,7962,1,0,0,0,862,7968, + 1,0,0,0,864,7979,1,0,0,0,866,8009,1,0,0,0,868,8016,1,0,0,0,870,8041, + 1,0,0,0,872,8051,1,0,0,0,874,8078,1,0,0,0,876,8091,1,0,0,0,878,8101, + 1,0,0,0,880,8120,1,0,0,0,882,8152,1,0,0,0,884,8156,1,0,0,0,886,8164, + 1,0,0,0,888,8178,1,0,0,0,890,8184,1,0,0,0,892,8205,1,0,0,0,894,8211, + 1,0,0,0,896,8250,1,0,0,0,898,8254,1,0,0,0,900,8280,1,0,0,0,902,8282, + 1,0,0,0,904,8290,1,0,0,0,906,8327,1,0,0,0,908,8361,1,0,0,0,910,8363, + 1,0,0,0,912,8374,1,0,0,0,914,8411,1,0,0,0,916,8415,1,0,0,0,918,8417, + 1,0,0,0,920,8421,1,0,0,0,922,8424,1,0,0,0,924,8446,1,0,0,0,926,8450, + 1,0,0,0,928,8452,1,0,0,0,930,8476,1,0,0,0,932,8480,1,0,0,0,934,8483, + 1,0,0,0,936,938,3,2,1,0,937,936,1,0,0,0,938,941,1,0,0,0,939,937, + 1,0,0,0,939,940,1,0,0,0,940,942,1,0,0,0,941,939,1,0,0,0,942,943, + 5,0,0,1,943,1,1,0,0,0,944,946,3,4,2,0,945,947,5,7,0,0,946,945,1, + 0,0,0,946,947,1,0,0,0,947,3,1,0,0,0,948,1069,3,278,139,0,949,1069, + 3,488,244,0,950,1069,3,484,242,0,951,1069,3,486,243,0,952,1069,3, + 352,176,0,953,1069,3,494,247,0,954,1069,3,292,146,0,955,1069,3,210, + 105,0,956,1069,3,212,106,0,957,1069,3,218,109,0,958,1069,3,232,116, + 0,959,1069,3,404,202,0,960,1069,3,28,14,0,961,1069,3,434,217,0,962, + 1069,3,436,218,0,963,1069,3,446,223,0,964,1069,3,438,219,0,965,1069, + 3,444,222,0,966,1069,3,244,122,0,967,1069,3,246,123,0,968,1069,3, + 198,99,0,969,1069,3,490,245,0,970,1069,3,76,38,0,971,1069,3,430, + 215,0,972,1069,3,108,54,0,973,1069,3,450,225,0,974,1069,3,18,9,0, + 975,1069,3,20,10,0,976,1069,3,16,8,0,977,1069,3,454,227,0,978,1069, + 3,184,92,0,979,1069,3,498,249,0,980,1069,3,496,248,0,981,1069,3, + 240,120,0,982,1069,3,506,253,0,983,1069,3,6,3,0,984,1069,3,72,36, + 0,985,1069,3,112,56,0,986,1069,3,502,251,0,987,1069,3,324,162,0, + 988,1069,3,70,35,0,989,1069,3,114,57,0,990,1069,3,254,127,0,991, + 1069,3,186,93,0,992,1069,3,280,140,0,993,1069,3,420,210,0,994,1069, + 3,500,250,0,995,1069,3,492,246,0,996,1069,3,208,104,0,997,1069,3, + 214,107,0,998,1069,3,228,114,0,999,1069,3,234,117,0,1000,1069,3, + 364,182,0,1001,1069,3,26,13,0,1002,1069,3,192,96,0,1003,1069,3,296, + 148,0,1004,1069,3,300,150,0,1005,1069,3,448,224,0,1006,1069,3,302, + 151,0,1007,1069,3,242,121,0,1008,1069,3,204,102,0,1009,1069,3,30, + 15,0,1010,1069,3,196,98,0,1011,1069,3,120,60,0,1012,1069,3,452,226, + 0,1013,1069,3,182,91,0,1014,1069,3,206,103,0,1015,1069,3,424,212, + 0,1016,1069,3,256,128,0,1017,1069,3,274,137,0,1018,1069,3,8,4,0, + 1019,1069,3,14,7,0,1020,1069,3,238,119,0,1021,1069,3,480,240,0,1022, + 1069,3,536,268,0,1023,1069,3,558,279,0,1024,1069,3,282,141,0,1025, + 1069,3,548,274,0,1026,1069,3,74,37,0,1027,1069,3,418,209,0,1028, + 1069,3,308,154,0,1029,1069,3,532,266,0,1030,1069,3,520,260,0,1031, + 1069,3,328,164,0,1032,1069,3,334,167,0,1033,1069,3,348,174,0,1034, + 1069,3,904,452,0,1035,1069,3,236,118,0,1036,1069,3,358,179,0,1037, + 1069,3,538,269,0,1038,1069,3,464,232,0,1039,1069,3,194,97,0,1040, + 1069,3,478,239,0,1041,1069,3,550,275,0,1042,1069,3,460,230,0,1043, + 1069,3,526,263,0,1044,1069,3,306,153,0,1045,1069,3,428,214,0,1046, + 1069,3,408,204,0,1047,1069,3,406,203,0,1048,1069,3,410,205,0,1049, + 1069,3,432,216,0,1050,1069,3,336,168,0,1051,1069,3,350,175,0,1052, + 1069,3,456,228,0,1053,1069,3,326,163,0,1054,1069,3,560,280,0,1055, + 1069,3,468,234,0,1056,1069,3,320,160,0,1057,1069,3,466,233,0,1058, + 1069,3,552,276,0,1059,1069,3,504,252,0,1060,1069,3,60,30,0,1061, + 1069,3,36,18,0,1062,1069,3,68,34,0,1063,1069,3,476,238,0,1064,1066, + 5,581,0,0,1065,1067,5,582,0,0,1066,1065,1,0,0,0,1066,1067,1,0,0, + 0,1067,1069,1,0,0,0,1068,948,1,0,0,0,1068,949,1,0,0,0,1068,950,1, + 0,0,0,1068,951,1,0,0,0,1068,952,1,0,0,0,1068,953,1,0,0,0,1068,954, + 1,0,0,0,1068,955,1,0,0,0,1068,956,1,0,0,0,1068,957,1,0,0,0,1068, + 958,1,0,0,0,1068,959,1,0,0,0,1068,960,1,0,0,0,1068,961,1,0,0,0,1068, + 962,1,0,0,0,1068,963,1,0,0,0,1068,964,1,0,0,0,1068,965,1,0,0,0,1068, + 966,1,0,0,0,1068,967,1,0,0,0,1068,968,1,0,0,0,1068,969,1,0,0,0,1068, + 970,1,0,0,0,1068,971,1,0,0,0,1068,972,1,0,0,0,1068,973,1,0,0,0,1068, + 974,1,0,0,0,1068,975,1,0,0,0,1068,976,1,0,0,0,1068,977,1,0,0,0,1068, + 978,1,0,0,0,1068,979,1,0,0,0,1068,980,1,0,0,0,1068,981,1,0,0,0,1068, + 982,1,0,0,0,1068,983,1,0,0,0,1068,984,1,0,0,0,1068,985,1,0,0,0,1068, + 986,1,0,0,0,1068,987,1,0,0,0,1068,988,1,0,0,0,1068,989,1,0,0,0,1068, + 990,1,0,0,0,1068,991,1,0,0,0,1068,992,1,0,0,0,1068,993,1,0,0,0,1068, + 994,1,0,0,0,1068,995,1,0,0,0,1068,996,1,0,0,0,1068,997,1,0,0,0,1068, + 998,1,0,0,0,1068,999,1,0,0,0,1068,1000,1,0,0,0,1068,1001,1,0,0,0, + 1068,1002,1,0,0,0,1068,1003,1,0,0,0,1068,1004,1,0,0,0,1068,1005, + 1,0,0,0,1068,1006,1,0,0,0,1068,1007,1,0,0,0,1068,1008,1,0,0,0,1068, + 1009,1,0,0,0,1068,1010,1,0,0,0,1068,1011,1,0,0,0,1068,1012,1,0,0, + 0,1068,1013,1,0,0,0,1068,1014,1,0,0,0,1068,1015,1,0,0,0,1068,1016, + 1,0,0,0,1068,1017,1,0,0,0,1068,1018,1,0,0,0,1068,1019,1,0,0,0,1068, + 1020,1,0,0,0,1068,1021,1,0,0,0,1068,1022,1,0,0,0,1068,1023,1,0,0, + 0,1068,1024,1,0,0,0,1068,1025,1,0,0,0,1068,1026,1,0,0,0,1068,1027, + 1,0,0,0,1068,1028,1,0,0,0,1068,1029,1,0,0,0,1068,1030,1,0,0,0,1068, + 1031,1,0,0,0,1068,1032,1,0,0,0,1068,1033,1,0,0,0,1068,1034,1,0,0, + 0,1068,1035,1,0,0,0,1068,1036,1,0,0,0,1068,1037,1,0,0,0,1068,1038, + 1,0,0,0,1068,1039,1,0,0,0,1068,1040,1,0,0,0,1068,1041,1,0,0,0,1068, + 1042,1,0,0,0,1068,1043,1,0,0,0,1068,1044,1,0,0,0,1068,1045,1,0,0, + 0,1068,1046,1,0,0,0,1068,1047,1,0,0,0,1068,1048,1,0,0,0,1068,1049, + 1,0,0,0,1068,1050,1,0,0,0,1068,1051,1,0,0,0,1068,1052,1,0,0,0,1068, + 1053,1,0,0,0,1068,1054,1,0,0,0,1068,1055,1,0,0,0,1068,1056,1,0,0, + 0,1068,1057,1,0,0,0,1068,1058,1,0,0,0,1068,1059,1,0,0,0,1068,1060, + 1,0,0,0,1068,1061,1,0,0,0,1068,1062,1,0,0,0,1068,1063,1,0,0,0,1068, + 1064,1,0,0,0,1069,5,1,0,0,0,1070,1071,5,433,0,0,1071,1072,3,686, + 343,0,1072,7,1,0,0,0,1073,1074,5,46,0,0,1074,1075,5,318,0,0,1075, + 1077,3,818,409,0,1076,1078,5,105,0,0,1077,1076,1,0,0,0,1077,1078, + 1,0,0,0,1078,1082,1,0,0,0,1079,1081,3,12,6,0,1080,1079,1,0,0,0,1081, + 1084,1,0,0,0,1082,1080,1,0,0,0,1082,1083,1,0,0,0,1083,9,1,0,0,0, + 1084,1082,1,0,0,0,1085,1088,5,287,0,0,1086,1089,3,812,406,0,1087, + 1089,5,78,0,0,1088,1086,1,0,0,0,1088,1087,1,0,0,0,1089,1124,1,0, + 0,0,1090,1091,7,0,0,0,1091,1092,5,287,0,0,1092,1124,3,812,406,0, + 1093,1124,5,228,0,0,1094,1124,5,229,0,0,1095,1124,5,236,0,0,1096, + 1124,5,237,0,0,1097,1124,5,234,0,0,1098,1124,5,235,0,0,1099,1124, + 5,232,0,0,1100,1124,5,233,0,0,1101,1124,5,230,0,0,1102,1124,5,231, + 0,0,1103,1124,5,535,0,0,1104,1124,5,536,0,0,1105,1124,5,537,0,0, + 1106,1124,5,538,0,0,1107,1124,5,539,0,0,1108,1124,5,540,0,0,1109, + 1110,5,164,0,0,1110,1111,5,74,0,0,1111,1124,3,816,408,0,1112,1113, + 5,371,0,0,1113,1114,5,368,0,0,1114,1124,3,812,406,0,1115,1116,5, + 68,0,0,1116,1117,7,1,0,0,1117,1124,3,788,394,0,1118,1119,7,2,0,0, + 1119,1124,3,820,410,0,1120,1121,5,134,0,0,1121,1124,3,788,394,0, + 1122,1124,3,830,415,0,1123,1085,1,0,0,0,1123,1090,1,0,0,0,1123,1093, + 1,0,0,0,1123,1094,1,0,0,0,1123,1095,1,0,0,0,1123,1096,1,0,0,0,1123, + 1097,1,0,0,0,1123,1098,1,0,0,0,1123,1099,1,0,0,0,1123,1100,1,0,0, + 0,1123,1101,1,0,0,0,1123,1102,1,0,0,0,1123,1103,1,0,0,0,1123,1104, + 1,0,0,0,1123,1105,1,0,0,0,1123,1106,1,0,0,0,1123,1107,1,0,0,0,1123, + 1108,1,0,0,0,1123,1109,1,0,0,0,1123,1112,1,0,0,0,1123,1115,1,0,0, + 0,1123,1118,1,0,0,0,1123,1120,1,0,0,0,1123,1122,1,0,0,0,1124,11, + 1,0,0,0,1125,1134,3,10,5,0,1126,1127,5,348,0,0,1127,1134,5,571,0, + 0,1128,1129,7,3,0,0,1129,1134,3,820,410,0,1130,1131,5,68,0,0,1131, + 1132,7,1,0,0,1132,1134,3,820,410,0,1133,1125,1,0,0,0,1133,1126,1, + 0,0,0,1133,1128,1,0,0,0,1133,1130,1,0,0,0,1134,13,1,0,0,0,1135,1136, + 5,46,0,0,1136,1137,5,99,0,0,1137,1139,3,818,409,0,1138,1140,5,105, + 0,0,1139,1138,1,0,0,0,1139,1140,1,0,0,0,1140,1144,1,0,0,0,1141,1143, + 3,12,6,0,1142,1141,1,0,0,0,1143,1146,1,0,0,0,1144,1142,1,0,0,0,1144, + 1145,1,0,0,0,1145,15,1,0,0,0,1146,1144,1,0,0,0,1147,1148,5,138,0, + 0,1148,1149,7,2,0,0,1149,1151,3,818,409,0,1150,1152,5,105,0,0,1151, + 1150,1,0,0,0,1151,1152,1,0,0,0,1152,1156,1,0,0,0,1153,1155,3,10, + 5,0,1154,1153,1,0,0,0,1155,1158,1,0,0,0,1156,1154,1,0,0,0,1156,1157, + 1,0,0,0,1157,17,1,0,0,0,1158,1156,1,0,0,0,1159,1160,5,138,0,0,1160, + 1163,7,2,0,0,1161,1164,5,30,0,0,1162,1164,3,818,409,0,1163,1161, + 1,0,0,0,1163,1162,1,0,0,0,1164,1165,1,0,0,0,1165,1166,5,68,0,0,1166, + 1167,5,175,0,0,1167,1168,3,792,396,0,1168,1169,3,64,32,0,1169,19, + 1,0,0,0,1170,1171,5,138,0,0,1171,1172,5,442,0,0,1172,1174,3,798, + 399,0,1173,1175,3,368,184,0,1174,1173,1,0,0,0,1174,1175,1,0,0,0, + 1175,1176,1,0,0,0,1176,1177,3,22,11,0,1177,21,1,0,0,0,1178,1182, + 3,24,12,0,1179,1181,3,24,12,0,1180,1179,1,0,0,0,1181,1184,1,0,0, + 0,1182,1180,1,0,0,0,1182,1183,1,0,0,0,1183,1186,1,0,0,0,1184,1182, + 1,0,0,0,1185,1187,5,315,0,0,1186,1185,1,0,0,0,1186,1187,1,0,0,0, + 1187,1205,1,0,0,0,1188,1189,5,309,0,0,1189,1190,5,94,0,0,1190,1205, + 3,796,398,0,1191,1192,5,282,0,0,1192,1193,5,94,0,0,1193,1205,3,818, + 409,0,1194,1195,5,333,0,0,1195,1196,5,323,0,0,1196,1205,3,32,16, + 0,1197,1199,5,269,0,0,1198,1197,1,0,0,0,1198,1199,1,0,0,0,1199,1200, + 1,0,0,0,1200,1201,5,462,0,0,1201,1202,5,80,0,0,1202,1203,5,204,0, + 0,1203,1205,3,822,411,0,1204,1178,1,0,0,0,1204,1188,1,0,0,0,1204, + 1191,1,0,0,0,1204,1194,1,0,0,0,1204,1198,1,0,0,0,1205,23,1,0,0,0, + 1206,1249,5,222,0,0,1207,1249,5,338,0,0,1208,1249,5,377,0,0,1209, + 1211,5,77,0,0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1212,1,0, + 0,0,1212,1249,5,250,0,0,1213,1215,5,205,0,0,1214,1213,1,0,0,0,1214, + 1215,1,0,0,0,1215,1216,1,0,0,0,1216,1217,5,327,0,0,1217,1224,5,243, + 0,0,1218,1220,5,205,0,0,1219,1218,1,0,0,0,1219,1220,1,0,0,0,1220, + 1221,1,0,0,0,1221,1222,5,327,0,0,1222,1224,5,181,0,0,1223,1214,1, + 0,0,0,1223,1219,1,0,0,0,1224,1249,1,0,0,0,1225,1226,5,460,0,0,1226, + 1249,7,4,0,0,1227,1228,5,170,0,0,1228,1249,3,828,414,0,1229,1230, + 5,320,0,0,1230,1249,3,822,411,0,1231,1232,5,333,0,0,1232,1233,3, + 822,411,0,1233,1236,7,5,0,0,1234,1237,3,822,411,0,1235,1237,5,53, + 0,0,1236,1234,1,0,0,0,1236,1235,1,0,0,0,1237,1249,1,0,0,0,1238,1239, + 5,333,0,0,1239,1240,3,822,411,0,1240,1241,5,64,0,0,1241,1242,5,434, + 0,0,1242,1249,1,0,0,0,1243,1246,5,313,0,0,1244,1247,3,822,411,0, + 1245,1247,5,30,0,0,1246,1244,1,0,0,0,1246,1245,1,0,0,0,1247,1249, + 1,0,0,0,1248,1206,1,0,0,0,1248,1207,1,0,0,0,1248,1208,1,0,0,0,1248, + 1210,1,0,0,0,1248,1223,1,0,0,0,1248,1225,1,0,0,0,1248,1227,1,0,0, + 0,1248,1229,1,0,0,0,1248,1231,1,0,0,0,1248,1238,1,0,0,0,1248,1243, + 1,0,0,0,1249,25,1,0,0,0,1250,1251,5,46,0,0,1251,1252,5,66,0,0,1252, + 1254,3,818,409,0,1253,1255,5,105,0,0,1254,1253,1,0,0,0,1254,1255, + 1,0,0,0,1255,1259,1,0,0,0,1256,1258,3,12,6,0,1257,1256,1,0,0,0,1258, + 1261,1,0,0,0,1259,1257,1,0,0,0,1259,1260,1,0,0,0,1260,27,1,0,0,0, + 1261,1259,1,0,0,0,1262,1263,5,138,0,0,1263,1264,5,66,0,0,1264,1265, + 3,818,409,0,1265,1266,7,6,0,0,1266,1267,5,99,0,0,1267,1268,3,820, + 410,0,1268,29,1,0,0,0,1269,1270,5,46,0,0,1270,1272,5,323,0,0,1271, + 1273,3,294,147,0,1272,1271,1,0,0,0,1272,1273,1,0,0,0,1273,1280,1, + 0,0,0,1274,1276,3,32,16,0,1275,1274,1,0,0,0,1275,1276,1,0,0,0,1276, + 1277,1,0,0,0,1277,1278,5,106,0,0,1278,1281,3,818,409,0,1279,1281, + 3,32,16,0,1280,1275,1,0,0,0,1280,1279,1,0,0,0,1281,1285,1,0,0,0, + 1282,1284,3,34,17,0,1283,1282,1,0,0,0,1284,1287,1,0,0,0,1285,1283, + 1,0,0,0,1285,1286,1,0,0,0,1286,31,1,0,0,0,1287,1285,1,0,0,0,1288, + 1289,3,316,158,0,1289,33,1,0,0,0,1290,1297,3,120,60,0,1291,1297, + 3,358,179,0,1292,1297,3,196,98,0,1293,1297,3,256,128,0,1294,1297, + 3,334,167,0,1295,1297,3,476,238,0,1296,1290,1,0,0,0,1296,1291,1, + 0,0,0,1296,1292,1,0,0,0,1296,1293,1,0,0,0,1296,1294,1,0,0,0,1296, + 1295,1,0,0,0,1297,35,1,0,0,0,1298,1300,5,333,0,0,1299,1301,7,7,0, + 0,1300,1299,1,0,0,0,1300,1301,1,0,0,0,1301,1302,1,0,0,0,1302,1303, + 3,38,19,0,1303,37,1,0,0,0,1304,1305,5,356,0,0,1305,1313,3,474,237, + 0,1306,1307,5,332,0,0,1307,1308,5,154,0,0,1308,1309,5,36,0,0,1309, + 1310,5,356,0,0,1310,1313,3,474,237,0,1311,1313,3,42,21,0,1312,1304, + 1,0,0,0,1312,1306,1,0,0,0,1312,1311,1,0,0,0,1313,39,1,0,0,0,1314, + 1317,5,30,0,0,1315,1317,3,44,22,0,1316,1314,1,0,0,0,1316,1315,1, + 0,0,0,1317,1319,1,0,0,0,1318,1320,7,5,0,0,1319,1318,1,0,0,0,1319, + 1320,1,0,0,0,1320,1323,1,0,0,0,1321,1324,5,53,0,0,1322,1324,3,46, + 23,0,1323,1321,1,0,0,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324, + 41,1,0,0,0,1325,1326,5,418,0,0,1326,1327,5,386,0,0,1327,1354,3,56, + 28,0,1328,1329,5,152,0,0,1329,1354,3,812,406,0,1330,1331,5,323,0, + 0,1331,1354,3,794,397,0,1332,1335,5,267,0,0,1333,1336,3,812,406, + 0,1334,1336,5,53,0,0,1335,1333,1,0,0,0,1335,1334,1,0,0,0,1335,1336, + 1,0,0,0,1336,1354,1,0,0,0,1337,1338,5,318,0,0,1338,1354,3,58,29, + 0,1339,1340,5,332,0,0,1340,1341,5,106,0,0,1341,1354,3,58,29,0,1342, + 1343,5,383,0,0,1343,1344,5,279,0,0,1344,1354,3,698,349,0,1345,1346, + 5,356,0,0,1346,1347,5,337,0,0,1347,1354,3,812,406,0,1348,1349,3, + 44,22,0,1349,1350,5,64,0,0,1350,1351,5,434,0,0,1351,1354,1,0,0,0, + 1352,1354,3,40,20,0,1353,1325,1,0,0,0,1353,1328,1,0,0,0,1353,1330, + 1,0,0,0,1353,1332,1,0,0,0,1353,1337,1,0,0,0,1353,1339,1,0,0,0,1353, + 1342,1,0,0,0,1353,1345,1,0,0,0,1353,1348,1,0,0,0,1353,1352,1,0,0, + 0,1354,43,1,0,0,0,1355,1360,3,822,411,0,1356,1357,5,11,0,0,1357, + 1359,3,822,411,0,1358,1356,1,0,0,0,1359,1362,1,0,0,0,1360,1358,1, + 0,0,0,1360,1361,1,0,0,0,1361,45,1,0,0,0,1362,1360,1,0,0,0,1363,1368, + 3,48,24,0,1364,1365,5,6,0,0,1365,1367,3,48,24,0,1366,1364,1,0,0, + 0,1367,1370,1,0,0,0,1368,1366,1,0,0,0,1368,1369,1,0,0,0,1369,47, + 1,0,0,0,1370,1368,1,0,0,0,1371,1374,3,54,27,0,1372,1374,3,202,101, + 0,1373,1371,1,0,0,0,1373,1372,1,0,0,0,1374,49,1,0,0,0,1375,1376, + 5,300,0,0,1376,1381,7,8,0,0,1377,1378,5,310,0,0,1378,1381,5,300, + 0,0,1379,1381,5,330,0,0,1380,1375,1,0,0,0,1380,1377,1,0,0,0,1380, + 1379,1,0,0,0,1381,51,1,0,0,0,1382,1389,5,96,0,0,1383,1389,5,60,0, + 0,1384,1389,5,80,0,0,1385,1389,3,804,402,0,1386,1389,3,836,418,0, + 1387,1389,3,812,406,0,1388,1382,1,0,0,0,1388,1383,1,0,0,0,1388,1384, + 1,0,0,0,1388,1385,1,0,0,0,1388,1386,1,0,0,0,1388,1387,1,0,0,0,1389, + 53,1,0,0,0,1390,1395,5,96,0,0,1391,1395,5,60,0,0,1392,1395,5,80, + 0,0,1393,1395,3,58,29,0,1394,1390,1,0,0,0,1394,1391,1,0,0,0,1394, + 1392,1,0,0,0,1394,1393,1,0,0,0,1395,55,1,0,0,0,1396,1411,3,812,406, + 0,1397,1411,5,53,0,0,1398,1411,3,830,415,0,1399,1400,5,403,0,0,1400, + 1402,3,812,406,0,1401,1403,3,670,335,0,1402,1401,1,0,0,0,1402,1403, + 1,0,0,0,1403,1411,1,0,0,0,1404,1405,5,403,0,0,1405,1406,3,662,331, + 0,1406,1407,3,812,406,0,1407,1411,1,0,0,0,1408,1411,3,202,101,0, + 1409,1411,5,254,0,0,1410,1396,1,0,0,0,1410,1397,1,0,0,0,1410,1398, + 1,0,0,0,1410,1399,1,0,0,0,1410,1404,1,0,0,0,1410,1408,1,0,0,0,1410, + 1409,1,0,0,0,1411,57,1,0,0,0,1412,1415,3,826,413,0,1413,1415,3,812, + 406,0,1414,1412,1,0,0,0,1414,1413,1,0,0,0,1415,59,1,0,0,0,1416,1417, + 5,313,0,0,1417,1418,3,62,31,0,1418,61,1,0,0,0,1419,1420,5,418,0, + 0,1420,1429,5,386,0,0,1421,1422,5,356,0,0,1422,1423,5,244,0,0,1423, + 1429,5,251,0,0,1424,1425,5,332,0,0,1425,1429,5,106,0,0,1426,1429, + 5,30,0,0,1427,1429,3,44,22,0,1428,1419,1,0,0,0,1428,1421,1,0,0,0, + 1428,1424,1,0,0,0,1428,1426,1,0,0,0,1428,1427,1,0,0,0,1429,63,1, + 0,0,0,1430,1431,5,333,0,0,1431,1434,3,38,19,0,1432,1434,3,60,30, + 0,1433,1430,1,0,0,0,1433,1432,1,0,0,0,1434,65,1,0,0,0,1435,1436, + 5,333,0,0,1436,1439,3,42,21,0,1437,1439,3,60,30,0,1438,1435,1,0, + 0,0,1438,1437,1,0,0,0,1439,67,1,0,0,0,1440,1450,5,335,0,0,1441,1451, + 3,44,22,0,1442,1443,5,418,0,0,1443,1451,5,386,0,0,1444,1445,5,356, + 0,0,1445,1446,5,244,0,0,1446,1451,5,251,0,0,1447,1448,5,332,0,0, + 1448,1451,5,106,0,0,1449,1451,5,30,0,0,1450,1441,1,0,0,0,1450,1442, + 1,0,0,0,1450,1444,1,0,0,0,1450,1447,1,0,0,0,1450,1449,1,0,0,0,1451, + 69,1,0,0,0,1452,1453,5,333,0,0,1453,1456,5,165,0,0,1454,1457,5,30, + 0,0,1455,1457,3,764,382,0,1456,1454,1,0,0,0,1456,1455,1,0,0,0,1457, + 1458,1,0,0,0,1458,1459,7,9,0,0,1459,71,1,0,0,0,1460,1461,5,155,0, + 0,1461,73,1,0,0,0,1462,1463,5,187,0,0,1463,1464,7,10,0,0,1464,75, + 1,0,0,0,1465,1466,5,138,0,0,1466,1468,5,92,0,0,1467,1469,3,422,211, + 0,1468,1467,1,0,0,0,1468,1469,1,0,0,0,1469,1470,1,0,0,0,1470,1473, + 3,626,313,0,1471,1474,3,78,39,0,1472,1474,3,88,44,0,1473,1471,1, + 0,0,0,1473,1472,1,0,0,0,1474,1587,1,0,0,0,1475,1476,5,138,0,0,1476, + 1477,5,92,0,0,1477,1478,5,30,0,0,1478,1479,5,68,0,0,1479,1483,3, + 176,88,0,1480,1481,5,281,0,0,1481,1482,5,147,0,0,1482,1484,3,820, + 410,0,1483,1480,1,0,0,0,1483,1484,1,0,0,0,1484,1485,1,0,0,0,1485, + 1486,5,333,0,0,1486,1487,5,351,0,0,1487,1489,3,772,386,0,1488,1490, + 5,272,0,0,1489,1488,1,0,0,0,1489,1490,1,0,0,0,1490,1587,1,0,0,0, + 1491,1492,5,138,0,0,1492,1494,5,92,0,0,1493,1495,3,422,211,0,1494, + 1493,1,0,0,0,1494,1495,1,0,0,0,1495,1496,1,0,0,0,1496,1497,3,778, + 389,0,1497,1502,3,90,45,0,1498,1499,5,62,0,0,1499,1500,5,422,0,0, + 1500,1503,3,80,40,0,1501,1503,5,53,0,0,1502,1498,1,0,0,0,1502,1501, + 1,0,0,0,1503,1587,1,0,0,0,1504,1505,5,138,0,0,1505,1507,5,92,0,0, + 1506,1508,3,422,211,0,1507,1506,1,0,0,0,1507,1508,1,0,0,0,1508,1509, + 1,0,0,0,1509,1510,3,778,389,0,1510,1511,5,436,0,0,1511,1512,5,285, + 0,0,1512,1514,3,784,392,0,1513,1515,7,11,0,0,1514,1513,1,0,0,0,1514, + 1515,1,0,0,0,1515,1587,1,0,0,0,1516,1517,5,138,0,0,1517,1519,5,226, + 0,0,1518,1520,3,422,211,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520, + 1521,1,0,0,0,1521,1524,3,784,392,0,1522,1525,3,78,39,0,1523,1525, + 3,90,45,0,1524,1522,1,0,0,0,1524,1523,1,0,0,0,1525,1587,1,0,0,0, + 1526,1527,5,138,0,0,1527,1528,5,226,0,0,1528,1529,5,30,0,0,1529, + 1530,5,68,0,0,1530,1534,3,176,88,0,1531,1532,5,281,0,0,1532,1533, + 5,147,0,0,1533,1535,3,820,410,0,1534,1531,1,0,0,0,1534,1535,1,0, + 0,0,1535,1536,1,0,0,0,1536,1537,5,333,0,0,1537,1539,3,176,88,0,1538, + 1540,5,272,0,0,1539,1538,1,0,0,0,1539,1540,1,0,0,0,1540,1587,1,0, + 0,0,1541,1542,5,138,0,0,1542,1544,5,328,0,0,1543,1545,3,422,211, + 0,1544,1543,1,0,0,0,1544,1545,1,0,0,0,1545,1546,1,0,0,0,1546,1547, + 3,784,392,0,1547,1548,3,78,39,0,1548,1587,1,0,0,0,1549,1551,5,138, + 0,0,1550,1552,5,259,0,0,1551,1550,1,0,0,0,1551,1552,1,0,0,0,1552, + 1553,1,0,0,0,1553,1555,5,376,0,0,1554,1556,3,422,211,0,1555,1554, + 1,0,0,0,1555,1556,1,0,0,0,1556,1557,1,0,0,0,1557,1558,3,782,391, + 0,1558,1559,3,78,39,0,1559,1587,1,0,0,0,1560,1561,5,138,0,0,1561, + 1562,5,259,0,0,1562,1563,5,376,0,0,1563,1564,5,30,0,0,1564,1565, + 5,68,0,0,1565,1569,3,176,88,0,1566,1567,5,281,0,0,1567,1568,5,147, + 0,0,1568,1570,3,820,410,0,1569,1566,1,0,0,0,1569,1570,1,0,0,0,1570, + 1571,1,0,0,0,1571,1572,5,333,0,0,1572,1573,5,351,0,0,1573,1575,3, + 772,386,0,1574,1576,5,272,0,0,1575,1574,1,0,0,0,1575,1576,1,0,0, + 0,1576,1587,1,0,0,0,1577,1578,5,138,0,0,1578,1579,5,63,0,0,1579, + 1581,5,92,0,0,1580,1582,3,422,211,0,1581,1580,1,0,0,0,1581,1582, + 1,0,0,0,1582,1583,1,0,0,0,1583,1584,3,626,313,0,1584,1585,3,78,39, + 0,1585,1587,1,0,0,0,1586,1465,1,0,0,0,1586,1475,1,0,0,0,1586,1491, + 1,0,0,0,1586,1504,1,0,0,0,1586,1516,1,0,0,0,1586,1526,1,0,0,0,1586, + 1541,1,0,0,0,1586,1549,1,0,0,0,1586,1560,1,0,0,0,1586,1577,1,0,0, + 0,1587,77,1,0,0,0,1588,1593,3,92,46,0,1589,1590,5,6,0,0,1590,1592, + 3,92,46,0,1591,1589,1,0,0,0,1592,1595,1,0,0,0,1593,1591,1,0,0,0, + 1593,1594,1,0,0,0,1594,79,1,0,0,0,1595,1593,1,0,0,0,1596,1597,5, + 68,0,0,1597,1606,3,534,267,0,1598,1599,5,64,0,0,1599,1600,3,82,41, + 0,1600,1601,5,94,0,0,1601,1602,3,82,41,0,1602,1606,1,0,0,0,1603, + 1604,5,105,0,0,1604,1606,3,86,43,0,1605,1596,1,0,0,0,1605,1598,1, + 0,0,0,1605,1603,1,0,0,0,1606,81,1,0,0,0,1607,1608,5,2,0,0,1608,1613, + 3,84,42,0,1609,1610,5,6,0,0,1610,1612,3,84,42,0,1611,1609,1,0,0, + 0,1612,1615,1,0,0,0,1613,1611,1,0,0,0,1613,1614,1,0,0,0,1614,1616, + 1,0,0,0,1615,1613,1,0,0,0,1616,1617,5,3,0,0,1617,83,1,0,0,0,1618, + 1622,3,534,267,0,1619,1622,5,262,0,0,1620,1622,5,260,0,0,1621,1618, + 1,0,0,0,1621,1619,1,0,0,0,1621,1620,1,0,0,0,1622,85,1,0,0,0,1623, + 1624,5,2,0,0,1624,1625,5,533,0,0,1625,1626,3,202,101,0,1626,1627, + 5,6,0,0,1627,1628,5,534,0,0,1628,1629,3,202,101,0,1629,1630,5,3, + 0,0,1630,87,1,0,0,0,1631,1632,3,90,45,0,1632,1633,3,106,53,0,1633, + 1638,1,0,0,0,1634,1635,5,436,0,0,1635,1636,5,285,0,0,1636,1638,3, + 784,392,0,1637,1631,1,0,0,0,1637,1634,1,0,0,0,1638,89,1,0,0,0,1639, + 1640,5,435,0,0,1640,1641,5,285,0,0,1641,1642,3,784,392,0,1642,91, + 1,0,0,0,1643,1646,5,133,0,0,1644,1645,5,45,0,0,1645,1647,3,822,411, + 0,1646,1644,1,0,0,0,1646,1647,1,0,0,0,1647,1648,1,0,0,0,1648,1877, + 3,142,71,0,1649,1650,5,138,0,0,1650,1651,5,45,0,0,1651,1655,3,822, + 411,0,1652,1654,3,272,136,0,1653,1652,1,0,0,0,1654,1657,1,0,0,0, + 1655,1653,1,0,0,0,1655,1656,1,0,0,0,1656,1877,1,0,0,0,1657,1655, + 1,0,0,0,1658,1659,5,372,0,0,1659,1660,5,45,0,0,1660,1877,3,822,411, + 0,1661,1662,5,191,0,0,1662,1664,5,45,0,0,1663,1665,3,422,211,0,1664, + 1663,1,0,0,0,1664,1665,1,0,0,0,1665,1666,1,0,0,0,1666,1668,3,822, + 411,0,1667,1669,3,96,48,0,1668,1667,1,0,0,0,1668,1669,1,0,0,0,1669, + 1877,1,0,0,0,1670,1671,5,333,0,0,1671,1672,5,379,0,0,1672,1877,7, + 12,0,0,1673,1674,5,158,0,0,1674,1675,5,80,0,0,1675,1877,3,822,411, + 0,1676,1677,5,333,0,0,1677,1877,7,13,0,0,1678,1680,5,193,0,0,1679, + 1681,7,14,0,0,1680,1679,1,0,0,0,1680,1681,1,0,0,0,1681,1682,1,0, + 0,0,1682,1877,5,357,0,0,1683,1684,5,186,0,0,1684,1688,5,357,0,0, + 1685,1689,5,30,0,0,1686,1689,5,99,0,0,1687,1689,3,822,411,0,1688, + 1685,1,0,0,0,1688,1686,1,0,0,0,1688,1687,1,0,0,0,1689,1877,1,0,0, + 0,1690,1691,5,193,0,0,1691,1692,7,14,0,0,1692,1693,5,321,0,0,1693, + 1877,3,822,411,0,1694,1695,5,186,0,0,1695,1696,5,321,0,0,1696,1877, + 3,822,411,0,1697,1699,5,269,0,0,1698,1697,1,0,0,0,1698,1699,1,0, + 0,0,1699,1700,1,0,0,0,1700,1701,5,228,0,0,1701,1877,3,784,392,0, + 1702,1703,5,275,0,0,1703,1877,3,316,158,0,1704,1705,5,77,0,0,1705, + 1877,5,275,0,0,1706,1707,5,282,0,0,1707,1708,5,94,0,0,1708,1877, + 3,818,409,0,1709,1710,5,333,0,0,1710,1711,5,351,0,0,1711,1877,3, + 772,386,0,1712,1713,5,312,0,0,1713,1718,5,219,0,0,1714,1719,5,270, + 0,0,1715,1719,5,113,0,0,1716,1719,5,53,0,0,1717,1719,3,180,90,0, + 1718,1714,1,0,0,0,1718,1715,1,0,0,0,1718,1716,1,0,0,0,1718,1717, + 1,0,0,0,1719,1877,1,0,0,0,1720,1727,5,193,0,0,1721,1727,5,186,0, + 0,1722,1724,5,269,0,0,1723,1722,1,0,0,0,1723,1724,1,0,0,0,1724,1725, + 1,0,0,0,1725,1727,5,209,0,0,1726,1720,1,0,0,0,1726,1721,1,0,0,0, + 1726,1723,1,0,0,0,1727,1728,1,0,0,0,1728,1729,5,414,0,0,1729,1730, + 5,251,0,0,1730,1877,5,327,0,0,1731,1733,5,191,0,0,1732,1734,5,44, + 0,0,1733,1732,1,0,0,0,1733,1734,1,0,0,0,1734,1736,1,0,0,0,1735,1737, + 3,422,211,0,1736,1735,1,0,0,0,1736,1737,1,0,0,0,1737,1738,1,0,0, + 0,1738,1740,3,804,402,0,1739,1741,3,96,48,0,1740,1739,1,0,0,0,1740, + 1741,1,0,0,0,1741,1877,1,0,0,0,1742,1744,5,133,0,0,1743,1745,5,44, + 0,0,1744,1743,1,0,0,0,1744,1745,1,0,0,0,1745,1747,1,0,0,0,1746,1748, + 3,294,147,0,1747,1746,1,0,0,0,1747,1748,1,0,0,0,1748,1749,1,0,0, + 0,1749,1877,3,132,66,0,1750,1752,5,138,0,0,1751,1753,5,44,0,0,1752, + 1751,1,0,0,0,1752,1753,1,0,0,0,1753,1754,1,0,0,0,1754,1757,3,804, + 402,0,1755,1758,3,94,47,0,1756,1758,3,222,111,0,1757,1755,1,0,0, + 0,1757,1756,1,0,0,0,1758,1877,1,0,0,0,1759,1761,5,138,0,0,1760,1762, + 5,44,0,0,1761,1760,1,0,0,0,1761,1762,1,0,0,0,1762,1763,1,0,0,0,1763, + 1764,3,804,402,0,1764,1765,7,15,0,0,1765,1766,5,77,0,0,1766,1767, + 5,78,0,0,1767,1877,1,0,0,0,1768,1770,5,138,0,0,1769,1771,5,44,0, + 0,1770,1769,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0,0,0,1772,1773, + 3,804,402,0,1773,1774,5,191,0,0,1774,1776,5,437,0,0,1775,1777,3, + 422,211,0,1776,1775,1,0,0,0,1776,1777,1,0,0,0,1777,1877,1,0,0,0, + 1778,1780,5,138,0,0,1779,1781,5,44,0,0,1780,1779,1,0,0,0,1780,1781, + 1,0,0,0,1781,1782,1,0,0,0,1782,1783,3,804,402,0,1783,1784,5,333, + 0,0,1784,1785,5,342,0,0,1785,1786,3,816,408,0,1786,1877,1,0,0,0, + 1787,1789,5,138,0,0,1788,1790,5,44,0,0,1789,1788,1,0,0,0,1789,1790, + 1,0,0,0,1790,1791,1,0,0,0,1791,1793,3,804,402,0,1792,1787,1,0,0, + 0,1792,1793,1,0,0,0,1793,1794,1,0,0,0,1794,1795,7,16,0,0,1795,1877, + 3,100,50,0,1796,1798,5,138,0,0,1797,1799,5,44,0,0,1798,1797,1,0, + 0,0,1798,1799,1,0,0,0,1799,1800,1,0,0,0,1800,1801,3,804,402,0,1801, + 1802,5,333,0,0,1802,1803,5,345,0,0,1803,1804,3,822,411,0,1804,1877, + 1,0,0,0,1805,1807,5,138,0,0,1806,1808,5,44,0,0,1807,1806,1,0,0,0, + 1807,1808,1,0,0,0,1808,1809,1,0,0,0,1809,1810,3,804,402,0,1810,1811, + 5,133,0,0,1811,1812,5,438,0,0,1812,1813,3,138,69,0,1813,1814,5,36, + 0,0,1814,1823,5,219,0,0,1815,1817,5,2,0,0,1816,1818,3,200,100,0, + 1817,1816,1,0,0,0,1818,1819,1,0,0,0,1819,1817,1,0,0,0,1819,1820, + 1,0,0,0,1820,1821,1,0,0,0,1821,1822,5,3,0,0,1822,1824,1,0,0,0,1823, + 1815,1,0,0,0,1823,1824,1,0,0,0,1824,1877,1,0,0,0,1825,1827,5,138, + 0,0,1826,1828,5,44,0,0,1827,1826,1,0,0,0,1827,1828,1,0,0,0,1828, + 1829,1,0,0,0,1829,1843,3,804,402,0,1830,1835,5,314,0,0,1831,1833, + 5,105,0,0,1832,1831,1,0,0,0,1832,1833,1,0,0,0,1833,1834,1,0,0,0, + 1834,1836,3,202,101,0,1835,1832,1,0,0,0,1835,1836,1,0,0,0,1836,1844, + 1,0,0,0,1837,1841,5,333,0,0,1838,1842,3,200,100,0,1839,1840,5,438, + 0,0,1840,1842,3,138,69,0,1841,1838,1,0,0,0,1841,1839,1,0,0,0,1842, + 1844,1,0,0,0,1843,1830,1,0,0,0,1843,1837,1,0,0,0,1844,1845,1,0,0, + 0,1845,1843,1,0,0,0,1845,1846,1,0,0,0,1846,1877,1,0,0,0,1847,1849, + 5,138,0,0,1848,1850,5,44,0,0,1849,1848,1,0,0,0,1849,1850,1,0,0,0, + 1850,1851,1,0,0,0,1851,1852,3,804,402,0,1852,1853,5,191,0,0,1853, + 1855,5,219,0,0,1854,1856,3,422,211,0,1855,1854,1,0,0,0,1855,1856, + 1,0,0,0,1856,1877,1,0,0,0,1857,1859,5,138,0,0,1858,1860,5,44,0,0, + 1859,1858,1,0,0,0,1859,1860,1,0,0,0,1860,1861,1,0,0,0,1861,1864, + 3,804,402,0,1862,1863,5,333,0,0,1863,1865,5,174,0,0,1864,1862,1, + 0,0,0,1864,1865,1,0,0,0,1865,1866,1,0,0,0,1866,1867,5,360,0,0,1867, + 1869,3,654,327,0,1868,1870,3,98,49,0,1869,1868,1,0,0,0,1869,1870, + 1,0,0,0,1870,1873,1,0,0,0,1871,1872,5,100,0,0,1872,1874,3,676,338, + 0,1873,1871,1,0,0,0,1873,1874,1,0,0,0,1874,1877,1,0,0,0,1875,1877, + 3,222,111,0,1876,1643,1,0,0,0,1876,1649,1,0,0,0,1876,1658,1,0,0, + 0,1876,1661,1,0,0,0,1876,1670,1,0,0,0,1876,1673,1,0,0,0,1876,1676, + 1,0,0,0,1876,1678,1,0,0,0,1876,1683,1,0,0,0,1876,1690,1,0,0,0,1876, + 1694,1,0,0,0,1876,1698,1,0,0,0,1876,1702,1,0,0,0,1876,1704,1,0,0, + 0,1876,1706,1,0,0,0,1876,1709,1,0,0,0,1876,1712,1,0,0,0,1876,1726, + 1,0,0,0,1876,1731,1,0,0,0,1876,1742,1,0,0,0,1876,1750,1,0,0,0,1876, + 1759,1,0,0,0,1876,1768,1,0,0,0,1876,1778,1,0,0,0,1876,1792,1,0,0, + 0,1876,1796,1,0,0,0,1876,1805,1,0,0,0,1876,1825,1,0,0,0,1876,1847, + 1,0,0,0,1876,1857,1,0,0,0,1876,1875,1,0,0,0,1877,93,1,0,0,0,1878, + 1879,5,333,0,0,1879,1880,5,53,0,0,1880,1884,3,676,338,0,1881,1882, + 5,191,0,0,1882,1884,5,53,0,0,1883,1878,1,0,0,0,1883,1881,1,0,0,0, + 1884,95,1,0,0,0,1885,1886,7,17,0,0,1886,97,1,0,0,0,1887,1888,5,43, + 0,0,1888,1889,3,316,158,0,1889,99,1,0,0,0,1890,1891,5,2,0,0,1891, + 1896,3,104,52,0,1892,1893,5,6,0,0,1893,1895,3,104,52,0,1894,1892, + 1,0,0,0,1895,1898,1,0,0,0,1896,1894,1,0,0,0,1896,1897,1,0,0,0,1897, + 1899,1,0,0,0,1898,1896,1,0,0,0,1899,1900,5,3,0,0,1900,101,1,0,0, + 0,1901,1902,5,105,0,0,1902,1903,3,100,50,0,1903,103,1,0,0,0,1904, + 1909,3,828,414,0,1905,1906,5,10,0,0,1906,1910,3,288,144,0,1907,1908, + 5,11,0,0,1908,1910,3,286,143,0,1909,1905,1,0,0,0,1909,1907,1,0,0, + 0,1909,1910,1,0,0,0,1910,105,1,0,0,0,1911,1912,5,62,0,0,1912,1913, + 5,422,0,0,1913,1914,5,105,0,0,1914,1915,5,2,0,0,1915,1916,5,533, + 0,0,1916,1917,5,571,0,0,1917,1918,5,6,0,0,1918,1919,5,534,0,0,1919, + 1920,5,571,0,0,1920,1934,5,3,0,0,1921,1922,5,62,0,0,1922,1923,5, + 422,0,0,1923,1924,5,68,0,0,1924,1934,3,534,267,0,1925,1926,5,62, + 0,0,1926,1927,5,422,0,0,1927,1928,5,64,0,0,1928,1929,3,534,267,0, + 1929,1930,5,94,0,0,1930,1931,3,534,267,0,1931,1934,1,0,0,0,1932, + 1934,5,53,0,0,1933,1911,1,0,0,0,1933,1921,1,0,0,0,1933,1925,1,0, + 0,0,1933,1932,1,0,0,0,1934,107,1,0,0,0,1935,1936,5,138,0,0,1936, + 1937,5,360,0,0,1937,1938,3,316,158,0,1938,1943,3,110,55,0,1939,1940, + 5,6,0,0,1940,1942,3,110,55,0,1941,1939,1,0,0,0,1942,1945,1,0,0,0, + 1943,1941,1,0,0,0,1943,1944,1,0,0,0,1944,109,1,0,0,0,1945,1943,1, + 0,0,0,1946,1947,5,133,0,0,1947,1948,5,143,0,0,1948,1950,3,646,323, + 0,1949,1951,3,96,48,0,1950,1949,1,0,0,0,1950,1951,1,0,0,0,1951,1977, + 1,0,0,0,1952,1953,5,191,0,0,1953,1955,5,143,0,0,1954,1956,3,422, + 211,0,1955,1954,1,0,0,0,1955,1956,1,0,0,0,1956,1957,1,0,0,0,1957, + 1959,3,822,411,0,1958,1960,3,96,48,0,1959,1958,1,0,0,0,1959,1960, + 1,0,0,0,1960,1977,1,0,0,0,1961,1962,5,138,0,0,1962,1963,5,143,0, + 0,1963,1966,3,822,411,0,1964,1965,5,333,0,0,1965,1967,5,174,0,0, + 1966,1964,1,0,0,0,1966,1967,1,0,0,0,1967,1968,1,0,0,0,1968,1969, + 5,360,0,0,1969,1971,3,654,327,0,1970,1972,3,98,49,0,1971,1970,1, + 0,0,0,1971,1972,1,0,0,0,1972,1974,1,0,0,0,1973,1975,3,96,48,0,1974, + 1973,1,0,0,0,1974,1975,1,0,0,0,1975,1977,1,0,0,0,1976,1946,1,0,0, + 0,1976,1952,1,0,0,0,1976,1961,1,0,0,0,1977,111,1,0,0,0,1978,1981, + 5,157,0,0,1979,1982,3,822,411,0,1980,1982,5,30,0,0,1981,1979,1,0, + 0,0,1981,1980,1,0,0,0,1982,113,1,0,0,0,1983,1985,5,169,0,0,1984, + 1986,5,107,0,0,1985,1984,1,0,0,0,1985,1986,1,0,0,0,1986,1987,1,0, + 0,0,1987,1989,3,778,389,0,1988,1990,3,144,72,0,1989,1988,1,0,0,0, + 1989,1990,1,0,0,0,1990,1991,1,0,0,0,1991,1993,7,18,0,0,1992,1994, + 5,297,0,0,1993,1992,1,0,0,0,1993,1994,1,0,0,0,1994,1998,1,0,0,0, + 1995,1999,3,812,406,0,1996,1999,5,343,0,0,1997,1999,5,344,0,0,1998, + 1995,1,0,0,0,1998,1996,1,0,0,0,1998,1997,1,0,0,0,1999,2005,1,0,0, + 0,2000,2002,5,100,0,0,2001,2000,1,0,0,0,2001,2002,1,0,0,0,2002,2003, + 1,0,0,0,2003,2004,5,184,0,0,2004,2006,3,812,406,0,2005,2001,1,0, + 0,0,2005,2006,1,0,0,0,2006,2008,1,0,0,0,2007,2009,5,105,0,0,2008, + 2007,1,0,0,0,2008,2009,1,0,0,0,2009,2010,1,0,0,0,2010,2012,3,116, + 58,0,2011,2013,3,640,320,0,2012,2011,1,0,0,0,2012,2013,1,0,0,0,2013, + 2033,1,0,0,0,2014,2015,5,169,0,0,2015,2016,5,2,0,0,2016,2017,3,530, + 265,0,2017,2018,5,3,0,0,2018,2020,5,94,0,0,2019,2021,5,297,0,0,2020, + 2019,1,0,0,0,2020,2021,1,0,0,0,2021,2025,1,0,0,0,2022,2026,3,812, + 406,0,2023,2026,5,343,0,0,2024,2026,5,344,0,0,2025,2022,1,0,0,0, + 2025,2023,1,0,0,0,2025,2024,1,0,0,0,2026,2028,1,0,0,0,2027,2029, + 5,105,0,0,2028,2027,1,0,0,0,2028,2029,1,0,0,0,2029,2030,1,0,0,0, + 2030,2031,3,116,58,0,2031,2033,1,0,0,0,2032,1983,1,0,0,0,2032,2014, + 1,0,0,0,2033,115,1,0,0,0,2034,2058,5,107,0,0,2035,2058,5,112,0,0, + 2036,2038,7,19,0,0,2037,2039,5,36,0,0,2038,2037,1,0,0,0,2038,2039, + 1,0,0,0,2039,2040,1,0,0,0,2040,2058,3,812,406,0,2041,2058,5,171, + 0,0,2042,2058,5,216,0,0,2043,2044,5,209,0,0,2044,2047,5,298,0,0, + 2045,2048,3,148,74,0,2046,2048,5,9,0,0,2047,2045,1,0,0,0,2047,2046, + 1,0,0,0,2048,2058,1,0,0,0,2049,2051,5,209,0,0,2050,2052,5,77,0,0, + 2051,2050,1,0,0,0,2051,2052,1,0,0,0,2052,2053,1,0,0,0,2053,2054, + 5,78,0,0,2054,2058,3,148,74,0,2055,2056,5,194,0,0,2056,2058,3,812, + 406,0,2057,2034,1,0,0,0,2057,2035,1,0,0,0,2057,2036,1,0,0,0,2057, + 2041,1,0,0,0,2057,2042,1,0,0,0,2057,2043,1,0,0,0,2057,2049,1,0,0, + 0,2057,2055,1,0,0,0,2058,2061,1,0,0,0,2059,2057,1,0,0,0,2059,2060, + 1,0,0,0,2060,2074,1,0,0,0,2061,2059,1,0,0,0,2062,2063,5,2,0,0,2063, + 2068,3,118,59,0,2064,2065,5,6,0,0,2065,2067,3,118,59,0,2066,2064, + 1,0,0,0,2067,2070,1,0,0,0,2068,2066,1,0,0,0,2068,2069,1,0,0,0,2069, + 2071,1,0,0,0,2070,2068,1,0,0,0,2071,2072,5,3,0,0,2072,2074,1,0,0, + 0,2073,2059,1,0,0,0,2073,2062,1,0,0,0,2074,117,1,0,0,0,2075,2090, + 3,828,414,0,2076,2091,3,54,27,0,2077,2091,3,202,101,0,2078,2091, + 5,9,0,0,2079,2080,5,2,0,0,2080,2085,3,52,26,0,2081,2082,5,6,0,0, + 2082,2084,3,52,26,0,2083,2081,1,0,0,0,2084,2087,1,0,0,0,2085,2083, + 1,0,0,0,2085,2086,1,0,0,0,2086,2088,1,0,0,0,2087,2085,1,0,0,0,2088, + 2089,5,3,0,0,2089,2091,1,0,0,0,2090,2076,1,0,0,0,2090,2077,1,0,0, + 0,2090,2078,1,0,0,0,2090,2079,1,0,0,0,2090,2091,1,0,0,0,2091,119, + 1,0,0,0,2092,2094,5,46,0,0,2093,2095,3,122,61,0,2094,2093,1,0,0, + 0,2094,2095,1,0,0,0,2095,2096,1,0,0,0,2096,2098,5,92,0,0,2097,2099, + 3,294,147,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2100,1,0,0, + 0,2100,2166,3,776,388,0,2101,2103,5,2,0,0,2102,2104,3,126,63,0,2103, + 2102,1,0,0,0,2103,2104,1,0,0,0,2104,2105,1,0,0,0,2105,2107,5,3,0, + 0,2106,2108,3,164,82,0,2107,2106,1,0,0,0,2107,2108,1,0,0,0,2108, + 2110,1,0,0,0,2109,2111,3,166,83,0,2110,2109,1,0,0,0,2110,2111,1, + 0,0,0,2111,2113,1,0,0,0,2112,2114,3,170,85,0,2113,2112,1,0,0,0,2113, + 2114,1,0,0,0,2114,2116,1,0,0,0,2115,2117,3,172,86,0,2116,2115,1, + 0,0,0,2116,2117,1,0,0,0,2117,2119,1,0,0,0,2118,2120,3,174,87,0,2119, + 2118,1,0,0,0,2119,2120,1,0,0,0,2120,2122,1,0,0,0,2121,2123,3,176, + 88,0,2122,2121,1,0,0,0,2122,2123,1,0,0,0,2123,2167,1,0,0,0,2124, + 2125,5,275,0,0,2125,2127,3,316,158,0,2126,2128,3,124,62,0,2127,2126, + 1,0,0,0,2127,2128,1,0,0,0,2128,2130,1,0,0,0,2129,2131,3,166,83,0, + 2130,2129,1,0,0,0,2130,2131,1,0,0,0,2131,2133,1,0,0,0,2132,2134, + 3,170,85,0,2133,2132,1,0,0,0,2133,2134,1,0,0,0,2134,2136,1,0,0,0, + 2135,2137,3,172,86,0,2136,2135,1,0,0,0,2136,2137,1,0,0,0,2137,2139, + 1,0,0,0,2138,2140,3,174,87,0,2139,2138,1,0,0,0,2139,2140,1,0,0,0, + 2140,2142,1,0,0,0,2141,2143,3,176,88,0,2142,2141,1,0,0,0,2142,2143, + 1,0,0,0,2143,2167,1,0,0,0,2144,2145,5,285,0,0,2145,2146,5,275,0, + 0,2146,2148,3,784,392,0,2147,2149,3,124,62,0,2148,2147,1,0,0,0,2148, + 2149,1,0,0,0,2149,2150,1,0,0,0,2150,2152,3,106,53,0,2151,2153,3, + 166,83,0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2155,1,0,0,0,2154, + 2156,3,170,85,0,2155,2154,1,0,0,0,2155,2156,1,0,0,0,2156,2158,1, + 0,0,0,2157,2159,3,172,86,0,2158,2157,1,0,0,0,2158,2159,1,0,0,0,2159, + 2161,1,0,0,0,2160,2162,3,174,87,0,2161,2160,1,0,0,0,2161,2162,1, + 0,0,0,2162,2164,1,0,0,0,2163,2165,3,176,88,0,2164,2163,1,0,0,0,2164, + 2165,1,0,0,0,2165,2167,1,0,0,0,2166,2101,1,0,0,0,2166,2124,1,0,0, + 0,2166,2144,1,0,0,0,2167,121,1,0,0,0,2168,2174,5,354,0,0,2169,2174, + 5,352,0,0,2170,2171,7,20,0,0,2171,2174,7,21,0,0,2172,2174,5,367, + 0,0,2173,2168,1,0,0,0,2173,2169,1,0,0,0,2173,2170,1,0,0,0,2173,2172, + 1,0,0,0,2174,123,1,0,0,0,2175,2176,5,2,0,0,2176,2181,3,130,65,0, + 2177,2178,5,6,0,0,2178,2180,3,130,65,0,2179,2177,1,0,0,0,2180,2183, + 1,0,0,0,2181,2179,1,0,0,0,2181,2182,1,0,0,0,2182,2184,1,0,0,0,2183, + 2181,1,0,0,0,2184,2185,5,3,0,0,2185,125,1,0,0,0,2186,2191,3,128, + 64,0,2187,2188,5,6,0,0,2188,2190,3,128,64,0,2189,2187,1,0,0,0,2190, + 2193,1,0,0,0,2191,2189,1,0,0,0,2191,2192,1,0,0,0,2192,127,1,0,0, + 0,2193,2191,1,0,0,0,2194,2195,5,45,0,0,2195,2197,3,822,411,0,2196, + 2194,1,0,0,0,2196,2197,1,0,0,0,2197,2198,1,0,0,0,2198,2210,3,142, + 71,0,2199,2210,3,132,66,0,2200,2201,5,120,0,0,2201,2206,3,784,392, + 0,2202,2203,7,22,0,0,2203,2205,3,140,70,0,2204,2202,1,0,0,0,2205, + 2208,1,0,0,0,2206,2204,1,0,0,0,2206,2207,1,0,0,0,2207,2210,1,0,0, + 0,2208,2206,1,0,0,0,2209,2196,1,0,0,0,2209,2199,1,0,0,0,2209,2200, + 1,0,0,0,2210,129,1,0,0,0,2211,2214,3,806,403,0,2212,2213,5,105,0, + 0,2213,2215,5,280,0,0,2214,2212,1,0,0,0,2214,2215,1,0,0,0,2215,2219, + 1,0,0,0,2216,2218,3,134,67,0,2217,2216,1,0,0,0,2218,2221,1,0,0,0, + 2219,2217,1,0,0,0,2219,2220,1,0,0,0,2220,2228,1,0,0,0,2221,2219, + 1,0,0,0,2222,2223,5,45,0,0,2223,2225,3,822,411,0,2224,2222,1,0,0, + 0,2224,2225,1,0,0,0,2225,2226,1,0,0,0,2226,2228,3,142,71,0,2227, + 2211,1,0,0,0,2227,2224,1,0,0,0,2228,131,1,0,0,0,2229,2230,3,806, + 403,0,2230,2232,3,654,327,0,2231,2233,3,220,110,0,2232,2231,1,0, + 0,0,2232,2233,1,0,0,0,2233,2243,1,0,0,0,2234,2241,5,345,0,0,2235, + 2242,5,544,0,0,2236,2242,5,205,0,0,2237,2242,5,545,0,0,2238,2242, + 5,546,0,0,2239,2242,5,53,0,0,2240,2242,3,822,411,0,2241,2235,1,0, + 0,0,2241,2236,1,0,0,0,2241,2237,1,0,0,0,2241,2238,1,0,0,0,2241,2239, + 1,0,0,0,2241,2240,1,0,0,0,2242,2244,1,0,0,0,2243,2234,1,0,0,0,2243, + 2244,1,0,0,0,2244,2247,1,0,0,0,2245,2246,5,543,0,0,2246,2248,3,822, + 411,0,2247,2245,1,0,0,0,2247,2248,1,0,0,0,2248,2250,1,0,0,0,2249, + 2251,3,98,49,0,2250,2249,1,0,0,0,2250,2251,1,0,0,0,2251,2254,1,0, + 0,0,2252,2253,5,105,0,0,2253,2255,5,280,0,0,2254,2252,1,0,0,0,2254, + 2255,1,0,0,0,2255,2259,1,0,0,0,2256,2258,3,134,67,0,2257,2256,1, + 0,0,0,2258,2261,1,0,0,0,2259,2257,1,0,0,0,2259,2260,1,0,0,0,2260, + 133,1,0,0,0,2261,2259,1,0,0,0,2262,2263,5,45,0,0,2263,2265,3,822, + 411,0,2264,2262,1,0,0,0,2264,2265,1,0,0,0,2265,2266,1,0,0,0,2266, + 2271,3,136,68,0,2267,2269,5,77,0,0,2268,2267,1,0,0,0,2268,2269,1, + 0,0,0,2269,2270,1,0,0,0,2270,2272,5,54,0,0,2271,2268,1,0,0,0,2271, + 2272,1,0,0,0,2272,2275,1,0,0,0,2273,2274,5,69,0,0,2274,2276,7,9, + 0,0,2275,2273,1,0,0,0,2275,2276,1,0,0,0,2276,135,1,0,0,0,2277,2279, + 5,77,0,0,2278,2277,1,0,0,0,2278,2279,1,0,0,0,2279,2280,1,0,0,0,2280, + 2358,5,78,0,0,2281,2283,5,98,0,0,2282,2284,3,400,200,0,2283,2282, + 1,0,0,0,2283,2284,1,0,0,0,2284,2286,1,0,0,0,2285,2287,3,178,89,0, + 2286,2285,1,0,0,0,2286,2287,1,0,0,0,2287,2358,1,0,0,0,2288,2294, + 5,98,0,0,2289,2291,5,273,0,0,2290,2292,5,77,0,0,2291,2290,1,0,0, + 0,2291,2292,1,0,0,0,2292,2293,1,0,0,0,2293,2295,5,56,0,0,2294,2289, + 1,0,0,0,2294,2295,1,0,0,0,2295,2298,1,0,0,0,2296,2297,5,441,0,0, + 2297,2299,3,360,180,0,2298,2296,1,0,0,0,2298,2299,1,0,0,0,2299,2301, + 1,0,0,0,2300,2302,3,572,286,0,2301,2300,1,0,0,0,2301,2302,1,0,0, + 0,2302,2304,1,0,0,0,2303,2305,3,178,89,0,2304,2303,1,0,0,0,2304, + 2305,1,0,0,0,2305,2358,1,0,0,0,2306,2307,5,85,0,0,2307,2309,5,245, + 0,0,2308,2310,3,400,200,0,2309,2308,1,0,0,0,2309,2310,1,0,0,0,2310, + 2312,1,0,0,0,2311,2313,3,178,89,0,2312,2311,1,0,0,0,2312,2313,1, + 0,0,0,2313,2358,1,0,0,0,2314,2315,5,42,0,0,2315,2316,5,2,0,0,2316, + 2317,3,676,338,0,2317,2320,5,3,0,0,2318,2319,5,269,0,0,2319,2321, + 5,228,0,0,2320,2318,1,0,0,0,2320,2321,1,0,0,0,2321,2358,1,0,0,0, + 2322,2323,5,53,0,0,2323,2358,3,684,342,0,2324,2325,5,438,0,0,2325, + 2326,3,138,69,0,2326,2343,5,36,0,0,2327,2336,5,219,0,0,2328,2330, + 5,2,0,0,2329,2331,3,200,100,0,2330,2329,1,0,0,0,2331,2332,1,0,0, + 0,2332,2330,1,0,0,0,2332,2333,1,0,0,0,2333,2334,1,0,0,0,2334,2335, + 5,3,0,0,2335,2337,1,0,0,0,2336,2328,1,0,0,0,2336,2337,1,0,0,0,2337, + 2344,1,0,0,0,2338,2339,5,2,0,0,2339,2340,3,676,338,0,2340,2341,5, + 3,0,0,2341,2342,5,440,0,0,2342,2344,1,0,0,0,2343,2327,1,0,0,0,2343, + 2338,1,0,0,0,2344,2358,1,0,0,0,2345,2346,5,86,0,0,2346,2348,3,784, + 392,0,2347,2349,3,144,72,0,2348,2347,1,0,0,0,2348,2349,1,0,0,0,2349, + 2351,1,0,0,0,2350,2352,3,152,76,0,2351,2350,1,0,0,0,2351,2352,1, + 0,0,0,2352,2354,1,0,0,0,2353,2355,3,156,78,0,2354,2353,1,0,0,0,2354, + 2355,1,0,0,0,2355,2358,1,0,0,0,2356,2358,3,98,49,0,2357,2278,1,0, + 0,0,2357,2281,1,0,0,0,2357,2288,1,0,0,0,2357,2306,1,0,0,0,2357,2314, + 1,0,0,0,2357,2322,1,0,0,0,2357,2324,1,0,0,0,2357,2345,1,0,0,0,2357, + 2356,1,0,0,0,2358,137,1,0,0,0,2359,2363,5,139,0,0,2360,2361,5,147, + 0,0,2361,2363,5,53,0,0,2362,2359,1,0,0,0,2362,2360,1,0,0,0,2363, + 139,1,0,0,0,2364,2365,7,23,0,0,2365,141,1,0,0,0,2366,2367,5,42,0, + 0,2367,2368,5,2,0,0,2368,2369,3,676,338,0,2369,2373,5,3,0,0,2370, + 2372,3,272,136,0,2371,2370,1,0,0,0,2372,2375,1,0,0,0,2373,2371,1, + 0,0,0,2373,2374,1,0,0,0,2374,2463,1,0,0,0,2375,2373,1,0,0,0,2376, + 2380,5,98,0,0,2377,2378,5,85,0,0,2378,2380,5,245,0,0,2379,2376,1, + 0,0,0,2379,2377,1,0,0,0,2380,2404,1,0,0,0,2381,2383,3,144,72,0,2382, + 2384,3,150,75,0,2383,2382,1,0,0,0,2383,2384,1,0,0,0,2384,2386,1, + 0,0,0,2385,2387,3,400,200,0,2386,2385,1,0,0,0,2386,2387,1,0,0,0, + 2387,2389,1,0,0,0,2388,2390,3,178,89,0,2389,2388,1,0,0,0,2389,2390, + 1,0,0,0,2390,2394,1,0,0,0,2391,2393,3,272,136,0,2392,2391,1,0,0, + 0,2393,2396,1,0,0,0,2394,2392,1,0,0,0,2394,2395,1,0,0,0,2395,2405, + 1,0,0,0,2396,2394,1,0,0,0,2397,2401,3,180,90,0,2398,2400,3,272,136, + 0,2399,2398,1,0,0,0,2400,2403,1,0,0,0,2401,2399,1,0,0,0,2401,2402, + 1,0,0,0,2402,2405,1,0,0,0,2403,2401,1,0,0,0,2404,2381,1,0,0,0,2404, + 2397,1,0,0,0,2405,2463,1,0,0,0,2406,2408,5,199,0,0,2407,2409,3,170, + 85,0,2408,2407,1,0,0,0,2408,2409,1,0,0,0,2409,2410,1,0,0,0,2410, + 2411,5,2,0,0,2411,2416,3,154,77,0,2412,2413,5,6,0,0,2413,2415,3, + 154,77,0,2414,2412,1,0,0,0,2415,2418,1,0,0,0,2416,2414,1,0,0,0,2416, + 2417,1,0,0,0,2417,2419,1,0,0,0,2418,2416,1,0,0,0,2419,2421,5,3,0, + 0,2420,2422,3,150,75,0,2421,2420,1,0,0,0,2421,2422,1,0,0,0,2422, + 2424,1,0,0,0,2423,2425,3,400,200,0,2424,2423,1,0,0,0,2424,2425,1, + 0,0,0,2425,2427,1,0,0,0,2426,2428,3,178,89,0,2427,2426,1,0,0,0,2427, + 2428,1,0,0,0,2428,2434,1,0,0,0,2429,2430,5,103,0,0,2430,2431,5,2, + 0,0,2431,2432,3,676,338,0,2432,2433,5,3,0,0,2433,2435,1,0,0,0,2434, + 2429,1,0,0,0,2434,2435,1,0,0,0,2435,2439,1,0,0,0,2436,2438,3,272, + 136,0,2437,2436,1,0,0,0,2438,2441,1,0,0,0,2439,2437,1,0,0,0,2439, + 2440,1,0,0,0,2440,2463,1,0,0,0,2441,2439,1,0,0,0,2442,2443,5,63, + 0,0,2443,2444,5,245,0,0,2444,2445,3,144,72,0,2445,2446,5,86,0,0, + 2446,2448,3,784,392,0,2447,2449,3,144,72,0,2448,2447,1,0,0,0,2448, + 2449,1,0,0,0,2449,2451,1,0,0,0,2450,2452,3,152,76,0,2451,2450,1, + 0,0,0,2451,2452,1,0,0,0,2452,2454,1,0,0,0,2453,2455,3,156,78,0,2454, + 2453,1,0,0,0,2454,2455,1,0,0,0,2455,2459,1,0,0,0,2456,2458,3,272, + 136,0,2457,2456,1,0,0,0,2458,2461,1,0,0,0,2459,2457,1,0,0,0,2459, + 2460,1,0,0,0,2460,2463,1,0,0,0,2461,2459,1,0,0,0,2462,2366,1,0,0, + 0,2462,2379,1,0,0,0,2462,2406,1,0,0,0,2462,2442,1,0,0,0,2463,143, + 1,0,0,0,2464,2465,5,2,0,0,2465,2466,3,148,74,0,2466,2467,5,3,0,0, + 2467,145,1,0,0,0,2468,2469,5,2,0,0,2469,2474,3,806,403,0,2470,2471, + 5,6,0,0,2471,2473,3,806,403,0,2472,2470,1,0,0,0,2473,2476,1,0,0, + 0,2474,2472,1,0,0,0,2474,2475,1,0,0,0,2475,2477,1,0,0,0,2476,2474, + 1,0,0,0,2477,2478,5,3,0,0,2478,147,1,0,0,0,2479,2484,3,804,402,0, + 2480,2481,5,6,0,0,2481,2483,3,804,402,0,2482,2480,1,0,0,0,2483,2486, + 1,0,0,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485,149,1,0,0,0,2486, + 2484,1,0,0,0,2487,2488,5,441,0,0,2488,2489,3,144,72,0,2489,151,1, + 0,0,0,2490,2491,5,258,0,0,2491,2492,7,24,0,0,2492,153,1,0,0,0,2493, + 2494,3,362,181,0,2494,2501,5,105,0,0,2495,2502,3,414,207,0,2496, + 2497,5,278,0,0,2497,2498,5,2,0,0,2498,2499,3,414,207,0,2499,2500, + 5,3,0,0,2500,2502,1,0,0,0,2501,2495,1,0,0,0,2501,2496,1,0,0,0,2502, + 155,1,0,0,0,2503,2505,3,158,79,0,2504,2506,3,160,80,0,2505,2504, + 1,0,0,0,2505,2506,1,0,0,0,2506,2512,1,0,0,0,2507,2509,3,160,80,0, + 2508,2510,3,158,79,0,2509,2508,1,0,0,0,2509,2510,1,0,0,0,2510,2512, + 1,0,0,0,2511,2503,1,0,0,0,2511,2507,1,0,0,0,2512,157,1,0,0,0,2513, + 2514,5,80,0,0,2514,2515,5,369,0,0,2515,2516,3,162,81,0,2516,159, + 1,0,0,0,2517,2518,5,80,0,0,2518,2519,5,182,0,0,2519,2520,3,162,81, + 0,2520,161,1,0,0,0,2521,2522,5,269,0,0,2522,2531,5,132,0,0,2523, + 2531,5,315,0,0,2524,2531,5,150,0,0,2525,2526,5,333,0,0,2526,2528, + 7,25,0,0,2527,2529,3,148,74,0,2528,2527,1,0,0,0,2528,2529,1,0,0, + 0,2529,2531,1,0,0,0,2530,2521,1,0,0,0,2530,2523,1,0,0,0,2530,2524, + 1,0,0,0,2530,2525,1,0,0,0,2531,163,1,0,0,0,2532,2533,5,238,0,0,2533, + 2534,5,2,0,0,2534,2535,3,764,382,0,2535,2536,5,3,0,0,2536,165,1, + 0,0,0,2537,2538,5,285,0,0,2538,2539,5,147,0,0,2539,2540,3,822,411, + 0,2540,2541,5,2,0,0,2541,2546,3,168,84,0,2542,2543,5,6,0,0,2543, + 2545,3,168,84,0,2544,2542,1,0,0,0,2545,2548,1,0,0,0,2546,2544,1, + 0,0,0,2546,2547,1,0,0,0,2547,2549,1,0,0,0,2548,2546,1,0,0,0,2549, + 2550,5,3,0,0,2550,167,1,0,0,0,2551,2558,3,804,402,0,2552,2558,3, + 690,345,0,2553,2554,5,2,0,0,2554,2555,3,676,338,0,2555,2556,5,3, + 0,0,2556,2558,1,0,0,0,2557,2551,1,0,0,0,2557,2552,1,0,0,0,2557,2553, + 1,0,0,0,2558,2560,1,0,0,0,2559,2561,3,98,49,0,2560,2559,1,0,0,0, + 2560,2561,1,0,0,0,2561,2563,1,0,0,0,2562,2564,3,316,158,0,2563,2562, + 1,0,0,0,2563,2564,1,0,0,0,2564,169,1,0,0,0,2565,2566,5,100,0,0,2566, + 2567,3,822,411,0,2567,171,1,0,0,0,2568,2569,5,105,0,0,2569,2573, + 3,100,50,0,2570,2571,7,26,0,0,2571,2573,5,277,0,0,2572,2568,1,0, + 0,0,2572,2570,1,0,0,0,2573,173,1,0,0,0,2574,2575,5,80,0,0,2575,2581, + 5,161,0,0,2576,2582,5,191,0,0,2577,2578,5,182,0,0,2578,2582,5,320, + 0,0,2579,2580,5,292,0,0,2580,2582,5,320,0,0,2581,2576,1,0,0,0,2581, + 2577,1,0,0,0,2581,2579,1,0,0,0,2582,175,1,0,0,0,2583,2584,5,351, + 0,0,2584,2585,3,774,387,0,2585,177,1,0,0,0,2586,2587,5,100,0,0,2587, + 2588,5,226,0,0,2588,2589,3,176,88,0,2589,179,1,0,0,0,2590,2591,5, + 100,0,0,2591,2592,5,226,0,0,2592,2593,3,822,411,0,2593,181,1,0,0, + 0,2594,2595,5,46,0,0,2595,2600,5,342,0,0,2596,2598,3,294,147,0,2597, + 2596,1,0,0,0,2597,2598,1,0,0,0,2598,2599,1,0,0,0,2599,2601,3,316, + 158,0,2600,2597,1,0,0,0,2600,2601,1,0,0,0,2601,2603,1,0,0,0,2602, + 2604,3,144,72,0,2603,2602,1,0,0,0,2603,2604,1,0,0,0,2604,2605,1, + 0,0,0,2605,2615,5,80,0,0,2606,2611,3,734,367,0,2607,2608,5,6,0,0, + 2608,2610,3,734,367,0,2609,2607,1,0,0,0,2610,2613,1,0,0,0,2611,2609, + 1,0,0,0,2611,2612,1,0,0,0,2612,2616,1,0,0,0,2613,2611,1,0,0,0,2614, + 2616,3,732,366,0,2615,2606,1,0,0,0,2615,2614,1,0,0,0,2616,2617,1, + 0,0,0,2617,2618,3,610,305,0,2618,183,1,0,0,0,2619,2620,5,138,0,0, + 2620,2622,5,342,0,0,2621,2623,3,422,211,0,2622,2621,1,0,0,0,2622, + 2623,1,0,0,0,2623,2624,1,0,0,0,2624,2625,3,316,158,0,2625,2626,5, + 333,0,0,2626,2627,5,342,0,0,2627,2628,3,816,408,0,2628,185,1,0,0, + 0,2629,2631,5,46,0,0,2630,2632,3,122,61,0,2631,2630,1,0,0,0,2631, + 2632,1,0,0,0,2632,2633,1,0,0,0,2633,2635,5,92,0,0,2634,2636,3,294, + 147,0,2635,2634,1,0,0,0,2635,2636,1,0,0,0,2636,2637,1,0,0,0,2637, + 2638,3,188,94,0,2638,2639,5,36,0,0,2639,2641,3,560,280,0,2640,2642, + 3,190,95,0,2641,2640,1,0,0,0,2641,2642,1,0,0,0,2642,187,1,0,0,0, + 2643,2645,3,776,388,0,2644,2646,3,146,73,0,2645,2644,1,0,0,0,2645, + 2646,1,0,0,0,2646,2648,1,0,0,0,2647,2649,3,170,85,0,2648,2647,1, + 0,0,0,2648,2649,1,0,0,0,2649,2651,1,0,0,0,2650,2652,3,172,86,0,2651, + 2650,1,0,0,0,2651,2652,1,0,0,0,2652,2654,1,0,0,0,2653,2655,3,174, + 87,0,2654,2653,1,0,0,0,2654,2655,1,0,0,0,2655,2657,1,0,0,0,2656, + 2658,3,176,88,0,2657,2656,1,0,0,0,2657,2658,1,0,0,0,2658,189,1,0, + 0,0,2659,2663,5,105,0,0,2660,2664,5,174,0,0,2661,2662,5,269,0,0, + 2662,2664,5,174,0,0,2663,2660,1,0,0,0,2663,2661,1,0,0,0,2664,191, + 1,0,0,0,2665,2667,5,46,0,0,2666,2668,5,367,0,0,2667,2666,1,0,0,0, + 2667,2668,1,0,0,0,2668,2669,1,0,0,0,2669,2670,5,259,0,0,2670,2672, + 5,376,0,0,2671,2673,3,294,147,0,2672,2671,1,0,0,0,2672,2673,1,0, + 0,0,2673,2674,1,0,0,0,2674,2676,3,780,390,0,2675,2677,3,146,73,0, + 2676,2675,1,0,0,0,2676,2677,1,0,0,0,2677,2679,1,0,0,0,2678,2680, + 3,170,85,0,2679,2678,1,0,0,0,2679,2680,1,0,0,0,2680,2682,1,0,0,0, + 2681,2683,3,102,51,0,2682,2681,1,0,0,0,2682,2683,1,0,0,0,2683,2685, + 1,0,0,0,2684,2686,3,176,88,0,2685,2684,1,0,0,0,2685,2686,1,0,0,0, + 2686,2687,1,0,0,0,2687,2688,5,36,0,0,2688,2690,3,560,280,0,2689, + 2691,3,190,95,0,2690,2689,1,0,0,0,2690,2691,1,0,0,0,2691,193,1,0, + 0,0,2692,2693,5,305,0,0,2693,2694,5,259,0,0,2694,2696,5,376,0,0, + 2695,2697,5,109,0,0,2696,2695,1,0,0,0,2696,2697,1,0,0,0,2697,2698, + 1,0,0,0,2698,2700,3,782,391,0,2699,2701,3,190,95,0,2700,2699,1,0, + 0,0,2700,2701,1,0,0,0,2701,195,1,0,0,0,2702,2704,5,46,0,0,2703,2705, + 3,122,61,0,2704,2703,1,0,0,0,2704,2705,1,0,0,0,2705,2706,1,0,0,0, + 2706,2708,5,328,0,0,2707,2709,3,294,147,0,2708,2707,1,0,0,0,2708, + 2709,1,0,0,0,2709,2710,1,0,0,0,2710,2716,3,784,392,0,2711,2713,3, + 200,100,0,2712,2711,1,0,0,0,2713,2714,1,0,0,0,2714,2712,1,0,0,0, + 2714,2715,1,0,0,0,2715,2717,1,0,0,0,2716,2712,1,0,0,0,2716,2717, + 1,0,0,0,2717,197,1,0,0,0,2718,2719,5,138,0,0,2719,2721,5,328,0,0, + 2720,2722,3,422,211,0,2721,2720,1,0,0,0,2721,2722,1,0,0,0,2722,2723, + 1,0,0,0,2723,2725,3,784,392,0,2724,2726,3,200,100,0,2725,2724,1, + 0,0,0,2726,2727,1,0,0,0,2727,2725,1,0,0,0,2727,2728,1,0,0,0,2728, + 199,1,0,0,0,2729,2730,5,36,0,0,2730,2763,3,656,328,0,2731,2733,5, + 148,0,0,2732,2734,3,202,101,0,2733,2732,1,0,0,0,2733,2734,1,0,0, + 0,2734,2763,1,0,0,0,2735,2737,5,225,0,0,2736,2738,5,147,0,0,2737, + 2736,1,0,0,0,2737,2738,1,0,0,0,2738,2739,1,0,0,0,2739,2763,3,202, + 101,0,2740,2741,7,27,0,0,2741,2763,3,202,101,0,2742,2743,5,269,0, + 0,2743,2763,7,28,0,0,2744,2745,5,281,0,0,2745,2746,5,147,0,0,2746, + 2763,3,804,402,0,2747,2748,5,328,0,0,2748,2749,5,266,0,0,2749,2763, + 3,316,158,0,2750,2752,5,340,0,0,2751,2753,5,105,0,0,2752,2751,1, + 0,0,0,2752,2753,1,0,0,0,2753,2754,1,0,0,0,2754,2763,3,202,101,0, + 2755,2757,5,314,0,0,2756,2758,5,105,0,0,2757,2756,1,0,0,0,2757,2758, + 1,0,0,0,2758,2760,1,0,0,0,2759,2761,3,202,101,0,2760,2759,1,0,0, + 0,2760,2761,1,0,0,0,2761,2763,1,0,0,0,2762,2729,1,0,0,0,2762,2731, + 1,0,0,0,2762,2735,1,0,0,0,2762,2740,1,0,0,0,2762,2742,1,0,0,0,2762, + 2744,1,0,0,0,2762,2747,1,0,0,0,2762,2750,1,0,0,0,2762,2755,1,0,0, + 0,2763,201,1,0,0,0,2764,2766,7,29,0,0,2765,2764,1,0,0,0,2765,2766, + 1,0,0,0,2766,2767,1,0,0,0,2767,2770,5,573,0,0,2768,2770,3,816,408, + 0,2769,2765,1,0,0,0,2769,2768,1,0,0,0,2770,203,1,0,0,0,2771,2773, + 5,46,0,0,2772,2774,3,366,183,0,2773,2772,1,0,0,0,2773,2774,1,0,0, + 0,2774,2776,1,0,0,0,2775,2777,5,359,0,0,2776,2775,1,0,0,0,2776,2777, + 1,0,0,0,2777,2779,1,0,0,0,2778,2780,5,295,0,0,2779,2778,1,0,0,0, + 2779,2780,1,0,0,0,2780,2781,1,0,0,0,2781,2782,5,247,0,0,2782,2795, + 3,822,411,0,2783,2784,5,215,0,0,2784,2787,3,316,158,0,2785,2786, + 5,239,0,0,2786,2788,3,316,158,0,2787,2785,1,0,0,0,2787,2788,1,0, + 0,0,2788,2793,1,0,0,0,2789,2790,5,373,0,0,2790,2794,3,316,158,0, + 2791,2792,5,269,0,0,2792,2794,5,373,0,0,2793,2789,1,0,0,0,2793,2791, + 1,0,0,0,2793,2794,1,0,0,0,2794,2796,1,0,0,0,2795,2783,1,0,0,0,2795, + 2796,1,0,0,0,2796,205,1,0,0,0,2797,2798,5,46,0,0,2798,2801,3,176, + 88,0,2799,2800,5,282,0,0,2800,2802,3,818,409,0,2801,2799,1,0,0,0, + 2801,2802,1,0,0,0,2802,2803,1,0,0,0,2803,2804,5,255,0,0,2804,2806, + 3,812,406,0,2805,2807,3,102,51,0,2806,2805,1,0,0,0,2806,2807,1,0, + 0,0,2807,207,1,0,0,0,2808,2809,5,46,0,0,2809,2811,5,204,0,0,2810, + 2812,3,294,147,0,2811,2810,1,0,0,0,2811,2812,1,0,0,0,2812,2813,1, + 0,0,0,2813,2815,3,822,411,0,2814,2816,5,105,0,0,2815,2814,1,0,0, + 0,2815,2816,1,0,0,0,2816,2824,1,0,0,0,2817,2818,5,323,0,0,2818,2823, + 3,794,397,0,2819,2820,7,30,0,0,2820,2823,3,58,29,0,2821,2823,5,150, + 0,0,2822,2817,1,0,0,0,2822,2819,1,0,0,0,2822,2821,1,0,0,0,2823,2826, + 1,0,0,0,2824,2822,1,0,0,0,2824,2825,1,0,0,0,2825,209,1,0,0,0,2826, + 2824,1,0,0,0,2827,2828,5,138,0,0,2828,2829,5,204,0,0,2829,2830,3, + 822,411,0,2830,2835,5,369,0,0,2831,2832,5,94,0,0,2832,2834,3,58, + 29,0,2833,2831,1,0,0,0,2834,2837,1,0,0,0,2835,2833,1,0,0,0,2835, + 2836,1,0,0,0,2836,211,1,0,0,0,2837,2835,1,0,0,0,2838,2839,5,138, + 0,0,2839,2840,5,204,0,0,2840,2841,3,822,411,0,2841,2874,7,6,0,0, + 2842,2843,5,443,0,0,2843,2844,5,62,0,0,2844,2845,3,654,327,0,2845, + 2846,5,247,0,0,2846,2847,3,822,411,0,2847,2875,1,0,0,0,2848,2849, + 5,442,0,0,2849,2875,3,374,187,0,2850,2851,5,296,0,0,2851,2875,3, + 378,189,0,2852,2853,5,278,0,0,2853,2854,7,31,0,0,2854,2855,3,316, + 158,0,2855,2856,3,170,85,0,2856,2875,1,0,0,0,2857,2858,5,278,0,0, + 2858,2875,3,416,208,0,2859,2860,5,211,0,0,2860,2875,3,382,191,0, + 2861,2862,7,32,0,0,2862,2875,3,654,327,0,2863,2864,5,41,0,0,2864, + 2865,5,2,0,0,2865,2866,3,654,327,0,2866,2867,5,36,0,0,2867,2868, + 3,654,327,0,2868,2869,5,3,0,0,2869,2875,1,0,0,0,2870,2871,5,136, + 0,0,2871,2875,3,394,197,0,2872,2875,3,312,156,0,2873,2875,3,310, + 155,0,2874,2842,1,0,0,0,2874,2848,1,0,0,0,2874,2850,1,0,0,0,2874, + 2852,1,0,0,0,2874,2857,1,0,0,0,2874,2859,1,0,0,0,2874,2861,1,0,0, + 0,2874,2863,1,0,0,0,2874,2870,1,0,0,0,2874,2872,1,0,0,0,2874,2873, + 1,0,0,0,2875,213,1,0,0,0,2876,2877,5,46,0,0,2877,2878,5,63,0,0,2878, + 2879,5,174,0,0,2879,2880,5,381,0,0,2880,2886,3,822,411,0,2881,2883, + 3,216,108,0,2882,2881,1,0,0,0,2883,2884,1,0,0,0,2884,2882,1,0,0, + 0,2884,2885,1,0,0,0,2885,2887,1,0,0,0,2886,2882,1,0,0,0,2886,2887, + 1,0,0,0,2887,2889,1,0,0,0,2888,2890,3,220,110,0,2889,2888,1,0,0, + 0,2889,2890,1,0,0,0,2890,215,1,0,0,0,2891,2893,7,33,0,0,2892,2894, + 3,316,158,0,2893,2892,1,0,0,0,2893,2894,1,0,0,0,2894,2898,1,0,0, + 0,2895,2896,5,269,0,0,2896,2898,7,33,0,0,2897,2891,1,0,0,0,2897, + 2895,1,0,0,0,2898,217,1,0,0,0,2899,2900,5,138,0,0,2900,2901,5,63, + 0,0,2901,2902,5,174,0,0,2902,2903,5,381,0,0,2903,2917,3,822,411, + 0,2904,2906,3,216,108,0,2905,2904,1,0,0,0,2906,2907,1,0,0,0,2907, + 2905,1,0,0,0,2907,2908,1,0,0,0,2908,2910,1,0,0,0,2909,2905,1,0,0, + 0,2909,2910,1,0,0,0,2910,2911,1,0,0,0,2911,2918,3,222,111,0,2912, + 2914,3,216,108,0,2913,2912,1,0,0,0,2914,2915,1,0,0,0,2915,2913,1, + 0,0,0,2915,2916,1,0,0,0,2916,2918,1,0,0,0,2917,2909,1,0,0,0,2917, + 2913,1,0,0,0,2918,219,1,0,0,0,2919,2920,5,280,0,0,2920,2921,5,2, + 0,0,2921,2926,3,226,113,0,2922,2923,5,6,0,0,2923,2925,3,226,113, + 0,2924,2922,1,0,0,0,2925,2928,1,0,0,0,2926,2924,1,0,0,0,2926,2927, + 1,0,0,0,2927,2929,1,0,0,0,2928,2926,1,0,0,0,2929,2930,5,3,0,0,2930, + 221,1,0,0,0,2931,2932,5,280,0,0,2932,2933,5,2,0,0,2933,2938,3,224, + 112,0,2934,2935,5,6,0,0,2935,2937,3,224,112,0,2936,2934,1,0,0,0, + 2937,2940,1,0,0,0,2938,2936,1,0,0,0,2938,2939,1,0,0,0,2939,2941, + 1,0,0,0,2940,2938,1,0,0,0,2941,2942,5,3,0,0,2942,223,1,0,0,0,2943, + 2944,7,34,0,0,2944,2945,3,226,113,0,2945,225,1,0,0,0,2946,2947,3, + 828,414,0,2947,2948,3,812,406,0,2948,227,1,0,0,0,2949,2950,5,46, + 0,0,2950,2952,5,331,0,0,2951,2953,3,294,147,0,2952,2951,1,0,0,0, + 2952,2953,1,0,0,0,2953,2954,1,0,0,0,2954,2957,3,822,411,0,2955,2956, + 5,360,0,0,2956,2958,3,812,406,0,2957,2955,1,0,0,0,2957,2958,1,0, + 0,0,2958,2960,1,0,0,0,2959,2961,3,230,115,0,2960,2959,1,0,0,0,2960, + 2961,1,0,0,0,2961,2962,1,0,0,0,2962,2963,5,63,0,0,2963,2964,5,174, + 0,0,2964,2965,5,381,0,0,2965,2967,3,822,411,0,2966,2968,3,220,110, + 0,2967,2966,1,0,0,0,2967,2968,1,0,0,0,2968,229,1,0,0,0,2969,2972, + 5,375,0,0,2970,2973,3,812,406,0,2971,2973,5,78,0,0,2972,2970,1,0, + 0,0,2972,2971,1,0,0,0,2973,231,1,0,0,0,2974,2975,5,138,0,0,2975, + 2976,5,331,0,0,2976,2982,3,822,411,0,2977,2983,3,222,111,0,2978, + 2980,3,230,115,0,2979,2981,3,222,111,0,2980,2979,1,0,0,0,2980,2981, + 1,0,0,0,2981,2983,1,0,0,0,2982,2977,1,0,0,0,2982,2978,1,0,0,0,2983, + 233,1,0,0,0,2984,2985,5,46,0,0,2985,2986,5,63,0,0,2986,2988,5,92, + 0,0,2987,2989,3,294,147,0,2988,2987,1,0,0,0,2988,2989,1,0,0,0,2989, + 2990,1,0,0,0,2990,2991,3,776,388,0,2991,2993,5,2,0,0,2992,2994,3, + 126,63,0,2993,2992,1,0,0,0,2993,2994,1,0,0,0,2994,2995,1,0,0,0,2995, + 2997,5,3,0,0,2996,2998,3,164,82,0,2997,2996,1,0,0,0,2997,2998,1, + 0,0,0,2998,2999,1,0,0,0,2999,3000,5,331,0,0,3000,3002,3,822,411, + 0,3001,3003,3,220,110,0,3002,3001,1,0,0,0,3002,3003,1,0,0,0,3003, + 3024,1,0,0,0,3004,3005,5,46,0,0,3005,3006,5,63,0,0,3006,3008,5,92, + 0,0,3007,3009,3,294,147,0,3008,3007,1,0,0,0,3008,3009,1,0,0,0,3009, + 3010,1,0,0,0,3010,3011,3,776,388,0,3011,3012,5,285,0,0,3012,3013, + 5,275,0,0,3013,3015,3,778,389,0,3014,3016,3,124,62,0,3015,3014,1, + 0,0,0,3015,3016,1,0,0,0,3016,3017,1,0,0,0,3017,3018,3,106,53,0,3018, + 3019,5,331,0,0,3019,3021,3,822,411,0,3020,3022,3,220,110,0,3021, + 3020,1,0,0,0,3021,3022,1,0,0,0,3022,3024,1,0,0,0,3023,2984,1,0,0, + 0,3023,3004,1,0,0,0,3024,235,1,0,0,0,3025,3026,5,444,0,0,3026,3027, + 5,63,0,0,3027,3028,5,323,0,0,3028,3038,3,794,397,0,3029,3030,5,74, + 0,0,3030,3033,5,94,0,0,3031,3033,5,59,0,0,3032,3029,1,0,0,0,3032, + 3031,1,0,0,0,3033,3034,1,0,0,0,3034,3035,5,2,0,0,3035,3036,3,630, + 315,0,3036,3037,5,3,0,0,3037,3039,1,0,0,0,3038,3032,1,0,0,0,3038, + 3039,1,0,0,0,3039,3040,1,0,0,0,3040,3041,5,64,0,0,3041,3042,5,331, + 0,0,3042,3043,3,822,411,0,3043,3044,5,71,0,0,3044,3046,3,822,411, + 0,3045,3047,3,220,110,0,3046,3045,1,0,0,0,3046,3047,1,0,0,0,3047, + 237,1,0,0,0,3048,3049,5,46,0,0,3049,3050,5,99,0,0,3050,3052,5,257, + 0,0,3051,3053,3,294,147,0,3052,3051,1,0,0,0,3052,3053,1,0,0,0,3053, + 3054,1,0,0,0,3054,3057,5,62,0,0,3055,3058,3,818,409,0,3056,3058, + 5,99,0,0,3057,3055,1,0,0,0,3057,3056,1,0,0,0,3058,3059,1,0,0,0,3059, + 3060,5,331,0,0,3060,3062,3,822,411,0,3061,3063,3,220,110,0,3062, + 3061,1,0,0,0,3062,3063,1,0,0,0,3063,239,1,0,0,0,3064,3065,5,138, + 0,0,3065,3066,5,99,0,0,3066,3067,5,257,0,0,3067,3070,5,62,0,0,3068, + 3071,3,818,409,0,3069,3071,5,99,0,0,3070,3068,1,0,0,0,3070,3069, + 1,0,0,0,3071,3072,1,0,0,0,3072,3073,5,331,0,0,3073,3074,3,822,411, + 0,3074,3075,3,222,111,0,3075,241,1,0,0,0,3076,3077,5,46,0,0,3077, + 3078,5,445,0,0,3078,3079,3,822,411,0,3079,3080,5,80,0,0,3080,3087, + 3,784,392,0,3081,3085,5,36,0,0,3082,3086,5,541,0,0,3083,3086,5,542, + 0,0,3084,3086,3,830,415,0,3085,3082,1,0,0,0,3085,3083,1,0,0,0,3085, + 3084,1,0,0,0,3086,3088,1,0,0,0,3087,3081,1,0,0,0,3087,3088,1,0,0, + 0,3088,3091,1,0,0,0,3089,3090,5,62,0,0,3090,3092,7,35,0,0,3091,3089, + 1,0,0,0,3091,3092,1,0,0,0,3092,3095,1,0,0,0,3093,3094,5,94,0,0,3094, + 3096,3,820,410,0,3095,3093,1,0,0,0,3095,3096,1,0,0,0,3096,3098,1, + 0,0,0,3097,3099,3,250,125,0,3098,3097,1,0,0,0,3098,3099,1,0,0,0, + 3099,3101,1,0,0,0,3100,3102,3,252,126,0,3101,3100,1,0,0,0,3101,3102, + 1,0,0,0,3102,243,1,0,0,0,3103,3104,5,138,0,0,3104,3105,5,445,0,0, + 3105,3106,3,822,411,0,3106,3107,5,80,0,0,3107,3110,3,784,392,0,3108, + 3109,5,94,0,0,3109,3111,3,820,410,0,3110,3108,1,0,0,0,3110,3111, + 1,0,0,0,3111,3113,1,0,0,0,3112,3114,3,250,125,0,3113,3112,1,0,0, + 0,3113,3114,1,0,0,0,3114,3116,1,0,0,0,3115,3117,3,252,126,0,3116, + 3115,1,0,0,0,3116,3117,1,0,0,0,3117,245,1,0,0,0,3118,3119,5,138, + 0,0,3119,3120,5,296,0,0,3120,3122,3,800,400,0,3121,3123,3,368,184, + 0,3122,3121,1,0,0,0,3122,3123,1,0,0,0,3123,3150,1,0,0,0,3124,3128, + 3,248,124,0,3125,3127,3,248,124,0,3126,3125,1,0,0,0,3127,3130,1, + 0,0,0,3128,3126,1,0,0,0,3128,3129,1,0,0,0,3129,3132,1,0,0,0,3130, + 3128,1,0,0,0,3131,3133,5,315,0,0,3132,3131,1,0,0,0,3132,3133,1,0, + 0,0,3133,3151,1,0,0,0,3134,3135,5,309,0,0,3135,3136,5,94,0,0,3136, + 3151,3,802,401,0,3137,3138,5,282,0,0,3138,3139,5,94,0,0,3139,3151, + 3,818,409,0,3140,3141,5,333,0,0,3141,3142,5,323,0,0,3142,3151,3, + 32,16,0,3143,3145,5,269,0,0,3144,3143,1,0,0,0,3144,3145,1,0,0,0, + 3145,3146,1,0,0,0,3146,3147,5,462,0,0,3147,3148,5,80,0,0,3148,3149, + 5,204,0,0,3149,3151,3,822,411,0,3150,3124,1,0,0,0,3150,3134,1,0, + 0,0,3150,3137,1,0,0,0,3150,3140,1,0,0,0,3150,3144,1,0,0,0,3151,247, + 1,0,0,0,3152,3154,5,205,0,0,3153,3152,1,0,0,0,3153,3154,1,0,0,0, + 3154,3155,1,0,0,0,3155,3156,5,327,0,0,3156,3163,5,243,0,0,3157,3159, + 5,205,0,0,3158,3157,1,0,0,0,3158,3159,1,0,0,0,3159,3160,1,0,0,0, + 3160,3161,5,327,0,0,3161,3163,5,181,0,0,3162,3153,1,0,0,0,3162,3158, + 1,0,0,0,3163,3182,1,0,0,0,3164,3165,5,333,0,0,3165,3166,3,822,411, + 0,3166,3169,7,36,0,0,3167,3170,3,822,411,0,3168,3170,5,53,0,0,3169, + 3167,1,0,0,0,3169,3168,1,0,0,0,3170,3182,1,0,0,0,3171,3172,5,333, + 0,0,3172,3173,3,822,411,0,3173,3174,5,64,0,0,3174,3175,5,434,0,0, + 3175,3182,1,0,0,0,3176,3179,5,313,0,0,3177,3180,3,822,411,0,3178, + 3180,5,30,0,0,3179,3177,1,0,0,0,3179,3178,1,0,0,0,3180,3182,1,0, + 0,0,3181,3162,1,0,0,0,3181,3164,1,0,0,0,3181,3171,1,0,0,0,3181,3176, + 1,0,0,0,3182,249,1,0,0,0,3183,3184,5,100,0,0,3184,3185,5,2,0,0,3185, + 3186,3,676,338,0,3186,3187,5,3,0,0,3187,251,1,0,0,0,3188,3189,5, + 105,0,0,3189,3190,5,42,0,0,3190,3191,5,2,0,0,3191,3192,3,676,338, + 0,3192,3193,5,3,0,0,3193,253,1,0,0,0,3194,3195,5,46,0,0,3195,3196, + 5,131,0,0,3196,3197,5,446,0,0,3197,3198,3,822,411,0,3198,3199,5, + 360,0,0,3199,3200,7,37,0,0,3200,3201,5,215,0,0,3201,3202,3,316,158, + 0,3202,255,1,0,0,0,3203,3205,5,46,0,0,3204,3206,3,366,183,0,3205, + 3204,1,0,0,0,3205,3206,1,0,0,0,3206,3207,1,0,0,0,3207,3208,5,357, + 0,0,3208,3209,3,822,411,0,3209,3210,3,258,129,0,3210,3211,3,260, + 130,0,3211,3212,5,80,0,0,3212,3224,3,778,389,0,3213,3220,5,447,0, + 0,3214,3215,7,38,0,0,3215,3217,7,39,0,0,3216,3218,5,36,0,0,3217, + 3216,1,0,0,0,3217,3218,1,0,0,0,3218,3219,1,0,0,0,3219,3221,3,822, + 411,0,3220,3214,1,0,0,0,3221,3222,1,0,0,0,3222,3220,1,0,0,0,3222, + 3223,1,0,0,0,3223,3225,1,0,0,0,3224,3213,1,0,0,0,3224,3225,1,0,0, + 0,3225,3231,1,0,0,0,3226,3228,5,62,0,0,3227,3229,5,192,0,0,3228, + 3227,1,0,0,0,3228,3229,1,0,0,0,3229,3230,1,0,0,0,3230,3232,7,40, + 0,0,3231,3226,1,0,0,0,3231,3232,1,0,0,0,3232,3234,1,0,0,0,3233,3235, + 3,264,132,0,3234,3233,1,0,0,0,3234,3235,1,0,0,0,3235,3236,1,0,0, + 0,3236,3237,5,202,0,0,3237,3238,3,266,133,0,3238,3239,5,2,0,0,3239, + 3240,3,268,134,0,3240,3241,5,3,0,0,3241,3282,1,0,0,0,3242,3244,5, + 46,0,0,3243,3245,3,366,183,0,3244,3243,1,0,0,0,3244,3245,1,0,0,0, + 3245,3247,1,0,0,0,3246,3248,5,45,0,0,3247,3246,1,0,0,0,3247,3248, + 1,0,0,0,3248,3249,1,0,0,0,3249,3250,5,357,0,0,3250,3251,3,822,411, + 0,3251,3252,3,258,129,0,3252,3253,3,260,130,0,3253,3254,5,80,0,0, + 3254,3257,3,778,389,0,3255,3256,5,64,0,0,3256,3258,3,784,392,0,3257, + 3255,1,0,0,0,3257,3258,1,0,0,0,3258,3262,1,0,0,0,3259,3261,3,272, + 136,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,3270,1,0,0,0,3264,3262,1,0,0,0,3265,3267,5,62, + 0,0,3266,3268,5,192,0,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268, + 3269,1,0,0,0,3269,3271,7,40,0,0,3270,3265,1,0,0,0,3270,3271,1,0, + 0,0,3271,3273,1,0,0,0,3272,3274,3,264,132,0,3273,3272,1,0,0,0,3273, + 3274,1,0,0,0,3274,3275,1,0,0,0,3275,3276,5,202,0,0,3276,3277,3,266, + 133,0,3277,3278,5,2,0,0,3278,3279,3,268,134,0,3279,3280,5,3,0,0, + 3280,3282,1,0,0,0,3281,3203,1,0,0,0,3281,3242,1,0,0,0,3282,257,1, + 0,0,0,3283,3288,5,145,0,0,3284,3288,5,135,0,0,3285,3286,5,242,0, + 0,3286,3288,5,275,0,0,3287,3283,1,0,0,0,3287,3284,1,0,0,0,3287,3285, + 1,0,0,0,3288,259,1,0,0,0,3289,3294,3,262,131,0,3290,3291,5,82,0, + 0,3291,3293,3,262,131,0,3292,3290,1,0,0,0,3293,3296,1,0,0,0,3294, + 3292,1,0,0,0,3294,3295,1,0,0,0,3295,261,1,0,0,0,3296,3294,1,0,0, + 0,3297,3306,5,241,0,0,3298,3306,5,182,0,0,3299,3302,5,369,0,0,3300, + 3301,5,275,0,0,3301,3303,3,148,74,0,3302,3300,1,0,0,0,3302,3303, + 1,0,0,0,3303,3306,1,0,0,0,3304,3306,5,358,0,0,3305,3297,1,0,0,0, + 3305,3298,1,0,0,0,3305,3299,1,0,0,0,3305,3304,1,0,0,0,3306,263,1, + 0,0,0,3307,3308,5,102,0,0,3308,3309,5,2,0,0,3309,3310,3,676,338, + 0,3310,3311,5,3,0,0,3311,265,1,0,0,0,3312,3313,5,211,0,0,3313,3317, + 3,810,405,0,3314,3315,5,296,0,0,3315,3317,3,800,400,0,3316,3312, + 1,0,0,0,3316,3314,1,0,0,0,3317,267,1,0,0,0,3318,3321,3,270,135,0, + 3319,3321,1,0,0,0,3320,3318,1,0,0,0,3320,3319,1,0,0,0,3321,3326, + 1,0,0,0,3322,3323,5,6,0,0,3323,3325,3,270,135,0,3324,3322,1,0,0, + 0,3325,3328,1,0,0,0,3326,3324,1,0,0,0,3326,3327,1,0,0,0,3327,269, + 1,0,0,0,3328,3326,1,0,0,0,3329,3334,5,571,0,0,3330,3334,5,573,0, + 0,3331,3334,3,812,406,0,3332,3334,3,828,414,0,3333,3329,1,0,0,0, + 3333,3330,1,0,0,0,3333,3331,1,0,0,0,3333,3332,1,0,0,0,3334,271,1, + 0,0,0,3335,3337,5,77,0,0,3336,3335,1,0,0,0,3336,3337,1,0,0,0,3337, + 3338,1,0,0,0,3338,3346,5,54,0,0,3339,3340,5,69,0,0,3340,3346,7,9, + 0,0,3341,3342,5,77,0,0,3342,3346,5,371,0,0,3343,3344,5,269,0,0,3344, + 3346,5,228,0,0,3345,3336,1,0,0,0,3345,3339,1,0,0,0,3345,3341,1,0, + 0,0,3345,3343,1,0,0,0,3346,273,1,0,0,0,3347,3348,5,46,0,0,3348,3349, + 5,198,0,0,3349,3350,5,357,0,0,3350,3351,3,822,411,0,3351,3352,5, + 80,0,0,3352,3362,3,828,414,0,3353,3354,5,102,0,0,3354,3359,3,276, + 138,0,3355,3356,5,33,0,0,3356,3358,3,276,138,0,3357,3355,1,0,0,0, + 3358,3361,1,0,0,0,3359,3357,1,0,0,0,3359,3360,1,0,0,0,3360,3363, + 1,0,0,0,3361,3359,1,0,0,0,3362,3353,1,0,0,0,3362,3363,1,0,0,0,3363, + 3364,1,0,0,0,3364,3365,5,202,0,0,3365,3366,3,266,133,0,3366,3367, + 5,2,0,0,3367,3368,5,3,0,0,3368,275,1,0,0,0,3369,3370,3,822,411,0, + 3370,3371,5,68,0,0,3371,3372,5,2,0,0,3372,3376,3,812,406,0,3373, + 3375,3,462,231,0,3374,3373,1,0,0,0,3375,3378,1,0,0,0,3376,3374,1, + 0,0,0,3376,3377,1,0,0,0,3377,3379,1,0,0,0,3378,3376,1,0,0,0,3379, + 3380,5,3,0,0,3380,277,1,0,0,0,3381,3382,5,138,0,0,3382,3383,5,198, + 0,0,3383,3384,5,357,0,0,3384,3390,3,822,411,0,3385,3387,5,193,0, + 0,3386,3388,7,14,0,0,3387,3386,1,0,0,0,3387,3388,1,0,0,0,3388,3391, + 1,0,0,0,3389,3391,5,186,0,0,3390,3385,1,0,0,0,3390,3389,1,0,0,0, + 3391,279,1,0,0,0,3392,3393,5,46,0,0,3393,3394,5,140,0,0,3394,3395, + 3,316,158,0,3395,3396,5,42,0,0,3396,3397,5,2,0,0,3397,3398,3,676, + 338,0,3398,3402,5,3,0,0,3399,3401,3,272,136,0,3400,3399,1,0,0,0, + 3401,3404,1,0,0,0,3402,3400,1,0,0,0,3402,3403,1,0,0,0,3403,281,1, + 0,0,0,3404,3402,1,0,0,0,3405,3407,5,46,0,0,3406,3408,3,366,183,0, + 3407,3406,1,0,0,0,3407,3408,1,0,0,0,3408,3409,1,0,0,0,3409,3410, + 5,136,0,0,3410,3425,3,810,405,0,3411,3412,3,392,196,0,3412,3413, + 3,284,142,0,3413,3426,1,0,0,0,3414,3415,5,2,0,0,3415,3420,3,290, + 145,0,3416,3417,5,6,0,0,3417,3419,3,290,145,0,3418,3416,1,0,0,0, + 3419,3422,1,0,0,0,3420,3418,1,0,0,0,3420,3421,1,0,0,0,3421,3423, + 1,0,0,0,3422,3420,1,0,0,0,3423,3424,5,3,0,0,3424,3426,1,0,0,0,3425, + 3411,1,0,0,0,3425,3414,1,0,0,0,3426,3484,1,0,0,0,3427,3428,5,46, + 0,0,3428,3429,5,278,0,0,3429,3430,3,414,207,0,3430,3431,3,284,142, + 0,3431,3484,1,0,0,0,3432,3433,5,46,0,0,3433,3434,5,360,0,0,3434, + 3435,3,316,158,0,3435,3453,5,36,0,0,3436,3438,5,2,0,0,3437,3439, + 3,644,322,0,3438,3437,1,0,0,0,3438,3439,1,0,0,0,3439,3440,1,0,0, + 0,3440,3454,5,3,0,0,3441,3442,5,196,0,0,3442,3450,5,2,0,0,3443,3447, + 3,812,406,0,3444,3446,3,462,231,0,3445,3444,1,0,0,0,3446,3449,1, + 0,0,0,3447,3445,1,0,0,0,3447,3448,1,0,0,0,3448,3451,1,0,0,0,3449, + 3447,1,0,0,0,3450,3443,1,0,0,0,3450,3451,1,0,0,0,3451,3452,1,0,0, + 0,3452,3454,5,3,0,0,3453,3436,1,0,0,0,3453,3441,1,0,0,0,3454,3484, + 1,0,0,0,3455,3456,5,46,0,0,3456,3457,5,360,0,0,3457,3463,3,316,158, + 0,3458,3459,5,36,0,0,3459,3461,5,299,0,0,3460,3458,1,0,0,0,3460, + 3461,1,0,0,0,3461,3462,1,0,0,0,3462,3464,3,284,142,0,3463,3460,1, + 0,0,0,3463,3464,1,0,0,0,3464,3484,1,0,0,0,3465,3466,5,46,0,0,3466, + 3467,5,355,0,0,3467,3468,5,325,0,0,3468,3469,7,41,0,0,3469,3470, + 3,316,158,0,3470,3471,3,284,142,0,3471,3484,1,0,0,0,3472,3473,5, + 46,0,0,3473,3475,5,108,0,0,3474,3476,3,294,147,0,3475,3474,1,0,0, + 0,3475,3476,1,0,0,0,3476,3477,1,0,0,0,3477,3481,3,316,158,0,3478, + 3482,3,284,142,0,3479,3480,5,64,0,0,3480,3482,3,316,158,0,3481,3478, + 1,0,0,0,3481,3479,1,0,0,0,3482,3484,1,0,0,0,3483,3405,1,0,0,0,3483, + 3427,1,0,0,0,3483,3432,1,0,0,0,3483,3455,1,0,0,0,3483,3465,1,0,0, + 0,3483,3472,1,0,0,0,3484,283,1,0,0,0,3485,3486,5,2,0,0,3486,3491, + 3,286,143,0,3487,3488,5,6,0,0,3488,3490,3,286,143,0,3489,3487,1, + 0,0,0,3490,3493,1,0,0,0,3491,3489,1,0,0,0,3491,3492,1,0,0,0,3492, + 3494,1,0,0,0,3493,3491,1,0,0,0,3494,3495,5,3,0,0,3495,285,1,0,0, + 0,3496,3499,3,828,414,0,3497,3498,5,10,0,0,3498,3500,3,288,144,0, + 3499,3497,1,0,0,0,3499,3500,1,0,0,0,3500,287,1,0,0,0,3501,3508,3, + 388,194,0,3502,3508,3,838,419,0,3503,3508,3,728,364,0,3504,3508, + 3,202,101,0,3505,3508,3,812,406,0,3506,3508,5,407,0,0,3507,3501, + 1,0,0,0,3507,3502,1,0,0,0,3507,3503,1,0,0,0,3507,3504,1,0,0,0,3507, + 3505,1,0,0,0,3507,3506,1,0,0,0,3508,289,1,0,0,0,3509,3510,3,830, + 415,0,3510,3511,5,10,0,0,3511,3512,3,288,144,0,3512,291,1,0,0,0, + 3513,3514,5,138,0,0,3514,3515,5,360,0,0,3515,3516,3,316,158,0,3516, + 3517,5,133,0,0,3517,3519,5,450,0,0,3518,3520,3,294,147,0,3519,3518, + 1,0,0,0,3519,3520,1,0,0,0,3520,3521,1,0,0,0,3521,3524,3,812,406, + 0,3522,3523,7,42,0,0,3523,3525,3,812,406,0,3524,3522,1,0,0,0,3524, + 3525,1,0,0,0,3525,3536,1,0,0,0,3526,3527,5,138,0,0,3527,3528,5,360, + 0,0,3528,3529,3,316,158,0,3529,3530,5,309,0,0,3530,3531,5,450,0, + 0,3531,3532,3,812,406,0,3532,3533,5,94,0,0,3533,3534,3,812,406,0, + 3534,3536,1,0,0,0,3535,3513,1,0,0,0,3535,3526,1,0,0,0,3536,293,1, + 0,0,0,3537,3538,5,220,0,0,3538,3539,5,77,0,0,3539,3540,5,396,0,0, + 3540,295,1,0,0,0,3541,3542,5,46,0,0,3542,3543,5,278,0,0,3543,3544, + 5,156,0,0,3544,3546,3,316,158,0,3545,3547,5,53,0,0,3546,3545,1,0, + 0,0,3546,3547,1,0,0,0,3547,3548,1,0,0,0,3548,3549,5,62,0,0,3549, + 3550,5,360,0,0,3550,3551,3,654,327,0,3551,3554,3,170,85,0,3552,3553, + 5,206,0,0,3553,3555,3,316,158,0,3554,3552,1,0,0,0,3554,3555,1,0, + 0,0,3555,3556,1,0,0,0,3556,3557,5,36,0,0,3557,3562,3,298,149,0,3558, + 3559,5,6,0,0,3559,3561,3,298,149,0,3560,3558,1,0,0,0,3561,3564,1, + 0,0,0,3562,3560,1,0,0,0,3562,3563,1,0,0,0,3563,297,1,0,0,0,3564, + 3562,1,0,0,0,3565,3566,5,278,0,0,3566,3567,5,571,0,0,3567,3569,3, + 414,207,0,3568,3570,3,412,206,0,3569,3568,1,0,0,0,3569,3570,1,0, + 0,0,3570,3578,1,0,0,0,3571,3576,5,62,0,0,3572,3577,5,325,0,0,3573, + 3574,5,83,0,0,3574,3575,5,147,0,0,3575,3577,3,316,158,0,3576,3572, + 1,0,0,0,3576,3573,1,0,0,0,3577,3579,1,0,0,0,3578,3571,1,0,0,0,3578, + 3579,1,0,0,0,3579,3581,1,0,0,0,3580,3582,5,302,0,0,3581,3580,1,0, + 0,0,3581,3582,1,0,0,0,3582,3592,1,0,0,0,3583,3584,5,211,0,0,3584, + 3586,5,571,0,0,3585,3587,3,528,264,0,3586,3585,1,0,0,0,3586,3587, + 1,0,0,0,3587,3588,1,0,0,0,3588,3592,3,382,191,0,3589,3590,5,345, + 0,0,3590,3592,3,654,327,0,3591,3565,1,0,0,0,3591,3583,1,0,0,0,3591, + 3589,1,0,0,0,3592,299,1,0,0,0,3593,3594,5,46,0,0,3594,3595,5,278, + 0,0,3595,3596,5,206,0,0,3596,3597,3,316,158,0,3597,3598,3,170,85, + 0,3598,301,1,0,0,0,3599,3600,5,138,0,0,3600,3601,5,278,0,0,3601, + 3602,5,206,0,0,3602,3603,3,316,158,0,3603,3622,3,170,85,0,3604,3605, + 5,133,0,0,3605,3610,3,298,149,0,3606,3607,5,6,0,0,3607,3609,3,298, + 149,0,3608,3606,1,0,0,0,3609,3612,1,0,0,0,3610,3608,1,0,0,0,3610, + 3611,1,0,0,0,3611,3623,1,0,0,0,3612,3610,1,0,0,0,3613,3614,5,191, + 0,0,3614,3619,3,304,152,0,3615,3616,5,6,0,0,3616,3618,3,304,152, + 0,3617,3615,1,0,0,0,3618,3621,1,0,0,0,3619,3617,1,0,0,0,3619,3620, + 1,0,0,0,3620,3623,1,0,0,0,3621,3619,1,0,0,0,3622,3604,1,0,0,0,3622, + 3613,1,0,0,0,3623,303,1,0,0,0,3624,3625,7,43,0,0,3625,3626,5,571, + 0,0,3626,3627,3,528,264,0,3627,305,1,0,0,0,3628,3629,5,301,0,0,3629, + 3630,5,281,0,0,3630,3631,5,147,0,0,3631,3632,3,820,410,0,3632,3633, + 5,94,0,0,3633,3634,3,818,409,0,3634,307,1,0,0,0,3635,3658,5,191, + 0,0,3636,3659,5,328,0,0,3637,3659,5,226,0,0,3638,3659,5,108,0,0, + 3639,3659,5,168,0,0,3640,3659,5,342,0,0,3641,3659,5,452,0,0,3642, + 3659,5,331,0,0,3643,3644,5,131,0,0,3644,3659,5,446,0,0,3645,3646, + 5,198,0,0,3646,3659,5,357,0,0,3647,3659,5,204,0,0,3648,3650,5,295, + 0,0,3649,3648,1,0,0,0,3649,3650,1,0,0,0,3650,3651,1,0,0,0,3651,3659, + 5,247,0,0,3652,3653,5,63,0,0,3653,3654,5,174,0,0,3654,3659,5,381, + 0,0,3655,3656,5,355,0,0,3656,3657,5,325,0,0,3657,3659,7,41,0,0,3658, + 3636,1,0,0,0,3658,3637,1,0,0,0,3658,3638,1,0,0,0,3658,3639,1,0,0, + 0,3658,3640,1,0,0,0,3658,3641,1,0,0,0,3658,3642,1,0,0,0,3658,3643, + 1,0,0,0,3658,3645,1,0,0,0,3658,3647,1,0,0,0,3658,3649,1,0,0,0,3658, + 3652,1,0,0,0,3658,3655,1,0,0,0,3659,3661,1,0,0,0,3660,3662,3,422, + 211,0,3661,3660,1,0,0,0,3661,3662,1,0,0,0,3662,3663,1,0,0,0,3663, + 3665,3,788,394,0,3664,3666,3,96,48,0,3665,3664,1,0,0,0,3665,3666, + 1,0,0,0,3666,3843,1,0,0,0,3667,3669,5,191,0,0,3668,3670,5,259,0, + 0,3669,3668,1,0,0,0,3669,3670,1,0,0,0,3670,3671,1,0,0,0,3671,3673, + 5,376,0,0,3672,3674,3,422,211,0,3673,3672,1,0,0,0,3673,3674,1,0, + 0,0,3674,3675,1,0,0,0,3675,3680,3,782,391,0,3676,3677,5,6,0,0,3677, + 3679,3,782,391,0,3678,3676,1,0,0,0,3679,3682,1,0,0,0,3680,3678,1, + 0,0,0,3680,3681,1,0,0,0,3681,3684,1,0,0,0,3682,3680,1,0,0,0,3683, + 3685,3,96,48,0,3684,3683,1,0,0,0,3684,3685,1,0,0,0,3685,3843,1,0, + 0,0,3686,3688,5,191,0,0,3687,3689,5,63,0,0,3688,3687,1,0,0,0,3688, + 3689,1,0,0,0,3689,3690,1,0,0,0,3690,3692,5,92,0,0,3691,3693,3,422, + 211,0,3692,3691,1,0,0,0,3692,3693,1,0,0,0,3693,3694,1,0,0,0,3694, + 3696,3,766,383,0,3695,3697,3,96,48,0,3696,3695,1,0,0,0,3696,3697, + 1,0,0,0,3697,3843,1,0,0,0,3698,3699,5,191,0,0,3699,3701,5,323,0, + 0,3700,3702,3,422,211,0,3701,3700,1,0,0,0,3701,3702,1,0,0,0,3702, + 3703,1,0,0,0,3703,3705,3,768,384,0,3704,3706,3,96,48,0,3705,3704, + 1,0,0,0,3705,3706,1,0,0,0,3706,3843,1,0,0,0,3707,3708,5,191,0,0, + 3708,3710,7,44,0,0,3709,3711,3,422,211,0,3710,3709,1,0,0,0,3710, + 3711,1,0,0,0,3711,3712,1,0,0,0,3712,3713,3,822,411,0,3713,3714,5, + 80,0,0,3714,3716,3,316,158,0,3715,3717,3,96,48,0,3716,3715,1,0,0, + 0,3716,3717,1,0,0,0,3717,3843,1,0,0,0,3718,3719,5,191,0,0,3719,3721, + 7,32,0,0,3720,3722,3,422,211,0,3721,3720,1,0,0,0,3721,3722,1,0,0, + 0,3722,3723,1,0,0,0,3723,3728,3,654,327,0,3724,3725,5,6,0,0,3725, + 3727,3,654,327,0,3726,3724,1,0,0,0,3727,3730,1,0,0,0,3728,3726,1, + 0,0,0,3728,3729,1,0,0,0,3729,3732,1,0,0,0,3730,3728,1,0,0,0,3731, + 3733,3,96,48,0,3732,3731,1,0,0,0,3732,3733,1,0,0,0,3733,3843,1,0, + 0,0,3734,3735,5,191,0,0,3735,3736,5,226,0,0,3736,3738,5,109,0,0, + 3737,3739,3,422,211,0,3738,3737,1,0,0,0,3738,3739,1,0,0,0,3739,3740, + 1,0,0,0,3740,3742,3,314,157,0,3741,3743,3,96,48,0,3742,3741,1,0, + 0,0,3742,3743,1,0,0,0,3743,3843,1,0,0,0,3744,3745,5,191,0,0,3745, + 3747,5,41,0,0,3746,3748,3,422,211,0,3747,3746,1,0,0,0,3747,3748, + 1,0,0,0,3748,3749,1,0,0,0,3749,3750,5,2,0,0,3750,3751,3,654,327, + 0,3751,3752,5,36,0,0,3752,3753,3,654,327,0,3753,3755,5,3,0,0,3754, + 3756,3,96,48,0,3755,3754,1,0,0,0,3755,3756,1,0,0,0,3756,3843,1,0, + 0,0,3757,3758,5,191,0,0,3758,3759,5,278,0,0,3759,3761,7,31,0,0,3760, + 3762,3,422,211,0,3761,3760,1,0,0,0,3761,3762,1,0,0,0,3762,3763,1, + 0,0,0,3763,3764,3,316,158,0,3764,3766,3,170,85,0,3765,3767,3,96, + 48,0,3766,3765,1,0,0,0,3766,3767,1,0,0,0,3767,3843,1,0,0,0,3768, + 3769,5,191,0,0,3769,3770,5,281,0,0,3770,3771,5,147,0,0,3771,3773, + 3,820,410,0,3772,3774,3,96,48,0,3773,3772,1,0,0,0,3773,3774,1,0, + 0,0,3774,3843,1,0,0,0,3775,3776,5,191,0,0,3776,3778,5,451,0,0,3777, + 3779,3,422,211,0,3778,3777,1,0,0,0,3778,3779,1,0,0,0,3779,3780,1, + 0,0,0,3780,3782,3,822,411,0,3781,3783,3,96,48,0,3782,3781,1,0,0, + 0,3782,3783,1,0,0,0,3783,3843,1,0,0,0,3784,3785,5,191,0,0,3785,3787, + 5,351,0,0,3786,3788,3,422,211,0,3787,3786,1,0,0,0,3787,3788,1,0, + 0,0,3788,3789,1,0,0,0,3789,3843,3,774,387,0,3790,3791,5,191,0,0, + 3791,3793,5,443,0,0,3792,3794,3,422,211,0,3793,3792,1,0,0,0,3793, + 3794,1,0,0,0,3794,3795,1,0,0,0,3795,3796,5,62,0,0,3796,3797,3,654, + 327,0,3797,3798,5,247,0,0,3798,3800,3,822,411,0,3799,3801,3,96,48, + 0,3800,3799,1,0,0,0,3800,3801,1,0,0,0,3801,3843,1,0,0,0,3802,3803, + 5,191,0,0,3803,3805,7,45,0,0,3804,3806,3,422,211,0,3805,3804,1,0, + 0,0,3805,3806,1,0,0,0,3806,3807,1,0,0,0,3807,3843,3,820,410,0,3808, + 3809,5,191,0,0,3809,3810,5,99,0,0,3810,3812,5,257,0,0,3811,3813, + 3,422,211,0,3812,3811,1,0,0,0,3812,3813,1,0,0,0,3813,3814,1,0,0, + 0,3814,3817,5,62,0,0,3815,3818,3,818,409,0,3816,3818,5,99,0,0,3817, + 3815,1,0,0,0,3817,3816,1,0,0,0,3818,3819,1,0,0,0,3819,3820,5,331, + 0,0,3820,3843,3,822,411,0,3821,3822,5,191,0,0,3822,3824,5,175,0, + 0,3823,3825,3,422,211,0,3824,3823,1,0,0,0,3824,3825,1,0,0,0,3825, + 3826,1,0,0,0,3826,3840,3,792,396,0,3827,3829,5,105,0,0,3828,3827, + 1,0,0,0,3828,3829,1,0,0,0,3829,3830,1,0,0,0,3830,3831,5,2,0,0,3831, + 3836,5,209,0,0,3832,3833,5,6,0,0,3833,3835,5,209,0,0,3834,3832,1, + 0,0,0,3835,3838,1,0,0,0,3836,3834,1,0,0,0,3836,3837,1,0,0,0,3837, + 3839,1,0,0,0,3838,3836,1,0,0,0,3839,3841,5,3,0,0,3840,3828,1,0,0, + 0,3840,3841,1,0,0,0,3841,3843,1,0,0,0,3842,3635,1,0,0,0,3842,3667, + 1,0,0,0,3842,3686,1,0,0,0,3842,3698,1,0,0,0,3842,3707,1,0,0,0,3842, + 3718,1,0,0,0,3842,3734,1,0,0,0,3842,3744,1,0,0,0,3842,3757,1,0,0, + 0,3842,3768,1,0,0,0,3842,3775,1,0,0,0,3842,3784,1,0,0,0,3842,3790, + 1,0,0,0,3842,3802,1,0,0,0,3842,3808,1,0,0,0,3842,3821,1,0,0,0,3843, + 309,1,0,0,0,3844,3846,5,63,0,0,3845,3844,1,0,0,0,3845,3846,1,0,0, + 0,3846,3847,1,0,0,0,3847,3848,5,92,0,0,3848,3861,3,778,389,0,3849, + 3851,5,259,0,0,3850,3849,1,0,0,0,3850,3851,1,0,0,0,3851,3852,1,0, + 0,0,3852,3853,5,376,0,0,3853,3861,3,782,391,0,3854,3855,7,46,0,0, + 3855,3861,3,316,158,0,3856,3857,5,355,0,0,3857,3858,5,325,0,0,3858, + 3859,7,41,0,0,3859,3861,3,316,158,0,3860,3845,1,0,0,0,3860,3850, + 1,0,0,0,3860,3854,1,0,0,0,3860,3856,1,0,0,0,3861,311,1,0,0,0,3862, + 3863,5,198,0,0,3863,3879,5,357,0,0,3864,3865,5,131,0,0,3865,3879, + 5,446,0,0,3866,3879,5,204,0,0,3867,3879,5,452,0,0,3868,3879,5,331, + 0,0,3869,3879,5,318,0,0,3870,3879,5,451,0,0,3871,3872,5,63,0,0,3872, + 3873,5,174,0,0,3873,3879,5,381,0,0,3874,3876,5,295,0,0,3875,3874, + 1,0,0,0,3875,3876,1,0,0,0,3876,3877,1,0,0,0,3877,3879,5,247,0,0, + 3878,3862,1,0,0,0,3878,3864,1,0,0,0,3878,3866,1,0,0,0,3878,3867, + 1,0,0,0,3878,3868,1,0,0,0,3878,3869,1,0,0,0,3878,3870,1,0,0,0,3878, + 3871,1,0,0,0,3878,3875,1,0,0,0,3879,3880,1,0,0,0,3880,3887,3,822, + 411,0,3881,3882,5,323,0,0,3882,3887,3,794,397,0,3883,3884,5,175, + 0,0,3884,3887,3,792,396,0,3885,3887,3,176,88,0,3886,3878,1,0,0,0, + 3886,3881,1,0,0,0,3886,3883,1,0,0,0,3886,3885,1,0,0,0,3887,313,1, + 0,0,0,3888,3893,3,316,158,0,3889,3890,5,6,0,0,3890,3892,3,316,158, + 0,3891,3889,1,0,0,0,3892,3895,1,0,0,0,3893,3891,1,0,0,0,3893,3894, + 1,0,0,0,3894,315,1,0,0,0,3895,3893,1,0,0,0,3896,3898,3,822,411,0, + 3897,3899,3,318,159,0,3898,3897,1,0,0,0,3898,3899,1,0,0,0,3899,317, + 1,0,0,0,3900,3901,5,11,0,0,3901,3903,3,828,414,0,3902,3900,1,0,0, + 0,3903,3904,1,0,0,0,3904,3902,1,0,0,0,3904,3905,1,0,0,0,3905,319, + 1,0,0,0,3906,3908,5,358,0,0,3907,3909,5,92,0,0,3908,3907,1,0,0,0, + 3908,3909,1,0,0,0,3909,3910,1,0,0,0,3910,3915,3,322,161,0,3911,3912, + 5,6,0,0,3912,3914,3,322,161,0,3913,3911,1,0,0,0,3914,3917,1,0,0, + 0,3915,3913,1,0,0,0,3915,3916,1,0,0,0,3916,3920,1,0,0,0,3917,3915, + 1,0,0,0,3918,3919,7,47,0,0,3919,3921,5,219,0,0,3920,3918,1,0,0,0, + 3920,3921,1,0,0,0,3921,3923,1,0,0,0,3922,3924,3,96,48,0,3923,3922, + 1,0,0,0,3923,3924,1,0,0,0,3924,321,1,0,0,0,3925,3927,5,81,0,0,3926, + 3925,1,0,0,0,3926,3927,1,0,0,0,3927,3928,1,0,0,0,3928,3930,3,778, + 389,0,3929,3931,5,9,0,0,3930,3929,1,0,0,0,3930,3931,1,0,0,0,3931, + 323,1,0,0,0,3932,3933,5,159,0,0,3933,3992,5,80,0,0,3934,3993,3,310, + 155,0,3935,3993,3,312,156,0,3936,3937,5,44,0,0,3937,3939,3,822,411, + 0,3938,3940,3,318,159,0,3939,3938,1,0,0,0,3939,3940,1,0,0,0,3940, + 3941,1,0,0,0,3941,3942,5,11,0,0,3942,3943,3,804,402,0,3943,3993, + 1,0,0,0,3944,3945,7,32,0,0,3945,3993,3,654,327,0,3946,3947,5,136, + 0,0,3947,3993,3,394,197,0,3948,3949,5,211,0,0,3949,3993,3,382,191, + 0,3950,3951,5,278,0,0,3951,3993,3,416,208,0,3952,3953,5,45,0,0,3953, + 3954,3,822,411,0,3954,3960,5,80,0,0,3955,3961,3,778,389,0,3956,3958, + 5,189,0,0,3957,3956,1,0,0,0,3957,3958,1,0,0,0,3958,3959,1,0,0,0, + 3959,3961,3,316,158,0,3960,3955,1,0,0,0,3960,3957,1,0,0,0,3961,3993, + 1,0,0,0,3962,3963,7,44,0,0,3963,3964,3,822,411,0,3964,3965,5,80, + 0,0,3965,3966,3,316,158,0,3966,3993,1,0,0,0,3967,3968,5,296,0,0, + 3968,3993,3,378,189,0,3969,3970,5,442,0,0,3970,3993,3,374,187,0, + 3971,3972,5,443,0,0,3972,3973,5,62,0,0,3973,3974,3,654,327,0,3974, + 3975,5,247,0,0,3975,3976,3,822,411,0,3976,3993,1,0,0,0,3977,3978, + 5,278,0,0,3978,3979,7,31,0,0,3979,3980,3,316,158,0,3980,3981,3,170, + 85,0,3981,3993,1,0,0,0,3982,3983,5,248,0,0,3983,3984,5,274,0,0,3984, + 3993,3,202,101,0,3985,3986,5,41,0,0,3986,3987,5,2,0,0,3987,3988, + 3,654,327,0,3988,3989,5,36,0,0,3989,3990,3,654,327,0,3990,3991,5, + 3,0,0,3991,3993,1,0,0,0,3992,3934,1,0,0,0,3992,3935,1,0,0,0,3992, + 3936,1,0,0,0,3992,3944,1,0,0,0,3992,3946,1,0,0,0,3992,3948,1,0,0, + 0,3992,3950,1,0,0,0,3992,3952,1,0,0,0,3992,3962,1,0,0,0,3992,3967, + 1,0,0,0,3992,3969,1,0,0,0,3992,3971,1,0,0,0,3992,3977,1,0,0,0,3992, + 3982,1,0,0,0,3992,3985,1,0,0,0,3993,3994,1,0,0,0,3994,3997,5,116, + 0,0,3995,3998,3,812,406,0,3996,3998,5,78,0,0,3997,3995,1,0,0,0,3997, + 3996,1,0,0,0,3998,325,1,0,0,0,3999,4000,5,327,0,0,4000,4003,5,246, + 0,0,4001,4002,5,62,0,0,4002,4004,3,58,29,0,4003,4001,1,0,0,0,4003, + 4004,1,0,0,0,4004,4005,1,0,0,0,4005,4023,5,80,0,0,4006,4007,7,32, + 0,0,4007,4024,3,654,327,0,4008,4009,5,136,0,0,4009,4024,3,394,197, + 0,4010,4011,5,44,0,0,4011,4024,3,804,402,0,4012,4013,5,211,0,0,4013, + 4024,3,382,191,0,4014,4015,5,248,0,0,4015,4016,5,274,0,0,4016,4024, + 3,202,101,0,4017,4018,5,296,0,0,4018,4024,3,378,189,0,4019,4020, + 5,442,0,0,4020,4024,3,374,187,0,4021,4024,3,310,155,0,4022,4024, + 3,312,156,0,4023,4006,1,0,0,0,4023,4008,1,0,0,0,4023,4010,1,0,0, + 0,4023,4012,1,0,0,0,4023,4014,1,0,0,0,4023,4017,1,0,0,0,4023,4019, + 1,0,0,0,4023,4021,1,0,0,0,4023,4022,1,0,0,0,4024,4025,1,0,0,0,4025, + 4028,5,116,0,0,4026,4029,3,812,406,0,4027,4029,5,78,0,0,4028,4026, + 1,0,0,0,4028,4027,1,0,0,0,4029,327,1,0,0,0,4030,4031,7,48,0,0,4031, + 4032,3,330,165,0,4032,329,1,0,0,0,4033,4035,7,49,0,0,4034,4033,1, + 0,0,0,4034,4035,1,0,0,0,4035,4037,1,0,0,0,4036,4038,3,332,166,0, + 4037,4036,1,0,0,0,4037,4038,1,0,0,0,4038,4039,1,0,0,0,4039,4077, + 3,822,411,0,4040,4042,7,50,0,0,4041,4040,1,0,0,0,4041,4042,1,0,0, + 0,4042,4043,1,0,0,0,4043,4045,3,816,408,0,4044,4046,3,332,166,0, + 4045,4044,1,0,0,0,4045,4046,1,0,0,0,4046,4047,1,0,0,0,4047,4048, + 3,822,411,0,4048,4077,1,0,0,0,4049,4051,5,210,0,0,4050,4052,3,816, + 408,0,4051,4050,1,0,0,0,4051,4052,1,0,0,0,4052,4054,1,0,0,0,4053, + 4055,3,332,166,0,4054,4053,1,0,0,0,4054,4055,1,0,0,0,4055,4056,1, + 0,0,0,4056,4077,3,822,411,0,4057,4059,5,210,0,0,4058,4057,1,0,0, + 0,4058,4059,1,0,0,0,4059,4060,1,0,0,0,4060,4062,5,30,0,0,4061,4063, + 3,332,166,0,4062,4061,1,0,0,0,4062,4063,1,0,0,0,4063,4064,1,0,0, + 0,4064,4077,3,822,411,0,4065,4070,5,144,0,0,4066,4068,5,30,0,0,4067, + 4066,1,0,0,0,4067,4068,1,0,0,0,4068,4071,1,0,0,0,4069,4071,3,816, + 408,0,4070,4067,1,0,0,0,4070,4069,1,0,0,0,4071,4073,1,0,0,0,4072, + 4074,3,332,166,0,4073,4072,1,0,0,0,4073,4074,1,0,0,0,4074,4075,1, + 0,0,0,4075,4077,3,822,411,0,4076,4034,1,0,0,0,4076,4041,1,0,0,0, + 4076,4049,1,0,0,0,4076,4058,1,0,0,0,4076,4065,1,0,0,0,4077,331,1, + 0,0,0,4078,4079,7,51,0,0,4079,333,1,0,0,0,4080,4081,5,65,0,0,4081, + 4082,3,338,169,0,4082,4083,5,80,0,0,4083,4084,3,344,172,0,4084,4085, + 5,94,0,0,4085,4089,3,346,173,0,4086,4087,5,105,0,0,4087,4088,5,65, + 0,0,4088,4090,5,279,0,0,4089,4086,1,0,0,0,4089,4090,1,0,0,0,4090, + 335,1,0,0,0,4091,4095,5,317,0,0,4092,4093,5,65,0,0,4093,4094,5,279, + 0,0,4094,4096,5,62,0,0,4095,4092,1,0,0,0,4095,4096,1,0,0,0,4096, + 4097,1,0,0,0,4097,4098,3,338,169,0,4098,4099,5,80,0,0,4099,4100, + 3,344,172,0,4100,4101,5,64,0,0,4101,4103,3,346,173,0,4102,4104,3, + 96,48,0,4103,4102,1,0,0,0,4103,4104,1,0,0,0,4104,337,1,0,0,0,4105, + 4110,3,342,171,0,4106,4107,5,6,0,0,4107,4109,3,342,171,0,4108,4106, + 1,0,0,0,4109,4112,1,0,0,0,4110,4108,1,0,0,0,4110,4111,1,0,0,0,4111, + 4129,1,0,0,0,4112,4110,1,0,0,0,4113,4115,5,30,0,0,4114,4116,5,294, + 0,0,4115,4114,1,0,0,0,4115,4116,1,0,0,0,4116,4118,1,0,0,0,4117,4119, + 3,144,72,0,4118,4117,1,0,0,0,4118,4119,1,0,0,0,4119,4129,1,0,0,0, + 4120,4125,3,340,170,0,4121,4122,5,6,0,0,4122,4124,3,340,170,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,4129,1,0,0,0,4127,4125,1,0,0,0,4128,4105,1,0,0,0,4128,4113, + 1,0,0,0,4128,4120,1,0,0,0,4129,339,1,0,0,0,4130,4131,7,52,0,0,4131, + 341,1,0,0,0,4132,4137,5,88,0,0,4133,4137,5,86,0,0,4134,4137,5,46, + 0,0,4135,4137,3,822,411,0,4136,4132,1,0,0,0,4136,4133,1,0,0,0,4136, + 4134,1,0,0,0,4136,4135,1,0,0,0,4137,4139,1,0,0,0,4138,4140,3,144, + 72,0,4139,4138,1,0,0,0,4139,4140,1,0,0,0,4140,343,1,0,0,0,4141,4142, + 5,92,0,0,4142,4187,3,766,383,0,4143,4145,5,328,0,0,4144,4143,1,0, + 0,0,4144,4145,1,0,0,0,4145,4146,1,0,0,0,4146,4187,3,764,382,0,4147, + 4151,5,63,0,0,4148,4149,5,174,0,0,4149,4152,5,381,0,0,4150,4152, + 5,331,0,0,4151,4148,1,0,0,0,4151,4150,1,0,0,0,4152,4155,1,0,0,0, + 4153,4155,5,247,0,0,4154,4147,1,0,0,0,4154,4153,1,0,0,0,4155,4156, + 1,0,0,0,4156,4187,3,788,394,0,4157,4158,5,211,0,0,4158,4187,3,380, + 190,0,4159,4160,5,296,0,0,4160,4187,3,376,188,0,4161,4162,5,442, + 0,0,4162,4187,3,372,186,0,4163,4164,5,175,0,0,4164,4187,3,770,385, + 0,4165,4166,7,32,0,0,4166,4187,3,314,157,0,4167,4168,5,248,0,0,4168, + 4169,5,274,0,0,4169,4174,3,202,101,0,4170,4171,5,6,0,0,4171,4173, + 3,202,101,0,4172,4170,1,0,0,0,4173,4176,1,0,0,0,4174,4172,1,0,0, + 0,4174,4175,1,0,0,0,4175,4187,1,0,0,0,4176,4174,1,0,0,0,4177,4178, + 5,323,0,0,4178,4187,3,768,384,0,4179,4180,5,351,0,0,4180,4187,3, + 786,393,0,4181,4182,5,30,0,0,4182,4183,7,53,0,0,4183,4184,5,68,0, + 0,4184,4185,5,323,0,0,4185,4187,3,768,384,0,4186,4141,1,0,0,0,4186, + 4144,1,0,0,0,4186,4154,1,0,0,0,4186,4157,1,0,0,0,4186,4159,1,0,0, + 0,4186,4161,1,0,0,0,4186,4163,1,0,0,0,4186,4165,1,0,0,0,4186,4167, + 1,0,0,0,4186,4177,1,0,0,0,4186,4179,1,0,0,0,4186,4181,1,0,0,0,4187, + 345,1,0,0,0,4188,4190,5,66,0,0,4189,4188,1,0,0,0,4189,4190,1,0,0, + 0,4190,4191,1,0,0,0,4191,4192,3,818,409,0,4192,4200,1,0,0,0,4193, + 4195,5,6,0,0,4194,4196,5,66,0,0,4195,4194,1,0,0,0,4195,4196,1,0, + 0,0,4196,4197,1,0,0,0,4197,4199,3,818,409,0,4198,4193,1,0,0,0,4199, + 4202,1,0,0,0,4200,4198,1,0,0,0,4200,4201,1,0,0,0,4201,347,1,0,0, + 0,4202,4200,1,0,0,0,4203,4204,5,65,0,0,4204,4209,3,342,171,0,4205, + 4206,5,6,0,0,4206,4208,3,342,171,0,4207,4205,1,0,0,0,4208,4211,1, + 0,0,0,4209,4207,1,0,0,0,4209,4210,1,0,0,0,4210,4212,1,0,0,0,4211, + 4209,1,0,0,0,4212,4213,5,94,0,0,4213,4217,3,820,410,0,4214,4215, + 5,105,0,0,4215,4216,5,134,0,0,4216,4218,5,279,0,0,4217,4214,1,0, + 0,0,4217,4218,1,0,0,0,4218,4222,1,0,0,0,4219,4220,5,214,0,0,4220, + 4221,5,147,0,0,4221,4223,3,818,409,0,4222,4219,1,0,0,0,4222,4223, + 1,0,0,0,4223,349,1,0,0,0,4224,4228,5,317,0,0,4225,4226,5,134,0,0, + 4226,4227,5,279,0,0,4227,4229,5,62,0,0,4228,4225,1,0,0,0,4228,4229, + 1,0,0,0,4229,4230,1,0,0,0,4230,4235,3,342,171,0,4231,4232,5,6,0, + 0,4232,4234,3,342,171,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,4238,1,0,0,0,4237,4235,1,0,0, + 0,4238,4239,5,64,0,0,4239,4243,3,820,410,0,4240,4241,5,214,0,0,4241, + 4242,5,147,0,0,4242,4244,3,818,409,0,4243,4240,1,0,0,0,4243,4244, + 1,0,0,0,4244,4246,1,0,0,0,4245,4247,3,96,48,0,4246,4245,1,0,0,0, + 4246,4247,1,0,0,0,4247,351,1,0,0,0,4248,4249,5,138,0,0,4249,4250, + 5,53,0,0,4250,4259,5,294,0,0,4251,4252,5,68,0,0,4252,4253,5,323, + 0,0,4253,4258,3,768,384,0,4254,4255,5,62,0,0,4255,4256,7,2,0,0,4256, + 4258,3,820,410,0,4257,4251,1,0,0,0,4257,4254,1,0,0,0,4258,4261,1, + 0,0,0,4259,4257,1,0,0,0,4259,4260,1,0,0,0,4260,4262,1,0,0,0,4261, + 4259,1,0,0,0,4262,4263,3,354,177,0,4263,353,1,0,0,0,4264,4265,5, + 65,0,0,4265,4266,3,338,169,0,4266,4267,5,80,0,0,4267,4268,3,356, + 178,0,4268,4269,5,94,0,0,4269,4273,3,346,173,0,4270,4271,5,105,0, + 0,4271,4272,5,65,0,0,4272,4274,5,279,0,0,4273,4270,1,0,0,0,4273, + 4274,1,0,0,0,4274,4290,1,0,0,0,4275,4279,5,317,0,0,4276,4277,5,65, + 0,0,4277,4278,5,279,0,0,4278,4280,5,62,0,0,4279,4276,1,0,0,0,4279, + 4280,1,0,0,0,4280,4281,1,0,0,0,4281,4282,3,338,169,0,4282,4283,5, + 80,0,0,4283,4284,3,356,178,0,4284,4285,5,64,0,0,4285,4287,3,346, + 173,0,4286,4288,3,96,48,0,4287,4286,1,0,0,0,4287,4288,1,0,0,0,4288, + 4290,1,0,0,0,4289,4264,1,0,0,0,4289,4275,1,0,0,0,4290,355,1,0,0, + 0,4291,4292,7,54,0,0,4292,357,1,0,0,0,4293,4295,5,46,0,0,4294,4296, + 5,98,0,0,4295,4294,1,0,0,0,4295,4296,1,0,0,0,4296,4297,1,0,0,0,4297, + 4299,5,226,0,0,4298,4300,5,109,0,0,4299,4298,1,0,0,0,4299,4300,1, + 0,0,0,4300,4302,1,0,0,0,4301,4303,3,294,147,0,4302,4301,1,0,0,0, + 4302,4303,1,0,0,0,4303,4305,1,0,0,0,4304,4306,3,822,411,0,4305,4304, + 1,0,0,0,4305,4306,1,0,0,0,4306,4307,1,0,0,0,4307,4308,5,80,0,0,4308, + 4310,3,626,313,0,4309,4311,3,170,85,0,4310,4309,1,0,0,0,4310,4311, + 1,0,0,0,4311,4312,1,0,0,0,4312,4315,3,360,180,0,4313,4314,5,441, + 0,0,4314,4316,3,360,180,0,4315,4313,1,0,0,0,4315,4316,1,0,0,0,4316, + 4322,1,0,0,0,4317,4319,5,273,0,0,4318,4320,5,77,0,0,4319,4318,1, + 0,0,0,4319,4320,1,0,0,0,4320,4321,1,0,0,0,4321,4323,5,56,0,0,4322, + 4317,1,0,0,0,4322,4323,1,0,0,0,4323,4325,1,0,0,0,4324,4326,3,102, + 51,0,4325,4324,1,0,0,0,4325,4326,1,0,0,0,4326,4328,1,0,0,0,4327, + 4329,3,176,88,0,4328,4327,1,0,0,0,4328,4329,1,0,0,0,4329,4331,1, + 0,0,0,4330,4332,3,640,320,0,4331,4330,1,0,0,0,4331,4332,1,0,0,0, + 4332,359,1,0,0,0,4333,4334,5,2,0,0,4334,4339,3,362,181,0,4335,4336, + 5,6,0,0,4336,4338,3,362,181,0,4337,4335,1,0,0,0,4338,4341,1,0,0, + 0,4339,4337,1,0,0,0,4339,4340,1,0,0,0,4340,4342,1,0,0,0,4341,4339, + 1,0,0,0,4342,4343,5,3,0,0,4343,361,1,0,0,0,4344,4351,3,804,402,0, + 4345,4351,3,690,345,0,4346,4347,5,2,0,0,4347,4348,3,676,338,0,4348, + 4349,5,3,0,0,4349,4351,1,0,0,0,4350,4344,1,0,0,0,4350,4345,1,0,0, + 0,4350,4346,1,0,0,0,4351,4353,1,0,0,0,4352,4354,3,98,49,0,4353,4352, + 1,0,0,0,4353,4354,1,0,0,0,4354,4361,1,0,0,0,4355,4357,3,316,158, + 0,4356,4355,1,0,0,0,4356,4357,1,0,0,0,4357,4362,1,0,0,0,4358,4359, + 3,316,158,0,4359,4360,3,100,50,0,4360,4362,1,0,0,0,4361,4356,1,0, + 0,0,4361,4358,1,0,0,0,4362,4364,1,0,0,0,4363,4365,7,55,0,0,4364, + 4363,1,0,0,0,4364,4365,1,0,0,0,4365,4368,1,0,0,0,4366,4367,5,273, + 0,0,4367,4369,7,56,0,0,4368,4366,1,0,0,0,4368,4369,1,0,0,0,4369, + 363,1,0,0,0,4370,4372,5,46,0,0,4371,4373,3,366,183,0,4372,4371,1, + 0,0,0,4372,4373,1,0,0,0,4373,4378,1,0,0,0,4374,4375,5,211,0,0,4375, + 4379,3,808,404,0,4376,4377,5,296,0,0,4377,4379,3,802,401,0,4378, + 4374,1,0,0,0,4378,4376,1,0,0,0,4379,4380,1,0,0,0,4380,4389,5,2,0, + 0,4381,4386,3,390,195,0,4382,4383,5,6,0,0,4383,4385,3,390,195,0, + 4384,4382,1,0,0,0,4385,4388,1,0,0,0,4386,4384,1,0,0,0,4386,4387, + 1,0,0,0,4387,4390,1,0,0,0,4388,4386,1,0,0,0,4389,4381,1,0,0,0,4389, + 4390,1,0,0,0,4390,4391,1,0,0,0,4391,4392,5,3,0,0,4392,4409,1,0,0, + 0,4393,4407,5,316,0,0,4394,4408,3,388,194,0,4395,4396,5,92,0,0,4396, + 4397,5,2,0,0,4397,4402,3,402,201,0,4398,4399,5,6,0,0,4399,4401,3, + 402,201,0,4400,4398,1,0,0,0,4401,4404,1,0,0,0,4402,4400,1,0,0,0, + 4402,4403,1,0,0,0,4403,4405,1,0,0,0,4404,4402,1,0,0,0,4405,4406, + 5,3,0,0,4406,4408,1,0,0,0,4407,4394,1,0,0,0,4407,4395,1,0,0,0,4408, + 4410,1,0,0,0,4409,4393,1,0,0,0,4409,4410,1,0,0,0,4410,4412,1,0,0, + 0,4411,4413,3,398,199,0,4412,4411,1,0,0,0,4413,4414,1,0,0,0,4414, + 4412,1,0,0,0,4414,4415,1,0,0,0,4415,4421,1,0,0,0,4416,4417,5,105, + 0,0,4417,4418,5,2,0,0,4418,4419,3,788,394,0,4419,4420,5,3,0,0,4420, + 4422,1,0,0,0,4421,4416,1,0,0,0,4421,4422,1,0,0,0,4422,365,1,0,0, + 0,4423,4424,5,82,0,0,4424,4425,5,311,0,0,4425,367,1,0,0,0,4426,4428, + 5,2,0,0,4427,4429,3,370,185,0,4428,4427,1,0,0,0,4428,4429,1,0,0, + 0,4429,4430,1,0,0,0,4430,4431,5,3,0,0,4431,369,1,0,0,0,4432,4437, + 3,384,192,0,4433,4434,5,6,0,0,4434,4436,3,384,192,0,4435,4433,1, + 0,0,0,4436,4439,1,0,0,0,4437,4435,1,0,0,0,4437,4438,1,0,0,0,4438, + 371,1,0,0,0,4439,4437,1,0,0,0,4440,4445,3,374,187,0,4441,4442,5, + 6,0,0,4442,4444,3,374,187,0,4443,4441,1,0,0,0,4444,4447,1,0,0,0, + 4445,4443,1,0,0,0,4445,4446,1,0,0,0,4446,373,1,0,0,0,4447,4445,1, + 0,0,0,4448,4449,3,798,399,0,4449,4450,3,368,184,0,4450,4454,1,0, + 0,0,4451,4454,3,836,418,0,4452,4454,3,784,392,0,4453,4448,1,0,0, + 0,4453,4451,1,0,0,0,4453,4452,1,0,0,0,4454,375,1,0,0,0,4455,4460, + 3,378,189,0,4456,4457,5,6,0,0,4457,4459,3,378,189,0,4458,4456,1, + 0,0,0,4459,4462,1,0,0,0,4460,4458,1,0,0,0,4460,4461,1,0,0,0,4461, + 377,1,0,0,0,4462,4460,1,0,0,0,4463,4464,3,800,400,0,4464,4465,3, + 368,184,0,4465,4469,1,0,0,0,4466,4469,3,836,418,0,4467,4469,3,784, + 392,0,4468,4463,1,0,0,0,4468,4466,1,0,0,0,4468,4467,1,0,0,0,4469, + 379,1,0,0,0,4470,4475,3,382,191,0,4471,4472,5,6,0,0,4472,4474,3, + 382,191,0,4473,4471,1,0,0,0,4474,4477,1,0,0,0,4475,4473,1,0,0,0, + 4475,4476,1,0,0,0,4476,381,1,0,0,0,4477,4475,1,0,0,0,4478,4479,3, + 810,405,0,4479,4480,3,368,184,0,4480,4484,1,0,0,0,4481,4484,3,836, + 418,0,4482,4484,3,784,392,0,4483,4478,1,0,0,0,4483,4481,1,0,0,0, + 4483,4482,1,0,0,0,4484,383,1,0,0,0,4485,4487,3,386,193,0,4486,4488, + 3,824,412,0,4487,4486,1,0,0,0,4487,4488,1,0,0,0,4488,4494,1,0,0, + 0,4489,4491,3,824,412,0,4490,4492,3,386,193,0,4491,4490,1,0,0,0, + 4491,4492,1,0,0,0,4492,4494,1,0,0,0,4493,4485,1,0,0,0,4493,4489, + 1,0,0,0,4493,4494,1,0,0,0,4494,4495,1,0,0,0,4495,4496,3,388,194, + 0,4496,385,1,0,0,0,4497,4499,5,68,0,0,4498,4500,5,453,0,0,4499,4498, + 1,0,0,0,4499,4500,1,0,0,0,4500,4505,1,0,0,0,4501,4505,5,453,0,0, + 4502,4505,5,400,0,0,4503,4505,5,101,0,0,4504,4497,1,0,0,0,4504,4501, + 1,0,0,0,4504,4502,1,0,0,0,4504,4503,1,0,0,0,4505,387,1,0,0,0,4506, + 4516,3,654,327,0,4507,4509,5,415,0,0,4508,4507,1,0,0,0,4508,4509, + 1,0,0,0,4509,4510,1,0,0,0,4510,4511,3,824,412,0,4511,4512,3,318, + 159,0,4512,4513,5,27,0,0,4513,4514,5,360,0,0,4514,4516,1,0,0,0,4515, + 4506,1,0,0,0,4515,4508,1,0,0,0,4516,389,1,0,0,0,4517,4520,3,384, + 192,0,4518,4519,7,57,0,0,4519,4521,3,676,338,0,4520,4518,1,0,0,0, + 4520,4521,1,0,0,0,4521,391,1,0,0,0,4522,4532,5,2,0,0,4523,4533,5, + 9,0,0,4524,4526,3,370,185,0,4525,4524,1,0,0,0,4525,4526,1,0,0,0, + 4526,4530,1,0,0,0,4527,4528,5,83,0,0,4528,4529,5,147,0,0,4529,4531, + 3,370,185,0,4530,4527,1,0,0,0,4530,4531,1,0,0,0,4531,4533,1,0,0, + 0,4532,4523,1,0,0,0,4532,4525,1,0,0,0,4533,4534,1,0,0,0,4534,4535, + 5,3,0,0,4535,393,1,0,0,0,4536,4537,3,810,405,0,4537,4538,3,392,196, + 0,4538,395,1,0,0,0,4539,4540,5,316,0,0,4540,4543,5,78,0,0,4541,4543, + 5,149,0,0,4542,4539,1,0,0,0,4542,4541,1,0,0,0,4543,4544,1,0,0,0, + 4544,4545,5,80,0,0,4545,4546,5,78,0,0,4546,4569,5,458,0,0,4547,4569, + 5,346,0,0,4548,4569,5,222,0,0,4549,4569,5,338,0,0,4550,4569,5,377, + 0,0,4551,4553,5,205,0,0,4552,4551,1,0,0,0,4552,4553,1,0,0,0,4553, + 4554,1,0,0,0,4554,4555,5,327,0,0,4555,4569,7,58,0,0,4556,4569,5, + 250,0,0,4557,4558,5,77,0,0,4558,4569,5,250,0,0,4559,4560,7,59,0, + 0,4560,4569,3,202,101,0,4561,4562,5,459,0,0,4562,4569,3,316,158, + 0,4563,4564,5,333,0,0,4564,4569,3,42,21,0,4565,4569,3,60,30,0,4566, + 4567,5,460,0,0,4567,4569,3,822,411,0,4568,4542,1,0,0,0,4568,4547, + 1,0,0,0,4568,4548,1,0,0,0,4568,4549,1,0,0,0,4568,4550,1,0,0,0,4568, + 4552,1,0,0,0,4568,4556,1,0,0,0,4568,4557,1,0,0,0,4568,4559,1,0,0, + 0,4568,4561,1,0,0,0,4568,4563,1,0,0,0,4568,4565,1,0,0,0,4568,4566, + 1,0,0,0,4569,397,1,0,0,0,4570,4571,5,36,0,0,4571,4572,3,812,406, + 0,4572,4573,3,462,231,0,4573,4606,1,0,0,0,4574,4575,5,247,0,0,4575, + 4606,3,58,29,0,4576,4577,5,443,0,0,4577,4578,5,62,0,0,4578,4579, + 5,360,0,0,4579,4586,3,654,327,0,4580,4581,5,6,0,0,4581,4582,5,62, + 0,0,4582,4583,5,360,0,0,4583,4585,3,654,327,0,4584,4580,1,0,0,0, + 4585,4588,1,0,0,0,4586,4584,1,0,0,0,4586,4587,1,0,0,0,4587,4606, + 1,0,0,0,4588,4586,1,0,0,0,4589,4606,5,104,0,0,4590,4591,5,333,0, + 0,4591,4598,3,822,411,0,4592,4593,5,94,0,0,4593,4599,3,822,411,0, + 4594,4595,5,10,0,0,4595,4599,3,822,411,0,4596,4597,5,64,0,0,4597, + 4599,5,434,0,0,4598,4592,1,0,0,0,4598,4594,1,0,0,0,4598,4596,1,0, + 0,0,4599,4606,1,0,0,0,4600,4601,5,36,0,0,4601,4606,3,822,411,0,4602, + 4606,3,4,2,0,4603,4606,3,396,198,0,4604,4606,3,822,411,0,4605,4570, + 1,0,0,0,4605,4574,1,0,0,0,4605,4576,1,0,0,0,4605,4589,1,0,0,0,4605, + 4590,1,0,0,0,4605,4600,1,0,0,0,4605,4602,1,0,0,0,4605,4603,1,0,0, + 0,4605,4604,1,0,0,0,4606,399,1,0,0,0,4607,4608,5,105,0,0,4608,4609, + 3,284,142,0,4609,401,1,0,0,0,4610,4611,3,804,402,0,4611,4612,3,388, + 194,0,4612,403,1,0,0,0,4613,4620,5,138,0,0,4614,4615,5,211,0,0,4615, + 4621,3,382,191,0,4616,4617,5,296,0,0,4617,4621,3,378,189,0,4618, + 4619,5,442,0,0,4619,4621,3,374,187,0,4620,4614,1,0,0,0,4620,4616, + 1,0,0,0,4620,4618,1,0,0,0,4621,4623,1,0,0,0,4622,4624,3,396,198, + 0,4623,4622,1,0,0,0,4624,4625,1,0,0,0,4625,4623,1,0,0,0,4625,4626, + 1,0,0,0,4626,4628,1,0,0,0,4627,4629,5,315,0,0,4628,4627,1,0,0,0, + 4628,4629,1,0,0,0,4629,405,1,0,0,0,4630,4646,5,191,0,0,4631,4633, + 5,211,0,0,4632,4634,3,422,211,0,4633,4632,1,0,0,0,4633,4634,1,0, + 0,0,4634,4635,1,0,0,0,4635,4647,3,380,190,0,4636,4638,5,296,0,0, + 4637,4639,3,422,211,0,4638,4637,1,0,0,0,4638,4639,1,0,0,0,4639,4640, + 1,0,0,0,4640,4647,3,376,188,0,4641,4643,5,442,0,0,4642,4644,3,422, + 211,0,4643,4642,1,0,0,0,4643,4644,1,0,0,0,4644,4645,1,0,0,0,4645, + 4647,3,372,186,0,4646,4631,1,0,0,0,4646,4636,1,0,0,0,4646,4641,1, + 0,0,0,4647,4649,1,0,0,0,4648,4650,3,96,48,0,4649,4648,1,0,0,0,4649, + 4650,1,0,0,0,4650,407,1,0,0,0,4651,4652,5,191,0,0,4652,4654,5,136, + 0,0,4653,4655,3,422,211,0,4654,4653,1,0,0,0,4654,4655,1,0,0,0,4655, + 4656,1,0,0,0,4656,4661,3,394,197,0,4657,4658,5,6,0,0,4658,4660,3, + 394,197,0,4659,4657,1,0,0,0,4660,4663,1,0,0,0,4661,4659,1,0,0,0, + 4661,4662,1,0,0,0,4662,4665,1,0,0,0,4663,4661,1,0,0,0,4664,4666, + 3,96,48,0,4665,4664,1,0,0,0,4665,4666,1,0,0,0,4666,409,1,0,0,0,4667, + 4668,5,191,0,0,4668,4670,5,278,0,0,4669,4671,3,422,211,0,4670,4669, + 1,0,0,0,4670,4671,1,0,0,0,4671,4672,1,0,0,0,4672,4677,3,416,208, + 0,4673,4674,5,6,0,0,4674,4676,3,416,208,0,4675,4673,1,0,0,0,4676, + 4679,1,0,0,0,4677,4675,1,0,0,0,4677,4678,1,0,0,0,4678,4681,1,0,0, + 0,4679,4677,1,0,0,0,4680,4682,3,96,48,0,4681,4680,1,0,0,0,4681,4682, + 1,0,0,0,4682,411,1,0,0,0,4683,4696,5,2,0,0,4684,4687,3,654,327,0, + 4685,4686,5,6,0,0,4686,4688,3,654,327,0,4687,4685,1,0,0,0,4687,4688, + 1,0,0,0,4688,4697,1,0,0,0,4689,4690,5,407,0,0,4690,4691,5,6,0,0, + 4691,4697,3,654,327,0,4692,4693,3,654,327,0,4693,4694,5,6,0,0,4694, + 4695,5,407,0,0,4695,4697,1,0,0,0,4696,4684,1,0,0,0,4696,4689,1,0, + 0,0,4696,4692,1,0,0,0,4697,4698,1,0,0,0,4698,4699,5,3,0,0,4699,413, + 1,0,0,0,4700,4701,3,822,411,0,4701,4702,5,11,0,0,4702,4704,1,0,0, + 0,4703,4700,1,0,0,0,4704,4707,1,0,0,0,4705,4703,1,0,0,0,4705,4706, + 1,0,0,0,4706,4708,1,0,0,0,4707,4705,1,0,0,0,4708,4709,3,722,361, + 0,4709,415,1,0,0,0,4710,4711,3,414,207,0,4711,4712,3,412,206,0,4712, + 417,1,0,0,0,4713,4717,5,57,0,0,4714,4718,3,812,406,0,4715,4716,5, + 247,0,0,4716,4718,3,58,29,0,4717,4714,1,0,0,0,4717,4715,1,0,0,0, + 4718,4719,1,0,0,0,4719,4717,1,0,0,0,4719,4720,1,0,0,0,4720,419,1, + 0,0,0,4721,4722,5,46,0,0,4722,4723,5,41,0,0,4723,4724,5,2,0,0,4724, + 4725,3,654,327,0,4725,4726,5,36,0,0,4726,4727,3,654,327,0,4727,4744, + 5,3,0,0,4728,4729,5,379,0,0,4729,4732,5,211,0,0,4730,4731,5,36,0, + 0,4731,4733,7,60,0,0,4732,4730,1,0,0,0,4732,4733,1,0,0,0,4733,4745, + 1,0,0,0,4734,4738,5,105,0,0,4735,4736,5,211,0,0,4736,4739,3,382, + 191,0,4737,4739,5,400,0,0,4738,4735,1,0,0,0,4738,4737,1,0,0,0,4739, + 4742,1,0,0,0,4740,4741,5,36,0,0,4741,4743,7,60,0,0,4742,4740,1,0, + 0,0,4742,4743,1,0,0,0,4743,4745,1,0,0,0,4744,4728,1,0,0,0,4744,4734, + 1,0,0,0,4745,421,1,0,0,0,4746,4747,5,220,0,0,4747,4748,5,396,0,0, + 4748,423,1,0,0,0,4749,4751,5,46,0,0,4750,4752,3,366,183,0,4751,4750, + 1,0,0,0,4751,4752,1,0,0,0,4752,4753,1,0,0,0,4753,4754,5,443,0,0, + 4754,4755,5,62,0,0,4755,4756,3,654,327,0,4756,4757,5,247,0,0,4757, + 4758,3,822,411,0,4758,4773,5,2,0,0,4759,4760,5,64,0,0,4760,4764, + 3,426,213,0,4761,4762,5,6,0,0,4762,4763,5,94,0,0,4763,4765,3,426, + 213,0,4764,4761,1,0,0,0,4764,4765,1,0,0,0,4765,4774,1,0,0,0,4766, + 4767,5,94,0,0,4767,4771,3,426,213,0,4768,4769,5,6,0,0,4769,4770, + 5,64,0,0,4770,4772,3,426,213,0,4771,4768,1,0,0,0,4771,4772,1,0,0, + 0,4772,4774,1,0,0,0,4773,4759,1,0,0,0,4773,4766,1,0,0,0,4774,4775, + 1,0,0,0,4775,4776,5,3,0,0,4776,425,1,0,0,0,4777,4778,5,461,0,0,4778, + 4779,5,105,0,0,4779,4780,5,211,0,0,4780,4781,3,382,191,0,4781,427, + 1,0,0,0,4782,4793,5,306,0,0,4783,4784,5,2,0,0,4784,4789,5,128,0, + 0,4785,4786,5,6,0,0,4786,4788,5,128,0,0,4787,4785,1,0,0,0,4788,4791, + 1,0,0,0,4789,4787,1,0,0,0,4789,4790,1,0,0,0,4790,4792,1,0,0,0,4791, + 4789,1,0,0,0,4792,4794,5,3,0,0,4793,4783,1,0,0,0,4793,4794,1,0,0, + 0,4794,4820,1,0,0,0,4795,4797,5,226,0,0,4796,4798,5,109,0,0,4797, + 4796,1,0,0,0,4797,4798,1,0,0,0,4798,4799,1,0,0,0,4799,4821,3,784, + 392,0,4800,4802,5,92,0,0,4801,4803,5,109,0,0,4802,4801,1,0,0,0,4802, + 4803,1,0,0,0,4803,4804,1,0,0,0,4804,4821,3,778,389,0,4805,4807,5, + 323,0,0,4806,4808,5,109,0,0,4807,4806,1,0,0,0,4807,4808,1,0,0,0, + 4808,4809,1,0,0,0,4809,4821,3,794,397,0,4810,4812,5,349,0,0,4811, + 4813,5,109,0,0,4812,4811,1,0,0,0,4812,4813,1,0,0,0,4813,4814,1,0, + 0,0,4814,4821,3,822,411,0,4815,4817,5,175,0,0,4816,4818,5,109,0, + 0,4817,4816,1,0,0,0,4817,4818,1,0,0,0,4818,4819,1,0,0,0,4819,4821, + 3,792,396,0,4820,4795,1,0,0,0,4820,4800,1,0,0,0,4820,4805,1,0,0, + 0,4820,4810,1,0,0,0,4820,4815,1,0,0,0,4821,429,1,0,0,0,4822,4823, + 5,138,0,0,4823,4824,3,176,88,0,4824,4825,7,16,0,0,4825,4826,3,100, + 50,0,4826,431,1,0,0,0,4827,4832,5,138,0,0,4828,4829,5,136,0,0,4829, + 4833,3,394,197,0,4830,4831,5,442,0,0,4831,4833,3,374,187,0,4832, + 4828,1,0,0,0,4832,4830,1,0,0,0,4833,4834,1,0,0,0,4834,4835,5,309, + 0,0,4835,4836,5,94,0,0,4836,4837,3,822,411,0,4837,5035,1,0,0,0,4838, + 4839,5,138,0,0,4839,4840,5,175,0,0,4840,4841,3,792,396,0,4841,4842, + 5,309,0,0,4842,4843,5,94,0,0,4843,4844,3,790,395,0,4844,5035,1,0, + 0,0,4845,4846,5,138,0,0,4846,4847,7,61,0,0,4847,4848,3,316,158,0, + 4848,4849,5,309,0,0,4849,4850,5,94,0,0,4850,4851,3,822,411,0,4851, + 5035,1,0,0,0,4852,4853,5,138,0,0,4853,4854,5,211,0,0,4854,4855,3, + 382,191,0,4855,4856,5,309,0,0,4856,4857,5,94,0,0,4857,4858,3,808, + 404,0,4858,5035,1,0,0,0,4859,4860,5,138,0,0,4860,4861,5,278,0,0, + 4861,4862,7,31,0,0,4862,4863,3,316,158,0,4863,4864,3,170,85,0,4864, + 4865,5,309,0,0,4865,4866,5,94,0,0,4866,4867,3,822,411,0,4867,5035, + 1,0,0,0,4868,4869,5,138,0,0,4869,4870,5,296,0,0,4870,4871,3,378, + 189,0,4871,4872,5,309,0,0,4872,4873,5,94,0,0,4873,4874,3,802,401, + 0,4874,5035,1,0,0,0,4875,4876,5,138,0,0,4876,4877,5,323,0,0,4877, + 4878,3,794,397,0,4878,4879,5,309,0,0,4879,4880,5,94,0,0,4880,4881, + 3,32,16,0,4881,5035,1,0,0,0,4882,4883,5,138,0,0,4883,4885,7,62,0, + 0,4884,4886,3,422,211,0,4885,4884,1,0,0,0,4885,4886,1,0,0,0,4886, + 4887,1,0,0,0,4887,4888,3,784,392,0,4888,4889,5,309,0,0,4889,4890, + 5,94,0,0,4890,4891,3,822,411,0,4891,5035,1,0,0,0,4892,4894,5,138, + 0,0,4893,4895,5,259,0,0,4894,4893,1,0,0,0,4894,4895,1,0,0,0,4895, + 4896,1,0,0,0,4896,4898,5,376,0,0,4897,4899,3,422,211,0,4898,4897, + 1,0,0,0,4898,4899,1,0,0,0,4899,4900,1,0,0,0,4900,4901,3,782,391, + 0,4901,4902,5,309,0,0,4902,4903,5,94,0,0,4903,4904,3,780,390,0,4904, + 5035,1,0,0,0,4905,4907,5,138,0,0,4906,4908,5,63,0,0,4907,4906,1, + 0,0,0,4907,4908,1,0,0,0,4908,4909,1,0,0,0,4909,4911,5,92,0,0,4910, + 4912,3,422,211,0,4911,4910,1,0,0,0,4911,4912,1,0,0,0,4912,4913,1, + 0,0,0,4913,4914,3,626,313,0,4914,4915,5,309,0,0,4915,4916,5,94,0, + 0,4916,4917,3,776,388,0,4917,5035,1,0,0,0,4918,4943,5,138,0,0,4919, + 4921,5,63,0,0,4920,4919,1,0,0,0,4920,4921,1,0,0,0,4921,4922,1,0, + 0,0,4922,4924,5,92,0,0,4923,4925,3,422,211,0,4924,4923,1,0,0,0,4924, + 4925,1,0,0,0,4925,4926,1,0,0,0,4926,4927,3,626,313,0,4927,4929,5, + 309,0,0,4928,4930,5,44,0,0,4929,4928,1,0,0,0,4929,4930,1,0,0,0,4930, + 4944,1,0,0,0,4931,4933,5,259,0,0,4932,4931,1,0,0,0,4932,4933,1,0, + 0,0,4933,4934,1,0,0,0,4934,4936,5,376,0,0,4935,4937,3,422,211,0, + 4936,4935,1,0,0,0,4936,4937,1,0,0,0,4937,4938,1,0,0,0,4938,4939, + 3,782,391,0,4939,4941,5,309,0,0,4940,4942,5,44,0,0,4941,4940,1,0, + 0,0,4941,4942,1,0,0,0,4942,4944,1,0,0,0,4943,4920,1,0,0,0,4943,4932, + 1,0,0,0,4944,4945,1,0,0,0,4945,4946,3,804,402,0,4946,4947,5,94,0, + 0,4947,4948,3,806,403,0,4948,5035,1,0,0,0,4949,4957,5,138,0,0,4950, + 4952,5,92,0,0,4951,4953,3,422,211,0,4952,4951,1,0,0,0,4952,4953, + 1,0,0,0,4953,4954,1,0,0,0,4954,4958,3,626,313,0,4955,4956,5,189, + 0,0,4956,4958,3,316,158,0,4957,4950,1,0,0,0,4957,4955,1,0,0,0,4958, + 4959,1,0,0,0,4959,4960,5,309,0,0,4960,4961,5,45,0,0,4961,4962,3, + 822,411,0,4962,4963,5,94,0,0,4963,4964,3,822,411,0,4964,5035,1,0, + 0,0,4965,4972,5,138,0,0,4966,4968,5,445,0,0,4967,4969,3,422,211, + 0,4968,4967,1,0,0,0,4968,4969,1,0,0,0,4969,4973,1,0,0,0,4970,4973, + 5,321,0,0,4971,4973,5,357,0,0,4972,4966,1,0,0,0,4972,4970,1,0,0, + 0,4972,4971,1,0,0,0,4973,4974,1,0,0,0,4974,4975,3,822,411,0,4975, + 4976,5,80,0,0,4976,4977,3,784,392,0,4977,4978,5,309,0,0,4978,4979, + 5,94,0,0,4979,4980,3,822,411,0,4980,5035,1,0,0,0,4981,4994,5,138, + 0,0,4982,4983,5,63,0,0,4983,4984,5,174,0,0,4984,4995,5,381,0,0,4985, + 4987,5,295,0,0,4986,4985,1,0,0,0,4986,4987,1,0,0,0,4987,4988,1,0, + 0,0,4988,4995,5,247,0,0,4989,4995,5,452,0,0,4990,4995,5,331,0,0, + 4991,4995,5,451,0,0,4992,4993,5,198,0,0,4993,4995,5,357,0,0,4994, + 4982,1,0,0,0,4994,4986,1,0,0,0,4994,4989,1,0,0,0,4994,4990,1,0,0, + 0,4994,4991,1,0,0,0,4994,4992,1,0,0,0,4995,4996,1,0,0,0,4996,4997, + 3,822,411,0,4997,4998,5,309,0,0,4998,4999,5,94,0,0,4999,5000,3,822, + 411,0,5000,5035,1,0,0,0,5001,5002,5,138,0,0,5002,5003,7,45,0,0,5003, + 5004,3,818,409,0,5004,5005,5,309,0,0,5005,5006,5,94,0,0,5006,5007, + 3,818,409,0,5007,5035,1,0,0,0,5008,5009,5,138,0,0,5009,5010,3,176, + 88,0,5010,5011,5,309,0,0,5011,5012,5,94,0,0,5012,5013,3,772,386, + 0,5013,5035,1,0,0,0,5014,5015,5,138,0,0,5015,5016,5,355,0,0,5016, + 5017,5,325,0,0,5017,5018,7,41,0,0,5018,5019,3,316,158,0,5019,5020, + 5,309,0,0,5020,5021,5,94,0,0,5021,5022,3,822,411,0,5022,5035,1,0, + 0,0,5023,5024,5,138,0,0,5024,5025,5,360,0,0,5025,5026,3,316,158, + 0,5026,5027,5,309,0,0,5027,5028,5,143,0,0,5028,5029,3,822,411,0, + 5029,5030,5,94,0,0,5030,5032,3,822,411,0,5031,5033,3,96,48,0,5032, + 5031,1,0,0,0,5032,5033,1,0,0,0,5033,5035,1,0,0,0,5034,4827,1,0,0, + 0,5034,4838,1,0,0,0,5034,4845,1,0,0,0,5034,4852,1,0,0,0,5034,4859, + 1,0,0,0,5034,4868,1,0,0,0,5034,4875,1,0,0,0,5034,4882,1,0,0,0,5034, + 4892,1,0,0,0,5034,4905,1,0,0,0,5034,4918,1,0,0,0,5034,4949,1,0,0, + 0,5034,4965,1,0,0,0,5034,4981,1,0,0,0,5034,5001,1,0,0,0,5034,5008, + 1,0,0,0,5034,5014,1,0,0,0,5034,5023,1,0,0,0,5035,433,1,0,0,0,5036, + 5053,5,138,0,0,5037,5038,5,211,0,0,5038,5054,3,382,191,0,5039,5040, + 5,296,0,0,5040,5054,3,378,189,0,5041,5042,5,442,0,0,5042,5054,3, + 374,187,0,5043,5044,5,357,0,0,5044,5045,3,822,411,0,5045,5046,5, + 80,0,0,5046,5047,3,784,392,0,5047,5054,1,0,0,0,5048,5049,5,259,0, + 0,5049,5050,5,376,0,0,5050,5054,3,782,391,0,5051,5052,5,226,0,0, + 5052,5054,3,784,392,0,5053,5037,1,0,0,0,5053,5039,1,0,0,0,5053,5041, + 1,0,0,0,5053,5043,1,0,0,0,5053,5048,1,0,0,0,5053,5051,1,0,0,0,5054, + 5056,1,0,0,0,5055,5057,5,269,0,0,5056,5055,1,0,0,0,5056,5057,1,0, + 0,0,5057,5058,1,0,0,0,5058,5059,5,462,0,0,5059,5060,5,80,0,0,5060, + 5061,5,204,0,0,5061,5062,3,822,411,0,5062,435,1,0,0,0,5063,5102, + 5,138,0,0,5064,5065,5,136,0,0,5065,5103,3,394,197,0,5066,5067,5, + 204,0,0,5067,5103,3,822,411,0,5068,5069,5,211,0,0,5069,5103,3,382, + 191,0,5070,5071,5,278,0,0,5071,5103,3,416,208,0,5072,5073,5,278, + 0,0,5073,5074,7,31,0,0,5074,5075,3,316,158,0,5075,5076,3,170,85, + 0,5076,5103,1,0,0,0,5077,5078,5,296,0,0,5078,5103,3,378,189,0,5079, + 5080,5,442,0,0,5080,5103,3,374,187,0,5081,5083,5,328,0,0,5082,5084, + 3,422,211,0,5083,5082,1,0,0,0,5083,5084,1,0,0,0,5084,5085,1,0,0, + 0,5085,5103,3,784,392,0,5086,5088,5,259,0,0,5087,5086,1,0,0,0,5087, + 5088,1,0,0,0,5088,5089,1,0,0,0,5089,5091,5,376,0,0,5090,5092,3,422, + 211,0,5091,5090,1,0,0,0,5091,5092,1,0,0,0,5092,5093,1,0,0,0,5093, + 5103,3,782,391,0,5094,5096,5,63,0,0,5095,5094,1,0,0,0,5095,5096, + 1,0,0,0,5096,5097,1,0,0,0,5097,5099,5,92,0,0,5098,5100,3,422,211, + 0,5099,5098,1,0,0,0,5099,5100,1,0,0,0,5100,5101,1,0,0,0,5101,5103, + 3,626,313,0,5102,5064,1,0,0,0,5102,5066,1,0,0,0,5102,5068,1,0,0, + 0,5102,5070,1,0,0,0,5102,5072,1,0,0,0,5102,5077,1,0,0,0,5102,5079, + 1,0,0,0,5102,5081,1,0,0,0,5102,5087,1,0,0,0,5102,5095,1,0,0,0,5103, + 5104,1,0,0,0,5104,5105,5,333,0,0,5105,5106,5,323,0,0,5106,5107,3, + 794,397,0,5107,5125,1,0,0,0,5108,5117,5,138,0,0,5109,5110,5,355, + 0,0,5110,5111,5,325,0,0,5111,5118,7,41,0,0,5112,5118,5,108,0,0,5113, + 5118,5,168,0,0,5114,5118,5,189,0,0,5115,5118,5,342,0,0,5116,5118, + 5,360,0,0,5117,5109,1,0,0,0,5117,5112,1,0,0,0,5117,5113,1,0,0,0, + 5117,5114,1,0,0,0,5117,5115,1,0,0,0,5117,5116,1,0,0,0,5118,5119, + 1,0,0,0,5119,5120,3,316,158,0,5120,5121,5,333,0,0,5121,5122,5,323, + 0,0,5122,5123,3,794,397,0,5123,5125,1,0,0,0,5124,5063,1,0,0,0,5124, + 5108,1,0,0,0,5125,437,1,0,0,0,5126,5127,5,138,0,0,5127,5128,5,278, + 0,0,5128,5129,3,416,208,0,5129,5130,5,333,0,0,5130,5131,3,440,220, + 0,5131,439,1,0,0,0,5132,5133,5,2,0,0,5133,5138,3,442,221,0,5134, + 5135,5,6,0,0,5135,5137,3,442,221,0,5136,5134,1,0,0,0,5137,5140,1, + 0,0,0,5138,5136,1,0,0,0,5138,5139,1,0,0,0,5139,5141,1,0,0,0,5140, + 5138,1,0,0,0,5141,5142,5,3,0,0,5142,441,1,0,0,0,5143,5144,3,828, + 414,0,5144,5151,5,10,0,0,5145,5152,5,407,0,0,5146,5152,3,388,194, + 0,5147,5152,3,838,419,0,5148,5152,3,728,364,0,5149,5152,3,202,101, + 0,5150,5152,3,812,406,0,5151,5145,1,0,0,0,5151,5146,1,0,0,0,5151, + 5147,1,0,0,0,5151,5148,1,0,0,0,5151,5149,1,0,0,0,5151,5150,1,0,0, + 0,5152,443,1,0,0,0,5153,5154,5,138,0,0,5154,5155,5,360,0,0,5155, + 5156,3,316,158,0,5156,5157,5,333,0,0,5157,5158,3,440,220,0,5158, + 445,1,0,0,0,5159,5160,5,138,0,0,5160,5161,5,278,0,0,5161,5162,7, + 31,0,0,5162,5163,3,316,158,0,5163,5164,3,170,85,0,5164,5165,5,282, + 0,0,5165,5166,5,94,0,0,5166,5167,3,818,409,0,5167,5234,1,0,0,0,5168, + 5195,5,138,0,0,5169,5170,5,136,0,0,5170,5196,3,394,197,0,5171,5172, + 5,175,0,0,5172,5196,3,792,396,0,5173,5174,5,211,0,0,5174,5196,3, + 382,191,0,5175,5177,5,295,0,0,5176,5175,1,0,0,0,5176,5177,1,0,0, + 0,5177,5178,1,0,0,0,5178,5179,5,247,0,0,5179,5196,3,822,411,0,5180, + 5181,5,248,0,0,5181,5182,5,274,0,0,5182,5196,3,202,101,0,5183,5184, + 5,248,0,0,5184,5185,5,274,0,0,5185,5196,3,202,101,0,5186,5187,5, + 278,0,0,5187,5196,3,416,208,0,5188,5189,5,296,0,0,5189,5196,3,378, + 189,0,5190,5191,5,442,0,0,5191,5196,3,374,187,0,5192,5193,5,323, + 0,0,5193,5196,3,794,397,0,5194,5196,3,176,88,0,5195,5169,1,0,0,0, + 5195,5171,1,0,0,0,5195,5173,1,0,0,0,5195,5176,1,0,0,0,5195,5180, + 1,0,0,0,5195,5183,1,0,0,0,5195,5186,1,0,0,0,5195,5188,1,0,0,0,5195, + 5190,1,0,0,0,5195,5192,1,0,0,0,5195,5194,1,0,0,0,5196,5197,1,0,0, + 0,5197,5198,5,282,0,0,5198,5199,5,94,0,0,5199,5200,3,818,409,0,5200, + 5234,1,0,0,0,5201,5210,5,138,0,0,5202,5203,5,355,0,0,5203,5204,5, + 325,0,0,5204,5211,7,63,0,0,5205,5211,5,108,0,0,5206,5211,5,168,0, + 0,5207,5211,5,189,0,0,5208,5211,5,360,0,0,5209,5211,5,342,0,0,5210, + 5202,1,0,0,0,5210,5205,1,0,0,0,5210,5206,1,0,0,0,5210,5207,1,0,0, + 0,5210,5208,1,0,0,0,5210,5209,1,0,0,0,5211,5212,1,0,0,0,5212,5213, + 3,316,158,0,5213,5214,5,282,0,0,5214,5215,5,94,0,0,5215,5216,3,818, + 409,0,5216,5234,1,0,0,0,5217,5226,5,138,0,0,5218,5227,5,331,0,0, + 5219,5220,5,63,0,0,5220,5221,5,174,0,0,5221,5227,5,381,0,0,5222, + 5223,5,198,0,0,5223,5227,5,357,0,0,5224,5227,5,452,0,0,5225,5227, + 5,451,0,0,5226,5218,1,0,0,0,5226,5219,1,0,0,0,5226,5222,1,0,0,0, + 5226,5224,1,0,0,0,5226,5225,1,0,0,0,5227,5228,1,0,0,0,5228,5229, + 3,822,411,0,5229,5230,5,282,0,0,5230,5231,5,94,0,0,5231,5232,3,818, + 409,0,5232,5234,1,0,0,0,5233,5159,1,0,0,0,5233,5168,1,0,0,0,5233, + 5201,1,0,0,0,5233,5217,1,0,0,0,5234,447,1,0,0,0,5235,5236,5,46,0, + 0,5236,5237,5,452,0,0,5237,5244,3,822,411,0,5238,5239,5,62,0,0,5239, + 5240,5,92,0,0,5240,5245,3,630,315,0,5241,5242,5,62,0,0,5242,5243, + 5,30,0,0,5243,5245,5,350,0,0,5244,5238,1,0,0,0,5244,5241,1,0,0,0, + 5244,5245,1,0,0,0,5245,5247,1,0,0,0,5246,5248,3,400,200,0,5247,5246, + 1,0,0,0,5247,5248,1,0,0,0,5248,449,1,0,0,0,5249,5250,5,138,0,0,5250, + 5251,5,452,0,0,5251,5269,3,822,411,0,5252,5253,5,282,0,0,5253,5254, + 5,94,0,0,5254,5270,3,818,409,0,5255,5256,5,333,0,0,5256,5270,3,284, + 142,0,5257,5258,5,309,0,0,5258,5259,5,94,0,0,5259,5270,3,822,411, + 0,5260,5261,7,34,0,0,5261,5266,3,628,314,0,5262,5263,5,6,0,0,5263, + 5265,3,628,314,0,5264,5262,1,0,0,0,5265,5268,1,0,0,0,5266,5264,1, + 0,0,0,5266,5267,1,0,0,0,5267,5270,1,0,0,0,5268,5266,1,0,0,0,5269, + 5252,1,0,0,0,5269,5255,1,0,0,0,5269,5257,1,0,0,0,5269,5260,1,0,0, + 0,5270,451,1,0,0,0,5271,5272,5,46,0,0,5272,5273,5,451,0,0,5273,5274, + 3,822,411,0,5274,5275,5,164,0,0,5275,5276,3,812,406,0,5276,5277, + 5,452,0,0,5277,5282,3,828,414,0,5278,5279,5,6,0,0,5279,5281,3,828, + 414,0,5280,5278,1,0,0,0,5281,5284,1,0,0,0,5282,5280,1,0,0,0,5282, + 5283,1,0,0,0,5283,5286,1,0,0,0,5284,5282,1,0,0,0,5285,5287,3,400, + 200,0,5286,5285,1,0,0,0,5286,5287,1,0,0,0,5287,453,1,0,0,0,5288, + 5289,5,138,0,0,5289,5290,5,451,0,0,5290,5291,3,822,411,0,5291,5292, + 5,333,0,0,5292,5293,3,284,142,0,5293,5345,1,0,0,0,5294,5295,5,138, + 0,0,5295,5296,5,451,0,0,5296,5297,3,822,411,0,5297,5298,5,164,0, + 0,5298,5299,3,812,406,0,5299,5345,1,0,0,0,5300,5301,5,138,0,0,5301, + 5302,5,451,0,0,5302,5303,3,822,411,0,5303,5304,5,305,0,0,5304,5306, + 5,452,0,0,5305,5307,3,400,200,0,5306,5305,1,0,0,0,5306,5307,1,0, + 0,0,5307,5345,1,0,0,0,5308,5309,5,138,0,0,5309,5310,5,451,0,0,5310, + 5311,3,822,411,0,5311,5312,7,34,0,0,5312,5313,5,452,0,0,5313,5318, + 3,828,414,0,5314,5315,5,6,0,0,5315,5317,3,828,414,0,5316,5314,1, + 0,0,0,5317,5320,1,0,0,0,5318,5316,1,0,0,0,5318,5319,1,0,0,0,5319, + 5322,1,0,0,0,5320,5318,1,0,0,0,5321,5323,3,400,200,0,5322,5321,1, + 0,0,0,5322,5323,1,0,0,0,5323,5345,1,0,0,0,5324,5325,5,138,0,0,5325, + 5326,5,451,0,0,5326,5327,3,822,411,0,5327,5328,7,64,0,0,5328,5345, + 1,0,0,0,5329,5330,5,138,0,0,5330,5331,5,451,0,0,5331,5332,3,822, + 411,0,5332,5333,5,465,0,0,5333,5334,5,2,0,0,5334,5335,3,290,145, + 0,5335,5336,5,3,0,0,5336,5345,1,0,0,0,5337,5338,5,138,0,0,5338,5339, + 5,451,0,0,5339,5340,3,822,411,0,5340,5341,5,282,0,0,5341,5342,5, + 94,0,0,5342,5343,3,818,409,0,5343,5345,1,0,0,0,5344,5288,1,0,0,0, + 5344,5294,1,0,0,0,5344,5300,1,0,0,0,5344,5308,1,0,0,0,5344,5324, + 1,0,0,0,5344,5329,1,0,0,0,5344,5337,1,0,0,0,5345,455,1,0,0,0,5346, + 5348,5,46,0,0,5347,5349,3,366,183,0,5348,5347,1,0,0,0,5348,5349, + 1,0,0,0,5349,5350,1,0,0,0,5350,5351,5,321,0,0,5351,5352,3,822,411, + 0,5352,5353,5,36,0,0,5353,5354,5,80,0,0,5354,5355,7,65,0,0,5355, + 5356,5,94,0,0,5356,5358,3,784,392,0,5357,5359,3,640,320,0,5358,5357, + 1,0,0,0,5358,5359,1,0,0,0,5359,5360,1,0,0,0,5360,5362,5,57,0,0,5361, + 5363,7,66,0,0,5362,5361,1,0,0,0,5362,5363,1,0,0,0,5363,5380,1,0, + 0,0,5364,5381,5,270,0,0,5365,5381,3,458,229,0,5366,5368,5,2,0,0, + 5367,5369,3,458,229,0,5368,5367,1,0,0,0,5368,5369,1,0,0,0,5369,5376, + 1,0,0,0,5370,5372,5,7,0,0,5371,5373,3,458,229,0,5372,5371,1,0,0, + 0,5372,5373,1,0,0,0,5373,5375,1,0,0,0,5374,5370,1,0,0,0,5375,5378, + 1,0,0,0,5376,5374,1,0,0,0,5376,5377,1,0,0,0,5377,5379,1,0,0,0,5378, + 5376,1,0,0,0,5379,5381,5,3,0,0,5380,5364,1,0,0,0,5380,5365,1,0,0, + 0,5380,5366,1,0,0,0,5381,457,1,0,0,0,5382,5388,3,560,280,0,5383, + 5388,3,538,269,0,5384,5388,3,552,276,0,5385,5388,3,548,274,0,5386, + 5388,3,460,230,0,5387,5382,1,0,0,0,5387,5383,1,0,0,0,5387,5384,1, + 0,0,0,5387,5385,1,0,0,0,5387,5386,1,0,0,0,5388,459,1,0,0,0,5389, + 5390,5,271,0,0,5390,5392,3,822,411,0,5391,5393,3,462,231,0,5392, + 5391,1,0,0,0,5392,5393,1,0,0,0,5393,461,1,0,0,0,5394,5395,5,6,0, + 0,5395,5396,3,812,406,0,5396,463,1,0,0,0,5397,5398,5,252,0,0,5398, + 5399,3,822,411,0,5399,465,1,0,0,0,5400,5403,5,366,0,0,5401,5404, + 3,822,411,0,5402,5404,5,9,0,0,5403,5401,1,0,0,0,5403,5402,1,0,0, + 0,5404,467,1,0,0,0,5405,5407,5,146,0,0,5406,5408,3,470,235,0,5407, + 5406,1,0,0,0,5407,5408,1,0,0,0,5408,5410,1,0,0,0,5409,5411,3,474, + 237,0,5410,5409,1,0,0,0,5410,5411,1,0,0,0,5411,5451,1,0,0,0,5412, + 5413,5,340,0,0,5413,5415,5,356,0,0,5414,5416,3,474,237,0,5415,5414, + 1,0,0,0,5415,5416,1,0,0,0,5416,5451,1,0,0,0,5417,5418,5,322,0,0, + 5418,5451,3,822,411,0,5419,5421,5,308,0,0,5420,5422,5,322,0,0,5421, + 5420,1,0,0,0,5421,5422,1,0,0,0,5422,5423,1,0,0,0,5423,5451,3,822, + 411,0,5424,5425,5,290,0,0,5425,5426,5,356,0,0,5426,5451,3,812,406, + 0,5427,5428,7,67,0,0,5428,5429,5,291,0,0,5429,5451,3,812,406,0,5430, + 5432,7,68,0,0,5431,5433,3,470,235,0,5432,5431,1,0,0,0,5432,5433, + 1,0,0,0,5433,5439,1,0,0,0,5434,5436,5,33,0,0,5435,5437,5,269,0,0, + 5436,5435,1,0,0,0,5436,5437,1,0,0,0,5437,5438,1,0,0,0,5438,5440, + 5,153,0,0,5439,5434,1,0,0,0,5439,5440,1,0,0,0,5440,5451,1,0,0,0, + 5441,5443,5,319,0,0,5442,5444,3,470,235,0,5443,5442,1,0,0,0,5443, + 5444,1,0,0,0,5444,5445,1,0,0,0,5445,5447,5,94,0,0,5446,5448,5,322, + 0,0,5447,5446,1,0,0,0,5447,5448,1,0,0,0,5448,5449,1,0,0,0,5449,5451, + 3,822,411,0,5450,5405,1,0,0,0,5450,5412,1,0,0,0,5450,5417,1,0,0, + 0,5450,5419,1,0,0,0,5450,5424,1,0,0,0,5450,5427,1,0,0,0,5450,5430, + 1,0,0,0,5450,5441,1,0,0,0,5451,469,1,0,0,0,5452,5453,7,69,0,0,5453, + 471,1,0,0,0,5454,5455,5,244,0,0,5455,5456,5,251,0,0,5456,5464,3, + 50,25,0,5457,5458,5,300,0,0,5458,5464,7,70,0,0,5459,5461,5,77,0, + 0,5460,5459,1,0,0,0,5460,5461,1,0,0,0,5461,5462,1,0,0,0,5462,5464, + 5,54,0,0,5463,5454,1,0,0,0,5463,5457,1,0,0,0,5463,5460,1,0,0,0,5464, + 473,1,0,0,0,5465,5472,3,472,236,0,5466,5468,5,6,0,0,5467,5466,1, + 0,0,0,5467,5468,1,0,0,0,5468,5469,1,0,0,0,5469,5471,3,472,236,0, + 5470,5467,1,0,0,0,5471,5474,1,0,0,0,5472,5470,1,0,0,0,5472,5473, + 1,0,0,0,5473,475,1,0,0,0,5474,5472,1,0,0,0,5475,5478,5,46,0,0,5476, + 5477,5,82,0,0,5477,5479,5,311,0,0,5478,5476,1,0,0,0,5478,5479,1, + 0,0,0,5479,5481,1,0,0,0,5480,5482,3,122,61,0,5481,5480,1,0,0,0,5481, + 5482,1,0,0,0,5482,5498,1,0,0,0,5483,5484,5,376,0,0,5484,5486,3,780, + 390,0,5485,5487,3,146,73,0,5486,5485,1,0,0,0,5486,5487,1,0,0,0,5487, + 5489,1,0,0,0,5488,5490,3,102,51,0,5489,5488,1,0,0,0,5489,5490,1, + 0,0,0,5490,5499,1,0,0,0,5491,5492,5,303,0,0,5492,5493,5,376,0,0, + 5493,5494,3,780,390,0,5494,5496,3,144,72,0,5495,5497,3,102,51,0, + 5496,5495,1,0,0,0,5496,5497,1,0,0,0,5497,5499,1,0,0,0,5498,5483, + 1,0,0,0,5498,5491,1,0,0,0,5499,5500,1,0,0,0,5500,5501,5,36,0,0,5501, + 5508,3,560,280,0,5502,5504,5,105,0,0,5503,5505,7,71,0,0,5504,5503, + 1,0,0,0,5504,5505,1,0,0,0,5505,5506,1,0,0,0,5506,5507,5,42,0,0,5507, + 5509,5,279,0,0,5508,5502,1,0,0,0,5508,5509,1,0,0,0,5509,477,1,0, + 0,0,5510,5511,5,253,0,0,5511,5512,3,812,406,0,5512,479,1,0,0,0,5513, + 5514,5,46,0,0,5514,5515,5,175,0,0,5515,5517,3,790,395,0,5516,5518, + 5,105,0,0,5517,5516,1,0,0,0,5517,5518,1,0,0,0,5518,5524,1,0,0,0, + 5519,5521,3,482,241,0,5520,5519,1,0,0,0,5521,5522,1,0,0,0,5522,5520, + 1,0,0,0,5522,5523,1,0,0,0,5523,5525,1,0,0,0,5524,5520,1,0,0,0,5524, + 5525,1,0,0,0,5525,481,1,0,0,0,5526,5527,5,164,0,0,5527,5535,5,74, + 0,0,5528,5535,5,194,0,0,5529,5535,5,255,0,0,5530,5535,5,282,0,0, + 5531,5535,5,351,0,0,5532,5535,5,353,0,0,5533,5535,3,830,415,0,5534, + 5526,1,0,0,0,5534,5528,1,0,0,0,5534,5529,1,0,0,0,5534,5530,1,0,0, + 0,5534,5531,1,0,0,0,5534,5532,1,0,0,0,5534,5533,1,0,0,0,5535,5537, + 1,0,0,0,5536,5538,5,10,0,0,5537,5536,1,0,0,0,5537,5538,1,0,0,0,5538, + 5542,1,0,0,0,5539,5543,3,816,408,0,5540,5543,3,54,27,0,5541,5543, + 5,53,0,0,5542,5539,1,0,0,0,5542,5540,1,0,0,0,5542,5541,1,0,0,0,5543, + 483,1,0,0,0,5544,5545,5,138,0,0,5545,5546,5,175,0,0,5546,5562,3, + 792,396,0,5547,5548,5,333,0,0,5548,5549,5,351,0,0,5549,5551,3,772, + 386,0,5550,5547,1,0,0,0,5550,5551,1,0,0,0,5551,5563,1,0,0,0,5552, + 5554,5,105,0,0,5553,5552,1,0,0,0,5553,5554,1,0,0,0,5554,5556,1,0, + 0,0,5555,5557,3,482,241,0,5556,5555,1,0,0,0,5557,5558,1,0,0,0,5558, + 5556,1,0,0,0,5558,5559,1,0,0,0,5559,5561,1,0,0,0,5560,5553,1,0,0, + 0,5560,5561,1,0,0,0,5561,5563,1,0,0,0,5562,5550,1,0,0,0,5562,5560, + 1,0,0,0,5563,485,1,0,0,0,5564,5565,5,138,0,0,5565,5566,5,175,0,0, + 5566,5568,3,792,396,0,5567,5569,3,64,32,0,5568,5567,1,0,0,0,5568, + 5569,1,0,0,0,5569,487,1,0,0,0,5570,5571,5,138,0,0,5571,5572,5,108, + 0,0,5572,5573,3,316,158,0,5573,5574,5,305,0,0,5574,5575,5,375,0, + 0,5575,489,1,0,0,0,5576,5577,5,138,0,0,5577,5578,5,349,0,0,5578, + 5579,7,16,0,0,5579,5580,3,40,20,0,5580,491,1,0,0,0,5581,5582,5,46, + 0,0,5582,5583,5,189,0,0,5583,5585,3,316,158,0,5584,5586,5,36,0,0, + 5585,5584,1,0,0,0,5585,5586,1,0,0,0,5586,5587,1,0,0,0,5587,5591, + 3,654,327,0,5588,5590,3,134,67,0,5589,5588,1,0,0,0,5590,5593,1,0, + 0,0,5591,5589,1,0,0,0,5591,5592,1,0,0,0,5592,493,1,0,0,0,5593,5591, + 1,0,0,0,5594,5595,5,138,0,0,5595,5596,5,189,0,0,5596,5619,3,316, + 158,0,5597,5620,3,94,47,0,5598,5599,7,15,0,0,5599,5600,5,77,0,0, + 5600,5620,5,78,0,0,5601,5604,5,133,0,0,5602,5603,5,45,0,0,5603,5605, + 3,822,411,0,5604,5602,1,0,0,0,5604,5605,1,0,0,0,5605,5606,1,0,0, + 0,5606,5620,3,142,71,0,5607,5608,5,191,0,0,5608,5610,5,45,0,0,5609, + 5611,3,422,211,0,5610,5609,1,0,0,0,5610,5611,1,0,0,0,5611,5612,1, + 0,0,0,5612,5614,3,822,411,0,5613,5615,3,96,48,0,5614,5613,1,0,0, + 0,5614,5615,1,0,0,0,5615,5620,1,0,0,0,5616,5617,5,372,0,0,5617,5618, + 5,45,0,0,5618,5620,3,822,411,0,5619,5597,1,0,0,0,5619,5598,1,0,0, + 0,5619,5601,1,0,0,0,5619,5607,1,0,0,0,5619,5616,1,0,0,0,5620,495, + 1,0,0,0,5621,5622,5,138,0,0,5622,5623,5,355,0,0,5623,5624,5,325, + 0,0,5624,5625,5,185,0,0,5625,5626,3,316,158,0,5626,5627,3,284,142, + 0,5627,497,1,0,0,0,5628,5629,5,138,0,0,5629,5630,5,355,0,0,5630, + 5631,5,325,0,0,5631,5632,5,163,0,0,5632,5633,3,316,158,0,5633,5634, + 7,72,0,0,5634,5635,5,257,0,0,5635,5636,5,62,0,0,5636,5637,3,788, + 394,0,5637,5638,5,105,0,0,5638,5639,3,314,157,0,5639,5670,1,0,0, + 0,5640,5641,5,138,0,0,5641,5642,5,355,0,0,5642,5643,5,325,0,0,5643, + 5644,5,163,0,0,5644,5645,3,316,158,0,5645,5646,5,138,0,0,5646,5649, + 5,257,0,0,5647,5648,5,62,0,0,5648,5650,3,788,394,0,5649,5647,1,0, + 0,0,5649,5650,1,0,0,0,5650,5651,1,0,0,0,5651,5652,5,311,0,0,5652, + 5653,3,316,158,0,5653,5654,5,105,0,0,5654,5655,3,316,158,0,5655, + 5670,1,0,0,0,5656,5657,5,138,0,0,5657,5658,5,355,0,0,5658,5659,5, + 325,0,0,5659,5660,5,163,0,0,5660,5661,3,316,158,0,5661,5662,5,191, + 0,0,5662,5664,5,257,0,0,5663,5665,3,422,211,0,5664,5663,1,0,0,0, + 5664,5665,1,0,0,0,5665,5666,1,0,0,0,5666,5667,5,62,0,0,5667,5668, + 3,788,394,0,5668,5670,1,0,0,0,5669,5628,1,0,0,0,5669,5640,1,0,0, + 0,5669,5656,1,0,0,0,5670,499,1,0,0,0,5671,5673,5,46,0,0,5672,5674, + 5,53,0,0,5673,5672,1,0,0,0,5673,5674,1,0,0,0,5674,5675,1,0,0,0,5675, + 5676,5,168,0,0,5676,5677,3,316,158,0,5677,5678,5,62,0,0,5678,5679, + 3,812,406,0,5679,5680,5,94,0,0,5680,5681,3,812,406,0,5681,5682,5, + 64,0,0,5682,5683,3,316,158,0,5683,501,1,0,0,0,5684,5686,5,158,0, + 0,5685,5687,3,514,257,0,5686,5685,1,0,0,0,5686,5687,1,0,0,0,5687, + 5692,1,0,0,0,5688,5690,3,778,389,0,5689,5691,3,170,85,0,5690,5689, + 1,0,0,0,5690,5691,1,0,0,0,5691,5693,1,0,0,0,5692,5688,1,0,0,0,5692, + 5693,1,0,0,0,5693,5710,1,0,0,0,5694,5695,5,158,0,0,5695,5696,5,2, + 0,0,5696,5701,3,514,257,0,5697,5698,5,6,0,0,5698,5700,3,514,257, + 0,5699,5697,1,0,0,0,5700,5703,1,0,0,0,5701,5699,1,0,0,0,5701,5702, + 1,0,0,0,5702,5704,1,0,0,0,5703,5701,1,0,0,0,5704,5705,5,3,0,0,5705, + 5707,3,778,389,0,5706,5708,3,170,85,0,5707,5706,1,0,0,0,5707,5708, + 1,0,0,0,5708,5710,1,0,0,0,5709,5684,1,0,0,0,5709,5694,1,0,0,0,5710, + 503,1,0,0,0,5711,5727,5,370,0,0,5712,5714,5,113,0,0,5713,5712,1, + 0,0,0,5713,5714,1,0,0,0,5714,5716,1,0,0,0,5715,5717,5,112,0,0,5716, + 5715,1,0,0,0,5716,5717,1,0,0,0,5717,5719,1,0,0,0,5718,5720,3,514, + 257,0,5719,5718,1,0,0,0,5719,5720,1,0,0,0,5720,5722,1,0,0,0,5721, + 5723,3,508,254,0,5722,5721,1,0,0,0,5722,5723,1,0,0,0,5723,5728,1, + 0,0,0,5724,5726,3,524,262,0,5725,5724,1,0,0,0,5725,5726,1,0,0,0, + 5726,5728,1,0,0,0,5727,5713,1,0,0,0,5727,5725,1,0,0,0,5728,5730, + 1,0,0,0,5729,5731,3,518,259,0,5730,5729,1,0,0,0,5730,5731,1,0,0, + 0,5731,505,1,0,0,0,5732,5747,3,508,254,0,5733,5735,3,514,257,0,5734, + 5733,1,0,0,0,5734,5735,1,0,0,0,5735,5748,1,0,0,0,5736,5737,5,2,0, + 0,5737,5742,3,512,256,0,5738,5739,5,6,0,0,5739,5741,3,512,256,0, + 5740,5738,1,0,0,0,5741,5744,1,0,0,0,5742,5740,1,0,0,0,5742,5743, + 1,0,0,0,5743,5745,1,0,0,0,5744,5742,1,0,0,0,5745,5746,5,3,0,0,5746, + 5748,1,0,0,0,5747,5734,1,0,0,0,5747,5736,1,0,0,0,5748,5750,1,0,0, + 0,5749,5751,3,518,259,0,5750,5749,1,0,0,0,5750,5751,1,0,0,0,5751, + 507,1,0,0,0,5752,5753,7,73,0,0,5753,509,1,0,0,0,5754,5757,3,826, + 413,0,5755,5757,3,508,254,0,5756,5754,1,0,0,0,5756,5755,1,0,0,0, + 5757,5760,1,0,0,0,5758,5761,3,54,27,0,5759,5761,3,202,101,0,5760, + 5758,1,0,0,0,5760,5759,1,0,0,0,5760,5761,1,0,0,0,5761,511,1,0,0, + 0,5762,5764,7,74,0,0,5763,5765,7,75,0,0,5764,5763,1,0,0,0,5764,5765, + 1,0,0,0,5765,5772,1,0,0,0,5766,5769,5,548,0,0,5767,5770,3,202,101, + 0,5768,5770,3,812,406,0,5769,5767,1,0,0,0,5769,5768,1,0,0,0,5770, + 5772,1,0,0,0,5771,5762,1,0,0,0,5771,5766,1,0,0,0,5772,513,1,0,0, + 0,5773,5775,5,128,0,0,5774,5776,7,75,0,0,5775,5774,1,0,0,0,5775, + 5776,1,0,0,0,5776,515,1,0,0,0,5777,5779,3,778,389,0,5778,5780,3, + 144,72,0,5779,5778,1,0,0,0,5779,5780,1,0,0,0,5780,517,1,0,0,0,5781, + 5786,3,516,258,0,5782,5783,5,6,0,0,5783,5785,3,516,258,0,5784,5782, + 1,0,0,0,5785,5788,1,0,0,0,5786,5784,1,0,0,0,5786,5787,1,0,0,0,5787, + 519,1,0,0,0,5788,5786,1,0,0,0,5789,5800,5,203,0,0,5790,5801,3,524, + 262,0,5791,5793,5,128,0,0,5792,5791,1,0,0,0,5792,5793,1,0,0,0,5793, + 5801,1,0,0,0,5794,5796,3,508,254,0,5795,5797,3,514,257,0,5796,5795, + 1,0,0,0,5796,5797,1,0,0,0,5797,5799,1,0,0,0,5798,5794,1,0,0,0,5798, + 5799,1,0,0,0,5799,5801,1,0,0,0,5800,5790,1,0,0,0,5800,5792,1,0,0, + 0,5800,5798,1,0,0,0,5801,5802,1,0,0,0,5802,5803,3,522,261,0,5803, + 521,1,0,0,0,5804,5814,3,560,280,0,5805,5814,3,538,269,0,5806,5814, + 3,552,276,0,5807,5814,3,548,274,0,5808,5814,3,558,279,0,5809,5814, + 3,186,93,0,5810,5814,3,192,96,0,5811,5814,3,194,97,0,5812,5814,3, + 532,266,0,5813,5804,1,0,0,0,5813,5805,1,0,0,0,5813,5806,1,0,0,0, + 5813,5807,1,0,0,0,5813,5808,1,0,0,0,5813,5809,1,0,0,0,5813,5810, + 1,0,0,0,5813,5811,1,0,0,0,5813,5812,1,0,0,0,5814,523,1,0,0,0,5815, + 5816,5,2,0,0,5816,5821,3,510,255,0,5817,5818,5,6,0,0,5818,5820,3, + 510,255,0,5819,5817,1,0,0,0,5820,5823,1,0,0,0,5821,5819,1,0,0,0, + 5821,5822,1,0,0,0,5822,5824,1,0,0,0,5823,5821,1,0,0,0,5824,5825, + 5,3,0,0,5825,525,1,0,0,0,5826,5827,5,290,0,0,5827,5829,3,822,411, + 0,5828,5830,3,528,264,0,5829,5828,1,0,0,0,5829,5830,1,0,0,0,5830, + 5831,1,0,0,0,5831,5832,5,36,0,0,5832,5833,3,530,265,0,5833,527,1, + 0,0,0,5834,5835,5,2,0,0,5835,5840,3,654,327,0,5836,5837,5,6,0,0, + 5837,5839,3,654,327,0,5838,5836,1,0,0,0,5839,5842,1,0,0,0,5840,5838, + 1,0,0,0,5840,5841,1,0,0,0,5841,5843,1,0,0,0,5842,5840,1,0,0,0,5843, + 5844,5,3,0,0,5844,529,1,0,0,0,5845,5850,3,560,280,0,5846,5850,3, + 538,269,0,5847,5850,3,552,276,0,5848,5850,3,548,274,0,5849,5845, + 1,0,0,0,5849,5846,1,0,0,0,5849,5847,1,0,0,0,5849,5848,1,0,0,0,5850, + 531,1,0,0,0,5851,5852,5,202,0,0,5852,5854,3,822,411,0,5853,5855, + 3,534,267,0,5854,5853,1,0,0,0,5854,5855,1,0,0,0,5855,5875,1,0,0, + 0,5856,5858,5,46,0,0,5857,5859,3,122,61,0,5858,5857,1,0,0,0,5858, + 5859,1,0,0,0,5859,5860,1,0,0,0,5860,5862,5,92,0,0,5861,5863,3,294, + 147,0,5862,5861,1,0,0,0,5862,5863,1,0,0,0,5863,5864,1,0,0,0,5864, + 5865,3,188,94,0,5865,5866,5,36,0,0,5866,5867,5,202,0,0,5867,5869, + 3,822,411,0,5868,5870,3,534,267,0,5869,5868,1,0,0,0,5869,5870,1, + 0,0,0,5870,5872,1,0,0,0,5871,5873,3,190,95,0,5872,5871,1,0,0,0,5872, + 5873,1,0,0,0,5873,5875,1,0,0,0,5874,5851,1,0,0,0,5874,5856,1,0,0, + 0,5875,533,1,0,0,0,5876,5877,5,2,0,0,5877,5878,3,732,366,0,5878, + 5879,5,3,0,0,5879,535,1,0,0,0,5880,5882,5,177,0,0,5881,5883,5,290, + 0,0,5882,5881,1,0,0,0,5882,5883,1,0,0,0,5883,5886,1,0,0,0,5884,5887, + 3,822,411,0,5885,5887,5,30,0,0,5886,5884,1,0,0,0,5886,5885,1,0,0, + 0,5887,537,1,0,0,0,5888,5890,3,572,286,0,5889,5888,1,0,0,0,5889, + 5890,1,0,0,0,5890,5891,1,0,0,0,5891,5892,5,241,0,0,5892,5893,5,71, + 0,0,5893,5896,3,778,389,0,5894,5895,5,36,0,0,5895,5897,3,822,411, + 0,5896,5894,1,0,0,0,5896,5897,1,0,0,0,5897,5898,1,0,0,0,5898,5920, + 3,540,270,0,5899,5900,5,80,0,0,5900,5908,5,464,0,0,5901,5903,3,360, + 180,0,5902,5904,3,640,320,0,5903,5902,1,0,0,0,5903,5904,1,0,0,0, + 5904,5909,1,0,0,0,5905,5906,5,80,0,0,5906,5907,5,45,0,0,5907,5909, + 3,822,411,0,5908,5901,1,0,0,0,5908,5905,1,0,0,0,5908,5909,1,0,0, + 0,5909,5910,1,0,0,0,5910,5918,5,57,0,0,5911,5912,5,369,0,0,5912, + 5913,5,333,0,0,5913,5915,3,554,277,0,5914,5916,3,640,320,0,5915, + 5914,1,0,0,0,5915,5916,1,0,0,0,5916,5919,1,0,0,0,5917,5919,5,270, + 0,0,5918,5911,1,0,0,0,5918,5917,1,0,0,0,5919,5921,1,0,0,0,5920,5899, + 1,0,0,0,5920,5921,1,0,0,0,5921,5923,1,0,0,0,5922,5924,3,546,273, + 0,5923,5922,1,0,0,0,5923,5924,1,0,0,0,5924,539,1,0,0,0,5925,5926, + 5,2,0,0,5926,5927,3,542,271,0,5927,5928,5,3,0,0,5928,5930,1,0,0, + 0,5929,5925,1,0,0,0,5929,5930,1,0,0,0,5930,5934,1,0,0,0,5931,5932, + 5,463,0,0,5932,5933,7,76,0,0,5933,5935,5,450,0,0,5934,5931,1,0,0, + 0,5934,5935,1,0,0,0,5935,5938,1,0,0,0,5936,5939,3,914,457,0,5937, + 5939,3,560,280,0,5938,5936,1,0,0,0,5938,5937,1,0,0,0,5939,541,1, + 0,0,0,5940,5945,3,544,272,0,5941,5942,5,6,0,0,5942,5944,3,544,272, + 0,5943,5941,1,0,0,0,5944,5947,1,0,0,0,5945,5943,1,0,0,0,5945,5946, + 1,0,0,0,5946,543,1,0,0,0,5947,5945,1,0,0,0,5948,5949,3,804,402,0, + 5949,5950,3,756,378,0,5950,545,1,0,0,0,5951,5952,5,87,0,0,5952,5953, + 3,758,379,0,5953,547,1,0,0,0,5954,5956,3,572,286,0,5955,5954,1,0, + 0,0,5955,5956,1,0,0,0,5956,5957,1,0,0,0,5957,5958,5,182,0,0,5958, + 5959,5,64,0,0,5959,5962,3,632,316,0,5960,5961,5,100,0,0,5961,5963, + 3,612,306,0,5962,5960,1,0,0,0,5962,5963,1,0,0,0,5963,5965,1,0,0, + 0,5964,5966,3,642,321,0,5965,5964,1,0,0,0,5965,5966,1,0,0,0,5966, + 5968,1,0,0,0,5967,5969,3,546,273,0,5968,5967,1,0,0,0,5968,5969,1, + 0,0,0,5969,549,1,0,0,0,5970,5972,5,256,0,0,5971,5973,5,92,0,0,5972, + 5971,1,0,0,0,5972,5973,1,0,0,0,5973,5974,1,0,0,0,5974,5989,3,630, + 315,0,5975,5986,5,68,0,0,5976,5977,7,77,0,0,5977,5987,7,78,0,0,5978, + 5983,5,334,0,0,5979,5980,5,369,0,0,5980,5984,5,201,0,0,5981,5982, + 5,414,0,0,5982,5984,5,201,0,0,5983,5979,1,0,0,0,5983,5981,1,0,0, + 0,5983,5984,1,0,0,0,5984,5987,1,0,0,0,5985,5987,5,201,0,0,5986,5976, + 1,0,0,0,5986,5978,1,0,0,0,5986,5985,1,0,0,0,5987,5988,1,0,0,0,5988, + 5990,5,263,0,0,5989,5975,1,0,0,0,5989,5990,1,0,0,0,5990,5992,1,0, + 0,0,5991,5993,5,272,0,0,5992,5991,1,0,0,0,5992,5993,1,0,0,0,5993, + 551,1,0,0,0,5994,5996,3,572,286,0,5995,5994,1,0,0,0,5995,5996,1, + 0,0,0,5996,5997,1,0,0,0,5997,5998,5,369,0,0,5998,5999,3,632,316, + 0,5999,6000,5,333,0,0,6000,6002,3,554,277,0,6001,6003,3,610,305, + 0,6002,6001,1,0,0,0,6002,6003,1,0,0,0,6003,6005,1,0,0,0,6004,6006, + 3,642,321,0,6005,6004,1,0,0,0,6005,6006,1,0,0,0,6006,6008,1,0,0, + 0,6007,6009,3,546,273,0,6008,6007,1,0,0,0,6008,6009,1,0,0,0,6009, + 553,1,0,0,0,6010,6015,3,556,278,0,6011,6012,5,6,0,0,6012,6014,3, + 556,278,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,555,1,0,0,0,6017,6015,1,0,0,0,6018,6019,3, + 544,272,0,6019,6020,5,10,0,0,6020,6021,3,676,338,0,6021,6037,1,0, + 0,0,6022,6023,5,2,0,0,6023,6024,3,542,271,0,6024,6025,5,3,0,0,6025, + 6034,5,10,0,0,6026,6028,5,414,0,0,6027,6026,1,0,0,0,6027,6028,1, + 0,0,0,6028,6029,1,0,0,0,6029,6035,3,676,338,0,6030,6031,5,2,0,0, + 6031,6032,3,566,283,0,6032,6033,5,3,0,0,6033,6035,1,0,0,0,6034,6027, + 1,0,0,0,6034,6030,1,0,0,0,6035,6037,1,0,0,0,6036,6018,1,0,0,0,6036, + 6022,1,0,0,0,6037,557,1,0,0,0,6038,6039,5,178,0,0,6039,6048,3,822, + 411,0,6040,6042,5,269,0,0,6041,6040,1,0,0,0,6041,6042,1,0,0,0,6042, + 6043,1,0,0,0,6043,6047,5,324,0,0,6044,6047,5,107,0,0,6045,6047,5, + 240,0,0,6046,6041,1,0,0,0,6046,6044,1,0,0,0,6046,6045,1,0,0,0,6047, + 6050,1,0,0,0,6048,6046,1,0,0,0,6048,6049,1,0,0,0,6049,6051,1,0,0, + 0,6050,6048,1,0,0,0,6051,6054,5,172,0,0,6052,6053,7,26,0,0,6053, + 6055,5,217,0,0,6054,6052,1,0,0,0,6054,6055,1,0,0,0,6055,6056,1,0, + 0,0,6056,6057,5,62,0,0,6057,6058,3,560,280,0,6058,559,1,0,0,0,6059, + 6062,3,564,282,0,6060,6062,3,562,281,0,6061,6059,1,0,0,0,6061,6060, + 1,0,0,0,6062,561,1,0,0,0,6063,6066,5,2,0,0,6064,6067,3,564,282,0, + 6065,6067,3,562,281,0,6066,6064,1,0,0,0,6066,6065,1,0,0,0,6067,6068, + 1,0,0,0,6068,6069,5,3,0,0,6069,563,1,0,0,0,6070,6072,3,572,286,0, + 6071,6070,1,0,0,0,6071,6072,1,0,0,0,6072,6073,1,0,0,0,6073,6075, + 3,566,283,0,6074,6076,3,586,293,0,6075,6074,1,0,0,0,6075,6076,1, + 0,0,0,6076,6085,1,0,0,0,6077,6079,3,606,303,0,6078,6080,3,590,295, + 0,6079,6078,1,0,0,0,6079,6080,1,0,0,0,6080,6086,1,0,0,0,6081,6083, + 3,590,295,0,6082,6084,3,606,303,0,6083,6082,1,0,0,0,6083,6084,1, + 0,0,0,6084,6086,1,0,0,0,6085,6077,1,0,0,0,6085,6081,1,0,0,0,6085, + 6086,1,0,0,0,6086,565,1,0,0,0,6087,6090,3,568,284,0,6088,6090,3, + 562,281,0,6089,6087,1,0,0,0,6089,6088,1,0,0,0,6090,567,1,0,0,0,6091, + 6101,5,88,0,0,6092,6094,5,30,0,0,6093,6092,1,0,0,0,6093,6094,1,0, + 0,0,6094,6096,1,0,0,0,6095,6097,3,580,290,0,6096,6095,1,0,0,0,6096, + 6097,1,0,0,0,6097,6102,1,0,0,0,6098,6100,3,584,292,0,6099,6098,1, + 0,0,0,6099,6100,1,0,0,0,6100,6102,1,0,0,0,6101,6093,1,0,0,0,6101, + 6099,1,0,0,0,6102,6103,1,0,0,0,6103,6114,3,934,467,0,6104,6114,3, + 608,304,0,6105,6106,5,92,0,0,6106,6114,3,626,313,0,6107,6108,3,562, + 281,0,6108,6111,3,570,285,0,6109,6112,3,568,284,0,6110,6112,3,562, + 281,0,6111,6109,1,0,0,0,6111,6110,1,0,0,0,6112,6114,1,0,0,0,6113, + 6091,1,0,0,0,6113,6104,1,0,0,0,6113,6105,1,0,0,0,6113,6107,1,0,0, + 0,6114,6122,1,0,0,0,6115,6118,3,570,285,0,6116,6119,3,568,284,0, + 6117,6119,3,562,281,0,6118,6116,1,0,0,0,6118,6117,1,0,0,0,6119,6121, + 1,0,0,0,6120,6115,1,0,0,0,6121,6124,1,0,0,0,6122,6120,1,0,0,0,6122, + 6123,1,0,0,0,6123,569,1,0,0,0,6124,6122,1,0,0,0,6125,6127,7,79,0, + 0,6126,6128,7,80,0,0,6127,6126,1,0,0,0,6127,6128,1,0,0,0,6128,571, + 1,0,0,0,6129,6131,5,105,0,0,6130,6132,5,303,0,0,6131,6130,1,0,0, + 0,6131,6132,1,0,0,0,6132,6133,1,0,0,0,6133,6138,3,574,287,0,6134, + 6135,5,6,0,0,6135,6137,3,574,287,0,6136,6134,1,0,0,0,6137,6140,1, + 0,0,0,6138,6136,1,0,0,0,6138,6139,1,0,0,0,6139,573,1,0,0,0,6140, + 6138,1,0,0,0,6141,6143,3,822,411,0,6142,6144,3,144,72,0,6143,6142, + 1,0,0,0,6143,6144,1,0,0,0,6144,6145,1,0,0,0,6145,6150,5,36,0,0,6146, + 6148,5,77,0,0,6147,6146,1,0,0,0,6147,6148,1,0,0,0,6148,6149,1,0, + 0,0,6149,6151,5,259,0,0,6150,6147,1,0,0,0,6150,6151,1,0,0,0,6151, + 6152,1,0,0,0,6152,6153,5,2,0,0,6153,6154,3,530,265,0,6154,6156,5, + 3,0,0,6155,6157,3,576,288,0,6156,6155,1,0,0,0,6156,6157,1,0,0,0, + 6157,6159,1,0,0,0,6158,6160,3,578,289,0,6159,6158,1,0,0,0,6159,6160, + 1,0,0,0,6160,575,1,0,0,0,6161,6162,5,325,0,0,6162,6163,7,81,0,0, + 6163,6164,5,207,0,0,6164,6165,5,147,0,0,6165,6166,3,148,74,0,6166, + 6167,5,333,0,0,6167,6168,3,804,402,0,6168,577,1,0,0,0,6169,6170, + 5,173,0,0,6170,6171,3,148,74,0,6171,6172,5,333,0,0,6172,6178,3,804, + 402,0,6173,6174,5,94,0,0,6174,6175,3,822,411,0,6175,6176,5,53,0, + 0,6176,6177,3,822,411,0,6177,6179,1,0,0,0,6178,6173,1,0,0,0,6178, + 6179,1,0,0,0,6179,6180,1,0,0,0,6180,6181,5,100,0,0,6181,6182,3,804, + 402,0,6182,579,1,0,0,0,6183,6189,5,71,0,0,6184,6186,5,346,0,0,6185, + 6184,1,0,0,0,6185,6186,1,0,0,0,6186,6187,1,0,0,0,6187,6190,3,582, + 291,0,6188,6190,3,732,366,0,6189,6185,1,0,0,0,6189,6188,1,0,0,0, + 6190,581,1,0,0,0,6191,6193,7,20,0,0,6192,6191,1,0,0,0,6192,6193, + 1,0,0,0,6193,6194,1,0,0,0,6194,6196,7,21,0,0,6195,6197,5,92,0,0, + 6196,6195,1,0,0,0,6196,6197,1,0,0,0,6197,6198,1,0,0,0,6198,6207, + 3,776,388,0,6199,6201,5,367,0,0,6200,6199,1,0,0,0,6200,6201,1,0, + 0,0,6201,6203,1,0,0,0,6202,6204,5,92,0,0,6203,6202,1,0,0,0,6203, + 6204,1,0,0,0,6204,6205,1,0,0,0,6205,6207,3,776,388,0,6206,6192,1, + 0,0,0,6206,6200,1,0,0,0,6207,583,1,0,0,0,6208,6211,5,56,0,0,6209, + 6210,5,80,0,0,6210,6212,3,534,267,0,6211,6209,1,0,0,0,6211,6212, + 1,0,0,0,6212,585,1,0,0,0,6213,6214,5,83,0,0,6214,6215,5,147,0,0, + 6215,6220,3,588,294,0,6216,6217,5,6,0,0,6217,6219,3,588,294,0,6218, + 6216,1,0,0,0,6219,6222,1,0,0,0,6220,6218,1,0,0,0,6220,6221,1,0,0, + 0,6221,587,1,0,0,0,6222,6220,1,0,0,0,6223,6227,3,736,368,0,6224, + 6225,5,100,0,0,6225,6228,3,728,364,0,6226,6228,7,55,0,0,6227,6224, + 1,0,0,0,6227,6226,1,0,0,0,6227,6228,1,0,0,0,6228,6231,1,0,0,0,6229, + 6230,5,273,0,0,6230,6232,7,56,0,0,6231,6229,1,0,0,0,6231,6232,1, + 0,0,0,6232,589,1,0,0,0,6233,6235,3,596,298,0,6234,6236,3,594,297, + 0,6235,6234,1,0,0,0,6235,6236,1,0,0,0,6236,6245,1,0,0,0,6237,6240, + 3,592,296,0,6238,6240,3,594,297,0,6239,6237,1,0,0,0,6239,6238,1, + 0,0,0,6240,6242,1,0,0,0,6241,6243,3,596,298,0,6242,6241,1,0,0,0, + 6242,6243,1,0,0,0,6243,6245,1,0,0,0,6244,6233,1,0,0,0,6244,6239, + 1,0,0,0,6245,591,1,0,0,0,6246,6249,5,74,0,0,6247,6250,3,676,338, + 0,6248,6250,5,30,0,0,6249,6247,1,0,0,0,6249,6248,1,0,0,0,6250,6253, + 1,0,0,0,6251,6252,5,6,0,0,6252,6254,3,676,338,0,6253,6251,1,0,0, + 0,6253,6254,1,0,0,0,6254,593,1,0,0,0,6255,6256,5,61,0,0,6256,6258, + 7,82,0,0,6257,6259,3,598,299,0,6258,6257,1,0,0,0,6258,6259,1,0,0, + 0,6259,6260,1,0,0,0,6260,6264,7,83,0,0,6261,6265,5,81,0,0,6262,6263, + 5,105,0,0,6263,6265,5,467,0,0,6264,6261,1,0,0,0,6264,6262,1,0,0, + 0,6265,595,1,0,0,0,6266,6271,5,79,0,0,6267,6268,3,598,299,0,6268, + 6269,7,83,0,0,6269,6272,1,0,0,0,6270,6272,3,676,338,0,6271,6267, + 1,0,0,0,6271,6270,1,0,0,0,6272,597,1,0,0,0,6273,6274,7,29,0,0,6274, + 6277,7,84,0,0,6275,6277,3,684,342,0,6276,6273,1,0,0,0,6276,6275, + 1,0,0,0,6277,599,1,0,0,0,6278,6279,5,66,0,0,6279,6281,5,147,0,0, + 6280,6282,7,80,0,0,6281,6280,1,0,0,0,6281,6282,1,0,0,0,6282,6283, + 1,0,0,0,6283,6284,3,602,301,0,6284,601,1,0,0,0,6285,6290,3,604,302, + 0,6286,6287,5,6,0,0,6287,6289,3,604,302,0,6288,6286,1,0,0,0,6289, + 6292,1,0,0,0,6290,6288,1,0,0,0,6290,6291,1,0,0,0,6291,603,1,0,0, + 0,6292,6290,1,0,0,0,6293,6317,3,736,368,0,6294,6295,5,2,0,0,6295, + 6317,5,3,0,0,6296,6298,7,85,0,0,6297,6296,1,0,0,0,6297,6298,1,0, + 0,0,6298,6299,1,0,0,0,6299,6300,5,2,0,0,6300,6305,3,736,368,0,6301, + 6302,5,6,0,0,6302,6304,3,736,368,0,6303,6301,1,0,0,0,6304,6307,1, + 0,0,0,6305,6303,1,0,0,0,6305,6306,1,0,0,0,6306,6308,1,0,0,0,6307, + 6305,1,0,0,0,6308,6309,5,3,0,0,6309,6317,1,0,0,0,6310,6311,5,470, + 0,0,6311,6312,5,471,0,0,6312,6313,5,2,0,0,6313,6314,3,602,301,0, + 6314,6315,5,3,0,0,6315,6317,1,0,0,0,6316,6293,1,0,0,0,6316,6294, + 1,0,0,0,6316,6297,1,0,0,0,6316,6310,1,0,0,0,6317,605,1,0,0,0,6318, + 6328,5,62,0,0,6319,6320,5,269,0,0,6320,6322,5,245,0,0,6321,6319, + 1,0,0,0,6321,6322,1,0,0,0,6322,6323,1,0,0,0,6323,6329,5,369,0,0, + 6324,6326,5,245,0,0,6325,6324,1,0,0,0,6325,6326,1,0,0,0,6326,6327, + 1,0,0,0,6327,6329,5,334,0,0,6328,6321,1,0,0,0,6328,6325,1,0,0,0, + 6329,6332,1,0,0,0,6330,6331,5,275,0,0,6331,6333,3,764,382,0,6332, + 6330,1,0,0,0,6332,6333,1,0,0,0,6333,6337,1,0,0,0,6334,6338,5,272, + 0,0,6335,6336,5,465,0,0,6336,6338,5,466,0,0,6337,6334,1,0,0,0,6337, + 6335,1,0,0,0,6337,6338,1,0,0,0,6338,6340,1,0,0,0,6339,6318,1,0,0, + 0,6340,6341,1,0,0,0,6341,6339,1,0,0,0,6341,6342,1,0,0,0,6342,6347, + 1,0,0,0,6343,6344,5,62,0,0,6344,6345,5,300,0,0,6345,6347,5,81,0, + 0,6346,6339,1,0,0,0,6346,6343,1,0,0,0,6347,607,1,0,0,0,6348,6349, + 5,422,0,0,6349,6354,3,534,267,0,6350,6351,5,6,0,0,6351,6353,3,534, + 267,0,6352,6350,1,0,0,0,6353,6356,1,0,0,0,6354,6352,1,0,0,0,6354, + 6355,1,0,0,0,6355,609,1,0,0,0,6356,6354,1,0,0,0,6357,6358,5,64,0, + 0,6358,6359,3,612,306,0,6359,611,1,0,0,0,6360,6365,3,614,307,0,6361, + 6362,5,6,0,0,6362,6364,3,614,307,0,6363,6361,1,0,0,0,6364,6367,1, + 0,0,0,6365,6363,1,0,0,0,6365,6366,1,0,0,0,6366,613,1,0,0,0,6367, + 6365,1,0,0,0,6368,6383,3,626,313,0,6369,6371,5,81,0,0,6370,6369, + 1,0,0,0,6370,6371,1,0,0,0,6371,6372,1,0,0,0,6372,6374,3,782,391, + 0,6373,6375,5,9,0,0,6374,6373,1,0,0,0,6374,6375,1,0,0,0,6375,6377, + 1,0,0,0,6376,6378,3,148,74,0,6377,6376,1,0,0,0,6377,6378,1,0,0,0, + 6378,6380,1,0,0,0,6379,6381,3,640,320,0,6380,6379,1,0,0,0,6380,6381, + 1,0,0,0,6381,6383,1,0,0,0,6382,6368,1,0,0,0,6382,6370,1,0,0,0,6383, + 6385,1,0,0,0,6384,6386,3,618,309,0,6385,6384,1,0,0,0,6385,6386,1, + 0,0,0,6386,6388,1,0,0,0,6387,6389,3,634,317,0,6388,6387,1,0,0,0, + 6388,6389,1,0,0,0,6389,6419,1,0,0,0,6390,6392,5,72,0,0,6391,6390, + 1,0,0,0,6391,6392,1,0,0,0,6392,6393,1,0,0,0,6393,6419,3,616,308, + 0,6394,6395,5,2,0,0,6395,6412,3,614,307,0,6396,6397,5,110,0,0,6397, + 6398,5,118,0,0,6398,6413,3,614,307,0,6399,6401,5,121,0,0,6400,6402, + 3,622,311,0,6401,6400,1,0,0,0,6401,6402,1,0,0,0,6402,6403,1,0,0, + 0,6403,6404,5,118,0,0,6404,6413,3,614,307,0,6405,6407,3,622,311, + 0,6406,6405,1,0,0,0,6406,6407,1,0,0,0,6407,6408,1,0,0,0,6408,6409, + 5,118,0,0,6409,6410,3,614,307,0,6410,6411,3,624,312,0,6411,6413, + 1,0,0,0,6412,6396,1,0,0,0,6412,6399,1,0,0,0,6412,6406,1,0,0,0,6412, + 6413,1,0,0,0,6413,6414,1,0,0,0,6414,6416,5,3,0,0,6415,6417,3,618, + 309,0,6416,6415,1,0,0,0,6416,6417,1,0,0,0,6417,6419,1,0,0,0,6418, + 6382,1,0,0,0,6418,6391,1,0,0,0,6418,6394,1,0,0,0,6419,6438,1,0,0, + 0,6420,6421,5,110,0,0,6421,6422,5,118,0,0,6422,6437,3,614,307,0, + 6423,6425,5,121,0,0,6424,6426,3,622,311,0,6425,6424,1,0,0,0,6425, + 6426,1,0,0,0,6426,6427,1,0,0,0,6427,6428,5,118,0,0,6428,6437,3,614, + 307,0,6429,6431,3,622,311,0,6430,6429,1,0,0,0,6430,6431,1,0,0,0, + 6431,6432,1,0,0,0,6432,6433,5,118,0,0,6433,6434,3,614,307,0,6434, + 6435,3,624,312,0,6435,6437,1,0,0,0,6436,6420,1,0,0,0,6436,6423,1, + 0,0,0,6436,6430,1,0,0,0,6437,6440,1,0,0,0,6438,6436,1,0,0,0,6438, + 6439,1,0,0,0,6439,615,1,0,0,0,6440,6438,1,0,0,0,6441,6443,3,648, + 324,0,6442,6444,3,618,309,0,6443,6442,1,0,0,0,6443,6444,1,0,0,0, + 6444,6454,1,0,0,0,6445,6447,3,636,318,0,6446,6448,3,620,310,0,6447, + 6446,1,0,0,0,6447,6448,1,0,0,0,6448,6454,1,0,0,0,6449,6451,3,562, + 281,0,6450,6452,3,618,309,0,6451,6450,1,0,0,0,6451,6452,1,0,0,0, + 6452,6454,1,0,0,0,6453,6441,1,0,0,0,6453,6445,1,0,0,0,6453,6449, + 1,0,0,0,6454,617,1,0,0,0,6455,6457,5,36,0,0,6456,6455,1,0,0,0,6456, + 6457,1,0,0,0,6457,6458,1,0,0,0,6458,6463,3,822,411,0,6459,6460,5, + 2,0,0,6460,6461,3,788,394,0,6461,6462,5,3,0,0,6462,6464,1,0,0,0, + 6463,6459,1,0,0,0,6463,6464,1,0,0,0,6464,619,1,0,0,0,6465,6478,3, + 618,309,0,6466,6468,5,36,0,0,6467,6469,3,822,411,0,6468,6467,1,0, + 0,0,6468,6469,1,0,0,0,6469,6472,1,0,0,0,6470,6472,3,822,411,0,6471, + 6466,1,0,0,0,6471,6470,1,0,0,0,6472,6473,1,0,0,0,6473,6474,5,2,0, + 0,6474,6475,3,644,322,0,6475,6476,5,3,0,0,6476,6478,1,0,0,0,6477, + 6465,1,0,0,0,6477,6471,1,0,0,0,6478,621,1,0,0,0,6479,6481,7,86,0, + 0,6480,6482,5,123,0,0,6481,6480,1,0,0,0,6481,6482,1,0,0,0,6482,623, + 1,0,0,0,6483,6484,5,100,0,0,6484,6488,3,144,72,0,6485,6486,5,80, + 0,0,6486,6488,3,676,338,0,6487,6483,1,0,0,0,6487,6485,1,0,0,0,6488, + 625,1,0,0,0,6489,6505,3,322,161,0,6490,6496,5,81,0,0,6491,6497,3, + 778,389,0,6492,6493,5,2,0,0,6493,6494,3,778,389,0,6494,6495,5,3, + 0,0,6495,6497,1,0,0,0,6496,6491,1,0,0,0,6496,6492,1,0,0,0,6497,6505, + 1,0,0,0,6498,6499,5,68,0,0,6499,6502,5,323,0,0,6500,6503,3,794,397, + 0,6501,6503,5,111,0,0,6502,6500,1,0,0,0,6502,6501,1,0,0,0,6503,6505, + 1,0,0,0,6504,6489,1,0,0,0,6504,6490,1,0,0,0,6504,6498,1,0,0,0,6505, + 627,1,0,0,0,6506,6507,5,92,0,0,6507,6509,3,322,161,0,6508,6510,3, + 144,72,0,6509,6508,1,0,0,0,6509,6510,1,0,0,0,6510,6512,1,0,0,0,6511, + 6513,3,640,320,0,6512,6511,1,0,0,0,6512,6513,1,0,0,0,6513,6531,1, + 0,0,0,6514,6515,5,92,0,0,6515,6521,5,81,0,0,6516,6522,3,778,389, + 0,6517,6518,5,2,0,0,6518,6519,3,778,389,0,6519,6520,5,3,0,0,6520, + 6522,1,0,0,0,6521,6516,1,0,0,0,6521,6517,1,0,0,0,6522,6531,1,0,0, + 0,6523,6524,5,350,0,0,6524,6525,5,68,0,0,6525,6528,5,323,0,0,6526, + 6529,3,794,397,0,6527,6529,5,111,0,0,6528,6526,1,0,0,0,6528,6527, + 1,0,0,0,6529,6531,1,0,0,0,6530,6506,1,0,0,0,6530,6514,1,0,0,0,6530, + 6523,1,0,0,0,6531,629,1,0,0,0,6532,6537,3,626,313,0,6533,6534,5, + 6,0,0,6534,6536,3,626,313,0,6535,6533,1,0,0,0,6536,6539,1,0,0,0, + 6537,6535,1,0,0,0,6537,6538,1,0,0,0,6538,631,1,0,0,0,6539,6537,1, + 0,0,0,6540,6545,3,626,313,0,6541,6543,5,36,0,0,6542,6541,1,0,0,0, + 6542,6543,1,0,0,0,6543,6544,1,0,0,0,6544,6546,3,822,411,0,6545,6542, + 1,0,0,0,6545,6546,1,0,0,0,6546,633,1,0,0,0,6547,6548,5,472,0,0,6548, + 6549,3,810,405,0,6549,6555,3,534,267,0,6550,6551,5,310,0,0,6551, + 6552,5,2,0,0,6552,6553,3,676,338,0,6553,6554,5,3,0,0,6554,6556,1, + 0,0,0,6555,6550,1,0,0,0,6555,6556,1,0,0,0,6556,635,1,0,0,0,6557, + 6572,3,690,345,0,6558,6559,5,320,0,0,6559,6560,5,64,0,0,6560,6561, + 5,2,0,0,6561,6566,3,638,319,0,6562,6563,5,6,0,0,6563,6565,3,638, + 319,0,6564,6562,1,0,0,0,6565,6568,1,0,0,0,6566,6564,1,0,0,0,6566, + 6567,1,0,0,0,6567,6569,1,0,0,0,6568,6566,1,0,0,0,6569,6570,5,3,0, + 0,6570,6572,1,0,0,0,6571,6557,1,0,0,0,6571,6558,1,0,0,0,6572,6575, + 1,0,0,0,6573,6574,5,105,0,0,6574,6576,5,473,0,0,6575,6573,1,0,0, + 0,6575,6576,1,0,0,0,6576,637,1,0,0,0,6577,6583,3,690,345,0,6578, + 6579,5,36,0,0,6579,6580,5,2,0,0,6580,6581,3,644,322,0,6581,6582, + 5,3,0,0,6582,6584,1,0,0,0,6583,6578,1,0,0,0,6583,6584,1,0,0,0,6584, + 639,1,0,0,0,6585,6586,5,103,0,0,6586,6587,3,736,368,0,6587,641,1, + 0,0,0,6588,6593,5,103,0,0,6589,6590,5,434,0,0,6590,6591,5,275,0, + 0,6591,6594,3,822,411,0,6592,6594,3,676,338,0,6593,6589,1,0,0,0, + 6593,6592,1,0,0,0,6594,643,1,0,0,0,6595,6600,3,646,323,0,6596,6597, + 5,6,0,0,6597,6599,3,646,323,0,6598,6596,1,0,0,0,6599,6602,1,0,0, + 0,6600,6598,1,0,0,0,6600,6601,1,0,0,0,6601,645,1,0,0,0,6602,6600, + 1,0,0,0,6603,6604,3,822,411,0,6604,6606,3,654,327,0,6605,6607,3, + 98,49,0,6606,6605,1,0,0,0,6606,6607,1,0,0,0,6607,647,1,0,0,0,6608, + 6609,5,474,0,0,6609,6623,5,2,0,0,6610,6611,5,476,0,0,6611,6612,5, + 2,0,0,6612,6617,3,652,326,0,6613,6614,5,6,0,0,6614,6616,3,652,326, + 0,6615,6613,1,0,0,0,6616,6619,1,0,0,0,6617,6615,1,0,0,0,6617,6618, + 1,0,0,0,6618,6620,1,0,0,0,6619,6617,1,0,0,0,6620,6621,5,3,0,0,6621, + 6622,5,6,0,0,6622,6624,1,0,0,0,6623,6610,1,0,0,0,6623,6624,1,0,0, + 0,6624,6625,1,0,0,0,6625,6626,3,684,342,0,6626,6627,3,700,350,0, + 6627,6628,5,475,0,0,6628,6633,3,650,325,0,6629,6630,5,6,0,0,6630, + 6632,3,650,325,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,6636,1,0,0,0,6635,6633,1,0,0,0,6636, + 6637,5,3,0,0,6637,649,1,0,0,0,6638,6657,3,822,411,0,6639,6653,3, + 654,327,0,6640,6643,5,53,0,0,6641,6643,3,830,415,0,6642,6640,1,0, + 0,0,6642,6641,1,0,0,0,6643,6644,1,0,0,0,6644,6650,3,676,338,0,6645, + 6647,5,77,0,0,6646,6645,1,0,0,0,6646,6647,1,0,0,0,6647,6648,1,0, + 0,0,6648,6650,5,78,0,0,6649,6642,1,0,0,0,6649,6646,1,0,0,0,6650, + 6651,1,0,0,0,6651,6649,1,0,0,0,6651,6652,1,0,0,0,6652,6654,1,0,0, + 0,6653,6649,1,0,0,0,6653,6654,1,0,0,0,6654,6658,1,0,0,0,6655,6656, + 5,62,0,0,6656,6658,5,473,0,0,6657,6639,1,0,0,0,6657,6655,1,0,0,0, + 6658,651,1,0,0,0,6659,6660,3,684,342,0,6660,6661,5,36,0,0,6661,6662, + 3,828,414,0,6662,6666,1,0,0,0,6663,6664,5,53,0,0,6664,6666,3,684, + 342,0,6665,6659,1,0,0,0,6665,6663,1,0,0,0,6666,653,1,0,0,0,6667, + 6669,5,415,0,0,6668,6667,1,0,0,0,6668,6669,1,0,0,0,6669,6670,1,0, + 0,0,6670,6687,3,656,328,0,6671,6673,5,4,0,0,6672,6674,5,571,0,0, + 6673,6672,1,0,0,0,6673,6674,1,0,0,0,6674,6675,1,0,0,0,6675,6677, + 5,5,0,0,6676,6671,1,0,0,0,6677,6680,1,0,0,0,6678,6676,1,0,0,0,6678, + 6679,1,0,0,0,6679,6688,1,0,0,0,6680,6678,1,0,0,0,6681,6685,5,35, + 0,0,6682,6683,5,4,0,0,6683,6684,5,571,0,0,6684,6686,5,5,0,0,6685, + 6682,1,0,0,0,6685,6686,1,0,0,0,6686,6688,1,0,0,0,6687,6678,1,0,0, + 0,6687,6681,1,0,0,0,6688,6694,1,0,0,0,6689,6690,3,784,392,0,6690, + 6691,5,27,0,0,6691,6692,7,87,0,0,6692,6694,1,0,0,0,6693,6668,1,0, + 0,0,6693,6689,1,0,0,0,6694,655,1,0,0,0,6695,6697,3,824,412,0,6696, + 6698,3,318,159,0,6697,6696,1,0,0,0,6697,6698,1,0,0,0,6698,6700,1, + 0,0,0,6699,6701,3,534,267,0,6700,6699,1,0,0,0,6700,6701,1,0,0,0, + 6701,6711,1,0,0,0,6702,6711,3,658,329,0,6703,6708,5,403,0,0,6704, + 6706,3,670,335,0,6705,6704,1,0,0,0,6705,6706,1,0,0,0,6706,6709,1, + 0,0,0,6707,6709,3,662,331,0,6708,6705,1,0,0,0,6708,6707,1,0,0,0, + 6709,6711,1,0,0,0,6710,6695,1,0,0,0,6710,6702,1,0,0,0,6710,6703, + 1,0,0,0,6711,657,1,0,0,0,6712,6717,3,660,330,0,6713,6717,3,664,332, + 0,6714,6717,3,666,333,0,6715,6717,3,668,334,0,6716,6712,1,0,0,0, + 6716,6713,1,0,0,0,6716,6714,1,0,0,0,6716,6715,1,0,0,0,6717,659,1, + 0,0,0,6718,6735,5,401,0,0,6719,6735,5,402,0,0,6720,6735,5,416,0, + 0,6721,6735,5,388,0,0,6722,6735,5,413,0,0,6723,6725,5,398,0,0,6724, + 6726,3,662,331,0,6725,6724,1,0,0,0,6725,6726,1,0,0,0,6726,6735,1, + 0,0,0,6727,6728,5,190,0,0,6728,6735,5,412,0,0,6729,6731,7,88,0,0, + 6730,6732,3,534,267,0,6731,6730,1,0,0,0,6731,6732,1,0,0,0,6732,6735, + 1,0,0,0,6733,6735,5,390,0,0,6734,6718,1,0,0,0,6734,6719,1,0,0,0, + 6734,6720,1,0,0,0,6734,6721,1,0,0,0,6734,6722,1,0,0,0,6734,6723, + 1,0,0,0,6734,6727,1,0,0,0,6734,6729,1,0,0,0,6734,6733,1,0,0,0,6735, + 661,1,0,0,0,6736,6737,5,2,0,0,6737,6738,5,571,0,0,6738,6739,5,3, + 0,0,6739,663,1,0,0,0,6740,6742,5,389,0,0,6741,6743,5,374,0,0,6742, + 6741,1,0,0,0,6742,6743,1,0,0,0,6743,6745,1,0,0,0,6744,6746,3,534, + 267,0,6745,6744,1,0,0,0,6745,6746,1,0,0,0,6746,665,1,0,0,0,6747, + 6749,7,89,0,0,6748,6750,5,374,0,0,6749,6748,1,0,0,0,6749,6750,1, + 0,0,0,6750,6758,1,0,0,0,6751,6758,5,423,0,0,6752,6753,5,405,0,0, + 6753,6755,7,90,0,0,6754,6756,5,374,0,0,6755,6754,1,0,0,0,6755,6756, + 1,0,0,0,6756,6758,1,0,0,0,6757,6747,1,0,0,0,6757,6751,1,0,0,0,6757, + 6752,1,0,0,0,6758,6760,1,0,0,0,6759,6761,3,662,331,0,6760,6759,1, + 0,0,0,6760,6761,1,0,0,0,6761,667,1,0,0,0,6762,6764,7,91,0,0,6763, + 6765,3,662,331,0,6764,6763,1,0,0,0,6764,6765,1,0,0,0,6765,6769,1, + 0,0,0,6766,6767,7,26,0,0,6767,6768,5,418,0,0,6768,6770,5,386,0,0, + 6769,6766,1,0,0,0,6769,6770,1,0,0,0,6770,669,1,0,0,0,6771,6801,5, + 264,0,0,6772,6801,3,672,336,0,6773,6776,5,384,0,0,6774,6775,5,94, + 0,0,6775,6777,5,264,0,0,6776,6774,1,0,0,0,6776,6777,1,0,0,0,6777, + 6801,1,0,0,0,6778,6785,5,176,0,0,6779,6783,5,94,0,0,6780,6784,5, + 218,0,0,6781,6784,5,261,0,0,6782,6784,3,672,336,0,6783,6780,1,0, + 0,0,6783,6781,1,0,0,0,6783,6782,1,0,0,0,6784,6786,1,0,0,0,6785,6779, + 1,0,0,0,6785,6786,1,0,0,0,6786,6801,1,0,0,0,6787,6793,5,218,0,0, + 6788,6791,5,94,0,0,6789,6792,5,261,0,0,6790,6792,3,672,336,0,6791, + 6789,1,0,0,0,6791,6790,1,0,0,0,6792,6794,1,0,0,0,6793,6788,1,0,0, + 0,6793,6794,1,0,0,0,6794,6801,1,0,0,0,6795,6798,5,261,0,0,6796,6797, + 5,94,0,0,6797,6799,3,672,336,0,6798,6796,1,0,0,0,6798,6799,1,0,0, + 0,6799,6801,1,0,0,0,6800,6771,1,0,0,0,6800,6772,1,0,0,0,6800,6773, + 1,0,0,0,6800,6778,1,0,0,0,6800,6787,1,0,0,0,6800,6795,1,0,0,0,6801, + 671,1,0,0,0,6802,6804,5,326,0,0,6803,6805,3,662,331,0,6804,6803, + 1,0,0,0,6804,6805,1,0,0,0,6805,673,1,0,0,0,6806,6807,7,92,0,0,6807, + 675,1,0,0,0,6808,6809,3,678,339,0,6809,677,1,0,0,0,6810,6811,6,339, + -1,0,6811,6813,3,682,341,0,6812,6814,3,680,340,0,6813,6812,1,0,0, + 0,6813,6814,1,0,0,0,6814,6818,1,0,0,0,6815,6816,5,77,0,0,6816,6818, + 3,678,339,3,6817,6810,1,0,0,0,6817,6815,1,0,0,0,6818,6827,1,0,0, + 0,6819,6820,10,2,0,0,6820,6821,5,33,0,0,6821,6826,3,678,339,3,6822, + 6823,10,1,0,0,6823,6824,5,82,0,0,6824,6826,3,678,339,2,6825,6819, + 1,0,0,0,6825,6822,1,0,0,0,6826,6829,1,0,0,0,6827,6825,1,0,0,0,6827, + 6828,1,0,0,0,6828,679,1,0,0,0,6829,6827,1,0,0,0,6830,6831,3,674, + 337,0,6831,6832,3,682,341,0,6832,6902,1,0,0,0,6833,6834,3,674,337, + 0,6834,6835,3,730,365,0,6835,6841,3,720,360,0,6836,6842,3,562,281, + 0,6837,6838,5,2,0,0,6838,6839,3,676,338,0,6839,6840,5,3,0,0,6840, + 6842,1,0,0,0,6841,6836,1,0,0,0,6841,6837,1,0,0,0,6842,6902,1,0,0, + 0,6843,6845,5,77,0,0,6844,6843,1,0,0,0,6844,6845,1,0,0,0,6845,6846, + 1,0,0,0,6846,6847,5,387,0,0,6847,6848,3,682,341,0,6848,6849,5,33, + 0,0,6849,6850,3,682,341,0,6850,6902,1,0,0,0,6851,6853,5,77,0,0,6852, + 6851,1,0,0,0,6852,6853,1,0,0,0,6853,6854,1,0,0,0,6854,6855,5,68, + 0,0,6855,6856,5,2,0,0,6856,6861,3,676,338,0,6857,6858,5,6,0,0,6858, + 6860,3,676,338,0,6859,6857,1,0,0,0,6860,6863,1,0,0,0,6861,6859,1, + 0,0,0,6861,6862,1,0,0,0,6862,6864,1,0,0,0,6863,6861,1,0,0,0,6864, + 6865,5,3,0,0,6865,6902,1,0,0,0,6866,6868,5,77,0,0,6867,6866,1,0, + 0,0,6867,6868,1,0,0,0,6868,6869,1,0,0,0,6869,6870,5,68,0,0,6870, + 6902,3,562,281,0,6871,6873,5,77,0,0,6872,6871,1,0,0,0,6872,6873, + 1,0,0,0,6873,6882,1,0,0,0,6874,6883,5,120,0,0,6875,6883,5,114,0, + 0,6876,6877,5,127,0,0,6877,6883,5,94,0,0,6878,6880,5,387,0,0,6879, + 6881,5,91,0,0,6880,6879,1,0,0,0,6880,6881,1,0,0,0,6881,6883,1,0, + 0,0,6882,6874,1,0,0,0,6882,6875,1,0,0,0,6882,6876,1,0,0,0,6882,6878, + 1,0,0,0,6883,6884,1,0,0,0,6884,6887,3,682,341,0,6885,6886,5,197, + 0,0,6886,6888,3,682,341,0,6887,6885,1,0,0,0,6887,6888,1,0,0,0,6888, + 6902,1,0,0,0,6889,6891,5,116,0,0,6890,6892,5,77,0,0,6891,6890,1, + 0,0,0,6891,6892,1,0,0,0,6892,6893,1,0,0,0,6893,6902,5,78,0,0,6894, + 6896,5,116,0,0,6895,6897,5,77,0,0,6896,6895,1,0,0,0,6896,6897,1, + 0,0,0,6897,6898,1,0,0,0,6898,6899,5,56,0,0,6899,6900,5,64,0,0,6900, + 6902,3,682,341,0,6901,6830,1,0,0,0,6901,6833,1,0,0,0,6901,6844,1, + 0,0,0,6901,6852,1,0,0,0,6901,6867,1,0,0,0,6901,6872,1,0,0,0,6901, + 6889,1,0,0,0,6901,6894,1,0,0,0,6902,681,1,0,0,0,6903,6904,6,341, + -1,0,6904,6908,3,684,342,0,6905,6906,7,29,0,0,6906,6908,3,682,341, + 4,6907,6903,1,0,0,0,6907,6905,1,0,0,0,6908,6925,1,0,0,0,6909,6910, + 10,3,0,0,6910,6911,7,93,0,0,6911,6924,3,682,341,4,6912,6913,10,2, + 0,0,6913,6914,7,29,0,0,6914,6924,3,682,341,3,6915,6916,10,1,0,0, + 6916,6917,5,15,0,0,6917,6924,3,682,341,2,6918,6919,10,5,0,0,6919, + 6920,5,142,0,0,6920,6921,5,418,0,0,6921,6922,5,386,0,0,6922,6924, + 3,676,338,0,6923,6909,1,0,0,0,6923,6912,1,0,0,0,6923,6915,1,0,0, + 0,6923,6918,1,0,0,0,6924,6927,1,0,0,0,6925,6923,1,0,0,0,6925,6926, + 1,0,0,0,6926,683,1,0,0,0,6927,6925,1,0,0,0,6928,6929,6,342,-1,0, + 6929,6930,7,94,0,0,6930,7017,3,562,281,0,6931,6934,5,35,0,0,6932, + 6935,3,562,281,0,6933,6935,3,742,371,0,6934,6932,1,0,0,0,6934,6933, + 1,0,0,0,6935,7017,1,0,0,0,6936,6937,5,28,0,0,6937,7017,3,756,378, + 0,6938,6939,5,470,0,0,6939,7017,3,534,267,0,6940,7017,5,571,0,0, + 6941,7017,5,573,0,0,6942,7017,5,563,0,0,6943,7017,5,567,0,0,6944, + 6954,3,810,405,0,6945,6955,3,812,406,0,6946,6947,5,2,0,0,6947,6949, + 3,738,369,0,6948,6950,3,586,293,0,6949,6948,1,0,0,0,6949,6950,1, + 0,0,0,6950,6951,1,0,0,0,6951,6952,5,3,0,0,6952,6953,3,812,406,0, + 6953,6955,1,0,0,0,6954,6945,1,0,0,0,6954,6946,1,0,0,0,6955,7017, + 1,0,0,0,6956,6958,3,658,329,0,6957,6956,1,0,0,0,6957,6958,1,0,0, + 0,6958,6959,1,0,0,0,6959,7017,3,812,406,0,6960,6968,5,403,0,0,6961, + 6963,3,812,406,0,6962,6964,3,670,335,0,6963,6962,1,0,0,0,6963,6964, + 1,0,0,0,6964,6969,1,0,0,0,6965,6966,3,662,331,0,6966,6967,3,812, + 406,0,6967,6969,1,0,0,0,6968,6961,1,0,0,0,6968,6965,1,0,0,0,6969, + 7017,1,0,0,0,6970,7017,5,96,0,0,6971,7017,5,60,0,0,6972,7017,5,78, + 0,0,6973,7017,5,574,0,0,6974,6975,5,2,0,0,6975,6976,3,676,338,0, + 6976,6977,5,3,0,0,6977,6978,3,756,378,0,6978,7017,1,0,0,0,6979,6981, + 5,40,0,0,6980,6982,3,676,338,0,6981,6980,1,0,0,0,6981,6982,1,0,0, + 0,6982,6984,1,0,0,0,6983,6985,3,750,375,0,6984,6983,1,0,0,0,6985, + 6986,1,0,0,0,6986,6984,1,0,0,0,6986,6987,1,0,0,0,6987,6990,1,0,0, + 0,6988,6989,5,58,0,0,6989,6991,3,676,338,0,6990,6988,1,0,0,0,6990, + 6991,1,0,0,0,6991,6992,1,0,0,0,6992,6993,5,454,0,0,6993,7017,1,0, + 0,0,6994,7017,3,688,344,0,6995,6997,3,562,281,0,6996,6998,3,754, + 377,0,6997,6996,1,0,0,0,6997,6998,1,0,0,0,6998,7017,1,0,0,0,6999, + 7017,3,718,359,0,7000,7001,5,2,0,0,7001,7002,3,676,338,0,7002,7003, + 5,6,0,0,7003,7004,3,732,366,0,7004,7005,5,3,0,0,7005,7017,1,0,0, + 0,7006,7007,3,716,358,0,7007,7008,5,125,0,0,7008,7009,3,716,358, + 0,7009,7017,1,0,0,0,7010,7017,3,784,392,0,7011,7012,7,29,0,0,7012, + 7017,3,684,342,5,7013,7014,3,726,363,0,7014,7015,3,684,342,2,7015, + 7017,1,0,0,0,7016,6928,1,0,0,0,7016,6931,1,0,0,0,7016,6936,1,0,0, + 0,7016,6938,1,0,0,0,7016,6940,1,0,0,0,7016,6941,1,0,0,0,7016,6942, + 1,0,0,0,7016,6943,1,0,0,0,7016,6944,1,0,0,0,7016,6957,1,0,0,0,7016, + 6960,1,0,0,0,7016,6970,1,0,0,0,7016,6971,1,0,0,0,7016,6972,1,0,0, + 0,7016,6973,1,0,0,0,7016,6974,1,0,0,0,7016,6979,1,0,0,0,7016,6994, + 1,0,0,0,7016,6995,1,0,0,0,7016,6999,1,0,0,0,7016,7000,1,0,0,0,7016, + 7006,1,0,0,0,7016,7010,1,0,0,0,7016,7011,1,0,0,0,7016,7013,1,0,0, + 0,7017,7045,1,0,0,0,7018,7019,10,3,0,0,7019,7020,3,724,362,0,7020, + 7021,3,684,342,4,7021,7044,1,0,0,0,7022,7023,10,6,0,0,7023,7024, + 5,26,0,0,7024,7044,3,654,327,0,7025,7026,10,4,0,0,7026,7028,3,726, + 363,0,7027,7029,3,684,342,0,7028,7027,1,0,0,0,7028,7029,1,0,0,0, + 7029,7044,1,0,0,0,7030,7031,10,1,0,0,7031,7033,5,116,0,0,7032,7034, + 5,77,0,0,7033,7032,1,0,0,0,7033,7034,1,0,0,0,7034,7041,1,0,0,0,7035, + 7036,5,56,0,0,7036,7037,5,64,0,0,7037,7042,3,684,342,0,7038,7039, + 5,275,0,0,7039,7042,3,528,264,0,7040,7042,5,188,0,0,7041,7035,1, + 0,0,0,7041,7038,1,0,0,0,7041,7040,1,0,0,0,7042,7044,1,0,0,0,7043, + 7018,1,0,0,0,7043,7022,1,0,0,0,7043,7025,1,0,0,0,7043,7030,1,0,0, + 0,7044,7047,1,0,0,0,7045,7043,1,0,0,0,7045,7046,1,0,0,0,7046,685, + 1,0,0,0,7047,7045,1,0,0,0,7048,7049,3,810,405,0,7049,7070,5,2,0, + 0,7050,7054,3,738,369,0,7051,7052,5,6,0,0,7052,7053,5,101,0,0,7053, + 7055,3,740,370,0,7054,7051,1,0,0,0,7054,7055,1,0,0,0,7055,7057,1, + 0,0,0,7056,7058,3,586,293,0,7057,7056,1,0,0,0,7057,7058,1,0,0,0, + 7058,7071,1,0,0,0,7059,7060,5,101,0,0,7060,7062,3,740,370,0,7061, + 7063,3,586,293,0,7062,7061,1,0,0,0,7062,7063,1,0,0,0,7063,7071,1, + 0,0,0,7064,7065,7,80,0,0,7065,7067,3,738,369,0,7066,7068,3,586,293, + 0,7067,7066,1,0,0,0,7067,7068,1,0,0,0,7068,7071,1,0,0,0,7069,7071, + 5,9,0,0,7070,7050,1,0,0,0,7070,7059,1,0,0,0,7070,7064,1,0,0,0,7070, + 7069,1,0,0,0,7070,7071,1,0,0,0,7071,7072,1,0,0,0,7072,7073,5,3,0, + 0,7073,687,1,0,0,0,7074,7081,3,686,343,0,7075,7076,5,479,0,0,7076, + 7077,5,66,0,0,7077,7078,5,2,0,0,7078,7079,3,586,293,0,7079,7080, + 5,3,0,0,7080,7082,1,0,0,0,7081,7075,1,0,0,0,7081,7082,1,0,0,0,7082, + 7089,1,0,0,0,7083,7084,5,480,0,0,7084,7085,5,2,0,0,7085,7086,5,103, + 0,0,7086,7087,3,676,338,0,7087,7088,5,3,0,0,7088,7090,1,0,0,0,7089, + 7083,1,0,0,0,7089,7090,1,0,0,0,7090,7096,1,0,0,0,7091,7094,5,124, + 0,0,7092,7095,3,710,355,0,7093,7095,3,822,411,0,7094,7092,1,0,0, + 0,7094,7093,1,0,0,0,7095,7097,1,0,0,0,7096,7091,1,0,0,0,7096,7097, + 1,0,0,0,7097,7100,1,0,0,0,7098,7100,3,692,346,0,7099,7074,1,0,0, + 0,7099,7098,1,0,0,0,7100,689,1,0,0,0,7101,7104,3,686,343,0,7102, + 7104,3,692,346,0,7103,7101,1,0,0,0,7103,7102,1,0,0,0,7104,691,1, + 0,0,0,7105,7106,5,108,0,0,7106,7107,5,62,0,0,7107,7108,5,2,0,0,7108, + 7109,3,676,338,0,7109,7110,5,3,0,0,7110,7280,1,0,0,0,7111,7280,5, + 48,0,0,7112,7114,7,95,0,0,7113,7115,3,662,331,0,7114,7113,1,0,0, + 0,7114,7115,1,0,0,0,7115,7280,1,0,0,0,7116,7280,5,49,0,0,7117,7280, + 5,52,0,0,7118,7280,5,89,0,0,7119,7280,5,99,0,0,7120,7280,5,47,0, + 0,7121,7280,5,111,0,0,7122,7123,7,96,0,0,7123,7124,5,2,0,0,7124, + 7125,3,676,338,0,7125,7126,5,36,0,0,7126,7127,3,654,327,0,7127,7128, + 5,3,0,0,7128,7280,1,0,0,0,7129,7130,5,397,0,0,7130,7135,5,2,0,0, + 7131,7132,3,744,372,0,7132,7133,5,64,0,0,7133,7134,3,676,338,0,7134, + 7136,1,0,0,0,7135,7131,1,0,0,0,7135,7136,1,0,0,0,7136,7137,1,0,0, + 0,7137,7280,5,3,0,0,7138,7139,5,489,0,0,7139,7140,5,2,0,0,7140,7143, + 3,676,338,0,7141,7142,5,6,0,0,7142,7144,3,746,373,0,7143,7141,1, + 0,0,0,7143,7144,1,0,0,0,7144,7145,1,0,0,0,7145,7146,5,3,0,0,7146, + 7280,1,0,0,0,7147,7148,5,410,0,0,7148,7149,5,2,0,0,7149,7150,3,676, + 338,0,7150,7151,5,84,0,0,7151,7152,3,676,338,0,7152,7153,5,64,0, + 0,7153,7156,3,676,338,0,7154,7155,5,62,0,0,7155,7157,3,676,338,0, + 7156,7154,1,0,0,0,7156,7157,1,0,0,0,7157,7158,1,0,0,0,7158,7159, + 5,3,0,0,7159,7280,1,0,0,0,7160,7161,5,411,0,0,7161,7166,5,2,0,0, + 7162,7163,3,684,342,0,7163,7164,5,68,0,0,7164,7165,3,684,342,0,7165, + 7167,1,0,0,0,7166,7162,1,0,0,0,7166,7167,1,0,0,0,7167,7168,1,0,0, + 0,7168,7280,5,3,0,0,7169,7170,5,417,0,0,7170,7172,5,2,0,0,7171,7173, + 3,748,374,0,7172,7171,1,0,0,0,7172,7173,1,0,0,0,7173,7174,1,0,0, + 0,7174,7280,5,3,0,0,7175,7176,5,421,0,0,7176,7178,5,2,0,0,7177,7179, + 7,97,0,0,7178,7177,1,0,0,0,7178,7179,1,0,0,0,7179,7184,1,0,0,0,7180, + 7182,3,676,338,0,7181,7180,1,0,0,0,7181,7182,1,0,0,0,7182,7183,1, + 0,0,0,7183,7185,5,64,0,0,7184,7181,1,0,0,0,7184,7185,1,0,0,0,7185, + 7186,1,0,0,0,7186,7187,3,732,366,0,7187,7188,1,0,0,0,7188,7189,5, + 3,0,0,7189,7280,1,0,0,0,7190,7191,5,408,0,0,7191,7192,5,2,0,0,7192, + 7193,3,676,338,0,7193,7194,5,6,0,0,7194,7195,3,676,338,0,7195,7196, + 5,3,0,0,7196,7280,1,0,0,0,7197,7198,7,98,0,0,7198,7280,3,534,267, + 0,7199,7200,5,426,0,0,7200,7201,5,2,0,0,7201,7202,5,266,0,0,7202, + 7212,3,828,414,0,7203,7210,5,6,0,0,7204,7205,5,424,0,0,7205,7206, + 5,2,0,0,7206,7207,3,694,347,0,7207,7208,5,3,0,0,7208,7211,1,0,0, + 0,7209,7211,3,732,366,0,7210,7204,1,0,0,0,7210,7209,1,0,0,0,7211, + 7213,1,0,0,0,7212,7203,1,0,0,0,7212,7213,1,0,0,0,7213,7214,1,0,0, + 0,7214,7215,5,3,0,0,7215,7280,1,0,0,0,7216,7217,5,427,0,0,7217,7218, + 5,2,0,0,7218,7219,3,684,342,0,7219,7220,3,700,350,0,7220,7221,5, + 3,0,0,7221,7280,1,0,0,0,7222,7223,5,428,0,0,7223,7224,5,2,0,0,7224, + 7225,3,694,347,0,7225,7226,5,3,0,0,7226,7280,1,0,0,0,7227,7228,5, + 429,0,0,7228,7229,5,2,0,0,7229,7230,3,698,349,0,7230,7233,3,676, + 338,0,7231,7232,7,99,0,0,7232,7234,5,378,0,0,7233,7231,1,0,0,0,7233, + 7234,1,0,0,0,7234,7235,1,0,0,0,7235,7236,5,3,0,0,7236,7280,1,0,0, + 0,7237,7238,5,430,0,0,7238,7239,5,2,0,0,7239,7240,5,266,0,0,7240, + 7243,3,828,414,0,7241,7242,5,6,0,0,7242,7244,3,676,338,0,7243,7241, + 1,0,0,0,7243,7244,1,0,0,0,7244,7245,1,0,0,0,7245,7246,5,3,0,0,7246, + 7280,1,0,0,0,7247,7248,5,431,0,0,7248,7249,5,2,0,0,7249,7250,5,383, + 0,0,7250,7251,3,676,338,0,7251,7252,5,6,0,0,7252,7256,5,375,0,0, + 7253,7254,5,269,0,0,7254,7257,5,450,0,0,7255,7257,3,676,338,0,7256, + 7253,1,0,0,0,7256,7255,1,0,0,0,7257,7267,1,0,0,0,7258,7259,5,6,0, + 0,7259,7265,5,339,0,0,7260,7262,5,269,0,0,7261,7260,1,0,0,0,7261, + 7262,1,0,0,0,7262,7263,1,0,0,0,7263,7266,5,450,0,0,7264,7266,5,385, + 0,0,7265,7261,1,0,0,0,7265,7264,1,0,0,0,7266,7268,1,0,0,0,7267,7258, + 1,0,0,0,7267,7268,1,0,0,0,7268,7269,1,0,0,0,7269,7270,5,3,0,0,7270, + 7280,1,0,0,0,7271,7272,5,432,0,0,7272,7273,5,2,0,0,7273,7274,3,698, + 349,0,7274,7275,3,676,338,0,7275,7276,5,36,0,0,7276,7277,3,656,328, + 0,7277,7278,5,3,0,0,7278,7280,1,0,0,0,7279,7105,1,0,0,0,7279,7111, + 1,0,0,0,7279,7112,1,0,0,0,7279,7116,1,0,0,0,7279,7117,1,0,0,0,7279, + 7118,1,0,0,0,7279,7119,1,0,0,0,7279,7120,1,0,0,0,7279,7121,1,0,0, + 0,7279,7122,1,0,0,0,7279,7129,1,0,0,0,7279,7138,1,0,0,0,7279,7147, + 1,0,0,0,7279,7160,1,0,0,0,7279,7169,1,0,0,0,7279,7175,1,0,0,0,7279, + 7190,1,0,0,0,7279,7197,1,0,0,0,7279,7199,1,0,0,0,7279,7216,1,0,0, + 0,7279,7222,1,0,0,0,7279,7227,1,0,0,0,7279,7237,1,0,0,0,7279,7247, + 1,0,0,0,7279,7271,1,0,0,0,7280,693,1,0,0,0,7281,7286,3,696,348,0, + 7282,7283,5,6,0,0,7283,7285,3,696,348,0,7284,7282,1,0,0,0,7285,7288, + 1,0,0,0,7286,7284,1,0,0,0,7286,7287,1,0,0,0,7287,695,1,0,0,0,7288, + 7286,1,0,0,0,7289,7292,3,676,338,0,7290,7291,5,36,0,0,7291,7293, + 3,828,414,0,7292,7290,1,0,0,0,7292,7293,1,0,0,0,7293,697,1,0,0,0, + 7294,7295,7,100,0,0,7295,699,1,0,0,0,7296,7298,5,286,0,0,7297,7299, + 3,702,351,0,7298,7297,1,0,0,0,7298,7299,1,0,0,0,7299,7300,1,0,0, + 0,7300,7302,3,684,342,0,7301,7303,3,702,351,0,7302,7301,1,0,0,0, + 7302,7303,1,0,0,0,7303,701,1,0,0,0,7304,7305,5,147,0,0,7305,7306, + 7,101,0,0,7306,703,1,0,0,0,7307,7308,5,104,0,0,7308,7313,3,706,353, + 0,7309,7310,5,6,0,0,7310,7312,3,706,353,0,7311,7309,1,0,0,0,7312, + 7315,1,0,0,0,7313,7311,1,0,0,0,7313,7314,1,0,0,0,7314,705,1,0,0, + 0,7315,7313,1,0,0,0,7316,7317,3,822,411,0,7317,7318,5,36,0,0,7318, + 7319,3,710,355,0,7319,707,1,0,0,0,7320,7323,5,124,0,0,7321,7324, + 3,710,355,0,7322,7324,3,822,411,0,7323,7321,1,0,0,0,7323,7322,1, + 0,0,0,7324,709,1,0,0,0,7325,7327,5,2,0,0,7326,7328,3,822,411,0,7327, + 7326,1,0,0,0,7327,7328,1,0,0,0,7328,7332,1,0,0,0,7329,7330,5,285, + 0,0,7330,7331,5,147,0,0,7331,7333,3,732,366,0,7332,7329,1,0,0,0, + 7332,7333,1,0,0,0,7333,7335,1,0,0,0,7334,7336,3,586,293,0,7335,7334, + 1,0,0,0,7335,7336,1,0,0,0,7336,7338,1,0,0,0,7337,7339,3,712,356, + 0,7338,7337,1,0,0,0,7338,7339,1,0,0,0,7339,7340,1,0,0,0,7340,7341, + 5,3,0,0,7341,711,1,0,0,0,7342,7347,7,102,0,0,7343,7344,5,387,0,0, + 7344,7345,3,714,357,0,7345,7346,5,33,0,0,7346,7348,1,0,0,0,7347, + 7343,1,0,0,0,7347,7348,1,0,0,0,7348,7349,1,0,0,0,7349,7350,3,714, + 357,0,7350,7360,1,0,0,0,7351,7358,5,199,0,0,7352,7353,5,434,0,0, + 7353,7359,5,414,0,0,7354,7359,5,66,0,0,7355,7359,5,467,0,0,7356, + 7357,5,269,0,0,7357,7359,5,482,0,0,7358,7352,1,0,0,0,7358,7354,1, + 0,0,0,7358,7355,1,0,0,0,7358,7356,1,0,0,0,7359,7361,1,0,0,0,7360, + 7351,1,0,0,0,7360,7361,1,0,0,0,7361,713,1,0,0,0,7362,7365,5,362, + 0,0,7363,7365,3,676,338,0,7364,7362,1,0,0,0,7364,7363,1,0,0,0,7365, + 7366,1,0,0,0,7366,7370,7,103,0,0,7367,7368,5,434,0,0,7368,7370,5, + 414,0,0,7369,7364,1,0,0,0,7369,7367,1,0,0,0,7370,715,1,0,0,0,7371, + 7379,3,718,359,0,7372,7373,5,2,0,0,7373,7374,3,732,366,0,7374,7375, + 5,6,0,0,7375,7376,3,676,338,0,7376,7377,5,3,0,0,7377,7379,1,0,0, + 0,7378,7371,1,0,0,0,7378,7372,1,0,0,0,7379,717,1,0,0,0,7380,7381, + 5,414,0,0,7381,7383,5,2,0,0,7382,7384,3,732,366,0,7383,7382,1,0, + 0,0,7383,7384,1,0,0,0,7384,7385,1,0,0,0,7385,7386,5,3,0,0,7386,719, + 1,0,0,0,7387,7388,7,104,0,0,7388,721,1,0,0,0,7389,7392,5,29,0,0, + 7390,7392,3,724,362,0,7391,7389,1,0,0,0,7391,7390,1,0,0,0,7392,723, + 1,0,0,0,7393,7394,7,105,0,0,7394,725,1,0,0,0,7395,7402,5,29,0,0, + 7396,7397,5,278,0,0,7397,7398,5,2,0,0,7398,7399,3,414,207,0,7399, + 7400,5,3,0,0,7400,7402,1,0,0,0,7401,7395,1,0,0,0,7401,7396,1,0,0, + 0,7402,727,1,0,0,0,7403,7410,3,722,361,0,7404,7405,5,278,0,0,7405, + 7406,5,2,0,0,7406,7407,3,414,207,0,7407,7408,5,3,0,0,7408,7410,1, + 0,0,0,7409,7403,1,0,0,0,7409,7404,1,0,0,0,7410,729,1,0,0,0,7411, + 7417,3,728,364,0,7412,7414,5,77,0,0,7413,7412,1,0,0,0,7413,7414, + 1,0,0,0,7414,7415,1,0,0,0,7415,7417,7,106,0,0,7416,7411,1,0,0,0, + 7416,7413,1,0,0,0,7417,731,1,0,0,0,7418,7423,3,676,338,0,7419,7420, + 5,6,0,0,7420,7422,3,676,338,0,7421,7419,1,0,0,0,7422,7425,1,0,0, + 0,7423,7421,1,0,0,0,7423,7424,1,0,0,0,7424,733,1,0,0,0,7425,7423, + 1,0,0,0,7426,7427,5,2,0,0,7427,7428,3,676,338,0,7428,7429,5,3,0, + 0,7429,7432,1,0,0,0,7430,7432,3,804,402,0,7431,7426,1,0,0,0,7431, + 7430,1,0,0,0,7432,735,1,0,0,0,7433,7436,3,676,338,0,7434,7436,3, + 804,402,0,7435,7433,1,0,0,0,7435,7434,1,0,0,0,7436,737,1,0,0,0,7437, + 7442,3,740,370,0,7438,7439,5,6,0,0,7439,7441,3,740,370,0,7440,7438, + 1,0,0,0,7441,7444,1,0,0,0,7442,7440,1,0,0,0,7442,7443,1,0,0,0,7443, + 739,1,0,0,0,7444,7442,1,0,0,0,7445,7453,3,804,402,0,7446,7453,3, + 676,338,0,7447,7450,3,824,412,0,7448,7449,7,107,0,0,7449,7451,3, + 676,338,0,7450,7448,1,0,0,0,7450,7451,1,0,0,0,7451,7453,1,0,0,0, + 7452,7445,1,0,0,0,7452,7446,1,0,0,0,7452,7447,1,0,0,0,7453,741,1, + 0,0,0,7454,7464,5,4,0,0,7455,7465,3,732,366,0,7456,7461,3,742,371, + 0,7457,7458,5,6,0,0,7458,7460,3,742,371,0,7459,7457,1,0,0,0,7460, + 7463,1,0,0,0,7461,7459,1,0,0,0,7461,7462,1,0,0,0,7462,7465,1,0,0, + 0,7463,7461,1,0,0,0,7464,7455,1,0,0,0,7464,7456,1,0,0,0,7464,7465, + 1,0,0,0,7465,7466,1,0,0,0,7466,7467,5,5,0,0,7467,743,1,0,0,0,7468, + 7477,3,830,415,0,7469,7477,5,384,0,0,7470,7477,5,264,0,0,7471,7477, + 5,176,0,0,7472,7477,5,218,0,0,7473,7477,5,261,0,0,7474,7477,5,326, + 0,0,7475,7477,3,812,406,0,7476,7468,1,0,0,0,7476,7469,1,0,0,0,7476, + 7470,1,0,0,0,7476,7471,1,0,0,0,7476,7472,1,0,0,0,7476,7473,1,0,0, + 0,7476,7474,1,0,0,0,7476,7475,1,0,0,0,7477,745,1,0,0,0,7478,7479, + 7,108,0,0,7479,747,1,0,0,0,7480,7481,3,676,338,0,7481,7482,5,64, + 0,0,7482,7485,3,676,338,0,7483,7484,5,62,0,0,7484,7486,3,676,338, + 0,7485,7483,1,0,0,0,7485,7486,1,0,0,0,7486,7502,1,0,0,0,7487,7488, + 3,676,338,0,7488,7489,5,62,0,0,7489,7492,3,676,338,0,7490,7491,5, + 64,0,0,7491,7493,3,676,338,0,7492,7490,1,0,0,0,7492,7493,1,0,0,0, + 7493,7502,1,0,0,0,7494,7495,3,676,338,0,7495,7496,5,127,0,0,7496, + 7497,3,676,338,0,7497,7498,5,197,0,0,7498,7499,3,676,338,0,7499, + 7502,1,0,0,0,7500,7502,3,732,366,0,7501,7480,1,0,0,0,7501,7487,1, + 0,0,0,7501,7494,1,0,0,0,7501,7500,1,0,0,0,7502,749,1,0,0,0,7503, + 7504,5,102,0,0,7504,7505,3,676,338,0,7505,7506,5,93,0,0,7506,7507, + 3,676,338,0,7507,751,1,0,0,0,7508,7511,5,11,0,0,7509,7512,3,828, + 414,0,7510,7512,5,9,0,0,7511,7509,1,0,0,0,7511,7510,1,0,0,0,7512, + 7526,1,0,0,0,7513,7522,5,4,0,0,7514,7523,3,676,338,0,7515,7517,3, + 676,338,0,7516,7515,1,0,0,0,7516,7517,1,0,0,0,7517,7518,1,0,0,0, + 7518,7520,5,8,0,0,7519,7521,3,676,338,0,7520,7519,1,0,0,0,7520,7521, + 1,0,0,0,7521,7523,1,0,0,0,7522,7514,1,0,0,0,7522,7516,1,0,0,0,7523, + 7524,1,0,0,0,7524,7526,5,5,0,0,7525,7508,1,0,0,0,7525,7513,1,0,0, + 0,7526,753,1,0,0,0,7527,7529,3,752,376,0,7528,7527,1,0,0,0,7529, + 7530,1,0,0,0,7530,7528,1,0,0,0,7530,7531,1,0,0,0,7531,755,1,0,0, + 0,7532,7534,3,752,376,0,7533,7532,1,0,0,0,7534,7537,1,0,0,0,7535, + 7533,1,0,0,0,7535,7536,1,0,0,0,7536,757,1,0,0,0,7537,7535,1,0,0, + 0,7538,7543,3,760,380,0,7539,7540,5,6,0,0,7540,7542,3,760,380,0, + 7541,7539,1,0,0,0,7542,7545,1,0,0,0,7543,7541,1,0,0,0,7543,7544, + 1,0,0,0,7544,759,1,0,0,0,7545,7543,1,0,0,0,7546,7556,3,762,381,0, + 7547,7553,3,736,368,0,7548,7550,5,36,0,0,7549,7548,1,0,0,0,7549, + 7550,1,0,0,0,7550,7551,1,0,0,0,7551,7554,3,830,415,0,7552,7554,1, + 0,0,0,7553,7549,1,0,0,0,7553,7552,1,0,0,0,7554,7556,1,0,0,0,7555, + 7546,1,0,0,0,7555,7547,1,0,0,0,7556,761,1,0,0,0,7557,7558,3,822, + 411,0,7558,7559,5,11,0,0,7559,7561,1,0,0,0,7560,7557,1,0,0,0,7561, + 7564,1,0,0,0,7562,7560,1,0,0,0,7562,7563,1,0,0,0,7563,7565,1,0,0, + 0,7564,7562,1,0,0,0,7565,7566,5,9,0,0,7566,763,1,0,0,0,7567,7572, + 3,784,392,0,7568,7569,5,6,0,0,7569,7571,3,784,392,0,7570,7568,1, + 0,0,0,7571,7574,1,0,0,0,7572,7570,1,0,0,0,7572,7573,1,0,0,0,7573, + 765,1,0,0,0,7574,7572,1,0,0,0,7575,7580,3,778,389,0,7576,7577,5, + 6,0,0,7577,7579,3,778,389,0,7578,7576,1,0,0,0,7579,7582,1,0,0,0, + 7580,7578,1,0,0,0,7580,7581,1,0,0,0,7581,767,1,0,0,0,7582,7580,1, + 0,0,0,7583,7588,3,794,397,0,7584,7585,5,6,0,0,7585,7587,3,794,397, + 0,7586,7584,1,0,0,0,7587,7590,1,0,0,0,7588,7586,1,0,0,0,7588,7589, + 1,0,0,0,7589,769,1,0,0,0,7590,7588,1,0,0,0,7591,7596,3,792,396,0, + 7592,7593,5,6,0,0,7593,7595,3,792,396,0,7594,7592,1,0,0,0,7595,7598, + 1,0,0,0,7596,7594,1,0,0,0,7596,7597,1,0,0,0,7597,771,1,0,0,0,7598, + 7596,1,0,0,0,7599,7600,3,784,392,0,7600,773,1,0,0,0,7601,7602,3, + 784,392,0,7602,775,1,0,0,0,7603,7604,3,784,392,0,7604,777,1,0,0, + 0,7605,7606,3,784,392,0,7606,779,1,0,0,0,7607,7608,3,784,392,0,7608, + 781,1,0,0,0,7609,7610,3,316,158,0,7610,783,1,0,0,0,7611,7613,3,822, + 411,0,7612,7614,3,754,377,0,7613,7612,1,0,0,0,7613,7614,1,0,0,0, + 7614,785,1,0,0,0,7615,7620,3,774,387,0,7616,7617,5,6,0,0,7617,7619, + 3,774,387,0,7618,7616,1,0,0,0,7619,7622,1,0,0,0,7620,7618,1,0,0, + 0,7620,7621,1,0,0,0,7621,787,1,0,0,0,7622,7620,1,0,0,0,7623,7628, + 3,822,411,0,7624,7625,5,6,0,0,7625,7627,3,822,411,0,7626,7624,1, + 0,0,0,7627,7630,1,0,0,0,7628,7626,1,0,0,0,7628,7629,1,0,0,0,7629, + 789,1,0,0,0,7630,7628,1,0,0,0,7631,7632,3,316,158,0,7632,791,1,0, + 0,0,7633,7634,3,316,158,0,7634,793,1,0,0,0,7635,7636,3,316,158,0, + 7636,795,1,0,0,0,7637,7638,3,822,411,0,7638,797,1,0,0,0,7639,7640, + 3,822,411,0,7640,799,1,0,0,0,7641,7646,3,824,412,0,7642,7643,3,822, + 411,0,7643,7644,3,754,377,0,7644,7646,1,0,0,0,7645,7641,1,0,0,0, + 7645,7642,1,0,0,0,7646,801,1,0,0,0,7647,7652,3,824,412,0,7648,7649, + 3,822,411,0,7649,7650,3,754,377,0,7650,7652,1,0,0,0,7651,7647,1, + 0,0,0,7651,7648,1,0,0,0,7652,803,1,0,0,0,7653,7654,3,822,411,0,7654, + 7655,3,756,378,0,7655,7658,1,0,0,0,7656,7658,4,402,10,0,7657,7653, + 1,0,0,0,7657,7656,1,0,0,0,7658,805,1,0,0,0,7659,7660,3,822,411,0, + 7660,807,1,0,0,0,7661,7666,3,824,412,0,7662,7663,3,822,411,0,7663, + 7664,3,754,377,0,7664,7666,1,0,0,0,7665,7661,1,0,0,0,7665,7662,1, + 0,0,0,7666,809,1,0,0,0,7667,7672,3,824,412,0,7668,7669,3,822,411, + 0,7669,7670,3,754,377,0,7670,7672,1,0,0,0,7671,7667,1,0,0,0,7671, + 7668,1,0,0,0,7672,811,1,0,0,0,7673,7676,3,814,407,0,7674,7675,5, + 487,0,0,7675,7677,3,814,407,0,7676,7674,1,0,0,0,7676,7677,1,0,0, + 0,7677,813,1,0,0,0,7678,7690,5,558,0,0,7679,7690,5,560,0,0,7680, + 7684,5,562,0,0,7681,7683,5,588,0,0,7682,7681,1,0,0,0,7683,7686,1, + 0,0,0,7684,7682,1,0,0,0,7684,7685,1,0,0,0,7685,7687,1,0,0,0,7686, + 7684,1,0,0,0,7687,7690,5,589,0,0,7688,7690,5,584,0,0,7689,7678,1, + 0,0,0,7689,7679,1,0,0,0,7689,7680,1,0,0,0,7689,7688,1,0,0,0,7690, + 815,1,0,0,0,7691,7693,7,29,0,0,7692,7691,1,0,0,0,7692,7693,1,0,0, + 0,7693,7694,1,0,0,0,7694,7695,5,571,0,0,7695,817,1,0,0,0,7696,7702, + 3,826,413,0,7697,7702,5,52,0,0,7698,7702,5,49,0,0,7699,7702,5,89, + 0,0,7700,7702,5,524,0,0,7701,7696,1,0,0,0,7701,7697,1,0,0,0,7701, + 7698,1,0,0,0,7701,7699,1,0,0,0,7701,7700,1,0,0,0,7702,819,1,0,0, + 0,7703,7708,3,818,409,0,7704,7705,5,6,0,0,7705,7707,3,818,409,0, + 7706,7704,1,0,0,0,7707,7710,1,0,0,0,7708,7706,1,0,0,0,7708,7709, + 1,0,0,0,7709,821,1,0,0,0,7710,7708,1,0,0,0,7711,7714,3,830,415,0, + 7712,7714,3,834,417,0,7713,7711,1,0,0,0,7713,7712,1,0,0,0,7714,823, + 1,0,0,0,7715,7718,3,830,415,0,7716,7718,3,836,418,0,7717,7715,1, + 0,0,0,7717,7716,1,0,0,0,7718,825,1,0,0,0,7719,7723,3,830,415,0,7720, + 7723,3,834,417,0,7721,7723,3,836,418,0,7722,7719,1,0,0,0,7722,7720, + 1,0,0,0,7722,7721,1,0,0,0,7723,827,1,0,0,0,7724,7729,3,830,415,0, + 7725,7729,3,834,417,0,7726,7729,3,836,418,0,7727,7729,3,838,419, + 0,7728,7724,1,0,0,0,7728,7725,1,0,0,0,7728,7726,1,0,0,0,7728,7727, + 1,0,0,0,7729,829,1,0,0,0,7730,7733,5,549,0,0,7731,7732,5,487,0,0, + 7732,7734,3,814,407,0,7733,7731,1,0,0,0,7733,7734,1,0,0,0,7734,7742, + 1,0,0,0,7735,7742,3,812,406,0,7736,7742,5,550,0,0,7737,7742,5,554, + 0,0,7738,7742,5,574,0,0,7739,7742,5,575,0,0,7740,7742,3,832,416, + 0,7741,7730,1,0,0,0,7741,7735,1,0,0,0,7741,7736,1,0,0,0,7741,7737, + 1,0,0,0,7741,7738,1,0,0,0,7741,7739,1,0,0,0,7741,7740,1,0,0,0,7742, + 831,1,0,0,0,7743,7744,7,109,0,0,7744,833,1,0,0,0,7745,7797,5,387, + 0,0,7746,7797,5,388,0,0,7747,7797,3,664,332,0,7748,7797,5,390,0, + 0,7749,7797,5,391,0,0,7750,7797,3,666,333,0,7751,7797,5,393,0,0, + 7752,7797,5,394,0,0,7753,7797,5,395,0,0,7754,7797,5,396,0,0,7755, + 7797,5,397,0,0,7756,7797,5,398,0,0,7757,7797,5,399,0,0,7758,7797, + 5,470,0,0,7759,7797,5,400,0,0,7760,7797,5,401,0,0,7761,7797,5,402, + 0,0,7762,7797,5,403,0,0,7763,7797,5,404,0,0,7764,7797,5,405,0,0, + 7765,7797,5,406,0,0,7766,7797,5,407,0,0,7767,7797,5,489,0,0,7768, + 7797,5,408,0,0,7769,7797,3,660,330,0,7770,7797,5,453,0,0,7771,7797, + 5,410,0,0,7772,7797,5,411,0,0,7773,7797,5,412,0,0,7774,7797,5,413, + 0,0,7775,7797,5,414,0,0,7776,7797,5,415,0,0,7777,7797,5,416,0,0, + 7778,7797,5,417,0,0,7779,7797,5,418,0,0,7780,7797,5,419,0,0,7781, + 7797,5,420,0,0,7782,7797,5,421,0,0,7783,7797,5,422,0,0,7784,7797, + 5,423,0,0,7785,7797,5,424,0,0,7786,7797,5,425,0,0,7787,7797,5,426, + 0,0,7788,7797,5,427,0,0,7789,7797,5,428,0,0,7790,7797,5,476,0,0, + 7791,7797,5,429,0,0,7792,7797,5,430,0,0,7793,7797,5,431,0,0,7794, + 7797,5,432,0,0,7795,7797,5,474,0,0,7796,7745,1,0,0,0,7796,7746,1, + 0,0,0,7796,7747,1,0,0,0,7796,7748,1,0,0,0,7796,7749,1,0,0,0,7796, + 7750,1,0,0,0,7796,7751,1,0,0,0,7796,7752,1,0,0,0,7796,7753,1,0,0, + 0,7796,7754,1,0,0,0,7796,7755,1,0,0,0,7796,7756,1,0,0,0,7796,7757, + 1,0,0,0,7796,7758,1,0,0,0,7796,7759,1,0,0,0,7796,7760,1,0,0,0,7796, + 7761,1,0,0,0,7796,7762,1,0,0,0,7796,7763,1,0,0,0,7796,7764,1,0,0, + 0,7796,7765,1,0,0,0,7796,7766,1,0,0,0,7796,7767,1,0,0,0,7796,7768, + 1,0,0,0,7796,7769,1,0,0,0,7796,7770,1,0,0,0,7796,7771,1,0,0,0,7796, + 7772,1,0,0,0,7796,7773,1,0,0,0,7796,7774,1,0,0,0,7796,7775,1,0,0, + 0,7796,7776,1,0,0,0,7796,7777,1,0,0,0,7796,7778,1,0,0,0,7796,7779, + 1,0,0,0,7796,7780,1,0,0,0,7796,7781,1,0,0,0,7796,7782,1,0,0,0,7796, + 7783,1,0,0,0,7796,7784,1,0,0,0,7796,7785,1,0,0,0,7796,7786,1,0,0, + 0,7796,7787,1,0,0,0,7796,7788,1,0,0,0,7796,7789,1,0,0,0,7796,7790, + 1,0,0,0,7796,7791,1,0,0,0,7796,7792,1,0,0,0,7796,7793,1,0,0,0,7796, + 7794,1,0,0,0,7796,7795,1,0,0,0,7797,835,1,0,0,0,7798,7799,7,110, + 0,0,7799,837,1,0,0,0,7800,7801,7,111,0,0,7801,839,1,0,0,0,7802,7804, + 3,842,421,0,7803,7802,1,0,0,0,7803,7804,1,0,0,0,7804,7815,1,0,0, + 0,7805,7813,5,178,0,0,7806,7810,3,844,422,0,7807,7810,5,178,0,0, + 7808,7810,3,842,421,0,7809,7806,1,0,0,0,7809,7807,1,0,0,0,7809,7808, + 1,0,0,0,7810,7811,1,0,0,0,7811,7809,1,0,0,0,7811,7812,1,0,0,0,7812, + 7814,1,0,0,0,7813,7809,1,0,0,0,7813,7814,1,0,0,0,7814,7816,1,0,0, + 0,7815,7805,1,0,0,0,7815,7816,1,0,0,0,7816,7817,1,0,0,0,7817,7821, + 5,146,0,0,7818,7820,3,850,425,0,7819,7818,1,0,0,0,7820,7823,1,0, + 0,0,7821,7819,1,0,0,0,7821,7822,1,0,0,0,7822,7825,1,0,0,0,7823,7821, + 1,0,0,0,7824,7826,3,928,464,0,7825,7824,1,0,0,0,7825,7826,1,0,0, + 0,7826,7827,1,0,0,0,7827,7829,5,454,0,0,7828,7830,3,932,466,0,7829, + 7828,1,0,0,0,7829,7830,1,0,0,0,7830,841,1,0,0,0,7831,7832,5,18,0, + 0,7832,7833,3,932,466,0,7833,7834,5,19,0,0,7834,843,1,0,0,0,7835, + 7882,3,932,466,0,7836,7837,5,496,0,0,7837,7840,5,62,0,0,7838,7841, + 5,28,0,0,7839,7841,3,822,411,0,7840,7838,1,0,0,0,7840,7839,1,0,0, + 0,7841,7883,1,0,0,0,7842,7844,5,497,0,0,7843,7842,1,0,0,0,7843,7844, + 1,0,0,0,7844,7845,1,0,0,0,7845,7847,3,654,327,0,7846,7848,3,98,49, + 0,7847,7846,1,0,0,0,7847,7848,1,0,0,0,7848,7851,1,0,0,0,7849,7850, + 5,77,0,0,7850,7852,5,78,0,0,7851,7849,1,0,0,0,7851,7852,1,0,0,0, + 7852,7858,1,0,0,0,7853,7856,3,848,424,0,7854,7856,5,53,0,0,7855, + 7853,1,0,0,0,7855,7854,1,0,0,0,7856,7857,1,0,0,0,7857,7859,3,934, + 467,0,7858,7855,1,0,0,0,7858,7859,1,0,0,0,7859,7883,1,0,0,0,7860, + 7862,5,269,0,0,7861,7860,1,0,0,0,7861,7862,1,0,0,0,7862,7863,1,0, + 0,0,7863,7865,5,324,0,0,7864,7861,1,0,0,0,7864,7865,1,0,0,0,7865, + 7866,1,0,0,0,7866,7878,5,172,0,0,7867,7868,5,2,0,0,7868,7873,3,846, + 423,0,7869,7870,5,6,0,0,7870,7872,3,846,423,0,7871,7869,1,0,0,0, + 7872,7875,1,0,0,0,7873,7871,1,0,0,0,7873,7874,1,0,0,0,7874,7876, + 1,0,0,0,7875,7873,1,0,0,0,7876,7877,5,3,0,0,7877,7879,1,0,0,0,7878, + 7867,1,0,0,0,7878,7879,1,0,0,0,7879,7880,1,0,0,0,7880,7881,7,112, + 0,0,7881,7883,3,560,280,0,7882,7836,1,0,0,0,7882,7843,1,0,0,0,7882, + 7864,1,0,0,0,7883,7884,1,0,0,0,7884,7885,5,7,0,0,7885,845,1,0,0, + 0,7886,7887,3,932,466,0,7887,7888,3,654,327,0,7888,847,1,0,0,0,7889, + 7890,7,113,0,0,7890,849,1,0,0,0,7891,7892,3,840,420,0,7892,7893, + 5,7,0,0,7893,7916,1,0,0,0,7894,7916,3,878,439,0,7895,7916,3,880, + 440,0,7896,7916,3,856,428,0,7897,7916,3,864,432,0,7898,7916,3,868, + 434,0,7899,7916,3,870,435,0,7900,7916,3,874,437,0,7901,7916,3,876, + 438,0,7902,7916,3,884,442,0,7903,7916,3,888,444,0,7904,7916,3,890, + 445,0,7905,7916,3,852,426,0,7906,7916,3,854,427,0,7907,7916,3,858, + 429,0,7908,7916,3,894,447,0,7909,7916,3,898,449,0,7910,7916,3,902, + 451,0,7911,7916,3,918,459,0,7912,7916,3,920,460,0,7913,7916,3,922, + 461,0,7914,7916,3,924,462,0,7915,7891,1,0,0,0,7915,7894,1,0,0,0, + 7915,7895,1,0,0,0,7915,7896,1,0,0,0,7915,7897,1,0,0,0,7915,7898, + 1,0,0,0,7915,7899,1,0,0,0,7915,7900,1,0,0,0,7915,7901,1,0,0,0,7915, + 7902,1,0,0,0,7915,7903,1,0,0,0,7915,7904,1,0,0,0,7915,7905,1,0,0, + 0,7915,7906,1,0,0,0,7915,7907,1,0,0,0,7915,7908,1,0,0,0,7915,7909, + 1,0,0,0,7915,7910,1,0,0,0,7915,7911,1,0,0,0,7915,7912,1,0,0,0,7915, + 7913,1,0,0,0,7915,7914,1,0,0,0,7916,851,1,0,0,0,7917,7918,5,498, + 0,0,7918,7919,3,934,467,0,7919,7920,5,7,0,0,7920,853,1,0,0,0,7921, + 7922,5,433,0,0,7922,7929,3,932,466,0,7923,7925,5,2,0,0,7924,7926, + 3,732,366,0,7925,7924,1,0,0,0,7925,7926,1,0,0,0,7926,7927,1,0,0, + 0,7927,7928,5,3,0,0,7928,7930,5,7,0,0,7929,7923,1,0,0,0,7929,7930, + 1,0,0,0,7930,7941,1,0,0,0,7931,7932,5,57,0,0,7932,7933,3,932,466, + 0,7933,7935,5,2,0,0,7934,7936,3,732,366,0,7935,7934,1,0,0,0,7935, + 7936,1,0,0,0,7936,7937,1,0,0,0,7937,7938,5,3,0,0,7938,7939,5,7,0, + 0,7939,7941,1,0,0,0,7940,7921,1,0,0,0,7940,7931,1,0,0,0,7941,855, + 1,0,0,0,7942,7943,3,862,431,0,7943,7944,3,848,424,0,7944,7945,3, + 934,467,0,7945,7946,5,7,0,0,7946,857,1,0,0,0,7947,7949,5,499,0,0, + 7948,7950,7,114,0,0,7949,7948,1,0,0,0,7949,7950,1,0,0,0,7950,7951, + 1,0,0,0,7951,7952,5,500,0,0,7952,7957,3,860,430,0,7953,7954,5,6, + 0,0,7954,7956,3,860,430,0,7955,7953,1,0,0,0,7956,7959,1,0,0,0,7957, + 7955,1,0,0,0,7957,7958,1,0,0,0,7958,7960,1,0,0,0,7959,7957,1,0,0, + 0,7960,7961,5,7,0,0,7961,859,1,0,0,0,7962,7963,3,862,431,0,7963, + 7964,3,848,424,0,7964,7965,3,822,411,0,7965,861,1,0,0,0,7966,7969, + 3,316,158,0,7967,7969,5,28,0,0,7968,7966,1,0,0,0,7968,7967,1,0,0, + 0,7969,7976,1,0,0,0,7970,7971,5,4,0,0,7971,7972,3,676,338,0,7972, + 7973,5,5,0,0,7973,7975,1,0,0,0,7974,7970,1,0,0,0,7975,7978,1,0,0, + 0,7976,7974,1,0,0,0,7976,7977,1,0,0,0,7977,863,1,0,0,0,7978,7976, + 1,0,0,0,7979,7980,5,220,0,0,7980,7981,3,934,467,0,7981,7985,5,93, + 0,0,7982,7984,3,850,425,0,7983,7982,1,0,0,0,7984,7987,1,0,0,0,7985, + 7983,1,0,0,0,7985,7986,1,0,0,0,7986,7999,1,0,0,0,7987,7985,1,0,0, + 0,7988,7989,5,502,0,0,7989,7990,3,676,338,0,7990,7994,5,93,0,0,7991, + 7993,3,850,425,0,7992,7991,1,0,0,0,7993,7996,1,0,0,0,7994,7992,1, + 0,0,0,7994,7995,1,0,0,0,7995,7998,1,0,0,0,7996,7994,1,0,0,0,7997, + 7988,1,0,0,0,7998,8001,1,0,0,0,7999,7997,1,0,0,0,7999,8000,1,0,0, + 0,8000,8003,1,0,0,0,8001,7999,1,0,0,0,8002,8004,3,866,433,0,8003, + 8002,1,0,0,0,8003,8004,1,0,0,0,8004,8005,1,0,0,0,8005,8006,5,454, + 0,0,8006,8007,5,220,0,0,8007,8008,5,7,0,0,8008,865,1,0,0,0,8009, + 8013,5,58,0,0,8010,8012,3,850,425,0,8011,8010,1,0,0,0,8012,8015, + 1,0,0,0,8013,8011,1,0,0,0,8013,8014,1,0,0,0,8014,867,1,0,0,0,8015, + 8013,1,0,0,0,8016,8018,5,40,0,0,8017,8019,3,934,467,0,8018,8017, + 1,0,0,0,8018,8019,1,0,0,0,8019,8029,1,0,0,0,8020,8021,5,102,0,0, + 8021,8022,3,732,366,0,8022,8026,5,93,0,0,8023,8025,3,850,425,0,8024, + 8023,1,0,0,0,8025,8028,1,0,0,0,8026,8024,1,0,0,0,8026,8027,1,0,0, + 0,8027,8030,1,0,0,0,8028,8026,1,0,0,0,8029,8020,1,0,0,0,8030,8031, + 1,0,0,0,8031,8029,1,0,0,0,8031,8032,1,0,0,0,8032,8034,1,0,0,0,8033, + 8035,3,866,433,0,8034,8033,1,0,0,0,8034,8035,1,0,0,0,8035,8036,1, + 0,0,0,8036,8037,5,454,0,0,8037,8038,5,40,0,0,8038,8039,5,7,0,0,8039, + 869,1,0,0,0,8040,8042,3,842,421,0,8041,8040,1,0,0,0,8041,8042,1, + 0,0,0,8042,8047,1,0,0,0,8043,8044,5,503,0,0,8044,8048,3,676,338, + 0,8045,8046,5,62,0,0,8046,8048,3,872,436,0,8047,8043,1,0,0,0,8047, + 8045,1,0,0,0,8047,8048,1,0,0,0,8048,8049,1,0,0,0,8049,8050,3,886, + 443,0,8050,871,1,0,0,0,8051,8052,3,314,157,0,8052,8075,5,68,0,0, + 8053,8055,3,822,411,0,8054,8056,3,534,267,0,8055,8054,1,0,0,0,8055, + 8056,1,0,0,0,8056,8076,1,0,0,0,8057,8076,3,560,280,0,8058,8076,3, + 520,260,0,8059,8060,5,202,0,0,8060,8063,3,676,338,0,8061,8062,5, + 100,0,0,8062,8064,3,732,366,0,8063,8061,1,0,0,0,8063,8064,1,0,0, + 0,8064,8076,1,0,0,0,8065,8067,5,504,0,0,8066,8065,1,0,0,0,8066,8067, + 1,0,0,0,8067,8068,1,0,0,0,8068,8069,3,676,338,0,8069,8070,5,24,0, + 0,8070,8073,3,676,338,0,8071,8072,5,147,0,0,8072,8074,3,676,338, + 0,8073,8071,1,0,0,0,8073,8074,1,0,0,0,8074,8076,1,0,0,0,8075,8053, + 1,0,0,0,8075,8057,1,0,0,0,8075,8058,1,0,0,0,8075,8059,1,0,0,0,8075, + 8066,1,0,0,0,8076,873,1,0,0,0,8077,8079,3,842,421,0,8078,8077,1, + 0,0,0,8078,8079,1,0,0,0,8079,8080,1,0,0,0,8080,8081,5,505,0,0,8081, + 8084,3,314,157,0,8082,8083,5,506,0,0,8083,8085,5,571,0,0,8084,8082, + 1,0,0,0,8084,8085,1,0,0,0,8085,8086,1,0,0,0,8086,8087,5,68,0,0,8087, + 8088,5,35,0,0,8088,8089,3,676,338,0,8089,8090,3,886,443,0,8090,875, + 1,0,0,0,8091,8093,7,115,0,0,8092,8094,3,932,466,0,8093,8092,1,0, + 0,0,8093,8094,1,0,0,0,8094,8097,1,0,0,0,8095,8096,5,102,0,0,8096, + 8098,3,934,467,0,8097,8095,1,0,0,0,8097,8098,1,0,0,0,8098,8099,1, + 0,0,0,8099,8100,5,7,0,0,8100,877,1,0,0,0,8101,8116,5,508,0,0,8102, + 8103,5,268,0,0,8103,8117,3,934,467,0,8104,8111,5,509,0,0,8105,8106, + 5,202,0,0,8106,8107,3,676,338,0,8107,8108,5,100,0,0,8108,8109,3, + 732,366,0,8109,8112,1,0,0,0,8110,8112,3,560,280,0,8111,8105,1,0, + 0,0,8111,8110,1,0,0,0,8112,8117,1,0,0,0,8113,8115,3,934,467,0,8114, + 8113,1,0,0,0,8114,8115,1,0,0,0,8115,8117,1,0,0,0,8116,8102,1,0,0, + 0,8116,8104,1,0,0,0,8116,8114,1,0,0,0,8117,8118,1,0,0,0,8118,8119, + 5,7,0,0,8119,879,1,0,0,0,8120,8150,5,510,0,0,8121,8123,7,116,0,0, + 8122,8121,1,0,0,0,8122,8123,1,0,0,0,8123,8136,1,0,0,0,8124,8137, + 3,830,415,0,8125,8126,5,511,0,0,8126,8137,3,812,406,0,8127,8134, + 3,812,406,0,8128,8129,5,6,0,0,8129,8131,3,676,338,0,8130,8128,1, + 0,0,0,8131,8132,1,0,0,0,8132,8130,1,0,0,0,8132,8133,1,0,0,0,8133, + 8135,1,0,0,0,8134,8130,1,0,0,0,8134,8135,1,0,0,0,8135,8137,1,0,0, + 0,8136,8124,1,0,0,0,8136,8125,1,0,0,0,8136,8127,1,0,0,0,8136,8137, + 1,0,0,0,8137,8147,1,0,0,0,8138,8139,5,100,0,0,8139,8144,3,882,441, + 0,8140,8141,5,6,0,0,8141,8143,3,882,441,0,8142,8140,1,0,0,0,8143, + 8146,1,0,0,0,8144,8142,1,0,0,0,8144,8145,1,0,0,0,8145,8148,1,0,0, + 0,8146,8144,1,0,0,0,8147,8138,1,0,0,0,8147,8148,1,0,0,0,8148,8149, + 1,0,0,0,8149,8151,5,7,0,0,8150,8122,1,0,0,0,8150,8151,1,0,0,0,8151, + 881,1,0,0,0,8152,8153,3,830,415,0,8153,8154,5,10,0,0,8154,8155,3, + 676,338,0,8155,883,1,0,0,0,8156,8157,5,518,0,0,8157,8160,3,934,467, + 0,8158,8159,5,6,0,0,8159,8161,3,934,467,0,8160,8158,1,0,0,0,8160, + 8161,1,0,0,0,8161,8162,1,0,0,0,8162,8163,5,7,0,0,8163,885,1,0,0, + 0,8164,8168,5,519,0,0,8165,8167,3,850,425,0,8166,8165,1,0,0,0,8167, + 8170,1,0,0,0,8168,8166,1,0,0,0,8168,8169,1,0,0,0,8169,8171,1,0,0, + 0,8170,8168,1,0,0,0,8171,8172,5,454,0,0,8172,8174,5,519,0,0,8173, + 8175,3,932,466,0,8174,8173,1,0,0,0,8174,8175,1,0,0,0,8175,8176,1, + 0,0,0,8176,8177,5,7,0,0,8177,887,1,0,0,0,8178,8180,3,4,2,0,8179, + 8181,3,892,446,0,8180,8179,1,0,0,0,8180,8181,1,0,0,0,8181,8182,1, + 0,0,0,8182,8183,5,7,0,0,8183,889,1,0,0,0,8184,8185,5,202,0,0,8185, + 8201,3,676,338,0,8186,8188,3,892,446,0,8187,8186,1,0,0,0,8187,8188, + 1,0,0,0,8188,8191,1,0,0,0,8189,8190,5,100,0,0,8190,8192,3,732,366, + 0,8191,8189,1,0,0,0,8191,8192,1,0,0,0,8192,8202,1,0,0,0,8193,8194, + 5,100,0,0,8194,8196,3,732,366,0,8195,8193,1,0,0,0,8195,8196,1,0, + 0,0,8196,8198,1,0,0,0,8197,8199,3,892,446,0,8198,8197,1,0,0,0,8198, + 8199,1,0,0,0,8199,8202,1,0,0,0,8200,8202,1,0,0,0,8201,8187,1,0,0, + 0,8201,8195,1,0,0,0,8201,8200,1,0,0,0,8202,8203,1,0,0,0,8203,8204, + 5,7,0,0,8204,891,1,0,0,0,8205,8207,5,71,0,0,8206,8208,5,346,0,0, + 8207,8206,1,0,0,0,8207,8208,1,0,0,0,8208,8209,1,0,0,0,8209,8210, + 3,732,366,0,8210,893,1,0,0,0,8211,8243,5,520,0,0,8212,8217,3,926, + 463,0,8213,8215,5,269,0,0,8214,8213,1,0,0,0,8214,8215,1,0,0,0,8215, + 8216,1,0,0,0,8216,8218,5,324,0,0,8217,8214,1,0,0,0,8217,8218,1,0, + 0,0,8218,8219,1,0,0,0,8219,8227,5,62,0,0,8220,8228,3,560,280,0,8221, + 8222,5,202,0,0,8222,8225,3,934,467,0,8223,8224,5,100,0,0,8224,8226, + 3,732,366,0,8225,8223,1,0,0,0,8225,8226,1,0,0,0,8226,8228,1,0,0, + 0,8227,8220,1,0,0,0,8227,8221,1,0,0,0,8228,8244,1,0,0,0,8229,8241, + 3,822,411,0,8230,8231,5,2,0,0,8231,8236,3,896,448,0,8232,8233,5, + 6,0,0,8233,8235,3,896,448,0,8234,8232,1,0,0,0,8235,8238,1,0,0,0, + 8236,8234,1,0,0,0,8236,8237,1,0,0,0,8237,8239,1,0,0,0,8238,8236, + 1,0,0,0,8239,8240,5,3,0,0,8240,8242,1,0,0,0,8241,8230,1,0,0,0,8241, + 8242,1,0,0,0,8242,8244,1,0,0,0,8243,8212,1,0,0,0,8243,8229,1,0,0, + 0,8244,8245,1,0,0,0,8245,8246,5,7,0,0,8246,895,1,0,0,0,8247,8248, + 3,822,411,0,8248,8249,5,20,0,0,8249,8251,1,0,0,0,8250,8247,1,0,0, + 0,8250,8251,1,0,0,0,8251,8252,1,0,0,0,8252,8253,3,676,338,0,8253, + 897,1,0,0,0,8254,8256,5,61,0,0,8255,8257,3,900,450,0,8256,8255,1, + 0,0,0,8256,8257,1,0,0,0,8257,8259,1,0,0,0,8258,8260,3,332,166,0, + 8259,8258,1,0,0,0,8259,8260,1,0,0,0,8260,8261,1,0,0,0,8261,8262, + 3,926,463,0,8262,8263,5,71,0,0,8263,8264,3,732,366,0,8264,8265,5, + 7,0,0,8265,899,1,0,0,0,8266,8281,5,268,0,0,8267,8281,5,293,0,0,8268, + 8281,5,207,0,0,8269,8281,5,249,0,0,8270,8272,7,50,0,0,8271,8270, + 1,0,0,0,8271,8272,1,0,0,0,8272,8273,1,0,0,0,8273,8281,3,676,338, + 0,8274,8281,5,30,0,0,8275,8278,7,117,0,0,8276,8279,3,676,338,0,8277, + 8279,5,30,0,0,8278,8276,1,0,0,0,8278,8277,1,0,0,0,8278,8279,1,0, + 0,0,8279,8281,1,0,0,0,8280,8266,1,0,0,0,8280,8267,1,0,0,0,8280,8268, + 1,0,0,0,8280,8269,1,0,0,0,8280,8271,1,0,0,0,8280,8274,1,0,0,0,8280, + 8275,1,0,0,0,8281,901,1,0,0,0,8282,8284,5,265,0,0,8283,8285,3,900, + 450,0,8284,8283,1,0,0,0,8284,8285,1,0,0,0,8285,8286,1,0,0,0,8286, + 8287,3,926,463,0,8287,8288,5,7,0,0,8288,903,1,0,0,0,8289,8291,3, + 572,286,0,8290,8289,1,0,0,0,8290,8291,1,0,0,0,8291,8292,1,0,0,0, + 8292,8293,5,525,0,0,8293,8295,5,71,0,0,8294,8296,5,81,0,0,8295,8294, + 1,0,0,0,8295,8296,1,0,0,0,8296,8297,1,0,0,0,8297,8299,3,778,389, + 0,8298,8300,5,9,0,0,8299,8298,1,0,0,0,8299,8300,1,0,0,0,8300,8305, + 1,0,0,0,8301,8303,5,36,0,0,8302,8301,1,0,0,0,8302,8303,1,0,0,0,8303, + 8304,1,0,0,0,8304,8306,3,822,411,0,8305,8302,1,0,0,0,8305,8306,1, + 0,0,0,8306,8307,1,0,0,0,8307,8308,5,100,0,0,8308,8309,3,906,453, + 0,8309,8310,5,80,0,0,8310,8312,3,676,338,0,8311,8313,3,908,454,0, + 8312,8311,1,0,0,0,8313,8314,1,0,0,0,8314,8312,1,0,0,0,8314,8315, + 1,0,0,0,8315,905,1,0,0,0,8316,8318,5,81,0,0,8317,8316,1,0,0,0,8317, + 8318,1,0,0,0,8318,8319,1,0,0,0,8319,8321,3,778,389,0,8320,8322,5, + 9,0,0,8321,8320,1,0,0,0,8321,8322,1,0,0,0,8322,8328,1,0,0,0,8323, + 8326,3,564,282,0,8324,8326,3,608,304,0,8325,8323,1,0,0,0,8325,8324, + 1,0,0,0,8326,8328,1,0,0,0,8327,8317,1,0,0,0,8327,8325,1,0,0,0,8328, + 8333,1,0,0,0,8329,8331,5,36,0,0,8330,8329,1,0,0,0,8330,8331,1,0, + 0,0,8331,8332,1,0,0,0,8332,8334,3,822,411,0,8333,8330,1,0,0,0,8333, + 8334,1,0,0,0,8334,907,1,0,0,0,8335,8336,5,102,0,0,8336,8339,5,526, + 0,0,8337,8338,5,33,0,0,8338,8340,3,676,338,0,8339,8337,1,0,0,0,8339, + 8340,1,0,0,0,8340,8341,1,0,0,0,8341,8346,5,93,0,0,8342,8347,3,912, + 456,0,8343,8347,5,182,0,0,8344,8345,5,57,0,0,8345,8347,5,270,0,0, + 8346,8342,1,0,0,0,8346,8343,1,0,0,0,8346,8344,1,0,0,0,8347,8362, + 1,0,0,0,8348,8349,5,102,0,0,8349,8350,5,77,0,0,8350,8353,5,526,0, + 0,8351,8352,5,33,0,0,8352,8354,3,676,338,0,8353,8351,1,0,0,0,8353, + 8354,1,0,0,0,8354,8355,1,0,0,0,8355,8359,5,93,0,0,8356,8360,3,910, + 455,0,8357,8358,5,57,0,0,8358,8360,5,270,0,0,8359,8356,1,0,0,0,8359, + 8357,1,0,0,0,8360,8362,1,0,0,0,8361,8335,1,0,0,0,8361,8348,1,0,0, + 0,8362,909,1,0,0,0,8363,8365,5,241,0,0,8364,8366,3,144,72,0,8365, + 8364,1,0,0,0,8365,8366,1,0,0,0,8366,8370,1,0,0,0,8367,8368,5,463, + 0,0,8368,8369,7,76,0,0,8369,8371,5,450,0,0,8370,8367,1,0,0,0,8370, + 8371,1,0,0,0,8371,8372,1,0,0,0,8372,8373,3,914,457,0,8373,911,1, + 0,0,0,8374,8375,5,369,0,0,8375,8393,5,333,0,0,8376,8377,3,804,402, + 0,8377,8378,5,10,0,0,8378,8379,3,916,458,0,8379,8394,1,0,0,0,8380, + 8381,3,144,72,0,8381,8382,5,10,0,0,8382,8383,5,2,0,0,8383,8388,3, + 916,458,0,8384,8385,5,6,0,0,8385,8387,3,916,458,0,8386,8384,1,0, + 0,0,8387,8390,1,0,0,0,8388,8386,1,0,0,0,8388,8389,1,0,0,0,8389,8391, + 1,0,0,0,8390,8388,1,0,0,0,8391,8392,5,3,0,0,8392,8394,1,0,0,0,8393, + 8376,1,0,0,0,8393,8380,1,0,0,0,8394,8395,1,0,0,0,8395,8393,1,0,0, + 0,8395,8396,1,0,0,0,8396,913,1,0,0,0,8397,8398,5,422,0,0,8398,8399, + 5,2,0,0,8399,8404,3,916,458,0,8400,8401,5,6,0,0,8401,8403,3,916, + 458,0,8402,8400,1,0,0,0,8403,8406,1,0,0,0,8404,8402,1,0,0,0,8404, + 8405,1,0,0,0,8405,8407,1,0,0,0,8406,8404,1,0,0,0,8407,8408,5,3,0, + 0,8408,8412,1,0,0,0,8409,8410,5,53,0,0,8410,8412,5,422,0,0,8411, + 8397,1,0,0,0,8411,8409,1,0,0,0,8412,915,1,0,0,0,8413,8416,3,588, + 294,0,8414,8416,5,53,0,0,8415,8413,1,0,0,0,8415,8414,1,0,0,0,8416, + 917,1,0,0,0,8417,8418,5,157,0,0,8418,8419,3,926,463,0,8419,8420, + 5,7,0,0,8420,919,1,0,0,0,8421,8422,5,78,0,0,8422,8423,5,7,0,0,8423, + 921,1,0,0,0,8424,8430,7,67,0,0,8425,8427,5,33,0,0,8426,8428,5,269, + 0,0,8427,8426,1,0,0,0,8427,8428,1,0,0,0,8428,8429,1,0,0,0,8429,8431, + 5,153,0,0,8430,8425,1,0,0,0,8430,8431,1,0,0,0,8431,8432,1,0,0,0, + 8432,8433,5,7,0,0,8433,923,1,0,0,0,8434,8435,5,333,0,0,8435,8436, + 3,316,158,0,8436,8437,5,94,0,0,8437,8438,5,53,0,0,8438,8439,5,7, + 0,0,8439,8447,1,0,0,0,8440,8443,5,313,0,0,8441,8444,3,316,158,0, + 8442,8444,5,30,0,0,8443,8441,1,0,0,0,8443,8442,1,0,0,0,8444,8445, + 1,0,0,0,8445,8447,5,7,0,0,8446,8434,1,0,0,0,8446,8440,1,0,0,0,8447, + 925,1,0,0,0,8448,8451,3,822,411,0,8449,8451,5,28,0,0,8450,8448,1, + 0,0,0,8450,8449,1,0,0,0,8451,927,1,0,0,0,8452,8469,5,517,0,0,8453, + 8454,5,102,0,0,8454,8459,3,930,465,0,8455,8456,5,82,0,0,8456,8458, + 3,930,465,0,8457,8455,1,0,0,0,8458,8461,1,0,0,0,8459,8457,1,0,0, + 0,8459,8460,1,0,0,0,8460,8462,1,0,0,0,8461,8459,1,0,0,0,8462,8466, + 5,93,0,0,8463,8465,3,850,425,0,8464,8463,1,0,0,0,8465,8468,1,0,0, + 0,8466,8464,1,0,0,0,8466,8467,1,0,0,0,8467,8470,1,0,0,0,8468,8466, + 1,0,0,0,8469,8453,1,0,0,0,8470,8471,1,0,0,0,8471,8469,1,0,0,0,8471, + 8472,1,0,0,0,8472,929,1,0,0,0,8473,8477,3,932,466,0,8474,8475,5, + 511,0,0,8475,8477,3,812,406,0,8476,8473,1,0,0,0,8476,8474,1,0,0, + 0,8477,931,1,0,0,0,8478,8481,3,822,411,0,8479,8481,3,832,416,0,8480, + 8478,1,0,0,0,8480,8479,1,0,0,0,8481,933,1,0,0,0,8482,8484,3,758, + 379,0,8483,8482,1,0,0,0,8483,8484,1,0,0,0,8484,8486,1,0,0,0,8485, + 8487,3,580,290,0,8486,8485,1,0,0,0,8486,8487,1,0,0,0,8487,8489,1, + 0,0,0,8488,8490,3,610,305,0,8489,8488,1,0,0,0,8489,8490,1,0,0,0, + 8490,8492,1,0,0,0,8491,8493,3,640,320,0,8492,8491,1,0,0,0,8492,8493, + 1,0,0,0,8493,8495,1,0,0,0,8494,8496,3,600,300,0,8495,8494,1,0,0, + 0,8495,8496,1,0,0,0,8496,8499,1,0,0,0,8497,8498,5,67,0,0,8498,8500, + 3,676,338,0,8499,8497,1,0,0,0,8499,8500,1,0,0,0,8500,8502,1,0,0, + 0,8501,8503,3,704,352,0,8502,8501,1,0,0,0,8502,8503,1,0,0,0,8503, + 935,1,0,0,0,1189,939,946,1066,1068,1077,1082,1088,1123,1133,1139, + 1144,1151,1156,1163,1174,1182,1186,1198,1204,1210,1214,1219,1223, + 1236,1246,1248,1254,1259,1272,1275,1280,1285,1296,1300,1312,1316, + 1319,1323,1335,1353,1360,1368,1373,1380,1388,1394,1402,1410,1414, + 1428,1433,1438,1450,1456,1468,1473,1483,1489,1494,1502,1507,1514, + 1519,1524,1534,1539,1544,1551,1555,1569,1575,1581,1586,1593,1605, + 1613,1621,1637,1646,1655,1664,1668,1680,1688,1698,1718,1723,1726, + 1733,1736,1740,1744,1747,1752,1757,1761,1770,1776,1780,1789,1792, + 1798,1807,1819,1823,1827,1832,1835,1841,1843,1845,1849,1855,1859, + 1864,1869,1873,1876,1883,1896,1909,1933,1943,1950,1955,1959,1966, + 1971,1974,1976,1981,1985,1989,1993,1998,2001,2005,2008,2012,2020, + 2025,2028,2032,2038,2047,2051,2057,2059,2068,2073,2085,2090,2094, + 2098,2103,2107,2110,2113,2116,2119,2122,2127,2130,2133,2136,2139, + 2142,2148,2152,2155,2158,2161,2164,2166,2173,2181,2191,2196,2206, + 2209,2214,2219,2224,2227,2232,2241,2243,2247,2250,2254,2259,2264, + 2268,2271,2275,2278,2283,2286,2291,2294,2298,2301,2304,2309,2312, + 2320,2332,2336,2343,2348,2351,2354,2357,2362,2373,2379,2383,2386, + 2389,2394,2401,2404,2408,2416,2421,2424,2427,2434,2439,2448,2451, + 2454,2459,2462,2474,2484,2501,2505,2509,2511,2528,2530,2546,2557, + 2560,2563,2572,2581,2597,2600,2603,2611,2615,2622,2631,2635,2641, + 2645,2648,2651,2654,2657,2663,2667,2672,2676,2679,2682,2685,2690, + 2696,2700,2704,2708,2714,2716,2721,2727,2733,2737,2752,2757,2760, + 2762,2765,2769,2773,2776,2779,2787,2793,2795,2801,2806,2811,2815, + 2822,2824,2835,2874,2884,2886,2889,2893,2897,2907,2909,2915,2917, + 2926,2938,2952,2957,2960,2967,2972,2980,2982,2988,2993,2997,3002, + 3008,3015,3021,3023,3032,3038,3046,3052,3057,3062,3070,3085,3087, + 3091,3095,3098,3101,3110,3113,3116,3122,3128,3132,3144,3150,3153, + 3158,3162,3169,3179,3181,3205,3217,3222,3224,3228,3231,3234,3244, + 3247,3257,3262,3267,3270,3273,3281,3287,3294,3302,3305,3316,3320, + 3326,3333,3336,3345,3359,3362,3376,3387,3390,3402,3407,3420,3425, + 3438,3447,3450,3453,3460,3463,3475,3481,3483,3491,3499,3507,3519, + 3524,3535,3546,3554,3562,3569,3576,3578,3581,3586,3591,3610,3619, + 3622,3649,3658,3661,3665,3669,3673,3680,3684,3688,3692,3696,3701, + 3705,3710,3716,3721,3728,3732,3738,3742,3747,3755,3761,3766,3773, + 3778,3782,3787,3793,3800,3805,3812,3817,3824,3828,3836,3840,3842, + 3845,3850,3860,3875,3878,3886,3893,3898,3904,3908,3915,3920,3923, + 3926,3930,3939,3957,3960,3992,3997,4003,4023,4028,4034,4037,4041, + 4045,4051,4054,4058,4062,4067,4070,4073,4076,4089,4095,4103,4110, + 4115,4118,4125,4128,4136,4139,4144,4151,4154,4174,4186,4189,4195, + 4200,4209,4217,4222,4228,4235,4243,4246,4257,4259,4273,4279,4287, + 4289,4295,4299,4302,4305,4310,4315,4319,4322,4325,4328,4331,4339, + 4350,4353,4356,4361,4364,4368,4372,4378,4386,4389,4402,4407,4409, + 4414,4421,4428,4437,4445,4453,4460,4468,4475,4483,4487,4491,4493, + 4499,4504,4508,4515,4520,4525,4530,4532,4542,4552,4568,4586,4598, + 4605,4620,4625,4628,4633,4638,4643,4646,4649,4654,4661,4665,4670, + 4677,4681,4687,4696,4705,4717,4719,4732,4738,4742,4744,4751,4764, + 4771,4773,4789,4793,4797,4802,4807,4812,4817,4820,4832,4885,4894, + 4898,4907,4911,4920,4924,4929,4932,4936,4941,4943,4952,4957,4968, + 4972,4986,4994,5032,5034,5053,5056,5083,5087,5091,5095,5099,5102, + 5117,5124,5138,5151,5176,5195,5210,5226,5233,5244,5247,5266,5269, + 5282,5286,5306,5318,5322,5344,5348,5358,5362,5368,5372,5376,5380, + 5387,5392,5403,5407,5410,5415,5421,5432,5436,5439,5443,5447,5450, + 5460,5463,5467,5472,5478,5481,5486,5489,5496,5498,5504,5508,5517, + 5522,5524,5534,5537,5542,5550,5553,5558,5560,5562,5568,5585,5591, + 5604,5610,5614,5619,5649,5664,5669,5673,5686,5690,5692,5701,5707, + 5709,5713,5716,5719,5722,5725,5727,5730,5734,5742,5747,5750,5756, + 5760,5764,5769,5771,5775,5779,5786,5792,5796,5798,5800,5813,5821, + 5829,5840,5849,5854,5858,5862,5869,5872,5874,5882,5886,5889,5896, + 5903,5908,5915,5918,5920,5923,5929,5934,5938,5945,5955,5962,5965, + 5968,5972,5983,5986,5989,5992,5995,6002,6005,6008,6015,6027,6034, + 6036,6041,6046,6048,6054,6061,6066,6071,6075,6079,6083,6085,6089, + 6093,6096,6099,6101,6111,6113,6118,6122,6127,6131,6138,6143,6147, + 6150,6156,6159,6178,6185,6189,6192,6196,6200,6203,6206,6211,6220, + 6227,6231,6235,6239,6242,6244,6249,6253,6258,6264,6271,6276,6281, + 6290,6297,6305,6316,6321,6325,6328,6332,6337,6341,6346,6354,6365, + 6370,6374,6377,6380,6382,6385,6388,6391,6401,6406,6412,6416,6418, + 6425,6430,6436,6438,6443,6447,6451,6453,6456,6463,6468,6471,6477, + 6481,6487,6496,6502,6504,6509,6512,6521,6528,6530,6537,6542,6545, + 6555,6566,6571,6575,6583,6593,6600,6606,6617,6623,6633,6642,6646, + 6649,6651,6653,6657,6665,6668,6673,6678,6685,6687,6693,6697,6700, + 6705,6708,6710,6716,6725,6731,6734,6742,6745,6749,6755,6757,6760, + 6764,6769,6776,6783,6785,6791,6793,6798,6800,6804,6813,6817,6825, + 6827,6841,6844,6852,6861,6867,6872,6880,6882,6887,6891,6896,6901, + 6907,6923,6925,6934,6949,6954,6957,6963,6968,6981,6986,6990,6997, + 7016,7028,7033,7041,7043,7045,7054,7057,7062,7067,7070,7081,7089, + 7094,7096,7099,7103,7114,7135,7143,7156,7166,7172,7178,7181,7184, + 7210,7212,7233,7243,7256,7261,7265,7267,7279,7286,7292,7298,7302, + 7313,7323,7327,7332,7335,7338,7347,7358,7360,7364,7369,7378,7383, + 7391,7401,7409,7413,7416,7423,7431,7435,7442,7450,7452,7461,7464, + 7476,7485,7492,7501,7511,7516,7520,7522,7525,7530,7535,7543,7549, + 7553,7555,7562,7572,7580,7588,7596,7613,7620,7628,7645,7651,7657, + 7665,7671,7676,7684,7689,7692,7701,7708,7713,7717,7722,7728,7733, + 7741,7796,7803,7809,7811,7813,7815,7821,7825,7829,7840,7843,7847, + 7851,7855,7858,7861,7864,7873,7878,7882,7915,7925,7929,7935,7940, + 7949,7957,7968,7976,7985,7994,7999,8003,8013,8018,8026,8031,8034, + 8041,8047,8055,8063,8066,8073,8075,8078,8084,8093,8097,8111,8114, + 8116,8122,8132,8134,8136,8144,8147,8150,8160,8168,8174,8180,8187, + 8191,8195,8198,8201,8207,8214,8217,8225,8227,8236,8241,8243,8250, + 8256,8259,8271,8278,8280,8284,8290,8295,8299,8302,8305,8314,8317, + 8321,8325,8327,8330,8333,8339,8346,8353,8359,8361,8365,8370,8388, + 8393,8395,8404,8411,8415,8427,8430,8443,8446,8450,8459,8466,8471, + 8476,8480,8483,8486,8489,8492,8495,8499,8502 ]; private static __ATN: antlr.ATN; @@ -76373,6 +76450,9 @@ export class Table_refContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public expressionTable(): ExpressionTableContext | null { + return this.getRuleContext(0, ExpressionTableContext); + } public OPEN_PAREN(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.OPEN_PAREN, 0); } @@ -76427,15 +76507,6 @@ export class Table_refContext extends antlr.ParserRuleContext { public relation_expr(): Relation_exprContext | null { return this.getRuleContext(0, Relation_exprContext); } - public xmltable(): XmltableContext | null { - return this.getRuleContext(0, XmltableContext); - } - public func_table(): Func_tableContext | null { - return this.getRuleContext(0, Func_tableContext); - } - public select_with_parens(): Select_with_parensContext | null { - return this.getRuleContext(0, Select_with_parensContext); - } public alias_clause(): Alias_clauseContext | null { return this.getRuleContext(0, Alias_clauseContext); } @@ -76457,9 +76528,6 @@ export class Table_refContext extends antlr.ParserRuleContext { return this.getRuleContext(i, Join_typeContext); } - public func_alias_clause(): Func_alias_clauseContext | null { - return this.getRuleContext(0, Func_alias_clauseContext); - } public KW_ONLY(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.KW_ONLY, 0); } @@ -76495,6 +76563,48 @@ export class Table_refContext extends antlr.ParserRuleContext { } +export class ExpressionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public xmltable(): XmltableContext | null { + return this.getRuleContext(0, XmltableContext); + } + public alias_clause(): Alias_clauseContext | null { + return this.getRuleContext(0, Alias_clauseContext); + } + public func_table(): Func_tableContext | null { + return this.getRuleContext(0, Func_tableContext); + } + public func_alias_clause(): Func_alias_clauseContext | null { + return this.getRuleContext(0, Func_alias_clauseContext); + } + public select_with_parens(): Select_with_parensContext | null { + return this.getRuleContext(0, Select_with_parensContext); + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_expressionTable; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterExpressionTable) { + listener.enterExpressionTable(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitExpressionTable) { + listener.exitExpressionTable(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitExpressionTable) { + return visitor.visitExpressionTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class Alias_clauseContext extends antlr.ParserRuleContext { public _alias?: ColidContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -80168,28 +80278,60 @@ export class Column_expr_noparenContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); - } - public column_name(): Column_nameContext | null { - return this.getRuleContext(0, Column_nameContext); - } public override get ruleIndex(): number { return PostgreSqlParser.RULE_column_expr_noparen; } + public override copyFrom(ctx: Column_expr_noparenContext): void { + super.copyFrom(ctx); + } +} +export class SelectLiteralColumnNameContext extends Column_expr_noparenContext { + public constructor(ctx: Column_expr_noparenContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public column_name(): Column_nameContext { + return this.getRuleContext(0, Column_nameContext)!; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SelectExpressionColumnNameContext extends Column_expr_noparenContext { + public constructor(ctx: Column_expr_noparenContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } public override enterRule(listener: PostgreSqlParserListener): void { - if(listener.enterColumn_expr_noparen) { - listener.enterColumn_expr_noparen(this); + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); } } public override exitRule(listener: PostgreSqlParserListener): void { - if(listener.exitColumn_expr_noparen) { - listener.exitColumn_expr_noparen(this); + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); } } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColumn_expr_noparen) { - return visitor.visitColumn_expr_noparen(this); + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); } else { return visitor.visitChildren(this); } @@ -80703,7 +80845,34 @@ export class Target_elContext extends antlr.ParserRuleContext { super.copyFrom(ctx); } } +export class Target_starContext extends Target_elContext { + public constructor(ctx: Target_elContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public tableAllColumns(): TableAllColumnsContext { + return this.getRuleContext(0, TableAllColumnsContext)!; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterTarget_star) { + listener.enterTarget_star(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitTarget_star) { + listener.exitTarget_star(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitTarget_star) { + return visitor.visitTarget_star(this); + } else { + return visitor.visitChildren(this); + } + } +} export class Target_labelContext extends Target_elContext { + public _alias?: IdentifierContext; public constructor(ctx: Target_elContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); @@ -80711,15 +80880,12 @@ export class Target_labelContext extends Target_elContext { public column_expr_noparen(): Column_expr_noparenContext { return this.getRuleContext(0, Column_expr_noparenContext)!; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.KW_AS, 0); - } - public collabel(): CollabelContext | null { - return this.getRuleContext(0, CollabelContext); - } public identifier(): IdentifierContext | null { return this.getRuleContext(0, IdentifierContext); } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(PostgreSqlParser.KW_AS, 0); + } public override enterRule(listener: PostgreSqlParserListener): void { if(listener.enterTarget_label) { listener.enterTarget_label(this); @@ -80738,27 +80904,49 @@ export class Target_labelContext extends Target_elContext { } } } -export class Target_starContext extends Target_elContext { - public constructor(ctx: Target_elContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } public STAR(): antlr.TerminalNode { return this.getToken(PostgreSqlParser.STAR, 0)!; } + public colid(): ColidContext[]; + public colid(i: number): ColidContext | null; + public colid(i?: number): ColidContext[] | ColidContext | null { + if (i === undefined) { + return this.getRuleContexts(ColidContext); + } + + return this.getRuleContext(i, ColidContext); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(PostgreSqlParser.DOT); + } else { + return this.getToken(PostgreSqlParser.DOT, i); + } + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_tableAllColumns; + } public override enterRule(listener: PostgreSqlParserListener): void { - if(listener.enterTarget_star) { - listener.enterTarget_star(this); + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); } } public override exitRule(listener: PostgreSqlParserListener): void { - if(listener.exitTarget_star) { - listener.exitTarget_star(this); + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); } } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitTarget_star) { - return visitor.visitTarget_star(this); + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); } else { return visitor.visitChildren(this); } diff --git a/src/lib/postgresql/PostgreSqlParserListener.ts b/src/lib/postgresql/PostgreSqlParserListener.ts index 6d3ec5efb..18977524b 100644 --- a/src/lib/postgresql/PostgreSqlParserListener.ts +++ b/src/lib/postgresql/PostgreSqlParserListener.ts @@ -317,6 +317,7 @@ import { Values_clauseContext } from "./PostgreSqlParser.js"; import { From_clauseContext } from "./PostgreSqlParser.js"; import { From_listContext } from "./PostgreSqlParser.js"; import { Table_refContext } from "./PostgreSqlParser.js"; +import { ExpressionTableContext } from "./PostgreSqlParser.js"; import { Alias_clauseContext } from "./PostgreSqlParser.js"; import { Func_alias_clauseContext } from "./PostgreSqlParser.js"; import { Join_typeContext } from "./PostgreSqlParser.js"; @@ -389,7 +390,8 @@ import { Qual_all_opContext } from "./PostgreSqlParser.js"; import { Subquery_OpContext } from "./PostgreSqlParser.js"; import { Expr_listContext } from "./PostgreSqlParser.js"; import { Column_exprContext } from "./PostgreSqlParser.js"; -import { Column_expr_noparenContext } from "./PostgreSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./PostgreSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./PostgreSqlParser.js"; import { Func_arg_listContext } from "./PostgreSqlParser.js"; import { Func_arg_exprContext } from "./PostgreSqlParser.js"; import { Array_exprContext } from "./PostgreSqlParser.js"; @@ -401,8 +403,9 @@ import { Indirection_elContext } from "./PostgreSqlParser.js"; import { IndirectionContext } from "./PostgreSqlParser.js"; import { Opt_indirectionContext } from "./PostgreSqlParser.js"; import { Target_listContext } from "./PostgreSqlParser.js"; -import { Target_labelContext } from "./PostgreSqlParser.js"; import { Target_starContext } from "./PostgreSqlParser.js"; +import { Target_labelContext } from "./PostgreSqlParser.js"; +import { TableAllColumnsContext } from "./PostgreSqlParser.js"; import { Qualified_name_listContext } from "./PostgreSqlParser.js"; import { Table_name_listContext } from "./PostgreSqlParser.js"; import { Schema_name_listContext } from "./PostgreSqlParser.js"; @@ -3607,6 +3610,16 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTable_ref?: (ctx: Table_refContext) => void; + /** + * Enter a parse tree produced by `PostgreSqlParser.expressionTable`. + * @param ctx the parse tree + */ + enterExpressionTable?: (ctx: ExpressionTableContext) => void; + /** + * Exit a parse tree produced by `PostgreSqlParser.expressionTable`. + * @param ctx the parse tree + */ + exitExpressionTable?: (ctx: ExpressionTableContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.alias_clause`. * @param ctx the parse tree @@ -4360,15 +4373,29 @@ export class PostgreSqlParserListener implements ParseTreeListener { */ exitColumn_expr?: (ctx: Column_exprContext) => void; /** - * Enter a parse tree produced by `PostgreSqlParser.column_expr_noparen`. + * Enter a parse tree produced by the `selectExpressionColumnName` + * labeled alternative in `PostgreSqlParser.column_expr_noparen`. * @param ctx the parse tree */ - enterColumn_expr_noparen?: (ctx: Column_expr_noparenContext) => void; + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; /** - * Exit a parse tree produced by `PostgreSqlParser.column_expr_noparen`. + * Exit a parse tree produced by the `selectExpressionColumnName` + * labeled alternative in `PostgreSqlParser.column_expr_noparen`. * @param ctx the parse tree */ - exitColumn_expr_noparen?: (ctx: Column_expr_noparenContext) => void; + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Enter a parse tree produced by the `selectLiteralColumnName` + * labeled alternative in `PostgreSqlParser.column_expr_noparen`. + * @param ctx the parse tree + */ + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by the `selectLiteralColumnName` + * labeled alternative in `PostgreSqlParser.column_expr_noparen`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.func_arg_list`. * @param ctx the parse tree @@ -4479,6 +4506,18 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTarget_list?: (ctx: Target_listContext) => void; + /** + * Enter a parse tree produced by the `target_star` + * labeled alternative in `PostgreSqlParser.target_el`. + * @param ctx the parse tree + */ + enterTarget_star?: (ctx: Target_starContext) => void; + /** + * Exit a parse tree produced by the `target_star` + * labeled alternative in `PostgreSqlParser.target_el`. + * @param ctx the parse tree + */ + exitTarget_star?: (ctx: Target_starContext) => void; /** * Enter a parse tree produced by the `target_label` * labeled alternative in `PostgreSqlParser.target_el`. @@ -4492,17 +4531,15 @@ export class PostgreSqlParserListener implements ParseTreeListener { */ exitTarget_label?: (ctx: Target_labelContext) => void; /** - * Enter a parse tree produced by the `target_star` - * labeled alternative in `PostgreSqlParser.target_el`. + * Enter a parse tree produced by `PostgreSqlParser.tableAllColumns`. * @param ctx the parse tree */ - enterTarget_star?: (ctx: Target_starContext) => void; + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** - * Exit a parse tree produced by the `target_star` - * labeled alternative in `PostgreSqlParser.target_el`. + * Exit a parse tree produced by `PostgreSqlParser.tableAllColumns`. * @param ctx the parse tree */ - exitTarget_star?: (ctx: Target_starContext) => void; + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.qualified_name_list`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParserVisitor.ts b/src/lib/postgresql/PostgreSqlParserVisitor.ts index 3b4c9e52d..bee58527a 100644 --- a/src/lib/postgresql/PostgreSqlParserVisitor.ts +++ b/src/lib/postgresql/PostgreSqlParserVisitor.ts @@ -317,6 +317,7 @@ import { Values_clauseContext } from "./PostgreSqlParser.js"; import { From_clauseContext } from "./PostgreSqlParser.js"; import { From_listContext } from "./PostgreSqlParser.js"; import { Table_refContext } from "./PostgreSqlParser.js"; +import { ExpressionTableContext } from "./PostgreSqlParser.js"; import { Alias_clauseContext } from "./PostgreSqlParser.js"; import { Func_alias_clauseContext } from "./PostgreSqlParser.js"; import { Join_typeContext } from "./PostgreSqlParser.js"; @@ -389,7 +390,8 @@ import { Qual_all_opContext } from "./PostgreSqlParser.js"; import { Subquery_OpContext } from "./PostgreSqlParser.js"; import { Expr_listContext } from "./PostgreSqlParser.js"; import { Column_exprContext } from "./PostgreSqlParser.js"; -import { Column_expr_noparenContext } from "./PostgreSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./PostgreSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./PostgreSqlParser.js"; import { Func_arg_listContext } from "./PostgreSqlParser.js"; import { Func_arg_exprContext } from "./PostgreSqlParser.js"; import { Array_exprContext } from "./PostgreSqlParser.js"; @@ -401,8 +403,9 @@ import { Indirection_elContext } from "./PostgreSqlParser.js"; import { IndirectionContext } from "./PostgreSqlParser.js"; import { Opt_indirectionContext } from "./PostgreSqlParser.js"; import { Target_listContext } from "./PostgreSqlParser.js"; -import { Target_labelContext } from "./PostgreSqlParser.js"; import { Target_starContext } from "./PostgreSqlParser.js"; +import { Target_labelContext } from "./PostgreSqlParser.js"; +import { TableAllColumnsContext } from "./PostgreSqlParser.js"; import { Qualified_name_listContext } from "./PostgreSqlParser.js"; import { Table_name_listContext } from "./PostgreSqlParser.js"; import { Schema_name_listContext } from "./PostgreSqlParser.js"; @@ -2364,6 +2367,12 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `PostgreSqlParser.expressionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExpressionTable?: (ctx: ExpressionTableContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.alias_clause`. * @param ctx the parse tree @@ -2813,11 +2822,19 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.column_expr_noparen`. + * Visit a parse tree produced by the `selectExpressionColumnName` + * labeled alternative in `PostgreSqlParser.column_expr_noparen`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; + /** + * Visit a parse tree produced by the `selectLiteralColumnName` + * labeled alternative in `PostgreSqlParser.column_expr_noparen`. * @param ctx the parse tree * @return the visitor result */ - visitColumn_expr_noparen?: (ctx: Column_expr_noparenContext) => Result; + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.func_arg_list`. * @param ctx the parse tree @@ -2884,6 +2901,13 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by the `target_star` + * labeled alternative in `PostgreSqlParser.target_el`. + * @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`. @@ -2892,12 +2916,11 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by the `target_star` - * labeled alternative in `PostgreSqlParser.target_el`. + * Visit a parse tree produced by `PostgreSqlParser.tableAllColumns`. * @param ctx the parse tree * @return the visitor result */ - visitTarget_star?: (ctx: Target_starContext) => Result; + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.qualified_name_list`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 03dd67a5e..31edbc035 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -904,6 +904,7 @@ orderedIdentifier identifierCommentList identifierComment relationPrimary +atomSubQueryTableSource inlineTable functionTableSubqueryArgument tableArgumentPartitioning @@ -911,6 +912,7 @@ functionTableNamedArgumentExpression functionTableReferenceArgument functionTableArgument functionTable +atomFunctionTable tableAlias rowFormat multipartIdentifierList @@ -919,8 +921,12 @@ multipartIdentifierPropertyList multipartIdentifierProperty tableIdentifier viewIdentifier +selectLiteralColumnName +selectExpressionColumnName +tableAllColumns namedExpression namedExpressionSeq +selectList partitionFieldList partitionField transform @@ -994,4 +1000,4 @@ nonReserved atn: -[4, 1, 393, 3971, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 1, 0, 5, 0, 402, 8, 0, 10, 0, 12, 0, 405, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 411, 8, 1, 1, 2, 1, 2, 3, 2, 415, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 420, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 432, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 440, 8, 2, 10, 2, 12, 2, 443, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 461, 8, 2, 1, 2, 1, 2, 3, 2, 465, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 471, 8, 2, 1, 2, 3, 2, 474, 8, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 484, 8, 2, 1, 2, 3, 2, 487, 8, 2, 1, 2, 1, 2, 3, 2, 491, 8, 2, 1, 2, 3, 2, 494, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 511, 8, 2, 10, 2, 12, 2, 514, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 3, 2, 528, 8, 2, 1, 2, 3, 2, 531, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 537, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 548, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 554, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 559, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 592, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 602, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 613, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 624, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 635, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 640, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 649, 8, 2, 1, 2, 1, 2, 3, 2, 653, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 659, 8, 2, 1, 2, 1, 2, 3, 2, 663, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 668, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 674, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 694, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 700, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 711, 8, 2, 1, 2, 1, 2, 3, 2, 715, 8, 2, 1, 2, 4, 2, 718, 8, 2, 11, 2, 12, 2, 719, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 735, 8, 2, 1, 2, 1, 2, 3, 2, 739, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 744, 8, 2, 10, 2, 12, 2, 747, 9, 2, 1, 2, 3, 2, 750, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 756, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 785, 8, 2, 1, 2, 1, 2, 3, 2, 789, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 794, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 3, 2, 810, 8, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 1, 2, 3, 2, 817, 8, 2, 1, 2, 1, 2, 3, 2, 821, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 829, 8, 2, 10, 2, 12, 2, 832, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 840, 8, 2, 1, 2, 3, 2, 843, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 857, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 863, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 870, 8, 2, 1, 2, 3, 2, 873, 8, 2, 1, 2, 1, 2, 3, 2, 877, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 886, 8, 2, 10, 2, 12, 2, 889, 9, 2, 3, 2, 891, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 897, 8, 2, 1, 2, 1, 2, 3, 2, 901, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 916, 8, 2, 10, 2, 12, 2, 919, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 926, 8, 2, 1, 2, 1, 2, 3, 2, 930, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 936, 8, 2, 1, 2, 3, 2, 939, 8, 2, 1, 2, 1, 2, 3, 2, 943, 8, 2, 1, 2, 3, 2, 946, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 952, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 957, 8, 2, 1, 2, 1, 2, 3, 2, 961, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 968, 8, 2, 1, 2, 3, 2, 971, 8, 2, 1, 2, 3, 2, 974, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 981, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 995, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1003, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1009, 8, 2, 1, 2, 3, 2, 1012, 8, 2, 1, 2, 3, 2, 1015, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1021, 8, 2, 1, 2, 1, 2, 3, 2, 1025, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1030, 8, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 3, 2, 1037, 8, 2, 3, 2, 1039, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1047, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1055, 8, 2, 1, 2, 3, 2, 1058, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1065, 8, 2, 1, 2, 3, 2, 1068, 8, 2, 1, 2, 3, 2, 1071, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1085, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1091, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1096, 8, 2, 1, 2, 3, 2, 1099, 8, 2, 1, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 3, 2, 1106, 8, 2, 1, 2, 1, 2, 3, 2, 1110, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1136, 8, 2, 10, 2, 12, 2, 1139, 9, 2, 3, 2, 1141, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1149, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1155, 8, 2, 1, 2, 3, 2, 1158, 8, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1166, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1174, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1179, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1185, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 3, 2, 1194, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1201, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1206, 8, 2, 10, 2, 12, 2, 1209, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1214, 8, 2, 10, 2, 12, 2, 1217, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1231, 8, 2, 10, 2, 12, 2, 1234, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1258, 8, 2, 10, 2, 12, 2, 1261, 9, 2, 3, 2, 1263, 8, 2, 1, 2, 1, 2, 5, 2, 1267, 8, 2, 10, 2, 12, 2, 1270, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1276, 8, 2, 10, 2, 12, 2, 1279, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1285, 8, 2, 10, 2, 12, 2, 1288, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1293, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1298, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1303, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1310, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1315, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1320, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1327, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1333, 8, 2, 10, 2, 12, 2, 1336, 9, 2, 3, 2, 1338, 8, 2, 1, 3, 1, 3, 3, 3, 1342, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1354, 8, 6, 1, 6, 1, 6, 3, 6, 1358, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1365, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1481, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1489, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1497, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1506, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1516, 8, 6, 1, 7, 1, 7, 3, 7, 1520, 8, 7, 1, 7, 3, 7, 1523, 8, 7, 1, 7, 1, 7, 3, 7, 1527, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1533, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1545, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1557, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1562, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1571, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1579, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1584, 8, 14, 3, 14, 1586, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1594, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1599, 8, 14, 1, 14, 1, 14, 3, 14, 1603, 8, 14, 1, 14, 3, 14, 1606, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1614, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1619, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1628, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1633, 8, 14, 1, 14, 3, 14, 1636, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1641, 8, 14, 1, 14, 1, 14, 3, 14, 1645, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1650, 8, 14, 3, 14, 1652, 8, 14, 1, 15, 1, 15, 3, 15, 1656, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1663, 8, 16, 10, 16, 12, 16, 1666, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1673, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1679, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1690, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1695, 8, 21, 10, 21, 12, 21, 1698, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1704, 8, 22, 10, 22, 12, 22, 1707, 9, 22, 1, 23, 1, 23, 3, 23, 1711, 8, 23, 1, 23, 3, 23, 1714, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1737, 8, 25, 10, 25, 12, 25, 1740, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1749, 8, 27, 10, 27, 12, 27, 1752, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1758, 8, 28, 1, 28, 3, 28, 1761, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1766, 8, 29, 10, 29, 12, 29, 1769, 9, 29, 1, 29, 3, 29, 1772, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1778, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1784, 8, 31, 10, 31, 12, 31, 1787, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1793, 8, 32, 1, 32, 3, 32, 1796, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1802, 8, 33, 10, 33, 12, 33, 1805, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1813, 8, 34, 10, 34, 12, 34, 1816, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1826, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1834, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1840, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1850, 8, 39, 11, 39, 12, 39, 1851, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1859, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1866, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1878, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1884, 8, 39, 10, 39, 12, 39, 1887, 9, 39, 1, 39, 5, 39, 1890, 8, 39, 10, 39, 12, 39, 1893, 9, 39, 1, 39, 5, 39, 1896, 8, 39, 10, 39, 12, 39, 1899, 9, 39, 3, 39, 1901, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1917, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1922, 8, 47, 10, 47, 12, 47, 1925, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1935, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1942, 8, 50, 10, 50, 12, 50, 1945, 9, 50, 3, 50, 1947, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1954, 8, 50, 10, 50, 12, 50, 1957, 9, 50, 3, 50, 1959, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1966, 8, 50, 10, 50, 12, 50, 1969, 9, 50, 3, 50, 1971, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1978, 8, 50, 10, 50, 12, 50, 1981, 9, 50, 3, 50, 1983, 8, 50, 1, 50, 3, 50, 1986, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1991, 8, 50, 3, 50, 1993, 8, 50, 1, 50, 1, 50, 3, 50, 1997, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2008, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2014, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 5, 52, 2023, 8, 52, 10, 52, 12, 52, 2026, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2037, 8, 53, 1, 54, 1, 54, 3, 54, 2041, 8, 54, 1, 54, 3, 54, 2044, 8, 54, 1, 54, 1, 54, 3, 54, 2048, 8, 54, 1, 55, 1, 55, 4, 55, 2052, 8, 55, 11, 55, 12, 55, 2053, 1, 56, 1, 56, 3, 56, 2058, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2064, 8, 56, 10, 56, 12, 56, 2067, 9, 56, 1, 56, 3, 56, 2070, 8, 56, 1, 56, 3, 56, 2073, 8, 56, 1, 56, 3, 56, 2076, 8, 56, 1, 56, 3, 56, 2079, 8, 56, 1, 56, 1, 56, 3, 56, 2083, 8, 56, 1, 57, 1, 57, 3, 57, 2087, 8, 57, 1, 57, 5, 57, 2090, 8, 57, 10, 57, 12, 57, 2093, 9, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 3, 57, 2099, 8, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 5, 57, 2112, 8, 57, 10, 57, 12, 57, 2115, 9, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 3, 57, 2129, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2135, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2142, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2147, 8, 58, 1, 58, 3, 58, 2150, 8, 58, 1, 58, 3, 58, 2153, 8, 58, 1, 58, 1, 58, 3, 58, 2157, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2167, 8, 58, 1, 58, 1, 58, 3, 58, 2171, 8, 58, 3, 58, 2173, 8, 58, 1, 58, 3, 58, 2176, 8, 58, 1, 58, 1, 58, 3, 58, 2180, 8, 58, 1, 59, 1, 59, 5, 59, 2184, 8, 59, 10, 59, 12, 59, 2187, 9, 59, 1, 59, 3, 59, 2190, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2201, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2211, 8, 62, 1, 62, 1, 62, 3, 62, 2215, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2227, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2239, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2252, 8, 65, 10, 65, 12, 65, 2255, 9, 65, 1, 65, 1, 65, 3, 65, 2259, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2265, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2270, 8, 67, 10, 67, 12, 67, 2273, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2288, 8, 71, 1, 71, 5, 71, 2291, 8, 71, 10, 71, 12, 71, 2294, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2304, 8, 72, 10, 72, 12, 72, 2307, 9, 72, 1, 72, 1, 72, 3, 72, 2311, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2317, 8, 73, 10, 73, 12, 73, 2320, 9, 73, 1, 73, 5, 73, 2323, 8, 73, 10, 73, 12, 73, 2326, 9, 73, 1, 73, 3, 73, 2329, 8, 73, 1, 73, 3, 73, 2332, 8, 73, 1, 74, 1, 74, 1, 75, 3, 75, 2337, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2344, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2350, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2357, 8, 76, 10, 76, 12, 76, 2360, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2367, 8, 76, 10, 76, 12, 76, 2370, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2382, 8, 76, 10, 76, 12, 76, 2385, 9, 76, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 3, 76, 2391, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2396, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2403, 8, 78, 10, 78, 12, 78, 2406, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2416, 8, 78, 10, 78, 12, 78, 2419, 9, 78, 1, 78, 1, 78, 3, 78, 2423, 8, 78, 1, 79, 1, 79, 3, 79, 2427, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2434, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2439, 8, 80, 5, 80, 2441, 8, 80, 10, 80, 12, 80, 2444, 9, 80, 3, 80, 2446, 8, 80, 1, 80, 3, 80, 2449, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2461, 8, 81, 10, 81, 12, 81, 2464, 9, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2474, 8, 82, 10, 82, 12, 82, 2477, 9, 82, 1, 82, 1, 82, 3, 82, 2481, 8, 82, 1, 83, 1, 83, 3, 83, 2485, 8, 83, 1, 83, 3, 83, 2488, 8, 83, 1, 84, 1, 84, 3, 84, 2492, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2498, 8, 84, 1, 84, 3, 84, 2501, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2508, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2518, 8, 87, 10, 87, 12, 87, 2521, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2529, 8, 88, 10, 88, 12, 88, 2532, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2542, 8, 88, 10, 88, 12, 88, 2545, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 2553, 8, 89, 10, 89, 12, 89, 2556, 9, 89, 1, 89, 1, 89, 3, 89, 2560, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2568, 8, 92, 1, 93, 1, 93, 1, 94, 3, 94, 2573, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2587, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2594, 8, 97, 10, 97, 12, 97, 2597, 9, 97, 3, 97, 2599, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2604, 8, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2609, 8, 97, 10, 97, 12, 97, 2612, 9, 97, 3, 97, 2614, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 2620, 8, 99, 1, 99, 1, 99, 5, 99, 2624, 8, 99, 10, 99, 12, 99, 2627, 9, 99, 3, 99, 2629, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2634, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2639, 8, 101, 1, 101, 1, 101, 3, 101, 2643, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2649, 8, 101, 1, 101, 1, 101, 3, 101, 2653, 8, 101, 1, 102, 3, 102, 2656, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2661, 8, 102, 1, 102, 3, 102, 2664, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2669, 8, 102, 1, 102, 1, 102, 3, 102, 2673, 8, 102, 1, 102, 3, 102, 2676, 8, 102, 1, 102, 3, 102, 2679, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2685, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2690, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2697, 8, 104, 1, 105, 3, 105, 2700, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2718, 8, 105, 3, 105, 2720, 8, 105, 1, 105, 3, 105, 2723, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 2732, 8, 107, 10, 107, 12, 107, 2735, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2741, 8, 108, 10, 108, 12, 108, 2744, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 3, 109, 2750, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2756, 8, 110, 10, 110, 12, 110, 2759, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 2765, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2770, 8, 112, 1, 112, 3, 112, 2773, 8, 112, 1, 112, 3, 112, 2776, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2784, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2792, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2798, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 2804, 8, 113, 10, 113, 12, 113, 2807, 9, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2814, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2821, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2828, 8, 114, 3, 114, 2830, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2841, 8, 115, 10, 115, 12, 115, 2844, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2849, 8, 115, 3, 115, 2851, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 2859, 8, 115, 10, 115, 12, 115, 2862, 9, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2867, 8, 115, 3, 115, 2869, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 3, 117, 2877, 8, 117, 1, 118, 1, 118, 3, 118, 2881, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 2888, 8, 119, 10, 119, 12, 119, 2891, 9, 119, 3, 119, 2893, 8, 119, 1, 119, 1, 119, 1, 119, 1, 120, 3, 120, 2899, 8, 120, 1, 120, 1, 120, 3, 120, 2903, 8, 120, 3, 120, 2905, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2914, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2926, 8, 121, 3, 121, 2928, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2935, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2942, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2948, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 2954, 8, 121, 3, 121, 2956, 8, 121, 1, 122, 1, 122, 1, 122, 5, 122, 2961, 8, 122, 10, 122, 12, 122, 2964, 9, 122, 1, 123, 1, 123, 1, 123, 5, 123, 2969, 8, 123, 10, 123, 12, 123, 2972, 9, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2977, 8, 124, 10, 124, 12, 124, 2980, 9, 124, 1, 125, 1, 125, 1, 125, 3, 125, 2985, 8, 125, 1, 126, 1, 126, 1, 126, 3, 126, 2990, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 3, 127, 2997, 8, 127, 1, 127, 1, 127, 1, 128, 1, 128, 3, 128, 3003, 8, 128, 1, 128, 3, 128, 3006, 8, 128, 1, 128, 1, 128, 3, 128, 3010, 8, 128, 3, 128, 3012, 8, 128, 1, 129, 1, 129, 1, 129, 5, 129, 3017, 8, 129, 10, 129, 12, 129, 3020, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 3026, 8, 130, 10, 130, 12, 130, 3029, 9, 130, 1, 130, 1, 130, 1, 131, 1, 131, 3, 131, 3035, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3043, 8, 132, 10, 132, 12, 132, 3046, 9, 132, 1, 132, 1, 132, 3, 132, 3050, 8, 132, 1, 133, 1, 133, 3, 133, 3054, 8, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 3064, 8, 136, 1, 137, 1, 137, 1, 137, 5, 137, 3069, 8, 137, 10, 137, 12, 137, 3072, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3084, 8, 138, 3, 138, 3086, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3094, 8, 138, 10, 138, 12, 138, 3097, 9, 138, 1, 139, 3, 139, 3100, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3108, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3115, 8, 139, 10, 139, 12, 139, 3118, 9, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3123, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3131, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3136, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3146, 8, 139, 10, 139, 12, 139, 3149, 9, 139, 1, 139, 1, 139, 3, 139, 3153, 8, 139, 1, 139, 3, 139, 3156, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3162, 8, 139, 1, 139, 1, 139, 3, 139, 3166, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3171, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3176, 8, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3181, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3187, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 5, 140, 3208, 8, 140, 10, 140, 12, 140, 3211, 9, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3221, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3233, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3243, 8, 142, 11, 142, 12, 142, 3244, 1, 142, 1, 142, 3, 142, 3249, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3256, 8, 142, 11, 142, 12, 142, 3257, 1, 142, 1, 142, 3, 142, 3262, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3278, 8, 142, 10, 142, 12, 142, 3281, 9, 142, 3, 142, 3283, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3291, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3300, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3309, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3330, 8, 142, 11, 142, 12, 142, 3331, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3348, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3353, 8, 142, 10, 142, 12, 142, 3356, 9, 142, 3, 142, 3358, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3367, 8, 142, 1, 142, 1, 142, 3, 142, 3371, 8, 142, 1, 142, 1, 142, 3, 142, 3375, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 4, 142, 3385, 8, 142, 11, 142, 12, 142, 3386, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3412, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3419, 8, 142, 1, 142, 3, 142, 3422, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3437, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3458, 8, 142, 1, 142, 1, 142, 3, 142, 3462, 8, 142, 3, 142, 3464, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 3474, 8, 142, 10, 142, 12, 142, 3477, 9, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3486, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 4, 144, 3499, 8, 144, 11, 144, 12, 144, 3500, 3, 144, 3503, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 3516, 8, 149, 1, 150, 1, 150, 3, 150, 3520, 8, 150, 1, 151, 1, 151, 1, 151, 4, 151, 3525, 8, 151, 11, 151, 12, 151, 3526, 1, 152, 1, 152, 1, 152, 3, 152, 3532, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 3, 154, 3540, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3545, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 3554, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 3586, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3603, 8, 159, 1, 159, 1, 159, 3, 159, 3607, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3613, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3619, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 5, 159, 3626, 8, 159, 10, 159, 12, 159, 3629, 9, 159, 1, 159, 3, 159, 3632, 8, 159, 3, 159, 3634, 8, 159, 1, 160, 1, 160, 1, 160, 5, 160, 3639, 8, 160, 10, 160, 12, 160, 3642, 9, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3647, 8, 161, 10, 161, 12, 161, 3650, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3655, 8, 162, 10, 162, 12, 162, 3658, 9, 162, 1, 163, 1, 163, 1, 163, 5, 163, 3663, 8, 163, 10, 163, 12, 163, 3666, 9, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3673, 8, 164, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3684, 8, 167, 10, 167, 12, 167, 3687, 9, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3693, 8, 168, 1, 168, 3, 168, 3696, 8, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3701, 8, 169, 10, 169, 12, 169, 3704, 9, 169, 1, 170, 1, 170, 1, 170, 5, 170, 3709, 8, 170, 10, 170, 12, 170, 3712, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 3719, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3731, 8, 173, 10, 173, 12, 173, 3734, 9, 173, 1, 174, 1, 174, 3, 174, 3738, 8, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3743, 8, 174, 1, 174, 3, 174, 3746, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 3757, 8, 176, 10, 176, 12, 176, 3760, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3781, 8, 179, 10, 179, 12, 179, 3784, 9, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3791, 8, 179, 10, 179, 12, 179, 3794, 9, 179, 3, 179, 3796, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 3803, 8, 179, 10, 179, 12, 179, 3806, 9, 179, 3, 179, 3808, 8, 179, 3, 179, 3810, 8, 179, 1, 179, 3, 179, 3813, 8, 179, 1, 179, 3, 179, 3816, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3834, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3843, 8, 181, 1, 182, 1, 182, 1, 182, 5, 182, 3848, 8, 182, 10, 182, 12, 182, 3851, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 3862, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 5, 185, 3869, 8, 185, 10, 185, 12, 185, 3872, 9, 185, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 4, 187, 3879, 8, 187, 11, 187, 12, 187, 3880, 1, 187, 3, 187, 3884, 8, 187, 1, 188, 1, 188, 3, 188, 3888, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3894, 8, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 3, 192, 3901, 8, 192, 1, 192, 1, 192, 3, 192, 3905, 8, 192, 1, 192, 1, 192, 3, 192, 3909, 8, 192, 1, 192, 1, 192, 3, 192, 3913, 8, 192, 1, 192, 1, 192, 3, 192, 3917, 8, 192, 1, 192, 1, 192, 3, 192, 3921, 8, 192, 1, 192, 1, 192, 3, 192, 3925, 8, 192, 1, 192, 1, 192, 3, 192, 3929, 8, 192, 1, 192, 1, 192, 3, 192, 3933, 8, 192, 1, 192, 1, 192, 3, 192, 3937, 8, 192, 1, 192, 3, 192, 3940, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 3953, 8, 193, 1, 194, 1, 194, 1, 195, 1, 195, 3, 195, 3959, 8, 195, 1, 196, 1, 196, 3, 196, 3963, 8, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 9, 1137, 1207, 1215, 1232, 1259, 1268, 1277, 1286, 1334, 4, 104, 276, 280, 284, 200, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4586, 0, 403, 1, 0, 0, 0, 2, 408, 1, 0, 0, 0, 4, 1337, 1, 0, 0, 0, 6, 1341, 1, 0, 0, 0, 8, 1343, 1, 0, 0, 0, 10, 1345, 1, 0, 0, 0, 12, 1515, 1, 0, 0, 0, 14, 1517, 1, 0, 0, 0, 16, 1532, 1, 0, 0, 0, 18, 1538, 1, 0, 0, 0, 20, 1550, 1, 0, 0, 0, 22, 1563, 1, 0, 0, 0, 24, 1566, 1, 0, 0, 0, 26, 1570, 1, 0, 0, 0, 28, 1651, 1, 0, 0, 0, 30, 1653, 1, 0, 0, 0, 32, 1657, 1, 0, 0, 0, 34, 1678, 1, 0, 0, 0, 36, 1680, 1, 0, 0, 0, 38, 1682, 1, 0, 0, 0, 40, 1689, 1, 0, 0, 0, 42, 1691, 1, 0, 0, 0, 44, 1699, 1, 0, 0, 0, 46, 1708, 1, 0, 0, 0, 48, 1719, 1, 0, 0, 0, 50, 1738, 1, 0, 0, 0, 52, 1741, 1, 0, 0, 0, 54, 1744, 1, 0, 0, 0, 56, 1755, 1, 0, 0, 0, 58, 1771, 1, 0, 0, 0, 60, 1777, 1, 0, 0, 0, 62, 1779, 1, 0, 0, 0, 64, 1790, 1, 0, 0, 0, 66, 1797, 1, 0, 0, 0, 68, 1808, 1, 0, 0, 0, 70, 1825, 1, 0, 0, 0, 72, 1833, 1, 0, 0, 0, 74, 1835, 1, 0, 0, 0, 76, 1841, 1, 0, 0, 0, 78, 1900, 1, 0, 0, 0, 80, 1902, 1, 0, 0, 0, 82, 1904, 1, 0, 0, 0, 84, 1906, 1, 0, 0, 0, 86, 1908, 1, 0, 0, 0, 88, 1910, 1, 0, 0, 0, 90, 1912, 1, 0, 0, 0, 92, 1916, 1, 0, 0, 0, 94, 1918, 1, 0, 0, 0, 96, 1926, 1, 0, 0, 0, 98, 1934, 1, 0, 0, 0, 100, 1946, 1, 0, 0, 0, 102, 1998, 1, 0, 0, 0, 104, 2001, 1, 0, 0, 0, 106, 2036, 1, 0, 0, 0, 108, 2040, 1, 0, 0, 0, 110, 2049, 1, 0, 0, 0, 112, 2082, 1, 0, 0, 0, 114, 2128, 1, 0, 0, 0, 116, 2149, 1, 0, 0, 0, 118, 2181, 1, 0, 0, 0, 120, 2193, 1, 0, 0, 0, 122, 2196, 1, 0, 0, 0, 124, 2205, 1, 0, 0, 0, 126, 2219, 1, 0, 0, 0, 128, 2238, 1, 0, 0, 0, 130, 2258, 1, 0, 0, 0, 132, 2264, 1, 0, 0, 0, 134, 2266, 1, 0, 0, 0, 136, 2274, 1, 0, 0, 0, 138, 2278, 1, 0, 0, 0, 140, 2281, 1, 0, 0, 0, 142, 2284, 1, 0, 0, 0, 144, 2310, 1, 0, 0, 0, 146, 2312, 1, 0, 0, 0, 148, 2333, 1, 0, 0, 0, 150, 2349, 1, 0, 0, 0, 152, 2390, 1, 0, 0, 0, 154, 2395, 1, 0, 0, 0, 156, 2422, 1, 0, 0, 0, 158, 2426, 1, 0, 0, 0, 160, 2448, 1, 0, 0, 0, 162, 2450, 1, 0, 0, 0, 164, 2480, 1, 0, 0, 0, 166, 2482, 1, 0, 0, 0, 168, 2489, 1, 0, 0, 0, 170, 2502, 1, 0, 0, 0, 172, 2507, 1, 0, 0, 0, 174, 2509, 1, 0, 0, 0, 176, 2524, 1, 0, 0, 0, 178, 2548, 1, 0, 0, 0, 180, 2561, 1, 0, 0, 0, 182, 2563, 1, 0, 0, 0, 184, 2565, 1, 0, 0, 0, 186, 2569, 1, 0, 0, 0, 188, 2572, 1, 0, 0, 0, 190, 2576, 1, 0, 0, 0, 192, 2580, 1, 0, 0, 0, 194, 2583, 1, 0, 0, 0, 196, 2615, 1, 0, 0, 0, 198, 2628, 1, 0, 0, 0, 200, 2633, 1, 0, 0, 0, 202, 2652, 1, 0, 0, 0, 204, 2678, 1, 0, 0, 0, 206, 2684, 1, 0, 0, 0, 208, 2686, 1, 0, 0, 0, 210, 2722, 1, 0, 0, 0, 212, 2724, 1, 0, 0, 0, 214, 2728, 1, 0, 0, 0, 216, 2736, 1, 0, 0, 0, 218, 2747, 1, 0, 0, 0, 220, 2751, 1, 0, 0, 0, 222, 2762, 1, 0, 0, 0, 224, 2797, 1, 0, 0, 0, 226, 2799, 1, 0, 0, 0, 228, 2829, 1, 0, 0, 0, 230, 2850, 1, 0, 0, 0, 232, 2870, 1, 0, 0, 0, 234, 2876, 1, 0, 0, 0, 236, 2880, 1, 0, 0, 0, 238, 2882, 1, 0, 0, 0, 240, 2904, 1, 0, 0, 0, 242, 2955, 1, 0, 0, 0, 244, 2957, 1, 0, 0, 0, 246, 2965, 1, 0, 0, 0, 248, 2973, 1, 0, 0, 0, 250, 2981, 1, 0, 0, 0, 252, 2989, 1, 0, 0, 0, 254, 2996, 1, 0, 0, 0, 256, 3002, 1, 0, 0, 0, 258, 3013, 1, 0, 0, 0, 260, 3021, 1, 0, 0, 0, 262, 3034, 1, 0, 0, 0, 264, 3049, 1, 0, 0, 0, 266, 3053, 1, 0, 0, 0, 268, 3055, 1, 0, 0, 0, 270, 3057, 1, 0, 0, 0, 272, 3063, 1, 0, 0, 0, 274, 3065, 1, 0, 0, 0, 276, 3085, 1, 0, 0, 0, 278, 3180, 1, 0, 0, 0, 280, 3186, 1, 0, 0, 0, 282, 3212, 1, 0, 0, 0, 284, 3463, 1, 0, 0, 0, 286, 3485, 1, 0, 0, 0, 288, 3502, 1, 0, 0, 0, 290, 3504, 1, 0, 0, 0, 292, 3506, 1, 0, 0, 0, 294, 3508, 1, 0, 0, 0, 296, 3510, 1, 0, 0, 0, 298, 3512, 1, 0, 0, 0, 300, 3517, 1, 0, 0, 0, 302, 3524, 1, 0, 0, 0, 304, 3528, 1, 0, 0, 0, 306, 3533, 1, 0, 0, 0, 308, 3539, 1, 0, 0, 0, 310, 3546, 1, 0, 0, 0, 312, 3548, 1, 0, 0, 0, 314, 3553, 1, 0, 0, 0, 316, 3585, 1, 0, 0, 0, 318, 3633, 1, 0, 0, 0, 320, 3635, 1, 0, 0, 0, 322, 3643, 1, 0, 0, 0, 324, 3651, 1, 0, 0, 0, 326, 3659, 1, 0, 0, 0, 328, 3672, 1, 0, 0, 0, 330, 3674, 1, 0, 0, 0, 332, 3677, 1, 0, 0, 0, 334, 3680, 1, 0, 0, 0, 336, 3688, 1, 0, 0, 0, 338, 3697, 1, 0, 0, 0, 340, 3705, 1, 0, 0, 0, 342, 3718, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3727, 1, 0, 0, 0, 348, 3735, 1, 0, 0, 0, 350, 3747, 1, 0, 0, 0, 352, 3752, 1, 0, 0, 0, 354, 3761, 1, 0, 0, 0, 356, 3765, 1, 0, 0, 0, 358, 3815, 1, 0, 0, 0, 360, 3833, 1, 0, 0, 0, 362, 3842, 1, 0, 0, 0, 364, 3844, 1, 0, 0, 0, 366, 3861, 1, 0, 0, 0, 368, 3863, 1, 0, 0, 0, 370, 3865, 1, 0, 0, 0, 372, 3873, 1, 0, 0, 0, 374, 3883, 1, 0, 0, 0, 376, 3887, 1, 0, 0, 0, 378, 3893, 1, 0, 0, 0, 380, 3895, 1, 0, 0, 0, 382, 3897, 1, 0, 0, 0, 384, 3939, 1, 0, 0, 0, 386, 3952, 1, 0, 0, 0, 388, 3954, 1, 0, 0, 0, 390, 3958, 1, 0, 0, 0, 392, 3962, 1, 0, 0, 0, 394, 3964, 1, 0, 0, 0, 396, 3966, 1, 0, 0, 0, 398, 3968, 1, 0, 0, 0, 400, 402, 3, 2, 1, 0, 401, 400, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 407, 5, 0, 0, 1, 407, 1, 1, 0, 0, 0, 408, 410, 3, 4, 2, 0, 409, 411, 5, 1, 0, 0, 410, 409, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 3, 1, 0, 0, 0, 412, 1338, 3, 26, 13, 0, 413, 415, 3, 44, 22, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1338, 3, 78, 39, 0, 417, 419, 5, 330, 0, 0, 418, 420, 3, 36, 18, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 1338, 3, 80, 40, 0, 422, 423, 5, 269, 0, 0, 423, 426, 5, 37, 0, 0, 424, 427, 3, 376, 188, 0, 425, 427, 3, 388, 194, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 1338, 1, 0, 0, 0, 428, 429, 5, 59, 0, 0, 429, 431, 3, 36, 18, 0, 430, 432, 3, 190, 95, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 441, 3, 82, 41, 0, 434, 440, 3, 24, 12, 0, 435, 440, 3, 22, 11, 0, 436, 437, 5, 346, 0, 0, 437, 438, 7, 0, 0, 0, 438, 440, 3, 54, 27, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 440, 443, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 1338, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 444, 445, 5, 11, 0, 0, 445, 446, 3, 36, 18, 0, 446, 447, 3, 80, 40, 0, 447, 448, 5, 269, 0, 0, 448, 449, 7, 0, 0, 0, 449, 450, 3, 54, 27, 0, 450, 1338, 1, 0, 0, 0, 451, 452, 5, 11, 0, 0, 452, 453, 3, 36, 18, 0, 453, 454, 3, 80, 40, 0, 454, 455, 5, 269, 0, 0, 455, 456, 3, 22, 11, 0, 456, 1338, 1, 0, 0, 0, 457, 458, 5, 96, 0, 0, 458, 460, 3, 36, 18, 0, 459, 461, 3, 192, 96, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 3, 80, 40, 0, 463, 465, 7, 1, 0, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 1338, 1, 0, 0, 0, 466, 467, 5, 273, 0, 0, 467, 470, 3, 38, 19, 0, 468, 469, 7, 2, 0, 0, 469, 471, 3, 246, 123, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 476, 1, 0, 0, 0, 472, 474, 5, 163, 0, 0, 473, 472, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 477, 3, 388, 194, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1338, 1, 0, 0, 0, 478, 483, 3, 14, 7, 0, 479, 480, 5, 2, 0, 0, 480, 481, 3, 338, 169, 0, 481, 482, 5, 3, 0, 0, 482, 484, 1, 0, 0, 0, 483, 479, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 1, 0, 0, 0, 485, 487, 3, 48, 24, 0, 486, 485, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 493, 3, 50, 25, 0, 489, 491, 5, 20, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 494, 3, 26, 13, 0, 493, 490, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 1338, 1, 0, 0, 0, 495, 496, 5, 59, 0, 0, 496, 498, 5, 293, 0, 0, 497, 499, 3, 190, 95, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 3, 84, 42, 0, 501, 502, 5, 163, 0, 0, 502, 512, 3, 86, 43, 0, 503, 511, 3, 48, 24, 0, 504, 511, 3, 242, 121, 0, 505, 511, 3, 70, 35, 0, 506, 511, 3, 22, 11, 0, 507, 508, 5, 297, 0, 0, 508, 511, 3, 54, 27, 0, 509, 511, 3, 52, 26, 0, 510, 503, 1, 0, 0, 0, 510, 504, 1, 0, 0, 0, 510, 505, 1, 0, 0, 0, 510, 506, 1, 0, 0, 0, 510, 507, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 1338, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 520, 3, 16, 8, 0, 516, 517, 5, 2, 0, 0, 517, 518, 3, 338, 169, 0, 518, 519, 5, 3, 0, 0, 519, 521, 1, 0, 0, 0, 520, 516, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 524, 3, 48, 24, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 530, 3, 50, 25, 0, 526, 528, 5, 20, 0, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 3, 26, 13, 0, 530, 527, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 1338, 1, 0, 0, 0, 532, 533, 5, 13, 0, 0, 533, 534, 5, 293, 0, 0, 534, 536, 3, 86, 43, 0, 535, 537, 3, 32, 16, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 5, 55, 0, 0, 539, 547, 5, 282, 0, 0, 540, 548, 5, 196, 0, 0, 541, 542, 5, 119, 0, 0, 542, 543, 5, 50, 0, 0, 543, 548, 3, 94, 47, 0, 544, 545, 5, 119, 0, 0, 545, 546, 5, 10, 0, 0, 546, 548, 5, 50, 0, 0, 547, 540, 1, 0, 0, 0, 547, 541, 1, 0, 0, 0, 547, 544, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 1338, 1, 0, 0, 0, 549, 550, 5, 13, 0, 0, 550, 553, 5, 294, 0, 0, 551, 552, 7, 2, 0, 0, 552, 554, 3, 80, 40, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 5, 55, 0, 0, 556, 558, 5, 282, 0, 0, 557, 559, 5, 196, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 1338, 1, 0, 0, 0, 560, 561, 5, 11, 0, 0, 561, 562, 5, 293, 0, 0, 562, 563, 3, 86, 43, 0, 563, 564, 5, 8, 0, 0, 564, 565, 5, 49, 0, 0, 565, 566, 3, 322, 161, 0, 566, 1338, 1, 0, 0, 0, 567, 568, 5, 11, 0, 0, 568, 569, 5, 293, 0, 0, 569, 570, 3, 86, 43, 0, 570, 571, 5, 8, 0, 0, 571, 572, 5, 50, 0, 0, 572, 573, 5, 2, 0, 0, 573, 574, 3, 320, 160, 0, 574, 575, 5, 3, 0, 0, 575, 1338, 1, 0, 0, 0, 576, 577, 5, 11, 0, 0, 577, 578, 5, 293, 0, 0, 578, 579, 3, 86, 43, 0, 579, 580, 5, 241, 0, 0, 580, 581, 5, 49, 0, 0, 581, 582, 3, 92, 46, 0, 582, 583, 5, 309, 0, 0, 583, 584, 3, 96, 48, 0, 584, 1338, 1, 0, 0, 0, 585, 586, 5, 11, 0, 0, 586, 587, 5, 293, 0, 0, 587, 588, 3, 86, 43, 0, 588, 589, 5, 96, 0, 0, 589, 591, 5, 49, 0, 0, 590, 592, 3, 192, 96, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 3, 92, 46, 0, 594, 1338, 1, 0, 0, 0, 595, 596, 5, 11, 0, 0, 596, 597, 5, 293, 0, 0, 597, 598, 3, 86, 43, 0, 598, 599, 5, 96, 0, 0, 599, 601, 5, 50, 0, 0, 600, 602, 3, 192, 96, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 2, 0, 0, 604, 605, 3, 94, 47, 0, 605, 606, 5, 3, 0, 0, 606, 1338, 1, 0, 0, 0, 607, 612, 5, 11, 0, 0, 608, 609, 5, 293, 0, 0, 609, 613, 3, 86, 43, 0, 610, 611, 5, 338, 0, 0, 611, 613, 3, 90, 45, 0, 612, 608, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 5, 241, 0, 0, 615, 616, 5, 309, 0, 0, 616, 617, 3, 246, 123, 0, 617, 1338, 1, 0, 0, 0, 618, 623, 5, 11, 0, 0, 619, 620, 5, 293, 0, 0, 620, 624, 3, 86, 43, 0, 621, 622, 5, 338, 0, 0, 622, 624, 3, 90, 45, 0, 623, 619, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 5, 269, 0, 0, 626, 627, 5, 297, 0, 0, 627, 628, 3, 54, 27, 0, 628, 1338, 1, 0, 0, 0, 629, 634, 5, 11, 0, 0, 630, 631, 5, 293, 0, 0, 631, 635, 3, 86, 43, 0, 632, 633, 5, 338, 0, 0, 633, 635, 3, 90, 45, 0, 634, 630, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 5, 328, 0, 0, 637, 639, 5, 297, 0, 0, 638, 640, 3, 192, 96, 0, 639, 638, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 3, 54, 27, 0, 642, 1338, 1, 0, 0, 0, 643, 644, 5, 11, 0, 0, 644, 645, 5, 293, 0, 0, 645, 646, 3, 86, 43, 0, 646, 648, 7, 3, 0, 0, 647, 649, 5, 49, 0, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 3, 92, 46, 0, 651, 653, 3, 386, 193, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 1338, 1, 0, 0, 0, 654, 655, 5, 11, 0, 0, 655, 656, 5, 293, 0, 0, 656, 658, 3, 86, 43, 0, 657, 659, 3, 32, 16, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 5, 39, 0, 0, 661, 663, 5, 49, 0, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 3, 92, 46, 0, 665, 667, 3, 336, 168, 0, 666, 668, 3, 314, 157, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 1338, 1, 0, 0, 0, 669, 670, 5, 11, 0, 0, 670, 671, 5, 293, 0, 0, 671, 673, 3, 86, 43, 0, 672, 674, 3, 32, 16, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 5, 244, 0, 0, 676, 677, 5, 50, 0, 0, 677, 678, 5, 2, 0, 0, 678, 679, 3, 324, 162, 0, 679, 680, 5, 3, 0, 0, 680, 1338, 1, 0, 0, 0, 681, 682, 5, 11, 0, 0, 682, 683, 5, 293, 0, 0, 683, 685, 3, 86, 43, 0, 684, 686, 3, 32, 16, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 269, 0, 0, 688, 689, 5, 266, 0, 0, 689, 693, 3, 388, 194, 0, 690, 691, 5, 346, 0, 0, 691, 692, 5, 267, 0, 0, 692, 694, 3, 54, 27, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 1338, 1, 0, 0, 0, 695, 696, 5, 11, 0, 0, 696, 697, 5, 293, 0, 0, 697, 699, 3, 86, 43, 0, 698, 700, 3, 32, 16, 0, 699, 698, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 269, 0, 0, 702, 703, 5, 267, 0, 0, 703, 704, 3, 54, 27, 0, 704, 1338, 1, 0, 0, 0, 705, 710, 5, 11, 0, 0, 706, 707, 5, 293, 0, 0, 707, 711, 3, 86, 43, 0, 708, 709, 5, 338, 0, 0, 709, 711, 3, 90, 45, 0, 710, 706, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 714, 5, 8, 0, 0, 713, 715, 3, 190, 95, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 717, 1, 0, 0, 0, 716, 718, 3, 30, 15, 0, 717, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 1338, 1, 0, 0, 0, 721, 722, 5, 11, 0, 0, 722, 723, 5, 293, 0, 0, 723, 724, 3, 86, 43, 0, 724, 725, 3, 32, 16, 0, 725, 726, 5, 241, 0, 0, 726, 727, 5, 309, 0, 0, 727, 728, 3, 32, 16, 0, 728, 1338, 1, 0, 0, 0, 729, 734, 5, 11, 0, 0, 730, 731, 5, 293, 0, 0, 731, 735, 3, 86, 43, 0, 732, 733, 5, 338, 0, 0, 733, 735, 3, 90, 45, 0, 734, 730, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 5, 96, 0, 0, 737, 739, 3, 192, 96, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 745, 3, 32, 16, 0, 741, 742, 5, 4, 0, 0, 742, 744, 3, 32, 16, 0, 743, 741, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 749, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 750, 5, 230, 0, 0, 749, 748, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 1338, 1, 0, 0, 0, 751, 752, 5, 11, 0, 0, 752, 753, 5, 293, 0, 0, 753, 755, 3, 86, 43, 0, 754, 756, 3, 32, 16, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 5, 269, 0, 0, 758, 759, 3, 22, 11, 0, 759, 1338, 1, 0, 0, 0, 760, 761, 5, 11, 0, 0, 761, 762, 5, 293, 0, 0, 762, 763, 3, 86, 43, 0, 763, 764, 5, 237, 0, 0, 764, 765, 5, 219, 0, 0, 765, 1338, 1, 0, 0, 0, 766, 767, 5, 11, 0, 0, 767, 768, 5, 176, 0, 0, 768, 769, 5, 338, 0, 0, 769, 770, 3, 90, 45, 0, 770, 771, 7, 4, 0, 0, 771, 772, 5, 248, 0, 0, 772, 1338, 1, 0, 0, 0, 773, 774, 5, 11, 0, 0, 774, 775, 5, 176, 0, 0, 775, 776, 5, 338, 0, 0, 776, 777, 3, 90, 45, 0, 777, 778, 5, 269, 0, 0, 778, 779, 5, 297, 0, 0, 779, 780, 3, 54, 27, 0, 780, 1338, 1, 0, 0, 0, 781, 782, 5, 96, 0, 0, 782, 784, 5, 293, 0, 0, 783, 785, 3, 192, 96, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 788, 3, 86, 43, 0, 787, 789, 5, 230, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 1338, 1, 0, 0, 0, 790, 791, 5, 96, 0, 0, 791, 793, 5, 338, 0, 0, 792, 794, 3, 192, 96, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 1338, 3, 90, 45, 0, 796, 797, 5, 96, 0, 0, 797, 798, 5, 176, 0, 0, 798, 800, 5, 338, 0, 0, 799, 801, 3, 192, 96, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 1338, 3, 90, 45, 0, 803, 806, 5, 59, 0, 0, 804, 805, 5, 208, 0, 0, 805, 807, 5, 244, 0, 0, 806, 804, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 812, 1, 0, 0, 0, 808, 810, 5, 128, 0, 0, 809, 808, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 813, 5, 298, 0, 0, 812, 809, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 816, 5, 338, 0, 0, 815, 817, 3, 190, 95, 0, 816, 815, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 820, 3, 88, 44, 0, 819, 821, 3, 220, 110, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 830, 1, 0, 0, 0, 822, 829, 3, 24, 12, 0, 823, 824, 5, 218, 0, 0, 824, 825, 5, 203, 0, 0, 825, 829, 3, 212, 106, 0, 826, 827, 5, 297, 0, 0, 827, 829, 3, 54, 27, 0, 828, 822, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 834, 5, 20, 0, 0, 834, 835, 3, 26, 13, 0, 835, 1338, 1, 0, 0, 0, 836, 839, 5, 59, 0, 0, 837, 838, 5, 208, 0, 0, 838, 840, 5, 244, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 128, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 5, 298, 0, 0, 845, 846, 5, 338, 0, 0, 846, 851, 3, 88, 44, 0, 847, 848, 5, 2, 0, 0, 848, 849, 3, 334, 167, 0, 849, 850, 5, 3, 0, 0, 850, 852, 1, 0, 0, 0, 851, 847, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 856, 3, 48, 24, 0, 854, 855, 5, 207, 0, 0, 855, 857, 3, 54, 27, 0, 856, 854, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 1338, 1, 0, 0, 0, 858, 859, 5, 11, 0, 0, 859, 860, 5, 338, 0, 0, 860, 862, 3, 90, 45, 0, 861, 863, 5, 20, 0, 0, 862, 861, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 3, 26, 13, 0, 865, 1338, 1, 0, 0, 0, 866, 869, 5, 59, 0, 0, 867, 868, 5, 208, 0, 0, 868, 870, 5, 244, 0, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 1, 0, 0, 0, 871, 873, 5, 298, 0, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 5, 125, 0, 0, 875, 877, 3, 190, 95, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 3, 368, 184, 0, 879, 880, 5, 20, 0, 0, 880, 890, 3, 388, 194, 0, 881, 882, 5, 332, 0, 0, 882, 887, 3, 76, 38, 0, 883, 884, 5, 4, 0, 0, 884, 886, 3, 76, 38, 0, 885, 883, 1, 0, 0, 0, 886, 889, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 890, 881, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 1338, 1, 0, 0, 0, 892, 893, 5, 59, 0, 0, 893, 894, 5, 176, 0, 0, 894, 896, 5, 338, 0, 0, 895, 897, 3, 190, 95, 0, 896, 895, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 900, 3, 88, 44, 0, 899, 901, 3, 48, 24, 0, 900, 899, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 917, 1, 0, 0, 0, 902, 903, 5, 207, 0, 0, 903, 916, 3, 54, 27, 0, 904, 905, 5, 218, 0, 0, 905, 906, 5, 31, 0, 0, 906, 916, 3, 260, 130, 0, 907, 916, 3, 20, 10, 0, 908, 916, 3, 18, 9, 0, 909, 916, 3, 242, 121, 0, 910, 916, 3, 70, 35, 0, 911, 916, 3, 22, 11, 0, 912, 916, 3, 24, 12, 0, 913, 914, 5, 297, 0, 0, 914, 916, 3, 54, 27, 0, 915, 902, 1, 0, 0, 0, 915, 904, 1, 0, 0, 0, 915, 907, 1, 0, 0, 0, 915, 908, 1, 0, 0, 0, 915, 909, 1, 0, 0, 0, 915, 910, 1, 0, 0, 0, 915, 911, 1, 0, 0, 0, 915, 912, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 919, 1, 0, 0, 0, 917, 915, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 917, 1, 0, 0, 0, 920, 921, 5, 20, 0, 0, 921, 922, 3, 26, 13, 0, 922, 1338, 1, 0, 0, 0, 923, 925, 5, 96, 0, 0, 924, 926, 5, 298, 0, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 929, 5, 125, 0, 0, 928, 930, 3, 192, 96, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 1338, 3, 366, 183, 0, 932, 935, 5, 81, 0, 0, 933, 934, 5, 208, 0, 0, 934, 936, 5, 244, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 1, 0, 0, 0, 937, 939, 5, 336, 0, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 3, 366, 183, 0, 941, 943, 3, 318, 159, 0, 942, 941, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 946, 3, 332, 166, 0, 945, 944, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 1338, 1, 0, 0, 0, 947, 948, 5, 96, 0, 0, 948, 949, 5, 298, 0, 0, 949, 951, 5, 336, 0, 0, 950, 952, 3, 192, 96, 0, 951, 950, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 956, 1, 0, 0, 0, 953, 957, 3, 86, 43, 0, 954, 957, 3, 90, 45, 0, 955, 957, 3, 366, 183, 0, 956, 953, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, 0, 957, 1338, 1, 0, 0, 0, 958, 960, 5, 106, 0, 0, 959, 961, 7, 5, 0, 0, 960, 959, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 1338, 3, 4, 2, 0, 963, 964, 5, 273, 0, 0, 964, 967, 5, 294, 0, 0, 965, 966, 7, 2, 0, 0, 966, 968, 3, 80, 40, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 973, 1, 0, 0, 0, 969, 971, 5, 163, 0, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 388, 194, 0, 973, 970, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1338, 1, 0, 0, 0, 975, 976, 5, 273, 0, 0, 976, 977, 5, 293, 0, 0, 977, 980, 5, 108, 0, 0, 978, 979, 7, 2, 0, 0, 979, 981, 3, 80, 40, 0, 980, 978, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 5, 163, 0, 0, 983, 985, 3, 388, 194, 0, 984, 986, 3, 32, 16, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1338, 1, 0, 0, 0, 987, 988, 5, 273, 0, 0, 988, 989, 5, 297, 0, 0, 989, 994, 3, 86, 43, 0, 990, 991, 5, 2, 0, 0, 991, 992, 3, 58, 29, 0, 992, 993, 5, 3, 0, 0, 993, 995, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 1338, 1, 0, 0, 0, 996, 997, 5, 273, 0, 0, 997, 998, 5, 50, 0, 0, 998, 999, 7, 2, 0, 0, 999, 1002, 3, 86, 43, 0, 1000, 1001, 7, 2, 0, 0, 1001, 1003, 3, 80, 40, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1338, 1, 0, 0, 0, 1004, 1005, 5, 273, 0, 0, 1005, 1008, 5, 339, 0, 0, 1006, 1007, 7, 2, 0, 0, 1007, 1009, 3, 80, 40, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1014, 1, 0, 0, 0, 1010, 1012, 5, 163, 0, 0, 1011, 1010, 1, 0, 0, 0, 1011, 1012, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1015, 3, 388, 194, 0, 1014, 1011, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1338, 1, 0, 0, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1018, 5, 219, 0, 0, 1018, 1020, 3, 86, 43, 0, 1019, 1021, 3, 32, 16, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1338, 1, 0, 0, 0, 1022, 1024, 5, 273, 0, 0, 1023, 1025, 3, 148, 74, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1029, 5, 126, 0, 0, 1027, 1028, 7, 2, 0, 0, 1028, 1030, 3, 80, 40, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1038, 1, 0, 0, 0, 1031, 1033, 5, 163, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1036, 1, 0, 0, 0, 1034, 1037, 3, 246, 123, 0, 1035, 1037, 3, 388, 194, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1035, 1, 0, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1032, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1338, 1, 0, 0, 0, 1040, 1041, 5, 273, 0, 0, 1041, 1042, 5, 59, 0, 0, 1042, 1043, 5, 293, 0, 0, 1043, 1046, 3, 86, 43, 0, 1044, 1045, 5, 20, 0, 0, 1045, 1047, 5, 266, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1338, 1, 0, 0, 0, 1048, 1049, 5, 273, 0, 0, 1049, 1050, 5, 62, 0, 0, 1050, 1338, 3, 36, 18, 0, 1051, 1052, 5, 273, 0, 0, 1052, 1057, 5, 38, 0, 0, 1053, 1055, 5, 163, 0, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 3, 388, 194, 0, 1057, 1054, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1338, 1, 0, 0, 0, 1059, 1060, 5, 273, 0, 0, 1060, 1061, 5, 176, 0, 0, 1061, 1064, 5, 339, 0, 0, 1062, 1063, 7, 2, 0, 0, 1063, 1065, 3, 80, 40, 0, 1064, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1070, 1, 0, 0, 0, 1066, 1068, 5, 163, 0, 0, 1067, 1066, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 3, 388, 194, 0, 1070, 1067, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1338, 1, 0, 0, 0, 1072, 1073, 5, 273, 0, 0, 1073, 1074, 5, 59, 0, 0, 1074, 1075, 5, 176, 0, 0, 1075, 1076, 5, 338, 0, 0, 1076, 1079, 3, 90, 45, 0, 1077, 1078, 5, 20, 0, 0, 1078, 1080, 5, 266, 0, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1338, 1, 0, 0, 0, 1081, 1082, 7, 6, 0, 0, 1082, 1084, 5, 125, 0, 0, 1083, 1085, 5, 108, 0, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1338, 3, 40, 20, 0, 1087, 1088, 7, 6, 0, 0, 1088, 1090, 5, 72, 0, 0, 1089, 1091, 5, 108, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1338, 3, 80, 40, 0, 1093, 1095, 7, 6, 0, 0, 1094, 1096, 5, 293, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1099, 7, 7, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 3, 86, 43, 0, 1101, 1103, 3, 32, 16, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1105, 1, 0, 0, 0, 1104, 1106, 3, 42, 21, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1338, 1, 0, 0, 0, 1107, 1109, 7, 6, 0, 0, 1108, 1110, 5, 232, 0, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1338, 3, 26, 13, 0, 1112, 1113, 5, 51, 0, 0, 1113, 1114, 5, 203, 0, 0, 1114, 1115, 3, 36, 18, 0, 1115, 1116, 3, 80, 40, 0, 1116, 1117, 5, 153, 0, 0, 1117, 1118, 3, 390, 195, 0, 1118, 1338, 1, 0, 0, 0, 1119, 1120, 5, 51, 0, 0, 1120, 1121, 5, 203, 0, 0, 1121, 1122, 5, 293, 0, 0, 1122, 1123, 3, 86, 43, 0, 1123, 1124, 5, 153, 0, 0, 1124, 1125, 3, 390, 195, 0, 1125, 1338, 1, 0, 0, 0, 1126, 1127, 5, 240, 0, 0, 1127, 1128, 5, 293, 0, 0, 1128, 1338, 3, 86, 43, 0, 1129, 1130, 5, 240, 0, 0, 1130, 1131, 5, 125, 0, 0, 1131, 1338, 3, 366, 183, 0, 1132, 1140, 5, 240, 0, 0, 1133, 1141, 3, 388, 194, 0, 1134, 1136, 9, 0, 0, 0, 1135, 1134, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1133, 1, 0, 0, 0, 1140, 1137, 1, 0, 0, 0, 1141, 1338, 1, 0, 0, 0, 1142, 1143, 5, 240, 0, 0, 1143, 1144, 5, 176, 0, 0, 1144, 1145, 5, 338, 0, 0, 1145, 1338, 3, 90, 45, 0, 1146, 1148, 5, 33, 0, 0, 1147, 1149, 5, 159, 0, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 5, 293, 0, 0, 1151, 1154, 3, 86, 43, 0, 1152, 1153, 5, 207, 0, 0, 1153, 1155, 3, 54, 27, 0, 1154, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1160, 1, 0, 0, 0, 1156, 1158, 5, 20, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1161, 3, 26, 13, 0, 1160, 1157, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1338, 1, 0, 0, 0, 1162, 1163, 5, 322, 0, 0, 1163, 1165, 5, 293, 0, 0, 1164, 1166, 3, 192, 96, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1338, 3, 86, 43, 0, 1168, 1169, 5, 43, 0, 0, 1169, 1338, 5, 33, 0, 0, 1170, 1171, 5, 168, 0, 0, 1171, 1173, 5, 70, 0, 0, 1172, 1174, 5, 169, 0, 0, 1173, 1172, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 5, 145, 0, 0, 1176, 1178, 3, 388, 194, 0, 1177, 1179, 5, 216, 0, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 5, 152, 0, 0, 1181, 1182, 5, 293, 0, 0, 1182, 1184, 3, 86, 43, 0, 1183, 1185, 3, 32, 16, 0, 1184, 1183, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1338, 1, 0, 0, 0, 1186, 1187, 5, 317, 0, 0, 1187, 1188, 5, 293, 0, 0, 1188, 1190, 3, 86, 43, 0, 1189, 1191, 3, 32, 16, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1338, 1, 0, 0, 0, 1192, 1194, 5, 188, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 242, 0, 0, 1196, 1197, 5, 293, 0, 0, 1197, 1200, 3, 86, 43, 0, 1198, 1199, 7, 8, 0, 0, 1199, 1201, 5, 219, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1338, 1, 0, 0, 0, 1202, 1203, 7, 9, 0, 0, 1203, 1207, 3, 376, 188, 0, 1204, 1206, 9, 0, 0, 0, 1205, 1204, 1, 0, 0, 0, 1206, 1209, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1338, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1211, 5, 269, 0, 0, 1211, 1215, 5, 253, 0, 0, 1212, 1214, 9, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1338, 1, 0, 0, 0, 1217, 1215, 1, 0, 0, 0, 1218, 1219, 5, 269, 0, 0, 1219, 1220, 5, 301, 0, 0, 1220, 1221, 5, 350, 0, 0, 1221, 1338, 3, 298, 149, 0, 1222, 1223, 5, 269, 0, 0, 1223, 1224, 5, 301, 0, 0, 1224, 1225, 5, 350, 0, 0, 1225, 1338, 3, 6, 3, 0, 1226, 1227, 5, 269, 0, 0, 1227, 1228, 5, 301, 0, 0, 1228, 1232, 5, 350, 0, 0, 1229, 1231, 9, 0, 0, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1234, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1338, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1236, 5, 269, 0, 0, 1236, 1237, 7, 10, 0, 0, 1237, 1338, 3, 134, 67, 0, 1238, 1239, 5, 269, 0, 0, 1239, 1240, 7, 10, 0, 0, 1240, 1241, 5, 2, 0, 0, 1241, 1242, 3, 244, 122, 0, 1242, 1243, 5, 3, 0, 0, 1243, 1244, 5, 352, 0, 0, 1244, 1245, 5, 2, 0, 0, 1245, 1246, 3, 26, 13, 0, 1246, 1247, 5, 3, 0, 0, 1247, 1338, 1, 0, 0, 0, 1248, 1249, 5, 269, 0, 0, 1249, 1250, 3, 8, 4, 0, 1250, 1251, 5, 352, 0, 0, 1251, 1252, 3, 10, 5, 0, 1252, 1338, 1, 0, 0, 0, 1253, 1254, 5, 269, 0, 0, 1254, 1262, 3, 8, 4, 0, 1255, 1259, 5, 352, 0, 0, 1256, 1258, 9, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1255, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1338, 1, 0, 0, 0, 1264, 1268, 5, 269, 0, 0, 1265, 1267, 9, 0, 0, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1271, 1, 0, 0, 0, 1270, 1268, 1, 0, 0, 0, 1271, 1272, 5, 352, 0, 0, 1272, 1338, 3, 10, 5, 0, 1273, 1277, 5, 269, 0, 0, 1274, 1276, 9, 0, 0, 0, 1275, 1274, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1338, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1281, 5, 245, 0, 0, 1281, 1338, 3, 8, 4, 0, 1282, 1286, 5, 245, 0, 0, 1283, 1285, 9, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1288, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1338, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1289, 1290, 5, 59, 0, 0, 1290, 1292, 5, 142, 0, 0, 1291, 1293, 3, 190, 95, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 3, 376, 188, 0, 1295, 1297, 5, 203, 0, 0, 1296, 1298, 5, 293, 0, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1302, 3, 86, 43, 0, 1300, 1301, 5, 332, 0, 0, 1301, 1303, 3, 376, 188, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 5, 2, 0, 0, 1305, 1306, 3, 248, 124, 0, 1306, 1309, 5, 3, 0, 0, 1307, 1308, 5, 207, 0, 0, 1308, 1310, 3, 54, 27, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1338, 1, 0, 0, 0, 1311, 1312, 5, 96, 0, 0, 1312, 1314, 5, 142, 0, 0, 1313, 1315, 3, 192, 96, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 3, 376, 188, 0, 1317, 1319, 5, 203, 0, 0, 1318, 1320, 5, 293, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 3, 86, 43, 0, 1322, 1338, 1, 0, 0, 0, 1323, 1324, 5, 205, 0, 0, 1324, 1326, 3, 86, 43, 0, 1325, 1327, 3, 138, 69, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 3, 354, 177, 0, 1329, 1338, 1, 0, 0, 0, 1330, 1334, 3, 12, 6, 0, 1331, 1333, 9, 0, 0, 0, 1332, 1331, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1337, 412, 1, 0, 0, 0, 1337, 414, 1, 0, 0, 0, 1337, 417, 1, 0, 0, 0, 1337, 422, 1, 0, 0, 0, 1337, 428, 1, 0, 0, 0, 1337, 444, 1, 0, 0, 0, 1337, 451, 1, 0, 0, 0, 1337, 457, 1, 0, 0, 0, 1337, 466, 1, 0, 0, 0, 1337, 478, 1, 0, 0, 0, 1337, 495, 1, 0, 0, 0, 1337, 515, 1, 0, 0, 0, 1337, 532, 1, 0, 0, 0, 1337, 549, 1, 0, 0, 0, 1337, 560, 1, 0, 0, 0, 1337, 567, 1, 0, 0, 0, 1337, 576, 1, 0, 0, 0, 1337, 585, 1, 0, 0, 0, 1337, 595, 1, 0, 0, 0, 1337, 607, 1, 0, 0, 0, 1337, 618, 1, 0, 0, 0, 1337, 629, 1, 0, 0, 0, 1337, 643, 1, 0, 0, 0, 1337, 654, 1, 0, 0, 0, 1337, 669, 1, 0, 0, 0, 1337, 681, 1, 0, 0, 0, 1337, 695, 1, 0, 0, 0, 1337, 705, 1, 0, 0, 0, 1337, 721, 1, 0, 0, 0, 1337, 729, 1, 0, 0, 0, 1337, 751, 1, 0, 0, 0, 1337, 760, 1, 0, 0, 0, 1337, 766, 1, 0, 0, 0, 1337, 773, 1, 0, 0, 0, 1337, 781, 1, 0, 0, 0, 1337, 790, 1, 0, 0, 0, 1337, 796, 1, 0, 0, 0, 1337, 803, 1, 0, 0, 0, 1337, 836, 1, 0, 0, 0, 1337, 858, 1, 0, 0, 0, 1337, 866, 1, 0, 0, 0, 1337, 892, 1, 0, 0, 0, 1337, 923, 1, 0, 0, 0, 1337, 932, 1, 0, 0, 0, 1337, 947, 1, 0, 0, 0, 1337, 958, 1, 0, 0, 0, 1337, 963, 1, 0, 0, 0, 1337, 975, 1, 0, 0, 0, 1337, 987, 1, 0, 0, 0, 1337, 996, 1, 0, 0, 0, 1337, 1004, 1, 0, 0, 0, 1337, 1016, 1, 0, 0, 0, 1337, 1022, 1, 0, 0, 0, 1337, 1040, 1, 0, 0, 0, 1337, 1048, 1, 0, 0, 0, 1337, 1051, 1, 0, 0, 0, 1337, 1059, 1, 0, 0, 0, 1337, 1072, 1, 0, 0, 0, 1337, 1081, 1, 0, 0, 0, 1337, 1087, 1, 0, 0, 0, 1337, 1093, 1, 0, 0, 0, 1337, 1107, 1, 0, 0, 0, 1337, 1112, 1, 0, 0, 0, 1337, 1119, 1, 0, 0, 0, 1337, 1126, 1, 0, 0, 0, 1337, 1129, 1, 0, 0, 0, 1337, 1132, 1, 0, 0, 0, 1337, 1142, 1, 0, 0, 0, 1337, 1146, 1, 0, 0, 0, 1337, 1162, 1, 0, 0, 0, 1337, 1168, 1, 0, 0, 0, 1337, 1170, 1, 0, 0, 0, 1337, 1186, 1, 0, 0, 0, 1337, 1193, 1, 0, 0, 0, 1337, 1202, 1, 0, 0, 0, 1337, 1210, 1, 0, 0, 0, 1337, 1218, 1, 0, 0, 0, 1337, 1222, 1, 0, 0, 0, 1337, 1226, 1, 0, 0, 0, 1337, 1235, 1, 0, 0, 0, 1337, 1238, 1, 0, 0, 0, 1337, 1248, 1, 0, 0, 0, 1337, 1253, 1, 0, 0, 0, 1337, 1264, 1, 0, 0, 0, 1337, 1273, 1, 0, 0, 0, 1337, 1280, 1, 0, 0, 0, 1337, 1282, 1, 0, 0, 0, 1337, 1289, 1, 0, 0, 0, 1337, 1311, 1, 0, 0, 0, 1337, 1323, 1, 0, 0, 0, 1337, 1330, 1, 0, 0, 0, 1338, 5, 1, 0, 0, 0, 1339, 1342, 3, 388, 194, 0, 1340, 1342, 5, 169, 0, 0, 1341, 1339, 1, 0, 0, 0, 1341, 1340, 1, 0, 0, 0, 1342, 7, 1, 0, 0, 0, 1343, 1344, 3, 380, 190, 0, 1344, 9, 1, 0, 0, 0, 1345, 1346, 3, 382, 191, 0, 1346, 11, 1, 0, 0, 0, 1347, 1348, 5, 59, 0, 0, 1348, 1516, 5, 253, 0, 0, 1349, 1350, 5, 96, 0, 0, 1350, 1516, 5, 253, 0, 0, 1351, 1353, 5, 129, 0, 0, 1352, 1354, 5, 253, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1516, 1, 0, 0, 0, 1355, 1357, 5, 249, 0, 0, 1356, 1358, 5, 253, 0, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1516, 1, 0, 0, 0, 1359, 1360, 5, 273, 0, 0, 1360, 1516, 5, 129, 0, 0, 1361, 1362, 5, 273, 0, 0, 1362, 1364, 5, 253, 0, 0, 1363, 1365, 5, 129, 0, 0, 1364, 1363, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1516, 1, 0, 0, 0, 1366, 1367, 5, 273, 0, 0, 1367, 1516, 5, 228, 0, 0, 1368, 1369, 5, 273, 0, 0, 1369, 1516, 5, 254, 0, 0, 1370, 1371, 5, 273, 0, 0, 1371, 1372, 5, 62, 0, 0, 1372, 1516, 5, 254, 0, 0, 1373, 1374, 5, 107, 0, 0, 1374, 1516, 5, 293, 0, 0, 1375, 1376, 5, 139, 0, 0, 1376, 1516, 5, 293, 0, 0, 1377, 1378, 5, 273, 0, 0, 1378, 1516, 5, 54, 0, 0, 1379, 1380, 5, 273, 0, 0, 1380, 1381, 5, 59, 0, 0, 1381, 1516, 5, 293, 0, 0, 1382, 1383, 5, 273, 0, 0, 1383, 1516, 5, 313, 0, 0, 1384, 1385, 5, 273, 0, 0, 1385, 1516, 5, 143, 0, 0, 1386, 1387, 5, 273, 0, 0, 1387, 1516, 5, 172, 0, 0, 1388, 1389, 5, 59, 0, 0, 1389, 1516, 5, 142, 0, 0, 1390, 1391, 5, 96, 0, 0, 1391, 1516, 5, 142, 0, 0, 1392, 1393, 5, 11, 0, 0, 1393, 1516, 5, 142, 0, 0, 1394, 1395, 5, 171, 0, 0, 1395, 1516, 5, 293, 0, 0, 1396, 1397, 5, 171, 0, 0, 1397, 1516, 5, 72, 0, 0, 1398, 1399, 5, 326, 0, 0, 1399, 1516, 5, 293, 0, 0, 1400, 1401, 5, 326, 0, 0, 1401, 1516, 5, 72, 0, 0, 1402, 1403, 5, 59, 0, 0, 1403, 1404, 5, 298, 0, 0, 1404, 1516, 5, 175, 0, 0, 1405, 1406, 5, 96, 0, 0, 1406, 1407, 5, 298, 0, 0, 1407, 1516, 5, 175, 0, 0, 1408, 1409, 5, 11, 0, 0, 1409, 1410, 5, 293, 0, 0, 1410, 1411, 3, 86, 43, 0, 1411, 1412, 5, 197, 0, 0, 1412, 1413, 5, 45, 0, 0, 1413, 1516, 1, 0, 0, 0, 1414, 1415, 5, 11, 0, 0, 1415, 1416, 5, 293, 0, 0, 1416, 1417, 3, 86, 43, 0, 1417, 1418, 5, 45, 0, 0, 1418, 1419, 5, 31, 0, 0, 1419, 1516, 1, 0, 0, 0, 1420, 1421, 5, 11, 0, 0, 1421, 1422, 5, 293, 0, 0, 1422, 1423, 3, 86, 43, 0, 1423, 1424, 5, 197, 0, 0, 1424, 1425, 5, 279, 0, 0, 1425, 1516, 1, 0, 0, 0, 1426, 1427, 5, 11, 0, 0, 1427, 1428, 5, 293, 0, 0, 1428, 1429, 3, 86, 43, 0, 1429, 1430, 5, 275, 0, 0, 1430, 1431, 5, 31, 0, 0, 1431, 1516, 1, 0, 0, 0, 1432, 1433, 5, 11, 0, 0, 1433, 1434, 5, 293, 0, 0, 1434, 1435, 3, 86, 43, 0, 1435, 1436, 5, 197, 0, 0, 1436, 1437, 5, 275, 0, 0, 1437, 1516, 1, 0, 0, 0, 1438, 1439, 5, 11, 0, 0, 1439, 1440, 5, 293, 0, 0, 1440, 1441, 3, 86, 43, 0, 1441, 1442, 5, 197, 0, 0, 1442, 1443, 5, 283, 0, 0, 1443, 1444, 5, 20, 0, 0, 1444, 1445, 5, 89, 0, 0, 1445, 1516, 1, 0, 0, 0, 1446, 1447, 5, 11, 0, 0, 1447, 1448, 5, 293, 0, 0, 1448, 1449, 3, 86, 43, 0, 1449, 1450, 5, 269, 0, 0, 1450, 1451, 5, 275, 0, 0, 1451, 1452, 5, 170, 0, 0, 1452, 1516, 1, 0, 0, 0, 1453, 1454, 5, 11, 0, 0, 1454, 1455, 5, 293, 0, 0, 1455, 1456, 3, 86, 43, 0, 1456, 1457, 5, 103, 0, 0, 1457, 1458, 5, 217, 0, 0, 1458, 1516, 1, 0, 0, 0, 1459, 1460, 5, 11, 0, 0, 1460, 1461, 5, 293, 0, 0, 1461, 1462, 3, 86, 43, 0, 1462, 1463, 5, 18, 0, 0, 1463, 1464, 5, 217, 0, 0, 1464, 1516, 1, 0, 0, 0, 1465, 1466, 5, 11, 0, 0, 1466, 1467, 5, 293, 0, 0, 1467, 1468, 3, 86, 43, 0, 1468, 1469, 5, 320, 0, 0, 1469, 1470, 5, 217, 0, 0, 1470, 1516, 1, 0, 0, 0, 1471, 1472, 5, 11, 0, 0, 1472, 1473, 5, 293, 0, 0, 1473, 1474, 3, 86, 43, 0, 1474, 1475, 5, 310, 0, 0, 1475, 1516, 1, 0, 0, 0, 1476, 1477, 5, 11, 0, 0, 1477, 1478, 5, 293, 0, 0, 1478, 1480, 3, 86, 43, 0, 1479, 1481, 3, 32, 16, 0, 1480, 1479, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 5, 53, 0, 0, 1483, 1516, 1, 0, 0, 0, 1484, 1485, 5, 11, 0, 0, 1485, 1486, 5, 293, 0, 0, 1486, 1488, 3, 86, 43, 0, 1487, 1489, 3, 32, 16, 0, 1488, 1487, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 5, 56, 0, 0, 1491, 1516, 1, 0, 0, 0, 1492, 1493, 5, 11, 0, 0, 1493, 1494, 5, 293, 0, 0, 1494, 1496, 3, 86, 43, 0, 1495, 1497, 3, 32, 16, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 5, 269, 0, 0, 1499, 1500, 5, 115, 0, 0, 1500, 1516, 1, 0, 0, 0, 1501, 1502, 5, 11, 0, 0, 1502, 1503, 5, 293, 0, 0, 1503, 1505, 3, 86, 43, 0, 1504, 1506, 3, 32, 16, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 5, 244, 0, 0, 1508, 1509, 5, 50, 0, 0, 1509, 1516, 1, 0, 0, 0, 1510, 1511, 5, 281, 0, 0, 1511, 1516, 5, 312, 0, 0, 1512, 1516, 5, 52, 0, 0, 1513, 1516, 5, 255, 0, 0, 1514, 1516, 5, 88, 0, 0, 1515, 1347, 1, 0, 0, 0, 1515, 1349, 1, 0, 0, 0, 1515, 1351, 1, 0, 0, 0, 1515, 1355, 1, 0, 0, 0, 1515, 1359, 1, 0, 0, 0, 1515, 1361, 1, 0, 0, 0, 1515, 1366, 1, 0, 0, 0, 1515, 1368, 1, 0, 0, 0, 1515, 1370, 1, 0, 0, 0, 1515, 1373, 1, 0, 0, 0, 1515, 1375, 1, 0, 0, 0, 1515, 1377, 1, 0, 0, 0, 1515, 1379, 1, 0, 0, 0, 1515, 1382, 1, 0, 0, 0, 1515, 1384, 1, 0, 0, 0, 1515, 1386, 1, 0, 0, 0, 1515, 1388, 1, 0, 0, 0, 1515, 1390, 1, 0, 0, 0, 1515, 1392, 1, 0, 0, 0, 1515, 1394, 1, 0, 0, 0, 1515, 1396, 1, 0, 0, 0, 1515, 1398, 1, 0, 0, 0, 1515, 1400, 1, 0, 0, 0, 1515, 1402, 1, 0, 0, 0, 1515, 1405, 1, 0, 0, 0, 1515, 1408, 1, 0, 0, 0, 1515, 1414, 1, 0, 0, 0, 1515, 1420, 1, 0, 0, 0, 1515, 1426, 1, 0, 0, 0, 1515, 1432, 1, 0, 0, 0, 1515, 1438, 1, 0, 0, 0, 1515, 1446, 1, 0, 0, 0, 1515, 1453, 1, 0, 0, 0, 1515, 1459, 1, 0, 0, 0, 1515, 1465, 1, 0, 0, 0, 1515, 1471, 1, 0, 0, 0, 1515, 1476, 1, 0, 0, 0, 1515, 1484, 1, 0, 0, 0, 1515, 1492, 1, 0, 0, 0, 1515, 1501, 1, 0, 0, 0, 1515, 1510, 1, 0, 0, 0, 1515, 1512, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1515, 1514, 1, 0, 0, 0, 1516, 13, 1, 0, 0, 0, 1517, 1519, 5, 59, 0, 0, 1518, 1520, 5, 298, 0, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1522, 1, 0, 0, 0, 1521, 1523, 5, 109, 0, 0, 1522, 1521, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 5, 293, 0, 0, 1525, 1527, 3, 190, 95, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 3, 84, 42, 0, 1529, 15, 1, 0, 0, 0, 1530, 1531, 5, 59, 0, 0, 1531, 1533, 5, 208, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 5, 244, 0, 0, 1535, 1536, 5, 293, 0, 0, 1536, 1537, 3, 84, 42, 0, 1537, 17, 1, 0, 0, 0, 1538, 1539, 5, 45, 0, 0, 1539, 1540, 5, 31, 0, 0, 1540, 1544, 3, 212, 106, 0, 1541, 1542, 5, 279, 0, 0, 1542, 1543, 5, 31, 0, 0, 1543, 1545, 3, 216, 108, 0, 1544, 1541, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 152, 0, 0, 1547, 1548, 5, 382, 0, 0, 1548, 1549, 5, 30, 0, 0, 1549, 19, 1, 0, 0, 0, 1550, 1551, 5, 275, 0, 0, 1551, 1552, 5, 31, 0, 0, 1552, 1553, 3, 212, 106, 0, 1553, 1556, 5, 203, 0, 0, 1554, 1557, 3, 66, 33, 0, 1555, 1557, 3, 68, 34, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1555, 1, 0, 0, 0, 1557, 1561, 1, 0, 0, 0, 1558, 1559, 5, 283, 0, 0, 1559, 1560, 5, 20, 0, 0, 1560, 1562, 5, 89, 0, 0, 1561, 1558, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 21, 1, 0, 0, 0, 1563, 1564, 5, 170, 0, 0, 1564, 1565, 3, 388, 194, 0, 1565, 23, 1, 0, 0, 0, 1566, 1567, 5, 51, 0, 0, 1567, 1568, 3, 388, 194, 0, 1568, 25, 1, 0, 0, 0, 1569, 1571, 3, 44, 22, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 104, 52, 0, 1573, 1574, 3, 100, 50, 0, 1574, 27, 1, 0, 0, 0, 1575, 1576, 5, 147, 0, 0, 1576, 1578, 5, 216, 0, 0, 1577, 1579, 5, 293, 0, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1585, 3, 86, 43, 0, 1581, 1583, 3, 32, 16, 0, 1582, 1584, 3, 190, 95, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1586, 1, 0, 0, 0, 1585, 1581, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1593, 1, 0, 0, 0, 1587, 1588, 5, 31, 0, 0, 1588, 1594, 5, 189, 0, 0, 1589, 1590, 5, 2, 0, 0, 1590, 1591, 3, 94, 47, 0, 1591, 1592, 5, 3, 0, 0, 1592, 1594, 1, 0, 0, 0, 1593, 1587, 1, 0, 0, 0, 1593, 1589, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 1652, 1, 0, 0, 0, 1595, 1596, 5, 147, 0, 0, 1596, 1598, 5, 152, 0, 0, 1597, 1599, 5, 293, 0, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 3, 86, 43, 0, 1601, 1603, 3, 32, 16, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1605, 1, 0, 0, 0, 1604, 1606, 3, 190, 95, 0, 1605, 1604, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1613, 1, 0, 0, 0, 1607, 1608, 5, 31, 0, 0, 1608, 1614, 5, 189, 0, 0, 1609, 1610, 5, 2, 0, 0, 1610, 1611, 3, 94, 47, 0, 1611, 1612, 5, 3, 0, 0, 1612, 1614, 1, 0, 0, 0, 1613, 1607, 1, 0, 0, 0, 1613, 1609, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1652, 1, 0, 0, 0, 1615, 1616, 5, 147, 0, 0, 1616, 1618, 5, 152, 0, 0, 1617, 1619, 5, 293, 0, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 3, 86, 43, 0, 1621, 1622, 5, 244, 0, 0, 1622, 1623, 3, 138, 69, 0, 1623, 1652, 1, 0, 0, 0, 1624, 1625, 5, 147, 0, 0, 1625, 1627, 5, 216, 0, 0, 1626, 1628, 5, 169, 0, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 90, 0, 0, 1630, 1632, 3, 388, 194, 0, 1631, 1633, 3, 242, 121, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1636, 3, 70, 35, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1652, 1, 0, 0, 0, 1637, 1638, 5, 147, 0, 0, 1638, 1640, 5, 216, 0, 0, 1639, 1641, 5, 169, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1644, 5, 90, 0, 0, 1643, 1645, 3, 388, 194, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1649, 3, 48, 24, 0, 1647, 1648, 5, 207, 0, 0, 1648, 1650, 3, 54, 27, 0, 1649, 1647, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1575, 1, 0, 0, 0, 1651, 1595, 1, 0, 0, 0, 1651, 1615, 1, 0, 0, 0, 1651, 1624, 1, 0, 0, 0, 1651, 1637, 1, 0, 0, 0, 1652, 29, 1, 0, 0, 0, 1653, 1655, 3, 32, 16, 0, 1654, 1656, 3, 22, 11, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 31, 1, 0, 0, 0, 1657, 1658, 5, 217, 0, 0, 1658, 1659, 5, 2, 0, 0, 1659, 1664, 3, 34, 17, 0, 1660, 1661, 5, 4, 0, 0, 1661, 1663, 3, 34, 17, 0, 1662, 1660, 1, 0, 0, 0, 1663, 1666, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1668, 5, 3, 0, 0, 1668, 33, 1, 0, 0, 0, 1669, 1672, 3, 376, 188, 0, 1670, 1671, 5, 352, 0, 0, 1671, 1673, 3, 288, 144, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1679, 1, 0, 0, 0, 1674, 1675, 3, 376, 188, 0, 1675, 1676, 5, 352, 0, 0, 1676, 1677, 5, 82, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1669, 1, 0, 0, 0, 1678, 1674, 1, 0, 0, 0, 1679, 35, 1, 0, 0, 0, 1680, 1681, 7, 11, 0, 0, 1681, 37, 1, 0, 0, 0, 1682, 1683, 7, 12, 0, 0, 1683, 39, 1, 0, 0, 0, 1684, 1690, 3, 98, 49, 0, 1685, 1690, 3, 388, 194, 0, 1686, 1690, 3, 290, 145, 0, 1687, 1690, 3, 292, 146, 0, 1688, 1690, 3, 294, 147, 0, 1689, 1684, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1689, 1686, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1688, 1, 0, 0, 0, 1690, 41, 1, 0, 0, 0, 1691, 1696, 3, 376, 188, 0, 1692, 1693, 5, 5, 0, 0, 1693, 1695, 3, 376, 188, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 43, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1699, 1700, 5, 346, 0, 0, 1700, 1705, 3, 46, 23, 0, 1701, 1702, 5, 4, 0, 0, 1702, 1704, 3, 46, 23, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 45, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1708, 1710, 3, 372, 186, 0, 1709, 1711, 3, 212, 106, 0, 1710, 1709, 1, 0, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1713, 1, 0, 0, 0, 1712, 1714, 5, 20, 0, 0, 1713, 1712, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 5, 2, 0, 0, 1716, 1717, 3, 26, 13, 0, 1717, 1718, 5, 3, 0, 0, 1718, 47, 1, 0, 0, 0, 1719, 1720, 5, 332, 0, 0, 1720, 1721, 3, 246, 123, 0, 1721, 49, 1, 0, 0, 0, 1722, 1723, 5, 207, 0, 0, 1723, 1737, 3, 62, 31, 0, 1724, 1725, 5, 218, 0, 0, 1725, 1726, 5, 31, 0, 0, 1726, 1737, 3, 260, 130, 0, 1727, 1737, 3, 20, 10, 0, 1728, 1737, 3, 18, 9, 0, 1729, 1737, 3, 242, 121, 0, 1730, 1737, 3, 70, 35, 0, 1731, 1737, 3, 22, 11, 0, 1732, 1737, 3, 24, 12, 0, 1733, 1734, 5, 297, 0, 0, 1734, 1737, 3, 54, 27, 0, 1735, 1737, 3, 52, 26, 0, 1736, 1722, 1, 0, 0, 0, 1736, 1724, 1, 0, 0, 0, 1736, 1727, 1, 0, 0, 0, 1736, 1728, 1, 0, 0, 0, 1736, 1729, 1, 0, 0, 0, 1736, 1730, 1, 0, 0, 0, 1736, 1731, 1, 0, 0, 0, 1736, 1732, 1, 0, 0, 0, 1736, 1733, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 51, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1742, 5, 162, 0, 0, 1742, 1743, 5, 382, 0, 0, 1743, 53, 1, 0, 0, 0, 1744, 1745, 5, 2, 0, 0, 1745, 1750, 3, 56, 28, 0, 1746, 1747, 5, 4, 0, 0, 1747, 1749, 3, 56, 28, 0, 1748, 1746, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1753, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1754, 5, 3, 0, 0, 1754, 55, 1, 0, 0, 0, 1755, 1760, 3, 58, 29, 0, 1756, 1758, 5, 352, 0, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1761, 3, 60, 30, 0, 1760, 1757, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 57, 1, 0, 0, 0, 1762, 1767, 3, 376, 188, 0, 1763, 1764, 5, 5, 0, 0, 1764, 1766, 3, 376, 188, 0, 1765, 1763, 1, 0, 0, 0, 1766, 1769, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1772, 1, 0, 0, 0, 1769, 1767, 1, 0, 0, 0, 1770, 1772, 3, 388, 194, 0, 1771, 1762, 1, 0, 0, 0, 1771, 1770, 1, 0, 0, 0, 1772, 59, 1, 0, 0, 0, 1773, 1778, 5, 382, 0, 0, 1774, 1778, 5, 384, 0, 0, 1775, 1778, 3, 296, 148, 0, 1776, 1778, 3, 388, 194, 0, 1777, 1773, 1, 0, 0, 0, 1777, 1774, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1777, 1776, 1, 0, 0, 0, 1778, 61, 1, 0, 0, 0, 1779, 1780, 5, 2, 0, 0, 1780, 1785, 3, 64, 32, 0, 1781, 1782, 5, 4, 0, 0, 1782, 1784, 3, 64, 32, 0, 1783, 1781, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1788, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1789, 5, 3, 0, 0, 1789, 63, 1, 0, 0, 0, 1790, 1795, 3, 58, 29, 0, 1791, 1793, 5, 352, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1796, 3, 268, 134, 0, 1795, 1792, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 65, 1, 0, 0, 0, 1797, 1798, 5, 2, 0, 0, 1798, 1803, 3, 288, 144, 0, 1799, 1800, 5, 4, 0, 0, 1800, 1802, 3, 288, 144, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1805, 1, 0, 0, 0, 1803, 1801, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1806, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1807, 5, 3, 0, 0, 1807, 67, 1, 0, 0, 0, 1808, 1809, 5, 2, 0, 0, 1809, 1814, 3, 66, 33, 0, 1810, 1811, 5, 4, 0, 0, 1811, 1813, 3, 66, 33, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1816, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1818, 5, 3, 0, 0, 1818, 69, 1, 0, 0, 0, 1819, 1820, 5, 283, 0, 0, 1820, 1821, 5, 20, 0, 0, 1821, 1826, 3, 72, 36, 0, 1822, 1823, 5, 283, 0, 0, 1823, 1824, 5, 31, 0, 0, 1824, 1826, 3, 74, 37, 0, 1825, 1819, 1, 0, 0, 0, 1825, 1822, 1, 0, 0, 0, 1826, 71, 1, 0, 0, 0, 1827, 1828, 5, 146, 0, 0, 1828, 1829, 3, 388, 194, 0, 1829, 1830, 5, 212, 0, 0, 1830, 1831, 3, 388, 194, 0, 1831, 1834, 1, 0, 0, 0, 1832, 1834, 3, 376, 188, 0, 1833, 1827, 1, 0, 0, 0, 1833, 1832, 1, 0, 0, 0, 1834, 73, 1, 0, 0, 0, 1835, 1839, 3, 388, 194, 0, 1836, 1837, 5, 346, 0, 0, 1837, 1838, 5, 267, 0, 0, 1838, 1840, 3, 54, 27, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 75, 1, 0, 0, 0, 1841, 1842, 3, 376, 188, 0, 1842, 1843, 3, 388, 194, 0, 1843, 77, 1, 0, 0, 0, 1844, 1845, 3, 28, 14, 0, 1845, 1846, 3, 26, 13, 0, 1846, 1901, 1, 0, 0, 0, 1847, 1849, 3, 146, 73, 0, 1848, 1850, 3, 102, 51, 0, 1849, 1848, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1849, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1901, 1, 0, 0, 0, 1853, 1854, 5, 84, 0, 0, 1854, 1855, 5, 123, 0, 0, 1855, 1856, 3, 86, 43, 0, 1856, 1858, 3, 240, 120, 0, 1857, 1859, 3, 138, 69, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1901, 1, 0, 0, 0, 1860, 1861, 5, 329, 0, 0, 1861, 1862, 3, 86, 43, 0, 1862, 1863, 3, 240, 120, 0, 1863, 1865, 3, 120, 60, 0, 1864, 1866, 3, 138, 69, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1901, 1, 0, 0, 0, 1867, 1868, 5, 179, 0, 0, 1868, 1869, 5, 152, 0, 0, 1869, 1870, 3, 86, 43, 0, 1870, 1871, 3, 240, 120, 0, 1871, 1877, 5, 332, 0, 0, 1872, 1878, 3, 98, 49, 0, 1873, 1874, 5, 2, 0, 0, 1874, 1875, 3, 26, 13, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1878, 1, 0, 0, 0, 1877, 1872, 1, 0, 0, 0, 1877, 1873, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1880, 3, 240, 120, 0, 1880, 1881, 5, 203, 0, 0, 1881, 1885, 3, 276, 138, 0, 1882, 1884, 3, 122, 61, 0, 1883, 1882, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1891, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1890, 3, 124, 62, 0, 1889, 1888, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1897, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1896, 3, 126, 63, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1844, 1, 0, 0, 0, 1900, 1847, 1, 0, 0, 0, 1900, 1853, 1, 0, 0, 0, 1900, 1860, 1, 0, 0, 0, 1900, 1867, 1, 0, 0, 0, 1901, 79, 1, 0, 0, 0, 1902, 1903, 3, 98, 49, 0, 1903, 81, 1, 0, 0, 0, 1904, 1905, 3, 98, 49, 0, 1905, 83, 1, 0, 0, 0, 1906, 1907, 3, 252, 126, 0, 1907, 85, 1, 0, 0, 0, 1908, 1909, 3, 252, 126, 0, 1909, 87, 1, 0, 0, 0, 1910, 1911, 3, 254, 127, 0, 1911, 89, 1, 0, 0, 0, 1912, 1913, 3, 254, 127, 0, 1913, 91, 1, 0, 0, 0, 1914, 1917, 3, 246, 123, 0, 1915, 1917, 4, 46, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1915, 1, 0, 0, 0, 1917, 93, 1, 0, 0, 0, 1918, 1923, 3, 92, 46, 0, 1919, 1920, 5, 4, 0, 0, 1920, 1922, 3, 92, 46, 0, 1921, 1919, 1, 0, 0, 0, 1922, 1925, 1, 0, 0, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 95, 1, 0, 0, 0, 1925, 1923, 1, 0, 0, 0, 1926, 1927, 3, 372, 186, 0, 1927, 97, 1, 0, 0, 0, 1928, 1929, 5, 136, 0, 0, 1929, 1930, 5, 2, 0, 0, 1930, 1931, 3, 268, 134, 0, 1931, 1932, 5, 3, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1935, 3, 246, 123, 0, 1934, 1928, 1, 0, 0, 0, 1934, 1933, 1, 0, 0, 0, 1935, 99, 1, 0, 0, 0, 1936, 1937, 5, 209, 0, 0, 1937, 1938, 5, 31, 0, 0, 1938, 1943, 3, 108, 54, 0, 1939, 1940, 5, 4, 0, 0, 1940, 1942, 3, 108, 54, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 1936, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1958, 1, 0, 0, 0, 1948, 1949, 5, 44, 0, 0, 1949, 1950, 5, 31, 0, 0, 1950, 1955, 3, 268, 134, 0, 1951, 1952, 5, 4, 0, 0, 1952, 1954, 3, 268, 134, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1948, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1970, 1, 0, 0, 0, 1960, 1961, 5, 93, 0, 0, 1961, 1962, 5, 31, 0, 0, 1962, 1967, 3, 268, 134, 0, 1963, 1964, 5, 4, 0, 0, 1964, 1966, 3, 268, 134, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1960, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1982, 1, 0, 0, 0, 1972, 1973, 5, 278, 0, 0, 1973, 1974, 5, 31, 0, 0, 1974, 1979, 3, 108, 54, 0, 1975, 1976, 5, 4, 0, 0, 1976, 1978, 3, 108, 54, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1972, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1986, 3, 352, 176, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1992, 1, 0, 0, 0, 1987, 1990, 5, 165, 0, 0, 1988, 1991, 5, 10, 0, 0, 1989, 1991, 3, 268, 134, 0, 1990, 1988, 1, 0, 0, 0, 1990, 1989, 1, 0, 0, 0, 1991, 1993, 1, 0, 0, 0, 1992, 1987, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1996, 1, 0, 0, 0, 1994, 1995, 5, 202, 0, 0, 1995, 1997, 3, 268, 134, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 101, 1, 0, 0, 0, 1998, 1999, 3, 28, 14, 0, 1999, 2000, 3, 112, 56, 0, 2000, 103, 1, 0, 0, 0, 2001, 2002, 6, 52, -1, 0, 2002, 2003, 3, 106, 53, 0, 2003, 2024, 1, 0, 0, 0, 2004, 2005, 10, 3, 0, 0, 2005, 2007, 7, 13, 0, 0, 2006, 2008, 3, 196, 98, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2023, 3, 104, 52, 4, 2010, 2011, 10, 2, 0, 0, 2011, 2013, 5, 148, 0, 0, 2012, 2014, 3, 196, 98, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2023, 3, 104, 52, 3, 2016, 2017, 10, 1, 0, 0, 2017, 2019, 7, 14, 0, 0, 2018, 2020, 3, 196, 98, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2023, 3, 104, 52, 2, 2022, 2004, 1, 0, 0, 0, 2022, 2010, 1, 0, 0, 0, 2022, 2016, 1, 0, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 105, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2037, 3, 114, 57, 0, 2028, 2037, 3, 110, 55, 0, 2029, 2030, 5, 293, 0, 0, 2030, 2037, 3, 86, 43, 0, 2031, 2037, 3, 226, 113, 0, 2032, 2033, 5, 2, 0, 0, 2033, 2034, 3, 26, 13, 0, 2034, 2035, 5, 3, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2027, 1, 0, 0, 0, 2036, 2028, 1, 0, 0, 0, 2036, 2029, 1, 0, 0, 0, 2036, 2031, 1, 0, 0, 0, 2036, 2032, 1, 0, 0, 0, 2037, 107, 1, 0, 0, 0, 2038, 2041, 3, 92, 46, 0, 2039, 2041, 3, 268, 134, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2039, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2044, 7, 15, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2047, 1, 0, 0, 0, 2045, 2046, 5, 199, 0, 0, 2046, 2048, 7, 16, 0, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 109, 1, 0, 0, 0, 2049, 2051, 3, 146, 73, 0, 2050, 2052, 3, 112, 56, 0, 2051, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 111, 1, 0, 0, 0, 2055, 2057, 3, 116, 58, 0, 2056, 2058, 3, 138, 69, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 3, 100, 50, 0, 2060, 2083, 1, 0, 0, 0, 2061, 2065, 3, 118, 59, 0, 2062, 2064, 3, 194, 97, 0, 2063, 2062, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2068, 2070, 3, 138, 69, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2072, 1, 0, 0, 0, 2071, 2073, 3, 152, 76, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2076, 3, 140, 70, 0, 2075, 2074, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2079, 3, 352, 176, 0, 2078, 2077, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 3, 100, 50, 0, 2081, 2083, 1, 0, 0, 0, 2082, 2055, 1, 0, 0, 0, 2082, 2061, 1, 0, 0, 0, 2083, 113, 1, 0, 0, 0, 2084, 2086, 3, 116, 58, 0, 2085, 2087, 3, 146, 73, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2091, 1, 0, 0, 0, 2088, 2090, 3, 194, 97, 0, 2089, 2088, 1, 0, 0, 0, 2090, 2093, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2095, 1, 0, 0, 0, 2093, 2091, 1, 0, 0, 0, 2094, 2096, 3, 138, 69, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2099, 3, 152, 76, 0, 2098, 2097, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2102, 3, 140, 70, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 352, 176, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2129, 1, 0, 0, 0, 2106, 2108, 3, 118, 59, 0, 2107, 2109, 3, 146, 73, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2112, 3, 194, 97, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2118, 3, 138, 69, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 152, 76, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 140, 70, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 352, 176, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2084, 1, 0, 0, 0, 2128, 2106, 1, 0, 0, 0, 2129, 115, 1, 0, 0, 0, 2130, 2131, 5, 263, 0, 0, 2131, 2132, 5, 314, 0, 0, 2132, 2134, 5, 2, 0, 0, 2133, 2135, 3, 196, 98, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 3, 274, 137, 0, 2137, 2138, 5, 3, 0, 0, 2138, 2150, 1, 0, 0, 0, 2139, 2141, 5, 177, 0, 0, 2140, 2142, 3, 196, 98, 0, 2141, 2140, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2150, 3, 274, 137, 0, 2144, 2146, 5, 238, 0, 0, 2145, 2147, 3, 196, 98, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 3, 274, 137, 0, 2149, 2130, 1, 0, 0, 0, 2149, 2139, 1, 0, 0, 0, 2149, 2144, 1, 0, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2153, 3, 242, 121, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2156, 1, 0, 0, 0, 2154, 2155, 5, 236, 0, 0, 2155, 2157, 3, 388, 194, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2159, 5, 332, 0, 0, 2159, 2172, 3, 388, 194, 0, 2160, 2170, 5, 20, 0, 0, 2161, 2171, 3, 214, 107, 0, 2162, 2171, 3, 334, 167, 0, 2163, 2166, 5, 2, 0, 0, 2164, 2167, 3, 214, 107, 0, 2165, 2167, 3, 334, 167, 0, 2166, 2164, 1, 0, 0, 0, 2166, 2165, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2169, 5, 3, 0, 0, 2169, 2171, 1, 0, 0, 0, 2170, 2161, 1, 0, 0, 0, 2170, 2162, 1, 0, 0, 0, 2170, 2163, 1, 0, 0, 0, 2171, 2173, 1, 0, 0, 0, 2172, 2160, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 1, 0, 0, 0, 2174, 2176, 3, 242, 121, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2178, 5, 235, 0, 0, 2178, 2180, 3, 388, 194, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 117, 1, 0, 0, 0, 2181, 2185, 5, 263, 0, 0, 2182, 2184, 3, 142, 71, 0, 2183, 2182, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2189, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2190, 3, 196, 98, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2192, 3, 258, 129, 0, 2192, 119, 1, 0, 0, 0, 2193, 2194, 5, 269, 0, 0, 2194, 2195, 3, 134, 67, 0, 2195, 121, 1, 0, 0, 0, 2196, 2197, 5, 343, 0, 0, 2197, 2200, 5, 178, 0, 0, 2198, 2199, 5, 14, 0, 0, 2199, 2201, 3, 276, 138, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 5, 300, 0, 0, 2203, 2204, 3, 128, 64, 0, 2204, 123, 1, 0, 0, 0, 2205, 2206, 5, 343, 0, 0, 2206, 2207, 5, 197, 0, 0, 2207, 2210, 5, 178, 0, 0, 2208, 2209, 5, 31, 0, 0, 2209, 2211, 5, 296, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2213, 5, 14, 0, 0, 2213, 2215, 3, 276, 138, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 5, 300, 0, 0, 2217, 2218, 3, 130, 65, 0, 2218, 125, 1, 0, 0, 0, 2219, 2220, 5, 343, 0, 0, 2220, 2221, 5, 197, 0, 0, 2221, 2222, 5, 178, 0, 0, 2222, 2223, 5, 31, 0, 0, 2223, 2226, 5, 280, 0, 0, 2224, 2225, 5, 14, 0, 0, 2225, 2227, 3, 276, 138, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 2229, 5, 300, 0, 0, 2229, 2230, 3, 132, 66, 0, 2230, 127, 1, 0, 0, 0, 2231, 2239, 5, 84, 0, 0, 2232, 2233, 5, 329, 0, 0, 2233, 2234, 5, 269, 0, 0, 2234, 2239, 5, 363, 0, 0, 2235, 2236, 5, 329, 0, 0, 2236, 2237, 5, 269, 0, 0, 2237, 2239, 3, 134, 67, 0, 2238, 2231, 1, 0, 0, 0, 2238, 2232, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2239, 129, 1, 0, 0, 0, 2240, 2241, 5, 147, 0, 0, 2241, 2259, 5, 363, 0, 0, 2242, 2243, 5, 147, 0, 0, 2243, 2244, 5, 2, 0, 0, 2244, 2245, 3, 244, 122, 0, 2245, 2246, 5, 3, 0, 0, 2246, 2247, 5, 333, 0, 0, 2247, 2248, 5, 2, 0, 0, 2248, 2253, 3, 268, 134, 0, 2249, 2250, 5, 4, 0, 0, 2250, 2252, 3, 268, 134, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 3, 0, 0, 2257, 2259, 1, 0, 0, 0, 2258, 2240, 1, 0, 0, 0, 2258, 2242, 1, 0, 0, 0, 2259, 131, 1, 0, 0, 0, 2260, 2265, 5, 84, 0, 0, 2261, 2262, 5, 329, 0, 0, 2262, 2263, 5, 269, 0, 0, 2263, 2265, 3, 134, 67, 0, 2264, 2260, 1, 0, 0, 0, 2264, 2261, 1, 0, 0, 0, 2265, 133, 1, 0, 0, 0, 2266, 2271, 3, 136, 68, 0, 2267, 2268, 5, 4, 0, 0, 2268, 2270, 3, 136, 68, 0, 2269, 2267, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 135, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 3, 246, 123, 0, 2275, 2276, 5, 352, 0, 0, 2276, 2277, 3, 268, 134, 0, 2277, 137, 1, 0, 0, 0, 2278, 2279, 5, 344, 0, 0, 2279, 2280, 3, 276, 138, 0, 2280, 139, 1, 0, 0, 0, 2281, 2282, 5, 132, 0, 0, 2282, 2283, 3, 276, 138, 0, 2283, 141, 1, 0, 0, 0, 2284, 2285, 5, 374, 0, 0, 2285, 2292, 3, 144, 72, 0, 2286, 2288, 5, 4, 0, 0, 2287, 2286, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2291, 3, 144, 72, 0, 2290, 2287, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2295, 2296, 5, 375, 0, 0, 2296, 143, 1, 0, 0, 0, 2297, 2311, 3, 376, 188, 0, 2298, 2299, 3, 376, 188, 0, 2299, 2300, 5, 2, 0, 0, 2300, 2305, 3, 284, 142, 0, 2301, 2302, 5, 4, 0, 0, 2302, 2304, 3, 284, 142, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2307, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2308, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2308, 2309, 5, 3, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2297, 1, 0, 0, 0, 2310, 2298, 1, 0, 0, 0, 2311, 145, 1, 0, 0, 0, 2312, 2313, 5, 123, 0, 0, 2313, 2318, 3, 198, 99, 0, 2314, 2315, 5, 4, 0, 0, 2315, 2317, 3, 198, 99, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2320, 1, 0, 0, 0, 2318, 2316, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2324, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2323, 3, 194, 97, 0, 2322, 2321, 1, 0, 0, 0, 2323, 2326, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2328, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2329, 3, 162, 81, 0, 2328, 2327, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2332, 3, 168, 84, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 147, 1, 0, 0, 0, 2333, 2334, 7, 17, 0, 0, 2334, 149, 1, 0, 0, 0, 2335, 2337, 5, 119, 0, 0, 2336, 2335, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2338, 1, 0, 0, 0, 2338, 2339, 7, 18, 0, 0, 2339, 2340, 5, 20, 0, 0, 2340, 2341, 5, 201, 0, 0, 2341, 2350, 3, 392, 196, 0, 2342, 2344, 5, 119, 0, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2346, 7, 19, 0, 0, 2346, 2347, 5, 20, 0, 0, 2347, 2348, 5, 201, 0, 0, 2348, 2350, 3, 280, 140, 0, 2349, 2336, 1, 0, 0, 0, 2349, 2343, 1, 0, 0, 0, 2350, 151, 1, 0, 0, 0, 2351, 2352, 5, 130, 0, 0, 2352, 2353, 5, 31, 0, 0, 2353, 2358, 3, 154, 77, 0, 2354, 2355, 5, 4, 0, 0, 2355, 2357, 3, 154, 77, 0, 2356, 2354, 1, 0, 0, 0, 2357, 2360, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2391, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2361, 2362, 5, 130, 0, 0, 2362, 2363, 5, 31, 0, 0, 2363, 2368, 3, 268, 134, 0, 2364, 2365, 5, 4, 0, 0, 2365, 2367, 3, 268, 134, 0, 2366, 2364, 1, 0, 0, 0, 2367, 2370, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2388, 1, 0, 0, 0, 2370, 2368, 1, 0, 0, 0, 2371, 2372, 5, 346, 0, 0, 2372, 2389, 5, 256, 0, 0, 2373, 2374, 5, 346, 0, 0, 2374, 2389, 5, 61, 0, 0, 2375, 2376, 5, 131, 0, 0, 2376, 2377, 5, 271, 0, 0, 2377, 2378, 5, 2, 0, 0, 2378, 2383, 3, 160, 80, 0, 2379, 2380, 5, 4, 0, 0, 2380, 2382, 3, 160, 80, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2386, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 3, 0, 0, 2387, 2389, 1, 0, 0, 0, 2388, 2371, 1, 0, 0, 0, 2388, 2373, 1, 0, 0, 0, 2388, 2375, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2391, 1, 0, 0, 0, 2390, 2351, 1, 0, 0, 0, 2390, 2361, 1, 0, 0, 0, 2391, 153, 1, 0, 0, 0, 2392, 2396, 3, 92, 46, 0, 2393, 2396, 3, 156, 78, 0, 2394, 2396, 3, 268, 134, 0, 2395, 2392, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2394, 1, 0, 0, 0, 2396, 155, 1, 0, 0, 0, 2397, 2398, 7, 20, 0, 0, 2398, 2399, 5, 2, 0, 0, 2399, 2404, 3, 160, 80, 0, 2400, 2401, 5, 4, 0, 0, 2401, 2403, 3, 160, 80, 0, 2402, 2400, 1, 0, 0, 0, 2403, 2406, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2407, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2408, 5, 3, 0, 0, 2408, 2423, 1, 0, 0, 0, 2409, 2410, 5, 131, 0, 0, 2410, 2411, 5, 271, 0, 0, 2411, 2412, 5, 2, 0, 0, 2412, 2417, 3, 158, 79, 0, 2413, 2414, 5, 4, 0, 0, 2414, 2416, 3, 158, 79, 0, 2415, 2413, 1, 0, 0, 0, 2416, 2419, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2420, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2420, 2421, 5, 3, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2397, 1, 0, 0, 0, 2422, 2409, 1, 0, 0, 0, 2423, 157, 1, 0, 0, 0, 2424, 2427, 3, 156, 78, 0, 2425, 2427, 3, 160, 80, 0, 2426, 2424, 1, 0, 0, 0, 2426, 2425, 1, 0, 0, 0, 2427, 159, 1, 0, 0, 0, 2428, 2449, 3, 92, 46, 0, 2429, 2449, 3, 268, 134, 0, 2430, 2445, 5, 2, 0, 0, 2431, 2434, 3, 92, 46, 0, 2432, 2434, 3, 268, 134, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2432, 1, 0, 0, 0, 2434, 2442, 1, 0, 0, 0, 2435, 2438, 5, 4, 0, 0, 2436, 2439, 3, 92, 46, 0, 2437, 2439, 3, 268, 134, 0, 2438, 2436, 1, 0, 0, 0, 2438, 2437, 1, 0, 0, 0, 2439, 2441, 1, 0, 0, 0, 2440, 2435, 1, 0, 0, 0, 2441, 2444, 1, 0, 0, 0, 2442, 2440, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2433, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2449, 5, 3, 0, 0, 2448, 2428, 1, 0, 0, 0, 2448, 2429, 1, 0, 0, 0, 2448, 2430, 1, 0, 0, 0, 2449, 161, 1, 0, 0, 0, 2450, 2451, 5, 223, 0, 0, 2451, 2452, 5, 2, 0, 0, 2452, 2453, 3, 258, 129, 0, 2453, 2454, 5, 119, 0, 0, 2454, 2455, 3, 164, 82, 0, 2455, 2456, 5, 140, 0, 0, 2456, 2457, 5, 2, 0, 0, 2457, 2462, 3, 166, 83, 0, 2458, 2459, 5, 4, 0, 0, 2459, 2461, 3, 166, 83, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2466, 5, 3, 0, 0, 2466, 2467, 5, 3, 0, 0, 2467, 163, 1, 0, 0, 0, 2468, 2481, 3, 376, 188, 0, 2469, 2470, 5, 2, 0, 0, 2470, 2475, 3, 376, 188, 0, 2471, 2472, 5, 4, 0, 0, 2472, 2474, 3, 376, 188, 0, 2473, 2471, 1, 0, 0, 0, 2474, 2477, 1, 0, 0, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2478, 2479, 5, 3, 0, 0, 2479, 2481, 1, 0, 0, 0, 2480, 2468, 1, 0, 0, 0, 2480, 2469, 1, 0, 0, 0, 2481, 165, 1, 0, 0, 0, 2482, 2487, 3, 268, 134, 0, 2483, 2485, 5, 20, 0, 0, 2484, 2483, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2488, 3, 376, 188, 0, 2487, 2484, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 167, 1, 0, 0, 0, 2489, 2491, 5, 327, 0, 0, 2490, 2492, 3, 170, 85, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 5, 2, 0, 0, 2494, 2495, 3, 172, 86, 0, 2495, 2500, 5, 3, 0, 0, 2496, 2498, 5, 20, 0, 0, 2497, 2496, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 1, 0, 0, 0, 2499, 2501, 3, 376, 188, 0, 2500, 2497, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 169, 1, 0, 0, 0, 2502, 2503, 7, 21, 0, 0, 2503, 2504, 5, 199, 0, 0, 2504, 171, 1, 0, 0, 0, 2505, 2508, 3, 174, 87, 0, 2506, 2508, 3, 176, 88, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2506, 1, 0, 0, 0, 2508, 173, 1, 0, 0, 0, 2509, 2510, 3, 180, 90, 0, 2510, 2511, 5, 119, 0, 0, 2511, 2512, 3, 182, 91, 0, 2512, 2513, 5, 140, 0, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2519, 3, 184, 92, 0, 2515, 2516, 5, 4, 0, 0, 2516, 2518, 3, 184, 92, 0, 2517, 2515, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2522, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2522, 2523, 5, 3, 0, 0, 2523, 175, 1, 0, 0, 0, 2524, 2525, 5, 2, 0, 0, 2525, 2530, 3, 180, 90, 0, 2526, 2527, 5, 4, 0, 0, 2527, 2529, 3, 180, 90, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2532, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2530, 1, 0, 0, 0, 2533, 2534, 5, 3, 0, 0, 2534, 2535, 5, 119, 0, 0, 2535, 2536, 3, 182, 91, 0, 2536, 2537, 5, 140, 0, 0, 2537, 2538, 5, 2, 0, 0, 2538, 2543, 3, 178, 89, 0, 2539, 2540, 5, 4, 0, 0, 2540, 2542, 3, 178, 89, 0, 2541, 2539, 1, 0, 0, 0, 2542, 2545, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2543, 2544, 1, 0, 0, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2543, 1, 0, 0, 0, 2546, 2547, 5, 3, 0, 0, 2547, 177, 1, 0, 0, 0, 2548, 2549, 5, 2, 0, 0, 2549, 2554, 3, 186, 93, 0, 2550, 2551, 5, 4, 0, 0, 2551, 2553, 3, 186, 93, 0, 2552, 2550, 1, 0, 0, 0, 2553, 2556, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2557, 2559, 5, 3, 0, 0, 2558, 2560, 3, 188, 94, 0, 2559, 2558, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 179, 1, 0, 0, 0, 2561, 2562, 3, 376, 188, 0, 2562, 181, 1, 0, 0, 0, 2563, 2564, 3, 376, 188, 0, 2564, 183, 1, 0, 0, 0, 2565, 2567, 3, 186, 93, 0, 2566, 2568, 3, 188, 94, 0, 2567, 2566, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 185, 1, 0, 0, 0, 2569, 2570, 3, 246, 123, 0, 2570, 187, 1, 0, 0, 0, 2571, 2573, 5, 20, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2575, 3, 376, 188, 0, 2575, 189, 1, 0, 0, 0, 2576, 2577, 5, 137, 0, 0, 2577, 2578, 5, 197, 0, 0, 2578, 2579, 5, 105, 0, 0, 2579, 191, 1, 0, 0, 0, 2580, 2581, 5, 137, 0, 0, 2581, 2582, 5, 105, 0, 0, 2582, 193, 1, 0, 0, 0, 2583, 2584, 5, 158, 0, 0, 2584, 2586, 5, 338, 0, 0, 2585, 2587, 5, 211, 0, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2589, 3, 90, 45, 0, 2589, 2598, 5, 2, 0, 0, 2590, 2595, 3, 268, 134, 0, 2591, 2592, 5, 4, 0, 0, 2592, 2594, 3, 268, 134, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2597, 1, 0, 0, 0, 2595, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2599, 1, 0, 0, 0, 2597, 2595, 1, 0, 0, 0, 2598, 2590, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 5, 3, 0, 0, 2601, 2613, 3, 240, 120, 0, 2602, 2604, 5, 20, 0, 0, 2603, 2602, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 1, 0, 0, 0, 2605, 2610, 3, 376, 188, 0, 2606, 2607, 5, 4, 0, 0, 2607, 2609, 3, 376, 188, 0, 2608, 2606, 1, 0, 0, 0, 2609, 2612, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2614, 1, 0, 0, 0, 2612, 2610, 1, 0, 0, 0, 2613, 2603, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 195, 1, 0, 0, 0, 2615, 2616, 7, 22, 0, 0, 2616, 197, 1, 0, 0, 0, 2617, 2629, 3, 86, 43, 0, 2618, 2620, 5, 158, 0, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2625, 3, 224, 112, 0, 2622, 2624, 3, 200, 100, 0, 2623, 2622, 1, 0, 0, 0, 2624, 2627, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2629, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2628, 2617, 1, 0, 0, 0, 2628, 2619, 1, 0, 0, 0, 2629, 199, 1, 0, 0, 0, 2630, 2634, 3, 202, 101, 0, 2631, 2634, 3, 162, 81, 0, 2632, 2634, 3, 168, 84, 0, 2633, 2630, 1, 0, 0, 0, 2633, 2631, 1, 0, 0, 0, 2633, 2632, 1, 0, 0, 0, 2634, 201, 1, 0, 0, 0, 2635, 2636, 3, 204, 102, 0, 2636, 2638, 5, 155, 0, 0, 2637, 2639, 5, 158, 0, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 3, 224, 112, 0, 2641, 2643, 3, 206, 103, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2653, 1, 0, 0, 0, 2644, 2645, 5, 194, 0, 0, 2645, 2646, 3, 204, 102, 0, 2646, 2648, 5, 155, 0, 0, 2647, 2649, 5, 158, 0, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 3, 224, 112, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2635, 1, 0, 0, 0, 2652, 2644, 1, 0, 0, 0, 2653, 203, 1, 0, 0, 0, 2654, 2656, 5, 144, 0, 0, 2655, 2654, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2679, 1, 0, 0, 0, 2657, 2679, 5, 60, 0, 0, 2658, 2660, 5, 161, 0, 0, 2659, 2661, 5, 211, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2679, 1, 0, 0, 0, 2662, 2664, 5, 161, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2679, 5, 264, 0, 0, 2666, 2668, 5, 250, 0, 0, 2667, 2669, 5, 211, 0, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2679, 1, 0, 0, 0, 2670, 2672, 5, 124, 0, 0, 2671, 2673, 5, 211, 0, 0, 2672, 2671, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2679, 1, 0, 0, 0, 2674, 2676, 5, 161, 0, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 5, 15, 0, 0, 2678, 2655, 1, 0, 0, 0, 2678, 2657, 1, 0, 0, 0, 2678, 2658, 1, 0, 0, 0, 2678, 2663, 1, 0, 0, 0, 2678, 2666, 1, 0, 0, 0, 2678, 2670, 1, 0, 0, 0, 2678, 2675, 1, 0, 0, 0, 2679, 205, 1, 0, 0, 0, 2680, 2681, 5, 203, 0, 0, 2681, 2685, 3, 276, 138, 0, 2682, 2683, 5, 332, 0, 0, 2683, 2685, 3, 212, 106, 0, 2684, 2680, 1, 0, 0, 0, 2684, 2682, 1, 0, 0, 0, 2685, 207, 1, 0, 0, 0, 2686, 2687, 5, 295, 0, 0, 2687, 2689, 5, 2, 0, 0, 2688, 2690, 3, 210, 105, 0, 2689, 2688, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2696, 5, 3, 0, 0, 2692, 2693, 5, 243, 0, 0, 2693, 2694, 5, 2, 0, 0, 2694, 2695, 5, 382, 0, 0, 2695, 2697, 5, 3, 0, 0, 2696, 2692, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 209, 1, 0, 0, 0, 2698, 2700, 5, 362, 0, 0, 2699, 2698, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 7, 23, 0, 0, 2702, 2723, 5, 222, 0, 0, 2703, 2704, 3, 268, 134, 0, 2704, 2705, 5, 258, 0, 0, 2705, 2723, 1, 0, 0, 0, 2706, 2707, 5, 29, 0, 0, 2707, 2708, 5, 382, 0, 0, 2708, 2709, 5, 210, 0, 0, 2709, 2710, 5, 201, 0, 0, 2710, 2719, 5, 382, 0, 0, 2711, 2717, 5, 203, 0, 0, 2712, 2718, 3, 376, 188, 0, 2713, 2714, 3, 370, 185, 0, 2714, 2715, 5, 2, 0, 0, 2715, 2716, 5, 3, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2712, 1, 0, 0, 0, 2717, 2713, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2723, 3, 268, 134, 0, 2722, 2699, 1, 0, 0, 0, 2722, 2703, 1, 0, 0, 0, 2722, 2706, 1, 0, 0, 0, 2722, 2721, 1, 0, 0, 0, 2723, 211, 1, 0, 0, 0, 2724, 2725, 5, 2, 0, 0, 2725, 2726, 3, 214, 107, 0, 2726, 2727, 5, 3, 0, 0, 2727, 213, 1, 0, 0, 0, 2728, 2733, 3, 372, 186, 0, 2729, 2730, 5, 4, 0, 0, 2730, 2732, 3, 372, 186, 0, 2731, 2729, 1, 0, 0, 0, 2732, 2735, 1, 0, 0, 0, 2733, 2731, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, 0, 2734, 215, 1, 0, 0, 0, 2735, 2733, 1, 0, 0, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2742, 3, 218, 109, 0, 2738, 2739, 5, 4, 0, 0, 2739, 2741, 3, 218, 109, 0, 2740, 2738, 1, 0, 0, 0, 2741, 2744, 1, 0, 0, 0, 2742, 2740, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2745, 2746, 5, 3, 0, 0, 2746, 217, 1, 0, 0, 0, 2747, 2749, 3, 372, 186, 0, 2748, 2750, 7, 15, 0, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 219, 1, 0, 0, 0, 2751, 2752, 5, 2, 0, 0, 2752, 2757, 3, 222, 111, 0, 2753, 2754, 5, 4, 0, 0, 2754, 2756, 3, 222, 111, 0, 2755, 2753, 1, 0, 0, 0, 2756, 2759, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2757, 1, 0, 0, 0, 2760, 2761, 5, 3, 0, 0, 2761, 221, 1, 0, 0, 0, 2762, 2764, 3, 96, 48, 0, 2763, 2765, 3, 24, 12, 0, 2764, 2763, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 223, 1, 0, 0, 0, 2766, 2770, 3, 86, 43, 0, 2767, 2770, 3, 90, 45, 0, 2768, 2770, 3, 98, 49, 0, 2769, 2766, 1, 0, 0, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2768, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2773, 3, 150, 75, 0, 2772, 2771, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2776, 3, 208, 104, 0, 2775, 2774, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 3, 240, 120, 0, 2778, 2798, 1, 0, 0, 0, 2779, 2780, 5, 2, 0, 0, 2780, 2781, 3, 26, 13, 0, 2781, 2783, 5, 3, 0, 0, 2782, 2784, 3, 208, 104, 0, 2783, 2782, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 3, 240, 120, 0, 2786, 2798, 1, 0, 0, 0, 2787, 2788, 5, 2, 0, 0, 2788, 2789, 3, 198, 99, 0, 2789, 2791, 5, 3, 0, 0, 2790, 2792, 3, 208, 104, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 3, 240, 120, 0, 2794, 2798, 1, 0, 0, 0, 2795, 2798, 3, 226, 113, 0, 2796, 2798, 3, 238, 119, 0, 2797, 2769, 1, 0, 0, 0, 2797, 2779, 1, 0, 0, 0, 2797, 2787, 1, 0, 0, 0, 2797, 2795, 1, 0, 0, 0, 2797, 2796, 1, 0, 0, 0, 2798, 225, 1, 0, 0, 0, 2799, 2800, 5, 333, 0, 0, 2800, 2805, 3, 268, 134, 0, 2801, 2802, 5, 4, 0, 0, 2802, 2804, 3, 268, 134, 0, 2803, 2801, 1, 0, 0, 0, 2804, 2807, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2808, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2808, 2809, 3, 240, 120, 0, 2809, 227, 1, 0, 0, 0, 2810, 2811, 5, 293, 0, 0, 2811, 2813, 3, 86, 43, 0, 2812, 2814, 3, 230, 115, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2830, 1, 0, 0, 0, 2815, 2816, 5, 293, 0, 0, 2816, 2817, 5, 2, 0, 0, 2817, 2818, 3, 86, 43, 0, 2818, 2820, 5, 3, 0, 0, 2819, 2821, 3, 230, 115, 0, 2820, 2819, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2830, 1, 0, 0, 0, 2822, 2823, 5, 293, 0, 0, 2823, 2824, 5, 2, 0, 0, 2824, 2825, 3, 26, 13, 0, 2825, 2827, 5, 3, 0, 0, 2826, 2828, 3, 230, 115, 0, 2827, 2826, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 2830, 1, 0, 0, 0, 2829, 2810, 1, 0, 0, 0, 2829, 2815, 1, 0, 0, 0, 2829, 2822, 1, 0, 0, 0, 2830, 229, 1, 0, 0, 0, 2831, 2832, 5, 346, 0, 0, 2832, 2833, 5, 274, 0, 0, 2833, 2851, 5, 217, 0, 0, 2834, 2835, 7, 24, 0, 0, 2835, 2848, 5, 31, 0, 0, 2836, 2837, 5, 2, 0, 0, 2837, 2842, 3, 268, 134, 0, 2838, 2839, 5, 4, 0, 0, 2839, 2841, 3, 268, 134, 0, 2840, 2838, 1, 0, 0, 0, 2841, 2844, 1, 0, 0, 0, 2842, 2840, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2845, 1, 0, 0, 0, 2844, 2842, 1, 0, 0, 0, 2845, 2846, 5, 3, 0, 0, 2846, 2849, 1, 0, 0, 0, 2847, 2849, 3, 268, 134, 0, 2848, 2836, 1, 0, 0, 0, 2848, 2847, 1, 0, 0, 0, 2849, 2851, 1, 0, 0, 0, 2850, 2831, 1, 0, 0, 0, 2850, 2834, 1, 0, 0, 0, 2851, 2868, 1, 0, 0, 0, 2852, 2853, 7, 25, 0, 0, 2853, 2866, 5, 31, 0, 0, 2854, 2855, 5, 2, 0, 0, 2855, 2860, 3, 108, 54, 0, 2856, 2857, 5, 4, 0, 0, 2857, 2859, 3, 108, 54, 0, 2858, 2856, 1, 0, 0, 0, 2859, 2862, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2863, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2864, 5, 3, 0, 0, 2864, 2867, 1, 0, 0, 0, 2865, 2867, 3, 108, 54, 0, 2866, 2854, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2852, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 231, 1, 0, 0, 0, 2870, 2871, 3, 376, 188, 0, 2871, 2872, 5, 373, 0, 0, 2872, 2873, 3, 228, 114, 0, 2873, 233, 1, 0, 0, 0, 2874, 2877, 3, 228, 114, 0, 2875, 2877, 3, 232, 116, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2875, 1, 0, 0, 0, 2877, 235, 1, 0, 0, 0, 2878, 2881, 3, 234, 117, 0, 2879, 2881, 3, 272, 136, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2879, 1, 0, 0, 0, 2881, 237, 1, 0, 0, 0, 2882, 2883, 3, 366, 183, 0, 2883, 2892, 5, 2, 0, 0, 2884, 2889, 3, 236, 118, 0, 2885, 2886, 5, 4, 0, 0, 2886, 2888, 3, 236, 118, 0, 2887, 2885, 1, 0, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2893, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2892, 2884, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2895, 5, 3, 0, 0, 2895, 2896, 3, 240, 120, 0, 2896, 239, 1, 0, 0, 0, 2897, 2899, 5, 20, 0, 0, 2898, 2897, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 3, 378, 189, 0, 2901, 2903, 3, 212, 106, 0, 2902, 2901, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2905, 1, 0, 0, 0, 2904, 2898, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 241, 1, 0, 0, 0, 2906, 2907, 5, 257, 0, 0, 2907, 2908, 5, 121, 0, 0, 2908, 2909, 5, 266, 0, 0, 2909, 2913, 3, 388, 194, 0, 2910, 2911, 5, 346, 0, 0, 2911, 2912, 5, 267, 0, 0, 2912, 2914, 3, 54, 27, 0, 2913, 2910, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2956, 1, 0, 0, 0, 2915, 2916, 5, 257, 0, 0, 2916, 2917, 5, 121, 0, 0, 2917, 2927, 5, 85, 0, 0, 2918, 2919, 5, 113, 0, 0, 2919, 2920, 5, 299, 0, 0, 2920, 2921, 5, 31, 0, 0, 2921, 2925, 3, 388, 194, 0, 2922, 2923, 5, 101, 0, 0, 2923, 2924, 5, 31, 0, 0, 2924, 2926, 3, 388, 194, 0, 2925, 2922, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 1, 0, 0, 0, 2927, 2918, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2934, 1, 0, 0, 0, 2929, 2930, 5, 48, 0, 0, 2930, 2931, 5, 154, 0, 0, 2931, 2932, 5, 299, 0, 0, 2932, 2933, 5, 31, 0, 0, 2933, 2935, 3, 388, 194, 0, 2934, 2929, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2941, 1, 0, 0, 0, 2936, 2937, 5, 177, 0, 0, 2937, 2938, 5, 156, 0, 0, 2938, 2939, 5, 299, 0, 0, 2939, 2940, 5, 31, 0, 0, 2940, 2942, 3, 388, 194, 0, 2941, 2936, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2947, 1, 0, 0, 0, 2943, 2944, 5, 166, 0, 0, 2944, 2945, 5, 299, 0, 0, 2945, 2946, 5, 31, 0, 0, 2946, 2948, 3, 388, 194, 0, 2947, 2943, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2953, 1, 0, 0, 0, 2949, 2950, 5, 198, 0, 0, 2950, 2951, 5, 83, 0, 0, 2951, 2952, 5, 20, 0, 0, 2952, 2954, 3, 388, 194, 0, 2953, 2949, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2956, 1, 0, 0, 0, 2955, 2906, 1, 0, 0, 0, 2955, 2915, 1, 0, 0, 0, 2956, 243, 1, 0, 0, 0, 2957, 2962, 3, 246, 123, 0, 2958, 2959, 5, 4, 0, 0, 2959, 2961, 3, 246, 123, 0, 2960, 2958, 1, 0, 0, 0, 2961, 2964, 1, 0, 0, 0, 2962, 2960, 1, 0, 0, 0, 2962, 2963, 1, 0, 0, 0, 2963, 245, 1, 0, 0, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2970, 3, 372, 186, 0, 2966, 2967, 5, 5, 0, 0, 2967, 2969, 3, 372, 186, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2972, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2970, 2971, 1, 0, 0, 0, 2971, 247, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2978, 3, 250, 125, 0, 2974, 2975, 5, 4, 0, 0, 2975, 2977, 3, 250, 125, 0, 2976, 2974, 1, 0, 0, 0, 2977, 2980, 1, 0, 0, 0, 2978, 2976, 1, 0, 0, 0, 2978, 2979, 1, 0, 0, 0, 2979, 249, 1, 0, 0, 0, 2980, 2978, 1, 0, 0, 0, 2981, 2984, 3, 246, 123, 0, 2982, 2983, 5, 207, 0, 0, 2983, 2985, 3, 54, 27, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 251, 1, 0, 0, 0, 2986, 2987, 3, 372, 186, 0, 2987, 2988, 5, 5, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2986, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 3, 372, 186, 0, 2992, 253, 1, 0, 0, 0, 2993, 2994, 3, 372, 186, 0, 2994, 2995, 5, 5, 0, 0, 2995, 2997, 1, 0, 0, 0, 2996, 2993, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 3, 372, 186, 0, 2999, 255, 1, 0, 0, 0, 3000, 3003, 3, 92, 46, 0, 3001, 3003, 3, 268, 134, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3011, 1, 0, 0, 0, 3004, 3006, 5, 20, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3009, 1, 0, 0, 0, 3007, 3010, 3, 372, 186, 0, 3008, 3010, 3, 212, 106, 0, 3009, 3007, 1, 0, 0, 0, 3009, 3008, 1, 0, 0, 0, 3010, 3012, 1, 0, 0, 0, 3011, 3005, 1, 0, 0, 0, 3011, 3012, 1, 0, 0, 0, 3012, 257, 1, 0, 0, 0, 3013, 3018, 3, 256, 128, 0, 3014, 3015, 5, 4, 0, 0, 3015, 3017, 3, 256, 128, 0, 3016, 3014, 1, 0, 0, 0, 3017, 3020, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 259, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3021, 3022, 5, 2, 0, 0, 3022, 3027, 3, 262, 131, 0, 3023, 3024, 5, 4, 0, 0, 3024, 3026, 3, 262, 131, 0, 3025, 3023, 1, 0, 0, 0, 3026, 3029, 1, 0, 0, 0, 3027, 3025, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3030, 1, 0, 0, 0, 3029, 3027, 1, 0, 0, 0, 3030, 3031, 5, 3, 0, 0, 3031, 261, 1, 0, 0, 0, 3032, 3035, 3, 264, 132, 0, 3033, 3035, 3, 336, 168, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 263, 1, 0, 0, 0, 3036, 3050, 3, 370, 185, 0, 3037, 3038, 3, 376, 188, 0, 3038, 3039, 5, 2, 0, 0, 3039, 3044, 3, 266, 133, 0, 3040, 3041, 5, 4, 0, 0, 3041, 3043, 3, 266, 133, 0, 3042, 3040, 1, 0, 0, 0, 3043, 3046, 1, 0, 0, 0, 3044, 3042, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3047, 1, 0, 0, 0, 3046, 3044, 1, 0, 0, 0, 3047, 3048, 5, 3, 0, 0, 3048, 3050, 1, 0, 0, 0, 3049, 3036, 1, 0, 0, 0, 3049, 3037, 1, 0, 0, 0, 3050, 265, 1, 0, 0, 0, 3051, 3054, 3, 370, 185, 0, 3052, 3054, 3, 288, 144, 0, 3053, 3051, 1, 0, 0, 0, 3053, 3052, 1, 0, 0, 0, 3054, 267, 1, 0, 0, 0, 3055, 3056, 3, 276, 138, 0, 3056, 269, 1, 0, 0, 0, 3057, 3058, 3, 376, 188, 0, 3058, 3059, 5, 373, 0, 0, 3059, 3060, 3, 268, 134, 0, 3060, 271, 1, 0, 0, 0, 3061, 3064, 3, 268, 134, 0, 3062, 3064, 3, 270, 135, 0, 3063, 3061, 1, 0, 0, 0, 3063, 3062, 1, 0, 0, 0, 3064, 273, 1, 0, 0, 0, 3065, 3070, 3, 268, 134, 0, 3066, 3067, 5, 4, 0, 0, 3067, 3069, 3, 268, 134, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 275, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 6, 138, -1, 0, 3074, 3075, 7, 26, 0, 0, 3075, 3086, 3, 276, 138, 5, 3076, 3077, 5, 105, 0, 0, 3077, 3078, 5, 2, 0, 0, 3078, 3079, 3, 26, 13, 0, 3079, 3080, 5, 3, 0, 0, 3080, 3086, 1, 0, 0, 0, 3081, 3083, 3, 280, 140, 0, 3082, 3084, 3, 278, 139, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3086, 1, 0, 0, 0, 3085, 3073, 1, 0, 0, 0, 3085, 3076, 1, 0, 0, 0, 3085, 3081, 1, 0, 0, 0, 3086, 3095, 1, 0, 0, 0, 3087, 3088, 10, 2, 0, 0, 3088, 3089, 5, 14, 0, 0, 3089, 3094, 3, 276, 138, 3, 3090, 3091, 10, 1, 0, 0, 3091, 3092, 5, 208, 0, 0, 3092, 3094, 3, 276, 138, 2, 3093, 3087, 1, 0, 0, 0, 3093, 3090, 1, 0, 0, 0, 3094, 3097, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 277, 1, 0, 0, 0, 3097, 3095, 1, 0, 0, 0, 3098, 3100, 5, 197, 0, 0, 3099, 3098, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3102, 5, 24, 0, 0, 3102, 3103, 3, 280, 140, 0, 3103, 3104, 5, 14, 0, 0, 3104, 3105, 3, 280, 140, 0, 3105, 3181, 1, 0, 0, 0, 3106, 3108, 5, 197, 0, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3110, 5, 140, 0, 0, 3110, 3111, 5, 2, 0, 0, 3111, 3116, 3, 268, 134, 0, 3112, 3113, 5, 4, 0, 0, 3113, 3115, 3, 268, 134, 0, 3114, 3112, 1, 0, 0, 0, 3115, 3118, 1, 0, 0, 0, 3116, 3114, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3119, 1, 0, 0, 0, 3118, 3116, 1, 0, 0, 0, 3119, 3120, 5, 3, 0, 0, 3120, 3181, 1, 0, 0, 0, 3121, 3123, 5, 197, 0, 0, 3122, 3121, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 5, 140, 0, 0, 3125, 3126, 5, 2, 0, 0, 3126, 3127, 3, 26, 13, 0, 3127, 3128, 5, 3, 0, 0, 3128, 3181, 1, 0, 0, 0, 3129, 3131, 5, 197, 0, 0, 3130, 3129, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3133, 7, 27, 0, 0, 3133, 3181, 3, 280, 140, 0, 3134, 3136, 5, 197, 0, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 7, 28, 0, 0, 3138, 3152, 7, 29, 0, 0, 3139, 3140, 5, 2, 0, 0, 3140, 3153, 5, 3, 0, 0, 3141, 3142, 5, 2, 0, 0, 3142, 3147, 3, 268, 134, 0, 3143, 3144, 5, 4, 0, 0, 3144, 3146, 3, 268, 134, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3149, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3147, 1, 0, 0, 0, 3150, 3151, 5, 3, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3139, 1, 0, 0, 0, 3152, 3141, 1, 0, 0, 0, 3153, 3181, 1, 0, 0, 0, 3154, 3156, 5, 197, 0, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3158, 7, 28, 0, 0, 3158, 3161, 3, 280, 140, 0, 3159, 3160, 5, 100, 0, 0, 3160, 3162, 3, 388, 194, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3181, 1, 0, 0, 0, 3163, 3165, 5, 153, 0, 0, 3164, 3166, 5, 197, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3181, 5, 198, 0, 0, 3168, 3170, 5, 153, 0, 0, 3169, 3171, 5, 197, 0, 0, 3170, 3169, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3181, 7, 30, 0, 0, 3173, 3175, 5, 153, 0, 0, 3174, 3176, 5, 197, 0, 0, 3175, 3174, 1, 0, 0, 0, 3175, 3176, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 92, 0, 0, 3178, 3179, 5, 123, 0, 0, 3179, 3181, 3, 280, 140, 0, 3180, 3099, 1, 0, 0, 0, 3180, 3107, 1, 0, 0, 0, 3180, 3122, 1, 0, 0, 0, 3180, 3130, 1, 0, 0, 0, 3180, 3135, 1, 0, 0, 0, 3180, 3155, 1, 0, 0, 0, 3180, 3163, 1, 0, 0, 0, 3180, 3168, 1, 0, 0, 0, 3180, 3173, 1, 0, 0, 0, 3181, 279, 1, 0, 0, 0, 3182, 3183, 6, 140, -1, 0, 3183, 3187, 3, 284, 142, 0, 3184, 3185, 7, 31, 0, 0, 3185, 3187, 3, 280, 140, 7, 3186, 3182, 1, 0, 0, 0, 3186, 3184, 1, 0, 0, 0, 3187, 3209, 1, 0, 0, 0, 3188, 3189, 10, 6, 0, 0, 3189, 3190, 7, 32, 0, 0, 3190, 3208, 3, 280, 140, 7, 3191, 3192, 10, 5, 0, 0, 3192, 3193, 7, 33, 0, 0, 3193, 3208, 3, 280, 140, 6, 3194, 3195, 10, 4, 0, 0, 3195, 3196, 5, 367, 0, 0, 3196, 3208, 3, 280, 140, 5, 3197, 3198, 10, 3, 0, 0, 3198, 3199, 5, 370, 0, 0, 3199, 3208, 3, 280, 140, 4, 3200, 3201, 10, 2, 0, 0, 3201, 3202, 5, 368, 0, 0, 3202, 3208, 3, 280, 140, 3, 3203, 3204, 10, 1, 0, 0, 3204, 3205, 3, 290, 145, 0, 3205, 3206, 3, 280, 140, 2, 3206, 3208, 1, 0, 0, 0, 3207, 3188, 1, 0, 0, 0, 3207, 3191, 1, 0, 0, 0, 3207, 3194, 1, 0, 0, 0, 3207, 3197, 1, 0, 0, 0, 3207, 3200, 1, 0, 0, 0, 3207, 3203, 1, 0, 0, 0, 3208, 3211, 1, 0, 0, 0, 3209, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 281, 1, 0, 0, 0, 3211, 3209, 1, 0, 0, 0, 3212, 3213, 7, 34, 0, 0, 3213, 283, 1, 0, 0, 0, 3214, 3215, 6, 142, -1, 0, 3215, 3464, 7, 35, 0, 0, 3216, 3217, 7, 36, 0, 0, 3217, 3220, 5, 2, 0, 0, 3218, 3221, 3, 282, 141, 0, 3219, 3221, 3, 388, 194, 0, 3220, 3218, 1, 0, 0, 0, 3220, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3223, 5, 4, 0, 0, 3223, 3224, 3, 280, 140, 0, 3224, 3225, 5, 4, 0, 0, 3225, 3226, 3, 280, 140, 0, 3226, 3227, 5, 3, 0, 0, 3227, 3464, 1, 0, 0, 0, 3228, 3229, 7, 37, 0, 0, 3229, 3232, 5, 2, 0, 0, 3230, 3233, 3, 282, 141, 0, 3231, 3233, 3, 388, 194, 0, 3232, 3230, 1, 0, 0, 0, 3232, 3231, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3235, 5, 4, 0, 0, 3235, 3236, 3, 280, 140, 0, 3236, 3237, 5, 4, 0, 0, 3237, 3238, 3, 280, 140, 0, 3238, 3239, 5, 3, 0, 0, 3239, 3464, 1, 0, 0, 0, 3240, 3242, 5, 35, 0, 0, 3241, 3243, 3, 350, 175, 0, 3242, 3241, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3242, 1, 0, 0, 0, 3244, 3245, 1, 0, 0, 0, 3245, 3248, 1, 0, 0, 0, 3246, 3247, 5, 97, 0, 0, 3247, 3249, 3, 268, 134, 0, 3248, 3246, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3251, 5, 99, 0, 0, 3251, 3464, 1, 0, 0, 0, 3252, 3253, 5, 35, 0, 0, 3253, 3255, 3, 268, 134, 0, 3254, 3256, 3, 350, 175, 0, 3255, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3255, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3261, 1, 0, 0, 0, 3259, 3260, 5, 97, 0, 0, 3260, 3262, 3, 268, 134, 0, 3261, 3259, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 5, 99, 0, 0, 3264, 3464, 1, 0, 0, 0, 3265, 3266, 7, 38, 0, 0, 3266, 3267, 5, 2, 0, 0, 3267, 3268, 3, 268, 134, 0, 3268, 3269, 5, 20, 0, 0, 3269, 3270, 3, 318, 159, 0, 3270, 3271, 5, 3, 0, 0, 3271, 3464, 1, 0, 0, 0, 3272, 3273, 5, 286, 0, 0, 3273, 3282, 5, 2, 0, 0, 3274, 3279, 3, 256, 128, 0, 3275, 3276, 5, 4, 0, 0, 3276, 3278, 3, 256, 128, 0, 3277, 3275, 1, 0, 0, 0, 3278, 3281, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3283, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3282, 3274, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3464, 5, 3, 0, 0, 3285, 3286, 5, 116, 0, 0, 3286, 3287, 5, 2, 0, 0, 3287, 3290, 3, 268, 134, 0, 3288, 3289, 5, 138, 0, 0, 3289, 3291, 5, 199, 0, 0, 3290, 3288, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 5, 3, 0, 0, 3293, 3464, 1, 0, 0, 0, 3294, 3295, 5, 17, 0, 0, 3295, 3296, 5, 2, 0, 0, 3296, 3299, 3, 268, 134, 0, 3297, 3298, 5, 138, 0, 0, 3298, 3300, 5, 199, 0, 0, 3299, 3297, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3302, 5, 3, 0, 0, 3302, 3464, 1, 0, 0, 0, 3303, 3304, 5, 157, 0, 0, 3304, 3305, 5, 2, 0, 0, 3305, 3308, 3, 268, 134, 0, 3306, 3307, 5, 138, 0, 0, 3307, 3309, 5, 199, 0, 0, 3308, 3306, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3464, 1, 0, 0, 0, 3312, 3313, 5, 225, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3315, 3, 280, 140, 0, 3315, 3316, 5, 140, 0, 0, 3316, 3317, 3, 280, 140, 0, 3317, 3318, 5, 3, 0, 0, 3318, 3464, 1, 0, 0, 0, 3319, 3464, 3, 288, 144, 0, 3320, 3464, 5, 363, 0, 0, 3321, 3322, 3, 370, 185, 0, 3322, 3323, 5, 5, 0, 0, 3323, 3324, 5, 363, 0, 0, 3324, 3464, 1, 0, 0, 0, 3325, 3326, 5, 2, 0, 0, 3326, 3329, 3, 256, 128, 0, 3327, 3328, 5, 4, 0, 0, 3328, 3330, 3, 256, 128, 0, 3329, 3327, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 5, 3, 0, 0, 3334, 3464, 1, 0, 0, 0, 3335, 3336, 5, 2, 0, 0, 3336, 3337, 3, 26, 13, 0, 3337, 3338, 5, 3, 0, 0, 3338, 3464, 1, 0, 0, 0, 3339, 3340, 5, 136, 0, 0, 3340, 3341, 5, 2, 0, 0, 3341, 3342, 3, 268, 134, 0, 3342, 3343, 5, 3, 0, 0, 3343, 3464, 1, 0, 0, 0, 3344, 3345, 3, 366, 183, 0, 3345, 3357, 5, 2, 0, 0, 3346, 3348, 3, 196, 98, 0, 3347, 3346, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3354, 3, 272, 136, 0, 3350, 3351, 5, 4, 0, 0, 3351, 3353, 3, 272, 136, 0, 3352, 3350, 1, 0, 0, 0, 3353, 3356, 1, 0, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3354, 1, 0, 0, 0, 3357, 3347, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3366, 5, 3, 0, 0, 3360, 3361, 5, 114, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3363, 5, 344, 0, 0, 3363, 3364, 3, 276, 138, 0, 3364, 3365, 5, 3, 0, 0, 3365, 3367, 1, 0, 0, 0, 3366, 3360, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3370, 1, 0, 0, 0, 3368, 3369, 7, 39, 0, 0, 3369, 3371, 5, 199, 0, 0, 3370, 3368, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3374, 1, 0, 0, 0, 3372, 3373, 5, 213, 0, 0, 3373, 3375, 3, 358, 179, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3464, 1, 0, 0, 0, 3376, 3377, 3, 376, 188, 0, 3377, 3378, 5, 372, 0, 0, 3378, 3379, 3, 268, 134, 0, 3379, 3464, 1, 0, 0, 0, 3380, 3381, 5, 2, 0, 0, 3381, 3384, 3, 376, 188, 0, 3382, 3383, 5, 4, 0, 0, 3383, 3385, 3, 376, 188, 0, 3384, 3382, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3389, 5, 3, 0, 0, 3389, 3390, 5, 372, 0, 0, 3390, 3391, 3, 268, 134, 0, 3391, 3464, 1, 0, 0, 0, 3392, 3464, 3, 376, 188, 0, 3393, 3394, 5, 2, 0, 0, 3394, 3395, 3, 268, 134, 0, 3395, 3396, 5, 3, 0, 0, 3396, 3464, 1, 0, 0, 0, 3397, 3398, 5, 110, 0, 0, 3398, 3399, 5, 2, 0, 0, 3399, 3400, 3, 376, 188, 0, 3400, 3401, 5, 123, 0, 0, 3401, 3402, 3, 280, 140, 0, 3402, 3403, 5, 3, 0, 0, 3403, 3464, 1, 0, 0, 0, 3404, 3405, 7, 40, 0, 0, 3405, 3406, 5, 2, 0, 0, 3406, 3407, 3, 280, 140, 0, 3407, 3408, 7, 41, 0, 0, 3408, 3411, 3, 280, 140, 0, 3409, 3410, 7, 42, 0, 0, 3410, 3412, 3, 280, 140, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3414, 5, 3, 0, 0, 3414, 3464, 1, 0, 0, 0, 3415, 3416, 5, 315, 0, 0, 3416, 3418, 5, 2, 0, 0, 3417, 3419, 7, 43, 0, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3421, 1, 0, 0, 0, 3420, 3422, 3, 280, 140, 0, 3421, 3420, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 5, 123, 0, 0, 3424, 3425, 3, 280, 140, 0, 3425, 3426, 5, 3, 0, 0, 3426, 3464, 1, 0, 0, 0, 3427, 3428, 5, 215, 0, 0, 3428, 3429, 5, 2, 0, 0, 3429, 3430, 3, 280, 140, 0, 3430, 3431, 5, 224, 0, 0, 3431, 3432, 3, 280, 140, 0, 3432, 3433, 5, 123, 0, 0, 3433, 3436, 3, 280, 140, 0, 3434, 3435, 5, 119, 0, 0, 3435, 3437, 3, 280, 140, 0, 3436, 3434, 1, 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3439, 5, 3, 0, 0, 3439, 3464, 1, 0, 0, 0, 3440, 3441, 7, 44, 0, 0, 3441, 3442, 5, 2, 0, 0, 3442, 3443, 3, 280, 140, 0, 3443, 3444, 5, 3, 0, 0, 3444, 3445, 5, 347, 0, 0, 3445, 3446, 5, 130, 0, 0, 3446, 3447, 5, 2, 0, 0, 3447, 3448, 5, 209, 0, 0, 3448, 3449, 5, 31, 0, 0, 3449, 3450, 3, 108, 54, 0, 3450, 3457, 5, 3, 0, 0, 3451, 3452, 5, 114, 0, 0, 3452, 3453, 5, 2, 0, 0, 3453, 3454, 5, 344, 0, 0, 3454, 3455, 3, 276, 138, 0, 3455, 3456, 5, 3, 0, 0, 3456, 3458, 1, 0, 0, 0, 3457, 3451, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3461, 1, 0, 0, 0, 3459, 3460, 5, 213, 0, 0, 3460, 3462, 3, 358, 179, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3214, 1, 0, 0, 0, 3463, 3216, 1, 0, 0, 0, 3463, 3228, 1, 0, 0, 0, 3463, 3240, 1, 0, 0, 0, 3463, 3252, 1, 0, 0, 0, 3463, 3265, 1, 0, 0, 0, 3463, 3272, 1, 0, 0, 0, 3463, 3285, 1, 0, 0, 0, 3463, 3294, 1, 0, 0, 0, 3463, 3303, 1, 0, 0, 0, 3463, 3312, 1, 0, 0, 0, 3463, 3319, 1, 0, 0, 0, 3463, 3320, 1, 0, 0, 0, 3463, 3321, 1, 0, 0, 0, 3463, 3325, 1, 0, 0, 0, 3463, 3335, 1, 0, 0, 0, 3463, 3339, 1, 0, 0, 0, 3463, 3344, 1, 0, 0, 0, 3463, 3376, 1, 0, 0, 0, 3463, 3380, 1, 0, 0, 0, 3463, 3392, 1, 0, 0, 0, 3463, 3393, 1, 0, 0, 0, 3463, 3397, 1, 0, 0, 0, 3463, 3404, 1, 0, 0, 0, 3463, 3415, 1, 0, 0, 0, 3463, 3427, 1, 0, 0, 0, 3463, 3440, 1, 0, 0, 0, 3464, 3475, 1, 0, 0, 0, 3465, 3466, 10, 9, 0, 0, 3466, 3467, 5, 6, 0, 0, 3467, 3468, 3, 280, 140, 0, 3468, 3469, 5, 7, 0, 0, 3469, 3474, 1, 0, 0, 0, 3470, 3471, 10, 7, 0, 0, 3471, 3472, 5, 5, 0, 0, 3472, 3474, 3, 376, 188, 0, 3473, 3465, 1, 0, 0, 0, 3473, 3470, 1, 0, 0, 0, 3474, 3477, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 285, 1, 0, 0, 0, 3477, 3475, 1, 0, 0, 0, 3478, 3486, 5, 71, 0, 0, 3479, 3486, 5, 303, 0, 0, 3480, 3486, 5, 304, 0, 0, 3481, 3486, 5, 305, 0, 0, 3482, 3486, 5, 149, 0, 0, 3483, 3486, 5, 133, 0, 0, 3484, 3486, 3, 376, 188, 0, 3485, 3478, 1, 0, 0, 0, 3485, 3479, 1, 0, 0, 0, 3485, 3480, 1, 0, 0, 0, 3485, 3481, 1, 0, 0, 0, 3485, 3482, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3485, 3484, 1, 0, 0, 0, 3486, 287, 1, 0, 0, 0, 3487, 3503, 5, 198, 0, 0, 3488, 3503, 5, 376, 0, 0, 3489, 3490, 5, 371, 0, 0, 3490, 3503, 3, 376, 188, 0, 3491, 3503, 3, 298, 149, 0, 3492, 3493, 3, 286, 143, 0, 3493, 3494, 3, 388, 194, 0, 3494, 3503, 1, 0, 0, 0, 3495, 3503, 3, 384, 192, 0, 3496, 3503, 3, 296, 148, 0, 3497, 3499, 3, 388, 194, 0, 3498, 3497, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3503, 1, 0, 0, 0, 3502, 3487, 1, 0, 0, 0, 3502, 3488, 1, 0, 0, 0, 3502, 3489, 1, 0, 0, 0, 3502, 3491, 1, 0, 0, 0, 3502, 3492, 1, 0, 0, 0, 3502, 3495, 1, 0, 0, 0, 3502, 3496, 1, 0, 0, 0, 3502, 3498, 1, 0, 0, 0, 3503, 289, 1, 0, 0, 0, 3504, 3505, 7, 45, 0, 0, 3505, 291, 1, 0, 0, 0, 3506, 3507, 7, 46, 0, 0, 3507, 293, 1, 0, 0, 0, 3508, 3509, 7, 47, 0, 0, 3509, 295, 1, 0, 0, 0, 3510, 3511, 7, 48, 0, 0, 3511, 297, 1, 0, 0, 0, 3512, 3515, 5, 149, 0, 0, 3513, 3516, 3, 300, 150, 0, 3514, 3516, 3, 304, 152, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3514, 1, 0, 0, 0, 3516, 299, 1, 0, 0, 0, 3517, 3519, 3, 302, 151, 0, 3518, 3520, 3, 306, 153, 0, 3519, 3518, 1, 0, 0, 0, 3519, 3520, 1, 0, 0, 0, 3520, 301, 1, 0, 0, 0, 3521, 3522, 3, 308, 154, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3525, 1, 0, 0, 0, 3524, 3521, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 303, 1, 0, 0, 0, 3528, 3531, 3, 306, 153, 0, 3529, 3532, 3, 302, 151, 0, 3530, 3532, 3, 306, 153, 0, 3531, 3529, 1, 0, 0, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 305, 1, 0, 0, 0, 3533, 3534, 3, 308, 154, 0, 3534, 3535, 3, 312, 156, 0, 3535, 3536, 5, 309, 0, 0, 3536, 3537, 3, 312, 156, 0, 3537, 307, 1, 0, 0, 0, 3538, 3540, 7, 49, 0, 0, 3539, 3538, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3544, 1, 0, 0, 0, 3541, 3545, 5, 382, 0, 0, 3542, 3545, 5, 384, 0, 0, 3543, 3545, 3, 388, 194, 0, 3544, 3541, 1, 0, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3543, 1, 0, 0, 0, 3545, 309, 1, 0, 0, 0, 3546, 3547, 7, 50, 0, 0, 3547, 311, 1, 0, 0, 0, 3548, 3549, 7, 51, 0, 0, 3549, 313, 1, 0, 0, 0, 3550, 3554, 5, 116, 0, 0, 3551, 3552, 5, 9, 0, 0, 3552, 3554, 3, 372, 186, 0, 3553, 3550, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3554, 315, 1, 0, 0, 0, 3555, 3586, 5, 27, 0, 0, 3556, 3586, 5, 308, 0, 0, 3557, 3586, 5, 32, 0, 0, 3558, 3586, 5, 276, 0, 0, 3559, 3586, 5, 272, 0, 0, 3560, 3586, 5, 150, 0, 0, 3561, 3586, 5, 151, 0, 0, 3562, 3586, 5, 25, 0, 0, 3563, 3586, 5, 174, 0, 0, 3564, 3586, 5, 117, 0, 0, 3565, 3586, 5, 234, 0, 0, 3566, 3586, 5, 95, 0, 0, 3567, 3586, 5, 71, 0, 0, 3568, 3586, 5, 303, 0, 0, 3569, 3586, 5, 305, 0, 0, 3570, 3586, 5, 304, 0, 0, 3571, 3586, 5, 285, 0, 0, 3572, 3586, 5, 41, 0, 0, 3573, 3586, 5, 40, 0, 0, 3574, 3586, 5, 334, 0, 0, 3575, 3586, 5, 26, 0, 0, 3576, 3586, 5, 80, 0, 0, 3577, 3586, 5, 79, 0, 0, 3578, 3586, 5, 200, 0, 0, 3579, 3586, 5, 340, 0, 0, 3580, 3586, 5, 149, 0, 0, 3581, 3586, 5, 19, 0, 0, 3582, 3586, 5, 286, 0, 0, 3583, 3586, 5, 177, 0, 0, 3584, 3586, 3, 376, 188, 0, 3585, 3555, 1, 0, 0, 0, 3585, 3556, 1, 0, 0, 0, 3585, 3557, 1, 0, 0, 0, 3585, 3558, 1, 0, 0, 0, 3585, 3559, 1, 0, 0, 0, 3585, 3560, 1, 0, 0, 0, 3585, 3561, 1, 0, 0, 0, 3585, 3562, 1, 0, 0, 0, 3585, 3563, 1, 0, 0, 0, 3585, 3564, 1, 0, 0, 0, 3585, 3565, 1, 0, 0, 0, 3585, 3566, 1, 0, 0, 0, 3585, 3567, 1, 0, 0, 0, 3585, 3568, 1, 0, 0, 0, 3585, 3569, 1, 0, 0, 0, 3585, 3570, 1, 0, 0, 0, 3585, 3571, 1, 0, 0, 0, 3585, 3572, 1, 0, 0, 0, 3585, 3573, 1, 0, 0, 0, 3585, 3574, 1, 0, 0, 0, 3585, 3575, 1, 0, 0, 0, 3585, 3576, 1, 0, 0, 0, 3585, 3577, 1, 0, 0, 0, 3585, 3578, 1, 0, 0, 0, 3585, 3579, 1, 0, 0, 0, 3585, 3580, 1, 0, 0, 0, 3585, 3581, 1, 0, 0, 0, 3585, 3582, 1, 0, 0, 0, 3585, 3583, 1, 0, 0, 0, 3585, 3584, 1, 0, 0, 0, 3586, 317, 1, 0, 0, 0, 3587, 3588, 5, 19, 0, 0, 3588, 3589, 5, 356, 0, 0, 3589, 3590, 3, 318, 159, 0, 3590, 3591, 5, 358, 0, 0, 3591, 3634, 1, 0, 0, 0, 3592, 3593, 5, 177, 0, 0, 3593, 3594, 5, 356, 0, 0, 3594, 3595, 3, 318, 159, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3597, 3, 318, 159, 0, 3597, 3598, 5, 358, 0, 0, 3598, 3634, 1, 0, 0, 0, 3599, 3606, 5, 286, 0, 0, 3600, 3602, 5, 356, 0, 0, 3601, 3603, 3, 346, 173, 0, 3602, 3601, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3607, 5, 358, 0, 0, 3605, 3607, 5, 354, 0, 0, 3606, 3600, 1, 0, 0, 0, 3606, 3605, 1, 0, 0, 0, 3607, 3634, 1, 0, 0, 0, 3608, 3609, 5, 149, 0, 0, 3609, 3612, 7, 52, 0, 0, 3610, 3611, 5, 309, 0, 0, 3611, 3613, 5, 186, 0, 0, 3612, 3610, 1, 0, 0, 0, 3612, 3613, 1, 0, 0, 0, 3613, 3634, 1, 0, 0, 0, 3614, 3615, 5, 149, 0, 0, 3615, 3618, 7, 53, 0, 0, 3616, 3617, 5, 309, 0, 0, 3617, 3619, 7, 54, 0, 0, 3618, 3616, 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3634, 1, 0, 0, 0, 3620, 3631, 3, 316, 158, 0, 3621, 3622, 5, 2, 0, 0, 3622, 3627, 5, 382, 0, 0, 3623, 3624, 5, 4, 0, 0, 3624, 3626, 5, 382, 0, 0, 3625, 3623, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 3630, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3632, 5, 3, 0, 0, 3631, 3621, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3634, 1, 0, 0, 0, 3633, 3587, 1, 0, 0, 0, 3633, 3592, 1, 0, 0, 0, 3633, 3599, 1, 0, 0, 0, 3633, 3608, 1, 0, 0, 0, 3633, 3614, 1, 0, 0, 0, 3633, 3620, 1, 0, 0, 0, 3634, 319, 1, 0, 0, 0, 3635, 3640, 3, 322, 161, 0, 3636, 3637, 5, 4, 0, 0, 3637, 3639, 3, 322, 161, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3642, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 321, 1, 0, 0, 0, 3642, 3640, 1, 0, 0, 0, 3643, 3644, 3, 96, 48, 0, 3644, 3648, 3, 318, 159, 0, 3645, 3647, 3, 328, 164, 0, 3646, 3645, 1, 0, 0, 0, 3647, 3650, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 323, 1, 0, 0, 0, 3650, 3648, 1, 0, 0, 0, 3651, 3656, 3, 326, 163, 0, 3652, 3653, 5, 4, 0, 0, 3653, 3655, 3, 326, 163, 0, 3654, 3652, 1, 0, 0, 0, 3655, 3658, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 325, 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3659, 3660, 3, 92, 46, 0, 3660, 3664, 3, 318, 159, 0, 3661, 3663, 3, 328, 164, 0, 3662, 3661, 1, 0, 0, 0, 3663, 3666, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 327, 1, 0, 0, 0, 3666, 3664, 1, 0, 0, 0, 3667, 3668, 5, 197, 0, 0, 3668, 3673, 5, 198, 0, 0, 3669, 3673, 3, 330, 165, 0, 3670, 3673, 3, 24, 12, 0, 3671, 3673, 3, 314, 157, 0, 3672, 3667, 1, 0, 0, 0, 3672, 3669, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3671, 1, 0, 0, 0, 3673, 329, 1, 0, 0, 0, 3674, 3675, 5, 82, 0, 0, 3675, 3676, 3, 268, 134, 0, 3676, 331, 1, 0, 0, 0, 3677, 3678, 7, 55, 0, 0, 3678, 3679, 3, 268, 134, 0, 3679, 333, 1, 0, 0, 0, 3680, 3685, 3, 336, 168, 0, 3681, 3682, 5, 4, 0, 0, 3682, 3684, 3, 336, 168, 0, 3683, 3681, 1, 0, 0, 0, 3684, 3687, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 335, 1, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3688, 3689, 3, 372, 186, 0, 3689, 3692, 3, 318, 159, 0, 3690, 3691, 5, 197, 0, 0, 3691, 3693, 5, 198, 0, 0, 3692, 3690, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 1, 0, 0, 0, 3694, 3696, 3, 24, 12, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 337, 1, 0, 0, 0, 3697, 3702, 3, 340, 170, 0, 3698, 3699, 5, 4, 0, 0, 3699, 3701, 3, 340, 170, 0, 3700, 3698, 1, 0, 0, 0, 3701, 3704, 1, 0, 0, 0, 3702, 3700, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 339, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3706, 3, 96, 48, 0, 3706, 3710, 3, 318, 159, 0, 3707, 3709, 3, 342, 171, 0, 3708, 3707, 1, 0, 0, 0, 3709, 3712, 1, 0, 0, 0, 3710, 3708, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 341, 1, 0, 0, 0, 3712, 3710, 1, 0, 0, 0, 3713, 3714, 5, 197, 0, 0, 3714, 3719, 5, 198, 0, 0, 3715, 3719, 3, 330, 165, 0, 3716, 3719, 3, 344, 172, 0, 3717, 3719, 3, 24, 12, 0, 3718, 3713, 1, 0, 0, 0, 3718, 3715, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3717, 1, 0, 0, 0, 3719, 343, 1, 0, 0, 0, 3720, 3721, 5, 127, 0, 0, 3721, 3722, 5, 12, 0, 0, 3722, 3723, 5, 20, 0, 0, 3723, 3724, 5, 2, 0, 0, 3724, 3725, 3, 268, 134, 0, 3725, 3726, 5, 3, 0, 0, 3726, 345, 1, 0, 0, 0, 3727, 3732, 3, 348, 174, 0, 3728, 3729, 5, 4, 0, 0, 3729, 3731, 3, 348, 174, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3734, 1, 0, 0, 0, 3732, 3730, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 347, 1, 0, 0, 0, 3734, 3732, 1, 0, 0, 0, 3735, 3737, 3, 376, 188, 0, 3736, 3738, 5, 371, 0, 0, 3737, 3736, 1, 0, 0, 0, 3737, 3738, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 3742, 3, 318, 159, 0, 3740, 3741, 5, 197, 0, 0, 3741, 3743, 5, 198, 0, 0, 3742, 3740, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3746, 3, 24, 12, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 349, 1, 0, 0, 0, 3747, 3748, 5, 343, 0, 0, 3748, 3749, 3, 268, 134, 0, 3749, 3750, 5, 300, 0, 0, 3750, 3751, 3, 268, 134, 0, 3751, 351, 1, 0, 0, 0, 3752, 3753, 5, 345, 0, 0, 3753, 3758, 3, 356, 178, 0, 3754, 3755, 5, 4, 0, 0, 3755, 3757, 3, 356, 178, 0, 3756, 3754, 1, 0, 0, 0, 3757, 3760, 1, 0, 0, 0, 3758, 3756, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 353, 1, 0, 0, 0, 3760, 3758, 1, 0, 0, 0, 3761, 3762, 5, 351, 0, 0, 3762, 3763, 5, 31, 0, 0, 3763, 3764, 3, 94, 47, 0, 3764, 355, 1, 0, 0, 0, 3765, 3766, 3, 372, 186, 0, 3766, 3767, 5, 20, 0, 0, 3767, 3768, 3, 358, 179, 0, 3768, 357, 1, 0, 0, 0, 3769, 3816, 3, 372, 186, 0, 3770, 3771, 5, 2, 0, 0, 3771, 3772, 3, 372, 186, 0, 3772, 3773, 5, 3, 0, 0, 3773, 3816, 1, 0, 0, 0, 3774, 3809, 5, 2, 0, 0, 3775, 3776, 5, 44, 0, 0, 3776, 3777, 5, 31, 0, 0, 3777, 3782, 3, 268, 134, 0, 3778, 3779, 5, 4, 0, 0, 3779, 3781, 3, 268, 134, 0, 3780, 3778, 1, 0, 0, 0, 3781, 3784, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3810, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3785, 3786, 7, 24, 0, 0, 3786, 3787, 5, 31, 0, 0, 3787, 3792, 3, 268, 134, 0, 3788, 3789, 5, 4, 0, 0, 3789, 3791, 3, 268, 134, 0, 3790, 3788, 1, 0, 0, 0, 3791, 3794, 1, 0, 0, 0, 3792, 3790, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3796, 1, 0, 0, 0, 3794, 3792, 1, 0, 0, 0, 3795, 3785, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3807, 1, 0, 0, 0, 3797, 3798, 7, 25, 0, 0, 3798, 3799, 5, 31, 0, 0, 3799, 3804, 3, 108, 54, 0, 3800, 3801, 5, 4, 0, 0, 3801, 3803, 3, 108, 54, 0, 3802, 3800, 1, 0, 0, 0, 3803, 3806, 1, 0, 0, 0, 3804, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3808, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3807, 3797, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3810, 1, 0, 0, 0, 3809, 3775, 1, 0, 0, 0, 3809, 3795, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3813, 3, 360, 180, 0, 3812, 3811, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3816, 5, 3, 0, 0, 3815, 3769, 1, 0, 0, 0, 3815, 3770, 1, 0, 0, 0, 3815, 3774, 1, 0, 0, 0, 3816, 359, 1, 0, 0, 0, 3817, 3818, 5, 233, 0, 0, 3818, 3834, 3, 362, 181, 0, 3819, 3820, 5, 258, 0, 0, 3820, 3834, 3, 362, 181, 0, 3821, 3822, 5, 233, 0, 0, 3822, 3823, 5, 24, 0, 0, 3823, 3824, 3, 362, 181, 0, 3824, 3825, 5, 14, 0, 0, 3825, 3826, 3, 362, 181, 0, 3826, 3834, 1, 0, 0, 0, 3827, 3828, 5, 258, 0, 0, 3828, 3829, 5, 24, 0, 0, 3829, 3830, 3, 362, 181, 0, 3830, 3831, 5, 14, 0, 0, 3831, 3832, 3, 362, 181, 0, 3832, 3834, 1, 0, 0, 0, 3833, 3817, 1, 0, 0, 0, 3833, 3819, 1, 0, 0, 0, 3833, 3821, 1, 0, 0, 0, 3833, 3827, 1, 0, 0, 0, 3834, 361, 1, 0, 0, 0, 3835, 3836, 5, 321, 0, 0, 3836, 3843, 7, 56, 0, 0, 3837, 3838, 5, 62, 0, 0, 3838, 3843, 5, 257, 0, 0, 3839, 3840, 3, 268, 134, 0, 3840, 3841, 7, 56, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3835, 1, 0, 0, 0, 3842, 3837, 1, 0, 0, 0, 3842, 3839, 1, 0, 0, 0, 3843, 363, 1, 0, 0, 0, 3844, 3849, 3, 370, 185, 0, 3845, 3846, 5, 4, 0, 0, 3846, 3848, 3, 370, 185, 0, 3847, 3845, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3849, 3850, 1, 0, 0, 0, 3850, 365, 1, 0, 0, 0, 3851, 3849, 1, 0, 0, 0, 3852, 3853, 5, 136, 0, 0, 3853, 3854, 5, 2, 0, 0, 3854, 3855, 3, 268, 134, 0, 3855, 3856, 5, 3, 0, 0, 3856, 3862, 1, 0, 0, 0, 3857, 3862, 3, 370, 185, 0, 3858, 3862, 5, 114, 0, 0, 3859, 3862, 5, 161, 0, 0, 3860, 3862, 5, 250, 0, 0, 3861, 3852, 1, 0, 0, 0, 3861, 3857, 1, 0, 0, 0, 3861, 3858, 1, 0, 0, 0, 3861, 3859, 1, 0, 0, 0, 3861, 3860, 1, 0, 0, 0, 3862, 367, 1, 0, 0, 0, 3863, 3864, 3, 370, 185, 0, 3864, 369, 1, 0, 0, 0, 3865, 3870, 3, 376, 188, 0, 3866, 3867, 5, 5, 0, 0, 3867, 3869, 3, 376, 188, 0, 3868, 3866, 1, 0, 0, 0, 3869, 3872, 1, 0, 0, 0, 3870, 3868, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 371, 1, 0, 0, 0, 3872, 3870, 1, 0, 0, 0, 3873, 3874, 3, 376, 188, 0, 3874, 3875, 3, 374, 187, 0, 3875, 373, 1, 0, 0, 0, 3876, 3877, 5, 362, 0, 0, 3877, 3879, 3, 376, 188, 0, 3878, 3876, 1, 0, 0, 0, 3879, 3880, 1, 0, 0, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3881, 1, 0, 0, 0, 3881, 3884, 1, 0, 0, 0, 3882, 3884, 1, 0, 0, 0, 3883, 3878, 1, 0, 0, 0, 3883, 3882, 1, 0, 0, 0, 3884, 375, 1, 0, 0, 0, 3885, 3888, 3, 378, 189, 0, 3886, 3888, 3, 396, 198, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3886, 1, 0, 0, 0, 3888, 377, 1, 0, 0, 0, 3889, 3894, 5, 388, 0, 0, 3890, 3894, 3, 380, 190, 0, 3891, 3894, 3, 394, 197, 0, 3892, 3894, 3, 398, 199, 0, 3893, 3889, 1, 0, 0, 0, 3893, 3890, 1, 0, 0, 0, 3893, 3891, 1, 0, 0, 0, 3893, 3892, 1, 0, 0, 0, 3894, 379, 1, 0, 0, 0, 3895, 3896, 7, 57, 0, 0, 3896, 381, 1, 0, 0, 0, 3897, 3898, 5, 389, 0, 0, 3898, 383, 1, 0, 0, 0, 3899, 3901, 5, 362, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3940, 5, 383, 0, 0, 3903, 3905, 5, 362, 0, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3940, 5, 384, 0, 0, 3907, 3909, 5, 362, 0, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3940, 7, 58, 0, 0, 3911, 3913, 5, 362, 0, 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3940, 5, 382, 0, 0, 3915, 3917, 5, 362, 0, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 3940, 5, 379, 0, 0, 3919, 3921, 5, 362, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3940, 5, 380, 0, 0, 3923, 3925, 5, 362, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3940, 5, 381, 0, 0, 3927, 3929, 5, 362, 0, 0, 3928, 3927, 1, 0, 0, 0, 3928, 3929, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3940, 5, 386, 0, 0, 3931, 3933, 5, 362, 0, 0, 3932, 3931, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3940, 5, 385, 0, 0, 3935, 3937, 5, 362, 0, 0, 3936, 3935, 1, 0, 0, 0, 3936, 3937, 1, 0, 0, 0, 3937, 3938, 1, 0, 0, 0, 3938, 3940, 5, 387, 0, 0, 3939, 3900, 1, 0, 0, 0, 3939, 3904, 1, 0, 0, 0, 3939, 3908, 1, 0, 0, 0, 3939, 3912, 1, 0, 0, 0, 3939, 3916, 1, 0, 0, 0, 3939, 3920, 1, 0, 0, 0, 3939, 3924, 1, 0, 0, 0, 3939, 3928, 1, 0, 0, 0, 3939, 3932, 1, 0, 0, 0, 3939, 3936, 1, 0, 0, 0, 3940, 385, 1, 0, 0, 0, 3941, 3942, 5, 319, 0, 0, 3942, 3953, 3, 318, 159, 0, 3943, 3953, 3, 24, 12, 0, 3944, 3953, 3, 314, 157, 0, 3945, 3946, 7, 59, 0, 0, 3946, 3947, 5, 197, 0, 0, 3947, 3953, 5, 198, 0, 0, 3948, 3949, 5, 269, 0, 0, 3949, 3953, 3, 330, 165, 0, 3950, 3951, 5, 96, 0, 0, 3951, 3953, 5, 82, 0, 0, 3952, 3941, 1, 0, 0, 0, 3952, 3943, 1, 0, 0, 0, 3952, 3944, 1, 0, 0, 0, 3952, 3945, 1, 0, 0, 0, 3952, 3948, 1, 0, 0, 0, 3952, 3950, 1, 0, 0, 0, 3953, 387, 1, 0, 0, 0, 3954, 3955, 7, 60, 0, 0, 3955, 389, 1, 0, 0, 0, 3956, 3959, 3, 388, 194, 0, 3957, 3959, 5, 198, 0, 0, 3958, 3956, 1, 0, 0, 0, 3958, 3957, 1, 0, 0, 0, 3959, 391, 1, 0, 0, 0, 3960, 3963, 5, 382, 0, 0, 3961, 3963, 3, 388, 194, 0, 3962, 3960, 1, 0, 0, 0, 3962, 3961, 1, 0, 0, 0, 3963, 393, 1, 0, 0, 0, 3964, 3965, 7, 61, 0, 0, 3965, 395, 1, 0, 0, 0, 3966, 3967, 7, 62, 0, 0, 3967, 397, 1, 0, 0, 0, 3968, 3969, 7, 63, 0, 0, 3969, 399, 1, 0, 0, 0, 517, 403, 410, 414, 419, 426, 431, 439, 441, 460, 464, 470, 473, 476, 483, 486, 490, 493, 498, 510, 512, 520, 523, 527, 530, 536, 547, 553, 558, 591, 601, 612, 623, 634, 639, 648, 652, 658, 662, 667, 673, 685, 693, 699, 710, 714, 719, 734, 738, 745, 749, 755, 784, 788, 793, 800, 806, 809, 812, 816, 820, 828, 830, 839, 842, 851, 856, 862, 869, 872, 876, 887, 890, 896, 900, 915, 917, 925, 929, 935, 938, 942, 945, 951, 956, 960, 967, 970, 973, 980, 985, 994, 1002, 1008, 1011, 1014, 1020, 1024, 1029, 1032, 1036, 1038, 1046, 1054, 1057, 1064, 1067, 1070, 1079, 1084, 1090, 1095, 1098, 1102, 1105, 1109, 1137, 1140, 1148, 1154, 1157, 1160, 1165, 1173, 1178, 1184, 1190, 1193, 1200, 1207, 1215, 1232, 1259, 1262, 1268, 1277, 1286, 1292, 1297, 1302, 1309, 1314, 1319, 1326, 1334, 1337, 1341, 1353, 1357, 1364, 1480, 1488, 1496, 1505, 1515, 1519, 1522, 1526, 1532, 1544, 1556, 1561, 1570, 1578, 1583, 1585, 1593, 1598, 1602, 1605, 1613, 1618, 1627, 1632, 1635, 1640, 1644, 1649, 1651, 1655, 1664, 1672, 1678, 1689, 1696, 1705, 1710, 1713, 1736, 1738, 1750, 1757, 1760, 1767, 1771, 1777, 1785, 1792, 1795, 1803, 1814, 1825, 1833, 1839, 1851, 1858, 1865, 1877, 1885, 1891, 1897, 1900, 1916, 1923, 1934, 1943, 1946, 1955, 1958, 1967, 1970, 1979, 1982, 1985, 1990, 1992, 1996, 2007, 2013, 2019, 2022, 2024, 2036, 2040, 2043, 2047, 2053, 2057, 2065, 2069, 2072, 2075, 2078, 2082, 2086, 2091, 2095, 2098, 2101, 2104, 2108, 2113, 2117, 2120, 2123, 2126, 2128, 2134, 2141, 2146, 2149, 2152, 2156, 2166, 2170, 2172, 2175, 2179, 2185, 2189, 2200, 2210, 2214, 2226, 2238, 2253, 2258, 2264, 2271, 2287, 2292, 2305, 2310, 2318, 2324, 2328, 2331, 2336, 2343, 2349, 2358, 2368, 2383, 2388, 2390, 2395, 2404, 2417, 2422, 2426, 2433, 2438, 2442, 2445, 2448, 2462, 2475, 2480, 2484, 2487, 2491, 2497, 2500, 2507, 2519, 2530, 2543, 2554, 2559, 2567, 2572, 2586, 2595, 2598, 2603, 2610, 2613, 2619, 2625, 2628, 2633, 2638, 2642, 2648, 2652, 2655, 2660, 2663, 2668, 2672, 2675, 2678, 2684, 2689, 2696, 2699, 2717, 2719, 2722, 2733, 2742, 2749, 2757, 2764, 2769, 2772, 2775, 2783, 2791, 2797, 2805, 2813, 2820, 2827, 2829, 2842, 2848, 2850, 2860, 2866, 2868, 2876, 2880, 2889, 2892, 2898, 2902, 2904, 2913, 2925, 2927, 2934, 2941, 2947, 2953, 2955, 2962, 2970, 2978, 2984, 2989, 2996, 3002, 3005, 3009, 3011, 3018, 3027, 3034, 3044, 3049, 3053, 3063, 3070, 3083, 3085, 3093, 3095, 3099, 3107, 3116, 3122, 3130, 3135, 3147, 3152, 3155, 3161, 3165, 3170, 3175, 3180, 3186, 3207, 3209, 3220, 3232, 3244, 3248, 3257, 3261, 3279, 3282, 3290, 3299, 3308, 3331, 3347, 3354, 3357, 3366, 3370, 3374, 3386, 3411, 3418, 3421, 3436, 3457, 3461, 3463, 3473, 3475, 3485, 3500, 3502, 3515, 3519, 3526, 3531, 3539, 3544, 3553, 3585, 3602, 3606, 3612, 3618, 3627, 3631, 3633, 3640, 3648, 3656, 3664, 3672, 3685, 3692, 3695, 3702, 3710, 3718, 3732, 3737, 3742, 3745, 3758, 3782, 3792, 3795, 3804, 3807, 3809, 3812, 3815, 3833, 3842, 3849, 3861, 3870, 3880, 3883, 3887, 3893, 3900, 3904, 3908, 3912, 3916, 3920, 3924, 3928, 3932, 3936, 3939, 3952, 3958, 3962] \ No newline at end of file +[4, 1, 393, 4014, 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, 1, 0, 5, 0, 414, 8, 0, 10, 0, 12, 0, 417, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 423, 8, 1, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 432, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 439, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 444, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 452, 8, 2, 10, 2, 12, 2, 455, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 483, 8, 2, 1, 2, 3, 2, 486, 8, 2, 1, 2, 3, 2, 489, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 496, 8, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 3, 2, 503, 8, 2, 1, 2, 3, 2, 506, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 511, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 523, 8, 2, 10, 2, 12, 2, 526, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 533, 8, 2, 1, 2, 3, 2, 536, 8, 2, 1, 2, 1, 2, 3, 2, 540, 8, 2, 1, 2, 3, 2, 543, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 549, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 560, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 566, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 571, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 604, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 614, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 625, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 636, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 647, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 652, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 3, 2, 665, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 671, 8, 2, 1, 2, 1, 2, 3, 2, 675, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 680, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 698, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 706, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 712, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 723, 8, 2, 1, 2, 1, 2, 3, 2, 727, 8, 2, 1, 2, 4, 2, 730, 8, 2, 11, 2, 12, 2, 731, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 747, 8, 2, 1, 2, 1, 2, 3, 2, 751, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 756, 8, 2, 10, 2, 12, 2, 759, 9, 2, 1, 2, 3, 2, 762, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 768, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 797, 8, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 806, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 819, 8, 2, 1, 2, 3, 2, 822, 8, 2, 1, 2, 3, 2, 825, 8, 2, 1, 2, 1, 2, 3, 2, 829, 8, 2, 1, 2, 1, 2, 3, 2, 833, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 841, 8, 2, 10, 2, 12, 2, 844, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 3, 2, 855, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 864, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 869, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 882, 8, 2, 1, 2, 3, 2, 885, 8, 2, 1, 2, 1, 2, 3, 2, 889, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 898, 8, 2, 10, 2, 12, 2, 901, 9, 2, 3, 2, 903, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 909, 8, 2, 1, 2, 1, 2, 3, 2, 913, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 928, 8, 2, 10, 2, 12, 2, 931, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 938, 8, 2, 1, 2, 1, 2, 3, 2, 942, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 948, 8, 2, 1, 2, 3, 2, 951, 8, 2, 1, 2, 1, 2, 3, 2, 955, 8, 2, 1, 2, 3, 2, 958, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 964, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 1, 2, 3, 2, 973, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 980, 8, 2, 1, 2, 3, 2, 983, 8, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 993, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 998, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1007, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1015, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1021, 8, 2, 1, 2, 3, 2, 1024, 8, 2, 1, 2, 3, 2, 1027, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 3, 2, 1037, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1042, 8, 2, 1, 2, 3, 2, 1045, 8, 2, 1, 2, 1, 2, 3, 2, 1049, 8, 2, 3, 2, 1051, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1059, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1067, 8, 2, 1, 2, 3, 2, 1070, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1077, 8, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 3, 2, 1083, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1092, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1108, 8, 2, 1, 2, 3, 2, 1111, 8, 2, 1, 2, 1, 2, 3, 2, 1115, 8, 2, 1, 2, 3, 2, 1118, 8, 2, 1, 2, 1, 2, 3, 2, 1122, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1148, 8, 2, 10, 2, 12, 2, 1151, 9, 2, 3, 2, 1153, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1167, 8, 2, 1, 2, 3, 2, 1170, 8, 2, 1, 2, 3, 2, 1173, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1178, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1186, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1197, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1203, 8, 2, 1, 2, 3, 2, 1206, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1213, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1218, 8, 2, 10, 2, 12, 2, 1221, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1226, 8, 2, 10, 2, 12, 2, 1229, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1243, 8, 2, 10, 2, 12, 2, 1246, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1270, 8, 2, 10, 2, 12, 2, 1273, 9, 2, 3, 2, 1275, 8, 2, 1, 2, 1, 2, 5, 2, 1279, 8, 2, 10, 2, 12, 2, 1282, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1288, 8, 2, 10, 2, 12, 2, 1291, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1297, 8, 2, 10, 2, 12, 2, 1300, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1305, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1310, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1315, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1322, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1327, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1332, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1339, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1345, 8, 2, 10, 2, 12, 2, 1348, 9, 2, 3, 2, 1350, 8, 2, 1, 3, 1, 3, 3, 3, 1354, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1366, 8, 6, 1, 6, 1, 6, 3, 6, 1370, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1377, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1493, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1501, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1509, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1518, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1528, 8, 6, 1, 7, 1, 7, 3, 7, 1532, 8, 7, 1, 7, 3, 7, 1535, 8, 7, 1, 7, 1, 7, 3, 7, 1539, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1545, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1557, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1569, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1574, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1583, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1591, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1596, 8, 14, 3, 14, 1598, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1606, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1611, 8, 14, 1, 14, 1, 14, 3, 14, 1615, 8, 14, 1, 14, 3, 14, 1618, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1626, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1631, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1640, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1645, 8, 14, 1, 14, 3, 14, 1648, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1653, 8, 14, 1, 14, 1, 14, 3, 14, 1657, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1662, 8, 14, 3, 14, 1664, 8, 14, 1, 15, 1, 15, 3, 15, 1668, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1675, 8, 16, 10, 16, 12, 16, 1678, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1685, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1691, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1702, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1707, 8, 21, 10, 21, 12, 21, 1710, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1716, 8, 22, 10, 22, 12, 22, 1719, 9, 22, 1, 23, 1, 23, 3, 23, 1723, 8, 23, 1, 23, 3, 23, 1726, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1749, 8, 25, 10, 25, 12, 25, 1752, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1761, 8, 27, 10, 27, 12, 27, 1764, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1770, 8, 28, 1, 28, 3, 28, 1773, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1778, 8, 29, 10, 29, 12, 29, 1781, 9, 29, 1, 29, 3, 29, 1784, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1790, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1796, 8, 31, 10, 31, 12, 31, 1799, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1805, 8, 32, 1, 32, 3, 32, 1808, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1814, 8, 33, 10, 33, 12, 33, 1817, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1825, 8, 34, 10, 34, 12, 34, 1828, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1838, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1846, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1852, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1862, 8, 39, 11, 39, 12, 39, 1863, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1871, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1878, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1890, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1896, 8, 39, 10, 39, 12, 39, 1899, 9, 39, 1, 39, 5, 39, 1902, 8, 39, 10, 39, 12, 39, 1905, 9, 39, 1, 39, 5, 39, 1908, 8, 39, 10, 39, 12, 39, 1911, 9, 39, 3, 39, 1913, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1929, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1934, 8, 47, 10, 47, 12, 47, 1937, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1947, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1954, 8, 50, 10, 50, 12, 50, 1957, 9, 50, 3, 50, 1959, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1966, 8, 50, 10, 50, 12, 50, 1969, 9, 50, 3, 50, 1971, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1978, 8, 50, 10, 50, 12, 50, 1981, 9, 50, 3, 50, 1983, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1990, 8, 50, 10, 50, 12, 50, 1993, 9, 50, 3, 50, 1995, 8, 50, 1, 50, 3, 50, 1998, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 2003, 8, 50, 3, 50, 2005, 8, 50, 1, 50, 1, 50, 3, 50, 2009, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2026, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2032, 8, 52, 1, 52, 5, 52, 2035, 8, 52, 10, 52, 12, 52, 2038, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 2048, 8, 53, 10, 53, 12, 53, 2051, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2059, 8, 53, 1, 54, 1, 54, 3, 54, 2063, 8, 54, 1, 54, 3, 54, 2066, 8, 54, 1, 54, 1, 54, 3, 54, 2070, 8, 54, 1, 55, 1, 55, 4, 55, 2074, 8, 55, 11, 55, 12, 55, 2075, 1, 56, 1, 56, 3, 56, 2080, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2086, 8, 56, 10, 56, 12, 56, 2089, 9, 56, 1, 56, 3, 56, 2092, 8, 56, 1, 56, 3, 56, 2095, 8, 56, 1, 56, 3, 56, 2098, 8, 56, 1, 56, 3, 56, 2101, 8, 56, 1, 56, 1, 56, 3, 56, 2105, 8, 56, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 5, 57, 2112, 8, 57, 10, 57, 12, 57, 2115, 9, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 5, 57, 2134, 8, 57, 10, 57, 12, 57, 2137, 9, 57, 1, 57, 3, 57, 2140, 8, 57, 1, 57, 3, 57, 2143, 8, 57, 1, 57, 3, 57, 2146, 8, 57, 1, 57, 3, 57, 2149, 8, 57, 3, 57, 2151, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2157, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2164, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2169, 8, 58, 1, 58, 3, 58, 2172, 8, 58, 1, 58, 3, 58, 2175, 8, 58, 1, 58, 1, 58, 3, 58, 2179, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2189, 8, 58, 1, 58, 1, 58, 3, 58, 2193, 8, 58, 3, 58, 2195, 8, 58, 1, 58, 3, 58, 2198, 8, 58, 1, 58, 1, 58, 3, 58, 2202, 8, 58, 1, 59, 1, 59, 5, 59, 2206, 8, 59, 10, 59, 12, 59, 2209, 9, 59, 1, 59, 3, 59, 2212, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2223, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2233, 8, 62, 1, 62, 1, 62, 3, 62, 2237, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2249, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2261, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2274, 8, 65, 10, 65, 12, 65, 2277, 9, 65, 1, 65, 1, 65, 3, 65, 2281, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2287, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2292, 8, 67, 10, 67, 12, 67, 2295, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2310, 8, 71, 1, 71, 5, 71, 2313, 8, 71, 10, 71, 12, 71, 2316, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2326, 8, 72, 10, 72, 12, 72, 2329, 9, 72, 1, 72, 1, 72, 3, 72, 2333, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2339, 8, 73, 10, 73, 12, 73, 2342, 9, 73, 1, 73, 5, 73, 2345, 8, 73, 10, 73, 12, 73, 2348, 9, 73, 1, 73, 3, 73, 2351, 8, 73, 1, 73, 3, 73, 2354, 8, 73, 1, 74, 1, 74, 1, 75, 3, 75, 2359, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2366, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2372, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2379, 8, 76, 10, 76, 12, 76, 2382, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2389, 8, 76, 10, 76, 12, 76, 2392, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2404, 8, 76, 10, 76, 12, 76, 2407, 9, 76, 1, 76, 1, 76, 3, 76, 2411, 8, 76, 3, 76, 2413, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2418, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2425, 8, 78, 10, 78, 12, 78, 2428, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2438, 8, 78, 10, 78, 12, 78, 2441, 9, 78, 1, 78, 1, 78, 3, 78, 2445, 8, 78, 1, 79, 1, 79, 3, 79, 2449, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2456, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2461, 8, 80, 5, 80, 2463, 8, 80, 10, 80, 12, 80, 2466, 9, 80, 3, 80, 2468, 8, 80, 1, 80, 3, 80, 2471, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2483, 8, 81, 10, 81, 12, 81, 2486, 9, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2496, 8, 82, 10, 82, 12, 82, 2499, 9, 82, 1, 82, 1, 82, 3, 82, 2503, 8, 82, 1, 83, 1, 83, 3, 83, 2507, 8, 83, 1, 83, 3, 83, 2510, 8, 83, 1, 84, 1, 84, 3, 84, 2514, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2520, 8, 84, 1, 84, 3, 84, 2523, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2530, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2540, 8, 87, 10, 87, 12, 87, 2543, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2551, 8, 88, 10, 88, 12, 88, 2554, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2564, 8, 88, 10, 88, 12, 88, 2567, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 2575, 8, 89, 10, 89, 12, 89, 2578, 9, 89, 1, 89, 1, 89, 3, 89, 2582, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2590, 8, 92, 1, 93, 1, 93, 1, 94, 3, 94, 2595, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2609, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2616, 8, 97, 10, 97, 12, 97, 2619, 9, 97, 3, 97, 2621, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2626, 8, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2631, 8, 97, 10, 97, 12, 97, 2634, 9, 97, 3, 97, 2636, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 2642, 8, 99, 1, 99, 1, 99, 5, 99, 2646, 8, 99, 10, 99, 12, 99, 2649, 9, 99, 3, 99, 2651, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2656, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2661, 8, 101, 1, 101, 1, 101, 3, 101, 2665, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2671, 8, 101, 1, 101, 1, 101, 3, 101, 2675, 8, 101, 1, 102, 3, 102, 2678, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2683, 8, 102, 1, 102, 3, 102, 2686, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2691, 8, 102, 1, 102, 1, 102, 3, 102, 2695, 8, 102, 1, 102, 3, 102, 2698, 8, 102, 1, 102, 3, 102, 2701, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2707, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2712, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2719, 8, 104, 1, 105, 3, 105, 2722, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2740, 8, 105, 3, 105, 2742, 8, 105, 1, 105, 3, 105, 2745, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 2754, 8, 107, 10, 107, 12, 107, 2757, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2763, 8, 108, 10, 108, 12, 108, 2766, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 3, 109, 2772, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2778, 8, 110, 10, 110, 12, 110, 2781, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 2787, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2792, 8, 112, 1, 112, 3, 112, 2795, 8, 112, 1, 112, 3, 112, 2798, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2806, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2814, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2822, 8, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2830, 8, 114, 10, 114, 12, 114, 2833, 9, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2838, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2845, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2852, 8, 115, 3, 115, 2854, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 2865, 8, 116, 10, 116, 12, 116, 2868, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2873, 8, 116, 3, 116, 2875, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 2883, 8, 116, 10, 116, 12, 116, 2886, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2891, 8, 116, 3, 116, 2893, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 2901, 8, 118, 1, 119, 1, 119, 3, 119, 2905, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 2915, 8, 121, 10, 121, 12, 121, 2918, 9, 121, 3, 121, 2920, 8, 121, 1, 121, 1, 121, 1, 122, 3, 122, 2925, 8, 122, 1, 122, 1, 122, 3, 122, 2929, 8, 122, 3, 122, 2931, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2940, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2952, 8, 123, 3, 123, 2954, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2961, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2968, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2974, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2980, 8, 123, 3, 123, 2982, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2987, 8, 124, 10, 124, 12, 124, 2990, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2995, 8, 125, 10, 125, 12, 125, 2998, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 3003, 8, 126, 10, 126, 12, 126, 3006, 9, 126, 1, 127, 1, 127, 1, 127, 3, 127, 3011, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 3016, 8, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 3, 129, 3023, 8, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 5, 132, 3034, 8, 132, 10, 132, 12, 132, 3037, 9, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 3, 133, 3044, 8, 133, 1, 133, 3, 133, 3047, 8, 133, 1, 133, 1, 133, 3, 133, 3051, 8, 133, 3, 133, 3053, 8, 133, 1, 134, 1, 134, 1, 134, 5, 134, 3058, 8, 134, 10, 134, 12, 134, 3061, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 3069, 8, 136, 10, 136, 12, 136, 3072, 9, 136, 1, 136, 1, 136, 1, 137, 1, 137, 3, 137, 3078, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3086, 8, 138, 10, 138, 12, 138, 3089, 9, 138, 1, 138, 1, 138, 3, 138, 3093, 8, 138, 1, 139, 1, 139, 3, 139, 3097, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 3, 142, 3107, 8, 142, 1, 143, 1, 143, 1, 143, 5, 143, 3112, 8, 143, 10, 143, 12, 143, 3115, 9, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3127, 8, 144, 3, 144, 3129, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 3137, 8, 144, 10, 144, 12, 144, 3140, 9, 144, 1, 145, 3, 145, 3143, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3151, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3158, 8, 145, 10, 145, 12, 145, 3161, 9, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3166, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3174, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3179, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3189, 8, 145, 10, 145, 12, 145, 3192, 9, 145, 1, 145, 1, 145, 3, 145, 3196, 8, 145, 1, 145, 3, 145, 3199, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3205, 8, 145, 1, 145, 1, 145, 3, 145, 3209, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3214, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3219, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3224, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3230, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 3251, 8, 146, 10, 146, 12, 146, 3254, 9, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3264, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3276, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3286, 8, 148, 11, 148, 12, 148, 3287, 1, 148, 1, 148, 3, 148, 3292, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3299, 8, 148, 11, 148, 12, 148, 3300, 1, 148, 1, 148, 3, 148, 3305, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3321, 8, 148, 10, 148, 12, 148, 3324, 9, 148, 3, 148, 3326, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3334, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3343, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3352, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3373, 8, 148, 11, 148, 12, 148, 3374, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3391, 8, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3396, 8, 148, 10, 148, 12, 148, 3399, 9, 148, 3, 148, 3401, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3410, 8, 148, 1, 148, 1, 148, 3, 148, 3414, 8, 148, 1, 148, 1, 148, 3, 148, 3418, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3428, 8, 148, 11, 148, 12, 148, 3429, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3455, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3462, 8, 148, 1, 148, 3, 148, 3465, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3480, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3501, 8, 148, 1, 148, 1, 148, 3, 148, 3505, 8, 148, 3, 148, 3507, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3517, 8, 148, 10, 148, 12, 148, 3520, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3529, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 4, 150, 3542, 8, 150, 11, 150, 12, 150, 3543, 3, 150, 3546, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 3559, 8, 155, 1, 156, 1, 156, 3, 156, 3563, 8, 156, 1, 157, 1, 157, 1, 157, 4, 157, 3568, 8, 157, 11, 157, 12, 157, 3569, 1, 158, 1, 158, 1, 158, 3, 158, 3575, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 3, 160, 3583, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3588, 8, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 3, 163, 3597, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3629, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3646, 8, 165, 1, 165, 1, 165, 3, 165, 3650, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3656, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3662, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 3669, 8, 165, 10, 165, 12, 165, 3672, 9, 165, 1, 165, 3, 165, 3675, 8, 165, 3, 165, 3677, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3682, 8, 166, 10, 166, 12, 166, 3685, 9, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3690, 8, 167, 10, 167, 12, 167, 3693, 9, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3698, 8, 168, 10, 168, 12, 168, 3701, 9, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3706, 8, 169, 10, 169, 12, 169, 3709, 9, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3716, 8, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3727, 8, 173, 10, 173, 12, 173, 3730, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3736, 8, 174, 1, 174, 3, 174, 3739, 8, 174, 1, 175, 1, 175, 1, 175, 5, 175, 3744, 8, 175, 10, 175, 12, 175, 3747, 9, 175, 1, 176, 1, 176, 1, 176, 5, 176, 3752, 8, 176, 10, 176, 12, 176, 3755, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 3762, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 5, 179, 3774, 8, 179, 10, 179, 12, 179, 3777, 9, 179, 1, 180, 1, 180, 3, 180, 3781, 8, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3786, 8, 180, 1, 180, 3, 180, 3789, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 3800, 8, 182, 10, 182, 12, 182, 3803, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 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, 5, 185, 3824, 8, 185, 10, 185, 12, 185, 3827, 9, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 3834, 8, 185, 10, 185, 12, 185, 3837, 9, 185, 3, 185, 3839, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 3846, 8, 185, 10, 185, 12, 185, 3849, 9, 185, 3, 185, 3851, 8, 185, 3, 185, 3853, 8, 185, 1, 185, 3, 185, 3856, 8, 185, 1, 185, 3, 185, 3859, 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, 3, 186, 3877, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 3886, 8, 187, 1, 188, 1, 188, 1, 188, 5, 188, 3891, 8, 188, 10, 188, 12, 188, 3894, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3905, 8, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 5, 191, 3912, 8, 191, 10, 191, 12, 191, 3915, 9, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 4, 193, 3922, 8, 193, 11, 193, 12, 193, 3923, 1, 193, 3, 193, 3927, 8, 193, 1, 194, 1, 194, 3, 194, 3931, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 3937, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 3, 198, 3944, 8, 198, 1, 198, 1, 198, 3, 198, 3948, 8, 198, 1, 198, 1, 198, 3, 198, 3952, 8, 198, 1, 198, 1, 198, 3, 198, 3956, 8, 198, 1, 198, 1, 198, 3, 198, 3960, 8, 198, 1, 198, 1, 198, 3, 198, 3964, 8, 198, 1, 198, 1, 198, 3, 198, 3968, 8, 198, 1, 198, 1, 198, 3, 198, 3972, 8, 198, 1, 198, 1, 198, 3, 198, 3976, 8, 198, 1, 198, 1, 198, 3, 198, 3980, 8, 198, 1, 198, 3, 198, 3983, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 3996, 8, 199, 1, 200, 1, 200, 1, 201, 1, 201, 3, 201, 4002, 8, 201, 1, 202, 1, 202, 3, 202, 4006, 8, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 9, 1149, 1219, 1227, 1244, 1271, 1280, 1289, 1298, 1346, 4, 104, 288, 292, 296, 206, 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, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4626, 0, 415, 1, 0, 0, 0, 2, 420, 1, 0, 0, 0, 4, 1349, 1, 0, 0, 0, 6, 1353, 1, 0, 0, 0, 8, 1355, 1, 0, 0, 0, 10, 1357, 1, 0, 0, 0, 12, 1527, 1, 0, 0, 0, 14, 1529, 1, 0, 0, 0, 16, 1544, 1, 0, 0, 0, 18, 1550, 1, 0, 0, 0, 20, 1562, 1, 0, 0, 0, 22, 1575, 1, 0, 0, 0, 24, 1578, 1, 0, 0, 0, 26, 1582, 1, 0, 0, 0, 28, 1663, 1, 0, 0, 0, 30, 1665, 1, 0, 0, 0, 32, 1669, 1, 0, 0, 0, 34, 1690, 1, 0, 0, 0, 36, 1692, 1, 0, 0, 0, 38, 1694, 1, 0, 0, 0, 40, 1701, 1, 0, 0, 0, 42, 1703, 1, 0, 0, 0, 44, 1711, 1, 0, 0, 0, 46, 1720, 1, 0, 0, 0, 48, 1731, 1, 0, 0, 0, 50, 1750, 1, 0, 0, 0, 52, 1753, 1, 0, 0, 0, 54, 1756, 1, 0, 0, 0, 56, 1767, 1, 0, 0, 0, 58, 1783, 1, 0, 0, 0, 60, 1789, 1, 0, 0, 0, 62, 1791, 1, 0, 0, 0, 64, 1802, 1, 0, 0, 0, 66, 1809, 1, 0, 0, 0, 68, 1820, 1, 0, 0, 0, 70, 1837, 1, 0, 0, 0, 72, 1845, 1, 0, 0, 0, 74, 1847, 1, 0, 0, 0, 76, 1853, 1, 0, 0, 0, 78, 1912, 1, 0, 0, 0, 80, 1914, 1, 0, 0, 0, 82, 1916, 1, 0, 0, 0, 84, 1918, 1, 0, 0, 0, 86, 1920, 1, 0, 0, 0, 88, 1922, 1, 0, 0, 0, 90, 1924, 1, 0, 0, 0, 92, 1928, 1, 0, 0, 0, 94, 1930, 1, 0, 0, 0, 96, 1938, 1, 0, 0, 0, 98, 1946, 1, 0, 0, 0, 100, 1958, 1, 0, 0, 0, 102, 2010, 1, 0, 0, 0, 104, 2013, 1, 0, 0, 0, 106, 2058, 1, 0, 0, 0, 108, 2062, 1, 0, 0, 0, 110, 2071, 1, 0, 0, 0, 112, 2104, 1, 0, 0, 0, 114, 2150, 1, 0, 0, 0, 116, 2171, 1, 0, 0, 0, 118, 2203, 1, 0, 0, 0, 120, 2215, 1, 0, 0, 0, 122, 2218, 1, 0, 0, 0, 124, 2227, 1, 0, 0, 0, 126, 2241, 1, 0, 0, 0, 128, 2260, 1, 0, 0, 0, 130, 2280, 1, 0, 0, 0, 132, 2286, 1, 0, 0, 0, 134, 2288, 1, 0, 0, 0, 136, 2296, 1, 0, 0, 0, 138, 2300, 1, 0, 0, 0, 140, 2303, 1, 0, 0, 0, 142, 2306, 1, 0, 0, 0, 144, 2332, 1, 0, 0, 0, 146, 2334, 1, 0, 0, 0, 148, 2355, 1, 0, 0, 0, 150, 2371, 1, 0, 0, 0, 152, 2412, 1, 0, 0, 0, 154, 2417, 1, 0, 0, 0, 156, 2444, 1, 0, 0, 0, 158, 2448, 1, 0, 0, 0, 160, 2470, 1, 0, 0, 0, 162, 2472, 1, 0, 0, 0, 164, 2502, 1, 0, 0, 0, 166, 2504, 1, 0, 0, 0, 168, 2511, 1, 0, 0, 0, 170, 2524, 1, 0, 0, 0, 172, 2529, 1, 0, 0, 0, 174, 2531, 1, 0, 0, 0, 176, 2546, 1, 0, 0, 0, 178, 2570, 1, 0, 0, 0, 180, 2583, 1, 0, 0, 0, 182, 2585, 1, 0, 0, 0, 184, 2587, 1, 0, 0, 0, 186, 2591, 1, 0, 0, 0, 188, 2594, 1, 0, 0, 0, 190, 2598, 1, 0, 0, 0, 192, 2602, 1, 0, 0, 0, 194, 2605, 1, 0, 0, 0, 196, 2637, 1, 0, 0, 0, 198, 2650, 1, 0, 0, 0, 200, 2655, 1, 0, 0, 0, 202, 2674, 1, 0, 0, 0, 204, 2700, 1, 0, 0, 0, 206, 2706, 1, 0, 0, 0, 208, 2708, 1, 0, 0, 0, 210, 2744, 1, 0, 0, 0, 212, 2746, 1, 0, 0, 0, 214, 2750, 1, 0, 0, 0, 216, 2758, 1, 0, 0, 0, 218, 2769, 1, 0, 0, 0, 220, 2773, 1, 0, 0, 0, 222, 2784, 1, 0, 0, 0, 224, 2821, 1, 0, 0, 0, 226, 2823, 1, 0, 0, 0, 228, 2825, 1, 0, 0, 0, 230, 2853, 1, 0, 0, 0, 232, 2874, 1, 0, 0, 0, 234, 2894, 1, 0, 0, 0, 236, 2900, 1, 0, 0, 0, 238, 2904, 1, 0, 0, 0, 240, 2906, 1, 0, 0, 0, 242, 2909, 1, 0, 0, 0, 244, 2930, 1, 0, 0, 0, 246, 2981, 1, 0, 0, 0, 248, 2983, 1, 0, 0, 0, 250, 2991, 1, 0, 0, 0, 252, 2999, 1, 0, 0, 0, 254, 3007, 1, 0, 0, 0, 256, 3015, 1, 0, 0, 0, 258, 3022, 1, 0, 0, 0, 260, 3026, 1, 0, 0, 0, 262, 3028, 1, 0, 0, 0, 264, 3035, 1, 0, 0, 0, 266, 3043, 1, 0, 0, 0, 268, 3054, 1, 0, 0, 0, 270, 3062, 1, 0, 0, 0, 272, 3064, 1, 0, 0, 0, 274, 3077, 1, 0, 0, 0, 276, 3092, 1, 0, 0, 0, 278, 3096, 1, 0, 0, 0, 280, 3098, 1, 0, 0, 0, 282, 3100, 1, 0, 0, 0, 284, 3106, 1, 0, 0, 0, 286, 3108, 1, 0, 0, 0, 288, 3128, 1, 0, 0, 0, 290, 3223, 1, 0, 0, 0, 292, 3229, 1, 0, 0, 0, 294, 3255, 1, 0, 0, 0, 296, 3506, 1, 0, 0, 0, 298, 3528, 1, 0, 0, 0, 300, 3545, 1, 0, 0, 0, 302, 3547, 1, 0, 0, 0, 304, 3549, 1, 0, 0, 0, 306, 3551, 1, 0, 0, 0, 308, 3553, 1, 0, 0, 0, 310, 3555, 1, 0, 0, 0, 312, 3560, 1, 0, 0, 0, 314, 3567, 1, 0, 0, 0, 316, 3571, 1, 0, 0, 0, 318, 3576, 1, 0, 0, 0, 320, 3582, 1, 0, 0, 0, 322, 3589, 1, 0, 0, 0, 324, 3591, 1, 0, 0, 0, 326, 3596, 1, 0, 0, 0, 328, 3628, 1, 0, 0, 0, 330, 3676, 1, 0, 0, 0, 332, 3678, 1, 0, 0, 0, 334, 3686, 1, 0, 0, 0, 336, 3694, 1, 0, 0, 0, 338, 3702, 1, 0, 0, 0, 340, 3715, 1, 0, 0, 0, 342, 3717, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3723, 1, 0, 0, 0, 348, 3731, 1, 0, 0, 0, 350, 3740, 1, 0, 0, 0, 352, 3748, 1, 0, 0, 0, 354, 3761, 1, 0, 0, 0, 356, 3763, 1, 0, 0, 0, 358, 3770, 1, 0, 0, 0, 360, 3778, 1, 0, 0, 0, 362, 3790, 1, 0, 0, 0, 364, 3795, 1, 0, 0, 0, 366, 3804, 1, 0, 0, 0, 368, 3808, 1, 0, 0, 0, 370, 3858, 1, 0, 0, 0, 372, 3876, 1, 0, 0, 0, 374, 3885, 1, 0, 0, 0, 376, 3887, 1, 0, 0, 0, 378, 3904, 1, 0, 0, 0, 380, 3906, 1, 0, 0, 0, 382, 3908, 1, 0, 0, 0, 384, 3916, 1, 0, 0, 0, 386, 3926, 1, 0, 0, 0, 388, 3930, 1, 0, 0, 0, 390, 3936, 1, 0, 0, 0, 392, 3938, 1, 0, 0, 0, 394, 3940, 1, 0, 0, 0, 396, 3982, 1, 0, 0, 0, 398, 3995, 1, 0, 0, 0, 400, 3997, 1, 0, 0, 0, 402, 4001, 1, 0, 0, 0, 404, 4005, 1, 0, 0, 0, 406, 4007, 1, 0, 0, 0, 408, 4009, 1, 0, 0, 0, 410, 4011, 1, 0, 0, 0, 412, 414, 3, 2, 1, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 0, 0, 1, 419, 1, 1, 0, 0, 0, 420, 422, 3, 4, 2, 0, 421, 423, 5, 1, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 3, 1, 0, 0, 0, 424, 1350, 3, 26, 13, 0, 425, 427, 3, 44, 22, 0, 426, 425, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 1350, 3, 78, 39, 0, 429, 431, 5, 330, 0, 0, 430, 432, 3, 36, 18, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 1350, 3, 80, 40, 0, 434, 435, 5, 269, 0, 0, 435, 438, 5, 37, 0, 0, 436, 439, 3, 388, 194, 0, 437, 439, 3, 400, 200, 0, 438, 436, 1, 0, 0, 0, 438, 437, 1, 0, 0, 0, 439, 1350, 1, 0, 0, 0, 440, 441, 5, 59, 0, 0, 441, 443, 3, 36, 18, 0, 442, 444, 3, 190, 95, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 453, 3, 82, 41, 0, 446, 452, 3, 24, 12, 0, 447, 452, 3, 22, 11, 0, 448, 449, 5, 346, 0, 0, 449, 450, 7, 0, 0, 0, 450, 452, 3, 54, 27, 0, 451, 446, 1, 0, 0, 0, 451, 447, 1, 0, 0, 0, 451, 448, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 1350, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 457, 5, 11, 0, 0, 457, 458, 3, 36, 18, 0, 458, 459, 3, 80, 40, 0, 459, 460, 5, 269, 0, 0, 460, 461, 7, 0, 0, 0, 461, 462, 3, 54, 27, 0, 462, 1350, 1, 0, 0, 0, 463, 464, 5, 11, 0, 0, 464, 465, 3, 36, 18, 0, 465, 466, 3, 80, 40, 0, 466, 467, 5, 269, 0, 0, 467, 468, 3, 22, 11, 0, 468, 1350, 1, 0, 0, 0, 469, 470, 5, 96, 0, 0, 470, 472, 3, 36, 18, 0, 471, 473, 3, 192, 96, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 3, 80, 40, 0, 475, 477, 7, 1, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1350, 1, 0, 0, 0, 478, 479, 5, 273, 0, 0, 479, 482, 3, 38, 19, 0, 480, 481, 7, 2, 0, 0, 481, 483, 3, 250, 125, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 488, 1, 0, 0, 0, 484, 486, 5, 163, 0, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 489, 3, 400, 200, 0, 488, 485, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 1350, 1, 0, 0, 0, 490, 495, 3, 14, 7, 0, 491, 492, 5, 2, 0, 0, 492, 493, 3, 350, 175, 0, 493, 494, 5, 3, 0, 0, 494, 496, 1, 0, 0, 0, 495, 491, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 498, 1, 0, 0, 0, 497, 499, 3, 48, 24, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 505, 3, 50, 25, 0, 501, 503, 5, 20, 0, 0, 502, 501, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 506, 3, 26, 13, 0, 505, 502, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 1350, 1, 0, 0, 0, 507, 508, 5, 59, 0, 0, 508, 510, 5, 293, 0, 0, 509, 511, 3, 190, 95, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 3, 84, 42, 0, 513, 514, 5, 163, 0, 0, 514, 524, 3, 86, 43, 0, 515, 523, 3, 48, 24, 0, 516, 523, 3, 246, 123, 0, 517, 523, 3, 70, 35, 0, 518, 523, 3, 22, 11, 0, 519, 520, 5, 297, 0, 0, 520, 523, 3, 54, 27, 0, 521, 523, 3, 52, 26, 0, 522, 515, 1, 0, 0, 0, 522, 516, 1, 0, 0, 0, 522, 517, 1, 0, 0, 0, 522, 518, 1, 0, 0, 0, 522, 519, 1, 0, 0, 0, 522, 521, 1, 0, 0, 0, 523, 526, 1, 0, 0, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 1350, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 527, 532, 3, 16, 8, 0, 528, 529, 5, 2, 0, 0, 529, 530, 3, 350, 175, 0, 530, 531, 5, 3, 0, 0, 531, 533, 1, 0, 0, 0, 532, 528, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 535, 1, 0, 0, 0, 534, 536, 3, 48, 24, 0, 535, 534, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 542, 3, 50, 25, 0, 538, 540, 5, 20, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 543, 3, 26, 13, 0, 542, 539, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 1350, 1, 0, 0, 0, 544, 545, 5, 13, 0, 0, 545, 546, 5, 293, 0, 0, 546, 548, 3, 86, 43, 0, 547, 549, 3, 32, 16, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 55, 0, 0, 551, 559, 5, 282, 0, 0, 552, 560, 5, 196, 0, 0, 553, 554, 5, 119, 0, 0, 554, 555, 5, 50, 0, 0, 555, 560, 3, 94, 47, 0, 556, 557, 5, 119, 0, 0, 557, 558, 5, 10, 0, 0, 558, 560, 5, 50, 0, 0, 559, 552, 1, 0, 0, 0, 559, 553, 1, 0, 0, 0, 559, 556, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 1350, 1, 0, 0, 0, 561, 562, 5, 13, 0, 0, 562, 565, 5, 294, 0, 0, 563, 564, 7, 2, 0, 0, 564, 566, 3, 80, 40, 0, 565, 563, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 5, 55, 0, 0, 568, 570, 5, 282, 0, 0, 569, 571, 5, 196, 0, 0, 570, 569, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 1350, 1, 0, 0, 0, 572, 573, 5, 11, 0, 0, 573, 574, 5, 293, 0, 0, 574, 575, 3, 86, 43, 0, 575, 576, 5, 8, 0, 0, 576, 577, 5, 49, 0, 0, 577, 578, 3, 334, 167, 0, 578, 1350, 1, 0, 0, 0, 579, 580, 5, 11, 0, 0, 580, 581, 5, 293, 0, 0, 581, 582, 3, 86, 43, 0, 582, 583, 5, 8, 0, 0, 583, 584, 5, 50, 0, 0, 584, 585, 5, 2, 0, 0, 585, 586, 3, 332, 166, 0, 586, 587, 5, 3, 0, 0, 587, 1350, 1, 0, 0, 0, 588, 589, 5, 11, 0, 0, 589, 590, 5, 293, 0, 0, 590, 591, 3, 86, 43, 0, 591, 592, 5, 241, 0, 0, 592, 593, 5, 49, 0, 0, 593, 594, 3, 92, 46, 0, 594, 595, 5, 309, 0, 0, 595, 596, 3, 96, 48, 0, 596, 1350, 1, 0, 0, 0, 597, 598, 5, 11, 0, 0, 598, 599, 5, 293, 0, 0, 599, 600, 3, 86, 43, 0, 600, 601, 5, 96, 0, 0, 601, 603, 5, 49, 0, 0, 602, 604, 3, 192, 96, 0, 603, 602, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 3, 92, 46, 0, 606, 1350, 1, 0, 0, 0, 607, 608, 5, 11, 0, 0, 608, 609, 5, 293, 0, 0, 609, 610, 3, 86, 43, 0, 610, 611, 5, 96, 0, 0, 611, 613, 5, 50, 0, 0, 612, 614, 3, 192, 96, 0, 613, 612, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 5, 2, 0, 0, 616, 617, 3, 94, 47, 0, 617, 618, 5, 3, 0, 0, 618, 1350, 1, 0, 0, 0, 619, 624, 5, 11, 0, 0, 620, 621, 5, 293, 0, 0, 621, 625, 3, 86, 43, 0, 622, 623, 5, 338, 0, 0, 623, 625, 3, 90, 45, 0, 624, 620, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 5, 241, 0, 0, 627, 628, 5, 309, 0, 0, 628, 629, 3, 250, 125, 0, 629, 1350, 1, 0, 0, 0, 630, 635, 5, 11, 0, 0, 631, 632, 5, 293, 0, 0, 632, 636, 3, 86, 43, 0, 633, 634, 5, 338, 0, 0, 634, 636, 3, 90, 45, 0, 635, 631, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 5, 269, 0, 0, 638, 639, 5, 297, 0, 0, 639, 640, 3, 54, 27, 0, 640, 1350, 1, 0, 0, 0, 641, 646, 5, 11, 0, 0, 642, 643, 5, 293, 0, 0, 643, 647, 3, 86, 43, 0, 644, 645, 5, 338, 0, 0, 645, 647, 3, 90, 45, 0, 646, 642, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 5, 328, 0, 0, 649, 651, 5, 297, 0, 0, 650, 652, 3, 192, 96, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 3, 54, 27, 0, 654, 1350, 1, 0, 0, 0, 655, 656, 5, 11, 0, 0, 656, 657, 5, 293, 0, 0, 657, 658, 3, 86, 43, 0, 658, 660, 7, 3, 0, 0, 659, 661, 5, 49, 0, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 664, 3, 92, 46, 0, 663, 665, 3, 398, 199, 0, 664, 663, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 1350, 1, 0, 0, 0, 666, 667, 5, 11, 0, 0, 667, 668, 5, 293, 0, 0, 668, 670, 3, 86, 43, 0, 669, 671, 3, 32, 16, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 674, 5, 39, 0, 0, 673, 675, 5, 49, 0, 0, 674, 673, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 3, 92, 46, 0, 677, 679, 3, 348, 174, 0, 678, 680, 3, 326, 163, 0, 679, 678, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 1350, 1, 0, 0, 0, 681, 682, 5, 11, 0, 0, 682, 683, 5, 293, 0, 0, 683, 685, 3, 86, 43, 0, 684, 686, 3, 32, 16, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 244, 0, 0, 688, 689, 5, 50, 0, 0, 689, 690, 5, 2, 0, 0, 690, 691, 3, 336, 168, 0, 691, 692, 5, 3, 0, 0, 692, 1350, 1, 0, 0, 0, 693, 694, 5, 11, 0, 0, 694, 695, 5, 293, 0, 0, 695, 697, 3, 86, 43, 0, 696, 698, 3, 32, 16, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 269, 0, 0, 700, 701, 5, 266, 0, 0, 701, 705, 3, 400, 200, 0, 702, 703, 5, 346, 0, 0, 703, 704, 5, 267, 0, 0, 704, 706, 3, 54, 27, 0, 705, 702, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 1350, 1, 0, 0, 0, 707, 708, 5, 11, 0, 0, 708, 709, 5, 293, 0, 0, 709, 711, 3, 86, 43, 0, 710, 712, 3, 32, 16, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 269, 0, 0, 714, 715, 5, 267, 0, 0, 715, 716, 3, 54, 27, 0, 716, 1350, 1, 0, 0, 0, 717, 722, 5, 11, 0, 0, 718, 719, 5, 293, 0, 0, 719, 723, 3, 86, 43, 0, 720, 721, 5, 338, 0, 0, 721, 723, 3, 90, 45, 0, 722, 718, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 726, 5, 8, 0, 0, 725, 727, 3, 190, 95, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 729, 1, 0, 0, 0, 728, 730, 3, 30, 15, 0, 729, 728, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 1350, 1, 0, 0, 0, 733, 734, 5, 11, 0, 0, 734, 735, 5, 293, 0, 0, 735, 736, 3, 86, 43, 0, 736, 737, 3, 32, 16, 0, 737, 738, 5, 241, 0, 0, 738, 739, 5, 309, 0, 0, 739, 740, 3, 32, 16, 0, 740, 1350, 1, 0, 0, 0, 741, 746, 5, 11, 0, 0, 742, 743, 5, 293, 0, 0, 743, 747, 3, 86, 43, 0, 744, 745, 5, 338, 0, 0, 745, 747, 3, 90, 45, 0, 746, 742, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 750, 5, 96, 0, 0, 749, 751, 3, 192, 96, 0, 750, 749, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 757, 3, 32, 16, 0, 753, 754, 5, 4, 0, 0, 754, 756, 3, 32, 16, 0, 755, 753, 1, 0, 0, 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 761, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 760, 762, 5, 230, 0, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 1350, 1, 0, 0, 0, 763, 764, 5, 11, 0, 0, 764, 765, 5, 293, 0, 0, 765, 767, 3, 86, 43, 0, 766, 768, 3, 32, 16, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 770, 5, 269, 0, 0, 770, 771, 3, 22, 11, 0, 771, 1350, 1, 0, 0, 0, 772, 773, 5, 11, 0, 0, 773, 774, 5, 293, 0, 0, 774, 775, 3, 86, 43, 0, 775, 776, 5, 237, 0, 0, 776, 777, 5, 219, 0, 0, 777, 1350, 1, 0, 0, 0, 778, 779, 5, 11, 0, 0, 779, 780, 5, 176, 0, 0, 780, 781, 5, 338, 0, 0, 781, 782, 3, 90, 45, 0, 782, 783, 7, 4, 0, 0, 783, 784, 5, 248, 0, 0, 784, 1350, 1, 0, 0, 0, 785, 786, 5, 11, 0, 0, 786, 787, 5, 176, 0, 0, 787, 788, 5, 338, 0, 0, 788, 789, 3, 90, 45, 0, 789, 790, 5, 269, 0, 0, 790, 791, 5, 297, 0, 0, 791, 792, 3, 54, 27, 0, 792, 1350, 1, 0, 0, 0, 793, 794, 5, 96, 0, 0, 794, 796, 5, 293, 0, 0, 795, 797, 3, 192, 96, 0, 796, 795, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 800, 3, 86, 43, 0, 799, 801, 5, 230, 0, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 1350, 1, 0, 0, 0, 802, 803, 5, 96, 0, 0, 803, 805, 5, 338, 0, 0, 804, 806, 3, 192, 96, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 1350, 3, 90, 45, 0, 808, 809, 5, 96, 0, 0, 809, 810, 5, 176, 0, 0, 810, 812, 5, 338, 0, 0, 811, 813, 3, 192, 96, 0, 812, 811, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 1350, 3, 90, 45, 0, 815, 818, 5, 59, 0, 0, 816, 817, 5, 208, 0, 0, 817, 819, 5, 244, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 824, 1, 0, 0, 0, 820, 822, 5, 128, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 825, 5, 298, 0, 0, 824, 821, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 5, 338, 0, 0, 827, 829, 3, 190, 95, 0, 828, 827, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 832, 3, 88, 44, 0, 831, 833, 3, 220, 110, 0, 832, 831, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 842, 1, 0, 0, 0, 834, 841, 3, 24, 12, 0, 835, 836, 5, 218, 0, 0, 836, 837, 5, 203, 0, 0, 837, 841, 3, 212, 106, 0, 838, 839, 5, 297, 0, 0, 839, 841, 3, 54, 27, 0, 840, 834, 1, 0, 0, 0, 840, 835, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 846, 5, 20, 0, 0, 846, 847, 3, 26, 13, 0, 847, 1350, 1, 0, 0, 0, 848, 851, 5, 59, 0, 0, 849, 850, 5, 208, 0, 0, 850, 852, 5, 244, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 855, 5, 128, 0, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 5, 298, 0, 0, 857, 858, 5, 338, 0, 0, 858, 863, 3, 88, 44, 0, 859, 860, 5, 2, 0, 0, 860, 861, 3, 346, 173, 0, 861, 862, 5, 3, 0, 0, 862, 864, 1, 0, 0, 0, 863, 859, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 868, 3, 48, 24, 0, 866, 867, 5, 207, 0, 0, 867, 869, 3, 54, 27, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 1350, 1, 0, 0, 0, 870, 871, 5, 11, 0, 0, 871, 872, 5, 338, 0, 0, 872, 874, 3, 90, 45, 0, 873, 875, 5, 20, 0, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 3, 26, 13, 0, 877, 1350, 1, 0, 0, 0, 878, 881, 5, 59, 0, 0, 879, 880, 5, 208, 0, 0, 880, 882, 5, 244, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 885, 5, 298, 0, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 125, 0, 0, 887, 889, 3, 190, 95, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 3, 380, 190, 0, 891, 892, 5, 20, 0, 0, 892, 902, 3, 400, 200, 0, 893, 894, 5, 332, 0, 0, 894, 899, 3, 76, 38, 0, 895, 896, 5, 4, 0, 0, 896, 898, 3, 76, 38, 0, 897, 895, 1, 0, 0, 0, 898, 901, 1, 0, 0, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 902, 893, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 1350, 1, 0, 0, 0, 904, 905, 5, 59, 0, 0, 905, 906, 5, 176, 0, 0, 906, 908, 5, 338, 0, 0, 907, 909, 3, 190, 95, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 3, 88, 44, 0, 911, 913, 3, 48, 24, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 929, 1, 0, 0, 0, 914, 915, 5, 207, 0, 0, 915, 928, 3, 54, 27, 0, 916, 917, 5, 218, 0, 0, 917, 918, 5, 31, 0, 0, 918, 928, 3, 272, 136, 0, 919, 928, 3, 20, 10, 0, 920, 928, 3, 18, 9, 0, 921, 928, 3, 246, 123, 0, 922, 928, 3, 70, 35, 0, 923, 928, 3, 22, 11, 0, 924, 928, 3, 24, 12, 0, 925, 926, 5, 297, 0, 0, 926, 928, 3, 54, 27, 0, 927, 914, 1, 0, 0, 0, 927, 916, 1, 0, 0, 0, 927, 919, 1, 0, 0, 0, 927, 920, 1, 0, 0, 0, 927, 921, 1, 0, 0, 0, 927, 922, 1, 0, 0, 0, 927, 923, 1, 0, 0, 0, 927, 924, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 929, 1, 0, 0, 0, 932, 933, 5, 20, 0, 0, 933, 934, 3, 26, 13, 0, 934, 1350, 1, 0, 0, 0, 935, 937, 5, 96, 0, 0, 936, 938, 5, 298, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 941, 5, 125, 0, 0, 940, 942, 3, 192, 96, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 1350, 3, 378, 189, 0, 944, 947, 5, 81, 0, 0, 945, 946, 5, 208, 0, 0, 946, 948, 5, 244, 0, 0, 947, 945, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 950, 1, 0, 0, 0, 949, 951, 5, 336, 0, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 954, 3, 378, 189, 0, 953, 955, 3, 330, 165, 0, 954, 953, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 957, 1, 0, 0, 0, 956, 958, 3, 344, 172, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 1350, 1, 0, 0, 0, 959, 960, 5, 96, 0, 0, 960, 961, 5, 298, 0, 0, 961, 963, 5, 336, 0, 0, 962, 964, 3, 192, 96, 0, 963, 962, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 968, 1, 0, 0, 0, 965, 969, 3, 86, 43, 0, 966, 969, 3, 90, 45, 0, 967, 969, 3, 378, 189, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 1350, 1, 0, 0, 0, 970, 972, 5, 106, 0, 0, 971, 973, 7, 5, 0, 0, 972, 971, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1350, 3, 4, 2, 0, 975, 976, 5, 273, 0, 0, 976, 979, 5, 294, 0, 0, 977, 978, 7, 2, 0, 0, 978, 980, 3, 80, 40, 0, 979, 977, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 985, 1, 0, 0, 0, 981, 983, 5, 163, 0, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 986, 3, 400, 200, 0, 985, 982, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1350, 1, 0, 0, 0, 987, 988, 5, 273, 0, 0, 988, 989, 5, 293, 0, 0, 989, 992, 5, 108, 0, 0, 990, 991, 7, 2, 0, 0, 991, 993, 3, 80, 40, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 5, 163, 0, 0, 995, 997, 3, 400, 200, 0, 996, 998, 3, 32, 16, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1350, 1, 0, 0, 0, 999, 1000, 5, 273, 0, 0, 1000, 1001, 5, 297, 0, 0, 1001, 1006, 3, 86, 43, 0, 1002, 1003, 5, 2, 0, 0, 1003, 1004, 3, 58, 29, 0, 1004, 1005, 5, 3, 0, 0, 1005, 1007, 1, 0, 0, 0, 1006, 1002, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1350, 1, 0, 0, 0, 1008, 1009, 5, 273, 0, 0, 1009, 1010, 5, 50, 0, 0, 1010, 1011, 7, 2, 0, 0, 1011, 1014, 3, 86, 43, 0, 1012, 1013, 7, 2, 0, 0, 1013, 1015, 3, 80, 40, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1350, 1, 0, 0, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1020, 5, 339, 0, 0, 1018, 1019, 7, 2, 0, 0, 1019, 1021, 3, 80, 40, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1026, 1, 0, 0, 0, 1022, 1024, 5, 163, 0, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 3, 400, 200, 0, 1026, 1023, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1350, 1, 0, 0, 0, 1028, 1029, 5, 273, 0, 0, 1029, 1030, 5, 219, 0, 0, 1030, 1032, 3, 86, 43, 0, 1031, 1033, 3, 32, 16, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1350, 1, 0, 0, 0, 1034, 1036, 5, 273, 0, 0, 1035, 1037, 3, 148, 74, 0, 1036, 1035, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1041, 5, 126, 0, 0, 1039, 1040, 7, 2, 0, 0, 1040, 1042, 3, 80, 40, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1050, 1, 0, 0, 0, 1043, 1045, 5, 163, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1049, 3, 250, 125, 0, 1047, 1049, 3, 400, 200, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1047, 1, 0, 0, 0, 1049, 1051, 1, 0, 0, 0, 1050, 1044, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1350, 1, 0, 0, 0, 1052, 1053, 5, 273, 0, 0, 1053, 1054, 5, 59, 0, 0, 1054, 1055, 5, 293, 0, 0, 1055, 1058, 3, 86, 43, 0, 1056, 1057, 5, 20, 0, 0, 1057, 1059, 5, 266, 0, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1350, 1, 0, 0, 0, 1060, 1061, 5, 273, 0, 0, 1061, 1062, 5, 62, 0, 0, 1062, 1350, 3, 36, 18, 0, 1063, 1064, 5, 273, 0, 0, 1064, 1069, 5, 38, 0, 0, 1065, 1067, 5, 163, 0, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 3, 400, 200, 0, 1069, 1066, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1350, 1, 0, 0, 0, 1071, 1072, 5, 273, 0, 0, 1072, 1073, 5, 176, 0, 0, 1073, 1076, 5, 339, 0, 0, 1074, 1075, 7, 2, 0, 0, 1075, 1077, 3, 80, 40, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1082, 1, 0, 0, 0, 1078, 1080, 5, 163, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 3, 400, 200, 0, 1082, 1079, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1350, 1, 0, 0, 0, 1084, 1085, 5, 273, 0, 0, 1085, 1086, 5, 59, 0, 0, 1086, 1087, 5, 176, 0, 0, 1087, 1088, 5, 338, 0, 0, 1088, 1091, 3, 90, 45, 0, 1089, 1090, 5, 20, 0, 0, 1090, 1092, 5, 266, 0, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1350, 1, 0, 0, 0, 1093, 1094, 7, 6, 0, 0, 1094, 1096, 5, 125, 0, 0, 1095, 1097, 5, 108, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1350, 3, 40, 20, 0, 1099, 1100, 7, 6, 0, 0, 1100, 1102, 5, 72, 0, 0, 1101, 1103, 5, 108, 0, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1350, 3, 80, 40, 0, 1105, 1107, 7, 6, 0, 0, 1106, 1108, 5, 293, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1111, 7, 7, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 3, 86, 43, 0, 1113, 1115, 3, 32, 16, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1118, 3, 42, 21, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1350, 1, 0, 0, 0, 1119, 1121, 7, 6, 0, 0, 1120, 1122, 5, 232, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1350, 3, 26, 13, 0, 1124, 1125, 5, 51, 0, 0, 1125, 1126, 5, 203, 0, 0, 1126, 1127, 3, 36, 18, 0, 1127, 1128, 3, 80, 40, 0, 1128, 1129, 5, 153, 0, 0, 1129, 1130, 3, 402, 201, 0, 1130, 1350, 1, 0, 0, 0, 1131, 1132, 5, 51, 0, 0, 1132, 1133, 5, 203, 0, 0, 1133, 1134, 5, 293, 0, 0, 1134, 1135, 3, 86, 43, 0, 1135, 1136, 5, 153, 0, 0, 1136, 1137, 3, 402, 201, 0, 1137, 1350, 1, 0, 0, 0, 1138, 1139, 5, 240, 0, 0, 1139, 1140, 5, 293, 0, 0, 1140, 1350, 3, 86, 43, 0, 1141, 1142, 5, 240, 0, 0, 1142, 1143, 5, 125, 0, 0, 1143, 1350, 3, 378, 189, 0, 1144, 1152, 5, 240, 0, 0, 1145, 1153, 3, 400, 200, 0, 1146, 1148, 9, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 1151, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1150, 1153, 1, 0, 0, 0, 1151, 1149, 1, 0, 0, 0, 1152, 1145, 1, 0, 0, 0, 1152, 1149, 1, 0, 0, 0, 1153, 1350, 1, 0, 0, 0, 1154, 1155, 5, 240, 0, 0, 1155, 1156, 5, 176, 0, 0, 1156, 1157, 5, 338, 0, 0, 1157, 1350, 3, 90, 45, 0, 1158, 1160, 5, 33, 0, 0, 1159, 1161, 5, 159, 0, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 5, 293, 0, 0, 1163, 1166, 3, 86, 43, 0, 1164, 1165, 5, 207, 0, 0, 1165, 1167, 3, 54, 27, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1172, 1, 0, 0, 0, 1168, 1170, 5, 20, 0, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 3, 26, 13, 0, 1172, 1169, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1350, 1, 0, 0, 0, 1174, 1175, 5, 322, 0, 0, 1175, 1177, 5, 293, 0, 0, 1176, 1178, 3, 192, 96, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1350, 3, 86, 43, 0, 1180, 1181, 5, 43, 0, 0, 1181, 1350, 5, 33, 0, 0, 1182, 1183, 5, 168, 0, 0, 1183, 1185, 5, 70, 0, 0, 1184, 1186, 5, 169, 0, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1188, 5, 145, 0, 0, 1188, 1190, 3, 400, 200, 0, 1189, 1191, 5, 216, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 152, 0, 0, 1193, 1194, 5, 293, 0, 0, 1194, 1196, 3, 86, 43, 0, 1195, 1197, 3, 32, 16, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1350, 1, 0, 0, 0, 1198, 1199, 5, 317, 0, 0, 1199, 1200, 5, 293, 0, 0, 1200, 1202, 3, 86, 43, 0, 1201, 1203, 3, 32, 16, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1350, 1, 0, 0, 0, 1204, 1206, 5, 188, 0, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 5, 242, 0, 0, 1208, 1209, 5, 293, 0, 0, 1209, 1212, 3, 86, 43, 0, 1210, 1211, 7, 8, 0, 0, 1211, 1213, 5, 219, 0, 0, 1212, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1350, 1, 0, 0, 0, 1214, 1215, 7, 9, 0, 0, 1215, 1219, 3, 388, 194, 0, 1216, 1218, 9, 0, 0, 0, 1217, 1216, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1220, 1350, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1223, 5, 269, 0, 0, 1223, 1227, 5, 253, 0, 0, 1224, 1226, 9, 0, 0, 0, 1225, 1224, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1350, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 5, 301, 0, 0, 1232, 1233, 5, 350, 0, 0, 1233, 1350, 3, 310, 155, 0, 1234, 1235, 5, 269, 0, 0, 1235, 1236, 5, 301, 0, 0, 1236, 1237, 5, 350, 0, 0, 1237, 1350, 3, 6, 3, 0, 1238, 1239, 5, 269, 0, 0, 1239, 1240, 5, 301, 0, 0, 1240, 1244, 5, 350, 0, 0, 1241, 1243, 9, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1350, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1248, 5, 269, 0, 0, 1248, 1249, 7, 10, 0, 0, 1249, 1350, 3, 134, 67, 0, 1250, 1251, 5, 269, 0, 0, 1251, 1252, 7, 10, 0, 0, 1252, 1253, 5, 2, 0, 0, 1253, 1254, 3, 248, 124, 0, 1254, 1255, 5, 3, 0, 0, 1255, 1256, 5, 352, 0, 0, 1256, 1257, 5, 2, 0, 0, 1257, 1258, 3, 26, 13, 0, 1258, 1259, 5, 3, 0, 0, 1259, 1350, 1, 0, 0, 0, 1260, 1261, 5, 269, 0, 0, 1261, 1262, 3, 8, 4, 0, 1262, 1263, 5, 352, 0, 0, 1263, 1264, 3, 10, 5, 0, 1264, 1350, 1, 0, 0, 0, 1265, 1266, 5, 269, 0, 0, 1266, 1274, 3, 8, 4, 0, 1267, 1271, 5, 352, 0, 0, 1268, 1270, 9, 0, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 1273, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1274, 1267, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1350, 1, 0, 0, 0, 1276, 1280, 5, 269, 0, 0, 1277, 1279, 9, 0, 0, 0, 1278, 1277, 1, 0, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1280, 1278, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1283, 1284, 5, 352, 0, 0, 1284, 1350, 3, 10, 5, 0, 1285, 1289, 5, 269, 0, 0, 1286, 1288, 9, 0, 0, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1350, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 5, 245, 0, 0, 1293, 1350, 3, 8, 4, 0, 1294, 1298, 5, 245, 0, 0, 1295, 1297, 9, 0, 0, 0, 1296, 1295, 1, 0, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1350, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1301, 1302, 5, 59, 0, 0, 1302, 1304, 5, 142, 0, 0, 1303, 1305, 3, 190, 95, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 3, 388, 194, 0, 1307, 1309, 5, 203, 0, 0, 1308, 1310, 5, 293, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1314, 3, 86, 43, 0, 1312, 1313, 5, 332, 0, 0, 1313, 1315, 3, 388, 194, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 5, 2, 0, 0, 1317, 1318, 3, 252, 126, 0, 1318, 1321, 5, 3, 0, 0, 1319, 1320, 5, 207, 0, 0, 1320, 1322, 3, 54, 27, 0, 1321, 1319, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1350, 1, 0, 0, 0, 1323, 1324, 5, 96, 0, 0, 1324, 1326, 5, 142, 0, 0, 1325, 1327, 3, 192, 96, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 3, 388, 194, 0, 1329, 1331, 5, 203, 0, 0, 1330, 1332, 5, 293, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 3, 86, 43, 0, 1334, 1350, 1, 0, 0, 0, 1335, 1336, 5, 205, 0, 0, 1336, 1338, 3, 86, 43, 0, 1337, 1339, 3, 138, 69, 0, 1338, 1337, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 3, 366, 183, 0, 1341, 1350, 1, 0, 0, 0, 1342, 1346, 3, 12, 6, 0, 1343, 1345, 9, 0, 0, 0, 1344, 1343, 1, 0, 0, 0, 1345, 1348, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1346, 1, 0, 0, 0, 1349, 424, 1, 0, 0, 0, 1349, 426, 1, 0, 0, 0, 1349, 429, 1, 0, 0, 0, 1349, 434, 1, 0, 0, 0, 1349, 440, 1, 0, 0, 0, 1349, 456, 1, 0, 0, 0, 1349, 463, 1, 0, 0, 0, 1349, 469, 1, 0, 0, 0, 1349, 478, 1, 0, 0, 0, 1349, 490, 1, 0, 0, 0, 1349, 507, 1, 0, 0, 0, 1349, 527, 1, 0, 0, 0, 1349, 544, 1, 0, 0, 0, 1349, 561, 1, 0, 0, 0, 1349, 572, 1, 0, 0, 0, 1349, 579, 1, 0, 0, 0, 1349, 588, 1, 0, 0, 0, 1349, 597, 1, 0, 0, 0, 1349, 607, 1, 0, 0, 0, 1349, 619, 1, 0, 0, 0, 1349, 630, 1, 0, 0, 0, 1349, 641, 1, 0, 0, 0, 1349, 655, 1, 0, 0, 0, 1349, 666, 1, 0, 0, 0, 1349, 681, 1, 0, 0, 0, 1349, 693, 1, 0, 0, 0, 1349, 707, 1, 0, 0, 0, 1349, 717, 1, 0, 0, 0, 1349, 733, 1, 0, 0, 0, 1349, 741, 1, 0, 0, 0, 1349, 763, 1, 0, 0, 0, 1349, 772, 1, 0, 0, 0, 1349, 778, 1, 0, 0, 0, 1349, 785, 1, 0, 0, 0, 1349, 793, 1, 0, 0, 0, 1349, 802, 1, 0, 0, 0, 1349, 808, 1, 0, 0, 0, 1349, 815, 1, 0, 0, 0, 1349, 848, 1, 0, 0, 0, 1349, 870, 1, 0, 0, 0, 1349, 878, 1, 0, 0, 0, 1349, 904, 1, 0, 0, 0, 1349, 935, 1, 0, 0, 0, 1349, 944, 1, 0, 0, 0, 1349, 959, 1, 0, 0, 0, 1349, 970, 1, 0, 0, 0, 1349, 975, 1, 0, 0, 0, 1349, 987, 1, 0, 0, 0, 1349, 999, 1, 0, 0, 0, 1349, 1008, 1, 0, 0, 0, 1349, 1016, 1, 0, 0, 0, 1349, 1028, 1, 0, 0, 0, 1349, 1034, 1, 0, 0, 0, 1349, 1052, 1, 0, 0, 0, 1349, 1060, 1, 0, 0, 0, 1349, 1063, 1, 0, 0, 0, 1349, 1071, 1, 0, 0, 0, 1349, 1084, 1, 0, 0, 0, 1349, 1093, 1, 0, 0, 0, 1349, 1099, 1, 0, 0, 0, 1349, 1105, 1, 0, 0, 0, 1349, 1119, 1, 0, 0, 0, 1349, 1124, 1, 0, 0, 0, 1349, 1131, 1, 0, 0, 0, 1349, 1138, 1, 0, 0, 0, 1349, 1141, 1, 0, 0, 0, 1349, 1144, 1, 0, 0, 0, 1349, 1154, 1, 0, 0, 0, 1349, 1158, 1, 0, 0, 0, 1349, 1174, 1, 0, 0, 0, 1349, 1180, 1, 0, 0, 0, 1349, 1182, 1, 0, 0, 0, 1349, 1198, 1, 0, 0, 0, 1349, 1205, 1, 0, 0, 0, 1349, 1214, 1, 0, 0, 0, 1349, 1222, 1, 0, 0, 0, 1349, 1230, 1, 0, 0, 0, 1349, 1234, 1, 0, 0, 0, 1349, 1238, 1, 0, 0, 0, 1349, 1247, 1, 0, 0, 0, 1349, 1250, 1, 0, 0, 0, 1349, 1260, 1, 0, 0, 0, 1349, 1265, 1, 0, 0, 0, 1349, 1276, 1, 0, 0, 0, 1349, 1285, 1, 0, 0, 0, 1349, 1292, 1, 0, 0, 0, 1349, 1294, 1, 0, 0, 0, 1349, 1301, 1, 0, 0, 0, 1349, 1323, 1, 0, 0, 0, 1349, 1335, 1, 0, 0, 0, 1349, 1342, 1, 0, 0, 0, 1350, 5, 1, 0, 0, 0, 1351, 1354, 3, 400, 200, 0, 1352, 1354, 5, 169, 0, 0, 1353, 1351, 1, 0, 0, 0, 1353, 1352, 1, 0, 0, 0, 1354, 7, 1, 0, 0, 0, 1355, 1356, 3, 392, 196, 0, 1356, 9, 1, 0, 0, 0, 1357, 1358, 3, 394, 197, 0, 1358, 11, 1, 0, 0, 0, 1359, 1360, 5, 59, 0, 0, 1360, 1528, 5, 253, 0, 0, 1361, 1362, 5, 96, 0, 0, 1362, 1528, 5, 253, 0, 0, 1363, 1365, 5, 129, 0, 0, 1364, 1366, 5, 253, 0, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1528, 1, 0, 0, 0, 1367, 1369, 5, 249, 0, 0, 1368, 1370, 5, 253, 0, 0, 1369, 1368, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1528, 1, 0, 0, 0, 1371, 1372, 5, 273, 0, 0, 1372, 1528, 5, 129, 0, 0, 1373, 1374, 5, 273, 0, 0, 1374, 1376, 5, 253, 0, 0, 1375, 1377, 5, 129, 0, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1528, 1, 0, 0, 0, 1378, 1379, 5, 273, 0, 0, 1379, 1528, 5, 228, 0, 0, 1380, 1381, 5, 273, 0, 0, 1381, 1528, 5, 254, 0, 0, 1382, 1383, 5, 273, 0, 0, 1383, 1384, 5, 62, 0, 0, 1384, 1528, 5, 254, 0, 0, 1385, 1386, 5, 107, 0, 0, 1386, 1528, 5, 293, 0, 0, 1387, 1388, 5, 139, 0, 0, 1388, 1528, 5, 293, 0, 0, 1389, 1390, 5, 273, 0, 0, 1390, 1528, 5, 54, 0, 0, 1391, 1392, 5, 273, 0, 0, 1392, 1393, 5, 59, 0, 0, 1393, 1528, 5, 293, 0, 0, 1394, 1395, 5, 273, 0, 0, 1395, 1528, 5, 313, 0, 0, 1396, 1397, 5, 273, 0, 0, 1397, 1528, 5, 143, 0, 0, 1398, 1399, 5, 273, 0, 0, 1399, 1528, 5, 172, 0, 0, 1400, 1401, 5, 59, 0, 0, 1401, 1528, 5, 142, 0, 0, 1402, 1403, 5, 96, 0, 0, 1403, 1528, 5, 142, 0, 0, 1404, 1405, 5, 11, 0, 0, 1405, 1528, 5, 142, 0, 0, 1406, 1407, 5, 171, 0, 0, 1407, 1528, 5, 293, 0, 0, 1408, 1409, 5, 171, 0, 0, 1409, 1528, 5, 72, 0, 0, 1410, 1411, 5, 326, 0, 0, 1411, 1528, 5, 293, 0, 0, 1412, 1413, 5, 326, 0, 0, 1413, 1528, 5, 72, 0, 0, 1414, 1415, 5, 59, 0, 0, 1415, 1416, 5, 298, 0, 0, 1416, 1528, 5, 175, 0, 0, 1417, 1418, 5, 96, 0, 0, 1418, 1419, 5, 298, 0, 0, 1419, 1528, 5, 175, 0, 0, 1420, 1421, 5, 11, 0, 0, 1421, 1422, 5, 293, 0, 0, 1422, 1423, 3, 86, 43, 0, 1423, 1424, 5, 197, 0, 0, 1424, 1425, 5, 45, 0, 0, 1425, 1528, 1, 0, 0, 0, 1426, 1427, 5, 11, 0, 0, 1427, 1428, 5, 293, 0, 0, 1428, 1429, 3, 86, 43, 0, 1429, 1430, 5, 45, 0, 0, 1430, 1431, 5, 31, 0, 0, 1431, 1528, 1, 0, 0, 0, 1432, 1433, 5, 11, 0, 0, 1433, 1434, 5, 293, 0, 0, 1434, 1435, 3, 86, 43, 0, 1435, 1436, 5, 197, 0, 0, 1436, 1437, 5, 279, 0, 0, 1437, 1528, 1, 0, 0, 0, 1438, 1439, 5, 11, 0, 0, 1439, 1440, 5, 293, 0, 0, 1440, 1441, 3, 86, 43, 0, 1441, 1442, 5, 275, 0, 0, 1442, 1443, 5, 31, 0, 0, 1443, 1528, 1, 0, 0, 0, 1444, 1445, 5, 11, 0, 0, 1445, 1446, 5, 293, 0, 0, 1446, 1447, 3, 86, 43, 0, 1447, 1448, 5, 197, 0, 0, 1448, 1449, 5, 275, 0, 0, 1449, 1528, 1, 0, 0, 0, 1450, 1451, 5, 11, 0, 0, 1451, 1452, 5, 293, 0, 0, 1452, 1453, 3, 86, 43, 0, 1453, 1454, 5, 197, 0, 0, 1454, 1455, 5, 283, 0, 0, 1455, 1456, 5, 20, 0, 0, 1456, 1457, 5, 89, 0, 0, 1457, 1528, 1, 0, 0, 0, 1458, 1459, 5, 11, 0, 0, 1459, 1460, 5, 293, 0, 0, 1460, 1461, 3, 86, 43, 0, 1461, 1462, 5, 269, 0, 0, 1462, 1463, 5, 275, 0, 0, 1463, 1464, 5, 170, 0, 0, 1464, 1528, 1, 0, 0, 0, 1465, 1466, 5, 11, 0, 0, 1466, 1467, 5, 293, 0, 0, 1467, 1468, 3, 86, 43, 0, 1468, 1469, 5, 103, 0, 0, 1469, 1470, 5, 217, 0, 0, 1470, 1528, 1, 0, 0, 0, 1471, 1472, 5, 11, 0, 0, 1472, 1473, 5, 293, 0, 0, 1473, 1474, 3, 86, 43, 0, 1474, 1475, 5, 18, 0, 0, 1475, 1476, 5, 217, 0, 0, 1476, 1528, 1, 0, 0, 0, 1477, 1478, 5, 11, 0, 0, 1478, 1479, 5, 293, 0, 0, 1479, 1480, 3, 86, 43, 0, 1480, 1481, 5, 320, 0, 0, 1481, 1482, 5, 217, 0, 0, 1482, 1528, 1, 0, 0, 0, 1483, 1484, 5, 11, 0, 0, 1484, 1485, 5, 293, 0, 0, 1485, 1486, 3, 86, 43, 0, 1486, 1487, 5, 310, 0, 0, 1487, 1528, 1, 0, 0, 0, 1488, 1489, 5, 11, 0, 0, 1489, 1490, 5, 293, 0, 0, 1490, 1492, 3, 86, 43, 0, 1491, 1493, 3, 32, 16, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 5, 53, 0, 0, 1495, 1528, 1, 0, 0, 0, 1496, 1497, 5, 11, 0, 0, 1497, 1498, 5, 293, 0, 0, 1498, 1500, 3, 86, 43, 0, 1499, 1501, 3, 32, 16, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 5, 56, 0, 0, 1503, 1528, 1, 0, 0, 0, 1504, 1505, 5, 11, 0, 0, 1505, 1506, 5, 293, 0, 0, 1506, 1508, 3, 86, 43, 0, 1507, 1509, 3, 32, 16, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 5, 269, 0, 0, 1511, 1512, 5, 115, 0, 0, 1512, 1528, 1, 0, 0, 0, 1513, 1514, 5, 11, 0, 0, 1514, 1515, 5, 293, 0, 0, 1515, 1517, 3, 86, 43, 0, 1516, 1518, 3, 32, 16, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 5, 244, 0, 0, 1520, 1521, 5, 50, 0, 0, 1521, 1528, 1, 0, 0, 0, 1522, 1523, 5, 281, 0, 0, 1523, 1528, 5, 312, 0, 0, 1524, 1528, 5, 52, 0, 0, 1525, 1528, 5, 255, 0, 0, 1526, 1528, 5, 88, 0, 0, 1527, 1359, 1, 0, 0, 0, 1527, 1361, 1, 0, 0, 0, 1527, 1363, 1, 0, 0, 0, 1527, 1367, 1, 0, 0, 0, 1527, 1371, 1, 0, 0, 0, 1527, 1373, 1, 0, 0, 0, 1527, 1378, 1, 0, 0, 0, 1527, 1380, 1, 0, 0, 0, 1527, 1382, 1, 0, 0, 0, 1527, 1385, 1, 0, 0, 0, 1527, 1387, 1, 0, 0, 0, 1527, 1389, 1, 0, 0, 0, 1527, 1391, 1, 0, 0, 0, 1527, 1394, 1, 0, 0, 0, 1527, 1396, 1, 0, 0, 0, 1527, 1398, 1, 0, 0, 0, 1527, 1400, 1, 0, 0, 0, 1527, 1402, 1, 0, 0, 0, 1527, 1404, 1, 0, 0, 0, 1527, 1406, 1, 0, 0, 0, 1527, 1408, 1, 0, 0, 0, 1527, 1410, 1, 0, 0, 0, 1527, 1412, 1, 0, 0, 0, 1527, 1414, 1, 0, 0, 0, 1527, 1417, 1, 0, 0, 0, 1527, 1420, 1, 0, 0, 0, 1527, 1426, 1, 0, 0, 0, 1527, 1432, 1, 0, 0, 0, 1527, 1438, 1, 0, 0, 0, 1527, 1444, 1, 0, 0, 0, 1527, 1450, 1, 0, 0, 0, 1527, 1458, 1, 0, 0, 0, 1527, 1465, 1, 0, 0, 0, 1527, 1471, 1, 0, 0, 0, 1527, 1477, 1, 0, 0, 0, 1527, 1483, 1, 0, 0, 0, 1527, 1488, 1, 0, 0, 0, 1527, 1496, 1, 0, 0, 0, 1527, 1504, 1, 0, 0, 0, 1527, 1513, 1, 0, 0, 0, 1527, 1522, 1, 0, 0, 0, 1527, 1524, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1527, 1526, 1, 0, 0, 0, 1528, 13, 1, 0, 0, 0, 1529, 1531, 5, 59, 0, 0, 1530, 1532, 5, 298, 0, 0, 1531, 1530, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1534, 1, 0, 0, 0, 1533, 1535, 5, 109, 0, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1538, 5, 293, 0, 0, 1537, 1539, 3, 190, 95, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 3, 84, 42, 0, 1541, 15, 1, 0, 0, 0, 1542, 1543, 5, 59, 0, 0, 1543, 1545, 5, 208, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 244, 0, 0, 1547, 1548, 5, 293, 0, 0, 1548, 1549, 3, 84, 42, 0, 1549, 17, 1, 0, 0, 0, 1550, 1551, 5, 45, 0, 0, 1551, 1552, 5, 31, 0, 0, 1552, 1556, 3, 212, 106, 0, 1553, 1554, 5, 279, 0, 0, 1554, 1555, 5, 31, 0, 0, 1555, 1557, 3, 216, 108, 0, 1556, 1553, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 5, 152, 0, 0, 1559, 1560, 5, 382, 0, 0, 1560, 1561, 5, 30, 0, 0, 1561, 19, 1, 0, 0, 0, 1562, 1563, 5, 275, 0, 0, 1563, 1564, 5, 31, 0, 0, 1564, 1565, 3, 212, 106, 0, 1565, 1568, 5, 203, 0, 0, 1566, 1569, 3, 66, 33, 0, 1567, 1569, 3, 68, 34, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1567, 1, 0, 0, 0, 1569, 1573, 1, 0, 0, 0, 1570, 1571, 5, 283, 0, 0, 1571, 1572, 5, 20, 0, 0, 1572, 1574, 5, 89, 0, 0, 1573, 1570, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 21, 1, 0, 0, 0, 1575, 1576, 5, 170, 0, 0, 1576, 1577, 3, 400, 200, 0, 1577, 23, 1, 0, 0, 0, 1578, 1579, 5, 51, 0, 0, 1579, 1580, 3, 400, 200, 0, 1580, 25, 1, 0, 0, 0, 1581, 1583, 3, 44, 22, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 3, 104, 52, 0, 1585, 1586, 3, 100, 50, 0, 1586, 27, 1, 0, 0, 0, 1587, 1588, 5, 147, 0, 0, 1588, 1590, 5, 216, 0, 0, 1589, 1591, 5, 293, 0, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1597, 3, 86, 43, 0, 1593, 1595, 3, 32, 16, 0, 1594, 1596, 3, 190, 95, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1598, 1, 0, 0, 0, 1597, 1593, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1605, 1, 0, 0, 0, 1599, 1600, 5, 31, 0, 0, 1600, 1606, 5, 189, 0, 0, 1601, 1602, 5, 2, 0, 0, 1602, 1603, 3, 94, 47, 0, 1603, 1604, 5, 3, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1599, 1, 0, 0, 0, 1605, 1601, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1664, 1, 0, 0, 0, 1607, 1608, 5, 147, 0, 0, 1608, 1610, 5, 152, 0, 0, 1609, 1611, 5, 293, 0, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 3, 86, 43, 0, 1613, 1615, 3, 32, 16, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 1, 0, 0, 0, 1616, 1618, 3, 190, 95, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1625, 1, 0, 0, 0, 1619, 1620, 5, 31, 0, 0, 1620, 1626, 5, 189, 0, 0, 1621, 1622, 5, 2, 0, 0, 1622, 1623, 3, 94, 47, 0, 1623, 1624, 5, 3, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1619, 1, 0, 0, 0, 1625, 1621, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1664, 1, 0, 0, 0, 1627, 1628, 5, 147, 0, 0, 1628, 1630, 5, 152, 0, 0, 1629, 1631, 5, 293, 0, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 3, 86, 43, 0, 1633, 1634, 5, 244, 0, 0, 1634, 1635, 3, 138, 69, 0, 1635, 1664, 1, 0, 0, 0, 1636, 1637, 5, 147, 0, 0, 1637, 1639, 5, 216, 0, 0, 1638, 1640, 5, 169, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 5, 90, 0, 0, 1642, 1644, 3, 400, 200, 0, 1643, 1645, 3, 246, 123, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1647, 1, 0, 0, 0, 1646, 1648, 3, 70, 35, 0, 1647, 1646, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1664, 1, 0, 0, 0, 1649, 1650, 5, 147, 0, 0, 1650, 1652, 5, 216, 0, 0, 1651, 1653, 5, 169, 0, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1656, 5, 90, 0, 0, 1655, 1657, 3, 400, 200, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1661, 3, 48, 24, 0, 1659, 1660, 5, 207, 0, 0, 1660, 1662, 3, 54, 27, 0, 1661, 1659, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1587, 1, 0, 0, 0, 1663, 1607, 1, 0, 0, 0, 1663, 1627, 1, 0, 0, 0, 1663, 1636, 1, 0, 0, 0, 1663, 1649, 1, 0, 0, 0, 1664, 29, 1, 0, 0, 0, 1665, 1667, 3, 32, 16, 0, 1666, 1668, 3, 22, 11, 0, 1667, 1666, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 31, 1, 0, 0, 0, 1669, 1670, 5, 217, 0, 0, 1670, 1671, 5, 2, 0, 0, 1671, 1676, 3, 34, 17, 0, 1672, 1673, 5, 4, 0, 0, 1673, 1675, 3, 34, 17, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1680, 5, 3, 0, 0, 1680, 33, 1, 0, 0, 0, 1681, 1684, 3, 388, 194, 0, 1682, 1683, 5, 352, 0, 0, 1683, 1685, 3, 300, 150, 0, 1684, 1682, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1691, 1, 0, 0, 0, 1686, 1687, 3, 388, 194, 0, 1687, 1688, 5, 352, 0, 0, 1688, 1689, 5, 82, 0, 0, 1689, 1691, 1, 0, 0, 0, 1690, 1681, 1, 0, 0, 0, 1690, 1686, 1, 0, 0, 0, 1691, 35, 1, 0, 0, 0, 1692, 1693, 7, 11, 0, 0, 1693, 37, 1, 0, 0, 0, 1694, 1695, 7, 12, 0, 0, 1695, 39, 1, 0, 0, 0, 1696, 1702, 3, 98, 49, 0, 1697, 1702, 3, 400, 200, 0, 1698, 1702, 3, 302, 151, 0, 1699, 1702, 3, 304, 152, 0, 1700, 1702, 3, 306, 153, 0, 1701, 1696, 1, 0, 0, 0, 1701, 1697, 1, 0, 0, 0, 1701, 1698, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1701, 1700, 1, 0, 0, 0, 1702, 41, 1, 0, 0, 0, 1703, 1708, 3, 388, 194, 0, 1704, 1705, 5, 5, 0, 0, 1705, 1707, 3, 388, 194, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 43, 1, 0, 0, 0, 1710, 1708, 1, 0, 0, 0, 1711, 1712, 5, 346, 0, 0, 1712, 1717, 3, 46, 23, 0, 1713, 1714, 5, 4, 0, 0, 1714, 1716, 3, 46, 23, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 45, 1, 0, 0, 0, 1719, 1717, 1, 0, 0, 0, 1720, 1722, 3, 384, 192, 0, 1721, 1723, 3, 212, 106, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1725, 1, 0, 0, 0, 1724, 1726, 5, 20, 0, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 5, 2, 0, 0, 1728, 1729, 3, 26, 13, 0, 1729, 1730, 5, 3, 0, 0, 1730, 47, 1, 0, 0, 0, 1731, 1732, 5, 332, 0, 0, 1732, 1733, 3, 250, 125, 0, 1733, 49, 1, 0, 0, 0, 1734, 1735, 5, 207, 0, 0, 1735, 1749, 3, 62, 31, 0, 1736, 1737, 5, 218, 0, 0, 1737, 1738, 5, 31, 0, 0, 1738, 1749, 3, 272, 136, 0, 1739, 1749, 3, 20, 10, 0, 1740, 1749, 3, 18, 9, 0, 1741, 1749, 3, 246, 123, 0, 1742, 1749, 3, 70, 35, 0, 1743, 1749, 3, 22, 11, 0, 1744, 1749, 3, 24, 12, 0, 1745, 1746, 5, 297, 0, 0, 1746, 1749, 3, 54, 27, 0, 1747, 1749, 3, 52, 26, 0, 1748, 1734, 1, 0, 0, 0, 1748, 1736, 1, 0, 0, 0, 1748, 1739, 1, 0, 0, 0, 1748, 1740, 1, 0, 0, 0, 1748, 1741, 1, 0, 0, 0, 1748, 1742, 1, 0, 0, 0, 1748, 1743, 1, 0, 0, 0, 1748, 1744, 1, 0, 0, 0, 1748, 1745, 1, 0, 0, 0, 1748, 1747, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 51, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1754, 5, 162, 0, 0, 1754, 1755, 5, 382, 0, 0, 1755, 53, 1, 0, 0, 0, 1756, 1757, 5, 2, 0, 0, 1757, 1762, 3, 56, 28, 0, 1758, 1759, 5, 4, 0, 0, 1759, 1761, 3, 56, 28, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 3, 0, 0, 1766, 55, 1, 0, 0, 0, 1767, 1772, 3, 58, 29, 0, 1768, 1770, 5, 352, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 3, 60, 30, 0, 1772, 1769, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 57, 1, 0, 0, 0, 1774, 1779, 3, 388, 194, 0, 1775, 1776, 5, 5, 0, 0, 1776, 1778, 3, 388, 194, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1784, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1784, 3, 400, 200, 0, 1783, 1774, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1784, 59, 1, 0, 0, 0, 1785, 1790, 5, 382, 0, 0, 1786, 1790, 5, 384, 0, 0, 1787, 1790, 3, 308, 154, 0, 1788, 1790, 3, 400, 200, 0, 1789, 1785, 1, 0, 0, 0, 1789, 1786, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1789, 1788, 1, 0, 0, 0, 1790, 61, 1, 0, 0, 0, 1791, 1792, 5, 2, 0, 0, 1792, 1797, 3, 64, 32, 0, 1793, 1794, 5, 4, 0, 0, 1794, 1796, 3, 64, 32, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1801, 5, 3, 0, 0, 1801, 63, 1, 0, 0, 0, 1802, 1807, 3, 58, 29, 0, 1803, 1805, 5, 352, 0, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1808, 3, 280, 140, 0, 1807, 1804, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 65, 1, 0, 0, 0, 1809, 1810, 5, 2, 0, 0, 1810, 1815, 3, 300, 150, 0, 1811, 1812, 5, 4, 0, 0, 1812, 1814, 3, 300, 150, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 3, 0, 0, 1819, 67, 1, 0, 0, 0, 1820, 1821, 5, 2, 0, 0, 1821, 1826, 3, 66, 33, 0, 1822, 1823, 5, 4, 0, 0, 1823, 1825, 3, 66, 33, 0, 1824, 1822, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1829, 1, 0, 0, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1830, 5, 3, 0, 0, 1830, 69, 1, 0, 0, 0, 1831, 1832, 5, 283, 0, 0, 1832, 1833, 5, 20, 0, 0, 1833, 1838, 3, 72, 36, 0, 1834, 1835, 5, 283, 0, 0, 1835, 1836, 5, 31, 0, 0, 1836, 1838, 3, 74, 37, 0, 1837, 1831, 1, 0, 0, 0, 1837, 1834, 1, 0, 0, 0, 1838, 71, 1, 0, 0, 0, 1839, 1840, 5, 146, 0, 0, 1840, 1841, 3, 400, 200, 0, 1841, 1842, 5, 212, 0, 0, 1842, 1843, 3, 400, 200, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1846, 3, 388, 194, 0, 1845, 1839, 1, 0, 0, 0, 1845, 1844, 1, 0, 0, 0, 1846, 73, 1, 0, 0, 0, 1847, 1851, 3, 400, 200, 0, 1848, 1849, 5, 346, 0, 0, 1849, 1850, 5, 267, 0, 0, 1850, 1852, 3, 54, 27, 0, 1851, 1848, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 75, 1, 0, 0, 0, 1853, 1854, 3, 388, 194, 0, 1854, 1855, 3, 400, 200, 0, 1855, 77, 1, 0, 0, 0, 1856, 1857, 3, 28, 14, 0, 1857, 1858, 3, 26, 13, 0, 1858, 1913, 1, 0, 0, 0, 1859, 1861, 3, 146, 73, 0, 1860, 1862, 3, 102, 51, 0, 1861, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 1913, 1, 0, 0, 0, 1865, 1866, 5, 84, 0, 0, 1866, 1867, 5, 123, 0, 0, 1867, 1868, 3, 86, 43, 0, 1868, 1870, 3, 244, 122, 0, 1869, 1871, 3, 138, 69, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1913, 1, 0, 0, 0, 1872, 1873, 5, 329, 0, 0, 1873, 1874, 3, 86, 43, 0, 1874, 1875, 3, 244, 122, 0, 1875, 1877, 3, 120, 60, 0, 1876, 1878, 3, 138, 69, 0, 1877, 1876, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1913, 1, 0, 0, 0, 1879, 1880, 5, 179, 0, 0, 1880, 1881, 5, 152, 0, 0, 1881, 1882, 3, 86, 43, 0, 1882, 1883, 3, 244, 122, 0, 1883, 1889, 5, 332, 0, 0, 1884, 1890, 3, 98, 49, 0, 1885, 1886, 5, 2, 0, 0, 1886, 1887, 3, 26, 13, 0, 1887, 1888, 5, 3, 0, 0, 1888, 1890, 1, 0, 0, 0, 1889, 1884, 1, 0, 0, 0, 1889, 1885, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 3, 244, 122, 0, 1892, 1893, 5, 203, 0, 0, 1893, 1897, 3, 288, 144, 0, 1894, 1896, 3, 122, 61, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1903, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1902, 3, 124, 62, 0, 1901, 1900, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1909, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1908, 3, 126, 63, 0, 1907, 1906, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1912, 1856, 1, 0, 0, 0, 1912, 1859, 1, 0, 0, 0, 1912, 1865, 1, 0, 0, 0, 1912, 1872, 1, 0, 0, 0, 1912, 1879, 1, 0, 0, 0, 1913, 79, 1, 0, 0, 0, 1914, 1915, 3, 98, 49, 0, 1915, 81, 1, 0, 0, 0, 1916, 1917, 3, 98, 49, 0, 1917, 83, 1, 0, 0, 0, 1918, 1919, 3, 256, 128, 0, 1919, 85, 1, 0, 0, 0, 1920, 1921, 3, 256, 128, 0, 1921, 87, 1, 0, 0, 0, 1922, 1923, 3, 258, 129, 0, 1923, 89, 1, 0, 0, 0, 1924, 1925, 3, 258, 129, 0, 1925, 91, 1, 0, 0, 0, 1926, 1929, 3, 250, 125, 0, 1927, 1929, 4, 46, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1927, 1, 0, 0, 0, 1929, 93, 1, 0, 0, 0, 1930, 1935, 3, 92, 46, 0, 1931, 1932, 5, 4, 0, 0, 1932, 1934, 3, 92, 46, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 95, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1939, 3, 384, 192, 0, 1939, 97, 1, 0, 0, 0, 1940, 1941, 5, 136, 0, 0, 1941, 1942, 5, 2, 0, 0, 1942, 1943, 3, 280, 140, 0, 1943, 1944, 5, 3, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1947, 3, 250, 125, 0, 1946, 1940, 1, 0, 0, 0, 1946, 1945, 1, 0, 0, 0, 1947, 99, 1, 0, 0, 0, 1948, 1949, 5, 209, 0, 0, 1949, 1950, 5, 31, 0, 0, 1950, 1955, 3, 108, 54, 0, 1951, 1952, 5, 4, 0, 0, 1952, 1954, 3, 108, 54, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1948, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1970, 1, 0, 0, 0, 1960, 1961, 5, 44, 0, 0, 1961, 1962, 5, 31, 0, 0, 1962, 1967, 3, 280, 140, 0, 1963, 1964, 5, 4, 0, 0, 1964, 1966, 3, 280, 140, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1960, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1982, 1, 0, 0, 0, 1972, 1973, 5, 93, 0, 0, 1973, 1974, 5, 31, 0, 0, 1974, 1979, 3, 280, 140, 0, 1975, 1976, 5, 4, 0, 0, 1976, 1978, 3, 280, 140, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1972, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1994, 1, 0, 0, 0, 1984, 1985, 5, 278, 0, 0, 1985, 1986, 5, 31, 0, 0, 1986, 1991, 3, 108, 54, 0, 1987, 1988, 5, 4, 0, 0, 1988, 1990, 3, 108, 54, 0, 1989, 1987, 1, 0, 0, 0, 1990, 1993, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1994, 1984, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1997, 1, 0, 0, 0, 1996, 1998, 3, 364, 182, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2004, 1, 0, 0, 0, 1999, 2002, 5, 165, 0, 0, 2000, 2003, 5, 10, 0, 0, 2001, 2003, 3, 280, 140, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2001, 1, 0, 0, 0, 2003, 2005, 1, 0, 0, 0, 2004, 1999, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2008, 1, 0, 0, 0, 2006, 2007, 5, 202, 0, 0, 2007, 2009, 3, 280, 140, 0, 2008, 2006, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 101, 1, 0, 0, 0, 2010, 2011, 3, 28, 14, 0, 2011, 2012, 3, 112, 56, 0, 2012, 103, 1, 0, 0, 0, 2013, 2014, 6, 52, -1, 0, 2014, 2015, 3, 106, 53, 0, 2015, 2036, 1, 0, 0, 0, 2016, 2017, 10, 3, 0, 0, 2017, 2019, 7, 13, 0, 0, 2018, 2020, 3, 196, 98, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2035, 3, 104, 52, 4, 2022, 2023, 10, 2, 0, 0, 2023, 2025, 5, 148, 0, 0, 2024, 2026, 3, 196, 98, 0, 2025, 2024, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2035, 3, 104, 52, 3, 2028, 2029, 10, 1, 0, 0, 2029, 2031, 7, 14, 0, 0, 2030, 2032, 3, 196, 98, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2035, 3, 104, 52, 2, 2034, 2016, 1, 0, 0, 0, 2034, 2022, 1, 0, 0, 0, 2034, 2028, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 105, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2039, 2059, 3, 114, 57, 0, 2040, 2059, 3, 110, 55, 0, 2041, 2042, 5, 293, 0, 0, 2042, 2059, 3, 86, 43, 0, 2043, 2044, 5, 333, 0, 0, 2044, 2049, 3, 280, 140, 0, 2045, 2046, 5, 4, 0, 0, 2046, 2048, 3, 280, 140, 0, 2047, 2045, 1, 0, 0, 0, 2048, 2051, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2052, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2052, 2053, 3, 244, 122, 0, 2053, 2059, 1, 0, 0, 0, 2054, 2055, 5, 2, 0, 0, 2055, 2056, 3, 26, 13, 0, 2056, 2057, 5, 3, 0, 0, 2057, 2059, 1, 0, 0, 0, 2058, 2039, 1, 0, 0, 0, 2058, 2040, 1, 0, 0, 0, 2058, 2041, 1, 0, 0, 0, 2058, 2043, 1, 0, 0, 0, 2058, 2054, 1, 0, 0, 0, 2059, 107, 1, 0, 0, 0, 2060, 2063, 3, 92, 46, 0, 2061, 2063, 3, 280, 140, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2061, 1, 0, 0, 0, 2063, 2065, 1, 0, 0, 0, 2064, 2066, 7, 15, 0, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2068, 5, 199, 0, 0, 2068, 2070, 7, 16, 0, 0, 2069, 2067, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 109, 1, 0, 0, 0, 2071, 2073, 3, 146, 73, 0, 2072, 2074, 3, 112, 56, 0, 2073, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 111, 1, 0, 0, 0, 2077, 2079, 3, 116, 58, 0, 2078, 2080, 3, 138, 69, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 3, 100, 50, 0, 2082, 2105, 1, 0, 0, 0, 2083, 2087, 3, 118, 59, 0, 2084, 2086, 3, 194, 97, 0, 2085, 2084, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2090, 2092, 3, 138, 69, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2095, 3, 152, 76, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2098, 3, 140, 70, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2101, 3, 364, 182, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 3, 100, 50, 0, 2103, 2105, 1, 0, 0, 0, 2104, 2077, 1, 0, 0, 0, 2104, 2083, 1, 0, 0, 0, 2105, 113, 1, 0, 0, 0, 2106, 2108, 3, 116, 58, 0, 2107, 2109, 3, 146, 73, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2112, 3, 194, 97, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2118, 3, 138, 69, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 152, 76, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 140, 70, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 364, 182, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2151, 1, 0, 0, 0, 2128, 2130, 3, 118, 59, 0, 2129, 2131, 3, 146, 73, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2135, 1, 0, 0, 0, 2132, 2134, 3, 194, 97, 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, 2139, 1, 0, 0, 0, 2137, 2135, 1, 0, 0, 0, 2138, 2140, 3, 138, 69, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2143, 3, 152, 76, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 140, 70, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 1, 0, 0, 0, 2147, 2149, 3, 364, 182, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2106, 1, 0, 0, 0, 2150, 2128, 1, 0, 0, 0, 2151, 115, 1, 0, 0, 0, 2152, 2153, 5, 263, 0, 0, 2153, 2154, 5, 314, 0, 0, 2154, 2156, 5, 2, 0, 0, 2155, 2157, 3, 196, 98, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2159, 3, 286, 143, 0, 2159, 2160, 5, 3, 0, 0, 2160, 2172, 1, 0, 0, 0, 2161, 2163, 5, 177, 0, 0, 2162, 2164, 3, 196, 98, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2172, 3, 286, 143, 0, 2166, 2168, 5, 238, 0, 0, 2167, 2169, 3, 196, 98, 0, 2168, 2167, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 3, 286, 143, 0, 2171, 2152, 1, 0, 0, 0, 2171, 2161, 1, 0, 0, 0, 2171, 2166, 1, 0, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2175, 3, 246, 123, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2177, 5, 236, 0, 0, 2177, 2179, 3, 400, 200, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 5, 332, 0, 0, 2181, 2194, 3, 400, 200, 0, 2182, 2192, 5, 20, 0, 0, 2183, 2193, 3, 214, 107, 0, 2184, 2193, 3, 346, 173, 0, 2185, 2188, 5, 2, 0, 0, 2186, 2189, 3, 214, 107, 0, 2187, 2189, 3, 346, 173, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 5, 3, 0, 0, 2191, 2193, 1, 0, 0, 0, 2192, 2183, 1, 0, 0, 0, 2192, 2184, 1, 0, 0, 0, 2192, 2185, 1, 0, 0, 0, 2193, 2195, 1, 0, 0, 0, 2194, 2182, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2197, 1, 0, 0, 0, 2196, 2198, 3, 246, 123, 0, 2197, 2196, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2201, 1, 0, 0, 0, 2199, 2200, 5, 235, 0, 0, 2200, 2202, 3, 400, 200, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 117, 1, 0, 0, 0, 2203, 2207, 5, 263, 0, 0, 2204, 2206, 3, 142, 71, 0, 2205, 2204, 1, 0, 0, 0, 2206, 2209, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2211, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2212, 3, 196, 98, 0, 2211, 2210, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 2214, 3, 270, 135, 0, 2214, 119, 1, 0, 0, 0, 2215, 2216, 5, 269, 0, 0, 2216, 2217, 3, 134, 67, 0, 2217, 121, 1, 0, 0, 0, 2218, 2219, 5, 343, 0, 0, 2219, 2222, 5, 178, 0, 0, 2220, 2221, 5, 14, 0, 0, 2221, 2223, 3, 288, 144, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 5, 300, 0, 0, 2225, 2226, 3, 128, 64, 0, 2226, 123, 1, 0, 0, 0, 2227, 2228, 5, 343, 0, 0, 2228, 2229, 5, 197, 0, 0, 2229, 2232, 5, 178, 0, 0, 2230, 2231, 5, 31, 0, 0, 2231, 2233, 5, 296, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2235, 5, 14, 0, 0, 2235, 2237, 3, 288, 144, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 5, 300, 0, 0, 2239, 2240, 3, 130, 65, 0, 2240, 125, 1, 0, 0, 0, 2241, 2242, 5, 343, 0, 0, 2242, 2243, 5, 197, 0, 0, 2243, 2244, 5, 178, 0, 0, 2244, 2245, 5, 31, 0, 0, 2245, 2248, 5, 280, 0, 0, 2246, 2247, 5, 14, 0, 0, 2247, 2249, 3, 288, 144, 0, 2248, 2246, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 2251, 5, 300, 0, 0, 2251, 2252, 3, 132, 66, 0, 2252, 127, 1, 0, 0, 0, 2253, 2261, 5, 84, 0, 0, 2254, 2255, 5, 329, 0, 0, 2255, 2256, 5, 269, 0, 0, 2256, 2261, 5, 363, 0, 0, 2257, 2258, 5, 329, 0, 0, 2258, 2259, 5, 269, 0, 0, 2259, 2261, 3, 134, 67, 0, 2260, 2253, 1, 0, 0, 0, 2260, 2254, 1, 0, 0, 0, 2260, 2257, 1, 0, 0, 0, 2261, 129, 1, 0, 0, 0, 2262, 2263, 5, 147, 0, 0, 2263, 2281, 5, 363, 0, 0, 2264, 2265, 5, 147, 0, 0, 2265, 2266, 5, 2, 0, 0, 2266, 2267, 3, 248, 124, 0, 2267, 2268, 5, 3, 0, 0, 2268, 2269, 5, 333, 0, 0, 2269, 2270, 5, 2, 0, 0, 2270, 2275, 3, 280, 140, 0, 2271, 2272, 5, 4, 0, 0, 2272, 2274, 3, 280, 140, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2277, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2275, 1, 0, 0, 0, 2278, 2279, 5, 3, 0, 0, 2279, 2281, 1, 0, 0, 0, 2280, 2262, 1, 0, 0, 0, 2280, 2264, 1, 0, 0, 0, 2281, 131, 1, 0, 0, 0, 2282, 2287, 5, 84, 0, 0, 2283, 2284, 5, 329, 0, 0, 2284, 2285, 5, 269, 0, 0, 2285, 2287, 3, 134, 67, 0, 2286, 2282, 1, 0, 0, 0, 2286, 2283, 1, 0, 0, 0, 2287, 133, 1, 0, 0, 0, 2288, 2293, 3, 136, 68, 0, 2289, 2290, 5, 4, 0, 0, 2290, 2292, 3, 136, 68, 0, 2291, 2289, 1, 0, 0, 0, 2292, 2295, 1, 0, 0, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 135, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2297, 3, 250, 125, 0, 2297, 2298, 5, 352, 0, 0, 2298, 2299, 3, 280, 140, 0, 2299, 137, 1, 0, 0, 0, 2300, 2301, 5, 344, 0, 0, 2301, 2302, 3, 288, 144, 0, 2302, 139, 1, 0, 0, 0, 2303, 2304, 5, 132, 0, 0, 2304, 2305, 3, 288, 144, 0, 2305, 141, 1, 0, 0, 0, 2306, 2307, 5, 374, 0, 0, 2307, 2314, 3, 144, 72, 0, 2308, 2310, 5, 4, 0, 0, 2309, 2308, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2313, 3, 144, 72, 0, 2312, 2309, 1, 0, 0, 0, 2313, 2316, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2318, 5, 375, 0, 0, 2318, 143, 1, 0, 0, 0, 2319, 2333, 3, 388, 194, 0, 2320, 2321, 3, 388, 194, 0, 2321, 2322, 5, 2, 0, 0, 2322, 2327, 3, 296, 148, 0, 2323, 2324, 5, 4, 0, 0, 2324, 2326, 3, 296, 148, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2329, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2330, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2330, 2331, 5, 3, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2319, 1, 0, 0, 0, 2332, 2320, 1, 0, 0, 0, 2333, 145, 1, 0, 0, 0, 2334, 2335, 5, 123, 0, 0, 2335, 2340, 3, 198, 99, 0, 2336, 2337, 5, 4, 0, 0, 2337, 2339, 3, 198, 99, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2342, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2346, 1, 0, 0, 0, 2342, 2340, 1, 0, 0, 0, 2343, 2345, 3, 194, 97, 0, 2344, 2343, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2351, 3, 162, 81, 0, 2350, 2349, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2353, 1, 0, 0, 0, 2352, 2354, 3, 168, 84, 0, 2353, 2352, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 147, 1, 0, 0, 0, 2355, 2356, 7, 17, 0, 0, 2356, 149, 1, 0, 0, 0, 2357, 2359, 5, 119, 0, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2361, 7, 18, 0, 0, 2361, 2362, 5, 20, 0, 0, 2362, 2363, 5, 201, 0, 0, 2363, 2372, 3, 404, 202, 0, 2364, 2366, 5, 119, 0, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 7, 19, 0, 0, 2368, 2369, 5, 20, 0, 0, 2369, 2370, 5, 201, 0, 0, 2370, 2372, 3, 292, 146, 0, 2371, 2358, 1, 0, 0, 0, 2371, 2365, 1, 0, 0, 0, 2372, 151, 1, 0, 0, 0, 2373, 2374, 5, 130, 0, 0, 2374, 2375, 5, 31, 0, 0, 2375, 2380, 3, 154, 77, 0, 2376, 2377, 5, 4, 0, 0, 2377, 2379, 3, 154, 77, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2382, 1, 0, 0, 0, 2380, 2378, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2413, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2384, 5, 130, 0, 0, 2384, 2385, 5, 31, 0, 0, 2385, 2390, 3, 280, 140, 0, 2386, 2387, 5, 4, 0, 0, 2387, 2389, 3, 280, 140, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2410, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 5, 346, 0, 0, 2394, 2411, 5, 256, 0, 0, 2395, 2396, 5, 346, 0, 0, 2396, 2411, 5, 61, 0, 0, 2397, 2398, 5, 131, 0, 0, 2398, 2399, 5, 271, 0, 0, 2399, 2400, 5, 2, 0, 0, 2400, 2405, 3, 160, 80, 0, 2401, 2402, 5, 4, 0, 0, 2402, 2404, 3, 160, 80, 0, 2403, 2401, 1, 0, 0, 0, 2404, 2407, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2408, 1, 0, 0, 0, 2407, 2405, 1, 0, 0, 0, 2408, 2409, 5, 3, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2393, 1, 0, 0, 0, 2410, 2395, 1, 0, 0, 0, 2410, 2397, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2373, 1, 0, 0, 0, 2412, 2383, 1, 0, 0, 0, 2413, 153, 1, 0, 0, 0, 2414, 2418, 3, 92, 46, 0, 2415, 2418, 3, 156, 78, 0, 2416, 2418, 3, 280, 140, 0, 2417, 2414, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2416, 1, 0, 0, 0, 2418, 155, 1, 0, 0, 0, 2419, 2420, 7, 20, 0, 0, 2420, 2421, 5, 2, 0, 0, 2421, 2426, 3, 160, 80, 0, 2422, 2423, 5, 4, 0, 0, 2423, 2425, 3, 160, 80, 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, 3, 0, 0, 2430, 2445, 1, 0, 0, 0, 2431, 2432, 5, 131, 0, 0, 2432, 2433, 5, 271, 0, 0, 2433, 2434, 5, 2, 0, 0, 2434, 2439, 3, 158, 79, 0, 2435, 2436, 5, 4, 0, 0, 2436, 2438, 3, 158, 79, 0, 2437, 2435, 1, 0, 0, 0, 2438, 2441, 1, 0, 0, 0, 2439, 2437, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2442, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2442, 2443, 5, 3, 0, 0, 2443, 2445, 1, 0, 0, 0, 2444, 2419, 1, 0, 0, 0, 2444, 2431, 1, 0, 0, 0, 2445, 157, 1, 0, 0, 0, 2446, 2449, 3, 156, 78, 0, 2447, 2449, 3, 160, 80, 0, 2448, 2446, 1, 0, 0, 0, 2448, 2447, 1, 0, 0, 0, 2449, 159, 1, 0, 0, 0, 2450, 2471, 3, 92, 46, 0, 2451, 2471, 3, 280, 140, 0, 2452, 2467, 5, 2, 0, 0, 2453, 2456, 3, 92, 46, 0, 2454, 2456, 3, 280, 140, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2454, 1, 0, 0, 0, 2456, 2464, 1, 0, 0, 0, 2457, 2460, 5, 4, 0, 0, 2458, 2461, 3, 92, 46, 0, 2459, 2461, 3, 280, 140, 0, 2460, 2458, 1, 0, 0, 0, 2460, 2459, 1, 0, 0, 0, 2461, 2463, 1, 0, 0, 0, 2462, 2457, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2455, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 5, 3, 0, 0, 2470, 2450, 1, 0, 0, 0, 2470, 2451, 1, 0, 0, 0, 2470, 2452, 1, 0, 0, 0, 2471, 161, 1, 0, 0, 0, 2472, 2473, 5, 223, 0, 0, 2473, 2474, 5, 2, 0, 0, 2474, 2475, 3, 268, 134, 0, 2475, 2476, 5, 119, 0, 0, 2476, 2477, 3, 164, 82, 0, 2477, 2478, 5, 140, 0, 0, 2478, 2479, 5, 2, 0, 0, 2479, 2484, 3, 166, 83, 0, 2480, 2481, 5, 4, 0, 0, 2481, 2483, 3, 166, 83, 0, 2482, 2480, 1, 0, 0, 0, 2483, 2486, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2487, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2487, 2488, 5, 3, 0, 0, 2488, 2489, 5, 3, 0, 0, 2489, 163, 1, 0, 0, 0, 2490, 2503, 3, 388, 194, 0, 2491, 2492, 5, 2, 0, 0, 2492, 2497, 3, 388, 194, 0, 2493, 2494, 5, 4, 0, 0, 2494, 2496, 3, 388, 194, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2499, 1, 0, 0, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2500, 1, 0, 0, 0, 2499, 2497, 1, 0, 0, 0, 2500, 2501, 5, 3, 0, 0, 2501, 2503, 1, 0, 0, 0, 2502, 2490, 1, 0, 0, 0, 2502, 2491, 1, 0, 0, 0, 2503, 165, 1, 0, 0, 0, 2504, 2509, 3, 280, 140, 0, 2505, 2507, 5, 20, 0, 0, 2506, 2505, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2510, 3, 388, 194, 0, 2509, 2506, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 167, 1, 0, 0, 0, 2511, 2513, 5, 327, 0, 0, 2512, 2514, 3, 170, 85, 0, 2513, 2512, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 5, 2, 0, 0, 2516, 2517, 3, 172, 86, 0, 2517, 2522, 5, 3, 0, 0, 2518, 2520, 5, 20, 0, 0, 2519, 2518, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 3, 388, 194, 0, 2522, 2519, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 169, 1, 0, 0, 0, 2524, 2525, 7, 21, 0, 0, 2525, 2526, 5, 199, 0, 0, 2526, 171, 1, 0, 0, 0, 2527, 2530, 3, 174, 87, 0, 2528, 2530, 3, 176, 88, 0, 2529, 2527, 1, 0, 0, 0, 2529, 2528, 1, 0, 0, 0, 2530, 173, 1, 0, 0, 0, 2531, 2532, 3, 180, 90, 0, 2532, 2533, 5, 119, 0, 0, 2533, 2534, 3, 182, 91, 0, 2534, 2535, 5, 140, 0, 0, 2535, 2536, 5, 2, 0, 0, 2536, 2541, 3, 184, 92, 0, 2537, 2538, 5, 4, 0, 0, 2538, 2540, 3, 184, 92, 0, 2539, 2537, 1, 0, 0, 0, 2540, 2543, 1, 0, 0, 0, 2541, 2539, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2544, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2544, 2545, 5, 3, 0, 0, 2545, 175, 1, 0, 0, 0, 2546, 2547, 5, 2, 0, 0, 2547, 2552, 3, 180, 90, 0, 2548, 2549, 5, 4, 0, 0, 2549, 2551, 3, 180, 90, 0, 2550, 2548, 1, 0, 0, 0, 2551, 2554, 1, 0, 0, 0, 2552, 2550, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2555, 2556, 5, 3, 0, 0, 2556, 2557, 5, 119, 0, 0, 2557, 2558, 3, 182, 91, 0, 2558, 2559, 5, 140, 0, 0, 2559, 2560, 5, 2, 0, 0, 2560, 2565, 3, 178, 89, 0, 2561, 2562, 5, 4, 0, 0, 2562, 2564, 3, 178, 89, 0, 2563, 2561, 1, 0, 0, 0, 2564, 2567, 1, 0, 0, 0, 2565, 2563, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2565, 1, 0, 0, 0, 2568, 2569, 5, 3, 0, 0, 2569, 177, 1, 0, 0, 0, 2570, 2571, 5, 2, 0, 0, 2571, 2576, 3, 186, 93, 0, 2572, 2573, 5, 4, 0, 0, 2573, 2575, 3, 186, 93, 0, 2574, 2572, 1, 0, 0, 0, 2575, 2578, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2579, 1, 0, 0, 0, 2578, 2576, 1, 0, 0, 0, 2579, 2581, 5, 3, 0, 0, 2580, 2582, 3, 188, 94, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 179, 1, 0, 0, 0, 2583, 2584, 3, 388, 194, 0, 2584, 181, 1, 0, 0, 0, 2585, 2586, 3, 388, 194, 0, 2586, 183, 1, 0, 0, 0, 2587, 2589, 3, 186, 93, 0, 2588, 2590, 3, 188, 94, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 185, 1, 0, 0, 0, 2591, 2592, 3, 250, 125, 0, 2592, 187, 1, 0, 0, 0, 2593, 2595, 5, 20, 0, 0, 2594, 2593, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 3, 388, 194, 0, 2597, 189, 1, 0, 0, 0, 2598, 2599, 5, 137, 0, 0, 2599, 2600, 5, 197, 0, 0, 2600, 2601, 5, 105, 0, 0, 2601, 191, 1, 0, 0, 0, 2602, 2603, 5, 137, 0, 0, 2603, 2604, 5, 105, 0, 0, 2604, 193, 1, 0, 0, 0, 2605, 2606, 5, 158, 0, 0, 2606, 2608, 5, 338, 0, 0, 2607, 2609, 5, 211, 0, 0, 2608, 2607, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2611, 3, 90, 45, 0, 2611, 2620, 5, 2, 0, 0, 2612, 2617, 3, 280, 140, 0, 2613, 2614, 5, 4, 0, 0, 2614, 2616, 3, 280, 140, 0, 2615, 2613, 1, 0, 0, 0, 2616, 2619, 1, 0, 0, 0, 2617, 2615, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2621, 1, 0, 0, 0, 2619, 2617, 1, 0, 0, 0, 2620, 2612, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2623, 5, 3, 0, 0, 2623, 2635, 3, 244, 122, 0, 2624, 2626, 5, 20, 0, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2632, 3, 388, 194, 0, 2628, 2629, 5, 4, 0, 0, 2629, 2631, 3, 388, 194, 0, 2630, 2628, 1, 0, 0, 0, 2631, 2634, 1, 0, 0, 0, 2632, 2630, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2636, 1, 0, 0, 0, 2634, 2632, 1, 0, 0, 0, 2635, 2625, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 195, 1, 0, 0, 0, 2637, 2638, 7, 22, 0, 0, 2638, 197, 1, 0, 0, 0, 2639, 2651, 3, 86, 43, 0, 2640, 2642, 5, 158, 0, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2647, 3, 224, 112, 0, 2644, 2646, 3, 200, 100, 0, 2645, 2644, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2639, 1, 0, 0, 0, 2650, 2641, 1, 0, 0, 0, 2651, 199, 1, 0, 0, 0, 2652, 2656, 3, 202, 101, 0, 2653, 2656, 3, 162, 81, 0, 2654, 2656, 3, 168, 84, 0, 2655, 2652, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2655, 2654, 1, 0, 0, 0, 2656, 201, 1, 0, 0, 0, 2657, 2658, 3, 204, 102, 0, 2658, 2660, 5, 155, 0, 0, 2659, 2661, 5, 158, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 3, 224, 112, 0, 2663, 2665, 3, 206, 103, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2675, 1, 0, 0, 0, 2666, 2667, 5, 194, 0, 0, 2667, 2668, 3, 204, 102, 0, 2668, 2670, 5, 155, 0, 0, 2669, 2671, 5, 158, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2673, 3, 224, 112, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2657, 1, 0, 0, 0, 2674, 2666, 1, 0, 0, 0, 2675, 203, 1, 0, 0, 0, 2676, 2678, 5, 144, 0, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2701, 1, 0, 0, 0, 2679, 2701, 5, 60, 0, 0, 2680, 2682, 5, 161, 0, 0, 2681, 2683, 5, 211, 0, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2701, 1, 0, 0, 0, 2684, 2686, 5, 161, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2701, 5, 264, 0, 0, 2688, 2690, 5, 250, 0, 0, 2689, 2691, 5, 211, 0, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2701, 1, 0, 0, 0, 2692, 2694, 5, 124, 0, 0, 2693, 2695, 5, 211, 0, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2701, 1, 0, 0, 0, 2696, 2698, 5, 161, 0, 0, 2697, 2696, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2701, 5, 15, 0, 0, 2700, 2677, 1, 0, 0, 0, 2700, 2679, 1, 0, 0, 0, 2700, 2680, 1, 0, 0, 0, 2700, 2685, 1, 0, 0, 0, 2700, 2688, 1, 0, 0, 0, 2700, 2692, 1, 0, 0, 0, 2700, 2697, 1, 0, 0, 0, 2701, 205, 1, 0, 0, 0, 2702, 2703, 5, 203, 0, 0, 2703, 2707, 3, 288, 144, 0, 2704, 2705, 5, 332, 0, 0, 2705, 2707, 3, 212, 106, 0, 2706, 2702, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2707, 207, 1, 0, 0, 0, 2708, 2709, 5, 295, 0, 0, 2709, 2711, 5, 2, 0, 0, 2710, 2712, 3, 210, 105, 0, 2711, 2710, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2718, 5, 3, 0, 0, 2714, 2715, 5, 243, 0, 0, 2715, 2716, 5, 2, 0, 0, 2716, 2717, 5, 382, 0, 0, 2717, 2719, 5, 3, 0, 0, 2718, 2714, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 209, 1, 0, 0, 0, 2720, 2722, 5, 362, 0, 0, 2721, 2720, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2724, 7, 23, 0, 0, 2724, 2745, 5, 222, 0, 0, 2725, 2726, 3, 280, 140, 0, 2726, 2727, 5, 258, 0, 0, 2727, 2745, 1, 0, 0, 0, 2728, 2729, 5, 29, 0, 0, 2729, 2730, 5, 382, 0, 0, 2730, 2731, 5, 210, 0, 0, 2731, 2732, 5, 201, 0, 0, 2732, 2741, 5, 382, 0, 0, 2733, 2739, 5, 203, 0, 0, 2734, 2740, 3, 388, 194, 0, 2735, 2736, 3, 382, 191, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2738, 5, 3, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2734, 1, 0, 0, 0, 2739, 2735, 1, 0, 0, 0, 2740, 2742, 1, 0, 0, 0, 2741, 2733, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2745, 1, 0, 0, 0, 2743, 2745, 3, 280, 140, 0, 2744, 2721, 1, 0, 0, 0, 2744, 2725, 1, 0, 0, 0, 2744, 2728, 1, 0, 0, 0, 2744, 2743, 1, 0, 0, 0, 2745, 211, 1, 0, 0, 0, 2746, 2747, 5, 2, 0, 0, 2747, 2748, 3, 214, 107, 0, 2748, 2749, 5, 3, 0, 0, 2749, 213, 1, 0, 0, 0, 2750, 2755, 3, 384, 192, 0, 2751, 2752, 5, 4, 0, 0, 2752, 2754, 3, 384, 192, 0, 2753, 2751, 1, 0, 0, 0, 2754, 2757, 1, 0, 0, 0, 2755, 2753, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 215, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2758, 2759, 5, 2, 0, 0, 2759, 2764, 3, 218, 109, 0, 2760, 2761, 5, 4, 0, 0, 2761, 2763, 3, 218, 109, 0, 2762, 2760, 1, 0, 0, 0, 2763, 2766, 1, 0, 0, 0, 2764, 2762, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2767, 1, 0, 0, 0, 2766, 2764, 1, 0, 0, 0, 2767, 2768, 5, 3, 0, 0, 2768, 217, 1, 0, 0, 0, 2769, 2771, 3, 384, 192, 0, 2770, 2772, 7, 15, 0, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 219, 1, 0, 0, 0, 2773, 2774, 5, 2, 0, 0, 2774, 2779, 3, 222, 111, 0, 2775, 2776, 5, 4, 0, 0, 2776, 2778, 3, 222, 111, 0, 2777, 2775, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2782, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2783, 5, 3, 0, 0, 2783, 221, 1, 0, 0, 0, 2784, 2786, 3, 96, 48, 0, 2785, 2787, 3, 24, 12, 0, 2786, 2785, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 223, 1, 0, 0, 0, 2788, 2792, 3, 86, 43, 0, 2789, 2792, 3, 90, 45, 0, 2790, 2792, 3, 98, 49, 0, 2791, 2788, 1, 0, 0, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2790, 1, 0, 0, 0, 2792, 2794, 1, 0, 0, 0, 2793, 2795, 3, 150, 75, 0, 2794, 2793, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 1, 0, 0, 0, 2796, 2798, 3, 208, 104, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2800, 3, 244, 122, 0, 2800, 2822, 1, 0, 0, 0, 2801, 2802, 5, 2, 0, 0, 2802, 2803, 3, 226, 113, 0, 2803, 2805, 5, 3, 0, 0, 2804, 2806, 3, 208, 104, 0, 2805, 2804, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2808, 3, 244, 122, 0, 2808, 2822, 1, 0, 0, 0, 2809, 2810, 5, 2, 0, 0, 2810, 2811, 3, 198, 99, 0, 2811, 2813, 5, 3, 0, 0, 2812, 2814, 3, 208, 104, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2816, 3, 244, 122, 0, 2816, 2822, 1, 0, 0, 0, 2817, 2818, 3, 228, 114, 0, 2818, 2819, 3, 244, 122, 0, 2819, 2822, 1, 0, 0, 0, 2820, 2822, 3, 240, 120, 0, 2821, 2791, 1, 0, 0, 0, 2821, 2801, 1, 0, 0, 0, 2821, 2809, 1, 0, 0, 0, 2821, 2817, 1, 0, 0, 0, 2821, 2820, 1, 0, 0, 0, 2822, 225, 1, 0, 0, 0, 2823, 2824, 3, 26, 13, 0, 2824, 227, 1, 0, 0, 0, 2825, 2826, 5, 333, 0, 0, 2826, 2831, 3, 280, 140, 0, 2827, 2828, 5, 4, 0, 0, 2828, 2830, 3, 280, 140, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2833, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 229, 1, 0, 0, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2835, 5, 293, 0, 0, 2835, 2837, 3, 86, 43, 0, 2836, 2838, 3, 232, 116, 0, 2837, 2836, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2854, 1, 0, 0, 0, 2839, 2840, 5, 293, 0, 0, 2840, 2841, 5, 2, 0, 0, 2841, 2842, 3, 86, 43, 0, 2842, 2844, 5, 3, 0, 0, 2843, 2845, 3, 232, 116, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2854, 1, 0, 0, 0, 2846, 2847, 5, 293, 0, 0, 2847, 2848, 5, 2, 0, 0, 2848, 2849, 3, 26, 13, 0, 2849, 2851, 5, 3, 0, 0, 2850, 2852, 3, 232, 116, 0, 2851, 2850, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2854, 1, 0, 0, 0, 2853, 2834, 1, 0, 0, 0, 2853, 2839, 1, 0, 0, 0, 2853, 2846, 1, 0, 0, 0, 2854, 231, 1, 0, 0, 0, 2855, 2856, 5, 346, 0, 0, 2856, 2857, 5, 274, 0, 0, 2857, 2875, 5, 217, 0, 0, 2858, 2859, 7, 24, 0, 0, 2859, 2872, 5, 31, 0, 0, 2860, 2861, 5, 2, 0, 0, 2861, 2866, 3, 280, 140, 0, 2862, 2863, 5, 4, 0, 0, 2863, 2865, 3, 280, 140, 0, 2864, 2862, 1, 0, 0, 0, 2865, 2868, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2870, 5, 3, 0, 0, 2870, 2873, 1, 0, 0, 0, 2871, 2873, 3, 280, 140, 0, 2872, 2860, 1, 0, 0, 0, 2872, 2871, 1, 0, 0, 0, 2873, 2875, 1, 0, 0, 0, 2874, 2855, 1, 0, 0, 0, 2874, 2858, 1, 0, 0, 0, 2875, 2892, 1, 0, 0, 0, 2876, 2877, 7, 25, 0, 0, 2877, 2890, 5, 31, 0, 0, 2878, 2879, 5, 2, 0, 0, 2879, 2884, 3, 108, 54, 0, 2880, 2881, 5, 4, 0, 0, 2881, 2883, 3, 108, 54, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2886, 1, 0, 0, 0, 2884, 2882, 1, 0, 0, 0, 2884, 2885, 1, 0, 0, 0, 2885, 2887, 1, 0, 0, 0, 2886, 2884, 1, 0, 0, 0, 2887, 2888, 5, 3, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2891, 3, 108, 54, 0, 2890, 2878, 1, 0, 0, 0, 2890, 2889, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2876, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 233, 1, 0, 0, 0, 2894, 2895, 3, 388, 194, 0, 2895, 2896, 5, 373, 0, 0, 2896, 2897, 3, 230, 115, 0, 2897, 235, 1, 0, 0, 0, 2898, 2901, 3, 230, 115, 0, 2899, 2901, 3, 234, 117, 0, 2900, 2898, 1, 0, 0, 0, 2900, 2899, 1, 0, 0, 0, 2901, 237, 1, 0, 0, 0, 2902, 2905, 3, 236, 118, 0, 2903, 2905, 3, 284, 142, 0, 2904, 2902, 1, 0, 0, 0, 2904, 2903, 1, 0, 0, 0, 2905, 239, 1, 0, 0, 0, 2906, 2907, 3, 242, 121, 0, 2907, 2908, 3, 244, 122, 0, 2908, 241, 1, 0, 0, 0, 2909, 2910, 3, 378, 189, 0, 2910, 2919, 5, 2, 0, 0, 2911, 2916, 3, 238, 119, 0, 2912, 2913, 5, 4, 0, 0, 2913, 2915, 3, 238, 119, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2918, 1, 0, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2920, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2911, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2922, 5, 3, 0, 0, 2922, 243, 1, 0, 0, 0, 2923, 2925, 5, 20, 0, 0, 2924, 2923, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 3, 390, 195, 0, 2927, 2929, 3, 212, 106, 0, 2928, 2927, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2931, 1, 0, 0, 0, 2930, 2924, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 245, 1, 0, 0, 0, 2932, 2933, 5, 257, 0, 0, 2933, 2934, 5, 121, 0, 0, 2934, 2935, 5, 266, 0, 0, 2935, 2939, 3, 400, 200, 0, 2936, 2937, 5, 346, 0, 0, 2937, 2938, 5, 267, 0, 0, 2938, 2940, 3, 54, 27, 0, 2939, 2936, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2982, 1, 0, 0, 0, 2941, 2942, 5, 257, 0, 0, 2942, 2943, 5, 121, 0, 0, 2943, 2953, 5, 85, 0, 0, 2944, 2945, 5, 113, 0, 0, 2945, 2946, 5, 299, 0, 0, 2946, 2947, 5, 31, 0, 0, 2947, 2951, 3, 400, 200, 0, 2948, 2949, 5, 101, 0, 0, 2949, 2950, 5, 31, 0, 0, 2950, 2952, 3, 400, 200, 0, 2951, 2948, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2954, 1, 0, 0, 0, 2953, 2944, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2960, 1, 0, 0, 0, 2955, 2956, 5, 48, 0, 0, 2956, 2957, 5, 154, 0, 0, 2957, 2958, 5, 299, 0, 0, 2958, 2959, 5, 31, 0, 0, 2959, 2961, 3, 400, 200, 0, 2960, 2955, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2967, 1, 0, 0, 0, 2962, 2963, 5, 177, 0, 0, 2963, 2964, 5, 156, 0, 0, 2964, 2965, 5, 299, 0, 0, 2965, 2966, 5, 31, 0, 0, 2966, 2968, 3, 400, 200, 0, 2967, 2962, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2973, 1, 0, 0, 0, 2969, 2970, 5, 166, 0, 0, 2970, 2971, 5, 299, 0, 0, 2971, 2972, 5, 31, 0, 0, 2972, 2974, 3, 400, 200, 0, 2973, 2969, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2979, 1, 0, 0, 0, 2975, 2976, 5, 198, 0, 0, 2976, 2977, 5, 83, 0, 0, 2977, 2978, 5, 20, 0, 0, 2978, 2980, 3, 400, 200, 0, 2979, 2975, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2982, 1, 0, 0, 0, 2981, 2932, 1, 0, 0, 0, 2981, 2941, 1, 0, 0, 0, 2982, 247, 1, 0, 0, 0, 2983, 2988, 3, 250, 125, 0, 2984, 2985, 5, 4, 0, 0, 2985, 2987, 3, 250, 125, 0, 2986, 2984, 1, 0, 0, 0, 2987, 2990, 1, 0, 0, 0, 2988, 2986, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 249, 1, 0, 0, 0, 2990, 2988, 1, 0, 0, 0, 2991, 2996, 3, 384, 192, 0, 2992, 2993, 5, 5, 0, 0, 2993, 2995, 3, 384, 192, 0, 2994, 2992, 1, 0, 0, 0, 2995, 2998, 1, 0, 0, 0, 2996, 2994, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 251, 1, 0, 0, 0, 2998, 2996, 1, 0, 0, 0, 2999, 3004, 3, 254, 127, 0, 3000, 3001, 5, 4, 0, 0, 3001, 3003, 3, 254, 127, 0, 3002, 3000, 1, 0, 0, 0, 3003, 3006, 1, 0, 0, 0, 3004, 3002, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 253, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3007, 3010, 3, 250, 125, 0, 3008, 3009, 5, 207, 0, 0, 3009, 3011, 3, 54, 27, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 255, 1, 0, 0, 0, 3012, 3013, 3, 384, 192, 0, 3013, 3014, 5, 5, 0, 0, 3014, 3016, 1, 0, 0, 0, 3015, 3012, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 3, 384, 192, 0, 3018, 257, 1, 0, 0, 0, 3019, 3020, 3, 384, 192, 0, 3020, 3021, 5, 5, 0, 0, 3021, 3023, 1, 0, 0, 0, 3022, 3019, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 3, 384, 192, 0, 3025, 259, 1, 0, 0, 0, 3026, 3027, 3, 92, 46, 0, 3027, 261, 1, 0, 0, 0, 3028, 3029, 3, 280, 140, 0, 3029, 263, 1, 0, 0, 0, 3030, 3031, 3, 382, 191, 0, 3031, 3032, 5, 5, 0, 0, 3032, 3034, 1, 0, 0, 0, 3033, 3030, 1, 0, 0, 0, 3034, 3037, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3035, 1, 0, 0, 0, 3038, 3039, 5, 363, 0, 0, 3039, 265, 1, 0, 0, 0, 3040, 3044, 3, 264, 132, 0, 3041, 3044, 3, 260, 130, 0, 3042, 3044, 3, 262, 131, 0, 3043, 3040, 1, 0, 0, 0, 3043, 3041, 1, 0, 0, 0, 3043, 3042, 1, 0, 0, 0, 3044, 3052, 1, 0, 0, 0, 3045, 3047, 5, 20, 0, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3050, 1, 0, 0, 0, 3048, 3051, 3, 384, 192, 0, 3049, 3051, 3, 212, 106, 0, 3050, 3048, 1, 0, 0, 0, 3050, 3049, 1, 0, 0, 0, 3051, 3053, 1, 0, 0, 0, 3052, 3046, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 267, 1, 0, 0, 0, 3054, 3059, 3, 266, 133, 0, 3055, 3056, 5, 4, 0, 0, 3056, 3058, 3, 266, 133, 0, 3057, 3055, 1, 0, 0, 0, 3058, 3061, 1, 0, 0, 0, 3059, 3057, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 269, 1, 0, 0, 0, 3061, 3059, 1, 0, 0, 0, 3062, 3063, 3, 268, 134, 0, 3063, 271, 1, 0, 0, 0, 3064, 3065, 5, 2, 0, 0, 3065, 3070, 3, 274, 137, 0, 3066, 3067, 5, 4, 0, 0, 3067, 3069, 3, 274, 137, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3073, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 5, 3, 0, 0, 3074, 273, 1, 0, 0, 0, 3075, 3078, 3, 276, 138, 0, 3076, 3078, 3, 348, 174, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3076, 1, 0, 0, 0, 3078, 275, 1, 0, 0, 0, 3079, 3093, 3, 382, 191, 0, 3080, 3081, 3, 388, 194, 0, 3081, 3082, 5, 2, 0, 0, 3082, 3087, 3, 278, 139, 0, 3083, 3084, 5, 4, 0, 0, 3084, 3086, 3, 278, 139, 0, 3085, 3083, 1, 0, 0, 0, 3086, 3089, 1, 0, 0, 0, 3087, 3085, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3090, 3091, 5, 3, 0, 0, 3091, 3093, 1, 0, 0, 0, 3092, 3079, 1, 0, 0, 0, 3092, 3080, 1, 0, 0, 0, 3093, 277, 1, 0, 0, 0, 3094, 3097, 3, 382, 191, 0, 3095, 3097, 3, 300, 150, 0, 3096, 3094, 1, 0, 0, 0, 3096, 3095, 1, 0, 0, 0, 3097, 279, 1, 0, 0, 0, 3098, 3099, 3, 288, 144, 0, 3099, 281, 1, 0, 0, 0, 3100, 3101, 3, 388, 194, 0, 3101, 3102, 5, 373, 0, 0, 3102, 3103, 3, 280, 140, 0, 3103, 283, 1, 0, 0, 0, 3104, 3107, 3, 280, 140, 0, 3105, 3107, 3, 282, 141, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3105, 1, 0, 0, 0, 3107, 285, 1, 0, 0, 0, 3108, 3113, 3, 280, 140, 0, 3109, 3110, 5, 4, 0, 0, 3110, 3112, 3, 280, 140, 0, 3111, 3109, 1, 0, 0, 0, 3112, 3115, 1, 0, 0, 0, 3113, 3111, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 287, 1, 0, 0, 0, 3115, 3113, 1, 0, 0, 0, 3116, 3117, 6, 144, -1, 0, 3117, 3118, 7, 26, 0, 0, 3118, 3129, 3, 288, 144, 5, 3119, 3120, 5, 105, 0, 0, 3120, 3121, 5, 2, 0, 0, 3121, 3122, 3, 26, 13, 0, 3122, 3123, 5, 3, 0, 0, 3123, 3129, 1, 0, 0, 0, 3124, 3126, 3, 292, 146, 0, 3125, 3127, 3, 290, 145, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3129, 1, 0, 0, 0, 3128, 3116, 1, 0, 0, 0, 3128, 3119, 1, 0, 0, 0, 3128, 3124, 1, 0, 0, 0, 3129, 3138, 1, 0, 0, 0, 3130, 3131, 10, 2, 0, 0, 3131, 3132, 5, 14, 0, 0, 3132, 3137, 3, 288, 144, 3, 3133, 3134, 10, 1, 0, 0, 3134, 3135, 5, 208, 0, 0, 3135, 3137, 3, 288, 144, 2, 3136, 3130, 1, 0, 0, 0, 3136, 3133, 1, 0, 0, 0, 3137, 3140, 1, 0, 0, 0, 3138, 3136, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 289, 1, 0, 0, 0, 3140, 3138, 1, 0, 0, 0, 3141, 3143, 5, 197, 0, 0, 3142, 3141, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 5, 24, 0, 0, 3145, 3146, 3, 292, 146, 0, 3146, 3147, 5, 14, 0, 0, 3147, 3148, 3, 292, 146, 0, 3148, 3224, 1, 0, 0, 0, 3149, 3151, 5, 197, 0, 0, 3150, 3149, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 5, 140, 0, 0, 3153, 3154, 5, 2, 0, 0, 3154, 3159, 3, 280, 140, 0, 3155, 3156, 5, 4, 0, 0, 3156, 3158, 3, 280, 140, 0, 3157, 3155, 1, 0, 0, 0, 3158, 3161, 1, 0, 0, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3162, 1, 0, 0, 0, 3161, 3159, 1, 0, 0, 0, 3162, 3163, 5, 3, 0, 0, 3163, 3224, 1, 0, 0, 0, 3164, 3166, 5, 197, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3168, 5, 140, 0, 0, 3168, 3169, 5, 2, 0, 0, 3169, 3170, 3, 26, 13, 0, 3170, 3171, 5, 3, 0, 0, 3171, 3224, 1, 0, 0, 0, 3172, 3174, 5, 197, 0, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 3176, 7, 27, 0, 0, 3176, 3224, 3, 292, 146, 0, 3177, 3179, 5, 197, 0, 0, 3178, 3177, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3181, 7, 28, 0, 0, 3181, 3195, 7, 29, 0, 0, 3182, 3183, 5, 2, 0, 0, 3183, 3196, 5, 3, 0, 0, 3184, 3185, 5, 2, 0, 0, 3185, 3190, 3, 280, 140, 0, 3186, 3187, 5, 4, 0, 0, 3187, 3189, 3, 280, 140, 0, 3188, 3186, 1, 0, 0, 0, 3189, 3192, 1, 0, 0, 0, 3190, 3188, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3193, 1, 0, 0, 0, 3192, 3190, 1, 0, 0, 0, 3193, 3194, 5, 3, 0, 0, 3194, 3196, 1, 0, 0, 0, 3195, 3182, 1, 0, 0, 0, 3195, 3184, 1, 0, 0, 0, 3196, 3224, 1, 0, 0, 0, 3197, 3199, 5, 197, 0, 0, 3198, 3197, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 7, 28, 0, 0, 3201, 3204, 3, 292, 146, 0, 3202, 3203, 5, 100, 0, 0, 3203, 3205, 3, 400, 200, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3224, 1, 0, 0, 0, 3206, 3208, 5, 153, 0, 0, 3207, 3209, 5, 197, 0, 0, 3208, 3207, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3224, 5, 198, 0, 0, 3211, 3213, 5, 153, 0, 0, 3212, 3214, 5, 197, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3224, 7, 30, 0, 0, 3216, 3218, 5, 153, 0, 0, 3217, 3219, 5, 197, 0, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3221, 5, 92, 0, 0, 3221, 3222, 5, 123, 0, 0, 3222, 3224, 3, 292, 146, 0, 3223, 3142, 1, 0, 0, 0, 3223, 3150, 1, 0, 0, 0, 3223, 3165, 1, 0, 0, 0, 3223, 3173, 1, 0, 0, 0, 3223, 3178, 1, 0, 0, 0, 3223, 3198, 1, 0, 0, 0, 3223, 3206, 1, 0, 0, 0, 3223, 3211, 1, 0, 0, 0, 3223, 3216, 1, 0, 0, 0, 3224, 291, 1, 0, 0, 0, 3225, 3226, 6, 146, -1, 0, 3226, 3230, 3, 296, 148, 0, 3227, 3228, 7, 31, 0, 0, 3228, 3230, 3, 292, 146, 7, 3229, 3225, 1, 0, 0, 0, 3229, 3227, 1, 0, 0, 0, 3230, 3252, 1, 0, 0, 0, 3231, 3232, 10, 6, 0, 0, 3232, 3233, 7, 32, 0, 0, 3233, 3251, 3, 292, 146, 7, 3234, 3235, 10, 5, 0, 0, 3235, 3236, 7, 33, 0, 0, 3236, 3251, 3, 292, 146, 6, 3237, 3238, 10, 4, 0, 0, 3238, 3239, 5, 367, 0, 0, 3239, 3251, 3, 292, 146, 5, 3240, 3241, 10, 3, 0, 0, 3241, 3242, 5, 370, 0, 0, 3242, 3251, 3, 292, 146, 4, 3243, 3244, 10, 2, 0, 0, 3244, 3245, 5, 368, 0, 0, 3245, 3251, 3, 292, 146, 3, 3246, 3247, 10, 1, 0, 0, 3247, 3248, 3, 302, 151, 0, 3248, 3249, 3, 292, 146, 2, 3249, 3251, 1, 0, 0, 0, 3250, 3231, 1, 0, 0, 0, 3250, 3234, 1, 0, 0, 0, 3250, 3237, 1, 0, 0, 0, 3250, 3240, 1, 0, 0, 0, 3250, 3243, 1, 0, 0, 0, 3250, 3246, 1, 0, 0, 0, 3251, 3254, 1, 0, 0, 0, 3252, 3250, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 293, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3255, 3256, 7, 34, 0, 0, 3256, 295, 1, 0, 0, 0, 3257, 3258, 6, 148, -1, 0, 3258, 3507, 7, 35, 0, 0, 3259, 3260, 7, 36, 0, 0, 3260, 3263, 5, 2, 0, 0, 3261, 3264, 3, 294, 147, 0, 3262, 3264, 3, 400, 200, 0, 3263, 3261, 1, 0, 0, 0, 3263, 3262, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3266, 5, 4, 0, 0, 3266, 3267, 3, 292, 146, 0, 3267, 3268, 5, 4, 0, 0, 3268, 3269, 3, 292, 146, 0, 3269, 3270, 5, 3, 0, 0, 3270, 3507, 1, 0, 0, 0, 3271, 3272, 7, 37, 0, 0, 3272, 3275, 5, 2, 0, 0, 3273, 3276, 3, 294, 147, 0, 3274, 3276, 3, 400, 200, 0, 3275, 3273, 1, 0, 0, 0, 3275, 3274, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3278, 5, 4, 0, 0, 3278, 3279, 3, 292, 146, 0, 3279, 3280, 5, 4, 0, 0, 3280, 3281, 3, 292, 146, 0, 3281, 3282, 5, 3, 0, 0, 3282, 3507, 1, 0, 0, 0, 3283, 3285, 5, 35, 0, 0, 3284, 3286, 3, 362, 181, 0, 3285, 3284, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3285, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3291, 1, 0, 0, 0, 3289, 3290, 5, 97, 0, 0, 3290, 3292, 3, 280, 140, 0, 3291, 3289, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3294, 5, 99, 0, 0, 3294, 3507, 1, 0, 0, 0, 3295, 3296, 5, 35, 0, 0, 3296, 3298, 3, 280, 140, 0, 3297, 3299, 3, 362, 181, 0, 3298, 3297, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3298, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3304, 1, 0, 0, 0, 3302, 3303, 5, 97, 0, 0, 3303, 3305, 3, 280, 140, 0, 3304, 3302, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3307, 5, 99, 0, 0, 3307, 3507, 1, 0, 0, 0, 3308, 3309, 7, 38, 0, 0, 3309, 3310, 5, 2, 0, 0, 3310, 3311, 3, 280, 140, 0, 3311, 3312, 5, 20, 0, 0, 3312, 3313, 3, 330, 165, 0, 3313, 3314, 5, 3, 0, 0, 3314, 3507, 1, 0, 0, 0, 3315, 3316, 5, 286, 0, 0, 3316, 3325, 5, 2, 0, 0, 3317, 3322, 3, 266, 133, 0, 3318, 3319, 5, 4, 0, 0, 3319, 3321, 3, 266, 133, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3325, 3317, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3507, 5, 3, 0, 0, 3328, 3329, 5, 116, 0, 0, 3329, 3330, 5, 2, 0, 0, 3330, 3333, 3, 280, 140, 0, 3331, 3332, 5, 138, 0, 0, 3332, 3334, 5, 199, 0, 0, 3333, 3331, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3336, 5, 3, 0, 0, 3336, 3507, 1, 0, 0, 0, 3337, 3338, 5, 17, 0, 0, 3338, 3339, 5, 2, 0, 0, 3339, 3342, 3, 280, 140, 0, 3340, 3341, 5, 138, 0, 0, 3341, 3343, 5, 199, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3345, 5, 3, 0, 0, 3345, 3507, 1, 0, 0, 0, 3346, 3347, 5, 157, 0, 0, 3347, 3348, 5, 2, 0, 0, 3348, 3351, 3, 280, 140, 0, 3349, 3350, 5, 138, 0, 0, 3350, 3352, 5, 199, 0, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 5, 3, 0, 0, 3354, 3507, 1, 0, 0, 0, 3355, 3356, 5, 225, 0, 0, 3356, 3357, 5, 2, 0, 0, 3357, 3358, 3, 292, 146, 0, 3358, 3359, 5, 140, 0, 0, 3359, 3360, 3, 292, 146, 0, 3360, 3361, 5, 3, 0, 0, 3361, 3507, 1, 0, 0, 0, 3362, 3507, 3, 300, 150, 0, 3363, 3507, 5, 363, 0, 0, 3364, 3365, 3, 382, 191, 0, 3365, 3366, 5, 5, 0, 0, 3366, 3367, 5, 363, 0, 0, 3367, 3507, 1, 0, 0, 0, 3368, 3369, 5, 2, 0, 0, 3369, 3372, 3, 266, 133, 0, 3370, 3371, 5, 4, 0, 0, 3371, 3373, 3, 266, 133, 0, 3372, 3370, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 5, 3, 0, 0, 3377, 3507, 1, 0, 0, 0, 3378, 3379, 5, 2, 0, 0, 3379, 3380, 3, 26, 13, 0, 3380, 3381, 5, 3, 0, 0, 3381, 3507, 1, 0, 0, 0, 3382, 3383, 5, 136, 0, 0, 3383, 3384, 5, 2, 0, 0, 3384, 3385, 3, 280, 140, 0, 3385, 3386, 5, 3, 0, 0, 3386, 3507, 1, 0, 0, 0, 3387, 3388, 3, 378, 189, 0, 3388, 3400, 5, 2, 0, 0, 3389, 3391, 3, 196, 98, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3397, 3, 284, 142, 0, 3393, 3394, 5, 4, 0, 0, 3394, 3396, 3, 284, 142, 0, 3395, 3393, 1, 0, 0, 0, 3396, 3399, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3401, 1, 0, 0, 0, 3399, 3397, 1, 0, 0, 0, 3400, 3390, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3409, 5, 3, 0, 0, 3403, 3404, 5, 114, 0, 0, 3404, 3405, 5, 2, 0, 0, 3405, 3406, 5, 344, 0, 0, 3406, 3407, 3, 288, 144, 0, 3407, 3408, 5, 3, 0, 0, 3408, 3410, 1, 0, 0, 0, 3409, 3403, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3413, 1, 0, 0, 0, 3411, 3412, 7, 39, 0, 0, 3412, 3414, 5, 199, 0, 0, 3413, 3411, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3416, 5, 213, 0, 0, 3416, 3418, 3, 370, 185, 0, 3417, 3415, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3507, 1, 0, 0, 0, 3419, 3420, 3, 388, 194, 0, 3420, 3421, 5, 372, 0, 0, 3421, 3422, 3, 280, 140, 0, 3422, 3507, 1, 0, 0, 0, 3423, 3424, 5, 2, 0, 0, 3424, 3427, 3, 388, 194, 0, 3425, 3426, 5, 4, 0, 0, 3426, 3428, 3, 388, 194, 0, 3427, 3425, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 5, 3, 0, 0, 3432, 3433, 5, 372, 0, 0, 3433, 3434, 3, 280, 140, 0, 3434, 3507, 1, 0, 0, 0, 3435, 3507, 3, 388, 194, 0, 3436, 3437, 5, 2, 0, 0, 3437, 3438, 3, 280, 140, 0, 3438, 3439, 5, 3, 0, 0, 3439, 3507, 1, 0, 0, 0, 3440, 3441, 5, 110, 0, 0, 3441, 3442, 5, 2, 0, 0, 3442, 3443, 3, 388, 194, 0, 3443, 3444, 5, 123, 0, 0, 3444, 3445, 3, 292, 146, 0, 3445, 3446, 5, 3, 0, 0, 3446, 3507, 1, 0, 0, 0, 3447, 3448, 7, 40, 0, 0, 3448, 3449, 5, 2, 0, 0, 3449, 3450, 3, 292, 146, 0, 3450, 3451, 7, 41, 0, 0, 3451, 3454, 3, 292, 146, 0, 3452, 3453, 7, 42, 0, 0, 3453, 3455, 3, 292, 146, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3457, 5, 3, 0, 0, 3457, 3507, 1, 0, 0, 0, 3458, 3459, 5, 315, 0, 0, 3459, 3461, 5, 2, 0, 0, 3460, 3462, 7, 43, 0, 0, 3461, 3460, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3465, 3, 292, 146, 0, 3464, 3463, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3467, 5, 123, 0, 0, 3467, 3468, 3, 292, 146, 0, 3468, 3469, 5, 3, 0, 0, 3469, 3507, 1, 0, 0, 0, 3470, 3471, 5, 215, 0, 0, 3471, 3472, 5, 2, 0, 0, 3472, 3473, 3, 292, 146, 0, 3473, 3474, 5, 224, 0, 0, 3474, 3475, 3, 292, 146, 0, 3475, 3476, 5, 123, 0, 0, 3476, 3479, 3, 292, 146, 0, 3477, 3478, 5, 119, 0, 0, 3478, 3480, 3, 292, 146, 0, 3479, 3477, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 5, 3, 0, 0, 3482, 3507, 1, 0, 0, 0, 3483, 3484, 7, 44, 0, 0, 3484, 3485, 5, 2, 0, 0, 3485, 3486, 3, 292, 146, 0, 3486, 3487, 5, 3, 0, 0, 3487, 3488, 5, 347, 0, 0, 3488, 3489, 5, 130, 0, 0, 3489, 3490, 5, 2, 0, 0, 3490, 3491, 5, 209, 0, 0, 3491, 3492, 5, 31, 0, 0, 3492, 3493, 3, 108, 54, 0, 3493, 3500, 5, 3, 0, 0, 3494, 3495, 5, 114, 0, 0, 3495, 3496, 5, 2, 0, 0, 3496, 3497, 5, 344, 0, 0, 3497, 3498, 3, 288, 144, 0, 3498, 3499, 5, 3, 0, 0, 3499, 3501, 1, 0, 0, 0, 3500, 3494, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3504, 1, 0, 0, 0, 3502, 3503, 5, 213, 0, 0, 3503, 3505, 3, 370, 185, 0, 3504, 3502, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3507, 1, 0, 0, 0, 3506, 3257, 1, 0, 0, 0, 3506, 3259, 1, 0, 0, 0, 3506, 3271, 1, 0, 0, 0, 3506, 3283, 1, 0, 0, 0, 3506, 3295, 1, 0, 0, 0, 3506, 3308, 1, 0, 0, 0, 3506, 3315, 1, 0, 0, 0, 3506, 3328, 1, 0, 0, 0, 3506, 3337, 1, 0, 0, 0, 3506, 3346, 1, 0, 0, 0, 3506, 3355, 1, 0, 0, 0, 3506, 3362, 1, 0, 0, 0, 3506, 3363, 1, 0, 0, 0, 3506, 3364, 1, 0, 0, 0, 3506, 3368, 1, 0, 0, 0, 3506, 3378, 1, 0, 0, 0, 3506, 3382, 1, 0, 0, 0, 3506, 3387, 1, 0, 0, 0, 3506, 3419, 1, 0, 0, 0, 3506, 3423, 1, 0, 0, 0, 3506, 3435, 1, 0, 0, 0, 3506, 3436, 1, 0, 0, 0, 3506, 3440, 1, 0, 0, 0, 3506, 3447, 1, 0, 0, 0, 3506, 3458, 1, 0, 0, 0, 3506, 3470, 1, 0, 0, 0, 3506, 3483, 1, 0, 0, 0, 3507, 3518, 1, 0, 0, 0, 3508, 3509, 10, 9, 0, 0, 3509, 3510, 5, 6, 0, 0, 3510, 3511, 3, 292, 146, 0, 3511, 3512, 5, 7, 0, 0, 3512, 3517, 1, 0, 0, 0, 3513, 3514, 10, 7, 0, 0, 3514, 3515, 5, 5, 0, 0, 3515, 3517, 3, 388, 194, 0, 3516, 3508, 1, 0, 0, 0, 3516, 3513, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 297, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3529, 5, 71, 0, 0, 3522, 3529, 5, 303, 0, 0, 3523, 3529, 5, 304, 0, 0, 3524, 3529, 5, 305, 0, 0, 3525, 3529, 5, 149, 0, 0, 3526, 3529, 5, 133, 0, 0, 3527, 3529, 3, 388, 194, 0, 3528, 3521, 1, 0, 0, 0, 3528, 3522, 1, 0, 0, 0, 3528, 3523, 1, 0, 0, 0, 3528, 3524, 1, 0, 0, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3526, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 299, 1, 0, 0, 0, 3530, 3546, 5, 198, 0, 0, 3531, 3546, 5, 376, 0, 0, 3532, 3533, 5, 371, 0, 0, 3533, 3546, 3, 388, 194, 0, 3534, 3546, 3, 310, 155, 0, 3535, 3536, 3, 298, 149, 0, 3536, 3537, 3, 400, 200, 0, 3537, 3546, 1, 0, 0, 0, 3538, 3546, 3, 396, 198, 0, 3539, 3546, 3, 308, 154, 0, 3540, 3542, 3, 400, 200, 0, 3541, 3540, 1, 0, 0, 0, 3542, 3543, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3546, 1, 0, 0, 0, 3545, 3530, 1, 0, 0, 0, 3545, 3531, 1, 0, 0, 0, 3545, 3532, 1, 0, 0, 0, 3545, 3534, 1, 0, 0, 0, 3545, 3535, 1, 0, 0, 0, 3545, 3538, 1, 0, 0, 0, 3545, 3539, 1, 0, 0, 0, 3545, 3541, 1, 0, 0, 0, 3546, 301, 1, 0, 0, 0, 3547, 3548, 7, 45, 0, 0, 3548, 303, 1, 0, 0, 0, 3549, 3550, 7, 46, 0, 0, 3550, 305, 1, 0, 0, 0, 3551, 3552, 7, 47, 0, 0, 3552, 307, 1, 0, 0, 0, 3553, 3554, 7, 48, 0, 0, 3554, 309, 1, 0, 0, 0, 3555, 3558, 5, 149, 0, 0, 3556, 3559, 3, 312, 156, 0, 3557, 3559, 3, 316, 158, 0, 3558, 3556, 1, 0, 0, 0, 3558, 3557, 1, 0, 0, 0, 3559, 311, 1, 0, 0, 0, 3560, 3562, 3, 314, 157, 0, 3561, 3563, 3, 318, 159, 0, 3562, 3561, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 313, 1, 0, 0, 0, 3564, 3565, 3, 320, 160, 0, 3565, 3566, 3, 322, 161, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3564, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3567, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 315, 1, 0, 0, 0, 3571, 3574, 3, 318, 159, 0, 3572, 3575, 3, 314, 157, 0, 3573, 3575, 3, 318, 159, 0, 3574, 3572, 1, 0, 0, 0, 3574, 3573, 1, 0, 0, 0, 3574, 3575, 1, 0, 0, 0, 3575, 317, 1, 0, 0, 0, 3576, 3577, 3, 320, 160, 0, 3577, 3578, 3, 324, 162, 0, 3578, 3579, 5, 309, 0, 0, 3579, 3580, 3, 324, 162, 0, 3580, 319, 1, 0, 0, 0, 3581, 3583, 7, 49, 0, 0, 3582, 3581, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3587, 1, 0, 0, 0, 3584, 3588, 5, 382, 0, 0, 3585, 3588, 5, 384, 0, 0, 3586, 3588, 3, 400, 200, 0, 3587, 3584, 1, 0, 0, 0, 3587, 3585, 1, 0, 0, 0, 3587, 3586, 1, 0, 0, 0, 3588, 321, 1, 0, 0, 0, 3589, 3590, 7, 50, 0, 0, 3590, 323, 1, 0, 0, 0, 3591, 3592, 7, 51, 0, 0, 3592, 325, 1, 0, 0, 0, 3593, 3597, 5, 116, 0, 0, 3594, 3595, 5, 9, 0, 0, 3595, 3597, 3, 384, 192, 0, 3596, 3593, 1, 0, 0, 0, 3596, 3594, 1, 0, 0, 0, 3597, 327, 1, 0, 0, 0, 3598, 3629, 5, 27, 0, 0, 3599, 3629, 5, 308, 0, 0, 3600, 3629, 5, 32, 0, 0, 3601, 3629, 5, 276, 0, 0, 3602, 3629, 5, 272, 0, 0, 3603, 3629, 5, 150, 0, 0, 3604, 3629, 5, 151, 0, 0, 3605, 3629, 5, 25, 0, 0, 3606, 3629, 5, 174, 0, 0, 3607, 3629, 5, 117, 0, 0, 3608, 3629, 5, 234, 0, 0, 3609, 3629, 5, 95, 0, 0, 3610, 3629, 5, 71, 0, 0, 3611, 3629, 5, 303, 0, 0, 3612, 3629, 5, 305, 0, 0, 3613, 3629, 5, 304, 0, 0, 3614, 3629, 5, 285, 0, 0, 3615, 3629, 5, 41, 0, 0, 3616, 3629, 5, 40, 0, 0, 3617, 3629, 5, 334, 0, 0, 3618, 3629, 5, 26, 0, 0, 3619, 3629, 5, 80, 0, 0, 3620, 3629, 5, 79, 0, 0, 3621, 3629, 5, 200, 0, 0, 3622, 3629, 5, 340, 0, 0, 3623, 3629, 5, 149, 0, 0, 3624, 3629, 5, 19, 0, 0, 3625, 3629, 5, 286, 0, 0, 3626, 3629, 5, 177, 0, 0, 3627, 3629, 3, 388, 194, 0, 3628, 3598, 1, 0, 0, 0, 3628, 3599, 1, 0, 0, 0, 3628, 3600, 1, 0, 0, 0, 3628, 3601, 1, 0, 0, 0, 3628, 3602, 1, 0, 0, 0, 3628, 3603, 1, 0, 0, 0, 3628, 3604, 1, 0, 0, 0, 3628, 3605, 1, 0, 0, 0, 3628, 3606, 1, 0, 0, 0, 3628, 3607, 1, 0, 0, 0, 3628, 3608, 1, 0, 0, 0, 3628, 3609, 1, 0, 0, 0, 3628, 3610, 1, 0, 0, 0, 3628, 3611, 1, 0, 0, 0, 3628, 3612, 1, 0, 0, 0, 3628, 3613, 1, 0, 0, 0, 3628, 3614, 1, 0, 0, 0, 3628, 3615, 1, 0, 0, 0, 3628, 3616, 1, 0, 0, 0, 3628, 3617, 1, 0, 0, 0, 3628, 3618, 1, 0, 0, 0, 3628, 3619, 1, 0, 0, 0, 3628, 3620, 1, 0, 0, 0, 3628, 3621, 1, 0, 0, 0, 3628, 3622, 1, 0, 0, 0, 3628, 3623, 1, 0, 0, 0, 3628, 3624, 1, 0, 0, 0, 3628, 3625, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3627, 1, 0, 0, 0, 3629, 329, 1, 0, 0, 0, 3630, 3631, 5, 19, 0, 0, 3631, 3632, 5, 356, 0, 0, 3632, 3633, 3, 330, 165, 0, 3633, 3634, 5, 358, 0, 0, 3634, 3677, 1, 0, 0, 0, 3635, 3636, 5, 177, 0, 0, 3636, 3637, 5, 356, 0, 0, 3637, 3638, 3, 330, 165, 0, 3638, 3639, 5, 4, 0, 0, 3639, 3640, 3, 330, 165, 0, 3640, 3641, 5, 358, 0, 0, 3641, 3677, 1, 0, 0, 0, 3642, 3649, 5, 286, 0, 0, 3643, 3645, 5, 356, 0, 0, 3644, 3646, 3, 358, 179, 0, 3645, 3644, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3650, 5, 358, 0, 0, 3648, 3650, 5, 354, 0, 0, 3649, 3643, 1, 0, 0, 0, 3649, 3648, 1, 0, 0, 0, 3650, 3677, 1, 0, 0, 0, 3651, 3652, 5, 149, 0, 0, 3652, 3655, 7, 52, 0, 0, 3653, 3654, 5, 309, 0, 0, 3654, 3656, 5, 186, 0, 0, 3655, 3653, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3677, 1, 0, 0, 0, 3657, 3658, 5, 149, 0, 0, 3658, 3661, 7, 53, 0, 0, 3659, 3660, 5, 309, 0, 0, 3660, 3662, 7, 54, 0, 0, 3661, 3659, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3677, 1, 0, 0, 0, 3663, 3674, 3, 328, 164, 0, 3664, 3665, 5, 2, 0, 0, 3665, 3670, 5, 382, 0, 0, 3666, 3667, 5, 4, 0, 0, 3667, 3669, 5, 382, 0, 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, 3673, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3675, 5, 3, 0, 0, 3674, 3664, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3677, 1, 0, 0, 0, 3676, 3630, 1, 0, 0, 0, 3676, 3635, 1, 0, 0, 0, 3676, 3642, 1, 0, 0, 0, 3676, 3651, 1, 0, 0, 0, 3676, 3657, 1, 0, 0, 0, 3676, 3663, 1, 0, 0, 0, 3677, 331, 1, 0, 0, 0, 3678, 3683, 3, 334, 167, 0, 3679, 3680, 5, 4, 0, 0, 3680, 3682, 3, 334, 167, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3685, 1, 0, 0, 0, 3683, 3681, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 333, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3687, 3, 96, 48, 0, 3687, 3691, 3, 330, 165, 0, 3688, 3690, 3, 340, 170, 0, 3689, 3688, 1, 0, 0, 0, 3690, 3693, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 335, 1, 0, 0, 0, 3693, 3691, 1, 0, 0, 0, 3694, 3699, 3, 338, 169, 0, 3695, 3696, 5, 4, 0, 0, 3696, 3698, 3, 338, 169, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3701, 1, 0, 0, 0, 3699, 3697, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 337, 1, 0, 0, 0, 3701, 3699, 1, 0, 0, 0, 3702, 3703, 3, 92, 46, 0, 3703, 3707, 3, 330, 165, 0, 3704, 3706, 3, 340, 170, 0, 3705, 3704, 1, 0, 0, 0, 3706, 3709, 1, 0, 0, 0, 3707, 3705, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 339, 1, 0, 0, 0, 3709, 3707, 1, 0, 0, 0, 3710, 3711, 5, 197, 0, 0, 3711, 3716, 5, 198, 0, 0, 3712, 3716, 3, 342, 171, 0, 3713, 3716, 3, 24, 12, 0, 3714, 3716, 3, 326, 163, 0, 3715, 3710, 1, 0, 0, 0, 3715, 3712, 1, 0, 0, 0, 3715, 3713, 1, 0, 0, 0, 3715, 3714, 1, 0, 0, 0, 3716, 341, 1, 0, 0, 0, 3717, 3718, 5, 82, 0, 0, 3718, 3719, 3, 280, 140, 0, 3719, 343, 1, 0, 0, 0, 3720, 3721, 7, 55, 0, 0, 3721, 3722, 3, 280, 140, 0, 3722, 345, 1, 0, 0, 0, 3723, 3728, 3, 348, 174, 0, 3724, 3725, 5, 4, 0, 0, 3725, 3727, 3, 348, 174, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3730, 1, 0, 0, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 347, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3732, 3, 384, 192, 0, 3732, 3735, 3, 330, 165, 0, 3733, 3734, 5, 197, 0, 0, 3734, 3736, 5, 198, 0, 0, 3735, 3733, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 24, 12, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 349, 1, 0, 0, 0, 3740, 3745, 3, 352, 176, 0, 3741, 3742, 5, 4, 0, 0, 3742, 3744, 3, 352, 176, 0, 3743, 3741, 1, 0, 0, 0, 3744, 3747, 1, 0, 0, 0, 3745, 3743, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 351, 1, 0, 0, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3749, 3, 96, 48, 0, 3749, 3753, 3, 330, 165, 0, 3750, 3752, 3, 354, 177, 0, 3751, 3750, 1, 0, 0, 0, 3752, 3755, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 353, 1, 0, 0, 0, 3755, 3753, 1, 0, 0, 0, 3756, 3757, 5, 197, 0, 0, 3757, 3762, 5, 198, 0, 0, 3758, 3762, 3, 342, 171, 0, 3759, 3762, 3, 356, 178, 0, 3760, 3762, 3, 24, 12, 0, 3761, 3756, 1, 0, 0, 0, 3761, 3758, 1, 0, 0, 0, 3761, 3759, 1, 0, 0, 0, 3761, 3760, 1, 0, 0, 0, 3762, 355, 1, 0, 0, 0, 3763, 3764, 5, 127, 0, 0, 3764, 3765, 5, 12, 0, 0, 3765, 3766, 5, 20, 0, 0, 3766, 3767, 5, 2, 0, 0, 3767, 3768, 3, 280, 140, 0, 3768, 3769, 5, 3, 0, 0, 3769, 357, 1, 0, 0, 0, 3770, 3775, 3, 360, 180, 0, 3771, 3772, 5, 4, 0, 0, 3772, 3774, 3, 360, 180, 0, 3773, 3771, 1, 0, 0, 0, 3774, 3777, 1, 0, 0, 0, 3775, 3773, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 359, 1, 0, 0, 0, 3777, 3775, 1, 0, 0, 0, 3778, 3780, 3, 388, 194, 0, 3779, 3781, 5, 371, 0, 0, 3780, 3779, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3785, 3, 330, 165, 0, 3783, 3784, 5, 197, 0, 0, 3784, 3786, 5, 198, 0, 0, 3785, 3783, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3788, 1, 0, 0, 0, 3787, 3789, 3, 24, 12, 0, 3788, 3787, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 361, 1, 0, 0, 0, 3790, 3791, 5, 343, 0, 0, 3791, 3792, 3, 280, 140, 0, 3792, 3793, 5, 300, 0, 0, 3793, 3794, 3, 280, 140, 0, 3794, 363, 1, 0, 0, 0, 3795, 3796, 5, 345, 0, 0, 3796, 3801, 3, 368, 184, 0, 3797, 3798, 5, 4, 0, 0, 3798, 3800, 3, 368, 184, 0, 3799, 3797, 1, 0, 0, 0, 3800, 3803, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 365, 1, 0, 0, 0, 3803, 3801, 1, 0, 0, 0, 3804, 3805, 5, 351, 0, 0, 3805, 3806, 5, 31, 0, 0, 3806, 3807, 3, 94, 47, 0, 3807, 367, 1, 0, 0, 0, 3808, 3809, 3, 384, 192, 0, 3809, 3810, 5, 20, 0, 0, 3810, 3811, 3, 370, 185, 0, 3811, 369, 1, 0, 0, 0, 3812, 3859, 3, 384, 192, 0, 3813, 3814, 5, 2, 0, 0, 3814, 3815, 3, 384, 192, 0, 3815, 3816, 5, 3, 0, 0, 3816, 3859, 1, 0, 0, 0, 3817, 3852, 5, 2, 0, 0, 3818, 3819, 5, 44, 0, 0, 3819, 3820, 5, 31, 0, 0, 3820, 3825, 3, 280, 140, 0, 3821, 3822, 5, 4, 0, 0, 3822, 3824, 3, 280, 140, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3827, 1, 0, 0, 0, 3825, 3823, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 3853, 1, 0, 0, 0, 3827, 3825, 1, 0, 0, 0, 3828, 3829, 7, 24, 0, 0, 3829, 3830, 5, 31, 0, 0, 3830, 3835, 3, 280, 140, 0, 3831, 3832, 5, 4, 0, 0, 3832, 3834, 3, 280, 140, 0, 3833, 3831, 1, 0, 0, 0, 3834, 3837, 1, 0, 0, 0, 3835, 3833, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3838, 3828, 1, 0, 0, 0, 3838, 3839, 1, 0, 0, 0, 3839, 3850, 1, 0, 0, 0, 3840, 3841, 7, 25, 0, 0, 3841, 3842, 5, 31, 0, 0, 3842, 3847, 3, 108, 54, 0, 3843, 3844, 5, 4, 0, 0, 3844, 3846, 3, 108, 54, 0, 3845, 3843, 1, 0, 0, 0, 3846, 3849, 1, 0, 0, 0, 3847, 3845, 1, 0, 0, 0, 3847, 3848, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3850, 3840, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 3853, 1, 0, 0, 0, 3852, 3818, 1, 0, 0, 0, 3852, 3838, 1, 0, 0, 0, 3853, 3855, 1, 0, 0, 0, 3854, 3856, 3, 372, 186, 0, 3855, 3854, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 3857, 1, 0, 0, 0, 3857, 3859, 5, 3, 0, 0, 3858, 3812, 1, 0, 0, 0, 3858, 3813, 1, 0, 0, 0, 3858, 3817, 1, 0, 0, 0, 3859, 371, 1, 0, 0, 0, 3860, 3861, 5, 233, 0, 0, 3861, 3877, 3, 374, 187, 0, 3862, 3863, 5, 258, 0, 0, 3863, 3877, 3, 374, 187, 0, 3864, 3865, 5, 233, 0, 0, 3865, 3866, 5, 24, 0, 0, 3866, 3867, 3, 374, 187, 0, 3867, 3868, 5, 14, 0, 0, 3868, 3869, 3, 374, 187, 0, 3869, 3877, 1, 0, 0, 0, 3870, 3871, 5, 258, 0, 0, 3871, 3872, 5, 24, 0, 0, 3872, 3873, 3, 374, 187, 0, 3873, 3874, 5, 14, 0, 0, 3874, 3875, 3, 374, 187, 0, 3875, 3877, 1, 0, 0, 0, 3876, 3860, 1, 0, 0, 0, 3876, 3862, 1, 0, 0, 0, 3876, 3864, 1, 0, 0, 0, 3876, 3870, 1, 0, 0, 0, 3877, 373, 1, 0, 0, 0, 3878, 3879, 5, 321, 0, 0, 3879, 3886, 7, 56, 0, 0, 3880, 3881, 5, 62, 0, 0, 3881, 3886, 5, 257, 0, 0, 3882, 3883, 3, 280, 140, 0, 3883, 3884, 7, 56, 0, 0, 3884, 3886, 1, 0, 0, 0, 3885, 3878, 1, 0, 0, 0, 3885, 3880, 1, 0, 0, 0, 3885, 3882, 1, 0, 0, 0, 3886, 375, 1, 0, 0, 0, 3887, 3892, 3, 382, 191, 0, 3888, 3889, 5, 4, 0, 0, 3889, 3891, 3, 382, 191, 0, 3890, 3888, 1, 0, 0, 0, 3891, 3894, 1, 0, 0, 0, 3892, 3890, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 377, 1, 0, 0, 0, 3894, 3892, 1, 0, 0, 0, 3895, 3896, 5, 136, 0, 0, 3896, 3897, 5, 2, 0, 0, 3897, 3898, 3, 280, 140, 0, 3898, 3899, 5, 3, 0, 0, 3899, 3905, 1, 0, 0, 0, 3900, 3905, 3, 382, 191, 0, 3901, 3905, 5, 114, 0, 0, 3902, 3905, 5, 161, 0, 0, 3903, 3905, 5, 250, 0, 0, 3904, 3895, 1, 0, 0, 0, 3904, 3900, 1, 0, 0, 0, 3904, 3901, 1, 0, 0, 0, 3904, 3902, 1, 0, 0, 0, 3904, 3903, 1, 0, 0, 0, 3905, 379, 1, 0, 0, 0, 3906, 3907, 3, 382, 191, 0, 3907, 381, 1, 0, 0, 0, 3908, 3913, 3, 388, 194, 0, 3909, 3910, 5, 5, 0, 0, 3910, 3912, 3, 388, 194, 0, 3911, 3909, 1, 0, 0, 0, 3912, 3915, 1, 0, 0, 0, 3913, 3911, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 383, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3916, 3917, 3, 388, 194, 0, 3917, 3918, 3, 386, 193, 0, 3918, 385, 1, 0, 0, 0, 3919, 3920, 5, 362, 0, 0, 3920, 3922, 3, 388, 194, 0, 3921, 3919, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3921, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3927, 1, 0, 0, 0, 3925, 3927, 1, 0, 0, 0, 3926, 3921, 1, 0, 0, 0, 3926, 3925, 1, 0, 0, 0, 3927, 387, 1, 0, 0, 0, 3928, 3931, 3, 390, 195, 0, 3929, 3931, 3, 408, 204, 0, 3930, 3928, 1, 0, 0, 0, 3930, 3929, 1, 0, 0, 0, 3931, 389, 1, 0, 0, 0, 3932, 3937, 5, 388, 0, 0, 3933, 3937, 3, 392, 196, 0, 3934, 3937, 3, 406, 203, 0, 3935, 3937, 3, 410, 205, 0, 3936, 3932, 1, 0, 0, 0, 3936, 3933, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3936, 3935, 1, 0, 0, 0, 3937, 391, 1, 0, 0, 0, 3938, 3939, 7, 57, 0, 0, 3939, 393, 1, 0, 0, 0, 3940, 3941, 5, 389, 0, 0, 3941, 395, 1, 0, 0, 0, 3942, 3944, 5, 362, 0, 0, 3943, 3942, 1, 0, 0, 0, 3943, 3944, 1, 0, 0, 0, 3944, 3945, 1, 0, 0, 0, 3945, 3983, 5, 383, 0, 0, 3946, 3948, 5, 362, 0, 0, 3947, 3946, 1, 0, 0, 0, 3947, 3948, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3983, 5, 384, 0, 0, 3950, 3952, 5, 362, 0, 0, 3951, 3950, 1, 0, 0, 0, 3951, 3952, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3983, 7, 58, 0, 0, 3954, 3956, 5, 362, 0, 0, 3955, 3954, 1, 0, 0, 0, 3955, 3956, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3983, 5, 382, 0, 0, 3958, 3960, 5, 362, 0, 0, 3959, 3958, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 3983, 5, 379, 0, 0, 3962, 3964, 5, 362, 0, 0, 3963, 3962, 1, 0, 0, 0, 3963, 3964, 1, 0, 0, 0, 3964, 3965, 1, 0, 0, 0, 3965, 3983, 5, 380, 0, 0, 3966, 3968, 5, 362, 0, 0, 3967, 3966, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3983, 5, 381, 0, 0, 3970, 3972, 5, 362, 0, 0, 3971, 3970, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3983, 5, 386, 0, 0, 3974, 3976, 5, 362, 0, 0, 3975, 3974, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3977, 1, 0, 0, 0, 3977, 3983, 5, 385, 0, 0, 3978, 3980, 5, 362, 0, 0, 3979, 3978, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3981, 1, 0, 0, 0, 3981, 3983, 5, 387, 0, 0, 3982, 3943, 1, 0, 0, 0, 3982, 3947, 1, 0, 0, 0, 3982, 3951, 1, 0, 0, 0, 3982, 3955, 1, 0, 0, 0, 3982, 3959, 1, 0, 0, 0, 3982, 3963, 1, 0, 0, 0, 3982, 3967, 1, 0, 0, 0, 3982, 3971, 1, 0, 0, 0, 3982, 3975, 1, 0, 0, 0, 3982, 3979, 1, 0, 0, 0, 3983, 397, 1, 0, 0, 0, 3984, 3985, 5, 319, 0, 0, 3985, 3996, 3, 330, 165, 0, 3986, 3996, 3, 24, 12, 0, 3987, 3996, 3, 326, 163, 0, 3988, 3989, 7, 59, 0, 0, 3989, 3990, 5, 197, 0, 0, 3990, 3996, 5, 198, 0, 0, 3991, 3992, 5, 269, 0, 0, 3992, 3996, 3, 342, 171, 0, 3993, 3994, 5, 96, 0, 0, 3994, 3996, 5, 82, 0, 0, 3995, 3984, 1, 0, 0, 0, 3995, 3986, 1, 0, 0, 0, 3995, 3987, 1, 0, 0, 0, 3995, 3988, 1, 0, 0, 0, 3995, 3991, 1, 0, 0, 0, 3995, 3993, 1, 0, 0, 0, 3996, 399, 1, 0, 0, 0, 3997, 3998, 7, 60, 0, 0, 3998, 401, 1, 0, 0, 0, 3999, 4002, 3, 400, 200, 0, 4000, 4002, 5, 198, 0, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4000, 1, 0, 0, 0, 4002, 403, 1, 0, 0, 0, 4003, 4006, 5, 382, 0, 0, 4004, 4006, 3, 400, 200, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4004, 1, 0, 0, 0, 4006, 405, 1, 0, 0, 0, 4007, 4008, 7, 61, 0, 0, 4008, 407, 1, 0, 0, 0, 4009, 4010, 7, 62, 0, 0, 4010, 409, 1, 0, 0, 0, 4011, 4012, 7, 63, 0, 0, 4012, 411, 1, 0, 0, 0, 519, 415, 422, 426, 431, 438, 443, 451, 453, 472, 476, 482, 485, 488, 495, 498, 502, 505, 510, 522, 524, 532, 535, 539, 542, 548, 559, 565, 570, 603, 613, 624, 635, 646, 651, 660, 664, 670, 674, 679, 685, 697, 705, 711, 722, 726, 731, 746, 750, 757, 761, 767, 796, 800, 805, 812, 818, 821, 824, 828, 832, 840, 842, 851, 854, 863, 868, 874, 881, 884, 888, 899, 902, 908, 912, 927, 929, 937, 941, 947, 950, 954, 957, 963, 968, 972, 979, 982, 985, 992, 997, 1006, 1014, 1020, 1023, 1026, 1032, 1036, 1041, 1044, 1048, 1050, 1058, 1066, 1069, 1076, 1079, 1082, 1091, 1096, 1102, 1107, 1110, 1114, 1117, 1121, 1149, 1152, 1160, 1166, 1169, 1172, 1177, 1185, 1190, 1196, 1202, 1205, 1212, 1219, 1227, 1244, 1271, 1274, 1280, 1289, 1298, 1304, 1309, 1314, 1321, 1326, 1331, 1338, 1346, 1349, 1353, 1365, 1369, 1376, 1492, 1500, 1508, 1517, 1527, 1531, 1534, 1538, 1544, 1556, 1568, 1573, 1582, 1590, 1595, 1597, 1605, 1610, 1614, 1617, 1625, 1630, 1639, 1644, 1647, 1652, 1656, 1661, 1663, 1667, 1676, 1684, 1690, 1701, 1708, 1717, 1722, 1725, 1748, 1750, 1762, 1769, 1772, 1779, 1783, 1789, 1797, 1804, 1807, 1815, 1826, 1837, 1845, 1851, 1863, 1870, 1877, 1889, 1897, 1903, 1909, 1912, 1928, 1935, 1946, 1955, 1958, 1967, 1970, 1979, 1982, 1991, 1994, 1997, 2002, 2004, 2008, 2019, 2025, 2031, 2034, 2036, 2049, 2058, 2062, 2065, 2069, 2075, 2079, 2087, 2091, 2094, 2097, 2100, 2104, 2108, 2113, 2117, 2120, 2123, 2126, 2130, 2135, 2139, 2142, 2145, 2148, 2150, 2156, 2163, 2168, 2171, 2174, 2178, 2188, 2192, 2194, 2197, 2201, 2207, 2211, 2222, 2232, 2236, 2248, 2260, 2275, 2280, 2286, 2293, 2309, 2314, 2327, 2332, 2340, 2346, 2350, 2353, 2358, 2365, 2371, 2380, 2390, 2405, 2410, 2412, 2417, 2426, 2439, 2444, 2448, 2455, 2460, 2464, 2467, 2470, 2484, 2497, 2502, 2506, 2509, 2513, 2519, 2522, 2529, 2541, 2552, 2565, 2576, 2581, 2589, 2594, 2608, 2617, 2620, 2625, 2632, 2635, 2641, 2647, 2650, 2655, 2660, 2664, 2670, 2674, 2677, 2682, 2685, 2690, 2694, 2697, 2700, 2706, 2711, 2718, 2721, 2739, 2741, 2744, 2755, 2764, 2771, 2779, 2786, 2791, 2794, 2797, 2805, 2813, 2821, 2831, 2837, 2844, 2851, 2853, 2866, 2872, 2874, 2884, 2890, 2892, 2900, 2904, 2916, 2919, 2924, 2928, 2930, 2939, 2951, 2953, 2960, 2967, 2973, 2979, 2981, 2988, 2996, 3004, 3010, 3015, 3022, 3035, 3043, 3046, 3050, 3052, 3059, 3070, 3077, 3087, 3092, 3096, 3106, 3113, 3126, 3128, 3136, 3138, 3142, 3150, 3159, 3165, 3173, 3178, 3190, 3195, 3198, 3204, 3208, 3213, 3218, 3223, 3229, 3250, 3252, 3263, 3275, 3287, 3291, 3300, 3304, 3322, 3325, 3333, 3342, 3351, 3374, 3390, 3397, 3400, 3409, 3413, 3417, 3429, 3454, 3461, 3464, 3479, 3500, 3504, 3506, 3516, 3518, 3528, 3543, 3545, 3558, 3562, 3569, 3574, 3582, 3587, 3596, 3628, 3645, 3649, 3655, 3661, 3670, 3674, 3676, 3683, 3691, 3699, 3707, 3715, 3728, 3735, 3738, 3745, 3753, 3761, 3775, 3780, 3785, 3788, 3801, 3825, 3835, 3838, 3847, 3850, 3852, 3855, 3858, 3876, 3885, 3892, 3904, 3913, 3923, 3926, 3930, 3936, 3943, 3947, 3951, 3955, 3959, 3963, 3967, 3971, 3975, 3979, 3982, 3995, 4001, 4005] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index c9bb86bdb..bfa1d17cf 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -523,93 +523,99 @@ export class SparkSqlParser extends SQLParserBase { public static readonly RULE_identifierCommentList = 110; public static readonly RULE_identifierComment = 111; public static readonly RULE_relationPrimary = 112; - public static readonly RULE_inlineTable = 113; - public static readonly RULE_functionTableSubqueryArgument = 114; - public static readonly RULE_tableArgumentPartitioning = 115; - public static readonly RULE_functionTableNamedArgumentExpression = 116; - public static readonly RULE_functionTableReferenceArgument = 117; - public static readonly RULE_functionTableArgument = 118; - public static readonly RULE_functionTable = 119; - public static readonly RULE_tableAlias = 120; - public static readonly RULE_rowFormat = 121; - public static readonly RULE_multipartIdentifierList = 122; - public static readonly RULE_multipartIdentifier = 123; - public static readonly RULE_multipartIdentifierPropertyList = 124; - public static readonly RULE_multipartIdentifierProperty = 125; - public static readonly RULE_tableIdentifier = 126; - public static readonly RULE_viewIdentifier = 127; - public static readonly RULE_namedExpression = 128; - public static readonly RULE_namedExpressionSeq = 129; - public static readonly RULE_partitionFieldList = 130; - public static readonly RULE_partitionField = 131; - public static readonly RULE_transform = 132; - public static readonly RULE_transformArgument = 133; - public static readonly RULE_expression = 134; - public static readonly RULE_namedArgumentExpression = 135; - public static readonly RULE_functionArgument = 136; - public static readonly RULE_expressionSeq = 137; - public static readonly RULE_booleanExpression = 138; - public static readonly RULE_predicate = 139; - public static readonly RULE_valueExpression = 140; - public static readonly RULE_datetimeUnit = 141; - public static readonly RULE_primaryExpression = 142; - public static readonly RULE_literalType = 143; - public static readonly RULE_constant = 144; - public static readonly RULE_comparisonOperator = 145; - public static readonly RULE_arithmeticOperator = 146; - public static readonly RULE_predicateOperator = 147; - public static readonly RULE_booleanValue = 148; - public static readonly RULE_interval = 149; - public static readonly RULE_errorCapturingMultiUnitsInterval = 150; - public static readonly RULE_multiUnitsInterval = 151; - public static readonly RULE_errorCapturingUnitToUnitInterval = 152; - public static readonly RULE_unitToUnitInterval = 153; - public static readonly RULE_intervalValue = 154; - public static readonly RULE_unitInMultiUnits = 155; - public static readonly RULE_unitInUnitToUnit = 156; - public static readonly RULE_colPosition = 157; - public static readonly RULE_type = 158; - public static readonly RULE_dataType = 159; - public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 160; - public static readonly RULE_qualifiedColTypeWithPositionForAdd = 161; - public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 162; - public static readonly RULE_qualifiedColTypeWithPositionForReplace = 163; - public static readonly RULE_colDefinitionDescriptorWithPosition = 164; - public static readonly RULE_defaultExpression = 165; - public static readonly RULE_variableDefaultExpression = 166; - public static readonly RULE_colTypeList = 167; - public static readonly RULE_columnType = 168; - public static readonly RULE_createOrReplaceTableColTypeList = 169; - public static readonly RULE_createOrReplaceTableColType = 170; - public static readonly RULE_colDefinitionOption = 171; - public static readonly RULE_generationExpression = 172; - public static readonly RULE_complexColTypeList = 173; - public static readonly RULE_complexColType = 174; - public static readonly RULE_whenClause = 175; - public static readonly RULE_windowClause = 176; - public static readonly RULE_zorderClause = 177; - public static readonly RULE_namedWindow = 178; - public static readonly RULE_windowSpec = 179; - public static readonly RULE_windowFrame = 180; - public static readonly RULE_frameBound = 181; - public static readonly RULE_qualifiedNameList = 182; - public static readonly RULE_functionName = 183; - public static readonly RULE_functionNameCreate = 184; - public static readonly RULE_qualifiedName = 185; - public static readonly RULE_errorCapturingIdentifier = 186; - public static readonly RULE_errorCapturingIdentifierExtra = 187; - public static readonly RULE_identifier = 188; - public static readonly RULE_strictIdentifier = 189; - public static readonly RULE_quotedIdentifier = 190; - public static readonly RULE_backQuotedIdentifier = 191; - public static readonly RULE_number = 192; - public static readonly RULE_alterColumnAction = 193; - public static readonly RULE_stringLit = 194; - public static readonly RULE_commentStr = 195; - public static readonly RULE_version = 196; - public static readonly RULE_ansiNonReserved = 197; - public static readonly RULE_strictNonReserved = 198; - public static readonly RULE_nonReserved = 199; + public static readonly RULE_atomSubQueryTableSource = 113; + public static readonly RULE_inlineTable = 114; + public static readonly RULE_functionTableSubqueryArgument = 115; + public static readonly RULE_tableArgumentPartitioning = 116; + public static readonly RULE_functionTableNamedArgumentExpression = 117; + public static readonly RULE_functionTableReferenceArgument = 118; + public static readonly RULE_functionTableArgument = 119; + public static readonly RULE_functionTable = 120; + public static readonly RULE_atomFunctionTable = 121; + public static readonly RULE_tableAlias = 122; + public static readonly RULE_rowFormat = 123; + public static readonly RULE_multipartIdentifierList = 124; + public static readonly RULE_multipartIdentifier = 125; + public static readonly RULE_multipartIdentifierPropertyList = 126; + public static readonly RULE_multipartIdentifierProperty = 127; + public static readonly RULE_tableIdentifier = 128; + public static readonly RULE_viewIdentifier = 129; + public static readonly RULE_selectLiteralColumnName = 130; + public static readonly RULE_selectExpressionColumnName = 131; + public static readonly RULE_tableAllColumns = 132; + public static readonly RULE_namedExpression = 133; + public static readonly RULE_namedExpressionSeq = 134; + public static readonly RULE_selectList = 135; + public static readonly RULE_partitionFieldList = 136; + public static readonly RULE_partitionField = 137; + public static readonly RULE_transform = 138; + public static readonly RULE_transformArgument = 139; + public static readonly RULE_expression = 140; + public static readonly RULE_namedArgumentExpression = 141; + public static readonly RULE_functionArgument = 142; + public static readonly RULE_expressionSeq = 143; + public static readonly RULE_booleanExpression = 144; + public static readonly RULE_predicate = 145; + public static readonly RULE_valueExpression = 146; + public static readonly RULE_datetimeUnit = 147; + public static readonly RULE_primaryExpression = 148; + public static readonly RULE_literalType = 149; + public static readonly RULE_constant = 150; + public static readonly RULE_comparisonOperator = 151; + public static readonly RULE_arithmeticOperator = 152; + public static readonly RULE_predicateOperator = 153; + public static readonly RULE_booleanValue = 154; + public static readonly RULE_interval = 155; + public static readonly RULE_errorCapturingMultiUnitsInterval = 156; + public static readonly RULE_multiUnitsInterval = 157; + public static readonly RULE_errorCapturingUnitToUnitInterval = 158; + public static readonly RULE_unitToUnitInterval = 159; + public static readonly RULE_intervalValue = 160; + public static readonly RULE_unitInMultiUnits = 161; + public static readonly RULE_unitInUnitToUnit = 162; + public static readonly RULE_colPosition = 163; + public static readonly RULE_type = 164; + public static readonly RULE_dataType = 165; + public static readonly RULE_qualifiedColTypeWithPositionSeqForAdd = 166; + public static readonly RULE_qualifiedColTypeWithPositionForAdd = 167; + public static readonly RULE_qualifiedColTypeWithPositionSeqForReplace = 168; + public static readonly RULE_qualifiedColTypeWithPositionForReplace = 169; + public static readonly RULE_colDefinitionDescriptorWithPosition = 170; + public static readonly RULE_defaultExpression = 171; + public static readonly RULE_variableDefaultExpression = 172; + public static readonly RULE_colTypeList = 173; + public static readonly RULE_columnType = 174; + public static readonly RULE_createOrReplaceTableColTypeList = 175; + public static readonly RULE_createOrReplaceTableColType = 176; + public static readonly RULE_colDefinitionOption = 177; + public static readonly RULE_generationExpression = 178; + public static readonly RULE_complexColTypeList = 179; + public static readonly RULE_complexColType = 180; + public static readonly RULE_whenClause = 181; + public static readonly RULE_windowClause = 182; + public static readonly RULE_zorderClause = 183; + public static readonly RULE_namedWindow = 184; + public static readonly RULE_windowSpec = 185; + public static readonly RULE_windowFrame = 186; + public static readonly RULE_frameBound = 187; + public static readonly RULE_qualifiedNameList = 188; + public static readonly RULE_functionName = 189; + public static readonly RULE_functionNameCreate = 190; + public static readonly RULE_qualifiedName = 191; + public static readonly RULE_errorCapturingIdentifier = 192; + public static readonly RULE_errorCapturingIdentifierExtra = 193; + public static readonly RULE_identifier = 194; + public static readonly RULE_strictIdentifier = 195; + public static readonly RULE_quotedIdentifier = 196; + public static readonly RULE_backQuotedIdentifier = 197; + public static readonly RULE_number = 198; + public static readonly RULE_alterColumnAction = 199; + public static readonly RULE_stringLit = 200; + public static readonly RULE_commentStr = 201; + public static readonly RULE_version = 202; + public static readonly RULE_ansiNonReserved = 203; + public static readonly RULE_strictNonReserved = 204; + public static readonly RULE_nonReserved = 205; public static readonly literalNames = [ null, "';'", "'('", "')'", "','", "'.'", "'['", "']'", "'ADD'", @@ -786,32 +792,33 @@ export class SparkSqlParser extends SQLParserBase { "relationExtension", "joinRelation", "joinType", "joinCriteria", "sample", "sampleMethod", "identifierList", "identifierSeq", "orderedIdentifierList", "orderedIdentifier", "identifierCommentList", "identifierComment", - "relationPrimary", "inlineTable", "functionTableSubqueryArgument", + "relationPrimary", "atomSubQueryTableSource", "inlineTable", "functionTableSubqueryArgument", "tableArgumentPartitioning", "functionTableNamedArgumentExpression", "functionTableReferenceArgument", "functionTableArgument", "functionTable", - "tableAlias", "rowFormat", "multipartIdentifierList", "multipartIdentifier", - "multipartIdentifierPropertyList", "multipartIdentifierProperty", - "tableIdentifier", "viewIdentifier", "namedExpression", "namedExpressionSeq", - "partitionFieldList", "partitionField", "transform", "transformArgument", - "expression", "namedArgumentExpression", "functionArgument", "expressionSeq", - "booleanExpression", "predicate", "valueExpression", "datetimeUnit", - "primaryExpression", "literalType", "constant", "comparisonOperator", - "arithmeticOperator", "predicateOperator", "booleanValue", "interval", - "errorCapturingMultiUnitsInterval", "multiUnitsInterval", "errorCapturingUnitToUnitInterval", - "unitToUnitInterval", "intervalValue", "unitInMultiUnits", "unitInUnitToUnit", - "colPosition", "type", "dataType", "qualifiedColTypeWithPositionSeqForAdd", - "qualifiedColTypeWithPositionForAdd", "qualifiedColTypeWithPositionSeqForReplace", - "qualifiedColTypeWithPositionForReplace", "colDefinitionDescriptorWithPosition", - "defaultExpression", "variableDefaultExpression", "colTypeList", - "columnType", "createOrReplaceTableColTypeList", "createOrReplaceTableColType", - "colDefinitionOption", "generationExpression", "complexColTypeList", - "complexColType", "whenClause", "windowClause", "zorderClause", - "namedWindow", "windowSpec", "windowFrame", "frameBound", "qualifiedNameList", - "functionName", "functionNameCreate", "qualifiedName", "errorCapturingIdentifier", - "errorCapturingIdentifierExtra", "identifier", "strictIdentifier", - "quotedIdentifier", "backQuotedIdentifier", "number", "alterColumnAction", - "stringLit", "commentStr", "version", "ansiNonReserved", "strictNonReserved", - "nonReserved", + "atomFunctionTable", "tableAlias", "rowFormat", "multipartIdentifierList", + "multipartIdentifier", "multipartIdentifierPropertyList", "multipartIdentifierProperty", + "tableIdentifier", "viewIdentifier", "selectLiteralColumnName", + "selectExpressionColumnName", "tableAllColumns", "namedExpression", + "namedExpressionSeq", "selectList", "partitionFieldList", "partitionField", + "transform", "transformArgument", "expression", "namedArgumentExpression", + "functionArgument", "expressionSeq", "booleanExpression", "predicate", + "valueExpression", "datetimeUnit", "primaryExpression", "literalType", + "constant", "comparisonOperator", "arithmeticOperator", "predicateOperator", + "booleanValue", "interval", "errorCapturingMultiUnitsInterval", + "multiUnitsInterval", "errorCapturingUnitToUnitInterval", "unitToUnitInterval", + "intervalValue", "unitInMultiUnits", "unitInUnitToUnit", "colPosition", + "type", "dataType", "qualifiedColTypeWithPositionSeqForAdd", "qualifiedColTypeWithPositionForAdd", + "qualifiedColTypeWithPositionSeqForReplace", "qualifiedColTypeWithPositionForReplace", + "colDefinitionDescriptorWithPosition", "defaultExpression", "variableDefaultExpression", + "colTypeList", "columnType", "createOrReplaceTableColTypeList", + "createOrReplaceTableColType", "colDefinitionOption", "generationExpression", + "complexColTypeList", "complexColType", "whenClause", "windowClause", + "zorderClause", "namedWindow", "windowSpec", "windowFrame", "frameBound", + "qualifiedNameList", "functionName", "functionNameCreate", "qualifiedName", + "errorCapturingIdentifier", "errorCapturingIdentifierExtra", "identifier", + "strictIdentifier", "quotedIdentifier", "backQuotedIdentifier", + "number", "alterColumnAction", "stringLit", "commentStr", "version", + "ansiNonReserved", "strictNonReserved", "nonReserved", ]; public get grammarFileName(): string { return "SparkSqlParser.g4"; } @@ -835,21 +842,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 10500) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 67896321) !== 0) || ((((_la - 81)) & ~0x1F) === 0 && ((1 << (_la - 81)) & 100696297) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 16842817) !== 0) || ((((_la - 167)) & ~0x1F) === 0 && ((1 << (_la - 167)) & 2102291) !== 0) || _la === 205 || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 2181171413) !== 0) || ((((_la - 273)) & ~0x1F) === 0 && ((1 << (_la - 273)) & 1048833) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 536949281) !== 0)) { { { - this.state = 400; + this.state = 412; this.singleStatement(); } } - this.state = 405; + this.state = 417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 406; + this.state = 418; this.match(SparkSqlParser.EOF); } } @@ -874,14 +881,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 408; + this.state = 420; this.statement(); - this.state = 410; + this.state = 422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 409; + this.state = 421; this.match(SparkSqlParser.SEMICOLON); } } @@ -908,14 +915,14 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1337; + this.state = 1349; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 412; + this.state = 424; this.query(); } break; @@ -923,17 +930,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DmlStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 414; + this.state = 426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 413; + this.state = 425; this.ctes(); } } - this.state = 416; + this.state = 428; this.dmlStatementNoWith(); } break; @@ -941,19 +948,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UseNamespaceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 417; + this.state = 429; this.match(SparkSqlParser.KW_USE); - this.state = 419; + this.state = 431; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: { - this.state = 418; + this.state = 430; this.namespace(); } break; } - this.state = 421; + this.state = 433; this.namespaceName(); } break; @@ -961,22 +968,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 422; + this.state = 434; this.match(SparkSqlParser.KW_SET); - this.state = 423; + this.state = 435; this.match(SparkSqlParser.KW_CATALOG); - this.state = 426; + this.state = 438; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 424; + this.state = 436; this.identifier(); } break; case 2: { - this.state = 425; + this.state = 437; this.stringLit(); } break; @@ -987,49 +994,49 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateNamespaceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 428; + this.state = 440; this.match(SparkSqlParser.KW_CREATE); - this.state = 429; + this.state = 441; this.namespace(); - this.state = 431; + this.state = 443; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: { - this.state = 430; + this.state = 442; this.ifNotExists(); } break; } - this.state = 433; + this.state = 445; this.namespaceNameCreate(); - this.state = 441; + this.state = 453; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 439; + this.state = 451; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 434; + this.state = 446; this.commentSpec(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 435; + this.state = 447; this.locationSpec(); } break; case SparkSqlParser.KW_WITH: { { - this.state = 436; + this.state = 448; this.match(SparkSqlParser.KW_WITH); - this.state = 437; + this.state = 449; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1038,7 +1045,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 438; + this.state = 450; this.propertyList(); } } @@ -1048,7 +1055,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 443; + this.state = 455; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 7, this.context); } @@ -1058,15 +1065,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespacePropertiesContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 444; + this.state = 456; this.match(SparkSqlParser.KW_ALTER); - this.state = 445; + this.state = 457; this.namespace(); - this.state = 446; + this.state = 458; this.namespaceName(); - this.state = 447; + this.state = 459; this.match(SparkSqlParser.KW_SET); - this.state = 448; + this.state = 460; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1075,7 +1082,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 449; + this.state = 461; this.propertyList(); } break; @@ -1083,15 +1090,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetNamespaceLocationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 451; + this.state = 463; this.match(SparkSqlParser.KW_ALTER); - this.state = 452; + this.state = 464; this.namespace(); - this.state = 453; + this.state = 465; this.namespaceName(); - this.state = 454; + this.state = 466; this.match(SparkSqlParser.KW_SET); - this.state = 455; + this.state = 467; this.locationSpec(); } break; @@ -1099,28 +1106,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropNamespaceContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 457; + this.state = 469; this.match(SparkSqlParser.KW_DROP); - this.state = 458; + this.state = 470; this.namespace(); - this.state = 460; + this.state = 472; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 459; + this.state = 471; this.ifExists(); } break; } - this.state = 462; + this.state = 474; this.namespaceName(); - this.state = 464; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 247) { { - this.state = 463; + this.state = 475; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -1138,16 +1145,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowNamespacesContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 466; + this.state = 478; this.match(SparkSqlParser.KW_SHOW); - this.state = 467; + this.state = 479; this.namespaces(); - this.state = 470; + this.state = 482; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 468; + this.state = 480; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1156,27 +1163,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 469; + this.state = 481; this.multipartIdentifier(); } break; } - this.state = 476; + this.state = 488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 473; + this.state = 485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 472; + this.state = 484; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 475; + this.state = 487; (localContext as ShowNamespacesContext)._pattern = this.stringLit(); } } @@ -1187,50 +1194,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 478; + this.state = 490; this.createTableHeader(); - this.state = 483; + this.state = 495; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 479; + this.state = 491; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 480; + this.state = 492; this.createOrReplaceTableColTypeList(); - this.state = 481; + this.state = 493; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 486; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 485; + this.state = 497; this.tableProvider(); } } - this.state = 488; + this.state = 500; this.createTableClauses(); - this.state = 493; + this.state = 505; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 490; + this.state = 502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 489; + this.state = 501; this.match(SparkSqlParser.KW_AS); } } - this.state = 492; + this.state = 504; this.query(); } break; @@ -1241,71 +1248,71 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTableLikeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 495; + this.state = 507; this.match(SparkSqlParser.KW_CREATE); - this.state = 496; + this.state = 508; this.match(SparkSqlParser.KW_TABLE); - this.state = 498; + this.state = 510; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { case 1: { - this.state = 497; + this.state = 509; this.ifNotExists(); } break; } - this.state = 500; + this.state = 512; (localContext as CreateTableLikeContext)._target = this.tableNameCreate(); - this.state = 501; + this.state = 513; this.match(SparkSqlParser.KW_LIKE); - this.state = 502; + this.state = 514; (localContext as CreateTableLikeContext)._source = this.tableName(); - this.state = 512; + this.state = 524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 162 || _la === 170 || _la === 257 || _la === 283 || _la === 297 || _la === 332) { { - this.state = 510; + this.state = 522; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_USING: { - this.state = 503; + this.state = 515; this.tableProvider(); } break; case SparkSqlParser.KW_ROW: { - this.state = 504; + this.state = 516; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 505; + this.state = 517; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 506; + this.state = 518; this.locationSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 507; + this.state = 519; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 508; + this.state = 520; (localContext as CreateTableLikeContext)._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 509; + this.state = 521; this.tableLifecycle(); } break; @@ -1313,7 +1320,7 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 514; + this.state = 526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1323,50 +1330,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ReplaceTableContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 515; + this.state = 527; this.replaceTableHeader(); - this.state = 520; + this.state = 532; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 516; + this.state = 528; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 517; + this.state = 529; this.createOrReplaceTableColTypeList(); - this.state = 518; + this.state = 530; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 523; + this.state = 535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 522; + this.state = 534; this.tableProvider(); } } - this.state = 525; + this.state = 537; this.createTableClauses(); - this.state = 530; + this.state = 542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 527; + this.state = 539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 526; + this.state = 538; this.match(SparkSqlParser.KW_AS); } } - this.state = 529; + this.state = 541; this.query(); } break; @@ -1377,52 +1384,52 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 532; + this.state = 544; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 533; + this.state = 545; this.match(SparkSqlParser.KW_TABLE); - this.state = 534; + this.state = 546; this.tableName(); - this.state = 536; + this.state = 548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 535; + this.state = 547; this.partitionSpec(); } } - this.state = 538; + this.state = 550; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 539; + this.state = 551; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 547; + this.state = 559; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 540; + this.state = 552; this.match(SparkSqlParser.KW_NOSCAN); } break; case 2: { - this.state = 541; + this.state = 553; this.match(SparkSqlParser.KW_FOR); - this.state = 542; + this.state = 554; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 543; + this.state = 555; this.columnNameSeq(); } break; case 3: { - this.state = 544; + this.state = 556; this.match(SparkSqlParser.KW_FOR); - this.state = 545; + this.state = 557; this.match(SparkSqlParser.KW_ALL); - this.state = 546; + this.state = 558; this.match(SparkSqlParser.KW_COLUMNS); } break; @@ -1433,16 +1440,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AnalyzeTablesContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 549; + this.state = 561; this.match(SparkSqlParser.KW_ANALYZE); - this.state = 550; + this.state = 562; this.match(SparkSqlParser.KW_TABLES); - this.state = 553; + this.state = 565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 551; + this.state = 563; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -1451,21 +1458,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 552; + this.state = 564; this.namespaceName(); } } - this.state = 555; + this.state = 567; this.match(SparkSqlParser.KW_COMPUTE); - this.state = 556; + this.state = 568; this.match(SparkSqlParser.KW_STATISTICS); - this.state = 558; + this.state = 570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 557; + this.state = 569; this.match(SparkSqlParser.KW_NOSCAN); } } @@ -1476,17 +1483,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 560; + this.state = 572; this.match(SparkSqlParser.KW_ALTER); - this.state = 561; + this.state = 573; this.match(SparkSqlParser.KW_TABLE); - this.state = 562; + this.state = 574; this.tableName(); - this.state = 563; + this.state = 575; this.match(SparkSqlParser.KW_ADD); - this.state = 564; + this.state = 576; this.match(SparkSqlParser.KW_COLUMN); - this.state = 565; + this.state = 577; this.qualifiedColTypeWithPositionForAdd(); } break; @@ -1494,21 +1501,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAddColumnsContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 567; + this.state = 579; this.match(SparkSqlParser.KW_ALTER); - this.state = 568; + this.state = 580; this.match(SparkSqlParser.KW_TABLE); - this.state = 569; + this.state = 581; this.tableName(); - this.state = 570; + this.state = 582; this.match(SparkSqlParser.KW_ADD); - this.state = 571; + this.state = 583; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 572; + this.state = 584; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 573; + this.state = 585; this.qualifiedColTypeWithPositionSeqForAdd(); - this.state = 574; + this.state = 586; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1516,21 +1523,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 576; + this.state = 588; this.match(SparkSqlParser.KW_ALTER); - this.state = 577; + this.state = 589; this.match(SparkSqlParser.KW_TABLE); - this.state = 578; + this.state = 590; (localContext as RenameTableColumnContext)._table = this.tableName(); - this.state = 579; + this.state = 591; this.match(SparkSqlParser.KW_RENAME); - this.state = 580; + this.state = 592; this.match(SparkSqlParser.KW_COLUMN); - this.state = 581; + this.state = 593; this.columnName(); - this.state = 582; + this.state = 594; this.match(SparkSqlParser.KW_TO); - this.state = 583; + this.state = 595; this.columnNameCreate(); } break; @@ -1538,27 +1545,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableDropColumnContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 585; + this.state = 597; this.match(SparkSqlParser.KW_ALTER); - this.state = 586; + this.state = 598; this.match(SparkSqlParser.KW_TABLE); - this.state = 587; + this.state = 599; this.tableName(); - this.state = 588; + this.state = 600; this.match(SparkSqlParser.KW_DROP); - this.state = 589; + this.state = 601; this.match(SparkSqlParser.KW_COLUMN); - this.state = 591; + this.state = 603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 590; + this.state = 602; this.ifExists(); } break; } - this.state = 593; + this.state = 605; this.columnName(); } break; @@ -1566,31 +1573,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableColumnsContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 595; + this.state = 607; this.match(SparkSqlParser.KW_ALTER); - this.state = 596; + this.state = 608; this.match(SparkSqlParser.KW_TABLE); - this.state = 597; + this.state = 609; this.tableName(); - this.state = 598; + this.state = 610; this.match(SparkSqlParser.KW_DROP); - this.state = 599; + this.state = 611; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 601; + this.state = 613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 600; + this.state = 612; this.ifExists(); } } - this.state = 603; + this.state = 615; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 604; + this.state = 616; this.columnNameSeq(); - this.state = 605; + this.state = 617; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1598,35 +1605,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 607; + this.state = 619; this.match(SparkSqlParser.KW_ALTER); - this.state = 612; + this.state = 624; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 608; + this.state = 620; this.match(SparkSqlParser.KW_TABLE); - this.state = 609; + this.state = 621; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 610; + this.state = 622; this.match(SparkSqlParser.KW_VIEW); - this.state = 611; + this.state = 623; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 614; + this.state = 626; this.match(SparkSqlParser.KW_RENAME); - this.state = 615; + this.state = 627; this.match(SparkSqlParser.KW_TO); - this.state = 616; + this.state = 628; this.multipartIdentifier(); } break; @@ -1634,35 +1641,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 618; + this.state = 630; this.match(SparkSqlParser.KW_ALTER); - this.state = 623; + this.state = 635; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 619; + this.state = 631; this.match(SparkSqlParser.KW_TABLE); - this.state = 620; + this.state = 632; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 621; + this.state = 633; this.match(SparkSqlParser.KW_VIEW); - this.state = 622; + this.state = 634; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 625; + this.state = 637; this.match(SparkSqlParser.KW_SET); - this.state = 626; + this.state = 638; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 627; + this.state = 639; this.propertyList(); } break; @@ -1670,45 +1677,45 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 629; + this.state = 641; this.match(SparkSqlParser.KW_ALTER); - this.state = 634; + this.state = 646; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 630; + this.state = 642; this.match(SparkSqlParser.KW_TABLE); - this.state = 631; + this.state = 643; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 632; + this.state = 644; this.match(SparkSqlParser.KW_VIEW); - this.state = 633; + this.state = 645; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 636; + this.state = 648; this.match(SparkSqlParser.KW_UNSET); - this.state = 637; + this.state = 649; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 639; + this.state = 651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 638; + this.state = 650; this.ifExists(); } } - this.state = 641; + this.state = 653; this.propertyList(); } break; @@ -1716,13 +1723,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterTableAlterColumnContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 643; + this.state = 655; this.match(SparkSqlParser.KW_ALTER); - this.state = 644; + this.state = 656; this.match(SparkSqlParser.KW_TABLE); - this.state = 645; + this.state = 657; (localContext as AlterTableAlterColumnContext)._table = this.tableName(); - this.state = 646; + this.state = 658; _la = this.tokenStream.LA(1); if(!(_la === 11 || _la === 39)) { this.errorHandler.recoverInline(this); @@ -1731,24 +1738,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 648; + this.state = 660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: { - this.state = 647; + this.state = 659; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 650; + this.state = 662; (localContext as AlterTableAlterColumnContext)._column = this.columnName(); - this.state = 652; + this.state = 664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 35, this.context) ) { case 1: { - this.state = 651; + this.state = 663; this.alterColumnAction(); } break; @@ -1759,44 +1766,44 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveChangeColumnContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 654; + this.state = 666; this.match(SparkSqlParser.KW_ALTER); - this.state = 655; + this.state = 667; this.match(SparkSqlParser.KW_TABLE); - this.state = 656; + this.state = 668; (localContext as HiveChangeColumnContext)._table = this.tableName(); - this.state = 658; + this.state = 670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 657; + this.state = 669; this.partitionSpec(); } } - this.state = 660; + this.state = 672; this.match(SparkSqlParser.KW_CHANGE); - this.state = 662; + this.state = 674; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 661; + this.state = 673; this.match(SparkSqlParser.KW_COLUMN); } break; } - this.state = 664; + this.state = 676; (localContext as HiveChangeColumnContext)._colName = this.columnName(); - this.state = 665; + this.state = 677; this.columnType(); - this.state = 667; + this.state = 679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9 || _la === 116) { { - this.state = 666; + this.state = 678; this.colPosition(); } } @@ -1807,31 +1814,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new HiveReplaceColumnsContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 669; + this.state = 681; this.match(SparkSqlParser.KW_ALTER); - this.state = 670; + this.state = 682; this.match(SparkSqlParser.KW_TABLE); - this.state = 671; + this.state = 683; (localContext as HiveReplaceColumnsContext)._table = this.tableName(); - this.state = 673; + this.state = 685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 672; + this.state = 684; this.partitionSpec(); } } - this.state = 675; + this.state = 687; this.match(SparkSqlParser.KW_REPLACE); - this.state = 676; + this.state = 688; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 677; + this.state = 689; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 678; + this.state = 690; this.qualifiedColTypeWithPositionSeqForReplace(); - this.state = 679; + this.state = 691; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -1839,38 +1846,38 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDeContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 681; + this.state = 693; this.match(SparkSqlParser.KW_ALTER); - this.state = 682; + this.state = 694; this.match(SparkSqlParser.KW_TABLE); - this.state = 683; + this.state = 695; this.tableName(); - this.state = 685; + this.state = 697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 684; + this.state = 696; this.partitionSpec(); } } - this.state = 687; + this.state = 699; this.match(SparkSqlParser.KW_SET); - this.state = 688; + this.state = 700; this.match(SparkSqlParser.KW_SERDE); - this.state = 689; + this.state = 701; this.stringLit(); - this.state = 693; + this.state = 705; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 690; + this.state = 702; this.match(SparkSqlParser.KW_WITH); - this.state = 691; + this.state = 703; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 692; + this.state = 704; this.propertyList(); } break; @@ -1881,27 +1888,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableSerDePropertiesContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 695; + this.state = 707; this.match(SparkSqlParser.KW_ALTER); - this.state = 696; + this.state = 708; this.match(SparkSqlParser.KW_TABLE); - this.state = 697; + this.state = 709; this.tableName(); - this.state = 699; + this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 698; + this.state = 710; this.partitionSpec(); } } - this.state = 701; + this.state = 713; this.match(SparkSqlParser.KW_SET); - this.state = 702; + this.state = 714; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 703; + this.state = 715; this.propertyList(); } break; @@ -1909,53 +1916,53 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AddTablePartitionContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 705; + this.state = 717; this.match(SparkSqlParser.KW_ALTER); - this.state = 710; + this.state = 722; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 706; + this.state = 718; this.match(SparkSqlParser.KW_TABLE); - this.state = 707; + this.state = 719; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 708; + this.state = 720; this.match(SparkSqlParser.KW_VIEW); - this.state = 709; + this.state = 721; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 712; + this.state = 724; this.match(SparkSqlParser.KW_ADD); - this.state = 714; + this.state = 726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 713; + this.state = 725; this.ifNotExists(); } } - this.state = 717; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 716; + this.state = 728; this.partitionSpecLocation(); } } - this.state = 719; + this.state = 731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 217); @@ -1965,19 +1972,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RenameTablePartitionContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 721; + this.state = 733; this.match(SparkSqlParser.KW_ALTER); - this.state = 722; + this.state = 734; this.match(SparkSqlParser.KW_TABLE); - this.state = 723; + this.state = 735; this.tableName(); - this.state = 724; + this.state = 736; this.partitionSpec(); - this.state = 725; + this.state = 737; this.match(SparkSqlParser.KW_RENAME); - this.state = 726; + this.state = 738; this.match(SparkSqlParser.KW_TO); - this.state = 727; + this.state = 739; this.partitionSpec(); } break; @@ -1985,66 +1992,66 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTablePartitionsContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 729; + this.state = 741; this.match(SparkSqlParser.KW_ALTER); - this.state = 734; + this.state = 746; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: { - this.state = 730; + this.state = 742; this.match(SparkSqlParser.KW_TABLE); - this.state = 731; + this.state = 743; this.tableName(); } break; case SparkSqlParser.KW_VIEW: { - this.state = 732; + this.state = 744; this.match(SparkSqlParser.KW_VIEW); - this.state = 733; + this.state = 745; this.viewName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 736; + this.state = 748; this.match(SparkSqlParser.KW_DROP); - this.state = 738; + this.state = 750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 737; + this.state = 749; this.ifExists(); } } - this.state = 740; + this.state = 752; this.partitionSpec(); - this.state = 745; + this.state = 757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 741; + this.state = 753; this.match(SparkSqlParser.COMMA); - this.state = 742; + this.state = 754; this.partitionSpec(); } } - this.state = 747; + this.state = 759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 749; + this.state = 761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 748; + this.state = 760; this.match(SparkSqlParser.KW_PURGE); } } @@ -2055,25 +2062,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTableLocationContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 751; + this.state = 763; this.match(SparkSqlParser.KW_ALTER); - this.state = 752; + this.state = 764; this.match(SparkSqlParser.KW_TABLE); - this.state = 753; + this.state = 765; this.tableName(); - this.state = 755; + this.state = 767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 754; + this.state = 766; this.partitionSpec(); } } - this.state = 757; + this.state = 769; this.match(SparkSqlParser.KW_SET); - this.state = 758; + this.state = 770; this.locationSpec(); } break; @@ -2081,15 +2088,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RecoverPartitionsContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 760; + this.state = 772; this.match(SparkSqlParser.KW_ALTER); - this.state = 761; + this.state = 773; this.match(SparkSqlParser.KW_TABLE); - this.state = 762; + this.state = 774; this.tableName(); - this.state = 763; + this.state = 775; this.match(SparkSqlParser.KW_RECOVER); - this.state = 764; + this.state = 776; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -2097,15 +2104,15 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewRewriteContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 766; + this.state = 778; this.match(SparkSqlParser.KW_ALTER); - this.state = 767; + this.state = 779; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 768; + this.state = 780; this.match(SparkSqlParser.KW_VIEW); - this.state = 769; + this.state = 781; this.viewName(); - this.state = 770; + this.state = 782; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 98)) { this.errorHandler.recoverInline(this); @@ -2114,7 +2121,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 771; + this.state = 783; this.match(SparkSqlParser.KW_REWRITE); } break; @@ -2122,19 +2129,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 773; + this.state = 785; this.match(SparkSqlParser.KW_ALTER); - this.state = 774; + this.state = 786; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 775; + this.state = 787; this.match(SparkSqlParser.KW_VIEW); - this.state = 776; + this.state = 788; this.viewName(); - this.state = 777; + this.state = 789; this.match(SparkSqlParser.KW_SET); - this.state = 778; + this.state = 790; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 779; + this.state = 791; this.propertyList(); } break; @@ -2142,28 +2149,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 781; + this.state = 793; this.match(SparkSqlParser.KW_DROP); - this.state = 782; + this.state = 794; this.match(SparkSqlParser.KW_TABLE); - this.state = 784; + this.state = 796; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 783; + this.state = 795; this.ifExists(); } break; } - this.state = 786; + this.state = 798; this.tableName(); - this.state = 788; + this.state = 800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 230) { { - this.state = 787; + this.state = 799; this.match(SparkSqlParser.KW_PURGE); } } @@ -2174,21 +2181,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 790; + this.state = 802; this.match(SparkSqlParser.KW_DROP); - this.state = 791; + this.state = 803; this.match(SparkSqlParser.KW_VIEW); - this.state = 793; + this.state = 805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 792; + this.state = 804; this.ifExists(); } break; } - this.state = 795; + this.state = 807; this.viewName(); } break; @@ -2196,23 +2203,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 796; + this.state = 808; this.match(SparkSqlParser.KW_DROP); - this.state = 797; + this.state = 809; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 798; + this.state = 810; this.match(SparkSqlParser.KW_VIEW); - this.state = 800; + this.state = 812; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 799; + this.state = 811; this.ifExists(); } break; } - this.state = 802; + this.state = 814; this.viewName(); } break; @@ -2220,86 +2227,86 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 803; + this.state = 815; this.match(SparkSqlParser.KW_CREATE); - this.state = 806; + this.state = 818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 804; + this.state = 816; this.match(SparkSqlParser.KW_OR); - this.state = 805; + this.state = 817; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 812; + this.state = 824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128 || _la === 298) { { - this.state = 809; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 808; + this.state = 820; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 811; + this.state = 823; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 814; + this.state = 826; this.match(SparkSqlParser.KW_VIEW); - this.state = 816; + this.state = 828; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 815; + this.state = 827; this.ifNotExists(); } break; } - this.state = 818; + this.state = 830; this.viewNameCreate(); - this.state = 820; + this.state = 832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 819; + this.state = 831; this.identifierCommentList(); } } - this.state = 830; + this.state = 842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 218 || _la === 297) { { - this.state = 828; + this.state = 840; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_COMMENT: { - this.state = 822; + this.state = 834; this.commentSpec(); } break; case SparkSqlParser.KW_PARTITIONED: { { - this.state = 823; + this.state = 835; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 824; + this.state = 836; this.match(SparkSqlParser.KW_ON); - this.state = 825; + this.state = 837; this.identifierList(); } } @@ -2307,9 +2314,9 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 826; + this.state = 838; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 827; + this.state = 839; this.propertyList(); } } @@ -2318,13 +2325,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 832; + this.state = 844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 833; + this.state = 845; this.match(SparkSqlParser.KW_AS); - this.state = 834; + this.state = 846; this.query(); } break; @@ -2332,60 +2339,60 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateTempViewUsingContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 836; + this.state = 848; this.match(SparkSqlParser.KW_CREATE); - this.state = 839; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 837; + this.state = 849; this.match(SparkSqlParser.KW_OR); - this.state = 838; + this.state = 850; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 842; + this.state = 854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 841; + this.state = 853; this.match(SparkSqlParser.KW_GLOBAL); } } - this.state = 844; + this.state = 856; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 845; + this.state = 857; this.match(SparkSqlParser.KW_VIEW); - this.state = 846; + this.state = 858; this.viewNameCreate(); - this.state = 851; + this.state = 863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 847; + this.state = 859; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 848; + this.state = 860; this.colTypeList(); - this.state = 849; + this.state = 861; this.match(SparkSqlParser.RIGHT_PAREN); } } - this.state = 853; + this.state = 865; this.tableProvider(); - this.state = 856; + this.state = 868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 854; + this.state = 866; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 855; + this.state = 867; this.propertyList(); } } @@ -2396,23 +2403,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new AlterViewQueryContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 858; + this.state = 870; this.match(SparkSqlParser.KW_ALTER); - this.state = 859; + this.state = 871; this.match(SparkSqlParser.KW_VIEW); - this.state = 860; + this.state = 872; this.viewName(); - this.state = 862; + this.state = 874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 861; + this.state = 873; this.match(SparkSqlParser.KW_AS); } } - this.state = 864; + this.state = 876; this.query(); } break; @@ -2420,70 +2427,70 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 866; + this.state = 878; this.match(SparkSqlParser.KW_CREATE); - this.state = 869; + this.state = 881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 208) { { - this.state = 867; + this.state = 879; this.match(SparkSqlParser.KW_OR); - this.state = 868; + this.state = 880; this.match(SparkSqlParser.KW_REPLACE); } } - this.state = 872; + this.state = 884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 871; + this.state = 883; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 874; + this.state = 886; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 876; + this.state = 888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 875; + this.state = 887; this.ifNotExists(); } break; } - this.state = 878; + this.state = 890; this.functionNameCreate(); - this.state = 879; + this.state = 891; this.match(SparkSqlParser.KW_AS); - this.state = 880; + this.state = 892; (localContext as CreateFunctionContext)._className = this.stringLit(); - this.state = 890; + this.state = 902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 881; + this.state = 893; this.match(SparkSqlParser.KW_USING); - this.state = 882; + this.state = 894; this.resource(); - this.state = 887; + this.state = 899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 883; + this.state = 895; this.match(SparkSqlParser.COMMA); - this.state = 884; + this.state = 896; this.resource(); } } - this.state = 889; + this.state = 901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2496,48 +2503,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 892; + this.state = 904; this.match(SparkSqlParser.KW_CREATE); - this.state = 893; + this.state = 905; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 894; + this.state = 906; this.match(SparkSqlParser.KW_VIEW); - this.state = 896; + this.state = 908; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 895; + this.state = 907; this.ifNotExists(); } break; } - this.state = 898; + this.state = 910; this.viewNameCreate(); - this.state = 900; + this.state = 912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 899; + this.state = 911; this.tableProvider(); } } - this.state = 917; + this.state = 929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 45 || _la === 51 || _la === 170 || _la === 207 || _la === 218 || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 67371009) !== 0) || _la === 297) { { - this.state = 915; + this.state = 927; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 902; + this.state = 914; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 903; + this.state = 915; (localContext as CreateMaterializedViewContext)._options = this.propertyList(); } } @@ -2545,57 +2552,57 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 904; + this.state = 916; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 905; + this.state = 917; this.match(SparkSqlParser.KW_BY); - this.state = 906; + this.state = 918; (localContext as CreateMaterializedViewContext)._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 907; + this.state = 919; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 908; + this.state = 920; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 909; + this.state = 921; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 910; + this.state = 922; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 911; + this.state = 923; this.locationSpec(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 912; + this.state = 924; this.commentSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 913; + this.state = 925; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 914; + this.state = 926; (localContext as CreateMaterializedViewContext)._tableProps = this.propertyList(); } } @@ -2604,13 +2611,13 @@ export class SparkSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 919; + this.state = 931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 920; + this.state = 932; this.match(SparkSqlParser.KW_AS); - this.state = 921; + this.state = 933; this.query(); } break; @@ -2618,31 +2625,31 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 923; + this.state = 935; this.match(SparkSqlParser.KW_DROP); - this.state = 925; + this.state = 937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 924; + this.state = 936; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 927; + this.state = 939; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 929; + this.state = 941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 928; + this.state = 940; this.ifExists(); } break; } - this.state = 931; + this.state = 943; this.functionName(); } break; @@ -2650,48 +2657,48 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeclareVariableContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 932; + this.state = 944; this.match(SparkSqlParser.KW_DECLARE); - this.state = 935; + this.state = 947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 933; + this.state = 945; this.match(SparkSqlParser.KW_OR); - this.state = 934; + this.state = 946; this.match(SparkSqlParser.KW_REPLACE); } break; } - this.state = 938; + this.state = 950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 79, this.context) ) { case 1: { - this.state = 937; + this.state = 949; this.match(SparkSqlParser.KW_VARIABLE); } break; } - this.state = 940; + this.state = 952; this.functionName(); - this.state = 942; + this.state = 954; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 80, this.context) ) { case 1: { - this.state = 941; + this.state = 953; this.dataType(); } break; } - this.state = 945; + this.state = 957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 352) { { - this.state = 944; + this.state = 956; this.variableDefaultExpression(); } } @@ -2702,40 +2709,40 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropVariableContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 947; + this.state = 959; this.match(SparkSqlParser.KW_DROP); - this.state = 948; + this.state = 960; this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 949; + this.state = 961; this.match(SparkSqlParser.KW_VARIABLE); - this.state = 951; + this.state = 963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 950; + this.state = 962; this.ifExists(); } break; } - this.state = 956; + this.state = 968; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context) ) { case 1: { - this.state = 953; + this.state = 965; this.tableName(); } break; case 2: { - this.state = 954; + this.state = 966; this.viewName(); } break; case 3: { - this.state = 955; + this.state = 967; this.functionName(); } break; @@ -2746,14 +2753,14 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ExplainStatementContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 958; + this.state = 970; this.match(SparkSqlParser.KW_EXPLAIN); - this.state = 960; + this.state = 972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173) { { - this.state = 959; + this.state = 971; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 58 || _la === 108 || _la === 122 || _la === 173)) { this.errorHandler.recoverInline(this); @@ -2765,7 +2772,7 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 962; + this.state = 974; this.statement(); } break; @@ -2773,16 +2780,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 963; + this.state = 975; this.match(SparkSqlParser.KW_SHOW); - this.state = 964; + this.state = 976; this.match(SparkSqlParser.KW_TABLES); - this.state = 967; + this.state = 979; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { case 1: { - this.state = 965; + this.state = 977; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2791,27 +2798,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 966; + this.state = 978; this.namespaceName(); } break; } - this.state = 973; + this.state = 985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 970; + this.state = 982; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 969; + this.state = 981; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 972; + this.state = 984; (localContext as ShowTablesContext)._pattern = this.stringLit(); } } @@ -2822,18 +2829,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTableExtendedContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 975; + this.state = 987; this.match(SparkSqlParser.KW_SHOW); - this.state = 976; + this.state = 988; this.match(SparkSqlParser.KW_TABLE); - this.state = 977; + this.state = 989; this.match(SparkSqlParser.KW_EXTENDED); - this.state = 980; + this.state = 992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 140) { { - this.state = 978; + this.state = 990; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2842,21 +2849,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 979; + this.state = 991; (localContext as ShowTableExtendedContext)._ns = this.namespaceName(); } } - this.state = 982; + this.state = 994; this.match(SparkSqlParser.KW_LIKE); - this.state = 983; + this.state = 995; (localContext as ShowTableExtendedContext)._pattern = this.stringLit(); - this.state = 985; + this.state = 997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 984; + this.state = 996; this.partitionSpec(); } } @@ -2867,22 +2874,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowTblPropertiesContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 987; + this.state = 999; this.match(SparkSqlParser.KW_SHOW); - this.state = 988; + this.state = 1000; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 989; + this.state = 1001; (localContext as ShowTblPropertiesContext)._table = this.tableName(); - this.state = 994; + this.state = 1006; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 990; + this.state = 1002; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 991; + this.state = 1003; (localContext as ShowTblPropertiesContext)._key = this.propertyKey(); - this.state = 992; + this.state = 1004; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -2893,11 +2900,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 996; + this.state = 1008; this.match(SparkSqlParser.KW_SHOW); - this.state = 997; + this.state = 1009; this.match(SparkSqlParser.KW_COLUMNS); - this.state = 998; + this.state = 1010; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2906,14 +2913,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 999; + this.state = 1011; (localContext as ShowColumnsContext)._table = this.tableName(); - this.state = 1002; + this.state = 1014; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1000; + this.state = 1012; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2922,7 +2929,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1001; + this.state = 1013; this.namespaceName(); } break; @@ -2933,16 +2940,16 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowViewsContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 1004; + this.state = 1016; this.match(SparkSqlParser.KW_SHOW); - this.state = 1005; + this.state = 1017; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1008; + this.state = 1020; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1006; + this.state = 1018; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -2951,27 +2958,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1007; + this.state = 1019; this.namespaceName(); } break; } - this.state = 1014; + this.state = 1026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1011; + this.state = 1023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1010; + this.state = 1022; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1013; + this.state = 1025; (localContext as ShowViewsContext)._pattern = this.stringLit(); } } @@ -2982,18 +2989,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowPartitionsContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 1016; + this.state = 1028; this.match(SparkSqlParser.KW_SHOW); - this.state = 1017; + this.state = 1029; this.match(SparkSqlParser.KW_PARTITIONS); - this.state = 1018; + this.state = 1030; this.tableName(); - this.state = 1020; + this.state = 1032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1019; + this.state = 1031; this.partitionSpec(); } } @@ -3004,26 +3011,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1022; + this.state = 1034; this.match(SparkSqlParser.KW_SHOW); - this.state = 1024; + this.state = 1036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 290 || _la === 331) { { - this.state = 1023; + this.state = 1035; this.functionKind(); } } - this.state = 1026; + this.state = 1038; this.match(SparkSqlParser.KW_FUNCTIONS); - this.state = 1029; + this.state = 1041; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: { - this.state = 1027; + this.state = 1039; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3032,38 +3039,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1028; + this.state = 1040; (localContext as ShowFunctionsContext)._ns = this.namespaceName(); } break; } - this.state = 1038; + this.state = 1050; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1032; + this.state = 1044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { case 1: { - this.state = 1031; + this.state = 1043; this.match(SparkSqlParser.KW_LIKE); } break; } - this.state = 1036; + this.state = 1048; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 99, this.context) ) { case 1: { - this.state = 1034; + this.state = 1046; (localContext as ShowFunctionsContext)._legacy = this.multipartIdentifier(); } break; case 2: { - this.state = 1035; + this.state = 1047; (localContext as ShowFunctionsContext)._pattern = this.stringLit(); } break; @@ -3077,22 +3084,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 1040; + this.state = 1052; this.match(SparkSqlParser.KW_SHOW); - this.state = 1041; + this.state = 1053; this.match(SparkSqlParser.KW_CREATE); - this.state = 1042; + this.state = 1054; this.match(SparkSqlParser.KW_TABLE); - this.state = 1043; + this.state = 1055; this.tableName(); - this.state = 1046; + this.state = 1058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1044; + this.state = 1056; this.match(SparkSqlParser.KW_AS); - this.state = 1045; + this.state = 1057; this.match(SparkSqlParser.KW_SERDE); } } @@ -3103,11 +3110,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCurrentNamespaceContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1048; + this.state = 1060; this.match(SparkSqlParser.KW_SHOW); - this.state = 1049; + this.state = 1061; this.match(SparkSqlParser.KW_CURRENT); - this.state = 1050; + this.state = 1062; this.namespace(); } break; @@ -3115,26 +3122,26 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1051; + this.state = 1063; this.match(SparkSqlParser.KW_SHOW); - this.state = 1052; + this.state = 1064; this.match(SparkSqlParser.KW_CATALOGS); - this.state = 1057; + this.state = 1069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1054; + this.state = 1066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1053; + this.state = 1065; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1056; + this.state = 1068; (localContext as ShowCatalogsContext)._pattern = this.stringLit(); } } @@ -3145,18 +3152,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowMaterializedViewsContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1059; + this.state = 1071; this.match(SparkSqlParser.KW_SHOW); - this.state = 1060; + this.state = 1072; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1061; + this.state = 1073; this.match(SparkSqlParser.KW_VIEWS); - this.state = 1064; + this.state = 1076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1062; + this.state = 1074; _la = this.tokenStream.LA(1); if(!(_la === 123 || _la === 140)) { this.errorHandler.recoverInline(this); @@ -3165,27 +3172,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1063; + this.state = 1075; (localContext as ShowMaterializedViewsContext)._db_name = this.namespaceName(); } break; } - this.state = 1070; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163 || _la === 377 || _la === 378) { { - this.state = 1067; + this.state = 1079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 163) { { - this.state = 1066; + this.state = 1078; this.match(SparkSqlParser.KW_LIKE); } } - this.state = 1069; + this.state = 1081; (localContext as ShowMaterializedViewsContext)._pattern = this.stringLit(); } } @@ -3196,24 +3203,24 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1072; + this.state = 1084; this.match(SparkSqlParser.KW_SHOW); - this.state = 1073; + this.state = 1085; this.match(SparkSqlParser.KW_CREATE); - this.state = 1074; + this.state = 1086; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1075; + this.state = 1087; this.match(SparkSqlParser.KW_VIEW); - this.state = 1076; + this.state = 1088; this.viewName(); - this.state = 1079; + this.state = 1091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1077; + this.state = 1089; this.match(SparkSqlParser.KW_AS); - this.state = 1078; + this.state = 1090; this.match(SparkSqlParser.KW_SERDE); } } @@ -3224,7 +3231,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeFunctionContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1081; + this.state = 1093; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3233,19 +3240,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1082; + this.state = 1094; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1084; + this.state = 1096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1083; + this.state = 1095; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1086; + this.state = 1098; this.describeFuncName(); } break; @@ -3253,7 +3260,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeNamespaceContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1087; + this.state = 1099; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3262,19 +3269,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1088; + this.state = 1100; this.match(SparkSqlParser.KW_DATABASE); - this.state = 1090; + this.state = 1102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { case 1: { - this.state = 1089; + this.state = 1101; this.match(SparkSqlParser.KW_EXTENDED); } break; } - this.state = 1092; + this.state = 1104; this.namespaceName(); } break; @@ -3282,7 +3289,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeRelationContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1093; + this.state = 1105; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3291,22 +3298,22 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1095; + this.state = 1107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1094; + this.state = 1106; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1098; + this.state = 1110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1097; + this.state = 1109; (localContext as DescribeRelationContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 122)) { @@ -3319,24 +3326,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1100; + this.state = 1112; this.tableName(); - this.state = 1102; + this.state = 1114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1101; + this.state = 1113; this.partitionSpec(); } break; } - this.state = 1105; + this.state = 1117; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1104; + this.state = 1116; this.describeColName(); } break; @@ -3347,7 +3354,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DescribeQueryContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1107; + this.state = 1119; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 87)) { this.errorHandler.recoverInline(this); @@ -3356,17 +3363,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1109; + this.state = 1121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 1108; + this.state = 1120; this.match(SparkSqlParser.KW_QUERY); } } - this.state = 1111; + this.state = 1123; this.query(); } break; @@ -3374,17 +3381,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CommentNamespaceContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1112; + this.state = 1124; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1113; + this.state = 1125; this.match(SparkSqlParser.KW_ON); - this.state = 1114; + this.state = 1126; this.namespace(); - this.state = 1115; + this.state = 1127; this.namespaceName(); - this.state = 1116; + this.state = 1128; this.match(SparkSqlParser.KW_IS); - this.state = 1117; + this.state = 1129; this.commentStr(); } break; @@ -3392,17 +3399,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1119; + this.state = 1131; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1120; + this.state = 1132; this.match(SparkSqlParser.KW_ON); - this.state = 1121; + this.state = 1133; this.match(SparkSqlParser.KW_TABLE); - this.state = 1122; + this.state = 1134; this.tableName(); - this.state = 1123; + this.state = 1135; this.match(SparkSqlParser.KW_IS); - this.state = 1124; + this.state = 1136; this.commentStr(); } break; @@ -3410,11 +3417,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshTableContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1126; + this.state = 1138; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1127; + this.state = 1139; this.match(SparkSqlParser.KW_TABLE); - this.state = 1128; + this.state = 1140; this.tableName(); } break; @@ -3422,11 +3429,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshFunctionContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1129; + this.state = 1141; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1130; + this.state = 1142; this.match(SparkSqlParser.KW_FUNCTION); - this.state = 1131; + this.state = 1143; this.functionName(); } break; @@ -3434,32 +3441,32 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshResourceContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1132; + this.state = 1144; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1140; + this.state = 1152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1133; + this.state = 1145; this.stringLit(); } break; case 2: { - this.state = 1137; + this.state = 1149; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1134; + this.state = 1146; this.matchWildcard(); } } } - this.state = 1139; + this.state = 1151; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 115, this.context); } @@ -3472,13 +3479,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1142; + this.state = 1154; this.match(SparkSqlParser.KW_REFRESH); - this.state = 1143; + this.state = 1155; this.match(SparkSqlParser.KW_MATERIALIZED); - this.state = 1144; + this.state = 1156; this.match(SparkSqlParser.KW_VIEW); - this.state = 1145; + this.state = 1157; this.viewName(); } break; @@ -3486,50 +3493,50 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CacheTableContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1146; + this.state = 1158; this.match(SparkSqlParser.KW_CACHE); - this.state = 1148; + this.state = 1160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 1147; + this.state = 1159; this.match(SparkSqlParser.KW_LAZY); } } - this.state = 1150; + this.state = 1162; this.match(SparkSqlParser.KW_TABLE); - this.state = 1151; + this.state = 1163; this.tableName(); - this.state = 1154; + this.state = 1166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1152; + this.state = 1164; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1153; + this.state = 1165; (localContext as CacheTableContext)._options = this.propertyList(); } } - this.state = 1160; + this.state = 1172; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1157; + this.state = 1169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1156; + this.state = 1168; this.match(SparkSqlParser.KW_AS); } } - this.state = 1159; + this.state = 1171; this.query(); } break; @@ -3540,21 +3547,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnCacheTableContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1162; + this.state = 1174; this.match(SparkSqlParser.KW_UNCACHE); - this.state = 1163; + this.state = 1175; this.match(SparkSqlParser.KW_TABLE); - this.state = 1165; + this.state = 1177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1164; + this.state = 1176; this.ifExists(); } break; } - this.state = 1167; + this.state = 1179; this.tableName(); } break; @@ -3562,9 +3569,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ClearCacheContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1168; + this.state = 1180; this.match(SparkSqlParser.KW_CLEAR); - this.state = 1169; + this.state = 1181; this.match(SparkSqlParser.KW_CACHE); } break; @@ -3572,46 +3579,46 @@ export class SparkSqlParser extends SQLParserBase { localContext = new LoadDataContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1170; + this.state = 1182; this.match(SparkSqlParser.KW_LOAD); - this.state = 1171; + this.state = 1183; this.match(SparkSqlParser.KW_DATA); - this.state = 1173; + this.state = 1185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1172; + this.state = 1184; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1175; + this.state = 1187; this.match(SparkSqlParser.KW_INPATH); - this.state = 1176; + this.state = 1188; (localContext as LoadDataContext)._path = this.stringLit(); - this.state = 1178; + this.state = 1190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1177; + this.state = 1189; this.match(SparkSqlParser.KW_OVERWRITE); } } - this.state = 1180; + this.state = 1192; this.match(SparkSqlParser.KW_INTO); - this.state = 1181; + this.state = 1193; this.match(SparkSqlParser.KW_TABLE); - this.state = 1182; + this.state = 1194; this.tableName(); - this.state = 1184; + this.state = 1196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1183; + this.state = 1195; this.partitionSpec(); } } @@ -3622,18 +3629,18 @@ export class SparkSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1186; + this.state = 1198; this.match(SparkSqlParser.KW_TRUNCATE); - this.state = 1187; + this.state = 1199; this.match(SparkSqlParser.KW_TABLE); - this.state = 1188; + this.state = 1200; this.tableName(); - this.state = 1190; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1189; + this.state = 1201; this.partitionSpec(); } } @@ -3644,28 +3651,28 @@ export class SparkSqlParser extends SQLParserBase { localContext = new RepairTableContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1193; + this.state = 1205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1192; + this.state = 1204; this.match(SparkSqlParser.KW_MSCK); } } - this.state = 1195; + this.state = 1207; this.match(SparkSqlParser.KW_REPAIR); - this.state = 1196; + this.state = 1208; this.match(SparkSqlParser.KW_TABLE); - this.state = 1197; + this.state = 1209; this.tableName(); - this.state = 1200; + this.state = 1212; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1198; + this.state = 1210; (localContext as RepairTableContext)._option = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 96 || _la === 289)) { @@ -3675,7 +3682,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1199; + this.state = 1211; this.match(SparkSqlParser.KW_PARTITIONS); } break; @@ -3686,7 +3693,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ManageResourceContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1202; + this.state = 1214; (localContext as ManageResourceContext)._op = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 8 || _la === 167)) { @@ -3696,21 +3703,21 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1203; + this.state = 1215; this.identifier(); - this.state = 1207; + this.state = 1219; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1204; + this.state = 1216; this.matchWildcard(); } } } - this.state = 1209; + this.state = 1221; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 128, this.context); } @@ -3720,23 +3727,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new FailNativeCommandContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1210; + this.state = 1222; this.match(SparkSqlParser.KW_SET); - this.state = 1211; + this.state = 1223; this.match(SparkSqlParser.KW_ROLE); - this.state = 1215; + this.state = 1227; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1212; + this.state = 1224; this.matchWildcard(); } } } - this.state = 1217; + this.state = 1229; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 129, this.context); } @@ -3746,13 +3753,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1218; + this.state = 1230; this.match(SparkSqlParser.KW_SET); - this.state = 1219; + this.state = 1231; this.match(SparkSqlParser.KW_TIME); - this.state = 1220; + this.state = 1232; this.match(SparkSqlParser.KW_ZONE); - this.state = 1221; + this.state = 1233; this.interval(); } break; @@ -3760,13 +3767,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1222; + this.state = 1234; this.match(SparkSqlParser.KW_SET); - this.state = 1223; + this.state = 1235; this.match(SparkSqlParser.KW_TIME); - this.state = 1224; + this.state = 1236; this.match(SparkSqlParser.KW_ZONE); - this.state = 1225; + this.state = 1237; this.timezone(); } break; @@ -3774,25 +3781,25 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetTimeZoneAnyContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1226; + this.state = 1238; this.match(SparkSqlParser.KW_SET); - this.state = 1227; + this.state = 1239; this.match(SparkSqlParser.KW_TIME); - this.state = 1228; + this.state = 1240; this.match(SparkSqlParser.KW_ZONE); - this.state = 1232; + this.state = 1244; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1229; + this.state = 1241; this.matchWildcard(); } } } - this.state = 1234; + this.state = 1246; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 130, this.context); } @@ -3802,9 +3809,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableAssignmentContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1235; + this.state = 1247; this.match(SparkSqlParser.KW_SET); - this.state = 1236; + this.state = 1248; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3813,7 +3820,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1237; + this.state = 1249; this.assignmentList(); } break; @@ -3821,9 +3828,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetVariableMultiAssignmentContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1238; + this.state = 1250; this.match(SparkSqlParser.KW_SET); - this.state = 1239; + this.state = 1251; _la = this.tokenStream.LA(1); if(!(_la === 335 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -3832,19 +3839,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1240; + this.state = 1252; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1241; + this.state = 1253; this.multipartIdentifierList(); - this.state = 1242; + this.state = 1254; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1243; + this.state = 1255; this.match(SparkSqlParser.EQ); - this.state = 1244; + this.state = 1256; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1245; + this.state = 1257; this.query(); - this.state = 1246; + this.state = 1258; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -3852,13 +3859,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1248; + this.state = 1260; this.match(SparkSqlParser.KW_SET); - this.state = 1249; + this.state = 1261; this.configKey(); - this.state = 1250; + this.state = 1262; this.match(SparkSqlParser.EQ); - this.state = 1251; + this.state = 1263; this.configValue(); } break; @@ -3866,30 +3873,30 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAndValueContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1253; + this.state = 1265; this.match(SparkSqlParser.KW_SET); - this.state = 1254; + this.state = 1266; this.configKey(); - this.state = 1262; + this.state = 1274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1255; + this.state = 1267; this.match(SparkSqlParser.EQ); - this.state = 1259; + this.state = 1271; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1256; + this.state = 1268; this.matchWildcard(); } } } - this.state = 1261; + this.state = 1273; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 131, this.context); } @@ -3902,27 +3909,27 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetConfigAnyKeyContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1264; + this.state = 1276; this.match(SparkSqlParser.KW_SET); - this.state = 1268; + this.state = 1280; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1265; + this.state = 1277; this.matchWildcard(); } } } - this.state = 1270; + this.state = 1282; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); } - this.state = 1271; + this.state = 1283; this.match(SparkSqlParser.EQ); - this.state = 1272; + this.state = 1284; this.configValue(); } break; @@ -3930,21 +3937,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new SetAnyContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1273; + this.state = 1285; this.match(SparkSqlParser.KW_SET); - this.state = 1277; + this.state = 1289; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1274; + this.state = 1286; this.matchWildcard(); } } } - this.state = 1279; + this.state = 1291; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } @@ -3954,9 +3961,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetConfigContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1280; + this.state = 1292; this.match(SparkSqlParser.KW_RESET); - this.state = 1281; + this.state = 1293; this.configKey(); } break; @@ -3964,21 +3971,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ResetAnyContext(localContext); this.enterOuterAlt(localContext, 87); { - this.state = 1282; + this.state = 1294; this.match(SparkSqlParser.KW_RESET); - this.state = 1286; + this.state = 1298; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1283; + this.state = 1295; this.matchWildcard(); } } } - this.state = 1288; + this.state = 1300; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 135, this.context); } @@ -3988,62 +3995,62 @@ export class SparkSqlParser extends SQLParserBase { localContext = new CreateIndexContext(localContext); this.enterOuterAlt(localContext, 88); { - this.state = 1289; + this.state = 1301; this.match(SparkSqlParser.KW_CREATE); - this.state = 1290; + this.state = 1302; this.match(SparkSqlParser.KW_INDEX); - this.state = 1292; + this.state = 1304; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1291; + this.state = 1303; this.ifNotExists(); } break; } - this.state = 1294; + this.state = 1306; this.identifier(); - this.state = 1295; + this.state = 1307; this.match(SparkSqlParser.KW_ON); - this.state = 1297; + this.state = 1309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1296; + this.state = 1308; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1299; + this.state = 1311; this.tableName(); - this.state = 1302; + this.state = 1314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1300; + this.state = 1312; this.match(SparkSqlParser.KW_USING); - this.state = 1301; + this.state = 1313; (localContext as CreateIndexContext)._indexType = this.identifier(); } } - this.state = 1304; + this.state = 1316; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1305; + this.state = 1317; this.multipartIdentifierPropertyList(); - this.state = 1306; + this.state = 1318; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 1309; + this.state = 1321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1307; + this.state = 1319; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1308; + this.state = 1320; (localContext as CreateIndexContext)._options = this.propertyList(); } } @@ -4054,35 +4061,35 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DropIndexContext(localContext); this.enterOuterAlt(localContext, 89); { - this.state = 1311; + this.state = 1323; this.match(SparkSqlParser.KW_DROP); - this.state = 1312; + this.state = 1324; this.match(SparkSqlParser.KW_INDEX); - this.state = 1314; + this.state = 1326; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: { - this.state = 1313; + this.state = 1325; this.ifExists(); } break; } - this.state = 1316; + this.state = 1328; this.identifier(); - this.state = 1317; + this.state = 1329; this.match(SparkSqlParser.KW_ON); - this.state = 1319; + this.state = 1331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1318; + this.state = 1330; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1321; + this.state = 1333; this.tableName(); } break; @@ -4090,21 +4097,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new OptimizeTableContext(localContext); this.enterOuterAlt(localContext, 90); { - this.state = 1323; + this.state = 1335; this.match(SparkSqlParser.KW_OPTIMIZE); - this.state = 1324; + this.state = 1336; this.tableName(); - this.state = 1326; + this.state = 1338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1325; + this.state = 1337; this.whereClause(); } } - this.state = 1328; + this.state = 1340; this.zorderClause(); } break; @@ -4112,21 +4119,21 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UnsupportHiveCommandsContext(localContext); this.enterOuterAlt(localContext, 91); { - this.state = 1330; + this.state = 1342; this.unsupportedHiveNativeCommands(); - this.state = 1334; + this.state = 1346; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1331; + this.state = 1343; this.matchWildcard(); } } } - this.state = 1336; + this.state = 1348; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 143, this.context); } @@ -4152,21 +4159,21 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new TimezoneContext(this.context, this.state); this.enterRule(localContext, 6, SparkSqlParser.RULE_timezone); try { - this.state = 1341; + this.state = 1353; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 1339; + this.state = 1351; this.stringLit(); } break; case SparkSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 2); { - this.state = 1340; + this.state = 1352; this.match(SparkSqlParser.KW_LOCAL); } break; @@ -4194,7 +4201,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1355; this.quotedIdentifier(); } } @@ -4218,7 +4225,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1345; + this.state = 1357; this.backQuotedIdentifier(); } } @@ -4241,38 +4248,38 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 12, SparkSqlParser.RULE_unsupportedHiveNativeCommands); let _la: number; try { - this.state = 1515; + this.state = 1527; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1347; + this.state = 1359; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1348; + this.state = 1360; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1349; + this.state = 1361; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1350; + this.state = 1362; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1351; + this.state = 1363; localContext._kw1 = this.match(SparkSqlParser.KW_GRANT); - this.state = 1353; + this.state = 1365; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1352; + this.state = 1364; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4282,14 +4289,14 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1355; + this.state = 1367; localContext._kw1 = this.match(SparkSqlParser.KW_REVOKE); - this.state = 1357; + this.state = 1369; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1356; + this.state = 1368; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); } break; @@ -4299,25 +4306,25 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1359; + this.state = 1371; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1360; + this.state = 1372; localContext._kw2 = this.match(SparkSqlParser.KW_GRANT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1361; + this.state = 1373; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1362; + this.state = 1374; localContext._kw2 = this.match(SparkSqlParser.KW_ROLE); - this.state = 1364; + this.state = 1376; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 1363; + this.state = 1375; localContext._kw3 = this.match(SparkSqlParser.KW_GRANT); } break; @@ -4327,474 +4334,474 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1366; + this.state = 1378; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1367; + this.state = 1379; localContext._kw2 = this.match(SparkSqlParser.KW_PRINCIPALS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1368; + this.state = 1380; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1369; + this.state = 1381; localContext._kw2 = this.match(SparkSqlParser.KW_ROLES); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1370; + this.state = 1382; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1371; + this.state = 1383; localContext._kw2 = this.match(SparkSqlParser.KW_CURRENT); - this.state = 1372; + this.state = 1384; localContext._kw3 = this.match(SparkSqlParser.KW_ROLES); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1373; + this.state = 1385; localContext._kw1 = this.match(SparkSqlParser.KW_EXPORT); - this.state = 1374; + this.state = 1386; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1375; + this.state = 1387; localContext._kw1 = this.match(SparkSqlParser.KW_IMPORT); - this.state = 1376; + this.state = 1388; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1377; + this.state = 1389; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1378; + this.state = 1390; localContext._kw2 = this.match(SparkSqlParser.KW_COMPACTIONS); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1379; + this.state = 1391; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1380; + this.state = 1392; localContext._kw2 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1381; + this.state = 1393; localContext._kw3 = this.match(SparkSqlParser.KW_TABLE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1382; + this.state = 1394; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1383; + this.state = 1395; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTIONS); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1384; + this.state = 1396; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1385; + this.state = 1397; localContext._kw2 = this.match(SparkSqlParser.KW_INDEXES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1386; + this.state = 1398; localContext._kw1 = this.match(SparkSqlParser.KW_SHOW); - this.state = 1387; + this.state = 1399; localContext._kw2 = this.match(SparkSqlParser.KW_LOCKS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1388; + this.state = 1400; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1389; + this.state = 1401; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1390; + this.state = 1402; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1391; + this.state = 1403; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1392; + this.state = 1404; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1393; + this.state = 1405; localContext._kw2 = this.match(SparkSqlParser.KW_INDEX); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1394; + this.state = 1406; localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1395; + this.state = 1407; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1396; + this.state = 1408; localContext._kw1 = this.match(SparkSqlParser.KW_LOCK); - this.state = 1397; + this.state = 1409; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1398; + this.state = 1410; localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1399; + this.state = 1411; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1400; + this.state = 1412; localContext._kw1 = this.match(SparkSqlParser.KW_UNLOCK); - this.state = 1401; + this.state = 1413; localContext._kw2 = this.match(SparkSqlParser.KW_DATABASE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1402; + this.state = 1414; localContext._kw1 = this.match(SparkSqlParser.KW_CREATE); - this.state = 1403; + this.state = 1415; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1404; + this.state = 1416; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1405; + this.state = 1417; localContext._kw1 = this.match(SparkSqlParser.KW_DROP); - this.state = 1406; + this.state = 1418; localContext._kw2 = this.match(SparkSqlParser.KW_TEMPORARY); - this.state = 1407; + this.state = 1419; localContext._kw3 = this.match(SparkSqlParser.KW_MACRO); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1408; + this.state = 1420; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1409; + this.state = 1421; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1410; + this.state = 1422; this.tableName(); - this.state = 1411; + this.state = 1423; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1412; + this.state = 1424; localContext._kw4 = this.match(SparkSqlParser.KW_CLUSTERED); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1414; + this.state = 1426; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1415; + this.state = 1427; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1416; + this.state = 1428; this.tableName(); - this.state = 1417; + this.state = 1429; localContext._kw3 = this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1418; + this.state = 1430; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1420; + this.state = 1432; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1421; + this.state = 1433; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1422; + this.state = 1434; this.tableName(); - this.state = 1423; + this.state = 1435; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1424; + this.state = 1436; localContext._kw4 = this.match(SparkSqlParser.KW_SORTED); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1426; + this.state = 1438; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1427; + this.state = 1439; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1428; + this.state = 1440; this.tableName(); - this.state = 1429; + this.state = 1441; localContext._kw3 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1430; + this.state = 1442; localContext._kw4 = this.match(SparkSqlParser.KW_BY); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1432; + this.state = 1444; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1433; + this.state = 1445; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1434; + this.state = 1446; this.tableName(); - this.state = 1435; + this.state = 1447; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1436; + this.state = 1448; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1438; + this.state = 1450; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1439; + this.state = 1451; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1440; + this.state = 1452; this.tableName(); - this.state = 1441; + this.state = 1453; localContext._kw3 = this.match(SparkSqlParser.KW_NOT); - this.state = 1442; + this.state = 1454; localContext._kw4 = this.match(SparkSqlParser.KW_STORED); - this.state = 1443; + this.state = 1455; localContext._kw5 = this.match(SparkSqlParser.KW_AS); - this.state = 1444; + this.state = 1456; localContext._kw6 = this.match(SparkSqlParser.KW_DIRECTORIES); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1446; + this.state = 1458; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1447; + this.state = 1459; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1448; + this.state = 1460; this.tableName(); - this.state = 1449; + this.state = 1461; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1450; + this.state = 1462; localContext._kw4 = this.match(SparkSqlParser.KW_SKEWED); - this.state = 1451; + this.state = 1463; localContext._kw5 = this.match(SparkSqlParser.KW_LOCATION); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1453; + this.state = 1465; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1454; + this.state = 1466; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1455; + this.state = 1467; this.tableName(); - this.state = 1456; + this.state = 1468; localContext._kw3 = this.match(SparkSqlParser.KW_EXCHANGE); - this.state = 1457; + this.state = 1469; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 1459; + this.state = 1471; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1460; + this.state = 1472; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1461; + this.state = 1473; this.tableName(); - this.state = 1462; + this.state = 1474; localContext._kw3 = this.match(SparkSqlParser.KW_ARCHIVE); - this.state = 1463; + this.state = 1475; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 1465; + this.state = 1477; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1466; + this.state = 1478; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1467; + this.state = 1479; this.tableName(); - this.state = 1468; + this.state = 1480; localContext._kw3 = this.match(SparkSqlParser.KW_UNARCHIVE); - this.state = 1469; + this.state = 1481; localContext._kw4 = this.match(SparkSqlParser.KW_PARTITION); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 1471; + this.state = 1483; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1472; + this.state = 1484; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1473; + this.state = 1485; this.tableName(); - this.state = 1474; + this.state = 1486; localContext._kw3 = this.match(SparkSqlParser.KW_TOUCH); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 1476; + this.state = 1488; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1477; + this.state = 1489; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1478; + this.state = 1490; this.tableName(); - this.state = 1480; + this.state = 1492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1479; + this.state = 1491; this.partitionSpec(); } } - this.state = 1482; + this.state = 1494; localContext._kw3 = this.match(SparkSqlParser.KW_COMPACT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 1484; + this.state = 1496; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1485; + this.state = 1497; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1486; + this.state = 1498; this.tableName(); - this.state = 1488; + this.state = 1500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1487; + this.state = 1499; this.partitionSpec(); } } - this.state = 1490; + this.state = 1502; localContext._kw3 = this.match(SparkSqlParser.KW_CONCATENATE); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 1492; + this.state = 1504; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1493; + this.state = 1505; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1494; + this.state = 1506; this.tableName(); - this.state = 1496; + this.state = 1508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1495; + this.state = 1507; this.partitionSpec(); } } - this.state = 1498; + this.state = 1510; localContext._kw3 = this.match(SparkSqlParser.KW_SET); - this.state = 1499; + this.state = 1511; localContext._kw4 = this.match(SparkSqlParser.KW_FILEFORMAT); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 1501; + this.state = 1513; localContext._kw1 = this.match(SparkSqlParser.KW_ALTER); - this.state = 1502; + this.state = 1514; localContext._kw2 = this.match(SparkSqlParser.KW_TABLE); - this.state = 1503; + this.state = 1515; this.tableName(); - this.state = 1505; + this.state = 1517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1504; + this.state = 1516; this.partitionSpec(); } } - this.state = 1507; + this.state = 1519; localContext._kw3 = this.match(SparkSqlParser.KW_REPLACE); - this.state = 1508; + this.state = 1520; localContext._kw4 = this.match(SparkSqlParser.KW_COLUMNS); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 1510; + this.state = 1522; localContext._kw1 = this.match(SparkSqlParser.KW_START); - this.state = 1511; + this.state = 1523; localContext._kw2 = this.match(SparkSqlParser.KW_TRANSACTION); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 1512; + this.state = 1524; localContext._kw1 = this.match(SparkSqlParser.KW_COMMIT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 1513; + this.state = 1525; localContext._kw1 = this.match(SparkSqlParser.KW_ROLLBACK); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 1514; + this.state = 1526; localContext._kw1 = this.match(SparkSqlParser.KW_DFS); } break; @@ -4821,41 +4828,41 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1517; + this.state = 1529; this.match(SparkSqlParser.KW_CREATE); - this.state = 1519; + this.state = 1531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 1518; + this.state = 1530; this.match(SparkSqlParser.KW_TEMPORARY); } } - this.state = 1522; + this.state = 1534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 1521; + this.state = 1533; this.match(SparkSqlParser.KW_EXTERNAL); } } - this.state = 1524; + this.state = 1536; this.match(SparkSqlParser.KW_TABLE); - this.state = 1526; + this.state = 1538; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 1525; + this.state = 1537; this.ifNotExists(); } break; } - this.state = 1528; + this.state = 1540; this.tableNameCreate(); } } @@ -4880,23 +4887,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1532; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 1530; + this.state = 1542; this.match(SparkSqlParser.KW_CREATE); - this.state = 1531; + this.state = 1543; this.match(SparkSqlParser.KW_OR); } } - this.state = 1534; + this.state = 1546; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1535; + this.state = 1547; this.match(SparkSqlParser.KW_TABLE); - this.state = 1536; + this.state = 1548; this.tableNameCreate(); } } @@ -4921,31 +4928,31 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1538; + this.state = 1550; this.match(SparkSqlParser.KW_CLUSTERED); - this.state = 1539; + this.state = 1551; this.match(SparkSqlParser.KW_BY); - this.state = 1540; + this.state = 1552; this.identifierList(); - this.state = 1544; + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 279) { { - this.state = 1541; + this.state = 1553; this.match(SparkSqlParser.KW_SORTED); - this.state = 1542; + this.state = 1554; this.match(SparkSqlParser.KW_BY); - this.state = 1543; + this.state = 1555; this.orderedIdentifierList(); } } - this.state = 1546; + this.state = 1558; this.match(SparkSqlParser.KW_INTO); - this.state = 1547; + this.state = 1559; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 1548; + this.state = 1560; this.match(SparkSqlParser.KW_BUCKETS); } } @@ -4969,40 +4976,40 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1550; + this.state = 1562; this.match(SparkSqlParser.KW_SKEWED); - this.state = 1551; + this.state = 1563; this.match(SparkSqlParser.KW_BY); - this.state = 1552; + this.state = 1564; this.identifierList(); - this.state = 1553; + this.state = 1565; this.match(SparkSqlParser.KW_ON); - this.state = 1556; + this.state = 1568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1554; + this.state = 1566; this.constantList(); } break; case 2: { - this.state = 1555; + this.state = 1567; this.nestedConstantList(); } break; } - this.state = 1561; + this.state = 1573; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1558; + this.state = 1570; this.match(SparkSqlParser.KW_STORED); - this.state = 1559; + this.state = 1571; this.match(SparkSqlParser.KW_AS); - this.state = 1560; + this.state = 1572; this.match(SparkSqlParser.KW_DIRECTORIES); } break; @@ -5029,9 +5036,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1563; + this.state = 1575; this.match(SparkSqlParser.KW_LOCATION); - this.state = 1564; + this.state = 1576; this.stringLit(); } } @@ -5055,9 +5062,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1566; + this.state = 1578; this.match(SparkSqlParser.KW_COMMENT); - this.state = 1567; + this.state = 1579; localContext._comment = this.stringLit(); } } @@ -5083,19 +5090,19 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1570; + this.state = 1582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 346) { { - this.state = 1569; + this.state = 1581; this.ctes(); } } - this.state = 1572; + this.state = 1584; this.queryTerm(0); - this.state = 1573; + this.state = 1585; this.queryOrganization(); } } @@ -5118,41 +5125,41 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 28, SparkSqlParser.RULE_insertInto); let _la: number; try { - this.state = 1651; + this.state = 1663; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1575; + this.state = 1587; this.match(SparkSqlParser.KW_INSERT); - this.state = 1576; + this.state = 1588; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1578; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1577; + this.state = 1589; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1580; + this.state = 1592; this.tableName(); - this.state = 1585; + this.state = 1597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1581; + this.state = 1593; this.partitionSpec(); - this.state = 1583; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1582; + this.state = 1594; this.ifNotExists(); } } @@ -5160,15 +5167,15 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 1593; + this.state = 1605; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 165, this.context) ) { case 1: { { - this.state = 1587; + this.state = 1599; this.match(SparkSqlParser.KW_BY); - this.state = 1588; + this.state = 1600; this.match(SparkSqlParser.KW_NAME); } } @@ -5176,11 +5183,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1589; + this.state = 1601; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1590; + this.state = 1602; this.columnNameSeq(); - this.state = 1591; + this.state = 1603; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5191,51 +5198,51 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1595; + this.state = 1607; this.match(SparkSqlParser.KW_INSERT); - this.state = 1596; + this.state = 1608; this.match(SparkSqlParser.KW_INTO); - this.state = 1598; + this.state = 1610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1597; + this.state = 1609; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1600; + this.state = 1612; this.tableName(); - this.state = 1602; + this.state = 1614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217) { { - this.state = 1601; + this.state = 1613; this.partitionSpec(); } } - this.state = 1605; + this.state = 1617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 1604; + this.state = 1616; this.ifNotExists(); } } - this.state = 1613; + this.state = 1625; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { { - this.state = 1607; + this.state = 1619; this.match(SparkSqlParser.KW_BY); - this.state = 1608; + this.state = 1620; this.match(SparkSqlParser.KW_NAME); } } @@ -5243,11 +5250,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: { { - this.state = 1609; + this.state = 1621; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1610; + this.state = 1622; this.columnNameSeq(); - this.state = 1611; + this.state = 1623; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5258,65 +5265,65 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1615; + this.state = 1627; this.match(SparkSqlParser.KW_INSERT); - this.state = 1616; + this.state = 1628; this.match(SparkSqlParser.KW_INTO); - this.state = 1618; + this.state = 1630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293) { { - this.state = 1617; + this.state = 1629; this.match(SparkSqlParser.KW_TABLE); } } - this.state = 1620; + this.state = 1632; this.tableName(); - this.state = 1621; + this.state = 1633; this.match(SparkSqlParser.KW_REPLACE); - this.state = 1622; + this.state = 1634; this.whereClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1624; + this.state = 1636; this.match(SparkSqlParser.KW_INSERT); - this.state = 1625; + this.state = 1637; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1627; + this.state = 1639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1626; + this.state = 1638; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1629; + this.state = 1641; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1630; + this.state = 1642; localContext._path = this.stringLit(); - this.state = 1632; + this.state = 1644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1631; + this.state = 1643; this.rowFormat(); } } - this.state = 1635; + this.state = 1647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 283) { { - this.state = 1634; + this.state = 1646; this.createFileFormat(); } } @@ -5326,42 +5333,42 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1637; + this.state = 1649; this.match(SparkSqlParser.KW_INSERT); - this.state = 1638; + this.state = 1650; this.match(SparkSqlParser.KW_OVERWRITE); - this.state = 1640; + this.state = 1652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1639; + this.state = 1651; this.match(SparkSqlParser.KW_LOCAL); } } - this.state = 1642; + this.state = 1654; this.match(SparkSqlParser.KW_DIRECTORY); - this.state = 1644; + this.state = 1656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 377 || _la === 378) { { - this.state = 1643; + this.state = 1655; localContext._path = this.stringLit(); } } - this.state = 1646; + this.state = 1658; this.tableProvider(); - this.state = 1649; + this.state = 1661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 1647; + this.state = 1659; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1648; + this.state = 1660; localContext._options = this.propertyList(); } } @@ -5391,14 +5398,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1653; + this.state = 1665; this.partitionSpec(); - this.state = 1655; + this.state = 1667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 170) { { - this.state = 1654; + this.state = 1666; this.locationSpec(); } } @@ -5426,29 +5433,29 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1669; this.match(SparkSqlParser.KW_PARTITION); - this.state = 1658; + this.state = 1670; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1659; + this.state = 1671; this.partitionVal(); - this.state = 1664; + this.state = 1676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1660; + this.state = 1672; this.match(SparkSqlParser.COMMA); - this.state = 1661; + this.state = 1673; this.partitionVal(); } } - this.state = 1666; + this.state = 1678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1667; + this.state = 1679; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5471,22 +5478,22 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 34, SparkSqlParser.RULE_partitionVal); let _la: number; try { - this.state = 1678; + this.state = 1690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1669; + this.state = 1681; this.identifier(); - this.state = 1672; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1670; + this.state = 1682; this.match(SparkSqlParser.EQ); - this.state = 1671; + this.state = 1683; this.constant(); } } @@ -5496,11 +5503,11 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1674; + this.state = 1686; this.identifier(); - this.state = 1675; + this.state = 1687; this.match(SparkSqlParser.EQ); - this.state = 1676; + this.state = 1688; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -5527,7 +5534,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1680; + this.state = 1692; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 190 || _la === 261)) { this.errorHandler.recoverInline(this); @@ -5559,7 +5566,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1682; + this.state = 1694; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 191 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -5588,41 +5595,41 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new DescribeFuncNameContext(this.context, this.state); this.enterRule(localContext, 40, SparkSqlParser.RULE_describeFuncName); try { - this.state = 1689; + this.state = 1701; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1684; + this.state = 1696; this.identifierReference(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1685; + this.state = 1697; this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1686; + this.state = 1698; this.comparisonOperator(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1687; + this.state = 1699; this.arithmeticOperator(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1688; + this.state = 1700; this.predicateOperator(); } break; @@ -5649,23 +5656,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1691; + this.state = 1703; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); - this.state = 1696; + this.state = 1708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1692; + this.state = 1704; this.match(SparkSqlParser.DOT); - this.state = 1693; + this.state = 1705; localContext._identifier = this.identifier(); localContext._nameParts.push(localContext._identifier); } } - this.state = 1698; + this.state = 1710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5692,23 +5699,23 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1699; + this.state = 1711; this.match(SparkSqlParser.KW_WITH); - this.state = 1700; + this.state = 1712; this.namedQuery(); - this.state = 1705; + this.state = 1717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1701; + this.state = 1713; this.match(SparkSqlParser.COMMA); - this.state = 1702; + this.state = 1714; this.namedQuery(); } } - this.state = 1707; + this.state = 1719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5735,33 +5742,33 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1708; + this.state = 1720; localContext._name = this.errorCapturingIdentifier(); - this.state = 1710; + this.state = 1722; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1709; + this.state = 1721; localContext._columnAliases = this.identifierList(); } break; } - this.state = 1713; + this.state = 1725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 1712; + this.state = 1724; this.match(SparkSqlParser.KW_AS); } } - this.state = 1715; + this.state = 1727; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1716; + this.state = 1728; this.query(); - this.state = 1717; + this.state = 1729; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5785,9 +5792,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1719; + this.state = 1731; this.match(SparkSqlParser.KW_USING); - this.state = 1720; + this.state = 1732; this.multipartIdentifier(); } } @@ -5812,21 +5819,21 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1750; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1736; + this.state = 1748; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_OPTIONS: { { - this.state = 1722; + this.state = 1734; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 1723; + this.state = 1735; localContext._options = this.expressionPropertyList(); } } @@ -5834,64 +5841,64 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITIONED: { { - this.state = 1724; + this.state = 1736; this.match(SparkSqlParser.KW_PARTITIONED); - this.state = 1725; + this.state = 1737; this.match(SparkSqlParser.KW_BY); - this.state = 1726; + this.state = 1738; localContext._partitioning = this.partitionFieldList(); } } break; case SparkSqlParser.KW_SKEWED: { - this.state = 1727; + this.state = 1739; this.skewSpec(); } break; case SparkSqlParser.KW_CLUSTERED: { - this.state = 1728; + this.state = 1740; this.bucketSpec(); } break; case SparkSqlParser.KW_ROW: { - this.state = 1729; + this.state = 1741; this.rowFormat(); } break; case SparkSqlParser.KW_STORED: { - this.state = 1730; + this.state = 1742; this.createFileFormat(); } break; case SparkSqlParser.KW_LOCATION: { - this.state = 1731; + this.state = 1743; this.locationSpec(); } break; case SparkSqlParser.KW_COMMENT: { - this.state = 1732; + this.state = 1744; this.commentSpec(); } break; case SparkSqlParser.KW_TBLPROPERTIES: { { - this.state = 1733; + this.state = 1745; this.match(SparkSqlParser.KW_TBLPROPERTIES); - this.state = 1734; + this.state = 1746; localContext._tableProps = this.propertyList(); } } break; case SparkSqlParser.KW_LIFECYCLE: { - this.state = 1735; + this.state = 1747; this.tableLifecycle(); } break; @@ -5900,7 +5907,7 @@ export class SparkSqlParser extends SQLParserBase { } } } - this.state = 1740; + this.state = 1752; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 188, this.context); } @@ -5926,9 +5933,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1741; + this.state = 1753; this.match(SparkSqlParser.KW_LIFECYCLE); - this.state = 1742; + this.state = 1754; this.match(SparkSqlParser.INTEGER_VALUE); } } @@ -5953,27 +5960,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1744; + this.state = 1756; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1745; + this.state = 1757; this.property(); - this.state = 1750; + this.state = 1762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1746; + this.state = 1758; this.match(SparkSqlParser.COMMA); - this.state = 1747; + this.state = 1759; this.property(); } } - this.state = 1752; + this.state = 1764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1753; + this.state = 1765; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -5998,24 +6005,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1767; localContext._key = this.propertyKey(); - this.state = 1760; + this.state = 1772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111 || _la === 316 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 1174405121) !== 0) || _la === 384) { { - this.state = 1757; + this.state = 1769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1756; + this.state = 1768; this.match(SparkSqlParser.EQ); } } - this.state = 1759; + this.state = 1771; localContext._value = this.propertyValue(); } } @@ -6041,27 +6048,27 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 58, SparkSqlParser.RULE_propertyKey); let _la: number; try { - this.state = 1771; + this.state = 1783; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1762; + this.state = 1774; this.identifier(); - this.state = 1767; + this.state = 1779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 5) { { { - this.state = 1763; + this.state = 1775; this.match(SparkSqlParser.DOT); - this.state = 1764; + this.state = 1776; this.identifier(); } } - this.state = 1769; + this.state = 1781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6070,7 +6077,7 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1770; + this.state = 1782; this.stringLit(); } break; @@ -6094,20 +6101,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 60, SparkSqlParser.RULE_propertyValue); try { - this.state = 1777; + this.state = 1789; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1785; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1774; + this.state = 1786; this.match(SparkSqlParser.DECIMAL_VALUE); } break; @@ -6115,7 +6122,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 1775; + this.state = 1787; this.booleanValue(); } break; @@ -6123,7 +6130,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 4); { - this.state = 1776; + this.state = 1788; this.stringLit(); } break; @@ -6152,27 +6159,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1779; + this.state = 1791; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1780; + this.state = 1792; this.expressionProperty(); - this.state = 1785; + this.state = 1797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1781; + this.state = 1793; this.match(SparkSqlParser.COMMA); - this.state = 1782; + this.state = 1794; this.expressionProperty(); } } - this.state = 1787; + this.state = 1799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1788; + this.state = 1800; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6197,24 +6204,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1790; + this.state = 1802; localContext._key = this.propertyKey(); - this.state = 1795; + this.state = 1807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & 4294967233) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 4294967295) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 4294967295) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 4261412863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4294967295) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4294967295) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4294967291) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4294967295) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4294967263) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 4294967287) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 2147483647) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 1792; + this.state = 1804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1791; + this.state = 1803; this.match(SparkSqlParser.EQ); } } - this.state = 1794; + this.state = 1806; localContext._value = this.expression(); } } @@ -6242,27 +6249,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1797; + this.state = 1809; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1798; + this.state = 1810; this.constant(); - this.state = 1803; + this.state = 1815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1799; + this.state = 1811; this.match(SparkSqlParser.COMMA); - this.state = 1800; + this.state = 1812; this.constant(); } } - this.state = 1805; + this.state = 1817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1806; + this.state = 1818; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6287,27 +6294,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1820; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1809; + this.state = 1821; this.constantList(); - this.state = 1814; + this.state = 1826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1810; + this.state = 1822; this.match(SparkSqlParser.COMMA); - this.state = 1811; + this.state = 1823; this.constantList(); } } - this.state = 1816; + this.state = 1828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1817; + this.state = 1829; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -6329,28 +6336,28 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new CreateFileFormatContext(this.context, this.state); this.enterRule(localContext, 70, SparkSqlParser.RULE_createFileFormat); try { - this.state = 1825; + this.state = 1837; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1831; this.match(SparkSqlParser.KW_STORED); - this.state = 1820; + this.state = 1832; this.match(SparkSqlParser.KW_AS); - this.state = 1821; + this.state = 1833; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1822; + this.state = 1834; this.match(SparkSqlParser.KW_STORED); - this.state = 1823; + this.state = 1835; this.match(SparkSqlParser.KW_BY); - this.state = 1824; + this.state = 1836; this.storageHandler(); } break; @@ -6374,26 +6381,26 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new FileFormatContext(this.context, this.state); this.enterRule(localContext, 72, SparkSqlParser.RULE_fileFormat); try { - this.state = 1833; + this.state = 1845; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1827; + this.state = 1839; this.match(SparkSqlParser.KW_INPUTFORMAT); - this.state = 1828; + this.state = 1840; localContext._inFmt = this.stringLit(); - this.state = 1829; + this.state = 1841; this.match(SparkSqlParser.KW_OUTPUTFORMAT); - this.state = 1830; + this.state = 1842; localContext._outFmt = this.stringLit(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1832; + this.state = 1844; this.identifier(); } break; @@ -6419,18 +6426,18 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1835; + this.state = 1847; this.stringLit(); - this.state = 1839; + this.state = 1851; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 1836; + this.state = 1848; this.match(SparkSqlParser.KW_WITH); - this.state = 1837; + this.state = 1849; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 1838; + this.state = 1850; this.propertyList(); } break; @@ -6457,9 +6464,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1853; this.identifier(); - this.state = 1842; + this.state = 1854; this.stringLit(); } } @@ -6483,16 +6490,16 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1900; + this.state = 1912; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_INSERT: localContext = new InsertFromQueryContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1844; + this.state = 1856; this.insertInto(); - this.state = 1845; + this.state = 1857; this.query(); } break; @@ -6500,9 +6507,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MultipleInsertContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1847; + this.state = 1859; this.fromClause(); - this.state = 1849; + this.state = 1861; this.errorHandler.sync(this); alternative = 1; do { @@ -6510,7 +6517,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 1848; + this.state = 1860; this.multiInsertQueryBody(); } } @@ -6518,7 +6525,7 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1851; + this.state = 1863; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 203, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -6528,20 +6535,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new DeleteFromTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1853; + this.state = 1865; this.match(SparkSqlParser.KW_DELETE); - this.state = 1854; + this.state = 1866; this.match(SparkSqlParser.KW_FROM); - this.state = 1855; + this.state = 1867; this.tableName(); - this.state = 1856; + this.state = 1868; this.tableAlias(); - this.state = 1858; + this.state = 1870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1857; + this.state = 1869; this.whereClause(); } } @@ -6552,20 +6559,20 @@ export class SparkSqlParser extends SQLParserBase { localContext = new UpdateTableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1860; + this.state = 1872; this.match(SparkSqlParser.KW_UPDATE); - this.state = 1861; + this.state = 1873; this.tableName(); - this.state = 1862; + this.state = 1874; this.tableAlias(); - this.state = 1863; + this.state = 1875; this.setClause(); - this.state = 1865; + this.state = 1877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 344) { { - this.state = 1864; + this.state = 1876; this.whereClause(); } } @@ -6576,17 +6583,17 @@ export class SparkSqlParser extends SQLParserBase { localContext = new MergeIntoTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1867; + this.state = 1879; this.match(SparkSqlParser.KW_MERGE); - this.state = 1868; + this.state = 1880; this.match(SparkSqlParser.KW_INTO); - this.state = 1869; + this.state = 1881; (localContext as MergeIntoTableContext)._target = this.tableName(); - this.state = 1870; + this.state = 1882; (localContext as MergeIntoTableContext)._targetAlias = this.tableAlias(); - this.state = 1871; + this.state = 1883; this.match(SparkSqlParser.KW_USING); - this.state = 1877; + this.state = 1889; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -6933,72 +6940,72 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1872; + this.state = 1884; (localContext as MergeIntoTableContext)._source = this.identifierReference(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 1873; + this.state = 1885; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1874; + this.state = 1886; (localContext as MergeIntoTableContext)._sourceQuery = this.query(); - this.state = 1875; + this.state = 1887; this.match(SparkSqlParser.RIGHT_PAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1879; + this.state = 1891; (localContext as MergeIntoTableContext)._sourceAlias = this.tableAlias(); - this.state = 1880; + this.state = 1892; this.match(SparkSqlParser.KW_ON); - this.state = 1881; + this.state = 1893; (localContext as MergeIntoTableContext)._mergeCondition = this.booleanExpression(0); - this.state = 1885; + this.state = 1897; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1882; + this.state = 1894; this.matchedClause(); } } } - this.state = 1887; + this.state = 1899; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 207, this.context); } - this.state = 1891; + this.state = 1903; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1888; + this.state = 1900; this.notMatchedClause(); } } } - this.state = 1893; + this.state = 1905; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 208, this.context); } - this.state = 1897; + this.state = 1909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 343) { { { - this.state = 1894; + this.state = 1906; this.notMatchedBySourceClause(); } } - this.state = 1899; + this.state = 1911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7028,7 +7035,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1902; + this.state = 1914; this.identifierReference(); } } @@ -7052,7 +7059,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1904; + this.state = 1916; this.identifierReference(); } } @@ -7076,7 +7083,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1918; this.tableIdentifier(); } } @@ -7100,7 +7107,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1908; + this.state = 1920; this.tableIdentifier(); } } @@ -7124,7 +7131,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1910; + this.state = 1922; this.viewIdentifier(); } } @@ -7148,7 +7155,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1912; + this.state = 1924; this.viewIdentifier(); } } @@ -7170,20 +7177,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 92, SparkSqlParser.RULE_columnName); try { - this.state = 1916; + this.state = 1928; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1914; + this.state = 1926; this.multipartIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1915; + this.state = 1927; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -7212,21 +7219,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1918; + this.state = 1930; this.columnName(); - this.state = 1923; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 1919; + this.state = 1931; this.match(SparkSqlParser.COMMA); - this.state = 1920; + this.state = 1932; this.columnName(); } } - this.state = 1925; + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7252,7 +7259,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1926; + this.state = 1938; this.errorCapturingIdentifier(); } } @@ -7274,26 +7281,26 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new IdentifierReferenceContext(this.context, this.state); this.enterRule(localContext, 98, SparkSqlParser.RULE_identifierReference); try { - this.state = 1934; + this.state = 1946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1928; + this.state = 1940; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 1929; + this.state = 1941; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 1930; + this.state = 1942; this.expression(); - this.state = 1931; + this.state = 1943; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1933; + this.state = 1945; this.multipartIdentifier(); } break; @@ -7320,171 +7327,171 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1946; + this.state = 1958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1936; + this.state = 1948; this.match(SparkSqlParser.KW_ORDER); - this.state = 1937; + this.state = 1949; this.match(SparkSqlParser.KW_BY); - this.state = 1938; + this.state = 1950; localContext._sortItem = this.sortItem(); localContext._order.push(localContext._sortItem); - this.state = 1943; + this.state = 1955; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1939; + this.state = 1951; this.match(SparkSqlParser.COMMA); - this.state = 1940; + this.state = 1952; localContext._sortItem = this.sortItem(); localContext._order.push(localContext._sortItem); } } } - this.state = 1945; + this.state = 1957; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 214, this.context); } } break; } - this.state = 1958; + this.state = 1970; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1948; + this.state = 1960; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 1949; + this.state = 1961; this.match(SparkSqlParser.KW_BY); - this.state = 1950; + this.state = 1962; localContext._expression = this.expression(); localContext._clusterBy.push(localContext._expression); - this.state = 1955; + this.state = 1967; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1951; + this.state = 1963; this.match(SparkSqlParser.COMMA); - this.state = 1952; + this.state = 1964; localContext._expression = this.expression(); localContext._clusterBy.push(localContext._expression); } } } - this.state = 1957; + this.state = 1969; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } } break; } - this.state = 1970; + this.state = 1982; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 1960; + this.state = 1972; this.match(SparkSqlParser.KW_DISTRIBUTE); - this.state = 1961; + this.state = 1973; this.match(SparkSqlParser.KW_BY); - this.state = 1962; + this.state = 1974; localContext._expression = this.expression(); localContext._distributeBy.push(localContext._expression); - this.state = 1967; + this.state = 1979; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1963; + this.state = 1975; this.match(SparkSqlParser.COMMA); - this.state = 1964; + this.state = 1976; localContext._expression = this.expression(); localContext._distributeBy.push(localContext._expression); } } } - this.state = 1969; + this.state = 1981; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); } } break; } - this.state = 1982; + this.state = 1994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1972; + this.state = 1984; this.match(SparkSqlParser.KW_SORT); - this.state = 1973; + this.state = 1985; this.match(SparkSqlParser.KW_BY); - this.state = 1974; + this.state = 1986; localContext._sortItem = this.sortItem(); localContext._sort.push(localContext._sortItem); - this.state = 1979; + this.state = 1991; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1975; + this.state = 1987; this.match(SparkSqlParser.COMMA); - this.state = 1976; + this.state = 1988; localContext._sortItem = this.sortItem(); localContext._sort.push(localContext._sortItem); } } } - this.state = 1981; + this.state = 1993; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 220, this.context); } } break; } - this.state = 1985; + this.state = 1997; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 1984; + this.state = 1996; this.windowClause(); } break; } - this.state = 1992; + this.state = 2004; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 1987; + this.state = 1999; this.match(SparkSqlParser.KW_LIMIT); - this.state = 1990; + this.state = 2002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1988; + this.state = 2000; this.match(SparkSqlParser.KW_ALL); } break; case 2: { - this.state = 1989; + this.state = 2001; localContext._limit = this.expression(); } break; @@ -7492,14 +7499,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 1996; + this.state = 2008; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 1994; + this.state = 2006; this.match(SparkSqlParser.KW_OFFSET); - this.state = 1995; + this.state = 2007; localContext._offset = this.expression(); } break; @@ -7526,9 +7533,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 2010; this.insertInto(); - this.state = 1999; + this.state = 2011; this.fromStatementBody(); } } @@ -7566,11 +7573,11 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 2002; + this.state = 2014; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2024; + this.state = 2036; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -7580,7 +7587,7 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2022; + this.state = 2034; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: @@ -7588,11 +7595,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2004; + this.state = 2016; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2005; + this.state = 2017; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 148 || _la === 270 || _la === 323)) { @@ -7602,17 +7609,17 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2007; + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2006; + this.state = 2018; this.setQuantifier(); } } - this.state = 2009; + this.state = 2021; localContext._right = this.queryTerm(4); } break; @@ -7621,23 +7628,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2010; + this.state = 2022; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2011; + this.state = 2023; localContext._operator = this.match(SparkSqlParser.KW_INTERSECT); - this.state = 2013; + this.state = 2025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2012; + this.state = 2024; this.setQuantifier(); } } - this.state = 2015; + this.state = 2027; localContext._right = this.queryTerm(3); } break; @@ -7646,11 +7653,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new QueryTermContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_queryTerm); - this.state = 2016; + this.state = 2028; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2017; + this.state = 2029; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 270 || _la === 323)) { @@ -7660,24 +7667,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2019; + this.state = 2031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 92) { { - this.state = 2018; + this.state = 2030; this.setQuantifier(); } } - this.state = 2021; + this.state = 2033; localContext._right = this.queryTerm(2); } break; } } } - this.state = 2026; + this.state = 2038; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } @@ -7701,7 +7708,8 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new QueryPrimaryContext(this.context, this.state); this.enterRule(localContext, 106, SparkSqlParser.RULE_queryPrimary); try { - this.state = 2036; + let alternative: number; + this.state = 2058; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_MAP: @@ -7709,41 +7717,63 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2027; + this.state = 2039; this.querySpecification(); } break; case SparkSqlParser.KW_FROM: this.enterOuterAlt(localContext, 2); { - this.state = 2028; + this.state = 2040; this.fromStatement(); } break; case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 3); { - this.state = 2029; + this.state = 2041; this.match(SparkSqlParser.KW_TABLE); - this.state = 2030; + this.state = 2042; this.tableName(); } break; case SparkSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 4); { - this.state = 2031; - this.inlineTable(); + this.state = 2043; + this.match(SparkSqlParser.KW_VALUES); + this.state = 2044; + this.expression(); + this.state = 2049; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2045; + this.match(SparkSqlParser.COMMA); + this.state = 2046; + this.expression(); + } + } + } + this.state = 2051; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); + } + this.state = 2052; + this.tableAlias(); } break; case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 5); { - this.state = 2032; + this.state = 2054; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2033; + this.state = 2055; this.query(); - this.state = 2034; + this.state = 2056; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -7772,28 +7802,28 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2040; + this.state = 2062; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 2038; + this.state = 2060; this.columnName(); } break; case 2: { - this.state = 2039; + this.state = 2061; this.expression(); } break; } - this.state = 2043; + this.state = 2065; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2042; + this.state = 2064; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -7806,14 +7836,14 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2047; + this.state = 2069; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 2045; + this.state = 2067; this.match(SparkSqlParser.KW_NULLS); - this.state = 2046; + this.state = 2068; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 157)) { @@ -7849,9 +7879,9 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2049; + this.state = 2071; this.fromClause(); - this.state = 2051; + this.state = 2073; this.errorHandler.sync(this); alternative = 1; do { @@ -7859,7 +7889,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 2050; + this.state = 2072; this.fromStatementBody(); } } @@ -7867,9 +7897,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2053; + this.state = 2075; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 235, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -7892,90 +7922,90 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 112, SparkSqlParser.RULE_fromStatementBody); try { let alternative: number; - this.state = 2082; + this.state = 2104; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2055; + this.state = 2077; this.transformClause(); - this.state = 2057; + this.state = 2079; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 2056; + this.state = 2078; this.whereClause(); } break; } - this.state = 2059; + this.state = 2081; this.queryOrganization(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2061; + this.state = 2083; this.selectClause(); - this.state = 2065; + this.state = 2087; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2062; + this.state = 2084; this.lateralView(); } } } - this.state = 2067; + this.state = 2089; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); } - this.state = 2069; + this.state = 2091; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: { - this.state = 2068; + this.state = 2090; this.whereClause(); } break; } - this.state = 2072; + this.state = 2094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { case 1: { - this.state = 2071; + this.state = 2093; this.aggregationClause(); } break; } - this.state = 2075; + this.state = 2097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 240, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2074; + this.state = 2096; this.havingClause(); } break; } - this.state = 2078; + this.state = 2100; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2077; + this.state = 2099; this.windowClause(); } break; } - this.state = 2080; + this.state = 2102; this.queryOrganization(); } break; @@ -8000,76 +8030,76 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 114, SparkSqlParser.RULE_querySpecification); try { let alternative: number; - this.state = 2128; + this.state = 2150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2084; + this.state = 2106; this.transformClause(); - this.state = 2086; + this.state = 2108; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 2085; + this.state = 2107; this.fromClause(); } break; } - this.state = 2091; + this.state = 2113; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 245, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2088; + this.state = 2110; this.lateralView(); } } } - this.state = 2093; + this.state = 2115; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 244, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 245, this.context); } - this.state = 2095; + this.state = 2117; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: { - this.state = 2094; + this.state = 2116; this.whereClause(); } break; } - this.state = 2098; + this.state = 2120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2097; + this.state = 2119; this.aggregationClause(); } break; } - this.state = 2101; + this.state = 2123; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 2100; + this.state = 2122; this.havingClause(); } break; } - this.state = 2104; + this.state = 2126; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2103; + this.state = 2125; this.windowClause(); } break; @@ -8079,70 +8109,70 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2106; + this.state = 2128; this.selectClause(); - this.state = 2108; + this.state = 2130; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2107; + this.state = 2129; this.fromClause(); } break; } - this.state = 2113; + this.state = 2135; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2110; + this.state = 2132; this.lateralView(); } } } - this.state = 2115; + this.state = 2137; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 250, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); } - this.state = 2117; + this.state = 2139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2116; + this.state = 2138; this.whereClause(); } break; } - this.state = 2120; + this.state = 2142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: { - this.state = 2119; + this.state = 2141; this.aggregationClause(); } break; } - this.state = 2123; + this.state = 2145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2122; + this.state = 2144; this.havingClause(); } break; } - this.state = 2126; + this.state = 2148; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2125; + this.state = 2147; this.windowClause(); } break; @@ -8172,142 +8202,142 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2149; + this.state = 2171; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_SELECT: { - this.state = 2130; + this.state = 2152; this.match(SparkSqlParser.KW_SELECT); - this.state = 2131; + this.state = 2153; localContext._kind = this.match(SparkSqlParser.KW_TRANSFORM); - this.state = 2132; + this.state = 2154; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2134; + this.state = 2156; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2133; + this.state = 2155; this.setQuantifier(); } break; } - this.state = 2136; + this.state = 2158; this.expressionSeq(); - this.state = 2137; + this.state = 2159; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_MAP: { - this.state = 2139; + this.state = 2161; localContext._kind = this.match(SparkSqlParser.KW_MAP); - this.state = 2141; + this.state = 2163; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2140; + this.state = 2162; this.setQuantifier(); } break; } - this.state = 2143; + this.state = 2165; this.expressionSeq(); } break; case SparkSqlParser.KW_REDUCE: { - this.state = 2144; + this.state = 2166; localContext._kind = this.match(SparkSqlParser.KW_REDUCE); - this.state = 2146; + this.state = 2168; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2145; + this.state = 2167; this.setQuantifier(); } break; } - this.state = 2148; + this.state = 2170; this.expressionSeq(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2152; + this.state = 2174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 2151; + this.state = 2173; localContext._inRowFormat = this.rowFormat(); } } - this.state = 2156; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 236) { { - this.state = 2154; + this.state = 2176; this.match(SparkSqlParser.KW_RECORDWRITER); - this.state = 2155; + this.state = 2177; localContext._recordWriter = this.stringLit(); } } - this.state = 2158; + this.state = 2180; this.match(SparkSqlParser.KW_USING); - this.state = 2159; + this.state = 2181; localContext._script = this.stringLit(); - this.state = 2172; + this.state = 2194; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2160; + this.state = 2182; this.match(SparkSqlParser.KW_AS); - this.state = 2170; + this.state = 2192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2161; + this.state = 2183; this.identifierSeq(); } break; case 2: { - this.state = 2162; + this.state = 2184; this.colTypeList(); } break; case 3: { { - this.state = 2163; + this.state = 2185; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2166; + this.state = 2188; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { case 1: { - this.state = 2164; + this.state = 2186; this.identifierSeq(); } break; case 2: { - this.state = 2165; + this.state = 2187; this.colTypeList(); } break; } - this.state = 2168; + this.state = 2190; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -8316,24 +8346,24 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2175; + this.state = 2197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2174; + this.state = 2196; localContext._outRowFormat = this.rowFormat(); } break; } - this.state = 2179; + this.state = 2201; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: { - this.state = 2177; + this.state = 2199; this.match(SparkSqlParser.KW_RECORDREADER); - this.state = 2178; + this.state = 2200; localContext._recordReader = this.stringLit(); } break; @@ -8361,37 +8391,37 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2181; + this.state = 2203; this.match(SparkSqlParser.KW_SELECT); - this.state = 2185; + this.state = 2207; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 268, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2182; + this.state = 2204; localContext._hint = this.hint(); localContext._hints.push(localContext._hint); } } } - this.state = 2187; + this.state = 2209; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 267, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 268, this.context); } - this.state = 2189; + this.state = 2211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2188; + this.state = 2210; this.setQuantifier(); } break; } - this.state = 2191; - this.namedExpressionSeq(); + this.state = 2213; + this.selectList(); } } catch (re) { @@ -8414,9 +8444,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2215; this.match(SparkSqlParser.KW_SET); - this.state = 2194; + this.state = 2216; this.assignmentList(); } } @@ -8441,25 +8471,25 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2218; this.match(SparkSqlParser.KW_WHEN); - this.state = 2197; + this.state = 2219; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2200; + this.state = 2222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2198; + this.state = 2220; this.match(SparkSqlParser.KW_AND); - this.state = 2199; + this.state = 2221; localContext._matchedCond = this.booleanExpression(0); } } - this.state = 2202; + this.state = 2224; this.match(SparkSqlParser.KW_THEN); - this.state = 2203; + this.state = 2225; this.matchedAction(); } } @@ -8484,39 +8514,39 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2205; + this.state = 2227; this.match(SparkSqlParser.KW_WHEN); - this.state = 2206; + this.state = 2228; this.match(SparkSqlParser.KW_NOT); - this.state = 2207; + this.state = 2229; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2210; + this.state = 2232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2208; + this.state = 2230; this.match(SparkSqlParser.KW_BY); - this.state = 2209; + this.state = 2231; this.match(SparkSqlParser.KW_TARGET); } } - this.state = 2214; + this.state = 2236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2212; + this.state = 2234; this.match(SparkSqlParser.KW_AND); - this.state = 2213; + this.state = 2235; localContext._notMatchedCond = this.booleanExpression(0); } } - this.state = 2216; + this.state = 2238; this.match(SparkSqlParser.KW_THEN); - this.state = 2217; + this.state = 2239; this.notMatchedAction(); } } @@ -8541,31 +8571,31 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2241; this.match(SparkSqlParser.KW_WHEN); - this.state = 2220; + this.state = 2242; this.match(SparkSqlParser.KW_NOT); - this.state = 2221; + this.state = 2243; this.match(SparkSqlParser.KW_MATCHED); - this.state = 2222; + this.state = 2244; this.match(SparkSqlParser.KW_BY); - this.state = 2223; + this.state = 2245; this.match(SparkSqlParser.KW_SOURCE); - this.state = 2226; + this.state = 2248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14) { { - this.state = 2224; + this.state = 2246; this.match(SparkSqlParser.KW_AND); - this.state = 2225; + this.state = 2247; localContext._notMatchedBySourceCond = this.booleanExpression(0); } } - this.state = 2228; + this.state = 2250; this.match(SparkSqlParser.KW_THEN); - this.state = 2229; + this.state = 2251; this.notMatchedBySourceAction(); } } @@ -8587,35 +8617,35 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new MatchedActionContext(this.context, this.state); this.enterRule(localContext, 128, SparkSqlParser.RULE_matchedAction); try { - this.state = 2238; + this.state = 2260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2231; + this.state = 2253; this.match(SparkSqlParser.KW_DELETE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2232; + this.state = 2254; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2233; + this.state = 2255; this.match(SparkSqlParser.KW_SET); - this.state = 2234; + this.state = 2256; this.match(SparkSqlParser.ASTERISK); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2235; + this.state = 2257; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2236; + this.state = 2258; this.match(SparkSqlParser.KW_SET); - this.state = 2237; + this.state = 2259; this.assignmentList(); } break; @@ -8640,52 +8670,52 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 130, SparkSqlParser.RULE_notMatchedAction); let _la: number; try { - this.state = 2258; + this.state = 2280; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2262; this.match(SparkSqlParser.KW_INSERT); - this.state = 2241; + this.state = 2263; this.match(SparkSqlParser.ASTERISK); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2242; + this.state = 2264; this.match(SparkSqlParser.KW_INSERT); - this.state = 2243; + this.state = 2265; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2244; + this.state = 2266; this.multipartIdentifierList(); - this.state = 2245; + this.state = 2267; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2246; + this.state = 2268; this.match(SparkSqlParser.KW_VALUES); - this.state = 2247; + this.state = 2269; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2248; + this.state = 2270; this.expression(); - this.state = 2253; + this.state = 2275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2249; + this.state = 2271; this.match(SparkSqlParser.COMMA); - this.state = 2250; + this.state = 2272; this.expression(); } } - this.state = 2255; + this.state = 2277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2256; + this.state = 2278; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8709,24 +8739,24 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new NotMatchedBySourceActionContext(this.context, this.state); this.enterRule(localContext, 132, SparkSqlParser.RULE_notMatchedBySourceAction); try { - this.state = 2264; + this.state = 2286; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 1); { - this.state = 2260; + this.state = 2282; this.match(SparkSqlParser.KW_DELETE); } break; case SparkSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 2); { - this.state = 2261; + this.state = 2283; this.match(SparkSqlParser.KW_UPDATE); - this.state = 2262; + this.state = 2284; this.match(SparkSqlParser.KW_SET); - this.state = 2263; + this.state = 2285; this.assignmentList(); } break; @@ -8755,21 +8785,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2266; + this.state = 2288; this.assignment(); - this.state = 2271; + this.state = 2293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2267; + this.state = 2289; this.match(SparkSqlParser.COMMA); - this.state = 2268; + this.state = 2290; this.assignment(); } } - this.state = 2273; + this.state = 2295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8795,11 +8825,11 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2296; localContext._key = this.multipartIdentifier(); - this.state = 2275; + this.state = 2297; this.match(SparkSqlParser.EQ); - this.state = 2276; + this.state = 2298; localContext._value = this.expression(); } } @@ -8823,9 +8853,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2278; + this.state = 2300; this.match(SparkSqlParser.KW_WHERE); - this.state = 2279; + this.state = 2301; this.booleanExpression(0); } } @@ -8849,9 +8879,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2281; + this.state = 2303; this.match(SparkSqlParser.KW_HAVING); - this.state = 2282; + this.state = 2304; this.booleanExpression(0); } } @@ -8876,37 +8906,37 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2284; + this.state = 2306; this.match(SparkSqlParser.HENT_START); - this.state = 2285; + this.state = 2307; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); - this.state = 2292; + this.state = 2314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967056) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { { - this.state = 2287; + this.state = 2309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4) { { - this.state = 2286; + this.state = 2308; this.match(SparkSqlParser.COMMA); } } - this.state = 2289; + this.state = 2311; localContext._hintStatement = this.hintStatement(); localContext._hintStatements.push(localContext._hintStatement); } } - this.state = 2294; + this.state = 2316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2295; + this.state = 2317; this.match(SparkSqlParser.HENT_END); } } @@ -8929,44 +8959,44 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 144, SparkSqlParser.RULE_hintStatement); let _la: number; try { - this.state = 2310; + this.state = 2332; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2297; + this.state = 2319; localContext._hintName = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2298; + this.state = 2320; localContext._hintName = this.identifier(); - this.state = 2299; + this.state = 2321; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2300; + this.state = 2322; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); - this.state = 2305; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2301; + this.state = 2323; this.match(SparkSqlParser.COMMA); - this.state = 2302; + this.state = 2324; localContext._primaryExpression = this.primaryExpression(0); localContext._parameters.push(localContext._primaryExpression); } } - this.state = 2307; + this.state = 2329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2308; + this.state = 2330; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -8993,60 +9023,60 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2312; + this.state = 2334; this.match(SparkSqlParser.KW_FROM); - this.state = 2313; + this.state = 2335; this.relation(); - this.state = 2318; + this.state = 2340; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2314; + this.state = 2336; this.match(SparkSqlParser.COMMA); - this.state = 2315; + this.state = 2337; this.relation(); } } } - this.state = 2320; + this.state = 2342; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); } - this.state = 2324; + this.state = 2346; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2321; + this.state = 2343; this.lateralView(); } } } - this.state = 2326; + this.state = 2348; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); } - this.state = 2328; + this.state = 2350; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2327; + this.state = 2349; this.pivotClause(); } break; } - this.state = 2331; + this.state = 2353; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 286, this.context) ) { case 1: { - this.state = 2330; + this.state = 2352; this.unpivotClause(); } break; @@ -9074,7 +9104,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2333; + this.state = 2355; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 290 || _la === 331)) { this.errorHandler.recoverInline(this); @@ -9104,23 +9134,23 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 150, SparkSqlParser.RULE_temporalClause); let _la: number; try { - this.state = 2349; + this.state = 2371; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2336; + this.state = 2358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2335; + this.state = 2357; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2338; + this.state = 2360; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -9129,28 +9159,28 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2339; + this.state = 2361; this.match(SparkSqlParser.KW_AS); - this.state = 2340; + this.state = 2362; this.match(SparkSqlParser.KW_OF); - this.state = 2341; + this.state = 2363; this.version(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2343; + this.state = 2365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2342; + this.state = 2364; this.match(SparkSqlParser.KW_FOR); } } - this.state = 2345; + this.state = 2367; _la = this.tokenStream.LA(1); if(!(_la === 291 || _la === 303)) { this.errorHandler.recoverInline(this); @@ -9159,11 +9189,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2346; + this.state = 2368; this.match(SparkSqlParser.KW_AS); - this.state = 2347; + this.state = 2369; this.match(SparkSqlParser.KW_OF); - this.state = 2348; + this.state = 2370; localContext._timestamp = this.valueExpression(0); } break; @@ -9189,115 +9219,115 @@ export class SparkSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2390; + this.state = 2412; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2351; + this.state = 2373; this.match(SparkSqlParser.KW_GROUP); - this.state = 2352; + this.state = 2374; this.match(SparkSqlParser.KW_BY); - this.state = 2353; + this.state = 2375; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); - this.state = 2358; + this.state = 2380; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2354; + this.state = 2376; this.match(SparkSqlParser.COMMA); - this.state = 2355; + this.state = 2377; localContext._groupByClause = this.groupByClause(); localContext._groupingExpressionsWithGroupingAnalytics.push(localContext._groupByClause); } } } - this.state = 2360; + this.state = 2382; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 289, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2361; + this.state = 2383; this.match(SparkSqlParser.KW_GROUP); - this.state = 2362; + this.state = 2384; this.match(SparkSqlParser.KW_BY); - this.state = 2363; + this.state = 2385; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); - this.state = 2368; + this.state = 2390; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2364; + this.state = 2386; this.match(SparkSqlParser.COMMA); - this.state = 2365; + this.state = 2387; localContext._expression = this.expression(); localContext._groupingExpressions.push(localContext._expression); } } } - this.state = 2370; + this.state = 2392; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 290, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } - this.state = 2388; + this.state = 2410; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2371; + this.state = 2393; this.match(SparkSqlParser.KW_WITH); - this.state = 2372; + this.state = 2394; localContext._kind = this.match(SparkSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 2373; + this.state = 2395; this.match(SparkSqlParser.KW_WITH); - this.state = 2374; + this.state = 2396; localContext._kind = this.match(SparkSqlParser.KW_CUBE); } break; case 3: { - this.state = 2375; + this.state = 2397; localContext._kind = this.match(SparkSqlParser.KW_GROUPING); - this.state = 2376; + this.state = 2398; this.match(SparkSqlParser.KW_SETS); - this.state = 2377; + this.state = 2399; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2378; + this.state = 2400; this.groupingSet(); - this.state = 2383; + this.state = 2405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2379; + this.state = 2401; this.match(SparkSqlParser.COMMA); - this.state = 2380; + this.state = 2402; this.groupingSet(); } } - this.state = 2385; + this.state = 2407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2386; + this.state = 2408; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9324,27 +9354,27 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new GroupByClauseContext(this.context, this.state); this.enterRule(localContext, 154, SparkSqlParser.RULE_groupByClause); try { - this.state = 2395; + this.state = 2417; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2392; + this.state = 2414; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2393; + this.state = 2415; this.groupingAnalytics(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2394; + this.state = 2416; this.expression(); } break; @@ -9369,14 +9399,14 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 156, SparkSqlParser.RULE_groupingAnalytics); let _la: number; try { - this.state = 2422; + this.state = 2444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CUBE: case SparkSqlParser.KW_ROLLUP: this.enterOuterAlt(localContext, 1); { - this.state = 2397; + this.state = 2419; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 256)) { this.errorHandler.recoverInline(this); @@ -9385,58 +9415,58 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2398; + this.state = 2420; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2399; + this.state = 2421; this.groupingSet(); - this.state = 2404; + this.state = 2426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2400; + this.state = 2422; this.match(SparkSqlParser.COMMA); - this.state = 2401; + this.state = 2423; this.groupingSet(); } } - this.state = 2406; + this.state = 2428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2407; + this.state = 2429; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 2); { - this.state = 2409; + this.state = 2431; this.match(SparkSqlParser.KW_GROUPING); - this.state = 2410; + this.state = 2432; this.match(SparkSqlParser.KW_SETS); - this.state = 2411; + this.state = 2433; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2412; + this.state = 2434; this.groupingElement(); - this.state = 2417; + this.state = 2439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2413; + this.state = 2435; this.match(SparkSqlParser.COMMA); - this.state = 2414; + this.state = 2436; this.groupingElement(); } } - this.state = 2419; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2420; + this.state = 2442; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9462,20 +9492,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new GroupingElementContext(this.context, this.state); this.enterRule(localContext, 158, SparkSqlParser.RULE_groupingElement); try { - this.state = 2426; + this.state = 2448; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2424; + this.state = 2446; this.groupingAnalytics(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2425; + this.state = 2447; this.groupingSet(); } break; @@ -9500,83 +9530,83 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 160, SparkSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 2448; + this.state = 2470; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2428; + this.state = 2450; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2429; + this.state = 2451; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2430; + this.state = 2452; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2445; + this.state = 2467; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2433; + this.state = 2455; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { case 1: { - this.state = 2431; + this.state = 2453; this.columnName(); } break; case 2: { - this.state = 2432; + this.state = 2454; this.expression(); } break; } - this.state = 2442; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2435; + this.state = 2457; this.match(SparkSqlParser.COMMA); - this.state = 2438; + this.state = 2460; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 300, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2436; + this.state = 2458; this.columnName(); } break; case 2: { - this.state = 2437; + this.state = 2459; this.expression(); } break; } } } - this.state = 2444; + this.state = 2466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2447; + this.state = 2469; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -9603,43 +9633,43 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2450; + this.state = 2472; this.match(SparkSqlParser.KW_PIVOT); - this.state = 2451; + this.state = 2473; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2452; + this.state = 2474; localContext._aggregates = this.namedExpressionSeq(); - this.state = 2453; + this.state = 2475; this.match(SparkSqlParser.KW_FOR); - this.state = 2454; + this.state = 2476; this.pivotColumn(); - this.state = 2455; + this.state = 2477; this.match(SparkSqlParser.KW_IN); - this.state = 2456; + this.state = 2478; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2457; + this.state = 2479; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); - this.state = 2462; + this.state = 2484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2458; + this.state = 2480; this.match(SparkSqlParser.COMMA); - this.state = 2459; + this.state = 2481; localContext._pivotValue = this.pivotValue(); localContext._pivotValues.push(localContext._pivotValue); } } - this.state = 2464; + this.state = 2486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2465; + this.state = 2487; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2466; + this.state = 2488; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -9662,7 +9692,7 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 164, SparkSqlParser.RULE_pivotColumn); let _la: number; try { - this.state = 2480; + this.state = 2502; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10010,7 +10040,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2468; + this.state = 2490; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } @@ -10018,29 +10048,29 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.LEFT_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2469; + this.state = 2491; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2470; + this.state = 2492; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); - this.state = 2475; + this.state = 2497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2471; + this.state = 2493; this.match(SparkSqlParser.COMMA); - this.state = 2472; + this.state = 2494; localContext._identifier = this.identifier(); localContext._identifiers.push(localContext._identifier); } } - this.state = 2477; + this.state = 2499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2478; + this.state = 2500; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -10069,24 +10099,24 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2504; this.expression(); - this.state = 2487; + this.state = 2509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2484; + this.state = 2506; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2483; + this.state = 2505; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2486; + this.state = 2508; this.identifier(); } } @@ -10114,40 +10144,40 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2489; + this.state = 2511; this.match(SparkSqlParser.KW_UNPIVOT); - this.state = 2491; + this.state = 2513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104 || _la === 141) { { - this.state = 2490; + this.state = 2512; localContext._nullOperator = this.unpivotNullClause(); } } - this.state = 2493; + this.state = 2515; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2494; + this.state = 2516; localContext._operator = this.unpivotOperator(); - this.state = 2495; + this.state = 2517; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2500; + this.state = 2522; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 312, this.context) ) { case 1: { - this.state = 2497; + this.state = 2519; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 311, this.context) ) { case 1: { - this.state = 2496; + this.state = 2518; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2499; + this.state = 2521; this.identifier(); } break; @@ -10175,7 +10205,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2502; + this.state = 2524; _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 141)) { this.errorHandler.recoverInline(this); @@ -10184,7 +10214,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2503; + this.state = 2525; this.match(SparkSqlParser.KW_NULLS); } } @@ -10208,7 +10238,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2507; + this.state = 2529; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -10555,13 +10585,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 2505; + this.state = 2527; this.unpivotSingleValueColumnClause(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 2506; + this.state = 2528; this.unpivotMultiValueColumnClause(); } break; @@ -10591,37 +10621,37 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2509; + this.state = 2531; this.unpivotValueColumn(); - this.state = 2510; + this.state = 2532; this.match(SparkSqlParser.KW_FOR); - this.state = 2511; + this.state = 2533; this.unpivotNameColumn(); - this.state = 2512; + this.state = 2534; this.match(SparkSqlParser.KW_IN); - this.state = 2513; + this.state = 2535; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2514; + this.state = 2536; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); - this.state = 2519; + this.state = 2541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2515; + this.state = 2537; this.match(SparkSqlParser.COMMA); - this.state = 2516; + this.state = 2538; localContext._unpivotColumnAndAlias = this.unpivotColumnAndAlias(); localContext._unpivotColumns.push(localContext._unpivotColumnAndAlias); } } - this.state = 2521; + this.state = 2543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2522; + this.state = 2544; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10646,59 +10676,59 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2524; + this.state = 2546; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2525; + this.state = 2547; localContext._unpivotValueColumn = this.unpivotValueColumn(); localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); - this.state = 2530; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2526; + this.state = 2548; this.match(SparkSqlParser.COMMA); - this.state = 2527; + this.state = 2549; localContext._unpivotValueColumn = this.unpivotValueColumn(); localContext._unpivotValueColumns.push(localContext._unpivotValueColumn); } } - this.state = 2532; + this.state = 2554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2533; + this.state = 2555; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2534; + this.state = 2556; this.match(SparkSqlParser.KW_FOR); - this.state = 2535; + this.state = 2557; this.unpivotNameColumn(); - this.state = 2536; + this.state = 2558; this.match(SparkSqlParser.KW_IN); - this.state = 2537; + this.state = 2559; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2538; + this.state = 2560; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); - this.state = 2543; + this.state = 2565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2539; + this.state = 2561; this.match(SparkSqlParser.COMMA); - this.state = 2540; + this.state = 2562; localContext._unpivotColumnSet = this.unpivotColumnSet(); localContext._unpivotColumnSets.push(localContext._unpivotColumnSet); } } - this.state = 2545; + this.state = 2567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2546; + this.state = 2568; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -10723,36 +10753,36 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2548; + this.state = 2570; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2549; + this.state = 2571; localContext._unpivotColumn = this.unpivotColumn(); localContext._unpivotColumns.push(localContext._unpivotColumn); - this.state = 2554; + this.state = 2576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2550; + this.state = 2572; this.match(SparkSqlParser.COMMA); - this.state = 2551; + this.state = 2573; localContext._unpivotColumn = this.unpivotColumn(); localContext._unpivotColumns.push(localContext._unpivotColumn); } } - this.state = 2556; + this.state = 2578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2557; + this.state = 2579; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2559; + this.state = 2581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2558; + this.state = 2580; this.unpivotAlias(); } } @@ -10779,7 +10809,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2561; + this.state = 2583; this.identifier(); } } @@ -10803,7 +10833,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2563; + this.state = 2585; this.identifier(); } } @@ -10828,14 +10858,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2565; + this.state = 2587; this.unpivotColumn(); - this.state = 2567; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 2566; + this.state = 2588; this.unpivotAlias(); } } @@ -10862,7 +10892,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2569; + this.state = 2591; this.multipartIdentifier(); } } @@ -10886,17 +10916,17 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2572; + this.state = 2594; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2571; + this.state = 2593; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2574; + this.state = 2596; this.identifier(); } } @@ -10920,11 +10950,11 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2576; + this.state = 2598; this.match(SparkSqlParser.KW_IF); - this.state = 2577; + this.state = 2599; this.match(SparkSqlParser.KW_NOT); - this.state = 2578; + this.state = 2600; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10948,9 +10978,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2580; + this.state = 2602; this.match(SparkSqlParser.KW_IF); - this.state = 2581; + this.state = 2603; this.match(SparkSqlParser.KW_EXISTS); } } @@ -10976,90 +11006,90 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2583; + this.state = 2605; this.match(SparkSqlParser.KW_LATERAL); - this.state = 2584; + this.state = 2606; this.match(SparkSqlParser.KW_VIEW); - this.state = 2586; + this.state = 2608; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { - this.state = 2585; + this.state = 2607; this.match(SparkSqlParser.KW_OUTER); } break; } - this.state = 2588; + this.state = 2610; this.viewName(); - this.state = 2589; + this.state = 2611; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2598; + this.state = 2620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2590; + this.state = 2612; this.expression(); - this.state = 2595; + this.state = 2617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2591; + this.state = 2613; this.match(SparkSqlParser.COMMA); - this.state = 2592; + this.state = 2614; this.expression(); } } - this.state = 2597; + this.state = 2619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2600; + this.state = 2622; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2601; + this.state = 2623; this.tableAlias(); - this.state = 2613; + this.state = 2635; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2603; + this.state = 2625; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2602; + this.state = 2624; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2605; + this.state = 2627; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); - this.state = 2610; + this.state = 2632; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2606; + this.state = 2628; this.match(SparkSqlParser.COMMA); - this.state = 2607; + this.state = 2629; localContext._identifier = this.identifier(); localContext._colName.push(localContext._identifier); } } } - this.state = 2612; + this.state = 2634; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); } } break; @@ -11087,7 +11117,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2615; + this.state = 2637; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11117,46 +11147,46 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 198, SparkSqlParser.RULE_relation); try { let alternative: number; - this.state = 2628; + this.state = 2650; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2617; + this.state = 2639; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2619; + this.state = 2641; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2618; + this.state = 2640; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2621; + this.state = 2643; this.relationPrimary(); - this.state = 2625; + this.state = 2647; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 328, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2622; + this.state = 2644; this.relationExtension(); } } } - this.state = 2627; + this.state = 2649; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 327, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 328, this.context); } } break; @@ -11180,7 +11210,7 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new RelationExtensionContext(this.context, this.state); this.enterRule(localContext, 200, SparkSqlParser.RULE_relationExtension); try { - this.state = 2633; + this.state = 2655; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11194,21 +11224,21 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_SEMI: this.enterOuterAlt(localContext, 1); { - this.state = 2630; + this.state = 2652; this.joinRelation(); } break; case SparkSqlParser.KW_PIVOT: this.enterOuterAlt(localContext, 2); { - this.state = 2631; + this.state = 2653; this.pivotClause(); } break; case SparkSqlParser.KW_UNPIVOT: this.enterOuterAlt(localContext, 3); { - this.state = 2632; + this.state = 2654; this.unpivotClause(); } break; @@ -11234,7 +11264,7 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new JoinRelationContext(this.context, this.state); this.enterRule(localContext, 202, SparkSqlParser.RULE_joinRelation); try { - this.state = 2652; + this.state = 2674; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ANTI: @@ -11248,29 +11278,29 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 2635; + this.state = 2657; this.joinType(); } - this.state = 2636; + this.state = 2658; this.match(SparkSqlParser.KW_JOIN); - this.state = 2638; + this.state = 2660; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2637; + this.state = 2659; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2640; + this.state = 2662; localContext._right = this.relationPrimary(); - this.state = 2642; + this.state = 2664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: { - this.state = 2641; + this.state = 2663; this.joinCriteria(); } break; @@ -11280,23 +11310,23 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_NATURAL: this.enterOuterAlt(localContext, 2); { - this.state = 2644; + this.state = 2666; this.match(SparkSqlParser.KW_NATURAL); - this.state = 2645; + this.state = 2667; this.joinType(); - this.state = 2646; + this.state = 2668; this.match(SparkSqlParser.KW_JOIN); - this.state = 2648; + this.state = 2670; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 2647; + this.state = 2669; this.match(SparkSqlParser.KW_LATERAL); } break; } - this.state = 2650; + this.state = 2672; localContext._right = this.relationPrimary(); } break; @@ -11323,18 +11353,18 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 204, SparkSqlParser.RULE_joinType); let _la: number; try { - this.state = 2678; + this.state = 2700; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2655; + this.state = 2677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2654; + this.state = 2676; this.match(SparkSqlParser.KW_INNER); } } @@ -11344,21 +11374,21 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2657; + this.state = 2679; this.match(SparkSqlParser.KW_CROSS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2658; + this.state = 2680; this.match(SparkSqlParser.KW_LEFT); - this.state = 2660; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2659; + this.state = 2681; this.match(SparkSqlParser.KW_OUTER); } } @@ -11368,31 +11398,31 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2663; + this.state = 2685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2662; + this.state = 2684; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2665; + this.state = 2687; this.match(SparkSqlParser.KW_SEMI); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2666; + this.state = 2688; this.match(SparkSqlParser.KW_RIGHT); - this.state = 2668; + this.state = 2690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2667; + this.state = 2689; this.match(SparkSqlParser.KW_OUTER); } } @@ -11402,14 +11432,14 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2670; + this.state = 2692; this.match(SparkSqlParser.KW_FULL); - this.state = 2672; + this.state = 2694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 211) { { - this.state = 2671; + this.state = 2693; this.match(SparkSqlParser.KW_OUTER); } } @@ -11419,17 +11449,17 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2675; + this.state = 2697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 161) { { - this.state = 2674; + this.state = 2696; this.match(SparkSqlParser.KW_LEFT); } } - this.state = 2677; + this.state = 2699; this.match(SparkSqlParser.KW_ANTI); } break; @@ -11453,24 +11483,24 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new JoinCriteriaContext(this.context, this.state); this.enterRule(localContext, 206, SparkSqlParser.RULE_joinCriteria); try { - this.state = 2684; + this.state = 2706; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2680; + this.state = 2702; this.match(SparkSqlParser.KW_ON); - this.state = 2681; + this.state = 2703; this.booleanExpression(0); } break; case SparkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2682; + this.state = 2704; this.match(SparkSqlParser.KW_USING); - this.state = 2683; + this.state = 2705; this.identifierList(); } break; @@ -11499,34 +11529,34 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2686; + this.state = 2708; this.match(SparkSqlParser.KW_TABLESAMPLE); - this.state = 2687; + this.state = 2709; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2689; + this.state = 2711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2688; + this.state = 2710; this.sampleMethod(); } } - this.state = 2691; + this.state = 2713; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2696; + this.state = 2718; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2692; + this.state = 2714; this.match(SparkSqlParser.KW_REPEATABLE); - this.state = 2693; + this.state = 2715; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2694; + this.state = 2716; localContext._seed = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2695; + this.state = 2717; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11552,23 +11582,23 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 210, SparkSqlParser.RULE_sampleMethod); let _la: number; try { - this.state = 2722; + this.state = 2744; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 2698; + this.state = 2720; localContext._negativeSign = this.match(SparkSqlParser.MINUS); } } - this.state = 2701; + this.state = 2723; localContext._percentage = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 382 || _la === 384)) { @@ -11578,55 +11608,55 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2702; + this.state = 2724; this.match(SparkSqlParser.KW_PERCENTLIT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2703; + this.state = 2725; this.expression(); - this.state = 2704; + this.state = 2726; this.match(SparkSqlParser.KW_ROWS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2706; + this.state = 2728; localContext._sampleType = this.match(SparkSqlParser.KW_BUCKET); - this.state = 2707; + this.state = 2729; localContext._numerator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2708; + this.state = 2730; this.match(SparkSqlParser.KW_OUT); - this.state = 2709; + this.state = 2731; this.match(SparkSqlParser.KW_OF); - this.state = 2710; + this.state = 2732; localContext._denominator = this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 2719; + this.state = 2741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2711; + this.state = 2733; this.match(SparkSqlParser.KW_ON); - this.state = 2717; + this.state = 2739; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2712; + this.state = 2734; this.identifier(); } break; case 2: { - this.state = 2713; + this.state = 2735; this.qualifiedName(); - this.state = 2714; + this.state = 2736; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2715; + this.state = 2737; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -11639,7 +11669,7 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2721; + this.state = 2743; localContext._bytes = this.expression(); } break; @@ -11665,11 +11695,11 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2724; + this.state = 2746; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2725; + this.state = 2747; this.identifierSeq(); - this.state = 2726; + this.state = 2748; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11694,27 +11724,27 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2728; + this.state = 2750; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); - this.state = 2733; + this.state = 2755; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2729; + this.state = 2751; this.match(SparkSqlParser.COMMA); - this.state = 2730; + this.state = 2752; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._ident.push(localContext._errorCapturingIdentifier); } } } - this.state = 2735; + this.state = 2757; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 348, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 349, this.context); } } } @@ -11739,27 +11769,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2736; + this.state = 2758; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2737; + this.state = 2759; this.orderedIdentifier(); - this.state = 2742; + this.state = 2764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2738; + this.state = 2760; this.match(SparkSqlParser.COMMA); - this.state = 2739; + this.state = 2761; this.orderedIdentifier(); } } - this.state = 2744; + this.state = 2766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2745; + this.state = 2767; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11784,14 +11814,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2747; + this.state = 2769; localContext._ident = this.errorCapturingIdentifier(); - this.state = 2749; + this.state = 2771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21 || _la === 86) { { - this.state = 2748; + this.state = 2770; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 21 || _la === 86)) { @@ -11827,27 +11857,27 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2751; + this.state = 2773; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2752; + this.state = 2774; this.identifierComment(); - this.state = 2757; + this.state = 2779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2753; + this.state = 2775; this.match(SparkSqlParser.COMMA); - this.state = 2754; + this.state = 2776; this.identifierComment(); } } - this.state = 2759; + this.state = 2781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2760; + this.state = 2782; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -11872,14 +11902,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2762; + this.state = 2784; this.columnNameCreate(); - this.state = 2764; + this.state = 2786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 2763; + this.state = 2785; this.commentSpec(); } } @@ -11904,115 +11934,122 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new RelationPrimaryContext(this.context, this.state); this.enterRule(localContext, 224, SparkSqlParser.RULE_relationPrimary); try { - this.state = 2797; + this.state = 2821; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: + localContext = new TableSourceContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2791; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 2766; + this.state = 2788; this.tableName(); } break; case 2: { - this.state = 2767; + this.state = 2789; this.viewName(); } break; case 3: { - this.state = 2768; + this.state = 2790; this.identifierReference(); } break; } - this.state = 2772; + this.state = 2794; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2771; + this.state = 2793; this.temporalClause(); } break; } - this.state = 2775; + this.state = 2797; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { case 1: { - this.state = 2774; + this.state = 2796; this.sample(); } break; } - this.state = 2777; + this.state = 2799; this.tableAlias(); } break; case 2: + localContext = new SubQueryTableSourceContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2779; + this.state = 2801; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2780; - this.query(); - this.state = 2781; + this.state = 2802; + this.atomSubQueryTableSource(); + this.state = 2803; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2783; + this.state = 2805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2782; + this.state = 2804; this.sample(); } break; } - this.state = 2785; + this.state = 2807; this.tableAlias(); } break; case 3: + localContext = new JoinTableSourceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2787; + this.state = 2809; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2788; + this.state = 2810; this.relation(); - this.state = 2789; + this.state = 2811; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2791; + this.state = 2813; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { - this.state = 2790; + this.state = 2812; this.sample(); } break; } - this.state = 2793; + this.state = 2815; this.tableAlias(); } break; case 4: + localContext = new InlineTableSourceContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2795; + this.state = 2817; this.inlineTable(); + this.state = 2818; + this.tableAlias(); } break; case 5: + localContext = new FunctionTableSourceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2796; + this.state = 2820; this.functionTable(); } break; @@ -12032,37 +12069,59 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); + this.enterRule(localContext, 226, SparkSqlParser.RULE_atomSubQueryTableSource); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2823; + this.query(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public inlineTable(): InlineTableContext { let localContext = new InlineTableContext(this.context, this.state); - this.enterRule(localContext, 226, SparkSqlParser.RULE_inlineTable); + this.enterRule(localContext, 228, SparkSqlParser.RULE_inlineTable); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2799; + this.state = 2825; this.match(SparkSqlParser.KW_VALUES); - this.state = 2800; + this.state = 2826; this.expression(); - this.state = 2805; + this.state = 2831; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 360, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2801; + this.state = 2827; this.match(SparkSqlParser.COMMA); - this.state = 2802; + this.state = 2828; this.expression(); } } } - this.state = 2807; + this.state = 2833; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 359, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 360, this.context); } - this.state = 2808; - this.tableAlias(); } } catch (re) { @@ -12081,25 +12140,25 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableSubqueryArgument(): FunctionTableSubqueryArgumentContext { let localContext = new FunctionTableSubqueryArgumentContext(this.context, this.state); - this.enterRule(localContext, 228, SparkSqlParser.RULE_functionTableSubqueryArgument); + this.enterRule(localContext, 230, SparkSqlParser.RULE_functionTableSubqueryArgument); let _la: number; try { - this.state = 2829; + this.state = 2853; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 363, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2810; + this.state = 2834; this.match(SparkSqlParser.KW_TABLE); - this.state = 2811; + this.state = 2835; this.tableName(); - this.state = 2813; + this.state = 2837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2812; + this.state = 2836; this.tableArgumentPartitioning(); } } @@ -12109,20 +12168,20 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2815; + this.state = 2839; this.match(SparkSqlParser.KW_TABLE); - this.state = 2816; + this.state = 2840; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2817; + this.state = 2841; this.tableName(); - this.state = 2818; + this.state = 2842; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2820; + this.state = 2844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2819; + this.state = 2843; this.tableArgumentPartitioning(); } } @@ -12132,20 +12191,20 @@ export class SparkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2822; + this.state = 2846; this.match(SparkSqlParser.KW_TABLE); - this.state = 2823; + this.state = 2847; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2824; + this.state = 2848; this.query(); - this.state = 2825; + this.state = 2849; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2827; + this.state = 2851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217 || _la === 346) { { - this.state = 2826; + this.state = 2850; this.tableArgumentPartitioning(); } } @@ -12170,22 +12229,22 @@ export class SparkSqlParser extends SQLParserBase { } public tableArgumentPartitioning(): TableArgumentPartitioningContext { let localContext = new TableArgumentPartitioningContext(this.context, this.state); - this.enterRule(localContext, 230, SparkSqlParser.RULE_tableArgumentPartitioning); + this.enterRule(localContext, 232, SparkSqlParser.RULE_tableArgumentPartitioning); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2850; + this.state = 2874; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_WITH: { { - this.state = 2831; + this.state = 2855; this.match(SparkSqlParser.KW_WITH); - this.state = 2832; + this.state = 2856; this.match(SparkSqlParser.KW_SINGLE); - this.state = 2833; + this.state = 2857; this.match(SparkSqlParser.KW_PARTITION); } } @@ -12194,7 +12253,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_PARTITION: { { - this.state = 2834; + this.state = 2858; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -12203,38 +12262,38 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2835; + this.state = 2859; this.match(SparkSqlParser.KW_BY); - this.state = 2848; + this.state = 2872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 366, this.context) ) { case 1: { { { - this.state = 2836; + this.state = 2860; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2837; + this.state = 2861; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2842; + this.state = 2866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2838; + this.state = 2862; this.match(SparkSqlParser.COMMA); - this.state = 2839; + this.state = 2863; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2844; + this.state = 2868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2845; + this.state = 2869; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -12242,7 +12301,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 2847; + this.state = 2871; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } @@ -12254,12 +12313,12 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2868; + this.state = 2892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 2852; + this.state = 2876; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -12268,43 +12327,43 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2853; + this.state = 2877; this.match(SparkSqlParser.KW_BY); { - this.state = 2866; + this.state = 2890; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 368, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: { { - this.state = 2854; + this.state = 2878; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2855; + this.state = 2879; this.sortItem(); - this.state = 2860; + this.state = 2884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2856; + this.state = 2880; this.match(SparkSqlParser.COMMA); - this.state = 2857; + this.state = 2881; this.sortItem(); } } - this.state = 2862; + this.state = 2886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2863; + this.state = 2887; this.match(SparkSqlParser.RIGHT_PAREN); } } break; case 2: { - this.state = 2865; + this.state = 2889; this.sortItem(); } break; @@ -12331,15 +12390,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableNamedArgumentExpression(): FunctionTableNamedArgumentExpressionContext { let localContext = new FunctionTableNamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 232, SparkSqlParser.RULE_functionTableNamedArgumentExpression); + this.enterRule(localContext, 234, SparkSqlParser.RULE_functionTableNamedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2870; + this.state = 2894; localContext._key = this.identifier(); - this.state = 2871; + this.state = 2895; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2872; + this.state = 2896; localContext._table = this.functionTableSubqueryArgument(); } } @@ -12359,15 +12418,15 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableReferenceArgument(): FunctionTableReferenceArgumentContext { let localContext = new FunctionTableReferenceArgumentContext(this.context, this.state); - this.enterRule(localContext, 234, SparkSqlParser.RULE_functionTableReferenceArgument); + this.enterRule(localContext, 236, SparkSqlParser.RULE_functionTableReferenceArgument); try { - this.state = 2876; + this.state = 2900; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 2874; + this.state = 2898; this.functionTableSubqueryArgument(); } break; @@ -12716,7 +12775,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2875; + this.state = 2899; this.functionTableNamedArgumentExpression(); } break; @@ -12740,22 +12799,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionTableArgument(): FunctionTableArgumentContext { let localContext = new FunctionTableArgumentContext(this.context, this.state); - this.enterRule(localContext, 236, SparkSqlParser.RULE_functionTableArgument); + this.enterRule(localContext, 238, SparkSqlParser.RULE_functionTableArgument); try { - this.state = 2880; + this.state = 2904; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2878; + this.state = 2902; this.functionTableReferenceArgument(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2879; + this.state = 2903; this.functionArgument(); } break; @@ -12777,45 +12836,69 @@ export class SparkSqlParser extends SQLParserBase { } public functionTable(): FunctionTableContext { let localContext = new FunctionTableContext(this.context, this.state); - this.enterRule(localContext, 238, SparkSqlParser.RULE_functionTable); + this.enterRule(localContext, 240, SparkSqlParser.RULE_functionTable); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2906; + this.atomFunctionTable(); + this.state = 2907; + this.tableAlias(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public atomFunctionTable(): AtomFunctionTableContext { + let localContext = new AtomFunctionTableContext(this.context, this.state); + this.enterRule(localContext, 242, SparkSqlParser.RULE_atomFunctionTable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2882; + this.state = 2909; this.functionName(); - this.state = 2883; + this.state = 2910; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2892; + this.state = 2919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967295) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 2884; + this.state = 2911; this.functionTableArgument(); - this.state = 2889; + this.state = 2916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2885; + this.state = 2912; this.match(SparkSqlParser.COMMA); - this.state = 2886; + this.state = 2913; this.functionTableArgument(); } } - this.state = 2891; + this.state = 2918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2894; + this.state = 2921; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2895; - this.tableAlias(); } } catch (re) { @@ -12834,33 +12917,33 @@ export class SparkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 240, SparkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 244, SparkSqlParser.RULE_tableAlias); try { this.enterOuterAlt(localContext, 1); { - this.state = 2904; + this.state = 2930; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2898; + this.state = 2924; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: { - this.state = 2897; + this.state = 2923; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 2900; + this.state = 2926; localContext._alias = this.strictIdentifier(); - this.state = 2902; + this.state = 2928; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: { - this.state = 2901; + this.state = 2927; this.identifierList(); } break; @@ -12886,32 +12969,32 @@ export class SparkSqlParser extends SQLParserBase { } public rowFormat(): RowFormatContext { let localContext = new RowFormatContext(this.context, this.state); - this.enterRule(localContext, 242, SparkSqlParser.RULE_rowFormat); + this.enterRule(localContext, 246, SparkSqlParser.RULE_rowFormat); try { - this.state = 2955; + this.state = 2981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2906; + this.state = 2932; this.match(SparkSqlParser.KW_ROW); - this.state = 2907; + this.state = 2933; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2908; + this.state = 2934; this.match(SparkSqlParser.KW_SERDE); - this.state = 2909; + this.state = 2935; localContext._name = this.stringLit(); - this.state = 2913; + this.state = 2939; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2910; + this.state = 2936; this.match(SparkSqlParser.KW_WITH); - this.state = 2911; + this.state = 2937; this.match(SparkSqlParser.KW_SERDEPROPERTIES); - this.state = 2912; + this.state = 2938; localContext._props = this.propertyList(); } break; @@ -12921,35 +13004,35 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2915; + this.state = 2941; this.match(SparkSqlParser.KW_ROW); - this.state = 2916; + this.state = 2942; this.match(SparkSqlParser.KW_FORMAT); - this.state = 2917; + this.state = 2943; this.match(SparkSqlParser.KW_DELIMITED); - this.state = 2927; + this.state = 2953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 2918; + this.state = 2944; this.match(SparkSqlParser.KW_FIELDS); - this.state = 2919; + this.state = 2945; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2920; + this.state = 2946; this.match(SparkSqlParser.KW_BY); - this.state = 2921; + this.state = 2947; localContext._fieldsTerminatedBy = this.stringLit(); - this.state = 2925; + this.state = 2951; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 2922; + this.state = 2948; this.match(SparkSqlParser.KW_ESCAPED); - this.state = 2923; + this.state = 2949; this.match(SparkSqlParser.KW_BY); - this.state = 2924; + this.state = 2950; localContext._escapedBy = this.stringLit(); } break; @@ -12957,70 +13040,70 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 2934; + this.state = 2960; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2929; + this.state = 2955; this.match(SparkSqlParser.KW_COLLECTION); - this.state = 2930; + this.state = 2956; this.match(SparkSqlParser.KW_ITEMS); - this.state = 2931; + this.state = 2957; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2932; + this.state = 2958; this.match(SparkSqlParser.KW_BY); - this.state = 2933; + this.state = 2959; localContext._collectionItemsTerminatedBy = this.stringLit(); } break; } - this.state = 2941; + this.state = 2967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2936; + this.state = 2962; this.match(SparkSqlParser.KW_MAP); - this.state = 2937; + this.state = 2963; this.match(SparkSqlParser.KW_KEYS); - this.state = 2938; + this.state = 2964; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2939; + this.state = 2965; this.match(SparkSqlParser.KW_BY); - this.state = 2940; + this.state = 2966; localContext._keysTerminatedBy = this.stringLit(); } break; } - this.state = 2947; + this.state = 2973; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2943; + this.state = 2969; this.match(SparkSqlParser.KW_LINES); - this.state = 2944; + this.state = 2970; this.match(SparkSqlParser.KW_TERMINATED); - this.state = 2945; + this.state = 2971; this.match(SparkSqlParser.KW_BY); - this.state = 2946; + this.state = 2972; localContext._linesSeparatedBy = this.stringLit(); } break; } - this.state = 2953; + this.state = 2979; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2949; + this.state = 2975; this.match(SparkSqlParser.KW_NULL); - this.state = 2950; + this.state = 2976; this.match(SparkSqlParser.KW_DEFINED); - this.state = 2951; + this.state = 2977; this.match(SparkSqlParser.KW_AS); - this.state = 2952; + this.state = 2978; localContext._nullDefinedAs = this.stringLit(); } break; @@ -13045,26 +13128,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierList(): MultipartIdentifierListContext { let localContext = new MultipartIdentifierListContext(this.context, this.state); - this.enterRule(localContext, 244, SparkSqlParser.RULE_multipartIdentifierList); + this.enterRule(localContext, 248, SparkSqlParser.RULE_multipartIdentifierList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2957; + this.state = 2983; this.multipartIdentifier(); - this.state = 2962; + this.state = 2988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2958; + this.state = 2984; this.match(SparkSqlParser.COMMA); - this.state = 2959; + this.state = 2985; this.multipartIdentifier(); } } - this.state = 2964; + this.state = 2990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13086,32 +13169,32 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifier(): MultipartIdentifierContext { let localContext = new MultipartIdentifierContext(this.context, this.state); - this.enterRule(localContext, 246, SparkSqlParser.RULE_multipartIdentifier); + this.enterRule(localContext, 250, SparkSqlParser.RULE_multipartIdentifier); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2965; + this.state = 2991; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); - this.state = 2970; + this.state = 2996; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 387, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2966; + this.state = 2992; this.match(SparkSqlParser.DOT); - this.state = 2967; + this.state = 2993; localContext._errorCapturingIdentifier = this.errorCapturingIdentifier(); localContext._parts.push(localContext._errorCapturingIdentifier); } } } - this.state = 2972; + this.state = 2998; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 386, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 387, this.context); } } } @@ -13131,26 +13214,26 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierPropertyList(): MultipartIdentifierPropertyListContext { let localContext = new MultipartIdentifierPropertyListContext(this.context, this.state); - this.enterRule(localContext, 248, SparkSqlParser.RULE_multipartIdentifierPropertyList); + this.enterRule(localContext, 252, SparkSqlParser.RULE_multipartIdentifierPropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2973; + this.state = 2999; this.multipartIdentifierProperty(); - this.state = 2978; + this.state = 3004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2974; + this.state = 3000; this.match(SparkSqlParser.COMMA); - this.state = 2975; + this.state = 3001; this.multipartIdentifierProperty(); } } - this.state = 2980; + this.state = 3006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13172,21 +13255,21 @@ export class SparkSqlParser extends SQLParserBase { } public multipartIdentifierProperty(): MultipartIdentifierPropertyContext { let localContext = new MultipartIdentifierPropertyContext(this.context, this.state); - this.enterRule(localContext, 250, SparkSqlParser.RULE_multipartIdentifierProperty); + this.enterRule(localContext, 254, SparkSqlParser.RULE_multipartIdentifierProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2981; + this.state = 3007; this.multipartIdentifier(); - this.state = 2984; + this.state = 3010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 2982; + this.state = 3008; this.match(SparkSqlParser.KW_OPTIONS); - this.state = 2983; + this.state = 3009; localContext._options = this.propertyList(); } } @@ -13209,23 +13292,23 @@ export class SparkSqlParser extends SQLParserBase { } public tableIdentifier(): TableIdentifierContext { let localContext = new TableIdentifierContext(this.context, this.state); - this.enterRule(localContext, 252, SparkSqlParser.RULE_tableIdentifier); + this.enterRule(localContext, 256, SparkSqlParser.RULE_tableIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2989; + this.state = 3015; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 2986; + this.state = 3012; localContext._db = this.errorCapturingIdentifier(); - this.state = 2987; + this.state = 3013; this.match(SparkSqlParser.DOT); } break; } - this.state = 2991; + this.state = 3017; localContext._table = this.errorCapturingIdentifier(); } } @@ -13245,23 +13328,23 @@ export class SparkSqlParser extends SQLParserBase { } public viewIdentifier(): ViewIdentifierContext { let localContext = new ViewIdentifierContext(this.context, this.state); - this.enterRule(localContext, 254, SparkSqlParser.RULE_viewIdentifier); + this.enterRule(localContext, 258, SparkSqlParser.RULE_viewIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2996; + this.state = 3022; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: { - this.state = 2993; + this.state = 3019; localContext._db = this.errorCapturingIdentifier(); - this.state = 2994; + this.state = 3020; this.match(SparkSqlParser.DOT); } break; } - this.state = 2998; + this.state = 3024; localContext._view = this.errorCapturingIdentifier(); } } @@ -13279,44 +13362,139 @@ export class SparkSqlParser extends SQLParserBase { } return localContext; } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 260, SparkSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3026; + this.columnName(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 262, SparkSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3028; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 264, SparkSqlParser.RULE_tableAllColumns); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3035; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { + { + { + this.state = 3030; + this.qualifiedName(); + this.state = 3031; + this.match(SparkSqlParser.DOT); + } + } + this.state = 3037; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 3038; + this.match(SparkSqlParser.ASTERISK); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public namedExpression(): NamedExpressionContext { let localContext = new NamedExpressionContext(this.context, this.state); - this.enterRule(localContext, 256, SparkSqlParser.RULE_namedExpression); + this.enterRule(localContext, 266, SparkSqlParser.RULE_namedExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3002; + this.state = 3043; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 3000; - this.columnName(); + this.state = 3040; + this.tableAllColumns(); } break; case 2: { - this.state = 3001; - this.expression(); + this.state = 3041; + this.selectLiteralColumnName(); + } + break; + case 3: + { + this.state = 3042; + this.selectExpressionColumnName(); } break; } - this.state = 3011; + this.state = 3052; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: { - this.state = 3005; + this.state = 3046; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3004; + this.state = 3045; this.match(SparkSqlParser.KW_AS); } break; } - this.state = 3009; + this.state = 3050; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_ADD: @@ -13663,13 +13841,13 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.IDENTIFIER: case SparkSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3007; + this.state = 3048; localContext._name = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: { - this.state = 3008; + this.state = 3049; this.identifierList(); } break; @@ -13697,31 +13875,55 @@ export class SparkSqlParser extends SQLParserBase { } public namedExpressionSeq(): NamedExpressionSeqContext { let localContext = new NamedExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 258, SparkSqlParser.RULE_namedExpressionSeq); + this.enterRule(localContext, 268, SparkSqlParser.RULE_namedExpressionSeq); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3013; + this.state = 3054; this.namedExpression(); - this.state = 3018; + this.state = 3059; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 397, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3014; + this.state = 3055; this.match(SparkSqlParser.COMMA); - this.state = 3015; + this.state = 3056; this.namedExpression(); } } } - this.state = 3020; + this.state = 3061; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 395, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 397, 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 selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 270, SparkSqlParser.RULE_selectList); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 3062; + this.namedExpressionSeq(); } } catch (re) { @@ -13740,34 +13942,34 @@ export class SparkSqlParser extends SQLParserBase { } public partitionFieldList(): PartitionFieldListContext { let localContext = new PartitionFieldListContext(this.context, this.state); - this.enterRule(localContext, 260, SparkSqlParser.RULE_partitionFieldList); + this.enterRule(localContext, 272, SparkSqlParser.RULE_partitionFieldList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3021; + this.state = 3064; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3022; + this.state = 3065; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 3027; + this.state = 3070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3023; + this.state = 3066; this.match(SparkSqlParser.COMMA); - this.state = 3024; + this.state = 3067; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 3029; + this.state = 3072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3030; + this.state = 3073; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13787,22 +13989,22 @@ export class SparkSqlParser extends SQLParserBase { } public partitionField(): PartitionFieldContext { let localContext = new PartitionFieldContext(this.context, this.state); - this.enterRule(localContext, 262, SparkSqlParser.RULE_partitionField); + this.enterRule(localContext, 274, SparkSqlParser.RULE_partitionField); try { - this.state = 3034; + this.state = 3077; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3032; + this.state = 3075; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3033; + this.state = 3076; this.columnType(); } break; @@ -13824,45 +14026,45 @@ export class SparkSqlParser extends SQLParserBase { } public transform(): TransformContext { let localContext = new TransformContext(this.context, this.state); - this.enterRule(localContext, 264, SparkSqlParser.RULE_transform); + this.enterRule(localContext, 276, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 3049; + this.state = 3092; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3036; + this.state = 3079; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3037; + this.state = 3080; localContext._transformName = this.identifier(); - this.state = 3038; + this.state = 3081; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3039; + this.state = 3082; this.transformArgument(); - this.state = 3044; + this.state = 3087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3040; + this.state = 3083; this.match(SparkSqlParser.COMMA); - this.state = 3041; + this.state = 3084; this.transformArgument(); } } - this.state = 3046; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3047; + this.state = 3090; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -13884,22 +14086,22 @@ export class SparkSqlParser extends SQLParserBase { } public transformArgument(): TransformArgumentContext { let localContext = new TransformArgumentContext(this.context, this.state); - this.enterRule(localContext, 266, SparkSqlParser.RULE_transformArgument); + this.enterRule(localContext, 278, SparkSqlParser.RULE_transformArgument); try { - this.state = 3053; + this.state = 3096; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3051; + this.state = 3094; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3052; + this.state = 3095; this.constant(); } break; @@ -13921,11 +14123,11 @@ export class SparkSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 268, SparkSqlParser.RULE_expression); + this.enterRule(localContext, 280, SparkSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3055; + this.state = 3098; this.booleanExpression(0); } } @@ -13945,15 +14147,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedArgumentExpression(): NamedArgumentExpressionContext { let localContext = new NamedArgumentExpressionContext(this.context, this.state); - this.enterRule(localContext, 270, SparkSqlParser.RULE_namedArgumentExpression); + this.enterRule(localContext, 282, SparkSqlParser.RULE_namedArgumentExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3057; + this.state = 3100; localContext._key = this.identifier(); - this.state = 3058; + this.state = 3101; this.match(SparkSqlParser.FAT_ARROW); - this.state = 3059; + this.state = 3102; localContext._value = this.expression(); } } @@ -13973,22 +14175,22 @@ export class SparkSqlParser extends SQLParserBase { } public functionArgument(): FunctionArgumentContext { let localContext = new FunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 272, SparkSqlParser.RULE_functionArgument); + this.enterRule(localContext, 284, SparkSqlParser.RULE_functionArgument); try { - this.state = 3063; + this.state = 3106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3061; + this.state = 3104; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3062; + this.state = 3105; this.namedArgumentExpression(); } break; @@ -14010,26 +14212,26 @@ export class SparkSqlParser extends SQLParserBase { } public expressionSeq(): ExpressionSeqContext { let localContext = new ExpressionSeqContext(this.context, this.state); - this.enterRule(localContext, 274, SparkSqlParser.RULE_expressionSeq); + this.enterRule(localContext, 286, SparkSqlParser.RULE_expressionSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3065; + this.state = 3108; this.expression(); - this.state = 3070; + this.state = 3113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3066; + this.state = 3109; this.match(SparkSqlParser.COMMA); - this.state = 3067; + this.state = 3110; this.expression(); } } - this.state = 3072; + this.state = 3115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14061,19 +14263,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 276; - this.enterRecursionRule(localContext, 276, SparkSqlParser.RULE_booleanExpression, _p); + let _startState = 288; + this.enterRecursionRule(localContext, 288, SparkSqlParser.RULE_booleanExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3085; + this.state = 3128; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { case 1: { - this.state = 3074; + this.state = 3117; _la = this.tokenStream.LA(1); if(!(_la === 197 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14082,32 +14284,32 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3075; + this.state = 3118; this.booleanExpression(5); } break; case 2: { - this.state = 3076; + this.state = 3119; this.match(SparkSqlParser.KW_EXISTS); - this.state = 3077; + this.state = 3120; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3078; + this.state = 3121; this.query(); - this.state = 3079; + this.state = 3122; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3081; + this.state = 3124; this.valueExpression(0); - this.state = 3083; + this.state = 3126; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: { - this.state = 3082; + this.state = 3125; this.predicate(); } break; @@ -14116,9 +14318,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3095; + this.state = 3138; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 408, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14126,21 +14328,21 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3093; + this.state = 3136; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { case 1: { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3087; + this.state = 3130; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3088; + this.state = 3131; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 3089; + this.state = 3132; localContext._right = this.booleanExpression(3); } break; @@ -14149,22 +14351,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3090; + this.state = 3133; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3091; + this.state = 3134; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 3092; + this.state = 3135; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 3097; + this.state = 3140; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 406, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 408, this.context); } } } @@ -14184,111 +14386,111 @@ export class SparkSqlParser extends SQLParserBase { } public predicate(): PredicateContext { let localContext = new PredicateContext(this.context, this.state); - this.enterRule(localContext, 278, SparkSqlParser.RULE_predicate); + this.enterRule(localContext, 290, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3180; + this.state = 3223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3099; + this.state = 3142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3098; + this.state = 3141; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3101; + this.state = 3144; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3102; + this.state = 3145; localContext._lower = this.valueExpression(0); - this.state = 3103; + this.state = 3146; this.match(SparkSqlParser.KW_AND); - this.state = 3104; + this.state = 3147; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3107; + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3106; + this.state = 3149; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3109; + this.state = 3152; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3110; + this.state = 3153; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3111; + this.state = 3154; this.expression(); - this.state = 3116; + this.state = 3159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3112; + this.state = 3155; this.match(SparkSqlParser.COMMA); - this.state = 3113; + this.state = 3156; this.expression(); } } - this.state = 3118; + this.state = 3161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3119; + this.state = 3162; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3122; + this.state = 3165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3121; + this.state = 3164; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3124; + this.state = 3167; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3125; + this.state = 3168; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3126; + this.state = 3169; this.query(); - this.state = 3127; + this.state = 3170; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3130; + this.state = 3173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3129; + this.state = 3172; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3132; + this.state = 3175; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 252)) { @@ -14298,24 +14500,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3133; + this.state = 3176; localContext._pattern = this.valueExpression(0); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3135; + this.state = 3178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3134; + this.state = 3177; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3137; + this.state = 3180; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14325,7 +14527,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3138; + this.state = 3181; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 16 || _la === 277)) { @@ -14335,40 +14537,40 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3152; + this.state = 3195; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 3139; + this.state = 3182; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3140; + this.state = 3183; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: { - this.state = 3141; + this.state = 3184; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3142; + this.state = 3185; this.expression(); - this.state = 3147; + this.state = 3190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3143; + this.state = 3186; this.match(SparkSqlParser.COMMA); - this.state = 3144; + this.state = 3187; this.expression(); } } - this.state = 3149; + this.state = 3192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3150; + this.state = 3193; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14378,17 +14580,17 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3155; + this.state = 3198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3154; + this.state = 3197; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3157; + this.state = 3200; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14398,16 +14600,16 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3158; + this.state = 3201; localContext._pattern = this.valueExpression(0); - this.state = 3161; + this.state = 3204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 3159; + this.state = 3202; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3160; + this.state = 3203; localContext._escapeChar = this.stringLit(); } break; @@ -14417,38 +14619,38 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3163; + this.state = 3206; this.match(SparkSqlParser.KW_IS); - this.state = 3165; + this.state = 3208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3164; + this.state = 3207; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3167; + this.state = 3210; localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3168; + this.state = 3211; this.match(SparkSqlParser.KW_IS); - this.state = 3170; + this.state = 3213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3169; + this.state = 3212; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3172; + this.state = 3215; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316 || _la === 325)) { @@ -14463,23 +14665,23 @@ export class SparkSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3173; + this.state = 3216; this.match(SparkSqlParser.KW_IS); - this.state = 3175; + this.state = 3218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3174; + this.state = 3217; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3177; + this.state = 3220; localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); - this.state = 3178; + this.state = 3221; this.match(SparkSqlParser.KW_FROM); - this.state = 3179; + this.state = 3222; localContext._right = this.valueExpression(0); } break; @@ -14511,25 +14713,25 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 280; - this.enterRecursionRule(localContext, 280, SparkSqlParser.RULE_valueExpression, _p); + let _startState = 292; + this.enterRecursionRule(localContext, 292, SparkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3186; + this.state = 3229; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3183; + this.state = 3226; this.primaryExpression(0); } break; case 2: { - this.state = 3184; + this.state = 3227; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 35) !== 0))) { @@ -14539,15 +14741,15 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3185; + this.state = 3228; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3209; + this.state = 3252; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 425, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14555,19 +14757,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3207; + this.state = 3250; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3188; + this.state = 3231; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3189; + this.state = 3232; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 7) !== 0))) { @@ -14577,7 +14779,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3190; + this.state = 3233; localContext._right = this.valueExpression(7); } break; @@ -14586,11 +14788,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3191; + this.state = 3234; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3192; + this.state = 3235; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 259) !== 0))) { @@ -14600,7 +14802,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3193; + this.state = 3236; localContext._right = this.valueExpression(6); } break; @@ -14609,13 +14811,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3194; + this.state = 3237; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3195; + this.state = 3238; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3196; + this.state = 3239; localContext._right = this.valueExpression(5); } break; @@ -14624,13 +14826,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3197; + this.state = 3240; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3198; + this.state = 3241; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3199; + this.state = 3242; localContext._right = this.valueExpression(4); } break; @@ -14639,13 +14841,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3200; + this.state = 3243; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3201; + this.state = 3244; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3202; + this.state = 3245; localContext._right = this.valueExpression(3); } break; @@ -14654,22 +14856,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3203; + this.state = 3246; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3204; + this.state = 3247; this.comparisonOperator(); - this.state = 3205; + this.state = 3248; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3211; + this.state = 3254; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 423, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 425, this.context); } } } @@ -14689,12 +14891,12 @@ export class SparkSqlParser extends SQLParserBase { } public datetimeUnit(): DatetimeUnitContext { let localContext = new DatetimeUnitContext(this.context, this.state); - this.enterRule(localContext, 282, SparkSqlParser.RULE_datetimeUnit); + this.enterRule(localContext, 294, SparkSqlParser.RULE_datetimeUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3212; + this.state = 3255; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 85) !== 0) || _la === 231 || _la === 259 || _la === 341 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -14731,19 +14933,19 @@ export class SparkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 284; - this.enterRecursionRule(localContext, 284, SparkSqlParser.RULE_primaryExpression, _p); + let _startState = 296; + this.enterRecursionRule(localContext, 296, SparkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3463; + this.state = 3506; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 3215; + this.state = 3258; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 268 || _la === 331)) { @@ -14757,7 +14959,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 3216; + this.state = 3259; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 75 || _la === 306)) { @@ -14767,9 +14969,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3217; + this.state = 3260; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3220; + this.state = 3263; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14784,35 +14986,35 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3218; + this.state = 3261; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3219; + this.state = 3262; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3222; + this.state = 3265; this.match(SparkSqlParser.COMMA); - this.state = 3223; + this.state = 3266; localContext._unitsAmount = this.valueExpression(0); - this.state = 3224; + this.state = 3267; this.match(SparkSqlParser.COMMA); - this.state = 3225; + this.state = 3268; localContext._timestamp = this.valueExpression(0); - this.state = 3226; + this.state = 3269; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3228; + this.state = 3271; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 76 || _la === 77 || _la === 302 || _la === 307)) { @@ -14822,9 +15024,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3229; + this.state = 3272; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3232; + this.state = 3275; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14839,105 +15041,105 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3230; + this.state = 3273; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3231; + this.state = 3274; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3234; + this.state = 3277; this.match(SparkSqlParser.COMMA); - this.state = 3235; + this.state = 3278; localContext._startTimestamp = this.valueExpression(0); - this.state = 3236; + this.state = 3279; this.match(SparkSqlParser.COMMA); - this.state = 3237; + this.state = 3280; localContext._endTimestamp = this.valueExpression(0); - this.state = 3238; + this.state = 3281; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3240; + this.state = 3283; this.match(SparkSqlParser.KW_CASE); - this.state = 3242; + this.state = 3285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3241; + this.state = 3284; this.whenClause(); } } - this.state = 3244; + this.state = 3287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3248; + this.state = 3291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3246; + this.state = 3289; this.match(SparkSqlParser.KW_ELSE); - this.state = 3247; + this.state = 3290; localContext._elseExpression = this.expression(); } } - this.state = 3250; + this.state = 3293; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3252; + this.state = 3295; this.match(SparkSqlParser.KW_CASE); - this.state = 3253; + this.state = 3296; this.expression(); - this.state = 3255; + this.state = 3298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3254; + this.state = 3297; this.whenClause(); } } - this.state = 3257; + this.state = 3300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3261; + this.state = 3304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3259; + this.state = 3302; this.match(SparkSqlParser.KW_ELSE); - this.state = 3260; + this.state = 3303; localContext._elseExpression = this.expression(); } } - this.state = 3263; + this.state = 3306; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3265; + this.state = 3308; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 318)) { @@ -14947,280 +15149,280 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3266; + this.state = 3309; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3267; + this.state = 3310; this.expression(); - this.state = 3268; + this.state = 3311; this.match(SparkSqlParser.KW_AS); - this.state = 3269; + this.state = 3312; this.dataType(); - this.state = 3270; + this.state = 3313; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3272; + this.state = 3315; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3273; + this.state = 3316; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3282; + this.state = 3325; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 3274; + this.state = 3317; this.namedExpression(); - this.state = 3279; + this.state = 3322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3275; + this.state = 3318; this.match(SparkSqlParser.COMMA); - this.state = 3276; + this.state = 3319; this.namedExpression(); } } - this.state = 3281; + this.state = 3324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3284; + this.state = 3327; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3285; + this.state = 3328; this.match(SparkSqlParser.KW_FIRST); - this.state = 3286; + this.state = 3329; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3287; + this.state = 3330; this.expression(); - this.state = 3290; + this.state = 3333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3288; + this.state = 3331; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3289; + this.state = 3332; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3292; + this.state = 3335; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3294; + this.state = 3337; this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3295; + this.state = 3338; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3296; + this.state = 3339; this.expression(); - this.state = 3299; + this.state = 3342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3297; + this.state = 3340; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3298; + this.state = 3341; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3301; + this.state = 3344; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3303; + this.state = 3346; this.match(SparkSqlParser.KW_LAST); - this.state = 3304; + this.state = 3347; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3305; + this.state = 3348; this.expression(); - this.state = 3308; + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3306; + this.state = 3349; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3307; + this.state = 3350; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3310; + this.state = 3353; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3312; + this.state = 3355; this.match(SparkSqlParser.KW_POSITION); - this.state = 3313; + this.state = 3356; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3314; + this.state = 3357; localContext._substr = this.valueExpression(0); - this.state = 3315; + this.state = 3358; this.match(SparkSqlParser.KW_IN); - this.state = 3316; + this.state = 3359; localContext._str = this.valueExpression(0); - this.state = 3317; + this.state = 3360; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3319; + this.state = 3362; this.constant(); } break; case 13: { - this.state = 3320; + this.state = 3363; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3321; + this.state = 3364; this.qualifiedName(); - this.state = 3322; + this.state = 3365; this.match(SparkSqlParser.DOT); - this.state = 3323; + this.state = 3366; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3325; + this.state = 3368; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3326; + this.state = 3369; this.namedExpression(); - this.state = 3329; + this.state = 3372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3327; + this.state = 3370; this.match(SparkSqlParser.COMMA); - this.state = 3328; + this.state = 3371; this.namedExpression(); } } - this.state = 3331; + this.state = 3374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3333; + this.state = 3376; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3335; + this.state = 3378; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3336; + this.state = 3379; this.query(); - this.state = 3337; + this.state = 3380; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3339; + this.state = 3382; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3340; + this.state = 3383; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3341; + this.state = 3384; this.expression(); - this.state = 3342; + this.state = 3385; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3344; + this.state = 3387; this.functionName(); - this.state = 3345; + this.state = 3388; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3357; + this.state = 3400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 3347; + this.state = 3390; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3346; + this.state = 3389; this.setQuantifier(); } break; } - this.state = 3349; + this.state = 3392; this.functionArgument(); - this.state = 3354; + this.state = 3397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3350; + this.state = 3393; this.match(SparkSqlParser.COMMA); - this.state = 3351; + this.state = 3394; this.functionArgument(); } } - this.state = 3356; + this.state = 3399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3359; + this.state = 3402; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3366; + this.state = 3409; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3360; + this.state = 3403; this.match(SparkSqlParser.KW_FILTER); - this.state = 3361; + this.state = 3404; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3362; + this.state = 3405; this.match(SparkSqlParser.KW_WHERE); - this.state = 3363; + this.state = 3406; localContext._where = this.booleanExpression(0); - this.state = 3364; + this.state = 3407; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3370; + this.state = 3413; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3368; + this.state = 3411; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 138 || _la === 246)) { @@ -15230,19 +15432,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3369; + this.state = 3412; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3374; + this.state = 3417; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 3372; + this.state = 3415; this.match(SparkSqlParser.KW_OVER); - this.state = 3373; + this.state = 3416; this.windowSpec(); } break; @@ -15251,79 +15453,79 @@ export class SparkSqlParser extends SQLParserBase { break; case 19: { - this.state = 3376; + this.state = 3419; this.identifier(); - this.state = 3377; + this.state = 3420; this.match(SparkSqlParser.ARROW); - this.state = 3378; + this.state = 3421; this.expression(); } break; case 20: { - this.state = 3380; + this.state = 3423; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3381; + this.state = 3424; this.identifier(); - this.state = 3384; + this.state = 3427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3382; + this.state = 3425; this.match(SparkSqlParser.COMMA); - this.state = 3383; + this.state = 3426; this.identifier(); } } - this.state = 3386; + this.state = 3429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3388; + this.state = 3431; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3389; + this.state = 3432; this.match(SparkSqlParser.ARROW); - this.state = 3390; + this.state = 3433; this.expression(); } break; case 21: { - this.state = 3392; + this.state = 3435; this.identifier(); } break; case 22: { - this.state = 3393; + this.state = 3436; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3394; + this.state = 3437; this.expression(); - this.state = 3395; + this.state = 3438; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3397; + this.state = 3440; this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3398; + this.state = 3441; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3399; + this.state = 3442; localContext._field = this.identifier(); - this.state = 3400; + this.state = 3443; this.match(SparkSqlParser.KW_FROM); - this.state = 3401; + this.state = 3444; localContext._source = this.valueExpression(0); - this.state = 3402; + this.state = 3445; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3404; + this.state = 3447; _la = this.tokenStream.LA(1); if(!(_la === 287 || _la === 288)) { this.errorHandler.recoverInline(this); @@ -15332,11 +15534,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3405; + this.state = 3448; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3406; + this.state = 3449; localContext._str = this.valueExpression(0); - this.state = 3407; + this.state = 3450; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -15345,14 +15547,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3408; + this.state = 3451; localContext._pos = this.valueExpression(0); - this.state = 3411; + this.state = 3454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3409; + this.state = 3452; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -15361,27 +15563,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3410; + this.state = 3453; localContext._len = this.valueExpression(0); } } - this.state = 3413; + this.state = 3456; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3415; + this.state = 3458; this.match(SparkSqlParser.KW_TRIM); - this.state = 3416; + this.state = 3459; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3418; + this.state = 3461; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3417; + this.state = 3460; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 28 || _la === 160 || _la === 311)) { @@ -15394,59 +15596,59 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 3421; + this.state = 3464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 536839207) !== 0)) { { - this.state = 3420; + this.state = 3463; localContext._trimStr = this.valueExpression(0); } } - this.state = 3423; + this.state = 3466; this.match(SparkSqlParser.KW_FROM); - this.state = 3424; + this.state = 3467; localContext._srcStr = this.valueExpression(0); - this.state = 3425; + this.state = 3468; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3427; + this.state = 3470; this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3428; + this.state = 3471; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3429; + this.state = 3472; localContext._input = this.valueExpression(0); - this.state = 3430; + this.state = 3473; this.match(SparkSqlParser.KW_PLACING); - this.state = 3431; + this.state = 3474; localContext._replace = this.valueExpression(0); - this.state = 3432; + this.state = 3475; this.match(SparkSqlParser.KW_FROM); - this.state = 3433; + this.state = 3476; localContext._position = this.valueExpression(0); - this.state = 3436; + this.state = 3479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3434; + this.state = 3477; this.match(SparkSqlParser.KW_FOR); - this.state = 3435; + this.state = 3478; localContext._length = this.valueExpression(0); } } - this.state = 3438; + this.state = 3481; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3440; + this.state = 3483; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 220 || _la === 221)) { @@ -15456,52 +15658,52 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3441; + this.state = 3484; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3442; + this.state = 3485; localContext._percentage = this.valueExpression(0); - this.state = 3443; + this.state = 3486; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3444; + this.state = 3487; this.match(SparkSqlParser.KW_WITHIN); - this.state = 3445; + this.state = 3488; this.match(SparkSqlParser.KW_GROUP); - this.state = 3446; + this.state = 3489; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3447; + this.state = 3490; this.match(SparkSqlParser.KW_ORDER); - this.state = 3448; + this.state = 3491; this.match(SparkSqlParser.KW_BY); - this.state = 3449; + this.state = 3492; this.sortItem(); - this.state = 3450; + this.state = 3493; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3457; + this.state = 3500; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3451; + this.state = 3494; this.match(SparkSqlParser.KW_FILTER); - this.state = 3452; + this.state = 3495; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3453; + this.state = 3496; this.match(SparkSqlParser.KW_WHERE); - this.state = 3454; + this.state = 3497; localContext._where = this.booleanExpression(0); - this.state = 3455; + this.state = 3498; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3461; + this.state = 3504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 448, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3459; + this.state = 3502; this.match(SparkSqlParser.KW_OVER); - this.state = 3460; + this.state = 3503; this.windowSpec(); } break; @@ -15510,9 +15712,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3475; + this.state = 3518; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -15520,23 +15722,23 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3473; + this.state = 3516; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3465; + this.state = 3508; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3466; + this.state = 3509; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3467; + this.state = 3510; localContext._index = this.valueExpression(0); - this.state = 3468; + this.state = 3511; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15545,22 +15747,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3470; + this.state = 3513; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3471; + this.state = 3514; this.match(SparkSqlParser.DOT); - this.state = 3472; + this.state = 3515; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3477; + this.state = 3520; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 451, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); } } } @@ -15580,57 +15782,57 @@ export class SparkSqlParser extends SQLParserBase { } public literalType(): LiteralTypeContext { let localContext = new LiteralTypeContext(this.context, this.state); - this.enterRule(localContext, 286, SparkSqlParser.RULE_literalType); + this.enterRule(localContext, 298, SparkSqlParser.RULE_literalType); try { - this.state = 3485; + this.state = 3528; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3478; + this.state = 3521; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3479; + this.state = 3522; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3480; + this.state = 3523; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3481; + this.state = 3524; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3482; + this.state = 3525; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3483; + this.state = 3526; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3484; + this.state = 3527; localContext._unsupportedType = this.identifier(); } break; @@ -15652,69 +15854,69 @@ export class SparkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 288, SparkSqlParser.RULE_constant); + this.enterRule(localContext, 300, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3502; + this.state = 3545; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3487; + this.state = 3530; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3488; + this.state = 3531; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3489; + this.state = 3532; this.match(SparkSqlParser.COLON); - this.state = 3490; + this.state = 3533; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3491; + this.state = 3534; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3492; + this.state = 3535; this.literalType(); - this.state = 3493; + this.state = 3536; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3495; + this.state = 3538; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3496; + this.state = 3539; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3498; + this.state = 3541; this.errorHandler.sync(this); alternative = 1; do { @@ -15722,7 +15924,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3497; + this.state = 3540; this.stringLit(); } } @@ -15730,9 +15932,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3500; + this.state = 3543; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -15754,12 +15956,12 @@ export class SparkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 290, SparkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 302, SparkSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3504; + this.state = 3547; _la = this.tokenStream.LA(1); if(!(((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -15786,12 +15988,12 @@ export class SparkSqlParser extends SQLParserBase { } public arithmeticOperator(): ArithmeticOperatorContext { let localContext = new ArithmeticOperatorContext(this.context, this.state); - this.enterRule(localContext, 292, SparkSqlParser.RULE_arithmeticOperator); + this.enterRule(localContext, 304, SparkSqlParser.RULE_arithmeticOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3506; + this.state = 3549; _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -15818,12 +16020,12 @@ export class SparkSqlParser extends SQLParserBase { } public predicateOperator(): PredicateOperatorContext { let localContext = new PredicateOperatorContext(this.context, this.state); - this.enterRule(localContext, 294, SparkSqlParser.RULE_predicateOperator); + this.enterRule(localContext, 306, SparkSqlParser.RULE_predicateOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3508; + this.state = 3551; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 140 || _la === 197 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -15850,12 +16052,12 @@ export class SparkSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 296, SparkSqlParser.RULE_booleanValue); + this.enterRule(localContext, 308, SparkSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3510; + this.state = 3553; _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316)) { this.errorHandler.recoverInline(this); @@ -15882,24 +16084,24 @@ export class SparkSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 298, SparkSqlParser.RULE_interval); + this.enterRule(localContext, 310, SparkSqlParser.RULE_interval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3555; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3515; + this.state = 3558; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: { - this.state = 3513; + this.state = 3556; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3514; + this.state = 3557; this.errorCapturingUnitToUnitInterval(); } break; @@ -15922,18 +16124,18 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 300, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 312, SparkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3560; localContext._body = this.multiUnitsInterval(); - this.state = 3519; + this.state = 3562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: { - this.state = 3518; + this.state = 3561; this.unitToUnitInterval(); } break; @@ -15956,12 +16158,12 @@ export class SparkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 302, SparkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 314, SparkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3524; + this.state = 3567; this.errorHandler.sync(this); alternative = 1; do { @@ -15969,9 +16171,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3521; + this.state = 3564; this.intervalValue(); - this.state = 3522; + this.state = 3565; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -15980,9 +16182,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3526; + this.state = 3569; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 459, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -16002,24 +16204,24 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 304, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 316, SparkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3528; + this.state = 3571; localContext._body = this.unitToUnitInterval(); - this.state = 3531; + this.state = 3574; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3529; + this.state = 3572; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3530; + this.state = 3573; localContext._error2 = this.unitToUnitInterval(); } break; @@ -16042,17 +16244,17 @@ export class SparkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 306, SparkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 318, SparkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3576; localContext._value = this.intervalValue(); - this.state = 3534; + this.state = 3577; this.unitInUnitToUnit(); - this.state = 3535; + this.state = 3578; this.match(SparkSqlParser.KW_TO); - this.state = 3536; + this.state = 3579; this.unitInUnitToUnit(); } } @@ -16072,17 +16274,17 @@ export class SparkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 308, SparkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 320, SparkSqlParser.RULE_intervalValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3539; + this.state = 3582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361 || _la === 362) { { - this.state = 3538; + this.state = 3581; _la = this.tokenStream.LA(1); if(!(_la === 361 || _la === 362)) { this.errorHandler.recoverInline(this); @@ -16094,25 +16296,25 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 3544; + this.state = 3587; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3541; + this.state = 3584; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3542; + this.state = 3585; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3543; + this.state = 3586; this.stringLit(); } break; @@ -16137,12 +16339,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInMultiUnits(): UnitInMultiUnitsContext { let localContext = new UnitInMultiUnitsContext(this.context, this.state); - this.enterRule(localContext, 310, SparkSqlParser.RULE_unitInMultiUnits); + this.enterRule(localContext, 322, SparkSqlParser.RULE_unitInMultiUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3546; + this.state = 3589; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 12543) !== 0) || _la === 259 || _la === 260 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -16169,12 +16371,12 @@ export class SparkSqlParser extends SQLParserBase { } public unitInUnitToUnit(): UnitInUnitToUnitContext { let localContext = new UnitInUnitToUnitContext(this.context, this.state); - this.enterRule(localContext, 312, SparkSqlParser.RULE_unitInUnitToUnit); + this.enterRule(localContext, 324, SparkSqlParser.RULE_unitInUnitToUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3548; + this.state = 3591; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 186 || _la === 259 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16201,24 +16403,24 @@ export class SparkSqlParser extends SQLParserBase { } public colPosition(): ColPositionContext { let localContext = new ColPositionContext(this.context, this.state); - this.enterRule(localContext, 314, SparkSqlParser.RULE_colPosition); + this.enterRule(localContext, 326, SparkSqlParser.RULE_colPosition); try { - this.state = 3553; + this.state = 3596; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3550; + this.state = 3593; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3551; + this.state = 3594; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3552; + this.state = 3595; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -16242,218 +16444,218 @@ export class SparkSqlParser extends SQLParserBase { } public type_(): TypeContext { let localContext = new TypeContext(this.context, this.state); - this.enterRule(localContext, 316, SparkSqlParser.RULE_type); + this.enterRule(localContext, 328, SparkSqlParser.RULE_type); try { - this.state = 3585; + this.state = 3628; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3555; + this.state = 3598; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3556; + this.state = 3599; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3557; + this.state = 3600; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3558; + this.state = 3601; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3559; + this.state = 3602; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3560; + this.state = 3603; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3561; + this.state = 3604; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3562; + this.state = 3605; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3563; + this.state = 3606; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3564; + this.state = 3607; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3565; + this.state = 3608; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3566; + this.state = 3609; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3567; + this.state = 3610; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3568; + this.state = 3611; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3569; + this.state = 3612; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3570; + this.state = 3613; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3571; + this.state = 3614; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3572; + this.state = 3615; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3573; + this.state = 3616; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3574; + this.state = 3617; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3575; + this.state = 3618; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3576; + this.state = 3619; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3577; + this.state = 3620; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3578; + this.state = 3621; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3579; + this.state = 3622; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3580; + this.state = 3623; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3581; + this.state = 3624; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3582; + this.state = 3625; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3583; + this.state = 3626; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3584; + this.state = 3627; localContext._unsupportedType = this.identifier(); } break; @@ -16475,71 +16677,71 @@ export class SparkSqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 318, SparkSqlParser.RULE_dataType); + this.enterRule(localContext, 330, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3633; + this.state = 3676; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3587; + this.state = 3630; localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3588; + this.state = 3631; this.match(SparkSqlParser.LT); - this.state = 3589; + this.state = 3632; this.dataType(); - this.state = 3590; + this.state = 3633; this.match(SparkSqlParser.GT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3635; localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3593; + this.state = 3636; this.match(SparkSqlParser.LT); - this.state = 3594; + this.state = 3637; this.dataType(); - this.state = 3595; + this.state = 3638; this.match(SparkSqlParser.COMMA); - this.state = 3596; + this.state = 3639; this.dataType(); - this.state = 3597; + this.state = 3640; this.match(SparkSqlParser.GT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3599; + this.state = 3642; localContext._complex = this.match(SparkSqlParser.KW_STRUCT); - this.state = 3606; + this.state = 3649; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3600; + this.state = 3643; this.match(SparkSqlParser.LT); - this.state = 3602; + this.state = 3645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 3601; + this.state = 3644; this.complexColTypeList(); } } - this.state = 3604; + this.state = 3647; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3605; + this.state = 3648; this.match(SparkSqlParser.NEQ); } break; @@ -16551,9 +16753,9 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3608; + this.state = 3651; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3609; + this.state = 3652; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16562,14 +16764,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3612; + this.state = 3655; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: { - this.state = 3610; + this.state = 3653; this.match(SparkSqlParser.KW_TO); - this.state = 3611; + this.state = 3654; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16579,9 +16781,9 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3614; + this.state = 3657; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3615; + this.state = 3658; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16590,14 +16792,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3618; + this.state = 3661; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3616; + this.state = 3659; this.match(SparkSqlParser.KW_TO); - this.state = 3617; + this.state = 3660; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16614,34 +16816,34 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3620; + this.state = 3663; this.type_(); - this.state = 3631; + this.state = 3674; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3621; + this.state = 3664; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3622; + this.state = 3665; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 3627; + this.state = 3670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3623; + this.state = 3666; this.match(SparkSqlParser.COMMA); - this.state = 3624; + this.state = 3667; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3629; + this.state = 3672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3630; + this.state = 3673; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16666,26 +16868,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForAdd(): QualifiedColTypeWithPositionSeqForAddContext { let localContext = new QualifiedColTypeWithPositionSeqForAddContext(this.context, this.state); - this.enterRule(localContext, 320, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); + this.enterRule(localContext, 332, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForAdd); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3635; + this.state = 3678; this.qualifiedColTypeWithPositionForAdd(); - this.state = 3640; + this.state = 3683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3636; + this.state = 3679; this.match(SparkSqlParser.COMMA); - this.state = 3637; + this.state = 3680; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3642; + this.state = 3685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16707,30 +16909,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForAdd(): QualifiedColTypeWithPositionForAddContext { let localContext = new QualifiedColTypeWithPositionForAddContext(this.context, this.state); - this.enterRule(localContext, 322, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); + this.enterRule(localContext, 334, SparkSqlParser.RULE_qualifiedColTypeWithPositionForAdd); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3643; + this.state = 3686; localContext._name = this.columnNameCreate(); - this.state = 3644; + this.state = 3687; this.dataType(); - this.state = 3648; + this.state = 3691; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3645; + this.state = 3688; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3650; + this.state = 3693; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 471, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 473, this.context); } } } @@ -16750,26 +16952,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionSeqForReplace(): QualifiedColTypeWithPositionSeqForReplaceContext { let localContext = new QualifiedColTypeWithPositionSeqForReplaceContext(this.context, this.state); - this.enterRule(localContext, 324, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); + this.enterRule(localContext, 336, SparkSqlParser.RULE_qualifiedColTypeWithPositionSeqForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3651; + this.state = 3694; this.qualifiedColTypeWithPositionForReplace(); - this.state = 3656; + this.state = 3699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3652; + this.state = 3695; this.match(SparkSqlParser.COMMA); - this.state = 3653; + this.state = 3696; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3658; + this.state = 3701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16791,26 +16993,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedColTypeWithPositionForReplace(): QualifiedColTypeWithPositionForReplaceContext { let localContext = new QualifiedColTypeWithPositionForReplaceContext(this.context, this.state); - this.enterRule(localContext, 326, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); + this.enterRule(localContext, 338, SparkSqlParser.RULE_qualifiedColTypeWithPositionForReplace); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3659; + this.state = 3702; localContext._name = this.columnName(); - this.state = 3660; + this.state = 3703; this.dataType(); - this.state = 3664; + this.state = 3707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 197) { { { - this.state = 3661; + this.state = 3704; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3666; + this.state = 3709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16832,31 +17034,31 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionDescriptorWithPosition(): ColDefinitionDescriptorWithPositionContext { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); - this.enterRule(localContext, 328, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); + this.enterRule(localContext, 340, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3672; + this.state = 3715; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3667; + this.state = 3710; this.match(SparkSqlParser.KW_NOT); - this.state = 3668; + this.state = 3711; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3669; + this.state = 3712; this.defaultExpression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3670; + this.state = 3713; this.commentSpec(); } break; @@ -16864,7 +17066,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3671; + this.state = 3714; this.colPosition(); } break; @@ -16888,13 +17090,13 @@ export class SparkSqlParser extends SQLParserBase { } public defaultExpression(): DefaultExpressionContext { let localContext = new DefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 330, SparkSqlParser.RULE_defaultExpression); + this.enterRule(localContext, 342, SparkSqlParser.RULE_defaultExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3674; + this.state = 3717; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3675; + this.state = 3718; this.expression(); } } @@ -16914,12 +17116,12 @@ export class SparkSqlParser extends SQLParserBase { } public variableDefaultExpression(): VariableDefaultExpressionContext { let localContext = new VariableDefaultExpressionContext(this.context, this.state); - this.enterRule(localContext, 332, SparkSqlParser.RULE_variableDefaultExpression); + this.enterRule(localContext, 344, SparkSqlParser.RULE_variableDefaultExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3677; + this.state = 3720; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 352)) { this.errorHandler.recoverInline(this); @@ -16928,7 +17130,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3678; + this.state = 3721; this.expression(); } } @@ -16948,30 +17150,30 @@ export class SparkSqlParser extends SQLParserBase { } public colTypeList(): ColTypeListContext { let localContext = new ColTypeListContext(this.context, this.state); - this.enterRule(localContext, 334, SparkSqlParser.RULE_colTypeList); + this.enterRule(localContext, 346, SparkSqlParser.RULE_colTypeList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3680; + this.state = 3723; this.columnType(); - this.state = 3685; + this.state = 3728; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3681; + this.state = 3724; this.match(SparkSqlParser.COMMA); - this.state = 3682; + this.state = 3725; this.columnType(); } } } - this.state = 3687; + this.state = 3730; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 475, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); } } } @@ -16991,32 +17193,32 @@ export class SparkSqlParser extends SQLParserBase { } public columnType(): ColumnTypeContext { let localContext = new ColumnTypeContext(this.context, this.state); - this.enterRule(localContext, 336, SparkSqlParser.RULE_columnType); + this.enterRule(localContext, 348, SparkSqlParser.RULE_columnType); try { this.enterOuterAlt(localContext, 1); { - this.state = 3688; + this.state = 3731; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3689; + this.state = 3732; this.dataType(); - this.state = 3692; + this.state = 3735; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: { - this.state = 3690; + this.state = 3733; this.match(SparkSqlParser.KW_NOT); - this.state = 3691; + this.state = 3734; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3695; + this.state = 3738; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { - this.state = 3694; + this.state = 3737; this.commentSpec(); } break; @@ -17039,26 +17241,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColTypeList(): CreateOrReplaceTableColTypeListContext { let localContext = new CreateOrReplaceTableColTypeListContext(this.context, this.state); - this.enterRule(localContext, 338, SparkSqlParser.RULE_createOrReplaceTableColTypeList); + this.enterRule(localContext, 350, SparkSqlParser.RULE_createOrReplaceTableColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3697; + this.state = 3740; this.createOrReplaceTableColType(); - this.state = 3702; + this.state = 3745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3698; + this.state = 3741; this.match(SparkSqlParser.COMMA); - this.state = 3699; + this.state = 3742; this.createOrReplaceTableColType(); } } - this.state = 3704; + this.state = 3747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17080,26 +17282,26 @@ export class SparkSqlParser extends SQLParserBase { } public createOrReplaceTableColType(): CreateOrReplaceTableColTypeContext { let localContext = new CreateOrReplaceTableColTypeContext(this.context, this.state); - this.enterRule(localContext, 340, SparkSqlParser.RULE_createOrReplaceTableColType); + this.enterRule(localContext, 352, SparkSqlParser.RULE_createOrReplaceTableColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3705; + this.state = 3748; localContext._colName = this.columnNameCreate(); - this.state = 3706; + this.state = 3749; localContext._colType = this.dataType(); - this.state = 3710; + this.state = 3753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 82 || _la === 127 || _la === 197) { { { - this.state = 3707; + this.state = 3750; this.colDefinitionOption(); } } - this.state = 3712; + this.state = 3755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17121,38 +17323,38 @@ export class SparkSqlParser extends SQLParserBase { } public colDefinitionOption(): ColDefinitionOptionContext { let localContext = new ColDefinitionOptionContext(this.context, this.state); - this.enterRule(localContext, 342, SparkSqlParser.RULE_colDefinitionOption); + this.enterRule(localContext, 354, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3718; + this.state = 3761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3713; + this.state = 3756; this.match(SparkSqlParser.KW_NOT); - this.state = 3714; + this.state = 3757; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3715; + this.state = 3758; this.defaultExpression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3716; + this.state = 3759; this.generationExpression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3717; + this.state = 3760; this.commentSpec(); } break; @@ -17176,21 +17378,21 @@ export class SparkSqlParser extends SQLParserBase { } public generationExpression(): GenerationExpressionContext { let localContext = new GenerationExpressionContext(this.context, this.state); - this.enterRule(localContext, 344, SparkSqlParser.RULE_generationExpression); + this.enterRule(localContext, 356, SparkSqlParser.RULE_generationExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 3720; + this.state = 3763; this.match(SparkSqlParser.KW_GENERATED); - this.state = 3721; + this.state = 3764; this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3722; + this.state = 3765; this.match(SparkSqlParser.KW_AS); - this.state = 3723; + this.state = 3766; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3724; + this.state = 3767; this.expression(); - this.state = 3725; + this.state = 3768; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -17210,26 +17412,26 @@ export class SparkSqlParser extends SQLParserBase { } public complexColTypeList(): ComplexColTypeListContext { let localContext = new ComplexColTypeListContext(this.context, this.state); - this.enterRule(localContext, 346, SparkSqlParser.RULE_complexColTypeList); + this.enterRule(localContext, 358, SparkSqlParser.RULE_complexColTypeList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3727; + this.state = 3770; this.complexColType(); - this.state = 3732; + this.state = 3775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3728; + this.state = 3771; this.match(SparkSqlParser.COMMA); - this.state = 3729; + this.state = 3772; this.complexColType(); } } - this.state = 3734; + this.state = 3777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17251,43 +17453,43 @@ export class SparkSqlParser extends SQLParserBase { } public complexColType(): ComplexColTypeContext { let localContext = new ComplexColTypeContext(this.context, this.state); - this.enterRule(localContext, 348, SparkSqlParser.RULE_complexColType); + this.enterRule(localContext, 360, SparkSqlParser.RULE_complexColType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3735; + this.state = 3778; this.identifier(); - this.state = 3737; + this.state = 3780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 371) { { - this.state = 3736; + this.state = 3779; this.match(SparkSqlParser.COLON); } } - this.state = 3739; + this.state = 3782; this.dataType(); - this.state = 3742; + this.state = 3785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3740; + this.state = 3783; this.match(SparkSqlParser.KW_NOT); - this.state = 3741; + this.state = 3784; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3745; + this.state = 3788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3744; + this.state = 3787; this.commentSpec(); } } @@ -17310,17 +17512,17 @@ export class SparkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 350, SparkSqlParser.RULE_whenClause); + this.enterRule(localContext, 362, SparkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3747; + this.state = 3790; this.match(SparkSqlParser.KW_WHEN); - this.state = 3748; + this.state = 3791; localContext._condition = this.expression(); - this.state = 3749; + this.state = 3792; this.match(SparkSqlParser.KW_THEN); - this.state = 3750; + this.state = 3793; localContext._result = this.expression(); } } @@ -17340,32 +17542,32 @@ export class SparkSqlParser extends SQLParserBase { } public windowClause(): WindowClauseContext { let localContext = new WindowClauseContext(this.context, this.state); - this.enterRule(localContext, 352, SparkSqlParser.RULE_windowClause); + this.enterRule(localContext, 364, SparkSqlParser.RULE_windowClause); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3752; + this.state = 3795; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3753; + this.state = 3796; this.namedWindow(); - this.state = 3758; + this.state = 3801; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 487, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3754; + this.state = 3797; this.match(SparkSqlParser.COMMA); - this.state = 3755; + this.state = 3798; this.namedWindow(); } } } - this.state = 3760; + this.state = 3803; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 485, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 487, this.context); } } } @@ -17385,15 +17587,15 @@ export class SparkSqlParser extends SQLParserBase { } public zorderClause(): ZorderClauseContext { let localContext = new ZorderClauseContext(this.context, this.state); - this.enterRule(localContext, 354, SparkSqlParser.RULE_zorderClause); + this.enterRule(localContext, 366, SparkSqlParser.RULE_zorderClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3761; + this.state = 3804; this.match(SparkSqlParser.KW_ZORDER); - this.state = 3762; + this.state = 3805; this.match(SparkSqlParser.KW_BY); - this.state = 3763; + this.state = 3806; this.columnNameSeq(); } } @@ -17413,15 +17615,15 @@ export class SparkSqlParser extends SQLParserBase { } public namedWindow(): NamedWindowContext { let localContext = new NamedWindowContext(this.context, this.state); - this.enterRule(localContext, 356, SparkSqlParser.RULE_namedWindow); + this.enterRule(localContext, 368, SparkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localContext, 1); { - this.state = 3765; + this.state = 3808; localContext._name = this.errorCapturingIdentifier(); - this.state = 3766; + this.state = 3809; this.match(SparkSqlParser.KW_AS); - this.state = 3767; + this.state = 3810; this.windowSpec(); } } @@ -17441,61 +17643,61 @@ export class SparkSqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 358, SparkSqlParser.RULE_windowSpec); + this.enterRule(localContext, 370, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3815; + this.state = 3858; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3769; + this.state = 3812; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3770; + this.state = 3813; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3771; + this.state = 3814; localContext._name = this.errorCapturingIdentifier(); - this.state = 3772; + this.state = 3815; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3774; + this.state = 3817; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3809; + this.state = 3852; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3775; + this.state = 3818; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3776; + this.state = 3819; this.match(SparkSqlParser.KW_BY); - this.state = 3777; + this.state = 3820; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3782; + this.state = 3825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3778; + this.state = 3821; this.match(SparkSqlParser.COMMA); - this.state = 3779; + this.state = 3822; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3784; + this.state = 3827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17509,12 +17711,12 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3795; + this.state = 3838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217) { { - this.state = 3785; + this.state = 3828; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -17523,37 +17725,37 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3786; + this.state = 3829; this.match(SparkSqlParser.KW_BY); - this.state = 3787; + this.state = 3830; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3792; + this.state = 3835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3788; + this.state = 3831; this.match(SparkSqlParser.COMMA); - this.state = 3789; + this.state = 3832; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3794; + this.state = 3837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3807; + this.state = 3850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 3797; + this.state = 3840; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -17562,23 +17764,23 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3798; + this.state = 3841; this.match(SparkSqlParser.KW_BY); - this.state = 3799; + this.state = 3842; this.sortItem(); - this.state = 3804; + this.state = 3847; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3800; + this.state = 3843; this.match(SparkSqlParser.COMMA); - this.state = 3801; + this.state = 3844; this.sortItem(); } } - this.state = 3806; + this.state = 3849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17590,17 +17792,17 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3812; + this.state = 3855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233 || _la === 258) { { - this.state = 3811; + this.state = 3854; this.windowFrame(); } } - this.state = 3814; + this.state = 3857; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17622,56 +17824,56 @@ export class SparkSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 360, SparkSqlParser.RULE_windowFrame); + this.enterRule(localContext, 372, SparkSqlParser.RULE_windowFrame); try { - this.state = 3833; + this.state = 3876; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 494, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3817; + this.state = 3860; localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3818; + this.state = 3861; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3819; + this.state = 3862; localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3820; + this.state = 3863; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3821; + this.state = 3864; localContext._frameType = this.match(SparkSqlParser.KW_RANGE); - this.state = 3822; + this.state = 3865; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3823; + this.state = 3866; localContext._start_ = this.frameBound(); - this.state = 3824; + this.state = 3867; this.match(SparkSqlParser.KW_AND); - this.state = 3825; + this.state = 3868; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3827; + this.state = 3870; localContext._frameType = this.match(SparkSqlParser.KW_ROWS); - this.state = 3828; + this.state = 3871; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3829; + this.state = 3872; localContext._start_ = this.frameBound(); - this.state = 3830; + this.state = 3873; this.match(SparkSqlParser.KW_AND); - this.state = 3831; + this.state = 3874; localContext._end = this.frameBound(); } break; @@ -17693,18 +17895,18 @@ export class SparkSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 362, SparkSqlParser.RULE_frameBound); + this.enterRule(localContext, 374, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3842; + this.state = 3885; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3835; + this.state = 3878; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3836; + this.state = 3879; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17719,18 +17921,18 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3837; + this.state = 3880; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3838; + this.state = 3881; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3839; + this.state = 3882; this.expression(); - this.state = 3840; + this.state = 3883; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17760,26 +17962,26 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedNameList(): QualifiedNameListContext { let localContext = new QualifiedNameListContext(this.context, this.state); - this.enterRule(localContext, 364, SparkSqlParser.RULE_qualifiedNameList); + this.enterRule(localContext, 376, SparkSqlParser.RULE_qualifiedNameList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3844; + this.state = 3887; this.qualifiedName(); - this.state = 3849; + this.state = 3892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3845; + this.state = 3888; this.match(SparkSqlParser.COMMA); - this.state = 3846; + this.state = 3889; this.qualifiedName(); } } - this.state = 3851; + this.state = 3894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17801,49 +18003,49 @@ export class SparkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 366, SparkSqlParser.RULE_functionName); + this.enterRule(localContext, 378, SparkSqlParser.RULE_functionName); try { - this.state = 3861; + this.state = 3904; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3852; + this.state = 3895; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3853; + this.state = 3896; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3854; + this.state = 3897; this.expression(); - this.state = 3855; + this.state = 3898; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3857; + this.state = 3900; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3858; + this.state = 3901; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3859; + this.state = 3902; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3860; + this.state = 3903; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17865,11 +18067,11 @@ export class SparkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 368, SparkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 380, SparkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3863; + this.state = 3906; this.qualifiedName(); } } @@ -17889,30 +18091,30 @@ export class SparkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 370, SparkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 382, SparkSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3865; + this.state = 3908; this.identifier(); - this.state = 3870; + this.state = 3913; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 500, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3866; + this.state = 3909; this.match(SparkSqlParser.DOT); - this.state = 3867; + this.state = 3910; this.identifier(); } } } - this.state = 3872; + this.state = 3915; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 498, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 500, this.context); } } } @@ -17932,13 +18134,13 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 372, SparkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 384, SparkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3873; + this.state = 3916; this.identifier(); - this.state = 3874; + this.state = 3917; this.errorCapturingIdentifierExtra(); } } @@ -17958,16 +18160,16 @@ export class SparkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 374, SparkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 386, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3883; + this.state = 3926; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3921; this.errorHandler.sync(this); alternative = 1; do { @@ -17975,9 +18177,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3876; + this.state = 3919; this.match(SparkSqlParser.MINUS); - this.state = 3877; + this.state = 3920; this.identifier(); } } @@ -17985,9 +18187,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3880; + this.state = 3923; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 501, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -18015,22 +18217,22 @@ export class SparkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 376, SparkSqlParser.RULE_identifier); + this.enterRule(localContext, 388, SparkSqlParser.RULE_identifier); try { - this.state = 3887; + this.state = 3930; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3885; + this.state = 3928; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3886; + this.state = 3929; this.strictNonReserved(); } break; @@ -18052,36 +18254,36 @@ export class SparkSqlParser extends SQLParserBase { } public strictIdentifier(): StrictIdentifierContext { let localContext = new StrictIdentifierContext(this.context, this.state); - this.enterRule(localContext, 378, SparkSqlParser.RULE_strictIdentifier); + this.enterRule(localContext, 390, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3893; + this.state = 3936; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3889; + this.state = 3932; this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3890; + this.state = 3933; this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3891; + this.state = 3934; this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3892; + this.state = 3935; this.nonReserved(); } break; @@ -18103,12 +18305,12 @@ export class SparkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 380, SparkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 392, SparkSqlParser.RULE_quotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3895; + this.state = 3938; _la = this.tokenStream.LA(1); if(!(_la === 378 || _la === 389)) { this.errorHandler.recoverInline(this); @@ -18135,11 +18337,11 @@ export class SparkSqlParser extends SQLParserBase { } public backQuotedIdentifier(): BackQuotedIdentifierContext { let localContext = new BackQuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 382, SparkSqlParser.RULE_backQuotedIdentifier); + this.enterRule(localContext, 394, SparkSqlParser.RULE_backQuotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 3897; + this.state = 3940; this.match(SparkSqlParser.BACKQUOTED_IDENTIFIER); } } @@ -18159,60 +18361,60 @@ export class SparkSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 384, SparkSqlParser.RULE_number); + this.enterRule(localContext, 396, SparkSqlParser.RULE_number); let _la: number; try { - this.state = 3939; + this.state = 3982; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 515, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3900; + this.state = 3943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3899; + this.state = 3942; this.match(SparkSqlParser.MINUS); } } - this.state = 3902; + this.state = 3945; this.match(SparkSqlParser.EXPONENT_VALUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3904; + this.state = 3947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3903; + this.state = 3946; this.match(SparkSqlParser.MINUS); } } - this.state = 3906; + this.state = 3949; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3908; + this.state = 3951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3907; + this.state = 3950; this.match(SparkSqlParser.MINUS); } } - this.state = 3910; + this.state = 3953; _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 384)) { this.errorHandler.recoverInline(this); @@ -18226,119 +18428,119 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3912; + this.state = 3955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3911; + this.state = 3954; this.match(SparkSqlParser.MINUS); } } - this.state = 3914; + this.state = 3957; this.match(SparkSqlParser.INTEGER_VALUE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3916; + this.state = 3959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3915; + this.state = 3958; this.match(SparkSqlParser.MINUS); } } - this.state = 3918; + this.state = 3961; this.match(SparkSqlParser.BIGINT_LITERAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3920; + this.state = 3963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3919; + this.state = 3962; this.match(SparkSqlParser.MINUS); } } - this.state = 3922; + this.state = 3965; this.match(SparkSqlParser.SMALLINT_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3924; + this.state = 3967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3923; + this.state = 3966; this.match(SparkSqlParser.MINUS); } } - this.state = 3926; + this.state = 3969; this.match(SparkSqlParser.TINYINT_LITERAL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3928; + this.state = 3971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3927; + this.state = 3970; this.match(SparkSqlParser.MINUS); } } - this.state = 3930; + this.state = 3973; this.match(SparkSqlParser.DOUBLE_LITERAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3932; + this.state = 3975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3931; + this.state = 3974; this.match(SparkSqlParser.MINUS); } } - this.state = 3934; + this.state = 3977; this.match(SparkSqlParser.FLOAT_LITERAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3936; + this.state = 3979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3935; + this.state = 3978; this.match(SparkSqlParser.MINUS); } } - this.state = 3938; + this.state = 3981; this.match(SparkSqlParser.BIGDECIMAL_LITERAL); } break; @@ -18360,39 +18562,39 @@ export class SparkSqlParser extends SQLParserBase { } public alterColumnAction(): AlterColumnActionContext { let localContext = new AlterColumnActionContext(this.context, this.state); - this.enterRule(localContext, 386, SparkSqlParser.RULE_alterColumnAction); + this.enterRule(localContext, 398, SparkSqlParser.RULE_alterColumnAction); let _la: number; try { - this.state = 3952; + this.state = 3995; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 514, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3941; + this.state = 3984; this.match(SparkSqlParser.KW_TYPE); - this.state = 3942; + this.state = 3985; this.dataType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3943; + this.state = 3986; this.commentSpec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3944; + this.state = 3987; this.colPosition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3945; + this.state = 3988; localContext._setOrDrop = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 96 || _la === 269)) { @@ -18402,27 +18604,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3946; + this.state = 3989; this.match(SparkSqlParser.KW_NOT); - this.state = 3947; + this.state = 3990; this.match(SparkSqlParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3948; + this.state = 3991; this.match(SparkSqlParser.KW_SET); - this.state = 3949; + this.state = 3992; this.defaultExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3950; + this.state = 3993; localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3951; + this.state = 3994; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -18444,12 +18646,12 @@ export class SparkSqlParser extends SQLParserBase { } public stringLit(): StringLitContext { let localContext = new StringLitContext(this.context, this.state); - this.enterRule(localContext, 388, SparkSqlParser.RULE_stringLit); + this.enterRule(localContext, 400, SparkSqlParser.RULE_stringLit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3954; + this.state = 3997; _la = this.tokenStream.LA(1); if(!(_la === 377 || _la === 378)) { this.errorHandler.recoverInline(this); @@ -18476,23 +18678,23 @@ export class SparkSqlParser extends SQLParserBase { } public commentStr(): CommentStrContext { let localContext = new CommentStrContext(this.context, this.state); - this.enterRule(localContext, 390, SparkSqlParser.RULE_commentStr); + this.enterRule(localContext, 402, SparkSqlParser.RULE_commentStr); try { - this.state = 3958; + this.state = 4001; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 1); { - this.state = 3956; + this.state = 3999; this.stringLit(); } break; case SparkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 3957; + this.state = 4000; this.match(SparkSqlParser.KW_NULL); } break; @@ -18516,15 +18718,15 @@ export class SparkSqlParser extends SQLParserBase { } public version(): VersionContext { let localContext = new VersionContext(this.context, this.state); - this.enterRule(localContext, 392, SparkSqlParser.RULE_version); + this.enterRule(localContext, 404, SparkSqlParser.RULE_version); try { - this.state = 3962; + this.state = 4005; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 3960; + this.state = 4003; this.match(SparkSqlParser.INTEGER_VALUE); } break; @@ -18532,7 +18734,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.DOUBLEQUOTED_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 3961; + this.state = 4004; this.stringLit(); } break; @@ -18556,12 +18758,12 @@ export class SparkSqlParser extends SQLParserBase { } public ansiNonReserved(): AnsiNonReservedContext { let localContext = new AnsiNonReservedContext(this.context, this.state); - this.enterRule(localContext, 394, SparkSqlParser.RULE_ansiNonReserved); + this.enterRule(localContext, 406, SparkSqlParser.RULE_ansiNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3964; + this.state = 4007; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3316086655) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 1610612735) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 4020201927) !== 0) || ((((_la - 231)) & ~0x1F) === 0 && ((1 << (_la - 231)) & 4294442751) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 3758088175) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3355402191) !== 0) || ((((_la - 328)) & ~0x1F) === 0 && ((1 << (_la - 328)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); @@ -18588,12 +18790,12 @@ export class SparkSqlParser extends SQLParserBase { } public strictNonReserved(): StrictNonReservedContext { let localContext = new StrictNonReservedContext(this.context, this.state); - this.enterRule(localContext, 396, SparkSqlParser.RULE_strictNonReserved); + this.enterRule(localContext, 408, SparkSqlParser.RULE_strictNonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3966; + this.state = 4009; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 194 || _la === 203 || ((((_la - 250)) & ~0x1F) === 0 && ((1 << (_la - 250)) & 1064961) !== 0) || _la === 323 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -18620,12 +18822,12 @@ export class SparkSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 398, SparkSqlParser.RULE_nonReserved); + this.enterRule(localContext, 410, SparkSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3968; + this.state = 4011; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294965227) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4227858431) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294950527) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294963191) !== 0))) { this.errorHandler.recoverInline(this); @@ -18657,11 +18859,11 @@ export class SparkSqlParser extends SQLParserBase { return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 52: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 138: + case 144: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 140: + case 146: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 142: + case 148: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -18721,7 +18923,7 @@ export class SparkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,393,3971,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,393,4014,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, @@ -18754,1713 +18956,1731 @@ export class SparkSqlParser extends SQLParserBase { 2,181,7,181,2,182,7,182,2,183,7,183,2,184,7,184,2,185,7,185,2,186, 7,186,2,187,7,187,2,188,7,188,2,189,7,189,2,190,7,190,2,191,7,191, 2,192,7,192,2,193,7,193,2,194,7,194,2,195,7,195,2,196,7,196,2,197, - 7,197,2,198,7,198,2,199,7,199,1,0,5,0,402,8,0,10,0,12,0,405,9,0, - 1,0,1,0,1,1,1,1,3,1,411,8,1,1,2,1,2,3,2,415,8,2,1,2,1,2,1,2,3,2, - 420,8,2,1,2,1,2,1,2,1,2,1,2,3,2,427,8,2,1,2,1,2,1,2,3,2,432,8,2, - 1,2,1,2,1,2,1,2,1,2,1,2,5,2,440,8,2,10,2,12,2,443,9,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,461,8, - 2,1,2,1,2,3,2,465,8,2,1,2,1,2,1,2,1,2,3,2,471,8,2,1,2,3,2,474,8, - 2,1,2,3,2,477,8,2,1,2,1,2,1,2,1,2,1,2,3,2,484,8,2,1,2,3,2,487,8, - 2,1,2,1,2,3,2,491,8,2,1,2,3,2,494,8,2,1,2,1,2,1,2,3,2,499,8,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,511,8,2,10,2,12,2,514, - 9,2,1,2,1,2,1,2,1,2,1,2,3,2,521,8,2,1,2,3,2,524,8,2,1,2,1,2,3,2, - 528,8,2,1,2,3,2,531,8,2,1,2,1,2,1,2,1,2,3,2,537,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,3,2,548,8,2,1,2,1,2,1,2,1,2,3,2,554,8,2, - 1,2,1,2,1,2,3,2,559,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 7,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,1,0,5,0,414,8,0,10,0,12,0,417, + 9,0,1,0,1,0,1,1,1,1,3,1,423,8,1,1,2,1,2,3,2,427,8,2,1,2,1,2,1,2, + 3,2,432,8,2,1,2,1,2,1,2,1,2,1,2,3,2,439,8,2,1,2,1,2,1,2,3,2,444, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,452,8,2,10,2,12,2,455,9,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,473, + 8,2,1,2,1,2,3,2,477,8,2,1,2,1,2,1,2,1,2,3,2,483,8,2,1,2,3,2,486, + 8,2,1,2,3,2,489,8,2,1,2,1,2,1,2,1,2,1,2,3,2,496,8,2,1,2,3,2,499, + 8,2,1,2,1,2,3,2,503,8,2,1,2,3,2,506,8,2,1,2,1,2,1,2,3,2,511,8,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,523,8,2,10,2,12,2,526, + 9,2,1,2,1,2,1,2,1,2,1,2,3,2,533,8,2,1,2,3,2,536,8,2,1,2,1,2,3,2, + 540,8,2,1,2,3,2,543,8,2,1,2,1,2,1,2,1,2,3,2,549,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,3,2,560,8,2,1,2,1,2,1,2,1,2,3,2,566,8,2, + 1,2,1,2,1,2,3,2,571,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,3,2,592,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,602,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,613,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,624,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,635,8,2,1,2,1,2,1,2,3,2,640,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,3,2,649,8,2,1,2,1,2,3,2,653,8,2,1,2,1,2,1,2,1,2, - 3,2,659,8,2,1,2,1,2,3,2,663,8,2,1,2,1,2,1,2,3,2,668,8,2,1,2,1,2, - 1,2,1,2,3,2,674,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, - 686,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,694,8,2,1,2,1,2,1,2,1,2,3,2, - 700,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,711,8,2,1,2,1,2, - 3,2,715,8,2,1,2,4,2,718,8,2,11,2,12,2,719,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,735,8,2,1,2,1,2,3,2,739,8,2,1, - 2,1,2,1,2,5,2,744,8,2,10,2,12,2,747,9,2,1,2,3,2,750,8,2,1,2,1,2, - 1,2,1,2,3,2,756,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,1,2,3,2,604,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 3,2,614,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,625,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,636,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,3,2,647,8,2,1,2,1,2,1,2,3,2,652,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,3,2,661,8,2,1,2,1,2,3,2,665,8,2,1,2,1,2,1,2,1,2, + 3,2,671,8,2,1,2,1,2,3,2,675,8,2,1,2,1,2,1,2,3,2,680,8,2,1,2,1,2, + 1,2,1,2,3,2,686,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2, + 698,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,706,8,2,1,2,1,2,1,2,1,2,3,2, + 712,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,723,8,2,1,2,1,2, + 3,2,727,8,2,1,2,4,2,730,8,2,11,2,12,2,731,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,747,8,2,1,2,1,2,3,2,751,8,2,1, + 2,1,2,1,2,5,2,756,8,2,10,2,12,2,759,9,2,1,2,3,2,762,8,2,1,2,1,2, + 1,2,1,2,3,2,768,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 3,2,785,8,2,1,2,1,2,3,2,789,8,2,1,2,1,2,1,2,3,2,794,8,2,1,2,1,2, - 1,2,1,2,1,2,3,2,801,8,2,1,2,1,2,1,2,1,2,3,2,807,8,2,1,2,3,2,810, - 8,2,1,2,3,2,813,8,2,1,2,1,2,3,2,817,8,2,1,2,1,2,3,2,821,8,2,1,2, - 1,2,1,2,1,2,1,2,1,2,5,2,829,8,2,10,2,12,2,832,9,2,1,2,1,2,1,2,1, - 2,1,2,1,2,3,2,840,8,2,1,2,3,2,843,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,3,2,852,8,2,1,2,1,2,1,2,3,2,857,8,2,1,2,1,2,1,2,1,2,3,2,863,8, - 2,1,2,1,2,1,2,1,2,1,2,3,2,870,8,2,1,2,3,2,873,8,2,1,2,1,2,3,2,877, - 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,886,8,2,10,2,12,2,889,9,2,3, - 2,891,8,2,1,2,1,2,1,2,1,2,3,2,897,8,2,1,2,1,2,3,2,901,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,916,8,2,10,2,12, - 2,919,9,2,1,2,1,2,1,2,1,2,1,2,3,2,926,8,2,1,2,1,2,3,2,930,8,2,1, - 2,1,2,1,2,1,2,3,2,936,8,2,1,2,3,2,939,8,2,1,2,1,2,3,2,943,8,2,1, - 2,3,2,946,8,2,1,2,1,2,1,2,1,2,3,2,952,8,2,1,2,1,2,1,2,3,2,957,8, - 2,1,2,1,2,3,2,961,8,2,1,2,1,2,1,2,1,2,1,2,3,2,968,8,2,1,2,3,2,971, - 8,2,1,2,3,2,974,8,2,1,2,1,2,1,2,1,2,1,2,3,2,981,8,2,1,2,1,2,1,2, - 3,2,986,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,995,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1003,8,2,1,2,1,2,1,2,1,2,3,2,1009,8,2,1,2,3,2,1012, - 8,2,1,2,3,2,1015,8,2,1,2,1,2,1,2,1,2,3,2,1021,8,2,1,2,1,2,3,2,1025, - 8,2,1,2,1,2,1,2,3,2,1030,8,2,1,2,3,2,1033,8,2,1,2,1,2,3,2,1037,8, - 2,3,2,1039,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1047,8,2,1,2,1,2,1,2, - 1,2,1,2,1,2,3,2,1055,8,2,1,2,3,2,1058,8,2,1,2,1,2,1,2,1,2,1,2,3, - 2,1065,8,2,1,2,3,2,1068,8,2,1,2,3,2,1071,8,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,3,2,1080,8,2,1,2,1,2,1,2,3,2,1085,8,2,1,2,1,2,1,2,1,2,3, - 2,1091,8,2,1,2,1,2,1,2,3,2,1096,8,2,1,2,3,2,1099,8,2,1,2,1,2,3,2, - 1103,8,2,1,2,3,2,1106,8,2,1,2,1,2,3,2,1110,8,2,1,2,1,2,1,2,1,2,1, + 3,2,797,8,2,1,2,1,2,3,2,801,8,2,1,2,1,2,1,2,3,2,806,8,2,1,2,1,2, + 1,2,1,2,1,2,3,2,813,8,2,1,2,1,2,1,2,1,2,3,2,819,8,2,1,2,3,2,822, + 8,2,1,2,3,2,825,8,2,1,2,1,2,3,2,829,8,2,1,2,1,2,3,2,833,8,2,1,2, + 1,2,1,2,1,2,1,2,1,2,5,2,841,8,2,10,2,12,2,844,9,2,1,2,1,2,1,2,1, + 2,1,2,1,2,3,2,852,8,2,1,2,3,2,855,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,3,2,864,8,2,1,2,1,2,1,2,3,2,869,8,2,1,2,1,2,1,2,1,2,3,2,875,8, + 2,1,2,1,2,1,2,1,2,1,2,3,2,882,8,2,1,2,3,2,885,8,2,1,2,1,2,3,2,889, + 8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,898,8,2,10,2,12,2,901,9,2,3, + 2,903,8,2,1,2,1,2,1,2,1,2,3,2,909,8,2,1,2,1,2,3,2,913,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,928,8,2,10,2,12, + 2,931,9,2,1,2,1,2,1,2,1,2,1,2,3,2,938,8,2,1,2,1,2,3,2,942,8,2,1, + 2,1,2,1,2,1,2,3,2,948,8,2,1,2,3,2,951,8,2,1,2,1,2,3,2,955,8,2,1, + 2,3,2,958,8,2,1,2,1,2,1,2,1,2,3,2,964,8,2,1,2,1,2,1,2,3,2,969,8, + 2,1,2,1,2,3,2,973,8,2,1,2,1,2,1,2,1,2,1,2,3,2,980,8,2,1,2,3,2,983, + 8,2,1,2,3,2,986,8,2,1,2,1,2,1,2,1,2,1,2,3,2,993,8,2,1,2,1,2,1,2, + 3,2,998,8,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1007,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,1015,8,2,1,2,1,2,1,2,1,2,3,2,1021,8,2,1,2,3,2,1024, + 8,2,1,2,3,2,1027,8,2,1,2,1,2,1,2,1,2,3,2,1033,8,2,1,2,1,2,3,2,1037, + 8,2,1,2,1,2,1,2,3,2,1042,8,2,1,2,3,2,1045,8,2,1,2,1,2,3,2,1049,8, + 2,3,2,1051,8,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,1059,8,2,1,2,1,2,1,2, + 1,2,1,2,1,2,3,2,1067,8,2,1,2,3,2,1070,8,2,1,2,1,2,1,2,1,2,1,2,3, + 2,1077,8,2,1,2,3,2,1080,8,2,1,2,3,2,1083,8,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,3,2,1092,8,2,1,2,1,2,1,2,3,2,1097,8,2,1,2,1,2,1,2,1,2,3, + 2,1103,8,2,1,2,1,2,1,2,3,2,1108,8,2,1,2,3,2,1111,8,2,1,2,1,2,3,2, + 1115,8,2,1,2,3,2,1118,8,2,1,2,1,2,3,2,1122,8,2,1,2,1,2,1,2,1,2,1, 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,5,2,1136,8,2,10,2,12,2,1139,9,2,3,2,1141,8,2,1,2,1, - 2,1,2,1,2,1,2,1,2,3,2,1149,8,2,1,2,1,2,1,2,1,2,3,2,1155,8,2,1,2, - 3,2,1158,8,2,1,2,3,2,1161,8,2,1,2,1,2,1,2,3,2,1166,8,2,1,2,1,2,1, - 2,1,2,1,2,1,2,3,2,1174,8,2,1,2,1,2,1,2,3,2,1179,8,2,1,2,1,2,1,2, - 1,2,3,2,1185,8,2,1,2,1,2,1,2,1,2,3,2,1191,8,2,1,2,3,2,1194,8,2,1, - 2,1,2,1,2,1,2,1,2,3,2,1201,8,2,1,2,1,2,1,2,5,2,1206,8,2,10,2,12, - 2,1209,9,2,1,2,1,2,1,2,5,2,1214,8,2,10,2,12,2,1217,9,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1231,8,2,10,2,12,2,1234, + 2,1,2,1,2,1,2,5,2,1148,8,2,10,2,12,2,1151,9,2,3,2,1153,8,2,1,2,1, + 2,1,2,1,2,1,2,1,2,3,2,1161,8,2,1,2,1,2,1,2,1,2,3,2,1167,8,2,1,2, + 3,2,1170,8,2,1,2,3,2,1173,8,2,1,2,1,2,1,2,3,2,1178,8,2,1,2,1,2,1, + 2,1,2,1,2,1,2,3,2,1186,8,2,1,2,1,2,1,2,3,2,1191,8,2,1,2,1,2,1,2, + 1,2,3,2,1197,8,2,1,2,1,2,1,2,1,2,3,2,1203,8,2,1,2,3,2,1206,8,2,1, + 2,1,2,1,2,1,2,1,2,3,2,1213,8,2,1,2,1,2,1,2,5,2,1218,8,2,10,2,12, + 2,1221,9,2,1,2,1,2,1,2,5,2,1226,8,2,10,2,12,2,1229,9,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1243,8,2,10,2,12,2,1246, 9,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1258,8,2,10,2,12,2,1261,9,2,3,2, - 1263,8,2,1,2,1,2,5,2,1267,8,2,10,2,12,2,1270,9,2,1,2,1,2,1,2,1,2, - 5,2,1276,8,2,10,2,12,2,1279,9,2,1,2,1,2,1,2,1,2,5,2,1285,8,2,10, - 2,12,2,1288,9,2,1,2,1,2,1,2,3,2,1293,8,2,1,2,1,2,1,2,3,2,1298,8, - 2,1,2,1,2,1,2,3,2,1303,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1310,8,2,1,2, - 1,2,1,2,3,2,1315,8,2,1,2,1,2,1,2,3,2,1320,8,2,1,2,1,2,1,2,1,2,1, - 2,3,2,1327,8,2,1,2,1,2,1,2,1,2,5,2,1333,8,2,10,2,12,2,1336,9,2,3, - 2,1338,8,2,1,3,1,3,3,3,1342,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6, - 1,6,1,6,3,6,1354,8,6,1,6,1,6,3,6,1358,8,6,1,6,1,6,1,6,1,6,1,6,3, - 6,1365,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, + 1,2,1,2,1,2,1,2,1,2,1,2,1,2,5,2,1270,8,2,10,2,12,2,1273,9,2,3,2, + 1275,8,2,1,2,1,2,5,2,1279,8,2,10,2,12,2,1282,9,2,1,2,1,2,1,2,1,2, + 5,2,1288,8,2,10,2,12,2,1291,9,2,1,2,1,2,1,2,1,2,5,2,1297,8,2,10, + 2,12,2,1300,9,2,1,2,1,2,1,2,3,2,1305,8,2,1,2,1,2,1,2,3,2,1310,8, + 2,1,2,1,2,1,2,3,2,1315,8,2,1,2,1,2,1,2,1,2,1,2,3,2,1322,8,2,1,2, + 1,2,1,2,3,2,1327,8,2,1,2,1,2,1,2,3,2,1332,8,2,1,2,1,2,1,2,1,2,1, + 2,3,2,1339,8,2,1,2,1,2,1,2,1,2,5,2,1345,8,2,10,2,12,2,1348,9,2,3, + 2,1350,8,2,1,3,1,3,3,3,1354,8,3,1,4,1,4,1,5,1,5,1,6,1,6,1,6,1,6, + 1,6,1,6,3,6,1366,8,6,1,6,1,6,3,6,1370,8,6,1,6,1,6,1,6,1,6,1,6,3, + 6,1377,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, 6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,3,6,1481,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1489, - 8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1497,8,6,1,6,1,6,1,6,1,6,1,6,1,6, - 1,6,3,6,1506,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1516,8,6,1, - 7,1,7,3,7,1520,8,7,1,7,3,7,1523,8,7,1,7,1,7,3,7,1527,8,7,1,7,1,7, - 1,8,1,8,3,8,1533,8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9, - 1545,8,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1557, - 8,10,1,10,1,10,1,10,3,10,1562,8,10,1,11,1,11,1,11,1,12,1,12,1,12, - 1,13,3,13,1571,8,13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1579,8,14, - 1,14,1,14,1,14,3,14,1584,8,14,3,14,1586,8,14,1,14,1,14,1,14,1,14, - 1,14,1,14,3,14,1594,8,14,1,14,1,14,1,14,3,14,1599,8,14,1,14,1,14, - 3,14,1603,8,14,1,14,3,14,1606,8,14,1,14,1,14,1,14,1,14,1,14,1,14, - 3,14,1614,8,14,1,14,1,14,1,14,3,14,1619,8,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,3,14,1628,8,14,1,14,1,14,1,14,3,14,1633,8,14,1,14, - 3,14,1636,8,14,1,14,1,14,1,14,3,14,1641,8,14,1,14,1,14,3,14,1645, - 8,14,1,14,1,14,1,14,3,14,1650,8,14,3,14,1652,8,14,1,15,1,15,3,15, - 1656,8,15,1,16,1,16,1,16,1,16,1,16,5,16,1663,8,16,10,16,12,16,1666, - 9,16,1,16,1,16,1,17,1,17,1,17,3,17,1673,8,17,1,17,1,17,1,17,1,17, - 3,17,1679,8,17,1,18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20, - 1690,8,20,1,21,1,21,1,21,5,21,1695,8,21,10,21,12,21,1698,9,21,1, - 22,1,22,1,22,1,22,5,22,1704,8,22,10,22,12,22,1707,9,22,1,23,1,23, - 3,23,1711,8,23,1,23,3,23,1714,8,23,1,23,1,23,1,23,1,23,1,24,1,24, + 6,1,6,1,6,1,6,1,6,3,6,1493,8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1501, + 8,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1509,8,6,1,6,1,6,1,6,1,6,1,6,1,6, + 1,6,3,6,1518,8,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1528,8,6,1, + 7,1,7,3,7,1532,8,7,1,7,3,7,1535,8,7,1,7,1,7,3,7,1539,8,7,1,7,1,7, + 1,8,1,8,3,8,1545,8,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,9,1,9,3,9, + 1557,8,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,1569, + 8,10,1,10,1,10,1,10,3,10,1574,8,10,1,11,1,11,1,11,1,12,1,12,1,12, + 1,13,3,13,1583,8,13,1,13,1,13,1,13,1,14,1,14,1,14,3,14,1591,8,14, + 1,14,1,14,1,14,3,14,1596,8,14,3,14,1598,8,14,1,14,1,14,1,14,1,14, + 1,14,1,14,3,14,1606,8,14,1,14,1,14,1,14,3,14,1611,8,14,1,14,1,14, + 3,14,1615,8,14,1,14,3,14,1618,8,14,1,14,1,14,1,14,1,14,1,14,1,14, + 3,14,1626,8,14,1,14,1,14,1,14,3,14,1631,8,14,1,14,1,14,1,14,1,14, + 1,14,1,14,1,14,3,14,1640,8,14,1,14,1,14,1,14,3,14,1645,8,14,1,14, + 3,14,1648,8,14,1,14,1,14,1,14,3,14,1653,8,14,1,14,1,14,3,14,1657, + 8,14,1,14,1,14,1,14,3,14,1662,8,14,3,14,1664,8,14,1,15,1,15,3,15, + 1668,8,15,1,16,1,16,1,16,1,16,1,16,5,16,1675,8,16,10,16,12,16,1678, + 9,16,1,16,1,16,1,17,1,17,1,17,3,17,1685,8,17,1,17,1,17,1,17,1,17, + 3,17,1691,8,17,1,18,1,18,1,19,1,19,1,20,1,20,1,20,1,20,1,20,3,20, + 1702,8,20,1,21,1,21,1,21,5,21,1707,8,21,10,21,12,21,1710,9,21,1, + 22,1,22,1,22,1,22,5,22,1716,8,22,10,22,12,22,1719,9,22,1,23,1,23, + 3,23,1723,8,23,1,23,3,23,1726,8,23,1,23,1,23,1,23,1,23,1,24,1,24, 1,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25, - 1,25,1,25,5,25,1737,8,25,10,25,12,25,1740,9,25,1,26,1,26,1,26,1, - 27,1,27,1,27,1,27,5,27,1749,8,27,10,27,12,27,1752,9,27,1,27,1,27, - 1,28,1,28,3,28,1758,8,28,1,28,3,28,1761,8,28,1,29,1,29,1,29,5,29, - 1766,8,29,10,29,12,29,1769,9,29,1,29,3,29,1772,8,29,1,30,1,30,1, - 30,1,30,3,30,1778,8,30,1,31,1,31,1,31,1,31,5,31,1784,8,31,10,31, - 12,31,1787,9,31,1,31,1,31,1,32,1,32,3,32,1793,8,32,1,32,3,32,1796, - 8,32,1,33,1,33,1,33,1,33,5,33,1802,8,33,10,33,12,33,1805,9,33,1, - 33,1,33,1,34,1,34,1,34,1,34,5,34,1813,8,34,10,34,12,34,1816,9,34, - 1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1826,8,35,1,36,1,36, - 1,36,1,36,1,36,1,36,3,36,1834,8,36,1,37,1,37,1,37,1,37,3,37,1840, - 8,37,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,4,39,1850,8,39,11,39, - 12,39,1851,1,39,1,39,1,39,1,39,1,39,3,39,1859,8,39,1,39,1,39,1,39, - 1,39,1,39,3,39,1866,8,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, - 1,39,1,39,3,39,1878,8,39,1,39,1,39,1,39,1,39,5,39,1884,8,39,10,39, - 12,39,1887,9,39,1,39,5,39,1890,8,39,10,39,12,39,1893,9,39,1,39,5, - 39,1896,8,39,10,39,12,39,1899,9,39,3,39,1901,8,39,1,40,1,40,1,41, - 1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,45,1,45,1,46,1,46,3,46,1917, - 8,46,1,47,1,47,1,47,5,47,1922,8,47,10,47,12,47,1925,9,47,1,48,1, - 48,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1935,8,49,1,50,1,50,1,50,1, - 50,1,50,5,50,1942,8,50,10,50,12,50,1945,9,50,3,50,1947,8,50,1,50, - 1,50,1,50,1,50,1,50,5,50,1954,8,50,10,50,12,50,1957,9,50,3,50,1959, - 8,50,1,50,1,50,1,50,1,50,1,50,5,50,1966,8,50,10,50,12,50,1969,9, - 50,3,50,1971,8,50,1,50,1,50,1,50,1,50,1,50,5,50,1978,8,50,10,50, - 12,50,1981,9,50,3,50,1983,8,50,1,50,3,50,1986,8,50,1,50,1,50,1,50, - 3,50,1991,8,50,3,50,1993,8,50,1,50,1,50,3,50,1997,8,50,1,51,1,51, - 1,51,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2008,8,52,1,52,1,52,1,52, - 1,52,3,52,2014,8,52,1,52,1,52,1,52,1,52,3,52,2020,8,52,1,52,5,52, - 2023,8,52,10,52,12,52,2026,9,52,1,53,1,53,1,53,1,53,1,53,1,53,1, - 53,1,53,1,53,3,53,2037,8,53,1,54,1,54,3,54,2041,8,54,1,54,3,54,2044, - 8,54,1,54,1,54,3,54,2048,8,54,1,55,1,55,4,55,2052,8,55,11,55,12, - 55,2053,1,56,1,56,3,56,2058,8,56,1,56,1,56,1,56,1,56,5,56,2064,8, - 56,10,56,12,56,2067,9,56,1,56,3,56,2070,8,56,1,56,3,56,2073,8,56, - 1,56,3,56,2076,8,56,1,56,3,56,2079,8,56,1,56,1,56,3,56,2083,8,56, - 1,57,1,57,3,57,2087,8,57,1,57,5,57,2090,8,57,10,57,12,57,2093,9, - 57,1,57,3,57,2096,8,57,1,57,3,57,2099,8,57,1,57,3,57,2102,8,57,1, - 57,3,57,2105,8,57,1,57,1,57,3,57,2109,8,57,1,57,5,57,2112,8,57,10, - 57,12,57,2115,9,57,1,57,3,57,2118,8,57,1,57,3,57,2121,8,57,1,57, - 3,57,2124,8,57,1,57,3,57,2127,8,57,3,57,2129,8,57,1,58,1,58,1,58, - 1,58,3,58,2135,8,58,1,58,1,58,1,58,1,58,1,58,3,58,2142,8,58,1,58, - 1,58,1,58,3,58,2147,8,58,1,58,3,58,2150,8,58,1,58,3,58,2153,8,58, - 1,58,1,58,3,58,2157,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 3,58,2167,8,58,1,58,1,58,3,58,2171,8,58,3,58,2173,8,58,1,58,3,58, - 2176,8,58,1,58,1,58,3,58,2180,8,58,1,59,1,59,5,59,2184,8,59,10,59, - 12,59,2187,9,59,1,59,3,59,2190,8,59,1,59,1,59,1,60,1,60,1,60,1,61, - 1,61,1,61,1,61,3,61,2201,8,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62, - 1,62,3,62,2211,8,62,1,62,1,62,3,62,2215,8,62,1,62,1,62,1,62,1,63, - 1,63,1,63,1,63,1,63,1,63,1,63,3,63,2227,8,63,1,63,1,63,1,63,1,64, - 1,64,1,64,1,64,1,64,1,64,1,64,3,64,2239,8,64,1,65,1,65,1,65,1,65, - 1,65,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2252,8,65,10,65,12,65,2255, - 9,65,1,65,1,65,3,65,2259,8,65,1,66,1,66,1,66,1,66,3,66,2265,8,66, - 1,67,1,67,1,67,5,67,2270,8,67,10,67,12,67,2273,9,67,1,68,1,68,1, - 68,1,68,1,69,1,69,1,69,1,70,1,70,1,70,1,71,1,71,1,71,3,71,2288,8, - 71,1,71,5,71,2291,8,71,10,71,12,71,2294,9,71,1,71,1,71,1,72,1,72, - 1,72,1,72,1,72,1,72,5,72,2304,8,72,10,72,12,72,2307,9,72,1,72,1, - 72,3,72,2311,8,72,1,73,1,73,1,73,1,73,5,73,2317,8,73,10,73,12,73, - 2320,9,73,1,73,5,73,2323,8,73,10,73,12,73,2326,9,73,1,73,3,73,2329, - 8,73,1,73,3,73,2332,8,73,1,74,1,74,1,75,3,75,2337,8,75,1,75,1,75, - 1,75,1,75,1,75,3,75,2344,8,75,1,75,1,75,1,75,1,75,3,75,2350,8,75, - 1,76,1,76,1,76,1,76,1,76,5,76,2357,8,76,10,76,12,76,2360,9,76,1, - 76,1,76,1,76,1,76,1,76,5,76,2367,8,76,10,76,12,76,2370,9,76,1,76, - 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,5,76,2382,8,76,10,76, - 12,76,2385,9,76,1,76,1,76,3,76,2389,8,76,3,76,2391,8,76,1,77,1,77, - 1,77,3,77,2396,8,77,1,78,1,78,1,78,1,78,1,78,5,78,2403,8,78,10,78, - 12,78,2406,9,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78,2416, - 8,78,10,78,12,78,2419,9,78,1,78,1,78,3,78,2423,8,78,1,79,1,79,3, - 79,2427,8,79,1,80,1,80,1,80,1,80,1,80,3,80,2434,8,80,1,80,1,80,1, - 80,3,80,2439,8,80,5,80,2441,8,80,10,80,12,80,2444,9,80,3,80,2446, - 8,80,1,80,3,80,2449,8,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,5,81,2461,8,81,10,81,12,81,2464,9,81,1,81,1,81,1,81,1, - 82,1,82,1,82,1,82,1,82,5,82,2474,8,82,10,82,12,82,2477,9,82,1,82, - 1,82,3,82,2481,8,82,1,83,1,83,3,83,2485,8,83,1,83,3,83,2488,8,83, - 1,84,1,84,3,84,2492,8,84,1,84,1,84,1,84,1,84,3,84,2498,8,84,1,84, - 3,84,2501,8,84,1,85,1,85,1,85,1,86,1,86,3,86,2508,8,86,1,87,1,87, - 1,87,1,87,1,87,1,87,1,87,1,87,5,87,2518,8,87,10,87,12,87,2521,9, - 87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,2529,8,88,10,88,12,88,2532, - 9,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,5,88,2542,8,88,10,88, - 12,88,2545,9,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,2553,8,89,10, - 89,12,89,2556,9,89,1,89,1,89,3,89,2560,8,89,1,90,1,90,1,91,1,91, - 1,92,1,92,3,92,2568,8,92,1,93,1,93,1,94,3,94,2573,8,94,1,94,1,94, - 1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,97,1,97,1,97,3,97,2587,8,97, - 1,97,1,97,1,97,1,97,1,97,5,97,2594,8,97,10,97,12,97,2597,9,97,3, - 97,2599,8,97,1,97,1,97,1,97,3,97,2604,8,97,1,97,1,97,1,97,5,97,2609, - 8,97,10,97,12,97,2612,9,97,3,97,2614,8,97,1,98,1,98,1,99,1,99,3, - 99,2620,8,99,1,99,1,99,5,99,2624,8,99,10,99,12,99,2627,9,99,3,99, - 2629,8,99,1,100,1,100,1,100,3,100,2634,8,100,1,101,1,101,1,101,3, - 101,2639,8,101,1,101,1,101,3,101,2643,8,101,1,101,1,101,1,101,1, - 101,3,101,2649,8,101,1,101,1,101,3,101,2653,8,101,1,102,3,102,2656, - 8,102,1,102,1,102,1,102,3,102,2661,8,102,1,102,3,102,2664,8,102, - 1,102,1,102,1,102,3,102,2669,8,102,1,102,1,102,3,102,2673,8,102, - 1,102,3,102,2676,8,102,1,102,3,102,2679,8,102,1,103,1,103,1,103, - 1,103,3,103,2685,8,103,1,104,1,104,1,104,3,104,2690,8,104,1,104, - 1,104,1,104,1,104,1,104,3,104,2697,8,104,1,105,3,105,2700,8,105, + 1,25,1,25,5,25,1749,8,25,10,25,12,25,1752,9,25,1,26,1,26,1,26,1, + 27,1,27,1,27,1,27,5,27,1761,8,27,10,27,12,27,1764,9,27,1,27,1,27, + 1,28,1,28,3,28,1770,8,28,1,28,3,28,1773,8,28,1,29,1,29,1,29,5,29, + 1778,8,29,10,29,12,29,1781,9,29,1,29,3,29,1784,8,29,1,30,1,30,1, + 30,1,30,3,30,1790,8,30,1,31,1,31,1,31,1,31,5,31,1796,8,31,10,31, + 12,31,1799,9,31,1,31,1,31,1,32,1,32,3,32,1805,8,32,1,32,3,32,1808, + 8,32,1,33,1,33,1,33,1,33,5,33,1814,8,33,10,33,12,33,1817,9,33,1, + 33,1,33,1,34,1,34,1,34,1,34,5,34,1825,8,34,10,34,12,34,1828,9,34, + 1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1838,8,35,1,36,1,36, + 1,36,1,36,1,36,1,36,3,36,1846,8,36,1,37,1,37,1,37,1,37,3,37,1852, + 8,37,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,4,39,1862,8,39,11,39, + 12,39,1863,1,39,1,39,1,39,1,39,1,39,3,39,1871,8,39,1,39,1,39,1,39, + 1,39,1,39,3,39,1878,8,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,39, + 1,39,1,39,3,39,1890,8,39,1,39,1,39,1,39,1,39,5,39,1896,8,39,10,39, + 12,39,1899,9,39,1,39,5,39,1902,8,39,10,39,12,39,1905,9,39,1,39,5, + 39,1908,8,39,10,39,12,39,1911,9,39,3,39,1913,8,39,1,40,1,40,1,41, + 1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,45,1,45,1,46,1,46,3,46,1929, + 8,46,1,47,1,47,1,47,5,47,1934,8,47,10,47,12,47,1937,9,47,1,48,1, + 48,1,49,1,49,1,49,1,49,1,49,1,49,3,49,1947,8,49,1,50,1,50,1,50,1, + 50,1,50,5,50,1954,8,50,10,50,12,50,1957,9,50,3,50,1959,8,50,1,50, + 1,50,1,50,1,50,1,50,5,50,1966,8,50,10,50,12,50,1969,9,50,3,50,1971, + 8,50,1,50,1,50,1,50,1,50,1,50,5,50,1978,8,50,10,50,12,50,1981,9, + 50,3,50,1983,8,50,1,50,1,50,1,50,1,50,1,50,5,50,1990,8,50,10,50, + 12,50,1993,9,50,3,50,1995,8,50,1,50,3,50,1998,8,50,1,50,1,50,1,50, + 3,50,2003,8,50,3,50,2005,8,50,1,50,1,50,3,50,2009,8,50,1,51,1,51, + 1,51,1,52,1,52,1,52,1,52,1,52,1,52,3,52,2020,8,52,1,52,1,52,1,52, + 1,52,3,52,2026,8,52,1,52,1,52,1,52,1,52,3,52,2032,8,52,1,52,5,52, + 2035,8,52,10,52,12,52,2038,9,52,1,53,1,53,1,53,1,53,1,53,1,53,1, + 53,1,53,5,53,2048,8,53,10,53,12,53,2051,9,53,1,53,1,53,1,53,1,53, + 1,53,1,53,3,53,2059,8,53,1,54,1,54,3,54,2063,8,54,1,54,3,54,2066, + 8,54,1,54,1,54,3,54,2070,8,54,1,55,1,55,4,55,2074,8,55,11,55,12, + 55,2075,1,56,1,56,3,56,2080,8,56,1,56,1,56,1,56,1,56,5,56,2086,8, + 56,10,56,12,56,2089,9,56,1,56,3,56,2092,8,56,1,56,3,56,2095,8,56, + 1,56,3,56,2098,8,56,1,56,3,56,2101,8,56,1,56,1,56,3,56,2105,8,56, + 1,57,1,57,3,57,2109,8,57,1,57,5,57,2112,8,57,10,57,12,57,2115,9, + 57,1,57,3,57,2118,8,57,1,57,3,57,2121,8,57,1,57,3,57,2124,8,57,1, + 57,3,57,2127,8,57,1,57,1,57,3,57,2131,8,57,1,57,5,57,2134,8,57,10, + 57,12,57,2137,9,57,1,57,3,57,2140,8,57,1,57,3,57,2143,8,57,1,57, + 3,57,2146,8,57,1,57,3,57,2149,8,57,3,57,2151,8,57,1,58,1,58,1,58, + 1,58,3,58,2157,8,58,1,58,1,58,1,58,1,58,1,58,3,58,2164,8,58,1,58, + 1,58,1,58,3,58,2169,8,58,1,58,3,58,2172,8,58,1,58,3,58,2175,8,58, + 1,58,1,58,3,58,2179,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 3,58,2189,8,58,1,58,1,58,3,58,2193,8,58,3,58,2195,8,58,1,58,3,58, + 2198,8,58,1,58,1,58,3,58,2202,8,58,1,59,1,59,5,59,2206,8,59,10,59, + 12,59,2209,9,59,1,59,3,59,2212,8,59,1,59,1,59,1,60,1,60,1,60,1,61, + 1,61,1,61,1,61,3,61,2223,8,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62, + 1,62,3,62,2233,8,62,1,62,1,62,3,62,2237,8,62,1,62,1,62,1,62,1,63, + 1,63,1,63,1,63,1,63,1,63,1,63,3,63,2249,8,63,1,63,1,63,1,63,1,64, + 1,64,1,64,1,64,1,64,1,64,1,64,3,64,2261,8,64,1,65,1,65,1,65,1,65, + 1,65,1,65,1,65,1,65,1,65,1,65,1,65,5,65,2274,8,65,10,65,12,65,2277, + 9,65,1,65,1,65,3,65,2281,8,65,1,66,1,66,1,66,1,66,3,66,2287,8,66, + 1,67,1,67,1,67,5,67,2292,8,67,10,67,12,67,2295,9,67,1,68,1,68,1, + 68,1,68,1,69,1,69,1,69,1,70,1,70,1,70,1,71,1,71,1,71,3,71,2310,8, + 71,1,71,5,71,2313,8,71,10,71,12,71,2316,9,71,1,71,1,71,1,72,1,72, + 1,72,1,72,1,72,1,72,5,72,2326,8,72,10,72,12,72,2329,9,72,1,72,1, + 72,3,72,2333,8,72,1,73,1,73,1,73,1,73,5,73,2339,8,73,10,73,12,73, + 2342,9,73,1,73,5,73,2345,8,73,10,73,12,73,2348,9,73,1,73,3,73,2351, + 8,73,1,73,3,73,2354,8,73,1,74,1,74,1,75,3,75,2359,8,75,1,75,1,75, + 1,75,1,75,1,75,3,75,2366,8,75,1,75,1,75,1,75,1,75,3,75,2372,8,75, + 1,76,1,76,1,76,1,76,1,76,5,76,2379,8,76,10,76,12,76,2382,9,76,1, + 76,1,76,1,76,1,76,1,76,5,76,2389,8,76,10,76,12,76,2392,9,76,1,76, + 1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,5,76,2404,8,76,10,76, + 12,76,2407,9,76,1,76,1,76,3,76,2411,8,76,3,76,2413,8,76,1,77,1,77, + 1,77,3,77,2418,8,77,1,78,1,78,1,78,1,78,1,78,5,78,2425,8,78,10,78, + 12,78,2428,9,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78,2438, + 8,78,10,78,12,78,2441,9,78,1,78,1,78,3,78,2445,8,78,1,79,1,79,3, + 79,2449,8,79,1,80,1,80,1,80,1,80,1,80,3,80,2456,8,80,1,80,1,80,1, + 80,3,80,2461,8,80,5,80,2463,8,80,10,80,12,80,2466,9,80,3,80,2468, + 8,80,1,80,3,80,2471,8,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, + 1,81,1,81,5,81,2483,8,81,10,81,12,81,2486,9,81,1,81,1,81,1,81,1, + 82,1,82,1,82,1,82,1,82,5,82,2496,8,82,10,82,12,82,2499,9,82,1,82, + 1,82,3,82,2503,8,82,1,83,1,83,3,83,2507,8,83,1,83,3,83,2510,8,83, + 1,84,1,84,3,84,2514,8,84,1,84,1,84,1,84,1,84,3,84,2520,8,84,1,84, + 3,84,2523,8,84,1,85,1,85,1,85,1,86,1,86,3,86,2530,8,86,1,87,1,87, + 1,87,1,87,1,87,1,87,1,87,1,87,5,87,2540,8,87,10,87,12,87,2543,9, + 87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,2551,8,88,10,88,12,88,2554, + 9,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,5,88,2564,8,88,10,88, + 12,88,2567,9,88,1,88,1,88,1,89,1,89,1,89,1,89,5,89,2575,8,89,10, + 89,12,89,2578,9,89,1,89,1,89,3,89,2582,8,89,1,90,1,90,1,91,1,91, + 1,92,1,92,3,92,2590,8,92,1,93,1,93,1,94,3,94,2595,8,94,1,94,1,94, + 1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,97,1,97,1,97,3,97,2609,8,97, + 1,97,1,97,1,97,1,97,1,97,5,97,2616,8,97,10,97,12,97,2619,9,97,3, + 97,2621,8,97,1,97,1,97,1,97,3,97,2626,8,97,1,97,1,97,1,97,5,97,2631, + 8,97,10,97,12,97,2634,9,97,3,97,2636,8,97,1,98,1,98,1,99,1,99,3, + 99,2642,8,99,1,99,1,99,5,99,2646,8,99,10,99,12,99,2649,9,99,3,99, + 2651,8,99,1,100,1,100,1,100,3,100,2656,8,100,1,101,1,101,1,101,3, + 101,2661,8,101,1,101,1,101,3,101,2665,8,101,1,101,1,101,1,101,1, + 101,3,101,2671,8,101,1,101,1,101,3,101,2675,8,101,1,102,3,102,2678, + 8,102,1,102,1,102,1,102,3,102,2683,8,102,1,102,3,102,2686,8,102, + 1,102,1,102,1,102,3,102,2691,8,102,1,102,1,102,3,102,2695,8,102, + 1,102,3,102,2698,8,102,1,102,3,102,2701,8,102,1,103,1,103,1,103, + 1,103,3,103,2707,8,103,1,104,1,104,1,104,3,104,2712,8,104,1,104, + 1,104,1,104,1,104,1,104,3,104,2719,8,104,1,105,3,105,2722,8,105, 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,3,105,2718,8,105,3,105,2720,8,105, - 1,105,3,105,2723,8,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107, - 5,107,2732,8,107,10,107,12,107,2735,9,107,1,108,1,108,1,108,1,108, - 5,108,2741,8,108,10,108,12,108,2744,9,108,1,108,1,108,1,109,1,109, - 3,109,2750,8,109,1,110,1,110,1,110,1,110,5,110,2756,8,110,10,110, - 12,110,2759,9,110,1,110,1,110,1,111,1,111,3,111,2765,8,111,1,112, - 1,112,1,112,3,112,2770,8,112,1,112,3,112,2773,8,112,1,112,3,112, - 2776,8,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,2784,8,112, - 1,112,1,112,1,112,1,112,1,112,1,112,3,112,2792,8,112,1,112,1,112, - 1,112,1,112,3,112,2798,8,112,1,113,1,113,1,113,1,113,5,113,2804, - 8,113,10,113,12,113,2807,9,113,1,113,1,113,1,114,1,114,1,114,3,114, - 2814,8,114,1,114,1,114,1,114,1,114,1,114,3,114,2821,8,114,1,114, - 1,114,1,114,1,114,1,114,3,114,2828,8,114,3,114,2830,8,114,1,115, - 1,115,1,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2841,8,115, - 10,115,12,115,2844,9,115,1,115,1,115,1,115,3,115,2849,8,115,3,115, - 2851,8,115,1,115,1,115,1,115,1,115,1,115,1,115,5,115,2859,8,115, - 10,115,12,115,2862,9,115,1,115,1,115,1,115,3,115,2867,8,115,3,115, - 2869,8,115,1,116,1,116,1,116,1,116,1,117,1,117,3,117,2877,8,117, - 1,118,1,118,3,118,2881,8,118,1,119,1,119,1,119,1,119,1,119,5,119, - 2888,8,119,10,119,12,119,2891,9,119,3,119,2893,8,119,1,119,1,119, - 1,119,1,120,3,120,2899,8,120,1,120,1,120,3,120,2903,8,120,3,120, - 2905,8,120,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,2914, - 8,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121, - 3,121,2926,8,121,3,121,2928,8,121,1,121,1,121,1,121,1,121,1,121, - 3,121,2935,8,121,1,121,1,121,1,121,1,121,1,121,3,121,2942,8,121, - 1,121,1,121,1,121,1,121,3,121,2948,8,121,1,121,1,121,1,121,1,121, - 3,121,2954,8,121,3,121,2956,8,121,1,122,1,122,1,122,5,122,2961,8, - 122,10,122,12,122,2964,9,122,1,123,1,123,1,123,5,123,2969,8,123, - 10,123,12,123,2972,9,123,1,124,1,124,1,124,5,124,2977,8,124,10,124, - 12,124,2980,9,124,1,125,1,125,1,125,3,125,2985,8,125,1,126,1,126, - 1,126,3,126,2990,8,126,1,126,1,126,1,127,1,127,1,127,3,127,2997, - 8,127,1,127,1,127,1,128,1,128,3,128,3003,8,128,1,128,3,128,3006, - 8,128,1,128,1,128,3,128,3010,8,128,3,128,3012,8,128,1,129,1,129, - 1,129,5,129,3017,8,129,10,129,12,129,3020,9,129,1,130,1,130,1,130, - 1,130,5,130,3026,8,130,10,130,12,130,3029,9,130,1,130,1,130,1,131, - 1,131,3,131,3035,8,131,1,132,1,132,1,132,1,132,1,132,1,132,5,132, - 3043,8,132,10,132,12,132,3046,9,132,1,132,1,132,3,132,3050,8,132, - 1,133,1,133,3,133,3054,8,133,1,134,1,134,1,135,1,135,1,135,1,135, - 1,136,1,136,3,136,3064,8,136,1,137,1,137,1,137,5,137,3069,8,137, - 10,137,12,137,3072,9,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,3,138,3084,8,138,3,138,3086,8,138,1,138,1,138, - 1,138,1,138,1,138,1,138,5,138,3094,8,138,10,138,12,138,3097,9,138, - 1,139,3,139,3100,8,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139, - 3108,8,139,1,139,1,139,1,139,1,139,1,139,5,139,3115,8,139,10,139, - 12,139,3118,9,139,1,139,1,139,1,139,3,139,3123,8,139,1,139,1,139, - 1,139,1,139,1,139,1,139,3,139,3131,8,139,1,139,1,139,1,139,3,139, - 3136,8,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,5,139, - 3146,8,139,10,139,12,139,3149,9,139,1,139,1,139,3,139,3153,8,139, - 1,139,3,139,3156,8,139,1,139,1,139,1,139,1,139,3,139,3162,8,139, - 1,139,1,139,3,139,3166,8,139,1,139,1,139,1,139,3,139,3171,8,139, - 1,139,1,139,1,139,3,139,3176,8,139,1,139,1,139,1,139,3,139,3181, - 8,139,1,140,1,140,1,140,1,140,3,140,3187,8,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,1,140,1,140,5,140,3208,8,140,10,140,12,140,3211, - 9,140,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3221, - 8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3233,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 4,142,3243,8,142,11,142,12,142,3244,1,142,1,142,3,142,3249,8,142, - 1,142,1,142,1,142,1,142,1,142,4,142,3256,8,142,11,142,12,142,3257, - 1,142,1,142,3,142,3262,8,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3278,8,142, - 10,142,12,142,3281,9,142,3,142,3283,8,142,1,142,1,142,1,142,1,142, - 1,142,1,142,3,142,3291,8,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,3,142,3300,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3309,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 4,142,3330,8,142,11,142,12,142,3331,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142,3348, - 8,142,1,142,1,142,1,142,5,142,3353,8,142,10,142,12,142,3356,9,142, - 3,142,3358,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142, - 3367,8,142,1,142,1,142,3,142,3371,8,142,1,142,1,142,3,142,3375,8, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,4,142,3385,8, - 142,11,142,12,142,3386,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,3,142,3412,8,142,1,142,1,142,1,142, - 1,142,1,142,3,142,3419,8,142,1,142,3,142,3422,8,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3437,8,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 3,142,3458,8,142,1,142,1,142,3,142,3462,8,142,3,142,3464,8,142,1, - 142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,5,142,3474,8,142,10, - 142,12,142,3477,9,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 3,143,3486,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,4,144,3499,8,144,11,144,12,144,3500,3,144,3503, - 8,144,1,145,1,145,1,146,1,146,1,147,1,147,1,148,1,148,1,149,1,149, - 1,149,3,149,3516,8,149,1,150,1,150,3,150,3520,8,150,1,151,1,151, - 1,151,4,151,3525,8,151,11,151,12,151,3526,1,152,1,152,1,152,3,152, - 3532,8,152,1,153,1,153,1,153,1,153,1,153,1,154,3,154,3540,8,154, - 1,154,1,154,1,154,3,154,3545,8,154,1,155,1,155,1,156,1,156,1,157, - 1,157,1,157,3,157,3554,8,157,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158, - 1,158,1,158,3,158,3586,8,158,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3603, - 8,159,1,159,1,159,3,159,3607,8,159,1,159,1,159,1,159,1,159,3,159, - 3613,8,159,1,159,1,159,1,159,1,159,3,159,3619,8,159,1,159,1,159, - 1,159,1,159,1,159,5,159,3626,8,159,10,159,12,159,3629,9,159,1,159, - 3,159,3632,8,159,3,159,3634,8,159,1,160,1,160,1,160,5,160,3639,8, - 160,10,160,12,160,3642,9,160,1,161,1,161,1,161,5,161,3647,8,161, - 10,161,12,161,3650,9,161,1,162,1,162,1,162,5,162,3655,8,162,10,162, - 12,162,3658,9,162,1,163,1,163,1,163,5,163,3663,8,163,10,163,12,163, - 3666,9,163,1,164,1,164,1,164,1,164,1,164,3,164,3673,8,164,1,165, - 1,165,1,165,1,166,1,166,1,166,1,167,1,167,1,167,5,167,3684,8,167, - 10,167,12,167,3687,9,167,1,168,1,168,1,168,1,168,3,168,3693,8,168, - 1,168,3,168,3696,8,168,1,169,1,169,1,169,5,169,3701,8,169,10,169, - 12,169,3704,9,169,1,170,1,170,1,170,5,170,3709,8,170,10,170,12,170, - 3712,9,170,1,171,1,171,1,171,1,171,1,171,3,171,3719,8,171,1,172, - 1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173,1,173,5,173,3731, - 8,173,10,173,12,173,3734,9,173,1,174,1,174,3,174,3738,8,174,1,174, - 1,174,1,174,3,174,3743,8,174,1,174,3,174,3746,8,174,1,175,1,175, - 1,175,1,175,1,175,1,176,1,176,1,176,1,176,5,176,3757,8,176,10,176, - 12,176,3760,9,176,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178, - 1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 5,179,3781,8,179,10,179,12,179,3784,9,179,1,179,1,179,1,179,1,179, - 1,179,5,179,3791,8,179,10,179,12,179,3794,9,179,3,179,3796,8,179, - 1,179,1,179,1,179,1,179,1,179,5,179,3803,8,179,10,179,12,179,3806, - 9,179,3,179,3808,8,179,3,179,3810,8,179,1,179,3,179,3813,8,179,1, - 179,3,179,3816,8,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1, - 180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,3834,8, - 180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,3843,8,181,1, - 182,1,182,1,182,5,182,3848,8,182,10,182,12,182,3851,9,182,1,183, - 1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,3,183,3862,8,183, - 1,184,1,184,1,185,1,185,1,185,5,185,3869,8,185,10,185,12,185,3872, - 9,185,1,186,1,186,1,186,1,187,1,187,4,187,3879,8,187,11,187,12,187, - 3880,1,187,3,187,3884,8,187,1,188,1,188,3,188,3888,8,188,1,189,1, - 189,1,189,1,189,3,189,3894,8,189,1,190,1,190,1,191,1,191,1,192,3, - 192,3901,8,192,1,192,1,192,3,192,3905,8,192,1,192,1,192,3,192,3909, - 8,192,1,192,1,192,3,192,3913,8,192,1,192,1,192,3,192,3917,8,192, - 1,192,1,192,3,192,3921,8,192,1,192,1,192,3,192,3925,8,192,1,192, - 1,192,3,192,3929,8,192,1,192,1,192,3,192,3933,8,192,1,192,1,192, - 3,192,3937,8,192,1,192,3,192,3940,8,192,1,193,1,193,1,193,1,193, - 1,193,1,193,1,193,1,193,1,193,1,193,1,193,3,193,3953,8,193,1,194, - 1,194,1,195,1,195,3,195,3959,8,195,1,196,1,196,3,196,3963,8,196, - 1,197,1,197,1,198,1,198,1,199,1,199,1,199,9,1137,1207,1215,1232, - 1259,1268,1277,1286,1334,4,104,276,280,284,200,0,2,4,6,8,10,12,14, - 16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58, - 60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100, - 102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132, - 134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164, - 166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196, - 198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228, - 230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260, - 262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292, - 294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324, - 326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356, - 358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388, - 390,392,394,396,398,0,64,2,0,78,78,229,229,2,0,34,34,247,247,2,0, - 123,123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5,0,46,46,58,58, - 108,108,122,122,173,173,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96, - 96,289,289,2,0,8,8,167,167,1,0,335,336,3,0,72,72,190,190,261,261, - 3,0,73,73,191,191,262,262,4,0,102,102,148,148,270,270,323,323,3, - 0,102,102,270,270,323,323,2,0,21,21,86,86,2,0,116,116,157,157,3, - 0,10,10,290,290,331,331,2,0,292,292,337,337,2,0,291,291,303,303, - 2,0,61,61,256,256,2,0,104,104,141,141,2,0,10,10,92,92,2,0,382,382, - 384,384,2,0,93,93,217,217,2,0,209,209,278,278,2,0,197,197,360,360, - 1,0,251,252,1,0,163,164,3,0,10,10,16,16,277,277,3,0,111,111,316, - 316,325,325,2,0,361,362,366,366,2,0,94,94,363,365,2,0,361,362,369, - 369,11,0,67,67,69,69,134,134,180,180,182,182,184,184,186,186,231, - 231,259,259,341,341,348,348,4,0,63,63,65,66,268,268,331,331,2,0, - 74,75,306,306,3,0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138, - 138,246,246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28, - 160,160,311,311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14, - 14,140,140,197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67, - 68,134,135,180,187,192,193,259,260,341,342,348,349,6,0,67,67,134, - 134,184,184,186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67, - 134,134,184,184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352, - 352,2,0,118,118,226,226,2,0,378,378,389,389,1,0,383,384,2,0,96,96, - 269,269,1,0,377,378,52,0,8,9,11,13,15,15,17,19,21,22,24,27,29,34, - 37,41,43,46,48,48,50,56,58,58,61,62,67,91,93,96,98,98,101,101,103, - 110,113,113,115,118,121,122,125,128,131,131,133,139,141,143,145, - 147,149,151,154,154,156,157,159,159,163,193,195,195,199,201,205, - 207,210,210,212,213,215,219,222,226,228,238,240,249,251,262,264, - 267,269,276,278,292,294,299,302,308,310,310,312,322,326,330,333, - 342,345,345,348,351,16,0,15,15,60,60,102,102,124,124,144,144,148, - 148,155,155,158,158,161,161,194,194,203,203,250,250,264,264,270, - 270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125,143,145,147, - 149,154,156,157,159,160,162,193,195,195,197,202,204,249,251,262, - 265,269,271,292,294,322,324,331,333,351,4586,0,403,1,0,0,0,2,408, - 1,0,0,0,4,1337,1,0,0,0,6,1341,1,0,0,0,8,1343,1,0,0,0,10,1345,1,0, - 0,0,12,1515,1,0,0,0,14,1517,1,0,0,0,16,1532,1,0,0,0,18,1538,1,0, - 0,0,20,1550,1,0,0,0,22,1563,1,0,0,0,24,1566,1,0,0,0,26,1570,1,0, - 0,0,28,1651,1,0,0,0,30,1653,1,0,0,0,32,1657,1,0,0,0,34,1678,1,0, - 0,0,36,1680,1,0,0,0,38,1682,1,0,0,0,40,1689,1,0,0,0,42,1691,1,0, - 0,0,44,1699,1,0,0,0,46,1708,1,0,0,0,48,1719,1,0,0,0,50,1738,1,0, - 0,0,52,1741,1,0,0,0,54,1744,1,0,0,0,56,1755,1,0,0,0,58,1771,1,0, - 0,0,60,1777,1,0,0,0,62,1779,1,0,0,0,64,1790,1,0,0,0,66,1797,1,0, - 0,0,68,1808,1,0,0,0,70,1825,1,0,0,0,72,1833,1,0,0,0,74,1835,1,0, - 0,0,76,1841,1,0,0,0,78,1900,1,0,0,0,80,1902,1,0,0,0,82,1904,1,0, - 0,0,84,1906,1,0,0,0,86,1908,1,0,0,0,88,1910,1,0,0,0,90,1912,1,0, - 0,0,92,1916,1,0,0,0,94,1918,1,0,0,0,96,1926,1,0,0,0,98,1934,1,0, - 0,0,100,1946,1,0,0,0,102,1998,1,0,0,0,104,2001,1,0,0,0,106,2036, - 1,0,0,0,108,2040,1,0,0,0,110,2049,1,0,0,0,112,2082,1,0,0,0,114,2128, - 1,0,0,0,116,2149,1,0,0,0,118,2181,1,0,0,0,120,2193,1,0,0,0,122,2196, - 1,0,0,0,124,2205,1,0,0,0,126,2219,1,0,0,0,128,2238,1,0,0,0,130,2258, - 1,0,0,0,132,2264,1,0,0,0,134,2266,1,0,0,0,136,2274,1,0,0,0,138,2278, - 1,0,0,0,140,2281,1,0,0,0,142,2284,1,0,0,0,144,2310,1,0,0,0,146,2312, - 1,0,0,0,148,2333,1,0,0,0,150,2349,1,0,0,0,152,2390,1,0,0,0,154,2395, - 1,0,0,0,156,2422,1,0,0,0,158,2426,1,0,0,0,160,2448,1,0,0,0,162,2450, - 1,0,0,0,164,2480,1,0,0,0,166,2482,1,0,0,0,168,2489,1,0,0,0,170,2502, - 1,0,0,0,172,2507,1,0,0,0,174,2509,1,0,0,0,176,2524,1,0,0,0,178,2548, - 1,0,0,0,180,2561,1,0,0,0,182,2563,1,0,0,0,184,2565,1,0,0,0,186,2569, - 1,0,0,0,188,2572,1,0,0,0,190,2576,1,0,0,0,192,2580,1,0,0,0,194,2583, - 1,0,0,0,196,2615,1,0,0,0,198,2628,1,0,0,0,200,2633,1,0,0,0,202,2652, - 1,0,0,0,204,2678,1,0,0,0,206,2684,1,0,0,0,208,2686,1,0,0,0,210,2722, - 1,0,0,0,212,2724,1,0,0,0,214,2728,1,0,0,0,216,2736,1,0,0,0,218,2747, - 1,0,0,0,220,2751,1,0,0,0,222,2762,1,0,0,0,224,2797,1,0,0,0,226,2799, - 1,0,0,0,228,2829,1,0,0,0,230,2850,1,0,0,0,232,2870,1,0,0,0,234,2876, - 1,0,0,0,236,2880,1,0,0,0,238,2882,1,0,0,0,240,2904,1,0,0,0,242,2955, - 1,0,0,0,244,2957,1,0,0,0,246,2965,1,0,0,0,248,2973,1,0,0,0,250,2981, - 1,0,0,0,252,2989,1,0,0,0,254,2996,1,0,0,0,256,3002,1,0,0,0,258,3013, - 1,0,0,0,260,3021,1,0,0,0,262,3034,1,0,0,0,264,3049,1,0,0,0,266,3053, - 1,0,0,0,268,3055,1,0,0,0,270,3057,1,0,0,0,272,3063,1,0,0,0,274,3065, - 1,0,0,0,276,3085,1,0,0,0,278,3180,1,0,0,0,280,3186,1,0,0,0,282,3212, - 1,0,0,0,284,3463,1,0,0,0,286,3485,1,0,0,0,288,3502,1,0,0,0,290,3504, - 1,0,0,0,292,3506,1,0,0,0,294,3508,1,0,0,0,296,3510,1,0,0,0,298,3512, - 1,0,0,0,300,3517,1,0,0,0,302,3524,1,0,0,0,304,3528,1,0,0,0,306,3533, - 1,0,0,0,308,3539,1,0,0,0,310,3546,1,0,0,0,312,3548,1,0,0,0,314,3553, - 1,0,0,0,316,3585,1,0,0,0,318,3633,1,0,0,0,320,3635,1,0,0,0,322,3643, - 1,0,0,0,324,3651,1,0,0,0,326,3659,1,0,0,0,328,3672,1,0,0,0,330,3674, - 1,0,0,0,332,3677,1,0,0,0,334,3680,1,0,0,0,336,3688,1,0,0,0,338,3697, - 1,0,0,0,340,3705,1,0,0,0,342,3718,1,0,0,0,344,3720,1,0,0,0,346,3727, - 1,0,0,0,348,3735,1,0,0,0,350,3747,1,0,0,0,352,3752,1,0,0,0,354,3761, - 1,0,0,0,356,3765,1,0,0,0,358,3815,1,0,0,0,360,3833,1,0,0,0,362,3842, - 1,0,0,0,364,3844,1,0,0,0,366,3861,1,0,0,0,368,3863,1,0,0,0,370,3865, - 1,0,0,0,372,3873,1,0,0,0,374,3883,1,0,0,0,376,3887,1,0,0,0,378,3893, - 1,0,0,0,380,3895,1,0,0,0,382,3897,1,0,0,0,384,3939,1,0,0,0,386,3952, - 1,0,0,0,388,3954,1,0,0,0,390,3958,1,0,0,0,392,3962,1,0,0,0,394,3964, - 1,0,0,0,396,3966,1,0,0,0,398,3968,1,0,0,0,400,402,3,2,1,0,401,400, - 1,0,0,0,402,405,1,0,0,0,403,401,1,0,0,0,403,404,1,0,0,0,404,406, - 1,0,0,0,405,403,1,0,0,0,406,407,5,0,0,1,407,1,1,0,0,0,408,410,3, - 4,2,0,409,411,5,1,0,0,410,409,1,0,0,0,410,411,1,0,0,0,411,3,1,0, - 0,0,412,1338,3,26,13,0,413,415,3,44,22,0,414,413,1,0,0,0,414,415, - 1,0,0,0,415,416,1,0,0,0,416,1338,3,78,39,0,417,419,5,330,0,0,418, - 420,3,36,18,0,419,418,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421, - 1338,3,80,40,0,422,423,5,269,0,0,423,426,5,37,0,0,424,427,3,376, - 188,0,425,427,3,388,194,0,426,424,1,0,0,0,426,425,1,0,0,0,427,1338, - 1,0,0,0,428,429,5,59,0,0,429,431,3,36,18,0,430,432,3,190,95,0,431, - 430,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433,441,3,82,41,0,434, - 440,3,24,12,0,435,440,3,22,11,0,436,437,5,346,0,0,437,438,7,0,0, - 0,438,440,3,54,27,0,439,434,1,0,0,0,439,435,1,0,0,0,439,436,1,0, - 0,0,440,443,1,0,0,0,441,439,1,0,0,0,441,442,1,0,0,0,442,1338,1,0, - 0,0,443,441,1,0,0,0,444,445,5,11,0,0,445,446,3,36,18,0,446,447,3, - 80,40,0,447,448,5,269,0,0,448,449,7,0,0,0,449,450,3,54,27,0,450, - 1338,1,0,0,0,451,452,5,11,0,0,452,453,3,36,18,0,453,454,3,80,40, - 0,454,455,5,269,0,0,455,456,3,22,11,0,456,1338,1,0,0,0,457,458,5, - 96,0,0,458,460,3,36,18,0,459,461,3,192,96,0,460,459,1,0,0,0,460, - 461,1,0,0,0,461,462,1,0,0,0,462,464,3,80,40,0,463,465,7,1,0,0,464, - 463,1,0,0,0,464,465,1,0,0,0,465,1338,1,0,0,0,466,467,5,273,0,0,467, - 470,3,38,19,0,468,469,7,2,0,0,469,471,3,246,123,0,470,468,1,0,0, - 0,470,471,1,0,0,0,471,476,1,0,0,0,472,474,5,163,0,0,473,472,1,0, - 0,0,473,474,1,0,0,0,474,475,1,0,0,0,475,477,3,388,194,0,476,473, - 1,0,0,0,476,477,1,0,0,0,477,1338,1,0,0,0,478,483,3,14,7,0,479,480, - 5,2,0,0,480,481,3,338,169,0,481,482,5,3,0,0,482,484,1,0,0,0,483, - 479,1,0,0,0,483,484,1,0,0,0,484,486,1,0,0,0,485,487,3,48,24,0,486, - 485,1,0,0,0,486,487,1,0,0,0,487,488,1,0,0,0,488,493,3,50,25,0,489, - 491,5,20,0,0,490,489,1,0,0,0,490,491,1,0,0,0,491,492,1,0,0,0,492, - 494,3,26,13,0,493,490,1,0,0,0,493,494,1,0,0,0,494,1338,1,0,0,0,495, - 496,5,59,0,0,496,498,5,293,0,0,497,499,3,190,95,0,498,497,1,0,0, - 0,498,499,1,0,0,0,499,500,1,0,0,0,500,501,3,84,42,0,501,502,5,163, - 0,0,502,512,3,86,43,0,503,511,3,48,24,0,504,511,3,242,121,0,505, - 511,3,70,35,0,506,511,3,22,11,0,507,508,5,297,0,0,508,511,3,54,27, - 0,509,511,3,52,26,0,510,503,1,0,0,0,510,504,1,0,0,0,510,505,1,0, - 0,0,510,506,1,0,0,0,510,507,1,0,0,0,510,509,1,0,0,0,511,514,1,0, - 0,0,512,510,1,0,0,0,512,513,1,0,0,0,513,1338,1,0,0,0,514,512,1,0, - 0,0,515,520,3,16,8,0,516,517,5,2,0,0,517,518,3,338,169,0,518,519, - 5,3,0,0,519,521,1,0,0,0,520,516,1,0,0,0,520,521,1,0,0,0,521,523, - 1,0,0,0,522,524,3,48,24,0,523,522,1,0,0,0,523,524,1,0,0,0,524,525, - 1,0,0,0,525,530,3,50,25,0,526,528,5,20,0,0,527,526,1,0,0,0,527,528, - 1,0,0,0,528,529,1,0,0,0,529,531,3,26,13,0,530,527,1,0,0,0,530,531, - 1,0,0,0,531,1338,1,0,0,0,532,533,5,13,0,0,533,534,5,293,0,0,534, - 536,3,86,43,0,535,537,3,32,16,0,536,535,1,0,0,0,536,537,1,0,0,0, - 537,538,1,0,0,0,538,539,5,55,0,0,539,547,5,282,0,0,540,548,5,196, - 0,0,541,542,5,119,0,0,542,543,5,50,0,0,543,548,3,94,47,0,544,545, - 5,119,0,0,545,546,5,10,0,0,546,548,5,50,0,0,547,540,1,0,0,0,547, - 541,1,0,0,0,547,544,1,0,0,0,547,548,1,0,0,0,548,1338,1,0,0,0,549, - 550,5,13,0,0,550,553,5,294,0,0,551,552,7,2,0,0,552,554,3,80,40,0, - 553,551,1,0,0,0,553,554,1,0,0,0,554,555,1,0,0,0,555,556,5,55,0,0, - 556,558,5,282,0,0,557,559,5,196,0,0,558,557,1,0,0,0,558,559,1,0, - 0,0,559,1338,1,0,0,0,560,561,5,11,0,0,561,562,5,293,0,0,562,563, - 3,86,43,0,563,564,5,8,0,0,564,565,5,49,0,0,565,566,3,322,161,0,566, - 1338,1,0,0,0,567,568,5,11,0,0,568,569,5,293,0,0,569,570,3,86,43, - 0,570,571,5,8,0,0,571,572,5,50,0,0,572,573,5,2,0,0,573,574,3,320, - 160,0,574,575,5,3,0,0,575,1338,1,0,0,0,576,577,5,11,0,0,577,578, - 5,293,0,0,578,579,3,86,43,0,579,580,5,241,0,0,580,581,5,49,0,0,581, - 582,3,92,46,0,582,583,5,309,0,0,583,584,3,96,48,0,584,1338,1,0,0, - 0,585,586,5,11,0,0,586,587,5,293,0,0,587,588,3,86,43,0,588,589,5, - 96,0,0,589,591,5,49,0,0,590,592,3,192,96,0,591,590,1,0,0,0,591,592, - 1,0,0,0,592,593,1,0,0,0,593,594,3,92,46,0,594,1338,1,0,0,0,595,596, - 5,11,0,0,596,597,5,293,0,0,597,598,3,86,43,0,598,599,5,96,0,0,599, - 601,5,50,0,0,600,602,3,192,96,0,601,600,1,0,0,0,601,602,1,0,0,0, - 602,603,1,0,0,0,603,604,5,2,0,0,604,605,3,94,47,0,605,606,5,3,0, - 0,606,1338,1,0,0,0,607,612,5,11,0,0,608,609,5,293,0,0,609,613,3, - 86,43,0,610,611,5,338,0,0,611,613,3,90,45,0,612,608,1,0,0,0,612, - 610,1,0,0,0,613,614,1,0,0,0,614,615,5,241,0,0,615,616,5,309,0,0, - 616,617,3,246,123,0,617,1338,1,0,0,0,618,623,5,11,0,0,619,620,5, - 293,0,0,620,624,3,86,43,0,621,622,5,338,0,0,622,624,3,90,45,0,623, - 619,1,0,0,0,623,621,1,0,0,0,624,625,1,0,0,0,625,626,5,269,0,0,626, - 627,5,297,0,0,627,628,3,54,27,0,628,1338,1,0,0,0,629,634,5,11,0, - 0,630,631,5,293,0,0,631,635,3,86,43,0,632,633,5,338,0,0,633,635, - 3,90,45,0,634,630,1,0,0,0,634,632,1,0,0,0,635,636,1,0,0,0,636,637, - 5,328,0,0,637,639,5,297,0,0,638,640,3,192,96,0,639,638,1,0,0,0,639, - 640,1,0,0,0,640,641,1,0,0,0,641,642,3,54,27,0,642,1338,1,0,0,0,643, - 644,5,11,0,0,644,645,5,293,0,0,645,646,3,86,43,0,646,648,7,3,0,0, - 647,649,5,49,0,0,648,647,1,0,0,0,648,649,1,0,0,0,649,650,1,0,0,0, - 650,652,3,92,46,0,651,653,3,386,193,0,652,651,1,0,0,0,652,653,1, - 0,0,0,653,1338,1,0,0,0,654,655,5,11,0,0,655,656,5,293,0,0,656,658, - 3,86,43,0,657,659,3,32,16,0,658,657,1,0,0,0,658,659,1,0,0,0,659, - 660,1,0,0,0,660,662,5,39,0,0,661,663,5,49,0,0,662,661,1,0,0,0,662, - 663,1,0,0,0,663,664,1,0,0,0,664,665,3,92,46,0,665,667,3,336,168, - 0,666,668,3,314,157,0,667,666,1,0,0,0,667,668,1,0,0,0,668,1338,1, - 0,0,0,669,670,5,11,0,0,670,671,5,293,0,0,671,673,3,86,43,0,672,674, - 3,32,16,0,673,672,1,0,0,0,673,674,1,0,0,0,674,675,1,0,0,0,675,676, - 5,244,0,0,676,677,5,50,0,0,677,678,5,2,0,0,678,679,3,324,162,0,679, - 680,5,3,0,0,680,1338,1,0,0,0,681,682,5,11,0,0,682,683,5,293,0,0, - 683,685,3,86,43,0,684,686,3,32,16,0,685,684,1,0,0,0,685,686,1,0, - 0,0,686,687,1,0,0,0,687,688,5,269,0,0,688,689,5,266,0,0,689,693, - 3,388,194,0,690,691,5,346,0,0,691,692,5,267,0,0,692,694,3,54,27, - 0,693,690,1,0,0,0,693,694,1,0,0,0,694,1338,1,0,0,0,695,696,5,11, - 0,0,696,697,5,293,0,0,697,699,3,86,43,0,698,700,3,32,16,0,699,698, - 1,0,0,0,699,700,1,0,0,0,700,701,1,0,0,0,701,702,5,269,0,0,702,703, - 5,267,0,0,703,704,3,54,27,0,704,1338,1,0,0,0,705,710,5,11,0,0,706, - 707,5,293,0,0,707,711,3,86,43,0,708,709,5,338,0,0,709,711,3,90,45, - 0,710,706,1,0,0,0,710,708,1,0,0,0,711,712,1,0,0,0,712,714,5,8,0, - 0,713,715,3,190,95,0,714,713,1,0,0,0,714,715,1,0,0,0,715,717,1,0, - 0,0,716,718,3,30,15,0,717,716,1,0,0,0,718,719,1,0,0,0,719,717,1, - 0,0,0,719,720,1,0,0,0,720,1338,1,0,0,0,721,722,5,11,0,0,722,723, - 5,293,0,0,723,724,3,86,43,0,724,725,3,32,16,0,725,726,5,241,0,0, - 726,727,5,309,0,0,727,728,3,32,16,0,728,1338,1,0,0,0,729,734,5,11, - 0,0,730,731,5,293,0,0,731,735,3,86,43,0,732,733,5,338,0,0,733,735, - 3,90,45,0,734,730,1,0,0,0,734,732,1,0,0,0,735,736,1,0,0,0,736,738, - 5,96,0,0,737,739,3,192,96,0,738,737,1,0,0,0,738,739,1,0,0,0,739, - 740,1,0,0,0,740,745,3,32,16,0,741,742,5,4,0,0,742,744,3,32,16,0, - 743,741,1,0,0,0,744,747,1,0,0,0,745,743,1,0,0,0,745,746,1,0,0,0, - 746,749,1,0,0,0,747,745,1,0,0,0,748,750,5,230,0,0,749,748,1,0,0, - 0,749,750,1,0,0,0,750,1338,1,0,0,0,751,752,5,11,0,0,752,753,5,293, - 0,0,753,755,3,86,43,0,754,756,3,32,16,0,755,754,1,0,0,0,755,756, - 1,0,0,0,756,757,1,0,0,0,757,758,5,269,0,0,758,759,3,22,11,0,759, - 1338,1,0,0,0,760,761,5,11,0,0,761,762,5,293,0,0,762,763,3,86,43, - 0,763,764,5,237,0,0,764,765,5,219,0,0,765,1338,1,0,0,0,766,767,5, - 11,0,0,767,768,5,176,0,0,768,769,5,338,0,0,769,770,3,90,45,0,770, - 771,7,4,0,0,771,772,5,248,0,0,772,1338,1,0,0,0,773,774,5,11,0,0, - 774,775,5,176,0,0,775,776,5,338,0,0,776,777,3,90,45,0,777,778,5, - 269,0,0,778,779,5,297,0,0,779,780,3,54,27,0,780,1338,1,0,0,0,781, - 782,5,96,0,0,782,784,5,293,0,0,783,785,3,192,96,0,784,783,1,0,0, - 0,784,785,1,0,0,0,785,786,1,0,0,0,786,788,3,86,43,0,787,789,5,230, - 0,0,788,787,1,0,0,0,788,789,1,0,0,0,789,1338,1,0,0,0,790,791,5,96, - 0,0,791,793,5,338,0,0,792,794,3,192,96,0,793,792,1,0,0,0,793,794, - 1,0,0,0,794,795,1,0,0,0,795,1338,3,90,45,0,796,797,5,96,0,0,797, - 798,5,176,0,0,798,800,5,338,0,0,799,801,3,192,96,0,800,799,1,0,0, - 0,800,801,1,0,0,0,801,802,1,0,0,0,802,1338,3,90,45,0,803,806,5,59, - 0,0,804,805,5,208,0,0,805,807,5,244,0,0,806,804,1,0,0,0,806,807, - 1,0,0,0,807,812,1,0,0,0,808,810,5,128,0,0,809,808,1,0,0,0,809,810, - 1,0,0,0,810,811,1,0,0,0,811,813,5,298,0,0,812,809,1,0,0,0,812,813, - 1,0,0,0,813,814,1,0,0,0,814,816,5,338,0,0,815,817,3,190,95,0,816, - 815,1,0,0,0,816,817,1,0,0,0,817,818,1,0,0,0,818,820,3,88,44,0,819, - 821,3,220,110,0,820,819,1,0,0,0,820,821,1,0,0,0,821,830,1,0,0,0, - 822,829,3,24,12,0,823,824,5,218,0,0,824,825,5,203,0,0,825,829,3, - 212,106,0,826,827,5,297,0,0,827,829,3,54,27,0,828,822,1,0,0,0,828, - 823,1,0,0,0,828,826,1,0,0,0,829,832,1,0,0,0,830,828,1,0,0,0,830, - 831,1,0,0,0,831,833,1,0,0,0,832,830,1,0,0,0,833,834,5,20,0,0,834, - 835,3,26,13,0,835,1338,1,0,0,0,836,839,5,59,0,0,837,838,5,208,0, - 0,838,840,5,244,0,0,839,837,1,0,0,0,839,840,1,0,0,0,840,842,1,0, - 0,0,841,843,5,128,0,0,842,841,1,0,0,0,842,843,1,0,0,0,843,844,1, - 0,0,0,844,845,5,298,0,0,845,846,5,338,0,0,846,851,3,88,44,0,847, - 848,5,2,0,0,848,849,3,334,167,0,849,850,5,3,0,0,850,852,1,0,0,0, - 851,847,1,0,0,0,851,852,1,0,0,0,852,853,1,0,0,0,853,856,3,48,24, - 0,854,855,5,207,0,0,855,857,3,54,27,0,856,854,1,0,0,0,856,857,1, - 0,0,0,857,1338,1,0,0,0,858,859,5,11,0,0,859,860,5,338,0,0,860,862, - 3,90,45,0,861,863,5,20,0,0,862,861,1,0,0,0,862,863,1,0,0,0,863,864, - 1,0,0,0,864,865,3,26,13,0,865,1338,1,0,0,0,866,869,5,59,0,0,867, - 868,5,208,0,0,868,870,5,244,0,0,869,867,1,0,0,0,869,870,1,0,0,0, - 870,872,1,0,0,0,871,873,5,298,0,0,872,871,1,0,0,0,872,873,1,0,0, - 0,873,874,1,0,0,0,874,876,5,125,0,0,875,877,3,190,95,0,876,875,1, - 0,0,0,876,877,1,0,0,0,877,878,1,0,0,0,878,879,3,368,184,0,879,880, - 5,20,0,0,880,890,3,388,194,0,881,882,5,332,0,0,882,887,3,76,38,0, - 883,884,5,4,0,0,884,886,3,76,38,0,885,883,1,0,0,0,886,889,1,0,0, - 0,887,885,1,0,0,0,887,888,1,0,0,0,888,891,1,0,0,0,889,887,1,0,0, - 0,890,881,1,0,0,0,890,891,1,0,0,0,891,1338,1,0,0,0,892,893,5,59, - 0,0,893,894,5,176,0,0,894,896,5,338,0,0,895,897,3,190,95,0,896,895, - 1,0,0,0,896,897,1,0,0,0,897,898,1,0,0,0,898,900,3,88,44,0,899,901, - 3,48,24,0,900,899,1,0,0,0,900,901,1,0,0,0,901,917,1,0,0,0,902,903, - 5,207,0,0,903,916,3,54,27,0,904,905,5,218,0,0,905,906,5,31,0,0,906, - 916,3,260,130,0,907,916,3,20,10,0,908,916,3,18,9,0,909,916,3,242, - 121,0,910,916,3,70,35,0,911,916,3,22,11,0,912,916,3,24,12,0,913, - 914,5,297,0,0,914,916,3,54,27,0,915,902,1,0,0,0,915,904,1,0,0,0, - 915,907,1,0,0,0,915,908,1,0,0,0,915,909,1,0,0,0,915,910,1,0,0,0, - 915,911,1,0,0,0,915,912,1,0,0,0,915,913,1,0,0,0,916,919,1,0,0,0, - 917,915,1,0,0,0,917,918,1,0,0,0,918,920,1,0,0,0,919,917,1,0,0,0, - 920,921,5,20,0,0,921,922,3,26,13,0,922,1338,1,0,0,0,923,925,5,96, - 0,0,924,926,5,298,0,0,925,924,1,0,0,0,925,926,1,0,0,0,926,927,1, - 0,0,0,927,929,5,125,0,0,928,930,3,192,96,0,929,928,1,0,0,0,929,930, - 1,0,0,0,930,931,1,0,0,0,931,1338,3,366,183,0,932,935,5,81,0,0,933, - 934,5,208,0,0,934,936,5,244,0,0,935,933,1,0,0,0,935,936,1,0,0,0, - 936,938,1,0,0,0,937,939,5,336,0,0,938,937,1,0,0,0,938,939,1,0,0, - 0,939,940,1,0,0,0,940,942,3,366,183,0,941,943,3,318,159,0,942,941, - 1,0,0,0,942,943,1,0,0,0,943,945,1,0,0,0,944,946,3,332,166,0,945, - 944,1,0,0,0,945,946,1,0,0,0,946,1338,1,0,0,0,947,948,5,96,0,0,948, - 949,5,298,0,0,949,951,5,336,0,0,950,952,3,192,96,0,951,950,1,0,0, - 0,951,952,1,0,0,0,952,956,1,0,0,0,953,957,3,86,43,0,954,957,3,90, - 45,0,955,957,3,366,183,0,956,953,1,0,0,0,956,954,1,0,0,0,956,955, - 1,0,0,0,957,1338,1,0,0,0,958,960,5,106,0,0,959,961,7,5,0,0,960,959, - 1,0,0,0,960,961,1,0,0,0,961,962,1,0,0,0,962,1338,3,4,2,0,963,964, - 5,273,0,0,964,967,5,294,0,0,965,966,7,2,0,0,966,968,3,80,40,0,967, - 965,1,0,0,0,967,968,1,0,0,0,968,973,1,0,0,0,969,971,5,163,0,0,970, - 969,1,0,0,0,970,971,1,0,0,0,971,972,1,0,0,0,972,974,3,388,194,0, - 973,970,1,0,0,0,973,974,1,0,0,0,974,1338,1,0,0,0,975,976,5,273,0, - 0,976,977,5,293,0,0,977,980,5,108,0,0,978,979,7,2,0,0,979,981,3, - 80,40,0,980,978,1,0,0,0,980,981,1,0,0,0,981,982,1,0,0,0,982,983, - 5,163,0,0,983,985,3,388,194,0,984,986,3,32,16,0,985,984,1,0,0,0, - 985,986,1,0,0,0,986,1338,1,0,0,0,987,988,5,273,0,0,988,989,5,297, - 0,0,989,994,3,86,43,0,990,991,5,2,0,0,991,992,3,58,29,0,992,993, - 5,3,0,0,993,995,1,0,0,0,994,990,1,0,0,0,994,995,1,0,0,0,995,1338, - 1,0,0,0,996,997,5,273,0,0,997,998,5,50,0,0,998,999,7,2,0,0,999,1002, - 3,86,43,0,1000,1001,7,2,0,0,1001,1003,3,80,40,0,1002,1000,1,0,0, - 0,1002,1003,1,0,0,0,1003,1338,1,0,0,0,1004,1005,5,273,0,0,1005,1008, - 5,339,0,0,1006,1007,7,2,0,0,1007,1009,3,80,40,0,1008,1006,1,0,0, - 0,1008,1009,1,0,0,0,1009,1014,1,0,0,0,1010,1012,5,163,0,0,1011,1010, - 1,0,0,0,1011,1012,1,0,0,0,1012,1013,1,0,0,0,1013,1015,3,388,194, - 0,1014,1011,1,0,0,0,1014,1015,1,0,0,0,1015,1338,1,0,0,0,1016,1017, - 5,273,0,0,1017,1018,5,219,0,0,1018,1020,3,86,43,0,1019,1021,3,32, - 16,0,1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,1338,1,0,0,0,1022, - 1024,5,273,0,0,1023,1025,3,148,74,0,1024,1023,1,0,0,0,1024,1025, - 1,0,0,0,1025,1026,1,0,0,0,1026,1029,5,126,0,0,1027,1028,7,2,0,0, - 1028,1030,3,80,40,0,1029,1027,1,0,0,0,1029,1030,1,0,0,0,1030,1038, - 1,0,0,0,1031,1033,5,163,0,0,1032,1031,1,0,0,0,1032,1033,1,0,0,0, - 1033,1036,1,0,0,0,1034,1037,3,246,123,0,1035,1037,3,388,194,0,1036, - 1034,1,0,0,0,1036,1035,1,0,0,0,1037,1039,1,0,0,0,1038,1032,1,0,0, - 0,1038,1039,1,0,0,0,1039,1338,1,0,0,0,1040,1041,5,273,0,0,1041,1042, - 5,59,0,0,1042,1043,5,293,0,0,1043,1046,3,86,43,0,1044,1045,5,20, - 0,0,1045,1047,5,266,0,0,1046,1044,1,0,0,0,1046,1047,1,0,0,0,1047, - 1338,1,0,0,0,1048,1049,5,273,0,0,1049,1050,5,62,0,0,1050,1338,3, - 36,18,0,1051,1052,5,273,0,0,1052,1057,5,38,0,0,1053,1055,5,163,0, - 0,1054,1053,1,0,0,0,1054,1055,1,0,0,0,1055,1056,1,0,0,0,1056,1058, - 3,388,194,0,1057,1054,1,0,0,0,1057,1058,1,0,0,0,1058,1338,1,0,0, - 0,1059,1060,5,273,0,0,1060,1061,5,176,0,0,1061,1064,5,339,0,0,1062, - 1063,7,2,0,0,1063,1065,3,80,40,0,1064,1062,1,0,0,0,1064,1065,1,0, - 0,0,1065,1070,1,0,0,0,1066,1068,5,163,0,0,1067,1066,1,0,0,0,1067, - 1068,1,0,0,0,1068,1069,1,0,0,0,1069,1071,3,388,194,0,1070,1067,1, - 0,0,0,1070,1071,1,0,0,0,1071,1338,1,0,0,0,1072,1073,5,273,0,0,1073, - 1074,5,59,0,0,1074,1075,5,176,0,0,1075,1076,5,338,0,0,1076,1079, - 3,90,45,0,1077,1078,5,20,0,0,1078,1080,5,266,0,0,1079,1077,1,0,0, - 0,1079,1080,1,0,0,0,1080,1338,1,0,0,0,1081,1082,7,6,0,0,1082,1084, - 5,125,0,0,1083,1085,5,108,0,0,1084,1083,1,0,0,0,1084,1085,1,0,0, - 0,1085,1086,1,0,0,0,1086,1338,3,40,20,0,1087,1088,7,6,0,0,1088,1090, - 5,72,0,0,1089,1091,5,108,0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0, - 1091,1092,1,0,0,0,1092,1338,3,80,40,0,1093,1095,7,6,0,0,1094,1096, - 5,293,0,0,1095,1094,1,0,0,0,1095,1096,1,0,0,0,1096,1098,1,0,0,0, - 1097,1099,7,7,0,0,1098,1097,1,0,0,0,1098,1099,1,0,0,0,1099,1100, - 1,0,0,0,1100,1102,3,86,43,0,1101,1103,3,32,16,0,1102,1101,1,0,0, - 0,1102,1103,1,0,0,0,1103,1105,1,0,0,0,1104,1106,3,42,21,0,1105,1104, - 1,0,0,0,1105,1106,1,0,0,0,1106,1338,1,0,0,0,1107,1109,7,6,0,0,1108, - 1110,5,232,0,0,1109,1108,1,0,0,0,1109,1110,1,0,0,0,1110,1111,1,0, - 0,0,1111,1338,3,26,13,0,1112,1113,5,51,0,0,1113,1114,5,203,0,0,1114, - 1115,3,36,18,0,1115,1116,3,80,40,0,1116,1117,5,153,0,0,1117,1118, - 3,390,195,0,1118,1338,1,0,0,0,1119,1120,5,51,0,0,1120,1121,5,203, - 0,0,1121,1122,5,293,0,0,1122,1123,3,86,43,0,1123,1124,5,153,0,0, - 1124,1125,3,390,195,0,1125,1338,1,0,0,0,1126,1127,5,240,0,0,1127, - 1128,5,293,0,0,1128,1338,3,86,43,0,1129,1130,5,240,0,0,1130,1131, - 5,125,0,0,1131,1338,3,366,183,0,1132,1140,5,240,0,0,1133,1141,3, - 388,194,0,1134,1136,9,0,0,0,1135,1134,1,0,0,0,1136,1139,1,0,0,0, - 1137,1138,1,0,0,0,1137,1135,1,0,0,0,1138,1141,1,0,0,0,1139,1137, - 1,0,0,0,1140,1133,1,0,0,0,1140,1137,1,0,0,0,1141,1338,1,0,0,0,1142, - 1143,5,240,0,0,1143,1144,5,176,0,0,1144,1145,5,338,0,0,1145,1338, - 3,90,45,0,1146,1148,5,33,0,0,1147,1149,5,159,0,0,1148,1147,1,0,0, - 0,1148,1149,1,0,0,0,1149,1150,1,0,0,0,1150,1151,5,293,0,0,1151,1154, - 3,86,43,0,1152,1153,5,207,0,0,1153,1155,3,54,27,0,1154,1152,1,0, - 0,0,1154,1155,1,0,0,0,1155,1160,1,0,0,0,1156,1158,5,20,0,0,1157, - 1156,1,0,0,0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1161,3,26, - 13,0,1160,1157,1,0,0,0,1160,1161,1,0,0,0,1161,1338,1,0,0,0,1162, - 1163,5,322,0,0,1163,1165,5,293,0,0,1164,1166,3,192,96,0,1165,1164, - 1,0,0,0,1165,1166,1,0,0,0,1166,1167,1,0,0,0,1167,1338,3,86,43,0, - 1168,1169,5,43,0,0,1169,1338,5,33,0,0,1170,1171,5,168,0,0,1171,1173, - 5,70,0,0,1172,1174,5,169,0,0,1173,1172,1,0,0,0,1173,1174,1,0,0,0, - 1174,1175,1,0,0,0,1175,1176,5,145,0,0,1176,1178,3,388,194,0,1177, - 1179,5,216,0,0,1178,1177,1,0,0,0,1178,1179,1,0,0,0,1179,1180,1,0, - 0,0,1180,1181,5,152,0,0,1181,1182,5,293,0,0,1182,1184,3,86,43,0, - 1183,1185,3,32,16,0,1184,1183,1,0,0,0,1184,1185,1,0,0,0,1185,1338, - 1,0,0,0,1186,1187,5,317,0,0,1187,1188,5,293,0,0,1188,1190,3,86,43, - 0,1189,1191,3,32,16,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0,1191,1338, - 1,0,0,0,1192,1194,5,188,0,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0, - 1194,1195,1,0,0,0,1195,1196,5,242,0,0,1196,1197,5,293,0,0,1197,1200, - 3,86,43,0,1198,1199,7,8,0,0,1199,1201,5,219,0,0,1200,1198,1,0,0, - 0,1200,1201,1,0,0,0,1201,1338,1,0,0,0,1202,1203,7,9,0,0,1203,1207, - 3,376,188,0,1204,1206,9,0,0,0,1205,1204,1,0,0,0,1206,1209,1,0,0, - 0,1207,1208,1,0,0,0,1207,1205,1,0,0,0,1208,1338,1,0,0,0,1209,1207, - 1,0,0,0,1210,1211,5,269,0,0,1211,1215,5,253,0,0,1212,1214,9,0,0, - 0,1213,1212,1,0,0,0,1214,1217,1,0,0,0,1215,1216,1,0,0,0,1215,1213, - 1,0,0,0,1216,1338,1,0,0,0,1217,1215,1,0,0,0,1218,1219,5,269,0,0, - 1219,1220,5,301,0,0,1220,1221,5,350,0,0,1221,1338,3,298,149,0,1222, - 1223,5,269,0,0,1223,1224,5,301,0,0,1224,1225,5,350,0,0,1225,1338, - 3,6,3,0,1226,1227,5,269,0,0,1227,1228,5,301,0,0,1228,1232,5,350, - 0,0,1229,1231,9,0,0,0,1230,1229,1,0,0,0,1231,1234,1,0,0,0,1232,1233, - 1,0,0,0,1232,1230,1,0,0,0,1233,1338,1,0,0,0,1234,1232,1,0,0,0,1235, - 1236,5,269,0,0,1236,1237,7,10,0,0,1237,1338,3,134,67,0,1238,1239, - 5,269,0,0,1239,1240,7,10,0,0,1240,1241,5,2,0,0,1241,1242,3,244,122, - 0,1242,1243,5,3,0,0,1243,1244,5,352,0,0,1244,1245,5,2,0,0,1245,1246, - 3,26,13,0,1246,1247,5,3,0,0,1247,1338,1,0,0,0,1248,1249,5,269,0, - 0,1249,1250,3,8,4,0,1250,1251,5,352,0,0,1251,1252,3,10,5,0,1252, - 1338,1,0,0,0,1253,1254,5,269,0,0,1254,1262,3,8,4,0,1255,1259,5,352, - 0,0,1256,1258,9,0,0,0,1257,1256,1,0,0,0,1258,1261,1,0,0,0,1259,1260, - 1,0,0,0,1259,1257,1,0,0,0,1260,1263,1,0,0,0,1261,1259,1,0,0,0,1262, - 1255,1,0,0,0,1262,1263,1,0,0,0,1263,1338,1,0,0,0,1264,1268,5,269, - 0,0,1265,1267,9,0,0,0,1266,1265,1,0,0,0,1267,1270,1,0,0,0,1268,1269, - 1,0,0,0,1268,1266,1,0,0,0,1269,1271,1,0,0,0,1270,1268,1,0,0,0,1271, - 1272,5,352,0,0,1272,1338,3,10,5,0,1273,1277,5,269,0,0,1274,1276, - 9,0,0,0,1275,1274,1,0,0,0,1276,1279,1,0,0,0,1277,1278,1,0,0,0,1277, - 1275,1,0,0,0,1278,1338,1,0,0,0,1279,1277,1,0,0,0,1280,1281,5,245, - 0,0,1281,1338,3,8,4,0,1282,1286,5,245,0,0,1283,1285,9,0,0,0,1284, - 1283,1,0,0,0,1285,1288,1,0,0,0,1286,1287,1,0,0,0,1286,1284,1,0,0, - 0,1287,1338,1,0,0,0,1288,1286,1,0,0,0,1289,1290,5,59,0,0,1290,1292, - 5,142,0,0,1291,1293,3,190,95,0,1292,1291,1,0,0,0,1292,1293,1,0,0, - 0,1293,1294,1,0,0,0,1294,1295,3,376,188,0,1295,1297,5,203,0,0,1296, - 1298,5,293,0,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1,0, - 0,0,1299,1302,3,86,43,0,1300,1301,5,332,0,0,1301,1303,3,376,188, - 0,1302,1300,1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1305, - 5,2,0,0,1305,1306,3,248,124,0,1306,1309,5,3,0,0,1307,1308,5,207, - 0,0,1308,1310,3,54,27,0,1309,1307,1,0,0,0,1309,1310,1,0,0,0,1310, - 1338,1,0,0,0,1311,1312,5,96,0,0,1312,1314,5,142,0,0,1313,1315,3, - 192,96,0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1316,1,0,0,0,1316, - 1317,3,376,188,0,1317,1319,5,203,0,0,1318,1320,5,293,0,0,1319,1318, - 1,0,0,0,1319,1320,1,0,0,0,1320,1321,1,0,0,0,1321,1322,3,86,43,0, - 1322,1338,1,0,0,0,1323,1324,5,205,0,0,1324,1326,3,86,43,0,1325,1327, - 3,138,69,0,1326,1325,1,0,0,0,1326,1327,1,0,0,0,1327,1328,1,0,0,0, - 1328,1329,3,354,177,0,1329,1338,1,0,0,0,1330,1334,3,12,6,0,1331, - 1333,9,0,0,0,1332,1331,1,0,0,0,1333,1336,1,0,0,0,1334,1335,1,0,0, - 0,1334,1332,1,0,0,0,1335,1338,1,0,0,0,1336,1334,1,0,0,0,1337,412, - 1,0,0,0,1337,414,1,0,0,0,1337,417,1,0,0,0,1337,422,1,0,0,0,1337, - 428,1,0,0,0,1337,444,1,0,0,0,1337,451,1,0,0,0,1337,457,1,0,0,0,1337, - 466,1,0,0,0,1337,478,1,0,0,0,1337,495,1,0,0,0,1337,515,1,0,0,0,1337, - 532,1,0,0,0,1337,549,1,0,0,0,1337,560,1,0,0,0,1337,567,1,0,0,0,1337, - 576,1,0,0,0,1337,585,1,0,0,0,1337,595,1,0,0,0,1337,607,1,0,0,0,1337, - 618,1,0,0,0,1337,629,1,0,0,0,1337,643,1,0,0,0,1337,654,1,0,0,0,1337, - 669,1,0,0,0,1337,681,1,0,0,0,1337,695,1,0,0,0,1337,705,1,0,0,0,1337, - 721,1,0,0,0,1337,729,1,0,0,0,1337,751,1,0,0,0,1337,760,1,0,0,0,1337, - 766,1,0,0,0,1337,773,1,0,0,0,1337,781,1,0,0,0,1337,790,1,0,0,0,1337, - 796,1,0,0,0,1337,803,1,0,0,0,1337,836,1,0,0,0,1337,858,1,0,0,0,1337, - 866,1,0,0,0,1337,892,1,0,0,0,1337,923,1,0,0,0,1337,932,1,0,0,0,1337, - 947,1,0,0,0,1337,958,1,0,0,0,1337,963,1,0,0,0,1337,975,1,0,0,0,1337, - 987,1,0,0,0,1337,996,1,0,0,0,1337,1004,1,0,0,0,1337,1016,1,0,0,0, - 1337,1022,1,0,0,0,1337,1040,1,0,0,0,1337,1048,1,0,0,0,1337,1051, - 1,0,0,0,1337,1059,1,0,0,0,1337,1072,1,0,0,0,1337,1081,1,0,0,0,1337, - 1087,1,0,0,0,1337,1093,1,0,0,0,1337,1107,1,0,0,0,1337,1112,1,0,0, - 0,1337,1119,1,0,0,0,1337,1126,1,0,0,0,1337,1129,1,0,0,0,1337,1132, - 1,0,0,0,1337,1142,1,0,0,0,1337,1146,1,0,0,0,1337,1162,1,0,0,0,1337, - 1168,1,0,0,0,1337,1170,1,0,0,0,1337,1186,1,0,0,0,1337,1193,1,0,0, - 0,1337,1202,1,0,0,0,1337,1210,1,0,0,0,1337,1218,1,0,0,0,1337,1222, - 1,0,0,0,1337,1226,1,0,0,0,1337,1235,1,0,0,0,1337,1238,1,0,0,0,1337, - 1248,1,0,0,0,1337,1253,1,0,0,0,1337,1264,1,0,0,0,1337,1273,1,0,0, - 0,1337,1280,1,0,0,0,1337,1282,1,0,0,0,1337,1289,1,0,0,0,1337,1311, - 1,0,0,0,1337,1323,1,0,0,0,1337,1330,1,0,0,0,1338,5,1,0,0,0,1339, - 1342,3,388,194,0,1340,1342,5,169,0,0,1341,1339,1,0,0,0,1341,1340, - 1,0,0,0,1342,7,1,0,0,0,1343,1344,3,380,190,0,1344,9,1,0,0,0,1345, - 1346,3,382,191,0,1346,11,1,0,0,0,1347,1348,5,59,0,0,1348,1516,5, - 253,0,0,1349,1350,5,96,0,0,1350,1516,5,253,0,0,1351,1353,5,129,0, - 0,1352,1354,5,253,0,0,1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1516, - 1,0,0,0,1355,1357,5,249,0,0,1356,1358,5,253,0,0,1357,1356,1,0,0, - 0,1357,1358,1,0,0,0,1358,1516,1,0,0,0,1359,1360,5,273,0,0,1360,1516, - 5,129,0,0,1361,1362,5,273,0,0,1362,1364,5,253,0,0,1363,1365,5,129, - 0,0,1364,1363,1,0,0,0,1364,1365,1,0,0,0,1365,1516,1,0,0,0,1366,1367, - 5,273,0,0,1367,1516,5,228,0,0,1368,1369,5,273,0,0,1369,1516,5,254, - 0,0,1370,1371,5,273,0,0,1371,1372,5,62,0,0,1372,1516,5,254,0,0,1373, - 1374,5,107,0,0,1374,1516,5,293,0,0,1375,1376,5,139,0,0,1376,1516, - 5,293,0,0,1377,1378,5,273,0,0,1378,1516,5,54,0,0,1379,1380,5,273, - 0,0,1380,1381,5,59,0,0,1381,1516,5,293,0,0,1382,1383,5,273,0,0,1383, - 1516,5,313,0,0,1384,1385,5,273,0,0,1385,1516,5,143,0,0,1386,1387, - 5,273,0,0,1387,1516,5,172,0,0,1388,1389,5,59,0,0,1389,1516,5,142, - 0,0,1390,1391,5,96,0,0,1391,1516,5,142,0,0,1392,1393,5,11,0,0,1393, - 1516,5,142,0,0,1394,1395,5,171,0,0,1395,1516,5,293,0,0,1396,1397, - 5,171,0,0,1397,1516,5,72,0,0,1398,1399,5,326,0,0,1399,1516,5,293, - 0,0,1400,1401,5,326,0,0,1401,1516,5,72,0,0,1402,1403,5,59,0,0,1403, - 1404,5,298,0,0,1404,1516,5,175,0,0,1405,1406,5,96,0,0,1406,1407, - 5,298,0,0,1407,1516,5,175,0,0,1408,1409,5,11,0,0,1409,1410,5,293, - 0,0,1410,1411,3,86,43,0,1411,1412,5,197,0,0,1412,1413,5,45,0,0,1413, - 1516,1,0,0,0,1414,1415,5,11,0,0,1415,1416,5,293,0,0,1416,1417,3, - 86,43,0,1417,1418,5,45,0,0,1418,1419,5,31,0,0,1419,1516,1,0,0,0, - 1420,1421,5,11,0,0,1421,1422,5,293,0,0,1422,1423,3,86,43,0,1423, - 1424,5,197,0,0,1424,1425,5,279,0,0,1425,1516,1,0,0,0,1426,1427,5, - 11,0,0,1427,1428,5,293,0,0,1428,1429,3,86,43,0,1429,1430,5,275,0, - 0,1430,1431,5,31,0,0,1431,1516,1,0,0,0,1432,1433,5,11,0,0,1433,1434, - 5,293,0,0,1434,1435,3,86,43,0,1435,1436,5,197,0,0,1436,1437,5,275, - 0,0,1437,1516,1,0,0,0,1438,1439,5,11,0,0,1439,1440,5,293,0,0,1440, - 1441,3,86,43,0,1441,1442,5,197,0,0,1442,1443,5,283,0,0,1443,1444, - 5,20,0,0,1444,1445,5,89,0,0,1445,1516,1,0,0,0,1446,1447,5,11,0,0, - 1447,1448,5,293,0,0,1448,1449,3,86,43,0,1449,1450,5,269,0,0,1450, - 1451,5,275,0,0,1451,1452,5,170,0,0,1452,1516,1,0,0,0,1453,1454,5, - 11,0,0,1454,1455,5,293,0,0,1455,1456,3,86,43,0,1456,1457,5,103,0, - 0,1457,1458,5,217,0,0,1458,1516,1,0,0,0,1459,1460,5,11,0,0,1460, - 1461,5,293,0,0,1461,1462,3,86,43,0,1462,1463,5,18,0,0,1463,1464, - 5,217,0,0,1464,1516,1,0,0,0,1465,1466,5,11,0,0,1466,1467,5,293,0, - 0,1467,1468,3,86,43,0,1468,1469,5,320,0,0,1469,1470,5,217,0,0,1470, - 1516,1,0,0,0,1471,1472,5,11,0,0,1472,1473,5,293,0,0,1473,1474,3, - 86,43,0,1474,1475,5,310,0,0,1475,1516,1,0,0,0,1476,1477,5,11,0,0, - 1477,1478,5,293,0,0,1478,1480,3,86,43,0,1479,1481,3,32,16,0,1480, - 1479,1,0,0,0,1480,1481,1,0,0,0,1481,1482,1,0,0,0,1482,1483,5,53, - 0,0,1483,1516,1,0,0,0,1484,1485,5,11,0,0,1485,1486,5,293,0,0,1486, - 1488,3,86,43,0,1487,1489,3,32,16,0,1488,1487,1,0,0,0,1488,1489,1, - 0,0,0,1489,1490,1,0,0,0,1490,1491,5,56,0,0,1491,1516,1,0,0,0,1492, - 1493,5,11,0,0,1493,1494,5,293,0,0,1494,1496,3,86,43,0,1495,1497, - 3,32,16,0,1496,1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0, - 1498,1499,5,269,0,0,1499,1500,5,115,0,0,1500,1516,1,0,0,0,1501,1502, - 5,11,0,0,1502,1503,5,293,0,0,1503,1505,3,86,43,0,1504,1506,3,32, - 16,0,1505,1504,1,0,0,0,1505,1506,1,0,0,0,1506,1507,1,0,0,0,1507, - 1508,5,244,0,0,1508,1509,5,50,0,0,1509,1516,1,0,0,0,1510,1511,5, - 281,0,0,1511,1516,5,312,0,0,1512,1516,5,52,0,0,1513,1516,5,255,0, - 0,1514,1516,5,88,0,0,1515,1347,1,0,0,0,1515,1349,1,0,0,0,1515,1351, - 1,0,0,0,1515,1355,1,0,0,0,1515,1359,1,0,0,0,1515,1361,1,0,0,0,1515, - 1366,1,0,0,0,1515,1368,1,0,0,0,1515,1370,1,0,0,0,1515,1373,1,0,0, - 0,1515,1375,1,0,0,0,1515,1377,1,0,0,0,1515,1379,1,0,0,0,1515,1382, - 1,0,0,0,1515,1384,1,0,0,0,1515,1386,1,0,0,0,1515,1388,1,0,0,0,1515, - 1390,1,0,0,0,1515,1392,1,0,0,0,1515,1394,1,0,0,0,1515,1396,1,0,0, - 0,1515,1398,1,0,0,0,1515,1400,1,0,0,0,1515,1402,1,0,0,0,1515,1405, - 1,0,0,0,1515,1408,1,0,0,0,1515,1414,1,0,0,0,1515,1420,1,0,0,0,1515, - 1426,1,0,0,0,1515,1432,1,0,0,0,1515,1438,1,0,0,0,1515,1446,1,0,0, - 0,1515,1453,1,0,0,0,1515,1459,1,0,0,0,1515,1465,1,0,0,0,1515,1471, - 1,0,0,0,1515,1476,1,0,0,0,1515,1484,1,0,0,0,1515,1492,1,0,0,0,1515, - 1501,1,0,0,0,1515,1510,1,0,0,0,1515,1512,1,0,0,0,1515,1513,1,0,0, - 0,1515,1514,1,0,0,0,1516,13,1,0,0,0,1517,1519,5,59,0,0,1518,1520, - 5,298,0,0,1519,1518,1,0,0,0,1519,1520,1,0,0,0,1520,1522,1,0,0,0, - 1521,1523,5,109,0,0,1522,1521,1,0,0,0,1522,1523,1,0,0,0,1523,1524, - 1,0,0,0,1524,1526,5,293,0,0,1525,1527,3,190,95,0,1526,1525,1,0,0, - 0,1526,1527,1,0,0,0,1527,1528,1,0,0,0,1528,1529,3,84,42,0,1529,15, - 1,0,0,0,1530,1531,5,59,0,0,1531,1533,5,208,0,0,1532,1530,1,0,0,0, - 1532,1533,1,0,0,0,1533,1534,1,0,0,0,1534,1535,5,244,0,0,1535,1536, - 5,293,0,0,1536,1537,3,84,42,0,1537,17,1,0,0,0,1538,1539,5,45,0,0, - 1539,1540,5,31,0,0,1540,1544,3,212,106,0,1541,1542,5,279,0,0,1542, - 1543,5,31,0,0,1543,1545,3,216,108,0,1544,1541,1,0,0,0,1544,1545, - 1,0,0,0,1545,1546,1,0,0,0,1546,1547,5,152,0,0,1547,1548,5,382,0, - 0,1548,1549,5,30,0,0,1549,19,1,0,0,0,1550,1551,5,275,0,0,1551,1552, - 5,31,0,0,1552,1553,3,212,106,0,1553,1556,5,203,0,0,1554,1557,3,66, - 33,0,1555,1557,3,68,34,0,1556,1554,1,0,0,0,1556,1555,1,0,0,0,1557, - 1561,1,0,0,0,1558,1559,5,283,0,0,1559,1560,5,20,0,0,1560,1562,5, - 89,0,0,1561,1558,1,0,0,0,1561,1562,1,0,0,0,1562,21,1,0,0,0,1563, - 1564,5,170,0,0,1564,1565,3,388,194,0,1565,23,1,0,0,0,1566,1567,5, - 51,0,0,1567,1568,3,388,194,0,1568,25,1,0,0,0,1569,1571,3,44,22,0, - 1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1573, - 3,104,52,0,1573,1574,3,100,50,0,1574,27,1,0,0,0,1575,1576,5,147, - 0,0,1576,1578,5,216,0,0,1577,1579,5,293,0,0,1578,1577,1,0,0,0,1578, - 1579,1,0,0,0,1579,1580,1,0,0,0,1580,1585,3,86,43,0,1581,1583,3,32, - 16,0,1582,1584,3,190,95,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584, - 1586,1,0,0,0,1585,1581,1,0,0,0,1585,1586,1,0,0,0,1586,1593,1,0,0, - 0,1587,1588,5,31,0,0,1588,1594,5,189,0,0,1589,1590,5,2,0,0,1590, - 1591,3,94,47,0,1591,1592,5,3,0,0,1592,1594,1,0,0,0,1593,1587,1,0, - 0,0,1593,1589,1,0,0,0,1593,1594,1,0,0,0,1594,1652,1,0,0,0,1595,1596, - 5,147,0,0,1596,1598,5,152,0,0,1597,1599,5,293,0,0,1598,1597,1,0, - 0,0,1598,1599,1,0,0,0,1599,1600,1,0,0,0,1600,1602,3,86,43,0,1601, - 1603,3,32,16,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603,1605,1,0, - 0,0,1604,1606,3,190,95,0,1605,1604,1,0,0,0,1605,1606,1,0,0,0,1606, - 1613,1,0,0,0,1607,1608,5,31,0,0,1608,1614,5,189,0,0,1609,1610,5, - 2,0,0,1610,1611,3,94,47,0,1611,1612,5,3,0,0,1612,1614,1,0,0,0,1613, - 1607,1,0,0,0,1613,1609,1,0,0,0,1613,1614,1,0,0,0,1614,1652,1,0,0, - 0,1615,1616,5,147,0,0,1616,1618,5,152,0,0,1617,1619,5,293,0,0,1618, - 1617,1,0,0,0,1618,1619,1,0,0,0,1619,1620,1,0,0,0,1620,1621,3,86, - 43,0,1621,1622,5,244,0,0,1622,1623,3,138,69,0,1623,1652,1,0,0,0, - 1624,1625,5,147,0,0,1625,1627,5,216,0,0,1626,1628,5,169,0,0,1627, - 1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0,0,1629,1630,5,90, - 0,0,1630,1632,3,388,194,0,1631,1633,3,242,121,0,1632,1631,1,0,0, - 0,1632,1633,1,0,0,0,1633,1635,1,0,0,0,1634,1636,3,70,35,0,1635,1634, - 1,0,0,0,1635,1636,1,0,0,0,1636,1652,1,0,0,0,1637,1638,5,147,0,0, - 1638,1640,5,216,0,0,1639,1641,5,169,0,0,1640,1639,1,0,0,0,1640,1641, - 1,0,0,0,1641,1642,1,0,0,0,1642,1644,5,90,0,0,1643,1645,3,388,194, - 0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645,1646,1,0,0,0,1646,1649, - 3,48,24,0,1647,1648,5,207,0,0,1648,1650,3,54,27,0,1649,1647,1,0, - 0,0,1649,1650,1,0,0,0,1650,1652,1,0,0,0,1651,1575,1,0,0,0,1651,1595, - 1,0,0,0,1651,1615,1,0,0,0,1651,1624,1,0,0,0,1651,1637,1,0,0,0,1652, - 29,1,0,0,0,1653,1655,3,32,16,0,1654,1656,3,22,11,0,1655,1654,1,0, - 0,0,1655,1656,1,0,0,0,1656,31,1,0,0,0,1657,1658,5,217,0,0,1658,1659, - 5,2,0,0,1659,1664,3,34,17,0,1660,1661,5,4,0,0,1661,1663,3,34,17, - 0,1662,1660,1,0,0,0,1663,1666,1,0,0,0,1664,1662,1,0,0,0,1664,1665, - 1,0,0,0,1665,1667,1,0,0,0,1666,1664,1,0,0,0,1667,1668,5,3,0,0,1668, - 33,1,0,0,0,1669,1672,3,376,188,0,1670,1671,5,352,0,0,1671,1673,3, - 288,144,0,1672,1670,1,0,0,0,1672,1673,1,0,0,0,1673,1679,1,0,0,0, - 1674,1675,3,376,188,0,1675,1676,5,352,0,0,1676,1677,5,82,0,0,1677, - 1679,1,0,0,0,1678,1669,1,0,0,0,1678,1674,1,0,0,0,1679,35,1,0,0,0, - 1680,1681,7,11,0,0,1681,37,1,0,0,0,1682,1683,7,12,0,0,1683,39,1, - 0,0,0,1684,1690,3,98,49,0,1685,1690,3,388,194,0,1686,1690,3,290, - 145,0,1687,1690,3,292,146,0,1688,1690,3,294,147,0,1689,1684,1,0, - 0,0,1689,1685,1,0,0,0,1689,1686,1,0,0,0,1689,1687,1,0,0,0,1689,1688, - 1,0,0,0,1690,41,1,0,0,0,1691,1696,3,376,188,0,1692,1693,5,5,0,0, - 1693,1695,3,376,188,0,1694,1692,1,0,0,0,1695,1698,1,0,0,0,1696,1694, - 1,0,0,0,1696,1697,1,0,0,0,1697,43,1,0,0,0,1698,1696,1,0,0,0,1699, - 1700,5,346,0,0,1700,1705,3,46,23,0,1701,1702,5,4,0,0,1702,1704,3, - 46,23,0,1703,1701,1,0,0,0,1704,1707,1,0,0,0,1705,1703,1,0,0,0,1705, - 1706,1,0,0,0,1706,45,1,0,0,0,1707,1705,1,0,0,0,1708,1710,3,372,186, - 0,1709,1711,3,212,106,0,1710,1709,1,0,0,0,1710,1711,1,0,0,0,1711, - 1713,1,0,0,0,1712,1714,5,20,0,0,1713,1712,1,0,0,0,1713,1714,1,0, - 0,0,1714,1715,1,0,0,0,1715,1716,5,2,0,0,1716,1717,3,26,13,0,1717, - 1718,5,3,0,0,1718,47,1,0,0,0,1719,1720,5,332,0,0,1720,1721,3,246, - 123,0,1721,49,1,0,0,0,1722,1723,5,207,0,0,1723,1737,3,62,31,0,1724, - 1725,5,218,0,0,1725,1726,5,31,0,0,1726,1737,3,260,130,0,1727,1737, - 3,20,10,0,1728,1737,3,18,9,0,1729,1737,3,242,121,0,1730,1737,3,70, - 35,0,1731,1737,3,22,11,0,1732,1737,3,24,12,0,1733,1734,5,297,0,0, - 1734,1737,3,54,27,0,1735,1737,3,52,26,0,1736,1722,1,0,0,0,1736,1724, - 1,0,0,0,1736,1727,1,0,0,0,1736,1728,1,0,0,0,1736,1729,1,0,0,0,1736, - 1730,1,0,0,0,1736,1731,1,0,0,0,1736,1732,1,0,0,0,1736,1733,1,0,0, - 0,1736,1735,1,0,0,0,1737,1740,1,0,0,0,1738,1736,1,0,0,0,1738,1739, - 1,0,0,0,1739,51,1,0,0,0,1740,1738,1,0,0,0,1741,1742,5,162,0,0,1742, - 1743,5,382,0,0,1743,53,1,0,0,0,1744,1745,5,2,0,0,1745,1750,3,56, - 28,0,1746,1747,5,4,0,0,1747,1749,3,56,28,0,1748,1746,1,0,0,0,1749, - 1752,1,0,0,0,1750,1748,1,0,0,0,1750,1751,1,0,0,0,1751,1753,1,0,0, - 0,1752,1750,1,0,0,0,1753,1754,5,3,0,0,1754,55,1,0,0,0,1755,1760, - 3,58,29,0,1756,1758,5,352,0,0,1757,1756,1,0,0,0,1757,1758,1,0,0, - 0,1758,1759,1,0,0,0,1759,1761,3,60,30,0,1760,1757,1,0,0,0,1760,1761, - 1,0,0,0,1761,57,1,0,0,0,1762,1767,3,376,188,0,1763,1764,5,5,0,0, - 1764,1766,3,376,188,0,1765,1763,1,0,0,0,1766,1769,1,0,0,0,1767,1765, - 1,0,0,0,1767,1768,1,0,0,0,1768,1772,1,0,0,0,1769,1767,1,0,0,0,1770, - 1772,3,388,194,0,1771,1762,1,0,0,0,1771,1770,1,0,0,0,1772,59,1,0, - 0,0,1773,1778,5,382,0,0,1774,1778,5,384,0,0,1775,1778,3,296,148, - 0,1776,1778,3,388,194,0,1777,1773,1,0,0,0,1777,1774,1,0,0,0,1777, - 1775,1,0,0,0,1777,1776,1,0,0,0,1778,61,1,0,0,0,1779,1780,5,2,0,0, - 1780,1785,3,64,32,0,1781,1782,5,4,0,0,1782,1784,3,64,32,0,1783,1781, - 1,0,0,0,1784,1787,1,0,0,0,1785,1783,1,0,0,0,1785,1786,1,0,0,0,1786, - 1788,1,0,0,0,1787,1785,1,0,0,0,1788,1789,5,3,0,0,1789,63,1,0,0,0, - 1790,1795,3,58,29,0,1791,1793,5,352,0,0,1792,1791,1,0,0,0,1792,1793, - 1,0,0,0,1793,1794,1,0,0,0,1794,1796,3,268,134,0,1795,1792,1,0,0, - 0,1795,1796,1,0,0,0,1796,65,1,0,0,0,1797,1798,5,2,0,0,1798,1803, - 3,288,144,0,1799,1800,5,4,0,0,1800,1802,3,288,144,0,1801,1799,1, - 0,0,0,1802,1805,1,0,0,0,1803,1801,1,0,0,0,1803,1804,1,0,0,0,1804, - 1806,1,0,0,0,1805,1803,1,0,0,0,1806,1807,5,3,0,0,1807,67,1,0,0,0, - 1808,1809,5,2,0,0,1809,1814,3,66,33,0,1810,1811,5,4,0,0,1811,1813, - 3,66,33,0,1812,1810,1,0,0,0,1813,1816,1,0,0,0,1814,1812,1,0,0,0, - 1814,1815,1,0,0,0,1815,1817,1,0,0,0,1816,1814,1,0,0,0,1817,1818, - 5,3,0,0,1818,69,1,0,0,0,1819,1820,5,283,0,0,1820,1821,5,20,0,0,1821, - 1826,3,72,36,0,1822,1823,5,283,0,0,1823,1824,5,31,0,0,1824,1826, - 3,74,37,0,1825,1819,1,0,0,0,1825,1822,1,0,0,0,1826,71,1,0,0,0,1827, - 1828,5,146,0,0,1828,1829,3,388,194,0,1829,1830,5,212,0,0,1830,1831, - 3,388,194,0,1831,1834,1,0,0,0,1832,1834,3,376,188,0,1833,1827,1, - 0,0,0,1833,1832,1,0,0,0,1834,73,1,0,0,0,1835,1839,3,388,194,0,1836, - 1837,5,346,0,0,1837,1838,5,267,0,0,1838,1840,3,54,27,0,1839,1836, - 1,0,0,0,1839,1840,1,0,0,0,1840,75,1,0,0,0,1841,1842,3,376,188,0, - 1842,1843,3,388,194,0,1843,77,1,0,0,0,1844,1845,3,28,14,0,1845,1846, - 3,26,13,0,1846,1901,1,0,0,0,1847,1849,3,146,73,0,1848,1850,3,102, - 51,0,1849,1848,1,0,0,0,1850,1851,1,0,0,0,1851,1849,1,0,0,0,1851, - 1852,1,0,0,0,1852,1901,1,0,0,0,1853,1854,5,84,0,0,1854,1855,5,123, - 0,0,1855,1856,3,86,43,0,1856,1858,3,240,120,0,1857,1859,3,138,69, - 0,1858,1857,1,0,0,0,1858,1859,1,0,0,0,1859,1901,1,0,0,0,1860,1861, - 5,329,0,0,1861,1862,3,86,43,0,1862,1863,3,240,120,0,1863,1865,3, - 120,60,0,1864,1866,3,138,69,0,1865,1864,1,0,0,0,1865,1866,1,0,0, - 0,1866,1901,1,0,0,0,1867,1868,5,179,0,0,1868,1869,5,152,0,0,1869, - 1870,3,86,43,0,1870,1871,3,240,120,0,1871,1877,5,332,0,0,1872,1878, - 3,98,49,0,1873,1874,5,2,0,0,1874,1875,3,26,13,0,1875,1876,5,3,0, - 0,1876,1878,1,0,0,0,1877,1872,1,0,0,0,1877,1873,1,0,0,0,1878,1879, - 1,0,0,0,1879,1880,3,240,120,0,1880,1881,5,203,0,0,1881,1885,3,276, - 138,0,1882,1884,3,122,61,0,1883,1882,1,0,0,0,1884,1887,1,0,0,0,1885, - 1883,1,0,0,0,1885,1886,1,0,0,0,1886,1891,1,0,0,0,1887,1885,1,0,0, - 0,1888,1890,3,124,62,0,1889,1888,1,0,0,0,1890,1893,1,0,0,0,1891, - 1889,1,0,0,0,1891,1892,1,0,0,0,1892,1897,1,0,0,0,1893,1891,1,0,0, - 0,1894,1896,3,126,63,0,1895,1894,1,0,0,0,1896,1899,1,0,0,0,1897, - 1895,1,0,0,0,1897,1898,1,0,0,0,1898,1901,1,0,0,0,1899,1897,1,0,0, - 0,1900,1844,1,0,0,0,1900,1847,1,0,0,0,1900,1853,1,0,0,0,1900,1860, - 1,0,0,0,1900,1867,1,0,0,0,1901,79,1,0,0,0,1902,1903,3,98,49,0,1903, - 81,1,0,0,0,1904,1905,3,98,49,0,1905,83,1,0,0,0,1906,1907,3,252,126, - 0,1907,85,1,0,0,0,1908,1909,3,252,126,0,1909,87,1,0,0,0,1910,1911, - 3,254,127,0,1911,89,1,0,0,0,1912,1913,3,254,127,0,1913,91,1,0,0, - 0,1914,1917,3,246,123,0,1915,1917,4,46,0,0,1916,1914,1,0,0,0,1916, - 1915,1,0,0,0,1917,93,1,0,0,0,1918,1923,3,92,46,0,1919,1920,5,4,0, - 0,1920,1922,3,92,46,0,1921,1919,1,0,0,0,1922,1925,1,0,0,0,1923,1921, - 1,0,0,0,1923,1924,1,0,0,0,1924,95,1,0,0,0,1925,1923,1,0,0,0,1926, - 1927,3,372,186,0,1927,97,1,0,0,0,1928,1929,5,136,0,0,1929,1930,5, - 2,0,0,1930,1931,3,268,134,0,1931,1932,5,3,0,0,1932,1935,1,0,0,0, - 1933,1935,3,246,123,0,1934,1928,1,0,0,0,1934,1933,1,0,0,0,1935,99, - 1,0,0,0,1936,1937,5,209,0,0,1937,1938,5,31,0,0,1938,1943,3,108,54, - 0,1939,1940,5,4,0,0,1940,1942,3,108,54,0,1941,1939,1,0,0,0,1942, - 1945,1,0,0,0,1943,1941,1,0,0,0,1943,1944,1,0,0,0,1944,1947,1,0,0, - 0,1945,1943,1,0,0,0,1946,1936,1,0,0,0,1946,1947,1,0,0,0,1947,1958, - 1,0,0,0,1948,1949,5,44,0,0,1949,1950,5,31,0,0,1950,1955,3,268,134, - 0,1951,1952,5,4,0,0,1952,1954,3,268,134,0,1953,1951,1,0,0,0,1954, + 1,105,1,105,1,105,1,105,1,105,3,105,2740,8,105,3,105,2742,8,105, + 1,105,3,105,2745,8,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107, + 5,107,2754,8,107,10,107,12,107,2757,9,107,1,108,1,108,1,108,1,108, + 5,108,2763,8,108,10,108,12,108,2766,9,108,1,108,1,108,1,109,1,109, + 3,109,2772,8,109,1,110,1,110,1,110,1,110,5,110,2778,8,110,10,110, + 12,110,2781,9,110,1,110,1,110,1,111,1,111,3,111,2787,8,111,1,112, + 1,112,1,112,3,112,2792,8,112,1,112,3,112,2795,8,112,1,112,3,112, + 2798,8,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,2806,8,112, + 1,112,1,112,1,112,1,112,1,112,1,112,3,112,2814,8,112,1,112,1,112, + 1,112,1,112,1,112,1,112,3,112,2822,8,112,1,113,1,113,1,114,1,114, + 1,114,1,114,5,114,2830,8,114,10,114,12,114,2833,9,114,1,115,1,115, + 1,115,3,115,2838,8,115,1,115,1,115,1,115,1,115,1,115,3,115,2845, + 8,115,1,115,1,115,1,115,1,115,1,115,3,115,2852,8,115,3,115,2854, + 8,115,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116, + 2865,8,116,10,116,12,116,2868,9,116,1,116,1,116,1,116,3,116,2873, + 8,116,3,116,2875,8,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116, + 2883,8,116,10,116,12,116,2886,9,116,1,116,1,116,1,116,3,116,2891, + 8,116,3,116,2893,8,116,1,117,1,117,1,117,1,117,1,118,1,118,3,118, + 2901,8,118,1,119,1,119,3,119,2905,8,119,1,120,1,120,1,120,1,121, + 1,121,1,121,1,121,1,121,5,121,2915,8,121,10,121,12,121,2918,9,121, + 3,121,2920,8,121,1,121,1,121,1,122,3,122,2925,8,122,1,122,1,122, + 3,122,2929,8,122,3,122,2931,8,122,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,3,123,2940,8,123,1,123,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,1,123,3,123,2952,8,123,3,123,2954,8,123,1,123, + 1,123,1,123,1,123,1,123,3,123,2961,8,123,1,123,1,123,1,123,1,123, + 1,123,3,123,2968,8,123,1,123,1,123,1,123,1,123,3,123,2974,8,123, + 1,123,1,123,1,123,1,123,3,123,2980,8,123,3,123,2982,8,123,1,124, + 1,124,1,124,5,124,2987,8,124,10,124,12,124,2990,9,124,1,125,1,125, + 1,125,5,125,2995,8,125,10,125,12,125,2998,9,125,1,126,1,126,1,126, + 5,126,3003,8,126,10,126,12,126,3006,9,126,1,127,1,127,1,127,3,127, + 3011,8,127,1,128,1,128,1,128,3,128,3016,8,128,1,128,1,128,1,129, + 1,129,1,129,3,129,3023,8,129,1,129,1,129,1,130,1,130,1,131,1,131, + 1,132,1,132,1,132,5,132,3034,8,132,10,132,12,132,3037,9,132,1,132, + 1,132,1,133,1,133,1,133,3,133,3044,8,133,1,133,3,133,3047,8,133, + 1,133,1,133,3,133,3051,8,133,3,133,3053,8,133,1,134,1,134,1,134, + 5,134,3058,8,134,10,134,12,134,3061,9,134,1,135,1,135,1,136,1,136, + 1,136,1,136,5,136,3069,8,136,10,136,12,136,3072,9,136,1,136,1,136, + 1,137,1,137,3,137,3078,8,137,1,138,1,138,1,138,1,138,1,138,1,138, + 5,138,3086,8,138,10,138,12,138,3089,9,138,1,138,1,138,3,138,3093, + 8,138,1,139,1,139,3,139,3097,8,139,1,140,1,140,1,141,1,141,1,141, + 1,141,1,142,1,142,3,142,3107,8,142,1,143,1,143,1,143,5,143,3112, + 8,143,10,143,12,143,3115,9,143,1,144,1,144,1,144,1,144,1,144,1,144, + 1,144,1,144,1,144,1,144,3,144,3127,8,144,3,144,3129,8,144,1,144, + 1,144,1,144,1,144,1,144,1,144,5,144,3137,8,144,10,144,12,144,3140, + 9,144,1,145,3,145,3143,8,145,1,145,1,145,1,145,1,145,1,145,1,145, + 3,145,3151,8,145,1,145,1,145,1,145,1,145,1,145,5,145,3158,8,145, + 10,145,12,145,3161,9,145,1,145,1,145,1,145,3,145,3166,8,145,1,145, + 1,145,1,145,1,145,1,145,1,145,3,145,3174,8,145,1,145,1,145,1,145, + 3,145,3179,8,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 5,145,3189,8,145,10,145,12,145,3192,9,145,1,145,1,145,3,145,3196, + 8,145,1,145,3,145,3199,8,145,1,145,1,145,1,145,1,145,3,145,3205, + 8,145,1,145,1,145,3,145,3209,8,145,1,145,1,145,1,145,3,145,3214, + 8,145,1,145,1,145,1,145,3,145,3219,8,145,1,145,1,145,1,145,3,145, + 3224,8,145,1,146,1,146,1,146,1,146,3,146,3230,8,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,5,146,3251,8,146,10,146,12,146, + 3254,9,146,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,148,3,148, + 3264,8,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,3,148,3276,8,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,4,148,3286,8,148,11,148,12,148,3287,1,148,1,148,3,148,3292, + 8,148,1,148,1,148,1,148,1,148,1,148,4,148,3299,8,148,11,148,12,148, + 3300,1,148,1,148,3,148,3305,8,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,5,148,3321, + 8,148,10,148,12,148,3324,9,148,3,148,3326,8,148,1,148,1,148,1,148, + 1,148,1,148,1,148,3,148,3334,8,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,3,148,3343,8,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,3,148,3352,8,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,4,148,3373,8,148,11,148,12,148,3374,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,3,148, + 3391,8,148,1,148,1,148,1,148,5,148,3396,8,148,10,148,12,148,3399, + 9,148,3,148,3401,8,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 3,148,3410,8,148,1,148,1,148,3,148,3414,8,148,1,148,1,148,3,148, + 3418,8,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,4,148, + 3428,8,148,11,148,12,148,3429,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,3,148,3455,8,148,1,148,1,148, + 1,148,1,148,1,148,3,148,3462,8,148,1,148,3,148,3465,8,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,3,148,3480,8,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,3,148,3501,8,148,1,148,1,148,3,148,3505,8,148,3,148,3507,8, + 148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,5,148,3517,8, + 148,10,148,12,148,3520,9,148,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,3,149,3529,8,149,1,150,1,150,1,150,1,150,1,150,1,150,1,150, + 1,150,1,150,1,150,1,150,4,150,3542,8,150,11,150,12,150,3543,3,150, + 3546,8,150,1,151,1,151,1,152,1,152,1,153,1,153,1,154,1,154,1,155, + 1,155,1,155,3,155,3559,8,155,1,156,1,156,3,156,3563,8,156,1,157, + 1,157,1,157,4,157,3568,8,157,11,157,12,157,3569,1,158,1,158,1,158, + 3,158,3575,8,158,1,159,1,159,1,159,1,159,1,159,1,160,3,160,3583, + 8,160,1,160,1,160,1,160,3,160,3588,8,160,1,161,1,161,1,162,1,162, + 1,163,1,163,1,163,3,163,3597,8,163,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,164,1,164,1,164,3,164,3629,8,164,1,165,1,165,1,165,1,165,1,165, + 1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,3,165, + 3646,8,165,1,165,1,165,3,165,3650,8,165,1,165,1,165,1,165,1,165, + 3,165,3656,8,165,1,165,1,165,1,165,1,165,3,165,3662,8,165,1,165, + 1,165,1,165,1,165,1,165,5,165,3669,8,165,10,165,12,165,3672,9,165, + 1,165,3,165,3675,8,165,3,165,3677,8,165,1,166,1,166,1,166,5,166, + 3682,8,166,10,166,12,166,3685,9,166,1,167,1,167,1,167,5,167,3690, + 8,167,10,167,12,167,3693,9,167,1,168,1,168,1,168,5,168,3698,8,168, + 10,168,12,168,3701,9,168,1,169,1,169,1,169,5,169,3706,8,169,10,169, + 12,169,3709,9,169,1,170,1,170,1,170,1,170,1,170,3,170,3716,8,170, + 1,171,1,171,1,171,1,172,1,172,1,172,1,173,1,173,1,173,5,173,3727, + 8,173,10,173,12,173,3730,9,173,1,174,1,174,1,174,1,174,3,174,3736, + 8,174,1,174,3,174,3739,8,174,1,175,1,175,1,175,5,175,3744,8,175, + 10,175,12,175,3747,9,175,1,176,1,176,1,176,5,176,3752,8,176,10,176, + 12,176,3755,9,176,1,177,1,177,1,177,1,177,1,177,3,177,3762,8,177, + 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179,1,179,5,179, + 3774,8,179,10,179,12,179,3777,9,179,1,180,1,180,3,180,3781,8,180, + 1,180,1,180,1,180,3,180,3786,8,180,1,180,3,180,3789,8,180,1,181, + 1,181,1,181,1,181,1,181,1,182,1,182,1,182,1,182,5,182,3800,8,182, + 10,182,12,182,3803,9,182,1,183,1,183,1,183,1,183,1,184,1,184,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,5,185,3824,8,185,10,185,12,185,3827,9,185,1,185,1,185,1,185, + 1,185,1,185,5,185,3834,8,185,10,185,12,185,3837,9,185,3,185,3839, + 8,185,1,185,1,185,1,185,1,185,1,185,5,185,3846,8,185,10,185,12,185, + 3849,9,185,3,185,3851,8,185,3,185,3853,8,185,1,185,3,185,3856,8, + 185,1,185,3,185,3859,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,3,186, + 3877,8,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,3,187,3886, + 8,187,1,188,1,188,1,188,5,188,3891,8,188,10,188,12,188,3894,9,188, + 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,3,189,3905, + 8,189,1,190,1,190,1,191,1,191,1,191,5,191,3912,8,191,10,191,12,191, + 3915,9,191,1,192,1,192,1,192,1,193,1,193,4,193,3922,8,193,11,193, + 12,193,3923,1,193,3,193,3927,8,193,1,194,1,194,3,194,3931,8,194, + 1,195,1,195,1,195,1,195,3,195,3937,8,195,1,196,1,196,1,197,1,197, + 1,198,3,198,3944,8,198,1,198,1,198,3,198,3948,8,198,1,198,1,198, + 3,198,3952,8,198,1,198,1,198,3,198,3956,8,198,1,198,1,198,3,198, + 3960,8,198,1,198,1,198,3,198,3964,8,198,1,198,1,198,3,198,3968,8, + 198,1,198,1,198,3,198,3972,8,198,1,198,1,198,3,198,3976,8,198,1, + 198,1,198,3,198,3980,8,198,1,198,3,198,3983,8,198,1,199,1,199,1, + 199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,3,199,3996,8, + 199,1,200,1,200,1,201,1,201,3,201,4002,8,201,1,202,1,202,3,202,4006, + 8,202,1,203,1,203,1,204,1,204,1,205,1,205,1,205,9,1149,1219,1227, + 1244,1271,1280,1289,1298,1346,4,104,288,292,296,206,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,0,64,2,0,78,78,229, + 229,2,0,34,34,247,247,2,0,123,123,140,140,2,0,11,11,39,39,2,0,91, + 91,98,98,5,0,46,46,58,58,108,108,122,122,173,173,1,0,86,87,2,0,108, + 108,122,122,3,0,8,8,96,96,289,289,2,0,8,8,167,167,1,0,335,336,3, + 0,72,72,190,190,261,261,3,0,73,73,191,191,262,262,4,0,102,102,148, + 148,270,270,323,323,3,0,102,102,270,270,323,323,2,0,21,21,86,86, + 2,0,116,116,157,157,3,0,10,10,290,290,331,331,2,0,292,292,337,337, + 2,0,291,291,303,303,2,0,61,61,256,256,2,0,104,104,141,141,2,0,10, + 10,92,92,2,0,382,382,384,384,2,0,93,93,217,217,2,0,209,209,278,278, + 2,0,197,197,360,360,1,0,251,252,1,0,163,164,3,0,10,10,16,16,277, + 277,3,0,111,111,316,316,325,325,2,0,361,362,366,366,2,0,94,94,363, + 365,2,0,361,362,369,369,11,0,67,67,69,69,134,134,180,180,182,182, + 184,184,186,186,231,231,259,259,341,341,348,348,4,0,63,63,65,66, + 268,268,331,331,2,0,74,75,306,306,3,0,76,77,302,302,307,307,2,0, + 36,36,318,318,2,0,138,138,246,246,1,0,287,288,2,0,4,4,123,123,2, + 0,4,4,119,119,3,0,28,28,160,160,311,311,1,0,220,221,1,0,352,359, + 2,0,94,94,361,370,4,0,14,14,140,140,197,197,208,208,2,0,111,111, + 316,316,1,0,361,362,7,0,67,68,134,135,180,187,192,193,259,260,341, + 342,348,349,6,0,67,67,134,134,184,184,186,186,259,259,348,348,2, + 0,186,186,348,348,4,0,67,67,134,134,184,184,259,259,3,0,134,134, + 184,184,259,259,2,0,82,82,352,352,2,0,118,118,226,226,2,0,378,378, + 389,389,1,0,383,384,2,0,96,96,269,269,1,0,377,378,52,0,8,9,11,13, + 15,15,17,19,21,22,24,27,29,34,37,41,43,46,48,48,50,56,58,58,61,62, + 67,91,93,96,98,98,101,101,103,110,113,113,115,118,121,122,125,128, + 131,131,133,139,141,143,145,147,149,151,154,154,156,157,159,159, + 163,193,195,195,199,201,205,207,210,210,212,213,215,219,222,226, + 228,238,240,249,251,262,264,267,269,276,278,292,294,299,302,308, + 310,310,312,322,326,330,333,342,345,345,348,351,16,0,15,15,60,60, + 102,102,124,124,144,144,148,148,155,155,158,158,161,161,194,194, + 203,203,250,250,264,264,270,270,323,323,332,332,19,0,8,14,16,59, + 61,101,103,122,125,143,145,147,149,154,156,157,159,160,162,193,195, + 195,197,202,204,249,251,262,265,269,271,292,294,322,324,331,333, + 351,4626,0,415,1,0,0,0,2,420,1,0,0,0,4,1349,1,0,0,0,6,1353,1,0,0, + 0,8,1355,1,0,0,0,10,1357,1,0,0,0,12,1527,1,0,0,0,14,1529,1,0,0,0, + 16,1544,1,0,0,0,18,1550,1,0,0,0,20,1562,1,0,0,0,22,1575,1,0,0,0, + 24,1578,1,0,0,0,26,1582,1,0,0,0,28,1663,1,0,0,0,30,1665,1,0,0,0, + 32,1669,1,0,0,0,34,1690,1,0,0,0,36,1692,1,0,0,0,38,1694,1,0,0,0, + 40,1701,1,0,0,0,42,1703,1,0,0,0,44,1711,1,0,0,0,46,1720,1,0,0,0, + 48,1731,1,0,0,0,50,1750,1,0,0,0,52,1753,1,0,0,0,54,1756,1,0,0,0, + 56,1767,1,0,0,0,58,1783,1,0,0,0,60,1789,1,0,0,0,62,1791,1,0,0,0, + 64,1802,1,0,0,0,66,1809,1,0,0,0,68,1820,1,0,0,0,70,1837,1,0,0,0, + 72,1845,1,0,0,0,74,1847,1,0,0,0,76,1853,1,0,0,0,78,1912,1,0,0,0, + 80,1914,1,0,0,0,82,1916,1,0,0,0,84,1918,1,0,0,0,86,1920,1,0,0,0, + 88,1922,1,0,0,0,90,1924,1,0,0,0,92,1928,1,0,0,0,94,1930,1,0,0,0, + 96,1938,1,0,0,0,98,1946,1,0,0,0,100,1958,1,0,0,0,102,2010,1,0,0, + 0,104,2013,1,0,0,0,106,2058,1,0,0,0,108,2062,1,0,0,0,110,2071,1, + 0,0,0,112,2104,1,0,0,0,114,2150,1,0,0,0,116,2171,1,0,0,0,118,2203, + 1,0,0,0,120,2215,1,0,0,0,122,2218,1,0,0,0,124,2227,1,0,0,0,126,2241, + 1,0,0,0,128,2260,1,0,0,0,130,2280,1,0,0,0,132,2286,1,0,0,0,134,2288, + 1,0,0,0,136,2296,1,0,0,0,138,2300,1,0,0,0,140,2303,1,0,0,0,142,2306, + 1,0,0,0,144,2332,1,0,0,0,146,2334,1,0,0,0,148,2355,1,0,0,0,150,2371, + 1,0,0,0,152,2412,1,0,0,0,154,2417,1,0,0,0,156,2444,1,0,0,0,158,2448, + 1,0,0,0,160,2470,1,0,0,0,162,2472,1,0,0,0,164,2502,1,0,0,0,166,2504, + 1,0,0,0,168,2511,1,0,0,0,170,2524,1,0,0,0,172,2529,1,0,0,0,174,2531, + 1,0,0,0,176,2546,1,0,0,0,178,2570,1,0,0,0,180,2583,1,0,0,0,182,2585, + 1,0,0,0,184,2587,1,0,0,0,186,2591,1,0,0,0,188,2594,1,0,0,0,190,2598, + 1,0,0,0,192,2602,1,0,0,0,194,2605,1,0,0,0,196,2637,1,0,0,0,198,2650, + 1,0,0,0,200,2655,1,0,0,0,202,2674,1,0,0,0,204,2700,1,0,0,0,206,2706, + 1,0,0,0,208,2708,1,0,0,0,210,2744,1,0,0,0,212,2746,1,0,0,0,214,2750, + 1,0,0,0,216,2758,1,0,0,0,218,2769,1,0,0,0,220,2773,1,0,0,0,222,2784, + 1,0,0,0,224,2821,1,0,0,0,226,2823,1,0,0,0,228,2825,1,0,0,0,230,2853, + 1,0,0,0,232,2874,1,0,0,0,234,2894,1,0,0,0,236,2900,1,0,0,0,238,2904, + 1,0,0,0,240,2906,1,0,0,0,242,2909,1,0,0,0,244,2930,1,0,0,0,246,2981, + 1,0,0,0,248,2983,1,0,0,0,250,2991,1,0,0,0,252,2999,1,0,0,0,254,3007, + 1,0,0,0,256,3015,1,0,0,0,258,3022,1,0,0,0,260,3026,1,0,0,0,262,3028, + 1,0,0,0,264,3035,1,0,0,0,266,3043,1,0,0,0,268,3054,1,0,0,0,270,3062, + 1,0,0,0,272,3064,1,0,0,0,274,3077,1,0,0,0,276,3092,1,0,0,0,278,3096, + 1,0,0,0,280,3098,1,0,0,0,282,3100,1,0,0,0,284,3106,1,0,0,0,286,3108, + 1,0,0,0,288,3128,1,0,0,0,290,3223,1,0,0,0,292,3229,1,0,0,0,294,3255, + 1,0,0,0,296,3506,1,0,0,0,298,3528,1,0,0,0,300,3545,1,0,0,0,302,3547, + 1,0,0,0,304,3549,1,0,0,0,306,3551,1,0,0,0,308,3553,1,0,0,0,310,3555, + 1,0,0,0,312,3560,1,0,0,0,314,3567,1,0,0,0,316,3571,1,0,0,0,318,3576, + 1,0,0,0,320,3582,1,0,0,0,322,3589,1,0,0,0,324,3591,1,0,0,0,326,3596, + 1,0,0,0,328,3628,1,0,0,0,330,3676,1,0,0,0,332,3678,1,0,0,0,334,3686, + 1,0,0,0,336,3694,1,0,0,0,338,3702,1,0,0,0,340,3715,1,0,0,0,342,3717, + 1,0,0,0,344,3720,1,0,0,0,346,3723,1,0,0,0,348,3731,1,0,0,0,350,3740, + 1,0,0,0,352,3748,1,0,0,0,354,3761,1,0,0,0,356,3763,1,0,0,0,358,3770, + 1,0,0,0,360,3778,1,0,0,0,362,3790,1,0,0,0,364,3795,1,0,0,0,366,3804, + 1,0,0,0,368,3808,1,0,0,0,370,3858,1,0,0,0,372,3876,1,0,0,0,374,3885, + 1,0,0,0,376,3887,1,0,0,0,378,3904,1,0,0,0,380,3906,1,0,0,0,382,3908, + 1,0,0,0,384,3916,1,0,0,0,386,3926,1,0,0,0,388,3930,1,0,0,0,390,3936, + 1,0,0,0,392,3938,1,0,0,0,394,3940,1,0,0,0,396,3982,1,0,0,0,398,3995, + 1,0,0,0,400,3997,1,0,0,0,402,4001,1,0,0,0,404,4005,1,0,0,0,406,4007, + 1,0,0,0,408,4009,1,0,0,0,410,4011,1,0,0,0,412,414,3,2,1,0,413,412, + 1,0,0,0,414,417,1,0,0,0,415,413,1,0,0,0,415,416,1,0,0,0,416,418, + 1,0,0,0,417,415,1,0,0,0,418,419,5,0,0,1,419,1,1,0,0,0,420,422,3, + 4,2,0,421,423,5,1,0,0,422,421,1,0,0,0,422,423,1,0,0,0,423,3,1,0, + 0,0,424,1350,3,26,13,0,425,427,3,44,22,0,426,425,1,0,0,0,426,427, + 1,0,0,0,427,428,1,0,0,0,428,1350,3,78,39,0,429,431,5,330,0,0,430, + 432,3,36,18,0,431,430,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433, + 1350,3,80,40,0,434,435,5,269,0,0,435,438,5,37,0,0,436,439,3,388, + 194,0,437,439,3,400,200,0,438,436,1,0,0,0,438,437,1,0,0,0,439,1350, + 1,0,0,0,440,441,5,59,0,0,441,443,3,36,18,0,442,444,3,190,95,0,443, + 442,1,0,0,0,443,444,1,0,0,0,444,445,1,0,0,0,445,453,3,82,41,0,446, + 452,3,24,12,0,447,452,3,22,11,0,448,449,5,346,0,0,449,450,7,0,0, + 0,450,452,3,54,27,0,451,446,1,0,0,0,451,447,1,0,0,0,451,448,1,0, + 0,0,452,455,1,0,0,0,453,451,1,0,0,0,453,454,1,0,0,0,454,1350,1,0, + 0,0,455,453,1,0,0,0,456,457,5,11,0,0,457,458,3,36,18,0,458,459,3, + 80,40,0,459,460,5,269,0,0,460,461,7,0,0,0,461,462,3,54,27,0,462, + 1350,1,0,0,0,463,464,5,11,0,0,464,465,3,36,18,0,465,466,3,80,40, + 0,466,467,5,269,0,0,467,468,3,22,11,0,468,1350,1,0,0,0,469,470,5, + 96,0,0,470,472,3,36,18,0,471,473,3,192,96,0,472,471,1,0,0,0,472, + 473,1,0,0,0,473,474,1,0,0,0,474,476,3,80,40,0,475,477,7,1,0,0,476, + 475,1,0,0,0,476,477,1,0,0,0,477,1350,1,0,0,0,478,479,5,273,0,0,479, + 482,3,38,19,0,480,481,7,2,0,0,481,483,3,250,125,0,482,480,1,0,0, + 0,482,483,1,0,0,0,483,488,1,0,0,0,484,486,5,163,0,0,485,484,1,0, + 0,0,485,486,1,0,0,0,486,487,1,0,0,0,487,489,3,400,200,0,488,485, + 1,0,0,0,488,489,1,0,0,0,489,1350,1,0,0,0,490,495,3,14,7,0,491,492, + 5,2,0,0,492,493,3,350,175,0,493,494,5,3,0,0,494,496,1,0,0,0,495, + 491,1,0,0,0,495,496,1,0,0,0,496,498,1,0,0,0,497,499,3,48,24,0,498, + 497,1,0,0,0,498,499,1,0,0,0,499,500,1,0,0,0,500,505,3,50,25,0,501, + 503,5,20,0,0,502,501,1,0,0,0,502,503,1,0,0,0,503,504,1,0,0,0,504, + 506,3,26,13,0,505,502,1,0,0,0,505,506,1,0,0,0,506,1350,1,0,0,0,507, + 508,5,59,0,0,508,510,5,293,0,0,509,511,3,190,95,0,510,509,1,0,0, + 0,510,511,1,0,0,0,511,512,1,0,0,0,512,513,3,84,42,0,513,514,5,163, + 0,0,514,524,3,86,43,0,515,523,3,48,24,0,516,523,3,246,123,0,517, + 523,3,70,35,0,518,523,3,22,11,0,519,520,5,297,0,0,520,523,3,54,27, + 0,521,523,3,52,26,0,522,515,1,0,0,0,522,516,1,0,0,0,522,517,1,0, + 0,0,522,518,1,0,0,0,522,519,1,0,0,0,522,521,1,0,0,0,523,526,1,0, + 0,0,524,522,1,0,0,0,524,525,1,0,0,0,525,1350,1,0,0,0,526,524,1,0, + 0,0,527,532,3,16,8,0,528,529,5,2,0,0,529,530,3,350,175,0,530,531, + 5,3,0,0,531,533,1,0,0,0,532,528,1,0,0,0,532,533,1,0,0,0,533,535, + 1,0,0,0,534,536,3,48,24,0,535,534,1,0,0,0,535,536,1,0,0,0,536,537, + 1,0,0,0,537,542,3,50,25,0,538,540,5,20,0,0,539,538,1,0,0,0,539,540, + 1,0,0,0,540,541,1,0,0,0,541,543,3,26,13,0,542,539,1,0,0,0,542,543, + 1,0,0,0,543,1350,1,0,0,0,544,545,5,13,0,0,545,546,5,293,0,0,546, + 548,3,86,43,0,547,549,3,32,16,0,548,547,1,0,0,0,548,549,1,0,0,0, + 549,550,1,0,0,0,550,551,5,55,0,0,551,559,5,282,0,0,552,560,5,196, + 0,0,553,554,5,119,0,0,554,555,5,50,0,0,555,560,3,94,47,0,556,557, + 5,119,0,0,557,558,5,10,0,0,558,560,5,50,0,0,559,552,1,0,0,0,559, + 553,1,0,0,0,559,556,1,0,0,0,559,560,1,0,0,0,560,1350,1,0,0,0,561, + 562,5,13,0,0,562,565,5,294,0,0,563,564,7,2,0,0,564,566,3,80,40,0, + 565,563,1,0,0,0,565,566,1,0,0,0,566,567,1,0,0,0,567,568,5,55,0,0, + 568,570,5,282,0,0,569,571,5,196,0,0,570,569,1,0,0,0,570,571,1,0, + 0,0,571,1350,1,0,0,0,572,573,5,11,0,0,573,574,5,293,0,0,574,575, + 3,86,43,0,575,576,5,8,0,0,576,577,5,49,0,0,577,578,3,334,167,0,578, + 1350,1,0,0,0,579,580,5,11,0,0,580,581,5,293,0,0,581,582,3,86,43, + 0,582,583,5,8,0,0,583,584,5,50,0,0,584,585,5,2,0,0,585,586,3,332, + 166,0,586,587,5,3,0,0,587,1350,1,0,0,0,588,589,5,11,0,0,589,590, + 5,293,0,0,590,591,3,86,43,0,591,592,5,241,0,0,592,593,5,49,0,0,593, + 594,3,92,46,0,594,595,5,309,0,0,595,596,3,96,48,0,596,1350,1,0,0, + 0,597,598,5,11,0,0,598,599,5,293,0,0,599,600,3,86,43,0,600,601,5, + 96,0,0,601,603,5,49,0,0,602,604,3,192,96,0,603,602,1,0,0,0,603,604, + 1,0,0,0,604,605,1,0,0,0,605,606,3,92,46,0,606,1350,1,0,0,0,607,608, + 5,11,0,0,608,609,5,293,0,0,609,610,3,86,43,0,610,611,5,96,0,0,611, + 613,5,50,0,0,612,614,3,192,96,0,613,612,1,0,0,0,613,614,1,0,0,0, + 614,615,1,0,0,0,615,616,5,2,0,0,616,617,3,94,47,0,617,618,5,3,0, + 0,618,1350,1,0,0,0,619,624,5,11,0,0,620,621,5,293,0,0,621,625,3, + 86,43,0,622,623,5,338,0,0,623,625,3,90,45,0,624,620,1,0,0,0,624, + 622,1,0,0,0,625,626,1,0,0,0,626,627,5,241,0,0,627,628,5,309,0,0, + 628,629,3,250,125,0,629,1350,1,0,0,0,630,635,5,11,0,0,631,632,5, + 293,0,0,632,636,3,86,43,0,633,634,5,338,0,0,634,636,3,90,45,0,635, + 631,1,0,0,0,635,633,1,0,0,0,636,637,1,0,0,0,637,638,5,269,0,0,638, + 639,5,297,0,0,639,640,3,54,27,0,640,1350,1,0,0,0,641,646,5,11,0, + 0,642,643,5,293,0,0,643,647,3,86,43,0,644,645,5,338,0,0,645,647, + 3,90,45,0,646,642,1,0,0,0,646,644,1,0,0,0,647,648,1,0,0,0,648,649, + 5,328,0,0,649,651,5,297,0,0,650,652,3,192,96,0,651,650,1,0,0,0,651, + 652,1,0,0,0,652,653,1,0,0,0,653,654,3,54,27,0,654,1350,1,0,0,0,655, + 656,5,11,0,0,656,657,5,293,0,0,657,658,3,86,43,0,658,660,7,3,0,0, + 659,661,5,49,0,0,660,659,1,0,0,0,660,661,1,0,0,0,661,662,1,0,0,0, + 662,664,3,92,46,0,663,665,3,398,199,0,664,663,1,0,0,0,664,665,1, + 0,0,0,665,1350,1,0,0,0,666,667,5,11,0,0,667,668,5,293,0,0,668,670, + 3,86,43,0,669,671,3,32,16,0,670,669,1,0,0,0,670,671,1,0,0,0,671, + 672,1,0,0,0,672,674,5,39,0,0,673,675,5,49,0,0,674,673,1,0,0,0,674, + 675,1,0,0,0,675,676,1,0,0,0,676,677,3,92,46,0,677,679,3,348,174, + 0,678,680,3,326,163,0,679,678,1,0,0,0,679,680,1,0,0,0,680,1350,1, + 0,0,0,681,682,5,11,0,0,682,683,5,293,0,0,683,685,3,86,43,0,684,686, + 3,32,16,0,685,684,1,0,0,0,685,686,1,0,0,0,686,687,1,0,0,0,687,688, + 5,244,0,0,688,689,5,50,0,0,689,690,5,2,0,0,690,691,3,336,168,0,691, + 692,5,3,0,0,692,1350,1,0,0,0,693,694,5,11,0,0,694,695,5,293,0,0, + 695,697,3,86,43,0,696,698,3,32,16,0,697,696,1,0,0,0,697,698,1,0, + 0,0,698,699,1,0,0,0,699,700,5,269,0,0,700,701,5,266,0,0,701,705, + 3,400,200,0,702,703,5,346,0,0,703,704,5,267,0,0,704,706,3,54,27, + 0,705,702,1,0,0,0,705,706,1,0,0,0,706,1350,1,0,0,0,707,708,5,11, + 0,0,708,709,5,293,0,0,709,711,3,86,43,0,710,712,3,32,16,0,711,710, + 1,0,0,0,711,712,1,0,0,0,712,713,1,0,0,0,713,714,5,269,0,0,714,715, + 5,267,0,0,715,716,3,54,27,0,716,1350,1,0,0,0,717,722,5,11,0,0,718, + 719,5,293,0,0,719,723,3,86,43,0,720,721,5,338,0,0,721,723,3,90,45, + 0,722,718,1,0,0,0,722,720,1,0,0,0,723,724,1,0,0,0,724,726,5,8,0, + 0,725,727,3,190,95,0,726,725,1,0,0,0,726,727,1,0,0,0,727,729,1,0, + 0,0,728,730,3,30,15,0,729,728,1,0,0,0,730,731,1,0,0,0,731,729,1, + 0,0,0,731,732,1,0,0,0,732,1350,1,0,0,0,733,734,5,11,0,0,734,735, + 5,293,0,0,735,736,3,86,43,0,736,737,3,32,16,0,737,738,5,241,0,0, + 738,739,5,309,0,0,739,740,3,32,16,0,740,1350,1,0,0,0,741,746,5,11, + 0,0,742,743,5,293,0,0,743,747,3,86,43,0,744,745,5,338,0,0,745,747, + 3,90,45,0,746,742,1,0,0,0,746,744,1,0,0,0,747,748,1,0,0,0,748,750, + 5,96,0,0,749,751,3,192,96,0,750,749,1,0,0,0,750,751,1,0,0,0,751, + 752,1,0,0,0,752,757,3,32,16,0,753,754,5,4,0,0,754,756,3,32,16,0, + 755,753,1,0,0,0,756,759,1,0,0,0,757,755,1,0,0,0,757,758,1,0,0,0, + 758,761,1,0,0,0,759,757,1,0,0,0,760,762,5,230,0,0,761,760,1,0,0, + 0,761,762,1,0,0,0,762,1350,1,0,0,0,763,764,5,11,0,0,764,765,5,293, + 0,0,765,767,3,86,43,0,766,768,3,32,16,0,767,766,1,0,0,0,767,768, + 1,0,0,0,768,769,1,0,0,0,769,770,5,269,0,0,770,771,3,22,11,0,771, + 1350,1,0,0,0,772,773,5,11,0,0,773,774,5,293,0,0,774,775,3,86,43, + 0,775,776,5,237,0,0,776,777,5,219,0,0,777,1350,1,0,0,0,778,779,5, + 11,0,0,779,780,5,176,0,0,780,781,5,338,0,0,781,782,3,90,45,0,782, + 783,7,4,0,0,783,784,5,248,0,0,784,1350,1,0,0,0,785,786,5,11,0,0, + 786,787,5,176,0,0,787,788,5,338,0,0,788,789,3,90,45,0,789,790,5, + 269,0,0,790,791,5,297,0,0,791,792,3,54,27,0,792,1350,1,0,0,0,793, + 794,5,96,0,0,794,796,5,293,0,0,795,797,3,192,96,0,796,795,1,0,0, + 0,796,797,1,0,0,0,797,798,1,0,0,0,798,800,3,86,43,0,799,801,5,230, + 0,0,800,799,1,0,0,0,800,801,1,0,0,0,801,1350,1,0,0,0,802,803,5,96, + 0,0,803,805,5,338,0,0,804,806,3,192,96,0,805,804,1,0,0,0,805,806, + 1,0,0,0,806,807,1,0,0,0,807,1350,3,90,45,0,808,809,5,96,0,0,809, + 810,5,176,0,0,810,812,5,338,0,0,811,813,3,192,96,0,812,811,1,0,0, + 0,812,813,1,0,0,0,813,814,1,0,0,0,814,1350,3,90,45,0,815,818,5,59, + 0,0,816,817,5,208,0,0,817,819,5,244,0,0,818,816,1,0,0,0,818,819, + 1,0,0,0,819,824,1,0,0,0,820,822,5,128,0,0,821,820,1,0,0,0,821,822, + 1,0,0,0,822,823,1,0,0,0,823,825,5,298,0,0,824,821,1,0,0,0,824,825, + 1,0,0,0,825,826,1,0,0,0,826,828,5,338,0,0,827,829,3,190,95,0,828, + 827,1,0,0,0,828,829,1,0,0,0,829,830,1,0,0,0,830,832,3,88,44,0,831, + 833,3,220,110,0,832,831,1,0,0,0,832,833,1,0,0,0,833,842,1,0,0,0, + 834,841,3,24,12,0,835,836,5,218,0,0,836,837,5,203,0,0,837,841,3, + 212,106,0,838,839,5,297,0,0,839,841,3,54,27,0,840,834,1,0,0,0,840, + 835,1,0,0,0,840,838,1,0,0,0,841,844,1,0,0,0,842,840,1,0,0,0,842, + 843,1,0,0,0,843,845,1,0,0,0,844,842,1,0,0,0,845,846,5,20,0,0,846, + 847,3,26,13,0,847,1350,1,0,0,0,848,851,5,59,0,0,849,850,5,208,0, + 0,850,852,5,244,0,0,851,849,1,0,0,0,851,852,1,0,0,0,852,854,1,0, + 0,0,853,855,5,128,0,0,854,853,1,0,0,0,854,855,1,0,0,0,855,856,1, + 0,0,0,856,857,5,298,0,0,857,858,5,338,0,0,858,863,3,88,44,0,859, + 860,5,2,0,0,860,861,3,346,173,0,861,862,5,3,0,0,862,864,1,0,0,0, + 863,859,1,0,0,0,863,864,1,0,0,0,864,865,1,0,0,0,865,868,3,48,24, + 0,866,867,5,207,0,0,867,869,3,54,27,0,868,866,1,0,0,0,868,869,1, + 0,0,0,869,1350,1,0,0,0,870,871,5,11,0,0,871,872,5,338,0,0,872,874, + 3,90,45,0,873,875,5,20,0,0,874,873,1,0,0,0,874,875,1,0,0,0,875,876, + 1,0,0,0,876,877,3,26,13,0,877,1350,1,0,0,0,878,881,5,59,0,0,879, + 880,5,208,0,0,880,882,5,244,0,0,881,879,1,0,0,0,881,882,1,0,0,0, + 882,884,1,0,0,0,883,885,5,298,0,0,884,883,1,0,0,0,884,885,1,0,0, + 0,885,886,1,0,0,0,886,888,5,125,0,0,887,889,3,190,95,0,888,887,1, + 0,0,0,888,889,1,0,0,0,889,890,1,0,0,0,890,891,3,380,190,0,891,892, + 5,20,0,0,892,902,3,400,200,0,893,894,5,332,0,0,894,899,3,76,38,0, + 895,896,5,4,0,0,896,898,3,76,38,0,897,895,1,0,0,0,898,901,1,0,0, + 0,899,897,1,0,0,0,899,900,1,0,0,0,900,903,1,0,0,0,901,899,1,0,0, + 0,902,893,1,0,0,0,902,903,1,0,0,0,903,1350,1,0,0,0,904,905,5,59, + 0,0,905,906,5,176,0,0,906,908,5,338,0,0,907,909,3,190,95,0,908,907, + 1,0,0,0,908,909,1,0,0,0,909,910,1,0,0,0,910,912,3,88,44,0,911,913, + 3,48,24,0,912,911,1,0,0,0,912,913,1,0,0,0,913,929,1,0,0,0,914,915, + 5,207,0,0,915,928,3,54,27,0,916,917,5,218,0,0,917,918,5,31,0,0,918, + 928,3,272,136,0,919,928,3,20,10,0,920,928,3,18,9,0,921,928,3,246, + 123,0,922,928,3,70,35,0,923,928,3,22,11,0,924,928,3,24,12,0,925, + 926,5,297,0,0,926,928,3,54,27,0,927,914,1,0,0,0,927,916,1,0,0,0, + 927,919,1,0,0,0,927,920,1,0,0,0,927,921,1,0,0,0,927,922,1,0,0,0, + 927,923,1,0,0,0,927,924,1,0,0,0,927,925,1,0,0,0,928,931,1,0,0,0, + 929,927,1,0,0,0,929,930,1,0,0,0,930,932,1,0,0,0,931,929,1,0,0,0, + 932,933,5,20,0,0,933,934,3,26,13,0,934,1350,1,0,0,0,935,937,5,96, + 0,0,936,938,5,298,0,0,937,936,1,0,0,0,937,938,1,0,0,0,938,939,1, + 0,0,0,939,941,5,125,0,0,940,942,3,192,96,0,941,940,1,0,0,0,941,942, + 1,0,0,0,942,943,1,0,0,0,943,1350,3,378,189,0,944,947,5,81,0,0,945, + 946,5,208,0,0,946,948,5,244,0,0,947,945,1,0,0,0,947,948,1,0,0,0, + 948,950,1,0,0,0,949,951,5,336,0,0,950,949,1,0,0,0,950,951,1,0,0, + 0,951,952,1,0,0,0,952,954,3,378,189,0,953,955,3,330,165,0,954,953, + 1,0,0,0,954,955,1,0,0,0,955,957,1,0,0,0,956,958,3,344,172,0,957, + 956,1,0,0,0,957,958,1,0,0,0,958,1350,1,0,0,0,959,960,5,96,0,0,960, + 961,5,298,0,0,961,963,5,336,0,0,962,964,3,192,96,0,963,962,1,0,0, + 0,963,964,1,0,0,0,964,968,1,0,0,0,965,969,3,86,43,0,966,969,3,90, + 45,0,967,969,3,378,189,0,968,965,1,0,0,0,968,966,1,0,0,0,968,967, + 1,0,0,0,969,1350,1,0,0,0,970,972,5,106,0,0,971,973,7,5,0,0,972,971, + 1,0,0,0,972,973,1,0,0,0,973,974,1,0,0,0,974,1350,3,4,2,0,975,976, + 5,273,0,0,976,979,5,294,0,0,977,978,7,2,0,0,978,980,3,80,40,0,979, + 977,1,0,0,0,979,980,1,0,0,0,980,985,1,0,0,0,981,983,5,163,0,0,982, + 981,1,0,0,0,982,983,1,0,0,0,983,984,1,0,0,0,984,986,3,400,200,0, + 985,982,1,0,0,0,985,986,1,0,0,0,986,1350,1,0,0,0,987,988,5,273,0, + 0,988,989,5,293,0,0,989,992,5,108,0,0,990,991,7,2,0,0,991,993,3, + 80,40,0,992,990,1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0,994,995, + 5,163,0,0,995,997,3,400,200,0,996,998,3,32,16,0,997,996,1,0,0,0, + 997,998,1,0,0,0,998,1350,1,0,0,0,999,1000,5,273,0,0,1000,1001,5, + 297,0,0,1001,1006,3,86,43,0,1002,1003,5,2,0,0,1003,1004,3,58,29, + 0,1004,1005,5,3,0,0,1005,1007,1,0,0,0,1006,1002,1,0,0,0,1006,1007, + 1,0,0,0,1007,1350,1,0,0,0,1008,1009,5,273,0,0,1009,1010,5,50,0,0, + 1010,1011,7,2,0,0,1011,1014,3,86,43,0,1012,1013,7,2,0,0,1013,1015, + 3,80,40,0,1014,1012,1,0,0,0,1014,1015,1,0,0,0,1015,1350,1,0,0,0, + 1016,1017,5,273,0,0,1017,1020,5,339,0,0,1018,1019,7,2,0,0,1019,1021, + 3,80,40,0,1020,1018,1,0,0,0,1020,1021,1,0,0,0,1021,1026,1,0,0,0, + 1022,1024,5,163,0,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025, + 1,0,0,0,1025,1027,3,400,200,0,1026,1023,1,0,0,0,1026,1027,1,0,0, + 0,1027,1350,1,0,0,0,1028,1029,5,273,0,0,1029,1030,5,219,0,0,1030, + 1032,3,86,43,0,1031,1033,3,32,16,0,1032,1031,1,0,0,0,1032,1033,1, + 0,0,0,1033,1350,1,0,0,0,1034,1036,5,273,0,0,1035,1037,3,148,74,0, + 1036,1035,1,0,0,0,1036,1037,1,0,0,0,1037,1038,1,0,0,0,1038,1041, + 5,126,0,0,1039,1040,7,2,0,0,1040,1042,3,80,40,0,1041,1039,1,0,0, + 0,1041,1042,1,0,0,0,1042,1050,1,0,0,0,1043,1045,5,163,0,0,1044,1043, + 1,0,0,0,1044,1045,1,0,0,0,1045,1048,1,0,0,0,1046,1049,3,250,125, + 0,1047,1049,3,400,200,0,1048,1046,1,0,0,0,1048,1047,1,0,0,0,1049, + 1051,1,0,0,0,1050,1044,1,0,0,0,1050,1051,1,0,0,0,1051,1350,1,0,0, + 0,1052,1053,5,273,0,0,1053,1054,5,59,0,0,1054,1055,5,293,0,0,1055, + 1058,3,86,43,0,1056,1057,5,20,0,0,1057,1059,5,266,0,0,1058,1056, + 1,0,0,0,1058,1059,1,0,0,0,1059,1350,1,0,0,0,1060,1061,5,273,0,0, + 1061,1062,5,62,0,0,1062,1350,3,36,18,0,1063,1064,5,273,0,0,1064, + 1069,5,38,0,0,1065,1067,5,163,0,0,1066,1065,1,0,0,0,1066,1067,1, + 0,0,0,1067,1068,1,0,0,0,1068,1070,3,400,200,0,1069,1066,1,0,0,0, + 1069,1070,1,0,0,0,1070,1350,1,0,0,0,1071,1072,5,273,0,0,1072,1073, + 5,176,0,0,1073,1076,5,339,0,0,1074,1075,7,2,0,0,1075,1077,3,80,40, + 0,1076,1074,1,0,0,0,1076,1077,1,0,0,0,1077,1082,1,0,0,0,1078,1080, + 5,163,0,0,1079,1078,1,0,0,0,1079,1080,1,0,0,0,1080,1081,1,0,0,0, + 1081,1083,3,400,200,0,1082,1079,1,0,0,0,1082,1083,1,0,0,0,1083,1350, + 1,0,0,0,1084,1085,5,273,0,0,1085,1086,5,59,0,0,1086,1087,5,176,0, + 0,1087,1088,5,338,0,0,1088,1091,3,90,45,0,1089,1090,5,20,0,0,1090, + 1092,5,266,0,0,1091,1089,1,0,0,0,1091,1092,1,0,0,0,1092,1350,1,0, + 0,0,1093,1094,7,6,0,0,1094,1096,5,125,0,0,1095,1097,5,108,0,0,1096, + 1095,1,0,0,0,1096,1097,1,0,0,0,1097,1098,1,0,0,0,1098,1350,3,40, + 20,0,1099,1100,7,6,0,0,1100,1102,5,72,0,0,1101,1103,5,108,0,0,1102, + 1101,1,0,0,0,1102,1103,1,0,0,0,1103,1104,1,0,0,0,1104,1350,3,80, + 40,0,1105,1107,7,6,0,0,1106,1108,5,293,0,0,1107,1106,1,0,0,0,1107, + 1108,1,0,0,0,1108,1110,1,0,0,0,1109,1111,7,7,0,0,1110,1109,1,0,0, + 0,1110,1111,1,0,0,0,1111,1112,1,0,0,0,1112,1114,3,86,43,0,1113,1115, + 3,32,16,0,1114,1113,1,0,0,0,1114,1115,1,0,0,0,1115,1117,1,0,0,0, + 1116,1118,3,42,21,0,1117,1116,1,0,0,0,1117,1118,1,0,0,0,1118,1350, + 1,0,0,0,1119,1121,7,6,0,0,1120,1122,5,232,0,0,1121,1120,1,0,0,0, + 1121,1122,1,0,0,0,1122,1123,1,0,0,0,1123,1350,3,26,13,0,1124,1125, + 5,51,0,0,1125,1126,5,203,0,0,1126,1127,3,36,18,0,1127,1128,3,80, + 40,0,1128,1129,5,153,0,0,1129,1130,3,402,201,0,1130,1350,1,0,0,0, + 1131,1132,5,51,0,0,1132,1133,5,203,0,0,1133,1134,5,293,0,0,1134, + 1135,3,86,43,0,1135,1136,5,153,0,0,1136,1137,3,402,201,0,1137,1350, + 1,0,0,0,1138,1139,5,240,0,0,1139,1140,5,293,0,0,1140,1350,3,86,43, + 0,1141,1142,5,240,0,0,1142,1143,5,125,0,0,1143,1350,3,378,189,0, + 1144,1152,5,240,0,0,1145,1153,3,400,200,0,1146,1148,9,0,0,0,1147, + 1146,1,0,0,0,1148,1151,1,0,0,0,1149,1150,1,0,0,0,1149,1147,1,0,0, + 0,1150,1153,1,0,0,0,1151,1149,1,0,0,0,1152,1145,1,0,0,0,1152,1149, + 1,0,0,0,1153,1350,1,0,0,0,1154,1155,5,240,0,0,1155,1156,5,176,0, + 0,1156,1157,5,338,0,0,1157,1350,3,90,45,0,1158,1160,5,33,0,0,1159, + 1161,5,159,0,0,1160,1159,1,0,0,0,1160,1161,1,0,0,0,1161,1162,1,0, + 0,0,1162,1163,5,293,0,0,1163,1166,3,86,43,0,1164,1165,5,207,0,0, + 1165,1167,3,54,27,0,1166,1164,1,0,0,0,1166,1167,1,0,0,0,1167,1172, + 1,0,0,0,1168,1170,5,20,0,0,1169,1168,1,0,0,0,1169,1170,1,0,0,0,1170, + 1171,1,0,0,0,1171,1173,3,26,13,0,1172,1169,1,0,0,0,1172,1173,1,0, + 0,0,1173,1350,1,0,0,0,1174,1175,5,322,0,0,1175,1177,5,293,0,0,1176, + 1178,3,192,96,0,1177,1176,1,0,0,0,1177,1178,1,0,0,0,1178,1179,1, + 0,0,0,1179,1350,3,86,43,0,1180,1181,5,43,0,0,1181,1350,5,33,0,0, + 1182,1183,5,168,0,0,1183,1185,5,70,0,0,1184,1186,5,169,0,0,1185, + 1184,1,0,0,0,1185,1186,1,0,0,0,1186,1187,1,0,0,0,1187,1188,5,145, + 0,0,1188,1190,3,400,200,0,1189,1191,5,216,0,0,1190,1189,1,0,0,0, + 1190,1191,1,0,0,0,1191,1192,1,0,0,0,1192,1193,5,152,0,0,1193,1194, + 5,293,0,0,1194,1196,3,86,43,0,1195,1197,3,32,16,0,1196,1195,1,0, + 0,0,1196,1197,1,0,0,0,1197,1350,1,0,0,0,1198,1199,5,317,0,0,1199, + 1200,5,293,0,0,1200,1202,3,86,43,0,1201,1203,3,32,16,0,1202,1201, + 1,0,0,0,1202,1203,1,0,0,0,1203,1350,1,0,0,0,1204,1206,5,188,0,0, + 1205,1204,1,0,0,0,1205,1206,1,0,0,0,1206,1207,1,0,0,0,1207,1208, + 5,242,0,0,1208,1209,5,293,0,0,1209,1212,3,86,43,0,1210,1211,7,8, + 0,0,1211,1213,5,219,0,0,1212,1210,1,0,0,0,1212,1213,1,0,0,0,1213, + 1350,1,0,0,0,1214,1215,7,9,0,0,1215,1219,3,388,194,0,1216,1218,9, + 0,0,0,1217,1216,1,0,0,0,1218,1221,1,0,0,0,1219,1220,1,0,0,0,1219, + 1217,1,0,0,0,1220,1350,1,0,0,0,1221,1219,1,0,0,0,1222,1223,5,269, + 0,0,1223,1227,5,253,0,0,1224,1226,9,0,0,0,1225,1224,1,0,0,0,1226, + 1229,1,0,0,0,1227,1228,1,0,0,0,1227,1225,1,0,0,0,1228,1350,1,0,0, + 0,1229,1227,1,0,0,0,1230,1231,5,269,0,0,1231,1232,5,301,0,0,1232, + 1233,5,350,0,0,1233,1350,3,310,155,0,1234,1235,5,269,0,0,1235,1236, + 5,301,0,0,1236,1237,5,350,0,0,1237,1350,3,6,3,0,1238,1239,5,269, + 0,0,1239,1240,5,301,0,0,1240,1244,5,350,0,0,1241,1243,9,0,0,0,1242, + 1241,1,0,0,0,1243,1246,1,0,0,0,1244,1245,1,0,0,0,1244,1242,1,0,0, + 0,1245,1350,1,0,0,0,1246,1244,1,0,0,0,1247,1248,5,269,0,0,1248,1249, + 7,10,0,0,1249,1350,3,134,67,0,1250,1251,5,269,0,0,1251,1252,7,10, + 0,0,1252,1253,5,2,0,0,1253,1254,3,248,124,0,1254,1255,5,3,0,0,1255, + 1256,5,352,0,0,1256,1257,5,2,0,0,1257,1258,3,26,13,0,1258,1259,5, + 3,0,0,1259,1350,1,0,0,0,1260,1261,5,269,0,0,1261,1262,3,8,4,0,1262, + 1263,5,352,0,0,1263,1264,3,10,5,0,1264,1350,1,0,0,0,1265,1266,5, + 269,0,0,1266,1274,3,8,4,0,1267,1271,5,352,0,0,1268,1270,9,0,0,0, + 1269,1268,1,0,0,0,1270,1273,1,0,0,0,1271,1272,1,0,0,0,1271,1269, + 1,0,0,0,1272,1275,1,0,0,0,1273,1271,1,0,0,0,1274,1267,1,0,0,0,1274, + 1275,1,0,0,0,1275,1350,1,0,0,0,1276,1280,5,269,0,0,1277,1279,9,0, + 0,0,1278,1277,1,0,0,0,1279,1282,1,0,0,0,1280,1281,1,0,0,0,1280,1278, + 1,0,0,0,1281,1283,1,0,0,0,1282,1280,1,0,0,0,1283,1284,5,352,0,0, + 1284,1350,3,10,5,0,1285,1289,5,269,0,0,1286,1288,9,0,0,0,1287,1286, + 1,0,0,0,1288,1291,1,0,0,0,1289,1290,1,0,0,0,1289,1287,1,0,0,0,1290, + 1350,1,0,0,0,1291,1289,1,0,0,0,1292,1293,5,245,0,0,1293,1350,3,8, + 4,0,1294,1298,5,245,0,0,1295,1297,9,0,0,0,1296,1295,1,0,0,0,1297, + 1300,1,0,0,0,1298,1299,1,0,0,0,1298,1296,1,0,0,0,1299,1350,1,0,0, + 0,1300,1298,1,0,0,0,1301,1302,5,59,0,0,1302,1304,5,142,0,0,1303, + 1305,3,190,95,0,1304,1303,1,0,0,0,1304,1305,1,0,0,0,1305,1306,1, + 0,0,0,1306,1307,3,388,194,0,1307,1309,5,203,0,0,1308,1310,5,293, + 0,0,1309,1308,1,0,0,0,1309,1310,1,0,0,0,1310,1311,1,0,0,0,1311,1314, + 3,86,43,0,1312,1313,5,332,0,0,1313,1315,3,388,194,0,1314,1312,1, + 0,0,0,1314,1315,1,0,0,0,1315,1316,1,0,0,0,1316,1317,5,2,0,0,1317, + 1318,3,252,126,0,1318,1321,5,3,0,0,1319,1320,5,207,0,0,1320,1322, + 3,54,27,0,1321,1319,1,0,0,0,1321,1322,1,0,0,0,1322,1350,1,0,0,0, + 1323,1324,5,96,0,0,1324,1326,5,142,0,0,1325,1327,3,192,96,0,1326, + 1325,1,0,0,0,1326,1327,1,0,0,0,1327,1328,1,0,0,0,1328,1329,3,388, + 194,0,1329,1331,5,203,0,0,1330,1332,5,293,0,0,1331,1330,1,0,0,0, + 1331,1332,1,0,0,0,1332,1333,1,0,0,0,1333,1334,3,86,43,0,1334,1350, + 1,0,0,0,1335,1336,5,205,0,0,1336,1338,3,86,43,0,1337,1339,3,138, + 69,0,1338,1337,1,0,0,0,1338,1339,1,0,0,0,1339,1340,1,0,0,0,1340, + 1341,3,366,183,0,1341,1350,1,0,0,0,1342,1346,3,12,6,0,1343,1345, + 9,0,0,0,1344,1343,1,0,0,0,1345,1348,1,0,0,0,1346,1347,1,0,0,0,1346, + 1344,1,0,0,0,1347,1350,1,0,0,0,1348,1346,1,0,0,0,1349,424,1,0,0, + 0,1349,426,1,0,0,0,1349,429,1,0,0,0,1349,434,1,0,0,0,1349,440,1, + 0,0,0,1349,456,1,0,0,0,1349,463,1,0,0,0,1349,469,1,0,0,0,1349,478, + 1,0,0,0,1349,490,1,0,0,0,1349,507,1,0,0,0,1349,527,1,0,0,0,1349, + 544,1,0,0,0,1349,561,1,0,0,0,1349,572,1,0,0,0,1349,579,1,0,0,0,1349, + 588,1,0,0,0,1349,597,1,0,0,0,1349,607,1,0,0,0,1349,619,1,0,0,0,1349, + 630,1,0,0,0,1349,641,1,0,0,0,1349,655,1,0,0,0,1349,666,1,0,0,0,1349, + 681,1,0,0,0,1349,693,1,0,0,0,1349,707,1,0,0,0,1349,717,1,0,0,0,1349, + 733,1,0,0,0,1349,741,1,0,0,0,1349,763,1,0,0,0,1349,772,1,0,0,0,1349, + 778,1,0,0,0,1349,785,1,0,0,0,1349,793,1,0,0,0,1349,802,1,0,0,0,1349, + 808,1,0,0,0,1349,815,1,0,0,0,1349,848,1,0,0,0,1349,870,1,0,0,0,1349, + 878,1,0,0,0,1349,904,1,0,0,0,1349,935,1,0,0,0,1349,944,1,0,0,0,1349, + 959,1,0,0,0,1349,970,1,0,0,0,1349,975,1,0,0,0,1349,987,1,0,0,0,1349, + 999,1,0,0,0,1349,1008,1,0,0,0,1349,1016,1,0,0,0,1349,1028,1,0,0, + 0,1349,1034,1,0,0,0,1349,1052,1,0,0,0,1349,1060,1,0,0,0,1349,1063, + 1,0,0,0,1349,1071,1,0,0,0,1349,1084,1,0,0,0,1349,1093,1,0,0,0,1349, + 1099,1,0,0,0,1349,1105,1,0,0,0,1349,1119,1,0,0,0,1349,1124,1,0,0, + 0,1349,1131,1,0,0,0,1349,1138,1,0,0,0,1349,1141,1,0,0,0,1349,1144, + 1,0,0,0,1349,1154,1,0,0,0,1349,1158,1,0,0,0,1349,1174,1,0,0,0,1349, + 1180,1,0,0,0,1349,1182,1,0,0,0,1349,1198,1,0,0,0,1349,1205,1,0,0, + 0,1349,1214,1,0,0,0,1349,1222,1,0,0,0,1349,1230,1,0,0,0,1349,1234, + 1,0,0,0,1349,1238,1,0,0,0,1349,1247,1,0,0,0,1349,1250,1,0,0,0,1349, + 1260,1,0,0,0,1349,1265,1,0,0,0,1349,1276,1,0,0,0,1349,1285,1,0,0, + 0,1349,1292,1,0,0,0,1349,1294,1,0,0,0,1349,1301,1,0,0,0,1349,1323, + 1,0,0,0,1349,1335,1,0,0,0,1349,1342,1,0,0,0,1350,5,1,0,0,0,1351, + 1354,3,400,200,0,1352,1354,5,169,0,0,1353,1351,1,0,0,0,1353,1352, + 1,0,0,0,1354,7,1,0,0,0,1355,1356,3,392,196,0,1356,9,1,0,0,0,1357, + 1358,3,394,197,0,1358,11,1,0,0,0,1359,1360,5,59,0,0,1360,1528,5, + 253,0,0,1361,1362,5,96,0,0,1362,1528,5,253,0,0,1363,1365,5,129,0, + 0,1364,1366,5,253,0,0,1365,1364,1,0,0,0,1365,1366,1,0,0,0,1366,1528, + 1,0,0,0,1367,1369,5,249,0,0,1368,1370,5,253,0,0,1369,1368,1,0,0, + 0,1369,1370,1,0,0,0,1370,1528,1,0,0,0,1371,1372,5,273,0,0,1372,1528, + 5,129,0,0,1373,1374,5,273,0,0,1374,1376,5,253,0,0,1375,1377,5,129, + 0,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0,1377,1528,1,0,0,0,1378,1379, + 5,273,0,0,1379,1528,5,228,0,0,1380,1381,5,273,0,0,1381,1528,5,254, + 0,0,1382,1383,5,273,0,0,1383,1384,5,62,0,0,1384,1528,5,254,0,0,1385, + 1386,5,107,0,0,1386,1528,5,293,0,0,1387,1388,5,139,0,0,1388,1528, + 5,293,0,0,1389,1390,5,273,0,0,1390,1528,5,54,0,0,1391,1392,5,273, + 0,0,1392,1393,5,59,0,0,1393,1528,5,293,0,0,1394,1395,5,273,0,0,1395, + 1528,5,313,0,0,1396,1397,5,273,0,0,1397,1528,5,143,0,0,1398,1399, + 5,273,0,0,1399,1528,5,172,0,0,1400,1401,5,59,0,0,1401,1528,5,142, + 0,0,1402,1403,5,96,0,0,1403,1528,5,142,0,0,1404,1405,5,11,0,0,1405, + 1528,5,142,0,0,1406,1407,5,171,0,0,1407,1528,5,293,0,0,1408,1409, + 5,171,0,0,1409,1528,5,72,0,0,1410,1411,5,326,0,0,1411,1528,5,293, + 0,0,1412,1413,5,326,0,0,1413,1528,5,72,0,0,1414,1415,5,59,0,0,1415, + 1416,5,298,0,0,1416,1528,5,175,0,0,1417,1418,5,96,0,0,1418,1419, + 5,298,0,0,1419,1528,5,175,0,0,1420,1421,5,11,0,0,1421,1422,5,293, + 0,0,1422,1423,3,86,43,0,1423,1424,5,197,0,0,1424,1425,5,45,0,0,1425, + 1528,1,0,0,0,1426,1427,5,11,0,0,1427,1428,5,293,0,0,1428,1429,3, + 86,43,0,1429,1430,5,45,0,0,1430,1431,5,31,0,0,1431,1528,1,0,0,0, + 1432,1433,5,11,0,0,1433,1434,5,293,0,0,1434,1435,3,86,43,0,1435, + 1436,5,197,0,0,1436,1437,5,279,0,0,1437,1528,1,0,0,0,1438,1439,5, + 11,0,0,1439,1440,5,293,0,0,1440,1441,3,86,43,0,1441,1442,5,275,0, + 0,1442,1443,5,31,0,0,1443,1528,1,0,0,0,1444,1445,5,11,0,0,1445,1446, + 5,293,0,0,1446,1447,3,86,43,0,1447,1448,5,197,0,0,1448,1449,5,275, + 0,0,1449,1528,1,0,0,0,1450,1451,5,11,0,0,1451,1452,5,293,0,0,1452, + 1453,3,86,43,0,1453,1454,5,197,0,0,1454,1455,5,283,0,0,1455,1456, + 5,20,0,0,1456,1457,5,89,0,0,1457,1528,1,0,0,0,1458,1459,5,11,0,0, + 1459,1460,5,293,0,0,1460,1461,3,86,43,0,1461,1462,5,269,0,0,1462, + 1463,5,275,0,0,1463,1464,5,170,0,0,1464,1528,1,0,0,0,1465,1466,5, + 11,0,0,1466,1467,5,293,0,0,1467,1468,3,86,43,0,1468,1469,5,103,0, + 0,1469,1470,5,217,0,0,1470,1528,1,0,0,0,1471,1472,5,11,0,0,1472, + 1473,5,293,0,0,1473,1474,3,86,43,0,1474,1475,5,18,0,0,1475,1476, + 5,217,0,0,1476,1528,1,0,0,0,1477,1478,5,11,0,0,1478,1479,5,293,0, + 0,1479,1480,3,86,43,0,1480,1481,5,320,0,0,1481,1482,5,217,0,0,1482, + 1528,1,0,0,0,1483,1484,5,11,0,0,1484,1485,5,293,0,0,1485,1486,3, + 86,43,0,1486,1487,5,310,0,0,1487,1528,1,0,0,0,1488,1489,5,11,0,0, + 1489,1490,5,293,0,0,1490,1492,3,86,43,0,1491,1493,3,32,16,0,1492, + 1491,1,0,0,0,1492,1493,1,0,0,0,1493,1494,1,0,0,0,1494,1495,5,53, + 0,0,1495,1528,1,0,0,0,1496,1497,5,11,0,0,1497,1498,5,293,0,0,1498, + 1500,3,86,43,0,1499,1501,3,32,16,0,1500,1499,1,0,0,0,1500,1501,1, + 0,0,0,1501,1502,1,0,0,0,1502,1503,5,56,0,0,1503,1528,1,0,0,0,1504, + 1505,5,11,0,0,1505,1506,5,293,0,0,1506,1508,3,86,43,0,1507,1509, + 3,32,16,0,1508,1507,1,0,0,0,1508,1509,1,0,0,0,1509,1510,1,0,0,0, + 1510,1511,5,269,0,0,1511,1512,5,115,0,0,1512,1528,1,0,0,0,1513,1514, + 5,11,0,0,1514,1515,5,293,0,0,1515,1517,3,86,43,0,1516,1518,3,32, + 16,0,1517,1516,1,0,0,0,1517,1518,1,0,0,0,1518,1519,1,0,0,0,1519, + 1520,5,244,0,0,1520,1521,5,50,0,0,1521,1528,1,0,0,0,1522,1523,5, + 281,0,0,1523,1528,5,312,0,0,1524,1528,5,52,0,0,1525,1528,5,255,0, + 0,1526,1528,5,88,0,0,1527,1359,1,0,0,0,1527,1361,1,0,0,0,1527,1363, + 1,0,0,0,1527,1367,1,0,0,0,1527,1371,1,0,0,0,1527,1373,1,0,0,0,1527, + 1378,1,0,0,0,1527,1380,1,0,0,0,1527,1382,1,0,0,0,1527,1385,1,0,0, + 0,1527,1387,1,0,0,0,1527,1389,1,0,0,0,1527,1391,1,0,0,0,1527,1394, + 1,0,0,0,1527,1396,1,0,0,0,1527,1398,1,0,0,0,1527,1400,1,0,0,0,1527, + 1402,1,0,0,0,1527,1404,1,0,0,0,1527,1406,1,0,0,0,1527,1408,1,0,0, + 0,1527,1410,1,0,0,0,1527,1412,1,0,0,0,1527,1414,1,0,0,0,1527,1417, + 1,0,0,0,1527,1420,1,0,0,0,1527,1426,1,0,0,0,1527,1432,1,0,0,0,1527, + 1438,1,0,0,0,1527,1444,1,0,0,0,1527,1450,1,0,0,0,1527,1458,1,0,0, + 0,1527,1465,1,0,0,0,1527,1471,1,0,0,0,1527,1477,1,0,0,0,1527,1483, + 1,0,0,0,1527,1488,1,0,0,0,1527,1496,1,0,0,0,1527,1504,1,0,0,0,1527, + 1513,1,0,0,0,1527,1522,1,0,0,0,1527,1524,1,0,0,0,1527,1525,1,0,0, + 0,1527,1526,1,0,0,0,1528,13,1,0,0,0,1529,1531,5,59,0,0,1530,1532, + 5,298,0,0,1531,1530,1,0,0,0,1531,1532,1,0,0,0,1532,1534,1,0,0,0, + 1533,1535,5,109,0,0,1534,1533,1,0,0,0,1534,1535,1,0,0,0,1535,1536, + 1,0,0,0,1536,1538,5,293,0,0,1537,1539,3,190,95,0,1538,1537,1,0,0, + 0,1538,1539,1,0,0,0,1539,1540,1,0,0,0,1540,1541,3,84,42,0,1541,15, + 1,0,0,0,1542,1543,5,59,0,0,1543,1545,5,208,0,0,1544,1542,1,0,0,0, + 1544,1545,1,0,0,0,1545,1546,1,0,0,0,1546,1547,5,244,0,0,1547,1548, + 5,293,0,0,1548,1549,3,84,42,0,1549,17,1,0,0,0,1550,1551,5,45,0,0, + 1551,1552,5,31,0,0,1552,1556,3,212,106,0,1553,1554,5,279,0,0,1554, + 1555,5,31,0,0,1555,1557,3,216,108,0,1556,1553,1,0,0,0,1556,1557, + 1,0,0,0,1557,1558,1,0,0,0,1558,1559,5,152,0,0,1559,1560,5,382,0, + 0,1560,1561,5,30,0,0,1561,19,1,0,0,0,1562,1563,5,275,0,0,1563,1564, + 5,31,0,0,1564,1565,3,212,106,0,1565,1568,5,203,0,0,1566,1569,3,66, + 33,0,1567,1569,3,68,34,0,1568,1566,1,0,0,0,1568,1567,1,0,0,0,1569, + 1573,1,0,0,0,1570,1571,5,283,0,0,1571,1572,5,20,0,0,1572,1574,5, + 89,0,0,1573,1570,1,0,0,0,1573,1574,1,0,0,0,1574,21,1,0,0,0,1575, + 1576,5,170,0,0,1576,1577,3,400,200,0,1577,23,1,0,0,0,1578,1579,5, + 51,0,0,1579,1580,3,400,200,0,1580,25,1,0,0,0,1581,1583,3,44,22,0, + 1582,1581,1,0,0,0,1582,1583,1,0,0,0,1583,1584,1,0,0,0,1584,1585, + 3,104,52,0,1585,1586,3,100,50,0,1586,27,1,0,0,0,1587,1588,5,147, + 0,0,1588,1590,5,216,0,0,1589,1591,5,293,0,0,1590,1589,1,0,0,0,1590, + 1591,1,0,0,0,1591,1592,1,0,0,0,1592,1597,3,86,43,0,1593,1595,3,32, + 16,0,1594,1596,3,190,95,0,1595,1594,1,0,0,0,1595,1596,1,0,0,0,1596, + 1598,1,0,0,0,1597,1593,1,0,0,0,1597,1598,1,0,0,0,1598,1605,1,0,0, + 0,1599,1600,5,31,0,0,1600,1606,5,189,0,0,1601,1602,5,2,0,0,1602, + 1603,3,94,47,0,1603,1604,5,3,0,0,1604,1606,1,0,0,0,1605,1599,1,0, + 0,0,1605,1601,1,0,0,0,1605,1606,1,0,0,0,1606,1664,1,0,0,0,1607,1608, + 5,147,0,0,1608,1610,5,152,0,0,1609,1611,5,293,0,0,1610,1609,1,0, + 0,0,1610,1611,1,0,0,0,1611,1612,1,0,0,0,1612,1614,3,86,43,0,1613, + 1615,3,32,16,0,1614,1613,1,0,0,0,1614,1615,1,0,0,0,1615,1617,1,0, + 0,0,1616,1618,3,190,95,0,1617,1616,1,0,0,0,1617,1618,1,0,0,0,1618, + 1625,1,0,0,0,1619,1620,5,31,0,0,1620,1626,5,189,0,0,1621,1622,5, + 2,0,0,1622,1623,3,94,47,0,1623,1624,5,3,0,0,1624,1626,1,0,0,0,1625, + 1619,1,0,0,0,1625,1621,1,0,0,0,1625,1626,1,0,0,0,1626,1664,1,0,0, + 0,1627,1628,5,147,0,0,1628,1630,5,152,0,0,1629,1631,5,293,0,0,1630, + 1629,1,0,0,0,1630,1631,1,0,0,0,1631,1632,1,0,0,0,1632,1633,3,86, + 43,0,1633,1634,5,244,0,0,1634,1635,3,138,69,0,1635,1664,1,0,0,0, + 1636,1637,5,147,0,0,1637,1639,5,216,0,0,1638,1640,5,169,0,0,1639, + 1638,1,0,0,0,1639,1640,1,0,0,0,1640,1641,1,0,0,0,1641,1642,5,90, + 0,0,1642,1644,3,400,200,0,1643,1645,3,246,123,0,1644,1643,1,0,0, + 0,1644,1645,1,0,0,0,1645,1647,1,0,0,0,1646,1648,3,70,35,0,1647,1646, + 1,0,0,0,1647,1648,1,0,0,0,1648,1664,1,0,0,0,1649,1650,5,147,0,0, + 1650,1652,5,216,0,0,1651,1653,5,169,0,0,1652,1651,1,0,0,0,1652,1653, + 1,0,0,0,1653,1654,1,0,0,0,1654,1656,5,90,0,0,1655,1657,3,400,200, + 0,1656,1655,1,0,0,0,1656,1657,1,0,0,0,1657,1658,1,0,0,0,1658,1661, + 3,48,24,0,1659,1660,5,207,0,0,1660,1662,3,54,27,0,1661,1659,1,0, + 0,0,1661,1662,1,0,0,0,1662,1664,1,0,0,0,1663,1587,1,0,0,0,1663,1607, + 1,0,0,0,1663,1627,1,0,0,0,1663,1636,1,0,0,0,1663,1649,1,0,0,0,1664, + 29,1,0,0,0,1665,1667,3,32,16,0,1666,1668,3,22,11,0,1667,1666,1,0, + 0,0,1667,1668,1,0,0,0,1668,31,1,0,0,0,1669,1670,5,217,0,0,1670,1671, + 5,2,0,0,1671,1676,3,34,17,0,1672,1673,5,4,0,0,1673,1675,3,34,17, + 0,1674,1672,1,0,0,0,1675,1678,1,0,0,0,1676,1674,1,0,0,0,1676,1677, + 1,0,0,0,1677,1679,1,0,0,0,1678,1676,1,0,0,0,1679,1680,5,3,0,0,1680, + 33,1,0,0,0,1681,1684,3,388,194,0,1682,1683,5,352,0,0,1683,1685,3, + 300,150,0,1684,1682,1,0,0,0,1684,1685,1,0,0,0,1685,1691,1,0,0,0, + 1686,1687,3,388,194,0,1687,1688,5,352,0,0,1688,1689,5,82,0,0,1689, + 1691,1,0,0,0,1690,1681,1,0,0,0,1690,1686,1,0,0,0,1691,35,1,0,0,0, + 1692,1693,7,11,0,0,1693,37,1,0,0,0,1694,1695,7,12,0,0,1695,39,1, + 0,0,0,1696,1702,3,98,49,0,1697,1702,3,400,200,0,1698,1702,3,302, + 151,0,1699,1702,3,304,152,0,1700,1702,3,306,153,0,1701,1696,1,0, + 0,0,1701,1697,1,0,0,0,1701,1698,1,0,0,0,1701,1699,1,0,0,0,1701,1700, + 1,0,0,0,1702,41,1,0,0,0,1703,1708,3,388,194,0,1704,1705,5,5,0,0, + 1705,1707,3,388,194,0,1706,1704,1,0,0,0,1707,1710,1,0,0,0,1708,1706, + 1,0,0,0,1708,1709,1,0,0,0,1709,43,1,0,0,0,1710,1708,1,0,0,0,1711, + 1712,5,346,0,0,1712,1717,3,46,23,0,1713,1714,5,4,0,0,1714,1716,3, + 46,23,0,1715,1713,1,0,0,0,1716,1719,1,0,0,0,1717,1715,1,0,0,0,1717, + 1718,1,0,0,0,1718,45,1,0,0,0,1719,1717,1,0,0,0,1720,1722,3,384,192, + 0,1721,1723,3,212,106,0,1722,1721,1,0,0,0,1722,1723,1,0,0,0,1723, + 1725,1,0,0,0,1724,1726,5,20,0,0,1725,1724,1,0,0,0,1725,1726,1,0, + 0,0,1726,1727,1,0,0,0,1727,1728,5,2,0,0,1728,1729,3,26,13,0,1729, + 1730,5,3,0,0,1730,47,1,0,0,0,1731,1732,5,332,0,0,1732,1733,3,250, + 125,0,1733,49,1,0,0,0,1734,1735,5,207,0,0,1735,1749,3,62,31,0,1736, + 1737,5,218,0,0,1737,1738,5,31,0,0,1738,1749,3,272,136,0,1739,1749, + 3,20,10,0,1740,1749,3,18,9,0,1741,1749,3,246,123,0,1742,1749,3,70, + 35,0,1743,1749,3,22,11,0,1744,1749,3,24,12,0,1745,1746,5,297,0,0, + 1746,1749,3,54,27,0,1747,1749,3,52,26,0,1748,1734,1,0,0,0,1748,1736, + 1,0,0,0,1748,1739,1,0,0,0,1748,1740,1,0,0,0,1748,1741,1,0,0,0,1748, + 1742,1,0,0,0,1748,1743,1,0,0,0,1748,1744,1,0,0,0,1748,1745,1,0,0, + 0,1748,1747,1,0,0,0,1749,1752,1,0,0,0,1750,1748,1,0,0,0,1750,1751, + 1,0,0,0,1751,51,1,0,0,0,1752,1750,1,0,0,0,1753,1754,5,162,0,0,1754, + 1755,5,382,0,0,1755,53,1,0,0,0,1756,1757,5,2,0,0,1757,1762,3,56, + 28,0,1758,1759,5,4,0,0,1759,1761,3,56,28,0,1760,1758,1,0,0,0,1761, + 1764,1,0,0,0,1762,1760,1,0,0,0,1762,1763,1,0,0,0,1763,1765,1,0,0, + 0,1764,1762,1,0,0,0,1765,1766,5,3,0,0,1766,55,1,0,0,0,1767,1772, + 3,58,29,0,1768,1770,5,352,0,0,1769,1768,1,0,0,0,1769,1770,1,0,0, + 0,1770,1771,1,0,0,0,1771,1773,3,60,30,0,1772,1769,1,0,0,0,1772,1773, + 1,0,0,0,1773,57,1,0,0,0,1774,1779,3,388,194,0,1775,1776,5,5,0,0, + 1776,1778,3,388,194,0,1777,1775,1,0,0,0,1778,1781,1,0,0,0,1779,1777, + 1,0,0,0,1779,1780,1,0,0,0,1780,1784,1,0,0,0,1781,1779,1,0,0,0,1782, + 1784,3,400,200,0,1783,1774,1,0,0,0,1783,1782,1,0,0,0,1784,59,1,0, + 0,0,1785,1790,5,382,0,0,1786,1790,5,384,0,0,1787,1790,3,308,154, + 0,1788,1790,3,400,200,0,1789,1785,1,0,0,0,1789,1786,1,0,0,0,1789, + 1787,1,0,0,0,1789,1788,1,0,0,0,1790,61,1,0,0,0,1791,1792,5,2,0,0, + 1792,1797,3,64,32,0,1793,1794,5,4,0,0,1794,1796,3,64,32,0,1795,1793, + 1,0,0,0,1796,1799,1,0,0,0,1797,1795,1,0,0,0,1797,1798,1,0,0,0,1798, + 1800,1,0,0,0,1799,1797,1,0,0,0,1800,1801,5,3,0,0,1801,63,1,0,0,0, + 1802,1807,3,58,29,0,1803,1805,5,352,0,0,1804,1803,1,0,0,0,1804,1805, + 1,0,0,0,1805,1806,1,0,0,0,1806,1808,3,280,140,0,1807,1804,1,0,0, + 0,1807,1808,1,0,0,0,1808,65,1,0,0,0,1809,1810,5,2,0,0,1810,1815, + 3,300,150,0,1811,1812,5,4,0,0,1812,1814,3,300,150,0,1813,1811,1, + 0,0,0,1814,1817,1,0,0,0,1815,1813,1,0,0,0,1815,1816,1,0,0,0,1816, + 1818,1,0,0,0,1817,1815,1,0,0,0,1818,1819,5,3,0,0,1819,67,1,0,0,0, + 1820,1821,5,2,0,0,1821,1826,3,66,33,0,1822,1823,5,4,0,0,1823,1825, + 3,66,33,0,1824,1822,1,0,0,0,1825,1828,1,0,0,0,1826,1824,1,0,0,0, + 1826,1827,1,0,0,0,1827,1829,1,0,0,0,1828,1826,1,0,0,0,1829,1830, + 5,3,0,0,1830,69,1,0,0,0,1831,1832,5,283,0,0,1832,1833,5,20,0,0,1833, + 1838,3,72,36,0,1834,1835,5,283,0,0,1835,1836,5,31,0,0,1836,1838, + 3,74,37,0,1837,1831,1,0,0,0,1837,1834,1,0,0,0,1838,71,1,0,0,0,1839, + 1840,5,146,0,0,1840,1841,3,400,200,0,1841,1842,5,212,0,0,1842,1843, + 3,400,200,0,1843,1846,1,0,0,0,1844,1846,3,388,194,0,1845,1839,1, + 0,0,0,1845,1844,1,0,0,0,1846,73,1,0,0,0,1847,1851,3,400,200,0,1848, + 1849,5,346,0,0,1849,1850,5,267,0,0,1850,1852,3,54,27,0,1851,1848, + 1,0,0,0,1851,1852,1,0,0,0,1852,75,1,0,0,0,1853,1854,3,388,194,0, + 1854,1855,3,400,200,0,1855,77,1,0,0,0,1856,1857,3,28,14,0,1857,1858, + 3,26,13,0,1858,1913,1,0,0,0,1859,1861,3,146,73,0,1860,1862,3,102, + 51,0,1861,1860,1,0,0,0,1862,1863,1,0,0,0,1863,1861,1,0,0,0,1863, + 1864,1,0,0,0,1864,1913,1,0,0,0,1865,1866,5,84,0,0,1866,1867,5,123, + 0,0,1867,1868,3,86,43,0,1868,1870,3,244,122,0,1869,1871,3,138,69, + 0,1870,1869,1,0,0,0,1870,1871,1,0,0,0,1871,1913,1,0,0,0,1872,1873, + 5,329,0,0,1873,1874,3,86,43,0,1874,1875,3,244,122,0,1875,1877,3, + 120,60,0,1876,1878,3,138,69,0,1877,1876,1,0,0,0,1877,1878,1,0,0, + 0,1878,1913,1,0,0,0,1879,1880,5,179,0,0,1880,1881,5,152,0,0,1881, + 1882,3,86,43,0,1882,1883,3,244,122,0,1883,1889,5,332,0,0,1884,1890, + 3,98,49,0,1885,1886,5,2,0,0,1886,1887,3,26,13,0,1887,1888,5,3,0, + 0,1888,1890,1,0,0,0,1889,1884,1,0,0,0,1889,1885,1,0,0,0,1890,1891, + 1,0,0,0,1891,1892,3,244,122,0,1892,1893,5,203,0,0,1893,1897,3,288, + 144,0,1894,1896,3,122,61,0,1895,1894,1,0,0,0,1896,1899,1,0,0,0,1897, + 1895,1,0,0,0,1897,1898,1,0,0,0,1898,1903,1,0,0,0,1899,1897,1,0,0, + 0,1900,1902,3,124,62,0,1901,1900,1,0,0,0,1902,1905,1,0,0,0,1903, + 1901,1,0,0,0,1903,1904,1,0,0,0,1904,1909,1,0,0,0,1905,1903,1,0,0, + 0,1906,1908,3,126,63,0,1907,1906,1,0,0,0,1908,1911,1,0,0,0,1909, + 1907,1,0,0,0,1909,1910,1,0,0,0,1910,1913,1,0,0,0,1911,1909,1,0,0, + 0,1912,1856,1,0,0,0,1912,1859,1,0,0,0,1912,1865,1,0,0,0,1912,1872, + 1,0,0,0,1912,1879,1,0,0,0,1913,79,1,0,0,0,1914,1915,3,98,49,0,1915, + 81,1,0,0,0,1916,1917,3,98,49,0,1917,83,1,0,0,0,1918,1919,3,256,128, + 0,1919,85,1,0,0,0,1920,1921,3,256,128,0,1921,87,1,0,0,0,1922,1923, + 3,258,129,0,1923,89,1,0,0,0,1924,1925,3,258,129,0,1925,91,1,0,0, + 0,1926,1929,3,250,125,0,1927,1929,4,46,0,0,1928,1926,1,0,0,0,1928, + 1927,1,0,0,0,1929,93,1,0,0,0,1930,1935,3,92,46,0,1931,1932,5,4,0, + 0,1932,1934,3,92,46,0,1933,1931,1,0,0,0,1934,1937,1,0,0,0,1935,1933, + 1,0,0,0,1935,1936,1,0,0,0,1936,95,1,0,0,0,1937,1935,1,0,0,0,1938, + 1939,3,384,192,0,1939,97,1,0,0,0,1940,1941,5,136,0,0,1941,1942,5, + 2,0,0,1942,1943,3,280,140,0,1943,1944,5,3,0,0,1944,1947,1,0,0,0, + 1945,1947,3,250,125,0,1946,1940,1,0,0,0,1946,1945,1,0,0,0,1947,99, + 1,0,0,0,1948,1949,5,209,0,0,1949,1950,5,31,0,0,1950,1955,3,108,54, + 0,1951,1952,5,4,0,0,1952,1954,3,108,54,0,1953,1951,1,0,0,0,1954, 1957,1,0,0,0,1955,1953,1,0,0,0,1955,1956,1,0,0,0,1956,1959,1,0,0, 0,1957,1955,1,0,0,0,1958,1948,1,0,0,0,1958,1959,1,0,0,0,1959,1970, - 1,0,0,0,1960,1961,5,93,0,0,1961,1962,5,31,0,0,1962,1967,3,268,134, - 0,1963,1964,5,4,0,0,1964,1966,3,268,134,0,1965,1963,1,0,0,0,1966, + 1,0,0,0,1960,1961,5,44,0,0,1961,1962,5,31,0,0,1962,1967,3,280,140, + 0,1963,1964,5,4,0,0,1964,1966,3,280,140,0,1965,1963,1,0,0,0,1966, 1969,1,0,0,0,1967,1965,1,0,0,0,1967,1968,1,0,0,0,1968,1971,1,0,0, 0,1969,1967,1,0,0,0,1970,1960,1,0,0,0,1970,1971,1,0,0,0,1971,1982, - 1,0,0,0,1972,1973,5,278,0,0,1973,1974,5,31,0,0,1974,1979,3,108,54, - 0,1975,1976,5,4,0,0,1976,1978,3,108,54,0,1977,1975,1,0,0,0,1978, + 1,0,0,0,1972,1973,5,93,0,0,1973,1974,5,31,0,0,1974,1979,3,280,140, + 0,1975,1976,5,4,0,0,1976,1978,3,280,140,0,1977,1975,1,0,0,0,1978, 1981,1,0,0,0,1979,1977,1,0,0,0,1979,1980,1,0,0,0,1980,1983,1,0,0, - 0,1981,1979,1,0,0,0,1982,1972,1,0,0,0,1982,1983,1,0,0,0,1983,1985, - 1,0,0,0,1984,1986,3,352,176,0,1985,1984,1,0,0,0,1985,1986,1,0,0, - 0,1986,1992,1,0,0,0,1987,1990,5,165,0,0,1988,1991,5,10,0,0,1989, - 1991,3,268,134,0,1990,1988,1,0,0,0,1990,1989,1,0,0,0,1991,1993,1, - 0,0,0,1992,1987,1,0,0,0,1992,1993,1,0,0,0,1993,1996,1,0,0,0,1994, - 1995,5,202,0,0,1995,1997,3,268,134,0,1996,1994,1,0,0,0,1996,1997, - 1,0,0,0,1997,101,1,0,0,0,1998,1999,3,28,14,0,1999,2000,3,112,56, - 0,2000,103,1,0,0,0,2001,2002,6,52,-1,0,2002,2003,3,106,53,0,2003, - 2024,1,0,0,0,2004,2005,10,3,0,0,2005,2007,7,13,0,0,2006,2008,3,196, - 98,0,2007,2006,1,0,0,0,2007,2008,1,0,0,0,2008,2009,1,0,0,0,2009, - 2023,3,104,52,4,2010,2011,10,2,0,0,2011,2013,5,148,0,0,2012,2014, - 3,196,98,0,2013,2012,1,0,0,0,2013,2014,1,0,0,0,2014,2015,1,0,0,0, - 2015,2023,3,104,52,3,2016,2017,10,1,0,0,2017,2019,7,14,0,0,2018, - 2020,3,196,98,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1, - 0,0,0,2021,2023,3,104,52,2,2022,2004,1,0,0,0,2022,2010,1,0,0,0,2022, - 2016,1,0,0,0,2023,2026,1,0,0,0,2024,2022,1,0,0,0,2024,2025,1,0,0, - 0,2025,105,1,0,0,0,2026,2024,1,0,0,0,2027,2037,3,114,57,0,2028,2037, - 3,110,55,0,2029,2030,5,293,0,0,2030,2037,3,86,43,0,2031,2037,3,226, - 113,0,2032,2033,5,2,0,0,2033,2034,3,26,13,0,2034,2035,5,3,0,0,2035, - 2037,1,0,0,0,2036,2027,1,0,0,0,2036,2028,1,0,0,0,2036,2029,1,0,0, - 0,2036,2031,1,0,0,0,2036,2032,1,0,0,0,2037,107,1,0,0,0,2038,2041, - 3,92,46,0,2039,2041,3,268,134,0,2040,2038,1,0,0,0,2040,2039,1,0, - 0,0,2041,2043,1,0,0,0,2042,2044,7,15,0,0,2043,2042,1,0,0,0,2043, - 2044,1,0,0,0,2044,2047,1,0,0,0,2045,2046,5,199,0,0,2046,2048,7,16, - 0,0,2047,2045,1,0,0,0,2047,2048,1,0,0,0,2048,109,1,0,0,0,2049,2051, - 3,146,73,0,2050,2052,3,112,56,0,2051,2050,1,0,0,0,2052,2053,1,0, - 0,0,2053,2051,1,0,0,0,2053,2054,1,0,0,0,2054,111,1,0,0,0,2055,2057, - 3,116,58,0,2056,2058,3,138,69,0,2057,2056,1,0,0,0,2057,2058,1,0, - 0,0,2058,2059,1,0,0,0,2059,2060,3,100,50,0,2060,2083,1,0,0,0,2061, - 2065,3,118,59,0,2062,2064,3,194,97,0,2063,2062,1,0,0,0,2064,2067, - 1,0,0,0,2065,2063,1,0,0,0,2065,2066,1,0,0,0,2066,2069,1,0,0,0,2067, - 2065,1,0,0,0,2068,2070,3,138,69,0,2069,2068,1,0,0,0,2069,2070,1, - 0,0,0,2070,2072,1,0,0,0,2071,2073,3,152,76,0,2072,2071,1,0,0,0,2072, - 2073,1,0,0,0,2073,2075,1,0,0,0,2074,2076,3,140,70,0,2075,2074,1, - 0,0,0,2075,2076,1,0,0,0,2076,2078,1,0,0,0,2077,2079,3,352,176,0, - 2078,2077,1,0,0,0,2078,2079,1,0,0,0,2079,2080,1,0,0,0,2080,2081, - 3,100,50,0,2081,2083,1,0,0,0,2082,2055,1,0,0,0,2082,2061,1,0,0,0, - 2083,113,1,0,0,0,2084,2086,3,116,58,0,2085,2087,3,146,73,0,2086, - 2085,1,0,0,0,2086,2087,1,0,0,0,2087,2091,1,0,0,0,2088,2090,3,194, - 97,0,2089,2088,1,0,0,0,2090,2093,1,0,0,0,2091,2089,1,0,0,0,2091, - 2092,1,0,0,0,2092,2095,1,0,0,0,2093,2091,1,0,0,0,2094,2096,3,138, - 69,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2098,1,0,0,0,2097, - 2099,3,152,76,0,2098,2097,1,0,0,0,2098,2099,1,0,0,0,2099,2101,1, - 0,0,0,2100,2102,3,140,70,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102, - 2104,1,0,0,0,2103,2105,3,352,176,0,2104,2103,1,0,0,0,2104,2105,1, - 0,0,0,2105,2129,1,0,0,0,2106,2108,3,118,59,0,2107,2109,3,146,73, - 0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2113,1,0,0,0,2110,2112, - 3,194,97,0,2111,2110,1,0,0,0,2112,2115,1,0,0,0,2113,2111,1,0,0,0, - 2113,2114,1,0,0,0,2114,2117,1,0,0,0,2115,2113,1,0,0,0,2116,2118, - 3,138,69,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2120,1,0,0,0, - 2119,2121,3,152,76,0,2120,2119,1,0,0,0,2120,2121,1,0,0,0,2121,2123, - 1,0,0,0,2122,2124,3,140,70,0,2123,2122,1,0,0,0,2123,2124,1,0,0,0, - 2124,2126,1,0,0,0,2125,2127,3,352,176,0,2126,2125,1,0,0,0,2126,2127, - 1,0,0,0,2127,2129,1,0,0,0,2128,2084,1,0,0,0,2128,2106,1,0,0,0,2129, - 115,1,0,0,0,2130,2131,5,263,0,0,2131,2132,5,314,0,0,2132,2134,5, - 2,0,0,2133,2135,3,196,98,0,2134,2133,1,0,0,0,2134,2135,1,0,0,0,2135, - 2136,1,0,0,0,2136,2137,3,274,137,0,2137,2138,5,3,0,0,2138,2150,1, - 0,0,0,2139,2141,5,177,0,0,2140,2142,3,196,98,0,2141,2140,1,0,0,0, - 2141,2142,1,0,0,0,2142,2143,1,0,0,0,2143,2150,3,274,137,0,2144,2146, - 5,238,0,0,2145,2147,3,196,98,0,2146,2145,1,0,0,0,2146,2147,1,0,0, - 0,2147,2148,1,0,0,0,2148,2150,3,274,137,0,2149,2130,1,0,0,0,2149, - 2139,1,0,0,0,2149,2144,1,0,0,0,2150,2152,1,0,0,0,2151,2153,3,242, - 121,0,2152,2151,1,0,0,0,2152,2153,1,0,0,0,2153,2156,1,0,0,0,2154, - 2155,5,236,0,0,2155,2157,3,388,194,0,2156,2154,1,0,0,0,2156,2157, - 1,0,0,0,2157,2158,1,0,0,0,2158,2159,5,332,0,0,2159,2172,3,388,194, - 0,2160,2170,5,20,0,0,2161,2171,3,214,107,0,2162,2171,3,334,167,0, - 2163,2166,5,2,0,0,2164,2167,3,214,107,0,2165,2167,3,334,167,0,2166, - 2164,1,0,0,0,2166,2165,1,0,0,0,2167,2168,1,0,0,0,2168,2169,5,3,0, - 0,2169,2171,1,0,0,0,2170,2161,1,0,0,0,2170,2162,1,0,0,0,2170,2163, - 1,0,0,0,2171,2173,1,0,0,0,2172,2160,1,0,0,0,2172,2173,1,0,0,0,2173, - 2175,1,0,0,0,2174,2176,3,242,121,0,2175,2174,1,0,0,0,2175,2176,1, - 0,0,0,2176,2179,1,0,0,0,2177,2178,5,235,0,0,2178,2180,3,388,194, - 0,2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,117,1,0,0,0,2181,2185, - 5,263,0,0,2182,2184,3,142,71,0,2183,2182,1,0,0,0,2184,2187,1,0,0, - 0,2185,2183,1,0,0,0,2185,2186,1,0,0,0,2186,2189,1,0,0,0,2187,2185, - 1,0,0,0,2188,2190,3,196,98,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0, - 2190,2191,1,0,0,0,2191,2192,3,258,129,0,2192,119,1,0,0,0,2193,2194, - 5,269,0,0,2194,2195,3,134,67,0,2195,121,1,0,0,0,2196,2197,5,343, - 0,0,2197,2200,5,178,0,0,2198,2199,5,14,0,0,2199,2201,3,276,138,0, - 2200,2198,1,0,0,0,2200,2201,1,0,0,0,2201,2202,1,0,0,0,2202,2203, - 5,300,0,0,2203,2204,3,128,64,0,2204,123,1,0,0,0,2205,2206,5,343, - 0,0,2206,2207,5,197,0,0,2207,2210,5,178,0,0,2208,2209,5,31,0,0,2209, - 2211,5,296,0,0,2210,2208,1,0,0,0,2210,2211,1,0,0,0,2211,2214,1,0, - 0,0,2212,2213,5,14,0,0,2213,2215,3,276,138,0,2214,2212,1,0,0,0,2214, - 2215,1,0,0,0,2215,2216,1,0,0,0,2216,2217,5,300,0,0,2217,2218,3,130, - 65,0,2218,125,1,0,0,0,2219,2220,5,343,0,0,2220,2221,5,197,0,0,2221, - 2222,5,178,0,0,2222,2223,5,31,0,0,2223,2226,5,280,0,0,2224,2225, - 5,14,0,0,2225,2227,3,276,138,0,2226,2224,1,0,0,0,2226,2227,1,0,0, - 0,2227,2228,1,0,0,0,2228,2229,5,300,0,0,2229,2230,3,132,66,0,2230, - 127,1,0,0,0,2231,2239,5,84,0,0,2232,2233,5,329,0,0,2233,2234,5,269, - 0,0,2234,2239,5,363,0,0,2235,2236,5,329,0,0,2236,2237,5,269,0,0, - 2237,2239,3,134,67,0,2238,2231,1,0,0,0,2238,2232,1,0,0,0,2238,2235, - 1,0,0,0,2239,129,1,0,0,0,2240,2241,5,147,0,0,2241,2259,5,363,0,0, - 2242,2243,5,147,0,0,2243,2244,5,2,0,0,2244,2245,3,244,122,0,2245, - 2246,5,3,0,0,2246,2247,5,333,0,0,2247,2248,5,2,0,0,2248,2253,3,268, - 134,0,2249,2250,5,4,0,0,2250,2252,3,268,134,0,2251,2249,1,0,0,0, - 2252,2255,1,0,0,0,2253,2251,1,0,0,0,2253,2254,1,0,0,0,2254,2256, - 1,0,0,0,2255,2253,1,0,0,0,2256,2257,5,3,0,0,2257,2259,1,0,0,0,2258, - 2240,1,0,0,0,2258,2242,1,0,0,0,2259,131,1,0,0,0,2260,2265,5,84,0, - 0,2261,2262,5,329,0,0,2262,2263,5,269,0,0,2263,2265,3,134,67,0,2264, - 2260,1,0,0,0,2264,2261,1,0,0,0,2265,133,1,0,0,0,2266,2271,3,136, - 68,0,2267,2268,5,4,0,0,2268,2270,3,136,68,0,2269,2267,1,0,0,0,2270, - 2273,1,0,0,0,2271,2269,1,0,0,0,2271,2272,1,0,0,0,2272,135,1,0,0, - 0,2273,2271,1,0,0,0,2274,2275,3,246,123,0,2275,2276,5,352,0,0,2276, - 2277,3,268,134,0,2277,137,1,0,0,0,2278,2279,5,344,0,0,2279,2280, - 3,276,138,0,2280,139,1,0,0,0,2281,2282,5,132,0,0,2282,2283,3,276, - 138,0,2283,141,1,0,0,0,2284,2285,5,374,0,0,2285,2292,3,144,72,0, - 2286,2288,5,4,0,0,2287,2286,1,0,0,0,2287,2288,1,0,0,0,2288,2289, - 1,0,0,0,2289,2291,3,144,72,0,2290,2287,1,0,0,0,2291,2294,1,0,0,0, - 2292,2290,1,0,0,0,2292,2293,1,0,0,0,2293,2295,1,0,0,0,2294,2292, - 1,0,0,0,2295,2296,5,375,0,0,2296,143,1,0,0,0,2297,2311,3,376,188, - 0,2298,2299,3,376,188,0,2299,2300,5,2,0,0,2300,2305,3,284,142,0, - 2301,2302,5,4,0,0,2302,2304,3,284,142,0,2303,2301,1,0,0,0,2304,2307, - 1,0,0,0,2305,2303,1,0,0,0,2305,2306,1,0,0,0,2306,2308,1,0,0,0,2307, - 2305,1,0,0,0,2308,2309,5,3,0,0,2309,2311,1,0,0,0,2310,2297,1,0,0, - 0,2310,2298,1,0,0,0,2311,145,1,0,0,0,2312,2313,5,123,0,0,2313,2318, - 3,198,99,0,2314,2315,5,4,0,0,2315,2317,3,198,99,0,2316,2314,1,0, - 0,0,2317,2320,1,0,0,0,2318,2316,1,0,0,0,2318,2319,1,0,0,0,2319,2324, - 1,0,0,0,2320,2318,1,0,0,0,2321,2323,3,194,97,0,2322,2321,1,0,0,0, - 2323,2326,1,0,0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2328, - 1,0,0,0,2326,2324,1,0,0,0,2327,2329,3,162,81,0,2328,2327,1,0,0,0, - 2328,2329,1,0,0,0,2329,2331,1,0,0,0,2330,2332,3,168,84,0,2331,2330, - 1,0,0,0,2331,2332,1,0,0,0,2332,147,1,0,0,0,2333,2334,7,17,0,0,2334, - 149,1,0,0,0,2335,2337,5,119,0,0,2336,2335,1,0,0,0,2336,2337,1,0, - 0,0,2337,2338,1,0,0,0,2338,2339,7,18,0,0,2339,2340,5,20,0,0,2340, - 2341,5,201,0,0,2341,2350,3,392,196,0,2342,2344,5,119,0,0,2343,2342, - 1,0,0,0,2343,2344,1,0,0,0,2344,2345,1,0,0,0,2345,2346,7,19,0,0,2346, - 2347,5,20,0,0,2347,2348,5,201,0,0,2348,2350,3,280,140,0,2349,2336, - 1,0,0,0,2349,2343,1,0,0,0,2350,151,1,0,0,0,2351,2352,5,130,0,0,2352, - 2353,5,31,0,0,2353,2358,3,154,77,0,2354,2355,5,4,0,0,2355,2357,3, - 154,77,0,2356,2354,1,0,0,0,2357,2360,1,0,0,0,2358,2356,1,0,0,0,2358, - 2359,1,0,0,0,2359,2391,1,0,0,0,2360,2358,1,0,0,0,2361,2362,5,130, - 0,0,2362,2363,5,31,0,0,2363,2368,3,268,134,0,2364,2365,5,4,0,0,2365, - 2367,3,268,134,0,2366,2364,1,0,0,0,2367,2370,1,0,0,0,2368,2366,1, - 0,0,0,2368,2369,1,0,0,0,2369,2388,1,0,0,0,2370,2368,1,0,0,0,2371, - 2372,5,346,0,0,2372,2389,5,256,0,0,2373,2374,5,346,0,0,2374,2389, - 5,61,0,0,2375,2376,5,131,0,0,2376,2377,5,271,0,0,2377,2378,5,2,0, - 0,2378,2383,3,160,80,0,2379,2380,5,4,0,0,2380,2382,3,160,80,0,2381, - 2379,1,0,0,0,2382,2385,1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0, - 0,2384,2386,1,0,0,0,2385,2383,1,0,0,0,2386,2387,5,3,0,0,2387,2389, - 1,0,0,0,2388,2371,1,0,0,0,2388,2373,1,0,0,0,2388,2375,1,0,0,0,2388, - 2389,1,0,0,0,2389,2391,1,0,0,0,2390,2351,1,0,0,0,2390,2361,1,0,0, - 0,2391,153,1,0,0,0,2392,2396,3,92,46,0,2393,2396,3,156,78,0,2394, - 2396,3,268,134,0,2395,2392,1,0,0,0,2395,2393,1,0,0,0,2395,2394,1, - 0,0,0,2396,155,1,0,0,0,2397,2398,7,20,0,0,2398,2399,5,2,0,0,2399, - 2404,3,160,80,0,2400,2401,5,4,0,0,2401,2403,3,160,80,0,2402,2400, - 1,0,0,0,2403,2406,1,0,0,0,2404,2402,1,0,0,0,2404,2405,1,0,0,0,2405, - 2407,1,0,0,0,2406,2404,1,0,0,0,2407,2408,5,3,0,0,2408,2423,1,0,0, - 0,2409,2410,5,131,0,0,2410,2411,5,271,0,0,2411,2412,5,2,0,0,2412, - 2417,3,158,79,0,2413,2414,5,4,0,0,2414,2416,3,158,79,0,2415,2413, - 1,0,0,0,2416,2419,1,0,0,0,2417,2415,1,0,0,0,2417,2418,1,0,0,0,2418, - 2420,1,0,0,0,2419,2417,1,0,0,0,2420,2421,5,3,0,0,2421,2423,1,0,0, - 0,2422,2397,1,0,0,0,2422,2409,1,0,0,0,2423,157,1,0,0,0,2424,2427, - 3,156,78,0,2425,2427,3,160,80,0,2426,2424,1,0,0,0,2426,2425,1,0, - 0,0,2427,159,1,0,0,0,2428,2449,3,92,46,0,2429,2449,3,268,134,0,2430, - 2445,5,2,0,0,2431,2434,3,92,46,0,2432,2434,3,268,134,0,2433,2431, - 1,0,0,0,2433,2432,1,0,0,0,2434,2442,1,0,0,0,2435,2438,5,4,0,0,2436, - 2439,3,92,46,0,2437,2439,3,268,134,0,2438,2436,1,0,0,0,2438,2437, - 1,0,0,0,2439,2441,1,0,0,0,2440,2435,1,0,0,0,2441,2444,1,0,0,0,2442, - 2440,1,0,0,0,2442,2443,1,0,0,0,2443,2446,1,0,0,0,2444,2442,1,0,0, - 0,2445,2433,1,0,0,0,2445,2446,1,0,0,0,2446,2447,1,0,0,0,2447,2449, - 5,3,0,0,2448,2428,1,0,0,0,2448,2429,1,0,0,0,2448,2430,1,0,0,0,2449, - 161,1,0,0,0,2450,2451,5,223,0,0,2451,2452,5,2,0,0,2452,2453,3,258, - 129,0,2453,2454,5,119,0,0,2454,2455,3,164,82,0,2455,2456,5,140,0, - 0,2456,2457,5,2,0,0,2457,2462,3,166,83,0,2458,2459,5,4,0,0,2459, - 2461,3,166,83,0,2460,2458,1,0,0,0,2461,2464,1,0,0,0,2462,2460,1, - 0,0,0,2462,2463,1,0,0,0,2463,2465,1,0,0,0,2464,2462,1,0,0,0,2465, - 2466,5,3,0,0,2466,2467,5,3,0,0,2467,163,1,0,0,0,2468,2481,3,376, - 188,0,2469,2470,5,2,0,0,2470,2475,3,376,188,0,2471,2472,5,4,0,0, - 2472,2474,3,376,188,0,2473,2471,1,0,0,0,2474,2477,1,0,0,0,2475,2473, - 1,0,0,0,2475,2476,1,0,0,0,2476,2478,1,0,0,0,2477,2475,1,0,0,0,2478, - 2479,5,3,0,0,2479,2481,1,0,0,0,2480,2468,1,0,0,0,2480,2469,1,0,0, - 0,2481,165,1,0,0,0,2482,2487,3,268,134,0,2483,2485,5,20,0,0,2484, - 2483,1,0,0,0,2484,2485,1,0,0,0,2485,2486,1,0,0,0,2486,2488,3,376, - 188,0,2487,2484,1,0,0,0,2487,2488,1,0,0,0,2488,167,1,0,0,0,2489, - 2491,5,327,0,0,2490,2492,3,170,85,0,2491,2490,1,0,0,0,2491,2492, - 1,0,0,0,2492,2493,1,0,0,0,2493,2494,5,2,0,0,2494,2495,3,172,86,0, - 2495,2500,5,3,0,0,2496,2498,5,20,0,0,2497,2496,1,0,0,0,2497,2498, - 1,0,0,0,2498,2499,1,0,0,0,2499,2501,3,376,188,0,2500,2497,1,0,0, - 0,2500,2501,1,0,0,0,2501,169,1,0,0,0,2502,2503,7,21,0,0,2503,2504, - 5,199,0,0,2504,171,1,0,0,0,2505,2508,3,174,87,0,2506,2508,3,176, - 88,0,2507,2505,1,0,0,0,2507,2506,1,0,0,0,2508,173,1,0,0,0,2509,2510, - 3,180,90,0,2510,2511,5,119,0,0,2511,2512,3,182,91,0,2512,2513,5, - 140,0,0,2513,2514,5,2,0,0,2514,2519,3,184,92,0,2515,2516,5,4,0,0, - 2516,2518,3,184,92,0,2517,2515,1,0,0,0,2518,2521,1,0,0,0,2519,2517, - 1,0,0,0,2519,2520,1,0,0,0,2520,2522,1,0,0,0,2521,2519,1,0,0,0,2522, - 2523,5,3,0,0,2523,175,1,0,0,0,2524,2525,5,2,0,0,2525,2530,3,180, - 90,0,2526,2527,5,4,0,0,2527,2529,3,180,90,0,2528,2526,1,0,0,0,2529, - 2532,1,0,0,0,2530,2528,1,0,0,0,2530,2531,1,0,0,0,2531,2533,1,0,0, - 0,2532,2530,1,0,0,0,2533,2534,5,3,0,0,2534,2535,5,119,0,0,2535,2536, - 3,182,91,0,2536,2537,5,140,0,0,2537,2538,5,2,0,0,2538,2543,3,178, - 89,0,2539,2540,5,4,0,0,2540,2542,3,178,89,0,2541,2539,1,0,0,0,2542, - 2545,1,0,0,0,2543,2541,1,0,0,0,2543,2544,1,0,0,0,2544,2546,1,0,0, - 0,2545,2543,1,0,0,0,2546,2547,5,3,0,0,2547,177,1,0,0,0,2548,2549, - 5,2,0,0,2549,2554,3,186,93,0,2550,2551,5,4,0,0,2551,2553,3,186,93, - 0,2552,2550,1,0,0,0,2553,2556,1,0,0,0,2554,2552,1,0,0,0,2554,2555, - 1,0,0,0,2555,2557,1,0,0,0,2556,2554,1,0,0,0,2557,2559,5,3,0,0,2558, - 2560,3,188,94,0,2559,2558,1,0,0,0,2559,2560,1,0,0,0,2560,179,1,0, - 0,0,2561,2562,3,376,188,0,2562,181,1,0,0,0,2563,2564,3,376,188,0, - 2564,183,1,0,0,0,2565,2567,3,186,93,0,2566,2568,3,188,94,0,2567, - 2566,1,0,0,0,2567,2568,1,0,0,0,2568,185,1,0,0,0,2569,2570,3,246, - 123,0,2570,187,1,0,0,0,2571,2573,5,20,0,0,2572,2571,1,0,0,0,2572, - 2573,1,0,0,0,2573,2574,1,0,0,0,2574,2575,3,376,188,0,2575,189,1, - 0,0,0,2576,2577,5,137,0,0,2577,2578,5,197,0,0,2578,2579,5,105,0, - 0,2579,191,1,0,0,0,2580,2581,5,137,0,0,2581,2582,5,105,0,0,2582, - 193,1,0,0,0,2583,2584,5,158,0,0,2584,2586,5,338,0,0,2585,2587,5, - 211,0,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2588,1,0,0,0,2588, - 2589,3,90,45,0,2589,2598,5,2,0,0,2590,2595,3,268,134,0,2591,2592, - 5,4,0,0,2592,2594,3,268,134,0,2593,2591,1,0,0,0,2594,2597,1,0,0, - 0,2595,2593,1,0,0,0,2595,2596,1,0,0,0,2596,2599,1,0,0,0,2597,2595, - 1,0,0,0,2598,2590,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600, - 2601,5,3,0,0,2601,2613,3,240,120,0,2602,2604,5,20,0,0,2603,2602, - 1,0,0,0,2603,2604,1,0,0,0,2604,2605,1,0,0,0,2605,2610,3,376,188, - 0,2606,2607,5,4,0,0,2607,2609,3,376,188,0,2608,2606,1,0,0,0,2609, - 2612,1,0,0,0,2610,2608,1,0,0,0,2610,2611,1,0,0,0,2611,2614,1,0,0, - 0,2612,2610,1,0,0,0,2613,2603,1,0,0,0,2613,2614,1,0,0,0,2614,195, - 1,0,0,0,2615,2616,7,22,0,0,2616,197,1,0,0,0,2617,2629,3,86,43,0, - 2618,2620,5,158,0,0,2619,2618,1,0,0,0,2619,2620,1,0,0,0,2620,2621, - 1,0,0,0,2621,2625,3,224,112,0,2622,2624,3,200,100,0,2623,2622,1, - 0,0,0,2624,2627,1,0,0,0,2625,2623,1,0,0,0,2625,2626,1,0,0,0,2626, - 2629,1,0,0,0,2627,2625,1,0,0,0,2628,2617,1,0,0,0,2628,2619,1,0,0, - 0,2629,199,1,0,0,0,2630,2634,3,202,101,0,2631,2634,3,162,81,0,2632, - 2634,3,168,84,0,2633,2630,1,0,0,0,2633,2631,1,0,0,0,2633,2632,1, - 0,0,0,2634,201,1,0,0,0,2635,2636,3,204,102,0,2636,2638,5,155,0,0, - 2637,2639,5,158,0,0,2638,2637,1,0,0,0,2638,2639,1,0,0,0,2639,2640, - 1,0,0,0,2640,2642,3,224,112,0,2641,2643,3,206,103,0,2642,2641,1, - 0,0,0,2642,2643,1,0,0,0,2643,2653,1,0,0,0,2644,2645,5,194,0,0,2645, - 2646,3,204,102,0,2646,2648,5,155,0,0,2647,2649,5,158,0,0,2648,2647, - 1,0,0,0,2648,2649,1,0,0,0,2649,2650,1,0,0,0,2650,2651,3,224,112, - 0,2651,2653,1,0,0,0,2652,2635,1,0,0,0,2652,2644,1,0,0,0,2653,203, - 1,0,0,0,2654,2656,5,144,0,0,2655,2654,1,0,0,0,2655,2656,1,0,0,0, - 2656,2679,1,0,0,0,2657,2679,5,60,0,0,2658,2660,5,161,0,0,2659,2661, - 5,211,0,0,2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2679,1,0,0,0, - 2662,2664,5,161,0,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665, - 1,0,0,0,2665,2679,5,264,0,0,2666,2668,5,250,0,0,2667,2669,5,211, - 0,0,2668,2667,1,0,0,0,2668,2669,1,0,0,0,2669,2679,1,0,0,0,2670,2672, - 5,124,0,0,2671,2673,5,211,0,0,2672,2671,1,0,0,0,2672,2673,1,0,0, - 0,2673,2679,1,0,0,0,2674,2676,5,161,0,0,2675,2674,1,0,0,0,2675,2676, - 1,0,0,0,2676,2677,1,0,0,0,2677,2679,5,15,0,0,2678,2655,1,0,0,0,2678, - 2657,1,0,0,0,2678,2658,1,0,0,0,2678,2663,1,0,0,0,2678,2666,1,0,0, - 0,2678,2670,1,0,0,0,2678,2675,1,0,0,0,2679,205,1,0,0,0,2680,2681, - 5,203,0,0,2681,2685,3,276,138,0,2682,2683,5,332,0,0,2683,2685,3, - 212,106,0,2684,2680,1,0,0,0,2684,2682,1,0,0,0,2685,207,1,0,0,0,2686, - 2687,5,295,0,0,2687,2689,5,2,0,0,2688,2690,3,210,105,0,2689,2688, - 1,0,0,0,2689,2690,1,0,0,0,2690,2691,1,0,0,0,2691,2696,5,3,0,0,2692, - 2693,5,243,0,0,2693,2694,5,2,0,0,2694,2695,5,382,0,0,2695,2697,5, - 3,0,0,2696,2692,1,0,0,0,2696,2697,1,0,0,0,2697,209,1,0,0,0,2698, - 2700,5,362,0,0,2699,2698,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0, - 0,0,2701,2702,7,23,0,0,2702,2723,5,222,0,0,2703,2704,3,268,134,0, - 2704,2705,5,258,0,0,2705,2723,1,0,0,0,2706,2707,5,29,0,0,2707,2708, - 5,382,0,0,2708,2709,5,210,0,0,2709,2710,5,201,0,0,2710,2719,5,382, - 0,0,2711,2717,5,203,0,0,2712,2718,3,376,188,0,2713,2714,3,370,185, - 0,2714,2715,5,2,0,0,2715,2716,5,3,0,0,2716,2718,1,0,0,0,2717,2712, - 1,0,0,0,2717,2713,1,0,0,0,2718,2720,1,0,0,0,2719,2711,1,0,0,0,2719, - 2720,1,0,0,0,2720,2723,1,0,0,0,2721,2723,3,268,134,0,2722,2699,1, - 0,0,0,2722,2703,1,0,0,0,2722,2706,1,0,0,0,2722,2721,1,0,0,0,2723, - 211,1,0,0,0,2724,2725,5,2,0,0,2725,2726,3,214,107,0,2726,2727,5, - 3,0,0,2727,213,1,0,0,0,2728,2733,3,372,186,0,2729,2730,5,4,0,0,2730, - 2732,3,372,186,0,2731,2729,1,0,0,0,2732,2735,1,0,0,0,2733,2731,1, - 0,0,0,2733,2734,1,0,0,0,2734,215,1,0,0,0,2735,2733,1,0,0,0,2736, - 2737,5,2,0,0,2737,2742,3,218,109,0,2738,2739,5,4,0,0,2739,2741,3, - 218,109,0,2740,2738,1,0,0,0,2741,2744,1,0,0,0,2742,2740,1,0,0,0, - 2742,2743,1,0,0,0,2743,2745,1,0,0,0,2744,2742,1,0,0,0,2745,2746, - 5,3,0,0,2746,217,1,0,0,0,2747,2749,3,372,186,0,2748,2750,7,15,0, - 0,2749,2748,1,0,0,0,2749,2750,1,0,0,0,2750,219,1,0,0,0,2751,2752, - 5,2,0,0,2752,2757,3,222,111,0,2753,2754,5,4,0,0,2754,2756,3,222, - 111,0,2755,2753,1,0,0,0,2756,2759,1,0,0,0,2757,2755,1,0,0,0,2757, - 2758,1,0,0,0,2758,2760,1,0,0,0,2759,2757,1,0,0,0,2760,2761,5,3,0, - 0,2761,221,1,0,0,0,2762,2764,3,96,48,0,2763,2765,3,24,12,0,2764, - 2763,1,0,0,0,2764,2765,1,0,0,0,2765,223,1,0,0,0,2766,2770,3,86,43, - 0,2767,2770,3,90,45,0,2768,2770,3,98,49,0,2769,2766,1,0,0,0,2769, - 2767,1,0,0,0,2769,2768,1,0,0,0,2770,2772,1,0,0,0,2771,2773,3,150, - 75,0,2772,2771,1,0,0,0,2772,2773,1,0,0,0,2773,2775,1,0,0,0,2774, - 2776,3,208,104,0,2775,2774,1,0,0,0,2775,2776,1,0,0,0,2776,2777,1, - 0,0,0,2777,2778,3,240,120,0,2778,2798,1,0,0,0,2779,2780,5,2,0,0, - 2780,2781,3,26,13,0,2781,2783,5,3,0,0,2782,2784,3,208,104,0,2783, - 2782,1,0,0,0,2783,2784,1,0,0,0,2784,2785,1,0,0,0,2785,2786,3,240, - 120,0,2786,2798,1,0,0,0,2787,2788,5,2,0,0,2788,2789,3,198,99,0,2789, - 2791,5,3,0,0,2790,2792,3,208,104,0,2791,2790,1,0,0,0,2791,2792,1, - 0,0,0,2792,2793,1,0,0,0,2793,2794,3,240,120,0,2794,2798,1,0,0,0, - 2795,2798,3,226,113,0,2796,2798,3,238,119,0,2797,2769,1,0,0,0,2797, - 2779,1,0,0,0,2797,2787,1,0,0,0,2797,2795,1,0,0,0,2797,2796,1,0,0, - 0,2798,225,1,0,0,0,2799,2800,5,333,0,0,2800,2805,3,268,134,0,2801, - 2802,5,4,0,0,2802,2804,3,268,134,0,2803,2801,1,0,0,0,2804,2807,1, - 0,0,0,2805,2803,1,0,0,0,2805,2806,1,0,0,0,2806,2808,1,0,0,0,2807, - 2805,1,0,0,0,2808,2809,3,240,120,0,2809,227,1,0,0,0,2810,2811,5, - 293,0,0,2811,2813,3,86,43,0,2812,2814,3,230,115,0,2813,2812,1,0, - 0,0,2813,2814,1,0,0,0,2814,2830,1,0,0,0,2815,2816,5,293,0,0,2816, - 2817,5,2,0,0,2817,2818,3,86,43,0,2818,2820,5,3,0,0,2819,2821,3,230, - 115,0,2820,2819,1,0,0,0,2820,2821,1,0,0,0,2821,2830,1,0,0,0,2822, - 2823,5,293,0,0,2823,2824,5,2,0,0,2824,2825,3,26,13,0,2825,2827,5, - 3,0,0,2826,2828,3,230,115,0,2827,2826,1,0,0,0,2827,2828,1,0,0,0, - 2828,2830,1,0,0,0,2829,2810,1,0,0,0,2829,2815,1,0,0,0,2829,2822, - 1,0,0,0,2830,229,1,0,0,0,2831,2832,5,346,0,0,2832,2833,5,274,0,0, - 2833,2851,5,217,0,0,2834,2835,7,24,0,0,2835,2848,5,31,0,0,2836,2837, - 5,2,0,0,2837,2842,3,268,134,0,2838,2839,5,4,0,0,2839,2841,3,268, - 134,0,2840,2838,1,0,0,0,2841,2844,1,0,0,0,2842,2840,1,0,0,0,2842, - 2843,1,0,0,0,2843,2845,1,0,0,0,2844,2842,1,0,0,0,2845,2846,5,3,0, - 0,2846,2849,1,0,0,0,2847,2849,3,268,134,0,2848,2836,1,0,0,0,2848, - 2847,1,0,0,0,2849,2851,1,0,0,0,2850,2831,1,0,0,0,2850,2834,1,0,0, - 0,2851,2868,1,0,0,0,2852,2853,7,25,0,0,2853,2866,5,31,0,0,2854,2855, - 5,2,0,0,2855,2860,3,108,54,0,2856,2857,5,4,0,0,2857,2859,3,108,54, - 0,2858,2856,1,0,0,0,2859,2862,1,0,0,0,2860,2858,1,0,0,0,2860,2861, - 1,0,0,0,2861,2863,1,0,0,0,2862,2860,1,0,0,0,2863,2864,5,3,0,0,2864, - 2867,1,0,0,0,2865,2867,3,108,54,0,2866,2854,1,0,0,0,2866,2865,1, - 0,0,0,2867,2869,1,0,0,0,2868,2852,1,0,0,0,2868,2869,1,0,0,0,2869, - 231,1,0,0,0,2870,2871,3,376,188,0,2871,2872,5,373,0,0,2872,2873, - 3,228,114,0,2873,233,1,0,0,0,2874,2877,3,228,114,0,2875,2877,3,232, - 116,0,2876,2874,1,0,0,0,2876,2875,1,0,0,0,2877,235,1,0,0,0,2878, - 2881,3,234,117,0,2879,2881,3,272,136,0,2880,2878,1,0,0,0,2880,2879, - 1,0,0,0,2881,237,1,0,0,0,2882,2883,3,366,183,0,2883,2892,5,2,0,0, - 2884,2889,3,236,118,0,2885,2886,5,4,0,0,2886,2888,3,236,118,0,2887, - 2885,1,0,0,0,2888,2891,1,0,0,0,2889,2887,1,0,0,0,2889,2890,1,0,0, - 0,2890,2893,1,0,0,0,2891,2889,1,0,0,0,2892,2884,1,0,0,0,2892,2893, - 1,0,0,0,2893,2894,1,0,0,0,2894,2895,5,3,0,0,2895,2896,3,240,120, - 0,2896,239,1,0,0,0,2897,2899,5,20,0,0,2898,2897,1,0,0,0,2898,2899, - 1,0,0,0,2899,2900,1,0,0,0,2900,2902,3,378,189,0,2901,2903,3,212, - 106,0,2902,2901,1,0,0,0,2902,2903,1,0,0,0,2903,2905,1,0,0,0,2904, - 2898,1,0,0,0,2904,2905,1,0,0,0,2905,241,1,0,0,0,2906,2907,5,257, - 0,0,2907,2908,5,121,0,0,2908,2909,5,266,0,0,2909,2913,3,388,194, - 0,2910,2911,5,346,0,0,2911,2912,5,267,0,0,2912,2914,3,54,27,0,2913, - 2910,1,0,0,0,2913,2914,1,0,0,0,2914,2956,1,0,0,0,2915,2916,5,257, - 0,0,2916,2917,5,121,0,0,2917,2927,5,85,0,0,2918,2919,5,113,0,0,2919, - 2920,5,299,0,0,2920,2921,5,31,0,0,2921,2925,3,388,194,0,2922,2923, - 5,101,0,0,2923,2924,5,31,0,0,2924,2926,3,388,194,0,2925,2922,1,0, - 0,0,2925,2926,1,0,0,0,2926,2928,1,0,0,0,2927,2918,1,0,0,0,2927,2928, - 1,0,0,0,2928,2934,1,0,0,0,2929,2930,5,48,0,0,2930,2931,5,154,0,0, - 2931,2932,5,299,0,0,2932,2933,5,31,0,0,2933,2935,3,388,194,0,2934, - 2929,1,0,0,0,2934,2935,1,0,0,0,2935,2941,1,0,0,0,2936,2937,5,177, - 0,0,2937,2938,5,156,0,0,2938,2939,5,299,0,0,2939,2940,5,31,0,0,2940, - 2942,3,388,194,0,2941,2936,1,0,0,0,2941,2942,1,0,0,0,2942,2947,1, - 0,0,0,2943,2944,5,166,0,0,2944,2945,5,299,0,0,2945,2946,5,31,0,0, - 2946,2948,3,388,194,0,2947,2943,1,0,0,0,2947,2948,1,0,0,0,2948,2953, - 1,0,0,0,2949,2950,5,198,0,0,2950,2951,5,83,0,0,2951,2952,5,20,0, - 0,2952,2954,3,388,194,0,2953,2949,1,0,0,0,2953,2954,1,0,0,0,2954, - 2956,1,0,0,0,2955,2906,1,0,0,0,2955,2915,1,0,0,0,2956,243,1,0,0, - 0,2957,2962,3,246,123,0,2958,2959,5,4,0,0,2959,2961,3,246,123,0, - 2960,2958,1,0,0,0,2961,2964,1,0,0,0,2962,2960,1,0,0,0,2962,2963, - 1,0,0,0,2963,245,1,0,0,0,2964,2962,1,0,0,0,2965,2970,3,372,186,0, - 2966,2967,5,5,0,0,2967,2969,3,372,186,0,2968,2966,1,0,0,0,2969,2972, - 1,0,0,0,2970,2968,1,0,0,0,2970,2971,1,0,0,0,2971,247,1,0,0,0,2972, - 2970,1,0,0,0,2973,2978,3,250,125,0,2974,2975,5,4,0,0,2975,2977,3, - 250,125,0,2976,2974,1,0,0,0,2977,2980,1,0,0,0,2978,2976,1,0,0,0, - 2978,2979,1,0,0,0,2979,249,1,0,0,0,2980,2978,1,0,0,0,2981,2984,3, - 246,123,0,2982,2983,5,207,0,0,2983,2985,3,54,27,0,2984,2982,1,0, - 0,0,2984,2985,1,0,0,0,2985,251,1,0,0,0,2986,2987,3,372,186,0,2987, - 2988,5,5,0,0,2988,2990,1,0,0,0,2989,2986,1,0,0,0,2989,2990,1,0,0, - 0,2990,2991,1,0,0,0,2991,2992,3,372,186,0,2992,253,1,0,0,0,2993, - 2994,3,372,186,0,2994,2995,5,5,0,0,2995,2997,1,0,0,0,2996,2993,1, - 0,0,0,2996,2997,1,0,0,0,2997,2998,1,0,0,0,2998,2999,3,372,186,0, - 2999,255,1,0,0,0,3000,3003,3,92,46,0,3001,3003,3,268,134,0,3002, - 3000,1,0,0,0,3002,3001,1,0,0,0,3003,3011,1,0,0,0,3004,3006,5,20, - 0,0,3005,3004,1,0,0,0,3005,3006,1,0,0,0,3006,3009,1,0,0,0,3007,3010, - 3,372,186,0,3008,3010,3,212,106,0,3009,3007,1,0,0,0,3009,3008,1, - 0,0,0,3010,3012,1,0,0,0,3011,3005,1,0,0,0,3011,3012,1,0,0,0,3012, - 257,1,0,0,0,3013,3018,3,256,128,0,3014,3015,5,4,0,0,3015,3017,3, - 256,128,0,3016,3014,1,0,0,0,3017,3020,1,0,0,0,3018,3016,1,0,0,0, - 3018,3019,1,0,0,0,3019,259,1,0,0,0,3020,3018,1,0,0,0,3021,3022,5, - 2,0,0,3022,3027,3,262,131,0,3023,3024,5,4,0,0,3024,3026,3,262,131, - 0,3025,3023,1,0,0,0,3026,3029,1,0,0,0,3027,3025,1,0,0,0,3027,3028, - 1,0,0,0,3028,3030,1,0,0,0,3029,3027,1,0,0,0,3030,3031,5,3,0,0,3031, - 261,1,0,0,0,3032,3035,3,264,132,0,3033,3035,3,336,168,0,3034,3032, - 1,0,0,0,3034,3033,1,0,0,0,3035,263,1,0,0,0,3036,3050,3,370,185,0, - 3037,3038,3,376,188,0,3038,3039,5,2,0,0,3039,3044,3,266,133,0,3040, - 3041,5,4,0,0,3041,3043,3,266,133,0,3042,3040,1,0,0,0,3043,3046,1, - 0,0,0,3044,3042,1,0,0,0,3044,3045,1,0,0,0,3045,3047,1,0,0,0,3046, - 3044,1,0,0,0,3047,3048,5,3,0,0,3048,3050,1,0,0,0,3049,3036,1,0,0, - 0,3049,3037,1,0,0,0,3050,265,1,0,0,0,3051,3054,3,370,185,0,3052, - 3054,3,288,144,0,3053,3051,1,0,0,0,3053,3052,1,0,0,0,3054,267,1, - 0,0,0,3055,3056,3,276,138,0,3056,269,1,0,0,0,3057,3058,3,376,188, - 0,3058,3059,5,373,0,0,3059,3060,3,268,134,0,3060,271,1,0,0,0,3061, - 3064,3,268,134,0,3062,3064,3,270,135,0,3063,3061,1,0,0,0,3063,3062, - 1,0,0,0,3064,273,1,0,0,0,3065,3070,3,268,134,0,3066,3067,5,4,0,0, - 3067,3069,3,268,134,0,3068,3066,1,0,0,0,3069,3072,1,0,0,0,3070,3068, - 1,0,0,0,3070,3071,1,0,0,0,3071,275,1,0,0,0,3072,3070,1,0,0,0,3073, - 3074,6,138,-1,0,3074,3075,7,26,0,0,3075,3086,3,276,138,5,3076,3077, - 5,105,0,0,3077,3078,5,2,0,0,3078,3079,3,26,13,0,3079,3080,5,3,0, - 0,3080,3086,1,0,0,0,3081,3083,3,280,140,0,3082,3084,3,278,139,0, - 3083,3082,1,0,0,0,3083,3084,1,0,0,0,3084,3086,1,0,0,0,3085,3073, - 1,0,0,0,3085,3076,1,0,0,0,3085,3081,1,0,0,0,3086,3095,1,0,0,0,3087, - 3088,10,2,0,0,3088,3089,5,14,0,0,3089,3094,3,276,138,3,3090,3091, - 10,1,0,0,3091,3092,5,208,0,0,3092,3094,3,276,138,2,3093,3087,1,0, - 0,0,3093,3090,1,0,0,0,3094,3097,1,0,0,0,3095,3093,1,0,0,0,3095,3096, - 1,0,0,0,3096,277,1,0,0,0,3097,3095,1,0,0,0,3098,3100,5,197,0,0,3099, - 3098,1,0,0,0,3099,3100,1,0,0,0,3100,3101,1,0,0,0,3101,3102,5,24, - 0,0,3102,3103,3,280,140,0,3103,3104,5,14,0,0,3104,3105,3,280,140, - 0,3105,3181,1,0,0,0,3106,3108,5,197,0,0,3107,3106,1,0,0,0,3107,3108, - 1,0,0,0,3108,3109,1,0,0,0,3109,3110,5,140,0,0,3110,3111,5,2,0,0, - 3111,3116,3,268,134,0,3112,3113,5,4,0,0,3113,3115,3,268,134,0,3114, - 3112,1,0,0,0,3115,3118,1,0,0,0,3116,3114,1,0,0,0,3116,3117,1,0,0, - 0,3117,3119,1,0,0,0,3118,3116,1,0,0,0,3119,3120,5,3,0,0,3120,3181, - 1,0,0,0,3121,3123,5,197,0,0,3122,3121,1,0,0,0,3122,3123,1,0,0,0, - 3123,3124,1,0,0,0,3124,3125,5,140,0,0,3125,3126,5,2,0,0,3126,3127, - 3,26,13,0,3127,3128,5,3,0,0,3128,3181,1,0,0,0,3129,3131,5,197,0, - 0,3130,3129,1,0,0,0,3130,3131,1,0,0,0,3131,3132,1,0,0,0,3132,3133, - 7,27,0,0,3133,3181,3,280,140,0,3134,3136,5,197,0,0,3135,3134,1,0, - 0,0,3135,3136,1,0,0,0,3136,3137,1,0,0,0,3137,3138,7,28,0,0,3138, - 3152,7,29,0,0,3139,3140,5,2,0,0,3140,3153,5,3,0,0,3141,3142,5,2, - 0,0,3142,3147,3,268,134,0,3143,3144,5,4,0,0,3144,3146,3,268,134, - 0,3145,3143,1,0,0,0,3146,3149,1,0,0,0,3147,3145,1,0,0,0,3147,3148, - 1,0,0,0,3148,3150,1,0,0,0,3149,3147,1,0,0,0,3150,3151,5,3,0,0,3151, - 3153,1,0,0,0,3152,3139,1,0,0,0,3152,3141,1,0,0,0,3153,3181,1,0,0, - 0,3154,3156,5,197,0,0,3155,3154,1,0,0,0,3155,3156,1,0,0,0,3156,3157, - 1,0,0,0,3157,3158,7,28,0,0,3158,3161,3,280,140,0,3159,3160,5,100, - 0,0,3160,3162,3,388,194,0,3161,3159,1,0,0,0,3161,3162,1,0,0,0,3162, - 3181,1,0,0,0,3163,3165,5,153,0,0,3164,3166,5,197,0,0,3165,3164,1, - 0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3181,5,198,0,0,3168, - 3170,5,153,0,0,3169,3171,5,197,0,0,3170,3169,1,0,0,0,3170,3171,1, - 0,0,0,3171,3172,1,0,0,0,3172,3181,7,30,0,0,3173,3175,5,153,0,0,3174, - 3176,5,197,0,0,3175,3174,1,0,0,0,3175,3176,1,0,0,0,3176,3177,1,0, - 0,0,3177,3178,5,92,0,0,3178,3179,5,123,0,0,3179,3181,3,280,140,0, - 3180,3099,1,0,0,0,3180,3107,1,0,0,0,3180,3122,1,0,0,0,3180,3130, - 1,0,0,0,3180,3135,1,0,0,0,3180,3155,1,0,0,0,3180,3163,1,0,0,0,3180, - 3168,1,0,0,0,3180,3173,1,0,0,0,3181,279,1,0,0,0,3182,3183,6,140, - -1,0,3183,3187,3,284,142,0,3184,3185,7,31,0,0,3185,3187,3,280,140, - 7,3186,3182,1,0,0,0,3186,3184,1,0,0,0,3187,3209,1,0,0,0,3188,3189, - 10,6,0,0,3189,3190,7,32,0,0,3190,3208,3,280,140,7,3191,3192,10,5, - 0,0,3192,3193,7,33,0,0,3193,3208,3,280,140,6,3194,3195,10,4,0,0, - 3195,3196,5,367,0,0,3196,3208,3,280,140,5,3197,3198,10,3,0,0,3198, - 3199,5,370,0,0,3199,3208,3,280,140,4,3200,3201,10,2,0,0,3201,3202, - 5,368,0,0,3202,3208,3,280,140,3,3203,3204,10,1,0,0,3204,3205,3,290, - 145,0,3205,3206,3,280,140,2,3206,3208,1,0,0,0,3207,3188,1,0,0,0, - 3207,3191,1,0,0,0,3207,3194,1,0,0,0,3207,3197,1,0,0,0,3207,3200, - 1,0,0,0,3207,3203,1,0,0,0,3208,3211,1,0,0,0,3209,3207,1,0,0,0,3209, - 3210,1,0,0,0,3210,281,1,0,0,0,3211,3209,1,0,0,0,3212,3213,7,34,0, - 0,3213,283,1,0,0,0,3214,3215,6,142,-1,0,3215,3464,7,35,0,0,3216, - 3217,7,36,0,0,3217,3220,5,2,0,0,3218,3221,3,282,141,0,3219,3221, - 3,388,194,0,3220,3218,1,0,0,0,3220,3219,1,0,0,0,3221,3222,1,0,0, - 0,3222,3223,5,4,0,0,3223,3224,3,280,140,0,3224,3225,5,4,0,0,3225, - 3226,3,280,140,0,3226,3227,5,3,0,0,3227,3464,1,0,0,0,3228,3229,7, - 37,0,0,3229,3232,5,2,0,0,3230,3233,3,282,141,0,3231,3233,3,388,194, - 0,3232,3230,1,0,0,0,3232,3231,1,0,0,0,3233,3234,1,0,0,0,3234,3235, - 5,4,0,0,3235,3236,3,280,140,0,3236,3237,5,4,0,0,3237,3238,3,280, - 140,0,3238,3239,5,3,0,0,3239,3464,1,0,0,0,3240,3242,5,35,0,0,3241, - 3243,3,350,175,0,3242,3241,1,0,0,0,3243,3244,1,0,0,0,3244,3242,1, - 0,0,0,3244,3245,1,0,0,0,3245,3248,1,0,0,0,3246,3247,5,97,0,0,3247, - 3249,3,268,134,0,3248,3246,1,0,0,0,3248,3249,1,0,0,0,3249,3250,1, - 0,0,0,3250,3251,5,99,0,0,3251,3464,1,0,0,0,3252,3253,5,35,0,0,3253, - 3255,3,268,134,0,3254,3256,3,350,175,0,3255,3254,1,0,0,0,3256,3257, - 1,0,0,0,3257,3255,1,0,0,0,3257,3258,1,0,0,0,3258,3261,1,0,0,0,3259, - 3260,5,97,0,0,3260,3262,3,268,134,0,3261,3259,1,0,0,0,3261,3262, - 1,0,0,0,3262,3263,1,0,0,0,3263,3264,5,99,0,0,3264,3464,1,0,0,0,3265, - 3266,7,38,0,0,3266,3267,5,2,0,0,3267,3268,3,268,134,0,3268,3269, - 5,20,0,0,3269,3270,3,318,159,0,3270,3271,5,3,0,0,3271,3464,1,0,0, - 0,3272,3273,5,286,0,0,3273,3282,5,2,0,0,3274,3279,3,256,128,0,3275, - 3276,5,4,0,0,3276,3278,3,256,128,0,3277,3275,1,0,0,0,3278,3281,1, - 0,0,0,3279,3277,1,0,0,0,3279,3280,1,0,0,0,3280,3283,1,0,0,0,3281, - 3279,1,0,0,0,3282,3274,1,0,0,0,3282,3283,1,0,0,0,3283,3284,1,0,0, - 0,3284,3464,5,3,0,0,3285,3286,5,116,0,0,3286,3287,5,2,0,0,3287,3290, - 3,268,134,0,3288,3289,5,138,0,0,3289,3291,5,199,0,0,3290,3288,1, - 0,0,0,3290,3291,1,0,0,0,3291,3292,1,0,0,0,3292,3293,5,3,0,0,3293, - 3464,1,0,0,0,3294,3295,5,17,0,0,3295,3296,5,2,0,0,3296,3299,3,268, - 134,0,3297,3298,5,138,0,0,3298,3300,5,199,0,0,3299,3297,1,0,0,0, - 3299,3300,1,0,0,0,3300,3301,1,0,0,0,3301,3302,5,3,0,0,3302,3464, - 1,0,0,0,3303,3304,5,157,0,0,3304,3305,5,2,0,0,3305,3308,3,268,134, - 0,3306,3307,5,138,0,0,3307,3309,5,199,0,0,3308,3306,1,0,0,0,3308, - 3309,1,0,0,0,3309,3310,1,0,0,0,3310,3311,5,3,0,0,3311,3464,1,0,0, - 0,3312,3313,5,225,0,0,3313,3314,5,2,0,0,3314,3315,3,280,140,0,3315, - 3316,5,140,0,0,3316,3317,3,280,140,0,3317,3318,5,3,0,0,3318,3464, - 1,0,0,0,3319,3464,3,288,144,0,3320,3464,5,363,0,0,3321,3322,3,370, - 185,0,3322,3323,5,5,0,0,3323,3324,5,363,0,0,3324,3464,1,0,0,0,3325, - 3326,5,2,0,0,3326,3329,3,256,128,0,3327,3328,5,4,0,0,3328,3330,3, - 256,128,0,3329,3327,1,0,0,0,3330,3331,1,0,0,0,3331,3329,1,0,0,0, - 3331,3332,1,0,0,0,3332,3333,1,0,0,0,3333,3334,5,3,0,0,3334,3464, - 1,0,0,0,3335,3336,5,2,0,0,3336,3337,3,26,13,0,3337,3338,5,3,0,0, - 3338,3464,1,0,0,0,3339,3340,5,136,0,0,3340,3341,5,2,0,0,3341,3342, - 3,268,134,0,3342,3343,5,3,0,0,3343,3464,1,0,0,0,3344,3345,3,366, - 183,0,3345,3357,5,2,0,0,3346,3348,3,196,98,0,3347,3346,1,0,0,0,3347, - 3348,1,0,0,0,3348,3349,1,0,0,0,3349,3354,3,272,136,0,3350,3351,5, - 4,0,0,3351,3353,3,272,136,0,3352,3350,1,0,0,0,3353,3356,1,0,0,0, - 3354,3352,1,0,0,0,3354,3355,1,0,0,0,3355,3358,1,0,0,0,3356,3354, - 1,0,0,0,3357,3347,1,0,0,0,3357,3358,1,0,0,0,3358,3359,1,0,0,0,3359, - 3366,5,3,0,0,3360,3361,5,114,0,0,3361,3362,5,2,0,0,3362,3363,5,344, - 0,0,3363,3364,3,276,138,0,3364,3365,5,3,0,0,3365,3367,1,0,0,0,3366, - 3360,1,0,0,0,3366,3367,1,0,0,0,3367,3370,1,0,0,0,3368,3369,7,39, - 0,0,3369,3371,5,199,0,0,3370,3368,1,0,0,0,3370,3371,1,0,0,0,3371, - 3374,1,0,0,0,3372,3373,5,213,0,0,3373,3375,3,358,179,0,3374,3372, - 1,0,0,0,3374,3375,1,0,0,0,3375,3464,1,0,0,0,3376,3377,3,376,188, - 0,3377,3378,5,372,0,0,3378,3379,3,268,134,0,3379,3464,1,0,0,0,3380, - 3381,5,2,0,0,3381,3384,3,376,188,0,3382,3383,5,4,0,0,3383,3385,3, - 376,188,0,3384,3382,1,0,0,0,3385,3386,1,0,0,0,3386,3384,1,0,0,0, - 3386,3387,1,0,0,0,3387,3388,1,0,0,0,3388,3389,5,3,0,0,3389,3390, - 5,372,0,0,3390,3391,3,268,134,0,3391,3464,1,0,0,0,3392,3464,3,376, - 188,0,3393,3394,5,2,0,0,3394,3395,3,268,134,0,3395,3396,5,3,0,0, - 3396,3464,1,0,0,0,3397,3398,5,110,0,0,3398,3399,5,2,0,0,3399,3400, - 3,376,188,0,3400,3401,5,123,0,0,3401,3402,3,280,140,0,3402,3403, - 5,3,0,0,3403,3464,1,0,0,0,3404,3405,7,40,0,0,3405,3406,5,2,0,0,3406, - 3407,3,280,140,0,3407,3408,7,41,0,0,3408,3411,3,280,140,0,3409,3410, - 7,42,0,0,3410,3412,3,280,140,0,3411,3409,1,0,0,0,3411,3412,1,0,0, - 0,3412,3413,1,0,0,0,3413,3414,5,3,0,0,3414,3464,1,0,0,0,3415,3416, - 5,315,0,0,3416,3418,5,2,0,0,3417,3419,7,43,0,0,3418,3417,1,0,0,0, - 3418,3419,1,0,0,0,3419,3421,1,0,0,0,3420,3422,3,280,140,0,3421,3420, - 1,0,0,0,3421,3422,1,0,0,0,3422,3423,1,0,0,0,3423,3424,5,123,0,0, - 3424,3425,3,280,140,0,3425,3426,5,3,0,0,3426,3464,1,0,0,0,3427,3428, - 5,215,0,0,3428,3429,5,2,0,0,3429,3430,3,280,140,0,3430,3431,5,224, - 0,0,3431,3432,3,280,140,0,3432,3433,5,123,0,0,3433,3436,3,280,140, - 0,3434,3435,5,119,0,0,3435,3437,3,280,140,0,3436,3434,1,0,0,0,3436, - 3437,1,0,0,0,3437,3438,1,0,0,0,3438,3439,5,3,0,0,3439,3464,1,0,0, - 0,3440,3441,7,44,0,0,3441,3442,5,2,0,0,3442,3443,3,280,140,0,3443, - 3444,5,3,0,0,3444,3445,5,347,0,0,3445,3446,5,130,0,0,3446,3447,5, - 2,0,0,3447,3448,5,209,0,0,3448,3449,5,31,0,0,3449,3450,3,108,54, - 0,3450,3457,5,3,0,0,3451,3452,5,114,0,0,3452,3453,5,2,0,0,3453,3454, - 5,344,0,0,3454,3455,3,276,138,0,3455,3456,5,3,0,0,3456,3458,1,0, - 0,0,3457,3451,1,0,0,0,3457,3458,1,0,0,0,3458,3461,1,0,0,0,3459,3460, - 5,213,0,0,3460,3462,3,358,179,0,3461,3459,1,0,0,0,3461,3462,1,0, - 0,0,3462,3464,1,0,0,0,3463,3214,1,0,0,0,3463,3216,1,0,0,0,3463,3228, - 1,0,0,0,3463,3240,1,0,0,0,3463,3252,1,0,0,0,3463,3265,1,0,0,0,3463, - 3272,1,0,0,0,3463,3285,1,0,0,0,3463,3294,1,0,0,0,3463,3303,1,0,0, - 0,3463,3312,1,0,0,0,3463,3319,1,0,0,0,3463,3320,1,0,0,0,3463,3321, - 1,0,0,0,3463,3325,1,0,0,0,3463,3335,1,0,0,0,3463,3339,1,0,0,0,3463, - 3344,1,0,0,0,3463,3376,1,0,0,0,3463,3380,1,0,0,0,3463,3392,1,0,0, - 0,3463,3393,1,0,0,0,3463,3397,1,0,0,0,3463,3404,1,0,0,0,3463,3415, - 1,0,0,0,3463,3427,1,0,0,0,3463,3440,1,0,0,0,3464,3475,1,0,0,0,3465, - 3466,10,9,0,0,3466,3467,5,6,0,0,3467,3468,3,280,140,0,3468,3469, - 5,7,0,0,3469,3474,1,0,0,0,3470,3471,10,7,0,0,3471,3472,5,5,0,0,3472, - 3474,3,376,188,0,3473,3465,1,0,0,0,3473,3470,1,0,0,0,3474,3477,1, - 0,0,0,3475,3473,1,0,0,0,3475,3476,1,0,0,0,3476,285,1,0,0,0,3477, - 3475,1,0,0,0,3478,3486,5,71,0,0,3479,3486,5,303,0,0,3480,3486,5, - 304,0,0,3481,3486,5,305,0,0,3482,3486,5,149,0,0,3483,3486,5,133, - 0,0,3484,3486,3,376,188,0,3485,3478,1,0,0,0,3485,3479,1,0,0,0,3485, - 3480,1,0,0,0,3485,3481,1,0,0,0,3485,3482,1,0,0,0,3485,3483,1,0,0, - 0,3485,3484,1,0,0,0,3486,287,1,0,0,0,3487,3503,5,198,0,0,3488,3503, - 5,376,0,0,3489,3490,5,371,0,0,3490,3503,3,376,188,0,3491,3503,3, - 298,149,0,3492,3493,3,286,143,0,3493,3494,3,388,194,0,3494,3503, - 1,0,0,0,3495,3503,3,384,192,0,3496,3503,3,296,148,0,3497,3499,3, - 388,194,0,3498,3497,1,0,0,0,3499,3500,1,0,0,0,3500,3498,1,0,0,0, - 3500,3501,1,0,0,0,3501,3503,1,0,0,0,3502,3487,1,0,0,0,3502,3488, - 1,0,0,0,3502,3489,1,0,0,0,3502,3491,1,0,0,0,3502,3492,1,0,0,0,3502, - 3495,1,0,0,0,3502,3496,1,0,0,0,3502,3498,1,0,0,0,3503,289,1,0,0, - 0,3504,3505,7,45,0,0,3505,291,1,0,0,0,3506,3507,7,46,0,0,3507,293, - 1,0,0,0,3508,3509,7,47,0,0,3509,295,1,0,0,0,3510,3511,7,48,0,0,3511, - 297,1,0,0,0,3512,3515,5,149,0,0,3513,3516,3,300,150,0,3514,3516, - 3,304,152,0,3515,3513,1,0,0,0,3515,3514,1,0,0,0,3516,299,1,0,0,0, - 3517,3519,3,302,151,0,3518,3520,3,306,153,0,3519,3518,1,0,0,0,3519, - 3520,1,0,0,0,3520,301,1,0,0,0,3521,3522,3,308,154,0,3522,3523,3, - 310,155,0,3523,3525,1,0,0,0,3524,3521,1,0,0,0,3525,3526,1,0,0,0, - 3526,3524,1,0,0,0,3526,3527,1,0,0,0,3527,303,1,0,0,0,3528,3531,3, - 306,153,0,3529,3532,3,302,151,0,3530,3532,3,306,153,0,3531,3529, - 1,0,0,0,3531,3530,1,0,0,0,3531,3532,1,0,0,0,3532,305,1,0,0,0,3533, - 3534,3,308,154,0,3534,3535,3,312,156,0,3535,3536,5,309,0,0,3536, - 3537,3,312,156,0,3537,307,1,0,0,0,3538,3540,7,49,0,0,3539,3538,1, - 0,0,0,3539,3540,1,0,0,0,3540,3544,1,0,0,0,3541,3545,5,382,0,0,3542, - 3545,5,384,0,0,3543,3545,3,388,194,0,3544,3541,1,0,0,0,3544,3542, - 1,0,0,0,3544,3543,1,0,0,0,3545,309,1,0,0,0,3546,3547,7,50,0,0,3547, - 311,1,0,0,0,3548,3549,7,51,0,0,3549,313,1,0,0,0,3550,3554,5,116, - 0,0,3551,3552,5,9,0,0,3552,3554,3,372,186,0,3553,3550,1,0,0,0,3553, - 3551,1,0,0,0,3554,315,1,0,0,0,3555,3586,5,27,0,0,3556,3586,5,308, - 0,0,3557,3586,5,32,0,0,3558,3586,5,276,0,0,3559,3586,5,272,0,0,3560, - 3586,5,150,0,0,3561,3586,5,151,0,0,3562,3586,5,25,0,0,3563,3586, - 5,174,0,0,3564,3586,5,117,0,0,3565,3586,5,234,0,0,3566,3586,5,95, - 0,0,3567,3586,5,71,0,0,3568,3586,5,303,0,0,3569,3586,5,305,0,0,3570, - 3586,5,304,0,0,3571,3586,5,285,0,0,3572,3586,5,41,0,0,3573,3586, - 5,40,0,0,3574,3586,5,334,0,0,3575,3586,5,26,0,0,3576,3586,5,80,0, - 0,3577,3586,5,79,0,0,3578,3586,5,200,0,0,3579,3586,5,340,0,0,3580, - 3586,5,149,0,0,3581,3586,5,19,0,0,3582,3586,5,286,0,0,3583,3586, - 5,177,0,0,3584,3586,3,376,188,0,3585,3555,1,0,0,0,3585,3556,1,0, - 0,0,3585,3557,1,0,0,0,3585,3558,1,0,0,0,3585,3559,1,0,0,0,3585,3560, - 1,0,0,0,3585,3561,1,0,0,0,3585,3562,1,0,0,0,3585,3563,1,0,0,0,3585, - 3564,1,0,0,0,3585,3565,1,0,0,0,3585,3566,1,0,0,0,3585,3567,1,0,0, - 0,3585,3568,1,0,0,0,3585,3569,1,0,0,0,3585,3570,1,0,0,0,3585,3571, - 1,0,0,0,3585,3572,1,0,0,0,3585,3573,1,0,0,0,3585,3574,1,0,0,0,3585, - 3575,1,0,0,0,3585,3576,1,0,0,0,3585,3577,1,0,0,0,3585,3578,1,0,0, - 0,3585,3579,1,0,0,0,3585,3580,1,0,0,0,3585,3581,1,0,0,0,3585,3582, - 1,0,0,0,3585,3583,1,0,0,0,3585,3584,1,0,0,0,3586,317,1,0,0,0,3587, - 3588,5,19,0,0,3588,3589,5,356,0,0,3589,3590,3,318,159,0,3590,3591, - 5,358,0,0,3591,3634,1,0,0,0,3592,3593,5,177,0,0,3593,3594,5,356, - 0,0,3594,3595,3,318,159,0,3595,3596,5,4,0,0,3596,3597,3,318,159, - 0,3597,3598,5,358,0,0,3598,3634,1,0,0,0,3599,3606,5,286,0,0,3600, - 3602,5,356,0,0,3601,3603,3,346,173,0,3602,3601,1,0,0,0,3602,3603, - 1,0,0,0,3603,3604,1,0,0,0,3604,3607,5,358,0,0,3605,3607,5,354,0, - 0,3606,3600,1,0,0,0,3606,3605,1,0,0,0,3607,3634,1,0,0,0,3608,3609, - 5,149,0,0,3609,3612,7,52,0,0,3610,3611,5,309,0,0,3611,3613,5,186, - 0,0,3612,3610,1,0,0,0,3612,3613,1,0,0,0,3613,3634,1,0,0,0,3614,3615, - 5,149,0,0,3615,3618,7,53,0,0,3616,3617,5,309,0,0,3617,3619,7,54, - 0,0,3618,3616,1,0,0,0,3618,3619,1,0,0,0,3619,3634,1,0,0,0,3620,3631, - 3,316,158,0,3621,3622,5,2,0,0,3622,3627,5,382,0,0,3623,3624,5,4, - 0,0,3624,3626,5,382,0,0,3625,3623,1,0,0,0,3626,3629,1,0,0,0,3627, - 3625,1,0,0,0,3627,3628,1,0,0,0,3628,3630,1,0,0,0,3629,3627,1,0,0, - 0,3630,3632,5,3,0,0,3631,3621,1,0,0,0,3631,3632,1,0,0,0,3632,3634, - 1,0,0,0,3633,3587,1,0,0,0,3633,3592,1,0,0,0,3633,3599,1,0,0,0,3633, - 3608,1,0,0,0,3633,3614,1,0,0,0,3633,3620,1,0,0,0,3634,319,1,0,0, - 0,3635,3640,3,322,161,0,3636,3637,5,4,0,0,3637,3639,3,322,161,0, - 3638,3636,1,0,0,0,3639,3642,1,0,0,0,3640,3638,1,0,0,0,3640,3641, - 1,0,0,0,3641,321,1,0,0,0,3642,3640,1,0,0,0,3643,3644,3,96,48,0,3644, - 3648,3,318,159,0,3645,3647,3,328,164,0,3646,3645,1,0,0,0,3647,3650, - 1,0,0,0,3648,3646,1,0,0,0,3648,3649,1,0,0,0,3649,323,1,0,0,0,3650, - 3648,1,0,0,0,3651,3656,3,326,163,0,3652,3653,5,4,0,0,3653,3655,3, - 326,163,0,3654,3652,1,0,0,0,3655,3658,1,0,0,0,3656,3654,1,0,0,0, - 3656,3657,1,0,0,0,3657,325,1,0,0,0,3658,3656,1,0,0,0,3659,3660,3, - 92,46,0,3660,3664,3,318,159,0,3661,3663,3,328,164,0,3662,3661,1, - 0,0,0,3663,3666,1,0,0,0,3664,3662,1,0,0,0,3664,3665,1,0,0,0,3665, - 327,1,0,0,0,3666,3664,1,0,0,0,3667,3668,5,197,0,0,3668,3673,5,198, - 0,0,3669,3673,3,330,165,0,3670,3673,3,24,12,0,3671,3673,3,314,157, - 0,3672,3667,1,0,0,0,3672,3669,1,0,0,0,3672,3670,1,0,0,0,3672,3671, - 1,0,0,0,3673,329,1,0,0,0,3674,3675,5,82,0,0,3675,3676,3,268,134, - 0,3676,331,1,0,0,0,3677,3678,7,55,0,0,3678,3679,3,268,134,0,3679, - 333,1,0,0,0,3680,3685,3,336,168,0,3681,3682,5,4,0,0,3682,3684,3, - 336,168,0,3683,3681,1,0,0,0,3684,3687,1,0,0,0,3685,3683,1,0,0,0, - 3685,3686,1,0,0,0,3686,335,1,0,0,0,3687,3685,1,0,0,0,3688,3689,3, - 372,186,0,3689,3692,3,318,159,0,3690,3691,5,197,0,0,3691,3693,5, - 198,0,0,3692,3690,1,0,0,0,3692,3693,1,0,0,0,3693,3695,1,0,0,0,3694, - 3696,3,24,12,0,3695,3694,1,0,0,0,3695,3696,1,0,0,0,3696,337,1,0, - 0,0,3697,3702,3,340,170,0,3698,3699,5,4,0,0,3699,3701,3,340,170, - 0,3700,3698,1,0,0,0,3701,3704,1,0,0,0,3702,3700,1,0,0,0,3702,3703, - 1,0,0,0,3703,339,1,0,0,0,3704,3702,1,0,0,0,3705,3706,3,96,48,0,3706, - 3710,3,318,159,0,3707,3709,3,342,171,0,3708,3707,1,0,0,0,3709,3712, - 1,0,0,0,3710,3708,1,0,0,0,3710,3711,1,0,0,0,3711,341,1,0,0,0,3712, - 3710,1,0,0,0,3713,3714,5,197,0,0,3714,3719,5,198,0,0,3715,3719,3, - 330,165,0,3716,3719,3,344,172,0,3717,3719,3,24,12,0,3718,3713,1, - 0,0,0,3718,3715,1,0,0,0,3718,3716,1,0,0,0,3718,3717,1,0,0,0,3719, - 343,1,0,0,0,3720,3721,5,127,0,0,3721,3722,5,12,0,0,3722,3723,5,20, - 0,0,3723,3724,5,2,0,0,3724,3725,3,268,134,0,3725,3726,5,3,0,0,3726, - 345,1,0,0,0,3727,3732,3,348,174,0,3728,3729,5,4,0,0,3729,3731,3, - 348,174,0,3730,3728,1,0,0,0,3731,3734,1,0,0,0,3732,3730,1,0,0,0, - 3732,3733,1,0,0,0,3733,347,1,0,0,0,3734,3732,1,0,0,0,3735,3737,3, - 376,188,0,3736,3738,5,371,0,0,3737,3736,1,0,0,0,3737,3738,1,0,0, - 0,3738,3739,1,0,0,0,3739,3742,3,318,159,0,3740,3741,5,197,0,0,3741, - 3743,5,198,0,0,3742,3740,1,0,0,0,3742,3743,1,0,0,0,3743,3745,1,0, - 0,0,3744,3746,3,24,12,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746, - 349,1,0,0,0,3747,3748,5,343,0,0,3748,3749,3,268,134,0,3749,3750, - 5,300,0,0,3750,3751,3,268,134,0,3751,351,1,0,0,0,3752,3753,5,345, - 0,0,3753,3758,3,356,178,0,3754,3755,5,4,0,0,3755,3757,3,356,178, - 0,3756,3754,1,0,0,0,3757,3760,1,0,0,0,3758,3756,1,0,0,0,3758,3759, - 1,0,0,0,3759,353,1,0,0,0,3760,3758,1,0,0,0,3761,3762,5,351,0,0,3762, - 3763,5,31,0,0,3763,3764,3,94,47,0,3764,355,1,0,0,0,3765,3766,3,372, - 186,0,3766,3767,5,20,0,0,3767,3768,3,358,179,0,3768,357,1,0,0,0, - 3769,3816,3,372,186,0,3770,3771,5,2,0,0,3771,3772,3,372,186,0,3772, - 3773,5,3,0,0,3773,3816,1,0,0,0,3774,3809,5,2,0,0,3775,3776,5,44, - 0,0,3776,3777,5,31,0,0,3777,3782,3,268,134,0,3778,3779,5,4,0,0,3779, - 3781,3,268,134,0,3780,3778,1,0,0,0,3781,3784,1,0,0,0,3782,3780,1, - 0,0,0,3782,3783,1,0,0,0,3783,3810,1,0,0,0,3784,3782,1,0,0,0,3785, - 3786,7,24,0,0,3786,3787,5,31,0,0,3787,3792,3,268,134,0,3788,3789, - 5,4,0,0,3789,3791,3,268,134,0,3790,3788,1,0,0,0,3791,3794,1,0,0, - 0,3792,3790,1,0,0,0,3792,3793,1,0,0,0,3793,3796,1,0,0,0,3794,3792, - 1,0,0,0,3795,3785,1,0,0,0,3795,3796,1,0,0,0,3796,3807,1,0,0,0,3797, - 3798,7,25,0,0,3798,3799,5,31,0,0,3799,3804,3,108,54,0,3800,3801, - 5,4,0,0,3801,3803,3,108,54,0,3802,3800,1,0,0,0,3803,3806,1,0,0,0, - 3804,3802,1,0,0,0,3804,3805,1,0,0,0,3805,3808,1,0,0,0,3806,3804, - 1,0,0,0,3807,3797,1,0,0,0,3807,3808,1,0,0,0,3808,3810,1,0,0,0,3809, - 3775,1,0,0,0,3809,3795,1,0,0,0,3810,3812,1,0,0,0,3811,3813,3,360, - 180,0,3812,3811,1,0,0,0,3812,3813,1,0,0,0,3813,3814,1,0,0,0,3814, - 3816,5,3,0,0,3815,3769,1,0,0,0,3815,3770,1,0,0,0,3815,3774,1,0,0, - 0,3816,359,1,0,0,0,3817,3818,5,233,0,0,3818,3834,3,362,181,0,3819, - 3820,5,258,0,0,3820,3834,3,362,181,0,3821,3822,5,233,0,0,3822,3823, - 5,24,0,0,3823,3824,3,362,181,0,3824,3825,5,14,0,0,3825,3826,3,362, - 181,0,3826,3834,1,0,0,0,3827,3828,5,258,0,0,3828,3829,5,24,0,0,3829, - 3830,3,362,181,0,3830,3831,5,14,0,0,3831,3832,3,362,181,0,3832,3834, - 1,0,0,0,3833,3817,1,0,0,0,3833,3819,1,0,0,0,3833,3821,1,0,0,0,3833, - 3827,1,0,0,0,3834,361,1,0,0,0,3835,3836,5,321,0,0,3836,3843,7,56, - 0,0,3837,3838,5,62,0,0,3838,3843,5,257,0,0,3839,3840,3,268,134,0, - 3840,3841,7,56,0,0,3841,3843,1,0,0,0,3842,3835,1,0,0,0,3842,3837, - 1,0,0,0,3842,3839,1,0,0,0,3843,363,1,0,0,0,3844,3849,3,370,185,0, - 3845,3846,5,4,0,0,3846,3848,3,370,185,0,3847,3845,1,0,0,0,3848,3851, - 1,0,0,0,3849,3847,1,0,0,0,3849,3850,1,0,0,0,3850,365,1,0,0,0,3851, - 3849,1,0,0,0,3852,3853,5,136,0,0,3853,3854,5,2,0,0,3854,3855,3,268, - 134,0,3855,3856,5,3,0,0,3856,3862,1,0,0,0,3857,3862,3,370,185,0, - 3858,3862,5,114,0,0,3859,3862,5,161,0,0,3860,3862,5,250,0,0,3861, - 3852,1,0,0,0,3861,3857,1,0,0,0,3861,3858,1,0,0,0,3861,3859,1,0,0, - 0,3861,3860,1,0,0,0,3862,367,1,0,0,0,3863,3864,3,370,185,0,3864, - 369,1,0,0,0,3865,3870,3,376,188,0,3866,3867,5,5,0,0,3867,3869,3, - 376,188,0,3868,3866,1,0,0,0,3869,3872,1,0,0,0,3870,3868,1,0,0,0, - 3870,3871,1,0,0,0,3871,371,1,0,0,0,3872,3870,1,0,0,0,3873,3874,3, - 376,188,0,3874,3875,3,374,187,0,3875,373,1,0,0,0,3876,3877,5,362, - 0,0,3877,3879,3,376,188,0,3878,3876,1,0,0,0,3879,3880,1,0,0,0,3880, - 3878,1,0,0,0,3880,3881,1,0,0,0,3881,3884,1,0,0,0,3882,3884,1,0,0, - 0,3883,3878,1,0,0,0,3883,3882,1,0,0,0,3884,375,1,0,0,0,3885,3888, - 3,378,189,0,3886,3888,3,396,198,0,3887,3885,1,0,0,0,3887,3886,1, - 0,0,0,3888,377,1,0,0,0,3889,3894,5,388,0,0,3890,3894,3,380,190,0, - 3891,3894,3,394,197,0,3892,3894,3,398,199,0,3893,3889,1,0,0,0,3893, - 3890,1,0,0,0,3893,3891,1,0,0,0,3893,3892,1,0,0,0,3894,379,1,0,0, - 0,3895,3896,7,57,0,0,3896,381,1,0,0,0,3897,3898,5,389,0,0,3898,383, - 1,0,0,0,3899,3901,5,362,0,0,3900,3899,1,0,0,0,3900,3901,1,0,0,0, - 3901,3902,1,0,0,0,3902,3940,5,383,0,0,3903,3905,5,362,0,0,3904,3903, - 1,0,0,0,3904,3905,1,0,0,0,3905,3906,1,0,0,0,3906,3940,5,384,0,0, - 3907,3909,5,362,0,0,3908,3907,1,0,0,0,3908,3909,1,0,0,0,3909,3910, - 1,0,0,0,3910,3940,7,58,0,0,3911,3913,5,362,0,0,3912,3911,1,0,0,0, - 3912,3913,1,0,0,0,3913,3914,1,0,0,0,3914,3940,5,382,0,0,3915,3917, - 5,362,0,0,3916,3915,1,0,0,0,3916,3917,1,0,0,0,3917,3918,1,0,0,0, - 3918,3940,5,379,0,0,3919,3921,5,362,0,0,3920,3919,1,0,0,0,3920,3921, - 1,0,0,0,3921,3922,1,0,0,0,3922,3940,5,380,0,0,3923,3925,5,362,0, - 0,3924,3923,1,0,0,0,3924,3925,1,0,0,0,3925,3926,1,0,0,0,3926,3940, - 5,381,0,0,3927,3929,5,362,0,0,3928,3927,1,0,0,0,3928,3929,1,0,0, - 0,3929,3930,1,0,0,0,3930,3940,5,386,0,0,3931,3933,5,362,0,0,3932, - 3931,1,0,0,0,3932,3933,1,0,0,0,3933,3934,1,0,0,0,3934,3940,5,385, - 0,0,3935,3937,5,362,0,0,3936,3935,1,0,0,0,3936,3937,1,0,0,0,3937, - 3938,1,0,0,0,3938,3940,5,387,0,0,3939,3900,1,0,0,0,3939,3904,1,0, - 0,0,3939,3908,1,0,0,0,3939,3912,1,0,0,0,3939,3916,1,0,0,0,3939,3920, - 1,0,0,0,3939,3924,1,0,0,0,3939,3928,1,0,0,0,3939,3932,1,0,0,0,3939, - 3936,1,0,0,0,3940,385,1,0,0,0,3941,3942,5,319,0,0,3942,3953,3,318, - 159,0,3943,3953,3,24,12,0,3944,3953,3,314,157,0,3945,3946,7,59,0, - 0,3946,3947,5,197,0,0,3947,3953,5,198,0,0,3948,3949,5,269,0,0,3949, - 3953,3,330,165,0,3950,3951,5,96,0,0,3951,3953,5,82,0,0,3952,3941, - 1,0,0,0,3952,3943,1,0,0,0,3952,3944,1,0,0,0,3952,3945,1,0,0,0,3952, - 3948,1,0,0,0,3952,3950,1,0,0,0,3953,387,1,0,0,0,3954,3955,7,60,0, - 0,3955,389,1,0,0,0,3956,3959,3,388,194,0,3957,3959,5,198,0,0,3958, - 3956,1,0,0,0,3958,3957,1,0,0,0,3959,391,1,0,0,0,3960,3963,5,382, - 0,0,3961,3963,3,388,194,0,3962,3960,1,0,0,0,3962,3961,1,0,0,0,3963, - 393,1,0,0,0,3964,3965,7,61,0,0,3965,395,1,0,0,0,3966,3967,7,62,0, - 0,3967,397,1,0,0,0,3968,3969,7,63,0,0,3969,399,1,0,0,0,517,403,410, - 414,419,426,431,439,441,460,464,470,473,476,483,486,490,493,498, - 510,512,520,523,527,530,536,547,553,558,591,601,612,623,634,639, - 648,652,658,662,667,673,685,693,699,710,714,719,734,738,745,749, - 755,784,788,793,800,806,809,812,816,820,828,830,839,842,851,856, - 862,869,872,876,887,890,896,900,915,917,925,929,935,938,942,945, - 951,956,960,967,970,973,980,985,994,1002,1008,1011,1014,1020,1024, - 1029,1032,1036,1038,1046,1054,1057,1064,1067,1070,1079,1084,1090, - 1095,1098,1102,1105,1109,1137,1140,1148,1154,1157,1160,1165,1173, - 1178,1184,1190,1193,1200,1207,1215,1232,1259,1262,1268,1277,1286, - 1292,1297,1302,1309,1314,1319,1326,1334,1337,1341,1353,1357,1364, - 1480,1488,1496,1505,1515,1519,1522,1526,1532,1544,1556,1561,1570, - 1578,1583,1585,1593,1598,1602,1605,1613,1618,1627,1632,1635,1640, - 1644,1649,1651,1655,1664,1672,1678,1689,1696,1705,1710,1713,1736, - 1738,1750,1757,1760,1767,1771,1777,1785,1792,1795,1803,1814,1825, - 1833,1839,1851,1858,1865,1877,1885,1891,1897,1900,1916,1923,1934, - 1943,1946,1955,1958,1967,1970,1979,1982,1985,1990,1992,1996,2007, - 2013,2019,2022,2024,2036,2040,2043,2047,2053,2057,2065,2069,2072, - 2075,2078,2082,2086,2091,2095,2098,2101,2104,2108,2113,2117,2120, - 2123,2126,2128,2134,2141,2146,2149,2152,2156,2166,2170,2172,2175, - 2179,2185,2189,2200,2210,2214,2226,2238,2253,2258,2264,2271,2287, - 2292,2305,2310,2318,2324,2328,2331,2336,2343,2349,2358,2368,2383, - 2388,2390,2395,2404,2417,2422,2426,2433,2438,2442,2445,2448,2462, - 2475,2480,2484,2487,2491,2497,2500,2507,2519,2530,2543,2554,2559, - 2567,2572,2586,2595,2598,2603,2610,2613,2619,2625,2628,2633,2638, - 2642,2648,2652,2655,2660,2663,2668,2672,2675,2678,2684,2689,2696, - 2699,2717,2719,2722,2733,2742,2749,2757,2764,2769,2772,2775,2783, - 2791,2797,2805,2813,2820,2827,2829,2842,2848,2850,2860,2866,2868, - 2876,2880,2889,2892,2898,2902,2904,2913,2925,2927,2934,2941,2947, - 2953,2955,2962,2970,2978,2984,2989,2996,3002,3005,3009,3011,3018, - 3027,3034,3044,3049,3053,3063,3070,3083,3085,3093,3095,3099,3107, - 3116,3122,3130,3135,3147,3152,3155,3161,3165,3170,3175,3180,3186, - 3207,3209,3220,3232,3244,3248,3257,3261,3279,3282,3290,3299,3308, - 3331,3347,3354,3357,3366,3370,3374,3386,3411,3418,3421,3436,3457, - 3461,3463,3473,3475,3485,3500,3502,3515,3519,3526,3531,3539,3544, - 3553,3585,3602,3606,3612,3618,3627,3631,3633,3640,3648,3656,3664, - 3672,3685,3692,3695,3702,3710,3718,3732,3737,3742,3745,3758,3782, - 3792,3795,3804,3807,3809,3812,3815,3833,3842,3849,3861,3870,3880, - 3883,3887,3893,3900,3904,3908,3912,3916,3920,3924,3928,3932,3936, - 3939,3952,3958,3962 + 0,1981,1979,1,0,0,0,1982,1972,1,0,0,0,1982,1983,1,0,0,0,1983,1994, + 1,0,0,0,1984,1985,5,278,0,0,1985,1986,5,31,0,0,1986,1991,3,108,54, + 0,1987,1988,5,4,0,0,1988,1990,3,108,54,0,1989,1987,1,0,0,0,1990, + 1993,1,0,0,0,1991,1989,1,0,0,0,1991,1992,1,0,0,0,1992,1995,1,0,0, + 0,1993,1991,1,0,0,0,1994,1984,1,0,0,0,1994,1995,1,0,0,0,1995,1997, + 1,0,0,0,1996,1998,3,364,182,0,1997,1996,1,0,0,0,1997,1998,1,0,0, + 0,1998,2004,1,0,0,0,1999,2002,5,165,0,0,2000,2003,5,10,0,0,2001, + 2003,3,280,140,0,2002,2000,1,0,0,0,2002,2001,1,0,0,0,2003,2005,1, + 0,0,0,2004,1999,1,0,0,0,2004,2005,1,0,0,0,2005,2008,1,0,0,0,2006, + 2007,5,202,0,0,2007,2009,3,280,140,0,2008,2006,1,0,0,0,2008,2009, + 1,0,0,0,2009,101,1,0,0,0,2010,2011,3,28,14,0,2011,2012,3,112,56, + 0,2012,103,1,0,0,0,2013,2014,6,52,-1,0,2014,2015,3,106,53,0,2015, + 2036,1,0,0,0,2016,2017,10,3,0,0,2017,2019,7,13,0,0,2018,2020,3,196, + 98,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1,0,0,0,2021, + 2035,3,104,52,4,2022,2023,10,2,0,0,2023,2025,5,148,0,0,2024,2026, + 3,196,98,0,2025,2024,1,0,0,0,2025,2026,1,0,0,0,2026,2027,1,0,0,0, + 2027,2035,3,104,52,3,2028,2029,10,1,0,0,2029,2031,7,14,0,0,2030, + 2032,3,196,98,0,2031,2030,1,0,0,0,2031,2032,1,0,0,0,2032,2033,1, + 0,0,0,2033,2035,3,104,52,2,2034,2016,1,0,0,0,2034,2022,1,0,0,0,2034, + 2028,1,0,0,0,2035,2038,1,0,0,0,2036,2034,1,0,0,0,2036,2037,1,0,0, + 0,2037,105,1,0,0,0,2038,2036,1,0,0,0,2039,2059,3,114,57,0,2040,2059, + 3,110,55,0,2041,2042,5,293,0,0,2042,2059,3,86,43,0,2043,2044,5,333, + 0,0,2044,2049,3,280,140,0,2045,2046,5,4,0,0,2046,2048,3,280,140, + 0,2047,2045,1,0,0,0,2048,2051,1,0,0,0,2049,2047,1,0,0,0,2049,2050, + 1,0,0,0,2050,2052,1,0,0,0,2051,2049,1,0,0,0,2052,2053,3,244,122, + 0,2053,2059,1,0,0,0,2054,2055,5,2,0,0,2055,2056,3,26,13,0,2056,2057, + 5,3,0,0,2057,2059,1,0,0,0,2058,2039,1,0,0,0,2058,2040,1,0,0,0,2058, + 2041,1,0,0,0,2058,2043,1,0,0,0,2058,2054,1,0,0,0,2059,107,1,0,0, + 0,2060,2063,3,92,46,0,2061,2063,3,280,140,0,2062,2060,1,0,0,0,2062, + 2061,1,0,0,0,2063,2065,1,0,0,0,2064,2066,7,15,0,0,2065,2064,1,0, + 0,0,2065,2066,1,0,0,0,2066,2069,1,0,0,0,2067,2068,5,199,0,0,2068, + 2070,7,16,0,0,2069,2067,1,0,0,0,2069,2070,1,0,0,0,2070,109,1,0,0, + 0,2071,2073,3,146,73,0,2072,2074,3,112,56,0,2073,2072,1,0,0,0,2074, + 2075,1,0,0,0,2075,2073,1,0,0,0,2075,2076,1,0,0,0,2076,111,1,0,0, + 0,2077,2079,3,116,58,0,2078,2080,3,138,69,0,2079,2078,1,0,0,0,2079, + 2080,1,0,0,0,2080,2081,1,0,0,0,2081,2082,3,100,50,0,2082,2105,1, + 0,0,0,2083,2087,3,118,59,0,2084,2086,3,194,97,0,2085,2084,1,0,0, + 0,2086,2089,1,0,0,0,2087,2085,1,0,0,0,2087,2088,1,0,0,0,2088,2091, + 1,0,0,0,2089,2087,1,0,0,0,2090,2092,3,138,69,0,2091,2090,1,0,0,0, + 2091,2092,1,0,0,0,2092,2094,1,0,0,0,2093,2095,3,152,76,0,2094,2093, + 1,0,0,0,2094,2095,1,0,0,0,2095,2097,1,0,0,0,2096,2098,3,140,70,0, + 2097,2096,1,0,0,0,2097,2098,1,0,0,0,2098,2100,1,0,0,0,2099,2101, + 3,364,182,0,2100,2099,1,0,0,0,2100,2101,1,0,0,0,2101,2102,1,0,0, + 0,2102,2103,3,100,50,0,2103,2105,1,0,0,0,2104,2077,1,0,0,0,2104, + 2083,1,0,0,0,2105,113,1,0,0,0,2106,2108,3,116,58,0,2107,2109,3,146, + 73,0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2113,1,0,0,0,2110, + 2112,3,194,97,0,2111,2110,1,0,0,0,2112,2115,1,0,0,0,2113,2111,1, + 0,0,0,2113,2114,1,0,0,0,2114,2117,1,0,0,0,2115,2113,1,0,0,0,2116, + 2118,3,138,69,0,2117,2116,1,0,0,0,2117,2118,1,0,0,0,2118,2120,1, + 0,0,0,2119,2121,3,152,76,0,2120,2119,1,0,0,0,2120,2121,1,0,0,0,2121, + 2123,1,0,0,0,2122,2124,3,140,70,0,2123,2122,1,0,0,0,2123,2124,1, + 0,0,0,2124,2126,1,0,0,0,2125,2127,3,364,182,0,2126,2125,1,0,0,0, + 2126,2127,1,0,0,0,2127,2151,1,0,0,0,2128,2130,3,118,59,0,2129,2131, + 3,146,73,0,2130,2129,1,0,0,0,2130,2131,1,0,0,0,2131,2135,1,0,0,0, + 2132,2134,3,194,97,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,2139,1,0,0,0,2137,2135,1,0,0,0,2138, + 2140,3,138,69,0,2139,2138,1,0,0,0,2139,2140,1,0,0,0,2140,2142,1, + 0,0,0,2141,2143,3,152,76,0,2142,2141,1,0,0,0,2142,2143,1,0,0,0,2143, + 2145,1,0,0,0,2144,2146,3,140,70,0,2145,2144,1,0,0,0,2145,2146,1, + 0,0,0,2146,2148,1,0,0,0,2147,2149,3,364,182,0,2148,2147,1,0,0,0, + 2148,2149,1,0,0,0,2149,2151,1,0,0,0,2150,2106,1,0,0,0,2150,2128, + 1,0,0,0,2151,115,1,0,0,0,2152,2153,5,263,0,0,2153,2154,5,314,0,0, + 2154,2156,5,2,0,0,2155,2157,3,196,98,0,2156,2155,1,0,0,0,2156,2157, + 1,0,0,0,2157,2158,1,0,0,0,2158,2159,3,286,143,0,2159,2160,5,3,0, + 0,2160,2172,1,0,0,0,2161,2163,5,177,0,0,2162,2164,3,196,98,0,2163, + 2162,1,0,0,0,2163,2164,1,0,0,0,2164,2165,1,0,0,0,2165,2172,3,286, + 143,0,2166,2168,5,238,0,0,2167,2169,3,196,98,0,2168,2167,1,0,0,0, + 2168,2169,1,0,0,0,2169,2170,1,0,0,0,2170,2172,3,286,143,0,2171,2152, + 1,0,0,0,2171,2161,1,0,0,0,2171,2166,1,0,0,0,2172,2174,1,0,0,0,2173, + 2175,3,246,123,0,2174,2173,1,0,0,0,2174,2175,1,0,0,0,2175,2178,1, + 0,0,0,2176,2177,5,236,0,0,2177,2179,3,400,200,0,2178,2176,1,0,0, + 0,2178,2179,1,0,0,0,2179,2180,1,0,0,0,2180,2181,5,332,0,0,2181,2194, + 3,400,200,0,2182,2192,5,20,0,0,2183,2193,3,214,107,0,2184,2193,3, + 346,173,0,2185,2188,5,2,0,0,2186,2189,3,214,107,0,2187,2189,3,346, + 173,0,2188,2186,1,0,0,0,2188,2187,1,0,0,0,2189,2190,1,0,0,0,2190, + 2191,5,3,0,0,2191,2193,1,0,0,0,2192,2183,1,0,0,0,2192,2184,1,0,0, + 0,2192,2185,1,0,0,0,2193,2195,1,0,0,0,2194,2182,1,0,0,0,2194,2195, + 1,0,0,0,2195,2197,1,0,0,0,2196,2198,3,246,123,0,2197,2196,1,0,0, + 0,2197,2198,1,0,0,0,2198,2201,1,0,0,0,2199,2200,5,235,0,0,2200,2202, + 3,400,200,0,2201,2199,1,0,0,0,2201,2202,1,0,0,0,2202,117,1,0,0,0, + 2203,2207,5,263,0,0,2204,2206,3,142,71,0,2205,2204,1,0,0,0,2206, + 2209,1,0,0,0,2207,2205,1,0,0,0,2207,2208,1,0,0,0,2208,2211,1,0,0, + 0,2209,2207,1,0,0,0,2210,2212,3,196,98,0,2211,2210,1,0,0,0,2211, + 2212,1,0,0,0,2212,2213,1,0,0,0,2213,2214,3,270,135,0,2214,119,1, + 0,0,0,2215,2216,5,269,0,0,2216,2217,3,134,67,0,2217,121,1,0,0,0, + 2218,2219,5,343,0,0,2219,2222,5,178,0,0,2220,2221,5,14,0,0,2221, + 2223,3,288,144,0,2222,2220,1,0,0,0,2222,2223,1,0,0,0,2223,2224,1, + 0,0,0,2224,2225,5,300,0,0,2225,2226,3,128,64,0,2226,123,1,0,0,0, + 2227,2228,5,343,0,0,2228,2229,5,197,0,0,2229,2232,5,178,0,0,2230, + 2231,5,31,0,0,2231,2233,5,296,0,0,2232,2230,1,0,0,0,2232,2233,1, + 0,0,0,2233,2236,1,0,0,0,2234,2235,5,14,0,0,2235,2237,3,288,144,0, + 2236,2234,1,0,0,0,2236,2237,1,0,0,0,2237,2238,1,0,0,0,2238,2239, + 5,300,0,0,2239,2240,3,130,65,0,2240,125,1,0,0,0,2241,2242,5,343, + 0,0,2242,2243,5,197,0,0,2243,2244,5,178,0,0,2244,2245,5,31,0,0,2245, + 2248,5,280,0,0,2246,2247,5,14,0,0,2247,2249,3,288,144,0,2248,2246, + 1,0,0,0,2248,2249,1,0,0,0,2249,2250,1,0,0,0,2250,2251,5,300,0,0, + 2251,2252,3,132,66,0,2252,127,1,0,0,0,2253,2261,5,84,0,0,2254,2255, + 5,329,0,0,2255,2256,5,269,0,0,2256,2261,5,363,0,0,2257,2258,5,329, + 0,0,2258,2259,5,269,0,0,2259,2261,3,134,67,0,2260,2253,1,0,0,0,2260, + 2254,1,0,0,0,2260,2257,1,0,0,0,2261,129,1,0,0,0,2262,2263,5,147, + 0,0,2263,2281,5,363,0,0,2264,2265,5,147,0,0,2265,2266,5,2,0,0,2266, + 2267,3,248,124,0,2267,2268,5,3,0,0,2268,2269,5,333,0,0,2269,2270, + 5,2,0,0,2270,2275,3,280,140,0,2271,2272,5,4,0,0,2272,2274,3,280, + 140,0,2273,2271,1,0,0,0,2274,2277,1,0,0,0,2275,2273,1,0,0,0,2275, + 2276,1,0,0,0,2276,2278,1,0,0,0,2277,2275,1,0,0,0,2278,2279,5,3,0, + 0,2279,2281,1,0,0,0,2280,2262,1,0,0,0,2280,2264,1,0,0,0,2281,131, + 1,0,0,0,2282,2287,5,84,0,0,2283,2284,5,329,0,0,2284,2285,5,269,0, + 0,2285,2287,3,134,67,0,2286,2282,1,0,0,0,2286,2283,1,0,0,0,2287, + 133,1,0,0,0,2288,2293,3,136,68,0,2289,2290,5,4,0,0,2290,2292,3,136, + 68,0,2291,2289,1,0,0,0,2292,2295,1,0,0,0,2293,2291,1,0,0,0,2293, + 2294,1,0,0,0,2294,135,1,0,0,0,2295,2293,1,0,0,0,2296,2297,3,250, + 125,0,2297,2298,5,352,0,0,2298,2299,3,280,140,0,2299,137,1,0,0,0, + 2300,2301,5,344,0,0,2301,2302,3,288,144,0,2302,139,1,0,0,0,2303, + 2304,5,132,0,0,2304,2305,3,288,144,0,2305,141,1,0,0,0,2306,2307, + 5,374,0,0,2307,2314,3,144,72,0,2308,2310,5,4,0,0,2309,2308,1,0,0, + 0,2309,2310,1,0,0,0,2310,2311,1,0,0,0,2311,2313,3,144,72,0,2312, + 2309,1,0,0,0,2313,2316,1,0,0,0,2314,2312,1,0,0,0,2314,2315,1,0,0, + 0,2315,2317,1,0,0,0,2316,2314,1,0,0,0,2317,2318,5,375,0,0,2318,143, + 1,0,0,0,2319,2333,3,388,194,0,2320,2321,3,388,194,0,2321,2322,5, + 2,0,0,2322,2327,3,296,148,0,2323,2324,5,4,0,0,2324,2326,3,296,148, + 0,2325,2323,1,0,0,0,2326,2329,1,0,0,0,2327,2325,1,0,0,0,2327,2328, + 1,0,0,0,2328,2330,1,0,0,0,2329,2327,1,0,0,0,2330,2331,5,3,0,0,2331, + 2333,1,0,0,0,2332,2319,1,0,0,0,2332,2320,1,0,0,0,2333,145,1,0,0, + 0,2334,2335,5,123,0,0,2335,2340,3,198,99,0,2336,2337,5,4,0,0,2337, + 2339,3,198,99,0,2338,2336,1,0,0,0,2339,2342,1,0,0,0,2340,2338,1, + 0,0,0,2340,2341,1,0,0,0,2341,2346,1,0,0,0,2342,2340,1,0,0,0,2343, + 2345,3,194,97,0,2344,2343,1,0,0,0,2345,2348,1,0,0,0,2346,2344,1, + 0,0,0,2346,2347,1,0,0,0,2347,2350,1,0,0,0,2348,2346,1,0,0,0,2349, + 2351,3,162,81,0,2350,2349,1,0,0,0,2350,2351,1,0,0,0,2351,2353,1, + 0,0,0,2352,2354,3,168,84,0,2353,2352,1,0,0,0,2353,2354,1,0,0,0,2354, + 147,1,0,0,0,2355,2356,7,17,0,0,2356,149,1,0,0,0,2357,2359,5,119, + 0,0,2358,2357,1,0,0,0,2358,2359,1,0,0,0,2359,2360,1,0,0,0,2360,2361, + 7,18,0,0,2361,2362,5,20,0,0,2362,2363,5,201,0,0,2363,2372,3,404, + 202,0,2364,2366,5,119,0,0,2365,2364,1,0,0,0,2365,2366,1,0,0,0,2366, + 2367,1,0,0,0,2367,2368,7,19,0,0,2368,2369,5,20,0,0,2369,2370,5,201, + 0,0,2370,2372,3,292,146,0,2371,2358,1,0,0,0,2371,2365,1,0,0,0,2372, + 151,1,0,0,0,2373,2374,5,130,0,0,2374,2375,5,31,0,0,2375,2380,3,154, + 77,0,2376,2377,5,4,0,0,2377,2379,3,154,77,0,2378,2376,1,0,0,0,2379, + 2382,1,0,0,0,2380,2378,1,0,0,0,2380,2381,1,0,0,0,2381,2413,1,0,0, + 0,2382,2380,1,0,0,0,2383,2384,5,130,0,0,2384,2385,5,31,0,0,2385, + 2390,3,280,140,0,2386,2387,5,4,0,0,2387,2389,3,280,140,0,2388,2386, + 1,0,0,0,2389,2392,1,0,0,0,2390,2388,1,0,0,0,2390,2391,1,0,0,0,2391, + 2410,1,0,0,0,2392,2390,1,0,0,0,2393,2394,5,346,0,0,2394,2411,5,256, + 0,0,2395,2396,5,346,0,0,2396,2411,5,61,0,0,2397,2398,5,131,0,0,2398, + 2399,5,271,0,0,2399,2400,5,2,0,0,2400,2405,3,160,80,0,2401,2402, + 5,4,0,0,2402,2404,3,160,80,0,2403,2401,1,0,0,0,2404,2407,1,0,0,0, + 2405,2403,1,0,0,0,2405,2406,1,0,0,0,2406,2408,1,0,0,0,2407,2405, + 1,0,0,0,2408,2409,5,3,0,0,2409,2411,1,0,0,0,2410,2393,1,0,0,0,2410, + 2395,1,0,0,0,2410,2397,1,0,0,0,2410,2411,1,0,0,0,2411,2413,1,0,0, + 0,2412,2373,1,0,0,0,2412,2383,1,0,0,0,2413,153,1,0,0,0,2414,2418, + 3,92,46,0,2415,2418,3,156,78,0,2416,2418,3,280,140,0,2417,2414,1, + 0,0,0,2417,2415,1,0,0,0,2417,2416,1,0,0,0,2418,155,1,0,0,0,2419, + 2420,7,20,0,0,2420,2421,5,2,0,0,2421,2426,3,160,80,0,2422,2423,5, + 4,0,0,2423,2425,3,160,80,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,3,0,0,2430,2445,1,0,0,0,2431,2432,5,131,0,0,2432,2433, + 5,271,0,0,2433,2434,5,2,0,0,2434,2439,3,158,79,0,2435,2436,5,4,0, + 0,2436,2438,3,158,79,0,2437,2435,1,0,0,0,2438,2441,1,0,0,0,2439, + 2437,1,0,0,0,2439,2440,1,0,0,0,2440,2442,1,0,0,0,2441,2439,1,0,0, + 0,2442,2443,5,3,0,0,2443,2445,1,0,0,0,2444,2419,1,0,0,0,2444,2431, + 1,0,0,0,2445,157,1,0,0,0,2446,2449,3,156,78,0,2447,2449,3,160,80, + 0,2448,2446,1,0,0,0,2448,2447,1,0,0,0,2449,159,1,0,0,0,2450,2471, + 3,92,46,0,2451,2471,3,280,140,0,2452,2467,5,2,0,0,2453,2456,3,92, + 46,0,2454,2456,3,280,140,0,2455,2453,1,0,0,0,2455,2454,1,0,0,0,2456, + 2464,1,0,0,0,2457,2460,5,4,0,0,2458,2461,3,92,46,0,2459,2461,3,280, + 140,0,2460,2458,1,0,0,0,2460,2459,1,0,0,0,2461,2463,1,0,0,0,2462, + 2457,1,0,0,0,2463,2466,1,0,0,0,2464,2462,1,0,0,0,2464,2465,1,0,0, + 0,2465,2468,1,0,0,0,2466,2464,1,0,0,0,2467,2455,1,0,0,0,2467,2468, + 1,0,0,0,2468,2469,1,0,0,0,2469,2471,5,3,0,0,2470,2450,1,0,0,0,2470, + 2451,1,0,0,0,2470,2452,1,0,0,0,2471,161,1,0,0,0,2472,2473,5,223, + 0,0,2473,2474,5,2,0,0,2474,2475,3,268,134,0,2475,2476,5,119,0,0, + 2476,2477,3,164,82,0,2477,2478,5,140,0,0,2478,2479,5,2,0,0,2479, + 2484,3,166,83,0,2480,2481,5,4,0,0,2481,2483,3,166,83,0,2482,2480, + 1,0,0,0,2483,2486,1,0,0,0,2484,2482,1,0,0,0,2484,2485,1,0,0,0,2485, + 2487,1,0,0,0,2486,2484,1,0,0,0,2487,2488,5,3,0,0,2488,2489,5,3,0, + 0,2489,163,1,0,0,0,2490,2503,3,388,194,0,2491,2492,5,2,0,0,2492, + 2497,3,388,194,0,2493,2494,5,4,0,0,2494,2496,3,388,194,0,2495,2493, + 1,0,0,0,2496,2499,1,0,0,0,2497,2495,1,0,0,0,2497,2498,1,0,0,0,2498, + 2500,1,0,0,0,2499,2497,1,0,0,0,2500,2501,5,3,0,0,2501,2503,1,0,0, + 0,2502,2490,1,0,0,0,2502,2491,1,0,0,0,2503,165,1,0,0,0,2504,2509, + 3,280,140,0,2505,2507,5,20,0,0,2506,2505,1,0,0,0,2506,2507,1,0,0, + 0,2507,2508,1,0,0,0,2508,2510,3,388,194,0,2509,2506,1,0,0,0,2509, + 2510,1,0,0,0,2510,167,1,0,0,0,2511,2513,5,327,0,0,2512,2514,3,170, + 85,0,2513,2512,1,0,0,0,2513,2514,1,0,0,0,2514,2515,1,0,0,0,2515, + 2516,5,2,0,0,2516,2517,3,172,86,0,2517,2522,5,3,0,0,2518,2520,5, + 20,0,0,2519,2518,1,0,0,0,2519,2520,1,0,0,0,2520,2521,1,0,0,0,2521, + 2523,3,388,194,0,2522,2519,1,0,0,0,2522,2523,1,0,0,0,2523,169,1, + 0,0,0,2524,2525,7,21,0,0,2525,2526,5,199,0,0,2526,171,1,0,0,0,2527, + 2530,3,174,87,0,2528,2530,3,176,88,0,2529,2527,1,0,0,0,2529,2528, + 1,0,0,0,2530,173,1,0,0,0,2531,2532,3,180,90,0,2532,2533,5,119,0, + 0,2533,2534,3,182,91,0,2534,2535,5,140,0,0,2535,2536,5,2,0,0,2536, + 2541,3,184,92,0,2537,2538,5,4,0,0,2538,2540,3,184,92,0,2539,2537, + 1,0,0,0,2540,2543,1,0,0,0,2541,2539,1,0,0,0,2541,2542,1,0,0,0,2542, + 2544,1,0,0,0,2543,2541,1,0,0,0,2544,2545,5,3,0,0,2545,175,1,0,0, + 0,2546,2547,5,2,0,0,2547,2552,3,180,90,0,2548,2549,5,4,0,0,2549, + 2551,3,180,90,0,2550,2548,1,0,0,0,2551,2554,1,0,0,0,2552,2550,1, + 0,0,0,2552,2553,1,0,0,0,2553,2555,1,0,0,0,2554,2552,1,0,0,0,2555, + 2556,5,3,0,0,2556,2557,5,119,0,0,2557,2558,3,182,91,0,2558,2559, + 5,140,0,0,2559,2560,5,2,0,0,2560,2565,3,178,89,0,2561,2562,5,4,0, + 0,2562,2564,3,178,89,0,2563,2561,1,0,0,0,2564,2567,1,0,0,0,2565, + 2563,1,0,0,0,2565,2566,1,0,0,0,2566,2568,1,0,0,0,2567,2565,1,0,0, + 0,2568,2569,5,3,0,0,2569,177,1,0,0,0,2570,2571,5,2,0,0,2571,2576, + 3,186,93,0,2572,2573,5,4,0,0,2573,2575,3,186,93,0,2574,2572,1,0, + 0,0,2575,2578,1,0,0,0,2576,2574,1,0,0,0,2576,2577,1,0,0,0,2577,2579, + 1,0,0,0,2578,2576,1,0,0,0,2579,2581,5,3,0,0,2580,2582,3,188,94,0, + 2581,2580,1,0,0,0,2581,2582,1,0,0,0,2582,179,1,0,0,0,2583,2584,3, + 388,194,0,2584,181,1,0,0,0,2585,2586,3,388,194,0,2586,183,1,0,0, + 0,2587,2589,3,186,93,0,2588,2590,3,188,94,0,2589,2588,1,0,0,0,2589, + 2590,1,0,0,0,2590,185,1,0,0,0,2591,2592,3,250,125,0,2592,187,1,0, + 0,0,2593,2595,5,20,0,0,2594,2593,1,0,0,0,2594,2595,1,0,0,0,2595, + 2596,1,0,0,0,2596,2597,3,388,194,0,2597,189,1,0,0,0,2598,2599,5, + 137,0,0,2599,2600,5,197,0,0,2600,2601,5,105,0,0,2601,191,1,0,0,0, + 2602,2603,5,137,0,0,2603,2604,5,105,0,0,2604,193,1,0,0,0,2605,2606, + 5,158,0,0,2606,2608,5,338,0,0,2607,2609,5,211,0,0,2608,2607,1,0, + 0,0,2608,2609,1,0,0,0,2609,2610,1,0,0,0,2610,2611,3,90,45,0,2611, + 2620,5,2,0,0,2612,2617,3,280,140,0,2613,2614,5,4,0,0,2614,2616,3, + 280,140,0,2615,2613,1,0,0,0,2616,2619,1,0,0,0,2617,2615,1,0,0,0, + 2617,2618,1,0,0,0,2618,2621,1,0,0,0,2619,2617,1,0,0,0,2620,2612, + 1,0,0,0,2620,2621,1,0,0,0,2621,2622,1,0,0,0,2622,2623,5,3,0,0,2623, + 2635,3,244,122,0,2624,2626,5,20,0,0,2625,2624,1,0,0,0,2625,2626, + 1,0,0,0,2626,2627,1,0,0,0,2627,2632,3,388,194,0,2628,2629,5,4,0, + 0,2629,2631,3,388,194,0,2630,2628,1,0,0,0,2631,2634,1,0,0,0,2632, + 2630,1,0,0,0,2632,2633,1,0,0,0,2633,2636,1,0,0,0,2634,2632,1,0,0, + 0,2635,2625,1,0,0,0,2635,2636,1,0,0,0,2636,195,1,0,0,0,2637,2638, + 7,22,0,0,2638,197,1,0,0,0,2639,2651,3,86,43,0,2640,2642,5,158,0, + 0,2641,2640,1,0,0,0,2641,2642,1,0,0,0,2642,2643,1,0,0,0,2643,2647, + 3,224,112,0,2644,2646,3,200,100,0,2645,2644,1,0,0,0,2646,2649,1, + 0,0,0,2647,2645,1,0,0,0,2647,2648,1,0,0,0,2648,2651,1,0,0,0,2649, + 2647,1,0,0,0,2650,2639,1,0,0,0,2650,2641,1,0,0,0,2651,199,1,0,0, + 0,2652,2656,3,202,101,0,2653,2656,3,162,81,0,2654,2656,3,168,84, + 0,2655,2652,1,0,0,0,2655,2653,1,0,0,0,2655,2654,1,0,0,0,2656,201, + 1,0,0,0,2657,2658,3,204,102,0,2658,2660,5,155,0,0,2659,2661,5,158, + 0,0,2660,2659,1,0,0,0,2660,2661,1,0,0,0,2661,2662,1,0,0,0,2662,2664, + 3,224,112,0,2663,2665,3,206,103,0,2664,2663,1,0,0,0,2664,2665,1, + 0,0,0,2665,2675,1,0,0,0,2666,2667,5,194,0,0,2667,2668,3,204,102, + 0,2668,2670,5,155,0,0,2669,2671,5,158,0,0,2670,2669,1,0,0,0,2670, + 2671,1,0,0,0,2671,2672,1,0,0,0,2672,2673,3,224,112,0,2673,2675,1, + 0,0,0,2674,2657,1,0,0,0,2674,2666,1,0,0,0,2675,203,1,0,0,0,2676, + 2678,5,144,0,0,2677,2676,1,0,0,0,2677,2678,1,0,0,0,2678,2701,1,0, + 0,0,2679,2701,5,60,0,0,2680,2682,5,161,0,0,2681,2683,5,211,0,0,2682, + 2681,1,0,0,0,2682,2683,1,0,0,0,2683,2701,1,0,0,0,2684,2686,5,161, + 0,0,2685,2684,1,0,0,0,2685,2686,1,0,0,0,2686,2687,1,0,0,0,2687,2701, + 5,264,0,0,2688,2690,5,250,0,0,2689,2691,5,211,0,0,2690,2689,1,0, + 0,0,2690,2691,1,0,0,0,2691,2701,1,0,0,0,2692,2694,5,124,0,0,2693, + 2695,5,211,0,0,2694,2693,1,0,0,0,2694,2695,1,0,0,0,2695,2701,1,0, + 0,0,2696,2698,5,161,0,0,2697,2696,1,0,0,0,2697,2698,1,0,0,0,2698, + 2699,1,0,0,0,2699,2701,5,15,0,0,2700,2677,1,0,0,0,2700,2679,1,0, + 0,0,2700,2680,1,0,0,0,2700,2685,1,0,0,0,2700,2688,1,0,0,0,2700,2692, + 1,0,0,0,2700,2697,1,0,0,0,2701,205,1,0,0,0,2702,2703,5,203,0,0,2703, + 2707,3,288,144,0,2704,2705,5,332,0,0,2705,2707,3,212,106,0,2706, + 2702,1,0,0,0,2706,2704,1,0,0,0,2707,207,1,0,0,0,2708,2709,5,295, + 0,0,2709,2711,5,2,0,0,2710,2712,3,210,105,0,2711,2710,1,0,0,0,2711, + 2712,1,0,0,0,2712,2713,1,0,0,0,2713,2718,5,3,0,0,2714,2715,5,243, + 0,0,2715,2716,5,2,0,0,2716,2717,5,382,0,0,2717,2719,5,3,0,0,2718, + 2714,1,0,0,0,2718,2719,1,0,0,0,2719,209,1,0,0,0,2720,2722,5,362, + 0,0,2721,2720,1,0,0,0,2721,2722,1,0,0,0,2722,2723,1,0,0,0,2723,2724, + 7,23,0,0,2724,2745,5,222,0,0,2725,2726,3,280,140,0,2726,2727,5,258, + 0,0,2727,2745,1,0,0,0,2728,2729,5,29,0,0,2729,2730,5,382,0,0,2730, + 2731,5,210,0,0,2731,2732,5,201,0,0,2732,2741,5,382,0,0,2733,2739, + 5,203,0,0,2734,2740,3,388,194,0,2735,2736,3,382,191,0,2736,2737, + 5,2,0,0,2737,2738,5,3,0,0,2738,2740,1,0,0,0,2739,2734,1,0,0,0,2739, + 2735,1,0,0,0,2740,2742,1,0,0,0,2741,2733,1,0,0,0,2741,2742,1,0,0, + 0,2742,2745,1,0,0,0,2743,2745,3,280,140,0,2744,2721,1,0,0,0,2744, + 2725,1,0,0,0,2744,2728,1,0,0,0,2744,2743,1,0,0,0,2745,211,1,0,0, + 0,2746,2747,5,2,0,0,2747,2748,3,214,107,0,2748,2749,5,3,0,0,2749, + 213,1,0,0,0,2750,2755,3,384,192,0,2751,2752,5,4,0,0,2752,2754,3, + 384,192,0,2753,2751,1,0,0,0,2754,2757,1,0,0,0,2755,2753,1,0,0,0, + 2755,2756,1,0,0,0,2756,215,1,0,0,0,2757,2755,1,0,0,0,2758,2759,5, + 2,0,0,2759,2764,3,218,109,0,2760,2761,5,4,0,0,2761,2763,3,218,109, + 0,2762,2760,1,0,0,0,2763,2766,1,0,0,0,2764,2762,1,0,0,0,2764,2765, + 1,0,0,0,2765,2767,1,0,0,0,2766,2764,1,0,0,0,2767,2768,5,3,0,0,2768, + 217,1,0,0,0,2769,2771,3,384,192,0,2770,2772,7,15,0,0,2771,2770,1, + 0,0,0,2771,2772,1,0,0,0,2772,219,1,0,0,0,2773,2774,5,2,0,0,2774, + 2779,3,222,111,0,2775,2776,5,4,0,0,2776,2778,3,222,111,0,2777,2775, + 1,0,0,0,2778,2781,1,0,0,0,2779,2777,1,0,0,0,2779,2780,1,0,0,0,2780, + 2782,1,0,0,0,2781,2779,1,0,0,0,2782,2783,5,3,0,0,2783,221,1,0,0, + 0,2784,2786,3,96,48,0,2785,2787,3,24,12,0,2786,2785,1,0,0,0,2786, + 2787,1,0,0,0,2787,223,1,0,0,0,2788,2792,3,86,43,0,2789,2792,3,90, + 45,0,2790,2792,3,98,49,0,2791,2788,1,0,0,0,2791,2789,1,0,0,0,2791, + 2790,1,0,0,0,2792,2794,1,0,0,0,2793,2795,3,150,75,0,2794,2793,1, + 0,0,0,2794,2795,1,0,0,0,2795,2797,1,0,0,0,2796,2798,3,208,104,0, + 2797,2796,1,0,0,0,2797,2798,1,0,0,0,2798,2799,1,0,0,0,2799,2800, + 3,244,122,0,2800,2822,1,0,0,0,2801,2802,5,2,0,0,2802,2803,3,226, + 113,0,2803,2805,5,3,0,0,2804,2806,3,208,104,0,2805,2804,1,0,0,0, + 2805,2806,1,0,0,0,2806,2807,1,0,0,0,2807,2808,3,244,122,0,2808,2822, + 1,0,0,0,2809,2810,5,2,0,0,2810,2811,3,198,99,0,2811,2813,5,3,0,0, + 2812,2814,3,208,104,0,2813,2812,1,0,0,0,2813,2814,1,0,0,0,2814,2815, + 1,0,0,0,2815,2816,3,244,122,0,2816,2822,1,0,0,0,2817,2818,3,228, + 114,0,2818,2819,3,244,122,0,2819,2822,1,0,0,0,2820,2822,3,240,120, + 0,2821,2791,1,0,0,0,2821,2801,1,0,0,0,2821,2809,1,0,0,0,2821,2817, + 1,0,0,0,2821,2820,1,0,0,0,2822,225,1,0,0,0,2823,2824,3,26,13,0,2824, + 227,1,0,0,0,2825,2826,5,333,0,0,2826,2831,3,280,140,0,2827,2828, + 5,4,0,0,2828,2830,3,280,140,0,2829,2827,1,0,0,0,2830,2833,1,0,0, + 0,2831,2829,1,0,0,0,2831,2832,1,0,0,0,2832,229,1,0,0,0,2833,2831, + 1,0,0,0,2834,2835,5,293,0,0,2835,2837,3,86,43,0,2836,2838,3,232, + 116,0,2837,2836,1,0,0,0,2837,2838,1,0,0,0,2838,2854,1,0,0,0,2839, + 2840,5,293,0,0,2840,2841,5,2,0,0,2841,2842,3,86,43,0,2842,2844,5, + 3,0,0,2843,2845,3,232,116,0,2844,2843,1,0,0,0,2844,2845,1,0,0,0, + 2845,2854,1,0,0,0,2846,2847,5,293,0,0,2847,2848,5,2,0,0,2848,2849, + 3,26,13,0,2849,2851,5,3,0,0,2850,2852,3,232,116,0,2851,2850,1,0, + 0,0,2851,2852,1,0,0,0,2852,2854,1,0,0,0,2853,2834,1,0,0,0,2853,2839, + 1,0,0,0,2853,2846,1,0,0,0,2854,231,1,0,0,0,2855,2856,5,346,0,0,2856, + 2857,5,274,0,0,2857,2875,5,217,0,0,2858,2859,7,24,0,0,2859,2872, + 5,31,0,0,2860,2861,5,2,0,0,2861,2866,3,280,140,0,2862,2863,5,4,0, + 0,2863,2865,3,280,140,0,2864,2862,1,0,0,0,2865,2868,1,0,0,0,2866, + 2864,1,0,0,0,2866,2867,1,0,0,0,2867,2869,1,0,0,0,2868,2866,1,0,0, + 0,2869,2870,5,3,0,0,2870,2873,1,0,0,0,2871,2873,3,280,140,0,2872, + 2860,1,0,0,0,2872,2871,1,0,0,0,2873,2875,1,0,0,0,2874,2855,1,0,0, + 0,2874,2858,1,0,0,0,2875,2892,1,0,0,0,2876,2877,7,25,0,0,2877,2890, + 5,31,0,0,2878,2879,5,2,0,0,2879,2884,3,108,54,0,2880,2881,5,4,0, + 0,2881,2883,3,108,54,0,2882,2880,1,0,0,0,2883,2886,1,0,0,0,2884, + 2882,1,0,0,0,2884,2885,1,0,0,0,2885,2887,1,0,0,0,2886,2884,1,0,0, + 0,2887,2888,5,3,0,0,2888,2891,1,0,0,0,2889,2891,3,108,54,0,2890, + 2878,1,0,0,0,2890,2889,1,0,0,0,2891,2893,1,0,0,0,2892,2876,1,0,0, + 0,2892,2893,1,0,0,0,2893,233,1,0,0,0,2894,2895,3,388,194,0,2895, + 2896,5,373,0,0,2896,2897,3,230,115,0,2897,235,1,0,0,0,2898,2901, + 3,230,115,0,2899,2901,3,234,117,0,2900,2898,1,0,0,0,2900,2899,1, + 0,0,0,2901,237,1,0,0,0,2902,2905,3,236,118,0,2903,2905,3,284,142, + 0,2904,2902,1,0,0,0,2904,2903,1,0,0,0,2905,239,1,0,0,0,2906,2907, + 3,242,121,0,2907,2908,3,244,122,0,2908,241,1,0,0,0,2909,2910,3,378, + 189,0,2910,2919,5,2,0,0,2911,2916,3,238,119,0,2912,2913,5,4,0,0, + 2913,2915,3,238,119,0,2914,2912,1,0,0,0,2915,2918,1,0,0,0,2916,2914, + 1,0,0,0,2916,2917,1,0,0,0,2917,2920,1,0,0,0,2918,2916,1,0,0,0,2919, + 2911,1,0,0,0,2919,2920,1,0,0,0,2920,2921,1,0,0,0,2921,2922,5,3,0, + 0,2922,243,1,0,0,0,2923,2925,5,20,0,0,2924,2923,1,0,0,0,2924,2925, + 1,0,0,0,2925,2926,1,0,0,0,2926,2928,3,390,195,0,2927,2929,3,212, + 106,0,2928,2927,1,0,0,0,2928,2929,1,0,0,0,2929,2931,1,0,0,0,2930, + 2924,1,0,0,0,2930,2931,1,0,0,0,2931,245,1,0,0,0,2932,2933,5,257, + 0,0,2933,2934,5,121,0,0,2934,2935,5,266,0,0,2935,2939,3,400,200, + 0,2936,2937,5,346,0,0,2937,2938,5,267,0,0,2938,2940,3,54,27,0,2939, + 2936,1,0,0,0,2939,2940,1,0,0,0,2940,2982,1,0,0,0,2941,2942,5,257, + 0,0,2942,2943,5,121,0,0,2943,2953,5,85,0,0,2944,2945,5,113,0,0,2945, + 2946,5,299,0,0,2946,2947,5,31,0,0,2947,2951,3,400,200,0,2948,2949, + 5,101,0,0,2949,2950,5,31,0,0,2950,2952,3,400,200,0,2951,2948,1,0, + 0,0,2951,2952,1,0,0,0,2952,2954,1,0,0,0,2953,2944,1,0,0,0,2953,2954, + 1,0,0,0,2954,2960,1,0,0,0,2955,2956,5,48,0,0,2956,2957,5,154,0,0, + 2957,2958,5,299,0,0,2958,2959,5,31,0,0,2959,2961,3,400,200,0,2960, + 2955,1,0,0,0,2960,2961,1,0,0,0,2961,2967,1,0,0,0,2962,2963,5,177, + 0,0,2963,2964,5,156,0,0,2964,2965,5,299,0,0,2965,2966,5,31,0,0,2966, + 2968,3,400,200,0,2967,2962,1,0,0,0,2967,2968,1,0,0,0,2968,2973,1, + 0,0,0,2969,2970,5,166,0,0,2970,2971,5,299,0,0,2971,2972,5,31,0,0, + 2972,2974,3,400,200,0,2973,2969,1,0,0,0,2973,2974,1,0,0,0,2974,2979, + 1,0,0,0,2975,2976,5,198,0,0,2976,2977,5,83,0,0,2977,2978,5,20,0, + 0,2978,2980,3,400,200,0,2979,2975,1,0,0,0,2979,2980,1,0,0,0,2980, + 2982,1,0,0,0,2981,2932,1,0,0,0,2981,2941,1,0,0,0,2982,247,1,0,0, + 0,2983,2988,3,250,125,0,2984,2985,5,4,0,0,2985,2987,3,250,125,0, + 2986,2984,1,0,0,0,2987,2990,1,0,0,0,2988,2986,1,0,0,0,2988,2989, + 1,0,0,0,2989,249,1,0,0,0,2990,2988,1,0,0,0,2991,2996,3,384,192,0, + 2992,2993,5,5,0,0,2993,2995,3,384,192,0,2994,2992,1,0,0,0,2995,2998, + 1,0,0,0,2996,2994,1,0,0,0,2996,2997,1,0,0,0,2997,251,1,0,0,0,2998, + 2996,1,0,0,0,2999,3004,3,254,127,0,3000,3001,5,4,0,0,3001,3003,3, + 254,127,0,3002,3000,1,0,0,0,3003,3006,1,0,0,0,3004,3002,1,0,0,0, + 3004,3005,1,0,0,0,3005,253,1,0,0,0,3006,3004,1,0,0,0,3007,3010,3, + 250,125,0,3008,3009,5,207,0,0,3009,3011,3,54,27,0,3010,3008,1,0, + 0,0,3010,3011,1,0,0,0,3011,255,1,0,0,0,3012,3013,3,384,192,0,3013, + 3014,5,5,0,0,3014,3016,1,0,0,0,3015,3012,1,0,0,0,3015,3016,1,0,0, + 0,3016,3017,1,0,0,0,3017,3018,3,384,192,0,3018,257,1,0,0,0,3019, + 3020,3,384,192,0,3020,3021,5,5,0,0,3021,3023,1,0,0,0,3022,3019,1, + 0,0,0,3022,3023,1,0,0,0,3023,3024,1,0,0,0,3024,3025,3,384,192,0, + 3025,259,1,0,0,0,3026,3027,3,92,46,0,3027,261,1,0,0,0,3028,3029, + 3,280,140,0,3029,263,1,0,0,0,3030,3031,3,382,191,0,3031,3032,5,5, + 0,0,3032,3034,1,0,0,0,3033,3030,1,0,0,0,3034,3037,1,0,0,0,3035,3033, + 1,0,0,0,3035,3036,1,0,0,0,3036,3038,1,0,0,0,3037,3035,1,0,0,0,3038, + 3039,5,363,0,0,3039,265,1,0,0,0,3040,3044,3,264,132,0,3041,3044, + 3,260,130,0,3042,3044,3,262,131,0,3043,3040,1,0,0,0,3043,3041,1, + 0,0,0,3043,3042,1,0,0,0,3044,3052,1,0,0,0,3045,3047,5,20,0,0,3046, + 3045,1,0,0,0,3046,3047,1,0,0,0,3047,3050,1,0,0,0,3048,3051,3,384, + 192,0,3049,3051,3,212,106,0,3050,3048,1,0,0,0,3050,3049,1,0,0,0, + 3051,3053,1,0,0,0,3052,3046,1,0,0,0,3052,3053,1,0,0,0,3053,267,1, + 0,0,0,3054,3059,3,266,133,0,3055,3056,5,4,0,0,3056,3058,3,266,133, + 0,3057,3055,1,0,0,0,3058,3061,1,0,0,0,3059,3057,1,0,0,0,3059,3060, + 1,0,0,0,3060,269,1,0,0,0,3061,3059,1,0,0,0,3062,3063,3,268,134,0, + 3063,271,1,0,0,0,3064,3065,5,2,0,0,3065,3070,3,274,137,0,3066,3067, + 5,4,0,0,3067,3069,3,274,137,0,3068,3066,1,0,0,0,3069,3072,1,0,0, + 0,3070,3068,1,0,0,0,3070,3071,1,0,0,0,3071,3073,1,0,0,0,3072,3070, + 1,0,0,0,3073,3074,5,3,0,0,3074,273,1,0,0,0,3075,3078,3,276,138,0, + 3076,3078,3,348,174,0,3077,3075,1,0,0,0,3077,3076,1,0,0,0,3078,275, + 1,0,0,0,3079,3093,3,382,191,0,3080,3081,3,388,194,0,3081,3082,5, + 2,0,0,3082,3087,3,278,139,0,3083,3084,5,4,0,0,3084,3086,3,278,139, + 0,3085,3083,1,0,0,0,3086,3089,1,0,0,0,3087,3085,1,0,0,0,3087,3088, + 1,0,0,0,3088,3090,1,0,0,0,3089,3087,1,0,0,0,3090,3091,5,3,0,0,3091, + 3093,1,0,0,0,3092,3079,1,0,0,0,3092,3080,1,0,0,0,3093,277,1,0,0, + 0,3094,3097,3,382,191,0,3095,3097,3,300,150,0,3096,3094,1,0,0,0, + 3096,3095,1,0,0,0,3097,279,1,0,0,0,3098,3099,3,288,144,0,3099,281, + 1,0,0,0,3100,3101,3,388,194,0,3101,3102,5,373,0,0,3102,3103,3,280, + 140,0,3103,283,1,0,0,0,3104,3107,3,280,140,0,3105,3107,3,282,141, + 0,3106,3104,1,0,0,0,3106,3105,1,0,0,0,3107,285,1,0,0,0,3108,3113, + 3,280,140,0,3109,3110,5,4,0,0,3110,3112,3,280,140,0,3111,3109,1, + 0,0,0,3112,3115,1,0,0,0,3113,3111,1,0,0,0,3113,3114,1,0,0,0,3114, + 287,1,0,0,0,3115,3113,1,0,0,0,3116,3117,6,144,-1,0,3117,3118,7,26, + 0,0,3118,3129,3,288,144,5,3119,3120,5,105,0,0,3120,3121,5,2,0,0, + 3121,3122,3,26,13,0,3122,3123,5,3,0,0,3123,3129,1,0,0,0,3124,3126, + 3,292,146,0,3125,3127,3,290,145,0,3126,3125,1,0,0,0,3126,3127,1, + 0,0,0,3127,3129,1,0,0,0,3128,3116,1,0,0,0,3128,3119,1,0,0,0,3128, + 3124,1,0,0,0,3129,3138,1,0,0,0,3130,3131,10,2,0,0,3131,3132,5,14, + 0,0,3132,3137,3,288,144,3,3133,3134,10,1,0,0,3134,3135,5,208,0,0, + 3135,3137,3,288,144,2,3136,3130,1,0,0,0,3136,3133,1,0,0,0,3137,3140, + 1,0,0,0,3138,3136,1,0,0,0,3138,3139,1,0,0,0,3139,289,1,0,0,0,3140, + 3138,1,0,0,0,3141,3143,5,197,0,0,3142,3141,1,0,0,0,3142,3143,1,0, + 0,0,3143,3144,1,0,0,0,3144,3145,5,24,0,0,3145,3146,3,292,146,0,3146, + 3147,5,14,0,0,3147,3148,3,292,146,0,3148,3224,1,0,0,0,3149,3151, + 5,197,0,0,3150,3149,1,0,0,0,3150,3151,1,0,0,0,3151,3152,1,0,0,0, + 3152,3153,5,140,0,0,3153,3154,5,2,0,0,3154,3159,3,280,140,0,3155, + 3156,5,4,0,0,3156,3158,3,280,140,0,3157,3155,1,0,0,0,3158,3161,1, + 0,0,0,3159,3157,1,0,0,0,3159,3160,1,0,0,0,3160,3162,1,0,0,0,3161, + 3159,1,0,0,0,3162,3163,5,3,0,0,3163,3224,1,0,0,0,3164,3166,5,197, + 0,0,3165,3164,1,0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3168, + 5,140,0,0,3168,3169,5,2,0,0,3169,3170,3,26,13,0,3170,3171,5,3,0, + 0,3171,3224,1,0,0,0,3172,3174,5,197,0,0,3173,3172,1,0,0,0,3173,3174, + 1,0,0,0,3174,3175,1,0,0,0,3175,3176,7,27,0,0,3176,3224,3,292,146, + 0,3177,3179,5,197,0,0,3178,3177,1,0,0,0,3178,3179,1,0,0,0,3179,3180, + 1,0,0,0,3180,3181,7,28,0,0,3181,3195,7,29,0,0,3182,3183,5,2,0,0, + 3183,3196,5,3,0,0,3184,3185,5,2,0,0,3185,3190,3,280,140,0,3186,3187, + 5,4,0,0,3187,3189,3,280,140,0,3188,3186,1,0,0,0,3189,3192,1,0,0, + 0,3190,3188,1,0,0,0,3190,3191,1,0,0,0,3191,3193,1,0,0,0,3192,3190, + 1,0,0,0,3193,3194,5,3,0,0,3194,3196,1,0,0,0,3195,3182,1,0,0,0,3195, + 3184,1,0,0,0,3196,3224,1,0,0,0,3197,3199,5,197,0,0,3198,3197,1,0, + 0,0,3198,3199,1,0,0,0,3199,3200,1,0,0,0,3200,3201,7,28,0,0,3201, + 3204,3,292,146,0,3202,3203,5,100,0,0,3203,3205,3,400,200,0,3204, + 3202,1,0,0,0,3204,3205,1,0,0,0,3205,3224,1,0,0,0,3206,3208,5,153, + 0,0,3207,3209,5,197,0,0,3208,3207,1,0,0,0,3208,3209,1,0,0,0,3209, + 3210,1,0,0,0,3210,3224,5,198,0,0,3211,3213,5,153,0,0,3212,3214,5, + 197,0,0,3213,3212,1,0,0,0,3213,3214,1,0,0,0,3214,3215,1,0,0,0,3215, + 3224,7,30,0,0,3216,3218,5,153,0,0,3217,3219,5,197,0,0,3218,3217, + 1,0,0,0,3218,3219,1,0,0,0,3219,3220,1,0,0,0,3220,3221,5,92,0,0,3221, + 3222,5,123,0,0,3222,3224,3,292,146,0,3223,3142,1,0,0,0,3223,3150, + 1,0,0,0,3223,3165,1,0,0,0,3223,3173,1,0,0,0,3223,3178,1,0,0,0,3223, + 3198,1,0,0,0,3223,3206,1,0,0,0,3223,3211,1,0,0,0,3223,3216,1,0,0, + 0,3224,291,1,0,0,0,3225,3226,6,146,-1,0,3226,3230,3,296,148,0,3227, + 3228,7,31,0,0,3228,3230,3,292,146,7,3229,3225,1,0,0,0,3229,3227, + 1,0,0,0,3230,3252,1,0,0,0,3231,3232,10,6,0,0,3232,3233,7,32,0,0, + 3233,3251,3,292,146,7,3234,3235,10,5,0,0,3235,3236,7,33,0,0,3236, + 3251,3,292,146,6,3237,3238,10,4,0,0,3238,3239,5,367,0,0,3239,3251, + 3,292,146,5,3240,3241,10,3,0,0,3241,3242,5,370,0,0,3242,3251,3,292, + 146,4,3243,3244,10,2,0,0,3244,3245,5,368,0,0,3245,3251,3,292,146, + 3,3246,3247,10,1,0,0,3247,3248,3,302,151,0,3248,3249,3,292,146,2, + 3249,3251,1,0,0,0,3250,3231,1,0,0,0,3250,3234,1,0,0,0,3250,3237, + 1,0,0,0,3250,3240,1,0,0,0,3250,3243,1,0,0,0,3250,3246,1,0,0,0,3251, + 3254,1,0,0,0,3252,3250,1,0,0,0,3252,3253,1,0,0,0,3253,293,1,0,0, + 0,3254,3252,1,0,0,0,3255,3256,7,34,0,0,3256,295,1,0,0,0,3257,3258, + 6,148,-1,0,3258,3507,7,35,0,0,3259,3260,7,36,0,0,3260,3263,5,2,0, + 0,3261,3264,3,294,147,0,3262,3264,3,400,200,0,3263,3261,1,0,0,0, + 3263,3262,1,0,0,0,3264,3265,1,0,0,0,3265,3266,5,4,0,0,3266,3267, + 3,292,146,0,3267,3268,5,4,0,0,3268,3269,3,292,146,0,3269,3270,5, + 3,0,0,3270,3507,1,0,0,0,3271,3272,7,37,0,0,3272,3275,5,2,0,0,3273, + 3276,3,294,147,0,3274,3276,3,400,200,0,3275,3273,1,0,0,0,3275,3274, + 1,0,0,0,3276,3277,1,0,0,0,3277,3278,5,4,0,0,3278,3279,3,292,146, + 0,3279,3280,5,4,0,0,3280,3281,3,292,146,0,3281,3282,5,3,0,0,3282, + 3507,1,0,0,0,3283,3285,5,35,0,0,3284,3286,3,362,181,0,3285,3284, + 1,0,0,0,3286,3287,1,0,0,0,3287,3285,1,0,0,0,3287,3288,1,0,0,0,3288, + 3291,1,0,0,0,3289,3290,5,97,0,0,3290,3292,3,280,140,0,3291,3289, + 1,0,0,0,3291,3292,1,0,0,0,3292,3293,1,0,0,0,3293,3294,5,99,0,0,3294, + 3507,1,0,0,0,3295,3296,5,35,0,0,3296,3298,3,280,140,0,3297,3299, + 3,362,181,0,3298,3297,1,0,0,0,3299,3300,1,0,0,0,3300,3298,1,0,0, + 0,3300,3301,1,0,0,0,3301,3304,1,0,0,0,3302,3303,5,97,0,0,3303,3305, + 3,280,140,0,3304,3302,1,0,0,0,3304,3305,1,0,0,0,3305,3306,1,0,0, + 0,3306,3307,5,99,0,0,3307,3507,1,0,0,0,3308,3309,7,38,0,0,3309,3310, + 5,2,0,0,3310,3311,3,280,140,0,3311,3312,5,20,0,0,3312,3313,3,330, + 165,0,3313,3314,5,3,0,0,3314,3507,1,0,0,0,3315,3316,5,286,0,0,3316, + 3325,5,2,0,0,3317,3322,3,266,133,0,3318,3319,5,4,0,0,3319,3321,3, + 266,133,0,3320,3318,1,0,0,0,3321,3324,1,0,0,0,3322,3320,1,0,0,0, + 3322,3323,1,0,0,0,3323,3326,1,0,0,0,3324,3322,1,0,0,0,3325,3317, + 1,0,0,0,3325,3326,1,0,0,0,3326,3327,1,0,0,0,3327,3507,5,3,0,0,3328, + 3329,5,116,0,0,3329,3330,5,2,0,0,3330,3333,3,280,140,0,3331,3332, + 5,138,0,0,3332,3334,5,199,0,0,3333,3331,1,0,0,0,3333,3334,1,0,0, + 0,3334,3335,1,0,0,0,3335,3336,5,3,0,0,3336,3507,1,0,0,0,3337,3338, + 5,17,0,0,3338,3339,5,2,0,0,3339,3342,3,280,140,0,3340,3341,5,138, + 0,0,3341,3343,5,199,0,0,3342,3340,1,0,0,0,3342,3343,1,0,0,0,3343, + 3344,1,0,0,0,3344,3345,5,3,0,0,3345,3507,1,0,0,0,3346,3347,5,157, + 0,0,3347,3348,5,2,0,0,3348,3351,3,280,140,0,3349,3350,5,138,0,0, + 3350,3352,5,199,0,0,3351,3349,1,0,0,0,3351,3352,1,0,0,0,3352,3353, + 1,0,0,0,3353,3354,5,3,0,0,3354,3507,1,0,0,0,3355,3356,5,225,0,0, + 3356,3357,5,2,0,0,3357,3358,3,292,146,0,3358,3359,5,140,0,0,3359, + 3360,3,292,146,0,3360,3361,5,3,0,0,3361,3507,1,0,0,0,3362,3507,3, + 300,150,0,3363,3507,5,363,0,0,3364,3365,3,382,191,0,3365,3366,5, + 5,0,0,3366,3367,5,363,0,0,3367,3507,1,0,0,0,3368,3369,5,2,0,0,3369, + 3372,3,266,133,0,3370,3371,5,4,0,0,3371,3373,3,266,133,0,3372,3370, + 1,0,0,0,3373,3374,1,0,0,0,3374,3372,1,0,0,0,3374,3375,1,0,0,0,3375, + 3376,1,0,0,0,3376,3377,5,3,0,0,3377,3507,1,0,0,0,3378,3379,5,2,0, + 0,3379,3380,3,26,13,0,3380,3381,5,3,0,0,3381,3507,1,0,0,0,3382,3383, + 5,136,0,0,3383,3384,5,2,0,0,3384,3385,3,280,140,0,3385,3386,5,3, + 0,0,3386,3507,1,0,0,0,3387,3388,3,378,189,0,3388,3400,5,2,0,0,3389, + 3391,3,196,98,0,3390,3389,1,0,0,0,3390,3391,1,0,0,0,3391,3392,1, + 0,0,0,3392,3397,3,284,142,0,3393,3394,5,4,0,0,3394,3396,3,284,142, + 0,3395,3393,1,0,0,0,3396,3399,1,0,0,0,3397,3395,1,0,0,0,3397,3398, + 1,0,0,0,3398,3401,1,0,0,0,3399,3397,1,0,0,0,3400,3390,1,0,0,0,3400, + 3401,1,0,0,0,3401,3402,1,0,0,0,3402,3409,5,3,0,0,3403,3404,5,114, + 0,0,3404,3405,5,2,0,0,3405,3406,5,344,0,0,3406,3407,3,288,144,0, + 3407,3408,5,3,0,0,3408,3410,1,0,0,0,3409,3403,1,0,0,0,3409,3410, + 1,0,0,0,3410,3413,1,0,0,0,3411,3412,7,39,0,0,3412,3414,5,199,0,0, + 3413,3411,1,0,0,0,3413,3414,1,0,0,0,3414,3417,1,0,0,0,3415,3416, + 5,213,0,0,3416,3418,3,370,185,0,3417,3415,1,0,0,0,3417,3418,1,0, + 0,0,3418,3507,1,0,0,0,3419,3420,3,388,194,0,3420,3421,5,372,0,0, + 3421,3422,3,280,140,0,3422,3507,1,0,0,0,3423,3424,5,2,0,0,3424,3427, + 3,388,194,0,3425,3426,5,4,0,0,3426,3428,3,388,194,0,3427,3425,1, + 0,0,0,3428,3429,1,0,0,0,3429,3427,1,0,0,0,3429,3430,1,0,0,0,3430, + 3431,1,0,0,0,3431,3432,5,3,0,0,3432,3433,5,372,0,0,3433,3434,3,280, + 140,0,3434,3507,1,0,0,0,3435,3507,3,388,194,0,3436,3437,5,2,0,0, + 3437,3438,3,280,140,0,3438,3439,5,3,0,0,3439,3507,1,0,0,0,3440,3441, + 5,110,0,0,3441,3442,5,2,0,0,3442,3443,3,388,194,0,3443,3444,5,123, + 0,0,3444,3445,3,292,146,0,3445,3446,5,3,0,0,3446,3507,1,0,0,0,3447, + 3448,7,40,0,0,3448,3449,5,2,0,0,3449,3450,3,292,146,0,3450,3451, + 7,41,0,0,3451,3454,3,292,146,0,3452,3453,7,42,0,0,3453,3455,3,292, + 146,0,3454,3452,1,0,0,0,3454,3455,1,0,0,0,3455,3456,1,0,0,0,3456, + 3457,5,3,0,0,3457,3507,1,0,0,0,3458,3459,5,315,0,0,3459,3461,5,2, + 0,0,3460,3462,7,43,0,0,3461,3460,1,0,0,0,3461,3462,1,0,0,0,3462, + 3464,1,0,0,0,3463,3465,3,292,146,0,3464,3463,1,0,0,0,3464,3465,1, + 0,0,0,3465,3466,1,0,0,0,3466,3467,5,123,0,0,3467,3468,3,292,146, + 0,3468,3469,5,3,0,0,3469,3507,1,0,0,0,3470,3471,5,215,0,0,3471,3472, + 5,2,0,0,3472,3473,3,292,146,0,3473,3474,5,224,0,0,3474,3475,3,292, + 146,0,3475,3476,5,123,0,0,3476,3479,3,292,146,0,3477,3478,5,119, + 0,0,3478,3480,3,292,146,0,3479,3477,1,0,0,0,3479,3480,1,0,0,0,3480, + 3481,1,0,0,0,3481,3482,5,3,0,0,3482,3507,1,0,0,0,3483,3484,7,44, + 0,0,3484,3485,5,2,0,0,3485,3486,3,292,146,0,3486,3487,5,3,0,0,3487, + 3488,5,347,0,0,3488,3489,5,130,0,0,3489,3490,5,2,0,0,3490,3491,5, + 209,0,0,3491,3492,5,31,0,0,3492,3493,3,108,54,0,3493,3500,5,3,0, + 0,3494,3495,5,114,0,0,3495,3496,5,2,0,0,3496,3497,5,344,0,0,3497, + 3498,3,288,144,0,3498,3499,5,3,0,0,3499,3501,1,0,0,0,3500,3494,1, + 0,0,0,3500,3501,1,0,0,0,3501,3504,1,0,0,0,3502,3503,5,213,0,0,3503, + 3505,3,370,185,0,3504,3502,1,0,0,0,3504,3505,1,0,0,0,3505,3507,1, + 0,0,0,3506,3257,1,0,0,0,3506,3259,1,0,0,0,3506,3271,1,0,0,0,3506, + 3283,1,0,0,0,3506,3295,1,0,0,0,3506,3308,1,0,0,0,3506,3315,1,0,0, + 0,3506,3328,1,0,0,0,3506,3337,1,0,0,0,3506,3346,1,0,0,0,3506,3355, + 1,0,0,0,3506,3362,1,0,0,0,3506,3363,1,0,0,0,3506,3364,1,0,0,0,3506, + 3368,1,0,0,0,3506,3378,1,0,0,0,3506,3382,1,0,0,0,3506,3387,1,0,0, + 0,3506,3419,1,0,0,0,3506,3423,1,0,0,0,3506,3435,1,0,0,0,3506,3436, + 1,0,0,0,3506,3440,1,0,0,0,3506,3447,1,0,0,0,3506,3458,1,0,0,0,3506, + 3470,1,0,0,0,3506,3483,1,0,0,0,3507,3518,1,0,0,0,3508,3509,10,9, + 0,0,3509,3510,5,6,0,0,3510,3511,3,292,146,0,3511,3512,5,7,0,0,3512, + 3517,1,0,0,0,3513,3514,10,7,0,0,3514,3515,5,5,0,0,3515,3517,3,388, + 194,0,3516,3508,1,0,0,0,3516,3513,1,0,0,0,3517,3520,1,0,0,0,3518, + 3516,1,0,0,0,3518,3519,1,0,0,0,3519,297,1,0,0,0,3520,3518,1,0,0, + 0,3521,3529,5,71,0,0,3522,3529,5,303,0,0,3523,3529,5,304,0,0,3524, + 3529,5,305,0,0,3525,3529,5,149,0,0,3526,3529,5,133,0,0,3527,3529, + 3,388,194,0,3528,3521,1,0,0,0,3528,3522,1,0,0,0,3528,3523,1,0,0, + 0,3528,3524,1,0,0,0,3528,3525,1,0,0,0,3528,3526,1,0,0,0,3528,3527, + 1,0,0,0,3529,299,1,0,0,0,3530,3546,5,198,0,0,3531,3546,5,376,0,0, + 3532,3533,5,371,0,0,3533,3546,3,388,194,0,3534,3546,3,310,155,0, + 3535,3536,3,298,149,0,3536,3537,3,400,200,0,3537,3546,1,0,0,0,3538, + 3546,3,396,198,0,3539,3546,3,308,154,0,3540,3542,3,400,200,0,3541, + 3540,1,0,0,0,3542,3543,1,0,0,0,3543,3541,1,0,0,0,3543,3544,1,0,0, + 0,3544,3546,1,0,0,0,3545,3530,1,0,0,0,3545,3531,1,0,0,0,3545,3532, + 1,0,0,0,3545,3534,1,0,0,0,3545,3535,1,0,0,0,3545,3538,1,0,0,0,3545, + 3539,1,0,0,0,3545,3541,1,0,0,0,3546,301,1,0,0,0,3547,3548,7,45,0, + 0,3548,303,1,0,0,0,3549,3550,7,46,0,0,3550,305,1,0,0,0,3551,3552, + 7,47,0,0,3552,307,1,0,0,0,3553,3554,7,48,0,0,3554,309,1,0,0,0,3555, + 3558,5,149,0,0,3556,3559,3,312,156,0,3557,3559,3,316,158,0,3558, + 3556,1,0,0,0,3558,3557,1,0,0,0,3559,311,1,0,0,0,3560,3562,3,314, + 157,0,3561,3563,3,318,159,0,3562,3561,1,0,0,0,3562,3563,1,0,0,0, + 3563,313,1,0,0,0,3564,3565,3,320,160,0,3565,3566,3,322,161,0,3566, + 3568,1,0,0,0,3567,3564,1,0,0,0,3568,3569,1,0,0,0,3569,3567,1,0,0, + 0,3569,3570,1,0,0,0,3570,315,1,0,0,0,3571,3574,3,318,159,0,3572, + 3575,3,314,157,0,3573,3575,3,318,159,0,3574,3572,1,0,0,0,3574,3573, + 1,0,0,0,3574,3575,1,0,0,0,3575,317,1,0,0,0,3576,3577,3,320,160,0, + 3577,3578,3,324,162,0,3578,3579,5,309,0,0,3579,3580,3,324,162,0, + 3580,319,1,0,0,0,3581,3583,7,49,0,0,3582,3581,1,0,0,0,3582,3583, + 1,0,0,0,3583,3587,1,0,0,0,3584,3588,5,382,0,0,3585,3588,5,384,0, + 0,3586,3588,3,400,200,0,3587,3584,1,0,0,0,3587,3585,1,0,0,0,3587, + 3586,1,0,0,0,3588,321,1,0,0,0,3589,3590,7,50,0,0,3590,323,1,0,0, + 0,3591,3592,7,51,0,0,3592,325,1,0,0,0,3593,3597,5,116,0,0,3594,3595, + 5,9,0,0,3595,3597,3,384,192,0,3596,3593,1,0,0,0,3596,3594,1,0,0, + 0,3597,327,1,0,0,0,3598,3629,5,27,0,0,3599,3629,5,308,0,0,3600,3629, + 5,32,0,0,3601,3629,5,276,0,0,3602,3629,5,272,0,0,3603,3629,5,150, + 0,0,3604,3629,5,151,0,0,3605,3629,5,25,0,0,3606,3629,5,174,0,0,3607, + 3629,5,117,0,0,3608,3629,5,234,0,0,3609,3629,5,95,0,0,3610,3629, + 5,71,0,0,3611,3629,5,303,0,0,3612,3629,5,305,0,0,3613,3629,5,304, + 0,0,3614,3629,5,285,0,0,3615,3629,5,41,0,0,3616,3629,5,40,0,0,3617, + 3629,5,334,0,0,3618,3629,5,26,0,0,3619,3629,5,80,0,0,3620,3629,5, + 79,0,0,3621,3629,5,200,0,0,3622,3629,5,340,0,0,3623,3629,5,149,0, + 0,3624,3629,5,19,0,0,3625,3629,5,286,0,0,3626,3629,5,177,0,0,3627, + 3629,3,388,194,0,3628,3598,1,0,0,0,3628,3599,1,0,0,0,3628,3600,1, + 0,0,0,3628,3601,1,0,0,0,3628,3602,1,0,0,0,3628,3603,1,0,0,0,3628, + 3604,1,0,0,0,3628,3605,1,0,0,0,3628,3606,1,0,0,0,3628,3607,1,0,0, + 0,3628,3608,1,0,0,0,3628,3609,1,0,0,0,3628,3610,1,0,0,0,3628,3611, + 1,0,0,0,3628,3612,1,0,0,0,3628,3613,1,0,0,0,3628,3614,1,0,0,0,3628, + 3615,1,0,0,0,3628,3616,1,0,0,0,3628,3617,1,0,0,0,3628,3618,1,0,0, + 0,3628,3619,1,0,0,0,3628,3620,1,0,0,0,3628,3621,1,0,0,0,3628,3622, + 1,0,0,0,3628,3623,1,0,0,0,3628,3624,1,0,0,0,3628,3625,1,0,0,0,3628, + 3626,1,0,0,0,3628,3627,1,0,0,0,3629,329,1,0,0,0,3630,3631,5,19,0, + 0,3631,3632,5,356,0,0,3632,3633,3,330,165,0,3633,3634,5,358,0,0, + 3634,3677,1,0,0,0,3635,3636,5,177,0,0,3636,3637,5,356,0,0,3637,3638, + 3,330,165,0,3638,3639,5,4,0,0,3639,3640,3,330,165,0,3640,3641,5, + 358,0,0,3641,3677,1,0,0,0,3642,3649,5,286,0,0,3643,3645,5,356,0, + 0,3644,3646,3,358,179,0,3645,3644,1,0,0,0,3645,3646,1,0,0,0,3646, + 3647,1,0,0,0,3647,3650,5,358,0,0,3648,3650,5,354,0,0,3649,3643,1, + 0,0,0,3649,3648,1,0,0,0,3650,3677,1,0,0,0,3651,3652,5,149,0,0,3652, + 3655,7,52,0,0,3653,3654,5,309,0,0,3654,3656,5,186,0,0,3655,3653, + 1,0,0,0,3655,3656,1,0,0,0,3656,3677,1,0,0,0,3657,3658,5,149,0,0, + 3658,3661,7,53,0,0,3659,3660,5,309,0,0,3660,3662,7,54,0,0,3661,3659, + 1,0,0,0,3661,3662,1,0,0,0,3662,3677,1,0,0,0,3663,3674,3,328,164, + 0,3664,3665,5,2,0,0,3665,3670,5,382,0,0,3666,3667,5,4,0,0,3667,3669, + 5,382,0,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,3673,1,0,0,0,3672,3670,1,0,0,0,3673,3675, + 5,3,0,0,3674,3664,1,0,0,0,3674,3675,1,0,0,0,3675,3677,1,0,0,0,3676, + 3630,1,0,0,0,3676,3635,1,0,0,0,3676,3642,1,0,0,0,3676,3651,1,0,0, + 0,3676,3657,1,0,0,0,3676,3663,1,0,0,0,3677,331,1,0,0,0,3678,3683, + 3,334,167,0,3679,3680,5,4,0,0,3680,3682,3,334,167,0,3681,3679,1, + 0,0,0,3682,3685,1,0,0,0,3683,3681,1,0,0,0,3683,3684,1,0,0,0,3684, + 333,1,0,0,0,3685,3683,1,0,0,0,3686,3687,3,96,48,0,3687,3691,3,330, + 165,0,3688,3690,3,340,170,0,3689,3688,1,0,0,0,3690,3693,1,0,0,0, + 3691,3689,1,0,0,0,3691,3692,1,0,0,0,3692,335,1,0,0,0,3693,3691,1, + 0,0,0,3694,3699,3,338,169,0,3695,3696,5,4,0,0,3696,3698,3,338,169, + 0,3697,3695,1,0,0,0,3698,3701,1,0,0,0,3699,3697,1,0,0,0,3699,3700, + 1,0,0,0,3700,337,1,0,0,0,3701,3699,1,0,0,0,3702,3703,3,92,46,0,3703, + 3707,3,330,165,0,3704,3706,3,340,170,0,3705,3704,1,0,0,0,3706,3709, + 1,0,0,0,3707,3705,1,0,0,0,3707,3708,1,0,0,0,3708,339,1,0,0,0,3709, + 3707,1,0,0,0,3710,3711,5,197,0,0,3711,3716,5,198,0,0,3712,3716,3, + 342,171,0,3713,3716,3,24,12,0,3714,3716,3,326,163,0,3715,3710,1, + 0,0,0,3715,3712,1,0,0,0,3715,3713,1,0,0,0,3715,3714,1,0,0,0,3716, + 341,1,0,0,0,3717,3718,5,82,0,0,3718,3719,3,280,140,0,3719,343,1, + 0,0,0,3720,3721,7,55,0,0,3721,3722,3,280,140,0,3722,345,1,0,0,0, + 3723,3728,3,348,174,0,3724,3725,5,4,0,0,3725,3727,3,348,174,0,3726, + 3724,1,0,0,0,3727,3730,1,0,0,0,3728,3726,1,0,0,0,3728,3729,1,0,0, + 0,3729,347,1,0,0,0,3730,3728,1,0,0,0,3731,3732,3,384,192,0,3732, + 3735,3,330,165,0,3733,3734,5,197,0,0,3734,3736,5,198,0,0,3735,3733, + 1,0,0,0,3735,3736,1,0,0,0,3736,3738,1,0,0,0,3737,3739,3,24,12,0, + 3738,3737,1,0,0,0,3738,3739,1,0,0,0,3739,349,1,0,0,0,3740,3745,3, + 352,176,0,3741,3742,5,4,0,0,3742,3744,3,352,176,0,3743,3741,1,0, + 0,0,3744,3747,1,0,0,0,3745,3743,1,0,0,0,3745,3746,1,0,0,0,3746,351, + 1,0,0,0,3747,3745,1,0,0,0,3748,3749,3,96,48,0,3749,3753,3,330,165, + 0,3750,3752,3,354,177,0,3751,3750,1,0,0,0,3752,3755,1,0,0,0,3753, + 3751,1,0,0,0,3753,3754,1,0,0,0,3754,353,1,0,0,0,3755,3753,1,0,0, + 0,3756,3757,5,197,0,0,3757,3762,5,198,0,0,3758,3762,3,342,171,0, + 3759,3762,3,356,178,0,3760,3762,3,24,12,0,3761,3756,1,0,0,0,3761, + 3758,1,0,0,0,3761,3759,1,0,0,0,3761,3760,1,0,0,0,3762,355,1,0,0, + 0,3763,3764,5,127,0,0,3764,3765,5,12,0,0,3765,3766,5,20,0,0,3766, + 3767,5,2,0,0,3767,3768,3,280,140,0,3768,3769,5,3,0,0,3769,357,1, + 0,0,0,3770,3775,3,360,180,0,3771,3772,5,4,0,0,3772,3774,3,360,180, + 0,3773,3771,1,0,0,0,3774,3777,1,0,0,0,3775,3773,1,0,0,0,3775,3776, + 1,0,0,0,3776,359,1,0,0,0,3777,3775,1,0,0,0,3778,3780,3,388,194,0, + 3779,3781,5,371,0,0,3780,3779,1,0,0,0,3780,3781,1,0,0,0,3781,3782, + 1,0,0,0,3782,3785,3,330,165,0,3783,3784,5,197,0,0,3784,3786,5,198, + 0,0,3785,3783,1,0,0,0,3785,3786,1,0,0,0,3786,3788,1,0,0,0,3787,3789, + 3,24,12,0,3788,3787,1,0,0,0,3788,3789,1,0,0,0,3789,361,1,0,0,0,3790, + 3791,5,343,0,0,3791,3792,3,280,140,0,3792,3793,5,300,0,0,3793,3794, + 3,280,140,0,3794,363,1,0,0,0,3795,3796,5,345,0,0,3796,3801,3,368, + 184,0,3797,3798,5,4,0,0,3798,3800,3,368,184,0,3799,3797,1,0,0,0, + 3800,3803,1,0,0,0,3801,3799,1,0,0,0,3801,3802,1,0,0,0,3802,365,1, + 0,0,0,3803,3801,1,0,0,0,3804,3805,5,351,0,0,3805,3806,5,31,0,0,3806, + 3807,3,94,47,0,3807,367,1,0,0,0,3808,3809,3,384,192,0,3809,3810, + 5,20,0,0,3810,3811,3,370,185,0,3811,369,1,0,0,0,3812,3859,3,384, + 192,0,3813,3814,5,2,0,0,3814,3815,3,384,192,0,3815,3816,5,3,0,0, + 3816,3859,1,0,0,0,3817,3852,5,2,0,0,3818,3819,5,44,0,0,3819,3820, + 5,31,0,0,3820,3825,3,280,140,0,3821,3822,5,4,0,0,3822,3824,3,280, + 140,0,3823,3821,1,0,0,0,3824,3827,1,0,0,0,3825,3823,1,0,0,0,3825, + 3826,1,0,0,0,3826,3853,1,0,0,0,3827,3825,1,0,0,0,3828,3829,7,24, + 0,0,3829,3830,5,31,0,0,3830,3835,3,280,140,0,3831,3832,5,4,0,0,3832, + 3834,3,280,140,0,3833,3831,1,0,0,0,3834,3837,1,0,0,0,3835,3833,1, + 0,0,0,3835,3836,1,0,0,0,3836,3839,1,0,0,0,3837,3835,1,0,0,0,3838, + 3828,1,0,0,0,3838,3839,1,0,0,0,3839,3850,1,0,0,0,3840,3841,7,25, + 0,0,3841,3842,5,31,0,0,3842,3847,3,108,54,0,3843,3844,5,4,0,0,3844, + 3846,3,108,54,0,3845,3843,1,0,0,0,3846,3849,1,0,0,0,3847,3845,1, + 0,0,0,3847,3848,1,0,0,0,3848,3851,1,0,0,0,3849,3847,1,0,0,0,3850, + 3840,1,0,0,0,3850,3851,1,0,0,0,3851,3853,1,0,0,0,3852,3818,1,0,0, + 0,3852,3838,1,0,0,0,3853,3855,1,0,0,0,3854,3856,3,372,186,0,3855, + 3854,1,0,0,0,3855,3856,1,0,0,0,3856,3857,1,0,0,0,3857,3859,5,3,0, + 0,3858,3812,1,0,0,0,3858,3813,1,0,0,0,3858,3817,1,0,0,0,3859,371, + 1,0,0,0,3860,3861,5,233,0,0,3861,3877,3,374,187,0,3862,3863,5,258, + 0,0,3863,3877,3,374,187,0,3864,3865,5,233,0,0,3865,3866,5,24,0,0, + 3866,3867,3,374,187,0,3867,3868,5,14,0,0,3868,3869,3,374,187,0,3869, + 3877,1,0,0,0,3870,3871,5,258,0,0,3871,3872,5,24,0,0,3872,3873,3, + 374,187,0,3873,3874,5,14,0,0,3874,3875,3,374,187,0,3875,3877,1,0, + 0,0,3876,3860,1,0,0,0,3876,3862,1,0,0,0,3876,3864,1,0,0,0,3876,3870, + 1,0,0,0,3877,373,1,0,0,0,3878,3879,5,321,0,0,3879,3886,7,56,0,0, + 3880,3881,5,62,0,0,3881,3886,5,257,0,0,3882,3883,3,280,140,0,3883, + 3884,7,56,0,0,3884,3886,1,0,0,0,3885,3878,1,0,0,0,3885,3880,1,0, + 0,0,3885,3882,1,0,0,0,3886,375,1,0,0,0,3887,3892,3,382,191,0,3888, + 3889,5,4,0,0,3889,3891,3,382,191,0,3890,3888,1,0,0,0,3891,3894,1, + 0,0,0,3892,3890,1,0,0,0,3892,3893,1,0,0,0,3893,377,1,0,0,0,3894, + 3892,1,0,0,0,3895,3896,5,136,0,0,3896,3897,5,2,0,0,3897,3898,3,280, + 140,0,3898,3899,5,3,0,0,3899,3905,1,0,0,0,3900,3905,3,382,191,0, + 3901,3905,5,114,0,0,3902,3905,5,161,0,0,3903,3905,5,250,0,0,3904, + 3895,1,0,0,0,3904,3900,1,0,0,0,3904,3901,1,0,0,0,3904,3902,1,0,0, + 0,3904,3903,1,0,0,0,3905,379,1,0,0,0,3906,3907,3,382,191,0,3907, + 381,1,0,0,0,3908,3913,3,388,194,0,3909,3910,5,5,0,0,3910,3912,3, + 388,194,0,3911,3909,1,0,0,0,3912,3915,1,0,0,0,3913,3911,1,0,0,0, + 3913,3914,1,0,0,0,3914,383,1,0,0,0,3915,3913,1,0,0,0,3916,3917,3, + 388,194,0,3917,3918,3,386,193,0,3918,385,1,0,0,0,3919,3920,5,362, + 0,0,3920,3922,3,388,194,0,3921,3919,1,0,0,0,3922,3923,1,0,0,0,3923, + 3921,1,0,0,0,3923,3924,1,0,0,0,3924,3927,1,0,0,0,3925,3927,1,0,0, + 0,3926,3921,1,0,0,0,3926,3925,1,0,0,0,3927,387,1,0,0,0,3928,3931, + 3,390,195,0,3929,3931,3,408,204,0,3930,3928,1,0,0,0,3930,3929,1, + 0,0,0,3931,389,1,0,0,0,3932,3937,5,388,0,0,3933,3937,3,392,196,0, + 3934,3937,3,406,203,0,3935,3937,3,410,205,0,3936,3932,1,0,0,0,3936, + 3933,1,0,0,0,3936,3934,1,0,0,0,3936,3935,1,0,0,0,3937,391,1,0,0, + 0,3938,3939,7,57,0,0,3939,393,1,0,0,0,3940,3941,5,389,0,0,3941,395, + 1,0,0,0,3942,3944,5,362,0,0,3943,3942,1,0,0,0,3943,3944,1,0,0,0, + 3944,3945,1,0,0,0,3945,3983,5,383,0,0,3946,3948,5,362,0,0,3947,3946, + 1,0,0,0,3947,3948,1,0,0,0,3948,3949,1,0,0,0,3949,3983,5,384,0,0, + 3950,3952,5,362,0,0,3951,3950,1,0,0,0,3951,3952,1,0,0,0,3952,3953, + 1,0,0,0,3953,3983,7,58,0,0,3954,3956,5,362,0,0,3955,3954,1,0,0,0, + 3955,3956,1,0,0,0,3956,3957,1,0,0,0,3957,3983,5,382,0,0,3958,3960, + 5,362,0,0,3959,3958,1,0,0,0,3959,3960,1,0,0,0,3960,3961,1,0,0,0, + 3961,3983,5,379,0,0,3962,3964,5,362,0,0,3963,3962,1,0,0,0,3963,3964, + 1,0,0,0,3964,3965,1,0,0,0,3965,3983,5,380,0,0,3966,3968,5,362,0, + 0,3967,3966,1,0,0,0,3967,3968,1,0,0,0,3968,3969,1,0,0,0,3969,3983, + 5,381,0,0,3970,3972,5,362,0,0,3971,3970,1,0,0,0,3971,3972,1,0,0, + 0,3972,3973,1,0,0,0,3973,3983,5,386,0,0,3974,3976,5,362,0,0,3975, + 3974,1,0,0,0,3975,3976,1,0,0,0,3976,3977,1,0,0,0,3977,3983,5,385, + 0,0,3978,3980,5,362,0,0,3979,3978,1,0,0,0,3979,3980,1,0,0,0,3980, + 3981,1,0,0,0,3981,3983,5,387,0,0,3982,3943,1,0,0,0,3982,3947,1,0, + 0,0,3982,3951,1,0,0,0,3982,3955,1,0,0,0,3982,3959,1,0,0,0,3982,3963, + 1,0,0,0,3982,3967,1,0,0,0,3982,3971,1,0,0,0,3982,3975,1,0,0,0,3982, + 3979,1,0,0,0,3983,397,1,0,0,0,3984,3985,5,319,0,0,3985,3996,3,330, + 165,0,3986,3996,3,24,12,0,3987,3996,3,326,163,0,3988,3989,7,59,0, + 0,3989,3990,5,197,0,0,3990,3996,5,198,0,0,3991,3992,5,269,0,0,3992, + 3996,3,342,171,0,3993,3994,5,96,0,0,3994,3996,5,82,0,0,3995,3984, + 1,0,0,0,3995,3986,1,0,0,0,3995,3987,1,0,0,0,3995,3988,1,0,0,0,3995, + 3991,1,0,0,0,3995,3993,1,0,0,0,3996,399,1,0,0,0,3997,3998,7,60,0, + 0,3998,401,1,0,0,0,3999,4002,3,400,200,0,4000,4002,5,198,0,0,4001, + 3999,1,0,0,0,4001,4000,1,0,0,0,4002,403,1,0,0,0,4003,4006,5,382, + 0,0,4004,4006,3,400,200,0,4005,4003,1,0,0,0,4005,4004,1,0,0,0,4006, + 405,1,0,0,0,4007,4008,7,61,0,0,4008,407,1,0,0,0,4009,4010,7,62,0, + 0,4010,409,1,0,0,0,4011,4012,7,63,0,0,4012,411,1,0,0,0,519,415,422, + 426,431,438,443,451,453,472,476,482,485,488,495,498,502,505,510, + 522,524,532,535,539,542,548,559,565,570,603,613,624,635,646,651, + 660,664,670,674,679,685,697,705,711,722,726,731,746,750,757,761, + 767,796,800,805,812,818,821,824,828,832,840,842,851,854,863,868, + 874,881,884,888,899,902,908,912,927,929,937,941,947,950,954,957, + 963,968,972,979,982,985,992,997,1006,1014,1020,1023,1026,1032,1036, + 1041,1044,1048,1050,1058,1066,1069,1076,1079,1082,1091,1096,1102, + 1107,1110,1114,1117,1121,1149,1152,1160,1166,1169,1172,1177,1185, + 1190,1196,1202,1205,1212,1219,1227,1244,1271,1274,1280,1289,1298, + 1304,1309,1314,1321,1326,1331,1338,1346,1349,1353,1365,1369,1376, + 1492,1500,1508,1517,1527,1531,1534,1538,1544,1556,1568,1573,1582, + 1590,1595,1597,1605,1610,1614,1617,1625,1630,1639,1644,1647,1652, + 1656,1661,1663,1667,1676,1684,1690,1701,1708,1717,1722,1725,1748, + 1750,1762,1769,1772,1779,1783,1789,1797,1804,1807,1815,1826,1837, + 1845,1851,1863,1870,1877,1889,1897,1903,1909,1912,1928,1935,1946, + 1955,1958,1967,1970,1979,1982,1991,1994,1997,2002,2004,2008,2019, + 2025,2031,2034,2036,2049,2058,2062,2065,2069,2075,2079,2087,2091, + 2094,2097,2100,2104,2108,2113,2117,2120,2123,2126,2130,2135,2139, + 2142,2145,2148,2150,2156,2163,2168,2171,2174,2178,2188,2192,2194, + 2197,2201,2207,2211,2222,2232,2236,2248,2260,2275,2280,2286,2293, + 2309,2314,2327,2332,2340,2346,2350,2353,2358,2365,2371,2380,2390, + 2405,2410,2412,2417,2426,2439,2444,2448,2455,2460,2464,2467,2470, + 2484,2497,2502,2506,2509,2513,2519,2522,2529,2541,2552,2565,2576, + 2581,2589,2594,2608,2617,2620,2625,2632,2635,2641,2647,2650,2655, + 2660,2664,2670,2674,2677,2682,2685,2690,2694,2697,2700,2706,2711, + 2718,2721,2739,2741,2744,2755,2764,2771,2779,2786,2791,2794,2797, + 2805,2813,2821,2831,2837,2844,2851,2853,2866,2872,2874,2884,2890, + 2892,2900,2904,2916,2919,2924,2928,2930,2939,2951,2953,2960,2967, + 2973,2979,2981,2988,2996,3004,3010,3015,3022,3035,3043,3046,3050, + 3052,3059,3070,3077,3087,3092,3096,3106,3113,3126,3128,3136,3138, + 3142,3150,3159,3165,3173,3178,3190,3195,3198,3204,3208,3213,3218, + 3223,3229,3250,3252,3263,3275,3287,3291,3300,3304,3322,3325,3333, + 3342,3351,3374,3390,3397,3400,3409,3413,3417,3429,3454,3461,3464, + 3479,3500,3504,3506,3516,3518,3528,3543,3545,3558,3562,3569,3574, + 3582,3587,3596,3628,3645,3649,3655,3661,3670,3674,3676,3683,3691, + 3699,3707,3715,3728,3735,3738,3745,3753,3761,3775,3780,3785,3788, + 3801,3825,3835,3838,3847,3850,3852,3855,3858,3876,3885,3892,3904, + 3913,3923,3926,3930,3936,3943,3947,3951,3955,3959,3963,3967,3971, + 3975,3979,3982,3995,4001,4005 ]; private static __ATN: antlr.ATN; @@ -27278,8 +27498,29 @@ export class QueryPrimaryContext extends antlr.ParserRuleContext { public tableName(): TableNameContext | null { return this.getRuleContext(0, TableNameContext); } - public inlineTable(): InlineTableContext | null { - return this.getRuleContext(0, InlineTableContext); + public KW_VALUES(): antlr.TerminalNode | null { + return this.getToken(SparkSqlParser.KW_VALUES, 0); + } + public expression(): ExpressionContext[]; + public expression(i: number): ExpressionContext | null; + public expression(i?: number): ExpressionContext[] | ExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ExpressionContext); + } + + return this.getRuleContext(i, ExpressionContext); + } + public tableAlias(): TableAliasContext | null { + return this.getRuleContext(0, TableAliasContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.COMMA); + } else { + return this.getToken(SparkSqlParser.COMMA, i); + } } public LEFT_PAREN(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.LEFT_PAREN, 0); @@ -27630,8 +27871,8 @@ export class SelectClauseContext extends antlr.ParserRuleContext { public KW_SELECT(): antlr.TerminalNode { return this.getToken(SparkSqlParser.KW_SELECT, 0)!; } - public namedExpressionSeq(): NamedExpressionSeqContext { - return this.getRuleContext(0, NamedExpressionSeqContext)!; + public selectList(): SelectListContext { + return this.getRuleContext(0, SelectListContext)!; } public setQuantifier(): SetQuantifierContext | null { return this.getRuleContext(0, SetQuantifierContext); @@ -30060,106 +30301,291 @@ export class OrderedIdentifierContext extends antlr.ParserRuleContext { public KW_DESC(): antlr.TerminalNode | null { return this.getToken(SparkSqlParser.KW_DESC, 0); } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_orderedIdentifier; + public override get ruleIndex(): number { + return SparkSqlParser.RULE_orderedIdentifier; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterOrderedIdentifier) { + listener.enterOrderedIdentifier(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitOrderedIdentifier) { + listener.exitOrderedIdentifier(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitOrderedIdentifier) { + return visitor.visitOrderedIdentifier(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IdentifierCommentListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } + public identifierComment(): IdentifierCommentContext[]; + public identifierComment(i: number): IdentifierCommentContext | null; + public identifierComment(i?: number): IdentifierCommentContext[] | IdentifierCommentContext | null { + if (i === undefined) { + return this.getRuleContexts(IdentifierCommentContext); + } + + return this.getRuleContext(i, IdentifierCommentContext); + } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_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(SparkSqlParser.COMMA); + } else { + return this.getToken(SparkSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_identifierCommentList; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterIdentifierCommentList) { + listener.enterIdentifierCommentList(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitIdentifierCommentList) { + listener.exitIdentifierCommentList(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitIdentifierCommentList) { + return visitor.visitIdentifierCommentList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class IdentifierCommentContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnNameCreate(): ColumnNameCreateContext { + return this.getRuleContext(0, ColumnNameCreateContext)!; + } + public commentSpec(): CommentSpecContext | null { + return this.getRuleContext(0, CommentSpecContext); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_identifierComment; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterIdentifierComment) { + listener.enterIdentifierComment(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitIdentifierComment) { + listener.exitIdentifierComment(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitIdentifierComment) { + return visitor.visitIdentifierComment(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelationPrimaryContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_relationPrimary; + } + public override copyFrom(ctx: RelationPrimaryContext): void { + super.copyFrom(ctx); + } +} +export class SubQueryTableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } + public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { + return this.getRuleContext(0, AtomSubQueryTableSourceContext)!; + } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public sample(): SampleContext | null { + return this.getRuleContext(0, SampleContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSubQueryTableSource) { + listener.enterSubQueryTableSource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSubQueryTableSource) { + listener.exitSubQueryTableSource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSubQueryTableSource) { + return visitor.visitSubQueryTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class TableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public tableName(): TableNameContext | null { + return this.getRuleContext(0, TableNameContext); + } + public viewName(): ViewNameContext | null { + return this.getRuleContext(0, ViewNameContext); + } + public identifierReference(): IdentifierReferenceContext | null { + return this.getRuleContext(0, IdentifierReferenceContext); + } + public temporalClause(): TemporalClauseContext | null { + return this.getRuleContext(0, TemporalClauseContext); + } + public sample(): SampleContext | null { + return this.getRuleContext(0, SampleContext); + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterTableSource) { + listener.enterTableSource(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitTableSource) { + listener.exitTableSource(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitTableSource) { + return visitor.visitTableSource(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class FunctionTableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public functionTable(): FunctionTableContext { + return this.getRuleContext(0, FunctionTableContext)!; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterOrderedIdentifier) { - listener.enterOrderedIdentifier(this); + if(listener.enterFunctionTableSource) { + listener.enterFunctionTableSource(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitOrderedIdentifier) { - listener.exitOrderedIdentifier(this); + if(listener.exitFunctionTableSource) { + listener.exitFunctionTableSource(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitOrderedIdentifier) { - return visitor.visitOrderedIdentifier(this); + if (visitor.visitFunctionTableSource) { + return visitor.visitFunctionTableSource(this); } else { return visitor.visitChildren(this); } } } - - -export class IdentifierCommentListContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); +export class JoinTableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } public LEFT_PAREN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; } - public identifierComment(): IdentifierCommentContext[]; - public identifierComment(i: number): IdentifierCommentContext | null; - public identifierComment(i?: number): IdentifierCommentContext[] | IdentifierCommentContext | null { - if (i === undefined) { - return this.getRuleContexts(IdentifierCommentContext); - } - - return this.getRuleContext(i, IdentifierCommentContext); + public relation(): RelationContext { + return this.getRuleContext(0, RelationContext)!; } public RIGHT_PAREN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.RIGHT_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(SparkSqlParser.COMMA); - } else { - return this.getToken(SparkSqlParser.COMMA, i); - } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_identifierCommentList; + public sample(): SampleContext | null { + return this.getRuleContext(0, SampleContext); } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterIdentifierCommentList) { - listener.enterIdentifierCommentList(this); + if(listener.enterJoinTableSource) { + listener.enterJoinTableSource(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitIdentifierCommentList) { - listener.exitIdentifierCommentList(this); + if(listener.exitJoinTableSource) { + listener.exitJoinTableSource(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitIdentifierCommentList) { - return visitor.visitIdentifierCommentList(this); + if (visitor.visitJoinTableSource) { + return visitor.visitJoinTableSource(this); } else { return visitor.visitChildren(this); } } } - - -export class IdentifierCommentContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public columnNameCreate(): ColumnNameCreateContext { - return this.getRuleContext(0, ColumnNameCreateContext)!; +export class InlineTableSourceContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public commentSpec(): CommentSpecContext | null { - return this.getRuleContext(0, CommentSpecContext); + public inlineTable(): InlineTableContext { + return this.getRuleContext(0, InlineTableContext)!; } - public override get ruleIndex(): number { - return SparkSqlParser.RULE_identifierComment; + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterIdentifierComment) { - listener.enterIdentifierComment(this); + if(listener.enterInlineTableSource) { + listener.enterInlineTableSource(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitIdentifierComment) { - listener.exitIdentifierComment(this); + if(listener.exitInlineTableSource) { + listener.exitInlineTableSource(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitIdentifierComment) { - return visitor.visitIdentifierComment(this); + if (visitor.visitInlineTableSource) { + return visitor.visitInlineTableSource(this); } else { return visitor.visitChildren(this); } @@ -30167,62 +30593,29 @@ export class IdentifierCommentContext extends antlr.ParserRuleContext { } -export class RelationPrimaryContext extends antlr.ParserRuleContext { +export class AtomSubQueryTableSourceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableAlias(): TableAliasContext | null { - return this.getRuleContext(0, TableAliasContext); - } - public tableName(): TableNameContext | null { - return this.getRuleContext(0, TableNameContext); - } - public viewName(): ViewNameContext | null { - return this.getRuleContext(0, ViewNameContext); - } - public identifierReference(): IdentifierReferenceContext | null { - return this.getRuleContext(0, IdentifierReferenceContext); - } - public temporalClause(): TemporalClauseContext | null { - return this.getRuleContext(0, TemporalClauseContext); - } - public sample(): SampleContext | null { - return this.getRuleContext(0, SampleContext); - } - public LEFT_PAREN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.LEFT_PAREN, 0); - } - public query(): QueryContext | null { - return this.getRuleContext(0, QueryContext); - } - public RIGHT_PAREN(): antlr.TerminalNode | null { - return this.getToken(SparkSqlParser.RIGHT_PAREN, 0); - } - public relation(): RelationContext | null { - return this.getRuleContext(0, RelationContext); - } - public inlineTable(): InlineTableContext | null { - return this.getRuleContext(0, InlineTableContext); - } - public functionTable(): FunctionTableContext | null { - return this.getRuleContext(0, FunctionTableContext); + public query(): QueryContext { + return this.getRuleContext(0, QueryContext)!; } public override get ruleIndex(): number { - return SparkSqlParser.RULE_relationPrimary; + return SparkSqlParser.RULE_atomSubQueryTableSource; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterRelationPrimary) { - listener.enterRelationPrimary(this); + if(listener.enterAtomSubQueryTableSource) { + listener.enterAtomSubQueryTableSource(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitRelationPrimary) { - listener.exitRelationPrimary(this); + if(listener.exitAtomSubQueryTableSource) { + listener.exitAtomSubQueryTableSource(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitRelationPrimary) { - return visitor.visitRelationPrimary(this); + if (visitor.visitAtomSubQueryTableSource) { + return visitor.visitAtomSubQueryTableSource(this); } else { return visitor.visitChildren(this); } @@ -30246,9 +30639,6 @@ export class InlineTableContext extends antlr.ParserRuleContext { return this.getRuleContext(i, ExpressionContext); } - public tableAlias(): TableAliasContext { - return this.getRuleContext(0, TableAliasContext)!; - } public COMMA(): antlr.TerminalNode[]; public COMMA(i: number): antlr.TerminalNode | null; public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { @@ -30532,6 +30922,39 @@ export class FunctionTableArgumentContext extends antlr.ParserRuleContext { export class FunctionTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public atomFunctionTable(): AtomFunctionTableContext { + return this.getRuleContext(0, AtomFunctionTableContext)!; + } + public tableAlias(): TableAliasContext { + return this.getRuleContext(0, TableAliasContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_functionTable; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterFunctionTable) { + listener.enterFunctionTable(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitFunctionTable) { + listener.exitFunctionTable(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitFunctionTable) { + return visitor.visitFunctionTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class AtomFunctionTableContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } @@ -30544,9 +30967,6 @@ export class FunctionTableContext extends antlr.ParserRuleContext { public RIGHT_PAREN(): antlr.TerminalNode { return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; } - public tableAlias(): TableAliasContext { - return this.getRuleContext(0, TableAliasContext)!; - } public functionTableArgument(): FunctionTableArgumentContext[]; public functionTableArgument(i: number): FunctionTableArgumentContext | null; public functionTableArgument(i?: number): FunctionTableArgumentContext[] | FunctionTableArgumentContext | null { @@ -30566,21 +30986,21 @@ export class FunctionTableContext extends antlr.ParserRuleContext { } } public override get ruleIndex(): number { - return SparkSqlParser.RULE_functionTable; + return SparkSqlParser.RULE_atomFunctionTable; } public override enterRule(listener: SparkSqlParserListener): void { - if(listener.enterFunctionTable) { - listener.enterFunctionTable(this); + if(listener.enterAtomFunctionTable) { + listener.enterAtomFunctionTable(this); } } public override exitRule(listener: SparkSqlParserListener): void { - if(listener.exitFunctionTable) { - listener.exitFunctionTable(this); + if(listener.exitAtomFunctionTable) { + listener.exitAtomFunctionTable(this); } } public override accept(visitor: SparkSqlParserVisitor): Result | null { - if (visitor.visitFunctionTable) { - return visitor.visitFunctionTable(this); + if (visitor.visitAtomFunctionTable) { + return visitor.visitAtomFunctionTable(this); } else { return visitor.visitChildren(this); } @@ -30994,16 +31414,127 @@ export class ViewIdentifierContext extends antlr.ParserRuleContext { } +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnName(): ColumnNameContext { + return this.getRuleContext(0, ColumnNameContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_selectLiteralColumnName; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_selectExpressionColumnName; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public ASTERISK(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.ASTERISK, 0)!; + } + public qualifiedName(): QualifiedNameContext[]; + public qualifiedName(i: number): QualifiedNameContext | null; + public qualifiedName(i?: number): QualifiedNameContext[] | QualifiedNameContext | null { + if (i === undefined) { + return this.getRuleContexts(QualifiedNameContext); + } + + return this.getRuleContext(i, QualifiedNameContext); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(SparkSqlParser.DOT); + } else { + return this.getToken(SparkSqlParser.DOT, i); + } + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_tableAllColumns; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class NamedExpressionContext extends antlr.ParserRuleContext { public _name?: ErrorCapturingIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public columnName(): ColumnNameContext | null { - return this.getRuleContext(0, ColumnNameContext); + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); } public identifierList(): IdentifierListContext | null { return this.getRuleContext(0, IdentifierListContext); @@ -31082,6 +31613,36 @@ export class NamedExpressionSeqContext extends antlr.ParserRuleContext { } +export class SelectListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public namedExpressionSeq(): NamedExpressionSeqContext { + return this.getRuleContext(0, NamedExpressionSeqContext)!; + } + public override get ruleIndex(): number { + return SparkSqlParser.RULE_selectList; + } + public override enterRule(listener: SparkSqlParserListener): void { + if(listener.enterSelectList) { + listener.enterSelectList(this); + } + } + public override exitRule(listener: SparkSqlParserListener): void { + if(listener.exitSelectList) { + listener.exitSelectList(this); + } + } + public override accept(visitor: SparkSqlParserVisitor): Result | null { + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PartitionFieldListContext extends antlr.ParserRuleContext { public _partitionField?: PartitionFieldContext; public _fields: PartitionFieldContext[] = []; diff --git a/src/lib/spark/SparkSqlParserListener.ts b/src/lib/spark/SparkSqlParserListener.ts index b701ea6ae..9b83e618f 100644 --- a/src/lib/spark/SparkSqlParserListener.ts +++ b/src/lib/spark/SparkSqlParserListener.ts @@ -214,7 +214,12 @@ import { OrderedIdentifierListContext } from "./SparkSqlParser.js"; import { OrderedIdentifierContext } from "./SparkSqlParser.js"; import { IdentifierCommentListContext } from "./SparkSqlParser.js"; import { IdentifierCommentContext } from "./SparkSqlParser.js"; -import { RelationPrimaryContext } from "./SparkSqlParser.js"; +import { TableSourceContext } from "./SparkSqlParser.js"; +import { SubQueryTableSourceContext } from "./SparkSqlParser.js"; +import { JoinTableSourceContext } from "./SparkSqlParser.js"; +import { InlineTableSourceContext } from "./SparkSqlParser.js"; +import { FunctionTableSourceContext } from "./SparkSqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./SparkSqlParser.js"; import { InlineTableContext } from "./SparkSqlParser.js"; import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser.js"; import { TableArgumentPartitioningContext } from "./SparkSqlParser.js"; @@ -222,6 +227,7 @@ import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser.js import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableContext } from "./SparkSqlParser.js"; +import { AtomFunctionTableContext } from "./SparkSqlParser.js"; import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; @@ -230,8 +236,12 @@ import { MultipartIdentifierPropertyListContext } from "./SparkSqlParser.js"; import { MultipartIdentifierPropertyContext } from "./SparkSqlParser.js"; import { TableIdentifierContext } from "./SparkSqlParser.js"; import { ViewIdentifierContext } from "./SparkSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./SparkSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./SparkSqlParser.js"; +import { TableAllColumnsContext } from "./SparkSqlParser.js"; import { NamedExpressionContext } from "./SparkSqlParser.js"; import { NamedExpressionSeqContext } from "./SparkSqlParser.js"; +import { SelectListContext } from "./SparkSqlParser.js"; import { PartitionFieldListContext } from "./SparkSqlParser.js"; import { PartitionFieldContext } from "./SparkSqlParser.js"; import { TransformContext } from "./SparkSqlParser.js"; @@ -2564,15 +2574,75 @@ export class SparkSqlParserListener implements ParseTreeListener { */ exitIdentifierComment?: (ctx: IdentifierCommentContext) => void; /** - * Enter a parse tree produced by `SparkSqlParser.relationPrimary`. + * Enter a parse tree produced by the `tableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. * @param ctx the parse tree */ - enterRelationPrimary?: (ctx: RelationPrimaryContext) => void; + enterTableSource?: (ctx: TableSourceContext) => void; /** - * Exit a parse tree produced by `SparkSqlParser.relationPrimary`. + * Exit a parse tree produced by the `tableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. * @param ctx the parse tree */ - exitRelationPrimary?: (ctx: RelationPrimaryContext) => void; + exitTableSource?: (ctx: TableSourceContext) => void; + /** + * Enter a parse tree produced by the `subQueryTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterSubQueryTableSource?: (ctx: SubQueryTableSourceContext) => void; + /** + * Exit a parse tree produced by the `subQueryTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitSubQueryTableSource?: (ctx: SubQueryTableSourceContext) => void; + /** + * Enter a parse tree produced by the `joinTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterJoinTableSource?: (ctx: JoinTableSourceContext) => void; + /** + * Exit a parse tree produced by the `joinTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitJoinTableSource?: (ctx: JoinTableSourceContext) => void; + /** + * Enter a parse tree produced by the `inlineTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterInlineTableSource?: (ctx: InlineTableSourceContext) => void; + /** + * Exit a parse tree produced by the `inlineTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitInlineTableSource?: (ctx: InlineTableSourceContext) => void; + /** + * Enter a parse tree produced by the `functionTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterFunctionTableSource?: (ctx: FunctionTableSourceContext) => void; + /** + * Exit a parse tree produced by the `functionTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitFunctionTableSource?: (ctx: FunctionTableSourceContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + enterAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + */ + exitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.inlineTable`. * @param ctx the parse tree @@ -2643,6 +2713,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunctionTable?: (ctx: FunctionTableContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + */ + enterAtomFunctionTable?: (ctx: AtomFunctionTableContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + */ + exitAtomFunctionTable?: (ctx: AtomFunctionTableContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.tableAlias`. * @param ctx the parse tree @@ -2723,6 +2803,36 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitViewIdentifier?: (ctx: ViewIdentifierContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.tableAllColumns`. + * @param ctx the parse tree + */ + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.namedExpression`. * @param ctx the parse tree @@ -2743,6 +2853,16 @@ export class SparkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitNamedExpressionSeq?: (ctx: NamedExpressionSeqContext) => void; + /** + * Enter a parse tree produced by `SparkSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `SparkSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; /** * Enter a parse tree produced by `SparkSqlParser.partitionFieldList`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParserVisitor.ts b/src/lib/spark/SparkSqlParserVisitor.ts index f25709949..c7ff54177 100644 --- a/src/lib/spark/SparkSqlParserVisitor.ts +++ b/src/lib/spark/SparkSqlParserVisitor.ts @@ -214,7 +214,12 @@ import { OrderedIdentifierListContext } from "./SparkSqlParser.js"; import { OrderedIdentifierContext } from "./SparkSqlParser.js"; import { IdentifierCommentListContext } from "./SparkSqlParser.js"; import { IdentifierCommentContext } from "./SparkSqlParser.js"; -import { RelationPrimaryContext } from "./SparkSqlParser.js"; +import { TableSourceContext } from "./SparkSqlParser.js"; +import { SubQueryTableSourceContext } from "./SparkSqlParser.js"; +import { JoinTableSourceContext } from "./SparkSqlParser.js"; +import { InlineTableSourceContext } from "./SparkSqlParser.js"; +import { FunctionTableSourceContext } from "./SparkSqlParser.js"; +import { AtomSubQueryTableSourceContext } from "./SparkSqlParser.js"; import { InlineTableContext } from "./SparkSqlParser.js"; import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser.js"; import { TableArgumentPartitioningContext } from "./SparkSqlParser.js"; @@ -222,6 +227,7 @@ import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser.js import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableArgumentContext } from "./SparkSqlParser.js"; import { FunctionTableContext } from "./SparkSqlParser.js"; +import { AtomFunctionTableContext } from "./SparkSqlParser.js"; import { TableAliasContext } from "./SparkSqlParser.js"; import { RowFormatContext } from "./SparkSqlParser.js"; import { MultipartIdentifierListContext } from "./SparkSqlParser.js"; @@ -230,8 +236,12 @@ import { MultipartIdentifierPropertyListContext } from "./SparkSqlParser.js"; import { MultipartIdentifierPropertyContext } from "./SparkSqlParser.js"; import { TableIdentifierContext } from "./SparkSqlParser.js"; import { ViewIdentifierContext } from "./SparkSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./SparkSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./SparkSqlParser.js"; +import { TableAllColumnsContext } from "./SparkSqlParser.js"; import { NamedExpressionContext } from "./SparkSqlParser.js"; import { NamedExpressionSeqContext } from "./SparkSqlParser.js"; +import { SelectListContext } from "./SparkSqlParser.js"; import { PartitionFieldListContext } from "./SparkSqlParser.js"; import { PartitionFieldContext } from "./SparkSqlParser.js"; import { TransformContext } from "./SparkSqlParser.js"; @@ -1646,11 +1656,46 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `SparkSqlParser.relationPrimary`. + * Visit a parse tree produced by the `tableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. * @param ctx the parse tree * @return the visitor result */ - visitRelationPrimary?: (ctx: RelationPrimaryContext) => Result; + visitTableSource?: (ctx: TableSourceContext) => Result; + /** + * Visit a parse tree produced by the `subQueryTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSubQueryTableSource?: (ctx: SubQueryTableSourceContext) => Result; + /** + * Visit a parse tree produced by the `joinTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJoinTableSource?: (ctx: JoinTableSourceContext) => Result; + /** + * Visit a parse tree produced by the `inlineTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitInlineTableSource?: (ctx: InlineTableSourceContext) => Result; + /** + * Visit a parse tree produced by the `functionTableSource` + * labeled alternative in `SparkSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionTableSource?: (ctx: FunctionTableSourceContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.atomSubQueryTableSource`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomSubQueryTableSource?: (ctx: AtomSubQueryTableSourceContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.inlineTable`. * @param ctx the parse tree @@ -1693,6 +1738,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.atomFunctionTable`. + * @param ctx the parse tree + * @return the visitor result + */ + visitAtomFunctionTable?: (ctx: AtomFunctionTableContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.tableAlias`. * @param ctx the parse tree @@ -1741,6 +1792,24 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; + /** + * Visit a parse tree produced by `SparkSqlParser.tableAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.namedExpression`. * @param ctx the parse tree @@ -1753,6 +1822,12 @@ export class SparkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `SparkSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; /** * Visit a parse tree produced by `SparkSqlParser.partitionFieldList`. * @param ctx the parse tree diff --git a/src/lib/trino/TrinoSql.interp b/src/lib/trino/TrinoSql.interp index 925fc4272..09e7546c9 100644 --- a/src/lib/trino/TrinoSql.interp +++ b/src/lib/trino/TrinoSql.interp @@ -712,6 +712,7 @@ queryTerm queryPrimary sortItem querySpecification +selectList groupBy groupingElement groupingSet @@ -721,6 +722,10 @@ windowSpecification namedQuery setQuantifier selectItem +selectAllWithoutTable +tableAllColumns +selectLiteralColumnName +selectExpressionColumnName relation joinType joinCriteria @@ -741,6 +746,7 @@ columnListCreate columnList columnAliases relationPrimary +relationSourceTable jsonTableColumn jsonTableSpecificPlan jsonTablePathName @@ -839,4 +845,4 @@ nonReserved atn: -[4, 1, 340, 3670, 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, 1, 0, 5, 0, 304, 8, 0, 10, 0, 12, 0, 307, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 315, 8, 2, 1, 3, 1, 3, 3, 3, 319, 8, 3, 1, 4, 1, 4, 3, 4, 323, 8, 4, 1, 5, 1, 5, 3, 5, 327, 8, 5, 1, 6, 1, 6, 3, 6, 331, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 344, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 351, 8, 8, 1, 8, 1, 8, 3, 8, 355, 8, 8, 1, 8, 1, 8, 3, 8, 359, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 365, 8, 8, 1, 8, 1, 8, 3, 8, 369, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 376, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 381, 8, 8, 1, 8, 1, 8, 3, 8, 385, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 391, 8, 8, 1, 8, 1, 8, 3, 8, 395, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 414, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 420, 8, 8, 1, 8, 1, 8, 3, 8, 424, 8, 8, 1, 8, 1, 8, 3, 8, 428, 8, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 3, 8, 444, 8, 8, 1, 8, 3, 8, 447, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 452, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 458, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 465, 8, 8, 10, 8, 12, 8, 468, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 473, 8, 8, 1, 8, 1, 8, 3, 8, 477, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 483, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 490, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 499, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 511, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 520, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 529, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 535, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 546, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 554, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 562, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 569, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 579, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 586, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 594, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 609, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 642, 8, 8, 10, 8, 12, 8, 645, 9, 8, 3, 8, 647, 8, 8, 1, 8, 3, 8, 650, 8, 8, 1, 8, 1, 8, 3, 8, 654, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 660, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 665, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 672, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 3, 8, 682, 8, 8, 1, 8, 1, 8, 3, 8, 686, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 694, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 3, 8, 704, 8, 8, 1, 8, 1, 8, 3, 8, 708, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 722, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 730, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 749, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 772, 8, 8, 10, 8, 12, 8, 775, 9, 8, 3, 8, 777, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 784, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 791, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 800, 8, 8, 1, 8, 1, 8, 3, 8, 804, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 811, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 817, 8, 8, 10, 8, 12, 8, 820, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 826, 8, 8, 10, 8, 12, 8, 829, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 834, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 839, 8, 8, 1, 8, 1, 8, 3, 8, 843, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 849, 8, 8, 10, 8, 12, 8, 852, 9, 8, 1, 8, 1, 8, 3, 8, 856, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 865, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 871, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 876, 8, 8, 10, 8, 12, 8, 879, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 885, 8, 8, 10, 8, 12, 8, 888, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 893, 8, 8, 1, 8, 1, 8, 3, 8, 897, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 903, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 908, 8, 8, 10, 8, 12, 8, 911, 9, 8, 1, 8, 1, 8, 3, 8, 915, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 926, 8, 8, 10, 8, 12, 8, 929, 9, 8, 1, 8, 1, 8, 3, 8, 933, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 945, 8, 8, 1, 8, 1, 8, 3, 8, 949, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 955, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 962, 8, 8, 10, 8, 12, 8, 965, 9, 8, 1, 8, 1, 8, 3, 8, 969, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 975, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1003, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1009, 8, 8, 3, 8, 1011, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1017, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1023, 8, 8, 3, 8, 1025, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1033, 8, 8, 3, 8, 1035, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1045, 8, 8, 3, 8, 1047, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1062, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1067, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1074, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1084, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1090, 8, 8, 3, 8, 1092, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1100, 8, 8, 3, 8, 1102, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1125, 8, 8, 10, 8, 12, 8, 1128, 9, 8, 3, 8, 1130, 8, 8, 1, 8, 1, 8, 3, 8, 1134, 8, 8, 1, 8, 1, 8, 3, 8, 1138, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1154, 8, 8, 10, 8, 12, 8, 1157, 9, 8, 3, 8, 1159, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1168, 8, 8, 10, 8, 12, 8, 1171, 9, 8, 3, 8, 1173, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1189, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1197, 8, 8, 10, 8, 12, 8, 1200, 9, 8, 1, 8, 1, 8, 3, 8, 1204, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1210, 8, 8, 1, 8, 3, 8, 1213, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1220, 8, 8, 11, 8, 12, 8, 1221, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1234, 8, 8, 1, 9, 3, 9, 1237, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1245, 8, 10, 10, 10, 12, 10, 1248, 9, 10, 1, 11, 3, 11, 1251, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1257, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1262, 8, 12, 10, 12, 12, 12, 1265, 9, 12, 1, 13, 1, 13, 3, 13, 1269, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1275, 8, 14, 1, 14, 1, 14, 3, 14, 1279, 8, 14, 1, 14, 1, 14, 3, 14, 1283, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1289, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1298, 8, 17, 10, 17, 12, 17, 1301, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1309, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1317, 8, 20, 10, 20, 12, 20, 1320, 9, 20, 3, 20, 1322, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1327, 8, 20, 3, 20, 1329, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1336, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1342, 8, 20, 3, 20, 1344, 8, 20, 1, 21, 1, 21, 3, 21, 1348, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1358, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1364, 8, 23, 1, 23, 5, 23, 1367, 8, 23, 10, 23, 12, 23, 1370, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1379, 8, 24, 10, 24, 12, 24, 1382, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1388, 8, 24, 1, 25, 1, 25, 3, 25, 1392, 8, 25, 1, 25, 3, 25, 1395, 8, 25, 1, 25, 1, 25, 3, 25, 1399, 8, 25, 1, 26, 1, 26, 3, 26, 1403, 8, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1408, 8, 26, 10, 26, 12, 26, 1411, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1417, 8, 26, 10, 26, 12, 26, 1420, 9, 26, 3, 26, 1422, 8, 26, 1, 26, 1, 26, 3, 26, 1426, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1431, 8, 26, 1, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1441, 8, 26, 10, 26, 12, 26, 1444, 9, 26, 3, 26, 1446, 8, 26, 1, 27, 3, 27, 1449, 8, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1454, 8, 27, 10, 27, 12, 27, 1457, 9, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1465, 8, 28, 10, 28, 12, 28, 1468, 9, 28, 3, 28, 1470, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1478, 8, 28, 10, 28, 12, 28, 1481, 9, 28, 3, 28, 1483, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1492, 8, 28, 10, 28, 12, 28, 1495, 9, 28, 1, 28, 1, 28, 3, 28, 1499, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1505, 8, 29, 10, 29, 12, 29, 1508, 9, 29, 3, 29, 1510, 8, 29, 1, 29, 1, 29, 3, 29, 1514, 8, 29, 1, 30, 1, 30, 3, 30, 1518, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 3, 32, 1527, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1534, 8, 32, 10, 32, 12, 32, 1537, 9, 32, 3, 32, 1539, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1546, 8, 32, 10, 32, 12, 32, 1549, 9, 32, 3, 32, 1551, 8, 32, 1, 32, 3, 32, 1554, 8, 32, 1, 33, 1, 33, 3, 33, 1558, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 1569, 8, 35, 1, 35, 3, 35, 1572, 8, 35, 1, 35, 3, 35, 1575, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1582, 8, 35, 1, 35, 3, 35, 1585, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1604, 8, 36, 5, 36, 1606, 8, 36, 10, 36, 12, 36, 1609, 9, 36, 1, 37, 3, 37, 1612, 8, 37, 1, 37, 1, 37, 3, 37, 1616, 8, 37, 1, 37, 1, 37, 3, 37, 1620, 8, 37, 1, 37, 1, 37, 3, 37, 1624, 8, 37, 3, 37, 1626, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1635, 8, 38, 10, 38, 12, 38, 1638, 9, 38, 1, 38, 1, 38, 3, 38, 1642, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1651, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1660, 8, 42, 1, 42, 3, 42, 1663, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1669, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1679, 8, 44, 10, 44, 12, 44, 1682, 9, 44, 3, 44, 1684, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1691, 8, 44, 10, 44, 12, 44, 1694, 9, 44, 3, 44, 1696, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1702, 8, 44, 10, 44, 12, 44, 1705, 9, 44, 3, 44, 1707, 8, 44, 1, 44, 3, 44, 1710, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1715, 8, 44, 1, 44, 3, 44, 1718, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1728, 8, 44, 10, 44, 12, 44, 1731, 9, 44, 3, 44, 1733, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1739, 8, 44, 10, 44, 12, 44, 1742, 9, 44, 1, 44, 1, 44, 3, 44, 1746, 8, 44, 1, 44, 1, 44, 3, 44, 1750, 8, 44, 3, 44, 1752, 8, 44, 3, 44, 1754, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1769, 8, 46, 3, 46, 1771, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1782, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1803, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1811, 8, 49, 10, 49, 12, 49, 1814, 9, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1824, 8, 51, 1, 51, 1, 51, 3, 51, 1828, 8, 51, 3, 51, 1830, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1836, 8, 52, 10, 52, 12, 52, 1839, 9, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1847, 8, 53, 10, 53, 12, 53, 1850, 9, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1858, 8, 54, 10, 54, 12, 54, 1861, 9, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1867, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1878, 8, 55, 10, 55, 12, 55, 1881, 9, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1886, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1910, 8, 55, 10, 55, 12, 55, 1913, 9, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1927, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1932, 8, 55, 1, 55, 1, 55, 3, 55, 1936, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1946, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1952, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1958, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1966, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1971, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1978, 8, 56, 3, 56, 1980, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1986, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1992, 8, 56, 1, 56, 1, 56, 3, 56, 1996, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2001, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2008, 8, 56, 10, 56, 12, 56, 2011, 9, 56, 1, 56, 1, 56, 3, 56, 2015, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 2027, 8, 57, 10, 57, 12, 57, 2030, 9, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 2037, 8, 57, 10, 57, 12, 57, 2040, 9, 57, 3, 57, 2042, 8, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2051, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 2056, 8, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2061, 8, 60, 3, 60, 2063, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2070, 8, 61, 10, 61, 12, 61, 2073, 9, 61, 3, 61, 2075, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2081, 8, 61, 10, 61, 12, 61, 2084, 9, 61, 3, 61, 2086, 8, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2093, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2098, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 2107, 8, 63, 10, 63, 12, 63, 2110, 9, 63, 3, 63, 2112, 8, 63, 1, 63, 1, 63, 3, 63, 2116, 8, 63, 3, 63, 2118, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2126, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 2134, 8, 63, 10, 63, 12, 63, 2137, 9, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2142, 8, 63, 3, 63, 2144, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2151, 8, 64, 1, 64, 1, 64, 3, 64, 2155, 8, 64, 3, 64, 2157, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2164, 8, 64, 1, 64, 1, 64, 3, 64, 2168, 8, 64, 3, 64, 2170, 8, 64, 3, 64, 2172, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2179, 8, 65, 10, 65, 12, 65, 2182, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2192, 8, 65, 1, 66, 1, 66, 3, 66, 2196, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2204, 8, 67, 10, 67, 12, 67, 2207, 9, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2216, 8, 69, 1, 69, 1, 69, 3, 69, 2220, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2228, 8, 69, 10, 69, 12, 69, 2231, 9, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2243, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2251, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2258, 8, 70, 10, 70, 12, 70, 2261, 9, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2266, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2274, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2280, 8, 70, 1, 70, 1, 70, 3, 70, 2284, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2289, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2294, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2300, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2314, 8, 71, 10, 71, 12, 71, 2317, 9, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 4, 72, 2344, 8, 72, 11, 72, 12, 72, 2345, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2355, 8, 72, 10, 72, 12, 72, 2358, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2365, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2370, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2375, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2386, 8, 72, 10, 72, 12, 72, 2389, 9, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2394, 8, 72, 1, 72, 3, 72, 2397, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2404, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2409, 8, 72, 1, 72, 3, 72, 2412, 8, 72, 1, 72, 3, 72, 2415, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2420, 8, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2425, 8, 72, 10, 72, 12, 72, 2428, 9, 72, 3, 72, 2430, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2437, 8, 72, 10, 72, 12, 72, 2440, 9, 72, 3, 72, 2442, 8, 72, 1, 72, 1, 72, 3, 72, 2446, 8, 72, 1, 72, 3, 72, 2449, 8, 72, 1, 72, 3, 72, 2452, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2465, 8, 72, 10, 72, 12, 72, 2468, 9, 72, 3, 72, 2470, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 4, 72, 2487, 8, 72, 11, 72, 12, 72, 2488, 1, 72, 1, 72, 3, 72, 2493, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 4, 72, 2499, 8, 72, 11, 72, 12, 72, 2500, 1, 72, 1, 72, 3, 72, 2505, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2528, 8, 72, 10, 72, 12, 72, 2531, 9, 72, 3, 72, 2533, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2542, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2548, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2554, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2560, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2569, 8, 72, 1, 72, 3, 72, 2572, 8, 72, 1, 72, 3, 72, 2575, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2594, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2603, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2623, 8, 72, 10, 72, 12, 72, 2626, 9, 72, 3, 72, 2628, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2638, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2647, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2653, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2659, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2670, 8, 72, 3, 72, 2672, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2677, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2684, 8, 72, 3, 72, 2686, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2692, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2698, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2707, 8, 72, 10, 72, 12, 72, 2710, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2718, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2723, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2728, 8, 72, 3, 72, 2730, 8, 72, 3, 72, 2732, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2738, 8, 72, 3, 72, 2740, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2748, 8, 72, 10, 72, 12, 72, 2751, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2759, 8, 72, 3, 72, 2761, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2767, 8, 72, 3, 72, 2769, 8, 72, 1, 72, 3, 72, 2772, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2782, 8, 72, 10, 72, 12, 72, 2785, 9, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2792, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2798, 8, 73, 10, 73, 12, 73, 2801, 9, 73, 3, 73, 2803, 8, 73, 1, 74, 1, 74, 1, 74, 3, 74, 2808, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2813, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2825, 8, 78, 1, 79, 1, 79, 3, 79, 2829, 8, 79, 1, 79, 1, 79, 3, 79, 2833, 8, 79, 1, 79, 3, 79, 2836, 8, 79, 3, 79, 2838, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2846, 8, 80, 1, 81, 3, 81, 2849, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2859, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2867, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2873, 8, 84, 3, 84, 2875, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 2883, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 3, 89, 2893, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2899, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2911, 8, 92, 10, 92, 12, 92, 2914, 9, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2922, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2929, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2934, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2941, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2946, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 2967, 8, 92, 10, 92, 12, 92, 2970, 9, 92, 1, 92, 1, 92, 3, 92, 2974, 8, 92, 3, 92, 2976, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2983, 8, 92, 5, 92, 2985, 8, 92, 10, 92, 12, 92, 2988, 9, 92, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2994, 8, 93, 1, 94, 1, 94, 3, 94, 2998, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3015, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3028, 8, 97, 10, 97, 12, 97, 3031, 9, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3037, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 3046, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3054, 8, 97, 10, 97, 12, 97, 3057, 9, 97, 1, 97, 1, 97, 3, 97, 3061, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 3068, 8, 97, 10, 97, 12, 97, 3071, 9, 97, 1, 97, 1, 97, 3, 97, 3075, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3083, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3089, 8, 99, 10, 99, 12, 99, 3092, 9, 99, 3, 99, 3094, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3100, 8, 99, 1, 99, 3, 99, 3103, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3110, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3116, 8, 99, 10, 99, 12, 99, 3119, 9, 99, 3, 99, 3121, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 3127, 8, 99, 10, 99, 12, 99, 3130, 9, 99, 3, 99, 3132, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 3158, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3169, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3174, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3181, 8, 102, 10, 102, 12, 102, 3184, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 3194, 8, 103, 10, 103, 12, 103, 3197, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3211, 8, 103, 1, 104, 1, 104, 3, 104, 3215, 8, 104, 1, 104, 1, 104, 3, 104, 3219, 8, 104, 1, 104, 1, 104, 3, 104, 3223, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3229, 8, 104, 1, 104, 1, 104, 3, 104, 3233, 8, 104, 1, 104, 1, 104, 3, 104, 3237, 8, 104, 1, 104, 1, 104, 3, 104, 3241, 8, 104, 3, 104, 3243, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3253, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3260, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3269, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3276, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3283, 8, 110, 1, 111, 1, 111, 1, 111, 5, 111, 3288, 8, 111, 10, 111, 12, 111, 3291, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3297, 8, 112, 10, 112, 12, 112, 3300, 9, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3309, 8, 113, 10, 113, 12, 113, 3312, 9, 113, 3, 113, 3314, 8, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 3323, 8, 114, 10, 114, 12, 114, 3326, 9, 114, 3, 114, 3328, 8, 114, 1, 114, 1, 114, 1, 115, 3, 115, 3333, 8, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 3, 117, 3343, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3359, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3371, 8, 118, 11, 118, 12, 118, 3372, 1, 118, 3, 118, 3376, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 4, 118, 3383, 8, 118, 11, 118, 12, 118, 3384, 1, 118, 3, 118, 3388, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3398, 8, 118, 10, 118, 12, 118, 3401, 9, 118, 1, 118, 3, 118, 3404, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3417, 8, 118, 10, 118, 12, 118, 3420, 9, 118, 1, 118, 3, 118, 3423, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3429, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3439, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3451, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3460, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 3479, 8, 122, 10, 122, 12, 122, 3482, 9, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3487, 8, 122, 1, 123, 1, 123, 1, 123, 4, 123, 3492, 8, 123, 11, 123, 12, 123, 3493, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3502, 8, 124, 1, 125, 1, 125, 1, 125, 3, 125, 3507, 8, 125, 1, 126, 3, 126, 3510, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 3, 127, 3516, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3529, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3542, 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, 3555, 8, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3568, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3575, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3582, 8, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 3, 138, 3594, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 5, 140, 3601, 8, 140, 10, 140, 12, 140, 3604, 9, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 3, 143, 3617, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3624, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 3629, 8, 145, 10, 145, 12, 145, 3632, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3641, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3648, 8, 147, 1, 148, 3, 148, 3651, 8, 148, 1, 148, 1, 148, 3, 148, 3655, 8, 148, 1, 148, 1, 148, 3, 148, 3659, 8, 148, 1, 148, 3, 148, 3662, 8, 148, 1, 149, 1, 149, 3, 149, 3666, 8, 149, 1, 150, 1, 150, 1, 150, 0, 7, 46, 72, 138, 142, 144, 184, 204, 151, 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, 0, 36, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 304, 304, 306, 306, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4221, 0, 305, 1, 0, 0, 0, 2, 310, 1, 0, 0, 0, 4, 312, 1, 0, 0, 0, 6, 316, 1, 0, 0, 0, 8, 320, 1, 0, 0, 0, 10, 324, 1, 0, 0, 0, 12, 328, 1, 0, 0, 0, 14, 332, 1, 0, 0, 0, 16, 1233, 1, 0, 0, 0, 18, 1236, 1, 0, 0, 0, 20, 1240, 1, 0, 0, 0, 22, 1250, 1, 0, 0, 0, 24, 1254, 1, 0, 0, 0, 26, 1268, 1, 0, 0, 0, 28, 1270, 1, 0, 0, 0, 30, 1284, 1, 0, 0, 0, 32, 1290, 1, 0, 0, 0, 34, 1294, 1, 0, 0, 0, 36, 1302, 1, 0, 0, 0, 38, 1308, 1, 0, 0, 0, 40, 1310, 1, 0, 0, 0, 42, 1347, 1, 0, 0, 0, 44, 1349, 1, 0, 0, 0, 46, 1351, 1, 0, 0, 0, 48, 1387, 1, 0, 0, 0, 50, 1391, 1, 0, 0, 0, 52, 1400, 1, 0, 0, 0, 54, 1448, 1, 0, 0, 0, 56, 1498, 1, 0, 0, 0, 58, 1513, 1, 0, 0, 0, 60, 1517, 1, 0, 0, 0, 62, 1519, 1, 0, 0, 0, 64, 1526, 1, 0, 0, 0, 66, 1555, 1, 0, 0, 0, 68, 1564, 1, 0, 0, 0, 70, 1584, 1, 0, 0, 0, 72, 1586, 1, 0, 0, 0, 74, 1625, 1, 0, 0, 0, 76, 1641, 1, 0, 0, 0, 78, 1643, 1, 0, 0, 0, 80, 1652, 1, 0, 0, 0, 82, 1654, 1, 0, 0, 0, 84, 1662, 1, 0, 0, 0, 86, 1668, 1, 0, 0, 0, 88, 1670, 1, 0, 0, 0, 90, 1755, 1, 0, 0, 0, 92, 1770, 1, 0, 0, 0, 94, 1781, 1, 0, 0, 0, 96, 1802, 1, 0, 0, 0, 98, 1804, 1, 0, 0, 0, 100, 1817, 1, 0, 0, 0, 102, 1821, 1, 0, 0, 0, 104, 1831, 1, 0, 0, 0, 106, 1842, 1, 0, 0, 0, 108, 1853, 1, 0, 0, 0, 110, 1935, 1, 0, 0, 0, 112, 2014, 1, 0, 0, 0, 114, 2041, 1, 0, 0, 0, 116, 2043, 1, 0, 0, 0, 118, 2050, 1, 0, 0, 0, 120, 2062, 1, 0, 0, 0, 122, 2064, 1, 0, 0, 0, 124, 2092, 1, 0, 0, 0, 126, 2099, 1, 0, 0, 0, 128, 2171, 1, 0, 0, 0, 130, 2191, 1, 0, 0, 0, 132, 2193, 1, 0, 0, 0, 134, 2197, 1, 0, 0, 0, 136, 2210, 1, 0, 0, 0, 138, 2219, 1, 0, 0, 0, 140, 2293, 1, 0, 0, 0, 142, 2299, 1, 0, 0, 0, 144, 2771, 1, 0, 0, 0, 146, 2786, 1, 0, 0, 0, 148, 2804, 1, 0, 0, 0, 150, 2809, 1, 0, 0, 0, 152, 2814, 1, 0, 0, 0, 154, 2818, 1, 0, 0, 0, 156, 2824, 1, 0, 0, 0, 158, 2837, 1, 0, 0, 0, 160, 2845, 1, 0, 0, 0, 162, 2858, 1, 0, 0, 0, 164, 2860, 1, 0, 0, 0, 166, 2866, 1, 0, 0, 0, 168, 2874, 1, 0, 0, 0, 170, 2882, 1, 0, 0, 0, 172, 2884, 1, 0, 0, 0, 174, 2886, 1, 0, 0, 0, 176, 2888, 1, 0, 0, 0, 178, 2890, 1, 0, 0, 0, 180, 2900, 1, 0, 0, 0, 182, 2902, 1, 0, 0, 0, 184, 2975, 1, 0, 0, 0, 186, 2993, 1, 0, 0, 0, 188, 2997, 1, 0, 0, 0, 190, 2999, 1, 0, 0, 0, 192, 3004, 1, 0, 0, 0, 194, 3074, 1, 0, 0, 0, 196, 3076, 1, 0, 0, 0, 198, 3093, 1, 0, 0, 0, 200, 3157, 1, 0, 0, 0, 202, 3168, 1, 0, 0, 0, 204, 3170, 1, 0, 0, 0, 206, 3210, 1, 0, 0, 0, 208, 3242, 1, 0, 0, 0, 210, 3244, 1, 0, 0, 0, 212, 3252, 1, 0, 0, 0, 214, 3259, 1, 0, 0, 0, 216, 3268, 1, 0, 0, 0, 218, 3275, 1, 0, 0, 0, 220, 3282, 1, 0, 0, 0, 222, 3284, 1, 0, 0, 0, 224, 3292, 1, 0, 0, 0, 226, 3303, 1, 0, 0, 0, 228, 3317, 1, 0, 0, 0, 230, 3332, 1, 0, 0, 0, 232, 3336, 1, 0, 0, 0, 234, 3358, 1, 0, 0, 0, 236, 3459, 1, 0, 0, 0, 238, 3461, 1, 0, 0, 0, 240, 3466, 1, 0, 0, 0, 242, 3471, 1, 0, 0, 0, 244, 3474, 1, 0, 0, 0, 246, 3491, 1, 0, 0, 0, 248, 3501, 1, 0, 0, 0, 250, 3506, 1, 0, 0, 0, 252, 3509, 1, 0, 0, 0, 254, 3515, 1, 0, 0, 0, 256, 3528, 1, 0, 0, 0, 258, 3541, 1, 0, 0, 0, 260, 3554, 1, 0, 0, 0, 262, 3567, 1, 0, 0, 0, 264, 3574, 1, 0, 0, 0, 266, 3581, 1, 0, 0, 0, 268, 3583, 1, 0, 0, 0, 270, 3585, 1, 0, 0, 0, 272, 3587, 1, 0, 0, 0, 274, 3589, 1, 0, 0, 0, 276, 3593, 1, 0, 0, 0, 278, 3595, 1, 0, 0, 0, 280, 3597, 1, 0, 0, 0, 282, 3605, 1, 0, 0, 0, 284, 3611, 1, 0, 0, 0, 286, 3616, 1, 0, 0, 0, 288, 3623, 1, 0, 0, 0, 290, 3625, 1, 0, 0, 0, 292, 3640, 1, 0, 0, 0, 294, 3647, 1, 0, 0, 0, 296, 3661, 1, 0, 0, 0, 298, 3665, 1, 0, 0, 0, 300, 3667, 1, 0, 0, 0, 302, 304, 3, 2, 1, 0, 303, 302, 1, 0, 0, 0, 304, 307, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 308, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 308, 309, 5, 0, 0, 1, 309, 1, 1, 0, 0, 0, 310, 311, 3, 4, 2, 0, 311, 3, 1, 0, 0, 0, 312, 314, 3, 16, 8, 0, 313, 315, 5, 325, 0, 0, 314, 313, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 5, 1, 0, 0, 0, 316, 318, 3, 136, 68, 0, 317, 319, 5, 325, 0, 0, 318, 317, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 7, 1, 0, 0, 0, 320, 322, 3, 222, 111, 0, 321, 323, 5, 325, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 9, 1, 0, 0, 0, 324, 326, 3, 184, 92, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 11, 1, 0, 0, 0, 328, 330, 3, 204, 102, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 13, 1, 0, 0, 0, 332, 333, 3, 224, 112, 0, 333, 334, 5, 0, 0, 1, 334, 15, 1, 0, 0, 0, 335, 1234, 3, 18, 9, 0, 336, 337, 5, 288, 0, 0, 337, 1234, 3, 264, 132, 0, 338, 339, 5, 53, 0, 0, 339, 343, 5, 42, 0, 0, 340, 341, 5, 119, 0, 0, 341, 342, 5, 182, 0, 0, 342, 344, 5, 94, 0, 0, 343, 340, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 3, 270, 135, 0, 346, 347, 5, 290, 0, 0, 347, 350, 3, 294, 147, 0, 348, 349, 5, 46, 0, 0, 349, 351, 3, 168, 84, 0, 350, 348, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 354, 1, 0, 0, 0, 352, 353, 5, 31, 0, 0, 353, 355, 3, 288, 144, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 304, 0, 0, 357, 359, 3, 32, 16, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 1234, 1, 0, 0, 0, 360, 361, 5, 83, 0, 0, 361, 364, 5, 42, 0, 0, 362, 363, 5, 119, 0, 0, 363, 365, 5, 94, 0, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 368, 3, 268, 134, 0, 367, 369, 7, 0, 0, 0, 368, 367, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 1234, 1, 0, 0, 0, 370, 371, 5, 53, 0, 0, 371, 375, 5, 243, 0, 0, 372, 373, 5, 119, 0, 0, 373, 374, 5, 182, 0, 0, 374, 376, 5, 94, 0, 0, 375, 372, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 380, 3, 266, 133, 0, 378, 379, 5, 31, 0, 0, 379, 381, 3, 288, 144, 0, 380, 378, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 383, 5, 304, 0, 0, 383, 385, 3, 32, 16, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 1234, 1, 0, 0, 0, 386, 387, 5, 83, 0, 0, 387, 390, 5, 243, 0, 0, 388, 389, 5, 119, 0, 0, 389, 391, 5, 94, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 3, 264, 132, 0, 393, 395, 7, 0, 0, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 1234, 1, 0, 0, 0, 396, 397, 5, 23, 0, 0, 397, 398, 5, 243, 0, 0, 398, 399, 3, 264, 132, 0, 399, 400, 5, 223, 0, 0, 400, 401, 5, 269, 0, 0, 401, 402, 3, 266, 133, 0, 402, 1234, 1, 0, 0, 0, 403, 404, 5, 23, 0, 0, 404, 405, 5, 243, 0, 0, 405, 406, 3, 264, 132, 0, 406, 407, 5, 251, 0, 0, 407, 408, 5, 31, 0, 0, 408, 409, 3, 288, 144, 0, 409, 1234, 1, 0, 0, 0, 410, 413, 5, 53, 0, 0, 411, 412, 5, 194, 0, 0, 412, 414, 5, 226, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 419, 5, 260, 0, 0, 416, 417, 5, 119, 0, 0, 417, 418, 5, 182, 0, 0, 418, 420, 5, 94, 0, 0, 419, 416, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 423, 3, 258, 129, 0, 422, 424, 3, 104, 52, 0, 423, 422, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 427, 1, 0, 0, 0, 425, 426, 5, 46, 0, 0, 426, 428, 3, 168, 84, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 430, 5, 304, 0, 0, 430, 432, 3, 32, 16, 0, 431, 429, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 439, 5, 28, 0, 0, 434, 440, 3, 18, 9, 0, 435, 436, 5, 1, 0, 0, 436, 437, 3, 18, 9, 0, 437, 438, 5, 2, 0, 0, 438, 440, 1, 0, 0, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 440, 446, 1, 0, 0, 0, 441, 443, 5, 304, 0, 0, 442, 444, 5, 179, 0, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 447, 5, 65, 0, 0, 446, 441, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 1234, 1, 0, 0, 0, 448, 451, 5, 53, 0, 0, 449, 450, 5, 194, 0, 0, 450, 452, 5, 226, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 457, 5, 260, 0, 0, 454, 455, 5, 119, 0, 0, 455, 456, 5, 182, 0, 0, 456, 458, 5, 94, 0, 0, 457, 454, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 3, 258, 129, 0, 460, 461, 5, 1, 0, 0, 461, 466, 3, 26, 13, 0, 462, 463, 5, 3, 0, 0, 463, 465, 3, 26, 13, 0, 464, 462, 1, 0, 0, 0, 465, 468, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 469, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 472, 5, 2, 0, 0, 470, 471, 5, 46, 0, 0, 471, 473, 3, 168, 84, 0, 472, 470, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 475, 5, 304, 0, 0, 475, 477, 3, 32, 16, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1234, 1, 0, 0, 0, 478, 479, 5, 83, 0, 0, 479, 482, 5, 260, 0, 0, 480, 481, 5, 119, 0, 0, 481, 483, 5, 94, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 1234, 3, 256, 128, 0, 485, 486, 5, 127, 0, 0, 486, 487, 5, 130, 0, 0, 487, 489, 3, 256, 128, 0, 488, 490, 3, 106, 53, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 492, 3, 18, 9, 0, 492, 1234, 1, 0, 0, 0, 493, 494, 5, 73, 0, 0, 494, 495, 5, 105, 0, 0, 495, 498, 3, 256, 128, 0, 496, 497, 5, 301, 0, 0, 497, 499, 3, 138, 69, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 1234, 1, 0, 0, 0, 500, 501, 5, 274, 0, 0, 501, 502, 5, 260, 0, 0, 502, 1234, 3, 256, 128, 0, 503, 504, 5, 46, 0, 0, 504, 505, 5, 190, 0, 0, 505, 506, 5, 260, 0, 0, 506, 507, 3, 256, 128, 0, 507, 510, 5, 133, 0, 0, 508, 511, 3, 168, 84, 0, 509, 511, 5, 183, 0, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 1234, 1, 0, 0, 0, 512, 513, 5, 46, 0, 0, 513, 514, 5, 190, 0, 0, 514, 515, 5, 299, 0, 0, 515, 516, 3, 260, 130, 0, 516, 519, 5, 133, 0, 0, 517, 520, 3, 168, 84, 0, 518, 520, 5, 183, 0, 0, 519, 517, 1, 0, 0, 0, 519, 518, 1, 0, 0, 0, 520, 1234, 1, 0, 0, 0, 521, 522, 5, 46, 0, 0, 522, 523, 5, 190, 0, 0, 523, 524, 5, 44, 0, 0, 524, 525, 3, 276, 138, 0, 525, 528, 5, 133, 0, 0, 526, 529, 3, 168, 84, 0, 527, 529, 5, 183, 0, 0, 528, 526, 1, 0, 0, 0, 528, 527, 1, 0, 0, 0, 529, 1234, 1, 0, 0, 0, 530, 531, 5, 23, 0, 0, 531, 534, 5, 260, 0, 0, 532, 533, 5, 119, 0, 0, 533, 535, 5, 94, 0, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 3, 256, 128, 0, 537, 538, 5, 223, 0, 0, 538, 539, 5, 269, 0, 0, 539, 540, 3, 258, 129, 0, 540, 1234, 1, 0, 0, 0, 541, 542, 5, 23, 0, 0, 542, 545, 5, 260, 0, 0, 543, 544, 5, 119, 0, 0, 544, 546, 5, 94, 0, 0, 545, 543, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 3, 256, 128, 0, 548, 549, 5, 19, 0, 0, 549, 553, 5, 44, 0, 0, 550, 551, 5, 119, 0, 0, 551, 552, 5, 182, 0, 0, 552, 554, 5, 94, 0, 0, 553, 550, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 3, 28, 14, 0, 556, 1234, 1, 0, 0, 0, 557, 558, 5, 23, 0, 0, 558, 561, 5, 260, 0, 0, 559, 560, 5, 119, 0, 0, 560, 562, 5, 94, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 3, 256, 128, 0, 564, 565, 5, 223, 0, 0, 565, 568, 5, 44, 0, 0, 566, 567, 5, 119, 0, 0, 567, 569, 5, 94, 0, 0, 568, 566, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 3, 276, 138, 0, 571, 572, 5, 269, 0, 0, 572, 573, 3, 278, 139, 0, 573, 1234, 1, 0, 0, 0, 574, 575, 5, 23, 0, 0, 575, 578, 5, 260, 0, 0, 576, 577, 5, 119, 0, 0, 577, 579, 5, 94, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 3, 256, 128, 0, 581, 582, 5, 83, 0, 0, 582, 585, 5, 44, 0, 0, 583, 584, 5, 119, 0, 0, 584, 586, 5, 94, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 3, 276, 138, 0, 588, 1234, 1, 0, 0, 0, 589, 590, 5, 23, 0, 0, 590, 593, 5, 260, 0, 0, 591, 592, 5, 119, 0, 0, 592, 594, 5, 94, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 3, 256, 128, 0, 596, 597, 5, 23, 0, 0, 597, 598, 5, 44, 0, 0, 598, 599, 3, 276, 138, 0, 599, 600, 5, 251, 0, 0, 600, 601, 5, 65, 0, 0, 601, 602, 5, 276, 0, 0, 602, 603, 3, 184, 92, 0, 603, 1234, 1, 0, 0, 0, 604, 605, 5, 23, 0, 0, 605, 608, 5, 260, 0, 0, 606, 607, 5, 119, 0, 0, 607, 609, 5, 94, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 3, 256, 128, 0, 611, 612, 5, 23, 0, 0, 612, 613, 5, 44, 0, 0, 613, 614, 3, 276, 138, 0, 614, 615, 5, 83, 0, 0, 615, 616, 5, 182, 0, 0, 616, 617, 5, 183, 0, 0, 617, 1234, 1, 0, 0, 0, 618, 619, 5, 23, 0, 0, 619, 620, 5, 260, 0, 0, 620, 621, 3, 256, 128, 0, 621, 622, 5, 251, 0, 0, 622, 623, 5, 31, 0, 0, 623, 624, 3, 288, 144, 0, 624, 1234, 1, 0, 0, 0, 625, 626, 5, 23, 0, 0, 626, 627, 5, 260, 0, 0, 627, 628, 3, 256, 128, 0, 628, 629, 5, 251, 0, 0, 629, 630, 5, 216, 0, 0, 630, 631, 3, 34, 17, 0, 631, 1234, 1, 0, 0, 0, 632, 633, 5, 23, 0, 0, 633, 634, 5, 260, 0, 0, 634, 635, 3, 256, 128, 0, 635, 636, 5, 93, 0, 0, 636, 649, 3, 272, 136, 0, 637, 646, 5, 1, 0, 0, 638, 643, 3, 218, 109, 0, 639, 640, 5, 3, 0, 0, 640, 642, 3, 218, 109, 0, 641, 639, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 647, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 646, 638, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 5, 2, 0, 0, 649, 637, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 652, 5, 301, 0, 0, 652, 654, 3, 138, 69, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 1234, 1, 0, 0, 0, 655, 656, 5, 24, 0, 0, 656, 659, 3, 256, 128, 0, 657, 658, 5, 304, 0, 0, 658, 660, 3, 32, 16, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 1234, 1, 0, 0, 0, 661, 664, 5, 53, 0, 0, 662, 663, 5, 194, 0, 0, 663, 665, 5, 226, 0, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 667, 5, 167, 0, 0, 667, 671, 5, 299, 0, 0, 668, 669, 5, 119, 0, 0, 669, 670, 5, 182, 0, 0, 670, 672, 5, 94, 0, 0, 671, 668, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 677, 3, 262, 131, 0, 674, 675, 5, 109, 0, 0, 675, 676, 5, 208, 0, 0, 676, 678, 3, 178, 89, 0, 677, 674, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 680, 5, 46, 0, 0, 680, 682, 3, 168, 84, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 684, 5, 304, 0, 0, 684, 686, 3, 32, 16, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 28, 0, 0, 688, 689, 3, 18, 9, 0, 689, 1234, 1, 0, 0, 0, 690, 693, 5, 53, 0, 0, 691, 692, 5, 194, 0, 0, 692, 694, 5, 226, 0, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 299, 0, 0, 696, 699, 3, 262, 131, 0, 697, 698, 5, 46, 0, 0, 698, 700, 3, 168, 84, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 703, 1, 0, 0, 0, 701, 702, 5, 246, 0, 0, 702, 704, 7, 1, 0, 0, 703, 701, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 707, 1, 0, 0, 0, 705, 706, 5, 304, 0, 0, 706, 708, 3, 32, 16, 0, 707, 705, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 5, 28, 0, 0, 710, 711, 3, 18, 9, 0, 711, 1234, 1, 0, 0, 0, 712, 713, 5, 222, 0, 0, 713, 714, 5, 167, 0, 0, 714, 715, 5, 299, 0, 0, 715, 1234, 3, 260, 130, 0, 716, 717, 5, 83, 0, 0, 717, 718, 5, 167, 0, 0, 718, 721, 5, 299, 0, 0, 719, 720, 5, 119, 0, 0, 720, 722, 5, 94, 0, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 1234, 3, 260, 130, 0, 724, 725, 5, 23, 0, 0, 725, 726, 5, 167, 0, 0, 726, 729, 5, 299, 0, 0, 727, 728, 5, 119, 0, 0, 728, 730, 5, 94, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 3, 260, 130, 0, 732, 733, 5, 223, 0, 0, 733, 734, 5, 269, 0, 0, 734, 735, 3, 262, 131, 0, 735, 1234, 1, 0, 0, 0, 736, 737, 5, 23, 0, 0, 737, 738, 5, 167, 0, 0, 738, 739, 5, 299, 0, 0, 739, 740, 3, 260, 130, 0, 740, 741, 5, 251, 0, 0, 741, 742, 5, 216, 0, 0, 742, 743, 3, 34, 17, 0, 743, 1234, 1, 0, 0, 0, 744, 745, 5, 83, 0, 0, 745, 748, 5, 299, 0, 0, 746, 747, 5, 119, 0, 0, 747, 749, 5, 94, 0, 0, 748, 746, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 1234, 3, 260, 130, 0, 751, 752, 5, 23, 0, 0, 752, 753, 5, 299, 0, 0, 753, 754, 3, 260, 130, 0, 754, 755, 5, 223, 0, 0, 755, 756, 5, 269, 0, 0, 756, 757, 3, 262, 131, 0, 757, 1234, 1, 0, 0, 0, 758, 759, 5, 23, 0, 0, 759, 760, 5, 299, 0, 0, 760, 761, 3, 260, 130, 0, 761, 762, 5, 251, 0, 0, 762, 763, 5, 31, 0, 0, 763, 764, 3, 288, 144, 0, 764, 1234, 1, 0, 0, 0, 765, 766, 5, 37, 0, 0, 766, 767, 3, 272, 136, 0, 767, 776, 5, 1, 0, 0, 768, 773, 3, 218, 109, 0, 769, 770, 5, 3, 0, 0, 770, 772, 3, 218, 109, 0, 771, 769, 1, 0, 0, 0, 772, 775, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 768, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 779, 5, 2, 0, 0, 779, 1234, 1, 0, 0, 0, 780, 783, 5, 53, 0, 0, 781, 782, 5, 194, 0, 0, 782, 784, 5, 226, 0, 0, 783, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 1234, 3, 224, 112, 0, 786, 787, 5, 83, 0, 0, 787, 790, 5, 107, 0, 0, 788, 789, 5, 119, 0, 0, 789, 791, 5, 94, 0, 0, 790, 788, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 1234, 3, 228, 114, 0, 793, 794, 5, 53, 0, 0, 794, 795, 5, 235, 0, 0, 795, 799, 3, 294, 147, 0, 796, 797, 5, 304, 0, 0, 797, 798, 5, 20, 0, 0, 798, 800, 3, 286, 143, 0, 799, 796, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 803, 1, 0, 0, 0, 801, 802, 5, 122, 0, 0, 802, 804, 3, 268, 134, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 1234, 1, 0, 0, 0, 805, 806, 5, 83, 0, 0, 806, 807, 5, 235, 0, 0, 807, 810, 3, 294, 147, 0, 808, 809, 5, 122, 0, 0, 809, 811, 3, 268, 134, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 1234, 1, 0, 0, 0, 812, 813, 5, 110, 0, 0, 813, 818, 3, 292, 146, 0, 814, 815, 5, 3, 0, 0, 815, 817, 3, 292, 146, 0, 816, 814, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 821, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 822, 5, 269, 0, 0, 822, 827, 3, 288, 144, 0, 823, 824, 5, 3, 0, 0, 824, 826, 3, 288, 144, 0, 825, 823, 1, 0, 0, 0, 826, 829, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 833, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 830, 831, 5, 304, 0, 0, 831, 832, 5, 20, 0, 0, 832, 834, 5, 193, 0, 0, 833, 830, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 838, 1, 0, 0, 0, 835, 836, 5, 111, 0, 0, 836, 837, 5, 36, 0, 0, 837, 839, 3, 286, 143, 0, 838, 835, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 842, 1, 0, 0, 0, 840, 841, 5, 122, 0, 0, 841, 843, 3, 268, 134, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 1234, 1, 0, 0, 0, 844, 855, 5, 110, 0, 0, 845, 850, 3, 292, 146, 0, 846, 847, 5, 3, 0, 0, 847, 849, 3, 292, 146, 0, 848, 846, 1, 0, 0, 0, 849, 852, 1, 0, 0, 0, 850, 848, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 856, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 853, 854, 5, 22, 0, 0, 854, 856, 5, 215, 0, 0, 855, 845, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 5, 190, 0, 0, 858, 859, 3, 252, 126, 0, 859, 860, 5, 269, 0, 0, 860, 864, 3, 288, 144, 0, 861, 862, 5, 304, 0, 0, 862, 863, 5, 110, 0, 0, 863, 865, 5, 193, 0, 0, 864, 861, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 1234, 1, 0, 0, 0, 866, 870, 5, 233, 0, 0, 867, 868, 5, 20, 0, 0, 868, 869, 5, 193, 0, 0, 869, 871, 5, 103, 0, 0, 870, 867, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 877, 3, 292, 146, 0, 873, 874, 5, 3, 0, 0, 874, 876, 3, 292, 146, 0, 875, 873, 1, 0, 0, 0, 876, 879, 1, 0, 0, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 880, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 880, 881, 5, 105, 0, 0, 881, 886, 3, 288, 144, 0, 882, 883, 5, 3, 0, 0, 883, 885, 3, 288, 144, 0, 884, 882, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 892, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 889, 890, 5, 111, 0, 0, 890, 891, 5, 36, 0, 0, 891, 893, 3, 286, 143, 0, 892, 889, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 896, 1, 0, 0, 0, 894, 895, 5, 122, 0, 0, 895, 897, 3, 268, 134, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 1234, 1, 0, 0, 0, 898, 902, 5, 233, 0, 0, 899, 900, 5, 110, 0, 0, 900, 901, 5, 193, 0, 0, 901, 903, 5, 103, 0, 0, 902, 899, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 914, 1, 0, 0, 0, 904, 909, 3, 292, 146, 0, 905, 906, 5, 3, 0, 0, 906, 908, 3, 292, 146, 0, 907, 905, 1, 0, 0, 0, 908, 911, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 915, 1, 0, 0, 0, 911, 909, 1, 0, 0, 0, 912, 913, 5, 22, 0, 0, 913, 915, 5, 215, 0, 0, 914, 904, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 5, 190, 0, 0, 917, 918, 3, 252, 126, 0, 918, 919, 5, 105, 0, 0, 919, 920, 3, 288, 144, 0, 920, 1234, 1, 0, 0, 0, 921, 932, 5, 74, 0, 0, 922, 927, 3, 248, 124, 0, 923, 924, 5, 3, 0, 0, 924, 926, 3, 248, 124, 0, 925, 923, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 933, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 931, 5, 22, 0, 0, 931, 933, 5, 215, 0, 0, 932, 922, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 190, 0, 0, 935, 936, 3, 252, 126, 0, 936, 937, 5, 269, 0, 0, 937, 938, 3, 288, 144, 0, 938, 1234, 1, 0, 0, 0, 939, 940, 5, 251, 0, 0, 940, 944, 5, 235, 0, 0, 941, 945, 5, 22, 0, 0, 942, 945, 5, 180, 0, 0, 943, 945, 3, 294, 147, 0, 944, 941, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 943, 1, 0, 0, 0, 945, 948, 1, 0, 0, 0, 946, 947, 5, 122, 0, 0, 947, 949, 3, 268, 134, 0, 948, 946, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 1234, 1, 0, 0, 0, 950, 951, 5, 253, 0, 0, 951, 954, 5, 112, 0, 0, 952, 953, 5, 190, 0, 0, 953, 955, 3, 252, 126, 0, 954, 952, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 1234, 1, 0, 0, 0, 956, 968, 5, 95, 0, 0, 957, 958, 5, 1, 0, 0, 958, 963, 3, 212, 106, 0, 959, 960, 5, 3, 0, 0, 960, 962, 3, 212, 106, 0, 961, 959, 1, 0, 0, 0, 962, 965, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 966, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 966, 967, 5, 2, 0, 0, 967, 969, 1, 0, 0, 0, 968, 957, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 1234, 3, 16, 8, 0, 971, 972, 5, 95, 0, 0, 972, 974, 5, 24, 0, 0, 973, 975, 5, 297, 0, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 1234, 3, 16, 8, 0, 977, 978, 5, 253, 0, 0, 978, 979, 5, 53, 0, 0, 979, 980, 5, 260, 0, 0, 980, 1234, 3, 256, 128, 0, 981, 982, 5, 253, 0, 0, 982, 983, 5, 53, 0, 0, 983, 984, 5, 243, 0, 0, 984, 1234, 3, 264, 132, 0, 985, 986, 5, 253, 0, 0, 986, 987, 5, 53, 0, 0, 987, 988, 5, 299, 0, 0, 988, 1234, 3, 260, 130, 0, 989, 990, 5, 253, 0, 0, 990, 991, 5, 53, 0, 0, 991, 992, 5, 167, 0, 0, 992, 993, 5, 299, 0, 0, 993, 1234, 3, 260, 130, 0, 994, 995, 5, 253, 0, 0, 995, 996, 5, 53, 0, 0, 996, 997, 5, 107, 0, 0, 997, 1234, 3, 272, 136, 0, 998, 999, 5, 253, 0, 0, 999, 1002, 5, 261, 0, 0, 1000, 1001, 7, 2, 0, 0, 1001, 1003, 3, 264, 132, 0, 1002, 1000, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1010, 1, 0, 0, 0, 1004, 1005, 5, 154, 0, 0, 1005, 1008, 3, 168, 84, 0, 1006, 1007, 5, 90, 0, 0, 1007, 1009, 3, 168, 84, 0, 1008, 1006, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 1, 0, 0, 0, 1010, 1004, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1234, 1, 0, 0, 0, 1012, 1013, 5, 253, 0, 0, 1013, 1016, 5, 244, 0, 0, 1014, 1015, 7, 2, 0, 0, 1015, 1017, 3, 268, 134, 0, 1016, 1014, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1024, 1, 0, 0, 0, 1018, 1019, 5, 154, 0, 0, 1019, 1022, 3, 168, 84, 0, 1020, 1021, 5, 90, 0, 0, 1021, 1023, 3, 168, 84, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1025, 1, 0, 0, 0, 1024, 1018, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1234, 1, 0, 0, 0, 1026, 1027, 5, 253, 0, 0, 1027, 1034, 5, 43, 0, 0, 1028, 1029, 5, 154, 0, 0, 1029, 1032, 3, 168, 84, 0, 1030, 1031, 5, 90, 0, 0, 1031, 1033, 3, 168, 84, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1035, 1, 0, 0, 0, 1034, 1028, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1234, 1, 0, 0, 0, 1036, 1037, 5, 253, 0, 0, 1037, 1038, 5, 45, 0, 0, 1038, 1039, 7, 2, 0, 0, 1039, 1046, 3, 254, 127, 0, 1040, 1041, 5, 154, 0, 0, 1041, 1044, 3, 168, 84, 0, 1042, 1043, 5, 90, 0, 0, 1043, 1045, 3, 168, 84, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 1, 0, 0, 0, 1046, 1040, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1234, 1, 0, 0, 0, 1048, 1049, 5, 253, 0, 0, 1049, 1050, 5, 256, 0, 0, 1050, 1051, 5, 103, 0, 0, 1051, 1234, 3, 254, 127, 0, 1052, 1053, 5, 253, 0, 0, 1053, 1054, 5, 256, 0, 0, 1054, 1055, 5, 103, 0, 0, 1055, 1056, 5, 1, 0, 0, 1056, 1057, 3, 18, 9, 0, 1057, 1058, 5, 2, 0, 0, 1058, 1234, 1, 0, 0, 0, 1059, 1061, 5, 253, 0, 0, 1060, 1062, 5, 56, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1066, 5, 236, 0, 0, 1064, 1065, 7, 2, 0, 0, 1065, 1067, 3, 268, 134, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1234, 1, 0, 0, 0, 1068, 1069, 5, 253, 0, 0, 1069, 1070, 5, 235, 0, 0, 1070, 1073, 5, 112, 0, 0, 1071, 1072, 7, 2, 0, 0, 1072, 1074, 3, 268, 134, 0, 1073, 1071, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1234, 1, 0, 0, 0, 1075, 1076, 5, 76, 0, 0, 1076, 1234, 3, 254, 127, 0, 1077, 1078, 5, 75, 0, 0, 1078, 1234, 3, 254, 127, 0, 1079, 1080, 5, 253, 0, 0, 1080, 1083, 5, 108, 0, 0, 1081, 1082, 7, 2, 0, 0, 1082, 1084, 3, 264, 132, 0, 1083, 1081, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1091, 1, 0, 0, 0, 1085, 1086, 5, 154, 0, 0, 1086, 1089, 3, 168, 84, 0, 1087, 1088, 5, 90, 0, 0, 1088, 1090, 3, 168, 84, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 1, 0, 0, 0, 1091, 1085, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1234, 1, 0, 0, 0, 1093, 1094, 5, 253, 0, 0, 1094, 1101, 5, 250, 0, 0, 1095, 1096, 5, 154, 0, 0, 1096, 1099, 3, 168, 84, 0, 1097, 1098, 5, 90, 0, 0, 1098, 1100, 3, 168, 84, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1102, 1, 0, 0, 0, 1101, 1095, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1234, 1, 0, 0, 0, 1103, 1104, 5, 251, 0, 0, 1104, 1105, 5, 250, 0, 0, 1105, 1106, 5, 31, 0, 0, 1106, 1234, 3, 298, 149, 0, 1107, 1108, 5, 227, 0, 0, 1108, 1109, 5, 250, 0, 0, 1109, 1234, 5, 31, 0, 0, 1110, 1111, 5, 251, 0, 0, 1111, 1112, 5, 250, 0, 0, 1112, 1113, 3, 280, 140, 0, 1113, 1114, 5, 312, 0, 0, 1114, 1115, 3, 136, 68, 0, 1115, 1234, 1, 0, 0, 0, 1116, 1117, 5, 227, 0, 0, 1117, 1118, 5, 250, 0, 0, 1118, 1234, 3, 280, 140, 0, 1119, 1120, 5, 255, 0, 0, 1120, 1129, 5, 271, 0, 0, 1121, 1126, 3, 214, 107, 0, 1122, 1123, 5, 3, 0, 0, 1123, 1125, 3, 214, 107, 0, 1124, 1122, 1, 0, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1130, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1129, 1121, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1234, 1, 0, 0, 0, 1131, 1133, 5, 47, 0, 0, 1132, 1134, 5, 307, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1234, 1, 0, 0, 0, 1135, 1137, 5, 237, 0, 0, 1136, 1138, 5, 307, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1234, 1, 0, 0, 0, 1139, 1140, 5, 214, 0, 0, 1140, 1141, 3, 294, 147, 0, 1141, 1142, 5, 105, 0, 0, 1142, 1143, 3, 16, 8, 0, 1143, 1234, 1, 0, 0, 0, 1144, 1145, 5, 68, 0, 0, 1145, 1146, 5, 214, 0, 0, 1146, 1234, 3, 294, 147, 0, 1147, 1148, 5, 93, 0, 0, 1148, 1158, 3, 294, 147, 0, 1149, 1150, 5, 290, 0, 0, 1150, 1155, 3, 136, 68, 0, 1151, 1152, 5, 3, 0, 0, 1152, 1154, 3, 136, 68, 0, 1153, 1151, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1149, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1234, 1, 0, 0, 0, 1160, 1161, 5, 93, 0, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1172, 3, 168, 84, 0, 1163, 1164, 5, 290, 0, 0, 1164, 1169, 3, 136, 68, 0, 1165, 1166, 5, 3, 0, 0, 1166, 1168, 3, 136, 68, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1171, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1173, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1163, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1234, 1, 0, 0, 0, 1174, 1175, 5, 76, 0, 0, 1175, 1176, 5, 126, 0, 0, 1176, 1234, 3, 294, 147, 0, 1177, 1178, 5, 76, 0, 0, 1178, 1179, 5, 198, 0, 0, 1179, 1234, 3, 294, 147, 0, 1180, 1181, 5, 251, 0, 0, 1181, 1182, 5, 205, 0, 0, 1182, 1234, 3, 222, 111, 0, 1183, 1184, 5, 251, 0, 0, 1184, 1185, 5, 267, 0, 0, 1185, 1188, 5, 311, 0, 0, 1186, 1189, 5, 157, 0, 0, 1187, 1189, 3, 136, 68, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1187, 1, 0, 0, 0, 1189, 1234, 1, 0, 0, 0, 1190, 1191, 5, 287, 0, 0, 1191, 1192, 3, 256, 128, 0, 1192, 1193, 5, 251, 0, 0, 1193, 1198, 3, 210, 105, 0, 1194, 1195, 5, 3, 0, 0, 1195, 1197, 3, 210, 105, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1200, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1203, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1202, 5, 301, 0, 0, 1202, 1204, 3, 138, 69, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1234, 1, 0, 0, 0, 1205, 1206, 5, 169, 0, 0, 1206, 1207, 5, 130, 0, 0, 1207, 1212, 3, 256, 128, 0, 1208, 1210, 5, 28, 0, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 3, 294, 147, 0, 1212, 1209, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 5, 290, 0, 0, 1215, 1216, 3, 72, 36, 0, 1216, 1217, 5, 190, 0, 0, 1217, 1219, 3, 136, 68, 0, 1218, 1220, 3, 194, 97, 0, 1219, 1218, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1234, 1, 0, 0, 0, 1223, 1224, 5, 253, 0, 0, 1224, 1225, 5, 46, 0, 0, 1225, 1226, 5, 190, 0, 0, 1226, 1227, 5, 260, 0, 0, 1227, 1234, 3, 256, 128, 0, 1228, 1229, 5, 253, 0, 0, 1229, 1230, 5, 46, 0, 0, 1230, 1231, 5, 190, 0, 0, 1231, 1232, 5, 44, 0, 0, 1232, 1234, 3, 276, 138, 0, 1233, 335, 1, 0, 0, 0, 1233, 336, 1, 0, 0, 0, 1233, 338, 1, 0, 0, 0, 1233, 360, 1, 0, 0, 0, 1233, 370, 1, 0, 0, 0, 1233, 386, 1, 0, 0, 0, 1233, 396, 1, 0, 0, 0, 1233, 403, 1, 0, 0, 0, 1233, 410, 1, 0, 0, 0, 1233, 448, 1, 0, 0, 0, 1233, 478, 1, 0, 0, 0, 1233, 485, 1, 0, 0, 0, 1233, 493, 1, 0, 0, 0, 1233, 500, 1, 0, 0, 0, 1233, 503, 1, 0, 0, 0, 1233, 512, 1, 0, 0, 0, 1233, 521, 1, 0, 0, 0, 1233, 530, 1, 0, 0, 0, 1233, 541, 1, 0, 0, 0, 1233, 557, 1, 0, 0, 0, 1233, 574, 1, 0, 0, 0, 1233, 589, 1, 0, 0, 0, 1233, 604, 1, 0, 0, 0, 1233, 618, 1, 0, 0, 0, 1233, 625, 1, 0, 0, 0, 1233, 632, 1, 0, 0, 0, 1233, 655, 1, 0, 0, 0, 1233, 661, 1, 0, 0, 0, 1233, 690, 1, 0, 0, 0, 1233, 712, 1, 0, 0, 0, 1233, 716, 1, 0, 0, 0, 1233, 724, 1, 0, 0, 0, 1233, 736, 1, 0, 0, 0, 1233, 744, 1, 0, 0, 0, 1233, 751, 1, 0, 0, 0, 1233, 758, 1, 0, 0, 0, 1233, 765, 1, 0, 0, 0, 1233, 780, 1, 0, 0, 0, 1233, 786, 1, 0, 0, 0, 1233, 793, 1, 0, 0, 0, 1233, 805, 1, 0, 0, 0, 1233, 812, 1, 0, 0, 0, 1233, 844, 1, 0, 0, 0, 1233, 866, 1, 0, 0, 0, 1233, 898, 1, 0, 0, 0, 1233, 921, 1, 0, 0, 0, 1233, 939, 1, 0, 0, 0, 1233, 950, 1, 0, 0, 0, 1233, 956, 1, 0, 0, 0, 1233, 971, 1, 0, 0, 0, 1233, 977, 1, 0, 0, 0, 1233, 981, 1, 0, 0, 0, 1233, 985, 1, 0, 0, 0, 1233, 989, 1, 0, 0, 0, 1233, 994, 1, 0, 0, 0, 1233, 998, 1, 0, 0, 0, 1233, 1012, 1, 0, 0, 0, 1233, 1026, 1, 0, 0, 0, 1233, 1036, 1, 0, 0, 0, 1233, 1048, 1, 0, 0, 0, 1233, 1052, 1, 0, 0, 0, 1233, 1059, 1, 0, 0, 0, 1233, 1068, 1, 0, 0, 0, 1233, 1075, 1, 0, 0, 0, 1233, 1077, 1, 0, 0, 0, 1233, 1079, 1, 0, 0, 0, 1233, 1093, 1, 0, 0, 0, 1233, 1103, 1, 0, 0, 0, 1233, 1107, 1, 0, 0, 0, 1233, 1110, 1, 0, 0, 0, 1233, 1116, 1, 0, 0, 0, 1233, 1119, 1, 0, 0, 0, 1233, 1131, 1, 0, 0, 0, 1233, 1135, 1, 0, 0, 0, 1233, 1139, 1, 0, 0, 0, 1233, 1144, 1, 0, 0, 0, 1233, 1147, 1, 0, 0, 0, 1233, 1160, 1, 0, 0, 0, 1233, 1174, 1, 0, 0, 0, 1233, 1177, 1, 0, 0, 0, 1233, 1180, 1, 0, 0, 0, 1233, 1183, 1, 0, 0, 0, 1233, 1190, 1, 0, 0, 0, 1233, 1205, 1, 0, 0, 0, 1233, 1223, 1, 0, 0, 0, 1233, 1228, 1, 0, 0, 0, 1234, 17, 1, 0, 0, 0, 1235, 1237, 3, 20, 10, 0, 1236, 1235, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 3, 22, 11, 0, 1239, 19, 1, 0, 0, 0, 1240, 1241, 5, 304, 0, 0, 1241, 1246, 3, 224, 112, 0, 1242, 1243, 5, 3, 0, 0, 1243, 1245, 3, 224, 112, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 21, 1, 0, 0, 0, 1248, 1246, 1, 0, 0, 0, 1249, 1251, 3, 24, 12, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 3, 40, 20, 0, 1253, 23, 1, 0, 0, 0, 1254, 1256, 5, 304, 0, 0, 1255, 1257, 5, 221, 0, 0, 1256, 1255, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1263, 3, 66, 33, 0, 1259, 1260, 5, 3, 0, 0, 1260, 1262, 3, 66, 33, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 25, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1269, 3, 28, 14, 0, 1267, 1269, 3, 30, 15, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 27, 1, 0, 0, 0, 1270, 1271, 3, 278, 139, 0, 1271, 1274, 3, 184, 92, 0, 1272, 1273, 5, 182, 0, 0, 1273, 1275, 5, 183, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1277, 5, 46, 0, 0, 1277, 1279, 3, 168, 84, 0, 1278, 1276, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1281, 5, 304, 0, 0, 1281, 1283, 3, 32, 16, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 29, 1, 0, 0, 0, 1284, 1285, 5, 154, 0, 0, 1285, 1288, 3, 256, 128, 0, 1286, 1287, 7, 3, 0, 0, 1287, 1289, 5, 216, 0, 0, 1288, 1286, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 31, 1, 0, 0, 0, 1290, 1291, 5, 1, 0, 0, 1291, 1292, 3, 34, 17, 0, 1292, 1293, 5, 2, 0, 0, 1293, 33, 1, 0, 0, 0, 1294, 1299, 3, 36, 18, 0, 1295, 1296, 5, 3, 0, 0, 1296, 1298, 3, 36, 18, 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, 35, 1, 0, 0, 0, 1301, 1299, 1, 0, 0, 0, 1302, 1303, 3, 294, 147, 0, 1303, 1304, 5, 312, 0, 0, 1304, 1305, 3, 38, 19, 0, 1305, 37, 1, 0, 0, 0, 1306, 1309, 5, 70, 0, 0, 1307, 1309, 3, 136, 68, 0, 1308, 1306, 1, 0, 0, 0, 1308, 1307, 1, 0, 0, 0, 1309, 39, 1, 0, 0, 0, 1310, 1321, 3, 46, 23, 0, 1311, 1312, 5, 195, 0, 0, 1312, 1313, 5, 36, 0, 0, 1313, 1318, 3, 50, 25, 0, 1314, 1315, 5, 3, 0, 0, 1315, 1317, 3, 50, 25, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1320, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1311, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1328, 1, 0, 0, 0, 1323, 1324, 5, 188, 0, 0, 1324, 1326, 3, 44, 22, 0, 1325, 1327, 7, 4, 0, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1329, 1, 0, 0, 0, 1328, 1323, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1343, 1, 0, 0, 0, 1330, 1331, 5, 155, 0, 0, 1331, 1344, 3, 42, 21, 0, 1332, 1333, 5, 98, 0, 0, 1333, 1335, 7, 5, 0, 0, 1334, 1336, 3, 44, 22, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1341, 7, 4, 0, 0, 1338, 1342, 5, 192, 0, 0, 1339, 1340, 5, 304, 0, 0, 1340, 1342, 5, 266, 0, 0, 1341, 1338, 1, 0, 0, 0, 1341, 1339, 1, 0, 0, 0, 1342, 1344, 1, 0, 0, 0, 1343, 1330, 1, 0, 0, 0, 1343, 1332, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 41, 1, 0, 0, 0, 1345, 1348, 5, 22, 0, 0, 1346, 1348, 3, 44, 22, 0, 1347, 1345, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 43, 1, 0, 0, 0, 1349, 1350, 7, 6, 0, 0, 1350, 45, 1, 0, 0, 0, 1351, 1352, 6, 23, -1, 0, 1352, 1353, 3, 48, 24, 0, 1353, 1368, 1, 0, 0, 0, 1354, 1355, 10, 2, 0, 0, 1355, 1357, 5, 128, 0, 0, 1356, 1358, 3, 68, 34, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1367, 3, 46, 23, 3, 1360, 1361, 10, 1, 0, 0, 1361, 1363, 7, 7, 0, 0, 1362, 1364, 3, 68, 34, 0, 1363, 1362, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 3, 46, 23, 2, 1366, 1354, 1, 0, 0, 0, 1366, 1360, 1, 0, 0, 0, 1367, 1370, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 47, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1388, 3, 52, 26, 0, 1372, 1373, 5, 260, 0, 0, 1373, 1388, 3, 256, 128, 0, 1374, 1375, 5, 296, 0, 0, 1375, 1380, 3, 136, 68, 0, 1376, 1377, 5, 3, 0, 0, 1377, 1379, 3, 136, 68, 0, 1378, 1376, 1, 0, 0, 0, 1379, 1382, 1, 0, 0, 0, 1380, 1378, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1388, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1383, 1384, 5, 1, 0, 0, 1384, 1385, 3, 40, 20, 0, 1385, 1386, 5, 2, 0, 0, 1386, 1388, 1, 0, 0, 0, 1387, 1371, 1, 0, 0, 0, 1387, 1372, 1, 0, 0, 0, 1387, 1374, 1, 0, 0, 0, 1387, 1383, 1, 0, 0, 0, 1388, 49, 1, 0, 0, 0, 1389, 1392, 3, 276, 138, 0, 1390, 1392, 3, 136, 68, 0, 1391, 1389, 1, 0, 0, 0, 1391, 1390, 1, 0, 0, 0, 1392, 1394, 1, 0, 0, 0, 1393, 1395, 7, 8, 0, 0, 1394, 1393, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1398, 1, 0, 0, 0, 1396, 1397, 5, 185, 0, 0, 1397, 1399, 7, 9, 0, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 51, 1, 0, 0, 0, 1400, 1402, 5, 248, 0, 0, 1401, 1403, 3, 68, 34, 0, 1402, 1401, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1409, 3, 70, 35, 0, 1405, 1406, 5, 3, 0, 0, 1406, 1408, 3, 70, 35, 0, 1407, 1405, 1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1421, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1413, 5, 105, 0, 0, 1413, 1418, 3, 72, 36, 0, 1414, 1415, 5, 3, 0, 0, 1415, 1417, 3, 72, 36, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1420, 1, 0, 0, 0, 1418, 1416, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1422, 1, 0, 0, 0, 1420, 1418, 1, 0, 0, 0, 1421, 1412, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1424, 5, 301, 0, 0, 1424, 1426, 3, 138, 69, 0, 1425, 1423, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1430, 1, 0, 0, 0, 1427, 1428, 5, 114, 0, 0, 1428, 1429, 5, 36, 0, 0, 1429, 1431, 3, 54, 27, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1434, 1, 0, 0, 0, 1432, 1433, 5, 117, 0, 0, 1433, 1435, 3, 138, 69, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1445, 1, 0, 0, 0, 1436, 1437, 5, 303, 0, 0, 1437, 1442, 3, 62, 31, 0, 1438, 1439, 5, 3, 0, 0, 1439, 1441, 3, 62, 31, 0, 1440, 1438, 1, 0, 0, 0, 1441, 1444, 1, 0, 0, 0, 1442, 1440, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1446, 1, 0, 0, 0, 1444, 1442, 1, 0, 0, 0, 1445, 1436, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 53, 1, 0, 0, 0, 1447, 1449, 3, 68, 34, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1455, 3, 56, 28, 0, 1451, 1452, 5, 3, 0, 0, 1452, 1454, 3, 56, 28, 0, 1453, 1451, 1, 0, 0, 0, 1454, 1457, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 55, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1458, 1499, 3, 58, 29, 0, 1459, 1460, 5, 238, 0, 0, 1460, 1469, 5, 1, 0, 0, 1461, 1466, 3, 58, 29, 0, 1462, 1463, 5, 3, 0, 0, 1463, 1465, 3, 58, 29, 0, 1464, 1462, 1, 0, 0, 0, 1465, 1468, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1470, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1461, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1499, 5, 2, 0, 0, 1472, 1473, 5, 55, 0, 0, 1473, 1482, 5, 1, 0, 0, 1474, 1479, 3, 58, 29, 0, 1475, 1476, 5, 3, 0, 0, 1476, 1478, 3, 58, 29, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1481, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1483, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1474, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1499, 5, 2, 0, 0, 1485, 1486, 5, 115, 0, 0, 1486, 1487, 5, 252, 0, 0, 1487, 1488, 5, 1, 0, 0, 1488, 1493, 3, 58, 29, 0, 1489, 1490, 5, 3, 0, 0, 1490, 1492, 3, 58, 29, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1497, 5, 2, 0, 0, 1497, 1499, 1, 0, 0, 0, 1498, 1458, 1, 0, 0, 0, 1498, 1459, 1, 0, 0, 0, 1498, 1472, 1, 0, 0, 0, 1498, 1485, 1, 0, 0, 0, 1499, 57, 1, 0, 0, 0, 1500, 1509, 5, 1, 0, 0, 1501, 1506, 3, 60, 30, 0, 1502, 1503, 5, 3, 0, 0, 1503, 1505, 3, 60, 30, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1510, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1501, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 5, 2, 0, 0, 1512, 1514, 3, 60, 30, 0, 1513, 1500, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 59, 1, 0, 0, 0, 1515, 1518, 3, 276, 138, 0, 1516, 1518, 3, 136, 68, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1516, 1, 0, 0, 0, 1518, 61, 1, 0, 0, 0, 1519, 1520, 3, 294, 147, 0, 1520, 1521, 5, 28, 0, 0, 1521, 1522, 5, 1, 0, 0, 1522, 1523, 3, 64, 32, 0, 1523, 1524, 5, 2, 0, 0, 1524, 63, 1, 0, 0, 0, 1525, 1527, 3, 294, 147, 0, 1526, 1525, 1, 0, 0, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1538, 1, 0, 0, 0, 1528, 1529, 5, 201, 0, 0, 1529, 1530, 5, 36, 0, 0, 1530, 1535, 3, 136, 68, 0, 1531, 1532, 5, 3, 0, 0, 1532, 1534, 3, 136, 68, 0, 1533, 1531, 1, 0, 0, 0, 1534, 1537, 1, 0, 0, 0, 1535, 1533, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1539, 1, 0, 0, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1528, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1550, 1, 0, 0, 0, 1540, 1541, 5, 195, 0, 0, 1541, 1542, 5, 36, 0, 0, 1542, 1547, 3, 50, 25, 0, 1543, 1544, 5, 3, 0, 0, 1544, 1546, 3, 50, 25, 0, 1545, 1543, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1545, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1551, 1, 0, 0, 0, 1549, 1547, 1, 0, 0, 0, 1550, 1540, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 1, 0, 0, 0, 1552, 1554, 3, 198, 99, 0, 1553, 1552, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 65, 1, 0, 0, 0, 1555, 1557, 3, 294, 147, 0, 1556, 1558, 3, 108, 54, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 5, 28, 0, 0, 1560, 1561, 5, 1, 0, 0, 1561, 1562, 3, 22, 11, 0, 1562, 1563, 5, 2, 0, 0, 1563, 67, 1, 0, 0, 0, 1564, 1565, 7, 10, 0, 0, 1565, 69, 1, 0, 0, 0, 1566, 1569, 3, 276, 138, 0, 1567, 1569, 3, 136, 68, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1567, 1, 0, 0, 0, 1569, 1574, 1, 0, 0, 0, 1570, 1572, 5, 28, 0, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1575, 3, 294, 147, 0, 1574, 1571, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1585, 1, 0, 0, 0, 1576, 1577, 3, 144, 72, 0, 1577, 1578, 5, 4, 0, 0, 1578, 1581, 5, 320, 0, 0, 1579, 1580, 5, 28, 0, 0, 1580, 1582, 3, 108, 54, 0, 1581, 1579, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1585, 1, 0, 0, 0, 1583, 1585, 5, 320, 0, 0, 1584, 1568, 1, 0, 0, 0, 1584, 1576, 1, 0, 0, 0, 1584, 1583, 1, 0, 0, 0, 1585, 71, 1, 0, 0, 0, 1586, 1587, 6, 36, -1, 0, 1587, 1588, 3, 78, 39, 0, 1588, 1607, 1, 0, 0, 0, 1589, 1603, 10, 2, 0, 0, 1590, 1591, 5, 54, 0, 0, 1591, 1592, 5, 136, 0, 0, 1592, 1604, 3, 78, 39, 0, 1593, 1594, 3, 74, 37, 0, 1594, 1595, 5, 136, 0, 0, 1595, 1596, 3, 72, 36, 0, 1596, 1597, 3, 76, 38, 0, 1597, 1604, 1, 0, 0, 0, 1598, 1599, 5, 172, 0, 0, 1599, 1600, 3, 74, 37, 0, 1600, 1601, 5, 136, 0, 0, 1601, 1602, 3, 78, 39, 0, 1602, 1604, 1, 0, 0, 0, 1603, 1590, 1, 0, 0, 0, 1603, 1593, 1, 0, 0, 0, 1603, 1598, 1, 0, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1589, 1, 0, 0, 0, 1606, 1609, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 73, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1610, 1612, 5, 125, 0, 0, 1611, 1610, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1626, 1, 0, 0, 0, 1613, 1615, 5, 152, 0, 0, 1614, 1616, 5, 197, 0, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1626, 1, 0, 0, 0, 1617, 1619, 5, 234, 0, 0, 1618, 1620, 5, 197, 0, 0, 1619, 1618, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1626, 1, 0, 0, 0, 1621, 1623, 5, 106, 0, 0, 1622, 1624, 5, 197, 0, 0, 1623, 1622, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1611, 1, 0, 0, 0, 1625, 1613, 1, 0, 0, 0, 1625, 1617, 1, 0, 0, 0, 1625, 1621, 1, 0, 0, 0, 1626, 75, 1, 0, 0, 0, 1627, 1628, 5, 190, 0, 0, 1628, 1642, 3, 138, 69, 0, 1629, 1630, 5, 290, 0, 0, 1630, 1631, 5, 1, 0, 0, 1631, 1636, 3, 294, 147, 0, 1632, 1633, 5, 3, 0, 0, 1633, 1635, 3, 294, 147, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1640, 5, 2, 0, 0, 1640, 1642, 1, 0, 0, 0, 1641, 1627, 1, 0, 0, 0, 1641, 1629, 1, 0, 0, 0, 1642, 77, 1, 0, 0, 0, 1643, 1650, 3, 88, 44, 0, 1644, 1645, 5, 262, 0, 0, 1645, 1646, 3, 80, 40, 0, 1646, 1647, 5, 1, 0, 0, 1647, 1648, 3, 136, 68, 0, 1648, 1649, 5, 2, 0, 0, 1649, 1651, 1, 0, 0, 0, 1650, 1644, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 79, 1, 0, 0, 0, 1652, 1653, 7, 11, 0, 0, 1653, 81, 1, 0, 0, 0, 1654, 1655, 7, 12, 0, 0, 1655, 83, 1, 0, 0, 0, 1656, 1663, 5, 89, 0, 0, 1657, 1659, 5, 274, 0, 0, 1658, 1660, 3, 168, 84, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1663, 3, 86, 43, 0, 1662, 1656, 1, 0, 0, 0, 1662, 1657, 1, 0, 0, 0, 1663, 85, 1, 0, 0, 0, 1664, 1665, 5, 304, 0, 0, 1665, 1669, 5, 51, 0, 0, 1666, 1667, 5, 306, 0, 0, 1667, 1669, 5, 51, 0, 0, 1668, 1664, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 87, 1, 0, 0, 0, 1670, 1753, 3, 102, 51, 0, 1671, 1672, 5, 166, 0, 0, 1672, 1683, 5, 1, 0, 0, 1673, 1674, 5, 201, 0, 0, 1674, 1675, 5, 36, 0, 0, 1675, 1680, 3, 136, 68, 0, 1676, 1677, 5, 3, 0, 0, 1677, 1679, 3, 136, 68, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1682, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1684, 1, 0, 0, 0, 1682, 1680, 1, 0, 0, 0, 1683, 1673, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1695, 1, 0, 0, 0, 1685, 1686, 5, 195, 0, 0, 1686, 1687, 5, 36, 0, 0, 1687, 1692, 3, 50, 25, 0, 1688, 1689, 5, 3, 0, 0, 1689, 1691, 3, 50, 25, 0, 1690, 1688, 1, 0, 0, 0, 1691, 1694, 1, 0, 0, 0, 1692, 1690, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1696, 1, 0, 0, 0, 1694, 1692, 1, 0, 0, 0, 1695, 1685, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1706, 1, 0, 0, 0, 1697, 1698, 5, 168, 0, 0, 1698, 1703, 3, 90, 45, 0, 1699, 1700, 5, 3, 0, 0, 1700, 1702, 3, 90, 45, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1707, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1697, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1710, 3, 92, 46, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1714, 1, 0, 0, 0, 1711, 1712, 5, 21, 0, 0, 1712, 1713, 5, 163, 0, 0, 1713, 1715, 3, 96, 48, 0, 1714, 1711, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1717, 1, 0, 0, 0, 1716, 1718, 7, 13, 0, 0, 1717, 1716, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 5, 206, 0, 0, 1720, 1721, 5, 1, 0, 0, 1721, 1722, 3, 204, 102, 0, 1722, 1732, 5, 2, 0, 0, 1723, 1724, 5, 257, 0, 0, 1724, 1729, 3, 98, 49, 0, 1725, 1726, 5, 3, 0, 0, 1726, 1728, 3, 98, 49, 0, 1727, 1725, 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1733, 1, 0, 0, 0, 1731, 1729, 1, 0, 0, 0, 1732, 1723, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 5, 71, 0, 0, 1735, 1740, 3, 100, 50, 0, 1736, 1737, 5, 3, 0, 0, 1737, 1739, 3, 100, 50, 0, 1738, 1736, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1743, 1, 0, 0, 0, 1742, 1740, 1, 0, 0, 0, 1743, 1751, 5, 2, 0, 0, 1744, 1746, 5, 28, 0, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1749, 3, 294, 147, 0, 1748, 1750, 3, 108, 54, 0, 1749, 1748, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1752, 1, 0, 0, 0, 1751, 1745, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 1, 0, 0, 0, 1753, 1671, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 89, 1, 0, 0, 0, 1755, 1756, 3, 136, 68, 0, 1756, 1757, 5, 28, 0, 0, 1757, 1758, 3, 294, 147, 0, 1758, 91, 1, 0, 0, 0, 1759, 1760, 5, 191, 0, 0, 1760, 1761, 5, 239, 0, 0, 1761, 1762, 5, 207, 0, 0, 1762, 1771, 5, 163, 0, 0, 1763, 1764, 5, 22, 0, 0, 1764, 1765, 5, 240, 0, 0, 1765, 1766, 5, 207, 0, 0, 1766, 1768, 5, 163, 0, 0, 1767, 1769, 3, 94, 47, 0, 1768, 1767, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 1, 0, 0, 0, 1770, 1759, 1, 0, 0, 0, 1770, 1763, 1, 0, 0, 0, 1771, 93, 1, 0, 0, 0, 1772, 1773, 5, 253, 0, 0, 1773, 1774, 5, 85, 0, 0, 1774, 1782, 5, 165, 0, 0, 1775, 1776, 5, 189, 0, 0, 1776, 1777, 5, 85, 0, 0, 1777, 1782, 5, 165, 0, 0, 1778, 1779, 5, 304, 0, 0, 1779, 1780, 5, 284, 0, 0, 1780, 1782, 5, 240, 0, 0, 1781, 1772, 1, 0, 0, 0, 1781, 1775, 1, 0, 0, 0, 1781, 1778, 1, 0, 0, 0, 1782, 95, 1, 0, 0, 0, 1783, 1784, 5, 5, 0, 0, 1784, 1785, 5, 269, 0, 0, 1785, 1786, 5, 174, 0, 0, 1786, 1803, 5, 239, 0, 0, 1787, 1788, 5, 5, 0, 0, 1788, 1789, 5, 204, 0, 0, 1789, 1790, 5, 148, 0, 0, 1790, 1803, 5, 239, 0, 0, 1791, 1792, 5, 5, 0, 0, 1792, 1793, 5, 269, 0, 0, 1793, 1794, 5, 101, 0, 0, 1794, 1803, 3, 294, 147, 0, 1795, 1796, 5, 5, 0, 0, 1796, 1797, 5, 269, 0, 0, 1797, 1798, 5, 148, 0, 0, 1798, 1803, 3, 294, 147, 0, 1799, 1800, 5, 5, 0, 0, 1800, 1801, 5, 269, 0, 0, 1801, 1803, 3, 294, 147, 0, 1802, 1783, 1, 0, 0, 0, 1802, 1787, 1, 0, 0, 0, 1802, 1791, 1, 0, 0, 0, 1802, 1795, 1, 0, 0, 0, 1802, 1799, 1, 0, 0, 0, 1803, 97, 1, 0, 0, 0, 1804, 1805, 3, 294, 147, 0, 1805, 1806, 5, 312, 0, 0, 1806, 1807, 5, 1, 0, 0, 1807, 1812, 3, 294, 147, 0, 1808, 1809, 5, 3, 0, 0, 1809, 1811, 3, 294, 147, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1814, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1815, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1815, 1816, 5, 2, 0, 0, 1816, 99, 1, 0, 0, 0, 1817, 1818, 3, 294, 147, 0, 1818, 1819, 5, 28, 0, 0, 1819, 1820, 3, 136, 68, 0, 1820, 101, 1, 0, 0, 0, 1821, 1829, 3, 110, 55, 0, 1822, 1824, 5, 28, 0, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1827, 3, 294, 147, 0, 1826, 1828, 3, 108, 54, 0, 1827, 1826, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1830, 1, 0, 0, 0, 1829, 1823, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 103, 1, 0, 0, 0, 1831, 1832, 5, 1, 0, 0, 1832, 1837, 3, 278, 139, 0, 1833, 1834, 5, 3, 0, 0, 1834, 1836, 3, 278, 139, 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, 1840, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1840, 1841, 5, 2, 0, 0, 1841, 105, 1, 0, 0, 0, 1842, 1843, 5, 1, 0, 0, 1843, 1848, 3, 276, 138, 0, 1844, 1845, 5, 3, 0, 0, 1845, 1847, 3, 276, 138, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1850, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1851, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 1852, 5, 2, 0, 0, 1852, 107, 1, 0, 0, 0, 1853, 1854, 5, 1, 0, 0, 1854, 1859, 3, 294, 147, 0, 1855, 1856, 5, 3, 0, 0, 1856, 1858, 3, 294, 147, 0, 1857, 1855, 1, 0, 0, 0, 1858, 1861, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1862, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1863, 5, 2, 0, 0, 1863, 109, 1, 0, 0, 0, 1864, 1866, 3, 254, 127, 0, 1865, 1867, 3, 282, 141, 0, 1866, 1865, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1936, 1, 0, 0, 0, 1868, 1869, 5, 1, 0, 0, 1869, 1870, 3, 22, 11, 0, 1870, 1871, 5, 2, 0, 0, 1871, 1936, 1, 0, 0, 0, 1872, 1873, 5, 285, 0, 0, 1873, 1874, 5, 1, 0, 0, 1874, 1879, 3, 136, 68, 0, 1875, 1876, 5, 3, 0, 0, 1876, 1878, 3, 136, 68, 0, 1877, 1875, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1882, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1885, 5, 2, 0, 0, 1883, 1884, 5, 304, 0, 0, 1884, 1886, 5, 196, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1936, 1, 0, 0, 0, 1887, 1888, 5, 149, 0, 0, 1888, 1889, 5, 1, 0, 0, 1889, 1890, 3, 22, 11, 0, 1890, 1891, 5, 2, 0, 0, 1891, 1936, 1, 0, 0, 0, 1892, 1893, 5, 260, 0, 0, 1893, 1894, 5, 1, 0, 0, 1894, 1895, 3, 122, 61, 0, 1895, 1896, 5, 2, 0, 0, 1896, 1936, 1, 0, 0, 0, 1897, 1898, 5, 1, 0, 0, 1898, 1899, 3, 72, 36, 0, 1899, 1900, 5, 2, 0, 0, 1900, 1936, 1, 0, 0, 0, 1901, 1902, 5, 142, 0, 0, 1902, 1903, 5, 1, 0, 0, 1903, 1904, 3, 146, 73, 0, 1904, 1905, 5, 45, 0, 0, 1905, 1906, 5, 1, 0, 0, 1906, 1911, 3, 112, 56, 0, 1907, 1908, 5, 3, 0, 0, 1908, 1910, 3, 112, 56, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1914, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1926, 5, 2, 0, 0, 1915, 1916, 5, 210, 0, 0, 1916, 1917, 5, 1, 0, 0, 1917, 1918, 3, 114, 57, 0, 1918, 1919, 5, 2, 0, 0, 1919, 1927, 1, 0, 0, 0, 1920, 1921, 5, 210, 0, 0, 1921, 1922, 5, 70, 0, 0, 1922, 1923, 5, 1, 0, 0, 1923, 1924, 3, 120, 60, 0, 1924, 1925, 5, 2, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1915, 1, 0, 0, 0, 1926, 1920, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1931, 1, 0, 0, 0, 1928, 1929, 7, 14, 0, 0, 1929, 1930, 5, 190, 0, 0, 1930, 1932, 5, 89, 0, 0, 1931, 1928, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 5, 2, 0, 0, 1934, 1936, 1, 0, 0, 0, 1935, 1864, 1, 0, 0, 0, 1935, 1868, 1, 0, 0, 0, 1935, 1872, 1, 0, 0, 0, 1935, 1887, 1, 0, 0, 0, 1935, 1892, 1, 0, 0, 0, 1935, 1897, 1, 0, 0, 0, 1935, 1901, 1, 0, 0, 0, 1936, 111, 1, 0, 0, 0, 1937, 1938, 3, 294, 147, 0, 1938, 1939, 5, 103, 0, 0, 1939, 1940, 5, 196, 0, 0, 1940, 2015, 1, 0, 0, 0, 1941, 1942, 3, 294, 147, 0, 1942, 1945, 3, 184, 92, 0, 1943, 1944, 5, 205, 0, 0, 1944, 1946, 3, 168, 84, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1951, 1, 0, 0, 0, 1947, 1948, 3, 156, 78, 0, 1948, 1949, 5, 190, 0, 0, 1949, 1950, 5, 85, 0, 0, 1950, 1952, 1, 0, 0, 0, 1951, 1947, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1957, 1, 0, 0, 0, 1953, 1954, 3, 156, 78, 0, 1954, 1955, 5, 190, 0, 0, 1955, 1956, 5, 89, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 2015, 1, 0, 0, 0, 1959, 1960, 3, 294, 147, 0, 1960, 1961, 3, 184, 92, 0, 1961, 1962, 5, 104, 0, 0, 1962, 1965, 3, 150, 75, 0, 1963, 1964, 5, 205, 0, 0, 1964, 1966, 3, 168, 84, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1970, 1, 0, 0, 0, 1967, 1968, 3, 158, 79, 0, 1968, 1969, 5, 308, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1967, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1979, 1, 0, 0, 0, 1972, 1973, 7, 15, 0, 0, 1973, 1977, 5, 218, 0, 0, 1974, 1975, 5, 190, 0, 0, 1975, 1976, 5, 242, 0, 0, 1976, 1978, 5, 264, 0, 0, 1977, 1974, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1972, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1985, 1, 0, 0, 0, 1981, 1982, 3, 160, 80, 0, 1982, 1983, 5, 190, 0, 0, 1983, 1984, 5, 85, 0, 0, 1984, 1986, 1, 0, 0, 0, 1985, 1981, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1991, 1, 0, 0, 0, 1987, 1988, 3, 160, 80, 0, 1988, 1989, 5, 190, 0, 0, 1989, 1990, 5, 89, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1987, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 2015, 1, 0, 0, 0, 1993, 1995, 5, 173, 0, 0, 1994, 1996, 5, 205, 0, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2000, 3, 168, 84, 0, 1998, 1999, 5, 28, 0, 0, 1999, 2001, 3, 294, 147, 0, 2000, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 5, 45, 0, 0, 2003, 2004, 5, 1, 0, 0, 2004, 2009, 3, 112, 56, 0, 2005, 2006, 5, 3, 0, 0, 2006, 2008, 3, 112, 56, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2012, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2013, 5, 2, 0, 0, 2013, 2015, 1, 0, 0, 0, 2014, 1937, 1, 0, 0, 0, 2014, 1941, 1, 0, 0, 0, 2014, 1959, 1, 0, 0, 0, 2014, 1993, 1, 0, 0, 0, 2015, 113, 1, 0, 0, 0, 2016, 2042, 3, 116, 58, 0, 2017, 2018, 3, 116, 58, 0, 2018, 2019, 7, 16, 0, 0, 2019, 2020, 3, 118, 59, 0, 2020, 2042, 1, 0, 0, 0, 2021, 2022, 3, 118, 59, 0, 2022, 2023, 5, 281, 0, 0, 2023, 2028, 3, 118, 59, 0, 2024, 2025, 5, 281, 0, 0, 2025, 2027, 3, 118, 59, 0, 2026, 2024, 1, 0, 0, 0, 2027, 2030, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2042, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2031, 2032, 3, 118, 59, 0, 2032, 2033, 5, 54, 0, 0, 2033, 2038, 3, 118, 59, 0, 2034, 2035, 5, 54, 0, 0, 2035, 2037, 3, 118, 59, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2042, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2016, 1, 0, 0, 0, 2041, 2017, 1, 0, 0, 0, 2041, 2021, 1, 0, 0, 0, 2041, 2031, 1, 0, 0, 0, 2042, 115, 1, 0, 0, 0, 2043, 2044, 3, 294, 147, 0, 2044, 117, 1, 0, 0, 0, 2045, 2051, 3, 116, 58, 0, 2046, 2047, 5, 1, 0, 0, 2047, 2048, 3, 114, 57, 0, 2048, 2049, 5, 2, 0, 0, 2049, 2051, 1, 0, 0, 0, 2050, 2045, 1, 0, 0, 0, 2050, 2046, 1, 0, 0, 0, 2051, 119, 1, 0, 0, 0, 2052, 2055, 7, 16, 0, 0, 2053, 2054, 5, 3, 0, 0, 2054, 2056, 7, 17, 0, 0, 2055, 2053, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2063, 1, 0, 0, 0, 2057, 2060, 7, 17, 0, 0, 2058, 2059, 5, 3, 0, 0, 2059, 2061, 7, 16, 0, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2063, 1, 0, 0, 0, 2062, 2052, 1, 0, 0, 0, 2062, 2057, 1, 0, 0, 0, 2063, 121, 1, 0, 0, 0, 2064, 2065, 3, 272, 136, 0, 2065, 2074, 5, 1, 0, 0, 2066, 2071, 3, 124, 62, 0, 2067, 2068, 5, 3, 0, 0, 2068, 2070, 3, 124, 62, 0, 2069, 2067, 1, 0, 0, 0, 2070, 2073, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2075, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2074, 2066, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2085, 1, 0, 0, 0, 2076, 2077, 5, 52, 0, 0, 2077, 2082, 3, 134, 67, 0, 2078, 2079, 5, 3, 0, 0, 2079, 2081, 3, 134, 67, 0, 2080, 2078, 1, 0, 0, 0, 2081, 2084, 1, 0, 0, 0, 2082, 2080, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2086, 1, 0, 0, 0, 2084, 2082, 1, 0, 0, 0, 2085, 2076, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 5, 2, 0, 0, 2088, 123, 1, 0, 0, 0, 2089, 2090, 3, 294, 147, 0, 2090, 2091, 5, 6, 0, 0, 2091, 2093, 1, 0, 0, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2097, 1, 0, 0, 0, 2094, 2098, 3, 126, 63, 0, 2095, 2098, 3, 130, 65, 0, 2096, 2098, 3, 136, 68, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2096, 1, 0, 0, 0, 2098, 125, 1, 0, 0, 0, 2099, 2117, 3, 128, 64, 0, 2100, 2101, 5, 201, 0, 0, 2101, 2115, 5, 36, 0, 0, 2102, 2111, 5, 1, 0, 0, 2103, 2108, 3, 136, 68, 0, 2104, 2105, 5, 3, 0, 0, 2105, 2107, 3, 136, 68, 0, 2106, 2104, 1, 0, 0, 0, 2107, 2110, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2112, 1, 0, 0, 0, 2110, 2108, 1, 0, 0, 0, 2111, 2103, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2116, 5, 2, 0, 0, 2114, 2116, 3, 136, 68, 0, 2115, 2102, 1, 0, 0, 0, 2115, 2114, 1, 0, 0, 0, 2116, 2118, 1, 0, 0, 0, 2117, 2100, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2125, 1, 0, 0, 0, 2119, 2120, 5, 217, 0, 0, 2120, 2121, 5, 300, 0, 0, 2121, 2126, 5, 85, 0, 0, 2122, 2123, 5, 144, 0, 0, 2123, 2124, 5, 300, 0, 0, 2124, 2126, 5, 85, 0, 0, 2125, 2119, 1, 0, 0, 0, 2125, 2122, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2143, 1, 0, 0, 0, 2127, 2128, 5, 195, 0, 0, 2128, 2141, 5, 36, 0, 0, 2129, 2130, 5, 1, 0, 0, 2130, 2135, 3, 50, 25, 0, 2131, 2132, 5, 3, 0, 0, 2132, 2134, 3, 50, 25, 0, 2133, 2131, 1, 0, 0, 0, 2134, 2137, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2138, 1, 0, 0, 0, 2137, 2135, 1, 0, 0, 0, 2138, 2139, 5, 2, 0, 0, 2139, 2142, 1, 0, 0, 0, 2140, 2142, 3, 50, 25, 0, 2141, 2129, 1, 0, 0, 0, 2141, 2140, 1, 0, 0, 0, 2142, 2144, 1, 0, 0, 0, 2143, 2127, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 127, 1, 0, 0, 0, 2145, 2146, 5, 260, 0, 0, 2146, 2147, 5, 1, 0, 0, 2147, 2148, 3, 256, 128, 0, 2148, 2156, 5, 2, 0, 0, 2149, 2151, 5, 28, 0, 0, 2150, 2149, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2154, 3, 294, 147, 0, 2153, 2155, 3, 108, 54, 0, 2154, 2153, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2157, 1, 0, 0, 0, 2156, 2150, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2172, 1, 0, 0, 0, 2158, 2159, 5, 260, 0, 0, 2159, 2160, 5, 1, 0, 0, 2160, 2161, 3, 22, 11, 0, 2161, 2169, 5, 2, 0, 0, 2162, 2164, 5, 28, 0, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2167, 3, 294, 147, 0, 2166, 2168, 3, 108, 54, 0, 2167, 2166, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2170, 1, 0, 0, 0, 2169, 2163, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 1, 0, 0, 0, 2171, 2145, 1, 0, 0, 0, 2171, 2158, 1, 0, 0, 0, 2172, 129, 1, 0, 0, 0, 2173, 2174, 5, 77, 0, 0, 2174, 2175, 5, 1, 0, 0, 2175, 2180, 3, 132, 66, 0, 2176, 2177, 5, 3, 0, 0, 2177, 2179, 3, 132, 66, 0, 2178, 2176, 1, 0, 0, 0, 2179, 2182, 1, 0, 0, 0, 2180, 2178, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2183, 1, 0, 0, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2184, 5, 2, 0, 0, 2184, 2192, 1, 0, 0, 0, 2185, 2186, 5, 41, 0, 0, 2186, 2187, 5, 1, 0, 0, 2187, 2188, 5, 183, 0, 0, 2188, 2189, 5, 28, 0, 0, 2189, 2190, 5, 77, 0, 0, 2190, 2192, 5, 2, 0, 0, 2191, 2173, 1, 0, 0, 0, 2191, 2185, 1, 0, 0, 0, 2192, 131, 1, 0, 0, 0, 2193, 2195, 3, 294, 147, 0, 2194, 2196, 3, 184, 92, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 133, 1, 0, 0, 0, 2197, 2198, 5, 1, 0, 0, 2198, 2199, 3, 280, 140, 0, 2199, 2200, 5, 3, 0, 0, 2200, 2205, 3, 280, 140, 0, 2201, 2202, 5, 3, 0, 0, 2202, 2204, 3, 280, 140, 0, 2203, 2201, 1, 0, 0, 0, 2204, 2207, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2208, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2208, 2209, 5, 2, 0, 0, 2209, 135, 1, 0, 0, 0, 2210, 2211, 3, 138, 69, 0, 2211, 137, 1, 0, 0, 0, 2212, 2213, 6, 69, -1, 0, 2213, 2215, 3, 142, 71, 0, 2214, 2216, 3, 140, 70, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2220, 1, 0, 0, 0, 2217, 2218, 5, 182, 0, 0, 2218, 2220, 3, 138, 69, 3, 2219, 2212, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2229, 1, 0, 0, 0, 2221, 2222, 10, 2, 0, 0, 2222, 2223, 5, 25, 0, 0, 2223, 2228, 3, 138, 69, 3, 2224, 2225, 10, 1, 0, 0, 2225, 2226, 5, 194, 0, 0, 2226, 2228, 3, 138, 69, 2, 2227, 2221, 1, 0, 0, 0, 2227, 2224, 1, 0, 0, 0, 2228, 2231, 1, 0, 0, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 139, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2232, 2233, 3, 172, 86, 0, 2233, 2234, 3, 142, 71, 0, 2234, 2294, 1, 0, 0, 0, 2235, 2236, 3, 172, 86, 0, 2236, 2237, 3, 174, 87, 0, 2237, 2238, 5, 1, 0, 0, 2238, 2239, 3, 22, 11, 0, 2239, 2240, 5, 2, 0, 0, 2240, 2294, 1, 0, 0, 0, 2241, 2243, 5, 182, 0, 0, 2242, 2241, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2245, 5, 34, 0, 0, 2245, 2246, 3, 142, 71, 0, 2246, 2247, 5, 25, 0, 0, 2247, 2248, 3, 142, 71, 0, 2248, 2294, 1, 0, 0, 0, 2249, 2251, 5, 182, 0, 0, 2250, 2249, 1, 0, 0, 0, 2250, 2251, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 5, 122, 0, 0, 2253, 2254, 5, 1, 0, 0, 2254, 2259, 3, 136, 68, 0, 2255, 2256, 5, 3, 0, 0, 2256, 2258, 3, 136, 68, 0, 2257, 2255, 1, 0, 0, 0, 2258, 2261, 1, 0, 0, 0, 2259, 2257, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2262, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2263, 5, 2, 0, 0, 2263, 2294, 1, 0, 0, 0, 2264, 2266, 5, 182, 0, 0, 2265, 2264, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 2268, 5, 122, 0, 0, 2268, 2269, 5, 1, 0, 0, 2269, 2270, 3, 22, 11, 0, 2270, 2271, 5, 2, 0, 0, 2271, 2294, 1, 0, 0, 0, 2272, 2274, 5, 182, 0, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2276, 5, 154, 0, 0, 2276, 2279, 3, 142, 71, 0, 2277, 2278, 5, 90, 0, 0, 2278, 2280, 3, 142, 71, 0, 2279, 2277, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2294, 1, 0, 0, 0, 2281, 2283, 5, 133, 0, 0, 2282, 2284, 5, 182, 0, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2294, 5, 183, 0, 0, 2286, 2288, 5, 133, 0, 0, 2287, 2289, 5, 182, 0, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2291, 5, 79, 0, 0, 2291, 2292, 5, 105, 0, 0, 2292, 2294, 3, 142, 71, 0, 2293, 2232, 1, 0, 0, 0, 2293, 2235, 1, 0, 0, 0, 2293, 2242, 1, 0, 0, 0, 2293, 2250, 1, 0, 0, 0, 2293, 2265, 1, 0, 0, 0, 2293, 2273, 1, 0, 0, 0, 2293, 2281, 1, 0, 0, 0, 2293, 2286, 1, 0, 0, 0, 2294, 141, 1, 0, 0, 0, 2295, 2296, 6, 71, -1, 0, 2296, 2300, 3, 144, 72, 0, 2297, 2298, 7, 18, 0, 0, 2298, 2300, 3, 142, 71, 4, 2299, 2295, 1, 0, 0, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2315, 1, 0, 0, 0, 2301, 2302, 10, 3, 0, 0, 2302, 2303, 7, 19, 0, 0, 2303, 2314, 3, 142, 71, 4, 2304, 2305, 10, 2, 0, 0, 2305, 2306, 7, 18, 0, 0, 2306, 2314, 3, 142, 71, 3, 2307, 2308, 10, 1, 0, 0, 2308, 2309, 5, 323, 0, 0, 2309, 2314, 3, 142, 71, 2, 2310, 2311, 10, 5, 0, 0, 2311, 2312, 5, 30, 0, 0, 2312, 2314, 3, 170, 85, 0, 2313, 2301, 1, 0, 0, 0, 2313, 2304, 1, 0, 0, 0, 2313, 2307, 1, 0, 0, 0, 2313, 2310, 1, 0, 0, 0, 2314, 2317, 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 143, 1, 0, 0, 0, 2317, 2315, 1, 0, 0, 0, 2318, 2319, 6, 72, -1, 0, 2319, 2772, 5, 183, 0, 0, 2320, 2772, 3, 178, 89, 0, 2321, 2322, 3, 294, 147, 0, 2322, 2323, 3, 168, 84, 0, 2323, 2772, 1, 0, 0, 0, 2324, 2325, 5, 82, 0, 0, 2325, 2326, 5, 213, 0, 0, 2326, 2772, 3, 168, 84, 0, 2327, 2772, 3, 296, 148, 0, 2328, 2772, 3, 176, 88, 0, 2329, 2772, 3, 168, 84, 0, 2330, 2772, 5, 328, 0, 0, 2331, 2772, 5, 324, 0, 0, 2332, 2333, 5, 211, 0, 0, 2333, 2334, 5, 1, 0, 0, 2334, 2335, 3, 142, 71, 0, 2335, 2336, 5, 122, 0, 0, 2336, 2337, 3, 142, 71, 0, 2337, 2338, 5, 2, 0, 0, 2338, 2772, 1, 0, 0, 0, 2339, 2340, 5, 1, 0, 0, 2340, 2343, 3, 136, 68, 0, 2341, 2342, 5, 3, 0, 0, 2342, 2344, 3, 136, 68, 0, 2343, 2341, 1, 0, 0, 0, 2344, 2345, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 5, 2, 0, 0, 2348, 2772, 1, 0, 0, 0, 2349, 2350, 5, 239, 0, 0, 2350, 2351, 5, 1, 0, 0, 2351, 2356, 3, 136, 68, 0, 2352, 2353, 5, 3, 0, 0, 2353, 2355, 3, 136, 68, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2358, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2360, 5, 2, 0, 0, 2360, 2772, 1, 0, 0, 0, 2361, 2362, 5, 156, 0, 0, 2362, 2364, 5, 1, 0, 0, 2363, 2365, 3, 68, 34, 0, 2364, 2363, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2369, 3, 136, 68, 0, 2367, 2368, 5, 3, 0, 0, 2368, 2370, 3, 168, 84, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2374, 1, 0, 0, 0, 2371, 2372, 5, 190, 0, 0, 2372, 2373, 5, 200, 0, 0, 2373, 2375, 3, 84, 42, 0, 2374, 2371, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 5, 2, 0, 0, 2377, 2378, 5, 305, 0, 0, 2378, 2379, 5, 114, 0, 0, 2379, 2380, 5, 1, 0, 0, 2380, 2381, 5, 195, 0, 0, 2381, 2382, 5, 36, 0, 0, 2382, 2387, 3, 50, 25, 0, 2383, 2384, 5, 3, 0, 0, 2384, 2386, 3, 50, 25, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2389, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2390, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2390, 2391, 5, 2, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2394, 3, 192, 96, 0, 2393, 2392, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2772, 1, 0, 0, 0, 2395, 2397, 3, 164, 82, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 3, 272, 136, 0, 2399, 2403, 5, 1, 0, 0, 2400, 2401, 3, 294, 147, 0, 2401, 2402, 5, 4, 0, 0, 2402, 2404, 1, 0, 0, 0, 2403, 2400, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2406, 5, 320, 0, 0, 2406, 2408, 5, 2, 0, 0, 2407, 2409, 3, 192, 96, 0, 2408, 2407, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2412, 3, 196, 98, 0, 2411, 2410, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2772, 1, 0, 0, 0, 2413, 2415, 3, 164, 82, 0, 2414, 2413, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2417, 3, 272, 136, 0, 2417, 2429, 5, 1, 0, 0, 2418, 2420, 3, 68, 34, 0, 2419, 2418, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2426, 3, 136, 68, 0, 2422, 2423, 5, 3, 0, 0, 2423, 2425, 3, 136, 68, 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, 2430, 1, 0, 0, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2419, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2441, 1, 0, 0, 0, 2431, 2432, 5, 195, 0, 0, 2432, 2433, 5, 36, 0, 0, 2433, 2438, 3, 50, 25, 0, 2434, 2435, 5, 3, 0, 0, 2435, 2437, 3, 50, 25, 0, 2436, 2434, 1, 0, 0, 0, 2437, 2440, 1, 0, 0, 0, 2438, 2436, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2442, 1, 0, 0, 0, 2440, 2438, 1, 0, 0, 0, 2441, 2431, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2445, 5, 2, 0, 0, 2444, 2446, 3, 192, 96, 0, 2445, 2444, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2451, 1, 0, 0, 0, 2447, 2449, 3, 166, 83, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2452, 3, 196, 98, 0, 2451, 2448, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2772, 1, 0, 0, 0, 2453, 2454, 3, 294, 147, 0, 2454, 2455, 3, 196, 98, 0, 2455, 2772, 1, 0, 0, 0, 2456, 2457, 3, 294, 147, 0, 2457, 2458, 5, 7, 0, 0, 2458, 2459, 3, 136, 68, 0, 2459, 2772, 1, 0, 0, 0, 2460, 2469, 5, 1, 0, 0, 2461, 2466, 3, 294, 147, 0, 2462, 2463, 5, 3, 0, 0, 2463, 2465, 3, 294, 147, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2470, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2461, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2472, 5, 2, 0, 0, 2472, 2473, 5, 7, 0, 0, 2473, 2772, 3, 136, 68, 0, 2474, 2475, 5, 1, 0, 0, 2475, 2476, 3, 22, 11, 0, 2476, 2477, 5, 2, 0, 0, 2477, 2772, 1, 0, 0, 0, 2478, 2479, 5, 94, 0, 0, 2479, 2480, 5, 1, 0, 0, 2480, 2481, 3, 22, 11, 0, 2481, 2482, 5, 2, 0, 0, 2482, 2772, 1, 0, 0, 0, 2483, 2484, 5, 40, 0, 0, 2484, 2486, 3, 136, 68, 0, 2485, 2487, 3, 190, 95, 0, 2486, 2485, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2492, 1, 0, 0, 0, 2490, 2491, 5, 84, 0, 0, 2491, 2493, 3, 136, 68, 0, 2492, 2490, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2495, 5, 88, 0, 0, 2495, 2772, 1, 0, 0, 0, 2496, 2498, 5, 40, 0, 0, 2497, 2499, 3, 190, 95, 0, 2498, 2497, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2504, 1, 0, 0, 0, 2502, 2503, 5, 84, 0, 0, 2503, 2505, 3, 136, 68, 0, 2504, 2502, 1, 0, 0, 0, 2504, 2505, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2507, 5, 88, 0, 0, 2507, 2772, 1, 0, 0, 0, 2508, 2509, 5, 41, 0, 0, 2509, 2510, 5, 1, 0, 0, 2510, 2511, 3, 136, 68, 0, 2511, 2512, 5, 28, 0, 0, 2512, 2513, 3, 184, 92, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2772, 1, 0, 0, 0, 2515, 2516, 5, 275, 0, 0, 2516, 2517, 5, 1, 0, 0, 2517, 2518, 3, 136, 68, 0, 2518, 2519, 5, 28, 0, 0, 2519, 2520, 3, 184, 92, 0, 2520, 2521, 5, 2, 0, 0, 2521, 2772, 1, 0, 0, 0, 2522, 2523, 5, 27, 0, 0, 2523, 2532, 5, 8, 0, 0, 2524, 2529, 3, 136, 68, 0, 2525, 2526, 5, 3, 0, 0, 2526, 2528, 3, 136, 68, 0, 2527, 2525, 1, 0, 0, 0, 2528, 2531, 1, 0, 0, 0, 2529, 2527, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2533, 1, 0, 0, 0, 2531, 2529, 1, 0, 0, 0, 2532, 2524, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2772, 5, 9, 0, 0, 2535, 2772, 3, 294, 147, 0, 2536, 2772, 5, 58, 0, 0, 2537, 2541, 5, 62, 0, 0, 2538, 2539, 5, 1, 0, 0, 2539, 2540, 5, 329, 0, 0, 2540, 2542, 5, 2, 0, 0, 2541, 2538, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2772, 1, 0, 0, 0, 2543, 2547, 5, 63, 0, 0, 2544, 2545, 5, 1, 0, 0, 2545, 2546, 5, 329, 0, 0, 2546, 2548, 5, 2, 0, 0, 2547, 2544, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2772, 1, 0, 0, 0, 2549, 2553, 5, 158, 0, 0, 2550, 2551, 5, 1, 0, 0, 2551, 2552, 5, 329, 0, 0, 2552, 2554, 5, 2, 0, 0, 2553, 2550, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2772, 1, 0, 0, 0, 2555, 2559, 5, 159, 0, 0, 2556, 2557, 5, 1, 0, 0, 2557, 2558, 5, 329, 0, 0, 2558, 2560, 5, 2, 0, 0, 2559, 2556, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2772, 1, 0, 0, 0, 2561, 2772, 5, 64, 0, 0, 2562, 2772, 5, 57, 0, 0, 2563, 2772, 5, 61, 0, 0, 2564, 2772, 5, 59, 0, 0, 2565, 2566, 5, 272, 0, 0, 2566, 2574, 5, 1, 0, 0, 2567, 2569, 3, 82, 41, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 142, 71, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2575, 5, 105, 0, 0, 2574, 2568, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2577, 3, 142, 71, 0, 2577, 2578, 5, 2, 0, 0, 2578, 2772, 1, 0, 0, 0, 2579, 2580, 5, 272, 0, 0, 2580, 2581, 5, 1, 0, 0, 2581, 2582, 3, 142, 71, 0, 2582, 2583, 5, 3, 0, 0, 2583, 2584, 3, 142, 71, 0, 2584, 2585, 5, 2, 0, 0, 2585, 2772, 1, 0, 0, 0, 2586, 2587, 5, 258, 0, 0, 2587, 2588, 5, 1, 0, 0, 2588, 2589, 3, 142, 71, 0, 2589, 2590, 5, 105, 0, 0, 2590, 2593, 3, 142, 71, 0, 2591, 2592, 5, 103, 0, 0, 2592, 2594, 3, 142, 71, 0, 2593, 2591, 1, 0, 0, 0, 2593, 2594, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 5, 2, 0, 0, 2596, 2772, 1, 0, 0, 0, 2597, 2598, 5, 181, 0, 0, 2598, 2599, 5, 1, 0, 0, 2599, 2602, 3, 142, 71, 0, 2600, 2601, 5, 3, 0, 0, 2601, 2603, 3, 182, 91, 0, 2602, 2600, 1, 0, 0, 0, 2602, 2603, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2605, 5, 2, 0, 0, 2605, 2772, 1, 0, 0, 0, 2606, 2607, 5, 96, 0, 0, 2607, 2608, 5, 1, 0, 0, 2608, 2609, 3, 294, 147, 0, 2609, 2610, 5, 105, 0, 0, 2610, 2611, 3, 142, 71, 0, 2611, 2612, 5, 2, 0, 0, 2612, 2772, 1, 0, 0, 0, 2613, 2614, 5, 1, 0, 0, 2614, 2615, 3, 136, 68, 0, 2615, 2616, 5, 2, 0, 0, 2616, 2772, 1, 0, 0, 0, 2617, 2618, 5, 115, 0, 0, 2618, 2627, 5, 1, 0, 0, 2619, 2624, 3, 280, 140, 0, 2620, 2621, 5, 3, 0, 0, 2621, 2623, 3, 280, 140, 0, 2622, 2620, 1, 0, 0, 0, 2623, 2626, 1, 0, 0, 0, 2624, 2622, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2628, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2627, 2619, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2772, 5, 2, 0, 0, 2630, 2631, 5, 139, 0, 0, 2631, 2632, 5, 1, 0, 0, 2632, 2637, 3, 146, 73, 0, 2633, 2634, 3, 154, 77, 0, 2634, 2635, 5, 190, 0, 0, 2635, 2636, 5, 89, 0, 0, 2636, 2638, 1, 0, 0, 0, 2637, 2633, 1, 0, 0, 0, 2637, 2638, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 5, 2, 0, 0, 2640, 2772, 1, 0, 0, 0, 2641, 2642, 5, 143, 0, 0, 2642, 2643, 5, 1, 0, 0, 2643, 2646, 3, 146, 73, 0, 2644, 2645, 5, 231, 0, 0, 2645, 2647, 3, 184, 92, 0, 2646, 2644, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2652, 1, 0, 0, 0, 2648, 2649, 3, 156, 78, 0, 2649, 2650, 5, 190, 0, 0, 2650, 2651, 5, 85, 0, 0, 2651, 2653, 1, 0, 0, 0, 2652, 2648, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2658, 1, 0, 0, 0, 2654, 2655, 3, 156, 78, 0, 2655, 2656, 5, 190, 0, 0, 2656, 2657, 5, 89, 0, 0, 2657, 2659, 1, 0, 0, 0, 2658, 2654, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 5, 2, 0, 0, 2661, 2772, 1, 0, 0, 0, 2662, 2663, 5, 141, 0, 0, 2663, 2664, 5, 1, 0, 0, 2664, 2671, 3, 146, 73, 0, 2665, 2666, 5, 231, 0, 0, 2666, 2669, 3, 184, 92, 0, 2667, 2668, 5, 104, 0, 0, 2668, 2670, 3, 150, 75, 0, 2669, 2667, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2665, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2676, 1, 0, 0, 0, 2673, 2674, 3, 158, 79, 0, 2674, 2675, 5, 308, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2673, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2685, 1, 0, 0, 0, 2678, 2679, 7, 15, 0, 0, 2679, 2683, 5, 218, 0, 0, 2680, 2681, 5, 190, 0, 0, 2681, 2682, 5, 242, 0, 0, 2682, 2684, 5, 264, 0, 0, 2683, 2680, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2686, 1, 0, 0, 0, 2685, 2678, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2691, 1, 0, 0, 0, 2687, 2688, 3, 160, 80, 0, 2688, 2689, 5, 190, 0, 0, 2689, 2690, 5, 85, 0, 0, 2690, 2692, 1, 0, 0, 0, 2691, 2687, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2697, 1, 0, 0, 0, 2693, 2694, 3, 160, 80, 0, 2694, 2695, 5, 190, 0, 0, 2695, 2696, 5, 89, 0, 0, 2696, 2698, 1, 0, 0, 0, 2697, 2693, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2700, 5, 2, 0, 0, 2700, 2772, 1, 0, 0, 0, 2701, 2702, 5, 140, 0, 0, 2702, 2731, 5, 1, 0, 0, 2703, 2708, 3, 162, 81, 0, 2704, 2705, 5, 3, 0, 0, 2705, 2707, 3, 162, 81, 0, 2706, 2704, 1, 0, 0, 0, 2707, 2710, 1, 0, 0, 0, 2708, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2717, 1, 0, 0, 0, 2710, 2708, 1, 0, 0, 0, 2711, 2712, 5, 183, 0, 0, 2712, 2713, 5, 190, 0, 0, 2713, 2718, 5, 183, 0, 0, 2714, 2715, 5, 18, 0, 0, 2715, 2716, 5, 190, 0, 0, 2716, 2718, 5, 183, 0, 0, 2717, 2711, 1, 0, 0, 0, 2717, 2714, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2729, 1, 0, 0, 0, 2719, 2720, 5, 304, 0, 0, 2720, 2722, 5, 282, 0, 0, 2721, 2723, 5, 146, 0, 0, 2722, 2721, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2730, 1, 0, 0, 0, 2724, 2725, 5, 306, 0, 0, 2725, 2727, 5, 282, 0, 0, 2726, 2728, 5, 146, 0, 0, 2727, 2726, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2730, 1, 0, 0, 0, 2729, 2719, 1, 0, 0, 0, 2729, 2724, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2732, 1, 0, 0, 0, 2731, 2703, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2739, 1, 0, 0, 0, 2733, 2734, 5, 231, 0, 0, 2734, 2737, 3, 184, 92, 0, 2735, 2736, 5, 104, 0, 0, 2736, 2738, 3, 150, 75, 0, 2737, 2735, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2733, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2772, 5, 2, 0, 0, 2742, 2743, 5, 138, 0, 0, 2743, 2760, 5, 1, 0, 0, 2744, 2749, 3, 148, 74, 0, 2745, 2746, 5, 3, 0, 0, 2746, 2748, 3, 148, 74, 0, 2747, 2745, 1, 0, 0, 0, 2748, 2751, 1, 0, 0, 0, 2749, 2747, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2758, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2752, 2753, 5, 183, 0, 0, 2753, 2754, 5, 190, 0, 0, 2754, 2759, 5, 183, 0, 0, 2755, 2756, 5, 18, 0, 0, 2756, 2757, 5, 190, 0, 0, 2757, 2759, 5, 183, 0, 0, 2758, 2752, 1, 0, 0, 0, 2758, 2755, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2761, 1, 0, 0, 0, 2760, 2744, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2768, 1, 0, 0, 0, 2762, 2763, 5, 231, 0, 0, 2763, 2766, 3, 184, 92, 0, 2764, 2765, 5, 104, 0, 0, 2765, 2767, 3, 150, 75, 0, 2766, 2764, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2769, 1, 0, 0, 0, 2768, 2762, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2772, 5, 2, 0, 0, 2771, 2318, 1, 0, 0, 0, 2771, 2320, 1, 0, 0, 0, 2771, 2321, 1, 0, 0, 0, 2771, 2324, 1, 0, 0, 0, 2771, 2327, 1, 0, 0, 0, 2771, 2328, 1, 0, 0, 0, 2771, 2329, 1, 0, 0, 0, 2771, 2330, 1, 0, 0, 0, 2771, 2331, 1, 0, 0, 0, 2771, 2332, 1, 0, 0, 0, 2771, 2339, 1, 0, 0, 0, 2771, 2349, 1, 0, 0, 0, 2771, 2361, 1, 0, 0, 0, 2771, 2396, 1, 0, 0, 0, 2771, 2414, 1, 0, 0, 0, 2771, 2453, 1, 0, 0, 0, 2771, 2456, 1, 0, 0, 0, 2771, 2460, 1, 0, 0, 0, 2771, 2474, 1, 0, 0, 0, 2771, 2478, 1, 0, 0, 0, 2771, 2483, 1, 0, 0, 0, 2771, 2496, 1, 0, 0, 0, 2771, 2508, 1, 0, 0, 0, 2771, 2515, 1, 0, 0, 0, 2771, 2522, 1, 0, 0, 0, 2771, 2535, 1, 0, 0, 0, 2771, 2536, 1, 0, 0, 0, 2771, 2537, 1, 0, 0, 0, 2771, 2543, 1, 0, 0, 0, 2771, 2549, 1, 0, 0, 0, 2771, 2555, 1, 0, 0, 0, 2771, 2561, 1, 0, 0, 0, 2771, 2562, 1, 0, 0, 0, 2771, 2563, 1, 0, 0, 0, 2771, 2564, 1, 0, 0, 0, 2771, 2565, 1, 0, 0, 0, 2771, 2579, 1, 0, 0, 0, 2771, 2586, 1, 0, 0, 0, 2771, 2597, 1, 0, 0, 0, 2771, 2606, 1, 0, 0, 0, 2771, 2613, 1, 0, 0, 0, 2771, 2617, 1, 0, 0, 0, 2771, 2630, 1, 0, 0, 0, 2771, 2641, 1, 0, 0, 0, 2771, 2662, 1, 0, 0, 0, 2771, 2701, 1, 0, 0, 0, 2771, 2742, 1, 0, 0, 0, 2772, 2783, 1, 0, 0, 0, 2773, 2774, 10, 24, 0, 0, 2774, 2775, 5, 8, 0, 0, 2775, 2776, 3, 142, 71, 0, 2776, 2777, 5, 9, 0, 0, 2777, 2782, 1, 0, 0, 0, 2778, 2779, 10, 22, 0, 0, 2779, 2780, 5, 4, 0, 0, 2780, 2782, 3, 294, 147, 0, 2781, 2773, 1, 0, 0, 0, 2781, 2778, 1, 0, 0, 0, 2782, 2785, 1, 0, 0, 0, 2783, 2781, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 145, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2786, 2787, 3, 148, 74, 0, 2787, 2788, 5, 3, 0, 0, 2788, 2791, 3, 168, 84, 0, 2789, 2790, 5, 28, 0, 0, 2790, 2792, 3, 294, 147, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2802, 1, 0, 0, 0, 2793, 2794, 5, 203, 0, 0, 2794, 2799, 3, 152, 76, 0, 2795, 2796, 5, 3, 0, 0, 2796, 2798, 3, 152, 76, 0, 2797, 2795, 1, 0, 0, 0, 2798, 2801, 1, 0, 0, 0, 2799, 2797, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2803, 1, 0, 0, 0, 2801, 2799, 1, 0, 0, 0, 2802, 2793, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 147, 1, 0, 0, 0, 2804, 2807, 3, 136, 68, 0, 2805, 2806, 5, 104, 0, 0, 2806, 2808, 3, 150, 75, 0, 2807, 2805, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 149, 1, 0, 0, 0, 2809, 2812, 5, 137, 0, 0, 2810, 2811, 5, 87, 0, 0, 2811, 2813, 7, 20, 0, 0, 2812, 2810, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 151, 1, 0, 0, 0, 2814, 2815, 3, 148, 74, 0, 2815, 2816, 5, 28, 0, 0, 2816, 2817, 3, 294, 147, 0, 2817, 153, 1, 0, 0, 0, 2818, 2819, 7, 21, 0, 0, 2819, 155, 1, 0, 0, 0, 2820, 2825, 5, 89, 0, 0, 2821, 2825, 5, 183, 0, 0, 2822, 2823, 5, 70, 0, 0, 2823, 2825, 3, 136, 68, 0, 2824, 2820, 1, 0, 0, 0, 2824, 2821, 1, 0, 0, 0, 2824, 2822, 1, 0, 0, 0, 2825, 157, 1, 0, 0, 0, 2826, 2828, 5, 306, 0, 0, 2827, 2829, 5, 27, 0, 0, 2828, 2827, 1, 0, 0, 0, 2828, 2829, 1, 0, 0, 0, 2829, 2838, 1, 0, 0, 0, 2830, 2832, 5, 304, 0, 0, 2831, 2833, 7, 22, 0, 0, 2832, 2831, 1, 0, 0, 0, 2832, 2833, 1, 0, 0, 0, 2833, 2835, 1, 0, 0, 0, 2834, 2836, 5, 27, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2838, 1, 0, 0, 0, 2837, 2826, 1, 0, 0, 0, 2837, 2830, 1, 0, 0, 0, 2838, 159, 1, 0, 0, 0, 2839, 2846, 5, 89, 0, 0, 2840, 2846, 5, 183, 0, 0, 2841, 2842, 5, 85, 0, 0, 2842, 2846, 5, 27, 0, 0, 2843, 2844, 5, 85, 0, 0, 2844, 2846, 5, 186, 0, 0, 2845, 2839, 1, 0, 0, 0, 2845, 2840, 1, 0, 0, 0, 2845, 2841, 1, 0, 0, 0, 2845, 2843, 1, 0, 0, 0, 2846, 161, 1, 0, 0, 0, 2847, 2849, 5, 145, 0, 0, 2848, 2847, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2851, 3, 136, 68, 0, 2851, 2852, 5, 295, 0, 0, 2852, 2853, 3, 148, 74, 0, 2853, 2859, 1, 0, 0, 0, 2854, 2855, 3, 136, 68, 0, 2855, 2856, 5, 10, 0, 0, 2856, 2857, 3, 148, 74, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2848, 1, 0, 0, 0, 2858, 2854, 1, 0, 0, 0, 2859, 163, 1, 0, 0, 0, 2860, 2861, 7, 23, 0, 0, 2861, 165, 1, 0, 0, 0, 2862, 2863, 5, 120, 0, 0, 2863, 2867, 5, 185, 0, 0, 2864, 2865, 5, 228, 0, 0, 2865, 2867, 5, 185, 0, 0, 2866, 2862, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2867, 167, 1, 0, 0, 0, 2868, 2875, 5, 326, 0, 0, 2869, 2872, 5, 327, 0, 0, 2870, 2871, 5, 277, 0, 0, 2871, 2873, 5, 326, 0, 0, 2872, 2870, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2875, 1, 0, 0, 0, 2874, 2868, 1, 0, 0, 0, 2874, 2869, 1, 0, 0, 0, 2875, 169, 1, 0, 0, 0, 2876, 2877, 5, 267, 0, 0, 2877, 2878, 5, 311, 0, 0, 2878, 2883, 3, 178, 89, 0, 2879, 2880, 5, 267, 0, 0, 2880, 2881, 5, 311, 0, 0, 2881, 2883, 3, 168, 84, 0, 2882, 2876, 1, 0, 0, 0, 2882, 2879, 1, 0, 0, 0, 2883, 171, 1, 0, 0, 0, 2884, 2885, 7, 24, 0, 0, 2885, 173, 1, 0, 0, 0, 2886, 2887, 7, 25, 0, 0, 2887, 175, 1, 0, 0, 0, 2888, 2889, 7, 26, 0, 0, 2889, 177, 1, 0, 0, 0, 2890, 2892, 5, 129, 0, 0, 2891, 2893, 7, 18, 0, 0, 2892, 2891, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2895, 3, 168, 84, 0, 2895, 2898, 3, 180, 90, 0, 2896, 2897, 5, 269, 0, 0, 2897, 2899, 3, 180, 90, 0, 2898, 2896, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 179, 1, 0, 0, 0, 2900, 2901, 7, 27, 0, 0, 2901, 181, 1, 0, 0, 0, 2902, 2903, 7, 28, 0, 0, 2903, 183, 1, 0, 0, 0, 2904, 2905, 6, 92, -1, 0, 2905, 2906, 5, 239, 0, 0, 2906, 2907, 5, 1, 0, 0, 2907, 2912, 3, 186, 93, 0, 2908, 2909, 5, 3, 0, 0, 2909, 2911, 3, 186, 93, 0, 2910, 2908, 1, 0, 0, 0, 2911, 2914, 1, 0, 0, 0, 2912, 2910, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2915, 1, 0, 0, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2916, 5, 2, 0, 0, 2916, 2976, 1, 0, 0, 0, 2917, 2918, 5, 129, 0, 0, 2918, 2921, 3, 180, 90, 0, 2919, 2920, 5, 269, 0, 0, 2920, 2922, 3, 180, 90, 0, 2921, 2919, 1, 0, 0, 0, 2921, 2922, 1, 0, 0, 0, 2922, 2976, 1, 0, 0, 0, 2923, 2928, 5, 268, 0, 0, 2924, 2925, 5, 1, 0, 0, 2925, 2926, 3, 188, 94, 0, 2926, 2927, 5, 2, 0, 0, 2927, 2929, 1, 0, 0, 0, 2928, 2924, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2933, 1, 0, 0, 0, 2930, 2931, 7, 29, 0, 0, 2931, 2932, 5, 267, 0, 0, 2932, 2934, 5, 311, 0, 0, 2933, 2930, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2976, 1, 0, 0, 0, 2935, 2940, 5, 267, 0, 0, 2936, 2937, 5, 1, 0, 0, 2937, 2938, 3, 188, 94, 0, 2938, 2939, 5, 2, 0, 0, 2939, 2941, 1, 0, 0, 0, 2940, 2936, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2945, 1, 0, 0, 0, 2942, 2943, 7, 29, 0, 0, 2943, 2944, 5, 267, 0, 0, 2944, 2946, 5, 311, 0, 0, 2945, 2942, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2976, 1, 0, 0, 0, 2947, 2948, 5, 82, 0, 0, 2948, 2976, 5, 213, 0, 0, 2949, 2950, 5, 27, 0, 0, 2950, 2951, 5, 314, 0, 0, 2951, 2952, 3, 184, 92, 0, 2952, 2953, 5, 316, 0, 0, 2953, 2976, 1, 0, 0, 0, 2954, 2955, 5, 162, 0, 0, 2955, 2956, 5, 314, 0, 0, 2956, 2957, 3, 184, 92, 0, 2957, 2958, 5, 3, 0, 0, 2958, 2959, 3, 184, 92, 0, 2959, 2960, 5, 316, 0, 0, 2960, 2976, 1, 0, 0, 0, 2961, 2973, 3, 294, 147, 0, 2962, 2963, 5, 1, 0, 0, 2963, 2968, 3, 188, 94, 0, 2964, 2965, 5, 3, 0, 0, 2965, 2967, 3, 188, 94, 0, 2966, 2964, 1, 0, 0, 0, 2967, 2970, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2969, 1, 0, 0, 0, 2969, 2971, 1, 0, 0, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2972, 5, 2, 0, 0, 2972, 2974, 1, 0, 0, 0, 2973, 2962, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2976, 1, 0, 0, 0, 2975, 2904, 1, 0, 0, 0, 2975, 2917, 1, 0, 0, 0, 2975, 2923, 1, 0, 0, 0, 2975, 2935, 1, 0, 0, 0, 2975, 2947, 1, 0, 0, 0, 2975, 2949, 1, 0, 0, 0, 2975, 2954, 1, 0, 0, 0, 2975, 2961, 1, 0, 0, 0, 2976, 2986, 1, 0, 0, 0, 2977, 2978, 10, 2, 0, 0, 2978, 2982, 5, 27, 0, 0, 2979, 2980, 5, 8, 0, 0, 2980, 2981, 5, 329, 0, 0, 2981, 2983, 5, 9, 0, 0, 2982, 2979, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2985, 1, 0, 0, 0, 2984, 2977, 1, 0, 0, 0, 2985, 2988, 1, 0, 0, 0, 2986, 2984, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 185, 1, 0, 0, 0, 2988, 2986, 1, 0, 0, 0, 2989, 2994, 3, 184, 92, 0, 2990, 2991, 3, 294, 147, 0, 2991, 2992, 3, 184, 92, 0, 2992, 2994, 1, 0, 0, 0, 2993, 2989, 1, 0, 0, 0, 2993, 2990, 1, 0, 0, 0, 2994, 187, 1, 0, 0, 0, 2995, 2998, 5, 329, 0, 0, 2996, 2998, 3, 184, 92, 0, 2997, 2995, 1, 0, 0, 0, 2997, 2996, 1, 0, 0, 0, 2998, 189, 1, 0, 0, 0, 2999, 3000, 5, 300, 0, 0, 3000, 3001, 3, 136, 68, 0, 3001, 3002, 5, 265, 0, 0, 3002, 3003, 3, 136, 68, 0, 3003, 191, 1, 0, 0, 0, 3004, 3005, 5, 99, 0, 0, 3005, 3006, 5, 1, 0, 0, 3006, 3007, 5, 301, 0, 0, 3007, 3008, 3, 138, 69, 0, 3008, 3009, 5, 2, 0, 0, 3009, 193, 1, 0, 0, 0, 3010, 3011, 5, 300, 0, 0, 3011, 3014, 5, 164, 0, 0, 3012, 3013, 5, 25, 0, 0, 3013, 3015, 3, 136, 68, 0, 3014, 3012, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 5, 265, 0, 0, 3017, 3018, 5, 287, 0, 0, 3018, 3019, 5, 251, 0, 0, 3019, 3020, 3, 294, 147, 0, 3020, 3021, 5, 312, 0, 0, 3021, 3029, 3, 136, 68, 0, 3022, 3023, 5, 3, 0, 0, 3023, 3024, 3, 294, 147, 0, 3024, 3025, 5, 312, 0, 0, 3025, 3026, 3, 136, 68, 0, 3026, 3028, 1, 0, 0, 0, 3027, 3022, 1, 0, 0, 0, 3028, 3031, 1, 0, 0, 0, 3029, 3027, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3075, 1, 0, 0, 0, 3031, 3029, 1, 0, 0, 0, 3032, 3033, 5, 300, 0, 0, 3033, 3036, 5, 164, 0, 0, 3034, 3035, 5, 25, 0, 0, 3035, 3037, 3, 136, 68, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3039, 5, 265, 0, 0, 3039, 3075, 5, 73, 0, 0, 3040, 3041, 5, 300, 0, 0, 3041, 3042, 5, 182, 0, 0, 3042, 3045, 5, 164, 0, 0, 3043, 3044, 5, 25, 0, 0, 3044, 3046, 3, 136, 68, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 5, 265, 0, 0, 3048, 3060, 5, 127, 0, 0, 3049, 3050, 5, 1, 0, 0, 3050, 3055, 3, 294, 147, 0, 3051, 3052, 5, 3, 0, 0, 3052, 3054, 3, 294, 147, 0, 3053, 3051, 1, 0, 0, 0, 3054, 3057, 1, 0, 0, 0, 3055, 3053, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3058, 1, 0, 0, 0, 3057, 3055, 1, 0, 0, 0, 3058, 3059, 5, 2, 0, 0, 3059, 3061, 1, 0, 0, 0, 3060, 3049, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 5, 296, 0, 0, 3063, 3064, 5, 1, 0, 0, 3064, 3069, 3, 136, 68, 0, 3065, 3066, 5, 3, 0, 0, 3066, 3068, 3, 136, 68, 0, 3067, 3065, 1, 0, 0, 0, 3068, 3071, 1, 0, 0, 0, 3069, 3067, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3072, 1, 0, 0, 0, 3071, 3069, 1, 0, 0, 0, 3072, 3073, 5, 2, 0, 0, 3073, 3075, 1, 0, 0, 0, 3074, 3010, 1, 0, 0, 0, 3074, 3032, 1, 0, 0, 0, 3074, 3040, 1, 0, 0, 0, 3075, 195, 1, 0, 0, 0, 3076, 3082, 5, 199, 0, 0, 3077, 3083, 3, 294, 147, 0, 3078, 3079, 5, 1, 0, 0, 3079, 3080, 3, 64, 32, 0, 3080, 3081, 5, 2, 0, 0, 3081, 3083, 1, 0, 0, 0, 3082, 3077, 1, 0, 0, 0, 3082, 3078, 1, 0, 0, 0, 3083, 197, 1, 0, 0, 0, 3084, 3085, 5, 168, 0, 0, 3085, 3090, 3, 90, 45, 0, 3086, 3087, 5, 3, 0, 0, 3087, 3089, 3, 90, 45, 0, 3088, 3086, 1, 0, 0, 0, 3089, 3092, 1, 0, 0, 0, 3090, 3088, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3094, 1, 0, 0, 0, 3092, 3090, 1, 0, 0, 0, 3093, 3084, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3099, 3, 200, 100, 0, 3096, 3097, 5, 21, 0, 0, 3097, 3098, 5, 163, 0, 0, 3098, 3100, 3, 96, 48, 0, 3099, 3096, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3102, 1, 0, 0, 0, 3101, 3103, 7, 13, 0, 0, 3102, 3101, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 3109, 1, 0, 0, 0, 3104, 3105, 5, 206, 0, 0, 3105, 3106, 5, 1, 0, 0, 3106, 3107, 3, 204, 102, 0, 3107, 3108, 5, 2, 0, 0, 3108, 3110, 1, 0, 0, 0, 3109, 3104, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3120, 1, 0, 0, 0, 3111, 3112, 5, 257, 0, 0, 3112, 3117, 3, 98, 49, 0, 3113, 3114, 5, 3, 0, 0, 3114, 3116, 3, 98, 49, 0, 3115, 3113, 1, 0, 0, 0, 3116, 3119, 1, 0, 0, 0, 3117, 3115, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3121, 1, 0, 0, 0, 3119, 3117, 1, 0, 0, 0, 3120, 3111, 1, 0, 0, 0, 3120, 3121, 1, 0, 0, 0, 3121, 3131, 1, 0, 0, 0, 3122, 3123, 5, 71, 0, 0, 3123, 3128, 3, 100, 50, 0, 3124, 3125, 5, 3, 0, 0, 3125, 3127, 3, 100, 50, 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, 3132, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3122, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 199, 1, 0, 0, 0, 3133, 3134, 5, 219, 0, 0, 3134, 3158, 3, 202, 101, 0, 3135, 3136, 5, 240, 0, 0, 3136, 3158, 3, 202, 101, 0, 3137, 3138, 5, 116, 0, 0, 3138, 3158, 3, 202, 101, 0, 3139, 3140, 5, 219, 0, 0, 3140, 3141, 5, 34, 0, 0, 3141, 3142, 3, 202, 101, 0, 3142, 3143, 5, 25, 0, 0, 3143, 3144, 3, 202, 101, 0, 3144, 3158, 1, 0, 0, 0, 3145, 3146, 5, 240, 0, 0, 3146, 3147, 5, 34, 0, 0, 3147, 3148, 3, 202, 101, 0, 3148, 3149, 5, 25, 0, 0, 3149, 3150, 3, 202, 101, 0, 3150, 3158, 1, 0, 0, 0, 3151, 3152, 5, 116, 0, 0, 3152, 3153, 5, 34, 0, 0, 3153, 3154, 3, 202, 101, 0, 3154, 3155, 5, 25, 0, 0, 3155, 3156, 3, 202, 101, 0, 3156, 3158, 1, 0, 0, 0, 3157, 3133, 1, 0, 0, 0, 3157, 3135, 1, 0, 0, 0, 3157, 3137, 1, 0, 0, 0, 3157, 3139, 1, 0, 0, 0, 3157, 3145, 1, 0, 0, 0, 3157, 3151, 1, 0, 0, 0, 3158, 201, 1, 0, 0, 0, 3159, 3160, 5, 278, 0, 0, 3160, 3169, 5, 212, 0, 0, 3161, 3162, 5, 278, 0, 0, 3162, 3169, 5, 102, 0, 0, 3163, 3164, 5, 56, 0, 0, 3164, 3169, 5, 239, 0, 0, 3165, 3166, 3, 136, 68, 0, 3166, 3167, 7, 30, 0, 0, 3167, 3169, 1, 0, 0, 0, 3168, 3159, 1, 0, 0, 0, 3168, 3161, 1, 0, 0, 0, 3168, 3163, 1, 0, 0, 0, 3168, 3165, 1, 0, 0, 0, 3169, 203, 1, 0, 0, 0, 3170, 3171, 6, 102, -1, 0, 3171, 3173, 3, 206, 103, 0, 3172, 3174, 3, 208, 104, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3182, 1, 0, 0, 0, 3175, 3176, 10, 2, 0, 0, 3176, 3181, 3, 204, 102, 3, 3177, 3178, 10, 1, 0, 0, 3178, 3179, 5, 11, 0, 0, 3179, 3181, 3, 204, 102, 2, 3180, 3175, 1, 0, 0, 0, 3180, 3177, 1, 0, 0, 0, 3181, 3184, 1, 0, 0, 0, 3182, 3180, 1, 0, 0, 0, 3182, 3183, 1, 0, 0, 0, 3183, 205, 1, 0, 0, 0, 3184, 3182, 1, 0, 0, 0, 3185, 3211, 3, 294, 147, 0, 3186, 3187, 5, 1, 0, 0, 3187, 3211, 5, 2, 0, 0, 3188, 3189, 5, 209, 0, 0, 3189, 3190, 5, 1, 0, 0, 3190, 3195, 3, 204, 102, 0, 3191, 3192, 5, 3, 0, 0, 3192, 3194, 3, 204, 102, 0, 3193, 3191, 1, 0, 0, 0, 3194, 3197, 1, 0, 0, 0, 3195, 3193, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3198, 1, 0, 0, 0, 3197, 3195, 1, 0, 0, 0, 3198, 3199, 5, 2, 0, 0, 3199, 3211, 1, 0, 0, 0, 3200, 3201, 5, 1, 0, 0, 3201, 3202, 3, 204, 102, 0, 3202, 3203, 5, 2, 0, 0, 3203, 3211, 1, 0, 0, 0, 3204, 3211, 5, 12, 0, 0, 3205, 3211, 5, 13, 0, 0, 3206, 3207, 5, 14, 0, 0, 3207, 3208, 3, 204, 102, 0, 3208, 3209, 5, 15, 0, 0, 3209, 3211, 1, 0, 0, 0, 3210, 3185, 1, 0, 0, 0, 3210, 3186, 1, 0, 0, 0, 3210, 3188, 1, 0, 0, 0, 3210, 3200, 1, 0, 0, 0, 3210, 3204, 1, 0, 0, 0, 3210, 3205, 1, 0, 0, 0, 3210, 3206, 1, 0, 0, 0, 3211, 207, 1, 0, 0, 0, 3212, 3214, 5, 320, 0, 0, 3213, 3215, 5, 324, 0, 0, 3214, 3213, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3243, 1, 0, 0, 0, 3216, 3218, 5, 318, 0, 0, 3217, 3219, 5, 324, 0, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3243, 1, 0, 0, 0, 3220, 3222, 5, 324, 0, 0, 3221, 3223, 5, 324, 0, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3243, 1, 0, 0, 0, 3224, 3225, 5, 16, 0, 0, 3225, 3226, 5, 329, 0, 0, 3226, 3228, 5, 17, 0, 0, 3227, 3229, 5, 324, 0, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3243, 1, 0, 0, 0, 3230, 3232, 5, 16, 0, 0, 3231, 3233, 5, 329, 0, 0, 3232, 3231, 1, 0, 0, 0, 3232, 3233, 1, 0, 0, 0, 3233, 3234, 1, 0, 0, 0, 3234, 3236, 5, 3, 0, 0, 3235, 3237, 5, 329, 0, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3240, 5, 17, 0, 0, 3239, 3241, 5, 324, 0, 0, 3240, 3239, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3212, 1, 0, 0, 0, 3242, 3216, 1, 0, 0, 0, 3242, 3220, 1, 0, 0, 0, 3242, 3224, 1, 0, 0, 0, 3242, 3230, 1, 0, 0, 0, 3243, 209, 1, 0, 0, 0, 3244, 3245, 3, 294, 147, 0, 3245, 3246, 5, 312, 0, 0, 3246, 3247, 3, 136, 68, 0, 3247, 211, 1, 0, 0, 0, 3248, 3249, 5, 104, 0, 0, 3249, 3253, 7, 31, 0, 0, 3250, 3251, 5, 276, 0, 0, 3251, 3253, 7, 32, 0, 0, 3252, 3248, 1, 0, 0, 0, 3252, 3250, 1, 0, 0, 0, 3253, 213, 1, 0, 0, 0, 3254, 3255, 5, 134, 0, 0, 3255, 3256, 5, 153, 0, 0, 3256, 3260, 3, 216, 108, 0, 3257, 3258, 5, 220, 0, 0, 3258, 3260, 7, 33, 0, 0, 3259, 3254, 1, 0, 0, 0, 3259, 3257, 1, 0, 0, 0, 3260, 215, 1, 0, 0, 0, 3261, 3262, 5, 220, 0, 0, 3262, 3269, 5, 279, 0, 0, 3263, 3264, 5, 220, 0, 0, 3264, 3269, 5, 48, 0, 0, 3265, 3266, 5, 225, 0, 0, 3266, 3269, 5, 220, 0, 0, 3267, 3269, 5, 249, 0, 0, 3268, 3261, 1, 0, 0, 0, 3268, 3263, 1, 0, 0, 0, 3268, 3265, 1, 0, 0, 0, 3268, 3267, 1, 0, 0, 0, 3269, 217, 1, 0, 0, 0, 3270, 3276, 3, 136, 68, 0, 3271, 3272, 3, 294, 147, 0, 3272, 3273, 5, 6, 0, 0, 3273, 3274, 3, 136, 68, 0, 3274, 3276, 1, 0, 0, 0, 3275, 3270, 1, 0, 0, 0, 3275, 3271, 1, 0, 0, 0, 3276, 219, 1, 0, 0, 0, 3277, 3278, 3, 294, 147, 0, 3278, 3279, 5, 4, 0, 0, 3279, 3280, 3, 294, 147, 0, 3280, 3283, 1, 0, 0, 0, 3281, 3283, 3, 294, 147, 0, 3282, 3277, 1, 0, 0, 0, 3282, 3281, 1, 0, 0, 0, 3283, 221, 1, 0, 0, 0, 3284, 3289, 3, 220, 110, 0, 3285, 3286, 5, 3, 0, 0, 3286, 3288, 3, 220, 110, 0, 3287, 3285, 1, 0, 0, 0, 3288, 3291, 1, 0, 0, 0, 3289, 3287, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 223, 1, 0, 0, 0, 3291, 3289, 1, 0, 0, 0, 3292, 3293, 5, 107, 0, 0, 3293, 3294, 3, 226, 113, 0, 3294, 3298, 3, 232, 116, 0, 3295, 3297, 3, 234, 117, 0, 3296, 3295, 1, 0, 0, 0, 3297, 3300, 1, 0, 0, 0, 3298, 3296, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3301, 1, 0, 0, 0, 3300, 3298, 1, 0, 0, 0, 3301, 3302, 3, 236, 118, 0, 3302, 225, 1, 0, 0, 0, 3303, 3304, 3, 274, 137, 0, 3304, 3313, 5, 1, 0, 0, 3305, 3310, 3, 230, 115, 0, 3306, 3307, 5, 3, 0, 0, 3307, 3309, 3, 230, 115, 0, 3308, 3306, 1, 0, 0, 0, 3309, 3312, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3310, 1, 0, 0, 0, 3313, 3305, 1, 0, 0, 0, 3313, 3314, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3316, 5, 2, 0, 0, 3316, 227, 1, 0, 0, 0, 3317, 3318, 3, 272, 136, 0, 3318, 3327, 5, 1, 0, 0, 3319, 3324, 3, 230, 115, 0, 3320, 3321, 5, 3, 0, 0, 3321, 3323, 3, 230, 115, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3328, 1, 0, 0, 0, 3326, 3324, 1, 0, 0, 0, 3327, 3319, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 5, 2, 0, 0, 3330, 229, 1, 0, 0, 0, 3331, 3333, 3, 294, 147, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 3, 184, 92, 0, 3335, 231, 1, 0, 0, 0, 3336, 3337, 5, 232, 0, 0, 3337, 3338, 3, 184, 92, 0, 3338, 233, 1, 0, 0, 0, 3339, 3340, 5, 147, 0, 0, 3340, 3359, 3, 294, 147, 0, 3341, 3343, 5, 182, 0, 0, 3342, 3341, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3359, 5, 78, 0, 0, 3345, 3346, 5, 232, 0, 0, 3346, 3347, 5, 183, 0, 0, 3347, 3348, 5, 190, 0, 0, 3348, 3349, 5, 183, 0, 0, 3349, 3359, 5, 126, 0, 0, 3350, 3351, 5, 38, 0, 0, 3351, 3352, 5, 190, 0, 0, 3352, 3353, 5, 183, 0, 0, 3353, 3359, 5, 126, 0, 0, 3354, 3355, 5, 246, 0, 0, 3355, 3359, 7, 1, 0, 0, 3356, 3357, 5, 46, 0, 0, 3357, 3359, 3, 168, 84, 0, 3358, 3339, 1, 0, 0, 0, 3358, 3342, 1, 0, 0, 0, 3358, 3345, 1, 0, 0, 0, 3358, 3350, 1, 0, 0, 0, 3358, 3354, 1, 0, 0, 0, 3358, 3356, 1, 0, 0, 0, 3359, 235, 1, 0, 0, 0, 3360, 3361, 5, 230, 0, 0, 3361, 3460, 3, 142, 71, 0, 3362, 3363, 5, 251, 0, 0, 3363, 3364, 3, 294, 147, 0, 3364, 3365, 5, 312, 0, 0, 3365, 3366, 3, 136, 68, 0, 3366, 3460, 1, 0, 0, 0, 3367, 3368, 5, 40, 0, 0, 3368, 3370, 3, 136, 68, 0, 3369, 3371, 3, 238, 119, 0, 3370, 3369, 1, 0, 0, 0, 3371, 3372, 1, 0, 0, 0, 3372, 3370, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3375, 1, 0, 0, 0, 3374, 3376, 3, 242, 121, 0, 3375, 3374, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3378, 5, 88, 0, 0, 3378, 3379, 5, 40, 0, 0, 3379, 3460, 1, 0, 0, 0, 3380, 3382, 5, 40, 0, 0, 3381, 3383, 3, 238, 119, 0, 3382, 3381, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3387, 1, 0, 0, 0, 3386, 3388, 3, 242, 121, 0, 3387, 3386, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 3389, 1, 0, 0, 0, 3389, 3390, 5, 88, 0, 0, 3390, 3391, 5, 40, 0, 0, 3391, 3460, 1, 0, 0, 0, 3392, 3393, 5, 119, 0, 0, 3393, 3394, 3, 136, 68, 0, 3394, 3395, 5, 265, 0, 0, 3395, 3399, 3, 246, 123, 0, 3396, 3398, 3, 240, 120, 0, 3397, 3396, 1, 0, 0, 0, 3398, 3401, 1, 0, 0, 0, 3399, 3397, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3403, 1, 0, 0, 0, 3401, 3399, 1, 0, 0, 0, 3402, 3404, 3, 242, 121, 0, 3403, 3402, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3406, 5, 88, 0, 0, 3406, 3407, 5, 119, 0, 0, 3407, 3460, 1, 0, 0, 0, 3408, 3409, 5, 135, 0, 0, 3409, 3460, 3, 294, 147, 0, 3410, 3411, 5, 151, 0, 0, 3411, 3460, 3, 294, 147, 0, 3412, 3418, 5, 32, 0, 0, 3413, 3414, 3, 244, 122, 0, 3414, 3415, 5, 325, 0, 0, 3415, 3417, 1, 0, 0, 0, 3416, 3413, 1, 0, 0, 0, 3417, 3420, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3422, 1, 0, 0, 0, 3420, 3418, 1, 0, 0, 0, 3421, 3423, 3, 246, 123, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3460, 5, 88, 0, 0, 3425, 3426, 3, 294, 147, 0, 3426, 3427, 5, 10, 0, 0, 3427, 3429, 1, 0, 0, 0, 3428, 3425, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 5, 161, 0, 0, 3431, 3432, 3, 246, 123, 0, 3432, 3433, 5, 88, 0, 0, 3433, 3434, 5, 161, 0, 0, 3434, 3460, 1, 0, 0, 0, 3435, 3436, 3, 294, 147, 0, 3436, 3437, 5, 10, 0, 0, 3437, 3439, 1, 0, 0, 0, 3438, 3435, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3441, 5, 302, 0, 0, 3441, 3442, 3, 136, 68, 0, 3442, 3443, 5, 81, 0, 0, 3443, 3444, 3, 246, 123, 0, 3444, 3445, 5, 88, 0, 0, 3445, 3446, 5, 302, 0, 0, 3446, 3460, 1, 0, 0, 0, 3447, 3448, 3, 294, 147, 0, 3448, 3449, 5, 10, 0, 0, 3449, 3451, 1, 0, 0, 0, 3450, 3447, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3453, 5, 224, 0, 0, 3453, 3454, 3, 246, 123, 0, 3454, 3455, 5, 286, 0, 0, 3455, 3456, 3, 136, 68, 0, 3456, 3457, 5, 88, 0, 0, 3457, 3458, 5, 224, 0, 0, 3458, 3460, 1, 0, 0, 0, 3459, 3360, 1, 0, 0, 0, 3459, 3362, 1, 0, 0, 0, 3459, 3367, 1, 0, 0, 0, 3459, 3380, 1, 0, 0, 0, 3459, 3392, 1, 0, 0, 0, 3459, 3408, 1, 0, 0, 0, 3459, 3410, 1, 0, 0, 0, 3459, 3412, 1, 0, 0, 0, 3459, 3428, 1, 0, 0, 0, 3459, 3438, 1, 0, 0, 0, 3459, 3450, 1, 0, 0, 0, 3460, 237, 1, 0, 0, 0, 3461, 3462, 5, 300, 0, 0, 3462, 3463, 3, 136, 68, 0, 3463, 3464, 5, 265, 0, 0, 3464, 3465, 3, 246, 123, 0, 3465, 239, 1, 0, 0, 0, 3466, 3467, 5, 86, 0, 0, 3467, 3468, 3, 136, 68, 0, 3468, 3469, 5, 265, 0, 0, 3469, 3470, 3, 246, 123, 0, 3470, 241, 1, 0, 0, 0, 3471, 3472, 5, 84, 0, 0, 3472, 3473, 3, 246, 123, 0, 3473, 243, 1, 0, 0, 0, 3474, 3475, 5, 69, 0, 0, 3475, 3480, 3, 294, 147, 0, 3476, 3477, 5, 3, 0, 0, 3477, 3479, 3, 294, 147, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3482, 1, 0, 0, 0, 3480, 3478, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3483, 1, 0, 0, 0, 3482, 3480, 1, 0, 0, 0, 3483, 3486, 3, 184, 92, 0, 3484, 3485, 5, 70, 0, 0, 3485, 3487, 3, 142, 71, 0, 3486, 3484, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 245, 1, 0, 0, 0, 3488, 3489, 3, 236, 118, 0, 3489, 3490, 5, 325, 0, 0, 3490, 3492, 1, 0, 0, 0, 3491, 3488, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3491, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 247, 1, 0, 0, 0, 3495, 3502, 5, 53, 0, 0, 3496, 3502, 5, 248, 0, 0, 3497, 3502, 5, 73, 0, 0, 3498, 3502, 5, 127, 0, 0, 3499, 3502, 5, 287, 0, 0, 3500, 3502, 3, 294, 147, 0, 3501, 3495, 1, 0, 0, 0, 3501, 3496, 1, 0, 0, 0, 3501, 3497, 1, 0, 0, 0, 3501, 3498, 1, 0, 0, 0, 3501, 3499, 1, 0, 0, 0, 3501, 3500, 1, 0, 0, 0, 3502, 249, 1, 0, 0, 0, 3503, 3507, 5, 260, 0, 0, 3504, 3507, 5, 243, 0, 0, 3505, 3507, 3, 294, 147, 0, 3506, 3503, 1, 0, 0, 0, 3506, 3504, 1, 0, 0, 0, 3506, 3505, 1, 0, 0, 0, 3507, 251, 1, 0, 0, 0, 3508, 3510, 3, 250, 125, 0, 3509, 3508, 1, 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3512, 3, 280, 140, 0, 3512, 253, 1, 0, 0, 0, 3513, 3516, 3, 256, 128, 0, 3514, 3516, 3, 260, 130, 0, 3515, 3513, 1, 0, 0, 0, 3515, 3514, 1, 0, 0, 0, 3516, 255, 1, 0, 0, 0, 3517, 3529, 3, 294, 147, 0, 3518, 3519, 3, 294, 147, 0, 3519, 3520, 5, 4, 0, 0, 3520, 3521, 3, 294, 147, 0, 3521, 3529, 1, 0, 0, 0, 3522, 3523, 3, 294, 147, 0, 3523, 3524, 5, 4, 0, 0, 3524, 3525, 3, 294, 147, 0, 3525, 3526, 5, 4, 0, 0, 3526, 3527, 3, 294, 147, 0, 3527, 3529, 1, 0, 0, 0, 3528, 3517, 1, 0, 0, 0, 3528, 3518, 1, 0, 0, 0, 3528, 3522, 1, 0, 0, 0, 3529, 257, 1, 0, 0, 0, 3530, 3542, 3, 294, 147, 0, 3531, 3532, 3, 294, 147, 0, 3532, 3533, 5, 4, 0, 0, 3533, 3534, 3, 294, 147, 0, 3534, 3542, 1, 0, 0, 0, 3535, 3536, 3, 294, 147, 0, 3536, 3537, 5, 4, 0, 0, 3537, 3538, 3, 294, 147, 0, 3538, 3539, 5, 4, 0, 0, 3539, 3540, 3, 294, 147, 0, 3540, 3542, 1, 0, 0, 0, 3541, 3530, 1, 0, 0, 0, 3541, 3531, 1, 0, 0, 0, 3541, 3535, 1, 0, 0, 0, 3542, 259, 1, 0, 0, 0, 3543, 3555, 3, 294, 147, 0, 3544, 3545, 3, 294, 147, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3547, 3, 294, 147, 0, 3547, 3555, 1, 0, 0, 0, 3548, 3549, 3, 294, 147, 0, 3549, 3550, 5, 4, 0, 0, 3550, 3551, 3, 294, 147, 0, 3551, 3552, 5, 4, 0, 0, 3552, 3553, 3, 294, 147, 0, 3553, 3555, 1, 0, 0, 0, 3554, 3543, 1, 0, 0, 0, 3554, 3544, 1, 0, 0, 0, 3554, 3548, 1, 0, 0, 0, 3555, 261, 1, 0, 0, 0, 3556, 3568, 3, 294, 147, 0, 3557, 3558, 3, 294, 147, 0, 3558, 3559, 5, 4, 0, 0, 3559, 3560, 3, 294, 147, 0, 3560, 3568, 1, 0, 0, 0, 3561, 3562, 3, 294, 147, 0, 3562, 3563, 5, 4, 0, 0, 3563, 3564, 3, 294, 147, 0, 3564, 3565, 5, 4, 0, 0, 3565, 3566, 3, 294, 147, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3556, 1, 0, 0, 0, 3567, 3557, 1, 0, 0, 0, 3567, 3561, 1, 0, 0, 0, 3568, 263, 1, 0, 0, 0, 3569, 3575, 3, 294, 147, 0, 3570, 3571, 3, 294, 147, 0, 3571, 3572, 5, 4, 0, 0, 3572, 3573, 3, 294, 147, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3569, 1, 0, 0, 0, 3574, 3570, 1, 0, 0, 0, 3575, 265, 1, 0, 0, 0, 3576, 3582, 3, 294, 147, 0, 3577, 3578, 3, 294, 147, 0, 3578, 3579, 5, 4, 0, 0, 3579, 3580, 3, 294, 147, 0, 3580, 3582, 1, 0, 0, 0, 3581, 3576, 1, 0, 0, 0, 3581, 3577, 1, 0, 0, 0, 3582, 267, 1, 0, 0, 0, 3583, 3584, 3, 294, 147, 0, 3584, 269, 1, 0, 0, 0, 3585, 3586, 3, 294, 147, 0, 3586, 271, 1, 0, 0, 0, 3587, 3588, 3, 280, 140, 0, 3588, 273, 1, 0, 0, 0, 3589, 3590, 3, 280, 140, 0, 3590, 275, 1, 0, 0, 0, 3591, 3594, 3, 280, 140, 0, 3592, 3594, 4, 138, 14, 0, 3593, 3591, 1, 0, 0, 0, 3593, 3592, 1, 0, 0, 0, 3594, 277, 1, 0, 0, 0, 3595, 3596, 3, 294, 147, 0, 3596, 279, 1, 0, 0, 0, 3597, 3602, 3, 294, 147, 0, 3598, 3599, 5, 4, 0, 0, 3599, 3601, 3, 294, 147, 0, 3600, 3598, 1, 0, 0, 0, 3601, 3604, 1, 0, 0, 0, 3602, 3600, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 281, 1, 0, 0, 0, 3604, 3602, 1, 0, 0, 0, 3605, 3606, 5, 103, 0, 0, 3606, 3607, 3, 284, 142, 0, 3607, 3608, 5, 28, 0, 0, 3608, 3609, 5, 187, 0, 0, 3609, 3610, 3, 142, 71, 0, 3610, 283, 1, 0, 0, 0, 3611, 3612, 7, 34, 0, 0, 3612, 285, 1, 0, 0, 0, 3613, 3617, 3, 288, 144, 0, 3614, 3617, 5, 64, 0, 0, 3615, 3617, 5, 60, 0, 0, 3616, 3613, 1, 0, 0, 0, 3616, 3614, 1, 0, 0, 0, 3616, 3615, 1, 0, 0, 0, 3617, 287, 1, 0, 0, 0, 3618, 3624, 3, 294, 147, 0, 3619, 3620, 5, 289, 0, 0, 3620, 3624, 3, 294, 147, 0, 3621, 3622, 5, 235, 0, 0, 3622, 3624, 3, 294, 147, 0, 3623, 3618, 1, 0, 0, 0, 3623, 3619, 1, 0, 0, 0, 3623, 3621, 1, 0, 0, 0, 3624, 289, 1, 0, 0, 0, 3625, 3630, 3, 294, 147, 0, 3626, 3627, 5, 3, 0, 0, 3627, 3629, 3, 294, 147, 0, 3628, 3626, 1, 0, 0, 0, 3629, 3632, 1, 0, 0, 0, 3630, 3628, 1, 0, 0, 0, 3630, 3631, 1, 0, 0, 0, 3631, 291, 1, 0, 0, 0, 3632, 3630, 1, 0, 0, 0, 3633, 3641, 5, 53, 0, 0, 3634, 3641, 5, 248, 0, 0, 3635, 3641, 5, 73, 0, 0, 3636, 3641, 5, 127, 0, 0, 3637, 3641, 5, 287, 0, 0, 3638, 3641, 5, 93, 0, 0, 3639, 3641, 3, 294, 147, 0, 3640, 3633, 1, 0, 0, 0, 3640, 3634, 1, 0, 0, 0, 3640, 3635, 1, 0, 0, 0, 3640, 3636, 1, 0, 0, 0, 3640, 3637, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3639, 1, 0, 0, 0, 3641, 293, 1, 0, 0, 0, 3642, 3648, 5, 332, 0, 0, 3643, 3648, 5, 334, 0, 0, 3644, 3648, 3, 300, 150, 0, 3645, 3648, 5, 335, 0, 0, 3646, 3648, 5, 333, 0, 0, 3647, 3642, 1, 0, 0, 0, 3647, 3643, 1, 0, 0, 0, 3647, 3644, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3647, 3646, 1, 0, 0, 0, 3648, 295, 1, 0, 0, 0, 3649, 3651, 5, 319, 0, 0, 3650, 3649, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3652, 1, 0, 0, 0, 3652, 3662, 5, 330, 0, 0, 3653, 3655, 5, 319, 0, 0, 3654, 3653, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3662, 5, 331, 0, 0, 3657, 3659, 5, 319, 0, 0, 3658, 3657, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3662, 5, 329, 0, 0, 3661, 3650, 1, 0, 0, 0, 3661, 3654, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3662, 297, 1, 0, 0, 0, 3663, 3666, 3, 294, 147, 0, 3664, 3666, 3, 168, 84, 0, 3665, 3663, 1, 0, 0, 0, 3665, 3664, 1, 0, 0, 0, 3666, 299, 1, 0, 0, 0, 3667, 3668, 7, 35, 0, 0, 3668, 301, 1, 0, 0, 0, 478, 305, 314, 318, 322, 326, 330, 343, 350, 354, 358, 364, 368, 375, 380, 384, 390, 394, 413, 419, 423, 427, 431, 439, 443, 446, 451, 457, 466, 472, 476, 482, 489, 498, 510, 519, 528, 534, 545, 553, 561, 568, 578, 585, 593, 608, 643, 646, 649, 653, 659, 664, 671, 677, 681, 685, 693, 699, 703, 707, 721, 729, 748, 773, 776, 783, 790, 799, 803, 810, 818, 827, 833, 838, 842, 850, 855, 864, 870, 877, 886, 892, 896, 902, 909, 914, 927, 932, 944, 948, 954, 963, 968, 974, 1002, 1008, 1010, 1016, 1022, 1024, 1032, 1034, 1044, 1046, 1061, 1066, 1073, 1083, 1089, 1091, 1099, 1101, 1126, 1129, 1133, 1137, 1155, 1158, 1169, 1172, 1188, 1198, 1203, 1209, 1212, 1221, 1233, 1236, 1246, 1250, 1256, 1263, 1268, 1274, 1278, 1282, 1288, 1299, 1308, 1318, 1321, 1326, 1328, 1335, 1341, 1343, 1347, 1357, 1363, 1366, 1368, 1380, 1387, 1391, 1394, 1398, 1402, 1409, 1418, 1421, 1425, 1430, 1434, 1442, 1445, 1448, 1455, 1466, 1469, 1479, 1482, 1493, 1498, 1506, 1509, 1513, 1517, 1526, 1535, 1538, 1547, 1550, 1553, 1557, 1568, 1571, 1574, 1581, 1584, 1603, 1607, 1611, 1615, 1619, 1623, 1625, 1636, 1641, 1650, 1659, 1662, 1668, 1680, 1683, 1692, 1695, 1703, 1706, 1709, 1714, 1717, 1729, 1732, 1740, 1745, 1749, 1751, 1753, 1768, 1770, 1781, 1802, 1812, 1823, 1827, 1829, 1837, 1848, 1859, 1866, 1879, 1885, 1911, 1926, 1931, 1935, 1945, 1951, 1957, 1965, 1970, 1977, 1979, 1985, 1991, 1995, 2000, 2009, 2014, 2028, 2038, 2041, 2050, 2055, 2060, 2062, 2071, 2074, 2082, 2085, 2092, 2097, 2108, 2111, 2115, 2117, 2125, 2135, 2141, 2143, 2150, 2154, 2156, 2163, 2167, 2169, 2171, 2180, 2191, 2195, 2205, 2215, 2219, 2227, 2229, 2242, 2250, 2259, 2265, 2273, 2279, 2283, 2288, 2293, 2299, 2313, 2315, 2345, 2356, 2364, 2369, 2374, 2387, 2393, 2396, 2403, 2408, 2411, 2414, 2419, 2426, 2429, 2438, 2441, 2445, 2448, 2451, 2466, 2469, 2488, 2492, 2500, 2504, 2529, 2532, 2541, 2547, 2553, 2559, 2568, 2571, 2574, 2593, 2602, 2624, 2627, 2637, 2646, 2652, 2658, 2669, 2671, 2676, 2683, 2685, 2691, 2697, 2708, 2717, 2722, 2727, 2729, 2731, 2737, 2739, 2749, 2758, 2760, 2766, 2768, 2771, 2781, 2783, 2791, 2799, 2802, 2807, 2812, 2824, 2828, 2832, 2835, 2837, 2845, 2848, 2858, 2866, 2872, 2874, 2882, 2892, 2898, 2912, 2921, 2928, 2933, 2940, 2945, 2968, 2973, 2975, 2982, 2986, 2993, 2997, 3014, 3029, 3036, 3045, 3055, 3060, 3069, 3074, 3082, 3090, 3093, 3099, 3102, 3109, 3117, 3120, 3128, 3131, 3157, 3168, 3173, 3180, 3182, 3195, 3210, 3214, 3218, 3222, 3228, 3232, 3236, 3240, 3242, 3252, 3259, 3268, 3275, 3282, 3289, 3298, 3310, 3313, 3324, 3327, 3332, 3342, 3358, 3372, 3375, 3384, 3387, 3399, 3403, 3418, 3422, 3428, 3438, 3450, 3459, 3480, 3486, 3493, 3501, 3506, 3509, 3515, 3528, 3541, 3554, 3567, 3574, 3581, 3593, 3602, 3616, 3623, 3630, 3640, 3647, 3650, 3654, 3658, 3661, 3665] \ No newline at end of file +[4, 1, 340, 3694, 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, 1, 0, 5, 0, 316, 8, 0, 10, 0, 12, 0, 319, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 327, 8, 2, 1, 3, 1, 3, 3, 3, 331, 8, 3, 1, 4, 1, 4, 3, 4, 335, 8, 4, 1, 5, 1, 5, 3, 5, 339, 8, 5, 1, 6, 1, 6, 3, 6, 343, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 356, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 363, 8, 8, 1, 8, 1, 8, 3, 8, 367, 8, 8, 1, 8, 1, 8, 3, 8, 371, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 377, 8, 8, 1, 8, 1, 8, 3, 8, 381, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 388, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 393, 8, 8, 1, 8, 1, 8, 3, 8, 397, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 403, 8, 8, 1, 8, 1, 8, 3, 8, 407, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 426, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 432, 8, 8, 1, 8, 1, 8, 3, 8, 436, 8, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 3, 8, 444, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 452, 8, 8, 1, 8, 1, 8, 3, 8, 456, 8, 8, 1, 8, 3, 8, 459, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 464, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 470, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 477, 8, 8, 10, 8, 12, 8, 480, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 485, 8, 8, 1, 8, 1, 8, 3, 8, 489, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 495, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 502, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 511, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 523, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 532, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 541, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 547, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 558, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 566, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 574, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 581, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 591, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 598, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 606, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 621, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 654, 8, 8, 10, 8, 12, 8, 657, 9, 8, 3, 8, 659, 8, 8, 1, 8, 3, 8, 662, 8, 8, 1, 8, 1, 8, 3, 8, 666, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 672, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 677, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 684, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 690, 8, 8, 1, 8, 1, 8, 3, 8, 694, 8, 8, 1, 8, 1, 8, 3, 8, 698, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 706, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 712, 8, 8, 1, 8, 1, 8, 3, 8, 716, 8, 8, 1, 8, 1, 8, 3, 8, 720, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 734, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 742, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 761, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 784, 8, 8, 10, 8, 12, 8, 787, 9, 8, 3, 8, 789, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 796, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 803, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 812, 8, 8, 1, 8, 1, 8, 3, 8, 816, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 823, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 829, 8, 8, 10, 8, 12, 8, 832, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 838, 8, 8, 10, 8, 12, 8, 841, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 846, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 851, 8, 8, 1, 8, 1, 8, 3, 8, 855, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 861, 8, 8, 10, 8, 12, 8, 864, 9, 8, 1, 8, 1, 8, 3, 8, 868, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 877, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 883, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 888, 8, 8, 10, 8, 12, 8, 891, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 897, 8, 8, 10, 8, 12, 8, 900, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 905, 8, 8, 1, 8, 1, 8, 3, 8, 909, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 915, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 920, 8, 8, 10, 8, 12, 8, 923, 9, 8, 1, 8, 1, 8, 3, 8, 927, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 938, 8, 8, 10, 8, 12, 8, 941, 9, 8, 1, 8, 1, 8, 3, 8, 945, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 957, 8, 8, 1, 8, 1, 8, 3, 8, 961, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 967, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 974, 8, 8, 10, 8, 12, 8, 977, 9, 8, 1, 8, 1, 8, 3, 8, 981, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 987, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1015, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1021, 8, 8, 3, 8, 1023, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1029, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1035, 8, 8, 3, 8, 1037, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1045, 8, 8, 3, 8, 1047, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1057, 8, 8, 3, 8, 1059, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1074, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1079, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1086, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1096, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1102, 8, 8, 3, 8, 1104, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1112, 8, 8, 3, 8, 1114, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1137, 8, 8, 10, 8, 12, 8, 1140, 9, 8, 3, 8, 1142, 8, 8, 1, 8, 1, 8, 3, 8, 1146, 8, 8, 1, 8, 1, 8, 3, 8, 1150, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1166, 8, 8, 10, 8, 12, 8, 1169, 9, 8, 3, 8, 1171, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1180, 8, 8, 10, 8, 12, 8, 1183, 9, 8, 3, 8, 1185, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1201, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1209, 8, 8, 10, 8, 12, 8, 1212, 9, 8, 1, 8, 1, 8, 3, 8, 1216, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1222, 8, 8, 1, 8, 3, 8, 1225, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1232, 8, 8, 11, 8, 12, 8, 1233, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1246, 8, 8, 1, 9, 3, 9, 1249, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1257, 8, 10, 10, 10, 12, 10, 1260, 9, 10, 1, 11, 3, 11, 1263, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1269, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1274, 8, 12, 10, 12, 12, 12, 1277, 9, 12, 1, 13, 1, 13, 3, 13, 1281, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1287, 8, 14, 1, 14, 1, 14, 3, 14, 1291, 8, 14, 1, 14, 1, 14, 3, 14, 1295, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1301, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1310, 8, 17, 10, 17, 12, 17, 1313, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1321, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1329, 8, 20, 10, 20, 12, 20, 1332, 9, 20, 3, 20, 1334, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1339, 8, 20, 3, 20, 1341, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1348, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1354, 8, 20, 3, 20, 1356, 8, 20, 1, 21, 1, 21, 3, 21, 1360, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1370, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1376, 8, 23, 1, 23, 5, 23, 1379, 8, 23, 10, 23, 12, 23, 1382, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1391, 8, 24, 10, 24, 12, 24, 1394, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1400, 8, 24, 1, 25, 1, 25, 3, 25, 1404, 8, 25, 1, 25, 3, 25, 1407, 8, 25, 1, 25, 1, 25, 3, 25, 1411, 8, 25, 1, 26, 1, 26, 3, 26, 1415, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1422, 8, 26, 10, 26, 12, 26, 1425, 9, 26, 3, 26, 1427, 8, 26, 1, 26, 1, 26, 3, 26, 1431, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1436, 8, 26, 1, 26, 1, 26, 3, 26, 1440, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1446, 8, 26, 10, 26, 12, 26, 1449, 9, 26, 3, 26, 1451, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 1456, 8, 27, 10, 27, 12, 27, 1459, 9, 27, 1, 28, 3, 28, 1462, 8, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1467, 8, 28, 10, 28, 12, 28, 1470, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1478, 8, 29, 10, 29, 12, 29, 1481, 9, 29, 3, 29, 1483, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1491, 8, 29, 10, 29, 12, 29, 1494, 9, 29, 3, 29, 1496, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 1505, 8, 29, 10, 29, 12, 29, 1508, 9, 29, 1, 29, 1, 29, 3, 29, 1512, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1518, 8, 30, 10, 30, 12, 30, 1521, 9, 30, 3, 30, 1523, 8, 30, 1, 30, 1, 30, 3, 30, 1527, 8, 30, 1, 31, 1, 31, 3, 31, 1531, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 3, 33, 1540, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1547, 8, 33, 10, 33, 12, 33, 1550, 9, 33, 3, 33, 1552, 8, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1559, 8, 33, 10, 33, 12, 33, 1562, 9, 33, 3, 33, 1564, 8, 33, 1, 33, 3, 33, 1567, 8, 33, 1, 34, 1, 34, 3, 34, 1571, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 1582, 8, 36, 1, 36, 3, 36, 1585, 8, 36, 1, 36, 3, 36, 1588, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1593, 8, 36, 1, 36, 3, 36, 1596, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 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, 1625, 8, 41, 5, 41, 1627, 8, 41, 10, 41, 12, 41, 1630, 9, 41, 1, 42, 3, 42, 1633, 8, 42, 1, 42, 1, 42, 3, 42, 1637, 8, 42, 1, 42, 1, 42, 3, 42, 1641, 8, 42, 1, 42, 1, 42, 3, 42, 1645, 8, 42, 3, 42, 1647, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1656, 8, 43, 10, 43, 12, 43, 1659, 9, 43, 1, 43, 1, 43, 3, 43, 1663, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1672, 8, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1681, 8, 47, 1, 47, 3, 47, 1684, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1690, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1700, 8, 49, 10, 49, 12, 49, 1703, 9, 49, 3, 49, 1705, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1712, 8, 49, 10, 49, 12, 49, 1715, 9, 49, 3, 49, 1717, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1723, 8, 49, 10, 49, 12, 49, 1726, 9, 49, 3, 49, 1728, 8, 49, 1, 49, 3, 49, 1731, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1736, 8, 49, 1, 49, 3, 49, 1739, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1749, 8, 49, 10, 49, 12, 49, 1752, 9, 49, 3, 49, 1754, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1760, 8, 49, 10, 49, 12, 49, 1763, 9, 49, 1, 49, 1, 49, 3, 49, 1767, 8, 49, 1, 49, 1, 49, 3, 49, 1771, 8, 49, 3, 49, 1773, 8, 49, 3, 49, 1775, 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, 3, 51, 1790, 8, 51, 3, 51, 1792, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1803, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1824, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1832, 8, 54, 10, 54, 12, 54, 1835, 9, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 3, 56, 1845, 8, 56, 1, 56, 1, 56, 3, 56, 1849, 8, 56, 3, 56, 1851, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1857, 8, 57, 10, 57, 12, 57, 1860, 9, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1868, 8, 58, 10, 58, 12, 58, 1871, 9, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1879, 8, 59, 10, 59, 12, 59, 1882, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 3, 60, 1888, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1895, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 1906, 8, 61, 10, 61, 12, 61, 1909, 9, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1914, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 1934, 8, 61, 10, 61, 12, 61, 1937, 9, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1951, 8, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1956, 8, 61, 1, 61, 1, 61, 3, 61, 1960, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1970, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1976, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1982, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1990, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1995, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2002, 8, 62, 3, 62, 2004, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2010, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2016, 8, 62, 1, 62, 1, 62, 3, 62, 2020, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2025, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 2032, 8, 62, 10, 62, 12, 62, 2035, 9, 62, 1, 62, 1, 62, 3, 62, 2039, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 2051, 8, 63, 10, 63, 12, 63, 2054, 9, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 2061, 8, 63, 10, 63, 12, 63, 2064, 9, 63, 3, 63, 2066, 8, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2075, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2080, 8, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2085, 8, 66, 3, 66, 2087, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2094, 8, 67, 10, 67, 12, 67, 2097, 9, 67, 3, 67, 2099, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2105, 8, 67, 10, 67, 12, 67, 2108, 9, 67, 3, 67, 2110, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 2117, 8, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2122, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2131, 8, 69, 10, 69, 12, 69, 2134, 9, 69, 3, 69, 2136, 8, 69, 1, 69, 1, 69, 3, 69, 2140, 8, 69, 3, 69, 2142, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2150, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2158, 8, 69, 10, 69, 12, 69, 2161, 9, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2166, 8, 69, 3, 69, 2168, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2175, 8, 70, 1, 70, 1, 70, 3, 70, 2179, 8, 70, 3, 70, 2181, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2188, 8, 70, 1, 70, 1, 70, 3, 70, 2192, 8, 70, 3, 70, 2194, 8, 70, 3, 70, 2196, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 2203, 8, 71, 10, 71, 12, 71, 2206, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2216, 8, 71, 1, 72, 1, 72, 3, 72, 2220, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2228, 8, 73, 10, 73, 12, 73, 2231, 9, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 3, 75, 2240, 8, 75, 1, 75, 1, 75, 3, 75, 2244, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2252, 8, 75, 10, 75, 12, 75, 2255, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2267, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2275, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2282, 8, 76, 10, 76, 12, 76, 2285, 9, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2290, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2298, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2304, 8, 76, 1, 76, 1, 76, 3, 76, 2308, 8, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2313, 8, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2318, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2324, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 2338, 8, 77, 10, 77, 12, 77, 2341, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 2368, 8, 78, 11, 78, 12, 78, 2369, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2379, 8, 78, 10, 78, 12, 78, 2382, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2389, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2394, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2399, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2410, 8, 78, 10, 78, 12, 78, 2413, 9, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2418, 8, 78, 1, 78, 3, 78, 2421, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2428, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2433, 8, 78, 1, 78, 3, 78, 2436, 8, 78, 1, 78, 3, 78, 2439, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2444, 8, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2449, 8, 78, 10, 78, 12, 78, 2452, 9, 78, 3, 78, 2454, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2461, 8, 78, 10, 78, 12, 78, 2464, 9, 78, 3, 78, 2466, 8, 78, 1, 78, 1, 78, 3, 78, 2470, 8, 78, 1, 78, 3, 78, 2473, 8, 78, 1, 78, 3, 78, 2476, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2489, 8, 78, 10, 78, 12, 78, 2492, 9, 78, 3, 78, 2494, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 2511, 8, 78, 11, 78, 12, 78, 2512, 1, 78, 1, 78, 3, 78, 2517, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 2523, 8, 78, 11, 78, 12, 78, 2524, 1, 78, 1, 78, 3, 78, 2529, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2552, 8, 78, 10, 78, 12, 78, 2555, 9, 78, 3, 78, 2557, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2566, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2572, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2578, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2584, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2593, 8, 78, 1, 78, 3, 78, 2596, 8, 78, 1, 78, 3, 78, 2599, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2618, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2627, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2647, 8, 78, 10, 78, 12, 78, 2650, 9, 78, 3, 78, 2652, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2662, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2671, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2677, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2683, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2694, 8, 78, 3, 78, 2696, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2701, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2708, 8, 78, 3, 78, 2710, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2716, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2722, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2731, 8, 78, 10, 78, 12, 78, 2734, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2742, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2747, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2752, 8, 78, 3, 78, 2754, 8, 78, 3, 78, 2756, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2762, 8, 78, 3, 78, 2764, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2772, 8, 78, 10, 78, 12, 78, 2775, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2783, 8, 78, 3, 78, 2785, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2791, 8, 78, 3, 78, 2793, 8, 78, 1, 78, 3, 78, 2796, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2806, 8, 78, 10, 78, 12, 78, 2809, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2816, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2822, 8, 79, 10, 79, 12, 79, 2825, 9, 79, 3, 79, 2827, 8, 79, 1, 80, 1, 80, 1, 80, 3, 80, 2832, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 2837, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2849, 8, 84, 1, 85, 1, 85, 3, 85, 2853, 8, 85, 1, 85, 1, 85, 3, 85, 2857, 8, 85, 1, 85, 3, 85, 2860, 8, 85, 3, 85, 2862, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2870, 8, 86, 1, 87, 3, 87, 2873, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2883, 8, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2891, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2897, 8, 90, 3, 90, 2899, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2907, 8, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 3, 95, 2917, 8, 95, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2923, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 5, 98, 2935, 8, 98, 10, 98, 12, 98, 2938, 9, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2946, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2953, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2958, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2965, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2970, 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, 5, 98, 2991, 8, 98, 10, 98, 12, 98, 2994, 9, 98, 1, 98, 1, 98, 3, 98, 2998, 8, 98, 3, 98, 3000, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3007, 8, 98, 5, 98, 3009, 8, 98, 10, 98, 12, 98, 3012, 9, 98, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 3018, 8, 99, 1, 100, 1, 100, 3, 100, 3022, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3039, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 3052, 8, 103, 10, 103, 12, 103, 3055, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3061, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3070, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 3078, 8, 103, 10, 103, 12, 103, 3081, 9, 103, 1, 103, 1, 103, 3, 103, 3085, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 3092, 8, 103, 10, 103, 12, 103, 3095, 9, 103, 1, 103, 1, 103, 3, 103, 3099, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3107, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 3113, 8, 105, 10, 105, 12, 105, 3116, 9, 105, 3, 105, 3118, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3124, 8, 105, 1, 105, 3, 105, 3127, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 3134, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 3140, 8, 105, 10, 105, 12, 105, 3143, 9, 105, 3, 105, 3145, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 3151, 8, 105, 10, 105, 12, 105, 3154, 9, 105, 3, 105, 3156, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3182, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3193, 8, 107, 1, 108, 1, 108, 1, 108, 3, 108, 3198, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3205, 8, 108, 10, 108, 12, 108, 3208, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 3218, 8, 109, 10, 109, 12, 109, 3221, 9, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3235, 8, 109, 1, 110, 1, 110, 3, 110, 3239, 8, 110, 1, 110, 1, 110, 3, 110, 3243, 8, 110, 1, 110, 1, 110, 3, 110, 3247, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3253, 8, 110, 1, 110, 1, 110, 3, 110, 3257, 8, 110, 1, 110, 1, 110, 3, 110, 3261, 8, 110, 1, 110, 1, 110, 3, 110, 3265, 8, 110, 3, 110, 3267, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 3277, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 3284, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3293, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3300, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3307, 8, 116, 1, 117, 1, 117, 1, 117, 5, 117, 3312, 8, 117, 10, 117, 12, 117, 3315, 9, 117, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 3321, 8, 118, 10, 118, 12, 118, 3324, 9, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3333, 8, 119, 10, 119, 12, 119, 3336, 9, 119, 3, 119, 3338, 8, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 5, 120, 3347, 8, 120, 10, 120, 12, 120, 3350, 9, 120, 3, 120, 3352, 8, 120, 1, 120, 1, 120, 1, 121, 3, 121, 3357, 8, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 3, 123, 3367, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3383, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3395, 8, 124, 11, 124, 12, 124, 3396, 1, 124, 3, 124, 3400, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 4, 124, 3407, 8, 124, 11, 124, 12, 124, 3408, 1, 124, 3, 124, 3412, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3422, 8, 124, 10, 124, 12, 124, 3425, 9, 124, 1, 124, 3, 124, 3428, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3441, 8, 124, 10, 124, 12, 124, 3444, 9, 124, 1, 124, 3, 124, 3447, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3453, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3463, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3475, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3484, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3503, 8, 128, 10, 128, 12, 128, 3506, 9, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3511, 8, 128, 1, 129, 1, 129, 1, 129, 4, 129, 3516, 8, 129, 11, 129, 12, 129, 3517, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3526, 8, 130, 1, 131, 1, 131, 1, 131, 3, 131, 3531, 8, 131, 1, 132, 3, 132, 3534, 8, 132, 1, 132, 1, 132, 1, 133, 1, 133, 3, 133, 3540, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 3553, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3566, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3579, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3592, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3599, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3606, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 3618, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 5, 146, 3625, 8, 146, 10, 146, 12, 146, 3628, 9, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 3, 149, 3641, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 3648, 8, 150, 1, 151, 1, 151, 1, 151, 5, 151, 3653, 8, 151, 10, 151, 12, 151, 3656, 9, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3665, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3672, 8, 153, 1, 154, 3, 154, 3675, 8, 154, 1, 154, 1, 154, 3, 154, 3679, 8, 154, 1, 154, 1, 154, 3, 154, 3683, 8, 154, 1, 154, 3, 154, 3686, 8, 154, 1, 155, 1, 155, 3, 155, 3690, 8, 155, 1, 156, 1, 156, 1, 156, 0, 7, 46, 82, 150, 154, 156, 196, 216, 157, 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, 0, 36, 2, 0, 39, 39, 229, 229, 2, 0, 72, 72, 131, 131, 2, 0, 105, 105, 122, 122, 2, 0, 92, 92, 123, 123, 1, 0, 239, 240, 2, 0, 101, 101, 174, 174, 2, 0, 324, 324, 329, 329, 2, 0, 91, 91, 281, 281, 2, 0, 29, 29, 75, 75, 2, 0, 101, 101, 148, 148, 2, 0, 22, 22, 79, 79, 2, 0, 33, 33, 259, 259, 3, 0, 35, 35, 150, 150, 270, 270, 2, 0, 124, 124, 247, 247, 2, 0, 85, 85, 89, 89, 2, 0, 144, 144, 189, 189, 2, 0, 125, 125, 197, 197, 2, 0, 54, 54, 281, 281, 1, 0, 318, 319, 1, 0, 320, 322, 1, 0, 291, 293, 4, 0, 89, 89, 97, 97, 273, 273, 283, 283, 2, 0, 49, 49, 280, 280, 2, 0, 100, 100, 241, 241, 1, 0, 312, 317, 3, 0, 22, 22, 26, 26, 254, 254, 2, 0, 97, 97, 273, 273, 5, 0, 67, 67, 118, 118, 170, 171, 245, 245, 310, 310, 1, 0, 175, 178, 2, 0, 304, 304, 306, 306, 2, 0, 102, 102, 212, 212, 3, 0, 113, 113, 137, 137, 263, 263, 4, 0, 80, 80, 132, 132, 160, 160, 294, 294, 2, 0, 192, 192, 309, 309, 2, 0, 268, 268, 298, 298, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 49, 51, 52, 56, 56, 65, 67, 69, 72, 74, 75, 77, 78, 80, 82, 85, 87, 89, 89, 92, 92, 95, 95, 98, 102, 104, 104, 107, 113, 116, 116, 118, 121, 123, 124, 126, 126, 129, 129, 131, 132, 134, 135, 137, 137, 144, 151, 153, 153, 155, 155, 157, 157, 160, 171, 173, 180, 184, 189, 191, 193, 196, 196, 198, 213, 215, 220, 222, 233, 235, 237, 239, 247, 249, 259, 261, 264, 266, 271, 274, 276, 278, 280, 282, 284, 286, 289, 291, 295, 297, 299, 302, 303, 305, 311, 4239, 0, 317, 1, 0, 0, 0, 2, 322, 1, 0, 0, 0, 4, 324, 1, 0, 0, 0, 6, 328, 1, 0, 0, 0, 8, 332, 1, 0, 0, 0, 10, 336, 1, 0, 0, 0, 12, 340, 1, 0, 0, 0, 14, 344, 1, 0, 0, 0, 16, 1245, 1, 0, 0, 0, 18, 1248, 1, 0, 0, 0, 20, 1252, 1, 0, 0, 0, 22, 1262, 1, 0, 0, 0, 24, 1266, 1, 0, 0, 0, 26, 1280, 1, 0, 0, 0, 28, 1282, 1, 0, 0, 0, 30, 1296, 1, 0, 0, 0, 32, 1302, 1, 0, 0, 0, 34, 1306, 1, 0, 0, 0, 36, 1314, 1, 0, 0, 0, 38, 1320, 1, 0, 0, 0, 40, 1322, 1, 0, 0, 0, 42, 1359, 1, 0, 0, 0, 44, 1361, 1, 0, 0, 0, 46, 1363, 1, 0, 0, 0, 48, 1399, 1, 0, 0, 0, 50, 1403, 1, 0, 0, 0, 52, 1412, 1, 0, 0, 0, 54, 1452, 1, 0, 0, 0, 56, 1461, 1, 0, 0, 0, 58, 1511, 1, 0, 0, 0, 60, 1526, 1, 0, 0, 0, 62, 1530, 1, 0, 0, 0, 64, 1532, 1, 0, 0, 0, 66, 1539, 1, 0, 0, 0, 68, 1568, 1, 0, 0, 0, 70, 1577, 1, 0, 0, 0, 72, 1595, 1, 0, 0, 0, 74, 1597, 1, 0, 0, 0, 76, 1599, 1, 0, 0, 0, 78, 1603, 1, 0, 0, 0, 80, 1605, 1, 0, 0, 0, 82, 1607, 1, 0, 0, 0, 84, 1646, 1, 0, 0, 0, 86, 1662, 1, 0, 0, 0, 88, 1664, 1, 0, 0, 0, 90, 1673, 1, 0, 0, 0, 92, 1675, 1, 0, 0, 0, 94, 1683, 1, 0, 0, 0, 96, 1689, 1, 0, 0, 0, 98, 1691, 1, 0, 0, 0, 100, 1776, 1, 0, 0, 0, 102, 1791, 1, 0, 0, 0, 104, 1802, 1, 0, 0, 0, 106, 1823, 1, 0, 0, 0, 108, 1825, 1, 0, 0, 0, 110, 1838, 1, 0, 0, 0, 112, 1842, 1, 0, 0, 0, 114, 1852, 1, 0, 0, 0, 116, 1863, 1, 0, 0, 0, 118, 1874, 1, 0, 0, 0, 120, 1894, 1, 0, 0, 0, 122, 1959, 1, 0, 0, 0, 124, 2038, 1, 0, 0, 0, 126, 2065, 1, 0, 0, 0, 128, 2067, 1, 0, 0, 0, 130, 2074, 1, 0, 0, 0, 132, 2086, 1, 0, 0, 0, 134, 2088, 1, 0, 0, 0, 136, 2116, 1, 0, 0, 0, 138, 2123, 1, 0, 0, 0, 140, 2195, 1, 0, 0, 0, 142, 2215, 1, 0, 0, 0, 144, 2217, 1, 0, 0, 0, 146, 2221, 1, 0, 0, 0, 148, 2234, 1, 0, 0, 0, 150, 2243, 1, 0, 0, 0, 152, 2317, 1, 0, 0, 0, 154, 2323, 1, 0, 0, 0, 156, 2795, 1, 0, 0, 0, 158, 2810, 1, 0, 0, 0, 160, 2828, 1, 0, 0, 0, 162, 2833, 1, 0, 0, 0, 164, 2838, 1, 0, 0, 0, 166, 2842, 1, 0, 0, 0, 168, 2848, 1, 0, 0, 0, 170, 2861, 1, 0, 0, 0, 172, 2869, 1, 0, 0, 0, 174, 2882, 1, 0, 0, 0, 176, 2884, 1, 0, 0, 0, 178, 2890, 1, 0, 0, 0, 180, 2898, 1, 0, 0, 0, 182, 2906, 1, 0, 0, 0, 184, 2908, 1, 0, 0, 0, 186, 2910, 1, 0, 0, 0, 188, 2912, 1, 0, 0, 0, 190, 2914, 1, 0, 0, 0, 192, 2924, 1, 0, 0, 0, 194, 2926, 1, 0, 0, 0, 196, 2999, 1, 0, 0, 0, 198, 3017, 1, 0, 0, 0, 200, 3021, 1, 0, 0, 0, 202, 3023, 1, 0, 0, 0, 204, 3028, 1, 0, 0, 0, 206, 3098, 1, 0, 0, 0, 208, 3100, 1, 0, 0, 0, 210, 3117, 1, 0, 0, 0, 212, 3181, 1, 0, 0, 0, 214, 3192, 1, 0, 0, 0, 216, 3194, 1, 0, 0, 0, 218, 3234, 1, 0, 0, 0, 220, 3266, 1, 0, 0, 0, 222, 3268, 1, 0, 0, 0, 224, 3276, 1, 0, 0, 0, 226, 3283, 1, 0, 0, 0, 228, 3292, 1, 0, 0, 0, 230, 3299, 1, 0, 0, 0, 232, 3306, 1, 0, 0, 0, 234, 3308, 1, 0, 0, 0, 236, 3316, 1, 0, 0, 0, 238, 3327, 1, 0, 0, 0, 240, 3341, 1, 0, 0, 0, 242, 3356, 1, 0, 0, 0, 244, 3360, 1, 0, 0, 0, 246, 3382, 1, 0, 0, 0, 248, 3483, 1, 0, 0, 0, 250, 3485, 1, 0, 0, 0, 252, 3490, 1, 0, 0, 0, 254, 3495, 1, 0, 0, 0, 256, 3498, 1, 0, 0, 0, 258, 3515, 1, 0, 0, 0, 260, 3525, 1, 0, 0, 0, 262, 3530, 1, 0, 0, 0, 264, 3533, 1, 0, 0, 0, 266, 3539, 1, 0, 0, 0, 268, 3552, 1, 0, 0, 0, 270, 3565, 1, 0, 0, 0, 272, 3578, 1, 0, 0, 0, 274, 3591, 1, 0, 0, 0, 276, 3598, 1, 0, 0, 0, 278, 3605, 1, 0, 0, 0, 280, 3607, 1, 0, 0, 0, 282, 3609, 1, 0, 0, 0, 284, 3611, 1, 0, 0, 0, 286, 3613, 1, 0, 0, 0, 288, 3617, 1, 0, 0, 0, 290, 3619, 1, 0, 0, 0, 292, 3621, 1, 0, 0, 0, 294, 3629, 1, 0, 0, 0, 296, 3635, 1, 0, 0, 0, 298, 3640, 1, 0, 0, 0, 300, 3647, 1, 0, 0, 0, 302, 3649, 1, 0, 0, 0, 304, 3664, 1, 0, 0, 0, 306, 3671, 1, 0, 0, 0, 308, 3685, 1, 0, 0, 0, 310, 3689, 1, 0, 0, 0, 312, 3691, 1, 0, 0, 0, 314, 316, 3, 2, 1, 0, 315, 314, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 320, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 321, 5, 0, 0, 1, 321, 1, 1, 0, 0, 0, 322, 323, 3, 4, 2, 0, 323, 3, 1, 0, 0, 0, 324, 326, 3, 16, 8, 0, 325, 327, 5, 325, 0, 0, 326, 325, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 5, 1, 0, 0, 0, 328, 330, 3, 148, 74, 0, 329, 331, 5, 325, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 7, 1, 0, 0, 0, 332, 334, 3, 234, 117, 0, 333, 335, 5, 325, 0, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 9, 1, 0, 0, 0, 336, 338, 3, 196, 98, 0, 337, 339, 5, 325, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 11, 1, 0, 0, 0, 340, 342, 3, 216, 108, 0, 341, 343, 5, 325, 0, 0, 342, 341, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 13, 1, 0, 0, 0, 344, 345, 3, 236, 118, 0, 345, 346, 5, 0, 0, 1, 346, 15, 1, 0, 0, 0, 347, 1246, 3, 18, 9, 0, 348, 349, 5, 288, 0, 0, 349, 1246, 3, 276, 138, 0, 350, 351, 5, 53, 0, 0, 351, 355, 5, 42, 0, 0, 352, 353, 5, 119, 0, 0, 353, 354, 5, 182, 0, 0, 354, 356, 5, 94, 0, 0, 355, 352, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 358, 3, 282, 141, 0, 358, 359, 5, 290, 0, 0, 359, 362, 3, 306, 153, 0, 360, 361, 5, 46, 0, 0, 361, 363, 3, 180, 90, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 366, 1, 0, 0, 0, 364, 365, 5, 31, 0, 0, 365, 367, 3, 300, 150, 0, 366, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 369, 5, 304, 0, 0, 369, 371, 3, 32, 16, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 1246, 1, 0, 0, 0, 372, 373, 5, 83, 0, 0, 373, 376, 5, 42, 0, 0, 374, 375, 5, 119, 0, 0, 375, 377, 5, 94, 0, 0, 376, 374, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 380, 3, 280, 140, 0, 379, 381, 7, 0, 0, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 1246, 1, 0, 0, 0, 382, 383, 5, 53, 0, 0, 383, 387, 5, 243, 0, 0, 384, 385, 5, 119, 0, 0, 385, 386, 5, 182, 0, 0, 386, 388, 5, 94, 0, 0, 387, 384, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 392, 3, 278, 139, 0, 390, 391, 5, 31, 0, 0, 391, 393, 3, 300, 150, 0, 392, 390, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 396, 1, 0, 0, 0, 394, 395, 5, 304, 0, 0, 395, 397, 3, 32, 16, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 1246, 1, 0, 0, 0, 398, 399, 5, 83, 0, 0, 399, 402, 5, 243, 0, 0, 400, 401, 5, 119, 0, 0, 401, 403, 5, 94, 0, 0, 402, 400, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 3, 276, 138, 0, 405, 407, 7, 0, 0, 0, 406, 405, 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 1246, 1, 0, 0, 0, 408, 409, 5, 23, 0, 0, 409, 410, 5, 243, 0, 0, 410, 411, 3, 276, 138, 0, 411, 412, 5, 223, 0, 0, 412, 413, 5, 269, 0, 0, 413, 414, 3, 278, 139, 0, 414, 1246, 1, 0, 0, 0, 415, 416, 5, 23, 0, 0, 416, 417, 5, 243, 0, 0, 417, 418, 3, 276, 138, 0, 418, 419, 5, 251, 0, 0, 419, 420, 5, 31, 0, 0, 420, 421, 3, 300, 150, 0, 421, 1246, 1, 0, 0, 0, 422, 425, 5, 53, 0, 0, 423, 424, 5, 194, 0, 0, 424, 426, 5, 226, 0, 0, 425, 423, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 431, 5, 260, 0, 0, 428, 429, 5, 119, 0, 0, 429, 430, 5, 182, 0, 0, 430, 432, 5, 94, 0, 0, 431, 428, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 3, 270, 135, 0, 434, 436, 3, 114, 57, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 438, 5, 46, 0, 0, 438, 440, 3, 180, 90, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 443, 1, 0, 0, 0, 441, 442, 5, 304, 0, 0, 442, 444, 3, 32, 16, 0, 443, 441, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 451, 5, 28, 0, 0, 446, 452, 3, 18, 9, 0, 447, 448, 5, 1, 0, 0, 448, 449, 3, 18, 9, 0, 449, 450, 5, 2, 0, 0, 450, 452, 1, 0, 0, 0, 451, 446, 1, 0, 0, 0, 451, 447, 1, 0, 0, 0, 452, 458, 1, 0, 0, 0, 453, 455, 5, 304, 0, 0, 454, 456, 5, 179, 0, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 459, 5, 65, 0, 0, 458, 453, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 1246, 1, 0, 0, 0, 460, 463, 5, 53, 0, 0, 461, 462, 5, 194, 0, 0, 462, 464, 5, 226, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 469, 5, 260, 0, 0, 466, 467, 5, 119, 0, 0, 467, 468, 5, 182, 0, 0, 468, 470, 5, 94, 0, 0, 469, 466, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 3, 270, 135, 0, 472, 473, 5, 1, 0, 0, 473, 478, 3, 26, 13, 0, 474, 475, 5, 3, 0, 0, 475, 477, 3, 26, 13, 0, 476, 474, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 481, 1, 0, 0, 0, 480, 478, 1, 0, 0, 0, 481, 484, 5, 2, 0, 0, 482, 483, 5, 46, 0, 0, 483, 485, 3, 180, 90, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 487, 5, 304, 0, 0, 487, 489, 3, 32, 16, 0, 488, 486, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 1246, 1, 0, 0, 0, 490, 491, 5, 83, 0, 0, 491, 494, 5, 260, 0, 0, 492, 493, 5, 119, 0, 0, 493, 495, 5, 94, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 1246, 3, 268, 134, 0, 497, 498, 5, 127, 0, 0, 498, 499, 5, 130, 0, 0, 499, 501, 3, 268, 134, 0, 500, 502, 3, 116, 58, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 3, 18, 9, 0, 504, 1246, 1, 0, 0, 0, 505, 506, 5, 73, 0, 0, 506, 507, 5, 105, 0, 0, 507, 510, 3, 268, 134, 0, 508, 509, 5, 301, 0, 0, 509, 511, 3, 150, 75, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 1246, 1, 0, 0, 0, 512, 513, 5, 274, 0, 0, 513, 514, 5, 260, 0, 0, 514, 1246, 3, 268, 134, 0, 515, 516, 5, 46, 0, 0, 516, 517, 5, 190, 0, 0, 517, 518, 5, 260, 0, 0, 518, 519, 3, 268, 134, 0, 519, 522, 5, 133, 0, 0, 520, 523, 3, 180, 90, 0, 521, 523, 5, 183, 0, 0, 522, 520, 1, 0, 0, 0, 522, 521, 1, 0, 0, 0, 523, 1246, 1, 0, 0, 0, 524, 525, 5, 46, 0, 0, 525, 526, 5, 190, 0, 0, 526, 527, 5, 299, 0, 0, 527, 528, 3, 272, 136, 0, 528, 531, 5, 133, 0, 0, 529, 532, 3, 180, 90, 0, 530, 532, 5, 183, 0, 0, 531, 529, 1, 0, 0, 0, 531, 530, 1, 0, 0, 0, 532, 1246, 1, 0, 0, 0, 533, 534, 5, 46, 0, 0, 534, 535, 5, 190, 0, 0, 535, 536, 5, 44, 0, 0, 536, 537, 3, 288, 144, 0, 537, 540, 5, 133, 0, 0, 538, 541, 3, 180, 90, 0, 539, 541, 5, 183, 0, 0, 540, 538, 1, 0, 0, 0, 540, 539, 1, 0, 0, 0, 541, 1246, 1, 0, 0, 0, 542, 543, 5, 23, 0, 0, 543, 546, 5, 260, 0, 0, 544, 545, 5, 119, 0, 0, 545, 547, 5, 94, 0, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 3, 268, 134, 0, 549, 550, 5, 223, 0, 0, 550, 551, 5, 269, 0, 0, 551, 552, 3, 270, 135, 0, 552, 1246, 1, 0, 0, 0, 553, 554, 5, 23, 0, 0, 554, 557, 5, 260, 0, 0, 555, 556, 5, 119, 0, 0, 556, 558, 5, 94, 0, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 3, 268, 134, 0, 560, 561, 5, 19, 0, 0, 561, 565, 5, 44, 0, 0, 562, 563, 5, 119, 0, 0, 563, 564, 5, 182, 0, 0, 564, 566, 5, 94, 0, 0, 565, 562, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 3, 28, 14, 0, 568, 1246, 1, 0, 0, 0, 569, 570, 5, 23, 0, 0, 570, 573, 5, 260, 0, 0, 571, 572, 5, 119, 0, 0, 572, 574, 5, 94, 0, 0, 573, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 3, 268, 134, 0, 576, 577, 5, 223, 0, 0, 577, 580, 5, 44, 0, 0, 578, 579, 5, 119, 0, 0, 579, 581, 5, 94, 0, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 3, 288, 144, 0, 583, 584, 5, 269, 0, 0, 584, 585, 3, 290, 145, 0, 585, 1246, 1, 0, 0, 0, 586, 587, 5, 23, 0, 0, 587, 590, 5, 260, 0, 0, 588, 589, 5, 119, 0, 0, 589, 591, 5, 94, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 3, 268, 134, 0, 593, 594, 5, 83, 0, 0, 594, 597, 5, 44, 0, 0, 595, 596, 5, 119, 0, 0, 596, 598, 5, 94, 0, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 3, 288, 144, 0, 600, 1246, 1, 0, 0, 0, 601, 602, 5, 23, 0, 0, 602, 605, 5, 260, 0, 0, 603, 604, 5, 119, 0, 0, 604, 606, 5, 94, 0, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 3, 268, 134, 0, 608, 609, 5, 23, 0, 0, 609, 610, 5, 44, 0, 0, 610, 611, 3, 288, 144, 0, 611, 612, 5, 251, 0, 0, 612, 613, 5, 65, 0, 0, 613, 614, 5, 276, 0, 0, 614, 615, 3, 196, 98, 0, 615, 1246, 1, 0, 0, 0, 616, 617, 5, 23, 0, 0, 617, 620, 5, 260, 0, 0, 618, 619, 5, 119, 0, 0, 619, 621, 5, 94, 0, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 3, 268, 134, 0, 623, 624, 5, 23, 0, 0, 624, 625, 5, 44, 0, 0, 625, 626, 3, 288, 144, 0, 626, 627, 5, 83, 0, 0, 627, 628, 5, 182, 0, 0, 628, 629, 5, 183, 0, 0, 629, 1246, 1, 0, 0, 0, 630, 631, 5, 23, 0, 0, 631, 632, 5, 260, 0, 0, 632, 633, 3, 268, 134, 0, 633, 634, 5, 251, 0, 0, 634, 635, 5, 31, 0, 0, 635, 636, 3, 300, 150, 0, 636, 1246, 1, 0, 0, 0, 637, 638, 5, 23, 0, 0, 638, 639, 5, 260, 0, 0, 639, 640, 3, 268, 134, 0, 640, 641, 5, 251, 0, 0, 641, 642, 5, 216, 0, 0, 642, 643, 3, 34, 17, 0, 643, 1246, 1, 0, 0, 0, 644, 645, 5, 23, 0, 0, 645, 646, 5, 260, 0, 0, 646, 647, 3, 268, 134, 0, 647, 648, 5, 93, 0, 0, 648, 661, 3, 284, 142, 0, 649, 658, 5, 1, 0, 0, 650, 655, 3, 230, 115, 0, 651, 652, 5, 3, 0, 0, 652, 654, 3, 230, 115, 0, 653, 651, 1, 0, 0, 0, 654, 657, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 659, 1, 0, 0, 0, 657, 655, 1, 0, 0, 0, 658, 650, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 5, 2, 0, 0, 661, 649, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 665, 1, 0, 0, 0, 663, 664, 5, 301, 0, 0, 664, 666, 3, 150, 75, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 1246, 1, 0, 0, 0, 667, 668, 5, 24, 0, 0, 668, 671, 3, 268, 134, 0, 669, 670, 5, 304, 0, 0, 670, 672, 3, 32, 16, 0, 671, 669, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 1246, 1, 0, 0, 0, 673, 676, 5, 53, 0, 0, 674, 675, 5, 194, 0, 0, 675, 677, 5, 226, 0, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 167, 0, 0, 679, 683, 5, 299, 0, 0, 680, 681, 5, 119, 0, 0, 681, 682, 5, 182, 0, 0, 682, 684, 5, 94, 0, 0, 683, 680, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 689, 3, 274, 137, 0, 686, 687, 5, 109, 0, 0, 687, 688, 5, 208, 0, 0, 688, 690, 3, 190, 95, 0, 689, 686, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 693, 1, 0, 0, 0, 691, 692, 5, 46, 0, 0, 692, 694, 3, 180, 90, 0, 693, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 696, 5, 304, 0, 0, 696, 698, 3, 32, 16, 0, 697, 695, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 28, 0, 0, 700, 701, 3, 18, 9, 0, 701, 1246, 1, 0, 0, 0, 702, 705, 5, 53, 0, 0, 703, 704, 5, 194, 0, 0, 704, 706, 5, 226, 0, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 5, 299, 0, 0, 708, 711, 3, 274, 137, 0, 709, 710, 5, 46, 0, 0, 710, 712, 3, 180, 90, 0, 711, 709, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 715, 1, 0, 0, 0, 713, 714, 5, 246, 0, 0, 714, 716, 7, 1, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 719, 1, 0, 0, 0, 717, 718, 5, 304, 0, 0, 718, 720, 3, 32, 16, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 5, 28, 0, 0, 722, 723, 3, 18, 9, 0, 723, 1246, 1, 0, 0, 0, 724, 725, 5, 222, 0, 0, 725, 726, 5, 167, 0, 0, 726, 727, 5, 299, 0, 0, 727, 1246, 3, 272, 136, 0, 728, 729, 5, 83, 0, 0, 729, 730, 5, 167, 0, 0, 730, 733, 5, 299, 0, 0, 731, 732, 5, 119, 0, 0, 732, 734, 5, 94, 0, 0, 733, 731, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 1246, 3, 272, 136, 0, 736, 737, 5, 23, 0, 0, 737, 738, 5, 167, 0, 0, 738, 741, 5, 299, 0, 0, 739, 740, 5, 119, 0, 0, 740, 742, 5, 94, 0, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 3, 272, 136, 0, 744, 745, 5, 223, 0, 0, 745, 746, 5, 269, 0, 0, 746, 747, 3, 274, 137, 0, 747, 1246, 1, 0, 0, 0, 748, 749, 5, 23, 0, 0, 749, 750, 5, 167, 0, 0, 750, 751, 5, 299, 0, 0, 751, 752, 3, 272, 136, 0, 752, 753, 5, 251, 0, 0, 753, 754, 5, 216, 0, 0, 754, 755, 3, 34, 17, 0, 755, 1246, 1, 0, 0, 0, 756, 757, 5, 83, 0, 0, 757, 760, 5, 299, 0, 0, 758, 759, 5, 119, 0, 0, 759, 761, 5, 94, 0, 0, 760, 758, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 1246, 3, 272, 136, 0, 763, 764, 5, 23, 0, 0, 764, 765, 5, 299, 0, 0, 765, 766, 3, 272, 136, 0, 766, 767, 5, 223, 0, 0, 767, 768, 5, 269, 0, 0, 768, 769, 3, 274, 137, 0, 769, 1246, 1, 0, 0, 0, 770, 771, 5, 23, 0, 0, 771, 772, 5, 299, 0, 0, 772, 773, 3, 272, 136, 0, 773, 774, 5, 251, 0, 0, 774, 775, 5, 31, 0, 0, 775, 776, 3, 300, 150, 0, 776, 1246, 1, 0, 0, 0, 777, 778, 5, 37, 0, 0, 778, 779, 3, 284, 142, 0, 779, 788, 5, 1, 0, 0, 780, 785, 3, 230, 115, 0, 781, 782, 5, 3, 0, 0, 782, 784, 3, 230, 115, 0, 783, 781, 1, 0, 0, 0, 784, 787, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 789, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 788, 780, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 5, 2, 0, 0, 791, 1246, 1, 0, 0, 0, 792, 795, 5, 53, 0, 0, 793, 794, 5, 194, 0, 0, 794, 796, 5, 226, 0, 0, 795, 793, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 1246, 3, 236, 118, 0, 798, 799, 5, 83, 0, 0, 799, 802, 5, 107, 0, 0, 800, 801, 5, 119, 0, 0, 801, 803, 5, 94, 0, 0, 802, 800, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 1246, 3, 240, 120, 0, 805, 806, 5, 53, 0, 0, 806, 807, 5, 235, 0, 0, 807, 811, 3, 306, 153, 0, 808, 809, 5, 304, 0, 0, 809, 810, 5, 20, 0, 0, 810, 812, 3, 298, 149, 0, 811, 808, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 815, 1, 0, 0, 0, 813, 814, 5, 122, 0, 0, 814, 816, 3, 280, 140, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 1246, 1, 0, 0, 0, 817, 818, 5, 83, 0, 0, 818, 819, 5, 235, 0, 0, 819, 822, 3, 306, 153, 0, 820, 821, 5, 122, 0, 0, 821, 823, 3, 280, 140, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 1246, 1, 0, 0, 0, 824, 825, 5, 110, 0, 0, 825, 830, 3, 304, 152, 0, 826, 827, 5, 3, 0, 0, 827, 829, 3, 304, 152, 0, 828, 826, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 833, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 834, 5, 269, 0, 0, 834, 839, 3, 300, 150, 0, 835, 836, 5, 3, 0, 0, 836, 838, 3, 300, 150, 0, 837, 835, 1, 0, 0, 0, 838, 841, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 845, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 843, 5, 304, 0, 0, 843, 844, 5, 20, 0, 0, 844, 846, 5, 193, 0, 0, 845, 842, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 850, 1, 0, 0, 0, 847, 848, 5, 111, 0, 0, 848, 849, 5, 36, 0, 0, 849, 851, 3, 298, 149, 0, 850, 847, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 854, 1, 0, 0, 0, 852, 853, 5, 122, 0, 0, 853, 855, 3, 280, 140, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 1246, 1, 0, 0, 0, 856, 867, 5, 110, 0, 0, 857, 862, 3, 304, 152, 0, 858, 859, 5, 3, 0, 0, 859, 861, 3, 304, 152, 0, 860, 858, 1, 0, 0, 0, 861, 864, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 868, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 865, 866, 5, 22, 0, 0, 866, 868, 5, 215, 0, 0, 867, 857, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 5, 190, 0, 0, 870, 871, 3, 264, 132, 0, 871, 872, 5, 269, 0, 0, 872, 876, 3, 300, 150, 0, 873, 874, 5, 304, 0, 0, 874, 875, 5, 110, 0, 0, 875, 877, 5, 193, 0, 0, 876, 873, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 1246, 1, 0, 0, 0, 878, 882, 5, 233, 0, 0, 879, 880, 5, 20, 0, 0, 880, 881, 5, 193, 0, 0, 881, 883, 5, 103, 0, 0, 882, 879, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 889, 3, 304, 152, 0, 885, 886, 5, 3, 0, 0, 886, 888, 3, 304, 152, 0, 887, 885, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 892, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 892, 893, 5, 105, 0, 0, 893, 898, 3, 300, 150, 0, 894, 895, 5, 3, 0, 0, 895, 897, 3, 300, 150, 0, 896, 894, 1, 0, 0, 0, 897, 900, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 904, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 901, 902, 5, 111, 0, 0, 902, 903, 5, 36, 0, 0, 903, 905, 3, 298, 149, 0, 904, 901, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 908, 1, 0, 0, 0, 906, 907, 5, 122, 0, 0, 907, 909, 3, 280, 140, 0, 908, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 1246, 1, 0, 0, 0, 910, 914, 5, 233, 0, 0, 911, 912, 5, 110, 0, 0, 912, 913, 5, 193, 0, 0, 913, 915, 5, 103, 0, 0, 914, 911, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 926, 1, 0, 0, 0, 916, 921, 3, 304, 152, 0, 917, 918, 5, 3, 0, 0, 918, 920, 3, 304, 152, 0, 919, 917, 1, 0, 0, 0, 920, 923, 1, 0, 0, 0, 921, 919, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 927, 1, 0, 0, 0, 923, 921, 1, 0, 0, 0, 924, 925, 5, 22, 0, 0, 925, 927, 5, 215, 0, 0, 926, 916, 1, 0, 0, 0, 926, 924, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 5, 190, 0, 0, 929, 930, 3, 264, 132, 0, 930, 931, 5, 105, 0, 0, 931, 932, 3, 300, 150, 0, 932, 1246, 1, 0, 0, 0, 933, 944, 5, 74, 0, 0, 934, 939, 3, 260, 130, 0, 935, 936, 5, 3, 0, 0, 936, 938, 3, 260, 130, 0, 937, 935, 1, 0, 0, 0, 938, 941, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 945, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 942, 943, 5, 22, 0, 0, 943, 945, 5, 215, 0, 0, 944, 934, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 947, 5, 190, 0, 0, 947, 948, 3, 264, 132, 0, 948, 949, 5, 269, 0, 0, 949, 950, 3, 300, 150, 0, 950, 1246, 1, 0, 0, 0, 951, 952, 5, 251, 0, 0, 952, 956, 5, 235, 0, 0, 953, 957, 5, 22, 0, 0, 954, 957, 5, 180, 0, 0, 955, 957, 3, 306, 153, 0, 956, 953, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 956, 955, 1, 0, 0, 0, 957, 960, 1, 0, 0, 0, 958, 959, 5, 122, 0, 0, 959, 961, 3, 280, 140, 0, 960, 958, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 1246, 1, 0, 0, 0, 962, 963, 5, 253, 0, 0, 963, 966, 5, 112, 0, 0, 964, 965, 5, 190, 0, 0, 965, 967, 3, 264, 132, 0, 966, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 1246, 1, 0, 0, 0, 968, 980, 5, 95, 0, 0, 969, 970, 5, 1, 0, 0, 970, 975, 3, 224, 112, 0, 971, 972, 5, 3, 0, 0, 972, 974, 3, 224, 112, 0, 973, 971, 1, 0, 0, 0, 974, 977, 1, 0, 0, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 978, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 978, 979, 5, 2, 0, 0, 979, 981, 1, 0, 0, 0, 980, 969, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 1246, 3, 16, 8, 0, 983, 984, 5, 95, 0, 0, 984, 986, 5, 24, 0, 0, 985, 987, 5, 297, 0, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 1246, 3, 16, 8, 0, 989, 990, 5, 253, 0, 0, 990, 991, 5, 53, 0, 0, 991, 992, 5, 260, 0, 0, 992, 1246, 3, 268, 134, 0, 993, 994, 5, 253, 0, 0, 994, 995, 5, 53, 0, 0, 995, 996, 5, 243, 0, 0, 996, 1246, 3, 276, 138, 0, 997, 998, 5, 253, 0, 0, 998, 999, 5, 53, 0, 0, 999, 1000, 5, 299, 0, 0, 1000, 1246, 3, 272, 136, 0, 1001, 1002, 5, 253, 0, 0, 1002, 1003, 5, 53, 0, 0, 1003, 1004, 5, 167, 0, 0, 1004, 1005, 5, 299, 0, 0, 1005, 1246, 3, 272, 136, 0, 1006, 1007, 5, 253, 0, 0, 1007, 1008, 5, 53, 0, 0, 1008, 1009, 5, 107, 0, 0, 1009, 1246, 3, 284, 142, 0, 1010, 1011, 5, 253, 0, 0, 1011, 1014, 5, 261, 0, 0, 1012, 1013, 7, 2, 0, 0, 1013, 1015, 3, 276, 138, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1022, 1, 0, 0, 0, 1016, 1017, 5, 154, 0, 0, 1017, 1020, 3, 180, 90, 0, 1018, 1019, 5, 90, 0, 0, 1019, 1021, 3, 180, 90, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1023, 1, 0, 0, 0, 1022, 1016, 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1246, 1, 0, 0, 0, 1024, 1025, 5, 253, 0, 0, 1025, 1028, 5, 244, 0, 0, 1026, 1027, 7, 2, 0, 0, 1027, 1029, 3, 280, 140, 0, 1028, 1026, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1036, 1, 0, 0, 0, 1030, 1031, 5, 154, 0, 0, 1031, 1034, 3, 180, 90, 0, 1032, 1033, 5, 90, 0, 0, 1033, 1035, 3, 180, 90, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 1, 0, 0, 0, 1036, 1030, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1246, 1, 0, 0, 0, 1038, 1039, 5, 253, 0, 0, 1039, 1046, 5, 43, 0, 0, 1040, 1041, 5, 154, 0, 0, 1041, 1044, 3, 180, 90, 0, 1042, 1043, 5, 90, 0, 0, 1043, 1045, 3, 180, 90, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 1, 0, 0, 0, 1046, 1040, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1246, 1, 0, 0, 0, 1048, 1049, 5, 253, 0, 0, 1049, 1050, 5, 45, 0, 0, 1050, 1051, 7, 2, 0, 0, 1051, 1058, 3, 266, 133, 0, 1052, 1053, 5, 154, 0, 0, 1053, 1056, 3, 180, 90, 0, 1054, 1055, 5, 90, 0, 0, 1055, 1057, 3, 180, 90, 0, 1056, 1054, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1059, 1, 0, 0, 0, 1058, 1052, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1246, 1, 0, 0, 0, 1060, 1061, 5, 253, 0, 0, 1061, 1062, 5, 256, 0, 0, 1062, 1063, 5, 103, 0, 0, 1063, 1246, 3, 266, 133, 0, 1064, 1065, 5, 253, 0, 0, 1065, 1066, 5, 256, 0, 0, 1066, 1067, 5, 103, 0, 0, 1067, 1068, 5, 1, 0, 0, 1068, 1069, 3, 18, 9, 0, 1069, 1070, 5, 2, 0, 0, 1070, 1246, 1, 0, 0, 0, 1071, 1073, 5, 253, 0, 0, 1072, 1074, 5, 56, 0, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1078, 5, 236, 0, 0, 1076, 1077, 7, 2, 0, 0, 1077, 1079, 3, 280, 140, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1246, 1, 0, 0, 0, 1080, 1081, 5, 253, 0, 0, 1081, 1082, 5, 235, 0, 0, 1082, 1085, 5, 112, 0, 0, 1083, 1084, 7, 2, 0, 0, 1084, 1086, 3, 280, 140, 0, 1085, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1246, 1, 0, 0, 0, 1087, 1088, 5, 76, 0, 0, 1088, 1246, 3, 266, 133, 0, 1089, 1090, 5, 75, 0, 0, 1090, 1246, 3, 266, 133, 0, 1091, 1092, 5, 253, 0, 0, 1092, 1095, 5, 108, 0, 0, 1093, 1094, 7, 2, 0, 0, 1094, 1096, 3, 276, 138, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1103, 1, 0, 0, 0, 1097, 1098, 5, 154, 0, 0, 1098, 1101, 3, 180, 90, 0, 1099, 1100, 5, 90, 0, 0, 1100, 1102, 3, 180, 90, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 1, 0, 0, 0, 1103, 1097, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1246, 1, 0, 0, 0, 1105, 1106, 5, 253, 0, 0, 1106, 1113, 5, 250, 0, 0, 1107, 1108, 5, 154, 0, 0, 1108, 1111, 3, 180, 90, 0, 1109, 1110, 5, 90, 0, 0, 1110, 1112, 3, 180, 90, 0, 1111, 1109, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1107, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1246, 1, 0, 0, 0, 1115, 1116, 5, 251, 0, 0, 1116, 1117, 5, 250, 0, 0, 1117, 1118, 5, 31, 0, 0, 1118, 1246, 3, 310, 155, 0, 1119, 1120, 5, 227, 0, 0, 1120, 1121, 5, 250, 0, 0, 1121, 1246, 5, 31, 0, 0, 1122, 1123, 5, 251, 0, 0, 1123, 1124, 5, 250, 0, 0, 1124, 1125, 3, 292, 146, 0, 1125, 1126, 5, 312, 0, 0, 1126, 1127, 3, 148, 74, 0, 1127, 1246, 1, 0, 0, 0, 1128, 1129, 5, 227, 0, 0, 1129, 1130, 5, 250, 0, 0, 1130, 1246, 3, 292, 146, 0, 1131, 1132, 5, 255, 0, 0, 1132, 1141, 5, 271, 0, 0, 1133, 1138, 3, 226, 113, 0, 1134, 1135, 5, 3, 0, 0, 1135, 1137, 3, 226, 113, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1133, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1246, 1, 0, 0, 0, 1143, 1145, 5, 47, 0, 0, 1144, 1146, 5, 307, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1246, 1, 0, 0, 0, 1147, 1149, 5, 237, 0, 0, 1148, 1150, 5, 307, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1246, 1, 0, 0, 0, 1151, 1152, 5, 214, 0, 0, 1152, 1153, 3, 306, 153, 0, 1153, 1154, 5, 105, 0, 0, 1154, 1155, 3, 16, 8, 0, 1155, 1246, 1, 0, 0, 0, 1156, 1157, 5, 68, 0, 0, 1157, 1158, 5, 214, 0, 0, 1158, 1246, 3, 306, 153, 0, 1159, 1160, 5, 93, 0, 0, 1160, 1170, 3, 306, 153, 0, 1161, 1162, 5, 290, 0, 0, 1162, 1167, 3, 148, 74, 0, 1163, 1164, 5, 3, 0, 0, 1164, 1166, 3, 148, 74, 0, 1165, 1163, 1, 0, 0, 0, 1166, 1169, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1171, 1, 0, 0, 0, 1169, 1167, 1, 0, 0, 0, 1170, 1161, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1246, 1, 0, 0, 0, 1172, 1173, 5, 93, 0, 0, 1173, 1174, 5, 121, 0, 0, 1174, 1184, 3, 180, 90, 0, 1175, 1176, 5, 290, 0, 0, 1176, 1181, 3, 148, 74, 0, 1177, 1178, 5, 3, 0, 0, 1178, 1180, 3, 148, 74, 0, 1179, 1177, 1, 0, 0, 0, 1180, 1183, 1, 0, 0, 0, 1181, 1179, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1185, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1184, 1175, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1246, 1, 0, 0, 0, 1186, 1187, 5, 76, 0, 0, 1187, 1188, 5, 126, 0, 0, 1188, 1246, 3, 306, 153, 0, 1189, 1190, 5, 76, 0, 0, 1190, 1191, 5, 198, 0, 0, 1191, 1246, 3, 306, 153, 0, 1192, 1193, 5, 251, 0, 0, 1193, 1194, 5, 205, 0, 0, 1194, 1246, 3, 234, 117, 0, 1195, 1196, 5, 251, 0, 0, 1196, 1197, 5, 267, 0, 0, 1197, 1200, 5, 311, 0, 0, 1198, 1201, 5, 157, 0, 0, 1199, 1201, 3, 148, 74, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1199, 1, 0, 0, 0, 1201, 1246, 1, 0, 0, 0, 1202, 1203, 5, 287, 0, 0, 1203, 1204, 3, 268, 134, 0, 1204, 1205, 5, 251, 0, 0, 1205, 1210, 3, 222, 111, 0, 1206, 1207, 5, 3, 0, 0, 1207, 1209, 3, 222, 111, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1215, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1214, 5, 301, 0, 0, 1214, 1216, 3, 150, 75, 0, 1215, 1213, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1246, 1, 0, 0, 0, 1217, 1218, 5, 169, 0, 0, 1218, 1219, 5, 130, 0, 0, 1219, 1224, 3, 268, 134, 0, 1220, 1222, 5, 28, 0, 0, 1221, 1220, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, 3, 306, 153, 0, 1224, 1221, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 5, 290, 0, 0, 1227, 1228, 3, 82, 41, 0, 1228, 1229, 5, 190, 0, 0, 1229, 1231, 3, 148, 74, 0, 1230, 1232, 3, 206, 103, 0, 1231, 1230, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1246, 1, 0, 0, 0, 1235, 1236, 5, 253, 0, 0, 1236, 1237, 5, 46, 0, 0, 1237, 1238, 5, 190, 0, 0, 1238, 1239, 5, 260, 0, 0, 1239, 1246, 3, 268, 134, 0, 1240, 1241, 5, 253, 0, 0, 1241, 1242, 5, 46, 0, 0, 1242, 1243, 5, 190, 0, 0, 1243, 1244, 5, 44, 0, 0, 1244, 1246, 3, 288, 144, 0, 1245, 347, 1, 0, 0, 0, 1245, 348, 1, 0, 0, 0, 1245, 350, 1, 0, 0, 0, 1245, 372, 1, 0, 0, 0, 1245, 382, 1, 0, 0, 0, 1245, 398, 1, 0, 0, 0, 1245, 408, 1, 0, 0, 0, 1245, 415, 1, 0, 0, 0, 1245, 422, 1, 0, 0, 0, 1245, 460, 1, 0, 0, 0, 1245, 490, 1, 0, 0, 0, 1245, 497, 1, 0, 0, 0, 1245, 505, 1, 0, 0, 0, 1245, 512, 1, 0, 0, 0, 1245, 515, 1, 0, 0, 0, 1245, 524, 1, 0, 0, 0, 1245, 533, 1, 0, 0, 0, 1245, 542, 1, 0, 0, 0, 1245, 553, 1, 0, 0, 0, 1245, 569, 1, 0, 0, 0, 1245, 586, 1, 0, 0, 0, 1245, 601, 1, 0, 0, 0, 1245, 616, 1, 0, 0, 0, 1245, 630, 1, 0, 0, 0, 1245, 637, 1, 0, 0, 0, 1245, 644, 1, 0, 0, 0, 1245, 667, 1, 0, 0, 0, 1245, 673, 1, 0, 0, 0, 1245, 702, 1, 0, 0, 0, 1245, 724, 1, 0, 0, 0, 1245, 728, 1, 0, 0, 0, 1245, 736, 1, 0, 0, 0, 1245, 748, 1, 0, 0, 0, 1245, 756, 1, 0, 0, 0, 1245, 763, 1, 0, 0, 0, 1245, 770, 1, 0, 0, 0, 1245, 777, 1, 0, 0, 0, 1245, 792, 1, 0, 0, 0, 1245, 798, 1, 0, 0, 0, 1245, 805, 1, 0, 0, 0, 1245, 817, 1, 0, 0, 0, 1245, 824, 1, 0, 0, 0, 1245, 856, 1, 0, 0, 0, 1245, 878, 1, 0, 0, 0, 1245, 910, 1, 0, 0, 0, 1245, 933, 1, 0, 0, 0, 1245, 951, 1, 0, 0, 0, 1245, 962, 1, 0, 0, 0, 1245, 968, 1, 0, 0, 0, 1245, 983, 1, 0, 0, 0, 1245, 989, 1, 0, 0, 0, 1245, 993, 1, 0, 0, 0, 1245, 997, 1, 0, 0, 0, 1245, 1001, 1, 0, 0, 0, 1245, 1006, 1, 0, 0, 0, 1245, 1010, 1, 0, 0, 0, 1245, 1024, 1, 0, 0, 0, 1245, 1038, 1, 0, 0, 0, 1245, 1048, 1, 0, 0, 0, 1245, 1060, 1, 0, 0, 0, 1245, 1064, 1, 0, 0, 0, 1245, 1071, 1, 0, 0, 0, 1245, 1080, 1, 0, 0, 0, 1245, 1087, 1, 0, 0, 0, 1245, 1089, 1, 0, 0, 0, 1245, 1091, 1, 0, 0, 0, 1245, 1105, 1, 0, 0, 0, 1245, 1115, 1, 0, 0, 0, 1245, 1119, 1, 0, 0, 0, 1245, 1122, 1, 0, 0, 0, 1245, 1128, 1, 0, 0, 0, 1245, 1131, 1, 0, 0, 0, 1245, 1143, 1, 0, 0, 0, 1245, 1147, 1, 0, 0, 0, 1245, 1151, 1, 0, 0, 0, 1245, 1156, 1, 0, 0, 0, 1245, 1159, 1, 0, 0, 0, 1245, 1172, 1, 0, 0, 0, 1245, 1186, 1, 0, 0, 0, 1245, 1189, 1, 0, 0, 0, 1245, 1192, 1, 0, 0, 0, 1245, 1195, 1, 0, 0, 0, 1245, 1202, 1, 0, 0, 0, 1245, 1217, 1, 0, 0, 0, 1245, 1235, 1, 0, 0, 0, 1245, 1240, 1, 0, 0, 0, 1246, 17, 1, 0, 0, 0, 1247, 1249, 3, 20, 10, 0, 1248, 1247, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1251, 3, 22, 11, 0, 1251, 19, 1, 0, 0, 0, 1252, 1253, 5, 304, 0, 0, 1253, 1258, 3, 236, 118, 0, 1254, 1255, 5, 3, 0, 0, 1255, 1257, 3, 236, 118, 0, 1256, 1254, 1, 0, 0, 0, 1257, 1260, 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 21, 1, 0, 0, 0, 1260, 1258, 1, 0, 0, 0, 1261, 1263, 3, 24, 12, 0, 1262, 1261, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1265, 3, 40, 20, 0, 1265, 23, 1, 0, 0, 0, 1266, 1268, 5, 304, 0, 0, 1267, 1269, 5, 221, 0, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1275, 3, 68, 34, 0, 1271, 1272, 5, 3, 0, 0, 1272, 1274, 3, 68, 34, 0, 1273, 1271, 1, 0, 0, 0, 1274, 1277, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 25, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1278, 1281, 3, 28, 14, 0, 1279, 1281, 3, 30, 15, 0, 1280, 1278, 1, 0, 0, 0, 1280, 1279, 1, 0, 0, 0, 1281, 27, 1, 0, 0, 0, 1282, 1283, 3, 290, 145, 0, 1283, 1286, 3, 196, 98, 0, 1284, 1285, 5, 182, 0, 0, 1285, 1287, 5, 183, 0, 0, 1286, 1284, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1290, 1, 0, 0, 0, 1288, 1289, 5, 46, 0, 0, 1289, 1291, 3, 180, 90, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1294, 1, 0, 0, 0, 1292, 1293, 5, 304, 0, 0, 1293, 1295, 3, 32, 16, 0, 1294, 1292, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 29, 1, 0, 0, 0, 1296, 1297, 5, 154, 0, 0, 1297, 1300, 3, 268, 134, 0, 1298, 1299, 7, 3, 0, 0, 1299, 1301, 5, 216, 0, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 31, 1, 0, 0, 0, 1302, 1303, 5, 1, 0, 0, 1303, 1304, 3, 34, 17, 0, 1304, 1305, 5, 2, 0, 0, 1305, 33, 1, 0, 0, 0, 1306, 1311, 3, 36, 18, 0, 1307, 1308, 5, 3, 0, 0, 1308, 1310, 3, 36, 18, 0, 1309, 1307, 1, 0, 0, 0, 1310, 1313, 1, 0, 0, 0, 1311, 1309, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 35, 1, 0, 0, 0, 1313, 1311, 1, 0, 0, 0, 1314, 1315, 3, 306, 153, 0, 1315, 1316, 5, 312, 0, 0, 1316, 1317, 3, 38, 19, 0, 1317, 37, 1, 0, 0, 0, 1318, 1321, 5, 70, 0, 0, 1319, 1321, 3, 148, 74, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1319, 1, 0, 0, 0, 1321, 39, 1, 0, 0, 0, 1322, 1333, 3, 46, 23, 0, 1323, 1324, 5, 195, 0, 0, 1324, 1325, 5, 36, 0, 0, 1325, 1330, 3, 50, 25, 0, 1326, 1327, 5, 3, 0, 0, 1327, 1329, 3, 50, 25, 0, 1328, 1326, 1, 0, 0, 0, 1329, 1332, 1, 0, 0, 0, 1330, 1328, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1333, 1323, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1340, 1, 0, 0, 0, 1335, 1336, 5, 188, 0, 0, 1336, 1338, 3, 44, 22, 0, 1337, 1339, 7, 4, 0, 0, 1338, 1337, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1341, 1, 0, 0, 0, 1340, 1335, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1355, 1, 0, 0, 0, 1342, 1343, 5, 155, 0, 0, 1343, 1356, 3, 42, 21, 0, 1344, 1345, 5, 98, 0, 0, 1345, 1347, 7, 5, 0, 0, 1346, 1348, 3, 44, 22, 0, 1347, 1346, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1353, 7, 4, 0, 0, 1350, 1354, 5, 192, 0, 0, 1351, 1352, 5, 304, 0, 0, 1352, 1354, 5, 266, 0, 0, 1353, 1350, 1, 0, 0, 0, 1353, 1351, 1, 0, 0, 0, 1354, 1356, 1, 0, 0, 0, 1355, 1342, 1, 0, 0, 0, 1355, 1344, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 41, 1, 0, 0, 0, 1357, 1360, 5, 22, 0, 0, 1358, 1360, 3, 44, 22, 0, 1359, 1357, 1, 0, 0, 0, 1359, 1358, 1, 0, 0, 0, 1360, 43, 1, 0, 0, 0, 1361, 1362, 7, 6, 0, 0, 1362, 45, 1, 0, 0, 0, 1363, 1364, 6, 23, -1, 0, 1364, 1365, 3, 48, 24, 0, 1365, 1380, 1, 0, 0, 0, 1366, 1367, 10, 2, 0, 0, 1367, 1369, 5, 128, 0, 0, 1368, 1370, 3, 70, 35, 0, 1369, 1368, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1379, 3, 46, 23, 3, 1372, 1373, 10, 1, 0, 0, 1373, 1375, 7, 7, 0, 0, 1374, 1376, 3, 70, 35, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1379, 3, 46, 23, 2, 1378, 1366, 1, 0, 0, 0, 1378, 1372, 1, 0, 0, 0, 1379, 1382, 1, 0, 0, 0, 1380, 1378, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 47, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1383, 1400, 3, 52, 26, 0, 1384, 1385, 5, 260, 0, 0, 1385, 1400, 3, 268, 134, 0, 1386, 1387, 5, 296, 0, 0, 1387, 1392, 3, 148, 74, 0, 1388, 1389, 5, 3, 0, 0, 1389, 1391, 3, 148, 74, 0, 1390, 1388, 1, 0, 0, 0, 1391, 1394, 1, 0, 0, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1400, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1395, 1396, 5, 1, 0, 0, 1396, 1397, 3, 40, 20, 0, 1397, 1398, 5, 2, 0, 0, 1398, 1400, 1, 0, 0, 0, 1399, 1383, 1, 0, 0, 0, 1399, 1384, 1, 0, 0, 0, 1399, 1386, 1, 0, 0, 0, 1399, 1395, 1, 0, 0, 0, 1400, 49, 1, 0, 0, 0, 1401, 1404, 3, 288, 144, 0, 1402, 1404, 3, 148, 74, 0, 1403, 1401, 1, 0, 0, 0, 1403, 1402, 1, 0, 0, 0, 1404, 1406, 1, 0, 0, 0, 1405, 1407, 7, 8, 0, 0, 1406, 1405, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1410, 1, 0, 0, 0, 1408, 1409, 5, 185, 0, 0, 1409, 1411, 7, 9, 0, 0, 1410, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 51, 1, 0, 0, 0, 1412, 1414, 5, 248, 0, 0, 1413, 1415, 3, 70, 35, 0, 1414, 1413, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1426, 3, 54, 27, 0, 1417, 1418, 5, 105, 0, 0, 1418, 1423, 3, 82, 41, 0, 1419, 1420, 5, 3, 0, 0, 1420, 1422, 3, 82, 41, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1427, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1417, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1430, 1, 0, 0, 0, 1428, 1429, 5, 301, 0, 0, 1429, 1431, 3, 150, 75, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1435, 1, 0, 0, 0, 1432, 1433, 5, 114, 0, 0, 1433, 1434, 5, 36, 0, 0, 1434, 1436, 3, 56, 28, 0, 1435, 1432, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1439, 1, 0, 0, 0, 1437, 1438, 5, 117, 0, 0, 1438, 1440, 3, 150, 75, 0, 1439, 1437, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1450, 1, 0, 0, 0, 1441, 1442, 5, 303, 0, 0, 1442, 1447, 3, 64, 32, 0, 1443, 1444, 5, 3, 0, 0, 1444, 1446, 3, 64, 32, 0, 1445, 1443, 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, 1441, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 53, 1, 0, 0, 0, 1452, 1457, 3, 72, 36, 0, 1453, 1454, 5, 3, 0, 0, 1454, 1456, 3, 72, 36, 0, 1455, 1453, 1, 0, 0, 0, 1456, 1459, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 55, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1460, 1462, 3, 70, 35, 0, 1461, 1460, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1468, 3, 58, 29, 0, 1464, 1465, 5, 3, 0, 0, 1465, 1467, 3, 58, 29, 0, 1466, 1464, 1, 0, 0, 0, 1467, 1470, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 57, 1, 0, 0, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1512, 3, 60, 30, 0, 1472, 1473, 5, 238, 0, 0, 1473, 1482, 5, 1, 0, 0, 1474, 1479, 3, 60, 30, 0, 1475, 1476, 5, 3, 0, 0, 1476, 1478, 3, 60, 30, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1481, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1483, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1474, 1, 0, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1512, 5, 2, 0, 0, 1485, 1486, 5, 55, 0, 0, 1486, 1495, 5, 1, 0, 0, 1487, 1492, 3, 60, 30, 0, 1488, 1489, 5, 3, 0, 0, 1489, 1491, 3, 60, 30, 0, 1490, 1488, 1, 0, 0, 0, 1491, 1494, 1, 0, 0, 0, 1492, 1490, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1496, 1, 0, 0, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1487, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1512, 5, 2, 0, 0, 1498, 1499, 5, 115, 0, 0, 1499, 1500, 5, 252, 0, 0, 1500, 1501, 5, 1, 0, 0, 1501, 1506, 3, 60, 30, 0, 1502, 1503, 5, 3, 0, 0, 1503, 1505, 3, 60, 30, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1510, 5, 2, 0, 0, 1510, 1512, 1, 0, 0, 0, 1511, 1471, 1, 0, 0, 0, 1511, 1472, 1, 0, 0, 0, 1511, 1485, 1, 0, 0, 0, 1511, 1498, 1, 0, 0, 0, 1512, 59, 1, 0, 0, 0, 1513, 1522, 5, 1, 0, 0, 1514, 1519, 3, 62, 31, 0, 1515, 1516, 5, 3, 0, 0, 1516, 1518, 3, 62, 31, 0, 1517, 1515, 1, 0, 0, 0, 1518, 1521, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1523, 1, 0, 0, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1514, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1527, 5, 2, 0, 0, 1525, 1527, 3, 62, 31, 0, 1526, 1513, 1, 0, 0, 0, 1526, 1525, 1, 0, 0, 0, 1527, 61, 1, 0, 0, 0, 1528, 1531, 3, 288, 144, 0, 1529, 1531, 3, 148, 74, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1529, 1, 0, 0, 0, 1531, 63, 1, 0, 0, 0, 1532, 1533, 3, 306, 153, 0, 1533, 1534, 5, 28, 0, 0, 1534, 1535, 5, 1, 0, 0, 1535, 1536, 3, 66, 33, 0, 1536, 1537, 5, 2, 0, 0, 1537, 65, 1, 0, 0, 0, 1538, 1540, 3, 306, 153, 0, 1539, 1538, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1551, 1, 0, 0, 0, 1541, 1542, 5, 201, 0, 0, 1542, 1543, 5, 36, 0, 0, 1543, 1548, 3, 148, 74, 0, 1544, 1545, 5, 3, 0, 0, 1545, 1547, 3, 148, 74, 0, 1546, 1544, 1, 0, 0, 0, 1547, 1550, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1552, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1551, 1541, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1563, 1, 0, 0, 0, 1553, 1554, 5, 195, 0, 0, 1554, 1555, 5, 36, 0, 0, 1555, 1560, 3, 50, 25, 0, 1556, 1557, 5, 3, 0, 0, 1557, 1559, 3, 50, 25, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1562, 1, 0, 0, 0, 1560, 1558, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1564, 1, 0, 0, 0, 1562, 1560, 1, 0, 0, 0, 1563, 1553, 1, 0, 0, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1566, 1, 0, 0, 0, 1565, 1567, 3, 210, 105, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 67, 1, 0, 0, 0, 1568, 1570, 3, 306, 153, 0, 1569, 1571, 3, 118, 59, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 5, 28, 0, 0, 1573, 1574, 5, 1, 0, 0, 1574, 1575, 3, 22, 11, 0, 1575, 1576, 5, 2, 0, 0, 1576, 69, 1, 0, 0, 0, 1577, 1578, 7, 10, 0, 0, 1578, 71, 1, 0, 0, 0, 1579, 1582, 3, 78, 39, 0, 1580, 1582, 3, 80, 40, 0, 1581, 1579, 1, 0, 0, 0, 1581, 1580, 1, 0, 0, 0, 1582, 1587, 1, 0, 0, 0, 1583, 1585, 5, 28, 0, 0, 1584, 1583, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1588, 3, 306, 153, 0, 1587, 1584, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1596, 1, 0, 0, 0, 1589, 1592, 3, 76, 38, 0, 1590, 1591, 5, 28, 0, 0, 1591, 1593, 3, 118, 59, 0, 1592, 1590, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1596, 3, 74, 37, 0, 1595, 1581, 1, 0, 0, 0, 1595, 1589, 1, 0, 0, 0, 1595, 1594, 1, 0, 0, 0, 1596, 73, 1, 0, 0, 0, 1597, 1598, 5, 320, 0, 0, 1598, 75, 1, 0, 0, 0, 1599, 1600, 3, 156, 78, 0, 1600, 1601, 5, 4, 0, 0, 1601, 1602, 5, 320, 0, 0, 1602, 77, 1, 0, 0, 0, 1603, 1604, 3, 288, 144, 0, 1604, 79, 1, 0, 0, 0, 1605, 1606, 3, 148, 74, 0, 1606, 81, 1, 0, 0, 0, 1607, 1608, 6, 41, -1, 0, 1608, 1609, 3, 88, 44, 0, 1609, 1628, 1, 0, 0, 0, 1610, 1624, 10, 2, 0, 0, 1611, 1612, 5, 54, 0, 0, 1612, 1613, 5, 136, 0, 0, 1613, 1625, 3, 88, 44, 0, 1614, 1615, 3, 84, 42, 0, 1615, 1616, 5, 136, 0, 0, 1616, 1617, 3, 82, 41, 0, 1617, 1618, 3, 86, 43, 0, 1618, 1625, 1, 0, 0, 0, 1619, 1620, 5, 172, 0, 0, 1620, 1621, 3, 84, 42, 0, 1621, 1622, 5, 136, 0, 0, 1622, 1623, 3, 88, 44, 0, 1623, 1625, 1, 0, 0, 0, 1624, 1611, 1, 0, 0, 0, 1624, 1614, 1, 0, 0, 0, 1624, 1619, 1, 0, 0, 0, 1625, 1627, 1, 0, 0, 0, 1626, 1610, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 83, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1633, 5, 125, 0, 0, 1632, 1631, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1647, 1, 0, 0, 0, 1634, 1636, 5, 152, 0, 0, 1635, 1637, 5, 197, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1647, 1, 0, 0, 0, 1638, 1640, 5, 234, 0, 0, 1639, 1641, 5, 197, 0, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1647, 1, 0, 0, 0, 1642, 1644, 5, 106, 0, 0, 1643, 1645, 5, 197, 0, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1647, 1, 0, 0, 0, 1646, 1632, 1, 0, 0, 0, 1646, 1634, 1, 0, 0, 0, 1646, 1638, 1, 0, 0, 0, 1646, 1642, 1, 0, 0, 0, 1647, 85, 1, 0, 0, 0, 1648, 1649, 5, 190, 0, 0, 1649, 1663, 3, 150, 75, 0, 1650, 1651, 5, 290, 0, 0, 1651, 1652, 5, 1, 0, 0, 1652, 1657, 3, 306, 153, 0, 1653, 1654, 5, 3, 0, 0, 1654, 1656, 3, 306, 153, 0, 1655, 1653, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1657, 1, 0, 0, 0, 1660, 1661, 5, 2, 0, 0, 1661, 1663, 1, 0, 0, 0, 1662, 1648, 1, 0, 0, 0, 1662, 1650, 1, 0, 0, 0, 1663, 87, 1, 0, 0, 0, 1664, 1671, 3, 98, 49, 0, 1665, 1666, 5, 262, 0, 0, 1666, 1667, 3, 90, 45, 0, 1667, 1668, 5, 1, 0, 0, 1668, 1669, 3, 148, 74, 0, 1669, 1670, 5, 2, 0, 0, 1670, 1672, 1, 0, 0, 0, 1671, 1665, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 89, 1, 0, 0, 0, 1673, 1674, 7, 11, 0, 0, 1674, 91, 1, 0, 0, 0, 1675, 1676, 7, 12, 0, 0, 1676, 93, 1, 0, 0, 0, 1677, 1684, 5, 89, 0, 0, 1678, 1680, 5, 274, 0, 0, 1679, 1681, 3, 180, 90, 0, 1680, 1679, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1684, 3, 96, 48, 0, 1683, 1677, 1, 0, 0, 0, 1683, 1678, 1, 0, 0, 0, 1684, 95, 1, 0, 0, 0, 1685, 1686, 5, 304, 0, 0, 1686, 1690, 5, 51, 0, 0, 1687, 1688, 5, 306, 0, 0, 1688, 1690, 5, 51, 0, 0, 1689, 1685, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1690, 97, 1, 0, 0, 0, 1691, 1774, 3, 112, 56, 0, 1692, 1693, 5, 166, 0, 0, 1693, 1704, 5, 1, 0, 0, 1694, 1695, 5, 201, 0, 0, 1695, 1696, 5, 36, 0, 0, 1696, 1701, 3, 148, 74, 0, 1697, 1698, 5, 3, 0, 0, 1698, 1700, 3, 148, 74, 0, 1699, 1697, 1, 0, 0, 0, 1700, 1703, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1704, 1694, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1716, 1, 0, 0, 0, 1706, 1707, 5, 195, 0, 0, 1707, 1708, 5, 36, 0, 0, 1708, 1713, 3, 50, 25, 0, 1709, 1710, 5, 3, 0, 0, 1710, 1712, 3, 50, 25, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1715, 1, 0, 0, 0, 1713, 1711, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1706, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1727, 1, 0, 0, 0, 1718, 1719, 5, 168, 0, 0, 1719, 1724, 3, 100, 50, 0, 1720, 1721, 5, 3, 0, 0, 1721, 1723, 3, 100, 50, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1726, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1728, 1, 0, 0, 0, 1726, 1724, 1, 0, 0, 0, 1727, 1718, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, 1, 0, 0, 0, 1729, 1731, 3, 102, 51, 0, 1730, 1729, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1735, 1, 0, 0, 0, 1732, 1733, 5, 21, 0, 0, 1733, 1734, 5, 163, 0, 0, 1734, 1736, 3, 106, 53, 0, 1735, 1732, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1738, 1, 0, 0, 0, 1737, 1739, 7, 13, 0, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1741, 5, 206, 0, 0, 1741, 1742, 5, 1, 0, 0, 1742, 1743, 3, 216, 108, 0, 1743, 1753, 5, 2, 0, 0, 1744, 1745, 5, 257, 0, 0, 1745, 1750, 3, 108, 54, 0, 1746, 1747, 5, 3, 0, 0, 1747, 1749, 3, 108, 54, 0, 1748, 1746, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1754, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1744, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 5, 71, 0, 0, 1756, 1761, 3, 110, 55, 0, 1757, 1758, 5, 3, 0, 0, 1758, 1760, 3, 110, 55, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1764, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1772, 5, 2, 0, 0, 1765, 1767, 5, 28, 0, 0, 1766, 1765, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1770, 3, 306, 153, 0, 1769, 1771, 3, 118, 59, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 1, 0, 0, 0, 1772, 1766, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1692, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 99, 1, 0, 0, 0, 1776, 1777, 3, 148, 74, 0, 1777, 1778, 5, 28, 0, 0, 1778, 1779, 3, 306, 153, 0, 1779, 101, 1, 0, 0, 0, 1780, 1781, 5, 191, 0, 0, 1781, 1782, 5, 239, 0, 0, 1782, 1783, 5, 207, 0, 0, 1783, 1792, 5, 163, 0, 0, 1784, 1785, 5, 22, 0, 0, 1785, 1786, 5, 240, 0, 0, 1786, 1787, 5, 207, 0, 0, 1787, 1789, 5, 163, 0, 0, 1788, 1790, 3, 104, 52, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1780, 1, 0, 0, 0, 1791, 1784, 1, 0, 0, 0, 1792, 103, 1, 0, 0, 0, 1793, 1794, 5, 253, 0, 0, 1794, 1795, 5, 85, 0, 0, 1795, 1803, 5, 165, 0, 0, 1796, 1797, 5, 189, 0, 0, 1797, 1798, 5, 85, 0, 0, 1798, 1803, 5, 165, 0, 0, 1799, 1800, 5, 304, 0, 0, 1800, 1801, 5, 284, 0, 0, 1801, 1803, 5, 240, 0, 0, 1802, 1793, 1, 0, 0, 0, 1802, 1796, 1, 0, 0, 0, 1802, 1799, 1, 0, 0, 0, 1803, 105, 1, 0, 0, 0, 1804, 1805, 5, 5, 0, 0, 1805, 1806, 5, 269, 0, 0, 1806, 1807, 5, 174, 0, 0, 1807, 1824, 5, 239, 0, 0, 1808, 1809, 5, 5, 0, 0, 1809, 1810, 5, 204, 0, 0, 1810, 1811, 5, 148, 0, 0, 1811, 1824, 5, 239, 0, 0, 1812, 1813, 5, 5, 0, 0, 1813, 1814, 5, 269, 0, 0, 1814, 1815, 5, 101, 0, 0, 1815, 1824, 3, 306, 153, 0, 1816, 1817, 5, 5, 0, 0, 1817, 1818, 5, 269, 0, 0, 1818, 1819, 5, 148, 0, 0, 1819, 1824, 3, 306, 153, 0, 1820, 1821, 5, 5, 0, 0, 1821, 1822, 5, 269, 0, 0, 1822, 1824, 3, 306, 153, 0, 1823, 1804, 1, 0, 0, 0, 1823, 1808, 1, 0, 0, 0, 1823, 1812, 1, 0, 0, 0, 1823, 1816, 1, 0, 0, 0, 1823, 1820, 1, 0, 0, 0, 1824, 107, 1, 0, 0, 0, 1825, 1826, 3, 306, 153, 0, 1826, 1827, 5, 312, 0, 0, 1827, 1828, 5, 1, 0, 0, 1828, 1833, 3, 306, 153, 0, 1829, 1830, 5, 3, 0, 0, 1830, 1832, 3, 306, 153, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1835, 1, 0, 0, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1836, 1, 0, 0, 0, 1835, 1833, 1, 0, 0, 0, 1836, 1837, 5, 2, 0, 0, 1837, 109, 1, 0, 0, 0, 1838, 1839, 3, 306, 153, 0, 1839, 1840, 5, 28, 0, 0, 1840, 1841, 3, 148, 74, 0, 1841, 111, 1, 0, 0, 0, 1842, 1850, 3, 120, 60, 0, 1843, 1845, 5, 28, 0, 0, 1844, 1843, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1848, 3, 306, 153, 0, 1847, 1849, 3, 118, 59, 0, 1848, 1847, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1851, 1, 0, 0, 0, 1850, 1844, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 113, 1, 0, 0, 0, 1852, 1853, 5, 1, 0, 0, 1853, 1858, 3, 290, 145, 0, 1854, 1855, 5, 3, 0, 0, 1855, 1857, 3, 290, 145, 0, 1856, 1854, 1, 0, 0, 0, 1857, 1860, 1, 0, 0, 0, 1858, 1856, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1861, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1862, 5, 2, 0, 0, 1862, 115, 1, 0, 0, 0, 1863, 1864, 5, 1, 0, 0, 1864, 1869, 3, 288, 144, 0, 1865, 1866, 5, 3, 0, 0, 1866, 1868, 3, 288, 144, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1871, 1, 0, 0, 0, 1869, 1867, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1872, 1, 0, 0, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1873, 5, 2, 0, 0, 1873, 117, 1, 0, 0, 0, 1874, 1875, 5, 1, 0, 0, 1875, 1880, 3, 306, 153, 0, 1876, 1877, 5, 3, 0, 0, 1877, 1879, 3, 306, 153, 0, 1878, 1876, 1, 0, 0, 0, 1879, 1882, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1883, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1884, 5, 2, 0, 0, 1884, 119, 1, 0, 0, 0, 1885, 1887, 3, 266, 133, 0, 1886, 1888, 3, 294, 147, 0, 1887, 1886, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1895, 1, 0, 0, 0, 1889, 1895, 3, 122, 61, 0, 1890, 1891, 5, 1, 0, 0, 1891, 1892, 3, 82, 41, 0, 1892, 1893, 5, 2, 0, 0, 1893, 1895, 1, 0, 0, 0, 1894, 1885, 1, 0, 0, 0, 1894, 1889, 1, 0, 0, 0, 1894, 1890, 1, 0, 0, 0, 1895, 121, 1, 0, 0, 0, 1896, 1897, 5, 1, 0, 0, 1897, 1898, 3, 22, 11, 0, 1898, 1899, 5, 2, 0, 0, 1899, 1960, 1, 0, 0, 0, 1900, 1901, 5, 285, 0, 0, 1901, 1902, 5, 1, 0, 0, 1902, 1907, 3, 148, 74, 0, 1903, 1904, 5, 3, 0, 0, 1904, 1906, 3, 148, 74, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1909, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1910, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 5, 2, 0, 0, 1911, 1912, 5, 304, 0, 0, 1912, 1914, 5, 196, 0, 0, 1913, 1911, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1960, 1, 0, 0, 0, 1915, 1916, 5, 149, 0, 0, 1916, 1917, 5, 1, 0, 0, 1917, 1918, 3, 22, 11, 0, 1918, 1919, 5, 2, 0, 0, 1919, 1960, 1, 0, 0, 0, 1920, 1921, 5, 260, 0, 0, 1921, 1922, 5, 1, 0, 0, 1922, 1923, 3, 134, 67, 0, 1923, 1924, 5, 2, 0, 0, 1924, 1960, 1, 0, 0, 0, 1925, 1926, 5, 142, 0, 0, 1926, 1927, 5, 1, 0, 0, 1927, 1928, 3, 158, 79, 0, 1928, 1929, 5, 45, 0, 0, 1929, 1930, 5, 1, 0, 0, 1930, 1935, 3, 124, 62, 0, 1931, 1932, 5, 3, 0, 0, 1932, 1934, 3, 124, 62, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1950, 5, 2, 0, 0, 1939, 1940, 5, 210, 0, 0, 1940, 1941, 5, 1, 0, 0, 1941, 1942, 3, 126, 63, 0, 1942, 1943, 5, 2, 0, 0, 1943, 1951, 1, 0, 0, 0, 1944, 1945, 5, 210, 0, 0, 1945, 1946, 5, 70, 0, 0, 1946, 1947, 5, 1, 0, 0, 1947, 1948, 3, 132, 66, 0, 1948, 1949, 5, 2, 0, 0, 1949, 1951, 1, 0, 0, 0, 1950, 1939, 1, 0, 0, 0, 1950, 1944, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1955, 1, 0, 0, 0, 1952, 1953, 7, 14, 0, 0, 1953, 1954, 5, 190, 0, 0, 1954, 1956, 5, 89, 0, 0, 1955, 1952, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 5, 2, 0, 0, 1958, 1960, 1, 0, 0, 0, 1959, 1896, 1, 0, 0, 0, 1959, 1900, 1, 0, 0, 0, 1959, 1915, 1, 0, 0, 0, 1959, 1920, 1, 0, 0, 0, 1959, 1925, 1, 0, 0, 0, 1960, 123, 1, 0, 0, 0, 1961, 1962, 3, 306, 153, 0, 1962, 1963, 5, 103, 0, 0, 1963, 1964, 5, 196, 0, 0, 1964, 2039, 1, 0, 0, 0, 1965, 1966, 3, 306, 153, 0, 1966, 1969, 3, 196, 98, 0, 1967, 1968, 5, 205, 0, 0, 1968, 1970, 3, 180, 90, 0, 1969, 1967, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1975, 1, 0, 0, 0, 1971, 1972, 3, 168, 84, 0, 1972, 1973, 5, 190, 0, 0, 1973, 1974, 5, 85, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1971, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1981, 1, 0, 0, 0, 1977, 1978, 3, 168, 84, 0, 1978, 1979, 5, 190, 0, 0, 1979, 1980, 5, 89, 0, 0, 1980, 1982, 1, 0, 0, 0, 1981, 1977, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 2039, 1, 0, 0, 0, 1983, 1984, 3, 306, 153, 0, 1984, 1985, 3, 196, 98, 0, 1985, 1986, 5, 104, 0, 0, 1986, 1989, 3, 162, 81, 0, 1987, 1988, 5, 205, 0, 0, 1988, 1990, 3, 180, 90, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1994, 1, 0, 0, 0, 1991, 1992, 3, 170, 85, 0, 1992, 1993, 5, 308, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1991, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2003, 1, 0, 0, 0, 1996, 1997, 7, 15, 0, 0, 1997, 2001, 5, 218, 0, 0, 1998, 1999, 5, 190, 0, 0, 1999, 2000, 5, 242, 0, 0, 2000, 2002, 5, 264, 0, 0, 2001, 1998, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2004, 1, 0, 0, 0, 2003, 1996, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2009, 1, 0, 0, 0, 2005, 2006, 3, 172, 86, 0, 2006, 2007, 5, 190, 0, 0, 2007, 2008, 5, 85, 0, 0, 2008, 2010, 1, 0, 0, 0, 2009, 2005, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2015, 1, 0, 0, 0, 2011, 2012, 3, 172, 86, 0, 2012, 2013, 5, 190, 0, 0, 2013, 2014, 5, 89, 0, 0, 2014, 2016, 1, 0, 0, 0, 2015, 2011, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2039, 1, 0, 0, 0, 2017, 2019, 5, 173, 0, 0, 2018, 2020, 5, 205, 0, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2024, 3, 180, 90, 0, 2022, 2023, 5, 28, 0, 0, 2023, 2025, 3, 306, 153, 0, 2024, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 5, 45, 0, 0, 2027, 2028, 5, 1, 0, 0, 2028, 2033, 3, 124, 62, 0, 2029, 2030, 5, 3, 0, 0, 2030, 2032, 3, 124, 62, 0, 2031, 2029, 1, 0, 0, 0, 2032, 2035, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2033, 1, 0, 0, 0, 2036, 2037, 5, 2, 0, 0, 2037, 2039, 1, 0, 0, 0, 2038, 1961, 1, 0, 0, 0, 2038, 1965, 1, 0, 0, 0, 2038, 1983, 1, 0, 0, 0, 2038, 2017, 1, 0, 0, 0, 2039, 125, 1, 0, 0, 0, 2040, 2066, 3, 128, 64, 0, 2041, 2042, 3, 128, 64, 0, 2042, 2043, 7, 16, 0, 0, 2043, 2044, 3, 130, 65, 0, 2044, 2066, 1, 0, 0, 0, 2045, 2046, 3, 130, 65, 0, 2046, 2047, 5, 281, 0, 0, 2047, 2052, 3, 130, 65, 0, 2048, 2049, 5, 281, 0, 0, 2049, 2051, 3, 130, 65, 0, 2050, 2048, 1, 0, 0, 0, 2051, 2054, 1, 0, 0, 0, 2052, 2050, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2066, 1, 0, 0, 0, 2054, 2052, 1, 0, 0, 0, 2055, 2056, 3, 130, 65, 0, 2056, 2057, 5, 54, 0, 0, 2057, 2062, 3, 130, 65, 0, 2058, 2059, 5, 54, 0, 0, 2059, 2061, 3, 130, 65, 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, 2066, 1, 0, 0, 0, 2064, 2062, 1, 0, 0, 0, 2065, 2040, 1, 0, 0, 0, 2065, 2041, 1, 0, 0, 0, 2065, 2045, 1, 0, 0, 0, 2065, 2055, 1, 0, 0, 0, 2066, 127, 1, 0, 0, 0, 2067, 2068, 3, 306, 153, 0, 2068, 129, 1, 0, 0, 0, 2069, 2075, 3, 128, 64, 0, 2070, 2071, 5, 1, 0, 0, 2071, 2072, 3, 126, 63, 0, 2072, 2073, 5, 2, 0, 0, 2073, 2075, 1, 0, 0, 0, 2074, 2069, 1, 0, 0, 0, 2074, 2070, 1, 0, 0, 0, 2075, 131, 1, 0, 0, 0, 2076, 2079, 7, 16, 0, 0, 2077, 2078, 5, 3, 0, 0, 2078, 2080, 7, 17, 0, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2087, 1, 0, 0, 0, 2081, 2084, 7, 17, 0, 0, 2082, 2083, 5, 3, 0, 0, 2083, 2085, 7, 16, 0, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2087, 1, 0, 0, 0, 2086, 2076, 1, 0, 0, 0, 2086, 2081, 1, 0, 0, 0, 2087, 133, 1, 0, 0, 0, 2088, 2089, 3, 284, 142, 0, 2089, 2098, 5, 1, 0, 0, 2090, 2095, 3, 136, 68, 0, 2091, 2092, 5, 3, 0, 0, 2092, 2094, 3, 136, 68, 0, 2093, 2091, 1, 0, 0, 0, 2094, 2097, 1, 0, 0, 0, 2095, 2093, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2099, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2098, 2090, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2109, 1, 0, 0, 0, 2100, 2101, 5, 52, 0, 0, 2101, 2106, 3, 146, 73, 0, 2102, 2103, 5, 3, 0, 0, 2103, 2105, 3, 146, 73, 0, 2104, 2102, 1, 0, 0, 0, 2105, 2108, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2110, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2109, 2100, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2112, 5, 2, 0, 0, 2112, 135, 1, 0, 0, 0, 2113, 2114, 3, 306, 153, 0, 2114, 2115, 5, 6, 0, 0, 2115, 2117, 1, 0, 0, 0, 2116, 2113, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2121, 1, 0, 0, 0, 2118, 2122, 3, 138, 69, 0, 2119, 2122, 3, 142, 71, 0, 2120, 2122, 3, 148, 74, 0, 2121, 2118, 1, 0, 0, 0, 2121, 2119, 1, 0, 0, 0, 2121, 2120, 1, 0, 0, 0, 2122, 137, 1, 0, 0, 0, 2123, 2141, 3, 140, 70, 0, 2124, 2125, 5, 201, 0, 0, 2125, 2139, 5, 36, 0, 0, 2126, 2135, 5, 1, 0, 0, 2127, 2132, 3, 148, 74, 0, 2128, 2129, 5, 3, 0, 0, 2129, 2131, 3, 148, 74, 0, 2130, 2128, 1, 0, 0, 0, 2131, 2134, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2136, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2135, 2127, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, 2140, 5, 2, 0, 0, 2138, 2140, 3, 148, 74, 0, 2139, 2126, 1, 0, 0, 0, 2139, 2138, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2124, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2149, 1, 0, 0, 0, 2143, 2144, 5, 217, 0, 0, 2144, 2145, 5, 300, 0, 0, 2145, 2150, 5, 85, 0, 0, 2146, 2147, 5, 144, 0, 0, 2147, 2148, 5, 300, 0, 0, 2148, 2150, 5, 85, 0, 0, 2149, 2143, 1, 0, 0, 0, 2149, 2146, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2167, 1, 0, 0, 0, 2151, 2152, 5, 195, 0, 0, 2152, 2165, 5, 36, 0, 0, 2153, 2154, 5, 1, 0, 0, 2154, 2159, 3, 50, 25, 0, 2155, 2156, 5, 3, 0, 0, 2156, 2158, 3, 50, 25, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2161, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2162, 1, 0, 0, 0, 2161, 2159, 1, 0, 0, 0, 2162, 2163, 5, 2, 0, 0, 2163, 2166, 1, 0, 0, 0, 2164, 2166, 3, 50, 25, 0, 2165, 2153, 1, 0, 0, 0, 2165, 2164, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2151, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 139, 1, 0, 0, 0, 2169, 2170, 5, 260, 0, 0, 2170, 2171, 5, 1, 0, 0, 2171, 2172, 3, 268, 134, 0, 2172, 2180, 5, 2, 0, 0, 2173, 2175, 5, 28, 0, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 3, 306, 153, 0, 2177, 2179, 3, 118, 59, 0, 2178, 2177, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2181, 1, 0, 0, 0, 2180, 2174, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2196, 1, 0, 0, 0, 2182, 2183, 5, 260, 0, 0, 2183, 2184, 5, 1, 0, 0, 2184, 2185, 3, 22, 11, 0, 2185, 2193, 5, 2, 0, 0, 2186, 2188, 5, 28, 0, 0, 2187, 2186, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2191, 3, 306, 153, 0, 2190, 2192, 3, 118, 59, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2194, 1, 0, 0, 0, 2193, 2187, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2196, 1, 0, 0, 0, 2195, 2169, 1, 0, 0, 0, 2195, 2182, 1, 0, 0, 0, 2196, 141, 1, 0, 0, 0, 2197, 2198, 5, 77, 0, 0, 2198, 2199, 5, 1, 0, 0, 2199, 2204, 3, 144, 72, 0, 2200, 2201, 5, 3, 0, 0, 2201, 2203, 3, 144, 72, 0, 2202, 2200, 1, 0, 0, 0, 2203, 2206, 1, 0, 0, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 2207, 1, 0, 0, 0, 2206, 2204, 1, 0, 0, 0, 2207, 2208, 5, 2, 0, 0, 2208, 2216, 1, 0, 0, 0, 2209, 2210, 5, 41, 0, 0, 2210, 2211, 5, 1, 0, 0, 2211, 2212, 5, 183, 0, 0, 2212, 2213, 5, 28, 0, 0, 2213, 2214, 5, 77, 0, 0, 2214, 2216, 5, 2, 0, 0, 2215, 2197, 1, 0, 0, 0, 2215, 2209, 1, 0, 0, 0, 2216, 143, 1, 0, 0, 0, 2217, 2219, 3, 306, 153, 0, 2218, 2220, 3, 196, 98, 0, 2219, 2218, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 145, 1, 0, 0, 0, 2221, 2222, 5, 1, 0, 0, 2222, 2223, 3, 292, 146, 0, 2223, 2224, 5, 3, 0, 0, 2224, 2229, 3, 292, 146, 0, 2225, 2226, 5, 3, 0, 0, 2226, 2228, 3, 292, 146, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2231, 1, 0, 0, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2229, 1, 0, 0, 0, 2232, 2233, 5, 2, 0, 0, 2233, 147, 1, 0, 0, 0, 2234, 2235, 3, 150, 75, 0, 2235, 149, 1, 0, 0, 0, 2236, 2237, 6, 75, -1, 0, 2237, 2239, 3, 154, 77, 0, 2238, 2240, 3, 152, 76, 0, 2239, 2238, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2244, 1, 0, 0, 0, 2241, 2242, 5, 182, 0, 0, 2242, 2244, 3, 150, 75, 3, 2243, 2236, 1, 0, 0, 0, 2243, 2241, 1, 0, 0, 0, 2244, 2253, 1, 0, 0, 0, 2245, 2246, 10, 2, 0, 0, 2246, 2247, 5, 25, 0, 0, 2247, 2252, 3, 150, 75, 3, 2248, 2249, 10, 1, 0, 0, 2249, 2250, 5, 194, 0, 0, 2250, 2252, 3, 150, 75, 2, 2251, 2245, 1, 0, 0, 0, 2251, 2248, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 151, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 3, 184, 92, 0, 2257, 2258, 3, 154, 77, 0, 2258, 2318, 1, 0, 0, 0, 2259, 2260, 3, 184, 92, 0, 2260, 2261, 3, 186, 93, 0, 2261, 2262, 5, 1, 0, 0, 2262, 2263, 3, 22, 11, 0, 2263, 2264, 5, 2, 0, 0, 2264, 2318, 1, 0, 0, 0, 2265, 2267, 5, 182, 0, 0, 2266, 2265, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2269, 5, 34, 0, 0, 2269, 2270, 3, 154, 77, 0, 2270, 2271, 5, 25, 0, 0, 2271, 2272, 3, 154, 77, 0, 2272, 2318, 1, 0, 0, 0, 2273, 2275, 5, 182, 0, 0, 2274, 2273, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2277, 5, 122, 0, 0, 2277, 2278, 5, 1, 0, 0, 2278, 2283, 3, 148, 74, 0, 2279, 2280, 5, 3, 0, 0, 2280, 2282, 3, 148, 74, 0, 2281, 2279, 1, 0, 0, 0, 2282, 2285, 1, 0, 0, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2286, 2287, 5, 2, 0, 0, 2287, 2318, 1, 0, 0, 0, 2288, 2290, 5, 182, 0, 0, 2289, 2288, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2292, 5, 122, 0, 0, 2292, 2293, 5, 1, 0, 0, 2293, 2294, 3, 22, 11, 0, 2294, 2295, 5, 2, 0, 0, 2295, 2318, 1, 0, 0, 0, 2296, 2298, 5, 182, 0, 0, 2297, 2296, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2300, 5, 154, 0, 0, 2300, 2303, 3, 154, 77, 0, 2301, 2302, 5, 90, 0, 0, 2302, 2304, 3, 154, 77, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2318, 1, 0, 0, 0, 2305, 2307, 5, 133, 0, 0, 2306, 2308, 5, 182, 0, 0, 2307, 2306, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2318, 5, 183, 0, 0, 2310, 2312, 5, 133, 0, 0, 2311, 2313, 5, 182, 0, 0, 2312, 2311, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2315, 5, 79, 0, 0, 2315, 2316, 5, 105, 0, 0, 2316, 2318, 3, 154, 77, 0, 2317, 2256, 1, 0, 0, 0, 2317, 2259, 1, 0, 0, 0, 2317, 2266, 1, 0, 0, 0, 2317, 2274, 1, 0, 0, 0, 2317, 2289, 1, 0, 0, 0, 2317, 2297, 1, 0, 0, 0, 2317, 2305, 1, 0, 0, 0, 2317, 2310, 1, 0, 0, 0, 2318, 153, 1, 0, 0, 0, 2319, 2320, 6, 77, -1, 0, 2320, 2324, 3, 156, 78, 0, 2321, 2322, 7, 18, 0, 0, 2322, 2324, 3, 154, 77, 4, 2323, 2319, 1, 0, 0, 0, 2323, 2321, 1, 0, 0, 0, 2324, 2339, 1, 0, 0, 0, 2325, 2326, 10, 3, 0, 0, 2326, 2327, 7, 19, 0, 0, 2327, 2338, 3, 154, 77, 4, 2328, 2329, 10, 2, 0, 0, 2329, 2330, 7, 18, 0, 0, 2330, 2338, 3, 154, 77, 3, 2331, 2332, 10, 1, 0, 0, 2332, 2333, 5, 323, 0, 0, 2333, 2338, 3, 154, 77, 2, 2334, 2335, 10, 5, 0, 0, 2335, 2336, 5, 30, 0, 0, 2336, 2338, 3, 182, 91, 0, 2337, 2325, 1, 0, 0, 0, 2337, 2328, 1, 0, 0, 0, 2337, 2331, 1, 0, 0, 0, 2337, 2334, 1, 0, 0, 0, 2338, 2341, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 155, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2342, 2343, 6, 78, -1, 0, 2343, 2796, 5, 183, 0, 0, 2344, 2796, 3, 190, 95, 0, 2345, 2346, 3, 306, 153, 0, 2346, 2347, 3, 180, 90, 0, 2347, 2796, 1, 0, 0, 0, 2348, 2349, 5, 82, 0, 0, 2349, 2350, 5, 213, 0, 0, 2350, 2796, 3, 180, 90, 0, 2351, 2796, 3, 308, 154, 0, 2352, 2796, 3, 188, 94, 0, 2353, 2796, 3, 180, 90, 0, 2354, 2796, 5, 328, 0, 0, 2355, 2796, 5, 324, 0, 0, 2356, 2357, 5, 211, 0, 0, 2357, 2358, 5, 1, 0, 0, 2358, 2359, 3, 154, 77, 0, 2359, 2360, 5, 122, 0, 0, 2360, 2361, 3, 154, 77, 0, 2361, 2362, 5, 2, 0, 0, 2362, 2796, 1, 0, 0, 0, 2363, 2364, 5, 1, 0, 0, 2364, 2367, 3, 148, 74, 0, 2365, 2366, 5, 3, 0, 0, 2366, 2368, 3, 148, 74, 0, 2367, 2365, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2372, 5, 2, 0, 0, 2372, 2796, 1, 0, 0, 0, 2373, 2374, 5, 239, 0, 0, 2374, 2375, 5, 1, 0, 0, 2375, 2380, 3, 148, 74, 0, 2376, 2377, 5, 3, 0, 0, 2377, 2379, 3, 148, 74, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2382, 1, 0, 0, 0, 2380, 2378, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2383, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2384, 5, 2, 0, 0, 2384, 2796, 1, 0, 0, 0, 2385, 2386, 5, 156, 0, 0, 2386, 2388, 5, 1, 0, 0, 2387, 2389, 3, 70, 35, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2393, 3, 148, 74, 0, 2391, 2392, 5, 3, 0, 0, 2392, 2394, 3, 180, 90, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2398, 1, 0, 0, 0, 2395, 2396, 5, 190, 0, 0, 2396, 2397, 5, 200, 0, 0, 2397, 2399, 3, 94, 47, 0, 2398, 2395, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 5, 2, 0, 0, 2401, 2402, 5, 305, 0, 0, 2402, 2403, 5, 114, 0, 0, 2403, 2404, 5, 1, 0, 0, 2404, 2405, 5, 195, 0, 0, 2405, 2406, 5, 36, 0, 0, 2406, 2411, 3, 50, 25, 0, 2407, 2408, 5, 3, 0, 0, 2408, 2410, 3, 50, 25, 0, 2409, 2407, 1, 0, 0, 0, 2410, 2413, 1, 0, 0, 0, 2411, 2409, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 1, 0, 0, 0, 2413, 2411, 1, 0, 0, 0, 2414, 2415, 5, 2, 0, 0, 2415, 2417, 1, 0, 0, 0, 2416, 2418, 3, 204, 102, 0, 2417, 2416, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2796, 1, 0, 0, 0, 2419, 2421, 3, 176, 88, 0, 2420, 2419, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2423, 3, 284, 142, 0, 2423, 2427, 5, 1, 0, 0, 2424, 2425, 3, 306, 153, 0, 2425, 2426, 5, 4, 0, 0, 2426, 2428, 1, 0, 0, 0, 2427, 2424, 1, 0, 0, 0, 2427, 2428, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 5, 320, 0, 0, 2430, 2432, 5, 2, 0, 0, 2431, 2433, 3, 204, 102, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2435, 1, 0, 0, 0, 2434, 2436, 3, 208, 104, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2796, 1, 0, 0, 0, 2437, 2439, 3, 176, 88, 0, 2438, 2437, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2441, 3, 284, 142, 0, 2441, 2453, 5, 1, 0, 0, 2442, 2444, 3, 70, 35, 0, 2443, 2442, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2450, 3, 148, 74, 0, 2446, 2447, 5, 3, 0, 0, 2447, 2449, 3, 148, 74, 0, 2448, 2446, 1, 0, 0, 0, 2449, 2452, 1, 0, 0, 0, 2450, 2448, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 2454, 1, 0, 0, 0, 2452, 2450, 1, 0, 0, 0, 2453, 2443, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2465, 1, 0, 0, 0, 2455, 2456, 5, 195, 0, 0, 2456, 2457, 5, 36, 0, 0, 2457, 2462, 3, 50, 25, 0, 2458, 2459, 5, 3, 0, 0, 2459, 2461, 3, 50, 25, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2464, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2455, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2469, 5, 2, 0, 0, 2468, 2470, 3, 204, 102, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2475, 1, 0, 0, 0, 2471, 2473, 3, 178, 89, 0, 2472, 2471, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2476, 3, 208, 104, 0, 2475, 2472, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2796, 1, 0, 0, 0, 2477, 2478, 3, 306, 153, 0, 2478, 2479, 3, 208, 104, 0, 2479, 2796, 1, 0, 0, 0, 2480, 2481, 3, 306, 153, 0, 2481, 2482, 5, 7, 0, 0, 2482, 2483, 3, 148, 74, 0, 2483, 2796, 1, 0, 0, 0, 2484, 2493, 5, 1, 0, 0, 2485, 2490, 3, 306, 153, 0, 2486, 2487, 5, 3, 0, 0, 2487, 2489, 3, 306, 153, 0, 2488, 2486, 1, 0, 0, 0, 2489, 2492, 1, 0, 0, 0, 2490, 2488, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2494, 1, 0, 0, 0, 2492, 2490, 1, 0, 0, 0, 2493, 2485, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2496, 5, 2, 0, 0, 2496, 2497, 5, 7, 0, 0, 2497, 2796, 3, 148, 74, 0, 2498, 2499, 5, 1, 0, 0, 2499, 2500, 3, 22, 11, 0, 2500, 2501, 5, 2, 0, 0, 2501, 2796, 1, 0, 0, 0, 2502, 2503, 5, 94, 0, 0, 2503, 2504, 5, 1, 0, 0, 2504, 2505, 3, 22, 11, 0, 2505, 2506, 5, 2, 0, 0, 2506, 2796, 1, 0, 0, 0, 2507, 2508, 5, 40, 0, 0, 2508, 2510, 3, 148, 74, 0, 2509, 2511, 3, 202, 101, 0, 2510, 2509, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2510, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2516, 1, 0, 0, 0, 2514, 2515, 5, 84, 0, 0, 2515, 2517, 3, 148, 74, 0, 2516, 2514, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2519, 5, 88, 0, 0, 2519, 2796, 1, 0, 0, 0, 2520, 2522, 5, 40, 0, 0, 2521, 2523, 3, 202, 101, 0, 2522, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2527, 5, 84, 0, 0, 2527, 2529, 3, 148, 74, 0, 2528, 2526, 1, 0, 0, 0, 2528, 2529, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2531, 5, 88, 0, 0, 2531, 2796, 1, 0, 0, 0, 2532, 2533, 5, 41, 0, 0, 2533, 2534, 5, 1, 0, 0, 2534, 2535, 3, 148, 74, 0, 2535, 2536, 5, 28, 0, 0, 2536, 2537, 3, 196, 98, 0, 2537, 2538, 5, 2, 0, 0, 2538, 2796, 1, 0, 0, 0, 2539, 2540, 5, 275, 0, 0, 2540, 2541, 5, 1, 0, 0, 2541, 2542, 3, 148, 74, 0, 2542, 2543, 5, 28, 0, 0, 2543, 2544, 3, 196, 98, 0, 2544, 2545, 5, 2, 0, 0, 2545, 2796, 1, 0, 0, 0, 2546, 2547, 5, 27, 0, 0, 2547, 2556, 5, 8, 0, 0, 2548, 2553, 3, 148, 74, 0, 2549, 2550, 5, 3, 0, 0, 2550, 2552, 3, 148, 74, 0, 2551, 2549, 1, 0, 0, 0, 2552, 2555, 1, 0, 0, 0, 2553, 2551, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2557, 1, 0, 0, 0, 2555, 2553, 1, 0, 0, 0, 2556, 2548, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2796, 5, 9, 0, 0, 2559, 2796, 3, 306, 153, 0, 2560, 2796, 5, 58, 0, 0, 2561, 2565, 5, 62, 0, 0, 2562, 2563, 5, 1, 0, 0, 2563, 2564, 5, 329, 0, 0, 2564, 2566, 5, 2, 0, 0, 2565, 2562, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2796, 1, 0, 0, 0, 2567, 2571, 5, 63, 0, 0, 2568, 2569, 5, 1, 0, 0, 2569, 2570, 5, 329, 0, 0, 2570, 2572, 5, 2, 0, 0, 2571, 2568, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2796, 1, 0, 0, 0, 2573, 2577, 5, 158, 0, 0, 2574, 2575, 5, 1, 0, 0, 2575, 2576, 5, 329, 0, 0, 2576, 2578, 5, 2, 0, 0, 2577, 2574, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2796, 1, 0, 0, 0, 2579, 2583, 5, 159, 0, 0, 2580, 2581, 5, 1, 0, 0, 2581, 2582, 5, 329, 0, 0, 2582, 2584, 5, 2, 0, 0, 2583, 2580, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2796, 1, 0, 0, 0, 2585, 2796, 5, 64, 0, 0, 2586, 2796, 5, 57, 0, 0, 2587, 2796, 5, 61, 0, 0, 2588, 2796, 5, 59, 0, 0, 2589, 2590, 5, 272, 0, 0, 2590, 2598, 5, 1, 0, 0, 2591, 2593, 3, 92, 46, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 154, 77, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2599, 5, 105, 0, 0, 2598, 2592, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2601, 3, 154, 77, 0, 2601, 2602, 5, 2, 0, 0, 2602, 2796, 1, 0, 0, 0, 2603, 2604, 5, 272, 0, 0, 2604, 2605, 5, 1, 0, 0, 2605, 2606, 3, 154, 77, 0, 2606, 2607, 5, 3, 0, 0, 2607, 2608, 3, 154, 77, 0, 2608, 2609, 5, 2, 0, 0, 2609, 2796, 1, 0, 0, 0, 2610, 2611, 5, 258, 0, 0, 2611, 2612, 5, 1, 0, 0, 2612, 2613, 3, 154, 77, 0, 2613, 2614, 5, 105, 0, 0, 2614, 2617, 3, 154, 77, 0, 2615, 2616, 5, 103, 0, 0, 2616, 2618, 3, 154, 77, 0, 2617, 2615, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 1, 0, 0, 0, 2619, 2620, 5, 2, 0, 0, 2620, 2796, 1, 0, 0, 0, 2621, 2622, 5, 181, 0, 0, 2622, 2623, 5, 1, 0, 0, 2623, 2626, 3, 154, 77, 0, 2624, 2625, 5, 3, 0, 0, 2625, 2627, 3, 194, 97, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2629, 5, 2, 0, 0, 2629, 2796, 1, 0, 0, 0, 2630, 2631, 5, 96, 0, 0, 2631, 2632, 5, 1, 0, 0, 2632, 2633, 3, 306, 153, 0, 2633, 2634, 5, 105, 0, 0, 2634, 2635, 3, 154, 77, 0, 2635, 2636, 5, 2, 0, 0, 2636, 2796, 1, 0, 0, 0, 2637, 2638, 5, 1, 0, 0, 2638, 2639, 3, 148, 74, 0, 2639, 2640, 5, 2, 0, 0, 2640, 2796, 1, 0, 0, 0, 2641, 2642, 5, 115, 0, 0, 2642, 2651, 5, 1, 0, 0, 2643, 2648, 3, 292, 146, 0, 2644, 2645, 5, 3, 0, 0, 2645, 2647, 3, 292, 146, 0, 2646, 2644, 1, 0, 0, 0, 2647, 2650, 1, 0, 0, 0, 2648, 2646, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2652, 1, 0, 0, 0, 2650, 2648, 1, 0, 0, 0, 2651, 2643, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2796, 5, 2, 0, 0, 2654, 2655, 5, 139, 0, 0, 2655, 2656, 5, 1, 0, 0, 2656, 2661, 3, 158, 79, 0, 2657, 2658, 3, 166, 83, 0, 2658, 2659, 5, 190, 0, 0, 2659, 2660, 5, 89, 0, 0, 2660, 2662, 1, 0, 0, 0, 2661, 2657, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 5, 2, 0, 0, 2664, 2796, 1, 0, 0, 0, 2665, 2666, 5, 143, 0, 0, 2666, 2667, 5, 1, 0, 0, 2667, 2670, 3, 158, 79, 0, 2668, 2669, 5, 231, 0, 0, 2669, 2671, 3, 196, 98, 0, 2670, 2668, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2676, 1, 0, 0, 0, 2672, 2673, 3, 168, 84, 0, 2673, 2674, 5, 190, 0, 0, 2674, 2675, 5, 85, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2672, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2682, 1, 0, 0, 0, 2678, 2679, 3, 168, 84, 0, 2679, 2680, 5, 190, 0, 0, 2680, 2681, 5, 89, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2678, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 5, 2, 0, 0, 2685, 2796, 1, 0, 0, 0, 2686, 2687, 5, 141, 0, 0, 2687, 2688, 5, 1, 0, 0, 2688, 2695, 3, 158, 79, 0, 2689, 2690, 5, 231, 0, 0, 2690, 2693, 3, 196, 98, 0, 2691, 2692, 5, 104, 0, 0, 2692, 2694, 3, 162, 81, 0, 2693, 2691, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2696, 1, 0, 0, 0, 2695, 2689, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2700, 1, 0, 0, 0, 2697, 2698, 3, 170, 85, 0, 2698, 2699, 5, 308, 0, 0, 2699, 2701, 1, 0, 0, 0, 2700, 2697, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2709, 1, 0, 0, 0, 2702, 2703, 7, 15, 0, 0, 2703, 2707, 5, 218, 0, 0, 2704, 2705, 5, 190, 0, 0, 2705, 2706, 5, 242, 0, 0, 2706, 2708, 5, 264, 0, 0, 2707, 2704, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2710, 1, 0, 0, 0, 2709, 2702, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2715, 1, 0, 0, 0, 2711, 2712, 3, 172, 86, 0, 2712, 2713, 5, 190, 0, 0, 2713, 2714, 5, 85, 0, 0, 2714, 2716, 1, 0, 0, 0, 2715, 2711, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2721, 1, 0, 0, 0, 2717, 2718, 3, 172, 86, 0, 2718, 2719, 5, 190, 0, 0, 2719, 2720, 5, 89, 0, 0, 2720, 2722, 1, 0, 0, 0, 2721, 2717, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2724, 5, 2, 0, 0, 2724, 2796, 1, 0, 0, 0, 2725, 2726, 5, 140, 0, 0, 2726, 2755, 5, 1, 0, 0, 2727, 2732, 3, 174, 87, 0, 2728, 2729, 5, 3, 0, 0, 2729, 2731, 3, 174, 87, 0, 2730, 2728, 1, 0, 0, 0, 2731, 2734, 1, 0, 0, 0, 2732, 2730, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2741, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2735, 2736, 5, 183, 0, 0, 2736, 2737, 5, 190, 0, 0, 2737, 2742, 5, 183, 0, 0, 2738, 2739, 5, 18, 0, 0, 2739, 2740, 5, 190, 0, 0, 2740, 2742, 5, 183, 0, 0, 2741, 2735, 1, 0, 0, 0, 2741, 2738, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2753, 1, 0, 0, 0, 2743, 2744, 5, 304, 0, 0, 2744, 2746, 5, 282, 0, 0, 2745, 2747, 5, 146, 0, 0, 2746, 2745, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2754, 1, 0, 0, 0, 2748, 2749, 5, 306, 0, 0, 2749, 2751, 5, 282, 0, 0, 2750, 2752, 5, 146, 0, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2754, 1, 0, 0, 0, 2753, 2743, 1, 0, 0, 0, 2753, 2748, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2756, 1, 0, 0, 0, 2755, 2727, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2763, 1, 0, 0, 0, 2757, 2758, 5, 231, 0, 0, 2758, 2761, 3, 196, 98, 0, 2759, 2760, 5, 104, 0, 0, 2760, 2762, 3, 162, 81, 0, 2761, 2759, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2764, 1, 0, 0, 0, 2763, 2757, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2796, 5, 2, 0, 0, 2766, 2767, 5, 138, 0, 0, 2767, 2784, 5, 1, 0, 0, 2768, 2773, 3, 160, 80, 0, 2769, 2770, 5, 3, 0, 0, 2770, 2772, 3, 160, 80, 0, 2771, 2769, 1, 0, 0, 0, 2772, 2775, 1, 0, 0, 0, 2773, 2771, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2782, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2776, 2777, 5, 183, 0, 0, 2777, 2778, 5, 190, 0, 0, 2778, 2783, 5, 183, 0, 0, 2779, 2780, 5, 18, 0, 0, 2780, 2781, 5, 190, 0, 0, 2781, 2783, 5, 183, 0, 0, 2782, 2776, 1, 0, 0, 0, 2782, 2779, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2785, 1, 0, 0, 0, 2784, 2768, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2792, 1, 0, 0, 0, 2786, 2787, 5, 231, 0, 0, 2787, 2790, 3, 196, 98, 0, 2788, 2789, 5, 104, 0, 0, 2789, 2791, 3, 162, 81, 0, 2790, 2788, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2793, 1, 0, 0, 0, 2792, 2786, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2796, 5, 2, 0, 0, 2795, 2342, 1, 0, 0, 0, 2795, 2344, 1, 0, 0, 0, 2795, 2345, 1, 0, 0, 0, 2795, 2348, 1, 0, 0, 0, 2795, 2351, 1, 0, 0, 0, 2795, 2352, 1, 0, 0, 0, 2795, 2353, 1, 0, 0, 0, 2795, 2354, 1, 0, 0, 0, 2795, 2355, 1, 0, 0, 0, 2795, 2356, 1, 0, 0, 0, 2795, 2363, 1, 0, 0, 0, 2795, 2373, 1, 0, 0, 0, 2795, 2385, 1, 0, 0, 0, 2795, 2420, 1, 0, 0, 0, 2795, 2438, 1, 0, 0, 0, 2795, 2477, 1, 0, 0, 0, 2795, 2480, 1, 0, 0, 0, 2795, 2484, 1, 0, 0, 0, 2795, 2498, 1, 0, 0, 0, 2795, 2502, 1, 0, 0, 0, 2795, 2507, 1, 0, 0, 0, 2795, 2520, 1, 0, 0, 0, 2795, 2532, 1, 0, 0, 0, 2795, 2539, 1, 0, 0, 0, 2795, 2546, 1, 0, 0, 0, 2795, 2559, 1, 0, 0, 0, 2795, 2560, 1, 0, 0, 0, 2795, 2561, 1, 0, 0, 0, 2795, 2567, 1, 0, 0, 0, 2795, 2573, 1, 0, 0, 0, 2795, 2579, 1, 0, 0, 0, 2795, 2585, 1, 0, 0, 0, 2795, 2586, 1, 0, 0, 0, 2795, 2587, 1, 0, 0, 0, 2795, 2588, 1, 0, 0, 0, 2795, 2589, 1, 0, 0, 0, 2795, 2603, 1, 0, 0, 0, 2795, 2610, 1, 0, 0, 0, 2795, 2621, 1, 0, 0, 0, 2795, 2630, 1, 0, 0, 0, 2795, 2637, 1, 0, 0, 0, 2795, 2641, 1, 0, 0, 0, 2795, 2654, 1, 0, 0, 0, 2795, 2665, 1, 0, 0, 0, 2795, 2686, 1, 0, 0, 0, 2795, 2725, 1, 0, 0, 0, 2795, 2766, 1, 0, 0, 0, 2796, 2807, 1, 0, 0, 0, 2797, 2798, 10, 24, 0, 0, 2798, 2799, 5, 8, 0, 0, 2799, 2800, 3, 154, 77, 0, 2800, 2801, 5, 9, 0, 0, 2801, 2806, 1, 0, 0, 0, 2802, 2803, 10, 22, 0, 0, 2803, 2804, 5, 4, 0, 0, 2804, 2806, 3, 306, 153, 0, 2805, 2797, 1, 0, 0, 0, 2805, 2802, 1, 0, 0, 0, 2806, 2809, 1, 0, 0, 0, 2807, 2805, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 157, 1, 0, 0, 0, 2809, 2807, 1, 0, 0, 0, 2810, 2811, 3, 160, 80, 0, 2811, 2812, 5, 3, 0, 0, 2812, 2815, 3, 180, 90, 0, 2813, 2814, 5, 28, 0, 0, 2814, 2816, 3, 306, 153, 0, 2815, 2813, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2826, 1, 0, 0, 0, 2817, 2818, 5, 203, 0, 0, 2818, 2823, 3, 164, 82, 0, 2819, 2820, 5, 3, 0, 0, 2820, 2822, 3, 164, 82, 0, 2821, 2819, 1, 0, 0, 0, 2822, 2825, 1, 0, 0, 0, 2823, 2821, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2827, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2826, 2817, 1, 0, 0, 0, 2826, 2827, 1, 0, 0, 0, 2827, 159, 1, 0, 0, 0, 2828, 2831, 3, 148, 74, 0, 2829, 2830, 5, 104, 0, 0, 2830, 2832, 3, 162, 81, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 161, 1, 0, 0, 0, 2833, 2836, 5, 137, 0, 0, 2834, 2835, 5, 87, 0, 0, 2835, 2837, 7, 20, 0, 0, 2836, 2834, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 163, 1, 0, 0, 0, 2838, 2839, 3, 160, 80, 0, 2839, 2840, 5, 28, 0, 0, 2840, 2841, 3, 306, 153, 0, 2841, 165, 1, 0, 0, 0, 2842, 2843, 7, 21, 0, 0, 2843, 167, 1, 0, 0, 0, 2844, 2849, 5, 89, 0, 0, 2845, 2849, 5, 183, 0, 0, 2846, 2847, 5, 70, 0, 0, 2847, 2849, 3, 148, 74, 0, 2848, 2844, 1, 0, 0, 0, 2848, 2845, 1, 0, 0, 0, 2848, 2846, 1, 0, 0, 0, 2849, 169, 1, 0, 0, 0, 2850, 2852, 5, 306, 0, 0, 2851, 2853, 5, 27, 0, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2862, 1, 0, 0, 0, 2854, 2856, 5, 304, 0, 0, 2855, 2857, 7, 22, 0, 0, 2856, 2855, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2860, 5, 27, 0, 0, 2859, 2858, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2850, 1, 0, 0, 0, 2861, 2854, 1, 0, 0, 0, 2862, 171, 1, 0, 0, 0, 2863, 2870, 5, 89, 0, 0, 2864, 2870, 5, 183, 0, 0, 2865, 2866, 5, 85, 0, 0, 2866, 2870, 5, 27, 0, 0, 2867, 2868, 5, 85, 0, 0, 2868, 2870, 5, 186, 0, 0, 2869, 2863, 1, 0, 0, 0, 2869, 2864, 1, 0, 0, 0, 2869, 2865, 1, 0, 0, 0, 2869, 2867, 1, 0, 0, 0, 2870, 173, 1, 0, 0, 0, 2871, 2873, 5, 145, 0, 0, 2872, 2871, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2875, 3, 148, 74, 0, 2875, 2876, 5, 295, 0, 0, 2876, 2877, 3, 160, 80, 0, 2877, 2883, 1, 0, 0, 0, 2878, 2879, 3, 148, 74, 0, 2879, 2880, 5, 10, 0, 0, 2880, 2881, 3, 160, 80, 0, 2881, 2883, 1, 0, 0, 0, 2882, 2872, 1, 0, 0, 0, 2882, 2878, 1, 0, 0, 0, 2883, 175, 1, 0, 0, 0, 2884, 2885, 7, 23, 0, 0, 2885, 177, 1, 0, 0, 0, 2886, 2887, 5, 120, 0, 0, 2887, 2891, 5, 185, 0, 0, 2888, 2889, 5, 228, 0, 0, 2889, 2891, 5, 185, 0, 0, 2890, 2886, 1, 0, 0, 0, 2890, 2888, 1, 0, 0, 0, 2891, 179, 1, 0, 0, 0, 2892, 2899, 5, 326, 0, 0, 2893, 2896, 5, 327, 0, 0, 2894, 2895, 5, 277, 0, 0, 2895, 2897, 5, 326, 0, 0, 2896, 2894, 1, 0, 0, 0, 2896, 2897, 1, 0, 0, 0, 2897, 2899, 1, 0, 0, 0, 2898, 2892, 1, 0, 0, 0, 2898, 2893, 1, 0, 0, 0, 2899, 181, 1, 0, 0, 0, 2900, 2901, 5, 267, 0, 0, 2901, 2902, 5, 311, 0, 0, 2902, 2907, 3, 190, 95, 0, 2903, 2904, 5, 267, 0, 0, 2904, 2905, 5, 311, 0, 0, 2905, 2907, 3, 180, 90, 0, 2906, 2900, 1, 0, 0, 0, 2906, 2903, 1, 0, 0, 0, 2907, 183, 1, 0, 0, 0, 2908, 2909, 7, 24, 0, 0, 2909, 185, 1, 0, 0, 0, 2910, 2911, 7, 25, 0, 0, 2911, 187, 1, 0, 0, 0, 2912, 2913, 7, 26, 0, 0, 2913, 189, 1, 0, 0, 0, 2914, 2916, 5, 129, 0, 0, 2915, 2917, 7, 18, 0, 0, 2916, 2915, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2919, 3, 180, 90, 0, 2919, 2922, 3, 192, 96, 0, 2920, 2921, 5, 269, 0, 0, 2921, 2923, 3, 192, 96, 0, 2922, 2920, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 191, 1, 0, 0, 0, 2924, 2925, 7, 27, 0, 0, 2925, 193, 1, 0, 0, 0, 2926, 2927, 7, 28, 0, 0, 2927, 195, 1, 0, 0, 0, 2928, 2929, 6, 98, -1, 0, 2929, 2930, 5, 239, 0, 0, 2930, 2931, 5, 1, 0, 0, 2931, 2936, 3, 198, 99, 0, 2932, 2933, 5, 3, 0, 0, 2933, 2935, 3, 198, 99, 0, 2934, 2932, 1, 0, 0, 0, 2935, 2938, 1, 0, 0, 0, 2936, 2934, 1, 0, 0, 0, 2936, 2937, 1, 0, 0, 0, 2937, 2939, 1, 0, 0, 0, 2938, 2936, 1, 0, 0, 0, 2939, 2940, 5, 2, 0, 0, 2940, 3000, 1, 0, 0, 0, 2941, 2942, 5, 129, 0, 0, 2942, 2945, 3, 192, 96, 0, 2943, 2944, 5, 269, 0, 0, 2944, 2946, 3, 192, 96, 0, 2945, 2943, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 3000, 1, 0, 0, 0, 2947, 2952, 5, 268, 0, 0, 2948, 2949, 5, 1, 0, 0, 2949, 2950, 3, 200, 100, 0, 2950, 2951, 5, 2, 0, 0, 2951, 2953, 1, 0, 0, 0, 2952, 2948, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2957, 1, 0, 0, 0, 2954, 2955, 7, 29, 0, 0, 2955, 2956, 5, 267, 0, 0, 2956, 2958, 5, 311, 0, 0, 2957, 2954, 1, 0, 0, 0, 2957, 2958, 1, 0, 0, 0, 2958, 3000, 1, 0, 0, 0, 2959, 2964, 5, 267, 0, 0, 2960, 2961, 5, 1, 0, 0, 2961, 2962, 3, 200, 100, 0, 2962, 2963, 5, 2, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2960, 1, 0, 0, 0, 2964, 2965, 1, 0, 0, 0, 2965, 2969, 1, 0, 0, 0, 2966, 2967, 7, 29, 0, 0, 2967, 2968, 5, 267, 0, 0, 2968, 2970, 5, 311, 0, 0, 2969, 2966, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 3000, 1, 0, 0, 0, 2971, 2972, 5, 82, 0, 0, 2972, 3000, 5, 213, 0, 0, 2973, 2974, 5, 27, 0, 0, 2974, 2975, 5, 314, 0, 0, 2975, 2976, 3, 196, 98, 0, 2976, 2977, 5, 316, 0, 0, 2977, 3000, 1, 0, 0, 0, 2978, 2979, 5, 162, 0, 0, 2979, 2980, 5, 314, 0, 0, 2980, 2981, 3, 196, 98, 0, 2981, 2982, 5, 3, 0, 0, 2982, 2983, 3, 196, 98, 0, 2983, 2984, 5, 316, 0, 0, 2984, 3000, 1, 0, 0, 0, 2985, 2997, 3, 306, 153, 0, 2986, 2987, 5, 1, 0, 0, 2987, 2992, 3, 200, 100, 0, 2988, 2989, 5, 3, 0, 0, 2989, 2991, 3, 200, 100, 0, 2990, 2988, 1, 0, 0, 0, 2991, 2994, 1, 0, 0, 0, 2992, 2990, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2995, 1, 0, 0, 0, 2994, 2992, 1, 0, 0, 0, 2995, 2996, 5, 2, 0, 0, 2996, 2998, 1, 0, 0, 0, 2997, 2986, 1, 0, 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 3000, 1, 0, 0, 0, 2999, 2928, 1, 0, 0, 0, 2999, 2941, 1, 0, 0, 0, 2999, 2947, 1, 0, 0, 0, 2999, 2959, 1, 0, 0, 0, 2999, 2971, 1, 0, 0, 0, 2999, 2973, 1, 0, 0, 0, 2999, 2978, 1, 0, 0, 0, 2999, 2985, 1, 0, 0, 0, 3000, 3010, 1, 0, 0, 0, 3001, 3002, 10, 2, 0, 0, 3002, 3006, 5, 27, 0, 0, 3003, 3004, 5, 8, 0, 0, 3004, 3005, 5, 329, 0, 0, 3005, 3007, 5, 9, 0, 0, 3006, 3003, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3009, 1, 0, 0, 0, 3008, 3001, 1, 0, 0, 0, 3009, 3012, 1, 0, 0, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 197, 1, 0, 0, 0, 3012, 3010, 1, 0, 0, 0, 3013, 3018, 3, 196, 98, 0, 3014, 3015, 3, 306, 153, 0, 3015, 3016, 3, 196, 98, 0, 3016, 3018, 1, 0, 0, 0, 3017, 3013, 1, 0, 0, 0, 3017, 3014, 1, 0, 0, 0, 3018, 199, 1, 0, 0, 0, 3019, 3022, 5, 329, 0, 0, 3020, 3022, 3, 196, 98, 0, 3021, 3019, 1, 0, 0, 0, 3021, 3020, 1, 0, 0, 0, 3022, 201, 1, 0, 0, 0, 3023, 3024, 5, 300, 0, 0, 3024, 3025, 3, 148, 74, 0, 3025, 3026, 5, 265, 0, 0, 3026, 3027, 3, 148, 74, 0, 3027, 203, 1, 0, 0, 0, 3028, 3029, 5, 99, 0, 0, 3029, 3030, 5, 1, 0, 0, 3030, 3031, 5, 301, 0, 0, 3031, 3032, 3, 150, 75, 0, 3032, 3033, 5, 2, 0, 0, 3033, 205, 1, 0, 0, 0, 3034, 3035, 5, 300, 0, 0, 3035, 3038, 5, 164, 0, 0, 3036, 3037, 5, 25, 0, 0, 3037, 3039, 3, 148, 74, 0, 3038, 3036, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3041, 5, 265, 0, 0, 3041, 3042, 5, 287, 0, 0, 3042, 3043, 5, 251, 0, 0, 3043, 3044, 3, 306, 153, 0, 3044, 3045, 5, 312, 0, 0, 3045, 3053, 3, 148, 74, 0, 3046, 3047, 5, 3, 0, 0, 3047, 3048, 3, 306, 153, 0, 3048, 3049, 5, 312, 0, 0, 3049, 3050, 3, 148, 74, 0, 3050, 3052, 1, 0, 0, 0, 3051, 3046, 1, 0, 0, 0, 3052, 3055, 1, 0, 0, 0, 3053, 3051, 1, 0, 0, 0, 3053, 3054, 1, 0, 0, 0, 3054, 3099, 1, 0, 0, 0, 3055, 3053, 1, 0, 0, 0, 3056, 3057, 5, 300, 0, 0, 3057, 3060, 5, 164, 0, 0, 3058, 3059, 5, 25, 0, 0, 3059, 3061, 3, 148, 74, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3062, 1, 0, 0, 0, 3062, 3063, 5, 265, 0, 0, 3063, 3099, 5, 73, 0, 0, 3064, 3065, 5, 300, 0, 0, 3065, 3066, 5, 182, 0, 0, 3066, 3069, 5, 164, 0, 0, 3067, 3068, 5, 25, 0, 0, 3068, 3070, 3, 148, 74, 0, 3069, 3067, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3072, 5, 265, 0, 0, 3072, 3084, 5, 127, 0, 0, 3073, 3074, 5, 1, 0, 0, 3074, 3079, 3, 306, 153, 0, 3075, 3076, 5, 3, 0, 0, 3076, 3078, 3, 306, 153, 0, 3077, 3075, 1, 0, 0, 0, 3078, 3081, 1, 0, 0, 0, 3079, 3077, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3082, 1, 0, 0, 0, 3081, 3079, 1, 0, 0, 0, 3082, 3083, 5, 2, 0, 0, 3083, 3085, 1, 0, 0, 0, 3084, 3073, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3087, 5, 296, 0, 0, 3087, 3088, 5, 1, 0, 0, 3088, 3093, 3, 148, 74, 0, 3089, 3090, 5, 3, 0, 0, 3090, 3092, 3, 148, 74, 0, 3091, 3089, 1, 0, 0, 0, 3092, 3095, 1, 0, 0, 0, 3093, 3091, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3096, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3096, 3097, 5, 2, 0, 0, 3097, 3099, 1, 0, 0, 0, 3098, 3034, 1, 0, 0, 0, 3098, 3056, 1, 0, 0, 0, 3098, 3064, 1, 0, 0, 0, 3099, 207, 1, 0, 0, 0, 3100, 3106, 5, 199, 0, 0, 3101, 3107, 3, 306, 153, 0, 3102, 3103, 5, 1, 0, 0, 3103, 3104, 3, 66, 33, 0, 3104, 3105, 5, 2, 0, 0, 3105, 3107, 1, 0, 0, 0, 3106, 3101, 1, 0, 0, 0, 3106, 3102, 1, 0, 0, 0, 3107, 209, 1, 0, 0, 0, 3108, 3109, 5, 168, 0, 0, 3109, 3114, 3, 100, 50, 0, 3110, 3111, 5, 3, 0, 0, 3111, 3113, 3, 100, 50, 0, 3112, 3110, 1, 0, 0, 0, 3113, 3116, 1, 0, 0, 0, 3114, 3112, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3118, 1, 0, 0, 0, 3116, 3114, 1, 0, 0, 0, 3117, 3108, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3123, 3, 212, 106, 0, 3120, 3121, 5, 21, 0, 0, 3121, 3122, 5, 163, 0, 0, 3122, 3124, 3, 106, 53, 0, 3123, 3120, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3126, 1, 0, 0, 0, 3125, 3127, 7, 13, 0, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3133, 1, 0, 0, 0, 3128, 3129, 5, 206, 0, 0, 3129, 3130, 5, 1, 0, 0, 3130, 3131, 3, 216, 108, 0, 3131, 3132, 5, 2, 0, 0, 3132, 3134, 1, 0, 0, 0, 3133, 3128, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3144, 1, 0, 0, 0, 3135, 3136, 5, 257, 0, 0, 3136, 3141, 3, 108, 54, 0, 3137, 3138, 5, 3, 0, 0, 3138, 3140, 3, 108, 54, 0, 3139, 3137, 1, 0, 0, 0, 3140, 3143, 1, 0, 0, 0, 3141, 3139, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3145, 1, 0, 0, 0, 3143, 3141, 1, 0, 0, 0, 3144, 3135, 1, 0, 0, 0, 3144, 3145, 1, 0, 0, 0, 3145, 3155, 1, 0, 0, 0, 3146, 3147, 5, 71, 0, 0, 3147, 3152, 3, 110, 55, 0, 3148, 3149, 5, 3, 0, 0, 3149, 3151, 3, 110, 55, 0, 3150, 3148, 1, 0, 0, 0, 3151, 3154, 1, 0, 0, 0, 3152, 3150, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3156, 1, 0, 0, 0, 3154, 3152, 1, 0, 0, 0, 3155, 3146, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 211, 1, 0, 0, 0, 3157, 3158, 5, 219, 0, 0, 3158, 3182, 3, 214, 107, 0, 3159, 3160, 5, 240, 0, 0, 3160, 3182, 3, 214, 107, 0, 3161, 3162, 5, 116, 0, 0, 3162, 3182, 3, 214, 107, 0, 3163, 3164, 5, 219, 0, 0, 3164, 3165, 5, 34, 0, 0, 3165, 3166, 3, 214, 107, 0, 3166, 3167, 5, 25, 0, 0, 3167, 3168, 3, 214, 107, 0, 3168, 3182, 1, 0, 0, 0, 3169, 3170, 5, 240, 0, 0, 3170, 3171, 5, 34, 0, 0, 3171, 3172, 3, 214, 107, 0, 3172, 3173, 5, 25, 0, 0, 3173, 3174, 3, 214, 107, 0, 3174, 3182, 1, 0, 0, 0, 3175, 3176, 5, 116, 0, 0, 3176, 3177, 5, 34, 0, 0, 3177, 3178, 3, 214, 107, 0, 3178, 3179, 5, 25, 0, 0, 3179, 3180, 3, 214, 107, 0, 3180, 3182, 1, 0, 0, 0, 3181, 3157, 1, 0, 0, 0, 3181, 3159, 1, 0, 0, 0, 3181, 3161, 1, 0, 0, 0, 3181, 3163, 1, 0, 0, 0, 3181, 3169, 1, 0, 0, 0, 3181, 3175, 1, 0, 0, 0, 3182, 213, 1, 0, 0, 0, 3183, 3184, 5, 278, 0, 0, 3184, 3193, 5, 212, 0, 0, 3185, 3186, 5, 278, 0, 0, 3186, 3193, 5, 102, 0, 0, 3187, 3188, 5, 56, 0, 0, 3188, 3193, 5, 239, 0, 0, 3189, 3190, 3, 148, 74, 0, 3190, 3191, 7, 30, 0, 0, 3191, 3193, 1, 0, 0, 0, 3192, 3183, 1, 0, 0, 0, 3192, 3185, 1, 0, 0, 0, 3192, 3187, 1, 0, 0, 0, 3192, 3189, 1, 0, 0, 0, 3193, 215, 1, 0, 0, 0, 3194, 3195, 6, 108, -1, 0, 3195, 3197, 3, 218, 109, 0, 3196, 3198, 3, 220, 110, 0, 3197, 3196, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3206, 1, 0, 0, 0, 3199, 3200, 10, 2, 0, 0, 3200, 3205, 3, 216, 108, 3, 3201, 3202, 10, 1, 0, 0, 3202, 3203, 5, 11, 0, 0, 3203, 3205, 3, 216, 108, 2, 3204, 3199, 1, 0, 0, 0, 3204, 3201, 1, 0, 0, 0, 3205, 3208, 1, 0, 0, 0, 3206, 3204, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 217, 1, 0, 0, 0, 3208, 3206, 1, 0, 0, 0, 3209, 3235, 3, 306, 153, 0, 3210, 3211, 5, 1, 0, 0, 3211, 3235, 5, 2, 0, 0, 3212, 3213, 5, 209, 0, 0, 3213, 3214, 5, 1, 0, 0, 3214, 3219, 3, 216, 108, 0, 3215, 3216, 5, 3, 0, 0, 3216, 3218, 3, 216, 108, 0, 3217, 3215, 1, 0, 0, 0, 3218, 3221, 1, 0, 0, 0, 3219, 3217, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3222, 1, 0, 0, 0, 3221, 3219, 1, 0, 0, 0, 3222, 3223, 5, 2, 0, 0, 3223, 3235, 1, 0, 0, 0, 3224, 3225, 5, 1, 0, 0, 3225, 3226, 3, 216, 108, 0, 3226, 3227, 5, 2, 0, 0, 3227, 3235, 1, 0, 0, 0, 3228, 3235, 5, 12, 0, 0, 3229, 3235, 5, 13, 0, 0, 3230, 3231, 5, 14, 0, 0, 3231, 3232, 3, 216, 108, 0, 3232, 3233, 5, 15, 0, 0, 3233, 3235, 1, 0, 0, 0, 3234, 3209, 1, 0, 0, 0, 3234, 3210, 1, 0, 0, 0, 3234, 3212, 1, 0, 0, 0, 3234, 3224, 1, 0, 0, 0, 3234, 3228, 1, 0, 0, 0, 3234, 3229, 1, 0, 0, 0, 3234, 3230, 1, 0, 0, 0, 3235, 219, 1, 0, 0, 0, 3236, 3238, 5, 320, 0, 0, 3237, 3239, 5, 324, 0, 0, 3238, 3237, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3267, 1, 0, 0, 0, 3240, 3242, 5, 318, 0, 0, 3241, 3243, 5, 324, 0, 0, 3242, 3241, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3267, 1, 0, 0, 0, 3244, 3246, 5, 324, 0, 0, 3245, 3247, 5, 324, 0, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3267, 1, 0, 0, 0, 3248, 3249, 5, 16, 0, 0, 3249, 3250, 5, 329, 0, 0, 3250, 3252, 5, 17, 0, 0, 3251, 3253, 5, 324, 0, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3267, 1, 0, 0, 0, 3254, 3256, 5, 16, 0, 0, 3255, 3257, 5, 329, 0, 0, 3256, 3255, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3258, 1, 0, 0, 0, 3258, 3260, 5, 3, 0, 0, 3259, 3261, 5, 329, 0, 0, 3260, 3259, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 5, 17, 0, 0, 3263, 3265, 5, 324, 0, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3236, 1, 0, 0, 0, 3266, 3240, 1, 0, 0, 0, 3266, 3244, 1, 0, 0, 0, 3266, 3248, 1, 0, 0, 0, 3266, 3254, 1, 0, 0, 0, 3267, 221, 1, 0, 0, 0, 3268, 3269, 3, 306, 153, 0, 3269, 3270, 5, 312, 0, 0, 3270, 3271, 3, 148, 74, 0, 3271, 223, 1, 0, 0, 0, 3272, 3273, 5, 104, 0, 0, 3273, 3277, 7, 31, 0, 0, 3274, 3275, 5, 276, 0, 0, 3275, 3277, 7, 32, 0, 0, 3276, 3272, 1, 0, 0, 0, 3276, 3274, 1, 0, 0, 0, 3277, 225, 1, 0, 0, 0, 3278, 3279, 5, 134, 0, 0, 3279, 3280, 5, 153, 0, 0, 3280, 3284, 3, 228, 114, 0, 3281, 3282, 5, 220, 0, 0, 3282, 3284, 7, 33, 0, 0, 3283, 3278, 1, 0, 0, 0, 3283, 3281, 1, 0, 0, 0, 3284, 227, 1, 0, 0, 0, 3285, 3286, 5, 220, 0, 0, 3286, 3293, 5, 279, 0, 0, 3287, 3288, 5, 220, 0, 0, 3288, 3293, 5, 48, 0, 0, 3289, 3290, 5, 225, 0, 0, 3290, 3293, 5, 220, 0, 0, 3291, 3293, 5, 249, 0, 0, 3292, 3285, 1, 0, 0, 0, 3292, 3287, 1, 0, 0, 0, 3292, 3289, 1, 0, 0, 0, 3292, 3291, 1, 0, 0, 0, 3293, 229, 1, 0, 0, 0, 3294, 3300, 3, 148, 74, 0, 3295, 3296, 3, 306, 153, 0, 3296, 3297, 5, 6, 0, 0, 3297, 3298, 3, 148, 74, 0, 3298, 3300, 1, 0, 0, 0, 3299, 3294, 1, 0, 0, 0, 3299, 3295, 1, 0, 0, 0, 3300, 231, 1, 0, 0, 0, 3301, 3302, 3, 306, 153, 0, 3302, 3303, 5, 4, 0, 0, 3303, 3304, 3, 306, 153, 0, 3304, 3307, 1, 0, 0, 0, 3305, 3307, 3, 306, 153, 0, 3306, 3301, 1, 0, 0, 0, 3306, 3305, 1, 0, 0, 0, 3307, 233, 1, 0, 0, 0, 3308, 3313, 3, 232, 116, 0, 3309, 3310, 5, 3, 0, 0, 3310, 3312, 3, 232, 116, 0, 3311, 3309, 1, 0, 0, 0, 3312, 3315, 1, 0, 0, 0, 3313, 3311, 1, 0, 0, 0, 3313, 3314, 1, 0, 0, 0, 3314, 235, 1, 0, 0, 0, 3315, 3313, 1, 0, 0, 0, 3316, 3317, 5, 107, 0, 0, 3317, 3318, 3, 238, 119, 0, 3318, 3322, 3, 244, 122, 0, 3319, 3321, 3, 246, 123, 0, 3320, 3319, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3325, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3325, 3326, 3, 248, 124, 0, 3326, 237, 1, 0, 0, 0, 3327, 3328, 3, 286, 143, 0, 3328, 3337, 5, 1, 0, 0, 3329, 3334, 3, 242, 121, 0, 3330, 3331, 5, 3, 0, 0, 3331, 3333, 3, 242, 121, 0, 3332, 3330, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3332, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3338, 1, 0, 0, 0, 3336, 3334, 1, 0, 0, 0, 3337, 3329, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3339, 1, 0, 0, 0, 3339, 3340, 5, 2, 0, 0, 3340, 239, 1, 0, 0, 0, 3341, 3342, 3, 284, 142, 0, 3342, 3351, 5, 1, 0, 0, 3343, 3348, 3, 242, 121, 0, 3344, 3345, 5, 3, 0, 0, 3345, 3347, 3, 242, 121, 0, 3346, 3344, 1, 0, 0, 0, 3347, 3350, 1, 0, 0, 0, 3348, 3346, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3352, 1, 0, 0, 0, 3350, 3348, 1, 0, 0, 0, 3351, 3343, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 5, 2, 0, 0, 3354, 241, 1, 0, 0, 0, 3355, 3357, 3, 306, 153, 0, 3356, 3355, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 3, 196, 98, 0, 3359, 243, 1, 0, 0, 0, 3360, 3361, 5, 232, 0, 0, 3361, 3362, 3, 196, 98, 0, 3362, 245, 1, 0, 0, 0, 3363, 3364, 5, 147, 0, 0, 3364, 3383, 3, 306, 153, 0, 3365, 3367, 5, 182, 0, 0, 3366, 3365, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3383, 5, 78, 0, 0, 3369, 3370, 5, 232, 0, 0, 3370, 3371, 5, 183, 0, 0, 3371, 3372, 5, 190, 0, 0, 3372, 3373, 5, 183, 0, 0, 3373, 3383, 5, 126, 0, 0, 3374, 3375, 5, 38, 0, 0, 3375, 3376, 5, 190, 0, 0, 3376, 3377, 5, 183, 0, 0, 3377, 3383, 5, 126, 0, 0, 3378, 3379, 5, 246, 0, 0, 3379, 3383, 7, 1, 0, 0, 3380, 3381, 5, 46, 0, 0, 3381, 3383, 3, 180, 90, 0, 3382, 3363, 1, 0, 0, 0, 3382, 3366, 1, 0, 0, 0, 3382, 3369, 1, 0, 0, 0, 3382, 3374, 1, 0, 0, 0, 3382, 3378, 1, 0, 0, 0, 3382, 3380, 1, 0, 0, 0, 3383, 247, 1, 0, 0, 0, 3384, 3385, 5, 230, 0, 0, 3385, 3484, 3, 154, 77, 0, 3386, 3387, 5, 251, 0, 0, 3387, 3388, 3, 306, 153, 0, 3388, 3389, 5, 312, 0, 0, 3389, 3390, 3, 148, 74, 0, 3390, 3484, 1, 0, 0, 0, 3391, 3392, 5, 40, 0, 0, 3392, 3394, 3, 148, 74, 0, 3393, 3395, 3, 250, 125, 0, 3394, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3399, 1, 0, 0, 0, 3398, 3400, 3, 254, 127, 0, 3399, 3398, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 5, 88, 0, 0, 3402, 3403, 5, 40, 0, 0, 3403, 3484, 1, 0, 0, 0, 3404, 3406, 5, 40, 0, 0, 3405, 3407, 3, 250, 125, 0, 3406, 3405, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3406, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 3411, 1, 0, 0, 0, 3410, 3412, 3, 254, 127, 0, 3411, 3410, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3414, 5, 88, 0, 0, 3414, 3415, 5, 40, 0, 0, 3415, 3484, 1, 0, 0, 0, 3416, 3417, 5, 119, 0, 0, 3417, 3418, 3, 148, 74, 0, 3418, 3419, 5, 265, 0, 0, 3419, 3423, 3, 258, 129, 0, 3420, 3422, 3, 252, 126, 0, 3421, 3420, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3427, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3426, 3428, 3, 254, 127, 0, 3427, 3426, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 5, 88, 0, 0, 3430, 3431, 5, 119, 0, 0, 3431, 3484, 1, 0, 0, 0, 3432, 3433, 5, 135, 0, 0, 3433, 3484, 3, 306, 153, 0, 3434, 3435, 5, 151, 0, 0, 3435, 3484, 3, 306, 153, 0, 3436, 3442, 5, 32, 0, 0, 3437, 3438, 3, 256, 128, 0, 3438, 3439, 5, 325, 0, 0, 3439, 3441, 1, 0, 0, 0, 3440, 3437, 1, 0, 0, 0, 3441, 3444, 1, 0, 0, 0, 3442, 3440, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3446, 1, 0, 0, 0, 3444, 3442, 1, 0, 0, 0, 3445, 3447, 3, 258, 129, 0, 3446, 3445, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 3484, 5, 88, 0, 0, 3449, 3450, 3, 306, 153, 0, 3450, 3451, 5, 10, 0, 0, 3451, 3453, 1, 0, 0, 0, 3452, 3449, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3455, 5, 161, 0, 0, 3455, 3456, 3, 258, 129, 0, 3456, 3457, 5, 88, 0, 0, 3457, 3458, 5, 161, 0, 0, 3458, 3484, 1, 0, 0, 0, 3459, 3460, 3, 306, 153, 0, 3460, 3461, 5, 10, 0, 0, 3461, 3463, 1, 0, 0, 0, 3462, 3459, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, 3465, 5, 302, 0, 0, 3465, 3466, 3, 148, 74, 0, 3466, 3467, 5, 81, 0, 0, 3467, 3468, 3, 258, 129, 0, 3468, 3469, 5, 88, 0, 0, 3469, 3470, 5, 302, 0, 0, 3470, 3484, 1, 0, 0, 0, 3471, 3472, 3, 306, 153, 0, 3472, 3473, 5, 10, 0, 0, 3473, 3475, 1, 0, 0, 0, 3474, 3471, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 3477, 5, 224, 0, 0, 3477, 3478, 3, 258, 129, 0, 3478, 3479, 5, 286, 0, 0, 3479, 3480, 3, 148, 74, 0, 3480, 3481, 5, 88, 0, 0, 3481, 3482, 5, 224, 0, 0, 3482, 3484, 1, 0, 0, 0, 3483, 3384, 1, 0, 0, 0, 3483, 3386, 1, 0, 0, 0, 3483, 3391, 1, 0, 0, 0, 3483, 3404, 1, 0, 0, 0, 3483, 3416, 1, 0, 0, 0, 3483, 3432, 1, 0, 0, 0, 3483, 3434, 1, 0, 0, 0, 3483, 3436, 1, 0, 0, 0, 3483, 3452, 1, 0, 0, 0, 3483, 3462, 1, 0, 0, 0, 3483, 3474, 1, 0, 0, 0, 3484, 249, 1, 0, 0, 0, 3485, 3486, 5, 300, 0, 0, 3486, 3487, 3, 148, 74, 0, 3487, 3488, 5, 265, 0, 0, 3488, 3489, 3, 258, 129, 0, 3489, 251, 1, 0, 0, 0, 3490, 3491, 5, 86, 0, 0, 3491, 3492, 3, 148, 74, 0, 3492, 3493, 5, 265, 0, 0, 3493, 3494, 3, 258, 129, 0, 3494, 253, 1, 0, 0, 0, 3495, 3496, 5, 84, 0, 0, 3496, 3497, 3, 258, 129, 0, 3497, 255, 1, 0, 0, 0, 3498, 3499, 5, 69, 0, 0, 3499, 3504, 3, 306, 153, 0, 3500, 3501, 5, 3, 0, 0, 3501, 3503, 3, 306, 153, 0, 3502, 3500, 1, 0, 0, 0, 3503, 3506, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3507, 1, 0, 0, 0, 3506, 3504, 1, 0, 0, 0, 3507, 3510, 3, 196, 98, 0, 3508, 3509, 5, 70, 0, 0, 3509, 3511, 3, 154, 77, 0, 3510, 3508, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 257, 1, 0, 0, 0, 3512, 3513, 3, 248, 124, 0, 3513, 3514, 5, 325, 0, 0, 3514, 3516, 1, 0, 0, 0, 3515, 3512, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3515, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 259, 1, 0, 0, 0, 3519, 3526, 5, 53, 0, 0, 3520, 3526, 5, 248, 0, 0, 3521, 3526, 5, 73, 0, 0, 3522, 3526, 5, 127, 0, 0, 3523, 3526, 5, 287, 0, 0, 3524, 3526, 3, 306, 153, 0, 3525, 3519, 1, 0, 0, 0, 3525, 3520, 1, 0, 0, 0, 3525, 3521, 1, 0, 0, 0, 3525, 3522, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3525, 3524, 1, 0, 0, 0, 3526, 261, 1, 0, 0, 0, 3527, 3531, 5, 260, 0, 0, 3528, 3531, 5, 243, 0, 0, 3529, 3531, 3, 306, 153, 0, 3530, 3527, 1, 0, 0, 0, 3530, 3528, 1, 0, 0, 0, 3530, 3529, 1, 0, 0, 0, 3531, 263, 1, 0, 0, 0, 3532, 3534, 3, 262, 131, 0, 3533, 3532, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 3535, 1, 0, 0, 0, 3535, 3536, 3, 292, 146, 0, 3536, 265, 1, 0, 0, 0, 3537, 3540, 3, 268, 134, 0, 3538, 3540, 3, 272, 136, 0, 3539, 3537, 1, 0, 0, 0, 3539, 3538, 1, 0, 0, 0, 3540, 267, 1, 0, 0, 0, 3541, 3553, 3, 306, 153, 0, 3542, 3543, 3, 306, 153, 0, 3543, 3544, 5, 4, 0, 0, 3544, 3545, 3, 306, 153, 0, 3545, 3553, 1, 0, 0, 0, 3546, 3547, 3, 306, 153, 0, 3547, 3548, 5, 4, 0, 0, 3548, 3549, 3, 306, 153, 0, 3549, 3550, 5, 4, 0, 0, 3550, 3551, 3, 306, 153, 0, 3551, 3553, 1, 0, 0, 0, 3552, 3541, 1, 0, 0, 0, 3552, 3542, 1, 0, 0, 0, 3552, 3546, 1, 0, 0, 0, 3553, 269, 1, 0, 0, 0, 3554, 3566, 3, 306, 153, 0, 3555, 3556, 3, 306, 153, 0, 3556, 3557, 5, 4, 0, 0, 3557, 3558, 3, 306, 153, 0, 3558, 3566, 1, 0, 0, 0, 3559, 3560, 3, 306, 153, 0, 3560, 3561, 5, 4, 0, 0, 3561, 3562, 3, 306, 153, 0, 3562, 3563, 5, 4, 0, 0, 3563, 3564, 3, 306, 153, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3554, 1, 0, 0, 0, 3565, 3555, 1, 0, 0, 0, 3565, 3559, 1, 0, 0, 0, 3566, 271, 1, 0, 0, 0, 3567, 3579, 3, 306, 153, 0, 3568, 3569, 3, 306, 153, 0, 3569, 3570, 5, 4, 0, 0, 3570, 3571, 3, 306, 153, 0, 3571, 3579, 1, 0, 0, 0, 3572, 3573, 3, 306, 153, 0, 3573, 3574, 5, 4, 0, 0, 3574, 3575, 3, 306, 153, 0, 3575, 3576, 5, 4, 0, 0, 3576, 3577, 3, 306, 153, 0, 3577, 3579, 1, 0, 0, 0, 3578, 3567, 1, 0, 0, 0, 3578, 3568, 1, 0, 0, 0, 3578, 3572, 1, 0, 0, 0, 3579, 273, 1, 0, 0, 0, 3580, 3592, 3, 306, 153, 0, 3581, 3582, 3, 306, 153, 0, 3582, 3583, 5, 4, 0, 0, 3583, 3584, 3, 306, 153, 0, 3584, 3592, 1, 0, 0, 0, 3585, 3586, 3, 306, 153, 0, 3586, 3587, 5, 4, 0, 0, 3587, 3588, 3, 306, 153, 0, 3588, 3589, 5, 4, 0, 0, 3589, 3590, 3, 306, 153, 0, 3590, 3592, 1, 0, 0, 0, 3591, 3580, 1, 0, 0, 0, 3591, 3581, 1, 0, 0, 0, 3591, 3585, 1, 0, 0, 0, 3592, 275, 1, 0, 0, 0, 3593, 3599, 3, 306, 153, 0, 3594, 3595, 3, 306, 153, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3597, 3, 306, 153, 0, 3597, 3599, 1, 0, 0, 0, 3598, 3593, 1, 0, 0, 0, 3598, 3594, 1, 0, 0, 0, 3599, 277, 1, 0, 0, 0, 3600, 3606, 3, 306, 153, 0, 3601, 3602, 3, 306, 153, 0, 3602, 3603, 5, 4, 0, 0, 3603, 3604, 3, 306, 153, 0, 3604, 3606, 1, 0, 0, 0, 3605, 3600, 1, 0, 0, 0, 3605, 3601, 1, 0, 0, 0, 3606, 279, 1, 0, 0, 0, 3607, 3608, 3, 306, 153, 0, 3608, 281, 1, 0, 0, 0, 3609, 3610, 3, 306, 153, 0, 3610, 283, 1, 0, 0, 0, 3611, 3612, 3, 292, 146, 0, 3612, 285, 1, 0, 0, 0, 3613, 3614, 3, 292, 146, 0, 3614, 287, 1, 0, 0, 0, 3615, 3618, 3, 292, 146, 0, 3616, 3618, 4, 144, 14, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3616, 1, 0, 0, 0, 3618, 289, 1, 0, 0, 0, 3619, 3620, 3, 306, 153, 0, 3620, 291, 1, 0, 0, 0, 3621, 3626, 3, 306, 153, 0, 3622, 3623, 5, 4, 0, 0, 3623, 3625, 3, 306, 153, 0, 3624, 3622, 1, 0, 0, 0, 3625, 3628, 1, 0, 0, 0, 3626, 3624, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 293, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3629, 3630, 5, 103, 0, 0, 3630, 3631, 3, 296, 148, 0, 3631, 3632, 5, 28, 0, 0, 3632, 3633, 5, 187, 0, 0, 3633, 3634, 3, 154, 77, 0, 3634, 295, 1, 0, 0, 0, 3635, 3636, 7, 34, 0, 0, 3636, 297, 1, 0, 0, 0, 3637, 3641, 3, 300, 150, 0, 3638, 3641, 5, 64, 0, 0, 3639, 3641, 5, 60, 0, 0, 3640, 3637, 1, 0, 0, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3639, 1, 0, 0, 0, 3641, 299, 1, 0, 0, 0, 3642, 3648, 3, 306, 153, 0, 3643, 3644, 5, 289, 0, 0, 3644, 3648, 3, 306, 153, 0, 3645, 3646, 5, 235, 0, 0, 3646, 3648, 3, 306, 153, 0, 3647, 3642, 1, 0, 0, 0, 3647, 3643, 1, 0, 0, 0, 3647, 3645, 1, 0, 0, 0, 3648, 301, 1, 0, 0, 0, 3649, 3654, 3, 306, 153, 0, 3650, 3651, 5, 3, 0, 0, 3651, 3653, 3, 306, 153, 0, 3652, 3650, 1, 0, 0, 0, 3653, 3656, 1, 0, 0, 0, 3654, 3652, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 303, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3657, 3665, 5, 53, 0, 0, 3658, 3665, 5, 248, 0, 0, 3659, 3665, 5, 73, 0, 0, 3660, 3665, 5, 127, 0, 0, 3661, 3665, 5, 287, 0, 0, 3662, 3665, 5, 93, 0, 0, 3663, 3665, 3, 306, 153, 0, 3664, 3657, 1, 0, 0, 0, 3664, 3658, 1, 0, 0, 0, 3664, 3659, 1, 0, 0, 0, 3664, 3660, 1, 0, 0, 0, 3664, 3661, 1, 0, 0, 0, 3664, 3662, 1, 0, 0, 0, 3664, 3663, 1, 0, 0, 0, 3665, 305, 1, 0, 0, 0, 3666, 3672, 5, 332, 0, 0, 3667, 3672, 5, 334, 0, 0, 3668, 3672, 3, 312, 156, 0, 3669, 3672, 5, 335, 0, 0, 3670, 3672, 5, 333, 0, 0, 3671, 3666, 1, 0, 0, 0, 3671, 3667, 1, 0, 0, 0, 3671, 3668, 1, 0, 0, 0, 3671, 3669, 1, 0, 0, 0, 3671, 3670, 1, 0, 0, 0, 3672, 307, 1, 0, 0, 0, 3673, 3675, 5, 319, 0, 0, 3674, 3673, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 3686, 5, 330, 0, 0, 3677, 3679, 5, 319, 0, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3686, 5, 331, 0, 0, 3681, 3683, 5, 319, 0, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3686, 5, 329, 0, 0, 3685, 3674, 1, 0, 0, 0, 3685, 3678, 1, 0, 0, 0, 3685, 3682, 1, 0, 0, 0, 3686, 309, 1, 0, 0, 0, 3687, 3690, 3, 306, 153, 0, 3688, 3690, 3, 180, 90, 0, 3689, 3687, 1, 0, 0, 0, 3689, 3688, 1, 0, 0, 0, 3690, 311, 1, 0, 0, 0, 3691, 3692, 7, 35, 0, 0, 3692, 313, 1, 0, 0, 0, 479, 317, 326, 330, 334, 338, 342, 355, 362, 366, 370, 376, 380, 387, 392, 396, 402, 406, 425, 431, 435, 439, 443, 451, 455, 458, 463, 469, 478, 484, 488, 494, 501, 510, 522, 531, 540, 546, 557, 565, 573, 580, 590, 597, 605, 620, 655, 658, 661, 665, 671, 676, 683, 689, 693, 697, 705, 711, 715, 719, 733, 741, 760, 785, 788, 795, 802, 811, 815, 822, 830, 839, 845, 850, 854, 862, 867, 876, 882, 889, 898, 904, 908, 914, 921, 926, 939, 944, 956, 960, 966, 975, 980, 986, 1014, 1020, 1022, 1028, 1034, 1036, 1044, 1046, 1056, 1058, 1073, 1078, 1085, 1095, 1101, 1103, 1111, 1113, 1138, 1141, 1145, 1149, 1167, 1170, 1181, 1184, 1200, 1210, 1215, 1221, 1224, 1233, 1245, 1248, 1258, 1262, 1268, 1275, 1280, 1286, 1290, 1294, 1300, 1311, 1320, 1330, 1333, 1338, 1340, 1347, 1353, 1355, 1359, 1369, 1375, 1378, 1380, 1392, 1399, 1403, 1406, 1410, 1414, 1423, 1426, 1430, 1435, 1439, 1447, 1450, 1457, 1461, 1468, 1479, 1482, 1492, 1495, 1506, 1511, 1519, 1522, 1526, 1530, 1539, 1548, 1551, 1560, 1563, 1566, 1570, 1581, 1584, 1587, 1592, 1595, 1624, 1628, 1632, 1636, 1640, 1644, 1646, 1657, 1662, 1671, 1680, 1683, 1689, 1701, 1704, 1713, 1716, 1724, 1727, 1730, 1735, 1738, 1750, 1753, 1761, 1766, 1770, 1772, 1774, 1789, 1791, 1802, 1823, 1833, 1844, 1848, 1850, 1858, 1869, 1880, 1887, 1894, 1907, 1913, 1935, 1950, 1955, 1959, 1969, 1975, 1981, 1989, 1994, 2001, 2003, 2009, 2015, 2019, 2024, 2033, 2038, 2052, 2062, 2065, 2074, 2079, 2084, 2086, 2095, 2098, 2106, 2109, 2116, 2121, 2132, 2135, 2139, 2141, 2149, 2159, 2165, 2167, 2174, 2178, 2180, 2187, 2191, 2193, 2195, 2204, 2215, 2219, 2229, 2239, 2243, 2251, 2253, 2266, 2274, 2283, 2289, 2297, 2303, 2307, 2312, 2317, 2323, 2337, 2339, 2369, 2380, 2388, 2393, 2398, 2411, 2417, 2420, 2427, 2432, 2435, 2438, 2443, 2450, 2453, 2462, 2465, 2469, 2472, 2475, 2490, 2493, 2512, 2516, 2524, 2528, 2553, 2556, 2565, 2571, 2577, 2583, 2592, 2595, 2598, 2617, 2626, 2648, 2651, 2661, 2670, 2676, 2682, 2693, 2695, 2700, 2707, 2709, 2715, 2721, 2732, 2741, 2746, 2751, 2753, 2755, 2761, 2763, 2773, 2782, 2784, 2790, 2792, 2795, 2805, 2807, 2815, 2823, 2826, 2831, 2836, 2848, 2852, 2856, 2859, 2861, 2869, 2872, 2882, 2890, 2896, 2898, 2906, 2916, 2922, 2936, 2945, 2952, 2957, 2964, 2969, 2992, 2997, 2999, 3006, 3010, 3017, 3021, 3038, 3053, 3060, 3069, 3079, 3084, 3093, 3098, 3106, 3114, 3117, 3123, 3126, 3133, 3141, 3144, 3152, 3155, 3181, 3192, 3197, 3204, 3206, 3219, 3234, 3238, 3242, 3246, 3252, 3256, 3260, 3264, 3266, 3276, 3283, 3292, 3299, 3306, 3313, 3322, 3334, 3337, 3348, 3351, 3356, 3366, 3382, 3396, 3399, 3408, 3411, 3423, 3427, 3442, 3446, 3452, 3462, 3474, 3483, 3504, 3510, 3517, 3525, 3530, 3533, 3539, 3552, 3565, 3578, 3591, 3598, 3605, 3617, 3626, 3640, 3647, 3654, 3664, 3671, 3674, 3678, 3682, 3685, 3689] \ No newline at end of file diff --git a/src/lib/trino/TrinoSqlListener.ts b/src/lib/trino/TrinoSqlListener.ts index fc5a39d6d..05739a447 100644 --- a/src/lib/trino/TrinoSqlListener.ts +++ b/src/lib/trino/TrinoSqlListener.ts @@ -123,6 +123,7 @@ import { InlineTableContext } from "./TrinoSqlParser.js"; import { SubqueryContext } from "./TrinoSqlParser.js"; import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; +import { SelectListContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; import { RollupContext } from "./TrinoSqlParser.js"; @@ -134,8 +135,11 @@ import { WindowDefinitionContext } from "./TrinoSqlParser.js"; import { WindowSpecificationContext } from "./TrinoSqlParser.js"; import { NamedQueryContext } from "./TrinoSqlParser.js"; import { SetQuantifierContext } from "./TrinoSqlParser.js"; -import { SelectSingleContext } from "./TrinoSqlParser.js"; -import { SelectAllContext } from "./TrinoSqlParser.js"; +import { SelectItemContext } from "./TrinoSqlParser.js"; +import { SelectAllWithoutTableContext } from "./TrinoSqlParser.js"; +import { TableAllColumnsContext } from "./TrinoSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./TrinoSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./TrinoSqlParser.js"; import { RelationDefaultContext } from "./TrinoSqlParser.js"; import { JoinRelationContext } from "./TrinoSqlParser.js"; import { JoinTypeContext } from "./TrinoSqlParser.js"; @@ -157,11 +161,12 @@ import { ColumnListCreateContext } from "./TrinoSqlParser.js"; import { ColumnListContext } from "./TrinoSqlParser.js"; import { ColumnAliasesContext } from "./TrinoSqlParser.js"; import { TableNameContext } from "./TrinoSqlParser.js"; +import { ExpressionSourceTableContext } from "./TrinoSqlParser.js"; +import { ParenthesizedRelationContext } from "./TrinoSqlParser.js"; import { SubqueryRelationContext } from "./TrinoSqlParser.js"; import { UnnestContext } from "./TrinoSqlParser.js"; import { LateralContext } from "./TrinoSqlParser.js"; import { TableFunctionInvocationContext } from "./TrinoSqlParser.js"; -import { ParenthesizedRelationContext } from "./TrinoSqlParser.js"; import { JsonTableContext } from "./TrinoSqlParser.js"; import { OrdinalityColumnContext } from "./TrinoSqlParser.js"; import { ValueColumnContext } from "./TrinoSqlParser.js"; @@ -1721,6 +1726,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitQuerySpecification?: (ctx: QuerySpecificationContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.selectList`. + * @param ctx the parse tree + */ + enterSelectList?: (ctx: SelectListContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectList`. + * @param ctx the parse tree + */ + exitSelectList?: (ctx: SelectListContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree @@ -1840,29 +1855,55 @@ export class TrinoSqlListener implements ParseTreeListener { */ exitSetQuantifier?: (ctx: SetQuantifierContext) => void; /** - * Enter a parse tree produced by the `selectSingle` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Enter a parse tree produced by `TrinoSqlParser.selectItem`. + * @param ctx the parse tree + */ + enterSelectItem?: (ctx: SelectItemContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectItem`. + * @param ctx the parse tree + */ + exitSelectItem?: (ctx: SelectItemContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.selectAllWithoutTable`. + * @param ctx the parse tree + */ + enterSelectAllWithoutTable?: (ctx: SelectAllWithoutTableContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectAllWithoutTable`. * @param ctx the parse tree */ - enterSelectSingle?: (ctx: SelectSingleContext) => void; + exitSelectAllWithoutTable?: (ctx: SelectAllWithoutTableContext) => void; /** - * Exit a parse tree produced by the `selectSingle` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Enter a parse tree produced by `TrinoSqlParser.tableAllColumns`. * @param ctx the parse tree */ - exitSelectSingle?: (ctx: SelectSingleContext) => void; + enterTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** - * Enter a parse tree produced by the `selectAll` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Exit a parse tree produced by `TrinoSqlParser.tableAllColumns`. * @param ctx the parse tree */ - enterSelectAll?: (ctx: SelectAllContext) => void; + exitTableAllColumns?: (ctx: TableAllColumnsContext) => void; /** - * Exit a parse tree produced by the `selectAll` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Enter a parse tree produced by `TrinoSqlParser.selectLiteralColumnName`. * @param ctx the parse tree */ - exitSelectAll?: (ctx: SelectAllContext) => void; + enterSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + */ + exitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + enterSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + */ + exitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => void; /** * Enter a parse tree produced by the `relationDefault` * labeled alternative in `TrinoSqlParser.relation`. @@ -2080,74 +2121,86 @@ export class TrinoSqlListener implements ParseTreeListener { */ exitTableName?: (ctx: TableNameContext) => void; /** - * Enter a parse tree produced by the `subqueryRelation` + * Enter a parse tree produced by the `expressionSourceTable` + * labeled alternative in `TrinoSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + enterExpressionSourceTable?: (ctx: ExpressionSourceTableContext) => void; + /** + * Exit a parse tree produced by the `expressionSourceTable` + * labeled alternative in `TrinoSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitExpressionSourceTable?: (ctx: ExpressionSourceTableContext) => void; + /** + * Enter a parse tree produced by the `parenthesizedRelation` * labeled alternative in `TrinoSqlParser.relationPrimary`. * @param ctx the parse tree */ + enterParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => void; + /** + * Exit a parse tree produced by the `parenthesizedRelation` + * labeled alternative in `TrinoSqlParser.relationPrimary`. + * @param ctx the parse tree + */ + exitParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => void; + /** + * Enter a parse tree produced by the `subqueryRelation` + * labeled alternative in `TrinoSqlParser.relationSourceTable`. + * @param ctx the parse tree + */ enterSubqueryRelation?: (ctx: SubqueryRelationContext) => void; /** * Exit a parse tree produced by the `subqueryRelation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitSubqueryRelation?: (ctx: SubqueryRelationContext) => void; /** * Enter a parse tree produced by the `unnest` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ enterUnnest?: (ctx: UnnestContext) => void; /** * Exit a parse tree produced by the `unnest` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitUnnest?: (ctx: UnnestContext) => void; /** * Enter a parse tree produced by the `lateral` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ enterLateral?: (ctx: LateralContext) => void; /** * Exit a parse tree produced by the `lateral` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitLateral?: (ctx: LateralContext) => void; /** * Enter a parse tree produced by the `tableFunctionInvocation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ enterTableFunctionInvocation?: (ctx: TableFunctionInvocationContext) => void; /** * Exit a parse tree produced by the `tableFunctionInvocation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitTableFunctionInvocation?: (ctx: TableFunctionInvocationContext) => void; - /** - * Enter a parse tree produced by the `parenthesizedRelation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. - * @param ctx the parse tree - */ - enterParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => void; - /** - * Exit a parse tree produced by the `parenthesizedRelation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. - * @param ctx the parse tree - */ - exitParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => void; /** * Enter a parse tree produced by the `jsonTable` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ enterJsonTable?: (ctx: JsonTableContext) => void; /** * Exit a parse tree produced by the `jsonTable` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree */ exitJsonTable?: (ctx: JsonTableContext) => void; diff --git a/src/lib/trino/TrinoSqlParser.ts b/src/lib/trino/TrinoSqlParser.ts index 705af90fe..0144177ba 100644 --- a/src/lib/trino/TrinoSqlParser.ts +++ b/src/lib/trino/TrinoSqlParser.ts @@ -384,130 +384,136 @@ export class TrinoSqlParser extends SQLParserBase { public static readonly RULE_queryPrimary = 24; public static readonly RULE_sortItem = 25; public static readonly RULE_querySpecification = 26; - public static readonly RULE_groupBy = 27; - public static readonly RULE_groupingElement = 28; - public static readonly RULE_groupingSet = 29; - public static readonly RULE_groupingTerm = 30; - public static readonly RULE_windowDefinition = 31; - public static readonly RULE_windowSpecification = 32; - public static readonly RULE_namedQuery = 33; - public static readonly RULE_setQuantifier = 34; - public static readonly RULE_selectItem = 35; - public static readonly RULE_relation = 36; - public static readonly RULE_joinType = 37; - public static readonly RULE_joinCriteria = 38; - public static readonly RULE_sampledRelation = 39; - public static readonly RULE_sampleType = 40; - public static readonly RULE_trimsSpecification = 41; - public static readonly RULE_listAggOverflowBehavior = 42; - public static readonly RULE_listaggCountIndication = 43; - public static readonly RULE_patternRecognition = 44; - public static readonly RULE_measureDefinition = 45; - public static readonly RULE_rowsPerMatch = 46; - public static readonly RULE_emptyMatchHandling = 47; - public static readonly RULE_skipTo = 48; - public static readonly RULE_subsetDefinition = 49; - public static readonly RULE_variableDefinition = 50; - public static readonly RULE_aliasedRelation = 51; - public static readonly RULE_columnListCreate = 52; - public static readonly RULE_columnList = 53; - public static readonly RULE_columnAliases = 54; - public static readonly RULE_relationPrimary = 55; - public static readonly RULE_jsonTableColumn = 56; - public static readonly RULE_jsonTableSpecificPlan = 57; - public static readonly RULE_jsonTablePathName = 58; - public static readonly RULE_planPrimary = 59; - public static readonly RULE_jsonTableDefaultPlan = 60; - public static readonly RULE_tableFunctionCall = 61; - public static readonly RULE_tableFunctionArgument = 62; - public static readonly RULE_tableArgument = 63; - public static readonly RULE_tableArgumentRelation = 64; - public static readonly RULE_descriptorArgument = 65; - public static readonly RULE_descriptorField = 66; - public static readonly RULE_copartitionTables = 67; - public static readonly RULE_expression = 68; - public static readonly RULE_booleanExpression = 69; - public static readonly RULE_predicate = 70; - public static readonly RULE_valueExpression = 71; - public static readonly RULE_primaryExpression = 72; - public static readonly RULE_jsonPathInvocation = 73; - public static readonly RULE_jsonValueExpression = 74; - public static readonly RULE_jsonRepresentation = 75; - public static readonly RULE_jsonArgument = 76; - public static readonly RULE_jsonExistsErrorBehavior = 77; - public static readonly RULE_jsonValueBehavior = 78; - public static readonly RULE_jsonQueryWrapperBehavior = 79; - public static readonly RULE_jsonQueryBehavior = 80; - public static readonly RULE_jsonObjectMember = 81; - public static readonly RULE_processingMode = 82; - public static readonly RULE_nullTreatment = 83; - public static readonly RULE_string = 84; - public static readonly RULE_timeZoneSpecifier = 85; - public static readonly RULE_comparisonOperator = 86; - public static readonly RULE_comparisonQuantifier = 87; - public static readonly RULE_booleanValue = 88; - public static readonly RULE_interval = 89; - public static readonly RULE_intervalField = 90; - public static readonly RULE_normalForm = 91; - public static readonly RULE_type = 92; - public static readonly RULE_rowField = 93; - public static readonly RULE_typeParameter = 94; - public static readonly RULE_whenClause = 95; - public static readonly RULE_filter = 96; - public static readonly RULE_mergeCase = 97; - public static readonly RULE_over = 98; - public static readonly RULE_windowFrame = 99; - public static readonly RULE_frameExtent = 100; - public static readonly RULE_frameBound = 101; - public static readonly RULE_rowPattern = 102; - public static readonly RULE_patternPrimary = 103; - public static readonly RULE_patternQuantifier = 104; - public static readonly RULE_updateAssignment = 105; - public static readonly RULE_explainOption = 106; - public static readonly RULE_transactionMode = 107; - public static readonly RULE_levelOfIsolation = 108; - public static readonly RULE_callArgument = 109; - public static readonly RULE_pathElement = 110; - public static readonly RULE_pathSpecification = 111; - public static readonly RULE_functionSpecification = 112; - public static readonly RULE_functionDeclaration = 113; - public static readonly RULE_functionSignature = 114; - public static readonly RULE_parameterDeclaration = 115; - public static readonly RULE_returnsClause = 116; - public static readonly RULE_routineCharacteristic = 117; - public static readonly RULE_controlStatement = 118; - public static readonly RULE_caseStatementWhenClause = 119; - public static readonly RULE_elseIfClause = 120; - public static readonly RULE_elseClause = 121; - public static readonly RULE_variableDeclaration = 122; - public static readonly RULE_sqlStatementList = 123; - public static readonly RULE_privilege = 124; - public static readonly RULE_entityKind = 125; - public static readonly RULE_grantObject = 126; - public static readonly RULE_tableOrViewName = 127; - public static readonly RULE_tableRef = 128; - public static readonly RULE_tableNameCreate = 129; - public static readonly RULE_viewRef = 130; - public static readonly RULE_viewNameCreate = 131; - public static readonly RULE_schemaRef = 132; - public static readonly RULE_schemaNameCreate = 133; - public static readonly RULE_catalogRef = 134; - public static readonly RULE_catalogNameCreate = 135; - public static readonly RULE_functionName = 136; - public static readonly RULE_functionNameCreate = 137; - public static readonly RULE_columnRef = 138; - public static readonly RULE_columnNameCreate = 139; - public static readonly RULE_qualifiedName = 140; - public static readonly RULE_queryPeriod = 141; - public static readonly RULE_rangeType = 142; - public static readonly RULE_grantor = 143; - public static readonly RULE_principal = 144; - public static readonly RULE_roles = 145; - public static readonly RULE_privilegeOrRole = 146; - public static readonly RULE_identifier = 147; - public static readonly RULE_number = 148; - public static readonly RULE_authorizationUser = 149; - public static readonly RULE_nonReserved = 150; + public static readonly RULE_selectList = 27; + public static readonly RULE_groupBy = 28; + public static readonly RULE_groupingElement = 29; + public static readonly RULE_groupingSet = 30; + public static readonly RULE_groupingTerm = 31; + public static readonly RULE_windowDefinition = 32; + public static readonly RULE_windowSpecification = 33; + public static readonly RULE_namedQuery = 34; + public static readonly RULE_setQuantifier = 35; + public static readonly RULE_selectItem = 36; + public static readonly RULE_selectAllWithoutTable = 37; + public static readonly RULE_tableAllColumns = 38; + public static readonly RULE_selectLiteralColumnName = 39; + public static readonly RULE_selectExpressionColumnName = 40; + public static readonly RULE_relation = 41; + public static readonly RULE_joinType = 42; + public static readonly RULE_joinCriteria = 43; + public static readonly RULE_sampledRelation = 44; + public static readonly RULE_sampleType = 45; + public static readonly RULE_trimsSpecification = 46; + public static readonly RULE_listAggOverflowBehavior = 47; + public static readonly RULE_listaggCountIndication = 48; + public static readonly RULE_patternRecognition = 49; + public static readonly RULE_measureDefinition = 50; + public static readonly RULE_rowsPerMatch = 51; + public static readonly RULE_emptyMatchHandling = 52; + public static readonly RULE_skipTo = 53; + public static readonly RULE_subsetDefinition = 54; + public static readonly RULE_variableDefinition = 55; + public static readonly RULE_aliasedRelation = 56; + public static readonly RULE_columnListCreate = 57; + public static readonly RULE_columnList = 58; + public static readonly RULE_columnAliases = 59; + public static readonly RULE_relationPrimary = 60; + public static readonly RULE_relationSourceTable = 61; + public static readonly RULE_jsonTableColumn = 62; + public static readonly RULE_jsonTableSpecificPlan = 63; + public static readonly RULE_jsonTablePathName = 64; + public static readonly RULE_planPrimary = 65; + public static readonly RULE_jsonTableDefaultPlan = 66; + public static readonly RULE_tableFunctionCall = 67; + public static readonly RULE_tableFunctionArgument = 68; + public static readonly RULE_tableArgument = 69; + public static readonly RULE_tableArgumentRelation = 70; + public static readonly RULE_descriptorArgument = 71; + public static readonly RULE_descriptorField = 72; + public static readonly RULE_copartitionTables = 73; + public static readonly RULE_expression = 74; + public static readonly RULE_booleanExpression = 75; + public static readonly RULE_predicate = 76; + public static readonly RULE_valueExpression = 77; + public static readonly RULE_primaryExpression = 78; + public static readonly RULE_jsonPathInvocation = 79; + public static readonly RULE_jsonValueExpression = 80; + public static readonly RULE_jsonRepresentation = 81; + public static readonly RULE_jsonArgument = 82; + public static readonly RULE_jsonExistsErrorBehavior = 83; + public static readonly RULE_jsonValueBehavior = 84; + public static readonly RULE_jsonQueryWrapperBehavior = 85; + public static readonly RULE_jsonQueryBehavior = 86; + public static readonly RULE_jsonObjectMember = 87; + public static readonly RULE_processingMode = 88; + public static readonly RULE_nullTreatment = 89; + public static readonly RULE_string = 90; + public static readonly RULE_timeZoneSpecifier = 91; + public static readonly RULE_comparisonOperator = 92; + public static readonly RULE_comparisonQuantifier = 93; + public static readonly RULE_booleanValue = 94; + public static readonly RULE_interval = 95; + public static readonly RULE_intervalField = 96; + public static readonly RULE_normalForm = 97; + public static readonly RULE_type = 98; + public static readonly RULE_rowField = 99; + public static readonly RULE_typeParameter = 100; + public static readonly RULE_whenClause = 101; + public static readonly RULE_filter = 102; + public static readonly RULE_mergeCase = 103; + public static readonly RULE_over = 104; + public static readonly RULE_windowFrame = 105; + public static readonly RULE_frameExtent = 106; + public static readonly RULE_frameBound = 107; + public static readonly RULE_rowPattern = 108; + public static readonly RULE_patternPrimary = 109; + public static readonly RULE_patternQuantifier = 110; + public static readonly RULE_updateAssignment = 111; + public static readonly RULE_explainOption = 112; + public static readonly RULE_transactionMode = 113; + public static readonly RULE_levelOfIsolation = 114; + public static readonly RULE_callArgument = 115; + public static readonly RULE_pathElement = 116; + public static readonly RULE_pathSpecification = 117; + public static readonly RULE_functionSpecification = 118; + public static readonly RULE_functionDeclaration = 119; + public static readonly RULE_functionSignature = 120; + public static readonly RULE_parameterDeclaration = 121; + public static readonly RULE_returnsClause = 122; + public static readonly RULE_routineCharacteristic = 123; + public static readonly RULE_controlStatement = 124; + public static readonly RULE_caseStatementWhenClause = 125; + public static readonly RULE_elseIfClause = 126; + public static readonly RULE_elseClause = 127; + public static readonly RULE_variableDeclaration = 128; + public static readonly RULE_sqlStatementList = 129; + public static readonly RULE_privilege = 130; + public static readonly RULE_entityKind = 131; + public static readonly RULE_grantObject = 132; + public static readonly RULE_tableOrViewName = 133; + public static readonly RULE_tableRef = 134; + public static readonly RULE_tableNameCreate = 135; + public static readonly RULE_viewRef = 136; + public static readonly RULE_viewNameCreate = 137; + public static readonly RULE_schemaRef = 138; + public static readonly RULE_schemaNameCreate = 139; + public static readonly RULE_catalogRef = 140; + public static readonly RULE_catalogNameCreate = 141; + public static readonly RULE_functionName = 142; + public static readonly RULE_functionNameCreate = 143; + public static readonly RULE_columnRef = 144; + public static readonly RULE_columnNameCreate = 145; + public static readonly RULE_qualifiedName = 146; + public static readonly RULE_queryPeriod = 147; + public static readonly RULE_rangeType = 148; + public static readonly RULE_grantor = 149; + public static readonly RULE_principal = 150; + public static readonly RULE_roles = 151; + public static readonly RULE_privilegeOrRole = 152; + public static readonly RULE_identifier = 153; + public static readonly RULE_number = 154; + public static readonly RULE_authorizationUser = 155; + public static readonly RULE_nonReserved = 156; public static readonly literalNames = [ null, "'('", "')'", "','", "'.'", "'SKIP'", "'=>'", "'->'", "'['", @@ -639,16 +645,18 @@ export class TrinoSqlParser extends SQLParserBase { "query", "with", "tableElement", "columnDefinition", "likeClause", "properties", "propertyAssignments", "property", "propertyValue", "queryNoWith", "limitRowCount", "rowCount", "queryTerm", "queryPrimary", - "sortItem", "querySpecification", "groupBy", "groupingElement", + "sortItem", "querySpecification", "selectList", "groupBy", "groupingElement", "groupingSet", "groupingTerm", "windowDefinition", "windowSpecification", - "namedQuery", "setQuantifier", "selectItem", "relation", "joinType", - "joinCriteria", "sampledRelation", "sampleType", "trimsSpecification", - "listAggOverflowBehavior", "listaggCountIndication", "patternRecognition", - "measureDefinition", "rowsPerMatch", "emptyMatchHandling", "skipTo", - "subsetDefinition", "variableDefinition", "aliasedRelation", "columnListCreate", - "columnList", "columnAliases", "relationPrimary", "jsonTableColumn", - "jsonTableSpecificPlan", "jsonTablePathName", "planPrimary", "jsonTableDefaultPlan", - "tableFunctionCall", "tableFunctionArgument", "tableArgument", "tableArgumentRelation", + "namedQuery", "setQuantifier", "selectItem", "selectAllWithoutTable", + "tableAllColumns", "selectLiteralColumnName", "selectExpressionColumnName", + "relation", "joinType", "joinCriteria", "sampledRelation", "sampleType", + "trimsSpecification", "listAggOverflowBehavior", "listaggCountIndication", + "patternRecognition", "measureDefinition", "rowsPerMatch", "emptyMatchHandling", + "skipTo", "subsetDefinition", "variableDefinition", "aliasedRelation", + "columnListCreate", "columnList", "columnAliases", "relationPrimary", + "relationSourceTable", "jsonTableColumn", "jsonTableSpecificPlan", + "jsonTablePathName", "planPrimary", "jsonTableDefaultPlan", "tableFunctionCall", + "tableFunctionArgument", "tableArgument", "tableArgumentRelation", "descriptorArgument", "descriptorField", "copartitionTables", "expression", "booleanExpression", "predicate", "valueExpression", "primaryExpression", "jsonPathInvocation", "jsonValueExpression", "jsonRepresentation", @@ -693,21 +701,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 305; + this.state = 317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 25165826) !== 0) || ((((_la - 37)) & ~0x1F) === 0 && ((1 << (_la - 37)) & 2147550721) !== 0) || ((((_la - 73)) & ~0x1F) === 0 && ((1 << (_la - 73)) & 5243919) !== 0) || _la === 110 || _la === 127 || _la === 169 || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 8921345) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 67113129) !== 0) || ((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131587) !== 0)) { { { - this.state = 302; + this.state = 314; this.statements(); } } - this.state = 307; + this.state = 319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 308; + this.state = 320; this.match(TrinoSqlParser.EOF); } } @@ -731,7 +739,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 310; + this.state = 322; this.singleStatement(); } } @@ -756,14 +764,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 312; + this.state = 324; this.statement(); - this.state = 314; + this.state = 326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 313; + this.state = 325; this.match(TrinoSqlParser.SEMICOLON); } } @@ -791,14 +799,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 316; + this.state = 328; this.expression(); - this.state = 318; + this.state = 330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 317; + this.state = 329; this.match(TrinoSqlParser.SEMICOLON); } } @@ -826,14 +834,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 320; + this.state = 332; this.pathSpecification(); - this.state = 322; + this.state = 334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 321; + this.state = 333; this.match(TrinoSqlParser.SEMICOLON); } } @@ -861,14 +869,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 324; + this.state = 336; this.type_(0); - this.state = 326; + this.state = 338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 325; + this.state = 337; this.match(TrinoSqlParser.SEMICOLON); } } @@ -896,14 +904,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 328; + this.state = 340; this.rowPattern(0); - this.state = 330; + this.state = 342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325) { { - this.state = 329; + this.state = 341; this.match(TrinoSqlParser.SEMICOLON); } } @@ -930,9 +938,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 332; + this.state = 344; this.functionSpecification(); - this.state = 333; + this.state = 345; this.match(TrinoSqlParser.EOF); } } @@ -955,14 +963,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 16, TrinoSqlParser.RULE_statement); let _la: number; try { - this.state = 1233; + this.state = 1245; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 335; + this.state = 347; this.rootQuery(); } break; @@ -970,9 +978,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UseContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 336; + this.state = 348; this.match(TrinoSqlParser.KW_USE); - this.state = 337; + this.state = 349; this.schemaRef(); } break; @@ -980,62 +988,62 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateCatalogContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 338; + this.state = 350; this.match(TrinoSqlParser.KW_CREATE); - this.state = 339; + this.state = 351; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 343; + this.state = 355; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: { - this.state = 340; + this.state = 352; this.match(TrinoSqlParser.KW_IF); - this.state = 341; + this.state = 353; this.match(TrinoSqlParser.KW_NOT); - this.state = 342; + this.state = 354; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 345; + this.state = 357; (localContext as CreateCatalogContext)._catalog = this.catalogNameCreate(); - this.state = 346; + this.state = 358; this.match(TrinoSqlParser.KW_USING); - this.state = 347; + this.state = 359; (localContext as CreateCatalogContext)._connectorName = this.identifier(); - this.state = 350; + this.state = 362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 348; + this.state = 360; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 349; + this.state = 361; this.string_(); } break; } - this.state = 354; + this.state = 366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 352; + this.state = 364; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 353; + this.state = 365; this.principal(); } } - this.state = 358; + this.state = 370; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 356; + this.state = 368; this.match(TrinoSqlParser.KW_WITH); - this.state = 357; + this.state = 369; this.properties(); } break; @@ -1046,30 +1054,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 360; + this.state = 372; this.match(TrinoSqlParser.KW_DROP); - this.state = 361; + this.state = 373; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 364; + this.state = 376; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 362; + this.state = 374; this.match(TrinoSqlParser.KW_IF); - this.state = 363; + this.state = 375; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 366; + this.state = 378; (localContext as DropCatalogContext)._catalog = this.catalogRef(); - this.state = 368; + this.state = 380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 367; + this.state = 379; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1087,46 +1095,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateSchemaContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 370; + this.state = 382; this.match(TrinoSqlParser.KW_CREATE); - this.state = 371; + this.state = 383; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 375; + this.state = 387; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 372; + this.state = 384; this.match(TrinoSqlParser.KW_IF); - this.state = 373; + this.state = 385; this.match(TrinoSqlParser.KW_NOT); - this.state = 374; + this.state = 386; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 377; + this.state = 389; this.schemaNameCreate(); - this.state = 380; + this.state = 392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 378; + this.state = 390; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 379; + this.state = 391; this.principal(); } } - this.state = 384; + this.state = 396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 14, this.context) ) { case 1: { - this.state = 382; + this.state = 394; this.match(TrinoSqlParser.KW_WITH); - this.state = 383; + this.state = 395; this.properties(); } break; @@ -1137,30 +1145,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropSchemaContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 386; + this.state = 398; this.match(TrinoSqlParser.KW_DROP); - this.state = 387; + this.state = 399; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 390; + this.state = 402; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 388; + this.state = 400; this.match(TrinoSqlParser.KW_IF); - this.state = 389; + this.state = 401; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 392; + this.state = 404; this.schemaRef(); - this.state = 394; + this.state = 406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 229) { { - this.state = 393; + this.state = 405; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 229)) { this.errorHandler.recoverInline(this); @@ -1178,17 +1186,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameSchemaContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 396; + this.state = 408; this.match(TrinoSqlParser.KW_ALTER); - this.state = 397; + this.state = 409; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 398; + this.state = 410; this.schemaRef(); - this.state = 399; + this.state = 411; this.match(TrinoSqlParser.KW_RENAME); - this.state = 400; + this.state = 412; this.match(TrinoSqlParser.KW_TO); - this.state = 401; + this.state = 413; this.schemaNameCreate(); } break; @@ -1196,17 +1204,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSchemaAuthorizationContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 403; + this.state = 415; this.match(TrinoSqlParser.KW_ALTER); - this.state = 404; + this.state = 416; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 405; + this.state = 417; this.schemaRef(); - this.state = 406; + this.state = 418; this.match(TrinoSqlParser.KW_SET); - this.state = 407; + this.state = 419; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 408; + this.state = 420; this.principal(); } break; @@ -1214,112 +1222,112 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableAsSelectContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 410; + this.state = 422; this.match(TrinoSqlParser.KW_CREATE); - this.state = 413; + this.state = 425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 411; + this.state = 423; this.match(TrinoSqlParser.KW_OR); - this.state = 412; + this.state = 424; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 415; + this.state = 427; this.match(TrinoSqlParser.KW_TABLE); - this.state = 419; + this.state = 431; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: { - this.state = 416; + this.state = 428; this.match(TrinoSqlParser.KW_IF); - this.state = 417; + this.state = 429; this.match(TrinoSqlParser.KW_NOT); - this.state = 418; + this.state = 430; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 421; + this.state = 433; this.tableNameCreate(); - this.state = 423; + this.state = 435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 422; + this.state = 434; this.columnListCreate(); } } - this.state = 427; + this.state = 439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 425; + this.state = 437; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 426; + this.state = 438; (localContext as CreateTableAsSelectContext)._comment = this.string_(); } } - this.state = 431; + this.state = 443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 429; + this.state = 441; this.match(TrinoSqlParser.KW_WITH); - this.state = 430; + this.state = 442; this.properties(); } } - this.state = 433; + this.state = 445; this.match(TrinoSqlParser.KW_AS); - this.state = 439; + this.state = 451; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 434; + this.state = 446; this.rootQuery(); } break; case 2: { - this.state = 435; + this.state = 447; this.match(TrinoSqlParser.T__0); - this.state = 436; + this.state = 448; this.rootQuery(); - this.state = 437; + this.state = 449; this.match(TrinoSqlParser.T__1); } break; } - this.state = 446; + this.state = 458; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 441; + this.state = 453; this.match(TrinoSqlParser.KW_WITH); - this.state = 443; + this.state = 455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 179) { { - this.state = 442; + this.state = 454; this.match(TrinoSqlParser.KW_NO); } } - this.state = 445; + this.state = 457; this.match(TrinoSqlParser.KW_DATA); } break; @@ -1330,80 +1338,80 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 448; + this.state = 460; this.match(TrinoSqlParser.KW_CREATE); - this.state = 451; + this.state = 463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 449; + this.state = 461; this.match(TrinoSqlParser.KW_OR); - this.state = 450; + this.state = 462; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 453; + this.state = 465; this.match(TrinoSqlParser.KW_TABLE); - this.state = 457; + this.state = 469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 454; + this.state = 466; this.match(TrinoSqlParser.KW_IF); - this.state = 455; + this.state = 467; this.match(TrinoSqlParser.KW_NOT); - this.state = 456; + this.state = 468; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 459; + this.state = 471; this.tableNameCreate(); - this.state = 460; + this.state = 472; this.match(TrinoSqlParser.T__0); - this.state = 461; + this.state = 473; this.tableElement(); - this.state = 466; + this.state = 478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 462; + this.state = 474; this.match(TrinoSqlParser.T__2); - this.state = 463; + this.state = 475; this.tableElement(); } } - this.state = 468; + this.state = 480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 469; + this.state = 481; this.match(TrinoSqlParser.T__1); - this.state = 472; + this.state = 484; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 470; + this.state = 482; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 471; + this.state = 483; (localContext as CreateTableContext)._comment = this.string_(); } break; } - this.state = 476; + this.state = 488; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 474; + this.state = 486; this.match(TrinoSqlParser.KW_WITH); - this.state = 475; + this.state = 487; this.properties(); } break; @@ -1414,23 +1422,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 478; + this.state = 490; this.match(TrinoSqlParser.KW_DROP); - this.state = 479; + this.state = 491; this.match(TrinoSqlParser.KW_TABLE); - this.state = 482; + this.state = 494; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 480; + this.state = 492; this.match(TrinoSqlParser.KW_IF); - this.state = 481; + this.state = 493; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 484; + this.state = 496; this.tableRef(); } break; @@ -1438,23 +1446,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InsertIntoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 485; + this.state = 497; this.match(TrinoSqlParser.KW_INSERT); - this.state = 486; + this.state = 498; this.match(TrinoSqlParser.KW_INTO); - this.state = 487; + this.state = 499; this.tableRef(); - this.state = 489; + this.state = 501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: { - this.state = 488; + this.state = 500; this.columnList(); } break; } - this.state = 491; + this.state = 503; this.rootQuery(); } break; @@ -1462,20 +1470,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeleteContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 493; + this.state = 505; this.match(TrinoSqlParser.KW_DELETE); - this.state = 494; + this.state = 506; this.match(TrinoSqlParser.KW_FROM); - this.state = 495; + this.state = 507; this.tableRef(); - this.state = 498; + this.state = 510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 496; + this.state = 508; this.match(TrinoSqlParser.KW_WHERE); - this.state = 497; + this.state = 509; this.booleanExpression(0); } } @@ -1486,11 +1494,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 500; + this.state = 512; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 501; + this.state = 513; this.match(TrinoSqlParser.KW_TABLE); - this.state = 502; + this.state = 514; this.tableRef(); } break; @@ -1498,29 +1506,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 503; + this.state = 515; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 504; + this.state = 516; this.match(TrinoSqlParser.KW_ON); - this.state = 505; + this.state = 517; this.match(TrinoSqlParser.KW_TABLE); - this.state = 506; + this.state = 518; this.tableRef(); - this.state = 507; + this.state = 519; this.match(TrinoSqlParser.KW_IS); - this.state = 510; + this.state = 522; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 508; + this.state = 520; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 509; + this.state = 521; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1533,29 +1541,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentViewContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 512; + this.state = 524; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 513; + this.state = 525; this.match(TrinoSqlParser.KW_ON); - this.state = 514; + this.state = 526; this.match(TrinoSqlParser.KW_VIEW); - this.state = 515; + this.state = 527; this.viewRef(); - this.state = 516; + this.state = 528; this.match(TrinoSqlParser.KW_IS); - this.state = 519; + this.state = 531; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 517; + this.state = 529; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 518; + this.state = 530; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1568,29 +1576,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 521; + this.state = 533; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 522; + this.state = 534; this.match(TrinoSqlParser.KW_ON); - this.state = 523; + this.state = 535; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 524; + this.state = 536; this.columnRef(); - this.state = 525; + this.state = 537; this.match(TrinoSqlParser.KW_IS); - this.state = 528; + this.state = 540; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 526; + this.state = 538; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 527; + this.state = 539; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1603,29 +1611,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 530; + this.state = 542; this.match(TrinoSqlParser.KW_ALTER); - this.state = 531; + this.state = 543; this.match(TrinoSqlParser.KW_TABLE); - this.state = 534; + this.state = 546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 532; + this.state = 544; this.match(TrinoSqlParser.KW_IF); - this.state = 533; + this.state = 545; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 536; + this.state = 548; (localContext as RenameTableContext)._from_ = this.tableRef(); - this.state = 537; + this.state = 549; this.match(TrinoSqlParser.KW_RENAME); - this.state = 538; + this.state = 550; this.match(TrinoSqlParser.KW_TO); - this.state = 539; + this.state = 551; (localContext as RenameTableContext)._to = this.tableNameCreate(); } break; @@ -1633,43 +1641,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AddColumnContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 541; + this.state = 553; this.match(TrinoSqlParser.KW_ALTER); - this.state = 542; + this.state = 554; this.match(TrinoSqlParser.KW_TABLE); - this.state = 545; + this.state = 557; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 543; + this.state = 555; this.match(TrinoSqlParser.KW_IF); - this.state = 544; + this.state = 556; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 547; + this.state = 559; (localContext as AddColumnContext)._tableName = this.tableRef(); - this.state = 548; + this.state = 560; this.match(TrinoSqlParser.KW_ADD); - this.state = 549; + this.state = 561; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 553; + this.state = 565; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 550; + this.state = 562; this.match(TrinoSqlParser.KW_IF); - this.state = 551; + this.state = 563; this.match(TrinoSqlParser.KW_NOT); - this.state = 552; + this.state = 564; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 555; + this.state = 567; (localContext as AddColumnContext)._column = this.columnDefinition(); } break; @@ -1677,45 +1685,45 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 557; + this.state = 569; this.match(TrinoSqlParser.KW_ALTER); - this.state = 558; + this.state = 570; this.match(TrinoSqlParser.KW_TABLE); - this.state = 561; + this.state = 573; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 559; + this.state = 571; this.match(TrinoSqlParser.KW_IF); - this.state = 560; + this.state = 572; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 563; + this.state = 575; (localContext as RenameColumnContext)._tableName = this.tableRef(); - this.state = 564; + this.state = 576; this.match(TrinoSqlParser.KW_RENAME); - this.state = 565; + this.state = 577; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 568; + this.state = 580; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 566; + this.state = 578; this.match(TrinoSqlParser.KW_IF); - this.state = 567; + this.state = 579; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 570; + this.state = 582; (localContext as RenameColumnContext)._from_ = this.columnRef(); - this.state = 571; + this.state = 583; this.match(TrinoSqlParser.KW_TO); - this.state = 572; + this.state = 584; (localContext as RenameColumnContext)._to = this.columnNameCreate(); } break; @@ -1723,41 +1731,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropColumnContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 574; + this.state = 586; this.match(TrinoSqlParser.KW_ALTER); - this.state = 575; + this.state = 587; this.match(TrinoSqlParser.KW_TABLE); - this.state = 578; + this.state = 590; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 576; + this.state = 588; this.match(TrinoSqlParser.KW_IF); - this.state = 577; + this.state = 589; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 580; + this.state = 592; (localContext as DropColumnContext)._tableName = this.tableRef(); - this.state = 581; + this.state = 593; this.match(TrinoSqlParser.KW_DROP); - this.state = 582; + this.state = 594; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 585; + this.state = 597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 583; + this.state = 595; this.match(TrinoSqlParser.KW_IF); - this.state = 584; + this.state = 596; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 587; + this.state = 599; (localContext as DropColumnContext)._column = this.columnRef(); } break; @@ -1765,37 +1773,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetColumnTypeContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 589; + this.state = 601; this.match(TrinoSqlParser.KW_ALTER); - this.state = 590; + this.state = 602; this.match(TrinoSqlParser.KW_TABLE); - this.state = 593; + this.state = 605; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 591; + this.state = 603; this.match(TrinoSqlParser.KW_IF); - this.state = 592; + this.state = 604; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 595; + this.state = 607; (localContext as SetColumnTypeContext)._tableName = this.tableRef(); - this.state = 596; + this.state = 608; this.match(TrinoSqlParser.KW_ALTER); - this.state = 597; + this.state = 609; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 598; + this.state = 610; (localContext as SetColumnTypeContext)._column = this.columnRef(); - this.state = 599; + this.state = 611; this.match(TrinoSqlParser.KW_SET); - this.state = 600; + this.state = 612; this.match(TrinoSqlParser.KW_DATA); - this.state = 601; + this.state = 613; this.match(TrinoSqlParser.KW_TYPE); - this.state = 602; + this.state = 614; this.type_(0); } break; @@ -1803,35 +1811,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropNotNullConstraintContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 604; + this.state = 616; this.match(TrinoSqlParser.KW_ALTER); - this.state = 605; + this.state = 617; this.match(TrinoSqlParser.KW_TABLE); - this.state = 608; + this.state = 620; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { - this.state = 606; + this.state = 618; this.match(TrinoSqlParser.KW_IF); - this.state = 607; + this.state = 619; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 610; + this.state = 622; (localContext as DropNotNullConstraintContext)._tableName = this.tableRef(); - this.state = 611; + this.state = 623; this.match(TrinoSqlParser.KW_ALTER); - this.state = 612; + this.state = 624; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 613; + this.state = 625; (localContext as DropNotNullConstraintContext)._column = this.columnRef(); - this.state = 614; + this.state = 626; this.match(TrinoSqlParser.KW_DROP); - this.state = 615; + this.state = 627; this.match(TrinoSqlParser.KW_NOT); - this.state = 616; + this.state = 628; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1839,17 +1847,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTableAuthorizationContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 618; + this.state = 630; this.match(TrinoSqlParser.KW_ALTER); - this.state = 619; + this.state = 631; this.match(TrinoSqlParser.KW_TABLE); - this.state = 620; + this.state = 632; (localContext as SetTableAuthorizationContext)._tableName = this.tableRef(); - this.state = 621; + this.state = 633; this.match(TrinoSqlParser.KW_SET); - this.state = 622; + this.state = 634; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 623; + this.state = 635; this.principal(); } break; @@ -1857,17 +1865,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 625; + this.state = 637; this.match(TrinoSqlParser.KW_ALTER); - this.state = 626; + this.state = 638; this.match(TrinoSqlParser.KW_TABLE); - this.state = 627; + this.state = 639; (localContext as SetTablePropertiesContext)._tableName = this.tableRef(); - this.state = 628; + this.state = 640; this.match(TrinoSqlParser.KW_SET); - this.state = 629; + this.state = 641; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 630; + this.state = 642; this.propertyAssignments(); } break; @@ -1875,62 +1883,62 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableExecuteContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 632; + this.state = 644; this.match(TrinoSqlParser.KW_ALTER); - this.state = 633; + this.state = 645; this.match(TrinoSqlParser.KW_TABLE); - this.state = 634; + this.state = 646; (localContext as TableExecuteContext)._tableName = this.tableRef(); - this.state = 635; + this.state = 647; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 636; + this.state = 648; (localContext as TableExecuteContext)._procedureName = this.functionName(); - this.state = 649; + this.state = 661; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 637; + this.state = 649; this.match(TrinoSqlParser.T__0); - this.state = 646; + this.state = 658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 638; + this.state = 650; this.callArgument(); - this.state = 643; + this.state = 655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 639; + this.state = 651; this.match(TrinoSqlParser.T__2); - this.state = 640; + this.state = 652; this.callArgument(); } } - this.state = 645; + this.state = 657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 648; + this.state = 660; this.match(TrinoSqlParser.T__1); } break; } - this.state = 653; + this.state = 665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 651; + this.state = 663; this.match(TrinoSqlParser.KW_WHERE); - this.state = 652; + this.state = 664; (localContext as TableExecuteContext)._where = this.booleanExpression(0); } } @@ -1941,18 +1949,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 655; + this.state = 667; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 656; + this.state = 668; this.tableRef(); - this.state = 659; + this.state = 671; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 657; + this.state = 669; this.match(TrinoSqlParser.KW_WITH); - this.state = 658; + this.state = 670; this.properties(); } break; @@ -1963,81 +1971,81 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 661; + this.state = 673; this.match(TrinoSqlParser.KW_CREATE); - this.state = 664; + this.state = 676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 662; + this.state = 674; this.match(TrinoSqlParser.KW_OR); - this.state = 663; + this.state = 675; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 666; + this.state = 678; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 667; + this.state = 679; this.match(TrinoSqlParser.KW_VIEW); - this.state = 671; + this.state = 683; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 668; + this.state = 680; this.match(TrinoSqlParser.KW_IF); - this.state = 669; + this.state = 681; this.match(TrinoSqlParser.KW_NOT); - this.state = 670; + this.state = 682; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 673; + this.state = 685; this.viewNameCreate(); - this.state = 677; + this.state = 689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 674; + this.state = 686; this.match(TrinoSqlParser.KW_GRACE); - this.state = 675; + this.state = 687; this.match(TrinoSqlParser.KW_PERIOD); - this.state = 676; + this.state = 688; this.interval(); } } - this.state = 681; + this.state = 693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 679; + this.state = 691; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 680; + this.state = 692; (localContext as CreateMaterializedViewContext)._comment = this.string_(); } } - this.state = 685; + this.state = 697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 683; + this.state = 695; this.match(TrinoSqlParser.KW_WITH); - this.state = 684; + this.state = 696; this.properties(); } } - this.state = 687; + this.state = 699; this.match(TrinoSqlParser.KW_AS); - this.state = 688; + this.state = 700; this.rootQuery(); } break; @@ -2045,44 +2053,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 690; + this.state = 702; this.match(TrinoSqlParser.KW_CREATE); - this.state = 693; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 691; + this.state = 703; this.match(TrinoSqlParser.KW_OR); - this.state = 692; + this.state = 704; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 695; + this.state = 707; this.match(TrinoSqlParser.KW_VIEW); - this.state = 696; + this.state = 708; this.viewNameCreate(); - this.state = 699; + this.state = 711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 697; + this.state = 709; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 698; + this.state = 710; (localContext as CreateViewContext)._comment = this.string_(); } } - this.state = 703; + this.state = 715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 701; + this.state = 713; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 702; + this.state = 714; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -2094,21 +2102,21 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 707; + this.state = 719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 705; + this.state = 717; this.match(TrinoSqlParser.KW_WITH); - this.state = 706; + this.state = 718; this.properties(); } } - this.state = 709; + this.state = 721; this.match(TrinoSqlParser.KW_AS); - this.state = 710; + this.state = 722; this.rootQuery(); } break; @@ -2116,13 +2124,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 712; + this.state = 724; this.match(TrinoSqlParser.KW_REFRESH); - this.state = 713; + this.state = 725; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 714; + this.state = 726; this.match(TrinoSqlParser.KW_VIEW); - this.state = 715; + this.state = 727; this.viewRef(); } break; @@ -2130,25 +2138,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 716; + this.state = 728; this.match(TrinoSqlParser.KW_DROP); - this.state = 717; + this.state = 729; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 718; + this.state = 730; this.match(TrinoSqlParser.KW_VIEW); - this.state = 721; + this.state = 733; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 719; + this.state = 731; this.match(TrinoSqlParser.KW_IF); - this.state = 720; + this.state = 732; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 723; + this.state = 735; this.viewRef(); } break; @@ -2156,31 +2164,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 724; + this.state = 736; this.match(TrinoSqlParser.KW_ALTER); - this.state = 725; + this.state = 737; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 726; + this.state = 738; this.match(TrinoSqlParser.KW_VIEW); - this.state = 729; + this.state = 741; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 727; + this.state = 739; this.match(TrinoSqlParser.KW_IF); - this.state = 728; + this.state = 740; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 731; + this.state = 743; (localContext as RenameMaterializedViewContext)._from_ = this.viewRef(); - this.state = 732; + this.state = 744; this.match(TrinoSqlParser.KW_RENAME); - this.state = 733; + this.state = 745; this.match(TrinoSqlParser.KW_TO); - this.state = 734; + this.state = 746; (localContext as RenameMaterializedViewContext)._to = this.viewNameCreate(); } break; @@ -2188,19 +2196,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 736; + this.state = 748; this.match(TrinoSqlParser.KW_ALTER); - this.state = 737; + this.state = 749; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 738; + this.state = 750; this.match(TrinoSqlParser.KW_VIEW); - this.state = 739; + this.state = 751; this.viewRef(); - this.state = 740; + this.state = 752; this.match(TrinoSqlParser.KW_SET); - this.state = 741; + this.state = 753; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 742; + this.state = 754; this.propertyAssignments(); } break; @@ -2208,23 +2216,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 744; + this.state = 756; this.match(TrinoSqlParser.KW_DROP); - this.state = 745; + this.state = 757; this.match(TrinoSqlParser.KW_VIEW); - this.state = 748; + this.state = 760; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 746; + this.state = 758; this.match(TrinoSqlParser.KW_IF); - this.state = 747; + this.state = 759; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 750; + this.state = 762; this.viewRef(); } break; @@ -2232,17 +2240,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameViewContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 751; + this.state = 763; this.match(TrinoSqlParser.KW_ALTER); - this.state = 752; + this.state = 764; this.match(TrinoSqlParser.KW_VIEW); - this.state = 753; + this.state = 765; (localContext as RenameViewContext)._from_ = this.viewRef(); - this.state = 754; + this.state = 766; this.match(TrinoSqlParser.KW_RENAME); - this.state = 755; + this.state = 767; this.match(TrinoSqlParser.KW_TO); - this.state = 756; + this.state = 768; (localContext as RenameViewContext)._to = this.viewNameCreate(); } break; @@ -2250,17 +2258,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetViewAuthorizationContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 758; + this.state = 770; this.match(TrinoSqlParser.KW_ALTER); - this.state = 759; + this.state = 771; this.match(TrinoSqlParser.KW_VIEW); - this.state = 760; + this.state = 772; (localContext as SetViewAuthorizationContext)._from_ = this.viewRef(); - this.state = 761; + this.state = 773; this.match(TrinoSqlParser.KW_SET); - this.state = 762; + this.state = 774; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 763; + this.state = 775; this.principal(); } break; @@ -2268,39 +2276,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CallContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 765; + this.state = 777; this.match(TrinoSqlParser.KW_CALL); - this.state = 766; + this.state = 778; this.functionName(); - this.state = 767; + this.state = 779; this.match(TrinoSqlParser.T__0); - this.state = 776; + this.state = 788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 768; + this.state = 780; this.callArgument(); - this.state = 773; + this.state = 785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 769; + this.state = 781; this.match(TrinoSqlParser.T__2); - this.state = 770; + this.state = 782; this.callArgument(); } } - this.state = 775; + this.state = 787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 778; + this.state = 790; this.match(TrinoSqlParser.T__1); } break; @@ -2308,21 +2316,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 780; + this.state = 792; this.match(TrinoSqlParser.KW_CREATE); - this.state = 783; + this.state = 795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 781; + this.state = 793; this.match(TrinoSqlParser.KW_OR); - this.state = 782; + this.state = 794; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 785; + this.state = 797; this.functionSpecification(); } break; @@ -2330,23 +2338,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 786; + this.state = 798; this.match(TrinoSqlParser.KW_DROP); - this.state = 787; + this.state = 799; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 790; + this.state = 802; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 788; + this.state = 800; this.match(TrinoSqlParser.KW_IF); - this.state = 789; + this.state = 801; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 792; + this.state = 804; this.functionSignature(); } break; @@ -2354,34 +2362,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateRoleContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 793; + this.state = 805; this.match(TrinoSqlParser.KW_CREATE); - this.state = 794; + this.state = 806; this.match(TrinoSqlParser.KW_ROLE); - this.state = 795; + this.state = 807; (localContext as CreateRoleContext)._name = this.identifier(); - this.state = 799; + this.state = 811; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 796; + this.state = 808; this.match(TrinoSqlParser.KW_WITH); - this.state = 797; + this.state = 809; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 798; + this.state = 810; this.grantor(); } break; } - this.state = 803; + this.state = 815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 801; + this.state = 813; this.match(TrinoSqlParser.KW_IN); - this.state = 802; + this.state = 814; (localContext as CreateRoleContext)._catalog = this.catalogRef(); } } @@ -2392,20 +2400,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropRoleContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 805; + this.state = 817; this.match(TrinoSqlParser.KW_DROP); - this.state = 806; + this.state = 818; this.match(TrinoSqlParser.KW_ROLE); - this.state = 807; + this.state = 819; (localContext as DropRoleContext)._name = this.identifier(); - this.state = 810; + this.state = 822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 808; + this.state = 820; this.match(TrinoSqlParser.KW_IN); - this.state = 809; + this.state = 821; (localContext as DropRoleContext)._catalog = this.catalogRef(); } } @@ -2416,82 +2424,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantRolesContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 812; + this.state = 824; this.match(TrinoSqlParser.KW_GRANT); - this.state = 813; + this.state = 825; this.privilegeOrRole(); - this.state = 818; + this.state = 830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 814; + this.state = 826; this.match(TrinoSqlParser.T__2); - this.state = 815; + this.state = 827; this.privilegeOrRole(); } } - this.state = 820; + this.state = 832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 821; + this.state = 833; this.match(TrinoSqlParser.KW_TO); - this.state = 822; + this.state = 834; this.principal(); - this.state = 827; + this.state = 839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 823; + this.state = 835; this.match(TrinoSqlParser.T__2); - this.state = 824; + this.state = 836; this.principal(); } } - this.state = 829; + this.state = 841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 833; + this.state = 845; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 830; + this.state = 842; this.match(TrinoSqlParser.KW_WITH); - this.state = 831; + this.state = 843; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 832; + this.state = 844; this.match(TrinoSqlParser.KW_OPTION); } break; } - this.state = 838; + this.state = 850; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 835; + this.state = 847; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 836; + this.state = 848; this.match(TrinoSqlParser.KW_BY); - this.state = 837; + this.state = 849; this.grantor(); } } - this.state = 842; + this.state = 854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 840; + this.state = 852; this.match(TrinoSqlParser.KW_IN); - this.state = 841; + this.state = 853; (localContext as GrantRolesContext)._catalog = this.catalogRef(); } } @@ -2502,29 +2510,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantPrivilegesContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 844; + this.state = 856; this.match(TrinoSqlParser.KW_GRANT); - this.state = 855; + this.state = 867; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { { - this.state = 845; + this.state = 857; this.privilegeOrRole(); - this.state = 850; + this.state = 862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 846; + this.state = 858; this.match(TrinoSqlParser.T__2); - this.state = 847; + this.state = 859; this.privilegeOrRole(); } } - this.state = 852; + this.state = 864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2533,31 +2541,31 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 853; + this.state = 865; this.match(TrinoSqlParser.KW_ALL); - this.state = 854; + this.state = 866; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 857; + this.state = 869; this.match(TrinoSqlParser.KW_ON); - this.state = 858; + this.state = 870; this.grantObject(); - this.state = 859; + this.state = 871; this.match(TrinoSqlParser.KW_TO); - this.state = 860; + this.state = 872; this.principal(); - this.state = 864; + this.state = 876; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 861; + this.state = 873; this.match(TrinoSqlParser.KW_WITH); - this.state = 862; + this.state = 874; this.match(TrinoSqlParser.KW_GRANT); - this.state = 863; + this.state = 875; this.match(TrinoSqlParser.KW_OPTION); } break; @@ -2568,82 +2576,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokeRolesContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 866; + this.state = 878; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 870; + this.state = 882; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 867; + this.state = 879; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 868; + this.state = 880; this.match(TrinoSqlParser.KW_OPTION); - this.state = 869; + this.state = 881; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 872; + this.state = 884; this.privilegeOrRole(); - this.state = 877; + this.state = 889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 873; + this.state = 885; this.match(TrinoSqlParser.T__2); - this.state = 874; + this.state = 886; this.privilegeOrRole(); } } - this.state = 879; + this.state = 891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 880; + this.state = 892; this.match(TrinoSqlParser.KW_FROM); - this.state = 881; + this.state = 893; this.principal(); - this.state = 886; + this.state = 898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 882; + this.state = 894; this.match(TrinoSqlParser.T__2); - this.state = 883; + this.state = 895; this.principal(); } } - this.state = 888; + this.state = 900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 892; + this.state = 904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 111) { { - this.state = 889; + this.state = 901; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 890; + this.state = 902; this.match(TrinoSqlParser.KW_BY); - this.state = 891; + this.state = 903; this.grantor(); } } - this.state = 896; + this.state = 908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 894; + this.state = 906; this.match(TrinoSqlParser.KW_IN); - this.state = 895; + this.state = 907; (localContext as RevokeRolesContext)._catalog = this.catalogRef(); } } @@ -2654,43 +2662,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokePrivilegesContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 898; + this.state = 910; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 902; + this.state = 914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 899; + this.state = 911; this.match(TrinoSqlParser.KW_GRANT); - this.state = 900; + this.state = 912; this.match(TrinoSqlParser.KW_OPTION); - this.state = 901; + this.state = 913; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 914; + this.state = 926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { { - this.state = 904; + this.state = 916; this.privilegeOrRole(); - this.state = 909; + this.state = 921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 905; + this.state = 917; this.match(TrinoSqlParser.T__2); - this.state = 906; + this.state = 918; this.privilegeOrRole(); } } - this.state = 911; + this.state = 923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2699,20 +2707,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 912; + this.state = 924; this.match(TrinoSqlParser.KW_ALL); - this.state = 913; + this.state = 925; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 916; + this.state = 928; this.match(TrinoSqlParser.KW_ON); - this.state = 917; + this.state = 929; this.grantObject(); - this.state = 918; + this.state = 930; this.match(TrinoSqlParser.KW_FROM); - this.state = 919; + this.state = 931; (localContext as RevokePrivilegesContext)._grantee = this.principal(); } break; @@ -2720,28 +2728,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DenyContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 921; + this.state = 933; this.match(TrinoSqlParser.KW_DENY); - this.state = 932; + this.state = 944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 922; + this.state = 934; this.privilege(); - this.state = 927; + this.state = 939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 923; + this.state = 935; this.match(TrinoSqlParser.T__2); - this.state = 924; + this.state = 936; this.privilege(); } } - this.state = 929; + this.state = 941; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2749,20 +2757,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 930; + this.state = 942; this.match(TrinoSqlParser.KW_ALL); - this.state = 931; + this.state = 943; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 934; + this.state = 946; this.match(TrinoSqlParser.KW_ON); - this.state = 935; + this.state = 947; this.grantObject(); - this.state = 936; + this.state = 948; this.match(TrinoSqlParser.KW_TO); - this.state = 937; + this.state = 949; (localContext as DenyContext)._grantee = this.principal(); } break; @@ -2770,40 +2778,40 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetRoleContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 939; + this.state = 951; this.match(TrinoSqlParser.KW_SET); - this.state = 940; + this.state = 952; this.match(TrinoSqlParser.KW_ROLE); - this.state = 944; + this.state = 956; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 941; + this.state = 953; this.match(TrinoSqlParser.KW_ALL); } break; case 2: { - this.state = 942; + this.state = 954; this.match(TrinoSqlParser.KW_NONE); } break; case 3: { - this.state = 943; + this.state = 955; (localContext as SetRoleContext)._role = this.identifier(); } break; } - this.state = 948; + this.state = 960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 946; + this.state = 958; this.match(TrinoSqlParser.KW_IN); - this.state = 947; + this.state = 959; (localContext as SetRoleContext)._catalog = this.catalogRef(); } } @@ -2814,18 +2822,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 950; + this.state = 962; this.match(TrinoSqlParser.KW_SHOW); - this.state = 951; + this.state = 963; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 954; + this.state = 966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 952; + this.state = 964; this.match(TrinoSqlParser.KW_ON); - this.state = 953; + this.state = 965; this.grantObject(); } } @@ -2836,39 +2844,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 956; - this.match(TrinoSqlParser.KW_EXPLAIN); this.state = 968; + this.match(TrinoSqlParser.KW_EXPLAIN); + this.state = 980; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 957; + this.state = 969; this.match(TrinoSqlParser.T__0); - this.state = 958; + this.state = 970; this.explainOption(); - this.state = 963; + this.state = 975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 959; + this.state = 971; this.match(TrinoSqlParser.T__2); - this.state = 960; + this.state = 972; this.explainOption(); } } - this.state = 965; + this.state = 977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 966; + this.state = 978; this.match(TrinoSqlParser.T__1); } break; } - this.state = 970; + this.state = 982; this.statement(); } break; @@ -2876,21 +2884,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainAnalyzeContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 971; + this.state = 983; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 972; + this.state = 984; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 974; + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 973; + this.state = 985; this.match(TrinoSqlParser.KW_VERBOSE); } } - this.state = 976; + this.state = 988; this.statement(); } break; @@ -2898,13 +2906,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 977; + this.state = 989; this.match(TrinoSqlParser.KW_SHOW); - this.state = 978; + this.state = 990; this.match(TrinoSqlParser.KW_CREATE); - this.state = 979; + this.state = 991; this.match(TrinoSqlParser.KW_TABLE); - this.state = 980; + this.state = 992; this.tableRef(); } break; @@ -2912,13 +2920,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateSchemaContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 981; + this.state = 993; this.match(TrinoSqlParser.KW_SHOW); - this.state = 982; + this.state = 994; this.match(TrinoSqlParser.KW_CREATE); - this.state = 983; + this.state = 995; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 984; + this.state = 996; this.schemaRef(); } break; @@ -2926,13 +2934,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 985; + this.state = 997; this.match(TrinoSqlParser.KW_SHOW); - this.state = 986; + this.state = 998; this.match(TrinoSqlParser.KW_CREATE); - this.state = 987; + this.state = 999; this.match(TrinoSqlParser.KW_VIEW); - this.state = 988; + this.state = 1000; this.viewRef(); } break; @@ -2940,15 +2948,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 989; + this.state = 1001; this.match(TrinoSqlParser.KW_SHOW); - this.state = 990; + this.state = 1002; this.match(TrinoSqlParser.KW_CREATE); - this.state = 991; + this.state = 1003; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 992; + this.state = 1004; this.match(TrinoSqlParser.KW_VIEW); - this.state = 993; + this.state = 1005; this.viewRef(); } break; @@ -2956,13 +2964,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 994; + this.state = 1006; this.match(TrinoSqlParser.KW_SHOW); - this.state = 995; + this.state = 1007; this.match(TrinoSqlParser.KW_CREATE); - this.state = 996; + this.state = 1008; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 997; + this.state = 1009; this.functionName(); } break; @@ -2970,16 +2978,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 998; + this.state = 1010; this.match(TrinoSqlParser.KW_SHOW); - this.state = 999; + this.state = 1011; this.match(TrinoSqlParser.KW_TABLES); - this.state = 1002; + this.state = 1014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1000; + this.state = 1012; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -2988,28 +2996,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1001; + this.state = 1013; this.schemaRef(); } } - this.state = 1010; + this.state = 1022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1004; + this.state = 1016; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1005; + this.state = 1017; (localContext as ShowTablesContext)._pattern = this.string_(); - this.state = 1008; + this.state = 1020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1006; + this.state = 1018; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1007; + this.state = 1019; (localContext as ShowTablesContext)._escape = this.string_(); } } @@ -3023,16 +3031,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSchemasContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1012; + this.state = 1024; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1013; + this.state = 1025; this.match(TrinoSqlParser.KW_SCHEMAS); - this.state = 1016; + this.state = 1028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1014; + this.state = 1026; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3041,28 +3049,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1015; + this.state = 1027; this.catalogRef(); } } - this.state = 1024; + this.state = 1036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1018; + this.state = 1030; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1019; + this.state = 1031; (localContext as ShowSchemasContext)._pattern = this.string_(); - this.state = 1022; + this.state = 1034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1020; + this.state = 1032; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1021; + this.state = 1033; (localContext as ShowSchemasContext)._escape = this.string_(); } } @@ -3076,27 +3084,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1026; + this.state = 1038; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1027; + this.state = 1039; this.match(TrinoSqlParser.KW_CATALOGS); - this.state = 1034; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1028; + this.state = 1040; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1029; + this.state = 1041; (localContext as ShowCatalogsContext)._pattern = this.string_(); - this.state = 1032; + this.state = 1044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1030; + this.state = 1042; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1031; + this.state = 1043; (localContext as ShowCatalogsContext)._escape = this.string_(); } } @@ -3110,11 +3118,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1036; + this.state = 1048; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1037; + this.state = 1049; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1038; + this.state = 1050; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3123,25 +3131,25 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1039; + this.state = 1051; this.tableOrViewName(); - this.state = 1046; + this.state = 1058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1040; + this.state = 1052; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1041; + this.state = 1053; (localContext as ShowColumnsContext)._pattern = this.string_(); - this.state = 1044; + this.state = 1056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1042; + this.state = 1054; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1043; + this.state = 1055; (localContext as ShowColumnsContext)._escape = this.string_(); } } @@ -3155,13 +3163,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1048; + this.state = 1060; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1049; + this.state = 1061; this.match(TrinoSqlParser.KW_STATS); - this.state = 1050; + this.state = 1062; this.match(TrinoSqlParser.KW_FOR); - this.state = 1051; + this.state = 1063; this.tableOrViewName(); } break; @@ -3169,17 +3177,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsForQueryContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1052; + this.state = 1064; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1053; + this.state = 1065; this.match(TrinoSqlParser.KW_STATS); - this.state = 1054; + this.state = 1066; this.match(TrinoSqlParser.KW_FOR); - this.state = 1055; + this.state = 1067; this.match(TrinoSqlParser.T__0); - this.state = 1056; + this.state = 1068; this.rootQuery(); - this.state = 1057; + this.state = 1069; this.match(TrinoSqlParser.T__1); } break; @@ -3187,26 +3195,26 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRolesContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1059; + this.state = 1071; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1061; + this.state = 1073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 56) { { - this.state = 1060; + this.state = 1072; this.match(TrinoSqlParser.KW_CURRENT); } } - this.state = 1063; + this.state = 1075; this.match(TrinoSqlParser.KW_ROLES); - this.state = 1066; + this.state = 1078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1064; + this.state = 1076; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3215,7 +3223,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1065; + this.state = 1077; this.catalogRef(); } } @@ -3226,18 +3234,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRoleGrantsContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1068; + this.state = 1080; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1069; + this.state = 1081; this.match(TrinoSqlParser.KW_ROLE); - this.state = 1070; + this.state = 1082; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 1073; + this.state = 1085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1071; + this.state = 1083; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3246,7 +3254,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1072; + this.state = 1084; this.catalogRef(); } } @@ -3257,9 +3265,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1075; + this.state = 1087; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1076; + this.state = 1088; this.tableOrViewName(); } break; @@ -3267,9 +3275,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1077; + this.state = 1089; this.match(TrinoSqlParser.KW_DESC); - this.state = 1078; + this.state = 1090; this.tableOrViewName(); } break; @@ -3277,16 +3285,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1079; + this.state = 1091; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1080; + this.state = 1092; this.match(TrinoSqlParser.KW_FUNCTIONS); - this.state = 1083; + this.state = 1095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 122) { { - this.state = 1081; + this.state = 1093; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -3295,28 +3303,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1082; + this.state = 1094; this.schemaRef(); } } - this.state = 1091; + this.state = 1103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1085; + this.state = 1097; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1086; + this.state = 1098; (localContext as ShowFunctionsContext)._pattern = this.string_(); - this.state = 1089; + this.state = 1101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1087; + this.state = 1099; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1088; + this.state = 1100; (localContext as ShowFunctionsContext)._escape = this.string_(); } } @@ -3330,27 +3338,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSessionContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1093; + this.state = 1105; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1094; + this.state = 1106; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1101; + this.state = 1113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1095; + this.state = 1107; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1096; + this.state = 1108; (localContext as ShowSessionContext)._pattern = this.string_(); - this.state = 1099; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90) { { - this.state = 1097; + this.state = 1109; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1098; + this.state = 1110; (localContext as ShowSessionContext)._escape = this.string_(); } } @@ -3364,13 +3372,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1103; + this.state = 1115; this.match(TrinoSqlParser.KW_SET); - this.state = 1104; + this.state = 1116; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1105; + this.state = 1117; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 1106; + this.state = 1118; this.authorizationUser(); } break; @@ -3378,11 +3386,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1107; + this.state = 1119; this.match(TrinoSqlParser.KW_RESET); - this.state = 1108; + this.state = 1120; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1109; + this.state = 1121; this.match(TrinoSqlParser.KW_AUTHORIZATION); } break; @@ -3390,15 +3398,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1110; + this.state = 1122; this.match(TrinoSqlParser.KW_SET); - this.state = 1111; + this.state = 1123; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1112; + this.state = 1124; this.qualifiedName(); - this.state = 1113; + this.state = 1125; this.match(TrinoSqlParser.EQ); - this.state = 1114; + this.state = 1126; this.expression(); } break; @@ -3406,11 +3414,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1116; + this.state = 1128; this.match(TrinoSqlParser.KW_RESET); - this.state = 1117; + this.state = 1129; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1118; + this.state = 1130; this.qualifiedName(); } break; @@ -3418,30 +3426,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StartTransactionContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1119; + this.state = 1131; this.match(TrinoSqlParser.KW_START); - this.state = 1120; + this.state = 1132; this.match(TrinoSqlParser.KW_TRANSACTION); - this.state = 1129; + this.state = 1141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 220) { { - this.state = 1121; + this.state = 1133; this.transactionMode(); - this.state = 1126; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1122; + this.state = 1134; this.match(TrinoSqlParser.T__2); - this.state = 1123; + this.state = 1135; this.transactionMode(); } } - this.state = 1128; + this.state = 1140; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3454,14 +3462,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommitContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1131; + this.state = 1143; this.match(TrinoSqlParser.KW_COMMIT); - this.state = 1133; + this.state = 1145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1132; + this.state = 1144; this.match(TrinoSqlParser.KW_WORK); } } @@ -3472,14 +3480,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollbackContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1135; + this.state = 1147; this.match(TrinoSqlParser.KW_ROLLBACK); - this.state = 1137; + this.state = 1149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1136; + this.state = 1148; this.match(TrinoSqlParser.KW_WORK); } } @@ -3490,13 +3498,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PrepareContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1139; + this.state = 1151; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1140; + this.state = 1152; this.identifier(); - this.state = 1141; + this.state = 1153; this.match(TrinoSqlParser.KW_FROM); - this.state = 1142; + this.state = 1154; this.statement(); } break; @@ -3504,11 +3512,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeallocateContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1144; + this.state = 1156; this.match(TrinoSqlParser.KW_DEALLOCATE); - this.state = 1145; + this.state = 1157; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1146; + this.state = 1158; this.identifier(); } break; @@ -3516,32 +3524,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1147; + this.state = 1159; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1148; + this.state = 1160; this.identifier(); - this.state = 1158; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1149; + this.state = 1161; this.match(TrinoSqlParser.KW_USING); - this.state = 1150; + this.state = 1162; this.expression(); - this.state = 1155; + this.state = 1167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1151; + this.state = 1163; this.match(TrinoSqlParser.T__2); - this.state = 1152; + this.state = 1164; this.expression(); } } - this.state = 1157; + this.state = 1169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3554,34 +3562,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteImmediateContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1160; + this.state = 1172; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1161; + this.state = 1173; this.match(TrinoSqlParser.KW_IMMEDIATE); - this.state = 1162; + this.state = 1174; this.string_(); - this.state = 1172; + this.state = 1184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 290) { { - this.state = 1163; + this.state = 1175; this.match(TrinoSqlParser.KW_USING); - this.state = 1164; + this.state = 1176; this.expression(); - this.state = 1169; + this.state = 1181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1165; + this.state = 1177; this.match(TrinoSqlParser.T__2); - this.state = 1166; + this.state = 1178; this.expression(); } } - this.state = 1171; + this.state = 1183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3594,11 +3602,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeInputContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1174; + this.state = 1186; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1175; + this.state = 1187; this.match(TrinoSqlParser.KW_INPUT); - this.state = 1176; + this.state = 1188; this.identifier(); } break; @@ -3606,11 +3614,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeOutputContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1177; + this.state = 1189; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1178; + this.state = 1190; this.match(TrinoSqlParser.KW_OUTPUT); - this.state = 1179; + this.state = 1191; this.identifier(); } break; @@ -3618,11 +3626,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetPathContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1180; + this.state = 1192; this.match(TrinoSqlParser.KW_SET); - this.state = 1181; + this.state = 1193; this.match(TrinoSqlParser.KW_PATH); - this.state = 1182; + this.state = 1194; this.pathSpecification(); } break; @@ -3630,24 +3638,24 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1183; + this.state = 1195; this.match(TrinoSqlParser.KW_SET); - this.state = 1184; + this.state = 1196; this.match(TrinoSqlParser.KW_TIME); - this.state = 1185; + this.state = 1197; this.match(TrinoSqlParser.KW_ZONE); - this.state = 1188; + this.state = 1200; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1186; + this.state = 1198; this.match(TrinoSqlParser.KW_LOCAL); } break; case 2: { - this.state = 1187; + this.state = 1199; this.expression(); } break; @@ -3658,38 +3666,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UpdateContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1190; + this.state = 1202; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 1191; + this.state = 1203; this.tableRef(); - this.state = 1192; + this.state = 1204; this.match(TrinoSqlParser.KW_SET); - this.state = 1193; + this.state = 1205; this.updateAssignment(); - this.state = 1198; + this.state = 1210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1194; + this.state = 1206; this.match(TrinoSqlParser.T__2); - this.state = 1195; + this.state = 1207; this.updateAssignment(); } } - this.state = 1200; + this.state = 1212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1203; + this.state = 1215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 301) { { - this.state = 1201; + this.state = 1213; this.match(TrinoSqlParser.KW_WHERE); - this.state = 1202; + this.state = 1214; (localContext as UpdateContext)._where = this.booleanExpression(0); } } @@ -3700,51 +3708,51 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1205; + this.state = 1217; this.match(TrinoSqlParser.KW_MERGE); - this.state = 1206; + this.state = 1218; this.match(TrinoSqlParser.KW_INTO); - this.state = 1207; + this.state = 1219; this.tableRef(); - this.state = 1212; + this.state = 1224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282056543) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 1209; + this.state = 1221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1208; + this.state = 1220; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1211; + this.state = 1223; this.identifier(); } } - this.state = 1214; + this.state = 1226; this.match(TrinoSqlParser.KW_USING); - this.state = 1215; + this.state = 1227; this.relation(0); - this.state = 1216; + this.state = 1228; this.match(TrinoSqlParser.KW_ON); - this.state = 1217; + this.state = 1229; this.expression(); - this.state = 1219; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1218; + this.state = 1230; this.mergeCase(); } } - this.state = 1221; + this.state = 1233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); @@ -3754,15 +3762,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTableCommentContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1223; + this.state = 1235; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1224; + this.state = 1236; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1225; + this.state = 1237; this.match(TrinoSqlParser.KW_ON); - this.state = 1226; + this.state = 1238; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1227; + this.state = 1239; this.tableRef(); } break; @@ -3770,15 +3778,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnCommentContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1228; + this.state = 1240; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1229; + this.state = 1241; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1230; + this.state = 1242; this.match(TrinoSqlParser.KW_ON); - this.state = 1231; + this.state = 1243; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 1232; + this.state = 1244; this.columnRef(); } break; @@ -3804,17 +3812,17 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1236; + this.state = 1248; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1235; + this.state = 1247; this.withFunction(); } break; } - this.state = 1238; + this.state = 1250; this.query(); } } @@ -3839,23 +3847,23 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1240; + this.state = 1252; this.match(TrinoSqlParser.KW_WITH); - this.state = 1241; + this.state = 1253; this.functionSpecification(); - this.state = 1246; + this.state = 1258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1242; + this.state = 1254; this.match(TrinoSqlParser.T__2); - this.state = 1243; + this.state = 1255; this.functionSpecification(); } } - this.state = 1248; + this.state = 1260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3883,17 +3891,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1250; + this.state = 1262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304) { { - this.state = 1249; + this.state = 1261; this.with_(); } } - this.state = 1252; + this.state = 1264; this.queryNoWith(); } } @@ -3918,33 +3926,33 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1254; + this.state = 1266; this.match(TrinoSqlParser.KW_WITH); - this.state = 1256; + this.state = 1268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 221) { { - this.state = 1255; + this.state = 1267; this.match(TrinoSqlParser.KW_RECURSIVE); } } - this.state = 1258; + this.state = 1270; this.namedQuery(); - this.state = 1263; + this.state = 1275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1259; + this.state = 1271; this.match(TrinoSqlParser.T__2); - this.state = 1260; + this.state = 1272; this.namedQuery(); } } - this.state = 1265; + this.state = 1277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3968,7 +3976,7 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new TableElementContext(this.context, this.state); this.enterRule(localContext, 26, TrinoSqlParser.RULE_tableElement); try { - this.state = 1268; + this.state = 1280; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -4190,14 +4198,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1278; this.columnDefinition(); } break; case TrinoSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1267; + this.state = 1279; this.likeClause(); } break; @@ -4226,42 +4234,42 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1270; + this.state = 1282; this.columnNameCreate(); - this.state = 1271; + this.state = 1283; localContext._colType = this.type_(0); - this.state = 1274; + this.state = 1286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 1272; + this.state = 1284; this.match(TrinoSqlParser.KW_NOT); - this.state = 1273; + this.state = 1285; this.match(TrinoSqlParser.KW_NULL); } } - this.state = 1278; + this.state = 1290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1276; + this.state = 1288; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1277; + this.state = 1289; localContext._comment = this.string_(); } break; } - this.state = 1282; + this.state = 1294; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1280; + this.state = 1292; this.match(TrinoSqlParser.KW_WITH); - this.state = 1281; + this.state = 1293; this.properties(); } break; @@ -4289,16 +4297,16 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1284; + this.state = 1296; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1285; + this.state = 1297; this.tableRef(); - this.state = 1288; + this.state = 1300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92 || _la === 123) { { - this.state = 1286; + this.state = 1298; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 123)) { @@ -4308,7 +4316,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1287; + this.state = 1299; this.match(TrinoSqlParser.KW_PROPERTIES); } } @@ -4335,11 +4343,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1290; + this.state = 1302; this.match(TrinoSqlParser.T__0); - this.state = 1291; + this.state = 1303; this.propertyAssignments(); - this.state = 1292; + this.state = 1304; this.match(TrinoSqlParser.T__1); } } @@ -4364,21 +4372,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1306; this.property(); - this.state = 1299; + this.state = 1311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1295; + this.state = 1307; this.match(TrinoSqlParser.T__2); - this.state = 1296; + this.state = 1308; this.property(); } } - this.state = 1301; + this.state = 1313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4404,11 +4412,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1302; + this.state = 1314; this.identifier(); - this.state = 1303; + this.state = 1315; this.match(TrinoSqlParser.EQ); - this.state = 1304; + this.state = 1316; this.propertyValue(); } } @@ -4430,14 +4438,14 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 38, TrinoSqlParser.RULE_propertyValue); try { - this.state = 1308; + this.state = 1320; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: localContext = new DefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1306; + this.state = 1318; this.match(TrinoSqlParser.KW_DEFAULT); } break; @@ -4445,7 +4453,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NonDefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1307; + this.state = 1319; this.expression(); } break; @@ -4472,53 +4480,53 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1310; + this.state = 1322; this.queryTerm(0); - this.state = 1321; + this.state = 1333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1311; + this.state = 1323; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1312; + this.state = 1324; this.match(TrinoSqlParser.KW_BY); - this.state = 1313; + this.state = 1325; this.sortItem(); - this.state = 1318; + this.state = 1330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1314; + this.state = 1326; this.match(TrinoSqlParser.T__2); - this.state = 1315; + this.state = 1327; this.sortItem(); } } - this.state = 1320; + this.state = 1332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1328; + this.state = 1340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1323; + this.state = 1335; this.match(TrinoSqlParser.KW_OFFSET); - this.state = 1324; + this.state = 1336; localContext._offset = this.rowCount(); - this.state = 1326; + this.state = 1338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 239 || _la === 240) { { - this.state = 1325; + this.state = 1337; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4533,15 +4541,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1343; + this.state = 1355; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LIMIT: { { - this.state = 1330; + this.state = 1342; this.match(TrinoSqlParser.KW_LIMIT); - this.state = 1331; + this.state = 1343; localContext._limit = this.limitRowCount(); } } @@ -4549,9 +4557,9 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FETCH: { { - this.state = 1332; + this.state = 1344; this.match(TrinoSqlParser.KW_FETCH); - this.state = 1333; + this.state = 1345; _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 174)) { this.errorHandler.recoverInline(this); @@ -4560,17 +4568,17 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1335; + this.state = 1347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 324 || _la === 329) { { - this.state = 1334; + this.state = 1346; localContext._fetchFirst = this.rowCount(); } } - this.state = 1337; + this.state = 1349; _la = this.tokenStream.LA(1); if(!(_la === 239 || _la === 240)) { this.errorHandler.recoverInline(this); @@ -4579,20 +4587,20 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1341; + this.state = 1353; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONLY: { - this.state = 1338; + this.state = 1350; this.match(TrinoSqlParser.KW_ONLY); } break; case TrinoSqlParser.KW_WITH: { - this.state = 1339; + this.state = 1351; this.match(TrinoSqlParser.KW_WITH); - this.state = 1340; + this.state = 1352; this.match(TrinoSqlParser.KW_TIES); } break; @@ -4662,13 +4670,13 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new LimitRowCountContext(this.context, this.state); this.enterRule(localContext, 42, TrinoSqlParser.RULE_limitRowCount); try { - this.state = 1347; + this.state = 1359; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1345; + this.state = 1357; this.match(TrinoSqlParser.KW_ALL); } break; @@ -4676,7 +4684,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1346; + this.state = 1358; this.rowCount(); } break; @@ -4705,7 +4713,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1361; _la = this.tokenStream.LA(1); if(!(_la === 324 || _la === 329)) { this.errorHandler.recoverInline(this); @@ -4754,11 +4762,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1352; + this.state = 1364; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1368; + this.state = 1380; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -4768,7 +4776,7 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1366; + this.state = 1378; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: @@ -4776,23 +4784,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1354; + this.state = 1366; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1355; + this.state = 1367; (localContext as SetOperationContext)._operator = this.match(TrinoSqlParser.KW_INTERSECT); - this.state = 1357; + this.state = 1369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1356; + this.state = 1368; this.setQuantifier(); } } - this.state = 1359; + this.state = 1371; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -4801,11 +4809,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1360; + this.state = 1372; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1361; + this.state = 1373; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 281)) { @@ -4815,24 +4823,24 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1363; + this.state = 1375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 79) { { - this.state = 1362; + this.state = 1374; this.setQuantifier(); } } - this.state = 1365; + this.state = 1377; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1370; + this.state = 1382; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } @@ -4857,14 +4865,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 48, TrinoSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1387; + this.state = 1399; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1371; + this.state = 1383; this.querySpecification(); } break; @@ -4872,9 +4880,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1372; + this.state = 1384; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1373; + this.state = 1385; this.tableRef(); } break; @@ -4882,25 +4890,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1374; + this.state = 1386; this.match(TrinoSqlParser.KW_VALUES); - this.state = 1375; + this.state = 1387; this.expression(); - this.state = 1380; + this.state = 1392; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1376; + this.state = 1388; this.match(TrinoSqlParser.T__2); - this.state = 1377; + this.state = 1389; this.expression(); } } } - this.state = 1382; + this.state = 1394; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } @@ -4910,11 +4918,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1383; + this.state = 1395; this.match(TrinoSqlParser.T__0); - this.state = 1384; + this.state = 1396; this.queryNoWith(); - this.state = 1385; + this.state = 1397; this.match(TrinoSqlParser.T__1); } break; @@ -4943,28 +4951,28 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1391; + this.state = 1403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1389; + this.state = 1401; this.columnRef(); } break; case 2: { - this.state = 1390; + this.state = 1402; this.expression(); } break; } - this.state = 1394; + this.state = 1406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1393; + this.state = 1405; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 29 || _la === 75)) { @@ -4977,14 +4985,14 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 1398; + this.state = 1410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1396; + this.state = 1408; this.match(TrinoSqlParser.KW_NULLS); - this.state = 1397; + this.state = 1409; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 148)) { @@ -5020,135 +5028,160 @@ export class TrinoSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1400; + this.state = 1412; this.match(TrinoSqlParser.KW_SELECT); - this.state = 1402; + this.state = 1414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 1401; + this.state = 1413; this.setQuantifier(); } break; } - this.state = 1404; - this.selectItem(); - this.state = 1409; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 1405; - this.match(TrinoSqlParser.T__2); - this.state = 1406; - this.selectItem(); - } - } - } - this.state = 1411; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); - } - this.state = 1421; + this.state = 1416; + this.selectList(); + this.state = 1426; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { - this.state = 1412; + this.state = 1417; this.match(TrinoSqlParser.KW_FROM); - this.state = 1413; - this.relation(0); this.state = 1418; + this.relation(0); + this.state = 1423; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1414; + this.state = 1419; this.match(TrinoSqlParser.T__2); - this.state = 1415; + this.state = 1420; this.relation(0); } } } - this.state = 1420; + this.state = 1425; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 157, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); } } break; } - this.state = 1425; + this.state = 1430; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 1423; + this.state = 1428; this.match(TrinoSqlParser.KW_WHERE); - this.state = 1424; + this.state = 1429; localContext._where = this.booleanExpression(0); } break; } - this.state = 1430; + this.state = 1435; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1427; + this.state = 1432; this.match(TrinoSqlParser.KW_GROUP); - this.state = 1428; + this.state = 1433; this.match(TrinoSqlParser.KW_BY); - this.state = 1429; + this.state = 1434; this.groupBy(); } break; } - this.state = 1434; + this.state = 1439; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1432; + this.state = 1437; this.match(TrinoSqlParser.KW_HAVING); - this.state = 1433; + this.state = 1438; localContext._having = this.booleanExpression(0); } break; } - this.state = 1445; + this.state = 1450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 1436; + this.state = 1441; this.match(TrinoSqlParser.KW_WINDOW); - this.state = 1437; - this.windowDefinition(); this.state = 1442; + this.windowDefinition(); + this.state = 1447; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1438; + this.state = 1443; this.match(TrinoSqlParser.T__2); - this.state = 1439; + this.state = 1444; this.windowDefinition(); } } } - this.state = 1444; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 162, this.context); - } + this.state = 1449; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, 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 selectList(): SelectListContext { + let localContext = new SelectListContext(this.context, this.state); + this.enterRule(localContext, 54, TrinoSqlParser.RULE_selectList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 1452; + this.selectItem(); + this.state = 1457; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 1453; + this.match(TrinoSqlParser.T__2); + this.state = 1454; + this.selectItem(); + } + } } - break; + this.state = 1459; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); } } } @@ -5168,38 +5201,38 @@ export class TrinoSqlParser extends SQLParserBase { } public groupBy(): GroupByContext { let localContext = new GroupByContext(this.context, this.state); - this.enterRule(localContext, 54, TrinoSqlParser.RULE_groupBy); + this.enterRule(localContext, 56, TrinoSqlParser.RULE_groupBy); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 1447; + this.state = 1460; this.setQuantifier(); } break; } - this.state = 1450; + this.state = 1463; this.groupingElement(); - this.state = 1455; + this.state = 1468; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1451; + this.state = 1464; this.match(TrinoSqlParser.T__2); - this.state = 1452; + this.state = 1465; this.groupingElement(); } } } - this.state = 1457; + this.state = 1470; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); } @@ -5221,17 +5254,17 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingElement(): GroupingElementContext { let localContext = new GroupingElementContext(this.context, this.state); - this.enterRule(localContext, 56, TrinoSqlParser.RULE_groupingElement); + this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupingElement); let _la: number; try { - this.state = 1498; + this.state = 1511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1458; + this.state = 1471; this.groupingSet(); } break; @@ -5239,37 +5272,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollupContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1459; + this.state = 1472; this.match(TrinoSqlParser.KW_ROLLUP); - this.state = 1460; + this.state = 1473; this.match(TrinoSqlParser.T__0); - this.state = 1469; + this.state = 1482; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: { - this.state = 1461; + this.state = 1474; this.groupingSet(); - this.state = 1466; + this.state = 1479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1462; + this.state = 1475; this.match(TrinoSqlParser.T__2); - this.state = 1463; + this.state = 1476; this.groupingSet(); } } - this.state = 1468; + this.state = 1481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1471; + this.state = 1484; this.match(TrinoSqlParser.T__1); } break; @@ -5277,37 +5310,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CubeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1472; + this.state = 1485; this.match(TrinoSqlParser.KW_CUBE); - this.state = 1473; + this.state = 1486; this.match(TrinoSqlParser.T__0); - this.state = 1482; + this.state = 1495; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { - this.state = 1474; + this.state = 1487; this.groupingSet(); - this.state = 1479; + this.state = 1492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1475; + this.state = 1488; this.match(TrinoSqlParser.T__2); - this.state = 1476; + this.state = 1489; this.groupingSet(); } } - this.state = 1481; + this.state = 1494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1484; + this.state = 1497; this.match(TrinoSqlParser.T__1); } break; @@ -5315,31 +5348,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MultipleGroupingSetsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1485; + this.state = 1498; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 1486; + this.state = 1499; this.match(TrinoSqlParser.KW_SETS); - this.state = 1487; + this.state = 1500; this.match(TrinoSqlParser.T__0); - this.state = 1488; + this.state = 1501; this.groupingSet(); - this.state = 1493; + this.state = 1506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1489; + this.state = 1502; this.match(TrinoSqlParser.T__2); - this.state = 1490; + this.state = 1503; this.groupingSet(); } } - this.state = 1495; + this.state = 1508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1496; + this.state = 1509; this.match(TrinoSqlParser.T__1); } break; @@ -5361,51 +5394,51 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingSet(): GroupingSetContext { let localContext = new GroupingSetContext(this.context, this.state); - this.enterRule(localContext, 58, TrinoSqlParser.RULE_groupingSet); + this.enterRule(localContext, 60, TrinoSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1513; + this.state = 1526; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1500; + this.state = 1513; this.match(TrinoSqlParser.T__0); - this.state = 1509; + this.state = 1522; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 173, this.context) ) { case 1: { - this.state = 1501; + this.state = 1514; this.groupingTerm(); - this.state = 1506; + this.state = 1519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1502; + this.state = 1515; this.match(TrinoSqlParser.T__2); - this.state = 1503; + this.state = 1516; this.groupingTerm(); } } - this.state = 1508; + this.state = 1521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1511; + this.state = 1524; this.match(TrinoSqlParser.T__1); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1512; + this.state = 1525; this.groupingTerm(); } break; @@ -5427,22 +5460,22 @@ export class TrinoSqlParser extends SQLParserBase { } public groupingTerm(): GroupingTermContext { let localContext = new GroupingTermContext(this.context, this.state); - this.enterRule(localContext, 60, TrinoSqlParser.RULE_groupingTerm); + this.enterRule(localContext, 62, TrinoSqlParser.RULE_groupingTerm); try { - this.state = 1517; + this.state = 1530; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1528; this.columnRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1516; + this.state = 1529; this.expression(); } break; @@ -5464,19 +5497,19 @@ export class TrinoSqlParser extends SQLParserBase { } public windowDefinition(): WindowDefinitionContext { let localContext = new WindowDefinitionContext(this.context, this.state); - this.enterRule(localContext, 62, TrinoSqlParser.RULE_windowDefinition); + this.enterRule(localContext, 64, TrinoSqlParser.RULE_windowDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1519; + this.state = 1532; localContext._name = this.identifier(); - this.state = 1520; + this.state = 1533; this.match(TrinoSqlParser.KW_AS); - this.state = 1521; + this.state = 1534; this.match(TrinoSqlParser.T__0); - this.state = 1522; + this.state = 1535; this.windowSpecification(); - this.state = 1523; + this.state = 1536; this.match(TrinoSqlParser.T__1); } } @@ -5496,89 +5529,89 @@ export class TrinoSqlParser extends SQLParserBase { } public windowSpecification(): WindowSpecificationContext { let localContext = new WindowSpecificationContext(this.context, this.state); - this.enterRule(localContext, 64, TrinoSqlParser.RULE_windowSpecification); + this.enterRule(localContext, 66, TrinoSqlParser.RULE_windowSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1526; + this.state = 1539; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: { - this.state = 1525; + this.state = 1538; localContext._existingWindowName = this.identifier(); } break; } - this.state = 1538; + this.state = 1551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1528; + this.state = 1541; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1529; + this.state = 1542; this.match(TrinoSqlParser.KW_BY); - this.state = 1530; + this.state = 1543; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 1535; + this.state = 1548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1531; + this.state = 1544; this.match(TrinoSqlParser.T__2); - this.state = 1532; + this.state = 1545; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 1537; + this.state = 1550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1550; + this.state = 1563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1540; + this.state = 1553; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1541; + this.state = 1554; this.match(TrinoSqlParser.KW_BY); - this.state = 1542; + this.state = 1555; this.sortItem(); - this.state = 1547; + this.state = 1560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1543; + this.state = 1556; this.match(TrinoSqlParser.T__2); - this.state = 1544; + this.state = 1557; this.sortItem(); } } - this.state = 1549; + this.state = 1562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1553; + this.state = 1566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116 || _la === 168 || _la === 219 || _la === 240) { { - this.state = 1552; + this.state = 1565; this.windowFrame(); } } @@ -5601,30 +5634,30 @@ export class TrinoSqlParser extends SQLParserBase { } public namedQuery(): NamedQueryContext { let localContext = new NamedQueryContext(this.context, this.state); - this.enterRule(localContext, 66, TrinoSqlParser.RULE_namedQuery); + this.enterRule(localContext, 68, TrinoSqlParser.RULE_namedQuery); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1555; + this.state = 1568; localContext._name = this.identifier(); - this.state = 1557; + this.state = 1570; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 1556; + this.state = 1569; this.columnAliases(); } } - this.state = 1559; + this.state = 1572; this.match(TrinoSqlParser.KW_AS); - this.state = 1560; + this.state = 1573; this.match(TrinoSqlParser.T__0); - this.state = 1561; + this.state = 1574; this.query(); - this.state = 1562; + this.state = 1575; this.match(TrinoSqlParser.T__1); } } @@ -5644,12 +5677,12 @@ export class TrinoSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 68, TrinoSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 70, TrinoSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1564; + this.state = 1577; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 79)) { this.errorHandler.recoverInline(this); @@ -5676,72 +5709,66 @@ export class TrinoSqlParser extends SQLParserBase { } public selectItem(): SelectItemContext { let localContext = new SelectItemContext(this.context, this.state); - this.enterRule(localContext, 70, TrinoSqlParser.RULE_selectItem); + this.enterRule(localContext, 72, TrinoSqlParser.RULE_selectItem); let _la: number; try { - this.state = 1584; + this.state = 1595; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: - localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1568; + this.state = 1581; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1566; - this.columnRef(); + this.state = 1579; + this.selectLiteralColumnName(); } break; case 2: { - this.state = 1567; - this.expression(); + this.state = 1580; + this.selectExpressionColumnName(); } break; } - this.state = 1574; + this.state = 1587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1571; + this.state = 1584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1570; + this.state = 1583; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1573; - (localContext as SelectSingleContext)._alias = this.identifier(); + this.state = 1586; + localContext._alias = this.identifier(); } break; } } break; case 2: - localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1576; - this.primaryExpression(0); - this.state = 1577; - this.match(TrinoSqlParser.T__3); - this.state = 1578; - this.match(TrinoSqlParser.ASTERISK); - this.state = 1581; + this.state = 1589; + this.tableAllColumns(); + this.state = 1592; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1579; + this.state = 1590; this.match(TrinoSqlParser.KW_AS); - this.state = 1580; + this.state = 1591; this.columnAliases(); } break; @@ -5749,11 +5776,10 @@ export class TrinoSqlParser extends SQLParserBase { } break; case 3: - localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1583; - this.match(TrinoSqlParser.ASTERISK); + this.state = 1594; + this.selectAllWithoutTable(); } break; } @@ -5772,6 +5798,106 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public selectAllWithoutTable(): SelectAllWithoutTableContext { + let localContext = new SelectAllWithoutTableContext(this.context, this.state); + this.enterRule(localContext, 74, TrinoSqlParser.RULE_selectAllWithoutTable); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1597; + this.match(TrinoSqlParser.ASTERISK); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableAllColumns(): TableAllColumnsContext { + let localContext = new TableAllColumnsContext(this.context, this.state); + this.enterRule(localContext, 76, TrinoSqlParser.RULE_tableAllColumns); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1599; + this.primaryExpression(0); + this.state = 1600; + this.match(TrinoSqlParser.T__3); + this.state = 1601; + this.match(TrinoSqlParser.ASTERISK); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + let localContext = new SelectLiteralColumnNameContext(this.context, this.state); + this.enterRule(localContext, 78, TrinoSqlParser.RULE_selectLiteralColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1603; + this.columnRef(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + let localContext = new SelectExpressionColumnNameContext(this.context, this.state); + this.enterRule(localContext, 80, TrinoSqlParser.RULE_selectExpressionColumnName); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1605; + this.expression(); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public relation(): RelationContext; public relation(_p: number): RelationContext; @@ -5784,8 +5910,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RelationContext(this.context, parentState); let previousContext = localContext; - let _startState = 72; - this.enterRecursionRule(localContext, 72, TrinoSqlParser.RULE_relation, _p); + let _startState = 82; + this.enterRecursionRule(localContext, 82, TrinoSqlParser.RULE_relation, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -5795,11 +5921,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1587; + this.state = 1608; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1607; + this.state = 1628; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5813,20 +5939,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_relation); - this.state = 1589; + this.state = 1610; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1603; + this.state = 1624; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_CROSS: { - this.state = 1590; + this.state = 1611; this.match(TrinoSqlParser.KW_CROSS); - this.state = 1591; + this.state = 1612; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1592; + this.state = 1613; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5836,25 +5962,25 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: case TrinoSqlParser.KW_RIGHT: { - this.state = 1593; + this.state = 1614; this.joinType(); - this.state = 1594; + this.state = 1615; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1595; + this.state = 1616; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 1596; + this.state = 1617; this.joinCriteria(); } break; case TrinoSqlParser.KW_NATURAL: { - this.state = 1598; + this.state = 1619; this.match(TrinoSqlParser.KW_NATURAL); - this.state = 1599; + this.state = 1620; this.joinType(); - this.state = 1600; + this.state = 1621; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1601; + this.state = 1622; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -5864,7 +5990,7 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 1609; + this.state = 1630; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); } @@ -5886,22 +6012,22 @@ export class TrinoSqlParser extends SQLParserBase { } public joinType(): JoinTypeContext { let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 74, TrinoSqlParser.RULE_joinType); + this.enterRule(localContext, 84, TrinoSqlParser.RULE_joinType); let _la: number; try { - this.state = 1625; + this.state = 1646; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 1611; + this.state = 1632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 1610; + this.state = 1631; this.match(TrinoSqlParser.KW_INNER); } } @@ -5911,14 +6037,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: this.enterOuterAlt(localContext, 2); { - this.state = 1613; + this.state = 1634; this.match(TrinoSqlParser.KW_LEFT); - this.state = 1615; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1614; + this.state = 1635; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5928,14 +6054,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 3); { - this.state = 1617; + this.state = 1638; this.match(TrinoSqlParser.KW_RIGHT); - this.state = 1619; + this.state = 1640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1618; + this.state = 1639; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5945,14 +6071,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FULL: this.enterOuterAlt(localContext, 4); { - this.state = 1621; + this.state = 1642; this.match(TrinoSqlParser.KW_FULL); - this.state = 1623; + this.state = 1644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 1622; + this.state = 1643; this.match(TrinoSqlParser.KW_OUTER); } } @@ -5979,47 +6105,47 @@ export class TrinoSqlParser extends SQLParserBase { } public joinCriteria(): JoinCriteriaContext { let localContext = new JoinCriteriaContext(this.context, this.state); - this.enterRule(localContext, 76, TrinoSqlParser.RULE_joinCriteria); + this.enterRule(localContext, 86, TrinoSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 1641; + this.state = 1662; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1627; + this.state = 1648; this.match(TrinoSqlParser.KW_ON); - this.state = 1628; + this.state = 1649; this.booleanExpression(0); } break; case TrinoSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1629; + this.state = 1650; this.match(TrinoSqlParser.KW_USING); - this.state = 1630; + this.state = 1651; this.match(TrinoSqlParser.T__0); - this.state = 1631; + this.state = 1652; this.identifier(); - this.state = 1636; + this.state = 1657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1632; + this.state = 1653; this.match(TrinoSqlParser.T__2); - this.state = 1633; + this.state = 1654; this.identifier(); } } - this.state = 1638; + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1639; + this.state = 1660; this.match(TrinoSqlParser.T__1); } break; @@ -6043,26 +6169,26 @@ export class TrinoSqlParser extends SQLParserBase { } public sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 78, TrinoSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 88, TrinoSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 1643; + this.state = 1664; this.patternRecognition(); - this.state = 1650; + this.state = 1671; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: { - this.state = 1644; + this.state = 1665; this.match(TrinoSqlParser.KW_TABLESAMPLE); - this.state = 1645; + this.state = 1666; this.sampleType(); - this.state = 1646; + this.state = 1667; this.match(TrinoSqlParser.T__0); - this.state = 1647; + this.state = 1668; localContext._percentage = this.expression(); - this.state = 1648; + this.state = 1669; this.match(TrinoSqlParser.T__1); } break; @@ -6085,12 +6211,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 80, TrinoSqlParser.RULE_sampleType); + this.enterRule(localContext, 90, TrinoSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1652; + this.state = 1673; _la = this.tokenStream.LA(1); if(!(_la === 33 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -6117,12 +6243,12 @@ export class TrinoSqlParser extends SQLParserBase { } public trimsSpecification(): TrimsSpecificationContext { let localContext = new TrimsSpecificationContext(this.context, this.state); - this.enterRule(localContext, 82, TrinoSqlParser.RULE_trimsSpecification); + this.enterRule(localContext, 92, TrinoSqlParser.RULE_trimsSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1675; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 150 || _la === 270)) { this.errorHandler.recoverInline(this); @@ -6149,35 +6275,35 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggOverflowBehavior(): ListAggOverflowBehaviorContext { let localContext = new ListAggOverflowBehaviorContext(this.context, this.state); - this.enterRule(localContext, 84, TrinoSqlParser.RULE_listAggOverflowBehavior); + this.enterRule(localContext, 94, TrinoSqlParser.RULE_listAggOverflowBehavior); let _la: number; try { - this.state = 1662; + this.state = 1683; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 1656; + this.state = 1677; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 2); { - this.state = 1657; + this.state = 1678; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 1659; + this.state = 1680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326 || _la === 327) { { - this.state = 1658; + this.state = 1679; this.string_(); } } - this.state = 1661; + this.state = 1682; this.listaggCountIndication(); } break; @@ -6201,26 +6327,26 @@ export class TrinoSqlParser extends SQLParserBase { } public listaggCountIndication(): ListaggCountIndicationContext { let localContext = new ListaggCountIndicationContext(this.context, this.state); - this.enterRule(localContext, 86, TrinoSqlParser.RULE_listaggCountIndication); + this.enterRule(localContext, 96, TrinoSqlParser.RULE_listaggCountIndication); try { - this.state = 1668; + this.state = 1689; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 1664; + this.state = 1685; this.match(TrinoSqlParser.KW_WITH); - this.state = 1665; + this.state = 1686; this.match(TrinoSqlParser.KW_COUNT); } break; case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 2); { - this.state = 1666; + this.state = 1687; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 1667; + this.state = 1688; this.match(TrinoSqlParser.KW_COUNT); } break; @@ -6244,142 +6370,142 @@ export class TrinoSqlParser extends SQLParserBase { } public patternRecognition(): PatternRecognitionContext { let localContext = new PatternRecognitionContext(this.context, this.state); - this.enterRule(localContext, 88, TrinoSqlParser.RULE_patternRecognition); + this.enterRule(localContext, 98, TrinoSqlParser.RULE_patternRecognition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1670; + this.state = 1691; this.aliasedRelation(); - this.state = 1753; + this.state = 1774; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1671; + this.state = 1692; this.match(TrinoSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1672; + this.state = 1693; this.match(TrinoSqlParser.T__0); - this.state = 1683; + this.state = 1704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 1673; + this.state = 1694; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1674; + this.state = 1695; this.match(TrinoSqlParser.KW_BY); - this.state = 1675; + this.state = 1696; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 1680; + this.state = 1701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1676; + this.state = 1697; this.match(TrinoSqlParser.T__2); - this.state = 1677; + this.state = 1698; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 1682; + this.state = 1703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1695; + this.state = 1716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1685; + this.state = 1706; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1686; + this.state = 1707; this.match(TrinoSqlParser.KW_BY); - this.state = 1687; + this.state = 1708; this.sortItem(); - this.state = 1692; + this.state = 1713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1688; + this.state = 1709; this.match(TrinoSqlParser.T__2); - this.state = 1689; + this.state = 1710; this.sortItem(); } } - this.state = 1694; + this.state = 1715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1706; + this.state = 1727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 1697; + this.state = 1718; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 1698; + this.state = 1719; this.measureDefinition(); - this.state = 1703; + this.state = 1724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1699; + this.state = 1720; this.match(TrinoSqlParser.T__2); - this.state = 1700; + this.state = 1721; this.measureDefinition(); } } - this.state = 1705; + this.state = 1726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1709; + this.state = 1730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 191) { { - this.state = 1708; + this.state = 1729; this.rowsPerMatch(); } } - this.state = 1714; + this.state = 1735; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1711; + this.state = 1732; this.match(TrinoSqlParser.KW_AFTER); - this.state = 1712; + this.state = 1733; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1713; + this.state = 1734; this.skipTo(); } } - this.state = 1717; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 1716; + this.state = 1737; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -6391,87 +6517,87 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1719; + this.state = 1740; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 1720; + this.state = 1741; this.match(TrinoSqlParser.T__0); - this.state = 1721; + this.state = 1742; this.rowPattern(0); - this.state = 1722; + this.state = 1743; this.match(TrinoSqlParser.T__1); - this.state = 1732; + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 1723; + this.state = 1744; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 1724; + this.state = 1745; this.subsetDefinition(); - this.state = 1729; + this.state = 1750; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1725; + this.state = 1746; this.match(TrinoSqlParser.T__2); - this.state = 1726; + this.state = 1747; this.subsetDefinition(); } } - this.state = 1731; + this.state = 1752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1734; + this.state = 1755; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 1735; + this.state = 1756; this.variableDefinition(); - this.state = 1740; + this.state = 1761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1736; + this.state = 1757; this.match(TrinoSqlParser.T__2); - this.state = 1737; + this.state = 1758; this.variableDefinition(); } } - this.state = 1742; + this.state = 1763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1743; + this.state = 1764; this.match(TrinoSqlParser.T__1); - this.state = 1751; + this.state = 1772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1745; + this.state = 1766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1744; + this.state = 1765; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1747; + this.state = 1768; this.identifier(); - this.state = 1749; + this.state = 1770; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { - this.state = 1748; + this.state = 1769; this.columnAliases(); } break; @@ -6500,15 +6626,15 @@ export class TrinoSqlParser extends SQLParserBase { } public measureDefinition(): MeasureDefinitionContext { let localContext = new MeasureDefinitionContext(this.context, this.state); - this.enterRule(localContext, 90, TrinoSqlParser.RULE_measureDefinition); + this.enterRule(localContext, 100, TrinoSqlParser.RULE_measureDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1755; + this.state = 1776; this.expression(); - this.state = 1756; + this.state = 1777; this.match(TrinoSqlParser.KW_AS); - this.state = 1757; + this.state = 1778; this.identifier(); } } @@ -6528,42 +6654,42 @@ export class TrinoSqlParser extends SQLParserBase { } public rowsPerMatch(): RowsPerMatchContext { let localContext = new RowsPerMatchContext(this.context, this.state); - this.enterRule(localContext, 92, TrinoSqlParser.RULE_rowsPerMatch); + this.enterRule(localContext, 102, TrinoSqlParser.RULE_rowsPerMatch); let _la: number; try { - this.state = 1770; + this.state = 1791; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONE: this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1780; this.match(TrinoSqlParser.KW_ONE); - this.state = 1760; + this.state = 1781; this.match(TrinoSqlParser.KW_ROW); - this.state = 1761; + this.state = 1782; this.match(TrinoSqlParser.KW_PER); - this.state = 1762; + this.state = 1783; this.match(TrinoSqlParser.KW_MATCH); } break; case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 2); { - this.state = 1763; + this.state = 1784; this.match(TrinoSqlParser.KW_ALL); - this.state = 1764; + this.state = 1785; this.match(TrinoSqlParser.KW_ROWS); - this.state = 1765; + this.state = 1786; this.match(TrinoSqlParser.KW_PER); - this.state = 1766; + this.state = 1787; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1768; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189 || _la === 253 || _la === 304) { { - this.state = 1767; + this.state = 1788; this.emptyMatchHandling(); } } @@ -6590,41 +6716,41 @@ export class TrinoSqlParser extends SQLParserBase { } public emptyMatchHandling(): EmptyMatchHandlingContext { let localContext = new EmptyMatchHandlingContext(this.context, this.state); - this.enterRule(localContext, 94, TrinoSqlParser.RULE_emptyMatchHandling); + this.enterRule(localContext, 104, TrinoSqlParser.RULE_emptyMatchHandling); try { - this.state = 1781; + this.state = 1802; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SHOW: this.enterOuterAlt(localContext, 1); { - this.state = 1772; + this.state = 1793; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1773; + this.state = 1794; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1774; + this.state = 1795; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_OMIT: this.enterOuterAlt(localContext, 2); { - this.state = 1775; + this.state = 1796; this.match(TrinoSqlParser.KW_OMIT); - this.state = 1776; + this.state = 1797; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1777; + this.state = 1798; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1778; + this.state = 1799; this.match(TrinoSqlParser.KW_WITH); - this.state = 1779; + this.state = 1800; this.match(TrinoSqlParser.KW_UNMATCHED); - this.state = 1780; + this.state = 1801; this.match(TrinoSqlParser.KW_ROWS); } break; @@ -6648,71 +6774,71 @@ export class TrinoSqlParser extends SQLParserBase { } public skipTo(): SkipToContext { let localContext = new SkipToContext(this.context, this.state); - this.enterRule(localContext, 96, TrinoSqlParser.RULE_skipTo); + this.enterRule(localContext, 106, TrinoSqlParser.RULE_skipTo); try { - this.state = 1802; + this.state = 1823; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1783; + this.state = 1804; this.match(TrinoSqlParser.T__4); - this.state = 1784; + this.state = 1805; this.match(TrinoSqlParser.KW_TO); - this.state = 1785; + this.state = 1806; this.match(TrinoSqlParser.KW_NEXT); - this.state = 1786; + this.state = 1807; this.match(TrinoSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1787; + this.state = 1808; this.match(TrinoSqlParser.T__4); - this.state = 1788; + this.state = 1809; this.match(TrinoSqlParser.KW_PAST); - this.state = 1789; + this.state = 1810; this.match(TrinoSqlParser.KW_LAST); - this.state = 1790; + this.state = 1811; this.match(TrinoSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1791; + this.state = 1812; this.match(TrinoSqlParser.T__4); - this.state = 1792; + this.state = 1813; this.match(TrinoSqlParser.KW_TO); - this.state = 1793; + this.state = 1814; this.match(TrinoSqlParser.KW_FIRST); - this.state = 1794; + this.state = 1815; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1795; + this.state = 1816; this.match(TrinoSqlParser.T__4); - this.state = 1796; + this.state = 1817; this.match(TrinoSqlParser.KW_TO); - this.state = 1797; + this.state = 1818; this.match(TrinoSqlParser.KW_LAST); - this.state = 1798; + this.state = 1819; this.identifier(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1799; + this.state = 1820; this.match(TrinoSqlParser.T__4); - this.state = 1800; + this.state = 1821; this.match(TrinoSqlParser.KW_TO); - this.state = 1801; + this.state = 1822; this.identifier(); } break; @@ -6734,38 +6860,38 @@ export class TrinoSqlParser extends SQLParserBase { } public subsetDefinition(): SubsetDefinitionContext { let localContext = new SubsetDefinitionContext(this.context, this.state); - this.enterRule(localContext, 98, TrinoSqlParser.RULE_subsetDefinition); + this.enterRule(localContext, 108, TrinoSqlParser.RULE_subsetDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1804; + this.state = 1825; localContext._name = this.identifier(); - this.state = 1805; + this.state = 1826; this.match(TrinoSqlParser.EQ); - this.state = 1806; + this.state = 1827; this.match(TrinoSqlParser.T__0); - this.state = 1807; + this.state = 1828; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); - this.state = 1812; + this.state = 1833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1808; + this.state = 1829; this.match(TrinoSqlParser.T__2); - this.state = 1809; + this.state = 1830; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); } } - this.state = 1814; + this.state = 1835; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1815; + this.state = 1836; this.match(TrinoSqlParser.T__1); } } @@ -6785,15 +6911,15 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDefinition(): VariableDefinitionContext { let localContext = new VariableDefinitionContext(this.context, this.state); - this.enterRule(localContext, 100, TrinoSqlParser.RULE_variableDefinition); + this.enterRule(localContext, 110, TrinoSqlParser.RULE_variableDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1817; + this.state = 1838; this.identifier(); - this.state = 1818; + this.state = 1839; this.match(TrinoSqlParser.KW_AS); - this.state = 1819; + this.state = 1840; this.expression(); } } @@ -6813,36 +6939,36 @@ export class TrinoSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 102, TrinoSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 112, TrinoSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1821; + this.state = 1842; this.relationPrimary(); - this.state = 1829; + this.state = 1850; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 1823; + this.state = 1844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1822; + this.state = 1843; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1825; + this.state = 1846; localContext._alias = this.identifier(); - this.state = 1827; + this.state = 1848; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: { - this.state = 1826; + this.state = 1847; this.columnAliases(); } break; @@ -6868,32 +6994,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnListCreate(): ColumnListCreateContext { let localContext = new ColumnListCreateContext(this.context, this.state); - this.enterRule(localContext, 104, TrinoSqlParser.RULE_columnListCreate); + this.enterRule(localContext, 114, TrinoSqlParser.RULE_columnListCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1831; + this.state = 1852; this.match(TrinoSqlParser.T__0); - this.state = 1832; + this.state = 1853; this.columnNameCreate(); - this.state = 1837; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1833; + this.state = 1854; this.match(TrinoSqlParser.T__2); - this.state = 1834; + this.state = 1855; this.columnNameCreate(); } } - this.state = 1839; + this.state = 1860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1840; + this.state = 1861; this.match(TrinoSqlParser.T__1); } } @@ -6913,32 +7039,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnList(): ColumnListContext { let localContext = new ColumnListContext(this.context, this.state); - this.enterRule(localContext, 106, TrinoSqlParser.RULE_columnList); + this.enterRule(localContext, 116, TrinoSqlParser.RULE_columnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1842; + this.state = 1863; this.match(TrinoSqlParser.T__0); - this.state = 1843; + this.state = 1864; this.columnRef(); - this.state = 1848; + this.state = 1869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1844; + this.state = 1865; this.match(TrinoSqlParser.T__2); - this.state = 1845; + this.state = 1866; this.columnRef(); } } - this.state = 1850; + this.state = 1871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1851; + this.state = 1872; this.match(TrinoSqlParser.T__1); } } @@ -6958,32 +7084,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 108, TrinoSqlParser.RULE_columnAliases); + this.enterRule(localContext, 118, TrinoSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1874; this.match(TrinoSqlParser.T__0); - this.state = 1854; + this.state = 1875; this.identifier(); - this.state = 1859; + this.state = 1880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1855; + this.state = 1876; this.match(TrinoSqlParser.T__2); - this.state = 1856; + this.state = 1877; this.identifier(); } } - this.state = 1861; + this.state = 1882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1862; + this.state = 1883; this.match(TrinoSqlParser.T__1); } } @@ -7003,24 +7129,23 @@ export class TrinoSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 110, TrinoSqlParser.RULE_relationPrimary); - let _la: number; + this.enterRule(localContext, 120, TrinoSqlParser.RULE_relationPrimary); try { - this.state = 1935; + this.state = 1894; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1864; + this.state = 1885; this.tableOrViewName(); - this.state = 1866; + this.state = 1887; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 1865; + this.state = 1886; this.queryPeriod(); } break; @@ -7028,169 +7153,201 @@ export class TrinoSqlParser extends SQLParserBase { } break; case 2: - localContext = new SubqueryRelationContext(localContext); + localContext = new ExpressionSourceTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1868; + this.state = 1889; + this.relationSourceTable(); + } + break; + case 3: + localContext = new ParenthesizedRelationContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 1890; + this.match(TrinoSqlParser.T__0); + this.state = 1891; + this.relation(0); + this.state = 1892; + this.match(TrinoSqlParser.T__1); + } + 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 relationSourceTable(): RelationSourceTableContext { + let localContext = new RelationSourceTableContext(this.context, this.state); + this.enterRule(localContext, 122, TrinoSqlParser.RULE_relationSourceTable); + let _la: number; + try { + this.state = 1959; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case TrinoSqlParser.T__0: + localContext = new SubqueryRelationContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 1896; this.match(TrinoSqlParser.T__0); - this.state = 1869; + this.state = 1897; this.query(); - this.state = 1870; + this.state = 1898; this.match(TrinoSqlParser.T__1); } break; - case 3: + case TrinoSqlParser.KW_UNNEST: localContext = new UnnestContext(localContext); - this.enterOuterAlt(localContext, 3); + this.enterOuterAlt(localContext, 2); { - this.state = 1872; + this.state = 1900; this.match(TrinoSqlParser.KW_UNNEST); - this.state = 1873; + this.state = 1901; this.match(TrinoSqlParser.T__0); - this.state = 1874; + this.state = 1902; this.expression(); - this.state = 1879; + this.state = 1907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1875; + this.state = 1903; this.match(TrinoSqlParser.T__2); - this.state = 1876; + this.state = 1904; this.expression(); } } - this.state = 1881; + this.state = 1909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1882; + this.state = 1910; this.match(TrinoSqlParser.T__1); - this.state = 1885; + this.state = 1913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 1883; + this.state = 1911; this.match(TrinoSqlParser.KW_WITH); - this.state = 1884; + this.state = 1912; this.match(TrinoSqlParser.KW_ORDINALITY); } break; } } break; - case 4: + case TrinoSqlParser.KW_LATERAL: localContext = new LateralContext(localContext); - this.enterOuterAlt(localContext, 4); + this.enterOuterAlt(localContext, 3); { - this.state = 1887; + this.state = 1915; this.match(TrinoSqlParser.KW_LATERAL); - this.state = 1888; + this.state = 1916; this.match(TrinoSqlParser.T__0); - this.state = 1889; + this.state = 1917; this.query(); - this.state = 1890; + this.state = 1918; this.match(TrinoSqlParser.T__1); } break; - case 5: + case TrinoSqlParser.KW_TABLE: localContext = new TableFunctionInvocationContext(localContext); - this.enterOuterAlt(localContext, 5); + this.enterOuterAlt(localContext, 4); { - this.state = 1892; + this.state = 1920; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1893; + this.state = 1921; this.match(TrinoSqlParser.T__0); - this.state = 1894; + this.state = 1922; this.tableFunctionCall(); - this.state = 1895; - this.match(TrinoSqlParser.T__1); - } - break; - case 6: - localContext = new ParenthesizedRelationContext(localContext); - this.enterOuterAlt(localContext, 6); - { - this.state = 1897; - this.match(TrinoSqlParser.T__0); - this.state = 1898; - this.relation(0); - this.state = 1899; + this.state = 1923; this.match(TrinoSqlParser.T__1); } break; - case 7: + case TrinoSqlParser.KW_JSON_TABLE: localContext = new JsonTableContext(localContext); - this.enterOuterAlt(localContext, 7); + this.enterOuterAlt(localContext, 5); { - this.state = 1901; + this.state = 1925; this.match(TrinoSqlParser.KW_JSON_TABLE); - this.state = 1902; + this.state = 1926; this.match(TrinoSqlParser.T__0); - this.state = 1903; + this.state = 1927; this.jsonPathInvocation(); - this.state = 1904; + this.state = 1928; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1905; + this.state = 1929; this.match(TrinoSqlParser.T__0); - this.state = 1906; + this.state = 1930; this.jsonTableColumn(); - this.state = 1911; + this.state = 1935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1907; + this.state = 1931; this.match(TrinoSqlParser.T__2); - this.state = 1908; + this.state = 1932; this.jsonTableColumn(); } } - this.state = 1913; + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1914; + this.state = 1938; this.match(TrinoSqlParser.T__1); - this.state = 1926; + this.state = 1950; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: { - this.state = 1915; + this.state = 1939; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1916; + this.state = 1940; this.match(TrinoSqlParser.T__0); - this.state = 1917; + this.state = 1941; this.jsonTableSpecificPlan(); - this.state = 1918; + this.state = 1942; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 1920; + this.state = 1944; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1921; + this.state = 1945; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 1922; + this.state = 1946; this.match(TrinoSqlParser.T__0); - this.state = 1923; + this.state = 1947; this.jsonTableDefaultPlan(); - this.state = 1924; + this.state = 1948; this.match(TrinoSqlParser.T__1); } break; } - this.state = 1931; + this.state = 1955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89) { { - this.state = 1928; + this.state = 1952; _la = this.tokenStream.LA(1); if(!(_la === 85 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -7199,17 +7356,19 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1929; + this.state = 1953; this.match(TrinoSqlParser.KW_ON); - this.state = 1930; + this.state = 1954; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 1933; + this.state = 1957; this.match(TrinoSqlParser.T__1); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -7228,21 +7387,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableColumn(): JsonTableColumnContext { let localContext = new JsonTableColumnContext(this.context, this.state); - this.enterRule(localContext, 112, TrinoSqlParser.RULE_jsonTableColumn); + this.enterRule(localContext, 124, TrinoSqlParser.RULE_jsonTableColumn); let _la: number; try { - this.state = 2014; + this.state = 2038; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: localContext = new OrdinalityColumnContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1937; + this.state = 1961; this.identifier(); - this.state = 1938; + this.state = 1962; this.match(TrinoSqlParser.KW_FOR); - this.state = 1939; + this.state = 1963; this.match(TrinoSqlParser.KW_ORDINALITY); } break; @@ -7250,46 +7409,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ValueColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1941; + this.state = 1965; this.identifier(); - this.state = 1942; + this.state = 1966; this.type_(0); - this.state = 1945; + this.state = 1969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1943; + this.state = 1967; this.match(TrinoSqlParser.KW_PATH); - this.state = 1944; + this.state = 1968; this.string_(); } } - this.state = 1951; + this.state = 1975; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 1947; + this.state = 1971; (localContext as ValueColumnContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 1948; + this.state = 1972; this.match(TrinoSqlParser.KW_ON); - this.state = 1949; + this.state = 1973; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1957; + this.state = 1981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 1953; + this.state = 1977; (localContext as ValueColumnContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 1954; + this.state = 1978; this.match(TrinoSqlParser.KW_ON); - this.state = 1955; + this.state = 1979; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7300,44 +7459,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryColumnContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1959; + this.state = 1983; this.identifier(); - this.state = 1960; + this.state = 1984; this.type_(0); - this.state = 1961; + this.state = 1985; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 1962; + this.state = 1986; this.jsonRepresentation(); - this.state = 1965; + this.state = 1989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1963; + this.state = 1987; this.match(TrinoSqlParser.KW_PATH); - this.state = 1964; + this.state = 1988; this.string_(); } } - this.state = 1970; + this.state = 1994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 1967; + this.state = 1991; this.jsonQueryWrapperBehavior(); - this.state = 1968; + this.state = 1992; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 1979; + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 1972; + this.state = 1996; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -7346,18 +7505,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1973; + this.state = 1997; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 1977; + this.state = 2001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 1974; + this.state = 1998; this.match(TrinoSqlParser.KW_ON); - this.state = 1975; + this.state = 1999; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 1976; + this.state = 2000; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -7365,30 +7524,30 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1985; + this.state = 2009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 1981; + this.state = 2005; (localContext as QueryColumnContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 1982; + this.state = 2006; this.match(TrinoSqlParser.KW_ON); - this.state = 1983; + this.state = 2007; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1991; + this.state = 2015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 1987; + this.state = 2011; (localContext as QueryColumnContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 1988; + this.state = 2012; this.match(TrinoSqlParser.KW_ON); - this.state = 1989; + this.state = 2013; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7399,55 +7558,55 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NestedColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1993; + this.state = 2017; this.match(TrinoSqlParser.KW_NESTED); - this.state = 1995; + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1994; + this.state = 2018; this.match(TrinoSqlParser.KW_PATH); } } - this.state = 1997; + this.state = 2021; this.string_(); - this.state = 2000; + this.state = 2024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1998; + this.state = 2022; this.match(TrinoSqlParser.KW_AS); - this.state = 1999; + this.state = 2023; this.identifier(); } } - this.state = 2002; + this.state = 2026; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 2003; + this.state = 2027; this.match(TrinoSqlParser.T__0); - this.state = 2004; + this.state = 2028; this.jsonTableColumn(); - this.state = 2009; + this.state = 2033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2005; + this.state = 2029; this.match(TrinoSqlParser.T__2); - this.state = 2006; + this.state = 2030; this.jsonTableColumn(); } } - this.state = 2011; + this.state = 2035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2012; + this.state = 2036; this.match(TrinoSqlParser.T__1); } break; @@ -7469,17 +7628,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableSpecificPlan(): JsonTableSpecificPlanContext { let localContext = new JsonTableSpecificPlanContext(this.context, this.state); - this.enterRule(localContext, 114, TrinoSqlParser.RULE_jsonTableSpecificPlan); + this.enterRule(localContext, 126, TrinoSqlParser.RULE_jsonTableSpecificPlan); let _la: number; try { - this.state = 2041; + this.state = 2065; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: localContext = new LeafPlanContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2016; + this.state = 2040; this.jsonTablePathName(); } break; @@ -7487,9 +7646,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinPlanContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2017; + this.state = 2041; this.jsonTablePathName(); - this.state = 2018; + this.state = 2042; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7498,7 +7657,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2019; + this.state = 2043; this.planPrimary(); } break; @@ -7506,25 +7665,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnionPlanContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2021; + this.state = 2045; this.planPrimary(); - this.state = 2022; + this.state = 2046; this.match(TrinoSqlParser.KW_UNION); - this.state = 2023; + this.state = 2047; this.planPrimary(); - this.state = 2028; + this.state = 2052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 281) { { { - this.state = 2024; + this.state = 2048; this.match(TrinoSqlParser.KW_UNION); - this.state = 2025; + this.state = 2049; this.planPrimary(); } } - this.state = 2030; + this.state = 2054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7534,25 +7693,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CrossPlanContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2031; + this.state = 2055; this.planPrimary(); - this.state = 2032; + this.state = 2056; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2033; + this.state = 2057; this.planPrimary(); - this.state = 2038; + this.state = 2062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 2034; + this.state = 2058; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2035; + this.state = 2059; this.planPrimary(); } } - this.state = 2040; + this.state = 2064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7576,11 +7735,11 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTablePathName(): JsonTablePathNameContext { let localContext = new JsonTablePathNameContext(this.context, this.state); - this.enterRule(localContext, 116, TrinoSqlParser.RULE_jsonTablePathName); + this.enterRule(localContext, 128, TrinoSqlParser.RULE_jsonTablePathName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2043; + this.state = 2067; this.identifier(); } } @@ -7600,9 +7759,9 @@ export class TrinoSqlParser extends SQLParserBase { } public planPrimary(): PlanPrimaryContext { let localContext = new PlanPrimaryContext(this.context, this.state); - this.enterRule(localContext, 118, TrinoSqlParser.RULE_planPrimary); + this.enterRule(localContext, 130, TrinoSqlParser.RULE_planPrimary); try { - this.state = 2050; + this.state = 2074; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -7824,18 +7983,18 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2069; this.jsonTablePathName(); } break; case TrinoSqlParser.T__0: this.enterOuterAlt(localContext, 2); { - this.state = 2046; + this.state = 2070; this.match(TrinoSqlParser.T__0); - this.state = 2047; + this.state = 2071; this.jsonTableSpecificPlan(); - this.state = 2048; + this.state = 2072; this.match(TrinoSqlParser.T__1); } break; @@ -7859,17 +8018,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableDefaultPlan(): JsonTableDefaultPlanContext { let localContext = new JsonTableDefaultPlanContext(this.context, this.state); - this.enterRule(localContext, 120, TrinoSqlParser.RULE_jsonTableDefaultPlan); + this.enterRule(localContext, 132, TrinoSqlParser.RULE_jsonTableDefaultPlan); let _la: number; try { - this.state = 2062; + this.state = 2086; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_OUTER: this.enterOuterAlt(localContext, 1); { - this.state = 2052; + this.state = 2076; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7878,14 +8037,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2055; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2053; + this.state = 2077; this.match(TrinoSqlParser.T__2); - this.state = 2054; + this.state = 2078; _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -7903,7 +8062,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_UNION: this.enterOuterAlt(localContext, 2); { - this.state = 2057; + this.state = 2081; _la = this.tokenStream.LA(1); if(!(_la === 54 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -7912,14 +8071,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2060; + this.state = 2084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2058; + this.state = 2082; this.match(TrinoSqlParser.T__2); - this.state = 2059; + this.state = 2083; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 197)) { this.errorHandler.recoverInline(this); @@ -7953,70 +8112,70 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionCall(): TableFunctionCallContext { let localContext = new TableFunctionCallContext(this.context, this.state); - this.enterRule(localContext, 122, TrinoSqlParser.RULE_tableFunctionCall); + this.enterRule(localContext, 134, TrinoSqlParser.RULE_tableFunctionCall); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2088; this.functionName(); - this.state = 2065; + this.state = 2089; this.match(TrinoSqlParser.T__0); - this.state = 2074; + this.state = 2098; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2066; + this.state = 2090; this.tableFunctionArgument(); - this.state = 2071; + this.state = 2095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2067; + this.state = 2091; this.match(TrinoSqlParser.T__2); - this.state = 2068; + this.state = 2092; this.tableFunctionArgument(); } } - this.state = 2073; + this.state = 2097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2085; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 52) { { - this.state = 2076; + this.state = 2100; this.match(TrinoSqlParser.KW_COPARTITION); - this.state = 2077; + this.state = 2101; this.copartitionTables(); - this.state = 2082; + this.state = 2106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2078; + this.state = 2102; this.match(TrinoSqlParser.T__2); - this.state = 2079; + this.state = 2103; this.copartitionTables(); } } - this.state = 2084; + this.state = 2108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2087; + this.state = 2111; this.match(TrinoSqlParser.T__1); } } @@ -8036,40 +8195,40 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionArgument(): TableFunctionArgumentContext { let localContext = new TableFunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 124, TrinoSqlParser.RULE_tableFunctionArgument); + this.enterRule(localContext, 136, TrinoSqlParser.RULE_tableFunctionArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2092; + this.state = 2116; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { case 1: { - this.state = 2089; + this.state = 2113; this.identifier(); - this.state = 2090; + this.state = 2114; this.match(TrinoSqlParser.T__5); } break; } - this.state = 2097; + this.state = 2121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2094; + this.state = 2118; this.tableArgument(); } break; case 2: { - this.state = 2095; + this.state = 2119; this.descriptorArgument(); } break; case 3: { - this.state = 2096; + this.state = 2120; this.expression(); } break; @@ -8092,62 +8251,62 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgument(): TableArgumentContext { let localContext = new TableArgumentContext(this.context, this.state); - this.enterRule(localContext, 126, TrinoSqlParser.RULE_tableArgument); + this.enterRule(localContext, 138, TrinoSqlParser.RULE_tableArgument); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2099; + this.state = 2123; this.tableArgumentRelation(); - this.state = 2117; + this.state = 2141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 201) { { - this.state = 2100; + this.state = 2124; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 2101; + this.state = 2125; this.match(TrinoSqlParser.KW_BY); - this.state = 2115; + this.state = 2139; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 263, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2102; + this.state = 2126; this.match(TrinoSqlParser.T__0); - this.state = 2111; + this.state = 2135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2103; + this.state = 2127; this.expression(); - this.state = 2108; + this.state = 2132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2104; + this.state = 2128; this.match(TrinoSqlParser.T__2); - this.state = 2105; + this.state = 2129; this.expression(); } } - this.state = 2110; + this.state = 2134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2113; + this.state = 2137; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2114; + this.state = 2138; this.expression(); } break; @@ -8155,26 +8314,26 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2125; + this.state = 2149; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_PRUNE: { - this.state = 2119; + this.state = 2143; this.match(TrinoSqlParser.KW_PRUNE); - this.state = 2120; + this.state = 2144; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2121; + this.state = 2145; this.match(TrinoSqlParser.KW_EMPTY); } break; case TrinoSqlParser.KW_KEEP: { - this.state = 2122; + this.state = 2146; this.match(TrinoSqlParser.KW_KEEP); - this.state = 2123; + this.state = 2147; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2124; + this.state = 2148; this.match(TrinoSqlParser.KW_EMPTY); } break; @@ -8186,47 +8345,47 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2143; + this.state = 2167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2127; + this.state = 2151; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2128; + this.state = 2152; this.match(TrinoSqlParser.KW_BY); - this.state = 2141; + this.state = 2165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2129; + this.state = 2153; this.match(TrinoSqlParser.T__0); - this.state = 2130; + this.state = 2154; this.sortItem(); - this.state = 2135; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2131; + this.state = 2155; this.match(TrinoSqlParser.T__2); - this.state = 2132; + this.state = 2156; this.sortItem(); } } - this.state = 2137; + this.state = 2161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2138; + this.state = 2162; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2140; + this.state = 2164; this.sortItem(); } break; @@ -8252,47 +8411,47 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgumentRelation(): TableArgumentRelationContext { let localContext = new TableArgumentRelationContext(this.context, this.state); - this.enterRule(localContext, 128, TrinoSqlParser.RULE_tableArgumentRelation); + this.enterRule(localContext, 140, TrinoSqlParser.RULE_tableArgumentRelation); let _la: number; try { - this.state = 2171; + this.state = 2195; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: localContext = new TableArgumentTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2145; + this.state = 2169; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2146; + this.state = 2170; this.match(TrinoSqlParser.T__0); - this.state = 2147; + this.state = 2171; this.tableRef(); - this.state = 2148; + this.state = 2172; this.match(TrinoSqlParser.T__1); - this.state = 2156; + this.state = 2180; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2150; + this.state = 2174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2149; + this.state = 2173; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2152; + this.state = 2176; this.identifier(); - this.state = 2154; + this.state = 2178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2153; + this.state = 2177; this.columnAliases(); } } @@ -8306,37 +8465,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableArgumentQueryContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2158; + this.state = 2182; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2159; + this.state = 2183; this.match(TrinoSqlParser.T__0); - this.state = 2160; + this.state = 2184; this.query(); - this.state = 2161; + this.state = 2185; this.match(TrinoSqlParser.T__1); - this.state = 2169; + this.state = 2193; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2163; + this.state = 2187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2162; + this.state = 2186; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2165; + this.state = 2189; this.identifier(); - this.state = 2167; + this.state = 2191; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2166; + this.state = 2190; this.columnAliases(); } } @@ -8364,55 +8523,55 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorArgument(): DescriptorArgumentContext { let localContext = new DescriptorArgumentContext(this.context, this.state); - this.enterRule(localContext, 130, TrinoSqlParser.RULE_descriptorArgument); + this.enterRule(localContext, 142, TrinoSqlParser.RULE_descriptorArgument); let _la: number; try { - this.state = 2191; + this.state = 2215; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_DESCRIPTOR: this.enterOuterAlt(localContext, 1); { - this.state = 2173; + this.state = 2197; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2174; + this.state = 2198; this.match(TrinoSqlParser.T__0); - this.state = 2175; + this.state = 2199; this.descriptorField(); - this.state = 2180; + this.state = 2204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2176; + this.state = 2200; this.match(TrinoSqlParser.T__2); - this.state = 2177; + this.state = 2201; this.descriptorField(); } } - this.state = 2182; + this.state = 2206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2183; + this.state = 2207; this.match(TrinoSqlParser.T__1); } break; case TrinoSqlParser.KW_CAST: this.enterOuterAlt(localContext, 2); { - this.state = 2185; + this.state = 2209; this.match(TrinoSqlParser.KW_CAST); - this.state = 2186; + this.state = 2210; this.match(TrinoSqlParser.T__0); - this.state = 2187; + this.state = 2211; this.match(TrinoSqlParser.KW_NULL); - this.state = 2188; + this.state = 2212; this.match(TrinoSqlParser.KW_AS); - this.state = 2189; + this.state = 2213; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2190; + this.state = 2214; this.match(TrinoSqlParser.T__1); } break; @@ -8436,19 +8595,19 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorField(): DescriptorFieldContext { let localContext = new DescriptorFieldContext(this.context, this.state); - this.enterRule(localContext, 132, TrinoSqlParser.RULE_descriptorField); + this.enterRule(localContext, 144, TrinoSqlParser.RULE_descriptorField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2217; this.identifier(); - this.state = 2195; + this.state = 2219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2194; + this.state = 2218; this.type_(0); } } @@ -8471,36 +8630,36 @@ export class TrinoSqlParser extends SQLParserBase { } public copartitionTables(): CopartitionTablesContext { let localContext = new CopartitionTablesContext(this.context, this.state); - this.enterRule(localContext, 134, TrinoSqlParser.RULE_copartitionTables); + this.enterRule(localContext, 146, TrinoSqlParser.RULE_copartitionTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2221; this.match(TrinoSqlParser.T__0); - this.state = 2198; + this.state = 2222; this.qualifiedName(); - this.state = 2199; + this.state = 2223; this.match(TrinoSqlParser.T__2); - this.state = 2200; + this.state = 2224; this.qualifiedName(); - this.state = 2205; + this.state = 2229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2201; + this.state = 2225; this.match(TrinoSqlParser.T__2); - this.state = 2202; + this.state = 2226; this.qualifiedName(); } } - this.state = 2207; + this.state = 2231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2208; + this.state = 2232; this.match(TrinoSqlParser.T__1); } } @@ -8520,11 +8679,11 @@ export class TrinoSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 136, TrinoSqlParser.RULE_expression); + this.enterRule(localContext, 148, TrinoSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2210; + this.state = 2234; this.booleanExpression(0); } } @@ -8554,13 +8713,13 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 138; - this.enterRecursionRule(localContext, 138, TrinoSqlParser.RULE_booleanExpression, _p); + let _startState = 150; + this.enterRecursionRule(localContext, 150, TrinoSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2243; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.T__0: @@ -8820,14 +8979,14 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2213; + this.state = 2237; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2215; + this.state = 2239; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { - this.state = 2214; + this.state = 2238; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -8839,9 +8998,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2217; + this.state = 2241; this.match(TrinoSqlParser.KW_NOT); - this.state = 2218; + this.state = 2242; this.booleanExpression(3); } break; @@ -8849,9 +9008,9 @@ export class TrinoSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2229; + this.state = 2253; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8859,20 +9018,20 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2227; + this.state = 2251; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { localContext = new AndContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2221; + this.state = 2245; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2222; + this.state = 2246; this.match(TrinoSqlParser.KW_AND); - this.state = 2223; + this.state = 2247; this.booleanExpression(3); } break; @@ -8880,22 +9039,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new OrContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2224; + this.state = 2248; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2225; + this.state = 2249; this.match(TrinoSqlParser.KW_OR); - this.state = 2226; + this.state = 2250; this.booleanExpression(2); } break; } } } - this.state = 2231; + this.state = 2255; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 283, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); } } } @@ -8915,19 +9074,19 @@ export class TrinoSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 140, TrinoSqlParser.RULE_predicate); + this.enterRule(localContext, 152, TrinoSqlParser.RULE_predicate); let _la: number; try { - this.state = 2293; + this.state = 2317; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2232; + this.state = 2256; this.comparisonOperator(); - this.state = 2233; + this.state = 2257; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -8935,15 +9094,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2259; this.comparisonOperator(); - this.state = 2236; + this.state = 2260; this.comparisonQuantifier(); - this.state = 2237; + this.state = 2261; this.match(TrinoSqlParser.T__0); - this.state = 2238; + this.state = 2262; this.query(); - this.state = 2239; + this.state = 2263; this.match(TrinoSqlParser.T__1); } break; @@ -8951,23 +9110,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2242; + this.state = 2266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2241; + this.state = 2265; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2244; + this.state = 2268; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 2245; + this.state = 2269; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2246; + this.state = 2270; this.match(TrinoSqlParser.KW_AND); - this.state = 2247; + this.state = 2271; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -8975,39 +9134,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2250; + this.state = 2274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2249; + this.state = 2273; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2252; + this.state = 2276; this.match(TrinoSqlParser.KW_IN); - this.state = 2253; + this.state = 2277; this.match(TrinoSqlParser.T__0); - this.state = 2254; + this.state = 2278; this.expression(); - this.state = 2259; + this.state = 2283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2255; + this.state = 2279; this.match(TrinoSqlParser.T__2); - this.state = 2256; + this.state = 2280; this.expression(); } } - this.state = 2261; + this.state = 2285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2262; + this.state = 2286; this.match(TrinoSqlParser.T__1); } break; @@ -9015,23 +9174,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2265; + this.state = 2289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2264; + this.state = 2288; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2267; + this.state = 2291; this.match(TrinoSqlParser.KW_IN); - this.state = 2268; + this.state = 2292; this.match(TrinoSqlParser.T__0); - this.state = 2269; + this.state = 2293; this.query(); - this.state = 2270; + this.state = 2294; this.match(TrinoSqlParser.T__1); } break; @@ -9039,28 +9198,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2273; + this.state = 2297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2272; + this.state = 2296; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2275; + this.state = 2299; this.match(TrinoSqlParser.KW_LIKE); - this.state = 2276; + this.state = 2300; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2279; + this.state = 2303; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { - this.state = 2277; + this.state = 2301; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 2278; + this.state = 2302; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -9071,19 +9230,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2281; + this.state = 2305; this.match(TrinoSqlParser.KW_IS); - this.state = 2283; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2282; + this.state = 2306; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2285; + this.state = 2309; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9091,23 +9250,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2286; + this.state = 2310; this.match(TrinoSqlParser.KW_IS); - this.state = 2288; + this.state = 2312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 2287; + this.state = 2311; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2290; + this.state = 2314; this.match(TrinoSqlParser.KW_DISTINCT); - this.state = 2291; + this.state = 2315; this.match(TrinoSqlParser.KW_FROM); - this.state = 2292; + this.state = 2316; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -9139,23 +9298,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 142; - this.enterRecursionRule(localContext, 142, TrinoSqlParser.RULE_valueExpression, _p); + let _startState = 154; + this.enterRecursionRule(localContext, 154, TrinoSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2299; + this.state = 2323; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2296; + this.state = 2320; this.primaryExpression(0); } break; @@ -9164,7 +9323,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2297; + this.state = 2321; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9174,15 +9333,15 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2298; + this.state = 2322; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2315; + this.state = 2339; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 295, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 296, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9190,19 +9349,19 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2313; + this.state = 2337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2301; + this.state = 2325; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2302; + this.state = 2326; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 7) !== 0))) { @@ -9212,7 +9371,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2303; + this.state = 2327; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9221,11 +9380,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2304; + this.state = 2328; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2305; + this.state = 2329; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -9235,7 +9394,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2306; + this.state = 2330; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9244,13 +9403,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2307; + this.state = 2331; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2308; + this.state = 2332; this.match(TrinoSqlParser.CONCAT); - this.state = 2309; + this.state = 2333; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -9258,22 +9417,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2310; + this.state = 2334; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2311; + this.state = 2335; this.match(TrinoSqlParser.KW_AT); - this.state = 2312; + this.state = 2336; this.timeZoneSpecifier(); } break; } } } - this.state = 2317; + this.state = 2341; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 295, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 296, this.context); } } } @@ -9303,23 +9462,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 144; - this.enterRecursionRule(localContext, 144, TrinoSqlParser.RULE_primaryExpression, _p); + let _startState = 156; + this.enterRecursionRule(localContext, 156, TrinoSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2771; + this.state = 2795; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2319; + this.state = 2343; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9328,7 +9487,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2320; + this.state = 2344; this.interval(); } break; @@ -9337,9 +9496,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2321; + this.state = 2345; this.identifier(); - this.state = 2322; + this.state = 2346; this.string_(); } break; @@ -9348,11 +9507,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2324; + this.state = 2348; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2325; + this.state = 2349; this.match(TrinoSqlParser.KW_PRECISION); - this.state = 2326; + this.state = 2350; this.string_(); } break; @@ -9361,7 +9520,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2327; + this.state = 2351; this.number_(); } break; @@ -9370,7 +9529,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2328; + this.state = 2352; this.booleanValue(); } break; @@ -9379,7 +9538,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2329; + this.state = 2353; this.string_(); } break; @@ -9388,7 +9547,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2330; + this.state = 2354; this.match(TrinoSqlParser.BINARY_LITERAL); } break; @@ -9397,7 +9556,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2331; + this.state = 2355; this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -9406,17 +9565,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2332; + this.state = 2356; this.match(TrinoSqlParser.KW_POSITION); - this.state = 2333; + this.state = 2357; this.match(TrinoSqlParser.T__0); - this.state = 2334; + this.state = 2358; this.valueExpression(0); - this.state = 2335; + this.state = 2359; this.match(TrinoSqlParser.KW_IN); - this.state = 2336; + this.state = 2360; this.valueExpression(0); - this.state = 2337; + this.state = 2361; this.match(TrinoSqlParser.T__1); } break; @@ -9425,27 +9584,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2339; + this.state = 2363; this.match(TrinoSqlParser.T__0); - this.state = 2340; + this.state = 2364; this.expression(); - this.state = 2343; + this.state = 2367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2341; + this.state = 2365; this.match(TrinoSqlParser.T__2); - this.state = 2342; + this.state = 2366; this.expression(); } } - this.state = 2345; + this.state = 2369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 3); - this.state = 2347; + this.state = 2371; this.match(TrinoSqlParser.T__1); } break; @@ -9454,29 +9613,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2349; + this.state = 2373; this.match(TrinoSqlParser.KW_ROW); - this.state = 2350; + this.state = 2374; this.match(TrinoSqlParser.T__0); - this.state = 2351; + this.state = 2375; this.expression(); - this.state = 2356; + this.state = 2380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2352; + this.state = 2376; this.match(TrinoSqlParser.T__2); - this.state = 2353; + this.state = 2377; this.expression(); } } - this.state = 2358; + this.state = 2382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2359; + this.state = 2383; this.match(TrinoSqlParser.T__1); } break; @@ -9485,88 +9644,88 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ListaggContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2361; + this.state = 2385; (localContext as ListaggContext)._name = this.match(TrinoSqlParser.KW_LISTAGG); - this.state = 2362; + this.state = 2386; this.match(TrinoSqlParser.T__0); - this.state = 2364; + this.state = 2388; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 298, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2363; + this.state = 2387; this.setQuantifier(); } break; } - this.state = 2366; + this.state = 2390; this.expression(); - this.state = 2369; + this.state = 2393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2367; + this.state = 2391; this.match(TrinoSqlParser.T__2); - this.state = 2368; + this.state = 2392; this.string_(); } } - this.state = 2374; + this.state = 2398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2371; + this.state = 2395; this.match(TrinoSqlParser.KW_ON); - this.state = 2372; + this.state = 2396; this.match(TrinoSqlParser.KW_OVERFLOW); - this.state = 2373; + this.state = 2397; this.listAggOverflowBehavior(); } } - this.state = 2376; + this.state = 2400; this.match(TrinoSqlParser.T__1); { - this.state = 2377; + this.state = 2401; this.match(TrinoSqlParser.KW_WITHIN); - this.state = 2378; + this.state = 2402; this.match(TrinoSqlParser.KW_GROUP); - this.state = 2379; + this.state = 2403; this.match(TrinoSqlParser.T__0); - this.state = 2380; + this.state = 2404; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2381; + this.state = 2405; this.match(TrinoSqlParser.KW_BY); - this.state = 2382; + this.state = 2406; this.sortItem(); - this.state = 2387; + this.state = 2411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2383; + this.state = 2407; this.match(TrinoSqlParser.T__2); - this.state = 2384; + this.state = 2408; this.sortItem(); } } - this.state = 2389; + this.state = 2413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2390; + this.state = 2414; this.match(TrinoSqlParser.T__1); } - this.state = 2393; + this.state = 2417; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2392; + this.state = 2416; this.filter(); } break; @@ -9578,52 +9737,52 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2396; + this.state = 2420; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2395; + this.state = 2419; this.processingMode(); } break; } - this.state = 2398; + this.state = 2422; this.functionName(); - this.state = 2399; + this.state = 2423; this.match(TrinoSqlParser.T__0); - this.state = 2403; + this.state = 2427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2400; + this.state = 2424; (localContext as FunctionCallContext)._label = this.identifier(); - this.state = 2401; + this.state = 2425; this.match(TrinoSqlParser.T__3); } } - this.state = 2405; + this.state = 2429; this.match(TrinoSqlParser.ASTERISK); - this.state = 2406; + this.state = 2430; this.match(TrinoSqlParser.T__1); - this.state = 2408; + this.state = 2432; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2407; + this.state = 2431; this.filter(); } break; } - this.state = 2411; + this.state = 2435; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2410; + this.state = 2434; this.over(); } break; @@ -9635,114 +9794,114 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2414; + this.state = 2438; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2413; + this.state = 2437; this.processingMode(); } break; } - this.state = 2416; + this.state = 2440; this.functionName(); - this.state = 2417; + this.state = 2441; this.match(TrinoSqlParser.T__0); - this.state = 2429; + this.state = 2453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538415087) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2419; + this.state = 2443; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2418; + this.state = 2442; this.setQuantifier(); } break; } - this.state = 2421; + this.state = 2445; this.expression(); - this.state = 2426; + this.state = 2450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2422; + this.state = 2446; this.match(TrinoSqlParser.T__2); - this.state = 2423; + this.state = 2447; this.expression(); } } - this.state = 2428; + this.state = 2452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2441; + this.state = 2465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 2431; + this.state = 2455; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2432; + this.state = 2456; this.match(TrinoSqlParser.KW_BY); - this.state = 2433; + this.state = 2457; this.sortItem(); - this.state = 2438; + this.state = 2462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2434; + this.state = 2458; this.match(TrinoSqlParser.T__2); - this.state = 2435; + this.state = 2459; this.sortItem(); } } - this.state = 2440; + this.state = 2464; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2443; + this.state = 2467; this.match(TrinoSqlParser.T__1); - this.state = 2445; + this.state = 2469; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2444; + this.state = 2468; this.filter(); } break; } - this.state = 2451; + this.state = 2475; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2448; + this.state = 2472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120 || _la === 228) { { - this.state = 2447; + this.state = 2471; this.nullTreatment(); } } - this.state = 2450; + this.state = 2474; this.over(); } break; @@ -9754,9 +9913,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MeasureContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2453; + this.state = 2477; this.identifier(); - this.state = 2454; + this.state = 2478; this.over(); } break; @@ -9765,11 +9924,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2456; + this.state = 2480; this.identifier(); - this.state = 2457; + this.state = 2481; this.match(TrinoSqlParser.T__6); - this.state = 2458; + this.state = 2482; this.expression(); } break; @@ -9778,39 +9937,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2460; + this.state = 2484; this.match(TrinoSqlParser.T__0); - this.state = 2469; + this.state = 2493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2461; + this.state = 2485; this.identifier(); - this.state = 2466; + this.state = 2490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2462; + this.state = 2486; this.match(TrinoSqlParser.T__2); - this.state = 2463; + this.state = 2487; this.identifier(); } } - this.state = 2468; + this.state = 2492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2471; + this.state = 2495; this.match(TrinoSqlParser.T__1); - this.state = 2472; + this.state = 2496; this.match(TrinoSqlParser.T__6); - this.state = 2473; + this.state = 2497; this.expression(); } break; @@ -9819,11 +9978,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2474; + this.state = 2498; this.match(TrinoSqlParser.T__0); - this.state = 2475; + this.state = 2499; this.query(); - this.state = 2476; + this.state = 2500; this.match(TrinoSqlParser.T__1); } break; @@ -9832,13 +9991,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2478; + this.state = 2502; this.match(TrinoSqlParser.KW_EXISTS); - this.state = 2479; + this.state = 2503; this.match(TrinoSqlParser.T__0); - this.state = 2480; + this.state = 2504; this.query(); - this.state = 2481; + this.state = 2505; this.match(TrinoSqlParser.T__1); } break; @@ -9847,37 +10006,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2483; + this.state = 2507; this.match(TrinoSqlParser.KW_CASE); - this.state = 2484; + this.state = 2508; (localContext as SimpleCaseContext)._operand = this.expression(); - this.state = 2486; + this.state = 2510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2485; + this.state = 2509; this.whenClause(); } } - this.state = 2488; + this.state = 2512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2492; + this.state = 2516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2490; + this.state = 2514; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2491; + this.state = 2515; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2494; + this.state = 2518; this.match(TrinoSqlParser.KW_END); } break; @@ -9886,35 +10045,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2496; + this.state = 2520; this.match(TrinoSqlParser.KW_CASE); - this.state = 2498; + this.state = 2522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2497; + this.state = 2521; this.whenClause(); } } - this.state = 2500; + this.state = 2524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 2504; + this.state = 2528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 2502; + this.state = 2526; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2503; + this.state = 2527; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2506; + this.state = 2530; this.match(TrinoSqlParser.KW_END); } break; @@ -9923,17 +10082,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2508; + this.state = 2532; this.match(TrinoSqlParser.KW_CAST); - this.state = 2509; + this.state = 2533; this.match(TrinoSqlParser.T__0); - this.state = 2510; + this.state = 2534; this.expression(); - this.state = 2511; + this.state = 2535; this.match(TrinoSqlParser.KW_AS); - this.state = 2512; + this.state = 2536; this.type_(0); - this.state = 2513; + this.state = 2537; this.match(TrinoSqlParser.T__1); } break; @@ -9942,17 +10101,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2515; + this.state = 2539; this.match(TrinoSqlParser.KW_TRY_CAST); - this.state = 2516; + this.state = 2540; this.match(TrinoSqlParser.T__0); - this.state = 2517; + this.state = 2541; this.expression(); - this.state = 2518; + this.state = 2542; this.match(TrinoSqlParser.KW_AS); - this.state = 2519; + this.state = 2543; this.type_(0); - this.state = 2520; + this.state = 2544; this.match(TrinoSqlParser.T__1); } break; @@ -9961,37 +10120,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2522; + this.state = 2546; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2523; + this.state = 2547; this.match(TrinoSqlParser.T__7); - this.state = 2532; + this.state = 2556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3758094335) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2524; + this.state = 2548; this.expression(); - this.state = 2529; + this.state = 2553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2525; + this.state = 2549; this.match(TrinoSqlParser.T__2); - this.state = 2526; + this.state = 2550; this.expression(); } } - this.state = 2531; + this.state = 2555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2534; + this.state = 2558; this.match(TrinoSqlParser.T__8); } break; @@ -10000,7 +10159,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2535; + this.state = 2559; this.identifier(); } break; @@ -10009,7 +10168,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentDateContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2536; + this.state = 2560; (localContext as CurrentDateContext)._name = this.match(TrinoSqlParser.KW_CURRENT_DATE); } break; @@ -10018,18 +10177,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2537; + this.state = 2561; (localContext as CurrentTimeContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIME); - this.state = 2541; + this.state = 2565; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2538; + this.state = 2562; this.match(TrinoSqlParser.T__0); - this.state = 2539; + this.state = 2563; (localContext as CurrentTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2540; + this.state = 2564; this.match(TrinoSqlParser.T__1); } break; @@ -10041,18 +10200,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2543; + this.state = 2567; (localContext as CurrentTimestampContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2547; + this.state = 2571; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2544; + this.state = 2568; this.match(TrinoSqlParser.T__0); - this.state = 2545; + this.state = 2569; (localContext as CurrentTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2546; + this.state = 2570; this.match(TrinoSqlParser.T__1); } break; @@ -10064,18 +10223,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2549; + this.state = 2573; (localContext as LocalTimeContext)._name = this.match(TrinoSqlParser.KW_LOCALTIME); - this.state = 2553; + this.state = 2577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2550; + this.state = 2574; this.match(TrinoSqlParser.T__0); - this.state = 2551; + this.state = 2575; (localContext as LocalTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2552; + this.state = 2576; this.match(TrinoSqlParser.T__1); } break; @@ -10087,18 +10246,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2555; + this.state = 2579; (localContext as LocalTimestampContext)._name = this.match(TrinoSqlParser.KW_LOCALTIMESTAMP); - this.state = 2559; + this.state = 2583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2556; + this.state = 2580; this.match(TrinoSqlParser.T__0); - this.state = 2557; + this.state = 2581; (localContext as LocalTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2558; + this.state = 2582; this.match(TrinoSqlParser.T__1); } break; @@ -10110,7 +10269,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2561; + this.state = 2585; (localContext as CurrentUserContext)._name = this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -10119,7 +10278,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentCatalogContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2562; + this.state = 2586; (localContext as CurrentCatalogContext)._name = this.match(TrinoSqlParser.KW_CURRENT_CATALOG); } break; @@ -10128,7 +10287,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentSchemaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2563; + this.state = 2587; (localContext as CurrentSchemaContext)._name = this.match(TrinoSqlParser.KW_CURRENT_SCHEMA); } break; @@ -10137,7 +10296,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2564; + this.state = 2588; (localContext as CurrentPathContext)._name = this.match(TrinoSqlParser.KW_CURRENT_PATH); } break; @@ -10146,43 +10305,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2565; + this.state = 2589; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2566; + this.state = 2590; this.match(TrinoSqlParser.T__0); - this.state = 2574; + this.state = 2598; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2568; + this.state = 2592; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2567; + this.state = 2591; this.trimsSpecification(); } break; } - this.state = 2571; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4011589611) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 3538382319) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 1541142911) !== 0) || ((((_la - 129)) & ~0x1F) === 0 && ((1 << (_la - 129)) & 4253015917) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 3755997183) !== 0) || ((((_la - 193)) & ~0x1F) === 0 && ((1 << (_la - 193)) & 4024434665) !== 0) || ((((_la - 225)) & ~0x1F) === 0 && ((1 << (_la - 225)) & 4286569983) !== 0) || ((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 4008705783) !== 0) || ((((_la - 289)) & ~0x1F) === 0 && ((1 << (_la - 289)) & 1618962301) !== 0) || ((((_la - 324)) & ~0x1F) === 0 && ((1 << (_la - 324)) & 4093) !== 0)) { { - this.state = 2570; + this.state = 2594; (localContext as TrimContext)._trimChar = this.valueExpression(0); } } - this.state = 2573; + this.state = 2597; this.match(TrinoSqlParser.KW_FROM); } break; } - this.state = 2576; + this.state = 2600; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2577; + this.state = 2601; this.match(TrinoSqlParser.T__1); } break; @@ -10191,17 +10350,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2579; + this.state = 2603; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2580; + this.state = 2604; this.match(TrinoSqlParser.T__0); - this.state = 2581; + this.state = 2605; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2582; + this.state = 2606; this.match(TrinoSqlParser.T__2); - this.state = 2583; + this.state = 2607; (localContext as TrimContext)._trimChar = this.valueExpression(0); - this.state = 2584; + this.state = 2608; this.match(TrinoSqlParser.T__1); } break; @@ -10210,29 +10369,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2586; + this.state = 2610; this.match(TrinoSqlParser.KW_SUBSTRING); - this.state = 2587; + this.state = 2611; this.match(TrinoSqlParser.T__0); - this.state = 2588; + this.state = 2612; this.valueExpression(0); - this.state = 2589; + this.state = 2613; this.match(TrinoSqlParser.KW_FROM); - this.state = 2590; + this.state = 2614; this.valueExpression(0); - this.state = 2593; + this.state = 2617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2591; + this.state = 2615; this.match(TrinoSqlParser.KW_FOR); - this.state = 2592; + this.state = 2616; this.valueExpression(0); } } - this.state = 2595; + this.state = 2619; this.match(TrinoSqlParser.T__1); } break; @@ -10241,25 +10400,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2597; + this.state = 2621; this.match(TrinoSqlParser.KW_NORMALIZE); - this.state = 2598; + this.state = 2622; this.match(TrinoSqlParser.T__0); - this.state = 2599; + this.state = 2623; this.valueExpression(0); - this.state = 2602; + this.state = 2626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2600; + this.state = 2624; this.match(TrinoSqlParser.T__2); - this.state = 2601; + this.state = 2625; this.normalForm(); } } - this.state = 2604; + this.state = 2628; this.match(TrinoSqlParser.T__1); } break; @@ -10268,17 +10427,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2606; + this.state = 2630; this.match(TrinoSqlParser.KW_EXTRACT); - this.state = 2607; + this.state = 2631; this.match(TrinoSqlParser.T__0); - this.state = 2608; + this.state = 2632; this.identifier(); - this.state = 2609; + this.state = 2633; this.match(TrinoSqlParser.KW_FROM); - this.state = 2610; + this.state = 2634; this.valueExpression(0); - this.state = 2611; + this.state = 2635; this.match(TrinoSqlParser.T__1); } break; @@ -10287,11 +10446,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2613; + this.state = 2637; this.match(TrinoSqlParser.T__0); - this.state = 2614; + this.state = 2638; this.expression(); - this.state = 2615; + this.state = 2639; this.match(TrinoSqlParser.T__1); } break; @@ -10300,37 +10459,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2617; + this.state = 2641; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 2618; + this.state = 2642; this.match(TrinoSqlParser.T__0); - this.state = 2627; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 2619; + this.state = 2643; this.qualifiedName(); - this.state = 2624; + this.state = 2648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2620; + this.state = 2644; this.match(TrinoSqlParser.T__2); - this.state = 2621; + this.state = 2645; this.qualifiedName(); } } - this.state = 2626; + this.state = 2650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2629; + this.state = 2653; this.match(TrinoSqlParser.T__1); } break; @@ -10339,27 +10498,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2630; + this.state = 2654; this.match(TrinoSqlParser.KW_JSON_EXISTS); - this.state = 2631; + this.state = 2655; this.match(TrinoSqlParser.T__0); - this.state = 2632; + this.state = 2656; this.jsonPathInvocation(); - this.state = 2637; + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 89 || _la === 97 || _la === 273 || _la === 283) { { - this.state = 2633; + this.state = 2657; this.jsonExistsErrorBehavior(); - this.state = 2634; + this.state = 2658; this.match(TrinoSqlParser.KW_ON); - this.state = 2635; + this.state = 2659; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2639; + this.state = 2663; this.match(TrinoSqlParser.T__1); } break; @@ -10368,53 +10527,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonValueContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2641; + this.state = 2665; this.match(TrinoSqlParser.KW_JSON_VALUE); - this.state = 2642; + this.state = 2666; this.match(TrinoSqlParser.T__0); - this.state = 2643; + this.state = 2667; this.jsonPathInvocation(); - this.state = 2646; + this.state = 2670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2644; + this.state = 2668; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2645; + this.state = 2669; this.type_(0); } } - this.state = 2652; + this.state = 2676; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 338, this.context) ) { case 1: { - this.state = 2648; + this.state = 2672; (localContext as JsonValueContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 2649; + this.state = 2673; this.match(TrinoSqlParser.KW_ON); - this.state = 2650; + this.state = 2674; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2658; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70 || _la === 89 || _la === 183) { { - this.state = 2654; + this.state = 2678; (localContext as JsonValueContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 2655; + this.state = 2679; this.match(TrinoSqlParser.KW_ON); - this.state = 2656; + this.state = 2680; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2660; + this.state = 2684; this.match(TrinoSqlParser.T__1); } break; @@ -10423,29 +10582,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonQueryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2662; + this.state = 2686; this.match(TrinoSqlParser.KW_JSON_QUERY); - this.state = 2663; + this.state = 2687; this.match(TrinoSqlParser.T__0); - this.state = 2664; + this.state = 2688; this.jsonPathInvocation(); - this.state = 2671; + this.state = 2695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2665; + this.state = 2689; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2666; + this.state = 2690; this.type_(0); - this.state = 2669; + this.state = 2693; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2667; + this.state = 2691; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2668; + this.state = 2692; this.jsonRepresentation(); } } @@ -10453,24 +10612,24 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2676; + this.state = 2700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 304 || _la === 306) { { - this.state = 2673; + this.state = 2697; this.jsonQueryWrapperBehavior(); - this.state = 2674; + this.state = 2698; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 2685; + this.state = 2709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 189) { { - this.state = 2678; + this.state = 2702; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -10479,18 +10638,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2679; + this.state = 2703; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 2683; + this.state = 2707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 2680; + this.state = 2704; this.match(TrinoSqlParser.KW_ON); - this.state = 2681; + this.state = 2705; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 2682; + this.state = 2706; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -10498,35 +10657,35 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2691; + this.state = 2715; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2687; + this.state = 2711; (localContext as JsonQueryContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 2688; + this.state = 2712; this.match(TrinoSqlParser.KW_ON); - this.state = 2689; + this.state = 2713; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2697; + this.state = 2721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85 || _la === 89 || _la === 183) { { - this.state = 2693; + this.state = 2717; (localContext as JsonQueryContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 2694; + this.state = 2718; this.match(TrinoSqlParser.KW_ON); - this.state = 2695; + this.state = 2719; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2699; + this.state = 2723; this.match(TrinoSqlParser.T__1); } break; @@ -10535,53 +10694,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonObjectContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2701; + this.state = 2725; this.match(TrinoSqlParser.KW_JSON_OBJECT); - this.state = 2702; + this.state = 2726; this.match(TrinoSqlParser.T__0); - this.state = 2731; + this.state = 2755; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 2703; + this.state = 2727; this.jsonObjectMember(); - this.state = 2708; + this.state = 2732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2704; + this.state = 2728; this.match(TrinoSqlParser.T__2); - this.state = 2705; + this.state = 2729; this.jsonObjectMember(); } } - this.state = 2710; + this.state = 2734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2717; + this.state = 2741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2711; + this.state = 2735; this.match(TrinoSqlParser.KW_NULL); - this.state = 2712; + this.state = 2736; this.match(TrinoSqlParser.KW_ON); - this.state = 2713; + this.state = 2737; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2714; + this.state = 2738; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2715; + this.state = 2739; this.match(TrinoSqlParser.KW_ON); - this.state = 2716; + this.state = 2740; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10593,21 +10752,21 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2729; + this.state = 2753; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: { - this.state = 2719; + this.state = 2743; this.match(TrinoSqlParser.KW_WITH); - this.state = 2720; + this.state = 2744; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2722; + this.state = 2746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2721; + this.state = 2745; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10616,16 +10775,16 @@ export class TrinoSqlParser extends SQLParserBase { break; case TrinoSqlParser.KW_WITHOUT: { - this.state = 2724; + this.state = 2748; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2725; + this.state = 2749; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2727; + this.state = 2751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2726; + this.state = 2750; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10641,23 +10800,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2739; + this.state = 2763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2733; + this.state = 2757; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2734; + this.state = 2758; this.type_(0); - this.state = 2737; + this.state = 2761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2735; + this.state = 2759; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2736; + this.state = 2760; this.jsonRepresentation(); } } @@ -10665,7 +10824,7 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2741; + this.state = 2765; this.match(TrinoSqlParser.T__1); } break; @@ -10674,53 +10833,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonArrayContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2742; + this.state = 2766; this.match(TrinoSqlParser.KW_JSON_ARRAY); - this.state = 2743; + this.state = 2767; this.match(TrinoSqlParser.T__0); - this.state = 2760; + this.state = 2784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2744; + this.state = 2768; this.jsonValueExpression(); - this.state = 2749; + this.state = 2773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2745; + this.state = 2769; this.match(TrinoSqlParser.T__2); - this.state = 2746; + this.state = 2770; this.jsonValueExpression(); } } - this.state = 2751; + this.state = 2775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2758; + this.state = 2782; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2752; + this.state = 2776; this.match(TrinoSqlParser.KW_NULL); - this.state = 2753; + this.state = 2777; this.match(TrinoSqlParser.KW_ON); - this.state = 2754; + this.state = 2778; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2755; + this.state = 2779; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2756; + this.state = 2780; this.match(TrinoSqlParser.KW_ON); - this.state = 2757; + this.state = 2781; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10733,23 +10892,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2768; + this.state = 2792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 2762; + this.state = 2786; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2763; + this.state = 2787; this.type_(0); - this.state = 2766; + this.state = 2790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2764; + this.state = 2788; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2765; + this.state = 2789; this.jsonRepresentation(); } } @@ -10757,15 +10916,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2770; + this.state = 2794; this.match(TrinoSqlParser.T__1); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2783; + this.state = 2807; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 362, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -10773,23 +10932,23 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2781; + this.state = 2805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2773; + this.state = 2797; if (!(this.precpred(this.context, 24))) { throw this.createFailedPredicateException("this.precpred(this.context, 24)"); } - this.state = 2774; + this.state = 2798; this.match(TrinoSqlParser.T__7); - this.state = 2775; + this.state = 2799; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2776; + this.state = 2800; this.match(TrinoSqlParser.T__8); } break; @@ -10798,22 +10957,22 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2778; + this.state = 2802; if (!(this.precpred(this.context, 22))) { throw this.createFailedPredicateException("this.precpred(this.context, 22)"); } - this.state = 2779; + this.state = 2803; this.match(TrinoSqlParser.T__3); - this.state = 2780; + this.state = 2804; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2785; + this.state = 2809; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 362, this.context); } } } @@ -10833,51 +10992,51 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonPathInvocation(): JsonPathInvocationContext { let localContext = new JsonPathInvocationContext(this.context, this.state); - this.enterRule(localContext, 146, TrinoSqlParser.RULE_jsonPathInvocation); + this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonPathInvocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2786; + this.state = 2810; this.jsonValueExpression(); - this.state = 2787; + this.state = 2811; this.match(TrinoSqlParser.T__2); - this.state = 2788; + this.state = 2812; localContext._path = this.string_(); - this.state = 2791; + this.state = 2815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2789; + this.state = 2813; this.match(TrinoSqlParser.KW_AS); - this.state = 2790; + this.state = 2814; localContext._pathName = this.identifier(); } } - this.state = 2802; + this.state = 2826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 2793; + this.state = 2817; this.match(TrinoSqlParser.KW_PASSING); - this.state = 2794; + this.state = 2818; this.jsonArgument(); - this.state = 2799; + this.state = 2823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2795; + this.state = 2819; this.match(TrinoSqlParser.T__2); - this.state = 2796; + this.state = 2820; this.jsonArgument(); } } - this.state = 2801; + this.state = 2825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10902,21 +11061,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueExpression(): JsonValueExpressionContext { let localContext = new JsonValueExpressionContext(this.context, this.state); - this.enterRule(localContext, 148, TrinoSqlParser.RULE_jsonValueExpression); + this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonValueExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2804; + this.state = 2828; this.expression(); - this.state = 2807; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2805; + this.state = 2829; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2806; + this.state = 2830; this.jsonRepresentation(); } } @@ -10939,21 +11098,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonRepresentation(): JsonRepresentationContext { let localContext = new JsonRepresentationContext(this.context, this.state); - this.enterRule(localContext, 150, TrinoSqlParser.RULE_jsonRepresentation); + this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonRepresentation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2809; + this.state = 2833; this.match(TrinoSqlParser.KW_JSON); - this.state = 2812; + this.state = 2836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 2810; + this.state = 2834; this.match(TrinoSqlParser.KW_ENCODING); - this.state = 2811; + this.state = 2835; _la = this.tokenStream.LA(1); if(!(((((_la - 291)) & ~0x1F) === 0 && ((1 << (_la - 291)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -10983,15 +11142,15 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonArgument(): JsonArgumentContext { let localContext = new JsonArgumentContext(this.context, this.state); - this.enterRule(localContext, 152, TrinoSqlParser.RULE_jsonArgument); + this.enterRule(localContext, 164, TrinoSqlParser.RULE_jsonArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2814; + this.state = 2838; this.jsonValueExpression(); - this.state = 2815; + this.state = 2839; this.match(TrinoSqlParser.KW_AS); - this.state = 2816; + this.state = 2840; this.identifier(); } } @@ -11011,12 +11170,12 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonExistsErrorBehavior(): JsonExistsErrorBehaviorContext { let localContext = new JsonExistsErrorBehaviorContext(this.context, this.state); - this.enterRule(localContext, 154, TrinoSqlParser.RULE_jsonExistsErrorBehavior); + this.enterRule(localContext, 166, TrinoSqlParser.RULE_jsonExistsErrorBehavior); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2818; + this.state = 2842; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 97 || _la === 273 || _la === 283)) { this.errorHandler.recoverInline(this); @@ -11043,31 +11202,31 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueBehavior(): JsonValueBehaviorContext { let localContext = new JsonValueBehaviorContext(this.context, this.state); - this.enterRule(localContext, 156, TrinoSqlParser.RULE_jsonValueBehavior); + this.enterRule(localContext, 168, TrinoSqlParser.RULE_jsonValueBehavior); try { - this.state = 2824; + this.state = 2848; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 2820; + this.state = 2844; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 2821; + this.state = 2845; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2822; + this.state = 2846; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 2823; + this.state = 2847; this.expression(); } break; @@ -11091,23 +11250,23 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryWrapperBehavior(): JsonQueryWrapperBehaviorContext { let localContext = new JsonQueryWrapperBehaviorContext(this.context, this.state); - this.enterRule(localContext, 158, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); + this.enterRule(localContext, 170, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); let _la: number; try { - this.state = 2837; + this.state = 2861; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 1); { - this.state = 2826; + this.state = 2850; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2828; + this.state = 2852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2827; + this.state = 2851; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11117,14 +11276,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 2830; + this.state = 2854; this.match(TrinoSqlParser.KW_WITH); - this.state = 2832; + this.state = 2856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 49 || _la === 280) { { - this.state = 2831; + this.state = 2855; _la = this.tokenStream.LA(1); if(!(_la === 49 || _la === 280)) { this.errorHandler.recoverInline(this); @@ -11136,12 +11295,12 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2835; + this.state = 2859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2834; + this.state = 2858; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11168,40 +11327,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryBehavior(): JsonQueryBehaviorContext { let localContext = new JsonQueryBehaviorContext(this.context, this.state); - this.enterRule(localContext, 160, TrinoSqlParser.RULE_jsonQueryBehavior); + this.enterRule(localContext, 172, TrinoSqlParser.RULE_jsonQueryBehavior); try { - this.state = 2845; + this.state = 2869; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2839; + this.state = 2863; this.match(TrinoSqlParser.KW_ERROR); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2840; + this.state = 2864; this.match(TrinoSqlParser.KW_NULL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2841; + this.state = 2865; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2842; + this.state = 2866; this.match(TrinoSqlParser.KW_ARRAY); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2843; + this.state = 2867; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2844; + this.state = 2868; this.match(TrinoSqlParser.KW_OBJECT); } break; @@ -11223,40 +11382,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonObjectMember(): JsonObjectMemberContext { let localContext = new JsonObjectMemberContext(this.context, this.state); - this.enterRule(localContext, 162, TrinoSqlParser.RULE_jsonObjectMember); + this.enterRule(localContext, 174, TrinoSqlParser.RULE_jsonObjectMember); try { - this.state = 2858; + this.state = 2882; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2848; + this.state = 2872; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: { - this.state = 2847; + this.state = 2871; this.match(TrinoSqlParser.KW_KEY); } break; } - this.state = 2850; + this.state = 2874; this.expression(); - this.state = 2851; + this.state = 2875; this.match(TrinoSqlParser.KW_VALUE); - this.state = 2852; + this.state = 2876; this.jsonValueExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2854; + this.state = 2878; this.expression(); - this.state = 2855; + this.state = 2879; this.match(TrinoSqlParser.T__9); - this.state = 2856; + this.state = 2880; this.jsonValueExpression(); } break; @@ -11278,12 +11437,12 @@ export class TrinoSqlParser extends SQLParserBase { } public processingMode(): ProcessingModeContext { let localContext = new ProcessingModeContext(this.context, this.state); - this.enterRule(localContext, 164, TrinoSqlParser.RULE_processingMode); + this.enterRule(localContext, 176, TrinoSqlParser.RULE_processingMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2860; + this.state = 2884; _la = this.tokenStream.LA(1); if(!(_la === 100 || _la === 241)) { this.errorHandler.recoverInline(this); @@ -11310,26 +11469,26 @@ export class TrinoSqlParser extends SQLParserBase { } public nullTreatment(): NullTreatmentContext { let localContext = new NullTreatmentContext(this.context, this.state); - this.enterRule(localContext, 166, TrinoSqlParser.RULE_nullTreatment); + this.enterRule(localContext, 178, TrinoSqlParser.RULE_nullTreatment); try { - this.state = 2866; + this.state = 2890; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_IGNORE: this.enterOuterAlt(localContext, 1); { - this.state = 2862; + this.state = 2886; this.match(TrinoSqlParser.KW_IGNORE); - this.state = 2863; + this.state = 2887; this.match(TrinoSqlParser.KW_NULLS); } break; case TrinoSqlParser.KW_RESPECT: this.enterOuterAlt(localContext, 2); { - this.state = 2864; + this.state = 2888; this.match(TrinoSqlParser.KW_RESPECT); - this.state = 2865; + this.state = 2889; this.match(TrinoSqlParser.KW_NULLS); } break; @@ -11353,16 +11512,16 @@ export class TrinoSqlParser extends SQLParserBase { } public string_(): StringContext { let localContext = new StringContext(this.context, this.state); - this.enterRule(localContext, 168, TrinoSqlParser.RULE_string); + this.enterRule(localContext, 180, TrinoSqlParser.RULE_string); try { - this.state = 2874; + this.state = 2898; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2868; + this.state = 2892; this.match(TrinoSqlParser.STRING); } break; @@ -11370,16 +11529,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2869; + this.state = 2893; this.match(TrinoSqlParser.UNICODE_STRING); - this.state = 2872; + this.state = 2896; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: { - this.state = 2870; + this.state = 2894; this.match(TrinoSqlParser.KW_UESCAPE); - this.state = 2871; + this.state = 2895; this.match(TrinoSqlParser.STRING); } break; @@ -11406,20 +11565,20 @@ export class TrinoSqlParser extends SQLParserBase { } public timeZoneSpecifier(): TimeZoneSpecifierContext { let localContext = new TimeZoneSpecifierContext(this.context, this.state); - this.enterRule(localContext, 170, TrinoSqlParser.RULE_timeZoneSpecifier); + this.enterRule(localContext, 182, TrinoSqlParser.RULE_timeZoneSpecifier); try { - this.state = 2882; + this.state = 2906; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: localContext = new TimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2876; + this.state = 2900; this.match(TrinoSqlParser.KW_TIME); - this.state = 2877; + this.state = 2901; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2878; + this.state = 2902; this.interval(); } break; @@ -11427,11 +11586,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeZoneStringContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2879; + this.state = 2903; this.match(TrinoSqlParser.KW_TIME); - this.state = 2880; + this.state = 2904; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2881; + this.state = 2905; this.string_(); } break; @@ -11453,12 +11612,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 172, TrinoSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 184, TrinoSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2884; + this.state = 2908; _la = this.tokenStream.LA(1); if(!(((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11485,12 +11644,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 174, TrinoSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 186, TrinoSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2886; + this.state = 2910; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 26 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11517,12 +11676,12 @@ export class TrinoSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 176, TrinoSqlParser.RULE_booleanValue); + this.enterRule(localContext, 188, TrinoSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2888; + this.state = 2912; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 273)) { this.errorHandler.recoverInline(this); @@ -11549,19 +11708,19 @@ export class TrinoSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 178, TrinoSqlParser.RULE_interval); + this.enterRule(localContext, 190, TrinoSqlParser.RULE_interval); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2890; + this.state = 2914; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2892; + this.state = 2916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 318 || _la === 319) { { - this.state = 2891; + this.state = 2915; localContext._sign = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 319)) { @@ -11574,18 +11733,18 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2894; + this.state = 2918; this.string_(); - this.state = 2895; + this.state = 2919; localContext._from_ = this.intervalField(); - this.state = 2898; + this.state = 2922; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 2896; + this.state = 2920; this.match(TrinoSqlParser.KW_TO); - this.state = 2897; + this.state = 2921; localContext._to = this.intervalField(); } break; @@ -11608,12 +11767,12 @@ export class TrinoSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 180, TrinoSqlParser.RULE_intervalField); + this.enterRule(localContext, 192, TrinoSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2900; + this.state = 2924; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 118 || _la === 170 || _la === 171 || _la === 245 || _la === 310)) { this.errorHandler.recoverInline(this); @@ -11640,12 +11799,12 @@ export class TrinoSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 182, TrinoSqlParser.RULE_normalForm); + this.enterRule(localContext, 194, TrinoSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2902; + this.state = 2926; _la = this.tokenStream.LA(1); if(!(((((_la - 175)) & ~0x1F) === 0 && ((1 << (_la - 175)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11682,45 +11841,45 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 184; - this.enterRecursionRule(localContext, 184, TrinoSqlParser.RULE_type, _p); + let _startState = 196; + this.enterRecursionRule(localContext, 196, TrinoSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2975; + this.state = 2999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { localContext = new RowTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2905; + this.state = 2929; this.match(TrinoSqlParser.KW_ROW); - this.state = 2906; + this.state = 2930; this.match(TrinoSqlParser.T__0); - this.state = 2907; + this.state = 2931; this.rowField(); - this.state = 2912; + this.state = 2936; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2908; + this.state = 2932; this.match(TrinoSqlParser.T__2); - this.state = 2909; + this.state = 2933; this.rowField(); } } - this.state = 2914; + this.state = 2938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2915; + this.state = 2939; this.match(TrinoSqlParser.T__1); } break; @@ -11729,18 +11888,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2917; + this.state = 2941; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2918; + this.state = 2942; (localContext as IntervalTypeContext)._from_ = this.intervalField(); - this.state = 2921; + this.state = 2945; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 2919; + this.state = 2943; this.match(TrinoSqlParser.KW_TO); - this.state = 2920; + this.state = 2944; (localContext as IntervalTypeContext)._to = this.intervalField(); } break; @@ -11752,28 +11911,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2923; + this.state = 2947; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIMESTAMP); - this.state = 2928; + this.state = 2952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2924; + this.state = 2948; this.match(TrinoSqlParser.T__0); - this.state = 2925; + this.state = 2949; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2926; + this.state = 2950; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2933; + this.state = 2957; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: { - this.state = 2930; + this.state = 2954; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 306)) { this.errorHandler.recoverInline(this); @@ -11782,9 +11941,9 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2931; + this.state = 2955; this.match(TrinoSqlParser.KW_TIME); - this.state = 2932; + this.state = 2956; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11796,28 +11955,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2935; + this.state = 2959; (localContext as TimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIME); - this.state = 2940; + this.state = 2964; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 2936; + this.state = 2960; this.match(TrinoSqlParser.T__0); - this.state = 2937; + this.state = 2961; (localContext as TimeTypeContext)._precision = this.typeParameter(); - this.state = 2938; + this.state = 2962; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2945; + this.state = 2969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: { - this.state = 2942; + this.state = 2966; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 306)) { this.errorHandler.recoverInline(this); @@ -11826,9 +11985,9 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2943; + this.state = 2967; this.match(TrinoSqlParser.KW_TIME); - this.state = 2944; + this.state = 2968; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -11840,9 +11999,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoublePrecisionTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2947; + this.state = 2971; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2948; + this.state = 2972; this.match(TrinoSqlParser.KW_PRECISION); } break; @@ -11851,13 +12010,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyArrayTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2949; + this.state = 2973; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2950; + this.state = 2974; this.match(TrinoSqlParser.LT); - this.state = 2951; + this.state = 2975; this.type_(0); - this.state = 2952; + this.state = 2976; this.match(TrinoSqlParser.GT); } break; @@ -11866,17 +12025,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyMapTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2954; + this.state = 2978; this.match(TrinoSqlParser.KW_MAP); - this.state = 2955; + this.state = 2979; this.match(TrinoSqlParser.LT); - this.state = 2956; + this.state = 2980; (localContext as LegacyMapTypeContext)._keyType = this.type_(0); - this.state = 2957; + this.state = 2981; this.match(TrinoSqlParser.T__2); - this.state = 2958; + this.state = 2982; (localContext as LegacyMapTypeContext)._valueType = this.type_(0); - this.state = 2959; + this.state = 2983; this.match(TrinoSqlParser.GT); } break; @@ -11885,34 +12044,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GenericTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2961; + this.state = 2985; this.identifier(); - this.state = 2973; + this.state = 2997; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 2962; + this.state = 2986; this.match(TrinoSqlParser.T__0); - this.state = 2963; + this.state = 2987; this.typeParameter(); - this.state = 2968; + this.state = 2992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2964; + this.state = 2988; this.match(TrinoSqlParser.T__2); - this.state = 2965; + this.state = 2989; this.typeParameter(); } } - this.state = 2970; + this.state = 2994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2971; + this.state = 2995; this.match(TrinoSqlParser.T__1); } break; @@ -11921,9 +12080,9 @@ export class TrinoSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2986; + this.state = 3010; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 391, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 392, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11934,22 +12093,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new ArrayTypeContext(new TypeContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_type); - this.state = 2977; + this.state = 3001; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2978; + this.state = 3002; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2982; + this.state = 3006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: { - this.state = 2979; + this.state = 3003; this.match(TrinoSqlParser.T__7); - this.state = 2980; + this.state = 3004; this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2981; + this.state = 3005; this.match(TrinoSqlParser.T__8); } break; @@ -11957,9 +12116,9 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 2988; + this.state = 3012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 391, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 392, this.context); } } } @@ -11979,24 +12138,24 @@ export class TrinoSqlParser extends SQLParserBase { } public rowField(): RowFieldContext { let localContext = new RowFieldContext(this.context, this.state); - this.enterRule(localContext, 186, TrinoSqlParser.RULE_rowField); + this.enterRule(localContext, 198, TrinoSqlParser.RULE_rowField); try { - this.state = 2993; + this.state = 3017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2989; + this.state = 3013; this.type_(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2990; + this.state = 3014; this.identifier(); - this.state = 2991; + this.state = 3015; this.type_(0); } break; @@ -12018,15 +12177,15 @@ export class TrinoSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 188, TrinoSqlParser.RULE_typeParameter); + this.enterRule(localContext, 200, TrinoSqlParser.RULE_typeParameter); try { - this.state = 2997; + this.state = 3021; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2995; + this.state = 3019; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -12249,7 +12408,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 2996; + this.state = 3020; this.type_(0); } break; @@ -12273,17 +12432,17 @@ export class TrinoSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 190, TrinoSqlParser.RULE_whenClause); + this.enterRule(localContext, 202, TrinoSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2999; + this.state = 3023; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3000; + this.state = 3024; localContext._condition = this.expression(); - this.state = 3001; + this.state = 3025; this.match(TrinoSqlParser.KW_THEN); - this.state = 3002; + this.state = 3026; localContext._result = this.expression(); } } @@ -12303,19 +12462,19 @@ export class TrinoSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 192, TrinoSqlParser.RULE_filter); + this.enterRule(localContext, 204, TrinoSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 3004; + this.state = 3028; this.match(TrinoSqlParser.KW_FILTER); - this.state = 3005; + this.state = 3029; this.match(TrinoSqlParser.T__0); - this.state = 3006; + this.state = 3030; this.match(TrinoSqlParser.KW_WHERE); - this.state = 3007; + this.state = 3031; this.booleanExpression(0); - this.state = 3008; + this.state = 3032; this.match(TrinoSqlParser.T__1); } } @@ -12335,65 +12494,65 @@ export class TrinoSqlParser extends SQLParserBase { } public mergeCase(): MergeCaseContext { let localContext = new MergeCaseContext(this.context, this.state); - this.enterRule(localContext, 194, TrinoSqlParser.RULE_mergeCase); + this.enterRule(localContext, 206, TrinoSqlParser.RULE_mergeCase); let _la: number; try { - this.state = 3074; + this.state = 3098; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: localContext = new MergeUpdateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3010; + this.state = 3034; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3011; + this.state = 3035; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3014; + this.state = 3038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3012; + this.state = 3036; this.match(TrinoSqlParser.KW_AND); - this.state = 3013; + this.state = 3037; (localContext as MergeUpdateContext)._condition = this.expression(); } } - this.state = 3016; + this.state = 3040; this.match(TrinoSqlParser.KW_THEN); - this.state = 3017; + this.state = 3041; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 3018; + this.state = 3042; this.match(TrinoSqlParser.KW_SET); - this.state = 3019; + this.state = 3043; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3020; + this.state = 3044; this.match(TrinoSqlParser.EQ); - this.state = 3021; + this.state = 3045; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); - this.state = 3029; + this.state = 3053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3022; + this.state = 3046; this.match(TrinoSqlParser.T__2); - this.state = 3023; + this.state = 3047; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3024; + this.state = 3048; this.match(TrinoSqlParser.EQ); - this.state = 3025; + this.state = 3049; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); } } - this.state = 3031; + this.state = 3055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12403,25 +12562,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeDeleteContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3032; + this.state = 3056; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3033; + this.state = 3057; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3036; + this.state = 3060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3034; + this.state = 3058; this.match(TrinoSqlParser.KW_AND); - this.state = 3035; + this.state = 3059; (localContext as MergeDeleteContext)._condition = this.expression(); } } - this.state = 3038; + this.state = 3062; this.match(TrinoSqlParser.KW_THEN); - this.state = 3039; + this.state = 3063; this.match(TrinoSqlParser.KW_DELETE); } break; @@ -12429,85 +12588,85 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeInsertContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3040; + this.state = 3064; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3041; + this.state = 3065; this.match(TrinoSqlParser.KW_NOT); - this.state = 3042; + this.state = 3066; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3045; + this.state = 3069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3043; + this.state = 3067; this.match(TrinoSqlParser.KW_AND); - this.state = 3044; + this.state = 3068; (localContext as MergeInsertContext)._condition = this.expression(); } } - this.state = 3047; + this.state = 3071; this.match(TrinoSqlParser.KW_THEN); - this.state = 3048; + this.state = 3072; this.match(TrinoSqlParser.KW_INSERT); - this.state = 3060; + this.state = 3084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 3049; + this.state = 3073; this.match(TrinoSqlParser.T__0); - this.state = 3050; + this.state = 3074; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); - this.state = 3055; + this.state = 3079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3051; + this.state = 3075; this.match(TrinoSqlParser.T__2); - this.state = 3052; + this.state = 3076; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); } } - this.state = 3057; + this.state = 3081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3058; + this.state = 3082; this.match(TrinoSqlParser.T__1); } } - this.state = 3062; + this.state = 3086; this.match(TrinoSqlParser.KW_VALUES); - this.state = 3063; + this.state = 3087; this.match(TrinoSqlParser.T__0); - this.state = 3064; + this.state = 3088; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); - this.state = 3069; + this.state = 3093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3065; + this.state = 3089; this.match(TrinoSqlParser.T__2); - this.state = 3066; + this.state = 3090; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); } } - this.state = 3071; + this.state = 3095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3072; + this.state = 3096; this.match(TrinoSqlParser.T__1); } break; @@ -12529,13 +12688,13 @@ export class TrinoSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 196, TrinoSqlParser.RULE_over); + this.enterRule(localContext, 208, TrinoSqlParser.RULE_over); try { this.enterOuterAlt(localContext, 1); { - this.state = 3076; + this.state = 3100; this.match(TrinoSqlParser.KW_OVER); - this.state = 3082; + this.state = 3106; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -12756,17 +12915,17 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.QUOTED_IDENTIFIER: case TrinoSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3077; + this.state = 3101; localContext._windowName = this.identifier(); } break; case TrinoSqlParser.T__0: { - this.state = 3078; + this.state = 3102; this.match(TrinoSqlParser.T__0); - this.state = 3079; + this.state = 3103; this.windowSpecification(); - this.state = 3080; + this.state = 3104; this.match(TrinoSqlParser.T__1); } break; @@ -12791,61 +12950,61 @@ export class TrinoSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 198, TrinoSqlParser.RULE_windowFrame); + this.enterRule(localContext, 210, TrinoSqlParser.RULE_windowFrame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3093; + this.state = 3117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168) { { - this.state = 3084; + this.state = 3108; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 3085; + this.state = 3109; this.measureDefinition(); - this.state = 3090; + this.state = 3114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3086; + this.state = 3110; this.match(TrinoSqlParser.T__2); - this.state = 3087; + this.state = 3111; this.measureDefinition(); } } - this.state = 3092; + this.state = 3116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3095; + this.state = 3119; this.frameExtent(); - this.state = 3099; + this.state = 3123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 3096; + this.state = 3120; this.match(TrinoSqlParser.KW_AFTER); - this.state = 3097; + this.state = 3121; this.match(TrinoSqlParser.KW_MATCH); - this.state = 3098; + this.state = 3122; this.skipTo(); } } - this.state = 3102; + this.state = 3126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124 || _la === 247) { { - this.state = 3101; + this.state = 3125; _la = this.tokenStream.LA(1); if(!(_la === 124 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -12857,72 +13016,72 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 3109; + this.state = 3133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3104; + this.state = 3128; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 3105; + this.state = 3129; this.match(TrinoSqlParser.T__0); - this.state = 3106; + this.state = 3130; this.rowPattern(0); - this.state = 3107; + this.state = 3131; this.match(TrinoSqlParser.T__1); } } - this.state = 3120; + this.state = 3144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 3111; + this.state = 3135; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 3112; + this.state = 3136; this.subsetDefinition(); - this.state = 3117; + this.state = 3141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3113; + this.state = 3137; this.match(TrinoSqlParser.T__2); - this.state = 3114; + this.state = 3138; this.subsetDefinition(); } } - this.state = 3119; + this.state = 3143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3131; + this.state = 3155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 3122; + this.state = 3146; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 3123; + this.state = 3147; this.variableDefinition(); - this.state = 3128; + this.state = 3152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3124; + this.state = 3148; this.match(TrinoSqlParser.T__2); - this.state = 3125; + this.state = 3149; this.variableDefinition(); } } - this.state = 3130; + this.state = 3154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12947,80 +13106,80 @@ export class TrinoSqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 200, TrinoSqlParser.RULE_frameExtent); + this.enterRule(localContext, 212, TrinoSqlParser.RULE_frameExtent); try { - this.state = 3157; + this.state = 3181; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3133; + this.state = 3157; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3134; + this.state = 3158; localContext._start = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3135; + this.state = 3159; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3136; + this.state = 3160; localContext._start = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3137; + this.state = 3161; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3138; + this.state = 3162; localContext._start = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3139; + this.state = 3163; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3140; + this.state = 3164; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3141; + this.state = 3165; localContext._start = this.frameBound(); - this.state = 3142; + this.state = 3166; this.match(TrinoSqlParser.KW_AND); - this.state = 3143; + this.state = 3167; localContext._end = this.frameBound(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3145; + this.state = 3169; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3146; + this.state = 3170; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3147; + this.state = 3171; localContext._start = this.frameBound(); - this.state = 3148; + this.state = 3172; this.match(TrinoSqlParser.KW_AND); - this.state = 3149; + this.state = 3173; localContext._end = this.frameBound(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3151; + this.state = 3175; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3152; + this.state = 3176; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3153; + this.state = 3177; localContext._start = this.frameBound(); - this.state = 3154; + this.state = 3178; this.match(TrinoSqlParser.KW_AND); - this.state = 3155; + this.state = 3179; localContext._end = this.frameBound(); } break; @@ -13042,19 +13201,19 @@ export class TrinoSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 202, TrinoSqlParser.RULE_frameBound); + this.enterRule(localContext, 214, TrinoSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3168; + this.state = 3192; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3159; + this.state = 3183; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3160; + this.state = 3184; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_PRECEDING); } break; @@ -13062,9 +13221,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3161; + this.state = 3185; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3162; + this.state = 3186; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_FOLLOWING); } break; @@ -13072,9 +13231,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3163; + this.state = 3187; this.match(TrinoSqlParser.KW_CURRENT); - this.state = 3164; + this.state = 3188; this.match(TrinoSqlParser.KW_ROW); } break; @@ -13082,9 +13241,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3165; + this.state = 3189; this.expression(); - this.state = 3166; + this.state = 3190; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 212)) { @@ -13124,8 +13283,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RowPatternContext(this.context, parentState); let previousContext = localContext; - let _startState = 204; - this.enterRecursionRule(localContext, 204, TrinoSqlParser.RULE_rowPattern, _p); + let _startState = 216; + this.enterRecursionRule(localContext, 216, TrinoSqlParser.RULE_rowPattern, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -13135,23 +13294,23 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 3171; + this.state = 3195; this.patternPrimary(); - this.state = 3173; + this.state = 3197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { - this.state = 3172; + this.state = 3196; this.patternQuantifier(); } break; } } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3182; + this.state = 3206; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 416, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 417, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -13159,18 +13318,18 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3180; + this.state = 3204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { localContext = new PatternConcatenationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3175; + this.state = 3199; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3176; + this.state = 3200; this.rowPattern(3); } break; @@ -13178,22 +13337,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new PatternAlternationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3177; + this.state = 3201; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3178; + this.state = 3202; this.match(TrinoSqlParser.T__10); - this.state = 3179; + this.state = 3203; this.rowPattern(2); } break; } } } - this.state = 3184; + this.state = 3208; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 416, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 417, this.context); } } } @@ -13213,17 +13372,17 @@ export class TrinoSqlParser extends SQLParserBase { } public patternPrimary(): PatternPrimaryContext { let localContext = new PatternPrimaryContext(this.context, this.state); - this.enterRule(localContext, 206, TrinoSqlParser.RULE_patternPrimary); + this.enterRule(localContext, 218, TrinoSqlParser.RULE_patternPrimary); let _la: number; try { - this.state = 3210; + this.state = 3234; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: localContext = new PatternVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3185; + this.state = 3209; this.identifier(); } break; @@ -13231,9 +13390,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new EmptyPatternContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3186; + this.state = 3210; this.match(TrinoSqlParser.T__0); - this.state = 3187; + this.state = 3211; this.match(TrinoSqlParser.T__1); } break; @@ -13241,29 +13400,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PatternPermutationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3188; + this.state = 3212; this.match(TrinoSqlParser.KW_PERMUTE); - this.state = 3189; + this.state = 3213; this.match(TrinoSqlParser.T__0); - this.state = 3190; + this.state = 3214; this.rowPattern(0); - this.state = 3195; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3191; + this.state = 3215; this.match(TrinoSqlParser.T__2); - this.state = 3192; + this.state = 3216; this.rowPattern(0); } } - this.state = 3197; + this.state = 3221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3198; + this.state = 3222; this.match(TrinoSqlParser.T__1); } break; @@ -13271,11 +13430,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupedPatternContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3200; + this.state = 3224; this.match(TrinoSqlParser.T__0); - this.state = 3201; + this.state = 3225; this.rowPattern(0); - this.state = 3202; + this.state = 3226; this.match(TrinoSqlParser.T__1); } break; @@ -13283,7 +13442,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionStartAnchorContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3204; + this.state = 3228; this.match(TrinoSqlParser.T__11); } break; @@ -13291,7 +13450,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionEndAnchorContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3205; + this.state = 3229; this.match(TrinoSqlParser.T__12); } break; @@ -13299,11 +13458,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExcludedPatternContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3206; + this.state = 3230; this.match(TrinoSqlParser.T__13); - this.state = 3207; + this.state = 3231; this.rowPattern(0); - this.state = 3208; + this.state = 3232; this.match(TrinoSqlParser.T__14); } break; @@ -13325,24 +13484,24 @@ export class TrinoSqlParser extends SQLParserBase { } public patternQuantifier(): PatternQuantifierContext { let localContext = new PatternQuantifierContext(this.context, this.state); - this.enterRule(localContext, 208, TrinoSqlParser.RULE_patternQuantifier); + this.enterRule(localContext, 220, TrinoSqlParser.RULE_patternQuantifier); let _la: number; try { - this.state = 3242; + this.state = 3266; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: localContext = new ZeroOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3212; + this.state = 3236; this.match(TrinoSqlParser.ASTERISK); - this.state = 3214; + this.state = 3238; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3213; + this.state = 3237; (localContext as ZeroOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13353,14 +13512,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new OneOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3216; + this.state = 3240; this.match(TrinoSqlParser.PLUS); - this.state = 3218; + this.state = 3242; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3217; + this.state = 3241; (localContext as OneOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13371,14 +13530,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ZeroOrOneQuantifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3220; + this.state = 3244; this.match(TrinoSqlParser.QUESTION_MARK); - this.state = 3222; + this.state = 3246; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 3221; + this.state = 3245; (localContext as ZeroOrOneQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13389,18 +13548,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3224; + this.state = 3248; this.match(TrinoSqlParser.T__15); - this.state = 3225; + this.state = 3249; (localContext as RangeQuantifierContext)._exactly = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3226; + this.state = 3250; this.match(TrinoSqlParser.T__16); - this.state = 3228; + this.state = 3252; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3227; + this.state = 3251; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13411,38 +13570,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3230; + this.state = 3254; this.match(TrinoSqlParser.T__15); - this.state = 3232; + this.state = 3256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3231; + this.state = 3255; (localContext as RangeQuantifierContext)._atLeast = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3234; + this.state = 3258; this.match(TrinoSqlParser.T__2); - this.state = 3236; + this.state = 3260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 3235; + this.state = 3259; (localContext as RangeQuantifierContext)._atMost = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3238; + this.state = 3262; this.match(TrinoSqlParser.T__16); - this.state = 3240; + this.state = 3264; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 3239; + this.state = 3263; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13467,15 +13626,15 @@ export class TrinoSqlParser extends SQLParserBase { } public updateAssignment(): UpdateAssignmentContext { let localContext = new UpdateAssignmentContext(this.context, this.state); - this.enterRule(localContext, 210, TrinoSqlParser.RULE_updateAssignment); + this.enterRule(localContext, 222, TrinoSqlParser.RULE_updateAssignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 3244; + this.state = 3268; this.identifier(); - this.state = 3245; + this.state = 3269; this.match(TrinoSqlParser.EQ); - this.state = 3246; + this.state = 3270; this.expression(); } } @@ -13495,19 +13654,19 @@ export class TrinoSqlParser extends SQLParserBase { } public explainOption(): ExplainOptionContext { let localContext = new ExplainOptionContext(this.context, this.state); - this.enterRule(localContext, 212, TrinoSqlParser.RULE_explainOption); + this.enterRule(localContext, 224, TrinoSqlParser.RULE_explainOption); let _la: number; try { - this.state = 3252; + this.state = 3276; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_FORMAT: localContext = new ExplainFormatContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3248; + this.state = 3272; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 3249; + this.state = 3273; (localContext as ExplainFormatContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 137 || _la === 263)) { @@ -13523,9 +13682,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3250; + this.state = 3274; this.match(TrinoSqlParser.KW_TYPE); - this.state = 3251; + this.state = 3275; (localContext as ExplainTypeContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 132 || _la === 160 || _la === 294)) { @@ -13557,21 +13716,21 @@ export class TrinoSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 214, TrinoSqlParser.RULE_transactionMode); + this.enterRule(localContext, 226, TrinoSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 3259; + this.state = 3283; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ISOLATION: localContext = new IsolationLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3254; + this.state = 3278; this.match(TrinoSqlParser.KW_ISOLATION); - this.state = 3255; + this.state = 3279; this.match(TrinoSqlParser.KW_LEVEL); - this.state = 3256; + this.state = 3280; this.levelOfIsolation(); } break; @@ -13579,9 +13738,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TransactionAccessModeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3257; + this.state = 3281; this.match(TrinoSqlParser.KW_READ); - this.state = 3258; + this.state = 3282; (localContext as TransactionAccessModeContext)._accessMode = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 192 || _la === 309)) { @@ -13613,18 +13772,18 @@ export class TrinoSqlParser extends SQLParserBase { } public levelOfIsolation(): LevelOfIsolationContext { let localContext = new LevelOfIsolationContext(this.context, this.state); - this.enterRule(localContext, 216, TrinoSqlParser.RULE_levelOfIsolation); + this.enterRule(localContext, 228, TrinoSqlParser.RULE_levelOfIsolation); try { - this.state = 3268; + this.state = 3292; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: localContext = new ReadUncommittedContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3261; + this.state = 3285; this.match(TrinoSqlParser.KW_READ); - this.state = 3262; + this.state = 3286; this.match(TrinoSqlParser.KW_UNCOMMITTED); } break; @@ -13632,9 +13791,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReadCommittedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3263; + this.state = 3287; this.match(TrinoSqlParser.KW_READ); - this.state = 3264; + this.state = 3288; this.match(TrinoSqlParser.KW_COMMITTED); } break; @@ -13642,9 +13801,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatableReadContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3265; + this.state = 3289; this.match(TrinoSqlParser.KW_REPEATABLE); - this.state = 3266; + this.state = 3290; this.match(TrinoSqlParser.KW_READ); } break; @@ -13652,7 +13811,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SerializableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3267; + this.state = 3291; this.match(TrinoSqlParser.KW_SERIALIZABLE); } break; @@ -13674,16 +13833,16 @@ export class TrinoSqlParser extends SQLParserBase { } public callArgument(): CallArgumentContext { let localContext = new CallArgumentContext(this.context, this.state); - this.enterRule(localContext, 218, TrinoSqlParser.RULE_callArgument); + this.enterRule(localContext, 230, TrinoSqlParser.RULE_callArgument); try { - this.state = 3275; + this.state = 3299; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: localContext = new PositionalArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3270; + this.state = 3294; this.expression(); } break; @@ -13691,11 +13850,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NamedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3271; + this.state = 3295; this.identifier(); - this.state = 3272; + this.state = 3296; this.match(TrinoSqlParser.T__5); - this.state = 3273; + this.state = 3297; this.expression(); } break; @@ -13717,20 +13876,20 @@ export class TrinoSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 220, TrinoSqlParser.RULE_pathElement); + this.enterRule(localContext, 232, TrinoSqlParser.RULE_pathElement); try { - this.state = 3282; + this.state = 3306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3277; + this.state = 3301; this.identifier(); - this.state = 3278; + this.state = 3302; this.match(TrinoSqlParser.T__3); - this.state = 3279; + this.state = 3303; this.identifier(); } break; @@ -13738,7 +13897,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3281; + this.state = 3305; this.identifier(); } break; @@ -13760,26 +13919,26 @@ export class TrinoSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 222, TrinoSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 234, TrinoSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3284; + this.state = 3308; this.pathElement(); - this.state = 3289; + this.state = 3313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3285; + this.state = 3309; this.match(TrinoSqlParser.T__2); - this.state = 3286; + this.state = 3310; this.pathElement(); } } - this.state = 3291; + this.state = 3315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13801,34 +13960,34 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSpecification(): FunctionSpecificationContext { let localContext = new FunctionSpecificationContext(this.context, this.state); - this.enterRule(localContext, 224, TrinoSqlParser.RULE_functionSpecification); + this.enterRule(localContext, 236, TrinoSqlParser.RULE_functionSpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3292; + this.state = 3316; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 3293; + this.state = 3317; this.functionDeclaration(); - this.state = 3294; + this.state = 3318; this.returnsClause(); - this.state = 3298; + this.state = 3322; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3295; + this.state = 3319; this.routineCharacteristic(); } } } - this.state = 3300; + this.state = 3324; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); } - this.state = 3301; + this.state = 3325; this.controlStatement(); } } @@ -13848,42 +14007,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionDeclaration(): FunctionDeclarationContext { let localContext = new FunctionDeclarationContext(this.context, this.state); - this.enterRule(localContext, 226, TrinoSqlParser.RULE_functionDeclaration); + this.enterRule(localContext, 238, TrinoSqlParser.RULE_functionDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3303; + this.state = 3327; this.functionNameCreate(); - this.state = 3304; + this.state = 3328; this.match(TrinoSqlParser.T__0); - this.state = 3313; + this.state = 3337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3305; + this.state = 3329; this.parameterDeclaration(); - this.state = 3310; + this.state = 3334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3306; + this.state = 3330; this.match(TrinoSqlParser.T__2); - this.state = 3307; + this.state = 3331; this.parameterDeclaration(); } } - this.state = 3312; + this.state = 3336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3315; + this.state = 3339; this.match(TrinoSqlParser.T__1); } } @@ -13903,42 +14062,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSignature(): FunctionSignatureContext { let localContext = new FunctionSignatureContext(this.context, this.state); - this.enterRule(localContext, 228, TrinoSqlParser.RULE_functionSignature); + this.enterRule(localContext, 240, TrinoSqlParser.RULE_functionSignature); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3317; + this.state = 3341; this.functionName(); - this.state = 3318; + this.state = 3342; this.match(TrinoSqlParser.T__0); - this.state = 3327; + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3319; + this.state = 3343; this.parameterDeclaration(); - this.state = 3324; + this.state = 3348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3320; + this.state = 3344; this.match(TrinoSqlParser.T__2); - this.state = 3321; + this.state = 3345; this.parameterDeclaration(); } } - this.state = 3326; + this.state = 3350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3329; + this.state = 3353; this.match(TrinoSqlParser.T__1); } } @@ -13958,21 +14117,21 @@ export class TrinoSqlParser extends SQLParserBase { } public parameterDeclaration(): ParameterDeclarationContext { let localContext = new ParameterDeclarationContext(this.context, this.state); - this.enterRule(localContext, 230, TrinoSqlParser.RULE_parameterDeclaration); + this.enterRule(localContext, 242, TrinoSqlParser.RULE_parameterDeclaration); try { this.enterOuterAlt(localContext, 1); { - this.state = 3332; + this.state = 3356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3331; + this.state = 3355; this.identifier(); } break; } - this.state = 3334; + this.state = 3358; this.type_(0); } } @@ -13992,13 +14151,13 @@ export class TrinoSqlParser extends SQLParserBase { } public returnsClause(): ReturnsClauseContext { let localContext = new ReturnsClauseContext(this.context, this.state); - this.enterRule(localContext, 232, TrinoSqlParser.RULE_returnsClause); + this.enterRule(localContext, 244, TrinoSqlParser.RULE_returnsClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3336; + this.state = 3360; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3337; + this.state = 3361; this.type_(0); } } @@ -14018,19 +14177,19 @@ export class TrinoSqlParser extends SQLParserBase { } public routineCharacteristic(): RoutineCharacteristicContext { let localContext = new RoutineCharacteristicContext(this.context, this.state); - this.enterRule(localContext, 234, TrinoSqlParser.RULE_routineCharacteristic); + this.enterRule(localContext, 246, TrinoSqlParser.RULE_routineCharacteristic); let _la: number; try { - this.state = 3358; + this.state = 3382; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LANGUAGE: localContext = new LanguageCharacteristicContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3339; + this.state = 3363; this.match(TrinoSqlParser.KW_LANGUAGE); - this.state = 3340; + this.state = 3364; this.identifier(); } break; @@ -14039,17 +14198,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeterministicCharacteristicContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3342; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 182) { { - this.state = 3341; + this.state = 3365; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 3344; + this.state = 3368; this.match(TrinoSqlParser.KW_DETERMINISTIC); } break; @@ -14057,15 +14216,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReturnsNullOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3345; + this.state = 3369; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3346; + this.state = 3370; this.match(TrinoSqlParser.KW_NULL); - this.state = 3347; + this.state = 3371; this.match(TrinoSqlParser.KW_ON); - this.state = 3348; + this.state = 3372; this.match(TrinoSqlParser.KW_NULL); - this.state = 3349; + this.state = 3373; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14073,13 +14232,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CalledOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3350; + this.state = 3374; this.match(TrinoSqlParser.KW_CALLED); - this.state = 3351; + this.state = 3375; this.match(TrinoSqlParser.KW_ON); - this.state = 3352; + this.state = 3376; this.match(TrinoSqlParser.KW_NULL); - this.state = 3353; + this.state = 3377; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14087,9 +14246,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SecurityCharacteristicContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3354; + this.state = 3378; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 3355; + this.state = 3379; _la = this.tokenStream.LA(1); if(!(_la === 72 || _la === 131)) { this.errorHandler.recoverInline(this); @@ -14104,9 +14263,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentCharacteristicContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3356; + this.state = 3380; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 3357; + this.state = 3381; this.string_(); } break; @@ -14130,20 +14289,20 @@ export class TrinoSqlParser extends SQLParserBase { } public controlStatement(): ControlStatementContext { let localContext = new ControlStatementContext(this.context, this.state); - this.enterRule(localContext, 236, TrinoSqlParser.RULE_controlStatement); + this.enterRule(localContext, 248, TrinoSqlParser.RULE_controlStatement); let _la: number; try { let alternative: number; - this.state = 3459; + this.state = 3483; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: localContext = new ReturnStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3360; + this.state = 3384; this.match(TrinoSqlParser.KW_RETURN); - this.state = 3361; + this.state = 3385; this.valueExpression(0); } break; @@ -14151,13 +14310,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AssignmentStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3362; + this.state = 3386; this.match(TrinoSqlParser.KW_SET); - this.state = 3363; + this.state = 3387; this.identifier(); - this.state = 3364; + this.state = 3388; this.match(TrinoSqlParser.EQ); - this.state = 3365; + this.state = 3389; this.expression(); } break; @@ -14165,37 +14324,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseStatementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3367; + this.state = 3391; this.match(TrinoSqlParser.KW_CASE); - this.state = 3368; + this.state = 3392; this.expression(); - this.state = 3370; + this.state = 3394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3369; + this.state = 3393; this.caseStatementWhenClause(); } } - this.state = 3372; + this.state = 3396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3375; + this.state = 3399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3374; + this.state = 3398; this.elseClause(); } } - this.state = 3377; + this.state = 3401; this.match(TrinoSqlParser.KW_END); - this.state = 3378; + this.state = 3402; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14203,35 +14362,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseStatementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3380; + this.state = 3404; this.match(TrinoSqlParser.KW_CASE); - this.state = 3382; + this.state = 3406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3381; + this.state = 3405; this.caseStatementWhenClause(); } } - this.state = 3384; + this.state = 3408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 300); - this.state = 3387; + this.state = 3411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3386; + this.state = 3410; this.elseClause(); } } - this.state = 3389; + this.state = 3413; this.match(TrinoSqlParser.KW_END); - this.state = 3390; + this.state = 3414; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14239,41 +14398,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IfStatementContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3392; + this.state = 3416; this.match(TrinoSqlParser.KW_IF); - this.state = 3393; + this.state = 3417; this.expression(); - this.state = 3394; + this.state = 3418; this.match(TrinoSqlParser.KW_THEN); - this.state = 3395; + this.state = 3419; this.sqlStatementList(); - this.state = 3399; + this.state = 3423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 86) { { { - this.state = 3396; + this.state = 3420; this.elseIfClause(); } } - this.state = 3401; + this.state = 3425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3403; + this.state = 3427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84) { { - this.state = 3402; + this.state = 3426; this.elseClause(); } } - this.state = 3405; + this.state = 3429; this.match(TrinoSqlParser.KW_END); - this.state = 3406; + this.state = 3430; this.match(TrinoSqlParser.KW_IF); } break; @@ -14281,9 +14440,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IterateStatementContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3408; + this.state = 3432; this.match(TrinoSqlParser.KW_ITERATE); - this.state = 3409; + this.state = 3433; this.identifier(); } break; @@ -14291,9 +14450,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LeaveStatementContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3410; + this.state = 3434; this.match(TrinoSqlParser.KW_LEAVE); - this.state = 3411; + this.state = 3435; this.identifier(); } break; @@ -14301,37 +14460,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CompoundStatementContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3412; + this.state = 3436; this.match(TrinoSqlParser.KW_BEGIN); - this.state = 3418; + this.state = 3442; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3413; + this.state = 3437; this.variableDeclaration(); - this.state = 3414; + this.state = 3438; this.match(TrinoSqlParser.SEMICOLON); } } } - this.state = 3420; + this.state = 3444; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 448, this.context); } - this.state = 3422; + this.state = 3446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4286249823) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0) || ((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 15) !== 0)) { { - this.state = 3421; + this.state = 3445; this.sqlStatementList(); } } - this.state = 3424; + this.state = 3448; this.match(TrinoSqlParser.KW_END); } break; @@ -14339,25 +14498,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LoopStatementContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3428; + this.state = 3452; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3425; + this.state = 3449; (localContext as LoopStatementContext)._label = this.identifier(); - this.state = 3426; + this.state = 3450; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3430; + this.state = 3454; this.match(TrinoSqlParser.KW_LOOP); - this.state = 3431; + this.state = 3455; this.sqlStatementList(); - this.state = 3432; + this.state = 3456; this.match(TrinoSqlParser.KW_END); - this.state = 3433; + this.state = 3457; this.match(TrinoSqlParser.KW_LOOP); } break; @@ -14365,29 +14524,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new WhileStatementContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3438; + this.state = 3462; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 3435; + this.state = 3459; (localContext as WhileStatementContext)._label = this.identifier(); - this.state = 3436; + this.state = 3460; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3440; + this.state = 3464; this.match(TrinoSqlParser.KW_WHILE); - this.state = 3441; + this.state = 3465; this.expression(); - this.state = 3442; + this.state = 3466; this.match(TrinoSqlParser.KW_DO); - this.state = 3443; + this.state = 3467; this.sqlStatementList(); - this.state = 3444; + this.state = 3468; this.match(TrinoSqlParser.KW_END); - this.state = 3445; + this.state = 3469; this.match(TrinoSqlParser.KW_WHILE); } break; @@ -14395,29 +14554,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatStatementContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3450; + this.state = 3474; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3447; + this.state = 3471; (localContext as RepeatStatementContext)._label = this.identifier(); - this.state = 3448; + this.state = 3472; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3452; + this.state = 3476; this.match(TrinoSqlParser.KW_REPEAT); - this.state = 3453; + this.state = 3477; this.sqlStatementList(); - this.state = 3454; + this.state = 3478; this.match(TrinoSqlParser.KW_UNTIL); - this.state = 3455; + this.state = 3479; this.expression(); - this.state = 3456; + this.state = 3480; this.match(TrinoSqlParser.KW_END); - this.state = 3457; + this.state = 3481; this.match(TrinoSqlParser.KW_REPEAT); } break; @@ -14439,17 +14598,17 @@ export class TrinoSqlParser extends SQLParserBase { } public caseStatementWhenClause(): CaseStatementWhenClauseContext { let localContext = new CaseStatementWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 238, TrinoSqlParser.RULE_caseStatementWhenClause); + this.enterRule(localContext, 250, TrinoSqlParser.RULE_caseStatementWhenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3485; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3462; + this.state = 3486; this.expression(); - this.state = 3463; + this.state = 3487; this.match(TrinoSqlParser.KW_THEN); - this.state = 3464; + this.state = 3488; this.sqlStatementList(); } } @@ -14469,17 +14628,17 @@ export class TrinoSqlParser extends SQLParserBase { } public elseIfClause(): ElseIfClauseContext { let localContext = new ElseIfClauseContext(this.context, this.state); - this.enterRule(localContext, 240, TrinoSqlParser.RULE_elseIfClause); + this.enterRule(localContext, 252, TrinoSqlParser.RULE_elseIfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3466; + this.state = 3490; this.match(TrinoSqlParser.KW_ELSEIF); - this.state = 3467; + this.state = 3491; this.expression(); - this.state = 3468; + this.state = 3492; this.match(TrinoSqlParser.KW_THEN); - this.state = 3469; + this.state = 3493; this.sqlStatementList(); } } @@ -14499,13 +14658,13 @@ export class TrinoSqlParser extends SQLParserBase { } public elseClause(): ElseClauseContext { let localContext = new ElseClauseContext(this.context, this.state); - this.enterRule(localContext, 242, TrinoSqlParser.RULE_elseClause); + this.enterRule(localContext, 254, TrinoSqlParser.RULE_elseClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3471; + this.state = 3495; this.match(TrinoSqlParser.KW_ELSE); - this.state = 3472; + this.state = 3496; this.sqlStatementList(); } } @@ -14525,41 +14684,41 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDeclaration(): VariableDeclarationContext { let localContext = new VariableDeclarationContext(this.context, this.state); - this.enterRule(localContext, 244, TrinoSqlParser.RULE_variableDeclaration); + this.enterRule(localContext, 256, TrinoSqlParser.RULE_variableDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3474; + this.state = 3498; this.match(TrinoSqlParser.KW_DECLARE); - this.state = 3475; + this.state = 3499; this.identifier(); - this.state = 3480; + this.state = 3504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3476; + this.state = 3500; this.match(TrinoSqlParser.T__2); - this.state = 3477; + this.state = 3501; this.identifier(); } } - this.state = 3482; + this.state = 3506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3483; + this.state = 3507; this.type_(0); - this.state = 3486; + this.state = 3510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 70) { { - this.state = 3484; + this.state = 3508; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 3485; + this.state = 3509; this.valueExpression(0); } } @@ -14582,12 +14741,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sqlStatementList(): SqlStatementListContext { let localContext = new SqlStatementListContext(this.context, this.state); - this.enterRule(localContext, 246, TrinoSqlParser.RULE_sqlStatementList); + this.enterRule(localContext, 258, TrinoSqlParser.RULE_sqlStatementList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3491; + this.state = 3515; this.errorHandler.sync(this); alternative = 1; do { @@ -14595,9 +14754,9 @@ export class TrinoSqlParser extends SQLParserBase { case 1: { { - this.state = 3488; + this.state = 3512; this.controlStatement(); - this.state = 3489; + this.state = 3513; this.match(TrinoSqlParser.SEMICOLON); } } @@ -14605,9 +14764,9 @@ export class TrinoSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3493; + this.state = 3517; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -14627,50 +14786,50 @@ export class TrinoSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 248, TrinoSqlParser.RULE_privilege); + this.enterRule(localContext, 260, TrinoSqlParser.RULE_privilege); try { - this.state = 3501; + this.state = 3525; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3495; + this.state = 3519; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3496; + this.state = 3520; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3497; + this.state = 3521; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3498; + this.state = 3522; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3499; + this.state = 3523; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3500; + this.state = 3524; this.identifier(); } break; @@ -14692,29 +14851,29 @@ export class TrinoSqlParser extends SQLParserBase { } public entityKind(): EntityKindContext { let localContext = new EntityKindContext(this.context, this.state); - this.enterRule(localContext, 250, TrinoSqlParser.RULE_entityKind); + this.enterRule(localContext, 262, TrinoSqlParser.RULE_entityKind); try { - this.state = 3506; + this.state = 3530; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3503; + this.state = 3527; this.match(TrinoSqlParser.KW_TABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3504; + this.state = 3528; this.match(TrinoSqlParser.KW_SCHEMA); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3505; + this.state = 3529; this.identifier(); } break; @@ -14736,21 +14895,21 @@ export class TrinoSqlParser extends SQLParserBase { } public grantObject(): GrantObjectContext { let localContext = new GrantObjectContext(this.context, this.state); - this.enterRule(localContext, 252, TrinoSqlParser.RULE_grantObject); + this.enterRule(localContext, 264, TrinoSqlParser.RULE_grantObject); try { this.enterOuterAlt(localContext, 1); { - this.state = 3509; + this.state = 3533; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: { - this.state = 3508; + this.state = 3532; this.entityKind(); } break; } - this.state = 3511; + this.state = 3535; this.qualifiedName(); } } @@ -14770,22 +14929,22 @@ export class TrinoSqlParser extends SQLParserBase { } public tableOrViewName(): TableOrViewNameContext { let localContext = new TableOrViewNameContext(this.context, this.state); - this.enterRule(localContext, 254, TrinoSqlParser.RULE_tableOrViewName); + this.enterRule(localContext, 266, TrinoSqlParser.RULE_tableOrViewName); try { - this.state = 3515; + this.state = 3539; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3513; + this.state = 3537; this.tableRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3514; + this.state = 3538; this.viewRef(); } break; @@ -14807,41 +14966,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableRef(): TableRefContext { let localContext = new TableRefContext(this.context, this.state); - this.enterRule(localContext, 256, TrinoSqlParser.RULE_tableRef); + this.enterRule(localContext, 268, TrinoSqlParser.RULE_tableRef); try { - this.state = 3528; + this.state = 3552; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3517; + this.state = 3541; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3518; + this.state = 3542; localContext._schema = this.identifier(); - this.state = 3519; + this.state = 3543; this.match(TrinoSqlParser.T__3); - this.state = 3520; + this.state = 3544; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3522; + this.state = 3546; localContext._catalog = this.identifier(); - this.state = 3523; + this.state = 3547; this.match(TrinoSqlParser.T__3); - this.state = 3524; + this.state = 3548; localContext._schema = this.identifier(); - this.state = 3525; + this.state = 3549; this.match(TrinoSqlParser.T__3); - this.state = 3526; + this.state = 3550; localContext._table = this.identifier(); } break; @@ -14863,41 +15022,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 258, TrinoSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 270, TrinoSqlParser.RULE_tableNameCreate); try { - this.state = 3541; + this.state = 3565; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3530; + this.state = 3554; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3531; + this.state = 3555; localContext._schema = this.identifier(); - this.state = 3532; + this.state = 3556; this.match(TrinoSqlParser.T__3); - this.state = 3533; + this.state = 3557; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3535; + this.state = 3559; localContext._catalog = this.identifier(); - this.state = 3536; + this.state = 3560; this.match(TrinoSqlParser.T__3); - this.state = 3537; + this.state = 3561; localContext._schema = this.identifier(); - this.state = 3538; + this.state = 3562; this.match(TrinoSqlParser.T__3); - this.state = 3539; + this.state = 3563; localContext._table = this.identifier(); } break; @@ -14919,41 +15078,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewRef(): ViewRefContext { let localContext = new ViewRefContext(this.context, this.state); - this.enterRule(localContext, 260, TrinoSqlParser.RULE_viewRef); + this.enterRule(localContext, 272, TrinoSqlParser.RULE_viewRef); try { - this.state = 3554; + this.state = 3578; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3543; + this.state = 3567; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3544; + this.state = 3568; localContext._schema = this.identifier(); - this.state = 3545; + this.state = 3569; this.match(TrinoSqlParser.T__3); - this.state = 3546; + this.state = 3570; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3548; + this.state = 3572; localContext._catalog = this.identifier(); - this.state = 3549; + this.state = 3573; this.match(TrinoSqlParser.T__3); - this.state = 3550; + this.state = 3574; localContext._schema = this.identifier(); - this.state = 3551; + this.state = 3575; this.match(TrinoSqlParser.T__3); - this.state = 3552; + this.state = 3576; localContext._view = this.identifier(); } break; @@ -14975,41 +15134,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 262, TrinoSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 274, TrinoSqlParser.RULE_viewNameCreate); try { - this.state = 3567; + this.state = 3591; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3556; + this.state = 3580; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3557; + this.state = 3581; localContext._schema = this.identifier(); - this.state = 3558; + this.state = 3582; this.match(TrinoSqlParser.T__3); - this.state = 3559; + this.state = 3583; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3561; + this.state = 3585; localContext._catalog = this.identifier(); - this.state = 3562; + this.state = 3586; this.match(TrinoSqlParser.T__3); - this.state = 3563; + this.state = 3587; localContext._schema = this.identifier(); - this.state = 3564; + this.state = 3588; this.match(TrinoSqlParser.T__3); - this.state = 3565; + this.state = 3589; localContext._view = this.identifier(); } break; @@ -15031,26 +15190,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaRef(): SchemaRefContext { let localContext = new SchemaRefContext(this.context, this.state); - this.enterRule(localContext, 264, TrinoSqlParser.RULE_schemaRef); + this.enterRule(localContext, 276, TrinoSqlParser.RULE_schemaRef); try { - this.state = 3574; + this.state = 3598; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3569; + this.state = 3593; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3570; + this.state = 3594; localContext._catalog = this.identifier(); - this.state = 3571; + this.state = 3595; this.match(TrinoSqlParser.T__3); - this.state = 3572; + this.state = 3596; localContext._schema = this.identifier(); } break; @@ -15072,26 +15231,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaNameCreate(): SchemaNameCreateContext { let localContext = new SchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 266, TrinoSqlParser.RULE_schemaNameCreate); + this.enterRule(localContext, 278, TrinoSqlParser.RULE_schemaNameCreate); try { - this.state = 3581; + this.state = 3605; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3576; + this.state = 3600; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3577; + this.state = 3601; localContext._catalog = this.identifier(); - this.state = 3578; + this.state = 3602; this.match(TrinoSqlParser.T__3); - this.state = 3579; + this.state = 3603; localContext._schema = this.identifier(); } break; @@ -15113,11 +15272,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogRef(): CatalogRefContext { let localContext = new CatalogRefContext(this.context, this.state); - this.enterRule(localContext, 268, TrinoSqlParser.RULE_catalogRef); + this.enterRule(localContext, 280, TrinoSqlParser.RULE_catalogRef); try { this.enterOuterAlt(localContext, 1); { - this.state = 3583; + this.state = 3607; localContext._catalog = this.identifier(); } } @@ -15137,11 +15296,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogNameCreate(): CatalogNameCreateContext { let localContext = new CatalogNameCreateContext(this.context, this.state); - this.enterRule(localContext, 270, TrinoSqlParser.RULE_catalogNameCreate); + this.enterRule(localContext, 282, TrinoSqlParser.RULE_catalogNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3585; + this.state = 3609; localContext._catalog = this.identifier(); } } @@ -15161,11 +15320,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 272, TrinoSqlParser.RULE_functionName); + this.enterRule(localContext, 284, TrinoSqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3587; + this.state = 3611; this.qualifiedName(); } } @@ -15185,11 +15344,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 274, TrinoSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 286, TrinoSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3589; + this.state = 3613; this.qualifiedName(); } } @@ -15209,22 +15368,22 @@ export class TrinoSqlParser extends SQLParserBase { } public columnRef(): ColumnRefContext { let localContext = new ColumnRefContext(this.context, this.state); - this.enterRule(localContext, 276, TrinoSqlParser.RULE_columnRef); + this.enterRule(localContext, 288, TrinoSqlParser.RULE_columnRef); try { - this.state = 3593; + this.state = 3617; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3591; + this.state = 3615; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3616; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -15248,11 +15407,11 @@ export class TrinoSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 278, TrinoSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 290, TrinoSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3595; + this.state = 3619; this.identifier(); } } @@ -15272,30 +15431,30 @@ export class TrinoSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 280, TrinoSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 292, TrinoSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3597; + this.state = 3621; this.identifier(); - this.state = 3602; + this.state = 3626; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 467, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 468, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3598; + this.state = 3622; this.match(TrinoSqlParser.T__3); - this.state = 3599; + this.state = 3623; this.identifier(); } } } - this.state = 3604; + this.state = 3628; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 467, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 468, this.context); } } } @@ -15315,19 +15474,19 @@ export class TrinoSqlParser extends SQLParserBase { } public queryPeriod(): QueryPeriodContext { let localContext = new QueryPeriodContext(this.context, this.state); - this.enterRule(localContext, 282, TrinoSqlParser.RULE_queryPeriod); + this.enterRule(localContext, 294, TrinoSqlParser.RULE_queryPeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 3605; + this.state = 3629; this.match(TrinoSqlParser.KW_FOR); - this.state = 3606; + this.state = 3630; this.rangeType(); - this.state = 3607; + this.state = 3631; this.match(TrinoSqlParser.KW_AS); - this.state = 3608; + this.state = 3632; this.match(TrinoSqlParser.KW_OF); - this.state = 3609; + this.state = 3633; localContext._end = this.valueExpression(0); } } @@ -15347,12 +15506,12 @@ export class TrinoSqlParser extends SQLParserBase { } public rangeType(): RangeTypeContext { let localContext = new RangeTypeContext(this.context, this.state); - this.enterRule(localContext, 284, TrinoSqlParser.RULE_rangeType); + this.enterRule(localContext, 296, TrinoSqlParser.RULE_rangeType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3611; + this.state = 3635; _la = this.tokenStream.LA(1); if(!(_la === 268 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -15379,9 +15538,9 @@ export class TrinoSqlParser extends SQLParserBase { } public grantor(): GrantorContext { let localContext = new GrantorContext(this.context, this.state); - this.enterRule(localContext, 286, TrinoSqlParser.RULE_grantor); + this.enterRule(localContext, 298, TrinoSqlParser.RULE_grantor); try { - this.state = 3616; + this.state = 3640; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -15604,7 +15763,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SpecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3613; + this.state = 3637; this.principal(); } break; @@ -15612,7 +15771,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserGrantorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3614; + this.state = 3638; this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -15620,7 +15779,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRoleGrantorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3615; + this.state = 3639; this.match(TrinoSqlParser.KW_CURRENT_ROLE); } break; @@ -15644,16 +15803,16 @@ export class TrinoSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 288, TrinoSqlParser.RULE_principal); + this.enterRule(localContext, 300, TrinoSqlParser.RULE_principal); try { - this.state = 3623; + this.state = 3647; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: localContext = new UnspecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3618; + this.state = 3642; this.identifier(); } break; @@ -15661,9 +15820,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3619; + this.state = 3643; this.match(TrinoSqlParser.KW_USER); - this.state = 3620; + this.state = 3644; this.identifier(); } break; @@ -15671,9 +15830,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3621; + this.state = 3645; this.match(TrinoSqlParser.KW_ROLE); - this.state = 3622; + this.state = 3646; this.identifier(); } break; @@ -15695,26 +15854,26 @@ export class TrinoSqlParser extends SQLParserBase { } public roles(): RolesContext { let localContext = new RolesContext(this.context, this.state); - this.enterRule(localContext, 290, TrinoSqlParser.RULE_roles); + this.enterRule(localContext, 302, TrinoSqlParser.RULE_roles); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3625; + this.state = 3649; this.identifier(); - this.state = 3630; + this.state = 3654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3626; + this.state = 3650; this.match(TrinoSqlParser.T__2); - this.state = 3627; + this.state = 3651; this.identifier(); } } - this.state = 3632; + this.state = 3656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15736,57 +15895,57 @@ export class TrinoSqlParser extends SQLParserBase { } public privilegeOrRole(): PrivilegeOrRoleContext { let localContext = new PrivilegeOrRoleContext(this.context, this.state); - this.enterRule(localContext, 292, TrinoSqlParser.RULE_privilegeOrRole); + this.enterRule(localContext, 304, TrinoSqlParser.RULE_privilegeOrRole); try { - this.state = 3640; + this.state = 3664; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3633; + this.state = 3657; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3634; + this.state = 3658; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3635; + this.state = 3659; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3636; + this.state = 3660; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3637; + this.state = 3661; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3638; + this.state = 3662; this.match(TrinoSqlParser.KW_EXECUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3639; + this.state = 3663; this.identifier(); } break; @@ -15808,16 +15967,16 @@ export class TrinoSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 294, TrinoSqlParser.RULE_identifier); + this.enterRule(localContext, 306, TrinoSqlParser.RULE_identifier); try { - this.state = 3647; + this.state = 3671; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3642; + this.state = 3666; this.match(TrinoSqlParser.IDENTIFIER); } break; @@ -15825,7 +15984,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3643; + this.state = 3667; this.match(TrinoSqlParser.QUOTED_IDENTIFIER); } break; @@ -16045,7 +16204,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3644; + this.state = 3668; this.nonReserved(); } break; @@ -16053,7 +16212,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3645; + this.state = 3669; this.match(TrinoSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -16061,7 +16220,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3646; + this.state = 3670; this.match(TrinoSqlParser.DIGIT_IDENTIFIER); } break; @@ -16085,27 +16244,27 @@ export class TrinoSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 296, TrinoSqlParser.RULE_number); + this.enterRule(localContext, 308, TrinoSqlParser.RULE_number); let _la: number; try { - this.state = 3661; + this.state = 3685; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3650; + this.state = 3674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3649; + this.state = 3673; this.match(TrinoSqlParser.MINUS); } } - this.state = 3652; + this.state = 3676; this.match(TrinoSqlParser.DECIMAL_VALUE); } break; @@ -16113,17 +16272,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3654; + this.state = 3678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3653; + this.state = 3677; this.match(TrinoSqlParser.MINUS); } } - this.state = 3656; + this.state = 3680; this.match(TrinoSqlParser.DOUBLE_VALUE); } break; @@ -16131,17 +16290,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3658; + this.state = 3682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319) { { - this.state = 3657; + this.state = 3681; this.match(TrinoSqlParser.MINUS); } } - this.state = 3660; + this.state = 3684; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -16163,9 +16322,9 @@ export class TrinoSqlParser extends SQLParserBase { } public authorizationUser(): AuthorizationUserContext { let localContext = new AuthorizationUserContext(this.context, this.state); - this.enterRule(localContext, 298, TrinoSqlParser.RULE_authorizationUser); + this.enterRule(localContext, 310, TrinoSqlParser.RULE_authorizationUser); try { - this.state = 3665; + this.state = 3689; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -16388,7 +16547,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IdentifierUserContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3663; + this.state = 3687; this.identifier(); } break; @@ -16397,7 +16556,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3664; + this.state = 3688; this.string_(); } break; @@ -16421,12 +16580,12 @@ export class TrinoSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 300, TrinoSqlParser.RULE_nonReserved); + this.enterRule(localContext, 312, TrinoSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3667; + this.state = 3691; _la = this.tokenStream.LA(1); if(!(((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 51)) & ~0x1F) === 0 && ((1 << (_la - 51)) & 3988635683) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2680939671) !== 0) || ((((_la - 118)) & ~0x1F) === 0 && ((1 << (_la - 118)) & 4228606319) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 2143288491) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 3221214143) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290510815) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 4001298431) !== 0) || ((((_la - 282)) & ~0x1F) === 0 && ((1 << (_la - 282)) & 1068744439) !== 0))) { this.errorHandler.recoverInline(this); @@ -16456,19 +16615,19 @@ export class TrinoSqlParser extends SQLParserBase { switch (ruleIndex) { case 23: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); - case 36: + case 41: return this.relation_sempred(localContext as RelationContext, predIndex); - case 69: + case 75: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 71: + case 77: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 72: + case 78: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 92: + case 98: return this.type_sempred(localContext as TypeContext, predIndex); - case 102: + case 108: return this.rowPattern_sempred(localContext as RowPatternContext, predIndex); - case 138: + case 144: return this.columnRef_sempred(localContext as ColumnRefContext, predIndex); } return true; @@ -16545,7 +16704,7 @@ export class TrinoSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,340,3670,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,340,3694,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, @@ -16569,306 +16728,310 @@ export class TrinoSqlParser extends SQLParserBase { 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,1,0,5,0,304,8,0,10,0,12,0,307, - 9,0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,315,8,2,1,3,1,3,3,3,319,8,3,1,4, - 1,4,3,4,323,8,4,1,5,1,5,3,5,327,8,5,1,6,1,6,3,6,331,8,6,1,7,1,7, - 1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,344,8,8,1,8,1,8,1,8,1,8, - 1,8,3,8,351,8,8,1,8,1,8,3,8,355,8,8,1,8,1,8,3,8,359,8,8,1,8,1,8, - 1,8,1,8,3,8,365,8,8,1,8,1,8,3,8,369,8,8,1,8,1,8,1,8,1,8,1,8,3,8, - 376,8,8,1,8,1,8,1,8,3,8,381,8,8,1,8,1,8,3,8,385,8,8,1,8,1,8,1,8, - 1,8,3,8,391,8,8,1,8,1,8,3,8,395,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,414,8,8,1,8,1,8,1,8, - 1,8,3,8,420,8,8,1,8,1,8,3,8,424,8,8,1,8,1,8,3,8,428,8,8,1,8,1,8, - 3,8,432,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,440,8,8,1,8,1,8,3,8,444, - 8,8,1,8,3,8,447,8,8,1,8,1,8,1,8,3,8,452,8,8,1,8,1,8,1,8,1,8,3,8, - 458,8,8,1,8,1,8,1,8,1,8,1,8,5,8,465,8,8,10,8,12,8,468,9,8,1,8,1, - 8,1,8,3,8,473,8,8,1,8,1,8,3,8,477,8,8,1,8,1,8,1,8,1,8,3,8,483,8, - 8,1,8,1,8,1,8,1,8,1,8,3,8,490,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3, - 8,499,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,511,8,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,520,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,529,8,8,1,8,1,8,1,8,1,8,3,8,535,8,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,546,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,554,8,8,1, - 8,1,8,1,8,1,8,1,8,1,8,3,8,562,8,8,1,8,1,8,1,8,1,8,1,8,3,8,569,8, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,579,8,8,1,8,1,8,1,8,1,8,1, - 8,3,8,586,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,594,8,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,609,8,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,642,8,8,10,8,12, - 8,645,9,8,3,8,647,8,8,1,8,3,8,650,8,8,1,8,1,8,3,8,654,8,8,1,8,1, - 8,1,8,1,8,3,8,660,8,8,1,8,1,8,1,8,3,8,665,8,8,1,8,1,8,1,8,1,8,1, - 8,3,8,672,8,8,1,8,1,8,1,8,1,8,3,8,678,8,8,1,8,1,8,3,8,682,8,8,1, - 8,1,8,3,8,686,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,694,8,8,1,8,1,8,1, - 8,1,8,3,8,700,8,8,1,8,1,8,3,8,704,8,8,1,8,1,8,3,8,708,8,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,722,8,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,730,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,749,8,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5, - 8,772,8,8,10,8,12,8,775,9,8,3,8,777,8,8,1,8,1,8,1,8,1,8,1,8,3,8, - 784,8,8,1,8,1,8,1,8,1,8,1,8,3,8,791,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,800,8,8,1,8,1,8,3,8,804,8,8,1,8,1,8,1,8,1,8,1,8,3,8,811, - 8,8,1,8,1,8,1,8,1,8,5,8,817,8,8,10,8,12,8,820,9,8,1,8,1,8,1,8,1, - 8,5,8,826,8,8,10,8,12,8,829,9,8,1,8,1,8,1,8,3,8,834,8,8,1,8,1,8, - 1,8,3,8,839,8,8,1,8,1,8,3,8,843,8,8,1,8,1,8,1,8,1,8,5,8,849,8,8, - 10,8,12,8,852,9,8,1,8,1,8,3,8,856,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,865,8,8,1,8,1,8,1,8,1,8,3,8,871,8,8,1,8,1,8,1,8,5,8,876,8, - 8,10,8,12,8,879,9,8,1,8,1,8,1,8,1,8,5,8,885,8,8,10,8,12,8,888,9, - 8,1,8,1,8,1,8,3,8,893,8,8,1,8,1,8,3,8,897,8,8,1,8,1,8,1,8,1,8,3, - 8,903,8,8,1,8,1,8,1,8,5,8,908,8,8,10,8,12,8,911,9,8,1,8,1,8,3,8, - 915,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,926,8,8,10,8,12, - 8,929,9,8,1,8,1,8,3,8,933,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,945,8,8,1,8,1,8,3,8,949,8,8,1,8,1,8,1,8,1,8,3,8,955,8, - 8,1,8,1,8,1,8,1,8,1,8,5,8,962,8,8,10,8,12,8,965,9,8,1,8,1,8,3,8, - 969,8,8,1,8,1,8,1,8,1,8,3,8,975,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 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,1,0,5,0,316,8,0,10,0,12, + 0,319,9,0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,327,8,2,1,3,1,3,3,3,331,8, + 3,1,4,1,4,3,4,335,8,4,1,5,1,5,3,5,339,8,5,1,6,1,6,3,6,343,8,6,1, + 7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,356,8,8,1,8,1,8,1, + 8,1,8,1,8,3,8,363,8,8,1,8,1,8,3,8,367,8,8,1,8,1,8,3,8,371,8,8,1, + 8,1,8,1,8,1,8,3,8,377,8,8,1,8,1,8,3,8,381,8,8,1,8,1,8,1,8,1,8,1, + 8,3,8,388,8,8,1,8,1,8,1,8,3,8,393,8,8,1,8,1,8,3,8,397,8,8,1,8,1, + 8,1,8,1,8,3,8,403,8,8,1,8,1,8,3,8,407,8,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,426,8,8,1,8,1, + 8,1,8,1,8,3,8,432,8,8,1,8,1,8,3,8,436,8,8,1,8,1,8,3,8,440,8,8,1, + 8,1,8,3,8,444,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,452,8,8,1,8,1,8,3, + 8,456,8,8,1,8,3,8,459,8,8,1,8,1,8,1,8,3,8,464,8,8,1,8,1,8,1,8,1, + 8,3,8,470,8,8,1,8,1,8,1,8,1,8,1,8,5,8,477,8,8,10,8,12,8,480,9,8, + 1,8,1,8,1,8,3,8,485,8,8,1,8,1,8,3,8,489,8,8,1,8,1,8,1,8,1,8,3,8, + 495,8,8,1,8,1,8,1,8,1,8,1,8,3,8,502,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,3,8,511,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,523, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,532,8,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,3,8,541,8,8,1,8,1,8,1,8,1,8,3,8,547,8,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,3,8,558,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,566, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,574,8,8,1,8,1,8,1,8,1,8,1,8,3,8, + 581,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,591,8,8,1,8,1,8,1,8, + 1,8,1,8,3,8,598,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,606,8,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,621,8,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,654,8,8, + 10,8,12,8,657,9,8,3,8,659,8,8,1,8,3,8,662,8,8,1,8,1,8,3,8,666,8, + 8,1,8,1,8,1,8,1,8,3,8,672,8,8,1,8,1,8,1,8,3,8,677,8,8,1,8,1,8,1, + 8,1,8,1,8,3,8,684,8,8,1,8,1,8,1,8,1,8,3,8,690,8,8,1,8,1,8,3,8,694, + 8,8,1,8,1,8,3,8,698,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,706,8,8,1,8, + 1,8,1,8,1,8,3,8,712,8,8,1,8,1,8,3,8,716,8,8,1,8,1,8,3,8,720,8,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,734,8,8,1,8, + 1,8,1,8,1,8,1,8,1,8,3,8,742,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,761,8,8,1,8,1,8,1,8,1,8, 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,3,8,1003,8,8,1,8,1,8,1,8,1,8,3,8,1009,8,8,3,8,1011,8, - 8,1,8,1,8,1,8,1,8,3,8,1017,8,8,1,8,1,8,1,8,1,8,3,8,1023,8,8,3,8, - 1025,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1033,8,8,3,8,1035,8,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1045,8,8,3,8,1047,8,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1062,8,8,1,8,1,8,1,8, - 3,8,1067,8,8,1,8,1,8,1,8,1,8,1,8,3,8,1074,8,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,1084,8,8,1,8,1,8,1,8,1,8,3,8,1090,8,8,3,8,1092, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1100,8,8,3,8,1102,8,8,1,8,1,8,1, + 1,8,5,8,784,8,8,10,8,12,8,787,9,8,3,8,789,8,8,1,8,1,8,1,8,1,8,1, + 8,3,8,796,8,8,1,8,1,8,1,8,1,8,1,8,3,8,803,8,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,3,8,812,8,8,1,8,1,8,3,8,816,8,8,1,8,1,8,1,8,1,8,1,8,3, + 8,823,8,8,1,8,1,8,1,8,1,8,5,8,829,8,8,10,8,12,8,832,9,8,1,8,1,8, + 1,8,1,8,5,8,838,8,8,10,8,12,8,841,9,8,1,8,1,8,1,8,3,8,846,8,8,1, + 8,1,8,1,8,3,8,851,8,8,1,8,1,8,3,8,855,8,8,1,8,1,8,1,8,1,8,5,8,861, + 8,8,10,8,12,8,864,9,8,1,8,1,8,3,8,868,8,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,877,8,8,1,8,1,8,1,8,1,8,3,8,883,8,8,1,8,1,8,1,8,5,8,888, + 8,8,10,8,12,8,891,9,8,1,8,1,8,1,8,1,8,5,8,897,8,8,10,8,12,8,900, + 9,8,1,8,1,8,1,8,3,8,905,8,8,1,8,1,8,3,8,909,8,8,1,8,1,8,1,8,1,8, + 3,8,915,8,8,1,8,1,8,1,8,5,8,920,8,8,10,8,12,8,923,9,8,1,8,1,8,3, + 8,927,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,938,8,8,10,8,12, + 8,941,9,8,1,8,1,8,3,8,945,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,957,8,8,1,8,1,8,3,8,961,8,8,1,8,1,8,1,8,1,8,3,8,967,8, + 8,1,8,1,8,1,8,1,8,1,8,5,8,974,8,8,10,8,12,8,977,9,8,1,8,1,8,3,8, + 981,8,8,1,8,1,8,1,8,1,8,3,8,987,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,3,8,1015,8,8,1,8,1,8,1,8,1,8,3,8,1021,8,8,3,8,1023,8, + 8,1,8,1,8,1,8,1,8,3,8,1029,8,8,1,8,1,8,1,8,1,8,3,8,1035,8,8,3,8, + 1037,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1045,8,8,3,8,1047,8,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1057,8,8,3,8,1059,8,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1074,8,8,1,8,1,8,1,8, + 3,8,1079,8,8,1,8,1,8,1,8,1,8,1,8,3,8,1086,8,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,3,8,1096,8,8,1,8,1,8,1,8,1,8,3,8,1102,8,8,3,8,1104, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1112,8,8,3,8,1114,8,8,1,8,1,8,1, 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,5,8,1125,8,8,10,8,12,8,1128,9,8,3,8,1130,8,8,1,8,1,8,3, - 8,1134,8,8,1,8,1,8,3,8,1138,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,5,8,1154,8,8,10,8,12,8,1157,9,8,3,8,1159, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1168,8,8,10,8,12,8,1171,9,8, - 3,8,1173,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,1189,8,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1197,8,8,10,8,12,8, - 1200,9,8,1,8,1,8,3,8,1204,8,8,1,8,1,8,1,8,1,8,3,8,1210,8,8,1,8,3, - 8,1213,8,8,1,8,1,8,1,8,1,8,1,8,4,8,1220,8,8,11,8,12,8,1221,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1234,8,8,1,9,3,9,1237,8,9, - 1,9,1,9,1,10,1,10,1,10,1,10,5,10,1245,8,10,10,10,12,10,1248,9,10, - 1,11,3,11,1251,8,11,1,11,1,11,1,12,1,12,3,12,1257,8,12,1,12,1,12, - 1,12,5,12,1262,8,12,10,12,12,12,1265,9,12,1,13,1,13,3,13,1269,8, - 13,1,14,1,14,1,14,1,14,3,14,1275,8,14,1,14,1,14,3,14,1279,8,14,1, - 14,1,14,3,14,1283,8,14,1,15,1,15,1,15,1,15,3,15,1289,8,15,1,16,1, - 16,1,16,1,16,1,17,1,17,1,17,5,17,1298,8,17,10,17,12,17,1301,9,17, - 1,18,1,18,1,18,1,18,1,19,1,19,3,19,1309,8,19,1,20,1,20,1,20,1,20, - 1,20,1,20,5,20,1317,8,20,10,20,12,20,1320,9,20,3,20,1322,8,20,1, - 20,1,20,1,20,3,20,1327,8,20,3,20,1329,8,20,1,20,1,20,1,20,1,20,1, - 20,3,20,1336,8,20,1,20,1,20,1,20,1,20,3,20,1342,8,20,3,20,1344,8, - 20,1,21,1,21,3,21,1348,8,21,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1, - 23,3,23,1358,8,23,1,23,1,23,1,23,1,23,3,23,1364,8,23,1,23,5,23,1367, - 8,23,10,23,12,23,1370,9,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,5, - 24,1379,8,24,10,24,12,24,1382,9,24,1,24,1,24,1,24,1,24,3,24,1388, - 8,24,1,25,1,25,3,25,1392,8,25,1,25,3,25,1395,8,25,1,25,1,25,3,25, - 1399,8,25,1,26,1,26,3,26,1403,8,26,1,26,1,26,1,26,5,26,1408,8,26, - 10,26,12,26,1411,9,26,1,26,1,26,1,26,1,26,5,26,1417,8,26,10,26,12, - 26,1420,9,26,3,26,1422,8,26,1,26,1,26,3,26,1426,8,26,1,26,1,26,1, - 26,3,26,1431,8,26,1,26,1,26,3,26,1435,8,26,1,26,1,26,1,26,1,26,5, - 26,1441,8,26,10,26,12,26,1444,9,26,3,26,1446,8,26,1,27,3,27,1449, - 8,27,1,27,1,27,1,27,5,27,1454,8,27,10,27,12,27,1457,9,27,1,28,1, - 28,1,28,1,28,1,28,1,28,5,28,1465,8,28,10,28,12,28,1468,9,28,3,28, - 1470,8,28,1,28,1,28,1,28,1,28,1,28,1,28,5,28,1478,8,28,10,28,12, - 28,1481,9,28,3,28,1483,8,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,5, - 28,1492,8,28,10,28,12,28,1495,9,28,1,28,1,28,3,28,1499,8,28,1,29, - 1,29,1,29,1,29,5,29,1505,8,29,10,29,12,29,1508,9,29,3,29,1510,8, - 29,1,29,1,29,3,29,1514,8,29,1,30,1,30,3,30,1518,8,30,1,31,1,31,1, - 31,1,31,1,31,1,31,1,32,3,32,1527,8,32,1,32,1,32,1,32,1,32,1,32,5, - 32,1534,8,32,10,32,12,32,1537,9,32,3,32,1539,8,32,1,32,1,32,1,32, - 1,32,1,32,5,32,1546,8,32,10,32,12,32,1549,9,32,3,32,1551,8,32,1, - 32,3,32,1554,8,32,1,33,1,33,3,33,1558,8,33,1,33,1,33,1,33,1,33,1, - 33,1,34,1,34,1,35,1,35,3,35,1569,8,35,1,35,3,35,1572,8,35,1,35,3, - 35,1575,8,35,1,35,1,35,1,35,1,35,1,35,3,35,1582,8,35,1,35,3,35,1585, - 8,35,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1604,8,36,5,36,1606,8,36,10,36,12, - 36,1609,9,36,1,37,3,37,1612,8,37,1,37,1,37,3,37,1616,8,37,1,37,1, - 37,3,37,1620,8,37,1,37,1,37,3,37,1624,8,37,3,37,1626,8,37,1,38,1, - 38,1,38,1,38,1,38,1,38,1,38,5,38,1635,8,38,10,38,12,38,1638,9,38, - 1,38,1,38,3,38,1642,8,38,1,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39, - 1651,8,39,1,40,1,40,1,41,1,41,1,42,1,42,1,42,3,42,1660,8,42,1,42, - 3,42,1663,8,42,1,43,1,43,1,43,1,43,3,43,1669,8,43,1,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,5,44,1679,8,44,10,44,12,44,1682,9,44,3, - 44,1684,8,44,1,44,1,44,1,44,1,44,1,44,5,44,1691,8,44,10,44,12,44, - 1694,9,44,3,44,1696,8,44,1,44,1,44,1,44,1,44,5,44,1702,8,44,10,44, - 12,44,1705,9,44,3,44,1707,8,44,1,44,3,44,1710,8,44,1,44,1,44,1,44, - 3,44,1715,8,44,1,44,3,44,1718,8,44,1,44,1,44,1,44,1,44,1,44,1,44, - 1,44,1,44,5,44,1728,8,44,10,44,12,44,1731,9,44,3,44,1733,8,44,1, - 44,1,44,1,44,1,44,5,44,1739,8,44,10,44,12,44,1742,9,44,1,44,1,44, - 3,44,1746,8,44,1,44,1,44,3,44,1750,8,44,3,44,1752,8,44,3,44,1754, - 8,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46, - 1,46,3,46,1769,8,46,3,46,1771,8,46,1,47,1,47,1,47,1,47,1,47,1,47, - 1,47,1,47,1,47,3,47,1782,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,3,48, - 1803,8,48,1,49,1,49,1,49,1,49,1,49,1,49,5,49,1811,8,49,10,49,12, - 49,1814,9,49,1,49,1,49,1,50,1,50,1,50,1,50,1,51,1,51,3,51,1824,8, - 51,1,51,1,51,3,51,1828,8,51,3,51,1830,8,51,1,52,1,52,1,52,1,52,5, - 52,1836,8,52,10,52,12,52,1839,9,52,1,52,1,52,1,53,1,53,1,53,1,53, - 5,53,1847,8,53,10,53,12,53,1850,9,53,1,53,1,53,1,54,1,54,1,54,1, - 54,5,54,1858,8,54,10,54,12,54,1861,9,54,1,54,1,54,1,55,1,55,3,55, - 1867,8,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,1878, - 8,55,10,55,12,55,1881,9,55,1,55,1,55,1,55,3,55,1886,8,55,1,55,1, - 55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1, - 55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,5,55,1910,8,55,10,55,12,55, - 1913,9,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55, - 1,55,3,55,1927,8,55,1,55,1,55,1,55,3,55,1932,8,55,1,55,1,55,3,55, - 1936,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1946,8,56, - 1,56,1,56,1,56,1,56,3,56,1952,8,56,1,56,1,56,1,56,1,56,3,56,1958, - 8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1966,8,56,1,56,1,56,1,56, - 3,56,1971,8,56,1,56,1,56,1,56,1,56,1,56,3,56,1978,8,56,3,56,1980, - 8,56,1,56,1,56,1,56,1,56,3,56,1986,8,56,1,56,1,56,1,56,1,56,3,56, - 1992,8,56,1,56,1,56,3,56,1996,8,56,1,56,1,56,1,56,3,56,2001,8,56, - 1,56,1,56,1,56,1,56,1,56,5,56,2008,8,56,10,56,12,56,2011,9,56,1, - 56,1,56,3,56,2015,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1, - 57,1,57,5,57,2027,8,57,10,57,12,57,2030,9,57,1,57,1,57,1,57,1,57, - 1,57,5,57,2037,8,57,10,57,12,57,2040,9,57,3,57,2042,8,57,1,58,1, - 58,1,59,1,59,1,59,1,59,1,59,3,59,2051,8,59,1,60,1,60,1,60,3,60,2056, - 8,60,1,60,1,60,1,60,3,60,2061,8,60,3,60,2063,8,60,1,61,1,61,1,61, - 1,61,1,61,5,61,2070,8,61,10,61,12,61,2073,9,61,3,61,2075,8,61,1, - 61,1,61,1,61,1,61,5,61,2081,8,61,10,61,12,61,2084,9,61,3,61,2086, - 8,61,1,61,1,61,1,62,1,62,1,62,3,62,2093,8,62,1,62,1,62,1,62,3,62, - 2098,8,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,5,63,2107,8,63,10,63, - 12,63,2110,9,63,3,63,2112,8,63,1,63,1,63,3,63,2116,8,63,3,63,2118, - 8,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2126,8,63,1,63,1,63,1,63, - 1,63,1,63,1,63,5,63,2134,8,63,10,63,12,63,2137,9,63,1,63,1,63,1, - 63,3,63,2142,8,63,3,63,2144,8,63,1,64,1,64,1,64,1,64,1,64,3,64,2151, - 8,64,1,64,1,64,3,64,2155,8,64,3,64,2157,8,64,1,64,1,64,1,64,1,64, - 1,64,3,64,2164,8,64,1,64,1,64,3,64,2168,8,64,3,64,2170,8,64,3,64, - 2172,8,64,1,65,1,65,1,65,1,65,1,65,5,65,2179,8,65,10,65,12,65,2182, - 9,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,2192,8,65,1,66, - 1,66,3,66,2196,8,66,1,67,1,67,1,67,1,67,1,67,1,67,5,67,2204,8,67, - 10,67,12,67,2207,9,67,1,67,1,67,1,68,1,68,1,69,1,69,1,69,3,69,2216, - 8,69,1,69,1,69,3,69,2220,8,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69, - 2228,8,69,10,69,12,69,2231,9,69,1,70,1,70,1,70,1,70,1,70,1,70,1, - 70,1,70,1,70,1,70,3,70,2243,8,70,1,70,1,70,1,70,1,70,1,70,1,70,3, - 70,2251,8,70,1,70,1,70,1,70,1,70,1,70,5,70,2258,8,70,10,70,12,70, - 2261,9,70,1,70,1,70,1,70,3,70,2266,8,70,1,70,1,70,1,70,1,70,1,70, - 1,70,3,70,2274,8,70,1,70,1,70,1,70,1,70,3,70,2280,8,70,1,70,1,70, - 3,70,2284,8,70,1,70,1,70,1,70,3,70,2289,8,70,1,70,1,70,1,70,3,70, - 2294,8,70,1,71,1,71,1,71,1,71,3,71,2300,8,71,1,71,1,71,1,71,1,71, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,5,71,2314,8,71,10,71,12, - 71,2317,9,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1, - 72,1,72,4,72,2344,8,72,11,72,12,72,2345,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,5,72,2355,8,72,10,72,12,72,2358,9,72,1,72,1,72,1,72,1, - 72,1,72,3,72,2365,8,72,1,72,1,72,1,72,3,72,2370,8,72,1,72,1,72,1, - 72,3,72,2375,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5, - 72,2386,8,72,10,72,12,72,2389,9,72,1,72,1,72,1,72,3,72,2394,8,72, - 1,72,3,72,2397,8,72,1,72,1,72,1,72,1,72,1,72,3,72,2404,8,72,1,72, - 1,72,1,72,3,72,2409,8,72,1,72,3,72,2412,8,72,1,72,3,72,2415,8,72, - 1,72,1,72,1,72,3,72,2420,8,72,1,72,1,72,1,72,5,72,2425,8,72,10,72, - 12,72,2428,9,72,3,72,2430,8,72,1,72,1,72,1,72,1,72,1,72,5,72,2437, - 8,72,10,72,12,72,2440,9,72,3,72,2442,8,72,1,72,1,72,3,72,2446,8, - 72,1,72,3,72,2449,8,72,1,72,3,72,2452,8,72,1,72,1,72,1,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2465,8,72,10,72,12,72,2468, - 9,72,3,72,2470,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,4,72,2487,8,72,11,72,12,72,2488,1, - 72,1,72,3,72,2493,8,72,1,72,1,72,1,72,1,72,4,72,2499,8,72,11,72, - 12,72,2500,1,72,1,72,3,72,2505,8,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,5,72,2528,8,72,10,72,12,72,2531,9,72,3,72,2533,8,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2542,8,72,1,72,1,72,1,72,1, - 72,3,72,2548,8,72,1,72,1,72,1,72,1,72,3,72,2554,8,72,1,72,1,72,1, - 72,1,72,3,72,2560,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2569, - 8,72,1,72,3,72,2572,8,72,1,72,3,72,2575,8,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 3,72,2594,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2603,8,72, - 1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72, - 1,72,1,72,1,72,1,72,1,72,5,72,2623,8,72,10,72,12,72,2626,9,72,3, - 72,2628,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2638,8, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2647,8,72,1,72,1,72,1, - 72,1,72,3,72,2653,8,72,1,72,1,72,1,72,1,72,3,72,2659,8,72,1,72,1, - 72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2670,8,72,3,72,2672,8, - 72,1,72,1,72,1,72,3,72,2677,8,72,1,72,1,72,1,72,1,72,1,72,3,72,2684, - 8,72,3,72,2686,8,72,1,72,1,72,1,72,1,72,3,72,2692,8,72,1,72,1,72, - 1,72,1,72,3,72,2698,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72, - 2707,8,72,10,72,12,72,2710,9,72,1,72,1,72,1,72,1,72,1,72,1,72,3, - 72,2718,8,72,1,72,1,72,1,72,3,72,2723,8,72,1,72,1,72,1,72,3,72,2728, - 8,72,3,72,2730,8,72,3,72,2732,8,72,1,72,1,72,1,72,1,72,3,72,2738, - 8,72,3,72,2740,8,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2748,8,72, - 10,72,12,72,2751,9,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,2759,8, - 72,3,72,2761,8,72,1,72,1,72,1,72,1,72,3,72,2767,8,72,3,72,2769,8, - 72,1,72,3,72,2772,8,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,5, - 72,2782,8,72,10,72,12,72,2785,9,72,1,73,1,73,1,73,1,73,1,73,3,73, - 2792,8,73,1,73,1,73,1,73,1,73,5,73,2798,8,73,10,73,12,73,2801,9, - 73,3,73,2803,8,73,1,74,1,74,1,74,3,74,2808,8,74,1,75,1,75,1,75,3, - 75,2813,8,75,1,76,1,76,1,76,1,76,1,77,1,77,1,78,1,78,1,78,1,78,3, - 78,2825,8,78,1,79,1,79,3,79,2829,8,79,1,79,1,79,3,79,2833,8,79,1, - 79,3,79,2836,8,79,3,79,2838,8,79,1,80,1,80,1,80,1,80,1,80,1,80,3, - 80,2846,8,80,1,81,3,81,2849,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1, - 81,1,81,3,81,2859,8,81,1,82,1,82,1,83,1,83,1,83,1,83,3,83,2867,8, - 83,1,84,1,84,1,84,1,84,3,84,2873,8,84,3,84,2875,8,84,1,85,1,85,1, - 85,1,85,1,85,1,85,3,85,2883,8,85,1,86,1,86,1,87,1,87,1,88,1,88,1, - 89,1,89,3,89,2893,8,89,1,89,1,89,1,89,1,89,3,89,2899,8,89,1,90,1, - 90,1,91,1,91,1,92,1,92,1,92,1,92,1,92,1,92,5,92,2911,8,92,10,92, - 12,92,2914,9,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,2922,8,92,1,92, - 1,92,1,92,1,92,1,92,3,92,2929,8,92,1,92,1,92,1,92,3,92,2934,8,92, - 1,92,1,92,1,92,1,92,1,92,3,92,2941,8,92,1,92,1,92,1,92,3,92,2946, - 8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,1,92,1,92,5,92,2967,8,92,10,92,12,92,2970, - 9,92,1,92,1,92,3,92,2974,8,92,3,92,2976,8,92,1,92,1,92,1,92,1,92, - 1,92,3,92,2983,8,92,5,92,2985,8,92,10,92,12,92,2988,9,92,1,93,1, - 93,1,93,1,93,3,93,2994,8,93,1,94,1,94,3,94,2998,8,94,1,95,1,95,1, - 95,1,95,1,95,1,96,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,3, - 97,3015,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1, - 97,5,97,3028,8,97,10,97,12,97,3031,9,97,1,97,1,97,1,97,1,97,3,97, - 3037,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,3046,8,97,1,97, - 1,97,1,97,1,97,1,97,1,97,5,97,3054,8,97,10,97,12,97,3057,9,97,1, - 97,1,97,3,97,3061,8,97,1,97,1,97,1,97,1,97,1,97,5,97,3068,8,97,10, - 97,12,97,3071,9,97,1,97,1,97,3,97,3075,8,97,1,98,1,98,1,98,1,98, - 1,98,1,98,3,98,3083,8,98,1,99,1,99,1,99,1,99,5,99,3089,8,99,10,99, - 12,99,3092,9,99,3,99,3094,8,99,1,99,1,99,1,99,1,99,3,99,3100,8,99, - 1,99,3,99,3103,8,99,1,99,1,99,1,99,1,99,1,99,3,99,3110,8,99,1,99, - 1,99,1,99,1,99,5,99,3116,8,99,10,99,12,99,3119,9,99,3,99,3121,8, - 99,1,99,1,99,1,99,1,99,5,99,3127,8,99,10,99,12,99,3130,9,99,3,99, - 3132,8,99,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,100,1,100,3,100,3158,8,100,1,101,1,101,1,101,1,101, - 1,101,1,101,1,101,1,101,1,101,3,101,3169,8,101,1,102,1,102,1,102, - 3,102,3174,8,102,1,102,1,102,1,102,1,102,1,102,5,102,3181,8,102, - 10,102,12,102,3184,9,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,5,103,3194,8,103,10,103,12,103,3197,9,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103,3211, - 8,103,1,104,1,104,3,104,3215,8,104,1,104,1,104,3,104,3219,8,104, - 1,104,1,104,3,104,3223,8,104,1,104,1,104,1,104,1,104,3,104,3229, - 8,104,1,104,1,104,3,104,3233,8,104,1,104,1,104,3,104,3237,8,104, - 1,104,1,104,3,104,3241,8,104,3,104,3243,8,104,1,105,1,105,1,105, - 1,105,1,106,1,106,1,106,1,106,3,106,3253,8,106,1,107,1,107,1,107, - 1,107,1,107,3,107,3260,8,107,1,108,1,108,1,108,1,108,1,108,1,108, - 1,108,3,108,3269,8,108,1,109,1,109,1,109,1,109,1,109,3,109,3276, - 8,109,1,110,1,110,1,110,1,110,1,110,3,110,3283,8,110,1,111,1,111, - 1,111,5,111,3288,8,111,10,111,12,111,3291,9,111,1,112,1,112,1,112, - 1,112,5,112,3297,8,112,10,112,12,112,3300,9,112,1,112,1,112,1,113, - 1,113,1,113,1,113,1,113,5,113,3309,8,113,10,113,12,113,3312,9,113, - 3,113,3314,8,113,1,113,1,113,1,114,1,114,1,114,1,114,1,114,5,114, - 3323,8,114,10,114,12,114,3326,9,114,3,114,3328,8,114,1,114,1,114, - 1,115,3,115,3333,8,115,1,115,1,115,1,116,1,116,1,116,1,117,1,117, - 1,117,3,117,3343,8,117,1,117,1,117,1,117,1,117,1,117,1,117,1,117, - 1,117,1,117,1,117,1,117,1,117,1,117,1,117,3,117,3359,8,117,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,4,118,3371, - 8,118,11,118,12,118,3372,1,118,3,118,3376,8,118,1,118,1,118,1,118, - 1,118,1,118,4,118,3383,8,118,11,118,12,118,3384,1,118,3,118,3388, - 8,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,5,118,3398, - 8,118,10,118,12,118,3401,9,118,1,118,3,118,3404,8,118,1,118,1,118, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,5,118,3417, - 8,118,10,118,12,118,3420,9,118,1,118,3,118,3423,8,118,1,118,1,118, - 1,118,1,118,3,118,3429,8,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,3,118,3439,8,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,1,118,3,118,3451,8,118,1,118,1,118,1,118,1,118, - 1,118,1,118,1,118,3,118,3460,8,118,1,119,1,119,1,119,1,119,1,119, - 1,120,1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,122,1,122,1,122, - 1,122,5,122,3479,8,122,10,122,12,122,3482,9,122,1,122,1,122,1,122, - 3,122,3487,8,122,1,123,1,123,1,123,4,123,3492,8,123,11,123,12,123, - 3493,1,124,1,124,1,124,1,124,1,124,1,124,3,124,3502,8,124,1,125, - 1,125,1,125,3,125,3507,8,125,1,126,3,126,3510,8,126,1,126,1,126, - 1,127,1,127,3,127,3516,8,127,1,128,1,128,1,128,1,128,1,128,1,128, - 1,128,1,128,1,128,1,128,1,128,3,128,3529,8,128,1,129,1,129,1,129, - 1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,3542,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,3555,8,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,3,131,3568,8,131,1,132,1,132,1,132,1,132,1,132, - 3,132,3575,8,132,1,133,1,133,1,133,1,133,1,133,3,133,3582,8,133, - 1,134,1,134,1,135,1,135,1,136,1,136,1,137,1,137,1,138,1,138,3,138, - 3594,8,138,1,139,1,139,1,140,1,140,1,140,5,140,3601,8,140,10,140, - 12,140,3604,9,140,1,141,1,141,1,141,1,141,1,141,1,141,1,142,1,142, - 1,143,1,143,1,143,3,143,3617,8,143,1,144,1,144,1,144,1,144,1,144, - 3,144,3624,8,144,1,145,1,145,1,145,5,145,3629,8,145,10,145,12,145, - 3632,9,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,3641, - 8,146,1,147,1,147,1,147,1,147,1,147,3,147,3648,8,147,1,148,3,148, - 3651,8,148,1,148,1,148,3,148,3655,8,148,1,148,1,148,3,148,3659,8, - 148,1,148,3,148,3662,8,148,1,149,1,149,3,149,3666,8,149,1,150,1, - 150,1,150,0,7,46,72,138,142,144,184,204,151,0,2,4,6,8,10,12,14,16, + 8,1,8,1,8,5,8,1137,8,8,10,8,12,8,1140,9,8,3,8,1142,8,8,1,8,1,8,3, + 8,1146,8,8,1,8,1,8,3,8,1150,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,5,8,1166,8,8,10,8,12,8,1169,9,8,3,8,1171, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1180,8,8,10,8,12,8,1183,9,8, + 3,8,1185,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,3,8,1201,8,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1209,8,8,10,8,12,8, + 1212,9,8,1,8,1,8,3,8,1216,8,8,1,8,1,8,1,8,1,8,3,8,1222,8,8,1,8,3, + 8,1225,8,8,1,8,1,8,1,8,1,8,1,8,4,8,1232,8,8,11,8,12,8,1233,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1246,8,8,1,9,3,9,1249,8,9, + 1,9,1,9,1,10,1,10,1,10,1,10,5,10,1257,8,10,10,10,12,10,1260,9,10, + 1,11,3,11,1263,8,11,1,11,1,11,1,12,1,12,3,12,1269,8,12,1,12,1,12, + 1,12,5,12,1274,8,12,10,12,12,12,1277,9,12,1,13,1,13,3,13,1281,8, + 13,1,14,1,14,1,14,1,14,3,14,1287,8,14,1,14,1,14,3,14,1291,8,14,1, + 14,1,14,3,14,1295,8,14,1,15,1,15,1,15,1,15,3,15,1301,8,15,1,16,1, + 16,1,16,1,16,1,17,1,17,1,17,5,17,1310,8,17,10,17,12,17,1313,9,17, + 1,18,1,18,1,18,1,18,1,19,1,19,3,19,1321,8,19,1,20,1,20,1,20,1,20, + 1,20,1,20,5,20,1329,8,20,10,20,12,20,1332,9,20,3,20,1334,8,20,1, + 20,1,20,1,20,3,20,1339,8,20,3,20,1341,8,20,1,20,1,20,1,20,1,20,1, + 20,3,20,1348,8,20,1,20,1,20,1,20,1,20,3,20,1354,8,20,3,20,1356,8, + 20,1,21,1,21,3,21,1360,8,21,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1, + 23,3,23,1370,8,23,1,23,1,23,1,23,1,23,3,23,1376,8,23,1,23,5,23,1379, + 8,23,10,23,12,23,1382,9,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,5, + 24,1391,8,24,10,24,12,24,1394,9,24,1,24,1,24,1,24,1,24,3,24,1400, + 8,24,1,25,1,25,3,25,1404,8,25,1,25,3,25,1407,8,25,1,25,1,25,3,25, + 1411,8,25,1,26,1,26,3,26,1415,8,26,1,26,1,26,1,26,1,26,1,26,5,26, + 1422,8,26,10,26,12,26,1425,9,26,3,26,1427,8,26,1,26,1,26,3,26,1431, + 8,26,1,26,1,26,1,26,3,26,1436,8,26,1,26,1,26,3,26,1440,8,26,1,26, + 1,26,1,26,1,26,5,26,1446,8,26,10,26,12,26,1449,9,26,3,26,1451,8, + 26,1,27,1,27,1,27,5,27,1456,8,27,10,27,12,27,1459,9,27,1,28,3,28, + 1462,8,28,1,28,1,28,1,28,5,28,1467,8,28,10,28,12,28,1470,9,28,1, + 29,1,29,1,29,1,29,1,29,1,29,5,29,1478,8,29,10,29,12,29,1481,9,29, + 3,29,1483,8,29,1,29,1,29,1,29,1,29,1,29,1,29,5,29,1491,8,29,10,29, + 12,29,1494,9,29,3,29,1496,8,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29, + 5,29,1505,8,29,10,29,12,29,1508,9,29,1,29,1,29,3,29,1512,8,29,1, + 30,1,30,1,30,1,30,5,30,1518,8,30,10,30,12,30,1521,9,30,3,30,1523, + 8,30,1,30,1,30,3,30,1527,8,30,1,31,1,31,3,31,1531,8,31,1,32,1,32, + 1,32,1,32,1,32,1,32,1,33,3,33,1540,8,33,1,33,1,33,1,33,1,33,1,33, + 5,33,1547,8,33,10,33,12,33,1550,9,33,3,33,1552,8,33,1,33,1,33,1, + 33,1,33,1,33,5,33,1559,8,33,10,33,12,33,1562,9,33,3,33,1564,8,33, + 1,33,3,33,1567,8,33,1,34,1,34,3,34,1571,8,34,1,34,1,34,1,34,1,34, + 1,34,1,35,1,35,1,36,1,36,3,36,1582,8,36,1,36,3,36,1585,8,36,1,36, + 3,36,1588,8,36,1,36,1,36,1,36,3,36,1593,8,36,1,36,3,36,1596,8,36, + 1,37,1,37,1,38,1,38,1,38,1,38,1,39,1,39,1,40,1,40,1,41,1,41,1,41, + 1,41,1,41,1,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,1625,8,41,5,41,1627,8,41,10,41,12,41,1630,9,41,1,42,3, + 42,1633,8,42,1,42,1,42,3,42,1637,8,42,1,42,1,42,3,42,1641,8,42,1, + 42,1,42,3,42,1645,8,42,3,42,1647,8,42,1,43,1,43,1,43,1,43,1,43,1, + 43,1,43,5,43,1656,8,43,10,43,12,43,1659,9,43,1,43,1,43,3,43,1663, + 8,43,1,44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1672,8,44,1,45,1,45, + 1,46,1,46,1,47,1,47,1,47,3,47,1681,8,47,1,47,3,47,1684,8,47,1,48, + 1,48,1,48,1,48,3,48,1690,8,48,1,49,1,49,1,49,1,49,1,49,1,49,1,49, + 1,49,5,49,1700,8,49,10,49,12,49,1703,9,49,3,49,1705,8,49,1,49,1, + 49,1,49,1,49,1,49,5,49,1712,8,49,10,49,12,49,1715,9,49,3,49,1717, + 8,49,1,49,1,49,1,49,1,49,5,49,1723,8,49,10,49,12,49,1726,9,49,3, + 49,1728,8,49,1,49,3,49,1731,8,49,1,49,1,49,1,49,3,49,1736,8,49,1, + 49,3,49,1739,8,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,5,49,1749, + 8,49,10,49,12,49,1752,9,49,3,49,1754,8,49,1,49,1,49,1,49,1,49,5, + 49,1760,8,49,10,49,12,49,1763,9,49,1,49,1,49,3,49,1767,8,49,1,49, + 1,49,3,49,1771,8,49,3,49,1773,8,49,3,49,1775,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,3,51,1790,8,51, + 3,51,1792,8,51,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52, + 1803,8,52,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53, + 1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,1824,8,53,1,54,1,54, + 1,54,1,54,1,54,1,54,5,54,1832,8,54,10,54,12,54,1835,9,54,1,54,1, + 54,1,55,1,55,1,55,1,55,1,56,1,56,3,56,1845,8,56,1,56,1,56,3,56,1849, + 8,56,3,56,1851,8,56,1,57,1,57,1,57,1,57,5,57,1857,8,57,10,57,12, + 57,1860,9,57,1,57,1,57,1,58,1,58,1,58,1,58,5,58,1868,8,58,10,58, + 12,58,1871,9,58,1,58,1,58,1,59,1,59,1,59,1,59,5,59,1879,8,59,10, + 59,12,59,1882,9,59,1,59,1,59,1,60,1,60,3,60,1888,8,60,1,60,1,60, + 1,60,1,60,1,60,3,60,1895,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61, + 1,61,1,61,5,61,1906,8,61,10,61,12,61,1909,9,61,1,61,1,61,1,61,3, + 61,1914,8,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1, + 61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,5,61,1934,8,61,10,61,12,61, + 1937,9,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61, + 1,61,3,61,1951,8,61,1,61,1,61,1,61,3,61,1956,8,61,1,61,1,61,3,61, + 1960,8,61,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,3,62,1970,8,62, + 1,62,1,62,1,62,1,62,3,62,1976,8,62,1,62,1,62,1,62,1,62,3,62,1982, + 8,62,1,62,1,62,1,62,1,62,1,62,1,62,3,62,1990,8,62,1,62,1,62,1,62, + 3,62,1995,8,62,1,62,1,62,1,62,1,62,1,62,3,62,2002,8,62,3,62,2004, + 8,62,1,62,1,62,1,62,1,62,3,62,2010,8,62,1,62,1,62,1,62,1,62,3,62, + 2016,8,62,1,62,1,62,3,62,2020,8,62,1,62,1,62,1,62,3,62,2025,8,62, + 1,62,1,62,1,62,1,62,1,62,5,62,2032,8,62,10,62,12,62,2035,9,62,1, + 62,1,62,3,62,2039,8,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1, + 63,1,63,5,63,2051,8,63,10,63,12,63,2054,9,63,1,63,1,63,1,63,1,63, + 1,63,5,63,2061,8,63,10,63,12,63,2064,9,63,3,63,2066,8,63,1,64,1, + 64,1,65,1,65,1,65,1,65,1,65,3,65,2075,8,65,1,66,1,66,1,66,3,66,2080, + 8,66,1,66,1,66,1,66,3,66,2085,8,66,3,66,2087,8,66,1,67,1,67,1,67, + 1,67,1,67,5,67,2094,8,67,10,67,12,67,2097,9,67,3,67,2099,8,67,1, + 67,1,67,1,67,1,67,5,67,2105,8,67,10,67,12,67,2108,9,67,3,67,2110, + 8,67,1,67,1,67,1,68,1,68,1,68,3,68,2117,8,68,1,68,1,68,1,68,3,68, + 2122,8,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,5,69,2131,8,69,10,69, + 12,69,2134,9,69,3,69,2136,8,69,1,69,1,69,3,69,2140,8,69,3,69,2142, + 8,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69,2150,8,69,1,69,1,69,1,69, + 1,69,1,69,1,69,5,69,2158,8,69,10,69,12,69,2161,9,69,1,69,1,69,1, + 69,3,69,2166,8,69,3,69,2168,8,69,1,70,1,70,1,70,1,70,1,70,3,70,2175, + 8,70,1,70,1,70,3,70,2179,8,70,3,70,2181,8,70,1,70,1,70,1,70,1,70, + 1,70,3,70,2188,8,70,1,70,1,70,3,70,2192,8,70,3,70,2194,8,70,3,70, + 2196,8,70,1,71,1,71,1,71,1,71,1,71,5,71,2203,8,71,10,71,12,71,2206, + 9,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,2216,8,71,1,72, + 1,72,3,72,2220,8,72,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2228,8,73, + 10,73,12,73,2231,9,73,1,73,1,73,1,74,1,74,1,75,1,75,1,75,3,75,2240, + 8,75,1,75,1,75,3,75,2244,8,75,1,75,1,75,1,75,1,75,1,75,1,75,5,75, + 2252,8,75,10,75,12,75,2255,9,75,1,76,1,76,1,76,1,76,1,76,1,76,1, + 76,1,76,1,76,1,76,3,76,2267,8,76,1,76,1,76,1,76,1,76,1,76,1,76,3, + 76,2275,8,76,1,76,1,76,1,76,1,76,1,76,5,76,2282,8,76,10,76,12,76, + 2285,9,76,1,76,1,76,1,76,3,76,2290,8,76,1,76,1,76,1,76,1,76,1,76, + 1,76,3,76,2298,8,76,1,76,1,76,1,76,1,76,3,76,2304,8,76,1,76,1,76, + 3,76,2308,8,76,1,76,1,76,1,76,3,76,2313,8,76,1,76,1,76,1,76,3,76, + 2318,8,76,1,77,1,77,1,77,1,77,3,77,2324,8,77,1,77,1,77,1,77,1,77, + 1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,5,77,2338,8,77,10,77,12, + 77,2341,9,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, + 78,1,78,4,78,2368,8,78,11,78,12,78,2369,1,78,1,78,1,78,1,78,1,78, + 1,78,1,78,5,78,2379,8,78,10,78,12,78,2382,9,78,1,78,1,78,1,78,1, + 78,1,78,3,78,2389,8,78,1,78,1,78,1,78,3,78,2394,8,78,1,78,1,78,1, + 78,3,78,2399,8,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5, + 78,2410,8,78,10,78,12,78,2413,9,78,1,78,1,78,1,78,3,78,2418,8,78, + 1,78,3,78,2421,8,78,1,78,1,78,1,78,1,78,1,78,3,78,2428,8,78,1,78, + 1,78,1,78,3,78,2433,8,78,1,78,3,78,2436,8,78,1,78,3,78,2439,8,78, + 1,78,1,78,1,78,3,78,2444,8,78,1,78,1,78,1,78,5,78,2449,8,78,10,78, + 12,78,2452,9,78,3,78,2454,8,78,1,78,1,78,1,78,1,78,1,78,5,78,2461, + 8,78,10,78,12,78,2464,9,78,3,78,2466,8,78,1,78,1,78,3,78,2470,8, + 78,1,78,3,78,2473,8,78,1,78,3,78,2476,8,78,1,78,1,78,1,78,1,78,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,5,78,2489,8,78,10,78,12,78,2492, + 9,78,3,78,2494,8,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, + 1,78,1,78,1,78,1,78,1,78,1,78,4,78,2511,8,78,11,78,12,78,2512,1, + 78,1,78,3,78,2517,8,78,1,78,1,78,1,78,1,78,4,78,2523,8,78,11,78, + 12,78,2524,1,78,1,78,3,78,2529,8,78,1,78,1,78,1,78,1,78,1,78,1,78, + 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, + 1,78,1,78,5,78,2552,8,78,10,78,12,78,2555,9,78,3,78,2557,8,78,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,2566,8,78,1,78,1,78,1,78,1, + 78,3,78,2572,8,78,1,78,1,78,1,78,1,78,3,78,2578,8,78,1,78,1,78,1, + 78,1,78,3,78,2584,8,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,2593, + 8,78,1,78,3,78,2596,8,78,1,78,3,78,2599,8,78,1,78,1,78,1,78,1,78, + 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, + 3,78,2618,8,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,2627,8,78, + 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78, + 1,78,1,78,1,78,1,78,1,78,5,78,2647,8,78,10,78,12,78,2650,9,78,3, + 78,2652,8,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,2662,8, + 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,2671,8,78,1,78,1,78,1, + 78,1,78,3,78,2677,8,78,1,78,1,78,1,78,1,78,3,78,2683,8,78,1,78,1, + 78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,2694,8,78,3,78,2696,8, + 78,1,78,1,78,1,78,3,78,2701,8,78,1,78,1,78,1,78,1,78,1,78,3,78,2708, + 8,78,3,78,2710,8,78,1,78,1,78,1,78,1,78,3,78,2716,8,78,1,78,1,78, + 1,78,1,78,3,78,2722,8,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78, + 2731,8,78,10,78,12,78,2734,9,78,1,78,1,78,1,78,1,78,1,78,1,78,3, + 78,2742,8,78,1,78,1,78,1,78,3,78,2747,8,78,1,78,1,78,1,78,3,78,2752, + 8,78,3,78,2754,8,78,3,78,2756,8,78,1,78,1,78,1,78,1,78,3,78,2762, + 8,78,3,78,2764,8,78,1,78,1,78,1,78,1,78,1,78,1,78,5,78,2772,8,78, + 10,78,12,78,2775,9,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,2783,8, + 78,3,78,2785,8,78,1,78,1,78,1,78,1,78,3,78,2791,8,78,3,78,2793,8, + 78,1,78,3,78,2796,8,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,5, + 78,2806,8,78,10,78,12,78,2809,9,78,1,79,1,79,1,79,1,79,1,79,3,79, + 2816,8,79,1,79,1,79,1,79,1,79,5,79,2822,8,79,10,79,12,79,2825,9, + 79,3,79,2827,8,79,1,80,1,80,1,80,3,80,2832,8,80,1,81,1,81,1,81,3, + 81,2837,8,81,1,82,1,82,1,82,1,82,1,83,1,83,1,84,1,84,1,84,1,84,3, + 84,2849,8,84,1,85,1,85,3,85,2853,8,85,1,85,1,85,3,85,2857,8,85,1, + 85,3,85,2860,8,85,3,85,2862,8,85,1,86,1,86,1,86,1,86,1,86,1,86,3, + 86,2870,8,86,1,87,3,87,2873,8,87,1,87,1,87,1,87,1,87,1,87,1,87,1, + 87,1,87,3,87,2883,8,87,1,88,1,88,1,89,1,89,1,89,1,89,3,89,2891,8, + 89,1,90,1,90,1,90,1,90,3,90,2897,8,90,3,90,2899,8,90,1,91,1,91,1, + 91,1,91,1,91,1,91,3,91,2907,8,91,1,92,1,92,1,93,1,93,1,94,1,94,1, + 95,1,95,3,95,2917,8,95,1,95,1,95,1,95,1,95,3,95,2923,8,95,1,96,1, + 96,1,97,1,97,1,98,1,98,1,98,1,98,1,98,1,98,5,98,2935,8,98,10,98, + 12,98,2938,9,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98,2946,8,98,1,98, + 1,98,1,98,1,98,1,98,3,98,2953,8,98,1,98,1,98,1,98,3,98,2958,8,98, + 1,98,1,98,1,98,1,98,1,98,3,98,2965,8,98,1,98,1,98,1,98,3,98,2970, + 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,5,98,2991,8,98,10,98,12,98,2994, + 9,98,1,98,1,98,3,98,2998,8,98,3,98,3000,8,98,1,98,1,98,1,98,1,98, + 1,98,3,98,3007,8,98,5,98,3009,8,98,10,98,12,98,3012,9,98,1,99,1, + 99,1,99,1,99,3,99,3018,8,99,1,100,1,100,3,100,3022,8,100,1,101,1, + 101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,102,1,103, + 1,103,1,103,1,103,3,103,3039,8,103,1,103,1,103,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,5,103,3052,8,103,10,103,12,103, + 3055,9,103,1,103,1,103,1,103,1,103,3,103,3061,8,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,3,103,3070,8,103,1,103,1,103,1,103, + 1,103,1,103,1,103,5,103,3078,8,103,10,103,12,103,3081,9,103,1,103, + 1,103,3,103,3085,8,103,1,103,1,103,1,103,1,103,1,103,5,103,3092, + 8,103,10,103,12,103,3095,9,103,1,103,1,103,3,103,3099,8,103,1,104, + 1,104,1,104,1,104,1,104,1,104,3,104,3107,8,104,1,105,1,105,1,105, + 1,105,5,105,3113,8,105,10,105,12,105,3116,9,105,3,105,3118,8,105, + 1,105,1,105,1,105,1,105,3,105,3124,8,105,1,105,3,105,3127,8,105, + 1,105,1,105,1,105,1,105,1,105,3,105,3134,8,105,1,105,1,105,1,105, + 1,105,5,105,3140,8,105,10,105,12,105,3143,9,105,3,105,3145,8,105, + 1,105,1,105,1,105,1,105,5,105,3151,8,105,10,105,12,105,3154,9,105, + 3,105,3156,8,105,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,3,106,3182,8,106,1,107,1,107,1,107, + 1,107,1,107,1,107,1,107,1,107,1,107,3,107,3193,8,107,1,108,1,108, + 1,108,3,108,3198,8,108,1,108,1,108,1,108,1,108,1,108,5,108,3205, + 8,108,10,108,12,108,3208,9,108,1,109,1,109,1,109,1,109,1,109,1,109, + 1,109,1,109,5,109,3218,8,109,10,109,12,109,3221,9,109,1,109,1,109, + 1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,3,109, + 3235,8,109,1,110,1,110,3,110,3239,8,110,1,110,1,110,3,110,3243,8, + 110,1,110,1,110,3,110,3247,8,110,1,110,1,110,1,110,1,110,3,110,3253, + 8,110,1,110,1,110,3,110,3257,8,110,1,110,1,110,3,110,3261,8,110, + 1,110,1,110,3,110,3265,8,110,3,110,3267,8,110,1,111,1,111,1,111, + 1,111,1,112,1,112,1,112,1,112,3,112,3277,8,112,1,113,1,113,1,113, + 1,113,1,113,3,113,3284,8,113,1,114,1,114,1,114,1,114,1,114,1,114, + 1,114,3,114,3293,8,114,1,115,1,115,1,115,1,115,1,115,3,115,3300, + 8,115,1,116,1,116,1,116,1,116,1,116,3,116,3307,8,116,1,117,1,117, + 1,117,5,117,3312,8,117,10,117,12,117,3315,9,117,1,118,1,118,1,118, + 1,118,5,118,3321,8,118,10,118,12,118,3324,9,118,1,118,1,118,1,119, + 1,119,1,119,1,119,1,119,5,119,3333,8,119,10,119,12,119,3336,9,119, + 3,119,3338,8,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120,5,120, + 3347,8,120,10,120,12,120,3350,9,120,3,120,3352,8,120,1,120,1,120, + 1,121,3,121,3357,8,121,1,121,1,121,1,122,1,122,1,122,1,123,1,123, + 1,123,3,123,3367,8,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123,3383,8,123,1,124, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,4,124,3395, + 8,124,11,124,12,124,3396,1,124,3,124,3400,8,124,1,124,1,124,1,124, + 1,124,1,124,4,124,3407,8,124,11,124,12,124,3408,1,124,3,124,3412, + 8,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,5,124,3422, + 8,124,10,124,12,124,3425,9,124,1,124,3,124,3428,8,124,1,124,1,124, + 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,5,124,3441, + 8,124,10,124,12,124,3444,9,124,1,124,3,124,3447,8,124,1,124,1,124, + 1,124,1,124,3,124,3453,8,124,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,3,124,3463,8,124,1,124,1,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,1,124,3,124,3475,8,124,1,124,1,124,1,124,1,124, + 1,124,1,124,1,124,3,124,3484,8,124,1,125,1,125,1,125,1,125,1,125, + 1,126,1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,128,1,128,1,128, + 1,128,5,128,3503,8,128,10,128,12,128,3506,9,128,1,128,1,128,1,128, + 3,128,3511,8,128,1,129,1,129,1,129,4,129,3516,8,129,11,129,12,129, + 3517,1,130,1,130,1,130,1,130,1,130,1,130,3,130,3526,8,130,1,131, + 1,131,1,131,3,131,3531,8,131,1,132,3,132,3534,8,132,1,132,1,132, + 1,133,1,133,3,133,3540,8,133,1,134,1,134,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,3,134,3553,8,134,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,3566,8,135, + 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 3,136,3579,8,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,3,137,3592,8,137,1,138,1,138,1,138,1,138,1,138, + 3,138,3599,8,138,1,139,1,139,1,139,1,139,1,139,3,139,3606,8,139, + 1,140,1,140,1,141,1,141,1,142,1,142,1,143,1,143,1,144,1,144,3,144, + 3618,8,144,1,145,1,145,1,146,1,146,1,146,5,146,3625,8,146,10,146, + 12,146,3628,9,146,1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148, + 1,149,1,149,1,149,3,149,3641,8,149,1,150,1,150,1,150,1,150,1,150, + 3,150,3648,8,150,1,151,1,151,1,151,5,151,3653,8,151,10,151,12,151, + 3656,9,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152,3,152,3665, + 8,152,1,153,1,153,1,153,1,153,1,153,3,153,3672,8,153,1,154,3,154, + 3675,8,154,1,154,1,154,3,154,3679,8,154,1,154,1,154,3,154,3683,8, + 154,1,154,3,154,3686,8,154,1,155,1,155,3,155,3690,8,155,1,156,1, + 156,1,156,0,7,46,82,150,154,156,196,216,157,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, @@ -16877,1249 +17040,1255 @@ export class TrinoSqlParser extends SQLParserBase { 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,0,36,2,0,39,39,229,229,2,0,72,72,131,131,2,0,105,105, - 122,122,2,0,92,92,123,123,1,0,239,240,2,0,101,101,174,174,2,0,324, - 324,329,329,2,0,91,91,281,281,2,0,29,29,75,75,2,0,101,101,148,148, - 2,0,22,22,79,79,2,0,33,33,259,259,3,0,35,35,150,150,270,270,2,0, - 124,124,247,247,2,0,85,85,89,89,2,0,144,144,189,189,2,0,125,125, - 197,197,2,0,54,54,281,281,1,0,318,319,1,0,320,322,1,0,291,293,4, - 0,89,89,97,97,273,273,283,283,2,0,49,49,280,280,2,0,100,100,241, - 241,1,0,312,317,3,0,22,22,26,26,254,254,2,0,97,97,273,273,5,0,67, - 67,118,118,170,171,245,245,310,310,1,0,175,178,2,0,304,304,306,306, - 2,0,102,102,212,212,3,0,113,113,137,137,263,263,4,0,80,80,132,132, - 160,160,294,294,2,0,192,192,309,309,2,0,268,268,298,298,54,0,18, - 22,24,24,26,27,29,33,35,35,37,39,42,49,51,52,56,56,65,67,69,72,74, - 75,77,78,80,82,85,87,89,89,92,92,95,95,98,102,104,104,107,113,116, - 116,118,121,123,124,126,126,129,129,131,132,134,135,137,137,144, - 151,153,153,155,155,157,157,160,171,173,180,184,189,191,193,196, - 196,198,213,215,220,222,233,235,237,239,247,249,259,261,264,266, - 271,274,276,278,280,282,284,286,289,291,295,297,299,302,303,305, - 311,4221,0,305,1,0,0,0,2,310,1,0,0,0,4,312,1,0,0,0,6,316,1,0,0,0, - 8,320,1,0,0,0,10,324,1,0,0,0,12,328,1,0,0,0,14,332,1,0,0,0,16,1233, - 1,0,0,0,18,1236,1,0,0,0,20,1240,1,0,0,0,22,1250,1,0,0,0,24,1254, - 1,0,0,0,26,1268,1,0,0,0,28,1270,1,0,0,0,30,1284,1,0,0,0,32,1290, - 1,0,0,0,34,1294,1,0,0,0,36,1302,1,0,0,0,38,1308,1,0,0,0,40,1310, - 1,0,0,0,42,1347,1,0,0,0,44,1349,1,0,0,0,46,1351,1,0,0,0,48,1387, - 1,0,0,0,50,1391,1,0,0,0,52,1400,1,0,0,0,54,1448,1,0,0,0,56,1498, - 1,0,0,0,58,1513,1,0,0,0,60,1517,1,0,0,0,62,1519,1,0,0,0,64,1526, - 1,0,0,0,66,1555,1,0,0,0,68,1564,1,0,0,0,70,1584,1,0,0,0,72,1586, - 1,0,0,0,74,1625,1,0,0,0,76,1641,1,0,0,0,78,1643,1,0,0,0,80,1652, - 1,0,0,0,82,1654,1,0,0,0,84,1662,1,0,0,0,86,1668,1,0,0,0,88,1670, - 1,0,0,0,90,1755,1,0,0,0,92,1770,1,0,0,0,94,1781,1,0,0,0,96,1802, - 1,0,0,0,98,1804,1,0,0,0,100,1817,1,0,0,0,102,1821,1,0,0,0,104,1831, - 1,0,0,0,106,1842,1,0,0,0,108,1853,1,0,0,0,110,1935,1,0,0,0,112,2014, - 1,0,0,0,114,2041,1,0,0,0,116,2043,1,0,0,0,118,2050,1,0,0,0,120,2062, - 1,0,0,0,122,2064,1,0,0,0,124,2092,1,0,0,0,126,2099,1,0,0,0,128,2171, - 1,0,0,0,130,2191,1,0,0,0,132,2193,1,0,0,0,134,2197,1,0,0,0,136,2210, - 1,0,0,0,138,2219,1,0,0,0,140,2293,1,0,0,0,142,2299,1,0,0,0,144,2771, - 1,0,0,0,146,2786,1,0,0,0,148,2804,1,0,0,0,150,2809,1,0,0,0,152,2814, - 1,0,0,0,154,2818,1,0,0,0,156,2824,1,0,0,0,158,2837,1,0,0,0,160,2845, - 1,0,0,0,162,2858,1,0,0,0,164,2860,1,0,0,0,166,2866,1,0,0,0,168,2874, - 1,0,0,0,170,2882,1,0,0,0,172,2884,1,0,0,0,174,2886,1,0,0,0,176,2888, - 1,0,0,0,178,2890,1,0,0,0,180,2900,1,0,0,0,182,2902,1,0,0,0,184,2975, - 1,0,0,0,186,2993,1,0,0,0,188,2997,1,0,0,0,190,2999,1,0,0,0,192,3004, - 1,0,0,0,194,3074,1,0,0,0,196,3076,1,0,0,0,198,3093,1,0,0,0,200,3157, - 1,0,0,0,202,3168,1,0,0,0,204,3170,1,0,0,0,206,3210,1,0,0,0,208,3242, - 1,0,0,0,210,3244,1,0,0,0,212,3252,1,0,0,0,214,3259,1,0,0,0,216,3268, - 1,0,0,0,218,3275,1,0,0,0,220,3282,1,0,0,0,222,3284,1,0,0,0,224,3292, - 1,0,0,0,226,3303,1,0,0,0,228,3317,1,0,0,0,230,3332,1,0,0,0,232,3336, - 1,0,0,0,234,3358,1,0,0,0,236,3459,1,0,0,0,238,3461,1,0,0,0,240,3466, - 1,0,0,0,242,3471,1,0,0,0,244,3474,1,0,0,0,246,3491,1,0,0,0,248,3501, - 1,0,0,0,250,3506,1,0,0,0,252,3509,1,0,0,0,254,3515,1,0,0,0,256,3528, - 1,0,0,0,258,3541,1,0,0,0,260,3554,1,0,0,0,262,3567,1,0,0,0,264,3574, - 1,0,0,0,266,3581,1,0,0,0,268,3583,1,0,0,0,270,3585,1,0,0,0,272,3587, - 1,0,0,0,274,3589,1,0,0,0,276,3593,1,0,0,0,278,3595,1,0,0,0,280,3597, - 1,0,0,0,282,3605,1,0,0,0,284,3611,1,0,0,0,286,3616,1,0,0,0,288,3623, - 1,0,0,0,290,3625,1,0,0,0,292,3640,1,0,0,0,294,3647,1,0,0,0,296,3661, - 1,0,0,0,298,3665,1,0,0,0,300,3667,1,0,0,0,302,304,3,2,1,0,303,302, - 1,0,0,0,304,307,1,0,0,0,305,303,1,0,0,0,305,306,1,0,0,0,306,308, - 1,0,0,0,307,305,1,0,0,0,308,309,5,0,0,1,309,1,1,0,0,0,310,311,3, - 4,2,0,311,3,1,0,0,0,312,314,3,16,8,0,313,315,5,325,0,0,314,313,1, - 0,0,0,314,315,1,0,0,0,315,5,1,0,0,0,316,318,3,136,68,0,317,319,5, - 325,0,0,318,317,1,0,0,0,318,319,1,0,0,0,319,7,1,0,0,0,320,322,3, - 222,111,0,321,323,5,325,0,0,322,321,1,0,0,0,322,323,1,0,0,0,323, - 9,1,0,0,0,324,326,3,184,92,0,325,327,5,325,0,0,326,325,1,0,0,0,326, - 327,1,0,0,0,327,11,1,0,0,0,328,330,3,204,102,0,329,331,5,325,0,0, - 330,329,1,0,0,0,330,331,1,0,0,0,331,13,1,0,0,0,332,333,3,224,112, - 0,333,334,5,0,0,1,334,15,1,0,0,0,335,1234,3,18,9,0,336,337,5,288, - 0,0,337,1234,3,264,132,0,338,339,5,53,0,0,339,343,5,42,0,0,340,341, - 5,119,0,0,341,342,5,182,0,0,342,344,5,94,0,0,343,340,1,0,0,0,343, - 344,1,0,0,0,344,345,1,0,0,0,345,346,3,270,135,0,346,347,5,290,0, - 0,347,350,3,294,147,0,348,349,5,46,0,0,349,351,3,168,84,0,350,348, - 1,0,0,0,350,351,1,0,0,0,351,354,1,0,0,0,352,353,5,31,0,0,353,355, - 3,288,144,0,354,352,1,0,0,0,354,355,1,0,0,0,355,358,1,0,0,0,356, - 357,5,304,0,0,357,359,3,32,16,0,358,356,1,0,0,0,358,359,1,0,0,0, - 359,1234,1,0,0,0,360,361,5,83,0,0,361,364,5,42,0,0,362,363,5,119, - 0,0,363,365,5,94,0,0,364,362,1,0,0,0,364,365,1,0,0,0,365,366,1,0, - 0,0,366,368,3,268,134,0,367,369,7,0,0,0,368,367,1,0,0,0,368,369, - 1,0,0,0,369,1234,1,0,0,0,370,371,5,53,0,0,371,375,5,243,0,0,372, - 373,5,119,0,0,373,374,5,182,0,0,374,376,5,94,0,0,375,372,1,0,0,0, - 375,376,1,0,0,0,376,377,1,0,0,0,377,380,3,266,133,0,378,379,5,31, - 0,0,379,381,3,288,144,0,380,378,1,0,0,0,380,381,1,0,0,0,381,384, - 1,0,0,0,382,383,5,304,0,0,383,385,3,32,16,0,384,382,1,0,0,0,384, - 385,1,0,0,0,385,1234,1,0,0,0,386,387,5,83,0,0,387,390,5,243,0,0, - 388,389,5,119,0,0,389,391,5,94,0,0,390,388,1,0,0,0,390,391,1,0,0, - 0,391,392,1,0,0,0,392,394,3,264,132,0,393,395,7,0,0,0,394,393,1, - 0,0,0,394,395,1,0,0,0,395,1234,1,0,0,0,396,397,5,23,0,0,397,398, - 5,243,0,0,398,399,3,264,132,0,399,400,5,223,0,0,400,401,5,269,0, - 0,401,402,3,266,133,0,402,1234,1,0,0,0,403,404,5,23,0,0,404,405, - 5,243,0,0,405,406,3,264,132,0,406,407,5,251,0,0,407,408,5,31,0,0, - 408,409,3,288,144,0,409,1234,1,0,0,0,410,413,5,53,0,0,411,412,5, - 194,0,0,412,414,5,226,0,0,413,411,1,0,0,0,413,414,1,0,0,0,414,415, - 1,0,0,0,415,419,5,260,0,0,416,417,5,119,0,0,417,418,5,182,0,0,418, - 420,5,94,0,0,419,416,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421, - 423,3,258,129,0,422,424,3,104,52,0,423,422,1,0,0,0,423,424,1,0,0, - 0,424,427,1,0,0,0,425,426,5,46,0,0,426,428,3,168,84,0,427,425,1, - 0,0,0,427,428,1,0,0,0,428,431,1,0,0,0,429,430,5,304,0,0,430,432, - 3,32,16,0,431,429,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433,439, - 5,28,0,0,434,440,3,18,9,0,435,436,5,1,0,0,436,437,3,18,9,0,437,438, - 5,2,0,0,438,440,1,0,0,0,439,434,1,0,0,0,439,435,1,0,0,0,440,446, - 1,0,0,0,441,443,5,304,0,0,442,444,5,179,0,0,443,442,1,0,0,0,443, - 444,1,0,0,0,444,445,1,0,0,0,445,447,5,65,0,0,446,441,1,0,0,0,446, - 447,1,0,0,0,447,1234,1,0,0,0,448,451,5,53,0,0,449,450,5,194,0,0, - 450,452,5,226,0,0,451,449,1,0,0,0,451,452,1,0,0,0,452,453,1,0,0, - 0,453,457,5,260,0,0,454,455,5,119,0,0,455,456,5,182,0,0,456,458, - 5,94,0,0,457,454,1,0,0,0,457,458,1,0,0,0,458,459,1,0,0,0,459,460, - 3,258,129,0,460,461,5,1,0,0,461,466,3,26,13,0,462,463,5,3,0,0,463, - 465,3,26,13,0,464,462,1,0,0,0,465,468,1,0,0,0,466,464,1,0,0,0,466, - 467,1,0,0,0,467,469,1,0,0,0,468,466,1,0,0,0,469,472,5,2,0,0,470, - 471,5,46,0,0,471,473,3,168,84,0,472,470,1,0,0,0,472,473,1,0,0,0, - 473,476,1,0,0,0,474,475,5,304,0,0,475,477,3,32,16,0,476,474,1,0, - 0,0,476,477,1,0,0,0,477,1234,1,0,0,0,478,479,5,83,0,0,479,482,5, - 260,0,0,480,481,5,119,0,0,481,483,5,94,0,0,482,480,1,0,0,0,482,483, - 1,0,0,0,483,484,1,0,0,0,484,1234,3,256,128,0,485,486,5,127,0,0,486, - 487,5,130,0,0,487,489,3,256,128,0,488,490,3,106,53,0,489,488,1,0, - 0,0,489,490,1,0,0,0,490,491,1,0,0,0,491,492,3,18,9,0,492,1234,1, - 0,0,0,493,494,5,73,0,0,494,495,5,105,0,0,495,498,3,256,128,0,496, - 497,5,301,0,0,497,499,3,138,69,0,498,496,1,0,0,0,498,499,1,0,0,0, - 499,1234,1,0,0,0,500,501,5,274,0,0,501,502,5,260,0,0,502,1234,3, - 256,128,0,503,504,5,46,0,0,504,505,5,190,0,0,505,506,5,260,0,0,506, - 507,3,256,128,0,507,510,5,133,0,0,508,511,3,168,84,0,509,511,5,183, - 0,0,510,508,1,0,0,0,510,509,1,0,0,0,511,1234,1,0,0,0,512,513,5,46, - 0,0,513,514,5,190,0,0,514,515,5,299,0,0,515,516,3,260,130,0,516, - 519,5,133,0,0,517,520,3,168,84,0,518,520,5,183,0,0,519,517,1,0,0, - 0,519,518,1,0,0,0,520,1234,1,0,0,0,521,522,5,46,0,0,522,523,5,190, - 0,0,523,524,5,44,0,0,524,525,3,276,138,0,525,528,5,133,0,0,526,529, - 3,168,84,0,527,529,5,183,0,0,528,526,1,0,0,0,528,527,1,0,0,0,529, - 1234,1,0,0,0,530,531,5,23,0,0,531,534,5,260,0,0,532,533,5,119,0, - 0,533,535,5,94,0,0,534,532,1,0,0,0,534,535,1,0,0,0,535,536,1,0,0, - 0,536,537,3,256,128,0,537,538,5,223,0,0,538,539,5,269,0,0,539,540, - 3,258,129,0,540,1234,1,0,0,0,541,542,5,23,0,0,542,545,5,260,0,0, - 543,544,5,119,0,0,544,546,5,94,0,0,545,543,1,0,0,0,545,546,1,0,0, - 0,546,547,1,0,0,0,547,548,3,256,128,0,548,549,5,19,0,0,549,553,5, - 44,0,0,550,551,5,119,0,0,551,552,5,182,0,0,552,554,5,94,0,0,553, - 550,1,0,0,0,553,554,1,0,0,0,554,555,1,0,0,0,555,556,3,28,14,0,556, - 1234,1,0,0,0,557,558,5,23,0,0,558,561,5,260,0,0,559,560,5,119,0, - 0,560,562,5,94,0,0,561,559,1,0,0,0,561,562,1,0,0,0,562,563,1,0,0, - 0,563,564,3,256,128,0,564,565,5,223,0,0,565,568,5,44,0,0,566,567, - 5,119,0,0,567,569,5,94,0,0,568,566,1,0,0,0,568,569,1,0,0,0,569,570, - 1,0,0,0,570,571,3,276,138,0,571,572,5,269,0,0,572,573,3,278,139, - 0,573,1234,1,0,0,0,574,575,5,23,0,0,575,578,5,260,0,0,576,577,5, - 119,0,0,577,579,5,94,0,0,578,576,1,0,0,0,578,579,1,0,0,0,579,580, - 1,0,0,0,580,581,3,256,128,0,581,582,5,83,0,0,582,585,5,44,0,0,583, - 584,5,119,0,0,584,586,5,94,0,0,585,583,1,0,0,0,585,586,1,0,0,0,586, - 587,1,0,0,0,587,588,3,276,138,0,588,1234,1,0,0,0,589,590,5,23,0, - 0,590,593,5,260,0,0,591,592,5,119,0,0,592,594,5,94,0,0,593,591,1, - 0,0,0,593,594,1,0,0,0,594,595,1,0,0,0,595,596,3,256,128,0,596,597, - 5,23,0,0,597,598,5,44,0,0,598,599,3,276,138,0,599,600,5,251,0,0, - 600,601,5,65,0,0,601,602,5,276,0,0,602,603,3,184,92,0,603,1234,1, - 0,0,0,604,605,5,23,0,0,605,608,5,260,0,0,606,607,5,119,0,0,607,609, - 5,94,0,0,608,606,1,0,0,0,608,609,1,0,0,0,609,610,1,0,0,0,610,611, - 3,256,128,0,611,612,5,23,0,0,612,613,5,44,0,0,613,614,3,276,138, - 0,614,615,5,83,0,0,615,616,5,182,0,0,616,617,5,183,0,0,617,1234, - 1,0,0,0,618,619,5,23,0,0,619,620,5,260,0,0,620,621,3,256,128,0,621, - 622,5,251,0,0,622,623,5,31,0,0,623,624,3,288,144,0,624,1234,1,0, - 0,0,625,626,5,23,0,0,626,627,5,260,0,0,627,628,3,256,128,0,628,629, - 5,251,0,0,629,630,5,216,0,0,630,631,3,34,17,0,631,1234,1,0,0,0,632, - 633,5,23,0,0,633,634,5,260,0,0,634,635,3,256,128,0,635,636,5,93, - 0,0,636,649,3,272,136,0,637,646,5,1,0,0,638,643,3,218,109,0,639, - 640,5,3,0,0,640,642,3,218,109,0,641,639,1,0,0,0,642,645,1,0,0,0, - 643,641,1,0,0,0,643,644,1,0,0,0,644,647,1,0,0,0,645,643,1,0,0,0, - 646,638,1,0,0,0,646,647,1,0,0,0,647,648,1,0,0,0,648,650,5,2,0,0, - 649,637,1,0,0,0,649,650,1,0,0,0,650,653,1,0,0,0,651,652,5,301,0, - 0,652,654,3,138,69,0,653,651,1,0,0,0,653,654,1,0,0,0,654,1234,1, - 0,0,0,655,656,5,24,0,0,656,659,3,256,128,0,657,658,5,304,0,0,658, - 660,3,32,16,0,659,657,1,0,0,0,659,660,1,0,0,0,660,1234,1,0,0,0,661, - 664,5,53,0,0,662,663,5,194,0,0,663,665,5,226,0,0,664,662,1,0,0,0, - 664,665,1,0,0,0,665,666,1,0,0,0,666,667,5,167,0,0,667,671,5,299, - 0,0,668,669,5,119,0,0,669,670,5,182,0,0,670,672,5,94,0,0,671,668, - 1,0,0,0,671,672,1,0,0,0,672,673,1,0,0,0,673,677,3,262,131,0,674, - 675,5,109,0,0,675,676,5,208,0,0,676,678,3,178,89,0,677,674,1,0,0, - 0,677,678,1,0,0,0,678,681,1,0,0,0,679,680,5,46,0,0,680,682,3,168, - 84,0,681,679,1,0,0,0,681,682,1,0,0,0,682,685,1,0,0,0,683,684,5,304, - 0,0,684,686,3,32,16,0,685,683,1,0,0,0,685,686,1,0,0,0,686,687,1, - 0,0,0,687,688,5,28,0,0,688,689,3,18,9,0,689,1234,1,0,0,0,690,693, - 5,53,0,0,691,692,5,194,0,0,692,694,5,226,0,0,693,691,1,0,0,0,693, - 694,1,0,0,0,694,695,1,0,0,0,695,696,5,299,0,0,696,699,3,262,131, - 0,697,698,5,46,0,0,698,700,3,168,84,0,699,697,1,0,0,0,699,700,1, - 0,0,0,700,703,1,0,0,0,701,702,5,246,0,0,702,704,7,1,0,0,703,701, - 1,0,0,0,703,704,1,0,0,0,704,707,1,0,0,0,705,706,5,304,0,0,706,708, - 3,32,16,0,707,705,1,0,0,0,707,708,1,0,0,0,708,709,1,0,0,0,709,710, - 5,28,0,0,710,711,3,18,9,0,711,1234,1,0,0,0,712,713,5,222,0,0,713, - 714,5,167,0,0,714,715,5,299,0,0,715,1234,3,260,130,0,716,717,5,83, - 0,0,717,718,5,167,0,0,718,721,5,299,0,0,719,720,5,119,0,0,720,722, - 5,94,0,0,721,719,1,0,0,0,721,722,1,0,0,0,722,723,1,0,0,0,723,1234, - 3,260,130,0,724,725,5,23,0,0,725,726,5,167,0,0,726,729,5,299,0,0, - 727,728,5,119,0,0,728,730,5,94,0,0,729,727,1,0,0,0,729,730,1,0,0, - 0,730,731,1,0,0,0,731,732,3,260,130,0,732,733,5,223,0,0,733,734, - 5,269,0,0,734,735,3,262,131,0,735,1234,1,0,0,0,736,737,5,23,0,0, - 737,738,5,167,0,0,738,739,5,299,0,0,739,740,3,260,130,0,740,741, - 5,251,0,0,741,742,5,216,0,0,742,743,3,34,17,0,743,1234,1,0,0,0,744, - 745,5,83,0,0,745,748,5,299,0,0,746,747,5,119,0,0,747,749,5,94,0, - 0,748,746,1,0,0,0,748,749,1,0,0,0,749,750,1,0,0,0,750,1234,3,260, - 130,0,751,752,5,23,0,0,752,753,5,299,0,0,753,754,3,260,130,0,754, - 755,5,223,0,0,755,756,5,269,0,0,756,757,3,262,131,0,757,1234,1,0, - 0,0,758,759,5,23,0,0,759,760,5,299,0,0,760,761,3,260,130,0,761,762, - 5,251,0,0,762,763,5,31,0,0,763,764,3,288,144,0,764,1234,1,0,0,0, - 765,766,5,37,0,0,766,767,3,272,136,0,767,776,5,1,0,0,768,773,3,218, - 109,0,769,770,5,3,0,0,770,772,3,218,109,0,771,769,1,0,0,0,772,775, - 1,0,0,0,773,771,1,0,0,0,773,774,1,0,0,0,774,777,1,0,0,0,775,773, - 1,0,0,0,776,768,1,0,0,0,776,777,1,0,0,0,777,778,1,0,0,0,778,779, - 5,2,0,0,779,1234,1,0,0,0,780,783,5,53,0,0,781,782,5,194,0,0,782, - 784,5,226,0,0,783,781,1,0,0,0,783,784,1,0,0,0,784,785,1,0,0,0,785, - 1234,3,224,112,0,786,787,5,83,0,0,787,790,5,107,0,0,788,789,5,119, - 0,0,789,791,5,94,0,0,790,788,1,0,0,0,790,791,1,0,0,0,791,792,1,0, - 0,0,792,1234,3,228,114,0,793,794,5,53,0,0,794,795,5,235,0,0,795, - 799,3,294,147,0,796,797,5,304,0,0,797,798,5,20,0,0,798,800,3,286, - 143,0,799,796,1,0,0,0,799,800,1,0,0,0,800,803,1,0,0,0,801,802,5, - 122,0,0,802,804,3,268,134,0,803,801,1,0,0,0,803,804,1,0,0,0,804, - 1234,1,0,0,0,805,806,5,83,0,0,806,807,5,235,0,0,807,810,3,294,147, - 0,808,809,5,122,0,0,809,811,3,268,134,0,810,808,1,0,0,0,810,811, - 1,0,0,0,811,1234,1,0,0,0,812,813,5,110,0,0,813,818,3,292,146,0,814, - 815,5,3,0,0,815,817,3,292,146,0,816,814,1,0,0,0,817,820,1,0,0,0, - 818,816,1,0,0,0,818,819,1,0,0,0,819,821,1,0,0,0,820,818,1,0,0,0, - 821,822,5,269,0,0,822,827,3,288,144,0,823,824,5,3,0,0,824,826,3, - 288,144,0,825,823,1,0,0,0,826,829,1,0,0,0,827,825,1,0,0,0,827,828, - 1,0,0,0,828,833,1,0,0,0,829,827,1,0,0,0,830,831,5,304,0,0,831,832, - 5,20,0,0,832,834,5,193,0,0,833,830,1,0,0,0,833,834,1,0,0,0,834,838, - 1,0,0,0,835,836,5,111,0,0,836,837,5,36,0,0,837,839,3,286,143,0,838, - 835,1,0,0,0,838,839,1,0,0,0,839,842,1,0,0,0,840,841,5,122,0,0,841, - 843,3,268,134,0,842,840,1,0,0,0,842,843,1,0,0,0,843,1234,1,0,0,0, - 844,855,5,110,0,0,845,850,3,292,146,0,846,847,5,3,0,0,847,849,3, - 292,146,0,848,846,1,0,0,0,849,852,1,0,0,0,850,848,1,0,0,0,850,851, - 1,0,0,0,851,856,1,0,0,0,852,850,1,0,0,0,853,854,5,22,0,0,854,856, - 5,215,0,0,855,845,1,0,0,0,855,853,1,0,0,0,856,857,1,0,0,0,857,858, - 5,190,0,0,858,859,3,252,126,0,859,860,5,269,0,0,860,864,3,288,144, - 0,861,862,5,304,0,0,862,863,5,110,0,0,863,865,5,193,0,0,864,861, - 1,0,0,0,864,865,1,0,0,0,865,1234,1,0,0,0,866,870,5,233,0,0,867,868, - 5,20,0,0,868,869,5,193,0,0,869,871,5,103,0,0,870,867,1,0,0,0,870, - 871,1,0,0,0,871,872,1,0,0,0,872,877,3,292,146,0,873,874,5,3,0,0, - 874,876,3,292,146,0,875,873,1,0,0,0,876,879,1,0,0,0,877,875,1,0, - 0,0,877,878,1,0,0,0,878,880,1,0,0,0,879,877,1,0,0,0,880,881,5,105, - 0,0,881,886,3,288,144,0,882,883,5,3,0,0,883,885,3,288,144,0,884, - 882,1,0,0,0,885,888,1,0,0,0,886,884,1,0,0,0,886,887,1,0,0,0,887, - 892,1,0,0,0,888,886,1,0,0,0,889,890,5,111,0,0,890,891,5,36,0,0,891, - 893,3,286,143,0,892,889,1,0,0,0,892,893,1,0,0,0,893,896,1,0,0,0, - 894,895,5,122,0,0,895,897,3,268,134,0,896,894,1,0,0,0,896,897,1, - 0,0,0,897,1234,1,0,0,0,898,902,5,233,0,0,899,900,5,110,0,0,900,901, - 5,193,0,0,901,903,5,103,0,0,902,899,1,0,0,0,902,903,1,0,0,0,903, - 914,1,0,0,0,904,909,3,292,146,0,905,906,5,3,0,0,906,908,3,292,146, - 0,907,905,1,0,0,0,908,911,1,0,0,0,909,907,1,0,0,0,909,910,1,0,0, - 0,910,915,1,0,0,0,911,909,1,0,0,0,912,913,5,22,0,0,913,915,5,215, - 0,0,914,904,1,0,0,0,914,912,1,0,0,0,915,916,1,0,0,0,916,917,5,190, - 0,0,917,918,3,252,126,0,918,919,5,105,0,0,919,920,3,288,144,0,920, - 1234,1,0,0,0,921,932,5,74,0,0,922,927,3,248,124,0,923,924,5,3,0, - 0,924,926,3,248,124,0,925,923,1,0,0,0,926,929,1,0,0,0,927,925,1, - 0,0,0,927,928,1,0,0,0,928,933,1,0,0,0,929,927,1,0,0,0,930,931,5, - 22,0,0,931,933,5,215,0,0,932,922,1,0,0,0,932,930,1,0,0,0,933,934, - 1,0,0,0,934,935,5,190,0,0,935,936,3,252,126,0,936,937,5,269,0,0, - 937,938,3,288,144,0,938,1234,1,0,0,0,939,940,5,251,0,0,940,944,5, - 235,0,0,941,945,5,22,0,0,942,945,5,180,0,0,943,945,3,294,147,0,944, - 941,1,0,0,0,944,942,1,0,0,0,944,943,1,0,0,0,945,948,1,0,0,0,946, - 947,5,122,0,0,947,949,3,268,134,0,948,946,1,0,0,0,948,949,1,0,0, - 0,949,1234,1,0,0,0,950,951,5,253,0,0,951,954,5,112,0,0,952,953,5, - 190,0,0,953,955,3,252,126,0,954,952,1,0,0,0,954,955,1,0,0,0,955, - 1234,1,0,0,0,956,968,5,95,0,0,957,958,5,1,0,0,958,963,3,212,106, - 0,959,960,5,3,0,0,960,962,3,212,106,0,961,959,1,0,0,0,962,965,1, - 0,0,0,963,961,1,0,0,0,963,964,1,0,0,0,964,966,1,0,0,0,965,963,1, - 0,0,0,966,967,5,2,0,0,967,969,1,0,0,0,968,957,1,0,0,0,968,969,1, - 0,0,0,969,970,1,0,0,0,970,1234,3,16,8,0,971,972,5,95,0,0,972,974, - 5,24,0,0,973,975,5,297,0,0,974,973,1,0,0,0,974,975,1,0,0,0,975,976, - 1,0,0,0,976,1234,3,16,8,0,977,978,5,253,0,0,978,979,5,53,0,0,979, - 980,5,260,0,0,980,1234,3,256,128,0,981,982,5,253,0,0,982,983,5,53, - 0,0,983,984,5,243,0,0,984,1234,3,264,132,0,985,986,5,253,0,0,986, - 987,5,53,0,0,987,988,5,299,0,0,988,1234,3,260,130,0,989,990,5,253, - 0,0,990,991,5,53,0,0,991,992,5,167,0,0,992,993,5,299,0,0,993,1234, - 3,260,130,0,994,995,5,253,0,0,995,996,5,53,0,0,996,997,5,107,0,0, - 997,1234,3,272,136,0,998,999,5,253,0,0,999,1002,5,261,0,0,1000,1001, - 7,2,0,0,1001,1003,3,264,132,0,1002,1000,1,0,0,0,1002,1003,1,0,0, - 0,1003,1010,1,0,0,0,1004,1005,5,154,0,0,1005,1008,3,168,84,0,1006, - 1007,5,90,0,0,1007,1009,3,168,84,0,1008,1006,1,0,0,0,1008,1009,1, - 0,0,0,1009,1011,1,0,0,0,1010,1004,1,0,0,0,1010,1011,1,0,0,0,1011, - 1234,1,0,0,0,1012,1013,5,253,0,0,1013,1016,5,244,0,0,1014,1015,7, - 2,0,0,1015,1017,3,268,134,0,1016,1014,1,0,0,0,1016,1017,1,0,0,0, - 1017,1024,1,0,0,0,1018,1019,5,154,0,0,1019,1022,3,168,84,0,1020, - 1021,5,90,0,0,1021,1023,3,168,84,0,1022,1020,1,0,0,0,1022,1023,1, - 0,0,0,1023,1025,1,0,0,0,1024,1018,1,0,0,0,1024,1025,1,0,0,0,1025, - 1234,1,0,0,0,1026,1027,5,253,0,0,1027,1034,5,43,0,0,1028,1029,5, - 154,0,0,1029,1032,3,168,84,0,1030,1031,5,90,0,0,1031,1033,3,168, - 84,0,1032,1030,1,0,0,0,1032,1033,1,0,0,0,1033,1035,1,0,0,0,1034, - 1028,1,0,0,0,1034,1035,1,0,0,0,1035,1234,1,0,0,0,1036,1037,5,253, - 0,0,1037,1038,5,45,0,0,1038,1039,7,2,0,0,1039,1046,3,254,127,0,1040, - 1041,5,154,0,0,1041,1044,3,168,84,0,1042,1043,5,90,0,0,1043,1045, - 3,168,84,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0,1045,1047,1,0,0,0, - 1046,1040,1,0,0,0,1046,1047,1,0,0,0,1047,1234,1,0,0,0,1048,1049, - 5,253,0,0,1049,1050,5,256,0,0,1050,1051,5,103,0,0,1051,1234,3,254, - 127,0,1052,1053,5,253,0,0,1053,1054,5,256,0,0,1054,1055,5,103,0, - 0,1055,1056,5,1,0,0,1056,1057,3,18,9,0,1057,1058,5,2,0,0,1058,1234, - 1,0,0,0,1059,1061,5,253,0,0,1060,1062,5,56,0,0,1061,1060,1,0,0,0, - 1061,1062,1,0,0,0,1062,1063,1,0,0,0,1063,1066,5,236,0,0,1064,1065, - 7,2,0,0,1065,1067,3,268,134,0,1066,1064,1,0,0,0,1066,1067,1,0,0, - 0,1067,1234,1,0,0,0,1068,1069,5,253,0,0,1069,1070,5,235,0,0,1070, - 1073,5,112,0,0,1071,1072,7,2,0,0,1072,1074,3,268,134,0,1073,1071, - 1,0,0,0,1073,1074,1,0,0,0,1074,1234,1,0,0,0,1075,1076,5,76,0,0,1076, - 1234,3,254,127,0,1077,1078,5,75,0,0,1078,1234,3,254,127,0,1079,1080, - 5,253,0,0,1080,1083,5,108,0,0,1081,1082,7,2,0,0,1082,1084,3,264, - 132,0,1083,1081,1,0,0,0,1083,1084,1,0,0,0,1084,1091,1,0,0,0,1085, - 1086,5,154,0,0,1086,1089,3,168,84,0,1087,1088,5,90,0,0,1088,1090, - 3,168,84,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,1092,1,0,0,0, - 1091,1085,1,0,0,0,1091,1092,1,0,0,0,1092,1234,1,0,0,0,1093,1094, - 5,253,0,0,1094,1101,5,250,0,0,1095,1096,5,154,0,0,1096,1099,3,168, - 84,0,1097,1098,5,90,0,0,1098,1100,3,168,84,0,1099,1097,1,0,0,0,1099, - 1100,1,0,0,0,1100,1102,1,0,0,0,1101,1095,1,0,0,0,1101,1102,1,0,0, - 0,1102,1234,1,0,0,0,1103,1104,5,251,0,0,1104,1105,5,250,0,0,1105, - 1106,5,31,0,0,1106,1234,3,298,149,0,1107,1108,5,227,0,0,1108,1109, - 5,250,0,0,1109,1234,5,31,0,0,1110,1111,5,251,0,0,1111,1112,5,250, - 0,0,1112,1113,3,280,140,0,1113,1114,5,312,0,0,1114,1115,3,136,68, - 0,1115,1234,1,0,0,0,1116,1117,5,227,0,0,1117,1118,5,250,0,0,1118, - 1234,3,280,140,0,1119,1120,5,255,0,0,1120,1129,5,271,0,0,1121,1126, - 3,214,107,0,1122,1123,5,3,0,0,1123,1125,3,214,107,0,1124,1122,1, - 0,0,0,1125,1128,1,0,0,0,1126,1124,1,0,0,0,1126,1127,1,0,0,0,1127, - 1130,1,0,0,0,1128,1126,1,0,0,0,1129,1121,1,0,0,0,1129,1130,1,0,0, - 0,1130,1234,1,0,0,0,1131,1133,5,47,0,0,1132,1134,5,307,0,0,1133, - 1132,1,0,0,0,1133,1134,1,0,0,0,1134,1234,1,0,0,0,1135,1137,5,237, - 0,0,1136,1138,5,307,0,0,1137,1136,1,0,0,0,1137,1138,1,0,0,0,1138, - 1234,1,0,0,0,1139,1140,5,214,0,0,1140,1141,3,294,147,0,1141,1142, - 5,105,0,0,1142,1143,3,16,8,0,1143,1234,1,0,0,0,1144,1145,5,68,0, - 0,1145,1146,5,214,0,0,1146,1234,3,294,147,0,1147,1148,5,93,0,0,1148, - 1158,3,294,147,0,1149,1150,5,290,0,0,1150,1155,3,136,68,0,1151,1152, - 5,3,0,0,1152,1154,3,136,68,0,1153,1151,1,0,0,0,1154,1157,1,0,0,0, - 1155,1153,1,0,0,0,1155,1156,1,0,0,0,1156,1159,1,0,0,0,1157,1155, - 1,0,0,0,1158,1149,1,0,0,0,1158,1159,1,0,0,0,1159,1234,1,0,0,0,1160, - 1161,5,93,0,0,1161,1162,5,121,0,0,1162,1172,3,168,84,0,1163,1164, - 5,290,0,0,1164,1169,3,136,68,0,1165,1166,5,3,0,0,1166,1168,3,136, - 68,0,1167,1165,1,0,0,0,1168,1171,1,0,0,0,1169,1167,1,0,0,0,1169, - 1170,1,0,0,0,1170,1173,1,0,0,0,1171,1169,1,0,0,0,1172,1163,1,0,0, - 0,1172,1173,1,0,0,0,1173,1234,1,0,0,0,1174,1175,5,76,0,0,1175,1176, - 5,126,0,0,1176,1234,3,294,147,0,1177,1178,5,76,0,0,1178,1179,5,198, - 0,0,1179,1234,3,294,147,0,1180,1181,5,251,0,0,1181,1182,5,205,0, - 0,1182,1234,3,222,111,0,1183,1184,5,251,0,0,1184,1185,5,267,0,0, - 1185,1188,5,311,0,0,1186,1189,5,157,0,0,1187,1189,3,136,68,0,1188, - 1186,1,0,0,0,1188,1187,1,0,0,0,1189,1234,1,0,0,0,1190,1191,5,287, - 0,0,1191,1192,3,256,128,0,1192,1193,5,251,0,0,1193,1198,3,210,105, - 0,1194,1195,5,3,0,0,1195,1197,3,210,105,0,1196,1194,1,0,0,0,1197, - 1200,1,0,0,0,1198,1196,1,0,0,0,1198,1199,1,0,0,0,1199,1203,1,0,0, - 0,1200,1198,1,0,0,0,1201,1202,5,301,0,0,1202,1204,3,138,69,0,1203, - 1201,1,0,0,0,1203,1204,1,0,0,0,1204,1234,1,0,0,0,1205,1206,5,169, - 0,0,1206,1207,5,130,0,0,1207,1212,3,256,128,0,1208,1210,5,28,0,0, - 1209,1208,1,0,0,0,1209,1210,1,0,0,0,1210,1211,1,0,0,0,1211,1213, - 3,294,147,0,1212,1209,1,0,0,0,1212,1213,1,0,0,0,1213,1214,1,0,0, - 0,1214,1215,5,290,0,0,1215,1216,3,72,36,0,1216,1217,5,190,0,0,1217, - 1219,3,136,68,0,1218,1220,3,194,97,0,1219,1218,1,0,0,0,1220,1221, - 1,0,0,0,1221,1219,1,0,0,0,1221,1222,1,0,0,0,1222,1234,1,0,0,0,1223, - 1224,5,253,0,0,1224,1225,5,46,0,0,1225,1226,5,190,0,0,1226,1227, - 5,260,0,0,1227,1234,3,256,128,0,1228,1229,5,253,0,0,1229,1230,5, - 46,0,0,1230,1231,5,190,0,0,1231,1232,5,44,0,0,1232,1234,3,276,138, - 0,1233,335,1,0,0,0,1233,336,1,0,0,0,1233,338,1,0,0,0,1233,360,1, - 0,0,0,1233,370,1,0,0,0,1233,386,1,0,0,0,1233,396,1,0,0,0,1233,403, - 1,0,0,0,1233,410,1,0,0,0,1233,448,1,0,0,0,1233,478,1,0,0,0,1233, - 485,1,0,0,0,1233,493,1,0,0,0,1233,500,1,0,0,0,1233,503,1,0,0,0,1233, - 512,1,0,0,0,1233,521,1,0,0,0,1233,530,1,0,0,0,1233,541,1,0,0,0,1233, - 557,1,0,0,0,1233,574,1,0,0,0,1233,589,1,0,0,0,1233,604,1,0,0,0,1233, - 618,1,0,0,0,1233,625,1,0,0,0,1233,632,1,0,0,0,1233,655,1,0,0,0,1233, - 661,1,0,0,0,1233,690,1,0,0,0,1233,712,1,0,0,0,1233,716,1,0,0,0,1233, - 724,1,0,0,0,1233,736,1,0,0,0,1233,744,1,0,0,0,1233,751,1,0,0,0,1233, - 758,1,0,0,0,1233,765,1,0,0,0,1233,780,1,0,0,0,1233,786,1,0,0,0,1233, - 793,1,0,0,0,1233,805,1,0,0,0,1233,812,1,0,0,0,1233,844,1,0,0,0,1233, - 866,1,0,0,0,1233,898,1,0,0,0,1233,921,1,0,0,0,1233,939,1,0,0,0,1233, - 950,1,0,0,0,1233,956,1,0,0,0,1233,971,1,0,0,0,1233,977,1,0,0,0,1233, - 981,1,0,0,0,1233,985,1,0,0,0,1233,989,1,0,0,0,1233,994,1,0,0,0,1233, - 998,1,0,0,0,1233,1012,1,0,0,0,1233,1026,1,0,0,0,1233,1036,1,0,0, - 0,1233,1048,1,0,0,0,1233,1052,1,0,0,0,1233,1059,1,0,0,0,1233,1068, - 1,0,0,0,1233,1075,1,0,0,0,1233,1077,1,0,0,0,1233,1079,1,0,0,0,1233, - 1093,1,0,0,0,1233,1103,1,0,0,0,1233,1107,1,0,0,0,1233,1110,1,0,0, - 0,1233,1116,1,0,0,0,1233,1119,1,0,0,0,1233,1131,1,0,0,0,1233,1135, - 1,0,0,0,1233,1139,1,0,0,0,1233,1144,1,0,0,0,1233,1147,1,0,0,0,1233, - 1160,1,0,0,0,1233,1174,1,0,0,0,1233,1177,1,0,0,0,1233,1180,1,0,0, - 0,1233,1183,1,0,0,0,1233,1190,1,0,0,0,1233,1205,1,0,0,0,1233,1223, - 1,0,0,0,1233,1228,1,0,0,0,1234,17,1,0,0,0,1235,1237,3,20,10,0,1236, - 1235,1,0,0,0,1236,1237,1,0,0,0,1237,1238,1,0,0,0,1238,1239,3,22, - 11,0,1239,19,1,0,0,0,1240,1241,5,304,0,0,1241,1246,3,224,112,0,1242, - 1243,5,3,0,0,1243,1245,3,224,112,0,1244,1242,1,0,0,0,1245,1248,1, - 0,0,0,1246,1244,1,0,0,0,1246,1247,1,0,0,0,1247,21,1,0,0,0,1248,1246, - 1,0,0,0,1249,1251,3,24,12,0,1250,1249,1,0,0,0,1250,1251,1,0,0,0, - 1251,1252,1,0,0,0,1252,1253,3,40,20,0,1253,23,1,0,0,0,1254,1256, - 5,304,0,0,1255,1257,5,221,0,0,1256,1255,1,0,0,0,1256,1257,1,0,0, - 0,1257,1258,1,0,0,0,1258,1263,3,66,33,0,1259,1260,5,3,0,0,1260,1262, - 3,66,33,0,1261,1259,1,0,0,0,1262,1265,1,0,0,0,1263,1261,1,0,0,0, - 1263,1264,1,0,0,0,1264,25,1,0,0,0,1265,1263,1,0,0,0,1266,1269,3, - 28,14,0,1267,1269,3,30,15,0,1268,1266,1,0,0,0,1268,1267,1,0,0,0, - 1269,27,1,0,0,0,1270,1271,3,278,139,0,1271,1274,3,184,92,0,1272, - 1273,5,182,0,0,1273,1275,5,183,0,0,1274,1272,1,0,0,0,1274,1275,1, - 0,0,0,1275,1278,1,0,0,0,1276,1277,5,46,0,0,1277,1279,3,168,84,0, - 1278,1276,1,0,0,0,1278,1279,1,0,0,0,1279,1282,1,0,0,0,1280,1281, - 5,304,0,0,1281,1283,3,32,16,0,1282,1280,1,0,0,0,1282,1283,1,0,0, - 0,1283,29,1,0,0,0,1284,1285,5,154,0,0,1285,1288,3,256,128,0,1286, - 1287,7,3,0,0,1287,1289,5,216,0,0,1288,1286,1,0,0,0,1288,1289,1,0, - 0,0,1289,31,1,0,0,0,1290,1291,5,1,0,0,1291,1292,3,34,17,0,1292,1293, - 5,2,0,0,1293,33,1,0,0,0,1294,1299,3,36,18,0,1295,1296,5,3,0,0,1296, - 1298,3,36,18,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,35,1,0,0,0,1301,1299,1,0,0,0,1302,1303, - 3,294,147,0,1303,1304,5,312,0,0,1304,1305,3,38,19,0,1305,37,1,0, - 0,0,1306,1309,5,70,0,0,1307,1309,3,136,68,0,1308,1306,1,0,0,0,1308, - 1307,1,0,0,0,1309,39,1,0,0,0,1310,1321,3,46,23,0,1311,1312,5,195, - 0,0,1312,1313,5,36,0,0,1313,1318,3,50,25,0,1314,1315,5,3,0,0,1315, - 1317,3,50,25,0,1316,1314,1,0,0,0,1317,1320,1,0,0,0,1318,1316,1,0, - 0,0,1318,1319,1,0,0,0,1319,1322,1,0,0,0,1320,1318,1,0,0,0,1321,1311, - 1,0,0,0,1321,1322,1,0,0,0,1322,1328,1,0,0,0,1323,1324,5,188,0,0, - 1324,1326,3,44,22,0,1325,1327,7,4,0,0,1326,1325,1,0,0,0,1326,1327, - 1,0,0,0,1327,1329,1,0,0,0,1328,1323,1,0,0,0,1328,1329,1,0,0,0,1329, - 1343,1,0,0,0,1330,1331,5,155,0,0,1331,1344,3,42,21,0,1332,1333,5, - 98,0,0,1333,1335,7,5,0,0,1334,1336,3,44,22,0,1335,1334,1,0,0,0,1335, - 1336,1,0,0,0,1336,1337,1,0,0,0,1337,1341,7,4,0,0,1338,1342,5,192, - 0,0,1339,1340,5,304,0,0,1340,1342,5,266,0,0,1341,1338,1,0,0,0,1341, - 1339,1,0,0,0,1342,1344,1,0,0,0,1343,1330,1,0,0,0,1343,1332,1,0,0, - 0,1343,1344,1,0,0,0,1344,41,1,0,0,0,1345,1348,5,22,0,0,1346,1348, - 3,44,22,0,1347,1345,1,0,0,0,1347,1346,1,0,0,0,1348,43,1,0,0,0,1349, - 1350,7,6,0,0,1350,45,1,0,0,0,1351,1352,6,23,-1,0,1352,1353,3,48, - 24,0,1353,1368,1,0,0,0,1354,1355,10,2,0,0,1355,1357,5,128,0,0,1356, - 1358,3,68,34,0,1357,1356,1,0,0,0,1357,1358,1,0,0,0,1358,1359,1,0, - 0,0,1359,1367,3,46,23,3,1360,1361,10,1,0,0,1361,1363,7,7,0,0,1362, - 1364,3,68,34,0,1363,1362,1,0,0,0,1363,1364,1,0,0,0,1364,1365,1,0, - 0,0,1365,1367,3,46,23,2,1366,1354,1,0,0,0,1366,1360,1,0,0,0,1367, - 1370,1,0,0,0,1368,1366,1,0,0,0,1368,1369,1,0,0,0,1369,47,1,0,0,0, - 1370,1368,1,0,0,0,1371,1388,3,52,26,0,1372,1373,5,260,0,0,1373,1388, - 3,256,128,0,1374,1375,5,296,0,0,1375,1380,3,136,68,0,1376,1377,5, - 3,0,0,1377,1379,3,136,68,0,1378,1376,1,0,0,0,1379,1382,1,0,0,0,1380, - 1378,1,0,0,0,1380,1381,1,0,0,0,1381,1388,1,0,0,0,1382,1380,1,0,0, - 0,1383,1384,5,1,0,0,1384,1385,3,40,20,0,1385,1386,5,2,0,0,1386,1388, - 1,0,0,0,1387,1371,1,0,0,0,1387,1372,1,0,0,0,1387,1374,1,0,0,0,1387, - 1383,1,0,0,0,1388,49,1,0,0,0,1389,1392,3,276,138,0,1390,1392,3,136, - 68,0,1391,1389,1,0,0,0,1391,1390,1,0,0,0,1392,1394,1,0,0,0,1393, - 1395,7,8,0,0,1394,1393,1,0,0,0,1394,1395,1,0,0,0,1395,1398,1,0,0, - 0,1396,1397,5,185,0,0,1397,1399,7,9,0,0,1398,1396,1,0,0,0,1398,1399, - 1,0,0,0,1399,51,1,0,0,0,1400,1402,5,248,0,0,1401,1403,3,68,34,0, - 1402,1401,1,0,0,0,1402,1403,1,0,0,0,1403,1404,1,0,0,0,1404,1409, - 3,70,35,0,1405,1406,5,3,0,0,1406,1408,3,70,35,0,1407,1405,1,0,0, - 0,1408,1411,1,0,0,0,1409,1407,1,0,0,0,1409,1410,1,0,0,0,1410,1421, - 1,0,0,0,1411,1409,1,0,0,0,1412,1413,5,105,0,0,1413,1418,3,72,36, - 0,1414,1415,5,3,0,0,1415,1417,3,72,36,0,1416,1414,1,0,0,0,1417,1420, - 1,0,0,0,1418,1416,1,0,0,0,1418,1419,1,0,0,0,1419,1422,1,0,0,0,1420, - 1418,1,0,0,0,1421,1412,1,0,0,0,1421,1422,1,0,0,0,1422,1425,1,0,0, - 0,1423,1424,5,301,0,0,1424,1426,3,138,69,0,1425,1423,1,0,0,0,1425, - 1426,1,0,0,0,1426,1430,1,0,0,0,1427,1428,5,114,0,0,1428,1429,5,36, - 0,0,1429,1431,3,54,27,0,1430,1427,1,0,0,0,1430,1431,1,0,0,0,1431, - 1434,1,0,0,0,1432,1433,5,117,0,0,1433,1435,3,138,69,0,1434,1432, - 1,0,0,0,1434,1435,1,0,0,0,1435,1445,1,0,0,0,1436,1437,5,303,0,0, - 1437,1442,3,62,31,0,1438,1439,5,3,0,0,1439,1441,3,62,31,0,1440,1438, - 1,0,0,0,1441,1444,1,0,0,0,1442,1440,1,0,0,0,1442,1443,1,0,0,0,1443, - 1446,1,0,0,0,1444,1442,1,0,0,0,1445,1436,1,0,0,0,1445,1446,1,0,0, - 0,1446,53,1,0,0,0,1447,1449,3,68,34,0,1448,1447,1,0,0,0,1448,1449, - 1,0,0,0,1449,1450,1,0,0,0,1450,1455,3,56,28,0,1451,1452,5,3,0,0, - 1452,1454,3,56,28,0,1453,1451,1,0,0,0,1454,1457,1,0,0,0,1455,1453, - 1,0,0,0,1455,1456,1,0,0,0,1456,55,1,0,0,0,1457,1455,1,0,0,0,1458, - 1499,3,58,29,0,1459,1460,5,238,0,0,1460,1469,5,1,0,0,1461,1466,3, - 58,29,0,1462,1463,5,3,0,0,1463,1465,3,58,29,0,1464,1462,1,0,0,0, - 1465,1468,1,0,0,0,1466,1464,1,0,0,0,1466,1467,1,0,0,0,1467,1470, - 1,0,0,0,1468,1466,1,0,0,0,1469,1461,1,0,0,0,1469,1470,1,0,0,0,1470, - 1471,1,0,0,0,1471,1499,5,2,0,0,1472,1473,5,55,0,0,1473,1482,5,1, - 0,0,1474,1479,3,58,29,0,1475,1476,5,3,0,0,1476,1478,3,58,29,0,1477, - 1475,1,0,0,0,1478,1481,1,0,0,0,1479,1477,1,0,0,0,1479,1480,1,0,0, - 0,1480,1483,1,0,0,0,1481,1479,1,0,0,0,1482,1474,1,0,0,0,1482,1483, - 1,0,0,0,1483,1484,1,0,0,0,1484,1499,5,2,0,0,1485,1486,5,115,0,0, - 1486,1487,5,252,0,0,1487,1488,5,1,0,0,1488,1493,3,58,29,0,1489,1490, - 5,3,0,0,1490,1492,3,58,29,0,1491,1489,1,0,0,0,1492,1495,1,0,0,0, - 1493,1491,1,0,0,0,1493,1494,1,0,0,0,1494,1496,1,0,0,0,1495,1493, - 1,0,0,0,1496,1497,5,2,0,0,1497,1499,1,0,0,0,1498,1458,1,0,0,0,1498, - 1459,1,0,0,0,1498,1472,1,0,0,0,1498,1485,1,0,0,0,1499,57,1,0,0,0, - 1500,1509,5,1,0,0,1501,1506,3,60,30,0,1502,1503,5,3,0,0,1503,1505, - 3,60,30,0,1504,1502,1,0,0,0,1505,1508,1,0,0,0,1506,1504,1,0,0,0, - 1506,1507,1,0,0,0,1507,1510,1,0,0,0,1508,1506,1,0,0,0,1509,1501, - 1,0,0,0,1509,1510,1,0,0,0,1510,1511,1,0,0,0,1511,1514,5,2,0,0,1512, - 1514,3,60,30,0,1513,1500,1,0,0,0,1513,1512,1,0,0,0,1514,59,1,0,0, - 0,1515,1518,3,276,138,0,1516,1518,3,136,68,0,1517,1515,1,0,0,0,1517, - 1516,1,0,0,0,1518,61,1,0,0,0,1519,1520,3,294,147,0,1520,1521,5,28, - 0,0,1521,1522,5,1,0,0,1522,1523,3,64,32,0,1523,1524,5,2,0,0,1524, - 63,1,0,0,0,1525,1527,3,294,147,0,1526,1525,1,0,0,0,1526,1527,1,0, - 0,0,1527,1538,1,0,0,0,1528,1529,5,201,0,0,1529,1530,5,36,0,0,1530, - 1535,3,136,68,0,1531,1532,5,3,0,0,1532,1534,3,136,68,0,1533,1531, - 1,0,0,0,1534,1537,1,0,0,0,1535,1533,1,0,0,0,1535,1536,1,0,0,0,1536, - 1539,1,0,0,0,1537,1535,1,0,0,0,1538,1528,1,0,0,0,1538,1539,1,0,0, - 0,1539,1550,1,0,0,0,1540,1541,5,195,0,0,1541,1542,5,36,0,0,1542, - 1547,3,50,25,0,1543,1544,5,3,0,0,1544,1546,3,50,25,0,1545,1543,1, - 0,0,0,1546,1549,1,0,0,0,1547,1545,1,0,0,0,1547,1548,1,0,0,0,1548, - 1551,1,0,0,0,1549,1547,1,0,0,0,1550,1540,1,0,0,0,1550,1551,1,0,0, - 0,1551,1553,1,0,0,0,1552,1554,3,198,99,0,1553,1552,1,0,0,0,1553, - 1554,1,0,0,0,1554,65,1,0,0,0,1555,1557,3,294,147,0,1556,1558,3,108, - 54,0,1557,1556,1,0,0,0,1557,1558,1,0,0,0,1558,1559,1,0,0,0,1559, - 1560,5,28,0,0,1560,1561,5,1,0,0,1561,1562,3,22,11,0,1562,1563,5, - 2,0,0,1563,67,1,0,0,0,1564,1565,7,10,0,0,1565,69,1,0,0,0,1566,1569, - 3,276,138,0,1567,1569,3,136,68,0,1568,1566,1,0,0,0,1568,1567,1,0, - 0,0,1569,1574,1,0,0,0,1570,1572,5,28,0,0,1571,1570,1,0,0,0,1571, - 1572,1,0,0,0,1572,1573,1,0,0,0,1573,1575,3,294,147,0,1574,1571,1, - 0,0,0,1574,1575,1,0,0,0,1575,1585,1,0,0,0,1576,1577,3,144,72,0,1577, - 1578,5,4,0,0,1578,1581,5,320,0,0,1579,1580,5,28,0,0,1580,1582,3, - 108,54,0,1581,1579,1,0,0,0,1581,1582,1,0,0,0,1582,1585,1,0,0,0,1583, - 1585,5,320,0,0,1584,1568,1,0,0,0,1584,1576,1,0,0,0,1584,1583,1,0, - 0,0,1585,71,1,0,0,0,1586,1587,6,36,-1,0,1587,1588,3,78,39,0,1588, - 1607,1,0,0,0,1589,1603,10,2,0,0,1590,1591,5,54,0,0,1591,1592,5,136, - 0,0,1592,1604,3,78,39,0,1593,1594,3,74,37,0,1594,1595,5,136,0,0, - 1595,1596,3,72,36,0,1596,1597,3,76,38,0,1597,1604,1,0,0,0,1598,1599, - 5,172,0,0,1599,1600,3,74,37,0,1600,1601,5,136,0,0,1601,1602,3,78, - 39,0,1602,1604,1,0,0,0,1603,1590,1,0,0,0,1603,1593,1,0,0,0,1603, - 1598,1,0,0,0,1604,1606,1,0,0,0,1605,1589,1,0,0,0,1606,1609,1,0,0, - 0,1607,1605,1,0,0,0,1607,1608,1,0,0,0,1608,73,1,0,0,0,1609,1607, - 1,0,0,0,1610,1612,5,125,0,0,1611,1610,1,0,0,0,1611,1612,1,0,0,0, - 1612,1626,1,0,0,0,1613,1615,5,152,0,0,1614,1616,5,197,0,0,1615,1614, - 1,0,0,0,1615,1616,1,0,0,0,1616,1626,1,0,0,0,1617,1619,5,234,0,0, - 1618,1620,5,197,0,0,1619,1618,1,0,0,0,1619,1620,1,0,0,0,1620,1626, - 1,0,0,0,1621,1623,5,106,0,0,1622,1624,5,197,0,0,1623,1622,1,0,0, - 0,1623,1624,1,0,0,0,1624,1626,1,0,0,0,1625,1611,1,0,0,0,1625,1613, - 1,0,0,0,1625,1617,1,0,0,0,1625,1621,1,0,0,0,1626,75,1,0,0,0,1627, - 1628,5,190,0,0,1628,1642,3,138,69,0,1629,1630,5,290,0,0,1630,1631, - 5,1,0,0,1631,1636,3,294,147,0,1632,1633,5,3,0,0,1633,1635,3,294, - 147,0,1634,1632,1,0,0,0,1635,1638,1,0,0,0,1636,1634,1,0,0,0,1636, - 1637,1,0,0,0,1637,1639,1,0,0,0,1638,1636,1,0,0,0,1639,1640,5,2,0, - 0,1640,1642,1,0,0,0,1641,1627,1,0,0,0,1641,1629,1,0,0,0,1642,77, - 1,0,0,0,1643,1650,3,88,44,0,1644,1645,5,262,0,0,1645,1646,3,80,40, - 0,1646,1647,5,1,0,0,1647,1648,3,136,68,0,1648,1649,5,2,0,0,1649, - 1651,1,0,0,0,1650,1644,1,0,0,0,1650,1651,1,0,0,0,1651,79,1,0,0,0, - 1652,1653,7,11,0,0,1653,81,1,0,0,0,1654,1655,7,12,0,0,1655,83,1, - 0,0,0,1656,1663,5,89,0,0,1657,1659,5,274,0,0,1658,1660,3,168,84, - 0,1659,1658,1,0,0,0,1659,1660,1,0,0,0,1660,1661,1,0,0,0,1661,1663, - 3,86,43,0,1662,1656,1,0,0,0,1662,1657,1,0,0,0,1663,85,1,0,0,0,1664, - 1665,5,304,0,0,1665,1669,5,51,0,0,1666,1667,5,306,0,0,1667,1669, - 5,51,0,0,1668,1664,1,0,0,0,1668,1666,1,0,0,0,1669,87,1,0,0,0,1670, - 1753,3,102,51,0,1671,1672,5,166,0,0,1672,1683,5,1,0,0,1673,1674, - 5,201,0,0,1674,1675,5,36,0,0,1675,1680,3,136,68,0,1676,1677,5,3, - 0,0,1677,1679,3,136,68,0,1678,1676,1,0,0,0,1679,1682,1,0,0,0,1680, - 1678,1,0,0,0,1680,1681,1,0,0,0,1681,1684,1,0,0,0,1682,1680,1,0,0, - 0,1683,1673,1,0,0,0,1683,1684,1,0,0,0,1684,1695,1,0,0,0,1685,1686, - 5,195,0,0,1686,1687,5,36,0,0,1687,1692,3,50,25,0,1688,1689,5,3,0, - 0,1689,1691,3,50,25,0,1690,1688,1,0,0,0,1691,1694,1,0,0,0,1692,1690, - 1,0,0,0,1692,1693,1,0,0,0,1693,1696,1,0,0,0,1694,1692,1,0,0,0,1695, - 1685,1,0,0,0,1695,1696,1,0,0,0,1696,1706,1,0,0,0,1697,1698,5,168, - 0,0,1698,1703,3,90,45,0,1699,1700,5,3,0,0,1700,1702,3,90,45,0,1701, - 1699,1,0,0,0,1702,1705,1,0,0,0,1703,1701,1,0,0,0,1703,1704,1,0,0, - 0,1704,1707,1,0,0,0,1705,1703,1,0,0,0,1706,1697,1,0,0,0,1706,1707, - 1,0,0,0,1707,1709,1,0,0,0,1708,1710,3,92,46,0,1709,1708,1,0,0,0, - 1709,1710,1,0,0,0,1710,1714,1,0,0,0,1711,1712,5,21,0,0,1712,1713, - 5,163,0,0,1713,1715,3,96,48,0,1714,1711,1,0,0,0,1714,1715,1,0,0, - 0,1715,1717,1,0,0,0,1716,1718,7,13,0,0,1717,1716,1,0,0,0,1717,1718, - 1,0,0,0,1718,1719,1,0,0,0,1719,1720,5,206,0,0,1720,1721,5,1,0,0, - 1721,1722,3,204,102,0,1722,1732,5,2,0,0,1723,1724,5,257,0,0,1724, - 1729,3,98,49,0,1725,1726,5,3,0,0,1726,1728,3,98,49,0,1727,1725,1, - 0,0,0,1728,1731,1,0,0,0,1729,1727,1,0,0,0,1729,1730,1,0,0,0,1730, - 1733,1,0,0,0,1731,1729,1,0,0,0,1732,1723,1,0,0,0,1732,1733,1,0,0, - 0,1733,1734,1,0,0,0,1734,1735,5,71,0,0,1735,1740,3,100,50,0,1736, - 1737,5,3,0,0,1737,1739,3,100,50,0,1738,1736,1,0,0,0,1739,1742,1, - 0,0,0,1740,1738,1,0,0,0,1740,1741,1,0,0,0,1741,1743,1,0,0,0,1742, - 1740,1,0,0,0,1743,1751,5,2,0,0,1744,1746,5,28,0,0,1745,1744,1,0, - 0,0,1745,1746,1,0,0,0,1746,1747,1,0,0,0,1747,1749,3,294,147,0,1748, - 1750,3,108,54,0,1749,1748,1,0,0,0,1749,1750,1,0,0,0,1750,1752,1, - 0,0,0,1751,1745,1,0,0,0,1751,1752,1,0,0,0,1752,1754,1,0,0,0,1753, - 1671,1,0,0,0,1753,1754,1,0,0,0,1754,89,1,0,0,0,1755,1756,3,136,68, - 0,1756,1757,5,28,0,0,1757,1758,3,294,147,0,1758,91,1,0,0,0,1759, - 1760,5,191,0,0,1760,1761,5,239,0,0,1761,1762,5,207,0,0,1762,1771, - 5,163,0,0,1763,1764,5,22,0,0,1764,1765,5,240,0,0,1765,1766,5,207, - 0,0,1766,1768,5,163,0,0,1767,1769,3,94,47,0,1768,1767,1,0,0,0,1768, - 1769,1,0,0,0,1769,1771,1,0,0,0,1770,1759,1,0,0,0,1770,1763,1,0,0, - 0,1771,93,1,0,0,0,1772,1773,5,253,0,0,1773,1774,5,85,0,0,1774,1782, - 5,165,0,0,1775,1776,5,189,0,0,1776,1777,5,85,0,0,1777,1782,5,165, - 0,0,1778,1779,5,304,0,0,1779,1780,5,284,0,0,1780,1782,5,240,0,0, - 1781,1772,1,0,0,0,1781,1775,1,0,0,0,1781,1778,1,0,0,0,1782,95,1, - 0,0,0,1783,1784,5,5,0,0,1784,1785,5,269,0,0,1785,1786,5,174,0,0, - 1786,1803,5,239,0,0,1787,1788,5,5,0,0,1788,1789,5,204,0,0,1789,1790, - 5,148,0,0,1790,1803,5,239,0,0,1791,1792,5,5,0,0,1792,1793,5,269, - 0,0,1793,1794,5,101,0,0,1794,1803,3,294,147,0,1795,1796,5,5,0,0, - 1796,1797,5,269,0,0,1797,1798,5,148,0,0,1798,1803,3,294,147,0,1799, - 1800,5,5,0,0,1800,1801,5,269,0,0,1801,1803,3,294,147,0,1802,1783, - 1,0,0,0,1802,1787,1,0,0,0,1802,1791,1,0,0,0,1802,1795,1,0,0,0,1802, - 1799,1,0,0,0,1803,97,1,0,0,0,1804,1805,3,294,147,0,1805,1806,5,312, - 0,0,1806,1807,5,1,0,0,1807,1812,3,294,147,0,1808,1809,5,3,0,0,1809, - 1811,3,294,147,0,1810,1808,1,0,0,0,1811,1814,1,0,0,0,1812,1810,1, - 0,0,0,1812,1813,1,0,0,0,1813,1815,1,0,0,0,1814,1812,1,0,0,0,1815, - 1816,5,2,0,0,1816,99,1,0,0,0,1817,1818,3,294,147,0,1818,1819,5,28, - 0,0,1819,1820,3,136,68,0,1820,101,1,0,0,0,1821,1829,3,110,55,0,1822, - 1824,5,28,0,0,1823,1822,1,0,0,0,1823,1824,1,0,0,0,1824,1825,1,0, - 0,0,1825,1827,3,294,147,0,1826,1828,3,108,54,0,1827,1826,1,0,0,0, - 1827,1828,1,0,0,0,1828,1830,1,0,0,0,1829,1823,1,0,0,0,1829,1830, - 1,0,0,0,1830,103,1,0,0,0,1831,1832,5,1,0,0,1832,1837,3,278,139,0, - 1833,1834,5,3,0,0,1834,1836,3,278,139,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,1840,1,0,0,0,1839, - 1837,1,0,0,0,1840,1841,5,2,0,0,1841,105,1,0,0,0,1842,1843,5,1,0, - 0,1843,1848,3,276,138,0,1844,1845,5,3,0,0,1845,1847,3,276,138,0, - 1846,1844,1,0,0,0,1847,1850,1,0,0,0,1848,1846,1,0,0,0,1848,1849, - 1,0,0,0,1849,1851,1,0,0,0,1850,1848,1,0,0,0,1851,1852,5,2,0,0,1852, - 107,1,0,0,0,1853,1854,5,1,0,0,1854,1859,3,294,147,0,1855,1856,5, - 3,0,0,1856,1858,3,294,147,0,1857,1855,1,0,0,0,1858,1861,1,0,0,0, - 1859,1857,1,0,0,0,1859,1860,1,0,0,0,1860,1862,1,0,0,0,1861,1859, - 1,0,0,0,1862,1863,5,2,0,0,1863,109,1,0,0,0,1864,1866,3,254,127,0, - 1865,1867,3,282,141,0,1866,1865,1,0,0,0,1866,1867,1,0,0,0,1867,1936, - 1,0,0,0,1868,1869,5,1,0,0,1869,1870,3,22,11,0,1870,1871,5,2,0,0, - 1871,1936,1,0,0,0,1872,1873,5,285,0,0,1873,1874,5,1,0,0,1874,1879, - 3,136,68,0,1875,1876,5,3,0,0,1876,1878,3,136,68,0,1877,1875,1,0, - 0,0,1878,1881,1,0,0,0,1879,1877,1,0,0,0,1879,1880,1,0,0,0,1880,1882, - 1,0,0,0,1881,1879,1,0,0,0,1882,1885,5,2,0,0,1883,1884,5,304,0,0, - 1884,1886,5,196,0,0,1885,1883,1,0,0,0,1885,1886,1,0,0,0,1886,1936, - 1,0,0,0,1887,1888,5,149,0,0,1888,1889,5,1,0,0,1889,1890,3,22,11, - 0,1890,1891,5,2,0,0,1891,1936,1,0,0,0,1892,1893,5,260,0,0,1893,1894, - 5,1,0,0,1894,1895,3,122,61,0,1895,1896,5,2,0,0,1896,1936,1,0,0,0, - 1897,1898,5,1,0,0,1898,1899,3,72,36,0,1899,1900,5,2,0,0,1900,1936, - 1,0,0,0,1901,1902,5,142,0,0,1902,1903,5,1,0,0,1903,1904,3,146,73, - 0,1904,1905,5,45,0,0,1905,1906,5,1,0,0,1906,1911,3,112,56,0,1907, - 1908,5,3,0,0,1908,1910,3,112,56,0,1909,1907,1,0,0,0,1910,1913,1, - 0,0,0,1911,1909,1,0,0,0,1911,1912,1,0,0,0,1912,1914,1,0,0,0,1913, - 1911,1,0,0,0,1914,1926,5,2,0,0,1915,1916,5,210,0,0,1916,1917,5,1, - 0,0,1917,1918,3,114,57,0,1918,1919,5,2,0,0,1919,1927,1,0,0,0,1920, - 1921,5,210,0,0,1921,1922,5,70,0,0,1922,1923,5,1,0,0,1923,1924,3, - 120,60,0,1924,1925,5,2,0,0,1925,1927,1,0,0,0,1926,1915,1,0,0,0,1926, - 1920,1,0,0,0,1926,1927,1,0,0,0,1927,1931,1,0,0,0,1928,1929,7,14, - 0,0,1929,1930,5,190,0,0,1930,1932,5,89,0,0,1931,1928,1,0,0,0,1931, - 1932,1,0,0,0,1932,1933,1,0,0,0,1933,1934,5,2,0,0,1934,1936,1,0,0, - 0,1935,1864,1,0,0,0,1935,1868,1,0,0,0,1935,1872,1,0,0,0,1935,1887, - 1,0,0,0,1935,1892,1,0,0,0,1935,1897,1,0,0,0,1935,1901,1,0,0,0,1936, - 111,1,0,0,0,1937,1938,3,294,147,0,1938,1939,5,103,0,0,1939,1940, - 5,196,0,0,1940,2015,1,0,0,0,1941,1942,3,294,147,0,1942,1945,3,184, - 92,0,1943,1944,5,205,0,0,1944,1946,3,168,84,0,1945,1943,1,0,0,0, - 1945,1946,1,0,0,0,1946,1951,1,0,0,0,1947,1948,3,156,78,0,1948,1949, - 5,190,0,0,1949,1950,5,85,0,0,1950,1952,1,0,0,0,1951,1947,1,0,0,0, - 1951,1952,1,0,0,0,1952,1957,1,0,0,0,1953,1954,3,156,78,0,1954,1955, - 5,190,0,0,1955,1956,5,89,0,0,1956,1958,1,0,0,0,1957,1953,1,0,0,0, - 1957,1958,1,0,0,0,1958,2015,1,0,0,0,1959,1960,3,294,147,0,1960,1961, - 3,184,92,0,1961,1962,5,104,0,0,1962,1965,3,150,75,0,1963,1964,5, - 205,0,0,1964,1966,3,168,84,0,1965,1963,1,0,0,0,1965,1966,1,0,0,0, - 1966,1970,1,0,0,0,1967,1968,3,158,79,0,1968,1969,5,308,0,0,1969, - 1971,1,0,0,0,1970,1967,1,0,0,0,1970,1971,1,0,0,0,1971,1979,1,0,0, - 0,1972,1973,7,15,0,0,1973,1977,5,218,0,0,1974,1975,5,190,0,0,1975, - 1976,5,242,0,0,1976,1978,5,264,0,0,1977,1974,1,0,0,0,1977,1978,1, - 0,0,0,1978,1980,1,0,0,0,1979,1972,1,0,0,0,1979,1980,1,0,0,0,1980, - 1985,1,0,0,0,1981,1982,3,160,80,0,1982,1983,5,190,0,0,1983,1984, - 5,85,0,0,1984,1986,1,0,0,0,1985,1981,1,0,0,0,1985,1986,1,0,0,0,1986, - 1991,1,0,0,0,1987,1988,3,160,80,0,1988,1989,5,190,0,0,1989,1990, - 5,89,0,0,1990,1992,1,0,0,0,1991,1987,1,0,0,0,1991,1992,1,0,0,0,1992, - 2015,1,0,0,0,1993,1995,5,173,0,0,1994,1996,5,205,0,0,1995,1994,1, - 0,0,0,1995,1996,1,0,0,0,1996,1997,1,0,0,0,1997,2000,3,168,84,0,1998, - 1999,5,28,0,0,1999,2001,3,294,147,0,2000,1998,1,0,0,0,2000,2001, - 1,0,0,0,2001,2002,1,0,0,0,2002,2003,5,45,0,0,2003,2004,5,1,0,0,2004, - 2009,3,112,56,0,2005,2006,5,3,0,0,2006,2008,3,112,56,0,2007,2005, - 1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2009,2010,1,0,0,0,2010, - 2012,1,0,0,0,2011,2009,1,0,0,0,2012,2013,5,2,0,0,2013,2015,1,0,0, - 0,2014,1937,1,0,0,0,2014,1941,1,0,0,0,2014,1959,1,0,0,0,2014,1993, - 1,0,0,0,2015,113,1,0,0,0,2016,2042,3,116,58,0,2017,2018,3,116,58, - 0,2018,2019,7,16,0,0,2019,2020,3,118,59,0,2020,2042,1,0,0,0,2021, - 2022,3,118,59,0,2022,2023,5,281,0,0,2023,2028,3,118,59,0,2024,2025, - 5,281,0,0,2025,2027,3,118,59,0,2026,2024,1,0,0,0,2027,2030,1,0,0, - 0,2028,2026,1,0,0,0,2028,2029,1,0,0,0,2029,2042,1,0,0,0,2030,2028, - 1,0,0,0,2031,2032,3,118,59,0,2032,2033,5,54,0,0,2033,2038,3,118, - 59,0,2034,2035,5,54,0,0,2035,2037,3,118,59,0,2036,2034,1,0,0,0,2037, - 2040,1,0,0,0,2038,2036,1,0,0,0,2038,2039,1,0,0,0,2039,2042,1,0,0, - 0,2040,2038,1,0,0,0,2041,2016,1,0,0,0,2041,2017,1,0,0,0,2041,2021, - 1,0,0,0,2041,2031,1,0,0,0,2042,115,1,0,0,0,2043,2044,3,294,147,0, - 2044,117,1,0,0,0,2045,2051,3,116,58,0,2046,2047,5,1,0,0,2047,2048, - 3,114,57,0,2048,2049,5,2,0,0,2049,2051,1,0,0,0,2050,2045,1,0,0,0, - 2050,2046,1,0,0,0,2051,119,1,0,0,0,2052,2055,7,16,0,0,2053,2054, - 5,3,0,0,2054,2056,7,17,0,0,2055,2053,1,0,0,0,2055,2056,1,0,0,0,2056, - 2063,1,0,0,0,2057,2060,7,17,0,0,2058,2059,5,3,0,0,2059,2061,7,16, - 0,0,2060,2058,1,0,0,0,2060,2061,1,0,0,0,2061,2063,1,0,0,0,2062,2052, - 1,0,0,0,2062,2057,1,0,0,0,2063,121,1,0,0,0,2064,2065,3,272,136,0, - 2065,2074,5,1,0,0,2066,2071,3,124,62,0,2067,2068,5,3,0,0,2068,2070, - 3,124,62,0,2069,2067,1,0,0,0,2070,2073,1,0,0,0,2071,2069,1,0,0,0, - 2071,2072,1,0,0,0,2072,2075,1,0,0,0,2073,2071,1,0,0,0,2074,2066, - 1,0,0,0,2074,2075,1,0,0,0,2075,2085,1,0,0,0,2076,2077,5,52,0,0,2077, - 2082,3,134,67,0,2078,2079,5,3,0,0,2079,2081,3,134,67,0,2080,2078, - 1,0,0,0,2081,2084,1,0,0,0,2082,2080,1,0,0,0,2082,2083,1,0,0,0,2083, - 2086,1,0,0,0,2084,2082,1,0,0,0,2085,2076,1,0,0,0,2085,2086,1,0,0, - 0,2086,2087,1,0,0,0,2087,2088,5,2,0,0,2088,123,1,0,0,0,2089,2090, - 3,294,147,0,2090,2091,5,6,0,0,2091,2093,1,0,0,0,2092,2089,1,0,0, - 0,2092,2093,1,0,0,0,2093,2097,1,0,0,0,2094,2098,3,126,63,0,2095, - 2098,3,130,65,0,2096,2098,3,136,68,0,2097,2094,1,0,0,0,2097,2095, - 1,0,0,0,2097,2096,1,0,0,0,2098,125,1,0,0,0,2099,2117,3,128,64,0, - 2100,2101,5,201,0,0,2101,2115,5,36,0,0,2102,2111,5,1,0,0,2103,2108, - 3,136,68,0,2104,2105,5,3,0,0,2105,2107,3,136,68,0,2106,2104,1,0, - 0,0,2107,2110,1,0,0,0,2108,2106,1,0,0,0,2108,2109,1,0,0,0,2109,2112, - 1,0,0,0,2110,2108,1,0,0,0,2111,2103,1,0,0,0,2111,2112,1,0,0,0,2112, - 2113,1,0,0,0,2113,2116,5,2,0,0,2114,2116,3,136,68,0,2115,2102,1, - 0,0,0,2115,2114,1,0,0,0,2116,2118,1,0,0,0,2117,2100,1,0,0,0,2117, - 2118,1,0,0,0,2118,2125,1,0,0,0,2119,2120,5,217,0,0,2120,2121,5,300, - 0,0,2121,2126,5,85,0,0,2122,2123,5,144,0,0,2123,2124,5,300,0,0,2124, - 2126,5,85,0,0,2125,2119,1,0,0,0,2125,2122,1,0,0,0,2125,2126,1,0, - 0,0,2126,2143,1,0,0,0,2127,2128,5,195,0,0,2128,2141,5,36,0,0,2129, - 2130,5,1,0,0,2130,2135,3,50,25,0,2131,2132,5,3,0,0,2132,2134,3,50, - 25,0,2133,2131,1,0,0,0,2134,2137,1,0,0,0,2135,2133,1,0,0,0,2135, - 2136,1,0,0,0,2136,2138,1,0,0,0,2137,2135,1,0,0,0,2138,2139,5,2,0, - 0,2139,2142,1,0,0,0,2140,2142,3,50,25,0,2141,2129,1,0,0,0,2141,2140, - 1,0,0,0,2142,2144,1,0,0,0,2143,2127,1,0,0,0,2143,2144,1,0,0,0,2144, - 127,1,0,0,0,2145,2146,5,260,0,0,2146,2147,5,1,0,0,2147,2148,3,256, - 128,0,2148,2156,5,2,0,0,2149,2151,5,28,0,0,2150,2149,1,0,0,0,2150, - 2151,1,0,0,0,2151,2152,1,0,0,0,2152,2154,3,294,147,0,2153,2155,3, - 108,54,0,2154,2153,1,0,0,0,2154,2155,1,0,0,0,2155,2157,1,0,0,0,2156, - 2150,1,0,0,0,2156,2157,1,0,0,0,2157,2172,1,0,0,0,2158,2159,5,260, - 0,0,2159,2160,5,1,0,0,2160,2161,3,22,11,0,2161,2169,5,2,0,0,2162, - 2164,5,28,0,0,2163,2162,1,0,0,0,2163,2164,1,0,0,0,2164,2165,1,0, - 0,0,2165,2167,3,294,147,0,2166,2168,3,108,54,0,2167,2166,1,0,0,0, - 2167,2168,1,0,0,0,2168,2170,1,0,0,0,2169,2163,1,0,0,0,2169,2170, - 1,0,0,0,2170,2172,1,0,0,0,2171,2145,1,0,0,0,2171,2158,1,0,0,0,2172, - 129,1,0,0,0,2173,2174,5,77,0,0,2174,2175,5,1,0,0,2175,2180,3,132, - 66,0,2176,2177,5,3,0,0,2177,2179,3,132,66,0,2178,2176,1,0,0,0,2179, - 2182,1,0,0,0,2180,2178,1,0,0,0,2180,2181,1,0,0,0,2181,2183,1,0,0, - 0,2182,2180,1,0,0,0,2183,2184,5,2,0,0,2184,2192,1,0,0,0,2185,2186, - 5,41,0,0,2186,2187,5,1,0,0,2187,2188,5,183,0,0,2188,2189,5,28,0, - 0,2189,2190,5,77,0,0,2190,2192,5,2,0,0,2191,2173,1,0,0,0,2191,2185, - 1,0,0,0,2192,131,1,0,0,0,2193,2195,3,294,147,0,2194,2196,3,184,92, - 0,2195,2194,1,0,0,0,2195,2196,1,0,0,0,2196,133,1,0,0,0,2197,2198, - 5,1,0,0,2198,2199,3,280,140,0,2199,2200,5,3,0,0,2200,2205,3,280, - 140,0,2201,2202,5,3,0,0,2202,2204,3,280,140,0,2203,2201,1,0,0,0, - 2204,2207,1,0,0,0,2205,2203,1,0,0,0,2205,2206,1,0,0,0,2206,2208, - 1,0,0,0,2207,2205,1,0,0,0,2208,2209,5,2,0,0,2209,135,1,0,0,0,2210, - 2211,3,138,69,0,2211,137,1,0,0,0,2212,2213,6,69,-1,0,2213,2215,3, - 142,71,0,2214,2216,3,140,70,0,2215,2214,1,0,0,0,2215,2216,1,0,0, - 0,2216,2220,1,0,0,0,2217,2218,5,182,0,0,2218,2220,3,138,69,3,2219, - 2212,1,0,0,0,2219,2217,1,0,0,0,2220,2229,1,0,0,0,2221,2222,10,2, - 0,0,2222,2223,5,25,0,0,2223,2228,3,138,69,3,2224,2225,10,1,0,0,2225, - 2226,5,194,0,0,2226,2228,3,138,69,2,2227,2221,1,0,0,0,2227,2224, - 1,0,0,0,2228,2231,1,0,0,0,2229,2227,1,0,0,0,2229,2230,1,0,0,0,2230, - 139,1,0,0,0,2231,2229,1,0,0,0,2232,2233,3,172,86,0,2233,2234,3,142, - 71,0,2234,2294,1,0,0,0,2235,2236,3,172,86,0,2236,2237,3,174,87,0, - 2237,2238,5,1,0,0,2238,2239,3,22,11,0,2239,2240,5,2,0,0,2240,2294, - 1,0,0,0,2241,2243,5,182,0,0,2242,2241,1,0,0,0,2242,2243,1,0,0,0, - 2243,2244,1,0,0,0,2244,2245,5,34,0,0,2245,2246,3,142,71,0,2246,2247, - 5,25,0,0,2247,2248,3,142,71,0,2248,2294,1,0,0,0,2249,2251,5,182, - 0,0,2250,2249,1,0,0,0,2250,2251,1,0,0,0,2251,2252,1,0,0,0,2252,2253, - 5,122,0,0,2253,2254,5,1,0,0,2254,2259,3,136,68,0,2255,2256,5,3,0, - 0,2256,2258,3,136,68,0,2257,2255,1,0,0,0,2258,2261,1,0,0,0,2259, - 2257,1,0,0,0,2259,2260,1,0,0,0,2260,2262,1,0,0,0,2261,2259,1,0,0, - 0,2262,2263,5,2,0,0,2263,2294,1,0,0,0,2264,2266,5,182,0,0,2265,2264, - 1,0,0,0,2265,2266,1,0,0,0,2266,2267,1,0,0,0,2267,2268,5,122,0,0, - 2268,2269,5,1,0,0,2269,2270,3,22,11,0,2270,2271,5,2,0,0,2271,2294, - 1,0,0,0,2272,2274,5,182,0,0,2273,2272,1,0,0,0,2273,2274,1,0,0,0, - 2274,2275,1,0,0,0,2275,2276,5,154,0,0,2276,2279,3,142,71,0,2277, - 2278,5,90,0,0,2278,2280,3,142,71,0,2279,2277,1,0,0,0,2279,2280,1, - 0,0,0,2280,2294,1,0,0,0,2281,2283,5,133,0,0,2282,2284,5,182,0,0, - 2283,2282,1,0,0,0,2283,2284,1,0,0,0,2284,2285,1,0,0,0,2285,2294, - 5,183,0,0,2286,2288,5,133,0,0,2287,2289,5,182,0,0,2288,2287,1,0, - 0,0,2288,2289,1,0,0,0,2289,2290,1,0,0,0,2290,2291,5,79,0,0,2291, - 2292,5,105,0,0,2292,2294,3,142,71,0,2293,2232,1,0,0,0,2293,2235, - 1,0,0,0,2293,2242,1,0,0,0,2293,2250,1,0,0,0,2293,2265,1,0,0,0,2293, - 2273,1,0,0,0,2293,2281,1,0,0,0,2293,2286,1,0,0,0,2294,141,1,0,0, - 0,2295,2296,6,71,-1,0,2296,2300,3,144,72,0,2297,2298,7,18,0,0,2298, - 2300,3,142,71,4,2299,2295,1,0,0,0,2299,2297,1,0,0,0,2300,2315,1, - 0,0,0,2301,2302,10,3,0,0,2302,2303,7,19,0,0,2303,2314,3,142,71,4, - 2304,2305,10,2,0,0,2305,2306,7,18,0,0,2306,2314,3,142,71,3,2307, - 2308,10,1,0,0,2308,2309,5,323,0,0,2309,2314,3,142,71,2,2310,2311, - 10,5,0,0,2311,2312,5,30,0,0,2312,2314,3,170,85,0,2313,2301,1,0,0, - 0,2313,2304,1,0,0,0,2313,2307,1,0,0,0,2313,2310,1,0,0,0,2314,2317, - 1,0,0,0,2315,2313,1,0,0,0,2315,2316,1,0,0,0,2316,143,1,0,0,0,2317, - 2315,1,0,0,0,2318,2319,6,72,-1,0,2319,2772,5,183,0,0,2320,2772,3, - 178,89,0,2321,2322,3,294,147,0,2322,2323,3,168,84,0,2323,2772,1, - 0,0,0,2324,2325,5,82,0,0,2325,2326,5,213,0,0,2326,2772,3,168,84, - 0,2327,2772,3,296,148,0,2328,2772,3,176,88,0,2329,2772,3,168,84, - 0,2330,2772,5,328,0,0,2331,2772,5,324,0,0,2332,2333,5,211,0,0,2333, - 2334,5,1,0,0,2334,2335,3,142,71,0,2335,2336,5,122,0,0,2336,2337, - 3,142,71,0,2337,2338,5,2,0,0,2338,2772,1,0,0,0,2339,2340,5,1,0,0, - 2340,2343,3,136,68,0,2341,2342,5,3,0,0,2342,2344,3,136,68,0,2343, - 2341,1,0,0,0,2344,2345,1,0,0,0,2345,2343,1,0,0,0,2345,2346,1,0,0, - 0,2346,2347,1,0,0,0,2347,2348,5,2,0,0,2348,2772,1,0,0,0,2349,2350, - 5,239,0,0,2350,2351,5,1,0,0,2351,2356,3,136,68,0,2352,2353,5,3,0, - 0,2353,2355,3,136,68,0,2354,2352,1,0,0,0,2355,2358,1,0,0,0,2356, - 2354,1,0,0,0,2356,2357,1,0,0,0,2357,2359,1,0,0,0,2358,2356,1,0,0, - 0,2359,2360,5,2,0,0,2360,2772,1,0,0,0,2361,2362,5,156,0,0,2362,2364, - 5,1,0,0,2363,2365,3,68,34,0,2364,2363,1,0,0,0,2364,2365,1,0,0,0, - 2365,2366,1,0,0,0,2366,2369,3,136,68,0,2367,2368,5,3,0,0,2368,2370, - 3,168,84,0,2369,2367,1,0,0,0,2369,2370,1,0,0,0,2370,2374,1,0,0,0, - 2371,2372,5,190,0,0,2372,2373,5,200,0,0,2373,2375,3,84,42,0,2374, - 2371,1,0,0,0,2374,2375,1,0,0,0,2375,2376,1,0,0,0,2376,2377,5,2,0, - 0,2377,2378,5,305,0,0,2378,2379,5,114,0,0,2379,2380,5,1,0,0,2380, - 2381,5,195,0,0,2381,2382,5,36,0,0,2382,2387,3,50,25,0,2383,2384, - 5,3,0,0,2384,2386,3,50,25,0,2385,2383,1,0,0,0,2386,2389,1,0,0,0, - 2387,2385,1,0,0,0,2387,2388,1,0,0,0,2388,2390,1,0,0,0,2389,2387, - 1,0,0,0,2390,2391,5,2,0,0,2391,2393,1,0,0,0,2392,2394,3,192,96,0, - 2393,2392,1,0,0,0,2393,2394,1,0,0,0,2394,2772,1,0,0,0,2395,2397, - 3,164,82,0,2396,2395,1,0,0,0,2396,2397,1,0,0,0,2397,2398,1,0,0,0, - 2398,2399,3,272,136,0,2399,2403,5,1,0,0,2400,2401,3,294,147,0,2401, - 2402,5,4,0,0,2402,2404,1,0,0,0,2403,2400,1,0,0,0,2403,2404,1,0,0, - 0,2404,2405,1,0,0,0,2405,2406,5,320,0,0,2406,2408,5,2,0,0,2407,2409, - 3,192,96,0,2408,2407,1,0,0,0,2408,2409,1,0,0,0,2409,2411,1,0,0,0, - 2410,2412,3,196,98,0,2411,2410,1,0,0,0,2411,2412,1,0,0,0,2412,2772, - 1,0,0,0,2413,2415,3,164,82,0,2414,2413,1,0,0,0,2414,2415,1,0,0,0, - 2415,2416,1,0,0,0,2416,2417,3,272,136,0,2417,2429,5,1,0,0,2418,2420, - 3,68,34,0,2419,2418,1,0,0,0,2419,2420,1,0,0,0,2420,2421,1,0,0,0, - 2421,2426,3,136,68,0,2422,2423,5,3,0,0,2423,2425,3,136,68,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,2430,1,0,0,0,2428,2426,1,0,0,0,2429,2419,1,0,0,0,2429,2430, - 1,0,0,0,2430,2441,1,0,0,0,2431,2432,5,195,0,0,2432,2433,5,36,0,0, - 2433,2438,3,50,25,0,2434,2435,5,3,0,0,2435,2437,3,50,25,0,2436,2434, - 1,0,0,0,2437,2440,1,0,0,0,2438,2436,1,0,0,0,2438,2439,1,0,0,0,2439, - 2442,1,0,0,0,2440,2438,1,0,0,0,2441,2431,1,0,0,0,2441,2442,1,0,0, - 0,2442,2443,1,0,0,0,2443,2445,5,2,0,0,2444,2446,3,192,96,0,2445, - 2444,1,0,0,0,2445,2446,1,0,0,0,2446,2451,1,0,0,0,2447,2449,3,166, - 83,0,2448,2447,1,0,0,0,2448,2449,1,0,0,0,2449,2450,1,0,0,0,2450, - 2452,3,196,98,0,2451,2448,1,0,0,0,2451,2452,1,0,0,0,2452,2772,1, - 0,0,0,2453,2454,3,294,147,0,2454,2455,3,196,98,0,2455,2772,1,0,0, - 0,2456,2457,3,294,147,0,2457,2458,5,7,0,0,2458,2459,3,136,68,0,2459, - 2772,1,0,0,0,2460,2469,5,1,0,0,2461,2466,3,294,147,0,2462,2463,5, - 3,0,0,2463,2465,3,294,147,0,2464,2462,1,0,0,0,2465,2468,1,0,0,0, - 2466,2464,1,0,0,0,2466,2467,1,0,0,0,2467,2470,1,0,0,0,2468,2466, - 1,0,0,0,2469,2461,1,0,0,0,2469,2470,1,0,0,0,2470,2471,1,0,0,0,2471, - 2472,5,2,0,0,2472,2473,5,7,0,0,2473,2772,3,136,68,0,2474,2475,5, - 1,0,0,2475,2476,3,22,11,0,2476,2477,5,2,0,0,2477,2772,1,0,0,0,2478, - 2479,5,94,0,0,2479,2480,5,1,0,0,2480,2481,3,22,11,0,2481,2482,5, - 2,0,0,2482,2772,1,0,0,0,2483,2484,5,40,0,0,2484,2486,3,136,68,0, - 2485,2487,3,190,95,0,2486,2485,1,0,0,0,2487,2488,1,0,0,0,2488,2486, - 1,0,0,0,2488,2489,1,0,0,0,2489,2492,1,0,0,0,2490,2491,5,84,0,0,2491, - 2493,3,136,68,0,2492,2490,1,0,0,0,2492,2493,1,0,0,0,2493,2494,1, - 0,0,0,2494,2495,5,88,0,0,2495,2772,1,0,0,0,2496,2498,5,40,0,0,2497, - 2499,3,190,95,0,2498,2497,1,0,0,0,2499,2500,1,0,0,0,2500,2498,1, - 0,0,0,2500,2501,1,0,0,0,2501,2504,1,0,0,0,2502,2503,5,84,0,0,2503, - 2505,3,136,68,0,2504,2502,1,0,0,0,2504,2505,1,0,0,0,2505,2506,1, - 0,0,0,2506,2507,5,88,0,0,2507,2772,1,0,0,0,2508,2509,5,41,0,0,2509, - 2510,5,1,0,0,2510,2511,3,136,68,0,2511,2512,5,28,0,0,2512,2513,3, - 184,92,0,2513,2514,5,2,0,0,2514,2772,1,0,0,0,2515,2516,5,275,0,0, - 2516,2517,5,1,0,0,2517,2518,3,136,68,0,2518,2519,5,28,0,0,2519,2520, - 3,184,92,0,2520,2521,5,2,0,0,2521,2772,1,0,0,0,2522,2523,5,27,0, - 0,2523,2532,5,8,0,0,2524,2529,3,136,68,0,2525,2526,5,3,0,0,2526, - 2528,3,136,68,0,2527,2525,1,0,0,0,2528,2531,1,0,0,0,2529,2527,1, - 0,0,0,2529,2530,1,0,0,0,2530,2533,1,0,0,0,2531,2529,1,0,0,0,2532, - 2524,1,0,0,0,2532,2533,1,0,0,0,2533,2534,1,0,0,0,2534,2772,5,9,0, - 0,2535,2772,3,294,147,0,2536,2772,5,58,0,0,2537,2541,5,62,0,0,2538, - 2539,5,1,0,0,2539,2540,5,329,0,0,2540,2542,5,2,0,0,2541,2538,1,0, - 0,0,2541,2542,1,0,0,0,2542,2772,1,0,0,0,2543,2547,5,63,0,0,2544, - 2545,5,1,0,0,2545,2546,5,329,0,0,2546,2548,5,2,0,0,2547,2544,1,0, - 0,0,2547,2548,1,0,0,0,2548,2772,1,0,0,0,2549,2553,5,158,0,0,2550, - 2551,5,1,0,0,2551,2552,5,329,0,0,2552,2554,5,2,0,0,2553,2550,1,0, - 0,0,2553,2554,1,0,0,0,2554,2772,1,0,0,0,2555,2559,5,159,0,0,2556, - 2557,5,1,0,0,2557,2558,5,329,0,0,2558,2560,5,2,0,0,2559,2556,1,0, - 0,0,2559,2560,1,0,0,0,2560,2772,1,0,0,0,2561,2772,5,64,0,0,2562, - 2772,5,57,0,0,2563,2772,5,61,0,0,2564,2772,5,59,0,0,2565,2566,5, - 272,0,0,2566,2574,5,1,0,0,2567,2569,3,82,41,0,2568,2567,1,0,0,0, - 2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570,2572,3,142,71,0,2571,2570, - 1,0,0,0,2571,2572,1,0,0,0,2572,2573,1,0,0,0,2573,2575,5,105,0,0, - 2574,2568,1,0,0,0,2574,2575,1,0,0,0,2575,2576,1,0,0,0,2576,2577, - 3,142,71,0,2577,2578,5,2,0,0,2578,2772,1,0,0,0,2579,2580,5,272,0, - 0,2580,2581,5,1,0,0,2581,2582,3,142,71,0,2582,2583,5,3,0,0,2583, - 2584,3,142,71,0,2584,2585,5,2,0,0,2585,2772,1,0,0,0,2586,2587,5, - 258,0,0,2587,2588,5,1,0,0,2588,2589,3,142,71,0,2589,2590,5,105,0, - 0,2590,2593,3,142,71,0,2591,2592,5,103,0,0,2592,2594,3,142,71,0, - 2593,2591,1,0,0,0,2593,2594,1,0,0,0,2594,2595,1,0,0,0,2595,2596, - 5,2,0,0,2596,2772,1,0,0,0,2597,2598,5,181,0,0,2598,2599,5,1,0,0, - 2599,2602,3,142,71,0,2600,2601,5,3,0,0,2601,2603,3,182,91,0,2602, - 2600,1,0,0,0,2602,2603,1,0,0,0,2603,2604,1,0,0,0,2604,2605,5,2,0, - 0,2605,2772,1,0,0,0,2606,2607,5,96,0,0,2607,2608,5,1,0,0,2608,2609, - 3,294,147,0,2609,2610,5,105,0,0,2610,2611,3,142,71,0,2611,2612,5, - 2,0,0,2612,2772,1,0,0,0,2613,2614,5,1,0,0,2614,2615,3,136,68,0,2615, - 2616,5,2,0,0,2616,2772,1,0,0,0,2617,2618,5,115,0,0,2618,2627,5,1, - 0,0,2619,2624,3,280,140,0,2620,2621,5,3,0,0,2621,2623,3,280,140, - 0,2622,2620,1,0,0,0,2623,2626,1,0,0,0,2624,2622,1,0,0,0,2624,2625, - 1,0,0,0,2625,2628,1,0,0,0,2626,2624,1,0,0,0,2627,2619,1,0,0,0,2627, - 2628,1,0,0,0,2628,2629,1,0,0,0,2629,2772,5,2,0,0,2630,2631,5,139, - 0,0,2631,2632,5,1,0,0,2632,2637,3,146,73,0,2633,2634,3,154,77,0, - 2634,2635,5,190,0,0,2635,2636,5,89,0,0,2636,2638,1,0,0,0,2637,2633, - 1,0,0,0,2637,2638,1,0,0,0,2638,2639,1,0,0,0,2639,2640,5,2,0,0,2640, - 2772,1,0,0,0,2641,2642,5,143,0,0,2642,2643,5,1,0,0,2643,2646,3,146, - 73,0,2644,2645,5,231,0,0,2645,2647,3,184,92,0,2646,2644,1,0,0,0, - 2646,2647,1,0,0,0,2647,2652,1,0,0,0,2648,2649,3,156,78,0,2649,2650, - 5,190,0,0,2650,2651,5,85,0,0,2651,2653,1,0,0,0,2652,2648,1,0,0,0, - 2652,2653,1,0,0,0,2653,2658,1,0,0,0,2654,2655,3,156,78,0,2655,2656, - 5,190,0,0,2656,2657,5,89,0,0,2657,2659,1,0,0,0,2658,2654,1,0,0,0, - 2658,2659,1,0,0,0,2659,2660,1,0,0,0,2660,2661,5,2,0,0,2661,2772, - 1,0,0,0,2662,2663,5,141,0,0,2663,2664,5,1,0,0,2664,2671,3,146,73, - 0,2665,2666,5,231,0,0,2666,2669,3,184,92,0,2667,2668,5,104,0,0,2668, - 2670,3,150,75,0,2669,2667,1,0,0,0,2669,2670,1,0,0,0,2670,2672,1, - 0,0,0,2671,2665,1,0,0,0,2671,2672,1,0,0,0,2672,2676,1,0,0,0,2673, - 2674,3,158,79,0,2674,2675,5,308,0,0,2675,2677,1,0,0,0,2676,2673, - 1,0,0,0,2676,2677,1,0,0,0,2677,2685,1,0,0,0,2678,2679,7,15,0,0,2679, - 2683,5,218,0,0,2680,2681,5,190,0,0,2681,2682,5,242,0,0,2682,2684, - 5,264,0,0,2683,2680,1,0,0,0,2683,2684,1,0,0,0,2684,2686,1,0,0,0, - 2685,2678,1,0,0,0,2685,2686,1,0,0,0,2686,2691,1,0,0,0,2687,2688, - 3,160,80,0,2688,2689,5,190,0,0,2689,2690,5,85,0,0,2690,2692,1,0, - 0,0,2691,2687,1,0,0,0,2691,2692,1,0,0,0,2692,2697,1,0,0,0,2693,2694, - 3,160,80,0,2694,2695,5,190,0,0,2695,2696,5,89,0,0,2696,2698,1,0, - 0,0,2697,2693,1,0,0,0,2697,2698,1,0,0,0,2698,2699,1,0,0,0,2699,2700, - 5,2,0,0,2700,2772,1,0,0,0,2701,2702,5,140,0,0,2702,2731,5,1,0,0, - 2703,2708,3,162,81,0,2704,2705,5,3,0,0,2705,2707,3,162,81,0,2706, - 2704,1,0,0,0,2707,2710,1,0,0,0,2708,2706,1,0,0,0,2708,2709,1,0,0, - 0,2709,2717,1,0,0,0,2710,2708,1,0,0,0,2711,2712,5,183,0,0,2712,2713, - 5,190,0,0,2713,2718,5,183,0,0,2714,2715,5,18,0,0,2715,2716,5,190, - 0,0,2716,2718,5,183,0,0,2717,2711,1,0,0,0,2717,2714,1,0,0,0,2717, - 2718,1,0,0,0,2718,2729,1,0,0,0,2719,2720,5,304,0,0,2720,2722,5,282, - 0,0,2721,2723,5,146,0,0,2722,2721,1,0,0,0,2722,2723,1,0,0,0,2723, - 2730,1,0,0,0,2724,2725,5,306,0,0,2725,2727,5,282,0,0,2726,2728,5, - 146,0,0,2727,2726,1,0,0,0,2727,2728,1,0,0,0,2728,2730,1,0,0,0,2729, - 2719,1,0,0,0,2729,2724,1,0,0,0,2729,2730,1,0,0,0,2730,2732,1,0,0, - 0,2731,2703,1,0,0,0,2731,2732,1,0,0,0,2732,2739,1,0,0,0,2733,2734, - 5,231,0,0,2734,2737,3,184,92,0,2735,2736,5,104,0,0,2736,2738,3,150, - 75,0,2737,2735,1,0,0,0,2737,2738,1,0,0,0,2738,2740,1,0,0,0,2739, - 2733,1,0,0,0,2739,2740,1,0,0,0,2740,2741,1,0,0,0,2741,2772,5,2,0, - 0,2742,2743,5,138,0,0,2743,2760,5,1,0,0,2744,2749,3,148,74,0,2745, - 2746,5,3,0,0,2746,2748,3,148,74,0,2747,2745,1,0,0,0,2748,2751,1, - 0,0,0,2749,2747,1,0,0,0,2749,2750,1,0,0,0,2750,2758,1,0,0,0,2751, - 2749,1,0,0,0,2752,2753,5,183,0,0,2753,2754,5,190,0,0,2754,2759,5, - 183,0,0,2755,2756,5,18,0,0,2756,2757,5,190,0,0,2757,2759,5,183,0, - 0,2758,2752,1,0,0,0,2758,2755,1,0,0,0,2758,2759,1,0,0,0,2759,2761, - 1,0,0,0,2760,2744,1,0,0,0,2760,2761,1,0,0,0,2761,2768,1,0,0,0,2762, - 2763,5,231,0,0,2763,2766,3,184,92,0,2764,2765,5,104,0,0,2765,2767, - 3,150,75,0,2766,2764,1,0,0,0,2766,2767,1,0,0,0,2767,2769,1,0,0,0, - 2768,2762,1,0,0,0,2768,2769,1,0,0,0,2769,2770,1,0,0,0,2770,2772, - 5,2,0,0,2771,2318,1,0,0,0,2771,2320,1,0,0,0,2771,2321,1,0,0,0,2771, - 2324,1,0,0,0,2771,2327,1,0,0,0,2771,2328,1,0,0,0,2771,2329,1,0,0, - 0,2771,2330,1,0,0,0,2771,2331,1,0,0,0,2771,2332,1,0,0,0,2771,2339, - 1,0,0,0,2771,2349,1,0,0,0,2771,2361,1,0,0,0,2771,2396,1,0,0,0,2771, - 2414,1,0,0,0,2771,2453,1,0,0,0,2771,2456,1,0,0,0,2771,2460,1,0,0, - 0,2771,2474,1,0,0,0,2771,2478,1,0,0,0,2771,2483,1,0,0,0,2771,2496, - 1,0,0,0,2771,2508,1,0,0,0,2771,2515,1,0,0,0,2771,2522,1,0,0,0,2771, - 2535,1,0,0,0,2771,2536,1,0,0,0,2771,2537,1,0,0,0,2771,2543,1,0,0, - 0,2771,2549,1,0,0,0,2771,2555,1,0,0,0,2771,2561,1,0,0,0,2771,2562, - 1,0,0,0,2771,2563,1,0,0,0,2771,2564,1,0,0,0,2771,2565,1,0,0,0,2771, - 2579,1,0,0,0,2771,2586,1,0,0,0,2771,2597,1,0,0,0,2771,2606,1,0,0, - 0,2771,2613,1,0,0,0,2771,2617,1,0,0,0,2771,2630,1,0,0,0,2771,2641, - 1,0,0,0,2771,2662,1,0,0,0,2771,2701,1,0,0,0,2771,2742,1,0,0,0,2772, - 2783,1,0,0,0,2773,2774,10,24,0,0,2774,2775,5,8,0,0,2775,2776,3,142, - 71,0,2776,2777,5,9,0,0,2777,2782,1,0,0,0,2778,2779,10,22,0,0,2779, - 2780,5,4,0,0,2780,2782,3,294,147,0,2781,2773,1,0,0,0,2781,2778,1, - 0,0,0,2782,2785,1,0,0,0,2783,2781,1,0,0,0,2783,2784,1,0,0,0,2784, - 145,1,0,0,0,2785,2783,1,0,0,0,2786,2787,3,148,74,0,2787,2788,5,3, - 0,0,2788,2791,3,168,84,0,2789,2790,5,28,0,0,2790,2792,3,294,147, - 0,2791,2789,1,0,0,0,2791,2792,1,0,0,0,2792,2802,1,0,0,0,2793,2794, - 5,203,0,0,2794,2799,3,152,76,0,2795,2796,5,3,0,0,2796,2798,3,152, - 76,0,2797,2795,1,0,0,0,2798,2801,1,0,0,0,2799,2797,1,0,0,0,2799, - 2800,1,0,0,0,2800,2803,1,0,0,0,2801,2799,1,0,0,0,2802,2793,1,0,0, - 0,2802,2803,1,0,0,0,2803,147,1,0,0,0,2804,2807,3,136,68,0,2805,2806, - 5,104,0,0,2806,2808,3,150,75,0,2807,2805,1,0,0,0,2807,2808,1,0,0, - 0,2808,149,1,0,0,0,2809,2812,5,137,0,0,2810,2811,5,87,0,0,2811,2813, - 7,20,0,0,2812,2810,1,0,0,0,2812,2813,1,0,0,0,2813,151,1,0,0,0,2814, - 2815,3,148,74,0,2815,2816,5,28,0,0,2816,2817,3,294,147,0,2817,153, - 1,0,0,0,2818,2819,7,21,0,0,2819,155,1,0,0,0,2820,2825,5,89,0,0,2821, - 2825,5,183,0,0,2822,2823,5,70,0,0,2823,2825,3,136,68,0,2824,2820, - 1,0,0,0,2824,2821,1,0,0,0,2824,2822,1,0,0,0,2825,157,1,0,0,0,2826, - 2828,5,306,0,0,2827,2829,5,27,0,0,2828,2827,1,0,0,0,2828,2829,1, - 0,0,0,2829,2838,1,0,0,0,2830,2832,5,304,0,0,2831,2833,7,22,0,0,2832, - 2831,1,0,0,0,2832,2833,1,0,0,0,2833,2835,1,0,0,0,2834,2836,5,27, - 0,0,2835,2834,1,0,0,0,2835,2836,1,0,0,0,2836,2838,1,0,0,0,2837,2826, - 1,0,0,0,2837,2830,1,0,0,0,2838,159,1,0,0,0,2839,2846,5,89,0,0,2840, - 2846,5,183,0,0,2841,2842,5,85,0,0,2842,2846,5,27,0,0,2843,2844,5, - 85,0,0,2844,2846,5,186,0,0,2845,2839,1,0,0,0,2845,2840,1,0,0,0,2845, - 2841,1,0,0,0,2845,2843,1,0,0,0,2846,161,1,0,0,0,2847,2849,5,145, - 0,0,2848,2847,1,0,0,0,2848,2849,1,0,0,0,2849,2850,1,0,0,0,2850,2851, - 3,136,68,0,2851,2852,5,295,0,0,2852,2853,3,148,74,0,2853,2859,1, - 0,0,0,2854,2855,3,136,68,0,2855,2856,5,10,0,0,2856,2857,3,148,74, - 0,2857,2859,1,0,0,0,2858,2848,1,0,0,0,2858,2854,1,0,0,0,2859,163, - 1,0,0,0,2860,2861,7,23,0,0,2861,165,1,0,0,0,2862,2863,5,120,0,0, - 2863,2867,5,185,0,0,2864,2865,5,228,0,0,2865,2867,5,185,0,0,2866, - 2862,1,0,0,0,2866,2864,1,0,0,0,2867,167,1,0,0,0,2868,2875,5,326, - 0,0,2869,2872,5,327,0,0,2870,2871,5,277,0,0,2871,2873,5,326,0,0, - 2872,2870,1,0,0,0,2872,2873,1,0,0,0,2873,2875,1,0,0,0,2874,2868, - 1,0,0,0,2874,2869,1,0,0,0,2875,169,1,0,0,0,2876,2877,5,267,0,0,2877, - 2878,5,311,0,0,2878,2883,3,178,89,0,2879,2880,5,267,0,0,2880,2881, - 5,311,0,0,2881,2883,3,168,84,0,2882,2876,1,0,0,0,2882,2879,1,0,0, - 0,2883,171,1,0,0,0,2884,2885,7,24,0,0,2885,173,1,0,0,0,2886,2887, - 7,25,0,0,2887,175,1,0,0,0,2888,2889,7,26,0,0,2889,177,1,0,0,0,2890, - 2892,5,129,0,0,2891,2893,7,18,0,0,2892,2891,1,0,0,0,2892,2893,1, - 0,0,0,2893,2894,1,0,0,0,2894,2895,3,168,84,0,2895,2898,3,180,90, - 0,2896,2897,5,269,0,0,2897,2899,3,180,90,0,2898,2896,1,0,0,0,2898, - 2899,1,0,0,0,2899,179,1,0,0,0,2900,2901,7,27,0,0,2901,181,1,0,0, - 0,2902,2903,7,28,0,0,2903,183,1,0,0,0,2904,2905,6,92,-1,0,2905,2906, - 5,239,0,0,2906,2907,5,1,0,0,2907,2912,3,186,93,0,2908,2909,5,3,0, - 0,2909,2911,3,186,93,0,2910,2908,1,0,0,0,2911,2914,1,0,0,0,2912, - 2910,1,0,0,0,2912,2913,1,0,0,0,2913,2915,1,0,0,0,2914,2912,1,0,0, - 0,2915,2916,5,2,0,0,2916,2976,1,0,0,0,2917,2918,5,129,0,0,2918,2921, - 3,180,90,0,2919,2920,5,269,0,0,2920,2922,3,180,90,0,2921,2919,1, - 0,0,0,2921,2922,1,0,0,0,2922,2976,1,0,0,0,2923,2928,5,268,0,0,2924, - 2925,5,1,0,0,2925,2926,3,188,94,0,2926,2927,5,2,0,0,2927,2929,1, - 0,0,0,2928,2924,1,0,0,0,2928,2929,1,0,0,0,2929,2933,1,0,0,0,2930, - 2931,7,29,0,0,2931,2932,5,267,0,0,2932,2934,5,311,0,0,2933,2930, - 1,0,0,0,2933,2934,1,0,0,0,2934,2976,1,0,0,0,2935,2940,5,267,0,0, - 2936,2937,5,1,0,0,2937,2938,3,188,94,0,2938,2939,5,2,0,0,2939,2941, - 1,0,0,0,2940,2936,1,0,0,0,2940,2941,1,0,0,0,2941,2945,1,0,0,0,2942, - 2943,7,29,0,0,2943,2944,5,267,0,0,2944,2946,5,311,0,0,2945,2942, - 1,0,0,0,2945,2946,1,0,0,0,2946,2976,1,0,0,0,2947,2948,5,82,0,0,2948, - 2976,5,213,0,0,2949,2950,5,27,0,0,2950,2951,5,314,0,0,2951,2952, - 3,184,92,0,2952,2953,5,316,0,0,2953,2976,1,0,0,0,2954,2955,5,162, - 0,0,2955,2956,5,314,0,0,2956,2957,3,184,92,0,2957,2958,5,3,0,0,2958, - 2959,3,184,92,0,2959,2960,5,316,0,0,2960,2976,1,0,0,0,2961,2973, - 3,294,147,0,2962,2963,5,1,0,0,2963,2968,3,188,94,0,2964,2965,5,3, - 0,0,2965,2967,3,188,94,0,2966,2964,1,0,0,0,2967,2970,1,0,0,0,2968, - 2966,1,0,0,0,2968,2969,1,0,0,0,2969,2971,1,0,0,0,2970,2968,1,0,0, - 0,2971,2972,5,2,0,0,2972,2974,1,0,0,0,2973,2962,1,0,0,0,2973,2974, - 1,0,0,0,2974,2976,1,0,0,0,2975,2904,1,0,0,0,2975,2917,1,0,0,0,2975, - 2923,1,0,0,0,2975,2935,1,0,0,0,2975,2947,1,0,0,0,2975,2949,1,0,0, - 0,2975,2954,1,0,0,0,2975,2961,1,0,0,0,2976,2986,1,0,0,0,2977,2978, - 10,2,0,0,2978,2982,5,27,0,0,2979,2980,5,8,0,0,2980,2981,5,329,0, - 0,2981,2983,5,9,0,0,2982,2979,1,0,0,0,2982,2983,1,0,0,0,2983,2985, - 1,0,0,0,2984,2977,1,0,0,0,2985,2988,1,0,0,0,2986,2984,1,0,0,0,2986, - 2987,1,0,0,0,2987,185,1,0,0,0,2988,2986,1,0,0,0,2989,2994,3,184, - 92,0,2990,2991,3,294,147,0,2991,2992,3,184,92,0,2992,2994,1,0,0, - 0,2993,2989,1,0,0,0,2993,2990,1,0,0,0,2994,187,1,0,0,0,2995,2998, - 5,329,0,0,2996,2998,3,184,92,0,2997,2995,1,0,0,0,2997,2996,1,0,0, - 0,2998,189,1,0,0,0,2999,3000,5,300,0,0,3000,3001,3,136,68,0,3001, - 3002,5,265,0,0,3002,3003,3,136,68,0,3003,191,1,0,0,0,3004,3005,5, - 99,0,0,3005,3006,5,1,0,0,3006,3007,5,301,0,0,3007,3008,3,138,69, - 0,3008,3009,5,2,0,0,3009,193,1,0,0,0,3010,3011,5,300,0,0,3011,3014, - 5,164,0,0,3012,3013,5,25,0,0,3013,3015,3,136,68,0,3014,3012,1,0, - 0,0,3014,3015,1,0,0,0,3015,3016,1,0,0,0,3016,3017,5,265,0,0,3017, - 3018,5,287,0,0,3018,3019,5,251,0,0,3019,3020,3,294,147,0,3020,3021, - 5,312,0,0,3021,3029,3,136,68,0,3022,3023,5,3,0,0,3023,3024,3,294, - 147,0,3024,3025,5,312,0,0,3025,3026,3,136,68,0,3026,3028,1,0,0,0, - 3027,3022,1,0,0,0,3028,3031,1,0,0,0,3029,3027,1,0,0,0,3029,3030, - 1,0,0,0,3030,3075,1,0,0,0,3031,3029,1,0,0,0,3032,3033,5,300,0,0, - 3033,3036,5,164,0,0,3034,3035,5,25,0,0,3035,3037,3,136,68,0,3036, - 3034,1,0,0,0,3036,3037,1,0,0,0,3037,3038,1,0,0,0,3038,3039,5,265, - 0,0,3039,3075,5,73,0,0,3040,3041,5,300,0,0,3041,3042,5,182,0,0,3042, - 3045,5,164,0,0,3043,3044,5,25,0,0,3044,3046,3,136,68,0,3045,3043, - 1,0,0,0,3045,3046,1,0,0,0,3046,3047,1,0,0,0,3047,3048,5,265,0,0, - 3048,3060,5,127,0,0,3049,3050,5,1,0,0,3050,3055,3,294,147,0,3051, - 3052,5,3,0,0,3052,3054,3,294,147,0,3053,3051,1,0,0,0,3054,3057,1, - 0,0,0,3055,3053,1,0,0,0,3055,3056,1,0,0,0,3056,3058,1,0,0,0,3057, - 3055,1,0,0,0,3058,3059,5,2,0,0,3059,3061,1,0,0,0,3060,3049,1,0,0, - 0,3060,3061,1,0,0,0,3061,3062,1,0,0,0,3062,3063,5,296,0,0,3063,3064, - 5,1,0,0,3064,3069,3,136,68,0,3065,3066,5,3,0,0,3066,3068,3,136,68, - 0,3067,3065,1,0,0,0,3068,3071,1,0,0,0,3069,3067,1,0,0,0,3069,3070, - 1,0,0,0,3070,3072,1,0,0,0,3071,3069,1,0,0,0,3072,3073,5,2,0,0,3073, - 3075,1,0,0,0,3074,3010,1,0,0,0,3074,3032,1,0,0,0,3074,3040,1,0,0, - 0,3075,195,1,0,0,0,3076,3082,5,199,0,0,3077,3083,3,294,147,0,3078, - 3079,5,1,0,0,3079,3080,3,64,32,0,3080,3081,5,2,0,0,3081,3083,1,0, - 0,0,3082,3077,1,0,0,0,3082,3078,1,0,0,0,3083,197,1,0,0,0,3084,3085, - 5,168,0,0,3085,3090,3,90,45,0,3086,3087,5,3,0,0,3087,3089,3,90,45, - 0,3088,3086,1,0,0,0,3089,3092,1,0,0,0,3090,3088,1,0,0,0,3090,3091, - 1,0,0,0,3091,3094,1,0,0,0,3092,3090,1,0,0,0,3093,3084,1,0,0,0,3093, - 3094,1,0,0,0,3094,3095,1,0,0,0,3095,3099,3,200,100,0,3096,3097,5, - 21,0,0,3097,3098,5,163,0,0,3098,3100,3,96,48,0,3099,3096,1,0,0,0, - 3099,3100,1,0,0,0,3100,3102,1,0,0,0,3101,3103,7,13,0,0,3102,3101, - 1,0,0,0,3102,3103,1,0,0,0,3103,3109,1,0,0,0,3104,3105,5,206,0,0, - 3105,3106,5,1,0,0,3106,3107,3,204,102,0,3107,3108,5,2,0,0,3108,3110, - 1,0,0,0,3109,3104,1,0,0,0,3109,3110,1,0,0,0,3110,3120,1,0,0,0,3111, - 3112,5,257,0,0,3112,3117,3,98,49,0,3113,3114,5,3,0,0,3114,3116,3, - 98,49,0,3115,3113,1,0,0,0,3116,3119,1,0,0,0,3117,3115,1,0,0,0,3117, - 3118,1,0,0,0,3118,3121,1,0,0,0,3119,3117,1,0,0,0,3120,3111,1,0,0, - 0,3120,3121,1,0,0,0,3121,3131,1,0,0,0,3122,3123,5,71,0,0,3123,3128, - 3,100,50,0,3124,3125,5,3,0,0,3125,3127,3,100,50,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,3132, - 1,0,0,0,3130,3128,1,0,0,0,3131,3122,1,0,0,0,3131,3132,1,0,0,0,3132, - 199,1,0,0,0,3133,3134,5,219,0,0,3134,3158,3,202,101,0,3135,3136, - 5,240,0,0,3136,3158,3,202,101,0,3137,3138,5,116,0,0,3138,3158,3, - 202,101,0,3139,3140,5,219,0,0,3140,3141,5,34,0,0,3141,3142,3,202, - 101,0,3142,3143,5,25,0,0,3143,3144,3,202,101,0,3144,3158,1,0,0,0, - 3145,3146,5,240,0,0,3146,3147,5,34,0,0,3147,3148,3,202,101,0,3148, - 3149,5,25,0,0,3149,3150,3,202,101,0,3150,3158,1,0,0,0,3151,3152, - 5,116,0,0,3152,3153,5,34,0,0,3153,3154,3,202,101,0,3154,3155,5,25, - 0,0,3155,3156,3,202,101,0,3156,3158,1,0,0,0,3157,3133,1,0,0,0,3157, - 3135,1,0,0,0,3157,3137,1,0,0,0,3157,3139,1,0,0,0,3157,3145,1,0,0, - 0,3157,3151,1,0,0,0,3158,201,1,0,0,0,3159,3160,5,278,0,0,3160,3169, - 5,212,0,0,3161,3162,5,278,0,0,3162,3169,5,102,0,0,3163,3164,5,56, - 0,0,3164,3169,5,239,0,0,3165,3166,3,136,68,0,3166,3167,7,30,0,0, - 3167,3169,1,0,0,0,3168,3159,1,0,0,0,3168,3161,1,0,0,0,3168,3163, - 1,0,0,0,3168,3165,1,0,0,0,3169,203,1,0,0,0,3170,3171,6,102,-1,0, - 3171,3173,3,206,103,0,3172,3174,3,208,104,0,3173,3172,1,0,0,0,3173, - 3174,1,0,0,0,3174,3182,1,0,0,0,3175,3176,10,2,0,0,3176,3181,3,204, - 102,3,3177,3178,10,1,0,0,3178,3179,5,11,0,0,3179,3181,3,204,102, - 2,3180,3175,1,0,0,0,3180,3177,1,0,0,0,3181,3184,1,0,0,0,3182,3180, - 1,0,0,0,3182,3183,1,0,0,0,3183,205,1,0,0,0,3184,3182,1,0,0,0,3185, - 3211,3,294,147,0,3186,3187,5,1,0,0,3187,3211,5,2,0,0,3188,3189,5, - 209,0,0,3189,3190,5,1,0,0,3190,3195,3,204,102,0,3191,3192,5,3,0, - 0,3192,3194,3,204,102,0,3193,3191,1,0,0,0,3194,3197,1,0,0,0,3195, - 3193,1,0,0,0,3195,3196,1,0,0,0,3196,3198,1,0,0,0,3197,3195,1,0,0, - 0,3198,3199,5,2,0,0,3199,3211,1,0,0,0,3200,3201,5,1,0,0,3201,3202, - 3,204,102,0,3202,3203,5,2,0,0,3203,3211,1,0,0,0,3204,3211,5,12,0, - 0,3205,3211,5,13,0,0,3206,3207,5,14,0,0,3207,3208,3,204,102,0,3208, - 3209,5,15,0,0,3209,3211,1,0,0,0,3210,3185,1,0,0,0,3210,3186,1,0, - 0,0,3210,3188,1,0,0,0,3210,3200,1,0,0,0,3210,3204,1,0,0,0,3210,3205, - 1,0,0,0,3210,3206,1,0,0,0,3211,207,1,0,0,0,3212,3214,5,320,0,0,3213, - 3215,5,324,0,0,3214,3213,1,0,0,0,3214,3215,1,0,0,0,3215,3243,1,0, - 0,0,3216,3218,5,318,0,0,3217,3219,5,324,0,0,3218,3217,1,0,0,0,3218, - 3219,1,0,0,0,3219,3243,1,0,0,0,3220,3222,5,324,0,0,3221,3223,5,324, - 0,0,3222,3221,1,0,0,0,3222,3223,1,0,0,0,3223,3243,1,0,0,0,3224,3225, - 5,16,0,0,3225,3226,5,329,0,0,3226,3228,5,17,0,0,3227,3229,5,324, - 0,0,3228,3227,1,0,0,0,3228,3229,1,0,0,0,3229,3243,1,0,0,0,3230,3232, - 5,16,0,0,3231,3233,5,329,0,0,3232,3231,1,0,0,0,3232,3233,1,0,0,0, - 3233,3234,1,0,0,0,3234,3236,5,3,0,0,3235,3237,5,329,0,0,3236,3235, - 1,0,0,0,3236,3237,1,0,0,0,3237,3238,1,0,0,0,3238,3240,5,17,0,0,3239, - 3241,5,324,0,0,3240,3239,1,0,0,0,3240,3241,1,0,0,0,3241,3243,1,0, - 0,0,3242,3212,1,0,0,0,3242,3216,1,0,0,0,3242,3220,1,0,0,0,3242,3224, - 1,0,0,0,3242,3230,1,0,0,0,3243,209,1,0,0,0,3244,3245,3,294,147,0, - 3245,3246,5,312,0,0,3246,3247,3,136,68,0,3247,211,1,0,0,0,3248,3249, - 5,104,0,0,3249,3253,7,31,0,0,3250,3251,5,276,0,0,3251,3253,7,32, - 0,0,3252,3248,1,0,0,0,3252,3250,1,0,0,0,3253,213,1,0,0,0,3254,3255, - 5,134,0,0,3255,3256,5,153,0,0,3256,3260,3,216,108,0,3257,3258,5, - 220,0,0,3258,3260,7,33,0,0,3259,3254,1,0,0,0,3259,3257,1,0,0,0,3260, - 215,1,0,0,0,3261,3262,5,220,0,0,3262,3269,5,279,0,0,3263,3264,5, - 220,0,0,3264,3269,5,48,0,0,3265,3266,5,225,0,0,3266,3269,5,220,0, - 0,3267,3269,5,249,0,0,3268,3261,1,0,0,0,3268,3263,1,0,0,0,3268,3265, - 1,0,0,0,3268,3267,1,0,0,0,3269,217,1,0,0,0,3270,3276,3,136,68,0, - 3271,3272,3,294,147,0,3272,3273,5,6,0,0,3273,3274,3,136,68,0,3274, - 3276,1,0,0,0,3275,3270,1,0,0,0,3275,3271,1,0,0,0,3276,219,1,0,0, - 0,3277,3278,3,294,147,0,3278,3279,5,4,0,0,3279,3280,3,294,147,0, - 3280,3283,1,0,0,0,3281,3283,3,294,147,0,3282,3277,1,0,0,0,3282,3281, - 1,0,0,0,3283,221,1,0,0,0,3284,3289,3,220,110,0,3285,3286,5,3,0,0, - 3286,3288,3,220,110,0,3287,3285,1,0,0,0,3288,3291,1,0,0,0,3289,3287, - 1,0,0,0,3289,3290,1,0,0,0,3290,223,1,0,0,0,3291,3289,1,0,0,0,3292, - 3293,5,107,0,0,3293,3294,3,226,113,0,3294,3298,3,232,116,0,3295, - 3297,3,234,117,0,3296,3295,1,0,0,0,3297,3300,1,0,0,0,3298,3296,1, - 0,0,0,3298,3299,1,0,0,0,3299,3301,1,0,0,0,3300,3298,1,0,0,0,3301, - 3302,3,236,118,0,3302,225,1,0,0,0,3303,3304,3,274,137,0,3304,3313, - 5,1,0,0,3305,3310,3,230,115,0,3306,3307,5,3,0,0,3307,3309,3,230, - 115,0,3308,3306,1,0,0,0,3309,3312,1,0,0,0,3310,3308,1,0,0,0,3310, - 3311,1,0,0,0,3311,3314,1,0,0,0,3312,3310,1,0,0,0,3313,3305,1,0,0, - 0,3313,3314,1,0,0,0,3314,3315,1,0,0,0,3315,3316,5,2,0,0,3316,227, - 1,0,0,0,3317,3318,3,272,136,0,3318,3327,5,1,0,0,3319,3324,3,230, - 115,0,3320,3321,5,3,0,0,3321,3323,3,230,115,0,3322,3320,1,0,0,0, - 3323,3326,1,0,0,0,3324,3322,1,0,0,0,3324,3325,1,0,0,0,3325,3328, - 1,0,0,0,3326,3324,1,0,0,0,3327,3319,1,0,0,0,3327,3328,1,0,0,0,3328, - 3329,1,0,0,0,3329,3330,5,2,0,0,3330,229,1,0,0,0,3331,3333,3,294, - 147,0,3332,3331,1,0,0,0,3332,3333,1,0,0,0,3333,3334,1,0,0,0,3334, - 3335,3,184,92,0,3335,231,1,0,0,0,3336,3337,5,232,0,0,3337,3338,3, - 184,92,0,3338,233,1,0,0,0,3339,3340,5,147,0,0,3340,3359,3,294,147, - 0,3341,3343,5,182,0,0,3342,3341,1,0,0,0,3342,3343,1,0,0,0,3343,3344, - 1,0,0,0,3344,3359,5,78,0,0,3345,3346,5,232,0,0,3346,3347,5,183,0, - 0,3347,3348,5,190,0,0,3348,3349,5,183,0,0,3349,3359,5,126,0,0,3350, - 3351,5,38,0,0,3351,3352,5,190,0,0,3352,3353,5,183,0,0,3353,3359, - 5,126,0,0,3354,3355,5,246,0,0,3355,3359,7,1,0,0,3356,3357,5,46,0, - 0,3357,3359,3,168,84,0,3358,3339,1,0,0,0,3358,3342,1,0,0,0,3358, - 3345,1,0,0,0,3358,3350,1,0,0,0,3358,3354,1,0,0,0,3358,3356,1,0,0, - 0,3359,235,1,0,0,0,3360,3361,5,230,0,0,3361,3460,3,142,71,0,3362, - 3363,5,251,0,0,3363,3364,3,294,147,0,3364,3365,5,312,0,0,3365,3366, - 3,136,68,0,3366,3460,1,0,0,0,3367,3368,5,40,0,0,3368,3370,3,136, - 68,0,3369,3371,3,238,119,0,3370,3369,1,0,0,0,3371,3372,1,0,0,0,3372, - 3370,1,0,0,0,3372,3373,1,0,0,0,3373,3375,1,0,0,0,3374,3376,3,242, - 121,0,3375,3374,1,0,0,0,3375,3376,1,0,0,0,3376,3377,1,0,0,0,3377, - 3378,5,88,0,0,3378,3379,5,40,0,0,3379,3460,1,0,0,0,3380,3382,5,40, - 0,0,3381,3383,3,238,119,0,3382,3381,1,0,0,0,3383,3384,1,0,0,0,3384, - 3382,1,0,0,0,3384,3385,1,0,0,0,3385,3387,1,0,0,0,3386,3388,3,242, - 121,0,3387,3386,1,0,0,0,3387,3388,1,0,0,0,3388,3389,1,0,0,0,3389, - 3390,5,88,0,0,3390,3391,5,40,0,0,3391,3460,1,0,0,0,3392,3393,5,119, - 0,0,3393,3394,3,136,68,0,3394,3395,5,265,0,0,3395,3399,3,246,123, - 0,3396,3398,3,240,120,0,3397,3396,1,0,0,0,3398,3401,1,0,0,0,3399, - 3397,1,0,0,0,3399,3400,1,0,0,0,3400,3403,1,0,0,0,3401,3399,1,0,0, - 0,3402,3404,3,242,121,0,3403,3402,1,0,0,0,3403,3404,1,0,0,0,3404, - 3405,1,0,0,0,3405,3406,5,88,0,0,3406,3407,5,119,0,0,3407,3460,1, - 0,0,0,3408,3409,5,135,0,0,3409,3460,3,294,147,0,3410,3411,5,151, - 0,0,3411,3460,3,294,147,0,3412,3418,5,32,0,0,3413,3414,3,244,122, - 0,3414,3415,5,325,0,0,3415,3417,1,0,0,0,3416,3413,1,0,0,0,3417,3420, - 1,0,0,0,3418,3416,1,0,0,0,3418,3419,1,0,0,0,3419,3422,1,0,0,0,3420, - 3418,1,0,0,0,3421,3423,3,246,123,0,3422,3421,1,0,0,0,3422,3423,1, - 0,0,0,3423,3424,1,0,0,0,3424,3460,5,88,0,0,3425,3426,3,294,147,0, - 3426,3427,5,10,0,0,3427,3429,1,0,0,0,3428,3425,1,0,0,0,3428,3429, - 1,0,0,0,3429,3430,1,0,0,0,3430,3431,5,161,0,0,3431,3432,3,246,123, - 0,3432,3433,5,88,0,0,3433,3434,5,161,0,0,3434,3460,1,0,0,0,3435, - 3436,3,294,147,0,3436,3437,5,10,0,0,3437,3439,1,0,0,0,3438,3435, - 1,0,0,0,3438,3439,1,0,0,0,3439,3440,1,0,0,0,3440,3441,5,302,0,0, - 3441,3442,3,136,68,0,3442,3443,5,81,0,0,3443,3444,3,246,123,0,3444, - 3445,5,88,0,0,3445,3446,5,302,0,0,3446,3460,1,0,0,0,3447,3448,3, - 294,147,0,3448,3449,5,10,0,0,3449,3451,1,0,0,0,3450,3447,1,0,0,0, - 3450,3451,1,0,0,0,3451,3452,1,0,0,0,3452,3453,5,224,0,0,3453,3454, - 3,246,123,0,3454,3455,5,286,0,0,3455,3456,3,136,68,0,3456,3457,5, - 88,0,0,3457,3458,5,224,0,0,3458,3460,1,0,0,0,3459,3360,1,0,0,0,3459, - 3362,1,0,0,0,3459,3367,1,0,0,0,3459,3380,1,0,0,0,3459,3392,1,0,0, - 0,3459,3408,1,0,0,0,3459,3410,1,0,0,0,3459,3412,1,0,0,0,3459,3428, - 1,0,0,0,3459,3438,1,0,0,0,3459,3450,1,0,0,0,3460,237,1,0,0,0,3461, - 3462,5,300,0,0,3462,3463,3,136,68,0,3463,3464,5,265,0,0,3464,3465, - 3,246,123,0,3465,239,1,0,0,0,3466,3467,5,86,0,0,3467,3468,3,136, - 68,0,3468,3469,5,265,0,0,3469,3470,3,246,123,0,3470,241,1,0,0,0, - 3471,3472,5,84,0,0,3472,3473,3,246,123,0,3473,243,1,0,0,0,3474,3475, - 5,69,0,0,3475,3480,3,294,147,0,3476,3477,5,3,0,0,3477,3479,3,294, - 147,0,3478,3476,1,0,0,0,3479,3482,1,0,0,0,3480,3478,1,0,0,0,3480, - 3481,1,0,0,0,3481,3483,1,0,0,0,3482,3480,1,0,0,0,3483,3486,3,184, - 92,0,3484,3485,5,70,0,0,3485,3487,3,142,71,0,3486,3484,1,0,0,0,3486, - 3487,1,0,0,0,3487,245,1,0,0,0,3488,3489,3,236,118,0,3489,3490,5, - 325,0,0,3490,3492,1,0,0,0,3491,3488,1,0,0,0,3492,3493,1,0,0,0,3493, - 3491,1,0,0,0,3493,3494,1,0,0,0,3494,247,1,0,0,0,3495,3502,5,53,0, - 0,3496,3502,5,248,0,0,3497,3502,5,73,0,0,3498,3502,5,127,0,0,3499, - 3502,5,287,0,0,3500,3502,3,294,147,0,3501,3495,1,0,0,0,3501,3496, - 1,0,0,0,3501,3497,1,0,0,0,3501,3498,1,0,0,0,3501,3499,1,0,0,0,3501, - 3500,1,0,0,0,3502,249,1,0,0,0,3503,3507,5,260,0,0,3504,3507,5,243, - 0,0,3505,3507,3,294,147,0,3506,3503,1,0,0,0,3506,3504,1,0,0,0,3506, - 3505,1,0,0,0,3507,251,1,0,0,0,3508,3510,3,250,125,0,3509,3508,1, - 0,0,0,3509,3510,1,0,0,0,3510,3511,1,0,0,0,3511,3512,3,280,140,0, - 3512,253,1,0,0,0,3513,3516,3,256,128,0,3514,3516,3,260,130,0,3515, - 3513,1,0,0,0,3515,3514,1,0,0,0,3516,255,1,0,0,0,3517,3529,3,294, - 147,0,3518,3519,3,294,147,0,3519,3520,5,4,0,0,3520,3521,3,294,147, - 0,3521,3529,1,0,0,0,3522,3523,3,294,147,0,3523,3524,5,4,0,0,3524, - 3525,3,294,147,0,3525,3526,5,4,0,0,3526,3527,3,294,147,0,3527,3529, - 1,0,0,0,3528,3517,1,0,0,0,3528,3518,1,0,0,0,3528,3522,1,0,0,0,3529, - 257,1,0,0,0,3530,3542,3,294,147,0,3531,3532,3,294,147,0,3532,3533, - 5,4,0,0,3533,3534,3,294,147,0,3534,3542,1,0,0,0,3535,3536,3,294, - 147,0,3536,3537,5,4,0,0,3537,3538,3,294,147,0,3538,3539,5,4,0,0, - 3539,3540,3,294,147,0,3540,3542,1,0,0,0,3541,3530,1,0,0,0,3541,3531, - 1,0,0,0,3541,3535,1,0,0,0,3542,259,1,0,0,0,3543,3555,3,294,147,0, - 3544,3545,3,294,147,0,3545,3546,5,4,0,0,3546,3547,3,294,147,0,3547, - 3555,1,0,0,0,3548,3549,3,294,147,0,3549,3550,5,4,0,0,3550,3551,3, - 294,147,0,3551,3552,5,4,0,0,3552,3553,3,294,147,0,3553,3555,1,0, - 0,0,3554,3543,1,0,0,0,3554,3544,1,0,0,0,3554,3548,1,0,0,0,3555,261, - 1,0,0,0,3556,3568,3,294,147,0,3557,3558,3,294,147,0,3558,3559,5, - 4,0,0,3559,3560,3,294,147,0,3560,3568,1,0,0,0,3561,3562,3,294,147, - 0,3562,3563,5,4,0,0,3563,3564,3,294,147,0,3564,3565,5,4,0,0,3565, - 3566,3,294,147,0,3566,3568,1,0,0,0,3567,3556,1,0,0,0,3567,3557,1, - 0,0,0,3567,3561,1,0,0,0,3568,263,1,0,0,0,3569,3575,3,294,147,0,3570, - 3571,3,294,147,0,3571,3572,5,4,0,0,3572,3573,3,294,147,0,3573,3575, - 1,0,0,0,3574,3569,1,0,0,0,3574,3570,1,0,0,0,3575,265,1,0,0,0,3576, - 3582,3,294,147,0,3577,3578,3,294,147,0,3578,3579,5,4,0,0,3579,3580, - 3,294,147,0,3580,3582,1,0,0,0,3581,3576,1,0,0,0,3581,3577,1,0,0, - 0,3582,267,1,0,0,0,3583,3584,3,294,147,0,3584,269,1,0,0,0,3585,3586, - 3,294,147,0,3586,271,1,0,0,0,3587,3588,3,280,140,0,3588,273,1,0, - 0,0,3589,3590,3,280,140,0,3590,275,1,0,0,0,3591,3594,3,280,140,0, - 3592,3594,4,138,14,0,3593,3591,1,0,0,0,3593,3592,1,0,0,0,3594,277, - 1,0,0,0,3595,3596,3,294,147,0,3596,279,1,0,0,0,3597,3602,3,294,147, - 0,3598,3599,5,4,0,0,3599,3601,3,294,147,0,3600,3598,1,0,0,0,3601, - 3604,1,0,0,0,3602,3600,1,0,0,0,3602,3603,1,0,0,0,3603,281,1,0,0, - 0,3604,3602,1,0,0,0,3605,3606,5,103,0,0,3606,3607,3,284,142,0,3607, - 3608,5,28,0,0,3608,3609,5,187,0,0,3609,3610,3,142,71,0,3610,283, - 1,0,0,0,3611,3612,7,34,0,0,3612,285,1,0,0,0,3613,3617,3,288,144, - 0,3614,3617,5,64,0,0,3615,3617,5,60,0,0,3616,3613,1,0,0,0,3616,3614, - 1,0,0,0,3616,3615,1,0,0,0,3617,287,1,0,0,0,3618,3624,3,294,147,0, - 3619,3620,5,289,0,0,3620,3624,3,294,147,0,3621,3622,5,235,0,0,3622, - 3624,3,294,147,0,3623,3618,1,0,0,0,3623,3619,1,0,0,0,3623,3621,1, - 0,0,0,3624,289,1,0,0,0,3625,3630,3,294,147,0,3626,3627,5,3,0,0,3627, - 3629,3,294,147,0,3628,3626,1,0,0,0,3629,3632,1,0,0,0,3630,3628,1, - 0,0,0,3630,3631,1,0,0,0,3631,291,1,0,0,0,3632,3630,1,0,0,0,3633, - 3641,5,53,0,0,3634,3641,5,248,0,0,3635,3641,5,73,0,0,3636,3641,5, - 127,0,0,3637,3641,5,287,0,0,3638,3641,5,93,0,0,3639,3641,3,294,147, - 0,3640,3633,1,0,0,0,3640,3634,1,0,0,0,3640,3635,1,0,0,0,3640,3636, - 1,0,0,0,3640,3637,1,0,0,0,3640,3638,1,0,0,0,3640,3639,1,0,0,0,3641, - 293,1,0,0,0,3642,3648,5,332,0,0,3643,3648,5,334,0,0,3644,3648,3, - 300,150,0,3645,3648,5,335,0,0,3646,3648,5,333,0,0,3647,3642,1,0, - 0,0,3647,3643,1,0,0,0,3647,3644,1,0,0,0,3647,3645,1,0,0,0,3647,3646, - 1,0,0,0,3648,295,1,0,0,0,3649,3651,5,319,0,0,3650,3649,1,0,0,0,3650, - 3651,1,0,0,0,3651,3652,1,0,0,0,3652,3662,5,330,0,0,3653,3655,5,319, - 0,0,3654,3653,1,0,0,0,3654,3655,1,0,0,0,3655,3656,1,0,0,0,3656,3662, - 5,331,0,0,3657,3659,5,319,0,0,3658,3657,1,0,0,0,3658,3659,1,0,0, - 0,3659,3660,1,0,0,0,3660,3662,5,329,0,0,3661,3650,1,0,0,0,3661,3654, - 1,0,0,0,3661,3658,1,0,0,0,3662,297,1,0,0,0,3663,3666,3,294,147,0, - 3664,3666,3,168,84,0,3665,3663,1,0,0,0,3665,3664,1,0,0,0,3666,299, - 1,0,0,0,3667,3668,7,35,0,0,3668,301,1,0,0,0,478,305,314,318,322, - 326,330,343,350,354,358,364,368,375,380,384,390,394,413,419,423, - 427,431,439,443,446,451,457,466,472,476,482,489,498,510,519,528, - 534,545,553,561,568,578,585,593,608,643,646,649,653,659,664,671, - 677,681,685,693,699,703,707,721,729,748,773,776,783,790,799,803, - 810,818,827,833,838,842,850,855,864,870,877,886,892,896,902,909, - 914,927,932,944,948,954,963,968,974,1002,1008,1010,1016,1022,1024, - 1032,1034,1044,1046,1061,1066,1073,1083,1089,1091,1099,1101,1126, - 1129,1133,1137,1155,1158,1169,1172,1188,1198,1203,1209,1212,1221, - 1233,1236,1246,1250,1256,1263,1268,1274,1278,1282,1288,1299,1308, - 1318,1321,1326,1328,1335,1341,1343,1347,1357,1363,1366,1368,1380, - 1387,1391,1394,1398,1402,1409,1418,1421,1425,1430,1434,1442,1445, - 1448,1455,1466,1469,1479,1482,1493,1498,1506,1509,1513,1517,1526, - 1535,1538,1547,1550,1553,1557,1568,1571,1574,1581,1584,1603,1607, - 1611,1615,1619,1623,1625,1636,1641,1650,1659,1662,1668,1680,1683, - 1692,1695,1703,1706,1709,1714,1717,1729,1732,1740,1745,1749,1751, - 1753,1768,1770,1781,1802,1812,1823,1827,1829,1837,1848,1859,1866, - 1879,1885,1911,1926,1931,1935,1945,1951,1957,1965,1970,1977,1979, - 1985,1991,1995,2000,2009,2014,2028,2038,2041,2050,2055,2060,2062, - 2071,2074,2082,2085,2092,2097,2108,2111,2115,2117,2125,2135,2141, - 2143,2150,2154,2156,2163,2167,2169,2171,2180,2191,2195,2205,2215, - 2219,2227,2229,2242,2250,2259,2265,2273,2279,2283,2288,2293,2299, - 2313,2315,2345,2356,2364,2369,2374,2387,2393,2396,2403,2408,2411, - 2414,2419,2426,2429,2438,2441,2445,2448,2451,2466,2469,2488,2492, - 2500,2504,2529,2532,2541,2547,2553,2559,2568,2571,2574,2593,2602, - 2624,2627,2637,2646,2652,2658,2669,2671,2676,2683,2685,2691,2697, - 2708,2717,2722,2727,2729,2731,2737,2739,2749,2758,2760,2766,2768, - 2771,2781,2783,2791,2799,2802,2807,2812,2824,2828,2832,2835,2837, - 2845,2848,2858,2866,2872,2874,2882,2892,2898,2912,2921,2928,2933, - 2940,2945,2968,2973,2975,2982,2986,2993,2997,3014,3029,3036,3045, - 3055,3060,3069,3074,3082,3090,3093,3099,3102,3109,3117,3120,3128, - 3131,3157,3168,3173,3180,3182,3195,3210,3214,3218,3222,3228,3232, - 3236,3240,3242,3252,3259,3268,3275,3282,3289,3298,3310,3313,3324, - 3327,3332,3342,3358,3372,3375,3384,3387,3399,3403,3418,3422,3428, - 3438,3450,3459,3480,3486,3493,3501,3506,3509,3515,3528,3541,3554, - 3567,3574,3581,3593,3602,3616,3623,3630,3640,3647,3650,3654,3658, - 3661,3665 + 296,298,300,302,304,306,308,310,312,0,36,2,0,39,39,229,229,2,0,72, + 72,131,131,2,0,105,105,122,122,2,0,92,92,123,123,1,0,239,240,2,0, + 101,101,174,174,2,0,324,324,329,329,2,0,91,91,281,281,2,0,29,29, + 75,75,2,0,101,101,148,148,2,0,22,22,79,79,2,0,33,33,259,259,3,0, + 35,35,150,150,270,270,2,0,124,124,247,247,2,0,85,85,89,89,2,0,144, + 144,189,189,2,0,125,125,197,197,2,0,54,54,281,281,1,0,318,319,1, + 0,320,322,1,0,291,293,4,0,89,89,97,97,273,273,283,283,2,0,49,49, + 280,280,2,0,100,100,241,241,1,0,312,317,3,0,22,22,26,26,254,254, + 2,0,97,97,273,273,5,0,67,67,118,118,170,171,245,245,310,310,1,0, + 175,178,2,0,304,304,306,306,2,0,102,102,212,212,3,0,113,113,137, + 137,263,263,4,0,80,80,132,132,160,160,294,294,2,0,192,192,309,309, + 2,0,268,268,298,298,54,0,18,22,24,24,26,27,29,33,35,35,37,39,42, + 49,51,52,56,56,65,67,69,72,74,75,77,78,80,82,85,87,89,89,92,92,95, + 95,98,102,104,104,107,113,116,116,118,121,123,124,126,126,129,129, + 131,132,134,135,137,137,144,151,153,153,155,155,157,157,160,171, + 173,180,184,189,191,193,196,196,198,213,215,220,222,233,235,237, + 239,247,249,259,261,264,266,271,274,276,278,280,282,284,286,289, + 291,295,297,299,302,303,305,311,4239,0,317,1,0,0,0,2,322,1,0,0,0, + 4,324,1,0,0,0,6,328,1,0,0,0,8,332,1,0,0,0,10,336,1,0,0,0,12,340, + 1,0,0,0,14,344,1,0,0,0,16,1245,1,0,0,0,18,1248,1,0,0,0,20,1252,1, + 0,0,0,22,1262,1,0,0,0,24,1266,1,0,0,0,26,1280,1,0,0,0,28,1282,1, + 0,0,0,30,1296,1,0,0,0,32,1302,1,0,0,0,34,1306,1,0,0,0,36,1314,1, + 0,0,0,38,1320,1,0,0,0,40,1322,1,0,0,0,42,1359,1,0,0,0,44,1361,1, + 0,0,0,46,1363,1,0,0,0,48,1399,1,0,0,0,50,1403,1,0,0,0,52,1412,1, + 0,0,0,54,1452,1,0,0,0,56,1461,1,0,0,0,58,1511,1,0,0,0,60,1526,1, + 0,0,0,62,1530,1,0,0,0,64,1532,1,0,0,0,66,1539,1,0,0,0,68,1568,1, + 0,0,0,70,1577,1,0,0,0,72,1595,1,0,0,0,74,1597,1,0,0,0,76,1599,1, + 0,0,0,78,1603,1,0,0,0,80,1605,1,0,0,0,82,1607,1,0,0,0,84,1646,1, + 0,0,0,86,1662,1,0,0,0,88,1664,1,0,0,0,90,1673,1,0,0,0,92,1675,1, + 0,0,0,94,1683,1,0,0,0,96,1689,1,0,0,0,98,1691,1,0,0,0,100,1776,1, + 0,0,0,102,1791,1,0,0,0,104,1802,1,0,0,0,106,1823,1,0,0,0,108,1825, + 1,0,0,0,110,1838,1,0,0,0,112,1842,1,0,0,0,114,1852,1,0,0,0,116,1863, + 1,0,0,0,118,1874,1,0,0,0,120,1894,1,0,0,0,122,1959,1,0,0,0,124,2038, + 1,0,0,0,126,2065,1,0,0,0,128,2067,1,0,0,0,130,2074,1,0,0,0,132,2086, + 1,0,0,0,134,2088,1,0,0,0,136,2116,1,0,0,0,138,2123,1,0,0,0,140,2195, + 1,0,0,0,142,2215,1,0,0,0,144,2217,1,0,0,0,146,2221,1,0,0,0,148,2234, + 1,0,0,0,150,2243,1,0,0,0,152,2317,1,0,0,0,154,2323,1,0,0,0,156,2795, + 1,0,0,0,158,2810,1,0,0,0,160,2828,1,0,0,0,162,2833,1,0,0,0,164,2838, + 1,0,0,0,166,2842,1,0,0,0,168,2848,1,0,0,0,170,2861,1,0,0,0,172,2869, + 1,0,0,0,174,2882,1,0,0,0,176,2884,1,0,0,0,178,2890,1,0,0,0,180,2898, + 1,0,0,0,182,2906,1,0,0,0,184,2908,1,0,0,0,186,2910,1,0,0,0,188,2912, + 1,0,0,0,190,2914,1,0,0,0,192,2924,1,0,0,0,194,2926,1,0,0,0,196,2999, + 1,0,0,0,198,3017,1,0,0,0,200,3021,1,0,0,0,202,3023,1,0,0,0,204,3028, + 1,0,0,0,206,3098,1,0,0,0,208,3100,1,0,0,0,210,3117,1,0,0,0,212,3181, + 1,0,0,0,214,3192,1,0,0,0,216,3194,1,0,0,0,218,3234,1,0,0,0,220,3266, + 1,0,0,0,222,3268,1,0,0,0,224,3276,1,0,0,0,226,3283,1,0,0,0,228,3292, + 1,0,0,0,230,3299,1,0,0,0,232,3306,1,0,0,0,234,3308,1,0,0,0,236,3316, + 1,0,0,0,238,3327,1,0,0,0,240,3341,1,0,0,0,242,3356,1,0,0,0,244,3360, + 1,0,0,0,246,3382,1,0,0,0,248,3483,1,0,0,0,250,3485,1,0,0,0,252,3490, + 1,0,0,0,254,3495,1,0,0,0,256,3498,1,0,0,0,258,3515,1,0,0,0,260,3525, + 1,0,0,0,262,3530,1,0,0,0,264,3533,1,0,0,0,266,3539,1,0,0,0,268,3552, + 1,0,0,0,270,3565,1,0,0,0,272,3578,1,0,0,0,274,3591,1,0,0,0,276,3598, + 1,0,0,0,278,3605,1,0,0,0,280,3607,1,0,0,0,282,3609,1,0,0,0,284,3611, + 1,0,0,0,286,3613,1,0,0,0,288,3617,1,0,0,0,290,3619,1,0,0,0,292,3621, + 1,0,0,0,294,3629,1,0,0,0,296,3635,1,0,0,0,298,3640,1,0,0,0,300,3647, + 1,0,0,0,302,3649,1,0,0,0,304,3664,1,0,0,0,306,3671,1,0,0,0,308,3685, + 1,0,0,0,310,3689,1,0,0,0,312,3691,1,0,0,0,314,316,3,2,1,0,315,314, + 1,0,0,0,316,319,1,0,0,0,317,315,1,0,0,0,317,318,1,0,0,0,318,320, + 1,0,0,0,319,317,1,0,0,0,320,321,5,0,0,1,321,1,1,0,0,0,322,323,3, + 4,2,0,323,3,1,0,0,0,324,326,3,16,8,0,325,327,5,325,0,0,326,325,1, + 0,0,0,326,327,1,0,0,0,327,5,1,0,0,0,328,330,3,148,74,0,329,331,5, + 325,0,0,330,329,1,0,0,0,330,331,1,0,0,0,331,7,1,0,0,0,332,334,3, + 234,117,0,333,335,5,325,0,0,334,333,1,0,0,0,334,335,1,0,0,0,335, + 9,1,0,0,0,336,338,3,196,98,0,337,339,5,325,0,0,338,337,1,0,0,0,338, + 339,1,0,0,0,339,11,1,0,0,0,340,342,3,216,108,0,341,343,5,325,0,0, + 342,341,1,0,0,0,342,343,1,0,0,0,343,13,1,0,0,0,344,345,3,236,118, + 0,345,346,5,0,0,1,346,15,1,0,0,0,347,1246,3,18,9,0,348,349,5,288, + 0,0,349,1246,3,276,138,0,350,351,5,53,0,0,351,355,5,42,0,0,352,353, + 5,119,0,0,353,354,5,182,0,0,354,356,5,94,0,0,355,352,1,0,0,0,355, + 356,1,0,0,0,356,357,1,0,0,0,357,358,3,282,141,0,358,359,5,290,0, + 0,359,362,3,306,153,0,360,361,5,46,0,0,361,363,3,180,90,0,362,360, + 1,0,0,0,362,363,1,0,0,0,363,366,1,0,0,0,364,365,5,31,0,0,365,367, + 3,300,150,0,366,364,1,0,0,0,366,367,1,0,0,0,367,370,1,0,0,0,368, + 369,5,304,0,0,369,371,3,32,16,0,370,368,1,0,0,0,370,371,1,0,0,0, + 371,1246,1,0,0,0,372,373,5,83,0,0,373,376,5,42,0,0,374,375,5,119, + 0,0,375,377,5,94,0,0,376,374,1,0,0,0,376,377,1,0,0,0,377,378,1,0, + 0,0,378,380,3,280,140,0,379,381,7,0,0,0,380,379,1,0,0,0,380,381, + 1,0,0,0,381,1246,1,0,0,0,382,383,5,53,0,0,383,387,5,243,0,0,384, + 385,5,119,0,0,385,386,5,182,0,0,386,388,5,94,0,0,387,384,1,0,0,0, + 387,388,1,0,0,0,388,389,1,0,0,0,389,392,3,278,139,0,390,391,5,31, + 0,0,391,393,3,300,150,0,392,390,1,0,0,0,392,393,1,0,0,0,393,396, + 1,0,0,0,394,395,5,304,0,0,395,397,3,32,16,0,396,394,1,0,0,0,396, + 397,1,0,0,0,397,1246,1,0,0,0,398,399,5,83,0,0,399,402,5,243,0,0, + 400,401,5,119,0,0,401,403,5,94,0,0,402,400,1,0,0,0,402,403,1,0,0, + 0,403,404,1,0,0,0,404,406,3,276,138,0,405,407,7,0,0,0,406,405,1, + 0,0,0,406,407,1,0,0,0,407,1246,1,0,0,0,408,409,5,23,0,0,409,410, + 5,243,0,0,410,411,3,276,138,0,411,412,5,223,0,0,412,413,5,269,0, + 0,413,414,3,278,139,0,414,1246,1,0,0,0,415,416,5,23,0,0,416,417, + 5,243,0,0,417,418,3,276,138,0,418,419,5,251,0,0,419,420,5,31,0,0, + 420,421,3,300,150,0,421,1246,1,0,0,0,422,425,5,53,0,0,423,424,5, + 194,0,0,424,426,5,226,0,0,425,423,1,0,0,0,425,426,1,0,0,0,426,427, + 1,0,0,0,427,431,5,260,0,0,428,429,5,119,0,0,429,430,5,182,0,0,430, + 432,5,94,0,0,431,428,1,0,0,0,431,432,1,0,0,0,432,433,1,0,0,0,433, + 435,3,270,135,0,434,436,3,114,57,0,435,434,1,0,0,0,435,436,1,0,0, + 0,436,439,1,0,0,0,437,438,5,46,0,0,438,440,3,180,90,0,439,437,1, + 0,0,0,439,440,1,0,0,0,440,443,1,0,0,0,441,442,5,304,0,0,442,444, + 3,32,16,0,443,441,1,0,0,0,443,444,1,0,0,0,444,445,1,0,0,0,445,451, + 5,28,0,0,446,452,3,18,9,0,447,448,5,1,0,0,448,449,3,18,9,0,449,450, + 5,2,0,0,450,452,1,0,0,0,451,446,1,0,0,0,451,447,1,0,0,0,452,458, + 1,0,0,0,453,455,5,304,0,0,454,456,5,179,0,0,455,454,1,0,0,0,455, + 456,1,0,0,0,456,457,1,0,0,0,457,459,5,65,0,0,458,453,1,0,0,0,458, + 459,1,0,0,0,459,1246,1,0,0,0,460,463,5,53,0,0,461,462,5,194,0,0, + 462,464,5,226,0,0,463,461,1,0,0,0,463,464,1,0,0,0,464,465,1,0,0, + 0,465,469,5,260,0,0,466,467,5,119,0,0,467,468,5,182,0,0,468,470, + 5,94,0,0,469,466,1,0,0,0,469,470,1,0,0,0,470,471,1,0,0,0,471,472, + 3,270,135,0,472,473,5,1,0,0,473,478,3,26,13,0,474,475,5,3,0,0,475, + 477,3,26,13,0,476,474,1,0,0,0,477,480,1,0,0,0,478,476,1,0,0,0,478, + 479,1,0,0,0,479,481,1,0,0,0,480,478,1,0,0,0,481,484,5,2,0,0,482, + 483,5,46,0,0,483,485,3,180,90,0,484,482,1,0,0,0,484,485,1,0,0,0, + 485,488,1,0,0,0,486,487,5,304,0,0,487,489,3,32,16,0,488,486,1,0, + 0,0,488,489,1,0,0,0,489,1246,1,0,0,0,490,491,5,83,0,0,491,494,5, + 260,0,0,492,493,5,119,0,0,493,495,5,94,0,0,494,492,1,0,0,0,494,495, + 1,0,0,0,495,496,1,0,0,0,496,1246,3,268,134,0,497,498,5,127,0,0,498, + 499,5,130,0,0,499,501,3,268,134,0,500,502,3,116,58,0,501,500,1,0, + 0,0,501,502,1,0,0,0,502,503,1,0,0,0,503,504,3,18,9,0,504,1246,1, + 0,0,0,505,506,5,73,0,0,506,507,5,105,0,0,507,510,3,268,134,0,508, + 509,5,301,0,0,509,511,3,150,75,0,510,508,1,0,0,0,510,511,1,0,0,0, + 511,1246,1,0,0,0,512,513,5,274,0,0,513,514,5,260,0,0,514,1246,3, + 268,134,0,515,516,5,46,0,0,516,517,5,190,0,0,517,518,5,260,0,0,518, + 519,3,268,134,0,519,522,5,133,0,0,520,523,3,180,90,0,521,523,5,183, + 0,0,522,520,1,0,0,0,522,521,1,0,0,0,523,1246,1,0,0,0,524,525,5,46, + 0,0,525,526,5,190,0,0,526,527,5,299,0,0,527,528,3,272,136,0,528, + 531,5,133,0,0,529,532,3,180,90,0,530,532,5,183,0,0,531,529,1,0,0, + 0,531,530,1,0,0,0,532,1246,1,0,0,0,533,534,5,46,0,0,534,535,5,190, + 0,0,535,536,5,44,0,0,536,537,3,288,144,0,537,540,5,133,0,0,538,541, + 3,180,90,0,539,541,5,183,0,0,540,538,1,0,0,0,540,539,1,0,0,0,541, + 1246,1,0,0,0,542,543,5,23,0,0,543,546,5,260,0,0,544,545,5,119,0, + 0,545,547,5,94,0,0,546,544,1,0,0,0,546,547,1,0,0,0,547,548,1,0,0, + 0,548,549,3,268,134,0,549,550,5,223,0,0,550,551,5,269,0,0,551,552, + 3,270,135,0,552,1246,1,0,0,0,553,554,5,23,0,0,554,557,5,260,0,0, + 555,556,5,119,0,0,556,558,5,94,0,0,557,555,1,0,0,0,557,558,1,0,0, + 0,558,559,1,0,0,0,559,560,3,268,134,0,560,561,5,19,0,0,561,565,5, + 44,0,0,562,563,5,119,0,0,563,564,5,182,0,0,564,566,5,94,0,0,565, + 562,1,0,0,0,565,566,1,0,0,0,566,567,1,0,0,0,567,568,3,28,14,0,568, + 1246,1,0,0,0,569,570,5,23,0,0,570,573,5,260,0,0,571,572,5,119,0, + 0,572,574,5,94,0,0,573,571,1,0,0,0,573,574,1,0,0,0,574,575,1,0,0, + 0,575,576,3,268,134,0,576,577,5,223,0,0,577,580,5,44,0,0,578,579, + 5,119,0,0,579,581,5,94,0,0,580,578,1,0,0,0,580,581,1,0,0,0,581,582, + 1,0,0,0,582,583,3,288,144,0,583,584,5,269,0,0,584,585,3,290,145, + 0,585,1246,1,0,0,0,586,587,5,23,0,0,587,590,5,260,0,0,588,589,5, + 119,0,0,589,591,5,94,0,0,590,588,1,0,0,0,590,591,1,0,0,0,591,592, + 1,0,0,0,592,593,3,268,134,0,593,594,5,83,0,0,594,597,5,44,0,0,595, + 596,5,119,0,0,596,598,5,94,0,0,597,595,1,0,0,0,597,598,1,0,0,0,598, + 599,1,0,0,0,599,600,3,288,144,0,600,1246,1,0,0,0,601,602,5,23,0, + 0,602,605,5,260,0,0,603,604,5,119,0,0,604,606,5,94,0,0,605,603,1, + 0,0,0,605,606,1,0,0,0,606,607,1,0,0,0,607,608,3,268,134,0,608,609, + 5,23,0,0,609,610,5,44,0,0,610,611,3,288,144,0,611,612,5,251,0,0, + 612,613,5,65,0,0,613,614,5,276,0,0,614,615,3,196,98,0,615,1246,1, + 0,0,0,616,617,5,23,0,0,617,620,5,260,0,0,618,619,5,119,0,0,619,621, + 5,94,0,0,620,618,1,0,0,0,620,621,1,0,0,0,621,622,1,0,0,0,622,623, + 3,268,134,0,623,624,5,23,0,0,624,625,5,44,0,0,625,626,3,288,144, + 0,626,627,5,83,0,0,627,628,5,182,0,0,628,629,5,183,0,0,629,1246, + 1,0,0,0,630,631,5,23,0,0,631,632,5,260,0,0,632,633,3,268,134,0,633, + 634,5,251,0,0,634,635,5,31,0,0,635,636,3,300,150,0,636,1246,1,0, + 0,0,637,638,5,23,0,0,638,639,5,260,0,0,639,640,3,268,134,0,640,641, + 5,251,0,0,641,642,5,216,0,0,642,643,3,34,17,0,643,1246,1,0,0,0,644, + 645,5,23,0,0,645,646,5,260,0,0,646,647,3,268,134,0,647,648,5,93, + 0,0,648,661,3,284,142,0,649,658,5,1,0,0,650,655,3,230,115,0,651, + 652,5,3,0,0,652,654,3,230,115,0,653,651,1,0,0,0,654,657,1,0,0,0, + 655,653,1,0,0,0,655,656,1,0,0,0,656,659,1,0,0,0,657,655,1,0,0,0, + 658,650,1,0,0,0,658,659,1,0,0,0,659,660,1,0,0,0,660,662,5,2,0,0, + 661,649,1,0,0,0,661,662,1,0,0,0,662,665,1,0,0,0,663,664,5,301,0, + 0,664,666,3,150,75,0,665,663,1,0,0,0,665,666,1,0,0,0,666,1246,1, + 0,0,0,667,668,5,24,0,0,668,671,3,268,134,0,669,670,5,304,0,0,670, + 672,3,32,16,0,671,669,1,0,0,0,671,672,1,0,0,0,672,1246,1,0,0,0,673, + 676,5,53,0,0,674,675,5,194,0,0,675,677,5,226,0,0,676,674,1,0,0,0, + 676,677,1,0,0,0,677,678,1,0,0,0,678,679,5,167,0,0,679,683,5,299, + 0,0,680,681,5,119,0,0,681,682,5,182,0,0,682,684,5,94,0,0,683,680, + 1,0,0,0,683,684,1,0,0,0,684,685,1,0,0,0,685,689,3,274,137,0,686, + 687,5,109,0,0,687,688,5,208,0,0,688,690,3,190,95,0,689,686,1,0,0, + 0,689,690,1,0,0,0,690,693,1,0,0,0,691,692,5,46,0,0,692,694,3,180, + 90,0,693,691,1,0,0,0,693,694,1,0,0,0,694,697,1,0,0,0,695,696,5,304, + 0,0,696,698,3,32,16,0,697,695,1,0,0,0,697,698,1,0,0,0,698,699,1, + 0,0,0,699,700,5,28,0,0,700,701,3,18,9,0,701,1246,1,0,0,0,702,705, + 5,53,0,0,703,704,5,194,0,0,704,706,5,226,0,0,705,703,1,0,0,0,705, + 706,1,0,0,0,706,707,1,0,0,0,707,708,5,299,0,0,708,711,3,274,137, + 0,709,710,5,46,0,0,710,712,3,180,90,0,711,709,1,0,0,0,711,712,1, + 0,0,0,712,715,1,0,0,0,713,714,5,246,0,0,714,716,7,1,0,0,715,713, + 1,0,0,0,715,716,1,0,0,0,716,719,1,0,0,0,717,718,5,304,0,0,718,720, + 3,32,16,0,719,717,1,0,0,0,719,720,1,0,0,0,720,721,1,0,0,0,721,722, + 5,28,0,0,722,723,3,18,9,0,723,1246,1,0,0,0,724,725,5,222,0,0,725, + 726,5,167,0,0,726,727,5,299,0,0,727,1246,3,272,136,0,728,729,5,83, + 0,0,729,730,5,167,0,0,730,733,5,299,0,0,731,732,5,119,0,0,732,734, + 5,94,0,0,733,731,1,0,0,0,733,734,1,0,0,0,734,735,1,0,0,0,735,1246, + 3,272,136,0,736,737,5,23,0,0,737,738,5,167,0,0,738,741,5,299,0,0, + 739,740,5,119,0,0,740,742,5,94,0,0,741,739,1,0,0,0,741,742,1,0,0, + 0,742,743,1,0,0,0,743,744,3,272,136,0,744,745,5,223,0,0,745,746, + 5,269,0,0,746,747,3,274,137,0,747,1246,1,0,0,0,748,749,5,23,0,0, + 749,750,5,167,0,0,750,751,5,299,0,0,751,752,3,272,136,0,752,753, + 5,251,0,0,753,754,5,216,0,0,754,755,3,34,17,0,755,1246,1,0,0,0,756, + 757,5,83,0,0,757,760,5,299,0,0,758,759,5,119,0,0,759,761,5,94,0, + 0,760,758,1,0,0,0,760,761,1,0,0,0,761,762,1,0,0,0,762,1246,3,272, + 136,0,763,764,5,23,0,0,764,765,5,299,0,0,765,766,3,272,136,0,766, + 767,5,223,0,0,767,768,5,269,0,0,768,769,3,274,137,0,769,1246,1,0, + 0,0,770,771,5,23,0,0,771,772,5,299,0,0,772,773,3,272,136,0,773,774, + 5,251,0,0,774,775,5,31,0,0,775,776,3,300,150,0,776,1246,1,0,0,0, + 777,778,5,37,0,0,778,779,3,284,142,0,779,788,5,1,0,0,780,785,3,230, + 115,0,781,782,5,3,0,0,782,784,3,230,115,0,783,781,1,0,0,0,784,787, + 1,0,0,0,785,783,1,0,0,0,785,786,1,0,0,0,786,789,1,0,0,0,787,785, + 1,0,0,0,788,780,1,0,0,0,788,789,1,0,0,0,789,790,1,0,0,0,790,791, + 5,2,0,0,791,1246,1,0,0,0,792,795,5,53,0,0,793,794,5,194,0,0,794, + 796,5,226,0,0,795,793,1,0,0,0,795,796,1,0,0,0,796,797,1,0,0,0,797, + 1246,3,236,118,0,798,799,5,83,0,0,799,802,5,107,0,0,800,801,5,119, + 0,0,801,803,5,94,0,0,802,800,1,0,0,0,802,803,1,0,0,0,803,804,1,0, + 0,0,804,1246,3,240,120,0,805,806,5,53,0,0,806,807,5,235,0,0,807, + 811,3,306,153,0,808,809,5,304,0,0,809,810,5,20,0,0,810,812,3,298, + 149,0,811,808,1,0,0,0,811,812,1,0,0,0,812,815,1,0,0,0,813,814,5, + 122,0,0,814,816,3,280,140,0,815,813,1,0,0,0,815,816,1,0,0,0,816, + 1246,1,0,0,0,817,818,5,83,0,0,818,819,5,235,0,0,819,822,3,306,153, + 0,820,821,5,122,0,0,821,823,3,280,140,0,822,820,1,0,0,0,822,823, + 1,0,0,0,823,1246,1,0,0,0,824,825,5,110,0,0,825,830,3,304,152,0,826, + 827,5,3,0,0,827,829,3,304,152,0,828,826,1,0,0,0,829,832,1,0,0,0, + 830,828,1,0,0,0,830,831,1,0,0,0,831,833,1,0,0,0,832,830,1,0,0,0, + 833,834,5,269,0,0,834,839,3,300,150,0,835,836,5,3,0,0,836,838,3, + 300,150,0,837,835,1,0,0,0,838,841,1,0,0,0,839,837,1,0,0,0,839,840, + 1,0,0,0,840,845,1,0,0,0,841,839,1,0,0,0,842,843,5,304,0,0,843,844, + 5,20,0,0,844,846,5,193,0,0,845,842,1,0,0,0,845,846,1,0,0,0,846,850, + 1,0,0,0,847,848,5,111,0,0,848,849,5,36,0,0,849,851,3,298,149,0,850, + 847,1,0,0,0,850,851,1,0,0,0,851,854,1,0,0,0,852,853,5,122,0,0,853, + 855,3,280,140,0,854,852,1,0,0,0,854,855,1,0,0,0,855,1246,1,0,0,0, + 856,867,5,110,0,0,857,862,3,304,152,0,858,859,5,3,0,0,859,861,3, + 304,152,0,860,858,1,0,0,0,861,864,1,0,0,0,862,860,1,0,0,0,862,863, + 1,0,0,0,863,868,1,0,0,0,864,862,1,0,0,0,865,866,5,22,0,0,866,868, + 5,215,0,0,867,857,1,0,0,0,867,865,1,0,0,0,868,869,1,0,0,0,869,870, + 5,190,0,0,870,871,3,264,132,0,871,872,5,269,0,0,872,876,3,300,150, + 0,873,874,5,304,0,0,874,875,5,110,0,0,875,877,5,193,0,0,876,873, + 1,0,0,0,876,877,1,0,0,0,877,1246,1,0,0,0,878,882,5,233,0,0,879,880, + 5,20,0,0,880,881,5,193,0,0,881,883,5,103,0,0,882,879,1,0,0,0,882, + 883,1,0,0,0,883,884,1,0,0,0,884,889,3,304,152,0,885,886,5,3,0,0, + 886,888,3,304,152,0,887,885,1,0,0,0,888,891,1,0,0,0,889,887,1,0, + 0,0,889,890,1,0,0,0,890,892,1,0,0,0,891,889,1,0,0,0,892,893,5,105, + 0,0,893,898,3,300,150,0,894,895,5,3,0,0,895,897,3,300,150,0,896, + 894,1,0,0,0,897,900,1,0,0,0,898,896,1,0,0,0,898,899,1,0,0,0,899, + 904,1,0,0,0,900,898,1,0,0,0,901,902,5,111,0,0,902,903,5,36,0,0,903, + 905,3,298,149,0,904,901,1,0,0,0,904,905,1,0,0,0,905,908,1,0,0,0, + 906,907,5,122,0,0,907,909,3,280,140,0,908,906,1,0,0,0,908,909,1, + 0,0,0,909,1246,1,0,0,0,910,914,5,233,0,0,911,912,5,110,0,0,912,913, + 5,193,0,0,913,915,5,103,0,0,914,911,1,0,0,0,914,915,1,0,0,0,915, + 926,1,0,0,0,916,921,3,304,152,0,917,918,5,3,0,0,918,920,3,304,152, + 0,919,917,1,0,0,0,920,923,1,0,0,0,921,919,1,0,0,0,921,922,1,0,0, + 0,922,927,1,0,0,0,923,921,1,0,0,0,924,925,5,22,0,0,925,927,5,215, + 0,0,926,916,1,0,0,0,926,924,1,0,0,0,927,928,1,0,0,0,928,929,5,190, + 0,0,929,930,3,264,132,0,930,931,5,105,0,0,931,932,3,300,150,0,932, + 1246,1,0,0,0,933,944,5,74,0,0,934,939,3,260,130,0,935,936,5,3,0, + 0,936,938,3,260,130,0,937,935,1,0,0,0,938,941,1,0,0,0,939,937,1, + 0,0,0,939,940,1,0,0,0,940,945,1,0,0,0,941,939,1,0,0,0,942,943,5, + 22,0,0,943,945,5,215,0,0,944,934,1,0,0,0,944,942,1,0,0,0,945,946, + 1,0,0,0,946,947,5,190,0,0,947,948,3,264,132,0,948,949,5,269,0,0, + 949,950,3,300,150,0,950,1246,1,0,0,0,951,952,5,251,0,0,952,956,5, + 235,0,0,953,957,5,22,0,0,954,957,5,180,0,0,955,957,3,306,153,0,956, + 953,1,0,0,0,956,954,1,0,0,0,956,955,1,0,0,0,957,960,1,0,0,0,958, + 959,5,122,0,0,959,961,3,280,140,0,960,958,1,0,0,0,960,961,1,0,0, + 0,961,1246,1,0,0,0,962,963,5,253,0,0,963,966,5,112,0,0,964,965,5, + 190,0,0,965,967,3,264,132,0,966,964,1,0,0,0,966,967,1,0,0,0,967, + 1246,1,0,0,0,968,980,5,95,0,0,969,970,5,1,0,0,970,975,3,224,112, + 0,971,972,5,3,0,0,972,974,3,224,112,0,973,971,1,0,0,0,974,977,1, + 0,0,0,975,973,1,0,0,0,975,976,1,0,0,0,976,978,1,0,0,0,977,975,1, + 0,0,0,978,979,5,2,0,0,979,981,1,0,0,0,980,969,1,0,0,0,980,981,1, + 0,0,0,981,982,1,0,0,0,982,1246,3,16,8,0,983,984,5,95,0,0,984,986, + 5,24,0,0,985,987,5,297,0,0,986,985,1,0,0,0,986,987,1,0,0,0,987,988, + 1,0,0,0,988,1246,3,16,8,0,989,990,5,253,0,0,990,991,5,53,0,0,991, + 992,5,260,0,0,992,1246,3,268,134,0,993,994,5,253,0,0,994,995,5,53, + 0,0,995,996,5,243,0,0,996,1246,3,276,138,0,997,998,5,253,0,0,998, + 999,5,53,0,0,999,1000,5,299,0,0,1000,1246,3,272,136,0,1001,1002, + 5,253,0,0,1002,1003,5,53,0,0,1003,1004,5,167,0,0,1004,1005,5,299, + 0,0,1005,1246,3,272,136,0,1006,1007,5,253,0,0,1007,1008,5,53,0,0, + 1008,1009,5,107,0,0,1009,1246,3,284,142,0,1010,1011,5,253,0,0,1011, + 1014,5,261,0,0,1012,1013,7,2,0,0,1013,1015,3,276,138,0,1014,1012, + 1,0,0,0,1014,1015,1,0,0,0,1015,1022,1,0,0,0,1016,1017,5,154,0,0, + 1017,1020,3,180,90,0,1018,1019,5,90,0,0,1019,1021,3,180,90,0,1020, + 1018,1,0,0,0,1020,1021,1,0,0,0,1021,1023,1,0,0,0,1022,1016,1,0,0, + 0,1022,1023,1,0,0,0,1023,1246,1,0,0,0,1024,1025,5,253,0,0,1025,1028, + 5,244,0,0,1026,1027,7,2,0,0,1027,1029,3,280,140,0,1028,1026,1,0, + 0,0,1028,1029,1,0,0,0,1029,1036,1,0,0,0,1030,1031,5,154,0,0,1031, + 1034,3,180,90,0,1032,1033,5,90,0,0,1033,1035,3,180,90,0,1034,1032, + 1,0,0,0,1034,1035,1,0,0,0,1035,1037,1,0,0,0,1036,1030,1,0,0,0,1036, + 1037,1,0,0,0,1037,1246,1,0,0,0,1038,1039,5,253,0,0,1039,1046,5,43, + 0,0,1040,1041,5,154,0,0,1041,1044,3,180,90,0,1042,1043,5,90,0,0, + 1043,1045,3,180,90,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0,1045,1047, + 1,0,0,0,1046,1040,1,0,0,0,1046,1047,1,0,0,0,1047,1246,1,0,0,0,1048, + 1049,5,253,0,0,1049,1050,5,45,0,0,1050,1051,7,2,0,0,1051,1058,3, + 266,133,0,1052,1053,5,154,0,0,1053,1056,3,180,90,0,1054,1055,5,90, + 0,0,1055,1057,3,180,90,0,1056,1054,1,0,0,0,1056,1057,1,0,0,0,1057, + 1059,1,0,0,0,1058,1052,1,0,0,0,1058,1059,1,0,0,0,1059,1246,1,0,0, + 0,1060,1061,5,253,0,0,1061,1062,5,256,0,0,1062,1063,5,103,0,0,1063, + 1246,3,266,133,0,1064,1065,5,253,0,0,1065,1066,5,256,0,0,1066,1067, + 5,103,0,0,1067,1068,5,1,0,0,1068,1069,3,18,9,0,1069,1070,5,2,0,0, + 1070,1246,1,0,0,0,1071,1073,5,253,0,0,1072,1074,5,56,0,0,1073,1072, + 1,0,0,0,1073,1074,1,0,0,0,1074,1075,1,0,0,0,1075,1078,5,236,0,0, + 1076,1077,7,2,0,0,1077,1079,3,280,140,0,1078,1076,1,0,0,0,1078,1079, + 1,0,0,0,1079,1246,1,0,0,0,1080,1081,5,253,0,0,1081,1082,5,235,0, + 0,1082,1085,5,112,0,0,1083,1084,7,2,0,0,1084,1086,3,280,140,0,1085, + 1083,1,0,0,0,1085,1086,1,0,0,0,1086,1246,1,0,0,0,1087,1088,5,76, + 0,0,1088,1246,3,266,133,0,1089,1090,5,75,0,0,1090,1246,3,266,133, + 0,1091,1092,5,253,0,0,1092,1095,5,108,0,0,1093,1094,7,2,0,0,1094, + 1096,3,276,138,0,1095,1093,1,0,0,0,1095,1096,1,0,0,0,1096,1103,1, + 0,0,0,1097,1098,5,154,0,0,1098,1101,3,180,90,0,1099,1100,5,90,0, + 0,1100,1102,3,180,90,0,1101,1099,1,0,0,0,1101,1102,1,0,0,0,1102, + 1104,1,0,0,0,1103,1097,1,0,0,0,1103,1104,1,0,0,0,1104,1246,1,0,0, + 0,1105,1106,5,253,0,0,1106,1113,5,250,0,0,1107,1108,5,154,0,0,1108, + 1111,3,180,90,0,1109,1110,5,90,0,0,1110,1112,3,180,90,0,1111,1109, + 1,0,0,0,1111,1112,1,0,0,0,1112,1114,1,0,0,0,1113,1107,1,0,0,0,1113, + 1114,1,0,0,0,1114,1246,1,0,0,0,1115,1116,5,251,0,0,1116,1117,5,250, + 0,0,1117,1118,5,31,0,0,1118,1246,3,310,155,0,1119,1120,5,227,0,0, + 1120,1121,5,250,0,0,1121,1246,5,31,0,0,1122,1123,5,251,0,0,1123, + 1124,5,250,0,0,1124,1125,3,292,146,0,1125,1126,5,312,0,0,1126,1127, + 3,148,74,0,1127,1246,1,0,0,0,1128,1129,5,227,0,0,1129,1130,5,250, + 0,0,1130,1246,3,292,146,0,1131,1132,5,255,0,0,1132,1141,5,271,0, + 0,1133,1138,3,226,113,0,1134,1135,5,3,0,0,1135,1137,3,226,113,0, + 1136,1134,1,0,0,0,1137,1140,1,0,0,0,1138,1136,1,0,0,0,1138,1139, + 1,0,0,0,1139,1142,1,0,0,0,1140,1138,1,0,0,0,1141,1133,1,0,0,0,1141, + 1142,1,0,0,0,1142,1246,1,0,0,0,1143,1145,5,47,0,0,1144,1146,5,307, + 0,0,1145,1144,1,0,0,0,1145,1146,1,0,0,0,1146,1246,1,0,0,0,1147,1149, + 5,237,0,0,1148,1150,5,307,0,0,1149,1148,1,0,0,0,1149,1150,1,0,0, + 0,1150,1246,1,0,0,0,1151,1152,5,214,0,0,1152,1153,3,306,153,0,1153, + 1154,5,105,0,0,1154,1155,3,16,8,0,1155,1246,1,0,0,0,1156,1157,5, + 68,0,0,1157,1158,5,214,0,0,1158,1246,3,306,153,0,1159,1160,5,93, + 0,0,1160,1170,3,306,153,0,1161,1162,5,290,0,0,1162,1167,3,148,74, + 0,1163,1164,5,3,0,0,1164,1166,3,148,74,0,1165,1163,1,0,0,0,1166, + 1169,1,0,0,0,1167,1165,1,0,0,0,1167,1168,1,0,0,0,1168,1171,1,0,0, + 0,1169,1167,1,0,0,0,1170,1161,1,0,0,0,1170,1171,1,0,0,0,1171,1246, + 1,0,0,0,1172,1173,5,93,0,0,1173,1174,5,121,0,0,1174,1184,3,180,90, + 0,1175,1176,5,290,0,0,1176,1181,3,148,74,0,1177,1178,5,3,0,0,1178, + 1180,3,148,74,0,1179,1177,1,0,0,0,1180,1183,1,0,0,0,1181,1179,1, + 0,0,0,1181,1182,1,0,0,0,1182,1185,1,0,0,0,1183,1181,1,0,0,0,1184, + 1175,1,0,0,0,1184,1185,1,0,0,0,1185,1246,1,0,0,0,1186,1187,5,76, + 0,0,1187,1188,5,126,0,0,1188,1246,3,306,153,0,1189,1190,5,76,0,0, + 1190,1191,5,198,0,0,1191,1246,3,306,153,0,1192,1193,5,251,0,0,1193, + 1194,5,205,0,0,1194,1246,3,234,117,0,1195,1196,5,251,0,0,1196,1197, + 5,267,0,0,1197,1200,5,311,0,0,1198,1201,5,157,0,0,1199,1201,3,148, + 74,0,1200,1198,1,0,0,0,1200,1199,1,0,0,0,1201,1246,1,0,0,0,1202, + 1203,5,287,0,0,1203,1204,3,268,134,0,1204,1205,5,251,0,0,1205,1210, + 3,222,111,0,1206,1207,5,3,0,0,1207,1209,3,222,111,0,1208,1206,1, + 0,0,0,1209,1212,1,0,0,0,1210,1208,1,0,0,0,1210,1211,1,0,0,0,1211, + 1215,1,0,0,0,1212,1210,1,0,0,0,1213,1214,5,301,0,0,1214,1216,3,150, + 75,0,1215,1213,1,0,0,0,1215,1216,1,0,0,0,1216,1246,1,0,0,0,1217, + 1218,5,169,0,0,1218,1219,5,130,0,0,1219,1224,3,268,134,0,1220,1222, + 5,28,0,0,1221,1220,1,0,0,0,1221,1222,1,0,0,0,1222,1223,1,0,0,0,1223, + 1225,3,306,153,0,1224,1221,1,0,0,0,1224,1225,1,0,0,0,1225,1226,1, + 0,0,0,1226,1227,5,290,0,0,1227,1228,3,82,41,0,1228,1229,5,190,0, + 0,1229,1231,3,148,74,0,1230,1232,3,206,103,0,1231,1230,1,0,0,0,1232, + 1233,1,0,0,0,1233,1231,1,0,0,0,1233,1234,1,0,0,0,1234,1246,1,0,0, + 0,1235,1236,5,253,0,0,1236,1237,5,46,0,0,1237,1238,5,190,0,0,1238, + 1239,5,260,0,0,1239,1246,3,268,134,0,1240,1241,5,253,0,0,1241,1242, + 5,46,0,0,1242,1243,5,190,0,0,1243,1244,5,44,0,0,1244,1246,3,288, + 144,0,1245,347,1,0,0,0,1245,348,1,0,0,0,1245,350,1,0,0,0,1245,372, + 1,0,0,0,1245,382,1,0,0,0,1245,398,1,0,0,0,1245,408,1,0,0,0,1245, + 415,1,0,0,0,1245,422,1,0,0,0,1245,460,1,0,0,0,1245,490,1,0,0,0,1245, + 497,1,0,0,0,1245,505,1,0,0,0,1245,512,1,0,0,0,1245,515,1,0,0,0,1245, + 524,1,0,0,0,1245,533,1,0,0,0,1245,542,1,0,0,0,1245,553,1,0,0,0,1245, + 569,1,0,0,0,1245,586,1,0,0,0,1245,601,1,0,0,0,1245,616,1,0,0,0,1245, + 630,1,0,0,0,1245,637,1,0,0,0,1245,644,1,0,0,0,1245,667,1,0,0,0,1245, + 673,1,0,0,0,1245,702,1,0,0,0,1245,724,1,0,0,0,1245,728,1,0,0,0,1245, + 736,1,0,0,0,1245,748,1,0,0,0,1245,756,1,0,0,0,1245,763,1,0,0,0,1245, + 770,1,0,0,0,1245,777,1,0,0,0,1245,792,1,0,0,0,1245,798,1,0,0,0,1245, + 805,1,0,0,0,1245,817,1,0,0,0,1245,824,1,0,0,0,1245,856,1,0,0,0,1245, + 878,1,0,0,0,1245,910,1,0,0,0,1245,933,1,0,0,0,1245,951,1,0,0,0,1245, + 962,1,0,0,0,1245,968,1,0,0,0,1245,983,1,0,0,0,1245,989,1,0,0,0,1245, + 993,1,0,0,0,1245,997,1,0,0,0,1245,1001,1,0,0,0,1245,1006,1,0,0,0, + 1245,1010,1,0,0,0,1245,1024,1,0,0,0,1245,1038,1,0,0,0,1245,1048, + 1,0,0,0,1245,1060,1,0,0,0,1245,1064,1,0,0,0,1245,1071,1,0,0,0,1245, + 1080,1,0,0,0,1245,1087,1,0,0,0,1245,1089,1,0,0,0,1245,1091,1,0,0, + 0,1245,1105,1,0,0,0,1245,1115,1,0,0,0,1245,1119,1,0,0,0,1245,1122, + 1,0,0,0,1245,1128,1,0,0,0,1245,1131,1,0,0,0,1245,1143,1,0,0,0,1245, + 1147,1,0,0,0,1245,1151,1,0,0,0,1245,1156,1,0,0,0,1245,1159,1,0,0, + 0,1245,1172,1,0,0,0,1245,1186,1,0,0,0,1245,1189,1,0,0,0,1245,1192, + 1,0,0,0,1245,1195,1,0,0,0,1245,1202,1,0,0,0,1245,1217,1,0,0,0,1245, + 1235,1,0,0,0,1245,1240,1,0,0,0,1246,17,1,0,0,0,1247,1249,3,20,10, + 0,1248,1247,1,0,0,0,1248,1249,1,0,0,0,1249,1250,1,0,0,0,1250,1251, + 3,22,11,0,1251,19,1,0,0,0,1252,1253,5,304,0,0,1253,1258,3,236,118, + 0,1254,1255,5,3,0,0,1255,1257,3,236,118,0,1256,1254,1,0,0,0,1257, + 1260,1,0,0,0,1258,1256,1,0,0,0,1258,1259,1,0,0,0,1259,21,1,0,0,0, + 1260,1258,1,0,0,0,1261,1263,3,24,12,0,1262,1261,1,0,0,0,1262,1263, + 1,0,0,0,1263,1264,1,0,0,0,1264,1265,3,40,20,0,1265,23,1,0,0,0,1266, + 1268,5,304,0,0,1267,1269,5,221,0,0,1268,1267,1,0,0,0,1268,1269,1, + 0,0,0,1269,1270,1,0,0,0,1270,1275,3,68,34,0,1271,1272,5,3,0,0,1272, + 1274,3,68,34,0,1273,1271,1,0,0,0,1274,1277,1,0,0,0,1275,1273,1,0, + 0,0,1275,1276,1,0,0,0,1276,25,1,0,0,0,1277,1275,1,0,0,0,1278,1281, + 3,28,14,0,1279,1281,3,30,15,0,1280,1278,1,0,0,0,1280,1279,1,0,0, + 0,1281,27,1,0,0,0,1282,1283,3,290,145,0,1283,1286,3,196,98,0,1284, + 1285,5,182,0,0,1285,1287,5,183,0,0,1286,1284,1,0,0,0,1286,1287,1, + 0,0,0,1287,1290,1,0,0,0,1288,1289,5,46,0,0,1289,1291,3,180,90,0, + 1290,1288,1,0,0,0,1290,1291,1,0,0,0,1291,1294,1,0,0,0,1292,1293, + 5,304,0,0,1293,1295,3,32,16,0,1294,1292,1,0,0,0,1294,1295,1,0,0, + 0,1295,29,1,0,0,0,1296,1297,5,154,0,0,1297,1300,3,268,134,0,1298, + 1299,7,3,0,0,1299,1301,5,216,0,0,1300,1298,1,0,0,0,1300,1301,1,0, + 0,0,1301,31,1,0,0,0,1302,1303,5,1,0,0,1303,1304,3,34,17,0,1304,1305, + 5,2,0,0,1305,33,1,0,0,0,1306,1311,3,36,18,0,1307,1308,5,3,0,0,1308, + 1310,3,36,18,0,1309,1307,1,0,0,0,1310,1313,1,0,0,0,1311,1309,1,0, + 0,0,1311,1312,1,0,0,0,1312,35,1,0,0,0,1313,1311,1,0,0,0,1314,1315, + 3,306,153,0,1315,1316,5,312,0,0,1316,1317,3,38,19,0,1317,37,1,0, + 0,0,1318,1321,5,70,0,0,1319,1321,3,148,74,0,1320,1318,1,0,0,0,1320, + 1319,1,0,0,0,1321,39,1,0,0,0,1322,1333,3,46,23,0,1323,1324,5,195, + 0,0,1324,1325,5,36,0,0,1325,1330,3,50,25,0,1326,1327,5,3,0,0,1327, + 1329,3,50,25,0,1328,1326,1,0,0,0,1329,1332,1,0,0,0,1330,1328,1,0, + 0,0,1330,1331,1,0,0,0,1331,1334,1,0,0,0,1332,1330,1,0,0,0,1333,1323, + 1,0,0,0,1333,1334,1,0,0,0,1334,1340,1,0,0,0,1335,1336,5,188,0,0, + 1336,1338,3,44,22,0,1337,1339,7,4,0,0,1338,1337,1,0,0,0,1338,1339, + 1,0,0,0,1339,1341,1,0,0,0,1340,1335,1,0,0,0,1340,1341,1,0,0,0,1341, + 1355,1,0,0,0,1342,1343,5,155,0,0,1343,1356,3,42,21,0,1344,1345,5, + 98,0,0,1345,1347,7,5,0,0,1346,1348,3,44,22,0,1347,1346,1,0,0,0,1347, + 1348,1,0,0,0,1348,1349,1,0,0,0,1349,1353,7,4,0,0,1350,1354,5,192, + 0,0,1351,1352,5,304,0,0,1352,1354,5,266,0,0,1353,1350,1,0,0,0,1353, + 1351,1,0,0,0,1354,1356,1,0,0,0,1355,1342,1,0,0,0,1355,1344,1,0,0, + 0,1355,1356,1,0,0,0,1356,41,1,0,0,0,1357,1360,5,22,0,0,1358,1360, + 3,44,22,0,1359,1357,1,0,0,0,1359,1358,1,0,0,0,1360,43,1,0,0,0,1361, + 1362,7,6,0,0,1362,45,1,0,0,0,1363,1364,6,23,-1,0,1364,1365,3,48, + 24,0,1365,1380,1,0,0,0,1366,1367,10,2,0,0,1367,1369,5,128,0,0,1368, + 1370,3,70,35,0,1369,1368,1,0,0,0,1369,1370,1,0,0,0,1370,1371,1,0, + 0,0,1371,1379,3,46,23,3,1372,1373,10,1,0,0,1373,1375,7,7,0,0,1374, + 1376,3,70,35,0,1375,1374,1,0,0,0,1375,1376,1,0,0,0,1376,1377,1,0, + 0,0,1377,1379,3,46,23,2,1378,1366,1,0,0,0,1378,1372,1,0,0,0,1379, + 1382,1,0,0,0,1380,1378,1,0,0,0,1380,1381,1,0,0,0,1381,47,1,0,0,0, + 1382,1380,1,0,0,0,1383,1400,3,52,26,0,1384,1385,5,260,0,0,1385,1400, + 3,268,134,0,1386,1387,5,296,0,0,1387,1392,3,148,74,0,1388,1389,5, + 3,0,0,1389,1391,3,148,74,0,1390,1388,1,0,0,0,1391,1394,1,0,0,0,1392, + 1390,1,0,0,0,1392,1393,1,0,0,0,1393,1400,1,0,0,0,1394,1392,1,0,0, + 0,1395,1396,5,1,0,0,1396,1397,3,40,20,0,1397,1398,5,2,0,0,1398,1400, + 1,0,0,0,1399,1383,1,0,0,0,1399,1384,1,0,0,0,1399,1386,1,0,0,0,1399, + 1395,1,0,0,0,1400,49,1,0,0,0,1401,1404,3,288,144,0,1402,1404,3,148, + 74,0,1403,1401,1,0,0,0,1403,1402,1,0,0,0,1404,1406,1,0,0,0,1405, + 1407,7,8,0,0,1406,1405,1,0,0,0,1406,1407,1,0,0,0,1407,1410,1,0,0, + 0,1408,1409,5,185,0,0,1409,1411,7,9,0,0,1410,1408,1,0,0,0,1410,1411, + 1,0,0,0,1411,51,1,0,0,0,1412,1414,5,248,0,0,1413,1415,3,70,35,0, + 1414,1413,1,0,0,0,1414,1415,1,0,0,0,1415,1416,1,0,0,0,1416,1426, + 3,54,27,0,1417,1418,5,105,0,0,1418,1423,3,82,41,0,1419,1420,5,3, + 0,0,1420,1422,3,82,41,0,1421,1419,1,0,0,0,1422,1425,1,0,0,0,1423, + 1421,1,0,0,0,1423,1424,1,0,0,0,1424,1427,1,0,0,0,1425,1423,1,0,0, + 0,1426,1417,1,0,0,0,1426,1427,1,0,0,0,1427,1430,1,0,0,0,1428,1429, + 5,301,0,0,1429,1431,3,150,75,0,1430,1428,1,0,0,0,1430,1431,1,0,0, + 0,1431,1435,1,0,0,0,1432,1433,5,114,0,0,1433,1434,5,36,0,0,1434, + 1436,3,56,28,0,1435,1432,1,0,0,0,1435,1436,1,0,0,0,1436,1439,1,0, + 0,0,1437,1438,5,117,0,0,1438,1440,3,150,75,0,1439,1437,1,0,0,0,1439, + 1440,1,0,0,0,1440,1450,1,0,0,0,1441,1442,5,303,0,0,1442,1447,3,64, + 32,0,1443,1444,5,3,0,0,1444,1446,3,64,32,0,1445,1443,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,1441,1,0,0,0,1450,1451,1,0,0,0,1451,53, + 1,0,0,0,1452,1457,3,72,36,0,1453,1454,5,3,0,0,1454,1456,3,72,36, + 0,1455,1453,1,0,0,0,1456,1459,1,0,0,0,1457,1455,1,0,0,0,1457,1458, + 1,0,0,0,1458,55,1,0,0,0,1459,1457,1,0,0,0,1460,1462,3,70,35,0,1461, + 1460,1,0,0,0,1461,1462,1,0,0,0,1462,1463,1,0,0,0,1463,1468,3,58, + 29,0,1464,1465,5,3,0,0,1465,1467,3,58,29,0,1466,1464,1,0,0,0,1467, + 1470,1,0,0,0,1468,1466,1,0,0,0,1468,1469,1,0,0,0,1469,57,1,0,0,0, + 1470,1468,1,0,0,0,1471,1512,3,60,30,0,1472,1473,5,238,0,0,1473,1482, + 5,1,0,0,1474,1479,3,60,30,0,1475,1476,5,3,0,0,1476,1478,3,60,30, + 0,1477,1475,1,0,0,0,1478,1481,1,0,0,0,1479,1477,1,0,0,0,1479,1480, + 1,0,0,0,1480,1483,1,0,0,0,1481,1479,1,0,0,0,1482,1474,1,0,0,0,1482, + 1483,1,0,0,0,1483,1484,1,0,0,0,1484,1512,5,2,0,0,1485,1486,5,55, + 0,0,1486,1495,5,1,0,0,1487,1492,3,60,30,0,1488,1489,5,3,0,0,1489, + 1491,3,60,30,0,1490,1488,1,0,0,0,1491,1494,1,0,0,0,1492,1490,1,0, + 0,0,1492,1493,1,0,0,0,1493,1496,1,0,0,0,1494,1492,1,0,0,0,1495,1487, + 1,0,0,0,1495,1496,1,0,0,0,1496,1497,1,0,0,0,1497,1512,5,2,0,0,1498, + 1499,5,115,0,0,1499,1500,5,252,0,0,1500,1501,5,1,0,0,1501,1506,3, + 60,30,0,1502,1503,5,3,0,0,1503,1505,3,60,30,0,1504,1502,1,0,0,0, + 1505,1508,1,0,0,0,1506,1504,1,0,0,0,1506,1507,1,0,0,0,1507,1509, + 1,0,0,0,1508,1506,1,0,0,0,1509,1510,5,2,0,0,1510,1512,1,0,0,0,1511, + 1471,1,0,0,0,1511,1472,1,0,0,0,1511,1485,1,0,0,0,1511,1498,1,0,0, + 0,1512,59,1,0,0,0,1513,1522,5,1,0,0,1514,1519,3,62,31,0,1515,1516, + 5,3,0,0,1516,1518,3,62,31,0,1517,1515,1,0,0,0,1518,1521,1,0,0,0, + 1519,1517,1,0,0,0,1519,1520,1,0,0,0,1520,1523,1,0,0,0,1521,1519, + 1,0,0,0,1522,1514,1,0,0,0,1522,1523,1,0,0,0,1523,1524,1,0,0,0,1524, + 1527,5,2,0,0,1525,1527,3,62,31,0,1526,1513,1,0,0,0,1526,1525,1,0, + 0,0,1527,61,1,0,0,0,1528,1531,3,288,144,0,1529,1531,3,148,74,0,1530, + 1528,1,0,0,0,1530,1529,1,0,0,0,1531,63,1,0,0,0,1532,1533,3,306,153, + 0,1533,1534,5,28,0,0,1534,1535,5,1,0,0,1535,1536,3,66,33,0,1536, + 1537,5,2,0,0,1537,65,1,0,0,0,1538,1540,3,306,153,0,1539,1538,1,0, + 0,0,1539,1540,1,0,0,0,1540,1551,1,0,0,0,1541,1542,5,201,0,0,1542, + 1543,5,36,0,0,1543,1548,3,148,74,0,1544,1545,5,3,0,0,1545,1547,3, + 148,74,0,1546,1544,1,0,0,0,1547,1550,1,0,0,0,1548,1546,1,0,0,0,1548, + 1549,1,0,0,0,1549,1552,1,0,0,0,1550,1548,1,0,0,0,1551,1541,1,0,0, + 0,1551,1552,1,0,0,0,1552,1563,1,0,0,0,1553,1554,5,195,0,0,1554,1555, + 5,36,0,0,1555,1560,3,50,25,0,1556,1557,5,3,0,0,1557,1559,3,50,25, + 0,1558,1556,1,0,0,0,1559,1562,1,0,0,0,1560,1558,1,0,0,0,1560,1561, + 1,0,0,0,1561,1564,1,0,0,0,1562,1560,1,0,0,0,1563,1553,1,0,0,0,1563, + 1564,1,0,0,0,1564,1566,1,0,0,0,1565,1567,3,210,105,0,1566,1565,1, + 0,0,0,1566,1567,1,0,0,0,1567,67,1,0,0,0,1568,1570,3,306,153,0,1569, + 1571,3,118,59,0,1570,1569,1,0,0,0,1570,1571,1,0,0,0,1571,1572,1, + 0,0,0,1572,1573,5,28,0,0,1573,1574,5,1,0,0,1574,1575,3,22,11,0,1575, + 1576,5,2,0,0,1576,69,1,0,0,0,1577,1578,7,10,0,0,1578,71,1,0,0,0, + 1579,1582,3,78,39,0,1580,1582,3,80,40,0,1581,1579,1,0,0,0,1581,1580, + 1,0,0,0,1582,1587,1,0,0,0,1583,1585,5,28,0,0,1584,1583,1,0,0,0,1584, + 1585,1,0,0,0,1585,1586,1,0,0,0,1586,1588,3,306,153,0,1587,1584,1, + 0,0,0,1587,1588,1,0,0,0,1588,1596,1,0,0,0,1589,1592,3,76,38,0,1590, + 1591,5,28,0,0,1591,1593,3,118,59,0,1592,1590,1,0,0,0,1592,1593,1, + 0,0,0,1593,1596,1,0,0,0,1594,1596,3,74,37,0,1595,1581,1,0,0,0,1595, + 1589,1,0,0,0,1595,1594,1,0,0,0,1596,73,1,0,0,0,1597,1598,5,320,0, + 0,1598,75,1,0,0,0,1599,1600,3,156,78,0,1600,1601,5,4,0,0,1601,1602, + 5,320,0,0,1602,77,1,0,0,0,1603,1604,3,288,144,0,1604,79,1,0,0,0, + 1605,1606,3,148,74,0,1606,81,1,0,0,0,1607,1608,6,41,-1,0,1608,1609, + 3,88,44,0,1609,1628,1,0,0,0,1610,1624,10,2,0,0,1611,1612,5,54,0, + 0,1612,1613,5,136,0,0,1613,1625,3,88,44,0,1614,1615,3,84,42,0,1615, + 1616,5,136,0,0,1616,1617,3,82,41,0,1617,1618,3,86,43,0,1618,1625, + 1,0,0,0,1619,1620,5,172,0,0,1620,1621,3,84,42,0,1621,1622,5,136, + 0,0,1622,1623,3,88,44,0,1623,1625,1,0,0,0,1624,1611,1,0,0,0,1624, + 1614,1,0,0,0,1624,1619,1,0,0,0,1625,1627,1,0,0,0,1626,1610,1,0,0, + 0,1627,1630,1,0,0,0,1628,1626,1,0,0,0,1628,1629,1,0,0,0,1629,83, + 1,0,0,0,1630,1628,1,0,0,0,1631,1633,5,125,0,0,1632,1631,1,0,0,0, + 1632,1633,1,0,0,0,1633,1647,1,0,0,0,1634,1636,5,152,0,0,1635,1637, + 5,197,0,0,1636,1635,1,0,0,0,1636,1637,1,0,0,0,1637,1647,1,0,0,0, + 1638,1640,5,234,0,0,1639,1641,5,197,0,0,1640,1639,1,0,0,0,1640,1641, + 1,0,0,0,1641,1647,1,0,0,0,1642,1644,5,106,0,0,1643,1645,5,197,0, + 0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645,1647,1,0,0,0,1646,1632, + 1,0,0,0,1646,1634,1,0,0,0,1646,1638,1,0,0,0,1646,1642,1,0,0,0,1647, + 85,1,0,0,0,1648,1649,5,190,0,0,1649,1663,3,150,75,0,1650,1651,5, + 290,0,0,1651,1652,5,1,0,0,1652,1657,3,306,153,0,1653,1654,5,3,0, + 0,1654,1656,3,306,153,0,1655,1653,1,0,0,0,1656,1659,1,0,0,0,1657, + 1655,1,0,0,0,1657,1658,1,0,0,0,1658,1660,1,0,0,0,1659,1657,1,0,0, + 0,1660,1661,5,2,0,0,1661,1663,1,0,0,0,1662,1648,1,0,0,0,1662,1650, + 1,0,0,0,1663,87,1,0,0,0,1664,1671,3,98,49,0,1665,1666,5,262,0,0, + 1666,1667,3,90,45,0,1667,1668,5,1,0,0,1668,1669,3,148,74,0,1669, + 1670,5,2,0,0,1670,1672,1,0,0,0,1671,1665,1,0,0,0,1671,1672,1,0,0, + 0,1672,89,1,0,0,0,1673,1674,7,11,0,0,1674,91,1,0,0,0,1675,1676,7, + 12,0,0,1676,93,1,0,0,0,1677,1684,5,89,0,0,1678,1680,5,274,0,0,1679, + 1681,3,180,90,0,1680,1679,1,0,0,0,1680,1681,1,0,0,0,1681,1682,1, + 0,0,0,1682,1684,3,96,48,0,1683,1677,1,0,0,0,1683,1678,1,0,0,0,1684, + 95,1,0,0,0,1685,1686,5,304,0,0,1686,1690,5,51,0,0,1687,1688,5,306, + 0,0,1688,1690,5,51,0,0,1689,1685,1,0,0,0,1689,1687,1,0,0,0,1690, + 97,1,0,0,0,1691,1774,3,112,56,0,1692,1693,5,166,0,0,1693,1704,5, + 1,0,0,1694,1695,5,201,0,0,1695,1696,5,36,0,0,1696,1701,3,148,74, + 0,1697,1698,5,3,0,0,1698,1700,3,148,74,0,1699,1697,1,0,0,0,1700, + 1703,1,0,0,0,1701,1699,1,0,0,0,1701,1702,1,0,0,0,1702,1705,1,0,0, + 0,1703,1701,1,0,0,0,1704,1694,1,0,0,0,1704,1705,1,0,0,0,1705,1716, + 1,0,0,0,1706,1707,5,195,0,0,1707,1708,5,36,0,0,1708,1713,3,50,25, + 0,1709,1710,5,3,0,0,1710,1712,3,50,25,0,1711,1709,1,0,0,0,1712,1715, + 1,0,0,0,1713,1711,1,0,0,0,1713,1714,1,0,0,0,1714,1717,1,0,0,0,1715, + 1713,1,0,0,0,1716,1706,1,0,0,0,1716,1717,1,0,0,0,1717,1727,1,0,0, + 0,1718,1719,5,168,0,0,1719,1724,3,100,50,0,1720,1721,5,3,0,0,1721, + 1723,3,100,50,0,1722,1720,1,0,0,0,1723,1726,1,0,0,0,1724,1722,1, + 0,0,0,1724,1725,1,0,0,0,1725,1728,1,0,0,0,1726,1724,1,0,0,0,1727, + 1718,1,0,0,0,1727,1728,1,0,0,0,1728,1730,1,0,0,0,1729,1731,3,102, + 51,0,1730,1729,1,0,0,0,1730,1731,1,0,0,0,1731,1735,1,0,0,0,1732, + 1733,5,21,0,0,1733,1734,5,163,0,0,1734,1736,3,106,53,0,1735,1732, + 1,0,0,0,1735,1736,1,0,0,0,1736,1738,1,0,0,0,1737,1739,7,13,0,0,1738, + 1737,1,0,0,0,1738,1739,1,0,0,0,1739,1740,1,0,0,0,1740,1741,5,206, + 0,0,1741,1742,5,1,0,0,1742,1743,3,216,108,0,1743,1753,5,2,0,0,1744, + 1745,5,257,0,0,1745,1750,3,108,54,0,1746,1747,5,3,0,0,1747,1749, + 3,108,54,0,1748,1746,1,0,0,0,1749,1752,1,0,0,0,1750,1748,1,0,0,0, + 1750,1751,1,0,0,0,1751,1754,1,0,0,0,1752,1750,1,0,0,0,1753,1744, + 1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0,0,0,1755,1756,5,71,0,0,1756, + 1761,3,110,55,0,1757,1758,5,3,0,0,1758,1760,3,110,55,0,1759,1757, + 1,0,0,0,1760,1763,1,0,0,0,1761,1759,1,0,0,0,1761,1762,1,0,0,0,1762, + 1764,1,0,0,0,1763,1761,1,0,0,0,1764,1772,5,2,0,0,1765,1767,5,28, + 0,0,1766,1765,1,0,0,0,1766,1767,1,0,0,0,1767,1768,1,0,0,0,1768,1770, + 3,306,153,0,1769,1771,3,118,59,0,1770,1769,1,0,0,0,1770,1771,1,0, + 0,0,1771,1773,1,0,0,0,1772,1766,1,0,0,0,1772,1773,1,0,0,0,1773,1775, + 1,0,0,0,1774,1692,1,0,0,0,1774,1775,1,0,0,0,1775,99,1,0,0,0,1776, + 1777,3,148,74,0,1777,1778,5,28,0,0,1778,1779,3,306,153,0,1779,101, + 1,0,0,0,1780,1781,5,191,0,0,1781,1782,5,239,0,0,1782,1783,5,207, + 0,0,1783,1792,5,163,0,0,1784,1785,5,22,0,0,1785,1786,5,240,0,0,1786, + 1787,5,207,0,0,1787,1789,5,163,0,0,1788,1790,3,104,52,0,1789,1788, + 1,0,0,0,1789,1790,1,0,0,0,1790,1792,1,0,0,0,1791,1780,1,0,0,0,1791, + 1784,1,0,0,0,1792,103,1,0,0,0,1793,1794,5,253,0,0,1794,1795,5,85, + 0,0,1795,1803,5,165,0,0,1796,1797,5,189,0,0,1797,1798,5,85,0,0,1798, + 1803,5,165,0,0,1799,1800,5,304,0,0,1800,1801,5,284,0,0,1801,1803, + 5,240,0,0,1802,1793,1,0,0,0,1802,1796,1,0,0,0,1802,1799,1,0,0,0, + 1803,105,1,0,0,0,1804,1805,5,5,0,0,1805,1806,5,269,0,0,1806,1807, + 5,174,0,0,1807,1824,5,239,0,0,1808,1809,5,5,0,0,1809,1810,5,204, + 0,0,1810,1811,5,148,0,0,1811,1824,5,239,0,0,1812,1813,5,5,0,0,1813, + 1814,5,269,0,0,1814,1815,5,101,0,0,1815,1824,3,306,153,0,1816,1817, + 5,5,0,0,1817,1818,5,269,0,0,1818,1819,5,148,0,0,1819,1824,3,306, + 153,0,1820,1821,5,5,0,0,1821,1822,5,269,0,0,1822,1824,3,306,153, + 0,1823,1804,1,0,0,0,1823,1808,1,0,0,0,1823,1812,1,0,0,0,1823,1816, + 1,0,0,0,1823,1820,1,0,0,0,1824,107,1,0,0,0,1825,1826,3,306,153,0, + 1826,1827,5,312,0,0,1827,1828,5,1,0,0,1828,1833,3,306,153,0,1829, + 1830,5,3,0,0,1830,1832,3,306,153,0,1831,1829,1,0,0,0,1832,1835,1, + 0,0,0,1833,1831,1,0,0,0,1833,1834,1,0,0,0,1834,1836,1,0,0,0,1835, + 1833,1,0,0,0,1836,1837,5,2,0,0,1837,109,1,0,0,0,1838,1839,3,306, + 153,0,1839,1840,5,28,0,0,1840,1841,3,148,74,0,1841,111,1,0,0,0,1842, + 1850,3,120,60,0,1843,1845,5,28,0,0,1844,1843,1,0,0,0,1844,1845,1, + 0,0,0,1845,1846,1,0,0,0,1846,1848,3,306,153,0,1847,1849,3,118,59, + 0,1848,1847,1,0,0,0,1848,1849,1,0,0,0,1849,1851,1,0,0,0,1850,1844, + 1,0,0,0,1850,1851,1,0,0,0,1851,113,1,0,0,0,1852,1853,5,1,0,0,1853, + 1858,3,290,145,0,1854,1855,5,3,0,0,1855,1857,3,290,145,0,1856,1854, + 1,0,0,0,1857,1860,1,0,0,0,1858,1856,1,0,0,0,1858,1859,1,0,0,0,1859, + 1861,1,0,0,0,1860,1858,1,0,0,0,1861,1862,5,2,0,0,1862,115,1,0,0, + 0,1863,1864,5,1,0,0,1864,1869,3,288,144,0,1865,1866,5,3,0,0,1866, + 1868,3,288,144,0,1867,1865,1,0,0,0,1868,1871,1,0,0,0,1869,1867,1, + 0,0,0,1869,1870,1,0,0,0,1870,1872,1,0,0,0,1871,1869,1,0,0,0,1872, + 1873,5,2,0,0,1873,117,1,0,0,0,1874,1875,5,1,0,0,1875,1880,3,306, + 153,0,1876,1877,5,3,0,0,1877,1879,3,306,153,0,1878,1876,1,0,0,0, + 1879,1882,1,0,0,0,1880,1878,1,0,0,0,1880,1881,1,0,0,0,1881,1883, + 1,0,0,0,1882,1880,1,0,0,0,1883,1884,5,2,0,0,1884,119,1,0,0,0,1885, + 1887,3,266,133,0,1886,1888,3,294,147,0,1887,1886,1,0,0,0,1887,1888, + 1,0,0,0,1888,1895,1,0,0,0,1889,1895,3,122,61,0,1890,1891,5,1,0,0, + 1891,1892,3,82,41,0,1892,1893,5,2,0,0,1893,1895,1,0,0,0,1894,1885, + 1,0,0,0,1894,1889,1,0,0,0,1894,1890,1,0,0,0,1895,121,1,0,0,0,1896, + 1897,5,1,0,0,1897,1898,3,22,11,0,1898,1899,5,2,0,0,1899,1960,1,0, + 0,0,1900,1901,5,285,0,0,1901,1902,5,1,0,0,1902,1907,3,148,74,0,1903, + 1904,5,3,0,0,1904,1906,3,148,74,0,1905,1903,1,0,0,0,1906,1909,1, + 0,0,0,1907,1905,1,0,0,0,1907,1908,1,0,0,0,1908,1910,1,0,0,0,1909, + 1907,1,0,0,0,1910,1913,5,2,0,0,1911,1912,5,304,0,0,1912,1914,5,196, + 0,0,1913,1911,1,0,0,0,1913,1914,1,0,0,0,1914,1960,1,0,0,0,1915,1916, + 5,149,0,0,1916,1917,5,1,0,0,1917,1918,3,22,11,0,1918,1919,5,2,0, + 0,1919,1960,1,0,0,0,1920,1921,5,260,0,0,1921,1922,5,1,0,0,1922,1923, + 3,134,67,0,1923,1924,5,2,0,0,1924,1960,1,0,0,0,1925,1926,5,142,0, + 0,1926,1927,5,1,0,0,1927,1928,3,158,79,0,1928,1929,5,45,0,0,1929, + 1930,5,1,0,0,1930,1935,3,124,62,0,1931,1932,5,3,0,0,1932,1934,3, + 124,62,0,1933,1931,1,0,0,0,1934,1937,1,0,0,0,1935,1933,1,0,0,0,1935, + 1936,1,0,0,0,1936,1938,1,0,0,0,1937,1935,1,0,0,0,1938,1950,5,2,0, + 0,1939,1940,5,210,0,0,1940,1941,5,1,0,0,1941,1942,3,126,63,0,1942, + 1943,5,2,0,0,1943,1951,1,0,0,0,1944,1945,5,210,0,0,1945,1946,5,70, + 0,0,1946,1947,5,1,0,0,1947,1948,3,132,66,0,1948,1949,5,2,0,0,1949, + 1951,1,0,0,0,1950,1939,1,0,0,0,1950,1944,1,0,0,0,1950,1951,1,0,0, + 0,1951,1955,1,0,0,0,1952,1953,7,14,0,0,1953,1954,5,190,0,0,1954, + 1956,5,89,0,0,1955,1952,1,0,0,0,1955,1956,1,0,0,0,1956,1957,1,0, + 0,0,1957,1958,5,2,0,0,1958,1960,1,0,0,0,1959,1896,1,0,0,0,1959,1900, + 1,0,0,0,1959,1915,1,0,0,0,1959,1920,1,0,0,0,1959,1925,1,0,0,0,1960, + 123,1,0,0,0,1961,1962,3,306,153,0,1962,1963,5,103,0,0,1963,1964, + 5,196,0,0,1964,2039,1,0,0,0,1965,1966,3,306,153,0,1966,1969,3,196, + 98,0,1967,1968,5,205,0,0,1968,1970,3,180,90,0,1969,1967,1,0,0,0, + 1969,1970,1,0,0,0,1970,1975,1,0,0,0,1971,1972,3,168,84,0,1972,1973, + 5,190,0,0,1973,1974,5,85,0,0,1974,1976,1,0,0,0,1975,1971,1,0,0,0, + 1975,1976,1,0,0,0,1976,1981,1,0,0,0,1977,1978,3,168,84,0,1978,1979, + 5,190,0,0,1979,1980,5,89,0,0,1980,1982,1,0,0,0,1981,1977,1,0,0,0, + 1981,1982,1,0,0,0,1982,2039,1,0,0,0,1983,1984,3,306,153,0,1984,1985, + 3,196,98,0,1985,1986,5,104,0,0,1986,1989,3,162,81,0,1987,1988,5, + 205,0,0,1988,1990,3,180,90,0,1989,1987,1,0,0,0,1989,1990,1,0,0,0, + 1990,1994,1,0,0,0,1991,1992,3,170,85,0,1992,1993,5,308,0,0,1993, + 1995,1,0,0,0,1994,1991,1,0,0,0,1994,1995,1,0,0,0,1995,2003,1,0,0, + 0,1996,1997,7,15,0,0,1997,2001,5,218,0,0,1998,1999,5,190,0,0,1999, + 2000,5,242,0,0,2000,2002,5,264,0,0,2001,1998,1,0,0,0,2001,2002,1, + 0,0,0,2002,2004,1,0,0,0,2003,1996,1,0,0,0,2003,2004,1,0,0,0,2004, + 2009,1,0,0,0,2005,2006,3,172,86,0,2006,2007,5,190,0,0,2007,2008, + 5,85,0,0,2008,2010,1,0,0,0,2009,2005,1,0,0,0,2009,2010,1,0,0,0,2010, + 2015,1,0,0,0,2011,2012,3,172,86,0,2012,2013,5,190,0,0,2013,2014, + 5,89,0,0,2014,2016,1,0,0,0,2015,2011,1,0,0,0,2015,2016,1,0,0,0,2016, + 2039,1,0,0,0,2017,2019,5,173,0,0,2018,2020,5,205,0,0,2019,2018,1, + 0,0,0,2019,2020,1,0,0,0,2020,2021,1,0,0,0,2021,2024,3,180,90,0,2022, + 2023,5,28,0,0,2023,2025,3,306,153,0,2024,2022,1,0,0,0,2024,2025, + 1,0,0,0,2025,2026,1,0,0,0,2026,2027,5,45,0,0,2027,2028,5,1,0,0,2028, + 2033,3,124,62,0,2029,2030,5,3,0,0,2030,2032,3,124,62,0,2031,2029, + 1,0,0,0,2032,2035,1,0,0,0,2033,2031,1,0,0,0,2033,2034,1,0,0,0,2034, + 2036,1,0,0,0,2035,2033,1,0,0,0,2036,2037,5,2,0,0,2037,2039,1,0,0, + 0,2038,1961,1,0,0,0,2038,1965,1,0,0,0,2038,1983,1,0,0,0,2038,2017, + 1,0,0,0,2039,125,1,0,0,0,2040,2066,3,128,64,0,2041,2042,3,128,64, + 0,2042,2043,7,16,0,0,2043,2044,3,130,65,0,2044,2066,1,0,0,0,2045, + 2046,3,130,65,0,2046,2047,5,281,0,0,2047,2052,3,130,65,0,2048,2049, + 5,281,0,0,2049,2051,3,130,65,0,2050,2048,1,0,0,0,2051,2054,1,0,0, + 0,2052,2050,1,0,0,0,2052,2053,1,0,0,0,2053,2066,1,0,0,0,2054,2052, + 1,0,0,0,2055,2056,3,130,65,0,2056,2057,5,54,0,0,2057,2062,3,130, + 65,0,2058,2059,5,54,0,0,2059,2061,3,130,65,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,2066,1,0,0, + 0,2064,2062,1,0,0,0,2065,2040,1,0,0,0,2065,2041,1,0,0,0,2065,2045, + 1,0,0,0,2065,2055,1,0,0,0,2066,127,1,0,0,0,2067,2068,3,306,153,0, + 2068,129,1,0,0,0,2069,2075,3,128,64,0,2070,2071,5,1,0,0,2071,2072, + 3,126,63,0,2072,2073,5,2,0,0,2073,2075,1,0,0,0,2074,2069,1,0,0,0, + 2074,2070,1,0,0,0,2075,131,1,0,0,0,2076,2079,7,16,0,0,2077,2078, + 5,3,0,0,2078,2080,7,17,0,0,2079,2077,1,0,0,0,2079,2080,1,0,0,0,2080, + 2087,1,0,0,0,2081,2084,7,17,0,0,2082,2083,5,3,0,0,2083,2085,7,16, + 0,0,2084,2082,1,0,0,0,2084,2085,1,0,0,0,2085,2087,1,0,0,0,2086,2076, + 1,0,0,0,2086,2081,1,0,0,0,2087,133,1,0,0,0,2088,2089,3,284,142,0, + 2089,2098,5,1,0,0,2090,2095,3,136,68,0,2091,2092,5,3,0,0,2092,2094, + 3,136,68,0,2093,2091,1,0,0,0,2094,2097,1,0,0,0,2095,2093,1,0,0,0, + 2095,2096,1,0,0,0,2096,2099,1,0,0,0,2097,2095,1,0,0,0,2098,2090, + 1,0,0,0,2098,2099,1,0,0,0,2099,2109,1,0,0,0,2100,2101,5,52,0,0,2101, + 2106,3,146,73,0,2102,2103,5,3,0,0,2103,2105,3,146,73,0,2104,2102, + 1,0,0,0,2105,2108,1,0,0,0,2106,2104,1,0,0,0,2106,2107,1,0,0,0,2107, + 2110,1,0,0,0,2108,2106,1,0,0,0,2109,2100,1,0,0,0,2109,2110,1,0,0, + 0,2110,2111,1,0,0,0,2111,2112,5,2,0,0,2112,135,1,0,0,0,2113,2114, + 3,306,153,0,2114,2115,5,6,0,0,2115,2117,1,0,0,0,2116,2113,1,0,0, + 0,2116,2117,1,0,0,0,2117,2121,1,0,0,0,2118,2122,3,138,69,0,2119, + 2122,3,142,71,0,2120,2122,3,148,74,0,2121,2118,1,0,0,0,2121,2119, + 1,0,0,0,2121,2120,1,0,0,0,2122,137,1,0,0,0,2123,2141,3,140,70,0, + 2124,2125,5,201,0,0,2125,2139,5,36,0,0,2126,2135,5,1,0,0,2127,2132, + 3,148,74,0,2128,2129,5,3,0,0,2129,2131,3,148,74,0,2130,2128,1,0, + 0,0,2131,2134,1,0,0,0,2132,2130,1,0,0,0,2132,2133,1,0,0,0,2133,2136, + 1,0,0,0,2134,2132,1,0,0,0,2135,2127,1,0,0,0,2135,2136,1,0,0,0,2136, + 2137,1,0,0,0,2137,2140,5,2,0,0,2138,2140,3,148,74,0,2139,2126,1, + 0,0,0,2139,2138,1,0,0,0,2140,2142,1,0,0,0,2141,2124,1,0,0,0,2141, + 2142,1,0,0,0,2142,2149,1,0,0,0,2143,2144,5,217,0,0,2144,2145,5,300, + 0,0,2145,2150,5,85,0,0,2146,2147,5,144,0,0,2147,2148,5,300,0,0,2148, + 2150,5,85,0,0,2149,2143,1,0,0,0,2149,2146,1,0,0,0,2149,2150,1,0, + 0,0,2150,2167,1,0,0,0,2151,2152,5,195,0,0,2152,2165,5,36,0,0,2153, + 2154,5,1,0,0,2154,2159,3,50,25,0,2155,2156,5,3,0,0,2156,2158,3,50, + 25,0,2157,2155,1,0,0,0,2158,2161,1,0,0,0,2159,2157,1,0,0,0,2159, + 2160,1,0,0,0,2160,2162,1,0,0,0,2161,2159,1,0,0,0,2162,2163,5,2,0, + 0,2163,2166,1,0,0,0,2164,2166,3,50,25,0,2165,2153,1,0,0,0,2165,2164, + 1,0,0,0,2166,2168,1,0,0,0,2167,2151,1,0,0,0,2167,2168,1,0,0,0,2168, + 139,1,0,0,0,2169,2170,5,260,0,0,2170,2171,5,1,0,0,2171,2172,3,268, + 134,0,2172,2180,5,2,0,0,2173,2175,5,28,0,0,2174,2173,1,0,0,0,2174, + 2175,1,0,0,0,2175,2176,1,0,0,0,2176,2178,3,306,153,0,2177,2179,3, + 118,59,0,2178,2177,1,0,0,0,2178,2179,1,0,0,0,2179,2181,1,0,0,0,2180, + 2174,1,0,0,0,2180,2181,1,0,0,0,2181,2196,1,0,0,0,2182,2183,5,260, + 0,0,2183,2184,5,1,0,0,2184,2185,3,22,11,0,2185,2193,5,2,0,0,2186, + 2188,5,28,0,0,2187,2186,1,0,0,0,2187,2188,1,0,0,0,2188,2189,1,0, + 0,0,2189,2191,3,306,153,0,2190,2192,3,118,59,0,2191,2190,1,0,0,0, + 2191,2192,1,0,0,0,2192,2194,1,0,0,0,2193,2187,1,0,0,0,2193,2194, + 1,0,0,0,2194,2196,1,0,0,0,2195,2169,1,0,0,0,2195,2182,1,0,0,0,2196, + 141,1,0,0,0,2197,2198,5,77,0,0,2198,2199,5,1,0,0,2199,2204,3,144, + 72,0,2200,2201,5,3,0,0,2201,2203,3,144,72,0,2202,2200,1,0,0,0,2203, + 2206,1,0,0,0,2204,2202,1,0,0,0,2204,2205,1,0,0,0,2205,2207,1,0,0, + 0,2206,2204,1,0,0,0,2207,2208,5,2,0,0,2208,2216,1,0,0,0,2209,2210, + 5,41,0,0,2210,2211,5,1,0,0,2211,2212,5,183,0,0,2212,2213,5,28,0, + 0,2213,2214,5,77,0,0,2214,2216,5,2,0,0,2215,2197,1,0,0,0,2215,2209, + 1,0,0,0,2216,143,1,0,0,0,2217,2219,3,306,153,0,2218,2220,3,196,98, + 0,2219,2218,1,0,0,0,2219,2220,1,0,0,0,2220,145,1,0,0,0,2221,2222, + 5,1,0,0,2222,2223,3,292,146,0,2223,2224,5,3,0,0,2224,2229,3,292, + 146,0,2225,2226,5,3,0,0,2226,2228,3,292,146,0,2227,2225,1,0,0,0, + 2228,2231,1,0,0,0,2229,2227,1,0,0,0,2229,2230,1,0,0,0,2230,2232, + 1,0,0,0,2231,2229,1,0,0,0,2232,2233,5,2,0,0,2233,147,1,0,0,0,2234, + 2235,3,150,75,0,2235,149,1,0,0,0,2236,2237,6,75,-1,0,2237,2239,3, + 154,77,0,2238,2240,3,152,76,0,2239,2238,1,0,0,0,2239,2240,1,0,0, + 0,2240,2244,1,0,0,0,2241,2242,5,182,0,0,2242,2244,3,150,75,3,2243, + 2236,1,0,0,0,2243,2241,1,0,0,0,2244,2253,1,0,0,0,2245,2246,10,2, + 0,0,2246,2247,5,25,0,0,2247,2252,3,150,75,3,2248,2249,10,1,0,0,2249, + 2250,5,194,0,0,2250,2252,3,150,75,2,2251,2245,1,0,0,0,2251,2248, + 1,0,0,0,2252,2255,1,0,0,0,2253,2251,1,0,0,0,2253,2254,1,0,0,0,2254, + 151,1,0,0,0,2255,2253,1,0,0,0,2256,2257,3,184,92,0,2257,2258,3,154, + 77,0,2258,2318,1,0,0,0,2259,2260,3,184,92,0,2260,2261,3,186,93,0, + 2261,2262,5,1,0,0,2262,2263,3,22,11,0,2263,2264,5,2,0,0,2264,2318, + 1,0,0,0,2265,2267,5,182,0,0,2266,2265,1,0,0,0,2266,2267,1,0,0,0, + 2267,2268,1,0,0,0,2268,2269,5,34,0,0,2269,2270,3,154,77,0,2270,2271, + 5,25,0,0,2271,2272,3,154,77,0,2272,2318,1,0,0,0,2273,2275,5,182, + 0,0,2274,2273,1,0,0,0,2274,2275,1,0,0,0,2275,2276,1,0,0,0,2276,2277, + 5,122,0,0,2277,2278,5,1,0,0,2278,2283,3,148,74,0,2279,2280,5,3,0, + 0,2280,2282,3,148,74,0,2281,2279,1,0,0,0,2282,2285,1,0,0,0,2283, + 2281,1,0,0,0,2283,2284,1,0,0,0,2284,2286,1,0,0,0,2285,2283,1,0,0, + 0,2286,2287,5,2,0,0,2287,2318,1,0,0,0,2288,2290,5,182,0,0,2289,2288, + 1,0,0,0,2289,2290,1,0,0,0,2290,2291,1,0,0,0,2291,2292,5,122,0,0, + 2292,2293,5,1,0,0,2293,2294,3,22,11,0,2294,2295,5,2,0,0,2295,2318, + 1,0,0,0,2296,2298,5,182,0,0,2297,2296,1,0,0,0,2297,2298,1,0,0,0, + 2298,2299,1,0,0,0,2299,2300,5,154,0,0,2300,2303,3,154,77,0,2301, + 2302,5,90,0,0,2302,2304,3,154,77,0,2303,2301,1,0,0,0,2303,2304,1, + 0,0,0,2304,2318,1,0,0,0,2305,2307,5,133,0,0,2306,2308,5,182,0,0, + 2307,2306,1,0,0,0,2307,2308,1,0,0,0,2308,2309,1,0,0,0,2309,2318, + 5,183,0,0,2310,2312,5,133,0,0,2311,2313,5,182,0,0,2312,2311,1,0, + 0,0,2312,2313,1,0,0,0,2313,2314,1,0,0,0,2314,2315,5,79,0,0,2315, + 2316,5,105,0,0,2316,2318,3,154,77,0,2317,2256,1,0,0,0,2317,2259, + 1,0,0,0,2317,2266,1,0,0,0,2317,2274,1,0,0,0,2317,2289,1,0,0,0,2317, + 2297,1,0,0,0,2317,2305,1,0,0,0,2317,2310,1,0,0,0,2318,153,1,0,0, + 0,2319,2320,6,77,-1,0,2320,2324,3,156,78,0,2321,2322,7,18,0,0,2322, + 2324,3,154,77,4,2323,2319,1,0,0,0,2323,2321,1,0,0,0,2324,2339,1, + 0,0,0,2325,2326,10,3,0,0,2326,2327,7,19,0,0,2327,2338,3,154,77,4, + 2328,2329,10,2,0,0,2329,2330,7,18,0,0,2330,2338,3,154,77,3,2331, + 2332,10,1,0,0,2332,2333,5,323,0,0,2333,2338,3,154,77,2,2334,2335, + 10,5,0,0,2335,2336,5,30,0,0,2336,2338,3,182,91,0,2337,2325,1,0,0, + 0,2337,2328,1,0,0,0,2337,2331,1,0,0,0,2337,2334,1,0,0,0,2338,2341, + 1,0,0,0,2339,2337,1,0,0,0,2339,2340,1,0,0,0,2340,155,1,0,0,0,2341, + 2339,1,0,0,0,2342,2343,6,78,-1,0,2343,2796,5,183,0,0,2344,2796,3, + 190,95,0,2345,2346,3,306,153,0,2346,2347,3,180,90,0,2347,2796,1, + 0,0,0,2348,2349,5,82,0,0,2349,2350,5,213,0,0,2350,2796,3,180,90, + 0,2351,2796,3,308,154,0,2352,2796,3,188,94,0,2353,2796,3,180,90, + 0,2354,2796,5,328,0,0,2355,2796,5,324,0,0,2356,2357,5,211,0,0,2357, + 2358,5,1,0,0,2358,2359,3,154,77,0,2359,2360,5,122,0,0,2360,2361, + 3,154,77,0,2361,2362,5,2,0,0,2362,2796,1,0,0,0,2363,2364,5,1,0,0, + 2364,2367,3,148,74,0,2365,2366,5,3,0,0,2366,2368,3,148,74,0,2367, + 2365,1,0,0,0,2368,2369,1,0,0,0,2369,2367,1,0,0,0,2369,2370,1,0,0, + 0,2370,2371,1,0,0,0,2371,2372,5,2,0,0,2372,2796,1,0,0,0,2373,2374, + 5,239,0,0,2374,2375,5,1,0,0,2375,2380,3,148,74,0,2376,2377,5,3,0, + 0,2377,2379,3,148,74,0,2378,2376,1,0,0,0,2379,2382,1,0,0,0,2380, + 2378,1,0,0,0,2380,2381,1,0,0,0,2381,2383,1,0,0,0,2382,2380,1,0,0, + 0,2383,2384,5,2,0,0,2384,2796,1,0,0,0,2385,2386,5,156,0,0,2386,2388, + 5,1,0,0,2387,2389,3,70,35,0,2388,2387,1,0,0,0,2388,2389,1,0,0,0, + 2389,2390,1,0,0,0,2390,2393,3,148,74,0,2391,2392,5,3,0,0,2392,2394, + 3,180,90,0,2393,2391,1,0,0,0,2393,2394,1,0,0,0,2394,2398,1,0,0,0, + 2395,2396,5,190,0,0,2396,2397,5,200,0,0,2397,2399,3,94,47,0,2398, + 2395,1,0,0,0,2398,2399,1,0,0,0,2399,2400,1,0,0,0,2400,2401,5,2,0, + 0,2401,2402,5,305,0,0,2402,2403,5,114,0,0,2403,2404,5,1,0,0,2404, + 2405,5,195,0,0,2405,2406,5,36,0,0,2406,2411,3,50,25,0,2407,2408, + 5,3,0,0,2408,2410,3,50,25,0,2409,2407,1,0,0,0,2410,2413,1,0,0,0, + 2411,2409,1,0,0,0,2411,2412,1,0,0,0,2412,2414,1,0,0,0,2413,2411, + 1,0,0,0,2414,2415,5,2,0,0,2415,2417,1,0,0,0,2416,2418,3,204,102, + 0,2417,2416,1,0,0,0,2417,2418,1,0,0,0,2418,2796,1,0,0,0,2419,2421, + 3,176,88,0,2420,2419,1,0,0,0,2420,2421,1,0,0,0,2421,2422,1,0,0,0, + 2422,2423,3,284,142,0,2423,2427,5,1,0,0,2424,2425,3,306,153,0,2425, + 2426,5,4,0,0,2426,2428,1,0,0,0,2427,2424,1,0,0,0,2427,2428,1,0,0, + 0,2428,2429,1,0,0,0,2429,2430,5,320,0,0,2430,2432,5,2,0,0,2431,2433, + 3,204,102,0,2432,2431,1,0,0,0,2432,2433,1,0,0,0,2433,2435,1,0,0, + 0,2434,2436,3,208,104,0,2435,2434,1,0,0,0,2435,2436,1,0,0,0,2436, + 2796,1,0,0,0,2437,2439,3,176,88,0,2438,2437,1,0,0,0,2438,2439,1, + 0,0,0,2439,2440,1,0,0,0,2440,2441,3,284,142,0,2441,2453,5,1,0,0, + 2442,2444,3,70,35,0,2443,2442,1,0,0,0,2443,2444,1,0,0,0,2444,2445, + 1,0,0,0,2445,2450,3,148,74,0,2446,2447,5,3,0,0,2447,2449,3,148,74, + 0,2448,2446,1,0,0,0,2449,2452,1,0,0,0,2450,2448,1,0,0,0,2450,2451, + 1,0,0,0,2451,2454,1,0,0,0,2452,2450,1,0,0,0,2453,2443,1,0,0,0,2453, + 2454,1,0,0,0,2454,2465,1,0,0,0,2455,2456,5,195,0,0,2456,2457,5,36, + 0,0,2457,2462,3,50,25,0,2458,2459,5,3,0,0,2459,2461,3,50,25,0,2460, + 2458,1,0,0,0,2461,2464,1,0,0,0,2462,2460,1,0,0,0,2462,2463,1,0,0, + 0,2463,2466,1,0,0,0,2464,2462,1,0,0,0,2465,2455,1,0,0,0,2465,2466, + 1,0,0,0,2466,2467,1,0,0,0,2467,2469,5,2,0,0,2468,2470,3,204,102, + 0,2469,2468,1,0,0,0,2469,2470,1,0,0,0,2470,2475,1,0,0,0,2471,2473, + 3,178,89,0,2472,2471,1,0,0,0,2472,2473,1,0,0,0,2473,2474,1,0,0,0, + 2474,2476,3,208,104,0,2475,2472,1,0,0,0,2475,2476,1,0,0,0,2476,2796, + 1,0,0,0,2477,2478,3,306,153,0,2478,2479,3,208,104,0,2479,2796,1, + 0,0,0,2480,2481,3,306,153,0,2481,2482,5,7,0,0,2482,2483,3,148,74, + 0,2483,2796,1,0,0,0,2484,2493,5,1,0,0,2485,2490,3,306,153,0,2486, + 2487,5,3,0,0,2487,2489,3,306,153,0,2488,2486,1,0,0,0,2489,2492,1, + 0,0,0,2490,2488,1,0,0,0,2490,2491,1,0,0,0,2491,2494,1,0,0,0,2492, + 2490,1,0,0,0,2493,2485,1,0,0,0,2493,2494,1,0,0,0,2494,2495,1,0,0, + 0,2495,2496,5,2,0,0,2496,2497,5,7,0,0,2497,2796,3,148,74,0,2498, + 2499,5,1,0,0,2499,2500,3,22,11,0,2500,2501,5,2,0,0,2501,2796,1,0, + 0,0,2502,2503,5,94,0,0,2503,2504,5,1,0,0,2504,2505,3,22,11,0,2505, + 2506,5,2,0,0,2506,2796,1,0,0,0,2507,2508,5,40,0,0,2508,2510,3,148, + 74,0,2509,2511,3,202,101,0,2510,2509,1,0,0,0,2511,2512,1,0,0,0,2512, + 2510,1,0,0,0,2512,2513,1,0,0,0,2513,2516,1,0,0,0,2514,2515,5,84, + 0,0,2515,2517,3,148,74,0,2516,2514,1,0,0,0,2516,2517,1,0,0,0,2517, + 2518,1,0,0,0,2518,2519,5,88,0,0,2519,2796,1,0,0,0,2520,2522,5,40, + 0,0,2521,2523,3,202,101,0,2522,2521,1,0,0,0,2523,2524,1,0,0,0,2524, + 2522,1,0,0,0,2524,2525,1,0,0,0,2525,2528,1,0,0,0,2526,2527,5,84, + 0,0,2527,2529,3,148,74,0,2528,2526,1,0,0,0,2528,2529,1,0,0,0,2529, + 2530,1,0,0,0,2530,2531,5,88,0,0,2531,2796,1,0,0,0,2532,2533,5,41, + 0,0,2533,2534,5,1,0,0,2534,2535,3,148,74,0,2535,2536,5,28,0,0,2536, + 2537,3,196,98,0,2537,2538,5,2,0,0,2538,2796,1,0,0,0,2539,2540,5, + 275,0,0,2540,2541,5,1,0,0,2541,2542,3,148,74,0,2542,2543,5,28,0, + 0,2543,2544,3,196,98,0,2544,2545,5,2,0,0,2545,2796,1,0,0,0,2546, + 2547,5,27,0,0,2547,2556,5,8,0,0,2548,2553,3,148,74,0,2549,2550,5, + 3,0,0,2550,2552,3,148,74,0,2551,2549,1,0,0,0,2552,2555,1,0,0,0,2553, + 2551,1,0,0,0,2553,2554,1,0,0,0,2554,2557,1,0,0,0,2555,2553,1,0,0, + 0,2556,2548,1,0,0,0,2556,2557,1,0,0,0,2557,2558,1,0,0,0,2558,2796, + 5,9,0,0,2559,2796,3,306,153,0,2560,2796,5,58,0,0,2561,2565,5,62, + 0,0,2562,2563,5,1,0,0,2563,2564,5,329,0,0,2564,2566,5,2,0,0,2565, + 2562,1,0,0,0,2565,2566,1,0,0,0,2566,2796,1,0,0,0,2567,2571,5,63, + 0,0,2568,2569,5,1,0,0,2569,2570,5,329,0,0,2570,2572,5,2,0,0,2571, + 2568,1,0,0,0,2571,2572,1,0,0,0,2572,2796,1,0,0,0,2573,2577,5,158, + 0,0,2574,2575,5,1,0,0,2575,2576,5,329,0,0,2576,2578,5,2,0,0,2577, + 2574,1,0,0,0,2577,2578,1,0,0,0,2578,2796,1,0,0,0,2579,2583,5,159, + 0,0,2580,2581,5,1,0,0,2581,2582,5,329,0,0,2582,2584,5,2,0,0,2583, + 2580,1,0,0,0,2583,2584,1,0,0,0,2584,2796,1,0,0,0,2585,2796,5,64, + 0,0,2586,2796,5,57,0,0,2587,2796,5,61,0,0,2588,2796,5,59,0,0,2589, + 2590,5,272,0,0,2590,2598,5,1,0,0,2591,2593,3,92,46,0,2592,2591,1, + 0,0,0,2592,2593,1,0,0,0,2593,2595,1,0,0,0,2594,2596,3,154,77,0,2595, + 2594,1,0,0,0,2595,2596,1,0,0,0,2596,2597,1,0,0,0,2597,2599,5,105, + 0,0,2598,2592,1,0,0,0,2598,2599,1,0,0,0,2599,2600,1,0,0,0,2600,2601, + 3,154,77,0,2601,2602,5,2,0,0,2602,2796,1,0,0,0,2603,2604,5,272,0, + 0,2604,2605,5,1,0,0,2605,2606,3,154,77,0,2606,2607,5,3,0,0,2607, + 2608,3,154,77,0,2608,2609,5,2,0,0,2609,2796,1,0,0,0,2610,2611,5, + 258,0,0,2611,2612,5,1,0,0,2612,2613,3,154,77,0,2613,2614,5,105,0, + 0,2614,2617,3,154,77,0,2615,2616,5,103,0,0,2616,2618,3,154,77,0, + 2617,2615,1,0,0,0,2617,2618,1,0,0,0,2618,2619,1,0,0,0,2619,2620, + 5,2,0,0,2620,2796,1,0,0,0,2621,2622,5,181,0,0,2622,2623,5,1,0,0, + 2623,2626,3,154,77,0,2624,2625,5,3,0,0,2625,2627,3,194,97,0,2626, + 2624,1,0,0,0,2626,2627,1,0,0,0,2627,2628,1,0,0,0,2628,2629,5,2,0, + 0,2629,2796,1,0,0,0,2630,2631,5,96,0,0,2631,2632,5,1,0,0,2632,2633, + 3,306,153,0,2633,2634,5,105,0,0,2634,2635,3,154,77,0,2635,2636,5, + 2,0,0,2636,2796,1,0,0,0,2637,2638,5,1,0,0,2638,2639,3,148,74,0,2639, + 2640,5,2,0,0,2640,2796,1,0,0,0,2641,2642,5,115,0,0,2642,2651,5,1, + 0,0,2643,2648,3,292,146,0,2644,2645,5,3,0,0,2645,2647,3,292,146, + 0,2646,2644,1,0,0,0,2647,2650,1,0,0,0,2648,2646,1,0,0,0,2648,2649, + 1,0,0,0,2649,2652,1,0,0,0,2650,2648,1,0,0,0,2651,2643,1,0,0,0,2651, + 2652,1,0,0,0,2652,2653,1,0,0,0,2653,2796,5,2,0,0,2654,2655,5,139, + 0,0,2655,2656,5,1,0,0,2656,2661,3,158,79,0,2657,2658,3,166,83,0, + 2658,2659,5,190,0,0,2659,2660,5,89,0,0,2660,2662,1,0,0,0,2661,2657, + 1,0,0,0,2661,2662,1,0,0,0,2662,2663,1,0,0,0,2663,2664,5,2,0,0,2664, + 2796,1,0,0,0,2665,2666,5,143,0,0,2666,2667,5,1,0,0,2667,2670,3,158, + 79,0,2668,2669,5,231,0,0,2669,2671,3,196,98,0,2670,2668,1,0,0,0, + 2670,2671,1,0,0,0,2671,2676,1,0,0,0,2672,2673,3,168,84,0,2673,2674, + 5,190,0,0,2674,2675,5,85,0,0,2675,2677,1,0,0,0,2676,2672,1,0,0,0, + 2676,2677,1,0,0,0,2677,2682,1,0,0,0,2678,2679,3,168,84,0,2679,2680, + 5,190,0,0,2680,2681,5,89,0,0,2681,2683,1,0,0,0,2682,2678,1,0,0,0, + 2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2685,5,2,0,0,2685,2796, + 1,0,0,0,2686,2687,5,141,0,0,2687,2688,5,1,0,0,2688,2695,3,158,79, + 0,2689,2690,5,231,0,0,2690,2693,3,196,98,0,2691,2692,5,104,0,0,2692, + 2694,3,162,81,0,2693,2691,1,0,0,0,2693,2694,1,0,0,0,2694,2696,1, + 0,0,0,2695,2689,1,0,0,0,2695,2696,1,0,0,0,2696,2700,1,0,0,0,2697, + 2698,3,170,85,0,2698,2699,5,308,0,0,2699,2701,1,0,0,0,2700,2697, + 1,0,0,0,2700,2701,1,0,0,0,2701,2709,1,0,0,0,2702,2703,7,15,0,0,2703, + 2707,5,218,0,0,2704,2705,5,190,0,0,2705,2706,5,242,0,0,2706,2708, + 5,264,0,0,2707,2704,1,0,0,0,2707,2708,1,0,0,0,2708,2710,1,0,0,0, + 2709,2702,1,0,0,0,2709,2710,1,0,0,0,2710,2715,1,0,0,0,2711,2712, + 3,172,86,0,2712,2713,5,190,0,0,2713,2714,5,85,0,0,2714,2716,1,0, + 0,0,2715,2711,1,0,0,0,2715,2716,1,0,0,0,2716,2721,1,0,0,0,2717,2718, + 3,172,86,0,2718,2719,5,190,0,0,2719,2720,5,89,0,0,2720,2722,1,0, + 0,0,2721,2717,1,0,0,0,2721,2722,1,0,0,0,2722,2723,1,0,0,0,2723,2724, + 5,2,0,0,2724,2796,1,0,0,0,2725,2726,5,140,0,0,2726,2755,5,1,0,0, + 2727,2732,3,174,87,0,2728,2729,5,3,0,0,2729,2731,3,174,87,0,2730, + 2728,1,0,0,0,2731,2734,1,0,0,0,2732,2730,1,0,0,0,2732,2733,1,0,0, + 0,2733,2741,1,0,0,0,2734,2732,1,0,0,0,2735,2736,5,183,0,0,2736,2737, + 5,190,0,0,2737,2742,5,183,0,0,2738,2739,5,18,0,0,2739,2740,5,190, + 0,0,2740,2742,5,183,0,0,2741,2735,1,0,0,0,2741,2738,1,0,0,0,2741, + 2742,1,0,0,0,2742,2753,1,0,0,0,2743,2744,5,304,0,0,2744,2746,5,282, + 0,0,2745,2747,5,146,0,0,2746,2745,1,0,0,0,2746,2747,1,0,0,0,2747, + 2754,1,0,0,0,2748,2749,5,306,0,0,2749,2751,5,282,0,0,2750,2752,5, + 146,0,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752,2754,1,0,0,0,2753, + 2743,1,0,0,0,2753,2748,1,0,0,0,2753,2754,1,0,0,0,2754,2756,1,0,0, + 0,2755,2727,1,0,0,0,2755,2756,1,0,0,0,2756,2763,1,0,0,0,2757,2758, + 5,231,0,0,2758,2761,3,196,98,0,2759,2760,5,104,0,0,2760,2762,3,162, + 81,0,2761,2759,1,0,0,0,2761,2762,1,0,0,0,2762,2764,1,0,0,0,2763, + 2757,1,0,0,0,2763,2764,1,0,0,0,2764,2765,1,0,0,0,2765,2796,5,2,0, + 0,2766,2767,5,138,0,0,2767,2784,5,1,0,0,2768,2773,3,160,80,0,2769, + 2770,5,3,0,0,2770,2772,3,160,80,0,2771,2769,1,0,0,0,2772,2775,1, + 0,0,0,2773,2771,1,0,0,0,2773,2774,1,0,0,0,2774,2782,1,0,0,0,2775, + 2773,1,0,0,0,2776,2777,5,183,0,0,2777,2778,5,190,0,0,2778,2783,5, + 183,0,0,2779,2780,5,18,0,0,2780,2781,5,190,0,0,2781,2783,5,183,0, + 0,2782,2776,1,0,0,0,2782,2779,1,0,0,0,2782,2783,1,0,0,0,2783,2785, + 1,0,0,0,2784,2768,1,0,0,0,2784,2785,1,0,0,0,2785,2792,1,0,0,0,2786, + 2787,5,231,0,0,2787,2790,3,196,98,0,2788,2789,5,104,0,0,2789,2791, + 3,162,81,0,2790,2788,1,0,0,0,2790,2791,1,0,0,0,2791,2793,1,0,0,0, + 2792,2786,1,0,0,0,2792,2793,1,0,0,0,2793,2794,1,0,0,0,2794,2796, + 5,2,0,0,2795,2342,1,0,0,0,2795,2344,1,0,0,0,2795,2345,1,0,0,0,2795, + 2348,1,0,0,0,2795,2351,1,0,0,0,2795,2352,1,0,0,0,2795,2353,1,0,0, + 0,2795,2354,1,0,0,0,2795,2355,1,0,0,0,2795,2356,1,0,0,0,2795,2363, + 1,0,0,0,2795,2373,1,0,0,0,2795,2385,1,0,0,0,2795,2420,1,0,0,0,2795, + 2438,1,0,0,0,2795,2477,1,0,0,0,2795,2480,1,0,0,0,2795,2484,1,0,0, + 0,2795,2498,1,0,0,0,2795,2502,1,0,0,0,2795,2507,1,0,0,0,2795,2520, + 1,0,0,0,2795,2532,1,0,0,0,2795,2539,1,0,0,0,2795,2546,1,0,0,0,2795, + 2559,1,0,0,0,2795,2560,1,0,0,0,2795,2561,1,0,0,0,2795,2567,1,0,0, + 0,2795,2573,1,0,0,0,2795,2579,1,0,0,0,2795,2585,1,0,0,0,2795,2586, + 1,0,0,0,2795,2587,1,0,0,0,2795,2588,1,0,0,0,2795,2589,1,0,0,0,2795, + 2603,1,0,0,0,2795,2610,1,0,0,0,2795,2621,1,0,0,0,2795,2630,1,0,0, + 0,2795,2637,1,0,0,0,2795,2641,1,0,0,0,2795,2654,1,0,0,0,2795,2665, + 1,0,0,0,2795,2686,1,0,0,0,2795,2725,1,0,0,0,2795,2766,1,0,0,0,2796, + 2807,1,0,0,0,2797,2798,10,24,0,0,2798,2799,5,8,0,0,2799,2800,3,154, + 77,0,2800,2801,5,9,0,0,2801,2806,1,0,0,0,2802,2803,10,22,0,0,2803, + 2804,5,4,0,0,2804,2806,3,306,153,0,2805,2797,1,0,0,0,2805,2802,1, + 0,0,0,2806,2809,1,0,0,0,2807,2805,1,0,0,0,2807,2808,1,0,0,0,2808, + 157,1,0,0,0,2809,2807,1,0,0,0,2810,2811,3,160,80,0,2811,2812,5,3, + 0,0,2812,2815,3,180,90,0,2813,2814,5,28,0,0,2814,2816,3,306,153, + 0,2815,2813,1,0,0,0,2815,2816,1,0,0,0,2816,2826,1,0,0,0,2817,2818, + 5,203,0,0,2818,2823,3,164,82,0,2819,2820,5,3,0,0,2820,2822,3,164, + 82,0,2821,2819,1,0,0,0,2822,2825,1,0,0,0,2823,2821,1,0,0,0,2823, + 2824,1,0,0,0,2824,2827,1,0,0,0,2825,2823,1,0,0,0,2826,2817,1,0,0, + 0,2826,2827,1,0,0,0,2827,159,1,0,0,0,2828,2831,3,148,74,0,2829,2830, + 5,104,0,0,2830,2832,3,162,81,0,2831,2829,1,0,0,0,2831,2832,1,0,0, + 0,2832,161,1,0,0,0,2833,2836,5,137,0,0,2834,2835,5,87,0,0,2835,2837, + 7,20,0,0,2836,2834,1,0,0,0,2836,2837,1,0,0,0,2837,163,1,0,0,0,2838, + 2839,3,160,80,0,2839,2840,5,28,0,0,2840,2841,3,306,153,0,2841,165, + 1,0,0,0,2842,2843,7,21,0,0,2843,167,1,0,0,0,2844,2849,5,89,0,0,2845, + 2849,5,183,0,0,2846,2847,5,70,0,0,2847,2849,3,148,74,0,2848,2844, + 1,0,0,0,2848,2845,1,0,0,0,2848,2846,1,0,0,0,2849,169,1,0,0,0,2850, + 2852,5,306,0,0,2851,2853,5,27,0,0,2852,2851,1,0,0,0,2852,2853,1, + 0,0,0,2853,2862,1,0,0,0,2854,2856,5,304,0,0,2855,2857,7,22,0,0,2856, + 2855,1,0,0,0,2856,2857,1,0,0,0,2857,2859,1,0,0,0,2858,2860,5,27, + 0,0,2859,2858,1,0,0,0,2859,2860,1,0,0,0,2860,2862,1,0,0,0,2861,2850, + 1,0,0,0,2861,2854,1,0,0,0,2862,171,1,0,0,0,2863,2870,5,89,0,0,2864, + 2870,5,183,0,0,2865,2866,5,85,0,0,2866,2870,5,27,0,0,2867,2868,5, + 85,0,0,2868,2870,5,186,0,0,2869,2863,1,0,0,0,2869,2864,1,0,0,0,2869, + 2865,1,0,0,0,2869,2867,1,0,0,0,2870,173,1,0,0,0,2871,2873,5,145, + 0,0,2872,2871,1,0,0,0,2872,2873,1,0,0,0,2873,2874,1,0,0,0,2874,2875, + 3,148,74,0,2875,2876,5,295,0,0,2876,2877,3,160,80,0,2877,2883,1, + 0,0,0,2878,2879,3,148,74,0,2879,2880,5,10,0,0,2880,2881,3,160,80, + 0,2881,2883,1,0,0,0,2882,2872,1,0,0,0,2882,2878,1,0,0,0,2883,175, + 1,0,0,0,2884,2885,7,23,0,0,2885,177,1,0,0,0,2886,2887,5,120,0,0, + 2887,2891,5,185,0,0,2888,2889,5,228,0,0,2889,2891,5,185,0,0,2890, + 2886,1,0,0,0,2890,2888,1,0,0,0,2891,179,1,0,0,0,2892,2899,5,326, + 0,0,2893,2896,5,327,0,0,2894,2895,5,277,0,0,2895,2897,5,326,0,0, + 2896,2894,1,0,0,0,2896,2897,1,0,0,0,2897,2899,1,0,0,0,2898,2892, + 1,0,0,0,2898,2893,1,0,0,0,2899,181,1,0,0,0,2900,2901,5,267,0,0,2901, + 2902,5,311,0,0,2902,2907,3,190,95,0,2903,2904,5,267,0,0,2904,2905, + 5,311,0,0,2905,2907,3,180,90,0,2906,2900,1,0,0,0,2906,2903,1,0,0, + 0,2907,183,1,0,0,0,2908,2909,7,24,0,0,2909,185,1,0,0,0,2910,2911, + 7,25,0,0,2911,187,1,0,0,0,2912,2913,7,26,0,0,2913,189,1,0,0,0,2914, + 2916,5,129,0,0,2915,2917,7,18,0,0,2916,2915,1,0,0,0,2916,2917,1, + 0,0,0,2917,2918,1,0,0,0,2918,2919,3,180,90,0,2919,2922,3,192,96, + 0,2920,2921,5,269,0,0,2921,2923,3,192,96,0,2922,2920,1,0,0,0,2922, + 2923,1,0,0,0,2923,191,1,0,0,0,2924,2925,7,27,0,0,2925,193,1,0,0, + 0,2926,2927,7,28,0,0,2927,195,1,0,0,0,2928,2929,6,98,-1,0,2929,2930, + 5,239,0,0,2930,2931,5,1,0,0,2931,2936,3,198,99,0,2932,2933,5,3,0, + 0,2933,2935,3,198,99,0,2934,2932,1,0,0,0,2935,2938,1,0,0,0,2936, + 2934,1,0,0,0,2936,2937,1,0,0,0,2937,2939,1,0,0,0,2938,2936,1,0,0, + 0,2939,2940,5,2,0,0,2940,3000,1,0,0,0,2941,2942,5,129,0,0,2942,2945, + 3,192,96,0,2943,2944,5,269,0,0,2944,2946,3,192,96,0,2945,2943,1, + 0,0,0,2945,2946,1,0,0,0,2946,3000,1,0,0,0,2947,2952,5,268,0,0,2948, + 2949,5,1,0,0,2949,2950,3,200,100,0,2950,2951,5,2,0,0,2951,2953,1, + 0,0,0,2952,2948,1,0,0,0,2952,2953,1,0,0,0,2953,2957,1,0,0,0,2954, + 2955,7,29,0,0,2955,2956,5,267,0,0,2956,2958,5,311,0,0,2957,2954, + 1,0,0,0,2957,2958,1,0,0,0,2958,3000,1,0,0,0,2959,2964,5,267,0,0, + 2960,2961,5,1,0,0,2961,2962,3,200,100,0,2962,2963,5,2,0,0,2963,2965, + 1,0,0,0,2964,2960,1,0,0,0,2964,2965,1,0,0,0,2965,2969,1,0,0,0,2966, + 2967,7,29,0,0,2967,2968,5,267,0,0,2968,2970,5,311,0,0,2969,2966, + 1,0,0,0,2969,2970,1,0,0,0,2970,3000,1,0,0,0,2971,2972,5,82,0,0,2972, + 3000,5,213,0,0,2973,2974,5,27,0,0,2974,2975,5,314,0,0,2975,2976, + 3,196,98,0,2976,2977,5,316,0,0,2977,3000,1,0,0,0,2978,2979,5,162, + 0,0,2979,2980,5,314,0,0,2980,2981,3,196,98,0,2981,2982,5,3,0,0,2982, + 2983,3,196,98,0,2983,2984,5,316,0,0,2984,3000,1,0,0,0,2985,2997, + 3,306,153,0,2986,2987,5,1,0,0,2987,2992,3,200,100,0,2988,2989,5, + 3,0,0,2989,2991,3,200,100,0,2990,2988,1,0,0,0,2991,2994,1,0,0,0, + 2992,2990,1,0,0,0,2992,2993,1,0,0,0,2993,2995,1,0,0,0,2994,2992, + 1,0,0,0,2995,2996,5,2,0,0,2996,2998,1,0,0,0,2997,2986,1,0,0,0,2997, + 2998,1,0,0,0,2998,3000,1,0,0,0,2999,2928,1,0,0,0,2999,2941,1,0,0, + 0,2999,2947,1,0,0,0,2999,2959,1,0,0,0,2999,2971,1,0,0,0,2999,2973, + 1,0,0,0,2999,2978,1,0,0,0,2999,2985,1,0,0,0,3000,3010,1,0,0,0,3001, + 3002,10,2,0,0,3002,3006,5,27,0,0,3003,3004,5,8,0,0,3004,3005,5,329, + 0,0,3005,3007,5,9,0,0,3006,3003,1,0,0,0,3006,3007,1,0,0,0,3007,3009, + 1,0,0,0,3008,3001,1,0,0,0,3009,3012,1,0,0,0,3010,3008,1,0,0,0,3010, + 3011,1,0,0,0,3011,197,1,0,0,0,3012,3010,1,0,0,0,3013,3018,3,196, + 98,0,3014,3015,3,306,153,0,3015,3016,3,196,98,0,3016,3018,1,0,0, + 0,3017,3013,1,0,0,0,3017,3014,1,0,0,0,3018,199,1,0,0,0,3019,3022, + 5,329,0,0,3020,3022,3,196,98,0,3021,3019,1,0,0,0,3021,3020,1,0,0, + 0,3022,201,1,0,0,0,3023,3024,5,300,0,0,3024,3025,3,148,74,0,3025, + 3026,5,265,0,0,3026,3027,3,148,74,0,3027,203,1,0,0,0,3028,3029,5, + 99,0,0,3029,3030,5,1,0,0,3030,3031,5,301,0,0,3031,3032,3,150,75, + 0,3032,3033,5,2,0,0,3033,205,1,0,0,0,3034,3035,5,300,0,0,3035,3038, + 5,164,0,0,3036,3037,5,25,0,0,3037,3039,3,148,74,0,3038,3036,1,0, + 0,0,3038,3039,1,0,0,0,3039,3040,1,0,0,0,3040,3041,5,265,0,0,3041, + 3042,5,287,0,0,3042,3043,5,251,0,0,3043,3044,3,306,153,0,3044,3045, + 5,312,0,0,3045,3053,3,148,74,0,3046,3047,5,3,0,0,3047,3048,3,306, + 153,0,3048,3049,5,312,0,0,3049,3050,3,148,74,0,3050,3052,1,0,0,0, + 3051,3046,1,0,0,0,3052,3055,1,0,0,0,3053,3051,1,0,0,0,3053,3054, + 1,0,0,0,3054,3099,1,0,0,0,3055,3053,1,0,0,0,3056,3057,5,300,0,0, + 3057,3060,5,164,0,0,3058,3059,5,25,0,0,3059,3061,3,148,74,0,3060, + 3058,1,0,0,0,3060,3061,1,0,0,0,3061,3062,1,0,0,0,3062,3063,5,265, + 0,0,3063,3099,5,73,0,0,3064,3065,5,300,0,0,3065,3066,5,182,0,0,3066, + 3069,5,164,0,0,3067,3068,5,25,0,0,3068,3070,3,148,74,0,3069,3067, + 1,0,0,0,3069,3070,1,0,0,0,3070,3071,1,0,0,0,3071,3072,5,265,0,0, + 3072,3084,5,127,0,0,3073,3074,5,1,0,0,3074,3079,3,306,153,0,3075, + 3076,5,3,0,0,3076,3078,3,306,153,0,3077,3075,1,0,0,0,3078,3081,1, + 0,0,0,3079,3077,1,0,0,0,3079,3080,1,0,0,0,3080,3082,1,0,0,0,3081, + 3079,1,0,0,0,3082,3083,5,2,0,0,3083,3085,1,0,0,0,3084,3073,1,0,0, + 0,3084,3085,1,0,0,0,3085,3086,1,0,0,0,3086,3087,5,296,0,0,3087,3088, + 5,1,0,0,3088,3093,3,148,74,0,3089,3090,5,3,0,0,3090,3092,3,148,74, + 0,3091,3089,1,0,0,0,3092,3095,1,0,0,0,3093,3091,1,0,0,0,3093,3094, + 1,0,0,0,3094,3096,1,0,0,0,3095,3093,1,0,0,0,3096,3097,5,2,0,0,3097, + 3099,1,0,0,0,3098,3034,1,0,0,0,3098,3056,1,0,0,0,3098,3064,1,0,0, + 0,3099,207,1,0,0,0,3100,3106,5,199,0,0,3101,3107,3,306,153,0,3102, + 3103,5,1,0,0,3103,3104,3,66,33,0,3104,3105,5,2,0,0,3105,3107,1,0, + 0,0,3106,3101,1,0,0,0,3106,3102,1,0,0,0,3107,209,1,0,0,0,3108,3109, + 5,168,0,0,3109,3114,3,100,50,0,3110,3111,5,3,0,0,3111,3113,3,100, + 50,0,3112,3110,1,0,0,0,3113,3116,1,0,0,0,3114,3112,1,0,0,0,3114, + 3115,1,0,0,0,3115,3118,1,0,0,0,3116,3114,1,0,0,0,3117,3108,1,0,0, + 0,3117,3118,1,0,0,0,3118,3119,1,0,0,0,3119,3123,3,212,106,0,3120, + 3121,5,21,0,0,3121,3122,5,163,0,0,3122,3124,3,106,53,0,3123,3120, + 1,0,0,0,3123,3124,1,0,0,0,3124,3126,1,0,0,0,3125,3127,7,13,0,0,3126, + 3125,1,0,0,0,3126,3127,1,0,0,0,3127,3133,1,0,0,0,3128,3129,5,206, + 0,0,3129,3130,5,1,0,0,3130,3131,3,216,108,0,3131,3132,5,2,0,0,3132, + 3134,1,0,0,0,3133,3128,1,0,0,0,3133,3134,1,0,0,0,3134,3144,1,0,0, + 0,3135,3136,5,257,0,0,3136,3141,3,108,54,0,3137,3138,5,3,0,0,3138, + 3140,3,108,54,0,3139,3137,1,0,0,0,3140,3143,1,0,0,0,3141,3139,1, + 0,0,0,3141,3142,1,0,0,0,3142,3145,1,0,0,0,3143,3141,1,0,0,0,3144, + 3135,1,0,0,0,3144,3145,1,0,0,0,3145,3155,1,0,0,0,3146,3147,5,71, + 0,0,3147,3152,3,110,55,0,3148,3149,5,3,0,0,3149,3151,3,110,55,0, + 3150,3148,1,0,0,0,3151,3154,1,0,0,0,3152,3150,1,0,0,0,3152,3153, + 1,0,0,0,3153,3156,1,0,0,0,3154,3152,1,0,0,0,3155,3146,1,0,0,0,3155, + 3156,1,0,0,0,3156,211,1,0,0,0,3157,3158,5,219,0,0,3158,3182,3,214, + 107,0,3159,3160,5,240,0,0,3160,3182,3,214,107,0,3161,3162,5,116, + 0,0,3162,3182,3,214,107,0,3163,3164,5,219,0,0,3164,3165,5,34,0,0, + 3165,3166,3,214,107,0,3166,3167,5,25,0,0,3167,3168,3,214,107,0,3168, + 3182,1,0,0,0,3169,3170,5,240,0,0,3170,3171,5,34,0,0,3171,3172,3, + 214,107,0,3172,3173,5,25,0,0,3173,3174,3,214,107,0,3174,3182,1,0, + 0,0,3175,3176,5,116,0,0,3176,3177,5,34,0,0,3177,3178,3,214,107,0, + 3178,3179,5,25,0,0,3179,3180,3,214,107,0,3180,3182,1,0,0,0,3181, + 3157,1,0,0,0,3181,3159,1,0,0,0,3181,3161,1,0,0,0,3181,3163,1,0,0, + 0,3181,3169,1,0,0,0,3181,3175,1,0,0,0,3182,213,1,0,0,0,3183,3184, + 5,278,0,0,3184,3193,5,212,0,0,3185,3186,5,278,0,0,3186,3193,5,102, + 0,0,3187,3188,5,56,0,0,3188,3193,5,239,0,0,3189,3190,3,148,74,0, + 3190,3191,7,30,0,0,3191,3193,1,0,0,0,3192,3183,1,0,0,0,3192,3185, + 1,0,0,0,3192,3187,1,0,0,0,3192,3189,1,0,0,0,3193,215,1,0,0,0,3194, + 3195,6,108,-1,0,3195,3197,3,218,109,0,3196,3198,3,220,110,0,3197, + 3196,1,0,0,0,3197,3198,1,0,0,0,3198,3206,1,0,0,0,3199,3200,10,2, + 0,0,3200,3205,3,216,108,3,3201,3202,10,1,0,0,3202,3203,5,11,0,0, + 3203,3205,3,216,108,2,3204,3199,1,0,0,0,3204,3201,1,0,0,0,3205,3208, + 1,0,0,0,3206,3204,1,0,0,0,3206,3207,1,0,0,0,3207,217,1,0,0,0,3208, + 3206,1,0,0,0,3209,3235,3,306,153,0,3210,3211,5,1,0,0,3211,3235,5, + 2,0,0,3212,3213,5,209,0,0,3213,3214,5,1,0,0,3214,3219,3,216,108, + 0,3215,3216,5,3,0,0,3216,3218,3,216,108,0,3217,3215,1,0,0,0,3218, + 3221,1,0,0,0,3219,3217,1,0,0,0,3219,3220,1,0,0,0,3220,3222,1,0,0, + 0,3221,3219,1,0,0,0,3222,3223,5,2,0,0,3223,3235,1,0,0,0,3224,3225, + 5,1,0,0,3225,3226,3,216,108,0,3226,3227,5,2,0,0,3227,3235,1,0,0, + 0,3228,3235,5,12,0,0,3229,3235,5,13,0,0,3230,3231,5,14,0,0,3231, + 3232,3,216,108,0,3232,3233,5,15,0,0,3233,3235,1,0,0,0,3234,3209, + 1,0,0,0,3234,3210,1,0,0,0,3234,3212,1,0,0,0,3234,3224,1,0,0,0,3234, + 3228,1,0,0,0,3234,3229,1,0,0,0,3234,3230,1,0,0,0,3235,219,1,0,0, + 0,3236,3238,5,320,0,0,3237,3239,5,324,0,0,3238,3237,1,0,0,0,3238, + 3239,1,0,0,0,3239,3267,1,0,0,0,3240,3242,5,318,0,0,3241,3243,5,324, + 0,0,3242,3241,1,0,0,0,3242,3243,1,0,0,0,3243,3267,1,0,0,0,3244,3246, + 5,324,0,0,3245,3247,5,324,0,0,3246,3245,1,0,0,0,3246,3247,1,0,0, + 0,3247,3267,1,0,0,0,3248,3249,5,16,0,0,3249,3250,5,329,0,0,3250, + 3252,5,17,0,0,3251,3253,5,324,0,0,3252,3251,1,0,0,0,3252,3253,1, + 0,0,0,3253,3267,1,0,0,0,3254,3256,5,16,0,0,3255,3257,5,329,0,0,3256, + 3255,1,0,0,0,3256,3257,1,0,0,0,3257,3258,1,0,0,0,3258,3260,5,3,0, + 0,3259,3261,5,329,0,0,3260,3259,1,0,0,0,3260,3261,1,0,0,0,3261,3262, + 1,0,0,0,3262,3264,5,17,0,0,3263,3265,5,324,0,0,3264,3263,1,0,0,0, + 3264,3265,1,0,0,0,3265,3267,1,0,0,0,3266,3236,1,0,0,0,3266,3240, + 1,0,0,0,3266,3244,1,0,0,0,3266,3248,1,0,0,0,3266,3254,1,0,0,0,3267, + 221,1,0,0,0,3268,3269,3,306,153,0,3269,3270,5,312,0,0,3270,3271, + 3,148,74,0,3271,223,1,0,0,0,3272,3273,5,104,0,0,3273,3277,7,31,0, + 0,3274,3275,5,276,0,0,3275,3277,7,32,0,0,3276,3272,1,0,0,0,3276, + 3274,1,0,0,0,3277,225,1,0,0,0,3278,3279,5,134,0,0,3279,3280,5,153, + 0,0,3280,3284,3,228,114,0,3281,3282,5,220,0,0,3282,3284,7,33,0,0, + 3283,3278,1,0,0,0,3283,3281,1,0,0,0,3284,227,1,0,0,0,3285,3286,5, + 220,0,0,3286,3293,5,279,0,0,3287,3288,5,220,0,0,3288,3293,5,48,0, + 0,3289,3290,5,225,0,0,3290,3293,5,220,0,0,3291,3293,5,249,0,0,3292, + 3285,1,0,0,0,3292,3287,1,0,0,0,3292,3289,1,0,0,0,3292,3291,1,0,0, + 0,3293,229,1,0,0,0,3294,3300,3,148,74,0,3295,3296,3,306,153,0,3296, + 3297,5,6,0,0,3297,3298,3,148,74,0,3298,3300,1,0,0,0,3299,3294,1, + 0,0,0,3299,3295,1,0,0,0,3300,231,1,0,0,0,3301,3302,3,306,153,0,3302, + 3303,5,4,0,0,3303,3304,3,306,153,0,3304,3307,1,0,0,0,3305,3307,3, + 306,153,0,3306,3301,1,0,0,0,3306,3305,1,0,0,0,3307,233,1,0,0,0,3308, + 3313,3,232,116,0,3309,3310,5,3,0,0,3310,3312,3,232,116,0,3311,3309, + 1,0,0,0,3312,3315,1,0,0,0,3313,3311,1,0,0,0,3313,3314,1,0,0,0,3314, + 235,1,0,0,0,3315,3313,1,0,0,0,3316,3317,5,107,0,0,3317,3318,3,238, + 119,0,3318,3322,3,244,122,0,3319,3321,3,246,123,0,3320,3319,1,0, + 0,0,3321,3324,1,0,0,0,3322,3320,1,0,0,0,3322,3323,1,0,0,0,3323,3325, + 1,0,0,0,3324,3322,1,0,0,0,3325,3326,3,248,124,0,3326,237,1,0,0,0, + 3327,3328,3,286,143,0,3328,3337,5,1,0,0,3329,3334,3,242,121,0,3330, + 3331,5,3,0,0,3331,3333,3,242,121,0,3332,3330,1,0,0,0,3333,3336,1, + 0,0,0,3334,3332,1,0,0,0,3334,3335,1,0,0,0,3335,3338,1,0,0,0,3336, + 3334,1,0,0,0,3337,3329,1,0,0,0,3337,3338,1,0,0,0,3338,3339,1,0,0, + 0,3339,3340,5,2,0,0,3340,239,1,0,0,0,3341,3342,3,284,142,0,3342, + 3351,5,1,0,0,3343,3348,3,242,121,0,3344,3345,5,3,0,0,3345,3347,3, + 242,121,0,3346,3344,1,0,0,0,3347,3350,1,0,0,0,3348,3346,1,0,0,0, + 3348,3349,1,0,0,0,3349,3352,1,0,0,0,3350,3348,1,0,0,0,3351,3343, + 1,0,0,0,3351,3352,1,0,0,0,3352,3353,1,0,0,0,3353,3354,5,2,0,0,3354, + 241,1,0,0,0,3355,3357,3,306,153,0,3356,3355,1,0,0,0,3356,3357,1, + 0,0,0,3357,3358,1,0,0,0,3358,3359,3,196,98,0,3359,243,1,0,0,0,3360, + 3361,5,232,0,0,3361,3362,3,196,98,0,3362,245,1,0,0,0,3363,3364,5, + 147,0,0,3364,3383,3,306,153,0,3365,3367,5,182,0,0,3366,3365,1,0, + 0,0,3366,3367,1,0,0,0,3367,3368,1,0,0,0,3368,3383,5,78,0,0,3369, + 3370,5,232,0,0,3370,3371,5,183,0,0,3371,3372,5,190,0,0,3372,3373, + 5,183,0,0,3373,3383,5,126,0,0,3374,3375,5,38,0,0,3375,3376,5,190, + 0,0,3376,3377,5,183,0,0,3377,3383,5,126,0,0,3378,3379,5,246,0,0, + 3379,3383,7,1,0,0,3380,3381,5,46,0,0,3381,3383,3,180,90,0,3382,3363, + 1,0,0,0,3382,3366,1,0,0,0,3382,3369,1,0,0,0,3382,3374,1,0,0,0,3382, + 3378,1,0,0,0,3382,3380,1,0,0,0,3383,247,1,0,0,0,3384,3385,5,230, + 0,0,3385,3484,3,154,77,0,3386,3387,5,251,0,0,3387,3388,3,306,153, + 0,3388,3389,5,312,0,0,3389,3390,3,148,74,0,3390,3484,1,0,0,0,3391, + 3392,5,40,0,0,3392,3394,3,148,74,0,3393,3395,3,250,125,0,3394,3393, + 1,0,0,0,3395,3396,1,0,0,0,3396,3394,1,0,0,0,3396,3397,1,0,0,0,3397, + 3399,1,0,0,0,3398,3400,3,254,127,0,3399,3398,1,0,0,0,3399,3400,1, + 0,0,0,3400,3401,1,0,0,0,3401,3402,5,88,0,0,3402,3403,5,40,0,0,3403, + 3484,1,0,0,0,3404,3406,5,40,0,0,3405,3407,3,250,125,0,3406,3405, + 1,0,0,0,3407,3408,1,0,0,0,3408,3406,1,0,0,0,3408,3409,1,0,0,0,3409, + 3411,1,0,0,0,3410,3412,3,254,127,0,3411,3410,1,0,0,0,3411,3412,1, + 0,0,0,3412,3413,1,0,0,0,3413,3414,5,88,0,0,3414,3415,5,40,0,0,3415, + 3484,1,0,0,0,3416,3417,5,119,0,0,3417,3418,3,148,74,0,3418,3419, + 5,265,0,0,3419,3423,3,258,129,0,3420,3422,3,252,126,0,3421,3420, + 1,0,0,0,3422,3425,1,0,0,0,3423,3421,1,0,0,0,3423,3424,1,0,0,0,3424, + 3427,1,0,0,0,3425,3423,1,0,0,0,3426,3428,3,254,127,0,3427,3426,1, + 0,0,0,3427,3428,1,0,0,0,3428,3429,1,0,0,0,3429,3430,5,88,0,0,3430, + 3431,5,119,0,0,3431,3484,1,0,0,0,3432,3433,5,135,0,0,3433,3484,3, + 306,153,0,3434,3435,5,151,0,0,3435,3484,3,306,153,0,3436,3442,5, + 32,0,0,3437,3438,3,256,128,0,3438,3439,5,325,0,0,3439,3441,1,0,0, + 0,3440,3437,1,0,0,0,3441,3444,1,0,0,0,3442,3440,1,0,0,0,3442,3443, + 1,0,0,0,3443,3446,1,0,0,0,3444,3442,1,0,0,0,3445,3447,3,258,129, + 0,3446,3445,1,0,0,0,3446,3447,1,0,0,0,3447,3448,1,0,0,0,3448,3484, + 5,88,0,0,3449,3450,3,306,153,0,3450,3451,5,10,0,0,3451,3453,1,0, + 0,0,3452,3449,1,0,0,0,3452,3453,1,0,0,0,3453,3454,1,0,0,0,3454,3455, + 5,161,0,0,3455,3456,3,258,129,0,3456,3457,5,88,0,0,3457,3458,5,161, + 0,0,3458,3484,1,0,0,0,3459,3460,3,306,153,0,3460,3461,5,10,0,0,3461, + 3463,1,0,0,0,3462,3459,1,0,0,0,3462,3463,1,0,0,0,3463,3464,1,0,0, + 0,3464,3465,5,302,0,0,3465,3466,3,148,74,0,3466,3467,5,81,0,0,3467, + 3468,3,258,129,0,3468,3469,5,88,0,0,3469,3470,5,302,0,0,3470,3484, + 1,0,0,0,3471,3472,3,306,153,0,3472,3473,5,10,0,0,3473,3475,1,0,0, + 0,3474,3471,1,0,0,0,3474,3475,1,0,0,0,3475,3476,1,0,0,0,3476,3477, + 5,224,0,0,3477,3478,3,258,129,0,3478,3479,5,286,0,0,3479,3480,3, + 148,74,0,3480,3481,5,88,0,0,3481,3482,5,224,0,0,3482,3484,1,0,0, + 0,3483,3384,1,0,0,0,3483,3386,1,0,0,0,3483,3391,1,0,0,0,3483,3404, + 1,0,0,0,3483,3416,1,0,0,0,3483,3432,1,0,0,0,3483,3434,1,0,0,0,3483, + 3436,1,0,0,0,3483,3452,1,0,0,0,3483,3462,1,0,0,0,3483,3474,1,0,0, + 0,3484,249,1,0,0,0,3485,3486,5,300,0,0,3486,3487,3,148,74,0,3487, + 3488,5,265,0,0,3488,3489,3,258,129,0,3489,251,1,0,0,0,3490,3491, + 5,86,0,0,3491,3492,3,148,74,0,3492,3493,5,265,0,0,3493,3494,3,258, + 129,0,3494,253,1,0,0,0,3495,3496,5,84,0,0,3496,3497,3,258,129,0, + 3497,255,1,0,0,0,3498,3499,5,69,0,0,3499,3504,3,306,153,0,3500,3501, + 5,3,0,0,3501,3503,3,306,153,0,3502,3500,1,0,0,0,3503,3506,1,0,0, + 0,3504,3502,1,0,0,0,3504,3505,1,0,0,0,3505,3507,1,0,0,0,3506,3504, + 1,0,0,0,3507,3510,3,196,98,0,3508,3509,5,70,0,0,3509,3511,3,154, + 77,0,3510,3508,1,0,0,0,3510,3511,1,0,0,0,3511,257,1,0,0,0,3512,3513, + 3,248,124,0,3513,3514,5,325,0,0,3514,3516,1,0,0,0,3515,3512,1,0, + 0,0,3516,3517,1,0,0,0,3517,3515,1,0,0,0,3517,3518,1,0,0,0,3518,259, + 1,0,0,0,3519,3526,5,53,0,0,3520,3526,5,248,0,0,3521,3526,5,73,0, + 0,3522,3526,5,127,0,0,3523,3526,5,287,0,0,3524,3526,3,306,153,0, + 3525,3519,1,0,0,0,3525,3520,1,0,0,0,3525,3521,1,0,0,0,3525,3522, + 1,0,0,0,3525,3523,1,0,0,0,3525,3524,1,0,0,0,3526,261,1,0,0,0,3527, + 3531,5,260,0,0,3528,3531,5,243,0,0,3529,3531,3,306,153,0,3530,3527, + 1,0,0,0,3530,3528,1,0,0,0,3530,3529,1,0,0,0,3531,263,1,0,0,0,3532, + 3534,3,262,131,0,3533,3532,1,0,0,0,3533,3534,1,0,0,0,3534,3535,1, + 0,0,0,3535,3536,3,292,146,0,3536,265,1,0,0,0,3537,3540,3,268,134, + 0,3538,3540,3,272,136,0,3539,3537,1,0,0,0,3539,3538,1,0,0,0,3540, + 267,1,0,0,0,3541,3553,3,306,153,0,3542,3543,3,306,153,0,3543,3544, + 5,4,0,0,3544,3545,3,306,153,0,3545,3553,1,0,0,0,3546,3547,3,306, + 153,0,3547,3548,5,4,0,0,3548,3549,3,306,153,0,3549,3550,5,4,0,0, + 3550,3551,3,306,153,0,3551,3553,1,0,0,0,3552,3541,1,0,0,0,3552,3542, + 1,0,0,0,3552,3546,1,0,0,0,3553,269,1,0,0,0,3554,3566,3,306,153,0, + 3555,3556,3,306,153,0,3556,3557,5,4,0,0,3557,3558,3,306,153,0,3558, + 3566,1,0,0,0,3559,3560,3,306,153,0,3560,3561,5,4,0,0,3561,3562,3, + 306,153,0,3562,3563,5,4,0,0,3563,3564,3,306,153,0,3564,3566,1,0, + 0,0,3565,3554,1,0,0,0,3565,3555,1,0,0,0,3565,3559,1,0,0,0,3566,271, + 1,0,0,0,3567,3579,3,306,153,0,3568,3569,3,306,153,0,3569,3570,5, + 4,0,0,3570,3571,3,306,153,0,3571,3579,1,0,0,0,3572,3573,3,306,153, + 0,3573,3574,5,4,0,0,3574,3575,3,306,153,0,3575,3576,5,4,0,0,3576, + 3577,3,306,153,0,3577,3579,1,0,0,0,3578,3567,1,0,0,0,3578,3568,1, + 0,0,0,3578,3572,1,0,0,0,3579,273,1,0,0,0,3580,3592,3,306,153,0,3581, + 3582,3,306,153,0,3582,3583,5,4,0,0,3583,3584,3,306,153,0,3584,3592, + 1,0,0,0,3585,3586,3,306,153,0,3586,3587,5,4,0,0,3587,3588,3,306, + 153,0,3588,3589,5,4,0,0,3589,3590,3,306,153,0,3590,3592,1,0,0,0, + 3591,3580,1,0,0,0,3591,3581,1,0,0,0,3591,3585,1,0,0,0,3592,275,1, + 0,0,0,3593,3599,3,306,153,0,3594,3595,3,306,153,0,3595,3596,5,4, + 0,0,3596,3597,3,306,153,0,3597,3599,1,0,0,0,3598,3593,1,0,0,0,3598, + 3594,1,0,0,0,3599,277,1,0,0,0,3600,3606,3,306,153,0,3601,3602,3, + 306,153,0,3602,3603,5,4,0,0,3603,3604,3,306,153,0,3604,3606,1,0, + 0,0,3605,3600,1,0,0,0,3605,3601,1,0,0,0,3606,279,1,0,0,0,3607,3608, + 3,306,153,0,3608,281,1,0,0,0,3609,3610,3,306,153,0,3610,283,1,0, + 0,0,3611,3612,3,292,146,0,3612,285,1,0,0,0,3613,3614,3,292,146,0, + 3614,287,1,0,0,0,3615,3618,3,292,146,0,3616,3618,4,144,14,0,3617, + 3615,1,0,0,0,3617,3616,1,0,0,0,3618,289,1,0,0,0,3619,3620,3,306, + 153,0,3620,291,1,0,0,0,3621,3626,3,306,153,0,3622,3623,5,4,0,0,3623, + 3625,3,306,153,0,3624,3622,1,0,0,0,3625,3628,1,0,0,0,3626,3624,1, + 0,0,0,3626,3627,1,0,0,0,3627,293,1,0,0,0,3628,3626,1,0,0,0,3629, + 3630,5,103,0,0,3630,3631,3,296,148,0,3631,3632,5,28,0,0,3632,3633, + 5,187,0,0,3633,3634,3,154,77,0,3634,295,1,0,0,0,3635,3636,7,34,0, + 0,3636,297,1,0,0,0,3637,3641,3,300,150,0,3638,3641,5,64,0,0,3639, + 3641,5,60,0,0,3640,3637,1,0,0,0,3640,3638,1,0,0,0,3640,3639,1,0, + 0,0,3641,299,1,0,0,0,3642,3648,3,306,153,0,3643,3644,5,289,0,0,3644, + 3648,3,306,153,0,3645,3646,5,235,0,0,3646,3648,3,306,153,0,3647, + 3642,1,0,0,0,3647,3643,1,0,0,0,3647,3645,1,0,0,0,3648,301,1,0,0, + 0,3649,3654,3,306,153,0,3650,3651,5,3,0,0,3651,3653,3,306,153,0, + 3652,3650,1,0,0,0,3653,3656,1,0,0,0,3654,3652,1,0,0,0,3654,3655, + 1,0,0,0,3655,303,1,0,0,0,3656,3654,1,0,0,0,3657,3665,5,53,0,0,3658, + 3665,5,248,0,0,3659,3665,5,73,0,0,3660,3665,5,127,0,0,3661,3665, + 5,287,0,0,3662,3665,5,93,0,0,3663,3665,3,306,153,0,3664,3657,1,0, + 0,0,3664,3658,1,0,0,0,3664,3659,1,0,0,0,3664,3660,1,0,0,0,3664,3661, + 1,0,0,0,3664,3662,1,0,0,0,3664,3663,1,0,0,0,3665,305,1,0,0,0,3666, + 3672,5,332,0,0,3667,3672,5,334,0,0,3668,3672,3,312,156,0,3669,3672, + 5,335,0,0,3670,3672,5,333,0,0,3671,3666,1,0,0,0,3671,3667,1,0,0, + 0,3671,3668,1,0,0,0,3671,3669,1,0,0,0,3671,3670,1,0,0,0,3672,307, + 1,0,0,0,3673,3675,5,319,0,0,3674,3673,1,0,0,0,3674,3675,1,0,0,0, + 3675,3676,1,0,0,0,3676,3686,5,330,0,0,3677,3679,5,319,0,0,3678,3677, + 1,0,0,0,3678,3679,1,0,0,0,3679,3680,1,0,0,0,3680,3686,5,331,0,0, + 3681,3683,5,319,0,0,3682,3681,1,0,0,0,3682,3683,1,0,0,0,3683,3684, + 1,0,0,0,3684,3686,5,329,0,0,3685,3674,1,0,0,0,3685,3678,1,0,0,0, + 3685,3682,1,0,0,0,3686,309,1,0,0,0,3687,3690,3,306,153,0,3688,3690, + 3,180,90,0,3689,3687,1,0,0,0,3689,3688,1,0,0,0,3690,311,1,0,0,0, + 3691,3692,7,35,0,0,3692,313,1,0,0,0,479,317,326,330,334,338,342, + 355,362,366,370,376,380,387,392,396,402,406,425,431,435,439,443, + 451,455,458,463,469,478,484,488,494,501,510,522,531,540,546,557, + 565,573,580,590,597,605,620,655,658,661,665,671,676,683,689,693, + 697,705,711,715,719,733,741,760,785,788,795,802,811,815,822,830, + 839,845,850,854,862,867,876,882,889,898,904,908,914,921,926,939, + 944,956,960,966,975,980,986,1014,1020,1022,1028,1034,1036,1044,1046, + 1056,1058,1073,1078,1085,1095,1101,1103,1111,1113,1138,1141,1145, + 1149,1167,1170,1181,1184,1200,1210,1215,1221,1224,1233,1245,1248, + 1258,1262,1268,1275,1280,1286,1290,1294,1300,1311,1320,1330,1333, + 1338,1340,1347,1353,1355,1359,1369,1375,1378,1380,1392,1399,1403, + 1406,1410,1414,1423,1426,1430,1435,1439,1447,1450,1457,1461,1468, + 1479,1482,1492,1495,1506,1511,1519,1522,1526,1530,1539,1548,1551, + 1560,1563,1566,1570,1581,1584,1587,1592,1595,1624,1628,1632,1636, + 1640,1644,1646,1657,1662,1671,1680,1683,1689,1701,1704,1713,1716, + 1724,1727,1730,1735,1738,1750,1753,1761,1766,1770,1772,1774,1789, + 1791,1802,1823,1833,1844,1848,1850,1858,1869,1880,1887,1894,1907, + 1913,1935,1950,1955,1959,1969,1975,1981,1989,1994,2001,2003,2009, + 2015,2019,2024,2033,2038,2052,2062,2065,2074,2079,2084,2086,2095, + 2098,2106,2109,2116,2121,2132,2135,2139,2141,2149,2159,2165,2167, + 2174,2178,2180,2187,2191,2193,2195,2204,2215,2219,2229,2239,2243, + 2251,2253,2266,2274,2283,2289,2297,2303,2307,2312,2317,2323,2337, + 2339,2369,2380,2388,2393,2398,2411,2417,2420,2427,2432,2435,2438, + 2443,2450,2453,2462,2465,2469,2472,2475,2490,2493,2512,2516,2524, + 2528,2553,2556,2565,2571,2577,2583,2592,2595,2598,2617,2626,2648, + 2651,2661,2670,2676,2682,2693,2695,2700,2707,2709,2715,2721,2732, + 2741,2746,2751,2753,2755,2761,2763,2773,2782,2784,2790,2792,2795, + 2805,2807,2815,2823,2826,2831,2836,2848,2852,2856,2859,2861,2869, + 2872,2882,2890,2896,2898,2906,2916,2922,2936,2945,2952,2957,2964, + 2969,2992,2997,2999,3006,3010,3017,3021,3038,3053,3060,3069,3079, + 3084,3093,3098,3106,3114,3117,3123,3126,3133,3141,3144,3152,3155, + 3181,3192,3197,3204,3206,3219,3234,3238,3242,3246,3252,3256,3260, + 3264,3266,3276,3283,3292,3299,3306,3313,3322,3334,3337,3348,3351, + 3356,3366,3382,3396,3399,3408,3411,3423,3427,3442,3446,3452,3462, + 3474,3483,3504,3510,3517,3525,3530,3533,3539,3552,3565,3578,3591, + 3598,3605,3617,3626,3640,3647,3654,3664,3671,3674,3678,3682,3685, + 3689 ]; private static __ATN: antlr.ATN; @@ -23100,14 +23269,8 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { public KW_SELECT(): antlr.TerminalNode { return this.getToken(TrinoSqlParser.KW_SELECT, 0)!; } - public selectItem(): SelectItemContext[]; - public selectItem(i: number): SelectItemContext | null; - public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { - if (i === undefined) { - return this.getRuleContexts(SelectItemContext); - } - - return this.getRuleContext(i, SelectItemContext); + public selectList(): SelectListContext { + return this.getRuleContext(0, SelectListContext)!; } public setQuantifier(): SetQuantifierContext | null { return this.getRuleContext(0, SetQuantifierContext); @@ -23151,31 +23314,67 @@ export class QuerySpecificationContext extends antlr.ParserRuleContext { return this.getRuleContext(i, WindowDefinitionContext); } - public booleanExpression(): BooleanExpressionContext[]; - public booleanExpression(i: number): BooleanExpressionContext | null; - public booleanExpression(i?: number): BooleanExpressionContext[] | BooleanExpressionContext | null { + public booleanExpression(): BooleanExpressionContext[]; + public booleanExpression(i: number): BooleanExpressionContext | null; + public booleanExpression(i?: number): BooleanExpressionContext[] | BooleanExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(BooleanExpressionContext); + } + + return this.getRuleContext(i, BooleanExpressionContext); + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_querySpecification; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterQuerySpecification) { + listener.enterQuerySpecification(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitQuerySpecification) { + listener.exitQuerySpecification(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitQuerySpecification) { + return visitor.visitQuerySpecification(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectListContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public selectItem(): SelectItemContext[]; + public selectItem(i: number): SelectItemContext | null; + public selectItem(i?: number): SelectItemContext[] | SelectItemContext | null { if (i === undefined) { - return this.getRuleContexts(BooleanExpressionContext); + return this.getRuleContexts(SelectItemContext); } - return this.getRuleContext(i, BooleanExpressionContext); + return this.getRuleContext(i, SelectItemContext); } public override get ruleIndex(): number { - return TrinoSqlParser.RULE_querySpecification; + return TrinoSqlParser.RULE_selectList; } public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterQuerySpecification) { - listener.enterQuerySpecification(this); + if(listener.enterSelectList) { + listener.enterSelectList(this); } } public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitQuerySpecification) { - listener.exitQuerySpecification(this); + if(listener.exitSelectList) { + listener.exitSelectList(this); } } public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitQuerySpecification) { - return visitor.visitQuerySpecification(this); + if (visitor.visitSelectList) { + return visitor.visitSelectList(this); } else { return visitor.visitChildren(this); } @@ -23618,82 +23817,170 @@ export class SetQuantifierContext extends antlr.ParserRuleContext { export class SelectItemContext extends antlr.ParserRuleContext { + public _alias?: IdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { + return this.getRuleContext(0, SelectLiteralColumnNameContext); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { + return this.getRuleContext(0, SelectExpressionColumnNameContext); + } + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(TrinoSqlParser.KW_AS, 0); + } + public tableAllColumns(): TableAllColumnsContext | null { + return this.getRuleContext(0, TableAllColumnsContext); + } + public columnAliases(): ColumnAliasesContext | null { + return this.getRuleContext(0, ColumnAliasesContext); + } + public selectAllWithoutTable(): SelectAllWithoutTableContext | null { + return this.getRuleContext(0, SelectAllWithoutTableContext); + } public override get ruleIndex(): number { return TrinoSqlParser.RULE_selectItem; } - public override copyFrom(ctx: SelectItemContext): void { - super.copyFrom(ctx); + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterSelectItem) { + listener.enterSelectItem(this); + } } -} -export class SelectAllContext extends SelectItemContext { - public constructor(ctx: SelectItemContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitSelectItem) { + listener.exitSelectItem(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitSelectItem) { + return visitor.visitSelectItem(this); + } else { + return visitor.visitChildren(this); + } } - public primaryExpression(): PrimaryExpressionContext | null { - return this.getRuleContext(0, PrimaryExpressionContext); +} + + +export class SelectAllWithoutTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } public ASTERISK(): antlr.TerminalNode { return this.getToken(TrinoSqlParser.ASTERISK, 0)!; } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_AS, 0); + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_selectAllWithoutTable; } - public columnAliases(): ColumnAliasesContext | null { - return this.getRuleContext(0, ColumnAliasesContext); + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterSelectAllWithoutTable) { + listener.enterSelectAllWithoutTable(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitSelectAllWithoutTable) { + listener.exitSelectAllWithoutTable(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitSelectAllWithoutTable) { + return visitor.visitSelectAllWithoutTable(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class TableAllColumnsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public primaryExpression(): PrimaryExpressionContext { + return this.getRuleContext(0, PrimaryExpressionContext)!; + } + public ASTERISK(): antlr.TerminalNode { + return this.getToken(TrinoSqlParser.ASTERISK, 0)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_tableAllColumns; } public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterSelectAll) { - listener.enterSelectAll(this); + if(listener.enterTableAllColumns) { + listener.enterTableAllColumns(this); } } public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitSelectAll) { - listener.exitSelectAll(this); + if(listener.exitTableAllColumns) { + listener.exitTableAllColumns(this); } } public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitSelectAll) { - return visitor.visitSelectAll(this); + if (visitor.visitTableAllColumns) { + return visitor.visitTableAllColumns(this); } else { return visitor.visitChildren(this); } } } -export class SelectSingleContext extends SelectItemContext { - public _alias?: IdentifierContext; - public constructor(ctx: SelectItemContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); + + +export class SelectLiteralColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); } - public columnRef(): ColumnRefContext | null { - return this.getRuleContext(0, ColumnRefContext); + public columnRef(): ColumnRefContext { + return this.getRuleContext(0, ColumnRefContext)!; } - public expression(): ExpressionContext | null { - return this.getRuleContext(0, ExpressionContext); + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_selectLiteralColumnName; } - public identifier(): IdentifierContext | null { - return this.getRuleContext(0, IdentifierContext); + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterSelectLiteralColumnName) { + listener.enterSelectLiteralColumnName(this); + } } - public KW_AS(): antlr.TerminalNode | null { - return this.getToken(TrinoSqlParser.KW_AS, 0); + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitSelectLiteralColumnName) { + listener.exitSelectLiteralColumnName(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitSelectLiteralColumnName) { + return visitor.visitSelectLiteralColumnName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class SelectExpressionColumnNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public expression(): ExpressionContext { + return this.getRuleContext(0, ExpressionContext)!; + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_selectExpressionColumnName; } public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterSelectSingle) { - listener.enterSelectSingle(this); + if(listener.enterSelectExpressionColumnName) { + listener.enterSelectExpressionColumnName(this); } } public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitSelectSingle) { - listener.exitSelectSingle(this); + if(listener.exitSelectExpressionColumnName) { + listener.exitSelectExpressionColumnName(this); } } public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitSelectSingle) { - return visitor.visitSelectSingle(this); + if (visitor.visitSelectExpressionColumnName) { + return visitor.visitSelectExpressionColumnName(this); } else { return visitor.visitChildren(this); } @@ -24618,11 +24905,105 @@ export class RelationPrimaryContext extends antlr.ParserRuleContext { super.copyFrom(ctx); } } -export class SubqueryRelationContext extends RelationPrimaryContext { +export class ExpressionSourceTableContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public relationSourceTable(): RelationSourceTableContext { + return this.getRuleContext(0, RelationSourceTableContext)!; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterExpressionSourceTable) { + listener.enterExpressionSourceTable(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitExpressionSourceTable) { + listener.exitExpressionSourceTable(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitExpressionSourceTable) { + return visitor.visitExpressionSourceTable(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ParenthesizedRelationContext extends RelationPrimaryContext { + public constructor(ctx: RelationPrimaryContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public relation(): RelationContext { + return this.getRuleContext(0, RelationContext)!; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterParenthesizedRelation) { + listener.enterParenthesizedRelation(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitParenthesizedRelation) { + listener.exitParenthesizedRelation(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitParenthesizedRelation) { + return visitor.visitParenthesizedRelation(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class TableNameContext extends RelationPrimaryContext { public constructor(ctx: RelationPrimaryContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } + public tableOrViewName(): TableOrViewNameContext { + return this.getRuleContext(0, TableOrViewNameContext)!; + } + public queryPeriod(): QueryPeriodContext | null { + return this.getRuleContext(0, QueryPeriodContext); + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterTableName) { + listener.enterTableName(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitTableName) { + listener.exitTableName(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitTableName) { + return visitor.visitTableName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class RelationSourceTableContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_relationSourceTable; + } + public override copyFrom(ctx: RelationSourceTableContext): void { + super.copyFrom(ctx); + } +} +export class SubqueryRelationContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public query(): QueryContext { return this.getRuleContext(0, QueryContext)!; } @@ -24644,8 +25025,8 @@ export class SubqueryRelationContext extends RelationPrimaryContext { } } } -export class JsonTableContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { +export class JsonTableContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -24712,34 +25093,8 @@ export class JsonTableContext extends RelationPrimaryContext { } } } -export class ParenthesizedRelationContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public relation(): RelationContext { - return this.getRuleContext(0, RelationContext)!; - } - public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterParenthesizedRelation) { - listener.enterParenthesizedRelation(this); - } - } - public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitParenthesizedRelation) { - listener.exitParenthesizedRelation(this); - } - } - public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitParenthesizedRelation) { - return visitor.visitParenthesizedRelation(this); - } else { - return visitor.visitChildren(this); - } - } -} -export class UnnestContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { +export class UnnestContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -24779,8 +25134,8 @@ export class UnnestContext extends RelationPrimaryContext { } } } -export class TableFunctionInvocationContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { +export class TableFunctionInvocationContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -24808,8 +25163,8 @@ export class TableFunctionInvocationContext extends RelationPrimaryContext { } } } -export class LateralContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { +export class LateralContext extends RelationSourceTableContext { + public constructor(ctx: RelationSourceTableContext) { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } @@ -24837,35 +25192,6 @@ export class LateralContext extends RelationPrimaryContext { } } } -export class TableNameContext extends RelationPrimaryContext { - public constructor(ctx: RelationPrimaryContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public tableOrViewName(): TableOrViewNameContext { - return this.getRuleContext(0, TableOrViewNameContext)!; - } - public queryPeriod(): QueryPeriodContext | null { - return this.getRuleContext(0, QueryPeriodContext); - } - public override enterRule(listener: TrinoSqlListener): void { - if(listener.enterTableName) { - listener.enterTableName(this); - } - } - public override exitRule(listener: TrinoSqlListener): void { - if(listener.exitTableName) { - listener.exitTableName(this); - } - } - public override accept(visitor: TrinoSqlVisitor): Result | null { - if (visitor.visitTableName) { - return visitor.visitTableName(this); - } else { - return visitor.visitChildren(this); - } - } -} export class JsonTableColumnContext extends antlr.ParserRuleContext { diff --git a/src/lib/trino/TrinoSqlVisitor.ts b/src/lib/trino/TrinoSqlVisitor.ts index 16c11b694..9b2467ac6 100644 --- a/src/lib/trino/TrinoSqlVisitor.ts +++ b/src/lib/trino/TrinoSqlVisitor.ts @@ -123,6 +123,7 @@ import { InlineTableContext } from "./TrinoSqlParser.js"; import { SubqueryContext } from "./TrinoSqlParser.js"; import { SortItemContext } from "./TrinoSqlParser.js"; import { QuerySpecificationContext } from "./TrinoSqlParser.js"; +import { SelectListContext } from "./TrinoSqlParser.js"; import { GroupByContext } from "./TrinoSqlParser.js"; import { SingleGroupingSetContext } from "./TrinoSqlParser.js"; import { RollupContext } from "./TrinoSqlParser.js"; @@ -134,8 +135,11 @@ import { WindowDefinitionContext } from "./TrinoSqlParser.js"; import { WindowSpecificationContext } from "./TrinoSqlParser.js"; import { NamedQueryContext } from "./TrinoSqlParser.js"; import { SetQuantifierContext } from "./TrinoSqlParser.js"; -import { SelectSingleContext } from "./TrinoSqlParser.js"; -import { SelectAllContext } from "./TrinoSqlParser.js"; +import { SelectItemContext } from "./TrinoSqlParser.js"; +import { SelectAllWithoutTableContext } from "./TrinoSqlParser.js"; +import { TableAllColumnsContext } from "./TrinoSqlParser.js"; +import { SelectLiteralColumnNameContext } from "./TrinoSqlParser.js"; +import { SelectExpressionColumnNameContext } from "./TrinoSqlParser.js"; import { RelationDefaultContext } from "./TrinoSqlParser.js"; import { JoinRelationContext } from "./TrinoSqlParser.js"; import { JoinTypeContext } from "./TrinoSqlParser.js"; @@ -157,11 +161,12 @@ import { ColumnListCreateContext } from "./TrinoSqlParser.js"; import { ColumnListContext } from "./TrinoSqlParser.js"; import { ColumnAliasesContext } from "./TrinoSqlParser.js"; import { TableNameContext } from "./TrinoSqlParser.js"; +import { ExpressionSourceTableContext } from "./TrinoSqlParser.js"; +import { ParenthesizedRelationContext } from "./TrinoSqlParser.js"; import { SubqueryRelationContext } from "./TrinoSqlParser.js"; import { UnnestContext } from "./TrinoSqlParser.js"; import { LateralContext } from "./TrinoSqlParser.js"; import { TableFunctionInvocationContext } from "./TrinoSqlParser.js"; -import { ParenthesizedRelationContext } from "./TrinoSqlParser.js"; import { JsonTableContext } from "./TrinoSqlParser.js"; import { OrdinalityColumnContext } from "./TrinoSqlParser.js"; import { ValueColumnContext } from "./TrinoSqlParser.js"; @@ -1171,6 +1176,12 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitQuerySpecification?: (ctx: QuerySpecificationContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.selectList`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectList?: (ctx: SelectListContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.groupBy`. * @param ctx the parse tree @@ -1242,19 +1253,35 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { */ visitSetQuantifier?: (ctx: SetQuantifierContext) => Result; /** - * Visit a parse tree produced by the `selectSingle` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Visit a parse tree produced by `TrinoSqlParser.selectItem`. * @param ctx the parse tree * @return the visitor result */ - visitSelectSingle?: (ctx: SelectSingleContext) => Result; + visitSelectItem?: (ctx: SelectItemContext) => Result; /** - * Visit a parse tree produced by the `selectAll` - * labeled alternative in `TrinoSqlParser.selectItem`. + * Visit a parse tree produced by `TrinoSqlParser.selectAllWithoutTable`. * @param ctx the parse tree * @return the visitor result */ - visitSelectAll?: (ctx: SelectAllContext) => Result; + visitSelectAllWithoutTable?: (ctx: SelectAllWithoutTableContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.tableAllColumns`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTableAllColumns?: (ctx: TableAllColumnsContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.selectLiteralColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectLiteralColumnName?: (ctx: SelectLiteralColumnNameContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.selectExpressionColumnName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectExpressionColumnName?: (ctx: SelectExpressionColumnNameContext) => Result; /** * Visit a parse tree produced by the `relationDefault` * labeled alternative in `TrinoSqlParser.relation`. @@ -1385,43 +1412,50 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { */ visitTableName?: (ctx: TableNameContext) => Result; /** - * Visit a parse tree produced by the `subqueryRelation` + * Visit a parse tree produced by the `expressionSourceTable` + * labeled alternative in `TrinoSqlParser.relationPrimary`. + * @param ctx the parse tree + * @return the visitor result + */ + visitExpressionSourceTable?: (ctx: ExpressionSourceTableContext) => Result; + /** + * Visit a parse tree produced by the `parenthesizedRelation` * labeled alternative in `TrinoSqlParser.relationPrimary`. * @param ctx the parse tree * @return the visitor result */ + visitParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => Result; + /** + * Visit a parse tree produced by the `subqueryRelation` + * labeled alternative in `TrinoSqlParser.relationSourceTable`. + * @param ctx the parse tree + * @return the visitor result + */ visitSubqueryRelation?: (ctx: SubqueryRelationContext) => Result; /** * Visit a parse tree produced by the `unnest` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree * @return the visitor result */ visitUnnest?: (ctx: UnnestContext) => Result; /** * Visit a parse tree produced by the `lateral` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree * @return the visitor result */ visitLateral?: (ctx: LateralContext) => Result; /** * Visit a parse tree produced by the `tableFunctionInvocation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree * @return the visitor result */ visitTableFunctionInvocation?: (ctx: TableFunctionInvocationContext) => Result; - /** - * Visit a parse tree produced by the `parenthesizedRelation` - * labeled alternative in `TrinoSqlParser.relationPrimary`. - * @param ctx the parse tree - * @return the visitor result - */ - visitParenthesizedRelation?: (ctx: ParenthesizedRelationContext) => Result; /** * Visit a parse tree produced by the `jsonTable` - * labeled alternative in `TrinoSqlParser.relationPrimary`. + * labeled alternative in `TrinoSqlParser.relationSourceTable`. * @param ctx the parse tree * @return the visitor result */ diff --git a/src/parser/common/basicSQL.ts b/src/parser/common/basicSQL.ts index ccf36e72b..63d192c59 100644 --- a/src/parser/common/basicSQL.ts +++ b/src/parser/common/basicSQL.ts @@ -399,6 +399,8 @@ export abstract class BasicSQL< } = minimumParser; const core = new CodeCompletionCore(sqlParserIns); core.preferredRules = this.preferredRules; + // core.showRuleStack = true; + // core.showResult = true; const candidates = core.collectCandidates(newTokenIndex, c3Context); const originalSuggestions = this.processCandidates( diff --git a/src/parser/common/entityCollector.ts b/src/parser/common/entityCollector.ts index e5c078b9a..63997efe5 100644 --- a/src/parser/common/entityCollector.ts +++ b/src/parser/common/entityCollector.ts @@ -34,7 +34,7 @@ export interface StmtContext { readonly rootStmt: StmtContext | null; readonly parentStmt: StmtContext | null; readonly isContainCaret?: boolean; - readonly _scopeDepth: number; + readonly scopeDepth: number; readonly _ctx: ParserRuleContext; readonly text: string; } @@ -57,7 +57,7 @@ export function toStmtContext( parentStmt: parentStmt ?? null, isContainCaret, text: stmtText, - _scopeDepth: type === StmtContextType.COMMON_STMT ? 0 : (parentStmt?._scopeDepth ?? 0) + 1, + scopeDepth: type === StmtContextType.COMMON_STMT ? 0 : (parentStmt?.scopeDepth ?? 0) + 1, _ctx: ctx, }; } @@ -106,8 +106,8 @@ export interface BaseEntityContext { isAccessible: boolean; /** Entities related to this entity */ relatedEntities: EntityContext[] | null; - /** The parser rule context for this entity */ - _ctx: ParserRuleContext; + /** The parser rule context for this entity, it will be deleted after the entity is collected because of json serialization */ + _ctx?: ParserRuleContext; /** Comment attribute for this entity */ [AttrName.comment]: WordRange | null; /** Alias attribute for this entity */ @@ -328,10 +328,10 @@ function findAttributeChildren( * @returns true if entity is contained within rangeEntity's range */ function isEntityInScope(entity: EntityContext, rangeEntity: EntityContext): boolean { - const entityStart = entity._ctx.start?.tokenIndex; - const entityStop = entity._ctx.stop?.tokenIndex; - const rangeStart = rangeEntity._ctx.start?.tokenIndex; - const rangeStop = rangeEntity._ctx.stop?.tokenIndex; + const entityStart = entity._ctx?.start?.tokenIndex; + const entityStop = entity._ctx?.stop?.tokenIndex; + const rangeStart = rangeEntity._ctx?.start?.tokenIndex; + const rangeStop = rangeEntity._ctx?.stop?.tokenIndex; return ( entityStart != null && @@ -408,9 +408,51 @@ export abstract class EntityCollector { exitProgram() { const entities = Array.from(this._entitiesSet); + this.removeCtxAttr(); this.attachAccessibleToEntities(entities); this._entityStack.clear(); - debugger; + } + + /** + * Remove _ctx property to avoid circular references during JSON serialization + */ + private removeCtxAttr() { + const entities = Array.from(this._entitiesSet); + // Use WeakSet to track processed objects and avoid infinite recursion from circular references + const processed = new WeakSet(); + + const removeCtx = (obj: any) => { + if (!obj || typeof obj !== 'object' || processed.has(obj)) { + return; + } + processed.add(obj); + + if ('_ctx' in obj) { + obj._ctx = undefined; + } + + if (obj.belongStmt) { + removeCtx(obj.belongStmt); + } + + if (obj.rootStmt) { + removeCtx(obj.rootStmt); + } + + if (obj.parentStmt) { + removeCtx(obj.parentStmt); + } + + if (obj.relatedEntities && Array.isArray(obj.relatedEntities)) { + obj.relatedEntities.forEach(removeCtx); + } + + if (obj.columns && Array.isArray(obj.columns)) { + obj.columns.forEach(removeCtx); + } + }; + + entities.forEach(removeCtx); } /** @@ -439,9 +481,6 @@ export abstract class EntityCollector { /** * Adds accessibility markers to entities - * Implements SQL query scope rules: - * 1. When the caret is in an outer query, all tables are accessible - * 2. When the caret is in a subquery, only tables within the subquery are accessible, not tables from outer queries * @param entities The list of entities to process */ protected attachAccessibleToEntities(entities: EntityContext[]): void { @@ -449,15 +488,12 @@ export abstract class EntityCollector { return; } - // Determine if the caret is inside a derived table subquery - const isCaretInDerivedTableStmt = this.isCaretInDerivedTableStmt(); - for (const entity of entities) { if (entity.isAccessible !== undefined) { continue; } - const entityScopeDepth = entity.belongStmt._scopeDepth ?? 0; + const entityScopeDepth = entity.belongStmt.scopeDepth ?? 0; // First, the entity must be in a statement containing the caret to potentially be accessible entity.isAccessible = entity.belongStmt.isContainCaret ?? false; @@ -465,11 +501,7 @@ export abstract class EntityCollector { // For table-type entities, we need to judge accessibility based on scope depth if (entity.entityContextType === EntityContextType.TABLE) { entity.isAccessible = - entity.isAccessible && - ((!isCaretInDerivedTableStmt && - entityScopeDepth <= this._caretStmtScopeDepth) || - (isCaretInDerivedTableStmt && - entityScopeDepth === this._caretStmtScopeDepth)); + entity.isAccessible && entityScopeDepth === this._caretStmtScopeDepth; } // Recursively process related entities @@ -546,6 +578,7 @@ export abstract class EntityCollector { protected getPrevNonHiddenTokenIndex(caretTokenIndex: number) { if (this._allTokens[caretTokenIndex].channel !== Token.HIDDEN_CHANNEL) return caretTokenIndex; + for (let i = caretTokenIndex - 1; i >= 0; i--) { const token = this._allTokens[i]; if (token.channel !== Token.HIDDEN_CHANNEL) { @@ -553,11 +586,13 @@ export abstract class EntityCollector { return token.text === ';' ? Infinity : token.tokenIndex; } } + return Infinity; } protected pushStmt(ctx: ParserRuleContext, type: StmtContextType) { let isContainCaret: boolean | undefined; + if (this._caretTokenIndex >= 0) { isContainCaret = !!ctx.start && @@ -568,6 +603,7 @@ export abstract class EntityCollector { this._caretStmtScopeDepth++; } } + const stmtContext = toStmtContext( ctx, type, @@ -576,6 +612,7 @@ export abstract class EntityCollector { this._stmtStack.peek(), isContainCaret ); + if (stmtContext) { if ( this._stmtStack.isEmpty() || @@ -602,7 +639,7 @@ export abstract class EntityCollector { // then set it as the nearest statement containing the caret if ( stmtContext.isContainCaret && - stmtContext._scopeDepth === this._caretStmtScopeDepth + stmtContext.scopeDepth === this._caretStmtScopeDepth ) { this._caretStmt = stmtContext; } diff --git a/src/parser/flink/flinkEntityCollector.ts b/src/parser/flink/flinkEntityCollector.ts index 7c0d7faf5..8f02e488a 100644 --- a/src/parser/flink/flinkEntityCollector.ts +++ b/src/parser/flink/flinkEntityCollector.ts @@ -1,7 +1,10 @@ import { + AtomExpressionTableContext, + AtomFunctionTableContext, CatalogPathContext, CatalogPathCreateContext, ColumnNameCreateContext, + ColumnProjectItemContext, CreateCatalogContext, CreateDatabaseContext, CreateFunctionContext, @@ -11,9 +14,15 @@ import { DatabasePathCreateContext, FunctionNameCreateContext, InsertStatementContext, + OverWindowItemContext, PhysicalColumnDefinitionContext, QueryStatementContext, + SelectExpressionColumnNameContext, + SelectListContext, + SelectLiteralColumnNameContext, + SelectWindowItemColumnNameContext, SqlStatementContext, + TableAllColumnsContext, TablePathContext, TablePathCreateContext, TableReferenceContext, @@ -21,7 +30,13 @@ import { ViewPathCreateContext, } from '../../lib/flink/FlinkSqlParser'; import { FlinkSqlParserListener } from '../../lib/flink/FlinkSqlParserListener'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class FlinkEntityCollector extends EntityCollector implements FlinkSqlParserListener { @@ -48,18 +63,50 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar } exitTablePath(ctx: TablePathContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [TableReferenceContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [TableReferenceContext.name], + }, + ], + { + declareType: TableDeclareType.COMMON, + } + ); + } + + exitAtomFunctionTable(ctx: AtomFunctionTableContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [TableReferenceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + exitAtomExpressionTable(ctx: AtomExpressionTableContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [TableReferenceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } @@ -85,6 +132,15 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar ]); } + exitFunctionNameCreate(ctx: FunctionNameCreateContext) { + this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + } + + exitSelectList(ctx: SelectListContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + + /** Column entity rules */ exitColumnNameCreate(ctx: ColumnNameCreateContext) { this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ { @@ -98,8 +154,68 @@ export class FlinkEntityCollector extends EntityCollector implements FlinkSqlPar ]); } - exitFunctionNameCreate(ctx: FunctionNameCreateContext) { - this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [ColumnProjectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.COMMON, + } + ); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [ColumnProjectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitSelectWindowItemColumnName(ctx: SelectWindowItemColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [ColumnProjectItemContext.name, OverWindowItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [ColumnProjectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.ALL, + } + ); } /** ===== Statement begin */ diff --git a/src/parser/hive/hiveEntityCollector.ts b/src/parser/hive/hiveEntityCollector.ts index d54f3b112..6a9208a6a 100644 --- a/src/parser/hive/hiveEntityCollector.ts +++ b/src/parser/hive/hiveEntityCollector.ts @@ -76,7 +76,6 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse /** Virtual Table Entity Rules */ exitAtomValuesClause(ctx: AtomValuesClauseContext) { if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; - this.pushEntity( ctx, EntityContextType.TABLE, @@ -95,7 +94,6 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse /** SubQuery Table Entity Rules */ exitQueryStatementExpression(ctx: QueryStatementExpressionContext) { if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; - this.pushEntity( ctx, EntityContextType.TABLE, @@ -114,7 +112,6 @@ export class HiveEntityCollector extends EntityCollector implements HiveSqlParse /** Partitioned Table Entity Rules */ exitAtomPartitionedTableFunction(ctx: AtomPartitionedTableFunctionContext) { if (!isChildContextOf(ctx, HiveSqlParser.RULE_fromClause)) return; - this.pushEntity( ctx, EntityContextType.TABLE, diff --git a/src/parser/impala/impalaEntityCollector.ts b/src/parser/impala/impalaEntityCollector.ts index 0bf4cd0b6..3a71ac4d8 100644 --- a/src/parser/impala/impalaEntityCollector.ts +++ b/src/parser/impala/impalaEntityCollector.ts @@ -1,5 +1,7 @@ import { ImpalaSqlParserListener } from '../../lib'; +import { SelectItemContext } from '../../lib/hive/HiveSqlParser'; import { + AtomSubQueryTableSourceContext, ColumnDefinitionContext, ColumnNamePathCreateContext, CreateAggregateFunctionContext, @@ -15,15 +17,26 @@ import { InsertStatementContext, KuduTableElementContext, QueryStatementContext, - SampledRelationContext, + SelectExpressionColumnNameContext, + SelectListContext, + SelectLiteralColumnNameContext, SingleStatementContext, + TableAllColumnsContext, TableNameCreateContext, TableNamePathContext, + UnnestContext, ViewColumnItemContext, ViewNameCreateContext, ViewNamePathContext, } from '../../lib/impala/ImpalaSqlParser'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { AliasedRelationContext } from '../../lib/trino/TrinoSqlParser'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class ImpalaEntityCollector extends EntityCollector implements ImpalaSqlParserListener { @@ -41,18 +54,50 @@ export class ImpalaEntityCollector extends EntityCollector implements ImpalaSqlP } exitTableNamePath(ctx: TableNamePathContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [SampledRelationContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ], + { + declareType: TableDeclareType.COMMON, + } + ); + } + + exitAtomSubQueryTableSource(ctx: AtomSubQueryTableSourceContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + exitUnnest(ctx: UnnestContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } @@ -107,6 +152,58 @@ export class ImpalaEntityCollector extends EntityCollector implements ImpalaSqlP this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); } + exitSelectList(ctx: SelectListContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.COMMON, + } + ); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.ALL, + } + ); + } + /** ===== Statement begin */ enterSingleStatement(ctx: SingleStatementContext) { this.pushStmt(ctx, StmtContextType.COMMON_STMT); diff --git a/src/parser/mysql/mysqlEntityCollector.ts b/src/parser/mysql/mysqlEntityCollector.ts index 92b5bd0d4..93fe2d768 100644 --- a/src/parser/mysql/mysqlEntityCollector.ts +++ b/src/parser/mysql/mysqlEntityCollector.ts @@ -12,16 +12,31 @@ import { FunctionNameCreateContext, InsertStatementContext, QueryCreateTableContext, + SelectElementContext, + SelectExpressionElementContext, SelectStatementContext, SingleStatementContext, TableNameContext, TableNameCreateContext, - TableSourceContext, + TableSourceItemContext, ViewNameContext, ViewNameCreateContext, + TableAllColumnsContext, + SelectLiteralColumnNameContext, + AtomSubQueryTableSourceContext, + SelectElementsContext, + AtomTableItemContext, + SubqueryTableItemContext, + PureAllColumnsContext, } from '../../lib/mysql/MySqlParser'; import type { MySqlParserListener } from '../../lib/mysql/MySqlParserListener'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class MySqlEntityCollector extends EntityCollector implements MySqlParserListener { @@ -34,19 +49,37 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser this.pushEntity(ctx, EntityContextType.DATABASE_CREATE); } + /** Table Entity Rules */ exitTableName(ctx: TableNameContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [TableSourceContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [TableSourceItemContext.name, AtomTableItemContext.name], + }, + ], + { + declareType: TableDeclareType.COMMON, + } + ); + } + + /** SubQuery Table Entity Rules */ + exitAtomSubQueryTableSource(ctx: AtomSubQueryTableSourceContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [TableSourceItemContext.name, SubqueryTableItemContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } @@ -76,6 +109,10 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser ]); } + exitSelectElements(ctx: SelectElementsContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + exitColumnNameCreate(ctx: ColumnNameCreateContext) { this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ { @@ -89,6 +126,50 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser ]); } + exitTableAllColumns(ctx: TableAllColumnsContext) { + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.ALL, + }); + } + + exitPureAllColumns(ctx: PureAllColumnsContext) { + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.ALL, + }); + } + + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectElementContext.name], + }, + ], + { + declareType: ColumnDeclareType.COMMON, + } + ); + } + + exitSelectExpressionElement(ctx: SelectExpressionElementContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectElementContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + /** ===== Statement begin */ enterSingleStatement(ctx: SingleStatementContext) { this.pushStmt(ctx, StmtContextType.COMMON_STMT); diff --git a/src/parser/postgresql/postgreEntityCollector.ts b/src/parser/postgresql/postgreEntityCollector.ts index 801c2d9cb..80c9b0e1e 100644 --- a/src/parser/postgresql/postgreEntityCollector.ts +++ b/src/parser/postgresql/postgreEntityCollector.ts @@ -11,21 +11,37 @@ import { type CreateViewContext, type DatabaseNameContext, type DatabaseNameCreateContext, + ExpressionTableContext, type FunctionNameCreateContext, type InsertStatementContext, + PostgreSqlParser, type ProcedureNameContext, type ProcedureNameCreateContext, type QueryCreateTableContext, + Select_no_parensContext, + SelectExpressionColumnNameContext, + SelectLiteralColumnNameContext, type SelectStatementContext, type SingleStmtContext, Table_refContext, + TableAllColumnsContext, type TableNameContext, type TableNameCreateContext, + Target_elContext, + Target_labelContext, + Target_listContext, type ViewNameContext, type ViewNameCreateContext, } from '../../lib/postgresql/PostgreSqlParser'; import type { PostgreSqlParserListener } from '../../lib/postgresql/PostgreSqlParserListener'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + isChildContextOf, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class PostgreSqlEntityCollector extends EntityCollector implements PostgreSqlParserListener { @@ -39,18 +55,34 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr } exitTableName(ctx: TableNameContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [Table_refContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [Table_refContext.name], + }, + ], + { + declareType: TableDeclareType.COMMON, + } + ); + } + + exitExpressionTable(ctx: ExpressionTableContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [ExpressionTableContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } @@ -59,19 +91,12 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr } exitViewName(ctx: ViewNameContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; - this.pushEntity( - ctx, - EntityContextType.VIEW, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [Table_refContext.name], - }, - ] - : undefined - ); + this.pushEntity(ctx, EntityContextType.VIEW, [ + { + attrName: AttrName.alias, + endContextList: [Table_refContext.name], + }, + ]); } exitViewNameCreate(ctx: ViewNameCreateContext) { @@ -95,6 +120,52 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr ]); } + exitTarget_list(ctx: Target_listContext) { + if (!isChildContextOf(ctx, PostgreSqlParser.RULE_simple_select)) return; + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + if (!isChildContextOf(ctx, PostgreSqlParser.RULE_target_list)) return; + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.ALL, + }); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + if (!isChildContextOf(ctx, PostgreSqlParser.RULE_target_list)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [Target_labelContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + if (!isChildContextOf(ctx, PostgreSqlParser.RULE_target_list)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [Target_labelContext.name], + }, + ], + { + declareType: ColumnDeclareType.COMMON, + } + ); + } + exitProcedureName(ctx: ProcedureNameContext) { this.pushEntity(ctx, EntityContextType.PROCEDURE); } @@ -172,6 +243,14 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr this.pushStmt(ctx, StmtContextType.SELECT_STMT); } + enterSelect_no_parens(ctx: Select_no_parensContext) { + this.pushStmt(ctx, StmtContextType.SELECT_STMT); + } + + exitSelect_no_parens(ctx: Select_no_parensContext) { + this.popStmt(); + } + exitSelectStatement(ctx: SelectStatementContext) { this.popStmt(); } diff --git a/src/parser/spark/sparkEntityCollector.ts b/src/parser/spark/sparkEntityCollector.ts index cffcbd05b..a1621240d 100644 --- a/src/parser/spark/sparkEntityCollector.ts +++ b/src/parser/spark/sparkEntityCollector.ts @@ -1,4 +1,6 @@ +import { TableSourceContext } from '../../lib/mysql/MySqlParser'; import { + AtomSubQueryTableSourceContext, ColumnNameCreateContext, CreateFunctionContext, CreateNamespaceContext, @@ -8,22 +10,39 @@ import { CreateTempViewUsingContext, CreateViewContext, FunctionNameCreateContext, + FunctionTableSourceContext, IdentifierCommentContext, + InlineTableSourceContext, InsertFromQueryContext, MultipleInsertContext, + NamedExpressionContext, NamespaceNameContext, NamespaceNameCreateContext, QueryStatementContext, + RelationContext, RelationPrimaryContext, ReplaceTableContext, + SelectExpressionColumnNameContext, + SelectListContext, + SelectLiteralColumnNameContext, SingleStatementContext, + SparkSqlParser, + SubQueryTableSourceContext, + TableAllColumnsContext, TableNameContext, TableNameCreateContext, ViewNameContext, ViewNameCreateContext, } from '../../lib/spark/SparkSqlParser'; import type { SparkSqlParserListener } from '../../lib/spark/SparkSqlParserListener'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + isChildContextOf, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class SparkEntityCollector extends EntityCollector implements SparkSqlParserListener { @@ -41,19 +60,75 @@ export class SparkEntityCollector extends EntityCollector implements SparkSqlPar ]); } + /** Table Entity Rules */ exitTableName(ctx: TableNameContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [RelationPrimaryContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [ + RelationPrimaryContext.name, + RelationContext.name, + TableSourceContext.name, + ], + }, + ], + { + declareType: TableDeclareType.COMMON, + } + ); + } + + /** Inline Table Entity Rules */ + exitInlineTableSource(ctx: InlineTableSourceContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [InlineTableSourceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + /** Function Table Entity Rules */ + exitFunctionTableSource(ctx: FunctionTableSourceContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [FunctionTableSourceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } + ); + } + + /** SubQuery Table Entity Rules */ + exitAtomSubQueryTableSource(ctx: AtomSubQueryTableSourceContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [SubQueryTableSourceContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } @@ -70,6 +145,10 @@ export class SparkEntityCollector extends EntityCollector implements SparkSqlPar this.pushEntity(ctx, EntityContextType.VIEW); } + exitSelectList(ctx: SelectListContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + exitViewNameCreate(ctx: ViewNameCreateContext) { this.pushEntity(ctx, EntityContextType.VIEW_CREATE, [ { @@ -83,6 +162,7 @@ export class SparkEntityCollector extends EntityCollector implements SparkSqlPar this.pushEntity(ctx, EntityContextType.FUNCTION_CREATE); } + /** Column Entity Rules */ exitColumnNameCreate(ctx: ColumnNameCreateContext) { this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ { @@ -99,6 +179,57 @@ export class SparkEntityCollector extends EntityCollector implements SparkSqlPar ]); } + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + if (!isChildContextOf(ctx, SparkSqlParser.RULE_namedExpression)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [NamedExpressionContext.name], + }, + ], + { + declareType: ColumnDeclareType.COMMON, + } + ); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + if (!isChildContextOf(ctx, SparkSqlParser.RULE_namedExpression)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [NamedExpressionContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + if (!isChildContextOf(ctx, SparkSqlParser.RULE_namedExpression)) return; + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [NamedExpressionContext.name], + }, + ], + { + declareType: ColumnDeclareType.ALL, + } + ); + } + /** ===== Statement begin */ enterSingleStatement(ctx: SingleStatementContext) { this.pushStmt(ctx, StmtContextType.COMMON_STMT); diff --git a/src/parser/trino/trinoEntityCollector.ts b/src/parser/trino/trinoEntityCollector.ts index fb8b60695..6fe801906 100644 --- a/src/parser/trino/trinoEntityCollector.ts +++ b/src/parser/trino/trinoEntityCollector.ts @@ -10,17 +10,30 @@ import { CreateTableAsSelectContext, CreateTableContext, CreateViewContext, + ExpressionSourceTableContext, InsertIntoContext, QueryStatementContext, SchemaNameCreateContext, SchemaRefContext, + SelectAllWithoutTableContext, + SelectExpressionColumnNameContext, + SelectItemContext, + SelectListContext, + SelectLiteralColumnNameContext, SingleStatementContext, + TableAllColumnsContext, TableNameCreateContext, TableRefContext, ViewNameCreateContext, ViewRefContext, } from '../../lib/trino/TrinoSqlParser'; -import { AttrName, EntityCollector, StmtContextType } from '../common/entityCollector'; +import { + AttrName, + ColumnDeclareType, + EntityCollector, + StmtContextType, + TableDeclareType, +} from '../common/entityCollector'; import { EntityContextType } from '../common/types'; export class TrinoEntityCollector extends EntityCollector implements TrinoSqlListener { @@ -42,18 +55,34 @@ export class TrinoEntityCollector extends EntityCollector implements TrinoSqlLis } exitTableRef(ctx: TableRefContext) { - const needCollectAttr = this.getRootStmt()?.stmtContextType === StmtContextType.SELECT_STMT; this.pushEntity( ctx, EntityContextType.TABLE, - needCollectAttr - ? [ - { - attrName: AttrName.alias, - endContextList: [AliasedRelationContext.name], - }, - ] - : undefined + [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ], + { + declareType: TableDeclareType.COMMON, + } + ); + } + + exitExpressionSourceTable(ctx: ExpressionSourceTableContext) { + this.pushEntity( + ctx, + EntityContextType.TABLE, + [ + { + attrName: AttrName.alias, + endContextList: [AliasedRelationContext.name], + }, + ], + { + declareType: TableDeclareType.EXPRESSION, + } ); } @@ -79,6 +108,10 @@ export class TrinoEntityCollector extends EntityCollector implements TrinoSqlLis ]); } + exitSelectList(ctx: SelectListContext) { + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); + } + exitColumnNameCreate(ctx: ColumnNameCreateContext) { this.pushEntity(ctx, EntityContextType.COLUMN_CREATE, [ { @@ -92,6 +125,49 @@ export class TrinoEntityCollector extends EntityCollector implements TrinoSqlLis ]); } + exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.COMMON, + } + ); + } + + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { + this.pushEntity( + ctx, + EntityContextType.COLUMN, + [ + { + attrName: AttrName.alias, + endContextList: [SelectItemContext.name], + }, + ], + { + declareType: ColumnDeclareType.EXPRESSION, + } + ); + } + + exitTableAllColumns(ctx: TableAllColumnsContext) { + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.ALL, + }); + } + + exitSelectAllWithoutTable(ctx: SelectAllWithoutTableContext) { + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.ALL, + }); + } /** ===== Statement begin */ enterSingleStatement(ctx: SingleStatementContext) { From 1fba7a479c64fea97739de8f4e8d8856b1ab9ef0 Mon Sep 17 00:00:00 2001 From: JackWang032 <2522134117@qq.com> Date: Fri, 13 Jun 2025 15:10:57 +0800 Subject: [PATCH 3/3] test: enhance hive and spark entity collect test case --- src/grammar/spark/SparkSqlParser.g4 | 2 +- src/lib/spark/SparkSqlParser.interp | 2 +- src/lib/spark/SparkSqlParser.ts | 94 ++++---- src/parser/common/entityCollector.ts | 4 +- .../postgresql/postgreEntityCollector.ts | 1 - .../contextCollect/entityCollector.test.ts | 196 +++++++++++++--- .../hive/contextCollect/fixtures/common.sql | 12 +- .../suggestion/suggestionWithEntity.test.ts | 61 ++--- .../contextCollect/entityCollector.test.ts | 219 +++++++++++++++++- .../spark/contextCollect/fixtures/common.sql | 12 +- .../suggestion/suggestionWithEntity.test.ts | 40 ++-- 11 files changed, 507 insertions(+), 136 deletions(-) diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index 9130658da..db7577200 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -913,7 +913,7 @@ tableAllColumns namedExpression : (tableAllColumns | selectLiteralColumnName | selectExpressionColumnName) ( - KW_AS? (name=errorCapturingIdentifier | identifierList) + KW_AS? (alias=errorCapturingIdentifier | identifierList) )? ; diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index 31edbc035..b37bc7bab 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -1000,4 +1000,4 @@ nonReserved atn: -[4, 1, 393, 4014, 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, 1, 0, 5, 0, 414, 8, 0, 10, 0, 12, 0, 417, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 423, 8, 1, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 432, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 439, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 444, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 452, 8, 2, 10, 2, 12, 2, 455, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 483, 8, 2, 1, 2, 3, 2, 486, 8, 2, 1, 2, 3, 2, 489, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 496, 8, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 3, 2, 503, 8, 2, 1, 2, 3, 2, 506, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 511, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 523, 8, 2, 10, 2, 12, 2, 526, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 533, 8, 2, 1, 2, 3, 2, 536, 8, 2, 1, 2, 1, 2, 3, 2, 540, 8, 2, 1, 2, 3, 2, 543, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 549, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 560, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 566, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 571, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 604, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 614, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 625, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 636, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 647, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 652, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 3, 2, 665, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 671, 8, 2, 1, 2, 1, 2, 3, 2, 675, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 680, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 698, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 706, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 712, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 723, 8, 2, 1, 2, 1, 2, 3, 2, 727, 8, 2, 1, 2, 4, 2, 730, 8, 2, 11, 2, 12, 2, 731, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 747, 8, 2, 1, 2, 1, 2, 3, 2, 751, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 756, 8, 2, 10, 2, 12, 2, 759, 9, 2, 1, 2, 3, 2, 762, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 768, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 797, 8, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 806, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 819, 8, 2, 1, 2, 3, 2, 822, 8, 2, 1, 2, 3, 2, 825, 8, 2, 1, 2, 1, 2, 3, 2, 829, 8, 2, 1, 2, 1, 2, 3, 2, 833, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 841, 8, 2, 10, 2, 12, 2, 844, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 3, 2, 855, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 864, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 869, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 882, 8, 2, 1, 2, 3, 2, 885, 8, 2, 1, 2, 1, 2, 3, 2, 889, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 898, 8, 2, 10, 2, 12, 2, 901, 9, 2, 3, 2, 903, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 909, 8, 2, 1, 2, 1, 2, 3, 2, 913, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 928, 8, 2, 10, 2, 12, 2, 931, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 938, 8, 2, 1, 2, 1, 2, 3, 2, 942, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 948, 8, 2, 1, 2, 3, 2, 951, 8, 2, 1, 2, 1, 2, 3, 2, 955, 8, 2, 1, 2, 3, 2, 958, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 964, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 1, 2, 3, 2, 973, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 980, 8, 2, 1, 2, 3, 2, 983, 8, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 993, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 998, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1007, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1015, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1021, 8, 2, 1, 2, 3, 2, 1024, 8, 2, 1, 2, 3, 2, 1027, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 3, 2, 1037, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1042, 8, 2, 1, 2, 3, 2, 1045, 8, 2, 1, 2, 1, 2, 3, 2, 1049, 8, 2, 3, 2, 1051, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1059, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1067, 8, 2, 1, 2, 3, 2, 1070, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1077, 8, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 3, 2, 1083, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1092, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1108, 8, 2, 1, 2, 3, 2, 1111, 8, 2, 1, 2, 1, 2, 3, 2, 1115, 8, 2, 1, 2, 3, 2, 1118, 8, 2, 1, 2, 1, 2, 3, 2, 1122, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1148, 8, 2, 10, 2, 12, 2, 1151, 9, 2, 3, 2, 1153, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1167, 8, 2, 1, 2, 3, 2, 1170, 8, 2, 1, 2, 3, 2, 1173, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1178, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1186, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1197, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1203, 8, 2, 1, 2, 3, 2, 1206, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1213, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1218, 8, 2, 10, 2, 12, 2, 1221, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1226, 8, 2, 10, 2, 12, 2, 1229, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1243, 8, 2, 10, 2, 12, 2, 1246, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1270, 8, 2, 10, 2, 12, 2, 1273, 9, 2, 3, 2, 1275, 8, 2, 1, 2, 1, 2, 5, 2, 1279, 8, 2, 10, 2, 12, 2, 1282, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1288, 8, 2, 10, 2, 12, 2, 1291, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1297, 8, 2, 10, 2, 12, 2, 1300, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1305, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1310, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1315, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1322, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1327, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1332, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1339, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1345, 8, 2, 10, 2, 12, 2, 1348, 9, 2, 3, 2, 1350, 8, 2, 1, 3, 1, 3, 3, 3, 1354, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1366, 8, 6, 1, 6, 1, 6, 3, 6, 1370, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1377, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1493, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1501, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1509, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1518, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1528, 8, 6, 1, 7, 1, 7, 3, 7, 1532, 8, 7, 1, 7, 3, 7, 1535, 8, 7, 1, 7, 1, 7, 3, 7, 1539, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1545, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1557, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1569, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1574, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1583, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1591, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1596, 8, 14, 3, 14, 1598, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1606, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1611, 8, 14, 1, 14, 1, 14, 3, 14, 1615, 8, 14, 1, 14, 3, 14, 1618, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1626, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1631, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1640, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1645, 8, 14, 1, 14, 3, 14, 1648, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1653, 8, 14, 1, 14, 1, 14, 3, 14, 1657, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1662, 8, 14, 3, 14, 1664, 8, 14, 1, 15, 1, 15, 3, 15, 1668, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1675, 8, 16, 10, 16, 12, 16, 1678, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1685, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1691, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1702, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1707, 8, 21, 10, 21, 12, 21, 1710, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1716, 8, 22, 10, 22, 12, 22, 1719, 9, 22, 1, 23, 1, 23, 3, 23, 1723, 8, 23, 1, 23, 3, 23, 1726, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1749, 8, 25, 10, 25, 12, 25, 1752, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1761, 8, 27, 10, 27, 12, 27, 1764, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1770, 8, 28, 1, 28, 3, 28, 1773, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1778, 8, 29, 10, 29, 12, 29, 1781, 9, 29, 1, 29, 3, 29, 1784, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1790, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1796, 8, 31, 10, 31, 12, 31, 1799, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1805, 8, 32, 1, 32, 3, 32, 1808, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1814, 8, 33, 10, 33, 12, 33, 1817, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1825, 8, 34, 10, 34, 12, 34, 1828, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1838, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1846, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1852, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1862, 8, 39, 11, 39, 12, 39, 1863, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1871, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1878, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1890, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1896, 8, 39, 10, 39, 12, 39, 1899, 9, 39, 1, 39, 5, 39, 1902, 8, 39, 10, 39, 12, 39, 1905, 9, 39, 1, 39, 5, 39, 1908, 8, 39, 10, 39, 12, 39, 1911, 9, 39, 3, 39, 1913, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1929, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1934, 8, 47, 10, 47, 12, 47, 1937, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1947, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1954, 8, 50, 10, 50, 12, 50, 1957, 9, 50, 3, 50, 1959, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1966, 8, 50, 10, 50, 12, 50, 1969, 9, 50, 3, 50, 1971, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1978, 8, 50, 10, 50, 12, 50, 1981, 9, 50, 3, 50, 1983, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1990, 8, 50, 10, 50, 12, 50, 1993, 9, 50, 3, 50, 1995, 8, 50, 1, 50, 3, 50, 1998, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 2003, 8, 50, 3, 50, 2005, 8, 50, 1, 50, 1, 50, 3, 50, 2009, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2026, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2032, 8, 52, 1, 52, 5, 52, 2035, 8, 52, 10, 52, 12, 52, 2038, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 2048, 8, 53, 10, 53, 12, 53, 2051, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2059, 8, 53, 1, 54, 1, 54, 3, 54, 2063, 8, 54, 1, 54, 3, 54, 2066, 8, 54, 1, 54, 1, 54, 3, 54, 2070, 8, 54, 1, 55, 1, 55, 4, 55, 2074, 8, 55, 11, 55, 12, 55, 2075, 1, 56, 1, 56, 3, 56, 2080, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2086, 8, 56, 10, 56, 12, 56, 2089, 9, 56, 1, 56, 3, 56, 2092, 8, 56, 1, 56, 3, 56, 2095, 8, 56, 1, 56, 3, 56, 2098, 8, 56, 1, 56, 3, 56, 2101, 8, 56, 1, 56, 1, 56, 3, 56, 2105, 8, 56, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 5, 57, 2112, 8, 57, 10, 57, 12, 57, 2115, 9, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 5, 57, 2134, 8, 57, 10, 57, 12, 57, 2137, 9, 57, 1, 57, 3, 57, 2140, 8, 57, 1, 57, 3, 57, 2143, 8, 57, 1, 57, 3, 57, 2146, 8, 57, 1, 57, 3, 57, 2149, 8, 57, 3, 57, 2151, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2157, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2164, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2169, 8, 58, 1, 58, 3, 58, 2172, 8, 58, 1, 58, 3, 58, 2175, 8, 58, 1, 58, 1, 58, 3, 58, 2179, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2189, 8, 58, 1, 58, 1, 58, 3, 58, 2193, 8, 58, 3, 58, 2195, 8, 58, 1, 58, 3, 58, 2198, 8, 58, 1, 58, 1, 58, 3, 58, 2202, 8, 58, 1, 59, 1, 59, 5, 59, 2206, 8, 59, 10, 59, 12, 59, 2209, 9, 59, 1, 59, 3, 59, 2212, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2223, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2233, 8, 62, 1, 62, 1, 62, 3, 62, 2237, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2249, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2261, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2274, 8, 65, 10, 65, 12, 65, 2277, 9, 65, 1, 65, 1, 65, 3, 65, 2281, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2287, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2292, 8, 67, 10, 67, 12, 67, 2295, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2310, 8, 71, 1, 71, 5, 71, 2313, 8, 71, 10, 71, 12, 71, 2316, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2326, 8, 72, 10, 72, 12, 72, 2329, 9, 72, 1, 72, 1, 72, 3, 72, 2333, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2339, 8, 73, 10, 73, 12, 73, 2342, 9, 73, 1, 73, 5, 73, 2345, 8, 73, 10, 73, 12, 73, 2348, 9, 73, 1, 73, 3, 73, 2351, 8, 73, 1, 73, 3, 73, 2354, 8, 73, 1, 74, 1, 74, 1, 75, 3, 75, 2359, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2366, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2372, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2379, 8, 76, 10, 76, 12, 76, 2382, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2389, 8, 76, 10, 76, 12, 76, 2392, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2404, 8, 76, 10, 76, 12, 76, 2407, 9, 76, 1, 76, 1, 76, 3, 76, 2411, 8, 76, 3, 76, 2413, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2418, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2425, 8, 78, 10, 78, 12, 78, 2428, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2438, 8, 78, 10, 78, 12, 78, 2441, 9, 78, 1, 78, 1, 78, 3, 78, 2445, 8, 78, 1, 79, 1, 79, 3, 79, 2449, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2456, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2461, 8, 80, 5, 80, 2463, 8, 80, 10, 80, 12, 80, 2466, 9, 80, 3, 80, 2468, 8, 80, 1, 80, 3, 80, 2471, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2483, 8, 81, 10, 81, 12, 81, 2486, 9, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2496, 8, 82, 10, 82, 12, 82, 2499, 9, 82, 1, 82, 1, 82, 3, 82, 2503, 8, 82, 1, 83, 1, 83, 3, 83, 2507, 8, 83, 1, 83, 3, 83, 2510, 8, 83, 1, 84, 1, 84, 3, 84, 2514, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2520, 8, 84, 1, 84, 3, 84, 2523, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2530, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2540, 8, 87, 10, 87, 12, 87, 2543, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2551, 8, 88, 10, 88, 12, 88, 2554, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2564, 8, 88, 10, 88, 12, 88, 2567, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 2575, 8, 89, 10, 89, 12, 89, 2578, 9, 89, 1, 89, 1, 89, 3, 89, 2582, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2590, 8, 92, 1, 93, 1, 93, 1, 94, 3, 94, 2595, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2609, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2616, 8, 97, 10, 97, 12, 97, 2619, 9, 97, 3, 97, 2621, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2626, 8, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2631, 8, 97, 10, 97, 12, 97, 2634, 9, 97, 3, 97, 2636, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 2642, 8, 99, 1, 99, 1, 99, 5, 99, 2646, 8, 99, 10, 99, 12, 99, 2649, 9, 99, 3, 99, 2651, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2656, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2661, 8, 101, 1, 101, 1, 101, 3, 101, 2665, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2671, 8, 101, 1, 101, 1, 101, 3, 101, 2675, 8, 101, 1, 102, 3, 102, 2678, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2683, 8, 102, 1, 102, 3, 102, 2686, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2691, 8, 102, 1, 102, 1, 102, 3, 102, 2695, 8, 102, 1, 102, 3, 102, 2698, 8, 102, 1, 102, 3, 102, 2701, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2707, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2712, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2719, 8, 104, 1, 105, 3, 105, 2722, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2740, 8, 105, 3, 105, 2742, 8, 105, 1, 105, 3, 105, 2745, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 2754, 8, 107, 10, 107, 12, 107, 2757, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2763, 8, 108, 10, 108, 12, 108, 2766, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 3, 109, 2772, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2778, 8, 110, 10, 110, 12, 110, 2781, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 2787, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2792, 8, 112, 1, 112, 3, 112, 2795, 8, 112, 1, 112, 3, 112, 2798, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2806, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2814, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2822, 8, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2830, 8, 114, 10, 114, 12, 114, 2833, 9, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2838, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2845, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2852, 8, 115, 3, 115, 2854, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 2865, 8, 116, 10, 116, 12, 116, 2868, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2873, 8, 116, 3, 116, 2875, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 2883, 8, 116, 10, 116, 12, 116, 2886, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2891, 8, 116, 3, 116, 2893, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 2901, 8, 118, 1, 119, 1, 119, 3, 119, 2905, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 2915, 8, 121, 10, 121, 12, 121, 2918, 9, 121, 3, 121, 2920, 8, 121, 1, 121, 1, 121, 1, 122, 3, 122, 2925, 8, 122, 1, 122, 1, 122, 3, 122, 2929, 8, 122, 3, 122, 2931, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2940, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2952, 8, 123, 3, 123, 2954, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2961, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2968, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2974, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2980, 8, 123, 3, 123, 2982, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2987, 8, 124, 10, 124, 12, 124, 2990, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2995, 8, 125, 10, 125, 12, 125, 2998, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 3003, 8, 126, 10, 126, 12, 126, 3006, 9, 126, 1, 127, 1, 127, 1, 127, 3, 127, 3011, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 3016, 8, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 3, 129, 3023, 8, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 5, 132, 3034, 8, 132, 10, 132, 12, 132, 3037, 9, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 3, 133, 3044, 8, 133, 1, 133, 3, 133, 3047, 8, 133, 1, 133, 1, 133, 3, 133, 3051, 8, 133, 3, 133, 3053, 8, 133, 1, 134, 1, 134, 1, 134, 5, 134, 3058, 8, 134, 10, 134, 12, 134, 3061, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 3069, 8, 136, 10, 136, 12, 136, 3072, 9, 136, 1, 136, 1, 136, 1, 137, 1, 137, 3, 137, 3078, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3086, 8, 138, 10, 138, 12, 138, 3089, 9, 138, 1, 138, 1, 138, 3, 138, 3093, 8, 138, 1, 139, 1, 139, 3, 139, 3097, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 3, 142, 3107, 8, 142, 1, 143, 1, 143, 1, 143, 5, 143, 3112, 8, 143, 10, 143, 12, 143, 3115, 9, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3127, 8, 144, 3, 144, 3129, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 3137, 8, 144, 10, 144, 12, 144, 3140, 9, 144, 1, 145, 3, 145, 3143, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3151, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3158, 8, 145, 10, 145, 12, 145, 3161, 9, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3166, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3174, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3179, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3189, 8, 145, 10, 145, 12, 145, 3192, 9, 145, 1, 145, 1, 145, 3, 145, 3196, 8, 145, 1, 145, 3, 145, 3199, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3205, 8, 145, 1, 145, 1, 145, 3, 145, 3209, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3214, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3219, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3224, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3230, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 3251, 8, 146, 10, 146, 12, 146, 3254, 9, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3264, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3276, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3286, 8, 148, 11, 148, 12, 148, 3287, 1, 148, 1, 148, 3, 148, 3292, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3299, 8, 148, 11, 148, 12, 148, 3300, 1, 148, 1, 148, 3, 148, 3305, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3321, 8, 148, 10, 148, 12, 148, 3324, 9, 148, 3, 148, 3326, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3334, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3343, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3352, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3373, 8, 148, 11, 148, 12, 148, 3374, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3391, 8, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3396, 8, 148, 10, 148, 12, 148, 3399, 9, 148, 3, 148, 3401, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3410, 8, 148, 1, 148, 1, 148, 3, 148, 3414, 8, 148, 1, 148, 1, 148, 3, 148, 3418, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3428, 8, 148, 11, 148, 12, 148, 3429, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3455, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3462, 8, 148, 1, 148, 3, 148, 3465, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3480, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3501, 8, 148, 1, 148, 1, 148, 3, 148, 3505, 8, 148, 3, 148, 3507, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3517, 8, 148, 10, 148, 12, 148, 3520, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3529, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 4, 150, 3542, 8, 150, 11, 150, 12, 150, 3543, 3, 150, 3546, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 3559, 8, 155, 1, 156, 1, 156, 3, 156, 3563, 8, 156, 1, 157, 1, 157, 1, 157, 4, 157, 3568, 8, 157, 11, 157, 12, 157, 3569, 1, 158, 1, 158, 1, 158, 3, 158, 3575, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 3, 160, 3583, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3588, 8, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 3, 163, 3597, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3629, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3646, 8, 165, 1, 165, 1, 165, 3, 165, 3650, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3656, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3662, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 3669, 8, 165, 10, 165, 12, 165, 3672, 9, 165, 1, 165, 3, 165, 3675, 8, 165, 3, 165, 3677, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3682, 8, 166, 10, 166, 12, 166, 3685, 9, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3690, 8, 167, 10, 167, 12, 167, 3693, 9, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3698, 8, 168, 10, 168, 12, 168, 3701, 9, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3706, 8, 169, 10, 169, 12, 169, 3709, 9, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3716, 8, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3727, 8, 173, 10, 173, 12, 173, 3730, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3736, 8, 174, 1, 174, 3, 174, 3739, 8, 174, 1, 175, 1, 175, 1, 175, 5, 175, 3744, 8, 175, 10, 175, 12, 175, 3747, 9, 175, 1, 176, 1, 176, 1, 176, 5, 176, 3752, 8, 176, 10, 176, 12, 176, 3755, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 3762, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 5, 179, 3774, 8, 179, 10, 179, 12, 179, 3777, 9, 179, 1, 180, 1, 180, 3, 180, 3781, 8, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3786, 8, 180, 1, 180, 3, 180, 3789, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 3800, 8, 182, 10, 182, 12, 182, 3803, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 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, 5, 185, 3824, 8, 185, 10, 185, 12, 185, 3827, 9, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 3834, 8, 185, 10, 185, 12, 185, 3837, 9, 185, 3, 185, 3839, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 3846, 8, 185, 10, 185, 12, 185, 3849, 9, 185, 3, 185, 3851, 8, 185, 3, 185, 3853, 8, 185, 1, 185, 3, 185, 3856, 8, 185, 1, 185, 3, 185, 3859, 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, 3, 186, 3877, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 3886, 8, 187, 1, 188, 1, 188, 1, 188, 5, 188, 3891, 8, 188, 10, 188, 12, 188, 3894, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3905, 8, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 5, 191, 3912, 8, 191, 10, 191, 12, 191, 3915, 9, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 4, 193, 3922, 8, 193, 11, 193, 12, 193, 3923, 1, 193, 3, 193, 3927, 8, 193, 1, 194, 1, 194, 3, 194, 3931, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 3937, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 3, 198, 3944, 8, 198, 1, 198, 1, 198, 3, 198, 3948, 8, 198, 1, 198, 1, 198, 3, 198, 3952, 8, 198, 1, 198, 1, 198, 3, 198, 3956, 8, 198, 1, 198, 1, 198, 3, 198, 3960, 8, 198, 1, 198, 1, 198, 3, 198, 3964, 8, 198, 1, 198, 1, 198, 3, 198, 3968, 8, 198, 1, 198, 1, 198, 3, 198, 3972, 8, 198, 1, 198, 1, 198, 3, 198, 3976, 8, 198, 1, 198, 1, 198, 3, 198, 3980, 8, 198, 1, 198, 3, 198, 3983, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 3996, 8, 199, 1, 200, 1, 200, 1, 201, 1, 201, 3, 201, 4002, 8, 201, 1, 202, 1, 202, 3, 202, 4006, 8, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 9, 1149, 1219, 1227, 1244, 1271, 1280, 1289, 1298, 1346, 4, 104, 288, 292, 296, 206, 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, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4626, 0, 415, 1, 0, 0, 0, 2, 420, 1, 0, 0, 0, 4, 1349, 1, 0, 0, 0, 6, 1353, 1, 0, 0, 0, 8, 1355, 1, 0, 0, 0, 10, 1357, 1, 0, 0, 0, 12, 1527, 1, 0, 0, 0, 14, 1529, 1, 0, 0, 0, 16, 1544, 1, 0, 0, 0, 18, 1550, 1, 0, 0, 0, 20, 1562, 1, 0, 0, 0, 22, 1575, 1, 0, 0, 0, 24, 1578, 1, 0, 0, 0, 26, 1582, 1, 0, 0, 0, 28, 1663, 1, 0, 0, 0, 30, 1665, 1, 0, 0, 0, 32, 1669, 1, 0, 0, 0, 34, 1690, 1, 0, 0, 0, 36, 1692, 1, 0, 0, 0, 38, 1694, 1, 0, 0, 0, 40, 1701, 1, 0, 0, 0, 42, 1703, 1, 0, 0, 0, 44, 1711, 1, 0, 0, 0, 46, 1720, 1, 0, 0, 0, 48, 1731, 1, 0, 0, 0, 50, 1750, 1, 0, 0, 0, 52, 1753, 1, 0, 0, 0, 54, 1756, 1, 0, 0, 0, 56, 1767, 1, 0, 0, 0, 58, 1783, 1, 0, 0, 0, 60, 1789, 1, 0, 0, 0, 62, 1791, 1, 0, 0, 0, 64, 1802, 1, 0, 0, 0, 66, 1809, 1, 0, 0, 0, 68, 1820, 1, 0, 0, 0, 70, 1837, 1, 0, 0, 0, 72, 1845, 1, 0, 0, 0, 74, 1847, 1, 0, 0, 0, 76, 1853, 1, 0, 0, 0, 78, 1912, 1, 0, 0, 0, 80, 1914, 1, 0, 0, 0, 82, 1916, 1, 0, 0, 0, 84, 1918, 1, 0, 0, 0, 86, 1920, 1, 0, 0, 0, 88, 1922, 1, 0, 0, 0, 90, 1924, 1, 0, 0, 0, 92, 1928, 1, 0, 0, 0, 94, 1930, 1, 0, 0, 0, 96, 1938, 1, 0, 0, 0, 98, 1946, 1, 0, 0, 0, 100, 1958, 1, 0, 0, 0, 102, 2010, 1, 0, 0, 0, 104, 2013, 1, 0, 0, 0, 106, 2058, 1, 0, 0, 0, 108, 2062, 1, 0, 0, 0, 110, 2071, 1, 0, 0, 0, 112, 2104, 1, 0, 0, 0, 114, 2150, 1, 0, 0, 0, 116, 2171, 1, 0, 0, 0, 118, 2203, 1, 0, 0, 0, 120, 2215, 1, 0, 0, 0, 122, 2218, 1, 0, 0, 0, 124, 2227, 1, 0, 0, 0, 126, 2241, 1, 0, 0, 0, 128, 2260, 1, 0, 0, 0, 130, 2280, 1, 0, 0, 0, 132, 2286, 1, 0, 0, 0, 134, 2288, 1, 0, 0, 0, 136, 2296, 1, 0, 0, 0, 138, 2300, 1, 0, 0, 0, 140, 2303, 1, 0, 0, 0, 142, 2306, 1, 0, 0, 0, 144, 2332, 1, 0, 0, 0, 146, 2334, 1, 0, 0, 0, 148, 2355, 1, 0, 0, 0, 150, 2371, 1, 0, 0, 0, 152, 2412, 1, 0, 0, 0, 154, 2417, 1, 0, 0, 0, 156, 2444, 1, 0, 0, 0, 158, 2448, 1, 0, 0, 0, 160, 2470, 1, 0, 0, 0, 162, 2472, 1, 0, 0, 0, 164, 2502, 1, 0, 0, 0, 166, 2504, 1, 0, 0, 0, 168, 2511, 1, 0, 0, 0, 170, 2524, 1, 0, 0, 0, 172, 2529, 1, 0, 0, 0, 174, 2531, 1, 0, 0, 0, 176, 2546, 1, 0, 0, 0, 178, 2570, 1, 0, 0, 0, 180, 2583, 1, 0, 0, 0, 182, 2585, 1, 0, 0, 0, 184, 2587, 1, 0, 0, 0, 186, 2591, 1, 0, 0, 0, 188, 2594, 1, 0, 0, 0, 190, 2598, 1, 0, 0, 0, 192, 2602, 1, 0, 0, 0, 194, 2605, 1, 0, 0, 0, 196, 2637, 1, 0, 0, 0, 198, 2650, 1, 0, 0, 0, 200, 2655, 1, 0, 0, 0, 202, 2674, 1, 0, 0, 0, 204, 2700, 1, 0, 0, 0, 206, 2706, 1, 0, 0, 0, 208, 2708, 1, 0, 0, 0, 210, 2744, 1, 0, 0, 0, 212, 2746, 1, 0, 0, 0, 214, 2750, 1, 0, 0, 0, 216, 2758, 1, 0, 0, 0, 218, 2769, 1, 0, 0, 0, 220, 2773, 1, 0, 0, 0, 222, 2784, 1, 0, 0, 0, 224, 2821, 1, 0, 0, 0, 226, 2823, 1, 0, 0, 0, 228, 2825, 1, 0, 0, 0, 230, 2853, 1, 0, 0, 0, 232, 2874, 1, 0, 0, 0, 234, 2894, 1, 0, 0, 0, 236, 2900, 1, 0, 0, 0, 238, 2904, 1, 0, 0, 0, 240, 2906, 1, 0, 0, 0, 242, 2909, 1, 0, 0, 0, 244, 2930, 1, 0, 0, 0, 246, 2981, 1, 0, 0, 0, 248, 2983, 1, 0, 0, 0, 250, 2991, 1, 0, 0, 0, 252, 2999, 1, 0, 0, 0, 254, 3007, 1, 0, 0, 0, 256, 3015, 1, 0, 0, 0, 258, 3022, 1, 0, 0, 0, 260, 3026, 1, 0, 0, 0, 262, 3028, 1, 0, 0, 0, 264, 3035, 1, 0, 0, 0, 266, 3043, 1, 0, 0, 0, 268, 3054, 1, 0, 0, 0, 270, 3062, 1, 0, 0, 0, 272, 3064, 1, 0, 0, 0, 274, 3077, 1, 0, 0, 0, 276, 3092, 1, 0, 0, 0, 278, 3096, 1, 0, 0, 0, 280, 3098, 1, 0, 0, 0, 282, 3100, 1, 0, 0, 0, 284, 3106, 1, 0, 0, 0, 286, 3108, 1, 0, 0, 0, 288, 3128, 1, 0, 0, 0, 290, 3223, 1, 0, 0, 0, 292, 3229, 1, 0, 0, 0, 294, 3255, 1, 0, 0, 0, 296, 3506, 1, 0, 0, 0, 298, 3528, 1, 0, 0, 0, 300, 3545, 1, 0, 0, 0, 302, 3547, 1, 0, 0, 0, 304, 3549, 1, 0, 0, 0, 306, 3551, 1, 0, 0, 0, 308, 3553, 1, 0, 0, 0, 310, 3555, 1, 0, 0, 0, 312, 3560, 1, 0, 0, 0, 314, 3567, 1, 0, 0, 0, 316, 3571, 1, 0, 0, 0, 318, 3576, 1, 0, 0, 0, 320, 3582, 1, 0, 0, 0, 322, 3589, 1, 0, 0, 0, 324, 3591, 1, 0, 0, 0, 326, 3596, 1, 0, 0, 0, 328, 3628, 1, 0, 0, 0, 330, 3676, 1, 0, 0, 0, 332, 3678, 1, 0, 0, 0, 334, 3686, 1, 0, 0, 0, 336, 3694, 1, 0, 0, 0, 338, 3702, 1, 0, 0, 0, 340, 3715, 1, 0, 0, 0, 342, 3717, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3723, 1, 0, 0, 0, 348, 3731, 1, 0, 0, 0, 350, 3740, 1, 0, 0, 0, 352, 3748, 1, 0, 0, 0, 354, 3761, 1, 0, 0, 0, 356, 3763, 1, 0, 0, 0, 358, 3770, 1, 0, 0, 0, 360, 3778, 1, 0, 0, 0, 362, 3790, 1, 0, 0, 0, 364, 3795, 1, 0, 0, 0, 366, 3804, 1, 0, 0, 0, 368, 3808, 1, 0, 0, 0, 370, 3858, 1, 0, 0, 0, 372, 3876, 1, 0, 0, 0, 374, 3885, 1, 0, 0, 0, 376, 3887, 1, 0, 0, 0, 378, 3904, 1, 0, 0, 0, 380, 3906, 1, 0, 0, 0, 382, 3908, 1, 0, 0, 0, 384, 3916, 1, 0, 0, 0, 386, 3926, 1, 0, 0, 0, 388, 3930, 1, 0, 0, 0, 390, 3936, 1, 0, 0, 0, 392, 3938, 1, 0, 0, 0, 394, 3940, 1, 0, 0, 0, 396, 3982, 1, 0, 0, 0, 398, 3995, 1, 0, 0, 0, 400, 3997, 1, 0, 0, 0, 402, 4001, 1, 0, 0, 0, 404, 4005, 1, 0, 0, 0, 406, 4007, 1, 0, 0, 0, 408, 4009, 1, 0, 0, 0, 410, 4011, 1, 0, 0, 0, 412, 414, 3, 2, 1, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 0, 0, 1, 419, 1, 1, 0, 0, 0, 420, 422, 3, 4, 2, 0, 421, 423, 5, 1, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 3, 1, 0, 0, 0, 424, 1350, 3, 26, 13, 0, 425, 427, 3, 44, 22, 0, 426, 425, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 1350, 3, 78, 39, 0, 429, 431, 5, 330, 0, 0, 430, 432, 3, 36, 18, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 1350, 3, 80, 40, 0, 434, 435, 5, 269, 0, 0, 435, 438, 5, 37, 0, 0, 436, 439, 3, 388, 194, 0, 437, 439, 3, 400, 200, 0, 438, 436, 1, 0, 0, 0, 438, 437, 1, 0, 0, 0, 439, 1350, 1, 0, 0, 0, 440, 441, 5, 59, 0, 0, 441, 443, 3, 36, 18, 0, 442, 444, 3, 190, 95, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 453, 3, 82, 41, 0, 446, 452, 3, 24, 12, 0, 447, 452, 3, 22, 11, 0, 448, 449, 5, 346, 0, 0, 449, 450, 7, 0, 0, 0, 450, 452, 3, 54, 27, 0, 451, 446, 1, 0, 0, 0, 451, 447, 1, 0, 0, 0, 451, 448, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 1350, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 457, 5, 11, 0, 0, 457, 458, 3, 36, 18, 0, 458, 459, 3, 80, 40, 0, 459, 460, 5, 269, 0, 0, 460, 461, 7, 0, 0, 0, 461, 462, 3, 54, 27, 0, 462, 1350, 1, 0, 0, 0, 463, 464, 5, 11, 0, 0, 464, 465, 3, 36, 18, 0, 465, 466, 3, 80, 40, 0, 466, 467, 5, 269, 0, 0, 467, 468, 3, 22, 11, 0, 468, 1350, 1, 0, 0, 0, 469, 470, 5, 96, 0, 0, 470, 472, 3, 36, 18, 0, 471, 473, 3, 192, 96, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 3, 80, 40, 0, 475, 477, 7, 1, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1350, 1, 0, 0, 0, 478, 479, 5, 273, 0, 0, 479, 482, 3, 38, 19, 0, 480, 481, 7, 2, 0, 0, 481, 483, 3, 250, 125, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 488, 1, 0, 0, 0, 484, 486, 5, 163, 0, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 489, 3, 400, 200, 0, 488, 485, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 1350, 1, 0, 0, 0, 490, 495, 3, 14, 7, 0, 491, 492, 5, 2, 0, 0, 492, 493, 3, 350, 175, 0, 493, 494, 5, 3, 0, 0, 494, 496, 1, 0, 0, 0, 495, 491, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 498, 1, 0, 0, 0, 497, 499, 3, 48, 24, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 505, 3, 50, 25, 0, 501, 503, 5, 20, 0, 0, 502, 501, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 506, 3, 26, 13, 0, 505, 502, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 1350, 1, 0, 0, 0, 507, 508, 5, 59, 0, 0, 508, 510, 5, 293, 0, 0, 509, 511, 3, 190, 95, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 3, 84, 42, 0, 513, 514, 5, 163, 0, 0, 514, 524, 3, 86, 43, 0, 515, 523, 3, 48, 24, 0, 516, 523, 3, 246, 123, 0, 517, 523, 3, 70, 35, 0, 518, 523, 3, 22, 11, 0, 519, 520, 5, 297, 0, 0, 520, 523, 3, 54, 27, 0, 521, 523, 3, 52, 26, 0, 522, 515, 1, 0, 0, 0, 522, 516, 1, 0, 0, 0, 522, 517, 1, 0, 0, 0, 522, 518, 1, 0, 0, 0, 522, 519, 1, 0, 0, 0, 522, 521, 1, 0, 0, 0, 523, 526, 1, 0, 0, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 1350, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 527, 532, 3, 16, 8, 0, 528, 529, 5, 2, 0, 0, 529, 530, 3, 350, 175, 0, 530, 531, 5, 3, 0, 0, 531, 533, 1, 0, 0, 0, 532, 528, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 535, 1, 0, 0, 0, 534, 536, 3, 48, 24, 0, 535, 534, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 542, 3, 50, 25, 0, 538, 540, 5, 20, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 543, 3, 26, 13, 0, 542, 539, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 1350, 1, 0, 0, 0, 544, 545, 5, 13, 0, 0, 545, 546, 5, 293, 0, 0, 546, 548, 3, 86, 43, 0, 547, 549, 3, 32, 16, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 55, 0, 0, 551, 559, 5, 282, 0, 0, 552, 560, 5, 196, 0, 0, 553, 554, 5, 119, 0, 0, 554, 555, 5, 50, 0, 0, 555, 560, 3, 94, 47, 0, 556, 557, 5, 119, 0, 0, 557, 558, 5, 10, 0, 0, 558, 560, 5, 50, 0, 0, 559, 552, 1, 0, 0, 0, 559, 553, 1, 0, 0, 0, 559, 556, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 1350, 1, 0, 0, 0, 561, 562, 5, 13, 0, 0, 562, 565, 5, 294, 0, 0, 563, 564, 7, 2, 0, 0, 564, 566, 3, 80, 40, 0, 565, 563, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 5, 55, 0, 0, 568, 570, 5, 282, 0, 0, 569, 571, 5, 196, 0, 0, 570, 569, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 1350, 1, 0, 0, 0, 572, 573, 5, 11, 0, 0, 573, 574, 5, 293, 0, 0, 574, 575, 3, 86, 43, 0, 575, 576, 5, 8, 0, 0, 576, 577, 5, 49, 0, 0, 577, 578, 3, 334, 167, 0, 578, 1350, 1, 0, 0, 0, 579, 580, 5, 11, 0, 0, 580, 581, 5, 293, 0, 0, 581, 582, 3, 86, 43, 0, 582, 583, 5, 8, 0, 0, 583, 584, 5, 50, 0, 0, 584, 585, 5, 2, 0, 0, 585, 586, 3, 332, 166, 0, 586, 587, 5, 3, 0, 0, 587, 1350, 1, 0, 0, 0, 588, 589, 5, 11, 0, 0, 589, 590, 5, 293, 0, 0, 590, 591, 3, 86, 43, 0, 591, 592, 5, 241, 0, 0, 592, 593, 5, 49, 0, 0, 593, 594, 3, 92, 46, 0, 594, 595, 5, 309, 0, 0, 595, 596, 3, 96, 48, 0, 596, 1350, 1, 0, 0, 0, 597, 598, 5, 11, 0, 0, 598, 599, 5, 293, 0, 0, 599, 600, 3, 86, 43, 0, 600, 601, 5, 96, 0, 0, 601, 603, 5, 49, 0, 0, 602, 604, 3, 192, 96, 0, 603, 602, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 3, 92, 46, 0, 606, 1350, 1, 0, 0, 0, 607, 608, 5, 11, 0, 0, 608, 609, 5, 293, 0, 0, 609, 610, 3, 86, 43, 0, 610, 611, 5, 96, 0, 0, 611, 613, 5, 50, 0, 0, 612, 614, 3, 192, 96, 0, 613, 612, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 5, 2, 0, 0, 616, 617, 3, 94, 47, 0, 617, 618, 5, 3, 0, 0, 618, 1350, 1, 0, 0, 0, 619, 624, 5, 11, 0, 0, 620, 621, 5, 293, 0, 0, 621, 625, 3, 86, 43, 0, 622, 623, 5, 338, 0, 0, 623, 625, 3, 90, 45, 0, 624, 620, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 5, 241, 0, 0, 627, 628, 5, 309, 0, 0, 628, 629, 3, 250, 125, 0, 629, 1350, 1, 0, 0, 0, 630, 635, 5, 11, 0, 0, 631, 632, 5, 293, 0, 0, 632, 636, 3, 86, 43, 0, 633, 634, 5, 338, 0, 0, 634, 636, 3, 90, 45, 0, 635, 631, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 5, 269, 0, 0, 638, 639, 5, 297, 0, 0, 639, 640, 3, 54, 27, 0, 640, 1350, 1, 0, 0, 0, 641, 646, 5, 11, 0, 0, 642, 643, 5, 293, 0, 0, 643, 647, 3, 86, 43, 0, 644, 645, 5, 338, 0, 0, 645, 647, 3, 90, 45, 0, 646, 642, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 5, 328, 0, 0, 649, 651, 5, 297, 0, 0, 650, 652, 3, 192, 96, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 3, 54, 27, 0, 654, 1350, 1, 0, 0, 0, 655, 656, 5, 11, 0, 0, 656, 657, 5, 293, 0, 0, 657, 658, 3, 86, 43, 0, 658, 660, 7, 3, 0, 0, 659, 661, 5, 49, 0, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 664, 3, 92, 46, 0, 663, 665, 3, 398, 199, 0, 664, 663, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 1350, 1, 0, 0, 0, 666, 667, 5, 11, 0, 0, 667, 668, 5, 293, 0, 0, 668, 670, 3, 86, 43, 0, 669, 671, 3, 32, 16, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 674, 5, 39, 0, 0, 673, 675, 5, 49, 0, 0, 674, 673, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 3, 92, 46, 0, 677, 679, 3, 348, 174, 0, 678, 680, 3, 326, 163, 0, 679, 678, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 1350, 1, 0, 0, 0, 681, 682, 5, 11, 0, 0, 682, 683, 5, 293, 0, 0, 683, 685, 3, 86, 43, 0, 684, 686, 3, 32, 16, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 244, 0, 0, 688, 689, 5, 50, 0, 0, 689, 690, 5, 2, 0, 0, 690, 691, 3, 336, 168, 0, 691, 692, 5, 3, 0, 0, 692, 1350, 1, 0, 0, 0, 693, 694, 5, 11, 0, 0, 694, 695, 5, 293, 0, 0, 695, 697, 3, 86, 43, 0, 696, 698, 3, 32, 16, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 269, 0, 0, 700, 701, 5, 266, 0, 0, 701, 705, 3, 400, 200, 0, 702, 703, 5, 346, 0, 0, 703, 704, 5, 267, 0, 0, 704, 706, 3, 54, 27, 0, 705, 702, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 1350, 1, 0, 0, 0, 707, 708, 5, 11, 0, 0, 708, 709, 5, 293, 0, 0, 709, 711, 3, 86, 43, 0, 710, 712, 3, 32, 16, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 269, 0, 0, 714, 715, 5, 267, 0, 0, 715, 716, 3, 54, 27, 0, 716, 1350, 1, 0, 0, 0, 717, 722, 5, 11, 0, 0, 718, 719, 5, 293, 0, 0, 719, 723, 3, 86, 43, 0, 720, 721, 5, 338, 0, 0, 721, 723, 3, 90, 45, 0, 722, 718, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 726, 5, 8, 0, 0, 725, 727, 3, 190, 95, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 729, 1, 0, 0, 0, 728, 730, 3, 30, 15, 0, 729, 728, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 1350, 1, 0, 0, 0, 733, 734, 5, 11, 0, 0, 734, 735, 5, 293, 0, 0, 735, 736, 3, 86, 43, 0, 736, 737, 3, 32, 16, 0, 737, 738, 5, 241, 0, 0, 738, 739, 5, 309, 0, 0, 739, 740, 3, 32, 16, 0, 740, 1350, 1, 0, 0, 0, 741, 746, 5, 11, 0, 0, 742, 743, 5, 293, 0, 0, 743, 747, 3, 86, 43, 0, 744, 745, 5, 338, 0, 0, 745, 747, 3, 90, 45, 0, 746, 742, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 750, 5, 96, 0, 0, 749, 751, 3, 192, 96, 0, 750, 749, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 757, 3, 32, 16, 0, 753, 754, 5, 4, 0, 0, 754, 756, 3, 32, 16, 0, 755, 753, 1, 0, 0, 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 761, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 760, 762, 5, 230, 0, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 1350, 1, 0, 0, 0, 763, 764, 5, 11, 0, 0, 764, 765, 5, 293, 0, 0, 765, 767, 3, 86, 43, 0, 766, 768, 3, 32, 16, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 770, 5, 269, 0, 0, 770, 771, 3, 22, 11, 0, 771, 1350, 1, 0, 0, 0, 772, 773, 5, 11, 0, 0, 773, 774, 5, 293, 0, 0, 774, 775, 3, 86, 43, 0, 775, 776, 5, 237, 0, 0, 776, 777, 5, 219, 0, 0, 777, 1350, 1, 0, 0, 0, 778, 779, 5, 11, 0, 0, 779, 780, 5, 176, 0, 0, 780, 781, 5, 338, 0, 0, 781, 782, 3, 90, 45, 0, 782, 783, 7, 4, 0, 0, 783, 784, 5, 248, 0, 0, 784, 1350, 1, 0, 0, 0, 785, 786, 5, 11, 0, 0, 786, 787, 5, 176, 0, 0, 787, 788, 5, 338, 0, 0, 788, 789, 3, 90, 45, 0, 789, 790, 5, 269, 0, 0, 790, 791, 5, 297, 0, 0, 791, 792, 3, 54, 27, 0, 792, 1350, 1, 0, 0, 0, 793, 794, 5, 96, 0, 0, 794, 796, 5, 293, 0, 0, 795, 797, 3, 192, 96, 0, 796, 795, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 800, 3, 86, 43, 0, 799, 801, 5, 230, 0, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 1350, 1, 0, 0, 0, 802, 803, 5, 96, 0, 0, 803, 805, 5, 338, 0, 0, 804, 806, 3, 192, 96, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 1350, 3, 90, 45, 0, 808, 809, 5, 96, 0, 0, 809, 810, 5, 176, 0, 0, 810, 812, 5, 338, 0, 0, 811, 813, 3, 192, 96, 0, 812, 811, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 1350, 3, 90, 45, 0, 815, 818, 5, 59, 0, 0, 816, 817, 5, 208, 0, 0, 817, 819, 5, 244, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 824, 1, 0, 0, 0, 820, 822, 5, 128, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 825, 5, 298, 0, 0, 824, 821, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 5, 338, 0, 0, 827, 829, 3, 190, 95, 0, 828, 827, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 832, 3, 88, 44, 0, 831, 833, 3, 220, 110, 0, 832, 831, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 842, 1, 0, 0, 0, 834, 841, 3, 24, 12, 0, 835, 836, 5, 218, 0, 0, 836, 837, 5, 203, 0, 0, 837, 841, 3, 212, 106, 0, 838, 839, 5, 297, 0, 0, 839, 841, 3, 54, 27, 0, 840, 834, 1, 0, 0, 0, 840, 835, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 846, 5, 20, 0, 0, 846, 847, 3, 26, 13, 0, 847, 1350, 1, 0, 0, 0, 848, 851, 5, 59, 0, 0, 849, 850, 5, 208, 0, 0, 850, 852, 5, 244, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 855, 5, 128, 0, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 5, 298, 0, 0, 857, 858, 5, 338, 0, 0, 858, 863, 3, 88, 44, 0, 859, 860, 5, 2, 0, 0, 860, 861, 3, 346, 173, 0, 861, 862, 5, 3, 0, 0, 862, 864, 1, 0, 0, 0, 863, 859, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 868, 3, 48, 24, 0, 866, 867, 5, 207, 0, 0, 867, 869, 3, 54, 27, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 1350, 1, 0, 0, 0, 870, 871, 5, 11, 0, 0, 871, 872, 5, 338, 0, 0, 872, 874, 3, 90, 45, 0, 873, 875, 5, 20, 0, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 3, 26, 13, 0, 877, 1350, 1, 0, 0, 0, 878, 881, 5, 59, 0, 0, 879, 880, 5, 208, 0, 0, 880, 882, 5, 244, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 885, 5, 298, 0, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 125, 0, 0, 887, 889, 3, 190, 95, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 3, 380, 190, 0, 891, 892, 5, 20, 0, 0, 892, 902, 3, 400, 200, 0, 893, 894, 5, 332, 0, 0, 894, 899, 3, 76, 38, 0, 895, 896, 5, 4, 0, 0, 896, 898, 3, 76, 38, 0, 897, 895, 1, 0, 0, 0, 898, 901, 1, 0, 0, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 902, 893, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 1350, 1, 0, 0, 0, 904, 905, 5, 59, 0, 0, 905, 906, 5, 176, 0, 0, 906, 908, 5, 338, 0, 0, 907, 909, 3, 190, 95, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 3, 88, 44, 0, 911, 913, 3, 48, 24, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 929, 1, 0, 0, 0, 914, 915, 5, 207, 0, 0, 915, 928, 3, 54, 27, 0, 916, 917, 5, 218, 0, 0, 917, 918, 5, 31, 0, 0, 918, 928, 3, 272, 136, 0, 919, 928, 3, 20, 10, 0, 920, 928, 3, 18, 9, 0, 921, 928, 3, 246, 123, 0, 922, 928, 3, 70, 35, 0, 923, 928, 3, 22, 11, 0, 924, 928, 3, 24, 12, 0, 925, 926, 5, 297, 0, 0, 926, 928, 3, 54, 27, 0, 927, 914, 1, 0, 0, 0, 927, 916, 1, 0, 0, 0, 927, 919, 1, 0, 0, 0, 927, 920, 1, 0, 0, 0, 927, 921, 1, 0, 0, 0, 927, 922, 1, 0, 0, 0, 927, 923, 1, 0, 0, 0, 927, 924, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 929, 1, 0, 0, 0, 932, 933, 5, 20, 0, 0, 933, 934, 3, 26, 13, 0, 934, 1350, 1, 0, 0, 0, 935, 937, 5, 96, 0, 0, 936, 938, 5, 298, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 941, 5, 125, 0, 0, 940, 942, 3, 192, 96, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 1350, 3, 378, 189, 0, 944, 947, 5, 81, 0, 0, 945, 946, 5, 208, 0, 0, 946, 948, 5, 244, 0, 0, 947, 945, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 950, 1, 0, 0, 0, 949, 951, 5, 336, 0, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 954, 3, 378, 189, 0, 953, 955, 3, 330, 165, 0, 954, 953, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 957, 1, 0, 0, 0, 956, 958, 3, 344, 172, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 1350, 1, 0, 0, 0, 959, 960, 5, 96, 0, 0, 960, 961, 5, 298, 0, 0, 961, 963, 5, 336, 0, 0, 962, 964, 3, 192, 96, 0, 963, 962, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 968, 1, 0, 0, 0, 965, 969, 3, 86, 43, 0, 966, 969, 3, 90, 45, 0, 967, 969, 3, 378, 189, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 1350, 1, 0, 0, 0, 970, 972, 5, 106, 0, 0, 971, 973, 7, 5, 0, 0, 972, 971, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1350, 3, 4, 2, 0, 975, 976, 5, 273, 0, 0, 976, 979, 5, 294, 0, 0, 977, 978, 7, 2, 0, 0, 978, 980, 3, 80, 40, 0, 979, 977, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 985, 1, 0, 0, 0, 981, 983, 5, 163, 0, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 986, 3, 400, 200, 0, 985, 982, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1350, 1, 0, 0, 0, 987, 988, 5, 273, 0, 0, 988, 989, 5, 293, 0, 0, 989, 992, 5, 108, 0, 0, 990, 991, 7, 2, 0, 0, 991, 993, 3, 80, 40, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 5, 163, 0, 0, 995, 997, 3, 400, 200, 0, 996, 998, 3, 32, 16, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1350, 1, 0, 0, 0, 999, 1000, 5, 273, 0, 0, 1000, 1001, 5, 297, 0, 0, 1001, 1006, 3, 86, 43, 0, 1002, 1003, 5, 2, 0, 0, 1003, 1004, 3, 58, 29, 0, 1004, 1005, 5, 3, 0, 0, 1005, 1007, 1, 0, 0, 0, 1006, 1002, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1350, 1, 0, 0, 0, 1008, 1009, 5, 273, 0, 0, 1009, 1010, 5, 50, 0, 0, 1010, 1011, 7, 2, 0, 0, 1011, 1014, 3, 86, 43, 0, 1012, 1013, 7, 2, 0, 0, 1013, 1015, 3, 80, 40, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1350, 1, 0, 0, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1020, 5, 339, 0, 0, 1018, 1019, 7, 2, 0, 0, 1019, 1021, 3, 80, 40, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1026, 1, 0, 0, 0, 1022, 1024, 5, 163, 0, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 3, 400, 200, 0, 1026, 1023, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1350, 1, 0, 0, 0, 1028, 1029, 5, 273, 0, 0, 1029, 1030, 5, 219, 0, 0, 1030, 1032, 3, 86, 43, 0, 1031, 1033, 3, 32, 16, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1350, 1, 0, 0, 0, 1034, 1036, 5, 273, 0, 0, 1035, 1037, 3, 148, 74, 0, 1036, 1035, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1041, 5, 126, 0, 0, 1039, 1040, 7, 2, 0, 0, 1040, 1042, 3, 80, 40, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1050, 1, 0, 0, 0, 1043, 1045, 5, 163, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1049, 3, 250, 125, 0, 1047, 1049, 3, 400, 200, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1047, 1, 0, 0, 0, 1049, 1051, 1, 0, 0, 0, 1050, 1044, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1350, 1, 0, 0, 0, 1052, 1053, 5, 273, 0, 0, 1053, 1054, 5, 59, 0, 0, 1054, 1055, 5, 293, 0, 0, 1055, 1058, 3, 86, 43, 0, 1056, 1057, 5, 20, 0, 0, 1057, 1059, 5, 266, 0, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1350, 1, 0, 0, 0, 1060, 1061, 5, 273, 0, 0, 1061, 1062, 5, 62, 0, 0, 1062, 1350, 3, 36, 18, 0, 1063, 1064, 5, 273, 0, 0, 1064, 1069, 5, 38, 0, 0, 1065, 1067, 5, 163, 0, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 3, 400, 200, 0, 1069, 1066, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1350, 1, 0, 0, 0, 1071, 1072, 5, 273, 0, 0, 1072, 1073, 5, 176, 0, 0, 1073, 1076, 5, 339, 0, 0, 1074, 1075, 7, 2, 0, 0, 1075, 1077, 3, 80, 40, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1082, 1, 0, 0, 0, 1078, 1080, 5, 163, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 3, 400, 200, 0, 1082, 1079, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1350, 1, 0, 0, 0, 1084, 1085, 5, 273, 0, 0, 1085, 1086, 5, 59, 0, 0, 1086, 1087, 5, 176, 0, 0, 1087, 1088, 5, 338, 0, 0, 1088, 1091, 3, 90, 45, 0, 1089, 1090, 5, 20, 0, 0, 1090, 1092, 5, 266, 0, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1350, 1, 0, 0, 0, 1093, 1094, 7, 6, 0, 0, 1094, 1096, 5, 125, 0, 0, 1095, 1097, 5, 108, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1350, 3, 40, 20, 0, 1099, 1100, 7, 6, 0, 0, 1100, 1102, 5, 72, 0, 0, 1101, 1103, 5, 108, 0, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1350, 3, 80, 40, 0, 1105, 1107, 7, 6, 0, 0, 1106, 1108, 5, 293, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1111, 7, 7, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 3, 86, 43, 0, 1113, 1115, 3, 32, 16, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1118, 3, 42, 21, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1350, 1, 0, 0, 0, 1119, 1121, 7, 6, 0, 0, 1120, 1122, 5, 232, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1350, 3, 26, 13, 0, 1124, 1125, 5, 51, 0, 0, 1125, 1126, 5, 203, 0, 0, 1126, 1127, 3, 36, 18, 0, 1127, 1128, 3, 80, 40, 0, 1128, 1129, 5, 153, 0, 0, 1129, 1130, 3, 402, 201, 0, 1130, 1350, 1, 0, 0, 0, 1131, 1132, 5, 51, 0, 0, 1132, 1133, 5, 203, 0, 0, 1133, 1134, 5, 293, 0, 0, 1134, 1135, 3, 86, 43, 0, 1135, 1136, 5, 153, 0, 0, 1136, 1137, 3, 402, 201, 0, 1137, 1350, 1, 0, 0, 0, 1138, 1139, 5, 240, 0, 0, 1139, 1140, 5, 293, 0, 0, 1140, 1350, 3, 86, 43, 0, 1141, 1142, 5, 240, 0, 0, 1142, 1143, 5, 125, 0, 0, 1143, 1350, 3, 378, 189, 0, 1144, 1152, 5, 240, 0, 0, 1145, 1153, 3, 400, 200, 0, 1146, 1148, 9, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 1151, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1150, 1153, 1, 0, 0, 0, 1151, 1149, 1, 0, 0, 0, 1152, 1145, 1, 0, 0, 0, 1152, 1149, 1, 0, 0, 0, 1153, 1350, 1, 0, 0, 0, 1154, 1155, 5, 240, 0, 0, 1155, 1156, 5, 176, 0, 0, 1156, 1157, 5, 338, 0, 0, 1157, 1350, 3, 90, 45, 0, 1158, 1160, 5, 33, 0, 0, 1159, 1161, 5, 159, 0, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 5, 293, 0, 0, 1163, 1166, 3, 86, 43, 0, 1164, 1165, 5, 207, 0, 0, 1165, 1167, 3, 54, 27, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1172, 1, 0, 0, 0, 1168, 1170, 5, 20, 0, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 3, 26, 13, 0, 1172, 1169, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1350, 1, 0, 0, 0, 1174, 1175, 5, 322, 0, 0, 1175, 1177, 5, 293, 0, 0, 1176, 1178, 3, 192, 96, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1350, 3, 86, 43, 0, 1180, 1181, 5, 43, 0, 0, 1181, 1350, 5, 33, 0, 0, 1182, 1183, 5, 168, 0, 0, 1183, 1185, 5, 70, 0, 0, 1184, 1186, 5, 169, 0, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1188, 5, 145, 0, 0, 1188, 1190, 3, 400, 200, 0, 1189, 1191, 5, 216, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 152, 0, 0, 1193, 1194, 5, 293, 0, 0, 1194, 1196, 3, 86, 43, 0, 1195, 1197, 3, 32, 16, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1350, 1, 0, 0, 0, 1198, 1199, 5, 317, 0, 0, 1199, 1200, 5, 293, 0, 0, 1200, 1202, 3, 86, 43, 0, 1201, 1203, 3, 32, 16, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1350, 1, 0, 0, 0, 1204, 1206, 5, 188, 0, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 5, 242, 0, 0, 1208, 1209, 5, 293, 0, 0, 1209, 1212, 3, 86, 43, 0, 1210, 1211, 7, 8, 0, 0, 1211, 1213, 5, 219, 0, 0, 1212, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1350, 1, 0, 0, 0, 1214, 1215, 7, 9, 0, 0, 1215, 1219, 3, 388, 194, 0, 1216, 1218, 9, 0, 0, 0, 1217, 1216, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1220, 1350, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1223, 5, 269, 0, 0, 1223, 1227, 5, 253, 0, 0, 1224, 1226, 9, 0, 0, 0, 1225, 1224, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1350, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 5, 301, 0, 0, 1232, 1233, 5, 350, 0, 0, 1233, 1350, 3, 310, 155, 0, 1234, 1235, 5, 269, 0, 0, 1235, 1236, 5, 301, 0, 0, 1236, 1237, 5, 350, 0, 0, 1237, 1350, 3, 6, 3, 0, 1238, 1239, 5, 269, 0, 0, 1239, 1240, 5, 301, 0, 0, 1240, 1244, 5, 350, 0, 0, 1241, 1243, 9, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1350, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1248, 5, 269, 0, 0, 1248, 1249, 7, 10, 0, 0, 1249, 1350, 3, 134, 67, 0, 1250, 1251, 5, 269, 0, 0, 1251, 1252, 7, 10, 0, 0, 1252, 1253, 5, 2, 0, 0, 1253, 1254, 3, 248, 124, 0, 1254, 1255, 5, 3, 0, 0, 1255, 1256, 5, 352, 0, 0, 1256, 1257, 5, 2, 0, 0, 1257, 1258, 3, 26, 13, 0, 1258, 1259, 5, 3, 0, 0, 1259, 1350, 1, 0, 0, 0, 1260, 1261, 5, 269, 0, 0, 1261, 1262, 3, 8, 4, 0, 1262, 1263, 5, 352, 0, 0, 1263, 1264, 3, 10, 5, 0, 1264, 1350, 1, 0, 0, 0, 1265, 1266, 5, 269, 0, 0, 1266, 1274, 3, 8, 4, 0, 1267, 1271, 5, 352, 0, 0, 1268, 1270, 9, 0, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 1273, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1274, 1267, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1350, 1, 0, 0, 0, 1276, 1280, 5, 269, 0, 0, 1277, 1279, 9, 0, 0, 0, 1278, 1277, 1, 0, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1280, 1278, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1283, 1284, 5, 352, 0, 0, 1284, 1350, 3, 10, 5, 0, 1285, 1289, 5, 269, 0, 0, 1286, 1288, 9, 0, 0, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1350, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 5, 245, 0, 0, 1293, 1350, 3, 8, 4, 0, 1294, 1298, 5, 245, 0, 0, 1295, 1297, 9, 0, 0, 0, 1296, 1295, 1, 0, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1350, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1301, 1302, 5, 59, 0, 0, 1302, 1304, 5, 142, 0, 0, 1303, 1305, 3, 190, 95, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 3, 388, 194, 0, 1307, 1309, 5, 203, 0, 0, 1308, 1310, 5, 293, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1314, 3, 86, 43, 0, 1312, 1313, 5, 332, 0, 0, 1313, 1315, 3, 388, 194, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 5, 2, 0, 0, 1317, 1318, 3, 252, 126, 0, 1318, 1321, 5, 3, 0, 0, 1319, 1320, 5, 207, 0, 0, 1320, 1322, 3, 54, 27, 0, 1321, 1319, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1350, 1, 0, 0, 0, 1323, 1324, 5, 96, 0, 0, 1324, 1326, 5, 142, 0, 0, 1325, 1327, 3, 192, 96, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 3, 388, 194, 0, 1329, 1331, 5, 203, 0, 0, 1330, 1332, 5, 293, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 3, 86, 43, 0, 1334, 1350, 1, 0, 0, 0, 1335, 1336, 5, 205, 0, 0, 1336, 1338, 3, 86, 43, 0, 1337, 1339, 3, 138, 69, 0, 1338, 1337, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 3, 366, 183, 0, 1341, 1350, 1, 0, 0, 0, 1342, 1346, 3, 12, 6, 0, 1343, 1345, 9, 0, 0, 0, 1344, 1343, 1, 0, 0, 0, 1345, 1348, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1346, 1, 0, 0, 0, 1349, 424, 1, 0, 0, 0, 1349, 426, 1, 0, 0, 0, 1349, 429, 1, 0, 0, 0, 1349, 434, 1, 0, 0, 0, 1349, 440, 1, 0, 0, 0, 1349, 456, 1, 0, 0, 0, 1349, 463, 1, 0, 0, 0, 1349, 469, 1, 0, 0, 0, 1349, 478, 1, 0, 0, 0, 1349, 490, 1, 0, 0, 0, 1349, 507, 1, 0, 0, 0, 1349, 527, 1, 0, 0, 0, 1349, 544, 1, 0, 0, 0, 1349, 561, 1, 0, 0, 0, 1349, 572, 1, 0, 0, 0, 1349, 579, 1, 0, 0, 0, 1349, 588, 1, 0, 0, 0, 1349, 597, 1, 0, 0, 0, 1349, 607, 1, 0, 0, 0, 1349, 619, 1, 0, 0, 0, 1349, 630, 1, 0, 0, 0, 1349, 641, 1, 0, 0, 0, 1349, 655, 1, 0, 0, 0, 1349, 666, 1, 0, 0, 0, 1349, 681, 1, 0, 0, 0, 1349, 693, 1, 0, 0, 0, 1349, 707, 1, 0, 0, 0, 1349, 717, 1, 0, 0, 0, 1349, 733, 1, 0, 0, 0, 1349, 741, 1, 0, 0, 0, 1349, 763, 1, 0, 0, 0, 1349, 772, 1, 0, 0, 0, 1349, 778, 1, 0, 0, 0, 1349, 785, 1, 0, 0, 0, 1349, 793, 1, 0, 0, 0, 1349, 802, 1, 0, 0, 0, 1349, 808, 1, 0, 0, 0, 1349, 815, 1, 0, 0, 0, 1349, 848, 1, 0, 0, 0, 1349, 870, 1, 0, 0, 0, 1349, 878, 1, 0, 0, 0, 1349, 904, 1, 0, 0, 0, 1349, 935, 1, 0, 0, 0, 1349, 944, 1, 0, 0, 0, 1349, 959, 1, 0, 0, 0, 1349, 970, 1, 0, 0, 0, 1349, 975, 1, 0, 0, 0, 1349, 987, 1, 0, 0, 0, 1349, 999, 1, 0, 0, 0, 1349, 1008, 1, 0, 0, 0, 1349, 1016, 1, 0, 0, 0, 1349, 1028, 1, 0, 0, 0, 1349, 1034, 1, 0, 0, 0, 1349, 1052, 1, 0, 0, 0, 1349, 1060, 1, 0, 0, 0, 1349, 1063, 1, 0, 0, 0, 1349, 1071, 1, 0, 0, 0, 1349, 1084, 1, 0, 0, 0, 1349, 1093, 1, 0, 0, 0, 1349, 1099, 1, 0, 0, 0, 1349, 1105, 1, 0, 0, 0, 1349, 1119, 1, 0, 0, 0, 1349, 1124, 1, 0, 0, 0, 1349, 1131, 1, 0, 0, 0, 1349, 1138, 1, 0, 0, 0, 1349, 1141, 1, 0, 0, 0, 1349, 1144, 1, 0, 0, 0, 1349, 1154, 1, 0, 0, 0, 1349, 1158, 1, 0, 0, 0, 1349, 1174, 1, 0, 0, 0, 1349, 1180, 1, 0, 0, 0, 1349, 1182, 1, 0, 0, 0, 1349, 1198, 1, 0, 0, 0, 1349, 1205, 1, 0, 0, 0, 1349, 1214, 1, 0, 0, 0, 1349, 1222, 1, 0, 0, 0, 1349, 1230, 1, 0, 0, 0, 1349, 1234, 1, 0, 0, 0, 1349, 1238, 1, 0, 0, 0, 1349, 1247, 1, 0, 0, 0, 1349, 1250, 1, 0, 0, 0, 1349, 1260, 1, 0, 0, 0, 1349, 1265, 1, 0, 0, 0, 1349, 1276, 1, 0, 0, 0, 1349, 1285, 1, 0, 0, 0, 1349, 1292, 1, 0, 0, 0, 1349, 1294, 1, 0, 0, 0, 1349, 1301, 1, 0, 0, 0, 1349, 1323, 1, 0, 0, 0, 1349, 1335, 1, 0, 0, 0, 1349, 1342, 1, 0, 0, 0, 1350, 5, 1, 0, 0, 0, 1351, 1354, 3, 400, 200, 0, 1352, 1354, 5, 169, 0, 0, 1353, 1351, 1, 0, 0, 0, 1353, 1352, 1, 0, 0, 0, 1354, 7, 1, 0, 0, 0, 1355, 1356, 3, 392, 196, 0, 1356, 9, 1, 0, 0, 0, 1357, 1358, 3, 394, 197, 0, 1358, 11, 1, 0, 0, 0, 1359, 1360, 5, 59, 0, 0, 1360, 1528, 5, 253, 0, 0, 1361, 1362, 5, 96, 0, 0, 1362, 1528, 5, 253, 0, 0, 1363, 1365, 5, 129, 0, 0, 1364, 1366, 5, 253, 0, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1528, 1, 0, 0, 0, 1367, 1369, 5, 249, 0, 0, 1368, 1370, 5, 253, 0, 0, 1369, 1368, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1528, 1, 0, 0, 0, 1371, 1372, 5, 273, 0, 0, 1372, 1528, 5, 129, 0, 0, 1373, 1374, 5, 273, 0, 0, 1374, 1376, 5, 253, 0, 0, 1375, 1377, 5, 129, 0, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1528, 1, 0, 0, 0, 1378, 1379, 5, 273, 0, 0, 1379, 1528, 5, 228, 0, 0, 1380, 1381, 5, 273, 0, 0, 1381, 1528, 5, 254, 0, 0, 1382, 1383, 5, 273, 0, 0, 1383, 1384, 5, 62, 0, 0, 1384, 1528, 5, 254, 0, 0, 1385, 1386, 5, 107, 0, 0, 1386, 1528, 5, 293, 0, 0, 1387, 1388, 5, 139, 0, 0, 1388, 1528, 5, 293, 0, 0, 1389, 1390, 5, 273, 0, 0, 1390, 1528, 5, 54, 0, 0, 1391, 1392, 5, 273, 0, 0, 1392, 1393, 5, 59, 0, 0, 1393, 1528, 5, 293, 0, 0, 1394, 1395, 5, 273, 0, 0, 1395, 1528, 5, 313, 0, 0, 1396, 1397, 5, 273, 0, 0, 1397, 1528, 5, 143, 0, 0, 1398, 1399, 5, 273, 0, 0, 1399, 1528, 5, 172, 0, 0, 1400, 1401, 5, 59, 0, 0, 1401, 1528, 5, 142, 0, 0, 1402, 1403, 5, 96, 0, 0, 1403, 1528, 5, 142, 0, 0, 1404, 1405, 5, 11, 0, 0, 1405, 1528, 5, 142, 0, 0, 1406, 1407, 5, 171, 0, 0, 1407, 1528, 5, 293, 0, 0, 1408, 1409, 5, 171, 0, 0, 1409, 1528, 5, 72, 0, 0, 1410, 1411, 5, 326, 0, 0, 1411, 1528, 5, 293, 0, 0, 1412, 1413, 5, 326, 0, 0, 1413, 1528, 5, 72, 0, 0, 1414, 1415, 5, 59, 0, 0, 1415, 1416, 5, 298, 0, 0, 1416, 1528, 5, 175, 0, 0, 1417, 1418, 5, 96, 0, 0, 1418, 1419, 5, 298, 0, 0, 1419, 1528, 5, 175, 0, 0, 1420, 1421, 5, 11, 0, 0, 1421, 1422, 5, 293, 0, 0, 1422, 1423, 3, 86, 43, 0, 1423, 1424, 5, 197, 0, 0, 1424, 1425, 5, 45, 0, 0, 1425, 1528, 1, 0, 0, 0, 1426, 1427, 5, 11, 0, 0, 1427, 1428, 5, 293, 0, 0, 1428, 1429, 3, 86, 43, 0, 1429, 1430, 5, 45, 0, 0, 1430, 1431, 5, 31, 0, 0, 1431, 1528, 1, 0, 0, 0, 1432, 1433, 5, 11, 0, 0, 1433, 1434, 5, 293, 0, 0, 1434, 1435, 3, 86, 43, 0, 1435, 1436, 5, 197, 0, 0, 1436, 1437, 5, 279, 0, 0, 1437, 1528, 1, 0, 0, 0, 1438, 1439, 5, 11, 0, 0, 1439, 1440, 5, 293, 0, 0, 1440, 1441, 3, 86, 43, 0, 1441, 1442, 5, 275, 0, 0, 1442, 1443, 5, 31, 0, 0, 1443, 1528, 1, 0, 0, 0, 1444, 1445, 5, 11, 0, 0, 1445, 1446, 5, 293, 0, 0, 1446, 1447, 3, 86, 43, 0, 1447, 1448, 5, 197, 0, 0, 1448, 1449, 5, 275, 0, 0, 1449, 1528, 1, 0, 0, 0, 1450, 1451, 5, 11, 0, 0, 1451, 1452, 5, 293, 0, 0, 1452, 1453, 3, 86, 43, 0, 1453, 1454, 5, 197, 0, 0, 1454, 1455, 5, 283, 0, 0, 1455, 1456, 5, 20, 0, 0, 1456, 1457, 5, 89, 0, 0, 1457, 1528, 1, 0, 0, 0, 1458, 1459, 5, 11, 0, 0, 1459, 1460, 5, 293, 0, 0, 1460, 1461, 3, 86, 43, 0, 1461, 1462, 5, 269, 0, 0, 1462, 1463, 5, 275, 0, 0, 1463, 1464, 5, 170, 0, 0, 1464, 1528, 1, 0, 0, 0, 1465, 1466, 5, 11, 0, 0, 1466, 1467, 5, 293, 0, 0, 1467, 1468, 3, 86, 43, 0, 1468, 1469, 5, 103, 0, 0, 1469, 1470, 5, 217, 0, 0, 1470, 1528, 1, 0, 0, 0, 1471, 1472, 5, 11, 0, 0, 1472, 1473, 5, 293, 0, 0, 1473, 1474, 3, 86, 43, 0, 1474, 1475, 5, 18, 0, 0, 1475, 1476, 5, 217, 0, 0, 1476, 1528, 1, 0, 0, 0, 1477, 1478, 5, 11, 0, 0, 1478, 1479, 5, 293, 0, 0, 1479, 1480, 3, 86, 43, 0, 1480, 1481, 5, 320, 0, 0, 1481, 1482, 5, 217, 0, 0, 1482, 1528, 1, 0, 0, 0, 1483, 1484, 5, 11, 0, 0, 1484, 1485, 5, 293, 0, 0, 1485, 1486, 3, 86, 43, 0, 1486, 1487, 5, 310, 0, 0, 1487, 1528, 1, 0, 0, 0, 1488, 1489, 5, 11, 0, 0, 1489, 1490, 5, 293, 0, 0, 1490, 1492, 3, 86, 43, 0, 1491, 1493, 3, 32, 16, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 5, 53, 0, 0, 1495, 1528, 1, 0, 0, 0, 1496, 1497, 5, 11, 0, 0, 1497, 1498, 5, 293, 0, 0, 1498, 1500, 3, 86, 43, 0, 1499, 1501, 3, 32, 16, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 5, 56, 0, 0, 1503, 1528, 1, 0, 0, 0, 1504, 1505, 5, 11, 0, 0, 1505, 1506, 5, 293, 0, 0, 1506, 1508, 3, 86, 43, 0, 1507, 1509, 3, 32, 16, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 5, 269, 0, 0, 1511, 1512, 5, 115, 0, 0, 1512, 1528, 1, 0, 0, 0, 1513, 1514, 5, 11, 0, 0, 1514, 1515, 5, 293, 0, 0, 1515, 1517, 3, 86, 43, 0, 1516, 1518, 3, 32, 16, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 5, 244, 0, 0, 1520, 1521, 5, 50, 0, 0, 1521, 1528, 1, 0, 0, 0, 1522, 1523, 5, 281, 0, 0, 1523, 1528, 5, 312, 0, 0, 1524, 1528, 5, 52, 0, 0, 1525, 1528, 5, 255, 0, 0, 1526, 1528, 5, 88, 0, 0, 1527, 1359, 1, 0, 0, 0, 1527, 1361, 1, 0, 0, 0, 1527, 1363, 1, 0, 0, 0, 1527, 1367, 1, 0, 0, 0, 1527, 1371, 1, 0, 0, 0, 1527, 1373, 1, 0, 0, 0, 1527, 1378, 1, 0, 0, 0, 1527, 1380, 1, 0, 0, 0, 1527, 1382, 1, 0, 0, 0, 1527, 1385, 1, 0, 0, 0, 1527, 1387, 1, 0, 0, 0, 1527, 1389, 1, 0, 0, 0, 1527, 1391, 1, 0, 0, 0, 1527, 1394, 1, 0, 0, 0, 1527, 1396, 1, 0, 0, 0, 1527, 1398, 1, 0, 0, 0, 1527, 1400, 1, 0, 0, 0, 1527, 1402, 1, 0, 0, 0, 1527, 1404, 1, 0, 0, 0, 1527, 1406, 1, 0, 0, 0, 1527, 1408, 1, 0, 0, 0, 1527, 1410, 1, 0, 0, 0, 1527, 1412, 1, 0, 0, 0, 1527, 1414, 1, 0, 0, 0, 1527, 1417, 1, 0, 0, 0, 1527, 1420, 1, 0, 0, 0, 1527, 1426, 1, 0, 0, 0, 1527, 1432, 1, 0, 0, 0, 1527, 1438, 1, 0, 0, 0, 1527, 1444, 1, 0, 0, 0, 1527, 1450, 1, 0, 0, 0, 1527, 1458, 1, 0, 0, 0, 1527, 1465, 1, 0, 0, 0, 1527, 1471, 1, 0, 0, 0, 1527, 1477, 1, 0, 0, 0, 1527, 1483, 1, 0, 0, 0, 1527, 1488, 1, 0, 0, 0, 1527, 1496, 1, 0, 0, 0, 1527, 1504, 1, 0, 0, 0, 1527, 1513, 1, 0, 0, 0, 1527, 1522, 1, 0, 0, 0, 1527, 1524, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1527, 1526, 1, 0, 0, 0, 1528, 13, 1, 0, 0, 0, 1529, 1531, 5, 59, 0, 0, 1530, 1532, 5, 298, 0, 0, 1531, 1530, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1534, 1, 0, 0, 0, 1533, 1535, 5, 109, 0, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1538, 5, 293, 0, 0, 1537, 1539, 3, 190, 95, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 3, 84, 42, 0, 1541, 15, 1, 0, 0, 0, 1542, 1543, 5, 59, 0, 0, 1543, 1545, 5, 208, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 244, 0, 0, 1547, 1548, 5, 293, 0, 0, 1548, 1549, 3, 84, 42, 0, 1549, 17, 1, 0, 0, 0, 1550, 1551, 5, 45, 0, 0, 1551, 1552, 5, 31, 0, 0, 1552, 1556, 3, 212, 106, 0, 1553, 1554, 5, 279, 0, 0, 1554, 1555, 5, 31, 0, 0, 1555, 1557, 3, 216, 108, 0, 1556, 1553, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 5, 152, 0, 0, 1559, 1560, 5, 382, 0, 0, 1560, 1561, 5, 30, 0, 0, 1561, 19, 1, 0, 0, 0, 1562, 1563, 5, 275, 0, 0, 1563, 1564, 5, 31, 0, 0, 1564, 1565, 3, 212, 106, 0, 1565, 1568, 5, 203, 0, 0, 1566, 1569, 3, 66, 33, 0, 1567, 1569, 3, 68, 34, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1567, 1, 0, 0, 0, 1569, 1573, 1, 0, 0, 0, 1570, 1571, 5, 283, 0, 0, 1571, 1572, 5, 20, 0, 0, 1572, 1574, 5, 89, 0, 0, 1573, 1570, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 21, 1, 0, 0, 0, 1575, 1576, 5, 170, 0, 0, 1576, 1577, 3, 400, 200, 0, 1577, 23, 1, 0, 0, 0, 1578, 1579, 5, 51, 0, 0, 1579, 1580, 3, 400, 200, 0, 1580, 25, 1, 0, 0, 0, 1581, 1583, 3, 44, 22, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 3, 104, 52, 0, 1585, 1586, 3, 100, 50, 0, 1586, 27, 1, 0, 0, 0, 1587, 1588, 5, 147, 0, 0, 1588, 1590, 5, 216, 0, 0, 1589, 1591, 5, 293, 0, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1597, 3, 86, 43, 0, 1593, 1595, 3, 32, 16, 0, 1594, 1596, 3, 190, 95, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1598, 1, 0, 0, 0, 1597, 1593, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1605, 1, 0, 0, 0, 1599, 1600, 5, 31, 0, 0, 1600, 1606, 5, 189, 0, 0, 1601, 1602, 5, 2, 0, 0, 1602, 1603, 3, 94, 47, 0, 1603, 1604, 5, 3, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1599, 1, 0, 0, 0, 1605, 1601, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1664, 1, 0, 0, 0, 1607, 1608, 5, 147, 0, 0, 1608, 1610, 5, 152, 0, 0, 1609, 1611, 5, 293, 0, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 3, 86, 43, 0, 1613, 1615, 3, 32, 16, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 1, 0, 0, 0, 1616, 1618, 3, 190, 95, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1625, 1, 0, 0, 0, 1619, 1620, 5, 31, 0, 0, 1620, 1626, 5, 189, 0, 0, 1621, 1622, 5, 2, 0, 0, 1622, 1623, 3, 94, 47, 0, 1623, 1624, 5, 3, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1619, 1, 0, 0, 0, 1625, 1621, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1664, 1, 0, 0, 0, 1627, 1628, 5, 147, 0, 0, 1628, 1630, 5, 152, 0, 0, 1629, 1631, 5, 293, 0, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 3, 86, 43, 0, 1633, 1634, 5, 244, 0, 0, 1634, 1635, 3, 138, 69, 0, 1635, 1664, 1, 0, 0, 0, 1636, 1637, 5, 147, 0, 0, 1637, 1639, 5, 216, 0, 0, 1638, 1640, 5, 169, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 5, 90, 0, 0, 1642, 1644, 3, 400, 200, 0, 1643, 1645, 3, 246, 123, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1647, 1, 0, 0, 0, 1646, 1648, 3, 70, 35, 0, 1647, 1646, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1664, 1, 0, 0, 0, 1649, 1650, 5, 147, 0, 0, 1650, 1652, 5, 216, 0, 0, 1651, 1653, 5, 169, 0, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1656, 5, 90, 0, 0, 1655, 1657, 3, 400, 200, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1661, 3, 48, 24, 0, 1659, 1660, 5, 207, 0, 0, 1660, 1662, 3, 54, 27, 0, 1661, 1659, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1587, 1, 0, 0, 0, 1663, 1607, 1, 0, 0, 0, 1663, 1627, 1, 0, 0, 0, 1663, 1636, 1, 0, 0, 0, 1663, 1649, 1, 0, 0, 0, 1664, 29, 1, 0, 0, 0, 1665, 1667, 3, 32, 16, 0, 1666, 1668, 3, 22, 11, 0, 1667, 1666, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 31, 1, 0, 0, 0, 1669, 1670, 5, 217, 0, 0, 1670, 1671, 5, 2, 0, 0, 1671, 1676, 3, 34, 17, 0, 1672, 1673, 5, 4, 0, 0, 1673, 1675, 3, 34, 17, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1680, 5, 3, 0, 0, 1680, 33, 1, 0, 0, 0, 1681, 1684, 3, 388, 194, 0, 1682, 1683, 5, 352, 0, 0, 1683, 1685, 3, 300, 150, 0, 1684, 1682, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1691, 1, 0, 0, 0, 1686, 1687, 3, 388, 194, 0, 1687, 1688, 5, 352, 0, 0, 1688, 1689, 5, 82, 0, 0, 1689, 1691, 1, 0, 0, 0, 1690, 1681, 1, 0, 0, 0, 1690, 1686, 1, 0, 0, 0, 1691, 35, 1, 0, 0, 0, 1692, 1693, 7, 11, 0, 0, 1693, 37, 1, 0, 0, 0, 1694, 1695, 7, 12, 0, 0, 1695, 39, 1, 0, 0, 0, 1696, 1702, 3, 98, 49, 0, 1697, 1702, 3, 400, 200, 0, 1698, 1702, 3, 302, 151, 0, 1699, 1702, 3, 304, 152, 0, 1700, 1702, 3, 306, 153, 0, 1701, 1696, 1, 0, 0, 0, 1701, 1697, 1, 0, 0, 0, 1701, 1698, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1701, 1700, 1, 0, 0, 0, 1702, 41, 1, 0, 0, 0, 1703, 1708, 3, 388, 194, 0, 1704, 1705, 5, 5, 0, 0, 1705, 1707, 3, 388, 194, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 43, 1, 0, 0, 0, 1710, 1708, 1, 0, 0, 0, 1711, 1712, 5, 346, 0, 0, 1712, 1717, 3, 46, 23, 0, 1713, 1714, 5, 4, 0, 0, 1714, 1716, 3, 46, 23, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 45, 1, 0, 0, 0, 1719, 1717, 1, 0, 0, 0, 1720, 1722, 3, 384, 192, 0, 1721, 1723, 3, 212, 106, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1725, 1, 0, 0, 0, 1724, 1726, 5, 20, 0, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 5, 2, 0, 0, 1728, 1729, 3, 26, 13, 0, 1729, 1730, 5, 3, 0, 0, 1730, 47, 1, 0, 0, 0, 1731, 1732, 5, 332, 0, 0, 1732, 1733, 3, 250, 125, 0, 1733, 49, 1, 0, 0, 0, 1734, 1735, 5, 207, 0, 0, 1735, 1749, 3, 62, 31, 0, 1736, 1737, 5, 218, 0, 0, 1737, 1738, 5, 31, 0, 0, 1738, 1749, 3, 272, 136, 0, 1739, 1749, 3, 20, 10, 0, 1740, 1749, 3, 18, 9, 0, 1741, 1749, 3, 246, 123, 0, 1742, 1749, 3, 70, 35, 0, 1743, 1749, 3, 22, 11, 0, 1744, 1749, 3, 24, 12, 0, 1745, 1746, 5, 297, 0, 0, 1746, 1749, 3, 54, 27, 0, 1747, 1749, 3, 52, 26, 0, 1748, 1734, 1, 0, 0, 0, 1748, 1736, 1, 0, 0, 0, 1748, 1739, 1, 0, 0, 0, 1748, 1740, 1, 0, 0, 0, 1748, 1741, 1, 0, 0, 0, 1748, 1742, 1, 0, 0, 0, 1748, 1743, 1, 0, 0, 0, 1748, 1744, 1, 0, 0, 0, 1748, 1745, 1, 0, 0, 0, 1748, 1747, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 51, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1754, 5, 162, 0, 0, 1754, 1755, 5, 382, 0, 0, 1755, 53, 1, 0, 0, 0, 1756, 1757, 5, 2, 0, 0, 1757, 1762, 3, 56, 28, 0, 1758, 1759, 5, 4, 0, 0, 1759, 1761, 3, 56, 28, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 3, 0, 0, 1766, 55, 1, 0, 0, 0, 1767, 1772, 3, 58, 29, 0, 1768, 1770, 5, 352, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 3, 60, 30, 0, 1772, 1769, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 57, 1, 0, 0, 0, 1774, 1779, 3, 388, 194, 0, 1775, 1776, 5, 5, 0, 0, 1776, 1778, 3, 388, 194, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1784, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1784, 3, 400, 200, 0, 1783, 1774, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1784, 59, 1, 0, 0, 0, 1785, 1790, 5, 382, 0, 0, 1786, 1790, 5, 384, 0, 0, 1787, 1790, 3, 308, 154, 0, 1788, 1790, 3, 400, 200, 0, 1789, 1785, 1, 0, 0, 0, 1789, 1786, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1789, 1788, 1, 0, 0, 0, 1790, 61, 1, 0, 0, 0, 1791, 1792, 5, 2, 0, 0, 1792, 1797, 3, 64, 32, 0, 1793, 1794, 5, 4, 0, 0, 1794, 1796, 3, 64, 32, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1801, 5, 3, 0, 0, 1801, 63, 1, 0, 0, 0, 1802, 1807, 3, 58, 29, 0, 1803, 1805, 5, 352, 0, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1808, 3, 280, 140, 0, 1807, 1804, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 65, 1, 0, 0, 0, 1809, 1810, 5, 2, 0, 0, 1810, 1815, 3, 300, 150, 0, 1811, 1812, 5, 4, 0, 0, 1812, 1814, 3, 300, 150, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 3, 0, 0, 1819, 67, 1, 0, 0, 0, 1820, 1821, 5, 2, 0, 0, 1821, 1826, 3, 66, 33, 0, 1822, 1823, 5, 4, 0, 0, 1823, 1825, 3, 66, 33, 0, 1824, 1822, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1829, 1, 0, 0, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1830, 5, 3, 0, 0, 1830, 69, 1, 0, 0, 0, 1831, 1832, 5, 283, 0, 0, 1832, 1833, 5, 20, 0, 0, 1833, 1838, 3, 72, 36, 0, 1834, 1835, 5, 283, 0, 0, 1835, 1836, 5, 31, 0, 0, 1836, 1838, 3, 74, 37, 0, 1837, 1831, 1, 0, 0, 0, 1837, 1834, 1, 0, 0, 0, 1838, 71, 1, 0, 0, 0, 1839, 1840, 5, 146, 0, 0, 1840, 1841, 3, 400, 200, 0, 1841, 1842, 5, 212, 0, 0, 1842, 1843, 3, 400, 200, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1846, 3, 388, 194, 0, 1845, 1839, 1, 0, 0, 0, 1845, 1844, 1, 0, 0, 0, 1846, 73, 1, 0, 0, 0, 1847, 1851, 3, 400, 200, 0, 1848, 1849, 5, 346, 0, 0, 1849, 1850, 5, 267, 0, 0, 1850, 1852, 3, 54, 27, 0, 1851, 1848, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 75, 1, 0, 0, 0, 1853, 1854, 3, 388, 194, 0, 1854, 1855, 3, 400, 200, 0, 1855, 77, 1, 0, 0, 0, 1856, 1857, 3, 28, 14, 0, 1857, 1858, 3, 26, 13, 0, 1858, 1913, 1, 0, 0, 0, 1859, 1861, 3, 146, 73, 0, 1860, 1862, 3, 102, 51, 0, 1861, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 1913, 1, 0, 0, 0, 1865, 1866, 5, 84, 0, 0, 1866, 1867, 5, 123, 0, 0, 1867, 1868, 3, 86, 43, 0, 1868, 1870, 3, 244, 122, 0, 1869, 1871, 3, 138, 69, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1913, 1, 0, 0, 0, 1872, 1873, 5, 329, 0, 0, 1873, 1874, 3, 86, 43, 0, 1874, 1875, 3, 244, 122, 0, 1875, 1877, 3, 120, 60, 0, 1876, 1878, 3, 138, 69, 0, 1877, 1876, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1913, 1, 0, 0, 0, 1879, 1880, 5, 179, 0, 0, 1880, 1881, 5, 152, 0, 0, 1881, 1882, 3, 86, 43, 0, 1882, 1883, 3, 244, 122, 0, 1883, 1889, 5, 332, 0, 0, 1884, 1890, 3, 98, 49, 0, 1885, 1886, 5, 2, 0, 0, 1886, 1887, 3, 26, 13, 0, 1887, 1888, 5, 3, 0, 0, 1888, 1890, 1, 0, 0, 0, 1889, 1884, 1, 0, 0, 0, 1889, 1885, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 3, 244, 122, 0, 1892, 1893, 5, 203, 0, 0, 1893, 1897, 3, 288, 144, 0, 1894, 1896, 3, 122, 61, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1903, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1902, 3, 124, 62, 0, 1901, 1900, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1909, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1908, 3, 126, 63, 0, 1907, 1906, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1912, 1856, 1, 0, 0, 0, 1912, 1859, 1, 0, 0, 0, 1912, 1865, 1, 0, 0, 0, 1912, 1872, 1, 0, 0, 0, 1912, 1879, 1, 0, 0, 0, 1913, 79, 1, 0, 0, 0, 1914, 1915, 3, 98, 49, 0, 1915, 81, 1, 0, 0, 0, 1916, 1917, 3, 98, 49, 0, 1917, 83, 1, 0, 0, 0, 1918, 1919, 3, 256, 128, 0, 1919, 85, 1, 0, 0, 0, 1920, 1921, 3, 256, 128, 0, 1921, 87, 1, 0, 0, 0, 1922, 1923, 3, 258, 129, 0, 1923, 89, 1, 0, 0, 0, 1924, 1925, 3, 258, 129, 0, 1925, 91, 1, 0, 0, 0, 1926, 1929, 3, 250, 125, 0, 1927, 1929, 4, 46, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1927, 1, 0, 0, 0, 1929, 93, 1, 0, 0, 0, 1930, 1935, 3, 92, 46, 0, 1931, 1932, 5, 4, 0, 0, 1932, 1934, 3, 92, 46, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 95, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1939, 3, 384, 192, 0, 1939, 97, 1, 0, 0, 0, 1940, 1941, 5, 136, 0, 0, 1941, 1942, 5, 2, 0, 0, 1942, 1943, 3, 280, 140, 0, 1943, 1944, 5, 3, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1947, 3, 250, 125, 0, 1946, 1940, 1, 0, 0, 0, 1946, 1945, 1, 0, 0, 0, 1947, 99, 1, 0, 0, 0, 1948, 1949, 5, 209, 0, 0, 1949, 1950, 5, 31, 0, 0, 1950, 1955, 3, 108, 54, 0, 1951, 1952, 5, 4, 0, 0, 1952, 1954, 3, 108, 54, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1948, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1970, 1, 0, 0, 0, 1960, 1961, 5, 44, 0, 0, 1961, 1962, 5, 31, 0, 0, 1962, 1967, 3, 280, 140, 0, 1963, 1964, 5, 4, 0, 0, 1964, 1966, 3, 280, 140, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1960, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1982, 1, 0, 0, 0, 1972, 1973, 5, 93, 0, 0, 1973, 1974, 5, 31, 0, 0, 1974, 1979, 3, 280, 140, 0, 1975, 1976, 5, 4, 0, 0, 1976, 1978, 3, 280, 140, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1972, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1994, 1, 0, 0, 0, 1984, 1985, 5, 278, 0, 0, 1985, 1986, 5, 31, 0, 0, 1986, 1991, 3, 108, 54, 0, 1987, 1988, 5, 4, 0, 0, 1988, 1990, 3, 108, 54, 0, 1989, 1987, 1, 0, 0, 0, 1990, 1993, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1994, 1984, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1997, 1, 0, 0, 0, 1996, 1998, 3, 364, 182, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2004, 1, 0, 0, 0, 1999, 2002, 5, 165, 0, 0, 2000, 2003, 5, 10, 0, 0, 2001, 2003, 3, 280, 140, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2001, 1, 0, 0, 0, 2003, 2005, 1, 0, 0, 0, 2004, 1999, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2008, 1, 0, 0, 0, 2006, 2007, 5, 202, 0, 0, 2007, 2009, 3, 280, 140, 0, 2008, 2006, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 101, 1, 0, 0, 0, 2010, 2011, 3, 28, 14, 0, 2011, 2012, 3, 112, 56, 0, 2012, 103, 1, 0, 0, 0, 2013, 2014, 6, 52, -1, 0, 2014, 2015, 3, 106, 53, 0, 2015, 2036, 1, 0, 0, 0, 2016, 2017, 10, 3, 0, 0, 2017, 2019, 7, 13, 0, 0, 2018, 2020, 3, 196, 98, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2035, 3, 104, 52, 4, 2022, 2023, 10, 2, 0, 0, 2023, 2025, 5, 148, 0, 0, 2024, 2026, 3, 196, 98, 0, 2025, 2024, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2035, 3, 104, 52, 3, 2028, 2029, 10, 1, 0, 0, 2029, 2031, 7, 14, 0, 0, 2030, 2032, 3, 196, 98, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2035, 3, 104, 52, 2, 2034, 2016, 1, 0, 0, 0, 2034, 2022, 1, 0, 0, 0, 2034, 2028, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 105, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2039, 2059, 3, 114, 57, 0, 2040, 2059, 3, 110, 55, 0, 2041, 2042, 5, 293, 0, 0, 2042, 2059, 3, 86, 43, 0, 2043, 2044, 5, 333, 0, 0, 2044, 2049, 3, 280, 140, 0, 2045, 2046, 5, 4, 0, 0, 2046, 2048, 3, 280, 140, 0, 2047, 2045, 1, 0, 0, 0, 2048, 2051, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2052, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2052, 2053, 3, 244, 122, 0, 2053, 2059, 1, 0, 0, 0, 2054, 2055, 5, 2, 0, 0, 2055, 2056, 3, 26, 13, 0, 2056, 2057, 5, 3, 0, 0, 2057, 2059, 1, 0, 0, 0, 2058, 2039, 1, 0, 0, 0, 2058, 2040, 1, 0, 0, 0, 2058, 2041, 1, 0, 0, 0, 2058, 2043, 1, 0, 0, 0, 2058, 2054, 1, 0, 0, 0, 2059, 107, 1, 0, 0, 0, 2060, 2063, 3, 92, 46, 0, 2061, 2063, 3, 280, 140, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2061, 1, 0, 0, 0, 2063, 2065, 1, 0, 0, 0, 2064, 2066, 7, 15, 0, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2068, 5, 199, 0, 0, 2068, 2070, 7, 16, 0, 0, 2069, 2067, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 109, 1, 0, 0, 0, 2071, 2073, 3, 146, 73, 0, 2072, 2074, 3, 112, 56, 0, 2073, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 111, 1, 0, 0, 0, 2077, 2079, 3, 116, 58, 0, 2078, 2080, 3, 138, 69, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 3, 100, 50, 0, 2082, 2105, 1, 0, 0, 0, 2083, 2087, 3, 118, 59, 0, 2084, 2086, 3, 194, 97, 0, 2085, 2084, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2090, 2092, 3, 138, 69, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2095, 3, 152, 76, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2098, 3, 140, 70, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2101, 3, 364, 182, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 3, 100, 50, 0, 2103, 2105, 1, 0, 0, 0, 2104, 2077, 1, 0, 0, 0, 2104, 2083, 1, 0, 0, 0, 2105, 113, 1, 0, 0, 0, 2106, 2108, 3, 116, 58, 0, 2107, 2109, 3, 146, 73, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2112, 3, 194, 97, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2118, 3, 138, 69, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 152, 76, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 140, 70, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 364, 182, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2151, 1, 0, 0, 0, 2128, 2130, 3, 118, 59, 0, 2129, 2131, 3, 146, 73, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2135, 1, 0, 0, 0, 2132, 2134, 3, 194, 97, 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, 2139, 1, 0, 0, 0, 2137, 2135, 1, 0, 0, 0, 2138, 2140, 3, 138, 69, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2143, 3, 152, 76, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 140, 70, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 1, 0, 0, 0, 2147, 2149, 3, 364, 182, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2106, 1, 0, 0, 0, 2150, 2128, 1, 0, 0, 0, 2151, 115, 1, 0, 0, 0, 2152, 2153, 5, 263, 0, 0, 2153, 2154, 5, 314, 0, 0, 2154, 2156, 5, 2, 0, 0, 2155, 2157, 3, 196, 98, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2159, 3, 286, 143, 0, 2159, 2160, 5, 3, 0, 0, 2160, 2172, 1, 0, 0, 0, 2161, 2163, 5, 177, 0, 0, 2162, 2164, 3, 196, 98, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2172, 3, 286, 143, 0, 2166, 2168, 5, 238, 0, 0, 2167, 2169, 3, 196, 98, 0, 2168, 2167, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 3, 286, 143, 0, 2171, 2152, 1, 0, 0, 0, 2171, 2161, 1, 0, 0, 0, 2171, 2166, 1, 0, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2175, 3, 246, 123, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2177, 5, 236, 0, 0, 2177, 2179, 3, 400, 200, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 5, 332, 0, 0, 2181, 2194, 3, 400, 200, 0, 2182, 2192, 5, 20, 0, 0, 2183, 2193, 3, 214, 107, 0, 2184, 2193, 3, 346, 173, 0, 2185, 2188, 5, 2, 0, 0, 2186, 2189, 3, 214, 107, 0, 2187, 2189, 3, 346, 173, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 5, 3, 0, 0, 2191, 2193, 1, 0, 0, 0, 2192, 2183, 1, 0, 0, 0, 2192, 2184, 1, 0, 0, 0, 2192, 2185, 1, 0, 0, 0, 2193, 2195, 1, 0, 0, 0, 2194, 2182, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2197, 1, 0, 0, 0, 2196, 2198, 3, 246, 123, 0, 2197, 2196, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2201, 1, 0, 0, 0, 2199, 2200, 5, 235, 0, 0, 2200, 2202, 3, 400, 200, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 117, 1, 0, 0, 0, 2203, 2207, 5, 263, 0, 0, 2204, 2206, 3, 142, 71, 0, 2205, 2204, 1, 0, 0, 0, 2206, 2209, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2211, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2212, 3, 196, 98, 0, 2211, 2210, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 2214, 3, 270, 135, 0, 2214, 119, 1, 0, 0, 0, 2215, 2216, 5, 269, 0, 0, 2216, 2217, 3, 134, 67, 0, 2217, 121, 1, 0, 0, 0, 2218, 2219, 5, 343, 0, 0, 2219, 2222, 5, 178, 0, 0, 2220, 2221, 5, 14, 0, 0, 2221, 2223, 3, 288, 144, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 5, 300, 0, 0, 2225, 2226, 3, 128, 64, 0, 2226, 123, 1, 0, 0, 0, 2227, 2228, 5, 343, 0, 0, 2228, 2229, 5, 197, 0, 0, 2229, 2232, 5, 178, 0, 0, 2230, 2231, 5, 31, 0, 0, 2231, 2233, 5, 296, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2235, 5, 14, 0, 0, 2235, 2237, 3, 288, 144, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 5, 300, 0, 0, 2239, 2240, 3, 130, 65, 0, 2240, 125, 1, 0, 0, 0, 2241, 2242, 5, 343, 0, 0, 2242, 2243, 5, 197, 0, 0, 2243, 2244, 5, 178, 0, 0, 2244, 2245, 5, 31, 0, 0, 2245, 2248, 5, 280, 0, 0, 2246, 2247, 5, 14, 0, 0, 2247, 2249, 3, 288, 144, 0, 2248, 2246, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 2251, 5, 300, 0, 0, 2251, 2252, 3, 132, 66, 0, 2252, 127, 1, 0, 0, 0, 2253, 2261, 5, 84, 0, 0, 2254, 2255, 5, 329, 0, 0, 2255, 2256, 5, 269, 0, 0, 2256, 2261, 5, 363, 0, 0, 2257, 2258, 5, 329, 0, 0, 2258, 2259, 5, 269, 0, 0, 2259, 2261, 3, 134, 67, 0, 2260, 2253, 1, 0, 0, 0, 2260, 2254, 1, 0, 0, 0, 2260, 2257, 1, 0, 0, 0, 2261, 129, 1, 0, 0, 0, 2262, 2263, 5, 147, 0, 0, 2263, 2281, 5, 363, 0, 0, 2264, 2265, 5, 147, 0, 0, 2265, 2266, 5, 2, 0, 0, 2266, 2267, 3, 248, 124, 0, 2267, 2268, 5, 3, 0, 0, 2268, 2269, 5, 333, 0, 0, 2269, 2270, 5, 2, 0, 0, 2270, 2275, 3, 280, 140, 0, 2271, 2272, 5, 4, 0, 0, 2272, 2274, 3, 280, 140, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2277, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2275, 1, 0, 0, 0, 2278, 2279, 5, 3, 0, 0, 2279, 2281, 1, 0, 0, 0, 2280, 2262, 1, 0, 0, 0, 2280, 2264, 1, 0, 0, 0, 2281, 131, 1, 0, 0, 0, 2282, 2287, 5, 84, 0, 0, 2283, 2284, 5, 329, 0, 0, 2284, 2285, 5, 269, 0, 0, 2285, 2287, 3, 134, 67, 0, 2286, 2282, 1, 0, 0, 0, 2286, 2283, 1, 0, 0, 0, 2287, 133, 1, 0, 0, 0, 2288, 2293, 3, 136, 68, 0, 2289, 2290, 5, 4, 0, 0, 2290, 2292, 3, 136, 68, 0, 2291, 2289, 1, 0, 0, 0, 2292, 2295, 1, 0, 0, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 135, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2297, 3, 250, 125, 0, 2297, 2298, 5, 352, 0, 0, 2298, 2299, 3, 280, 140, 0, 2299, 137, 1, 0, 0, 0, 2300, 2301, 5, 344, 0, 0, 2301, 2302, 3, 288, 144, 0, 2302, 139, 1, 0, 0, 0, 2303, 2304, 5, 132, 0, 0, 2304, 2305, 3, 288, 144, 0, 2305, 141, 1, 0, 0, 0, 2306, 2307, 5, 374, 0, 0, 2307, 2314, 3, 144, 72, 0, 2308, 2310, 5, 4, 0, 0, 2309, 2308, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2313, 3, 144, 72, 0, 2312, 2309, 1, 0, 0, 0, 2313, 2316, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2318, 5, 375, 0, 0, 2318, 143, 1, 0, 0, 0, 2319, 2333, 3, 388, 194, 0, 2320, 2321, 3, 388, 194, 0, 2321, 2322, 5, 2, 0, 0, 2322, 2327, 3, 296, 148, 0, 2323, 2324, 5, 4, 0, 0, 2324, 2326, 3, 296, 148, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2329, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2330, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2330, 2331, 5, 3, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2319, 1, 0, 0, 0, 2332, 2320, 1, 0, 0, 0, 2333, 145, 1, 0, 0, 0, 2334, 2335, 5, 123, 0, 0, 2335, 2340, 3, 198, 99, 0, 2336, 2337, 5, 4, 0, 0, 2337, 2339, 3, 198, 99, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2342, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2346, 1, 0, 0, 0, 2342, 2340, 1, 0, 0, 0, 2343, 2345, 3, 194, 97, 0, 2344, 2343, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2351, 3, 162, 81, 0, 2350, 2349, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2353, 1, 0, 0, 0, 2352, 2354, 3, 168, 84, 0, 2353, 2352, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 147, 1, 0, 0, 0, 2355, 2356, 7, 17, 0, 0, 2356, 149, 1, 0, 0, 0, 2357, 2359, 5, 119, 0, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2361, 7, 18, 0, 0, 2361, 2362, 5, 20, 0, 0, 2362, 2363, 5, 201, 0, 0, 2363, 2372, 3, 404, 202, 0, 2364, 2366, 5, 119, 0, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 7, 19, 0, 0, 2368, 2369, 5, 20, 0, 0, 2369, 2370, 5, 201, 0, 0, 2370, 2372, 3, 292, 146, 0, 2371, 2358, 1, 0, 0, 0, 2371, 2365, 1, 0, 0, 0, 2372, 151, 1, 0, 0, 0, 2373, 2374, 5, 130, 0, 0, 2374, 2375, 5, 31, 0, 0, 2375, 2380, 3, 154, 77, 0, 2376, 2377, 5, 4, 0, 0, 2377, 2379, 3, 154, 77, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2382, 1, 0, 0, 0, 2380, 2378, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2413, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2384, 5, 130, 0, 0, 2384, 2385, 5, 31, 0, 0, 2385, 2390, 3, 280, 140, 0, 2386, 2387, 5, 4, 0, 0, 2387, 2389, 3, 280, 140, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2410, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 5, 346, 0, 0, 2394, 2411, 5, 256, 0, 0, 2395, 2396, 5, 346, 0, 0, 2396, 2411, 5, 61, 0, 0, 2397, 2398, 5, 131, 0, 0, 2398, 2399, 5, 271, 0, 0, 2399, 2400, 5, 2, 0, 0, 2400, 2405, 3, 160, 80, 0, 2401, 2402, 5, 4, 0, 0, 2402, 2404, 3, 160, 80, 0, 2403, 2401, 1, 0, 0, 0, 2404, 2407, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2408, 1, 0, 0, 0, 2407, 2405, 1, 0, 0, 0, 2408, 2409, 5, 3, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2393, 1, 0, 0, 0, 2410, 2395, 1, 0, 0, 0, 2410, 2397, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2373, 1, 0, 0, 0, 2412, 2383, 1, 0, 0, 0, 2413, 153, 1, 0, 0, 0, 2414, 2418, 3, 92, 46, 0, 2415, 2418, 3, 156, 78, 0, 2416, 2418, 3, 280, 140, 0, 2417, 2414, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2416, 1, 0, 0, 0, 2418, 155, 1, 0, 0, 0, 2419, 2420, 7, 20, 0, 0, 2420, 2421, 5, 2, 0, 0, 2421, 2426, 3, 160, 80, 0, 2422, 2423, 5, 4, 0, 0, 2423, 2425, 3, 160, 80, 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, 3, 0, 0, 2430, 2445, 1, 0, 0, 0, 2431, 2432, 5, 131, 0, 0, 2432, 2433, 5, 271, 0, 0, 2433, 2434, 5, 2, 0, 0, 2434, 2439, 3, 158, 79, 0, 2435, 2436, 5, 4, 0, 0, 2436, 2438, 3, 158, 79, 0, 2437, 2435, 1, 0, 0, 0, 2438, 2441, 1, 0, 0, 0, 2439, 2437, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2442, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2442, 2443, 5, 3, 0, 0, 2443, 2445, 1, 0, 0, 0, 2444, 2419, 1, 0, 0, 0, 2444, 2431, 1, 0, 0, 0, 2445, 157, 1, 0, 0, 0, 2446, 2449, 3, 156, 78, 0, 2447, 2449, 3, 160, 80, 0, 2448, 2446, 1, 0, 0, 0, 2448, 2447, 1, 0, 0, 0, 2449, 159, 1, 0, 0, 0, 2450, 2471, 3, 92, 46, 0, 2451, 2471, 3, 280, 140, 0, 2452, 2467, 5, 2, 0, 0, 2453, 2456, 3, 92, 46, 0, 2454, 2456, 3, 280, 140, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2454, 1, 0, 0, 0, 2456, 2464, 1, 0, 0, 0, 2457, 2460, 5, 4, 0, 0, 2458, 2461, 3, 92, 46, 0, 2459, 2461, 3, 280, 140, 0, 2460, 2458, 1, 0, 0, 0, 2460, 2459, 1, 0, 0, 0, 2461, 2463, 1, 0, 0, 0, 2462, 2457, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2455, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 5, 3, 0, 0, 2470, 2450, 1, 0, 0, 0, 2470, 2451, 1, 0, 0, 0, 2470, 2452, 1, 0, 0, 0, 2471, 161, 1, 0, 0, 0, 2472, 2473, 5, 223, 0, 0, 2473, 2474, 5, 2, 0, 0, 2474, 2475, 3, 268, 134, 0, 2475, 2476, 5, 119, 0, 0, 2476, 2477, 3, 164, 82, 0, 2477, 2478, 5, 140, 0, 0, 2478, 2479, 5, 2, 0, 0, 2479, 2484, 3, 166, 83, 0, 2480, 2481, 5, 4, 0, 0, 2481, 2483, 3, 166, 83, 0, 2482, 2480, 1, 0, 0, 0, 2483, 2486, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2487, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2487, 2488, 5, 3, 0, 0, 2488, 2489, 5, 3, 0, 0, 2489, 163, 1, 0, 0, 0, 2490, 2503, 3, 388, 194, 0, 2491, 2492, 5, 2, 0, 0, 2492, 2497, 3, 388, 194, 0, 2493, 2494, 5, 4, 0, 0, 2494, 2496, 3, 388, 194, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2499, 1, 0, 0, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2500, 1, 0, 0, 0, 2499, 2497, 1, 0, 0, 0, 2500, 2501, 5, 3, 0, 0, 2501, 2503, 1, 0, 0, 0, 2502, 2490, 1, 0, 0, 0, 2502, 2491, 1, 0, 0, 0, 2503, 165, 1, 0, 0, 0, 2504, 2509, 3, 280, 140, 0, 2505, 2507, 5, 20, 0, 0, 2506, 2505, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2510, 3, 388, 194, 0, 2509, 2506, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 167, 1, 0, 0, 0, 2511, 2513, 5, 327, 0, 0, 2512, 2514, 3, 170, 85, 0, 2513, 2512, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 5, 2, 0, 0, 2516, 2517, 3, 172, 86, 0, 2517, 2522, 5, 3, 0, 0, 2518, 2520, 5, 20, 0, 0, 2519, 2518, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 3, 388, 194, 0, 2522, 2519, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 169, 1, 0, 0, 0, 2524, 2525, 7, 21, 0, 0, 2525, 2526, 5, 199, 0, 0, 2526, 171, 1, 0, 0, 0, 2527, 2530, 3, 174, 87, 0, 2528, 2530, 3, 176, 88, 0, 2529, 2527, 1, 0, 0, 0, 2529, 2528, 1, 0, 0, 0, 2530, 173, 1, 0, 0, 0, 2531, 2532, 3, 180, 90, 0, 2532, 2533, 5, 119, 0, 0, 2533, 2534, 3, 182, 91, 0, 2534, 2535, 5, 140, 0, 0, 2535, 2536, 5, 2, 0, 0, 2536, 2541, 3, 184, 92, 0, 2537, 2538, 5, 4, 0, 0, 2538, 2540, 3, 184, 92, 0, 2539, 2537, 1, 0, 0, 0, 2540, 2543, 1, 0, 0, 0, 2541, 2539, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2544, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2544, 2545, 5, 3, 0, 0, 2545, 175, 1, 0, 0, 0, 2546, 2547, 5, 2, 0, 0, 2547, 2552, 3, 180, 90, 0, 2548, 2549, 5, 4, 0, 0, 2549, 2551, 3, 180, 90, 0, 2550, 2548, 1, 0, 0, 0, 2551, 2554, 1, 0, 0, 0, 2552, 2550, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2555, 2556, 5, 3, 0, 0, 2556, 2557, 5, 119, 0, 0, 2557, 2558, 3, 182, 91, 0, 2558, 2559, 5, 140, 0, 0, 2559, 2560, 5, 2, 0, 0, 2560, 2565, 3, 178, 89, 0, 2561, 2562, 5, 4, 0, 0, 2562, 2564, 3, 178, 89, 0, 2563, 2561, 1, 0, 0, 0, 2564, 2567, 1, 0, 0, 0, 2565, 2563, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2565, 1, 0, 0, 0, 2568, 2569, 5, 3, 0, 0, 2569, 177, 1, 0, 0, 0, 2570, 2571, 5, 2, 0, 0, 2571, 2576, 3, 186, 93, 0, 2572, 2573, 5, 4, 0, 0, 2573, 2575, 3, 186, 93, 0, 2574, 2572, 1, 0, 0, 0, 2575, 2578, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2579, 1, 0, 0, 0, 2578, 2576, 1, 0, 0, 0, 2579, 2581, 5, 3, 0, 0, 2580, 2582, 3, 188, 94, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 179, 1, 0, 0, 0, 2583, 2584, 3, 388, 194, 0, 2584, 181, 1, 0, 0, 0, 2585, 2586, 3, 388, 194, 0, 2586, 183, 1, 0, 0, 0, 2587, 2589, 3, 186, 93, 0, 2588, 2590, 3, 188, 94, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 185, 1, 0, 0, 0, 2591, 2592, 3, 250, 125, 0, 2592, 187, 1, 0, 0, 0, 2593, 2595, 5, 20, 0, 0, 2594, 2593, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 3, 388, 194, 0, 2597, 189, 1, 0, 0, 0, 2598, 2599, 5, 137, 0, 0, 2599, 2600, 5, 197, 0, 0, 2600, 2601, 5, 105, 0, 0, 2601, 191, 1, 0, 0, 0, 2602, 2603, 5, 137, 0, 0, 2603, 2604, 5, 105, 0, 0, 2604, 193, 1, 0, 0, 0, 2605, 2606, 5, 158, 0, 0, 2606, 2608, 5, 338, 0, 0, 2607, 2609, 5, 211, 0, 0, 2608, 2607, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2611, 3, 90, 45, 0, 2611, 2620, 5, 2, 0, 0, 2612, 2617, 3, 280, 140, 0, 2613, 2614, 5, 4, 0, 0, 2614, 2616, 3, 280, 140, 0, 2615, 2613, 1, 0, 0, 0, 2616, 2619, 1, 0, 0, 0, 2617, 2615, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2621, 1, 0, 0, 0, 2619, 2617, 1, 0, 0, 0, 2620, 2612, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2623, 5, 3, 0, 0, 2623, 2635, 3, 244, 122, 0, 2624, 2626, 5, 20, 0, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2632, 3, 388, 194, 0, 2628, 2629, 5, 4, 0, 0, 2629, 2631, 3, 388, 194, 0, 2630, 2628, 1, 0, 0, 0, 2631, 2634, 1, 0, 0, 0, 2632, 2630, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2636, 1, 0, 0, 0, 2634, 2632, 1, 0, 0, 0, 2635, 2625, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 195, 1, 0, 0, 0, 2637, 2638, 7, 22, 0, 0, 2638, 197, 1, 0, 0, 0, 2639, 2651, 3, 86, 43, 0, 2640, 2642, 5, 158, 0, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2647, 3, 224, 112, 0, 2644, 2646, 3, 200, 100, 0, 2645, 2644, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2639, 1, 0, 0, 0, 2650, 2641, 1, 0, 0, 0, 2651, 199, 1, 0, 0, 0, 2652, 2656, 3, 202, 101, 0, 2653, 2656, 3, 162, 81, 0, 2654, 2656, 3, 168, 84, 0, 2655, 2652, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2655, 2654, 1, 0, 0, 0, 2656, 201, 1, 0, 0, 0, 2657, 2658, 3, 204, 102, 0, 2658, 2660, 5, 155, 0, 0, 2659, 2661, 5, 158, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 3, 224, 112, 0, 2663, 2665, 3, 206, 103, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2675, 1, 0, 0, 0, 2666, 2667, 5, 194, 0, 0, 2667, 2668, 3, 204, 102, 0, 2668, 2670, 5, 155, 0, 0, 2669, 2671, 5, 158, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2673, 3, 224, 112, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2657, 1, 0, 0, 0, 2674, 2666, 1, 0, 0, 0, 2675, 203, 1, 0, 0, 0, 2676, 2678, 5, 144, 0, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2701, 1, 0, 0, 0, 2679, 2701, 5, 60, 0, 0, 2680, 2682, 5, 161, 0, 0, 2681, 2683, 5, 211, 0, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2701, 1, 0, 0, 0, 2684, 2686, 5, 161, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2701, 5, 264, 0, 0, 2688, 2690, 5, 250, 0, 0, 2689, 2691, 5, 211, 0, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2701, 1, 0, 0, 0, 2692, 2694, 5, 124, 0, 0, 2693, 2695, 5, 211, 0, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2701, 1, 0, 0, 0, 2696, 2698, 5, 161, 0, 0, 2697, 2696, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2701, 5, 15, 0, 0, 2700, 2677, 1, 0, 0, 0, 2700, 2679, 1, 0, 0, 0, 2700, 2680, 1, 0, 0, 0, 2700, 2685, 1, 0, 0, 0, 2700, 2688, 1, 0, 0, 0, 2700, 2692, 1, 0, 0, 0, 2700, 2697, 1, 0, 0, 0, 2701, 205, 1, 0, 0, 0, 2702, 2703, 5, 203, 0, 0, 2703, 2707, 3, 288, 144, 0, 2704, 2705, 5, 332, 0, 0, 2705, 2707, 3, 212, 106, 0, 2706, 2702, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2707, 207, 1, 0, 0, 0, 2708, 2709, 5, 295, 0, 0, 2709, 2711, 5, 2, 0, 0, 2710, 2712, 3, 210, 105, 0, 2711, 2710, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2718, 5, 3, 0, 0, 2714, 2715, 5, 243, 0, 0, 2715, 2716, 5, 2, 0, 0, 2716, 2717, 5, 382, 0, 0, 2717, 2719, 5, 3, 0, 0, 2718, 2714, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 209, 1, 0, 0, 0, 2720, 2722, 5, 362, 0, 0, 2721, 2720, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2724, 7, 23, 0, 0, 2724, 2745, 5, 222, 0, 0, 2725, 2726, 3, 280, 140, 0, 2726, 2727, 5, 258, 0, 0, 2727, 2745, 1, 0, 0, 0, 2728, 2729, 5, 29, 0, 0, 2729, 2730, 5, 382, 0, 0, 2730, 2731, 5, 210, 0, 0, 2731, 2732, 5, 201, 0, 0, 2732, 2741, 5, 382, 0, 0, 2733, 2739, 5, 203, 0, 0, 2734, 2740, 3, 388, 194, 0, 2735, 2736, 3, 382, 191, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2738, 5, 3, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2734, 1, 0, 0, 0, 2739, 2735, 1, 0, 0, 0, 2740, 2742, 1, 0, 0, 0, 2741, 2733, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2745, 1, 0, 0, 0, 2743, 2745, 3, 280, 140, 0, 2744, 2721, 1, 0, 0, 0, 2744, 2725, 1, 0, 0, 0, 2744, 2728, 1, 0, 0, 0, 2744, 2743, 1, 0, 0, 0, 2745, 211, 1, 0, 0, 0, 2746, 2747, 5, 2, 0, 0, 2747, 2748, 3, 214, 107, 0, 2748, 2749, 5, 3, 0, 0, 2749, 213, 1, 0, 0, 0, 2750, 2755, 3, 384, 192, 0, 2751, 2752, 5, 4, 0, 0, 2752, 2754, 3, 384, 192, 0, 2753, 2751, 1, 0, 0, 0, 2754, 2757, 1, 0, 0, 0, 2755, 2753, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 215, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2758, 2759, 5, 2, 0, 0, 2759, 2764, 3, 218, 109, 0, 2760, 2761, 5, 4, 0, 0, 2761, 2763, 3, 218, 109, 0, 2762, 2760, 1, 0, 0, 0, 2763, 2766, 1, 0, 0, 0, 2764, 2762, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2767, 1, 0, 0, 0, 2766, 2764, 1, 0, 0, 0, 2767, 2768, 5, 3, 0, 0, 2768, 217, 1, 0, 0, 0, 2769, 2771, 3, 384, 192, 0, 2770, 2772, 7, 15, 0, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 219, 1, 0, 0, 0, 2773, 2774, 5, 2, 0, 0, 2774, 2779, 3, 222, 111, 0, 2775, 2776, 5, 4, 0, 0, 2776, 2778, 3, 222, 111, 0, 2777, 2775, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2782, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2783, 5, 3, 0, 0, 2783, 221, 1, 0, 0, 0, 2784, 2786, 3, 96, 48, 0, 2785, 2787, 3, 24, 12, 0, 2786, 2785, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 223, 1, 0, 0, 0, 2788, 2792, 3, 86, 43, 0, 2789, 2792, 3, 90, 45, 0, 2790, 2792, 3, 98, 49, 0, 2791, 2788, 1, 0, 0, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2790, 1, 0, 0, 0, 2792, 2794, 1, 0, 0, 0, 2793, 2795, 3, 150, 75, 0, 2794, 2793, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 1, 0, 0, 0, 2796, 2798, 3, 208, 104, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2800, 3, 244, 122, 0, 2800, 2822, 1, 0, 0, 0, 2801, 2802, 5, 2, 0, 0, 2802, 2803, 3, 226, 113, 0, 2803, 2805, 5, 3, 0, 0, 2804, 2806, 3, 208, 104, 0, 2805, 2804, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2808, 3, 244, 122, 0, 2808, 2822, 1, 0, 0, 0, 2809, 2810, 5, 2, 0, 0, 2810, 2811, 3, 198, 99, 0, 2811, 2813, 5, 3, 0, 0, 2812, 2814, 3, 208, 104, 0, 2813, 2812, 1, 0, 0, 0, 2813, 2814, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2816, 3, 244, 122, 0, 2816, 2822, 1, 0, 0, 0, 2817, 2818, 3, 228, 114, 0, 2818, 2819, 3, 244, 122, 0, 2819, 2822, 1, 0, 0, 0, 2820, 2822, 3, 240, 120, 0, 2821, 2791, 1, 0, 0, 0, 2821, 2801, 1, 0, 0, 0, 2821, 2809, 1, 0, 0, 0, 2821, 2817, 1, 0, 0, 0, 2821, 2820, 1, 0, 0, 0, 2822, 225, 1, 0, 0, 0, 2823, 2824, 3, 26, 13, 0, 2824, 227, 1, 0, 0, 0, 2825, 2826, 5, 333, 0, 0, 2826, 2831, 3, 280, 140, 0, 2827, 2828, 5, 4, 0, 0, 2828, 2830, 3, 280, 140, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2833, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 229, 1, 0, 0, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2835, 5, 293, 0, 0, 2835, 2837, 3, 86, 43, 0, 2836, 2838, 3, 232, 116, 0, 2837, 2836, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2854, 1, 0, 0, 0, 2839, 2840, 5, 293, 0, 0, 2840, 2841, 5, 2, 0, 0, 2841, 2842, 3, 86, 43, 0, 2842, 2844, 5, 3, 0, 0, 2843, 2845, 3, 232, 116, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2854, 1, 0, 0, 0, 2846, 2847, 5, 293, 0, 0, 2847, 2848, 5, 2, 0, 0, 2848, 2849, 3, 26, 13, 0, 2849, 2851, 5, 3, 0, 0, 2850, 2852, 3, 232, 116, 0, 2851, 2850, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2854, 1, 0, 0, 0, 2853, 2834, 1, 0, 0, 0, 2853, 2839, 1, 0, 0, 0, 2853, 2846, 1, 0, 0, 0, 2854, 231, 1, 0, 0, 0, 2855, 2856, 5, 346, 0, 0, 2856, 2857, 5, 274, 0, 0, 2857, 2875, 5, 217, 0, 0, 2858, 2859, 7, 24, 0, 0, 2859, 2872, 5, 31, 0, 0, 2860, 2861, 5, 2, 0, 0, 2861, 2866, 3, 280, 140, 0, 2862, 2863, 5, 4, 0, 0, 2863, 2865, 3, 280, 140, 0, 2864, 2862, 1, 0, 0, 0, 2865, 2868, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2870, 5, 3, 0, 0, 2870, 2873, 1, 0, 0, 0, 2871, 2873, 3, 280, 140, 0, 2872, 2860, 1, 0, 0, 0, 2872, 2871, 1, 0, 0, 0, 2873, 2875, 1, 0, 0, 0, 2874, 2855, 1, 0, 0, 0, 2874, 2858, 1, 0, 0, 0, 2875, 2892, 1, 0, 0, 0, 2876, 2877, 7, 25, 0, 0, 2877, 2890, 5, 31, 0, 0, 2878, 2879, 5, 2, 0, 0, 2879, 2884, 3, 108, 54, 0, 2880, 2881, 5, 4, 0, 0, 2881, 2883, 3, 108, 54, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2886, 1, 0, 0, 0, 2884, 2882, 1, 0, 0, 0, 2884, 2885, 1, 0, 0, 0, 2885, 2887, 1, 0, 0, 0, 2886, 2884, 1, 0, 0, 0, 2887, 2888, 5, 3, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2891, 3, 108, 54, 0, 2890, 2878, 1, 0, 0, 0, 2890, 2889, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2876, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 233, 1, 0, 0, 0, 2894, 2895, 3, 388, 194, 0, 2895, 2896, 5, 373, 0, 0, 2896, 2897, 3, 230, 115, 0, 2897, 235, 1, 0, 0, 0, 2898, 2901, 3, 230, 115, 0, 2899, 2901, 3, 234, 117, 0, 2900, 2898, 1, 0, 0, 0, 2900, 2899, 1, 0, 0, 0, 2901, 237, 1, 0, 0, 0, 2902, 2905, 3, 236, 118, 0, 2903, 2905, 3, 284, 142, 0, 2904, 2902, 1, 0, 0, 0, 2904, 2903, 1, 0, 0, 0, 2905, 239, 1, 0, 0, 0, 2906, 2907, 3, 242, 121, 0, 2907, 2908, 3, 244, 122, 0, 2908, 241, 1, 0, 0, 0, 2909, 2910, 3, 378, 189, 0, 2910, 2919, 5, 2, 0, 0, 2911, 2916, 3, 238, 119, 0, 2912, 2913, 5, 4, 0, 0, 2913, 2915, 3, 238, 119, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2918, 1, 0, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2920, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2911, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2922, 5, 3, 0, 0, 2922, 243, 1, 0, 0, 0, 2923, 2925, 5, 20, 0, 0, 2924, 2923, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 3, 390, 195, 0, 2927, 2929, 3, 212, 106, 0, 2928, 2927, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2931, 1, 0, 0, 0, 2930, 2924, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 245, 1, 0, 0, 0, 2932, 2933, 5, 257, 0, 0, 2933, 2934, 5, 121, 0, 0, 2934, 2935, 5, 266, 0, 0, 2935, 2939, 3, 400, 200, 0, 2936, 2937, 5, 346, 0, 0, 2937, 2938, 5, 267, 0, 0, 2938, 2940, 3, 54, 27, 0, 2939, 2936, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2982, 1, 0, 0, 0, 2941, 2942, 5, 257, 0, 0, 2942, 2943, 5, 121, 0, 0, 2943, 2953, 5, 85, 0, 0, 2944, 2945, 5, 113, 0, 0, 2945, 2946, 5, 299, 0, 0, 2946, 2947, 5, 31, 0, 0, 2947, 2951, 3, 400, 200, 0, 2948, 2949, 5, 101, 0, 0, 2949, 2950, 5, 31, 0, 0, 2950, 2952, 3, 400, 200, 0, 2951, 2948, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2954, 1, 0, 0, 0, 2953, 2944, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2960, 1, 0, 0, 0, 2955, 2956, 5, 48, 0, 0, 2956, 2957, 5, 154, 0, 0, 2957, 2958, 5, 299, 0, 0, 2958, 2959, 5, 31, 0, 0, 2959, 2961, 3, 400, 200, 0, 2960, 2955, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2967, 1, 0, 0, 0, 2962, 2963, 5, 177, 0, 0, 2963, 2964, 5, 156, 0, 0, 2964, 2965, 5, 299, 0, 0, 2965, 2966, 5, 31, 0, 0, 2966, 2968, 3, 400, 200, 0, 2967, 2962, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2973, 1, 0, 0, 0, 2969, 2970, 5, 166, 0, 0, 2970, 2971, 5, 299, 0, 0, 2971, 2972, 5, 31, 0, 0, 2972, 2974, 3, 400, 200, 0, 2973, 2969, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2979, 1, 0, 0, 0, 2975, 2976, 5, 198, 0, 0, 2976, 2977, 5, 83, 0, 0, 2977, 2978, 5, 20, 0, 0, 2978, 2980, 3, 400, 200, 0, 2979, 2975, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2982, 1, 0, 0, 0, 2981, 2932, 1, 0, 0, 0, 2981, 2941, 1, 0, 0, 0, 2982, 247, 1, 0, 0, 0, 2983, 2988, 3, 250, 125, 0, 2984, 2985, 5, 4, 0, 0, 2985, 2987, 3, 250, 125, 0, 2986, 2984, 1, 0, 0, 0, 2987, 2990, 1, 0, 0, 0, 2988, 2986, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 249, 1, 0, 0, 0, 2990, 2988, 1, 0, 0, 0, 2991, 2996, 3, 384, 192, 0, 2992, 2993, 5, 5, 0, 0, 2993, 2995, 3, 384, 192, 0, 2994, 2992, 1, 0, 0, 0, 2995, 2998, 1, 0, 0, 0, 2996, 2994, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 251, 1, 0, 0, 0, 2998, 2996, 1, 0, 0, 0, 2999, 3004, 3, 254, 127, 0, 3000, 3001, 5, 4, 0, 0, 3001, 3003, 3, 254, 127, 0, 3002, 3000, 1, 0, 0, 0, 3003, 3006, 1, 0, 0, 0, 3004, 3002, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 253, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3007, 3010, 3, 250, 125, 0, 3008, 3009, 5, 207, 0, 0, 3009, 3011, 3, 54, 27, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 255, 1, 0, 0, 0, 3012, 3013, 3, 384, 192, 0, 3013, 3014, 5, 5, 0, 0, 3014, 3016, 1, 0, 0, 0, 3015, 3012, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 3, 384, 192, 0, 3018, 257, 1, 0, 0, 0, 3019, 3020, 3, 384, 192, 0, 3020, 3021, 5, 5, 0, 0, 3021, 3023, 1, 0, 0, 0, 3022, 3019, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 3, 384, 192, 0, 3025, 259, 1, 0, 0, 0, 3026, 3027, 3, 92, 46, 0, 3027, 261, 1, 0, 0, 0, 3028, 3029, 3, 280, 140, 0, 3029, 263, 1, 0, 0, 0, 3030, 3031, 3, 382, 191, 0, 3031, 3032, 5, 5, 0, 0, 3032, 3034, 1, 0, 0, 0, 3033, 3030, 1, 0, 0, 0, 3034, 3037, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3035, 1, 0, 0, 0, 3038, 3039, 5, 363, 0, 0, 3039, 265, 1, 0, 0, 0, 3040, 3044, 3, 264, 132, 0, 3041, 3044, 3, 260, 130, 0, 3042, 3044, 3, 262, 131, 0, 3043, 3040, 1, 0, 0, 0, 3043, 3041, 1, 0, 0, 0, 3043, 3042, 1, 0, 0, 0, 3044, 3052, 1, 0, 0, 0, 3045, 3047, 5, 20, 0, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3050, 1, 0, 0, 0, 3048, 3051, 3, 384, 192, 0, 3049, 3051, 3, 212, 106, 0, 3050, 3048, 1, 0, 0, 0, 3050, 3049, 1, 0, 0, 0, 3051, 3053, 1, 0, 0, 0, 3052, 3046, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 267, 1, 0, 0, 0, 3054, 3059, 3, 266, 133, 0, 3055, 3056, 5, 4, 0, 0, 3056, 3058, 3, 266, 133, 0, 3057, 3055, 1, 0, 0, 0, 3058, 3061, 1, 0, 0, 0, 3059, 3057, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 269, 1, 0, 0, 0, 3061, 3059, 1, 0, 0, 0, 3062, 3063, 3, 268, 134, 0, 3063, 271, 1, 0, 0, 0, 3064, 3065, 5, 2, 0, 0, 3065, 3070, 3, 274, 137, 0, 3066, 3067, 5, 4, 0, 0, 3067, 3069, 3, 274, 137, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3073, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 5, 3, 0, 0, 3074, 273, 1, 0, 0, 0, 3075, 3078, 3, 276, 138, 0, 3076, 3078, 3, 348, 174, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3076, 1, 0, 0, 0, 3078, 275, 1, 0, 0, 0, 3079, 3093, 3, 382, 191, 0, 3080, 3081, 3, 388, 194, 0, 3081, 3082, 5, 2, 0, 0, 3082, 3087, 3, 278, 139, 0, 3083, 3084, 5, 4, 0, 0, 3084, 3086, 3, 278, 139, 0, 3085, 3083, 1, 0, 0, 0, 3086, 3089, 1, 0, 0, 0, 3087, 3085, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3090, 3091, 5, 3, 0, 0, 3091, 3093, 1, 0, 0, 0, 3092, 3079, 1, 0, 0, 0, 3092, 3080, 1, 0, 0, 0, 3093, 277, 1, 0, 0, 0, 3094, 3097, 3, 382, 191, 0, 3095, 3097, 3, 300, 150, 0, 3096, 3094, 1, 0, 0, 0, 3096, 3095, 1, 0, 0, 0, 3097, 279, 1, 0, 0, 0, 3098, 3099, 3, 288, 144, 0, 3099, 281, 1, 0, 0, 0, 3100, 3101, 3, 388, 194, 0, 3101, 3102, 5, 373, 0, 0, 3102, 3103, 3, 280, 140, 0, 3103, 283, 1, 0, 0, 0, 3104, 3107, 3, 280, 140, 0, 3105, 3107, 3, 282, 141, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3105, 1, 0, 0, 0, 3107, 285, 1, 0, 0, 0, 3108, 3113, 3, 280, 140, 0, 3109, 3110, 5, 4, 0, 0, 3110, 3112, 3, 280, 140, 0, 3111, 3109, 1, 0, 0, 0, 3112, 3115, 1, 0, 0, 0, 3113, 3111, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 287, 1, 0, 0, 0, 3115, 3113, 1, 0, 0, 0, 3116, 3117, 6, 144, -1, 0, 3117, 3118, 7, 26, 0, 0, 3118, 3129, 3, 288, 144, 5, 3119, 3120, 5, 105, 0, 0, 3120, 3121, 5, 2, 0, 0, 3121, 3122, 3, 26, 13, 0, 3122, 3123, 5, 3, 0, 0, 3123, 3129, 1, 0, 0, 0, 3124, 3126, 3, 292, 146, 0, 3125, 3127, 3, 290, 145, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3129, 1, 0, 0, 0, 3128, 3116, 1, 0, 0, 0, 3128, 3119, 1, 0, 0, 0, 3128, 3124, 1, 0, 0, 0, 3129, 3138, 1, 0, 0, 0, 3130, 3131, 10, 2, 0, 0, 3131, 3132, 5, 14, 0, 0, 3132, 3137, 3, 288, 144, 3, 3133, 3134, 10, 1, 0, 0, 3134, 3135, 5, 208, 0, 0, 3135, 3137, 3, 288, 144, 2, 3136, 3130, 1, 0, 0, 0, 3136, 3133, 1, 0, 0, 0, 3137, 3140, 1, 0, 0, 0, 3138, 3136, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 289, 1, 0, 0, 0, 3140, 3138, 1, 0, 0, 0, 3141, 3143, 5, 197, 0, 0, 3142, 3141, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 5, 24, 0, 0, 3145, 3146, 3, 292, 146, 0, 3146, 3147, 5, 14, 0, 0, 3147, 3148, 3, 292, 146, 0, 3148, 3224, 1, 0, 0, 0, 3149, 3151, 5, 197, 0, 0, 3150, 3149, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 5, 140, 0, 0, 3153, 3154, 5, 2, 0, 0, 3154, 3159, 3, 280, 140, 0, 3155, 3156, 5, 4, 0, 0, 3156, 3158, 3, 280, 140, 0, 3157, 3155, 1, 0, 0, 0, 3158, 3161, 1, 0, 0, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3162, 1, 0, 0, 0, 3161, 3159, 1, 0, 0, 0, 3162, 3163, 5, 3, 0, 0, 3163, 3224, 1, 0, 0, 0, 3164, 3166, 5, 197, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3168, 5, 140, 0, 0, 3168, 3169, 5, 2, 0, 0, 3169, 3170, 3, 26, 13, 0, 3170, 3171, 5, 3, 0, 0, 3171, 3224, 1, 0, 0, 0, 3172, 3174, 5, 197, 0, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 3176, 7, 27, 0, 0, 3176, 3224, 3, 292, 146, 0, 3177, 3179, 5, 197, 0, 0, 3178, 3177, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3181, 7, 28, 0, 0, 3181, 3195, 7, 29, 0, 0, 3182, 3183, 5, 2, 0, 0, 3183, 3196, 5, 3, 0, 0, 3184, 3185, 5, 2, 0, 0, 3185, 3190, 3, 280, 140, 0, 3186, 3187, 5, 4, 0, 0, 3187, 3189, 3, 280, 140, 0, 3188, 3186, 1, 0, 0, 0, 3189, 3192, 1, 0, 0, 0, 3190, 3188, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3193, 1, 0, 0, 0, 3192, 3190, 1, 0, 0, 0, 3193, 3194, 5, 3, 0, 0, 3194, 3196, 1, 0, 0, 0, 3195, 3182, 1, 0, 0, 0, 3195, 3184, 1, 0, 0, 0, 3196, 3224, 1, 0, 0, 0, 3197, 3199, 5, 197, 0, 0, 3198, 3197, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 7, 28, 0, 0, 3201, 3204, 3, 292, 146, 0, 3202, 3203, 5, 100, 0, 0, 3203, 3205, 3, 400, 200, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3224, 1, 0, 0, 0, 3206, 3208, 5, 153, 0, 0, 3207, 3209, 5, 197, 0, 0, 3208, 3207, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3224, 5, 198, 0, 0, 3211, 3213, 5, 153, 0, 0, 3212, 3214, 5, 197, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3224, 7, 30, 0, 0, 3216, 3218, 5, 153, 0, 0, 3217, 3219, 5, 197, 0, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3221, 5, 92, 0, 0, 3221, 3222, 5, 123, 0, 0, 3222, 3224, 3, 292, 146, 0, 3223, 3142, 1, 0, 0, 0, 3223, 3150, 1, 0, 0, 0, 3223, 3165, 1, 0, 0, 0, 3223, 3173, 1, 0, 0, 0, 3223, 3178, 1, 0, 0, 0, 3223, 3198, 1, 0, 0, 0, 3223, 3206, 1, 0, 0, 0, 3223, 3211, 1, 0, 0, 0, 3223, 3216, 1, 0, 0, 0, 3224, 291, 1, 0, 0, 0, 3225, 3226, 6, 146, -1, 0, 3226, 3230, 3, 296, 148, 0, 3227, 3228, 7, 31, 0, 0, 3228, 3230, 3, 292, 146, 7, 3229, 3225, 1, 0, 0, 0, 3229, 3227, 1, 0, 0, 0, 3230, 3252, 1, 0, 0, 0, 3231, 3232, 10, 6, 0, 0, 3232, 3233, 7, 32, 0, 0, 3233, 3251, 3, 292, 146, 7, 3234, 3235, 10, 5, 0, 0, 3235, 3236, 7, 33, 0, 0, 3236, 3251, 3, 292, 146, 6, 3237, 3238, 10, 4, 0, 0, 3238, 3239, 5, 367, 0, 0, 3239, 3251, 3, 292, 146, 5, 3240, 3241, 10, 3, 0, 0, 3241, 3242, 5, 370, 0, 0, 3242, 3251, 3, 292, 146, 4, 3243, 3244, 10, 2, 0, 0, 3244, 3245, 5, 368, 0, 0, 3245, 3251, 3, 292, 146, 3, 3246, 3247, 10, 1, 0, 0, 3247, 3248, 3, 302, 151, 0, 3248, 3249, 3, 292, 146, 2, 3249, 3251, 1, 0, 0, 0, 3250, 3231, 1, 0, 0, 0, 3250, 3234, 1, 0, 0, 0, 3250, 3237, 1, 0, 0, 0, 3250, 3240, 1, 0, 0, 0, 3250, 3243, 1, 0, 0, 0, 3250, 3246, 1, 0, 0, 0, 3251, 3254, 1, 0, 0, 0, 3252, 3250, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 293, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3255, 3256, 7, 34, 0, 0, 3256, 295, 1, 0, 0, 0, 3257, 3258, 6, 148, -1, 0, 3258, 3507, 7, 35, 0, 0, 3259, 3260, 7, 36, 0, 0, 3260, 3263, 5, 2, 0, 0, 3261, 3264, 3, 294, 147, 0, 3262, 3264, 3, 400, 200, 0, 3263, 3261, 1, 0, 0, 0, 3263, 3262, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3266, 5, 4, 0, 0, 3266, 3267, 3, 292, 146, 0, 3267, 3268, 5, 4, 0, 0, 3268, 3269, 3, 292, 146, 0, 3269, 3270, 5, 3, 0, 0, 3270, 3507, 1, 0, 0, 0, 3271, 3272, 7, 37, 0, 0, 3272, 3275, 5, 2, 0, 0, 3273, 3276, 3, 294, 147, 0, 3274, 3276, 3, 400, 200, 0, 3275, 3273, 1, 0, 0, 0, 3275, 3274, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3278, 5, 4, 0, 0, 3278, 3279, 3, 292, 146, 0, 3279, 3280, 5, 4, 0, 0, 3280, 3281, 3, 292, 146, 0, 3281, 3282, 5, 3, 0, 0, 3282, 3507, 1, 0, 0, 0, 3283, 3285, 5, 35, 0, 0, 3284, 3286, 3, 362, 181, 0, 3285, 3284, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3285, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3291, 1, 0, 0, 0, 3289, 3290, 5, 97, 0, 0, 3290, 3292, 3, 280, 140, 0, 3291, 3289, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3294, 5, 99, 0, 0, 3294, 3507, 1, 0, 0, 0, 3295, 3296, 5, 35, 0, 0, 3296, 3298, 3, 280, 140, 0, 3297, 3299, 3, 362, 181, 0, 3298, 3297, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3298, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3304, 1, 0, 0, 0, 3302, 3303, 5, 97, 0, 0, 3303, 3305, 3, 280, 140, 0, 3304, 3302, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3307, 5, 99, 0, 0, 3307, 3507, 1, 0, 0, 0, 3308, 3309, 7, 38, 0, 0, 3309, 3310, 5, 2, 0, 0, 3310, 3311, 3, 280, 140, 0, 3311, 3312, 5, 20, 0, 0, 3312, 3313, 3, 330, 165, 0, 3313, 3314, 5, 3, 0, 0, 3314, 3507, 1, 0, 0, 0, 3315, 3316, 5, 286, 0, 0, 3316, 3325, 5, 2, 0, 0, 3317, 3322, 3, 266, 133, 0, 3318, 3319, 5, 4, 0, 0, 3319, 3321, 3, 266, 133, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3325, 3317, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3507, 5, 3, 0, 0, 3328, 3329, 5, 116, 0, 0, 3329, 3330, 5, 2, 0, 0, 3330, 3333, 3, 280, 140, 0, 3331, 3332, 5, 138, 0, 0, 3332, 3334, 5, 199, 0, 0, 3333, 3331, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3336, 5, 3, 0, 0, 3336, 3507, 1, 0, 0, 0, 3337, 3338, 5, 17, 0, 0, 3338, 3339, 5, 2, 0, 0, 3339, 3342, 3, 280, 140, 0, 3340, 3341, 5, 138, 0, 0, 3341, 3343, 5, 199, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3345, 5, 3, 0, 0, 3345, 3507, 1, 0, 0, 0, 3346, 3347, 5, 157, 0, 0, 3347, 3348, 5, 2, 0, 0, 3348, 3351, 3, 280, 140, 0, 3349, 3350, 5, 138, 0, 0, 3350, 3352, 5, 199, 0, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 5, 3, 0, 0, 3354, 3507, 1, 0, 0, 0, 3355, 3356, 5, 225, 0, 0, 3356, 3357, 5, 2, 0, 0, 3357, 3358, 3, 292, 146, 0, 3358, 3359, 5, 140, 0, 0, 3359, 3360, 3, 292, 146, 0, 3360, 3361, 5, 3, 0, 0, 3361, 3507, 1, 0, 0, 0, 3362, 3507, 3, 300, 150, 0, 3363, 3507, 5, 363, 0, 0, 3364, 3365, 3, 382, 191, 0, 3365, 3366, 5, 5, 0, 0, 3366, 3367, 5, 363, 0, 0, 3367, 3507, 1, 0, 0, 0, 3368, 3369, 5, 2, 0, 0, 3369, 3372, 3, 266, 133, 0, 3370, 3371, 5, 4, 0, 0, 3371, 3373, 3, 266, 133, 0, 3372, 3370, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 5, 3, 0, 0, 3377, 3507, 1, 0, 0, 0, 3378, 3379, 5, 2, 0, 0, 3379, 3380, 3, 26, 13, 0, 3380, 3381, 5, 3, 0, 0, 3381, 3507, 1, 0, 0, 0, 3382, 3383, 5, 136, 0, 0, 3383, 3384, 5, 2, 0, 0, 3384, 3385, 3, 280, 140, 0, 3385, 3386, 5, 3, 0, 0, 3386, 3507, 1, 0, 0, 0, 3387, 3388, 3, 378, 189, 0, 3388, 3400, 5, 2, 0, 0, 3389, 3391, 3, 196, 98, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3397, 3, 284, 142, 0, 3393, 3394, 5, 4, 0, 0, 3394, 3396, 3, 284, 142, 0, 3395, 3393, 1, 0, 0, 0, 3396, 3399, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3401, 1, 0, 0, 0, 3399, 3397, 1, 0, 0, 0, 3400, 3390, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3409, 5, 3, 0, 0, 3403, 3404, 5, 114, 0, 0, 3404, 3405, 5, 2, 0, 0, 3405, 3406, 5, 344, 0, 0, 3406, 3407, 3, 288, 144, 0, 3407, 3408, 5, 3, 0, 0, 3408, 3410, 1, 0, 0, 0, 3409, 3403, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3413, 1, 0, 0, 0, 3411, 3412, 7, 39, 0, 0, 3412, 3414, 5, 199, 0, 0, 3413, 3411, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3416, 5, 213, 0, 0, 3416, 3418, 3, 370, 185, 0, 3417, 3415, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3507, 1, 0, 0, 0, 3419, 3420, 3, 388, 194, 0, 3420, 3421, 5, 372, 0, 0, 3421, 3422, 3, 280, 140, 0, 3422, 3507, 1, 0, 0, 0, 3423, 3424, 5, 2, 0, 0, 3424, 3427, 3, 388, 194, 0, 3425, 3426, 5, 4, 0, 0, 3426, 3428, 3, 388, 194, 0, 3427, 3425, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 5, 3, 0, 0, 3432, 3433, 5, 372, 0, 0, 3433, 3434, 3, 280, 140, 0, 3434, 3507, 1, 0, 0, 0, 3435, 3507, 3, 388, 194, 0, 3436, 3437, 5, 2, 0, 0, 3437, 3438, 3, 280, 140, 0, 3438, 3439, 5, 3, 0, 0, 3439, 3507, 1, 0, 0, 0, 3440, 3441, 5, 110, 0, 0, 3441, 3442, 5, 2, 0, 0, 3442, 3443, 3, 388, 194, 0, 3443, 3444, 5, 123, 0, 0, 3444, 3445, 3, 292, 146, 0, 3445, 3446, 5, 3, 0, 0, 3446, 3507, 1, 0, 0, 0, 3447, 3448, 7, 40, 0, 0, 3448, 3449, 5, 2, 0, 0, 3449, 3450, 3, 292, 146, 0, 3450, 3451, 7, 41, 0, 0, 3451, 3454, 3, 292, 146, 0, 3452, 3453, 7, 42, 0, 0, 3453, 3455, 3, 292, 146, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3457, 5, 3, 0, 0, 3457, 3507, 1, 0, 0, 0, 3458, 3459, 5, 315, 0, 0, 3459, 3461, 5, 2, 0, 0, 3460, 3462, 7, 43, 0, 0, 3461, 3460, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3465, 3, 292, 146, 0, 3464, 3463, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3467, 5, 123, 0, 0, 3467, 3468, 3, 292, 146, 0, 3468, 3469, 5, 3, 0, 0, 3469, 3507, 1, 0, 0, 0, 3470, 3471, 5, 215, 0, 0, 3471, 3472, 5, 2, 0, 0, 3472, 3473, 3, 292, 146, 0, 3473, 3474, 5, 224, 0, 0, 3474, 3475, 3, 292, 146, 0, 3475, 3476, 5, 123, 0, 0, 3476, 3479, 3, 292, 146, 0, 3477, 3478, 5, 119, 0, 0, 3478, 3480, 3, 292, 146, 0, 3479, 3477, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 5, 3, 0, 0, 3482, 3507, 1, 0, 0, 0, 3483, 3484, 7, 44, 0, 0, 3484, 3485, 5, 2, 0, 0, 3485, 3486, 3, 292, 146, 0, 3486, 3487, 5, 3, 0, 0, 3487, 3488, 5, 347, 0, 0, 3488, 3489, 5, 130, 0, 0, 3489, 3490, 5, 2, 0, 0, 3490, 3491, 5, 209, 0, 0, 3491, 3492, 5, 31, 0, 0, 3492, 3493, 3, 108, 54, 0, 3493, 3500, 5, 3, 0, 0, 3494, 3495, 5, 114, 0, 0, 3495, 3496, 5, 2, 0, 0, 3496, 3497, 5, 344, 0, 0, 3497, 3498, 3, 288, 144, 0, 3498, 3499, 5, 3, 0, 0, 3499, 3501, 1, 0, 0, 0, 3500, 3494, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3504, 1, 0, 0, 0, 3502, 3503, 5, 213, 0, 0, 3503, 3505, 3, 370, 185, 0, 3504, 3502, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3507, 1, 0, 0, 0, 3506, 3257, 1, 0, 0, 0, 3506, 3259, 1, 0, 0, 0, 3506, 3271, 1, 0, 0, 0, 3506, 3283, 1, 0, 0, 0, 3506, 3295, 1, 0, 0, 0, 3506, 3308, 1, 0, 0, 0, 3506, 3315, 1, 0, 0, 0, 3506, 3328, 1, 0, 0, 0, 3506, 3337, 1, 0, 0, 0, 3506, 3346, 1, 0, 0, 0, 3506, 3355, 1, 0, 0, 0, 3506, 3362, 1, 0, 0, 0, 3506, 3363, 1, 0, 0, 0, 3506, 3364, 1, 0, 0, 0, 3506, 3368, 1, 0, 0, 0, 3506, 3378, 1, 0, 0, 0, 3506, 3382, 1, 0, 0, 0, 3506, 3387, 1, 0, 0, 0, 3506, 3419, 1, 0, 0, 0, 3506, 3423, 1, 0, 0, 0, 3506, 3435, 1, 0, 0, 0, 3506, 3436, 1, 0, 0, 0, 3506, 3440, 1, 0, 0, 0, 3506, 3447, 1, 0, 0, 0, 3506, 3458, 1, 0, 0, 0, 3506, 3470, 1, 0, 0, 0, 3506, 3483, 1, 0, 0, 0, 3507, 3518, 1, 0, 0, 0, 3508, 3509, 10, 9, 0, 0, 3509, 3510, 5, 6, 0, 0, 3510, 3511, 3, 292, 146, 0, 3511, 3512, 5, 7, 0, 0, 3512, 3517, 1, 0, 0, 0, 3513, 3514, 10, 7, 0, 0, 3514, 3515, 5, 5, 0, 0, 3515, 3517, 3, 388, 194, 0, 3516, 3508, 1, 0, 0, 0, 3516, 3513, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 297, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3529, 5, 71, 0, 0, 3522, 3529, 5, 303, 0, 0, 3523, 3529, 5, 304, 0, 0, 3524, 3529, 5, 305, 0, 0, 3525, 3529, 5, 149, 0, 0, 3526, 3529, 5, 133, 0, 0, 3527, 3529, 3, 388, 194, 0, 3528, 3521, 1, 0, 0, 0, 3528, 3522, 1, 0, 0, 0, 3528, 3523, 1, 0, 0, 0, 3528, 3524, 1, 0, 0, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3526, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 299, 1, 0, 0, 0, 3530, 3546, 5, 198, 0, 0, 3531, 3546, 5, 376, 0, 0, 3532, 3533, 5, 371, 0, 0, 3533, 3546, 3, 388, 194, 0, 3534, 3546, 3, 310, 155, 0, 3535, 3536, 3, 298, 149, 0, 3536, 3537, 3, 400, 200, 0, 3537, 3546, 1, 0, 0, 0, 3538, 3546, 3, 396, 198, 0, 3539, 3546, 3, 308, 154, 0, 3540, 3542, 3, 400, 200, 0, 3541, 3540, 1, 0, 0, 0, 3542, 3543, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3546, 1, 0, 0, 0, 3545, 3530, 1, 0, 0, 0, 3545, 3531, 1, 0, 0, 0, 3545, 3532, 1, 0, 0, 0, 3545, 3534, 1, 0, 0, 0, 3545, 3535, 1, 0, 0, 0, 3545, 3538, 1, 0, 0, 0, 3545, 3539, 1, 0, 0, 0, 3545, 3541, 1, 0, 0, 0, 3546, 301, 1, 0, 0, 0, 3547, 3548, 7, 45, 0, 0, 3548, 303, 1, 0, 0, 0, 3549, 3550, 7, 46, 0, 0, 3550, 305, 1, 0, 0, 0, 3551, 3552, 7, 47, 0, 0, 3552, 307, 1, 0, 0, 0, 3553, 3554, 7, 48, 0, 0, 3554, 309, 1, 0, 0, 0, 3555, 3558, 5, 149, 0, 0, 3556, 3559, 3, 312, 156, 0, 3557, 3559, 3, 316, 158, 0, 3558, 3556, 1, 0, 0, 0, 3558, 3557, 1, 0, 0, 0, 3559, 311, 1, 0, 0, 0, 3560, 3562, 3, 314, 157, 0, 3561, 3563, 3, 318, 159, 0, 3562, 3561, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 313, 1, 0, 0, 0, 3564, 3565, 3, 320, 160, 0, 3565, 3566, 3, 322, 161, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3564, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3567, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 315, 1, 0, 0, 0, 3571, 3574, 3, 318, 159, 0, 3572, 3575, 3, 314, 157, 0, 3573, 3575, 3, 318, 159, 0, 3574, 3572, 1, 0, 0, 0, 3574, 3573, 1, 0, 0, 0, 3574, 3575, 1, 0, 0, 0, 3575, 317, 1, 0, 0, 0, 3576, 3577, 3, 320, 160, 0, 3577, 3578, 3, 324, 162, 0, 3578, 3579, 5, 309, 0, 0, 3579, 3580, 3, 324, 162, 0, 3580, 319, 1, 0, 0, 0, 3581, 3583, 7, 49, 0, 0, 3582, 3581, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3587, 1, 0, 0, 0, 3584, 3588, 5, 382, 0, 0, 3585, 3588, 5, 384, 0, 0, 3586, 3588, 3, 400, 200, 0, 3587, 3584, 1, 0, 0, 0, 3587, 3585, 1, 0, 0, 0, 3587, 3586, 1, 0, 0, 0, 3588, 321, 1, 0, 0, 0, 3589, 3590, 7, 50, 0, 0, 3590, 323, 1, 0, 0, 0, 3591, 3592, 7, 51, 0, 0, 3592, 325, 1, 0, 0, 0, 3593, 3597, 5, 116, 0, 0, 3594, 3595, 5, 9, 0, 0, 3595, 3597, 3, 384, 192, 0, 3596, 3593, 1, 0, 0, 0, 3596, 3594, 1, 0, 0, 0, 3597, 327, 1, 0, 0, 0, 3598, 3629, 5, 27, 0, 0, 3599, 3629, 5, 308, 0, 0, 3600, 3629, 5, 32, 0, 0, 3601, 3629, 5, 276, 0, 0, 3602, 3629, 5, 272, 0, 0, 3603, 3629, 5, 150, 0, 0, 3604, 3629, 5, 151, 0, 0, 3605, 3629, 5, 25, 0, 0, 3606, 3629, 5, 174, 0, 0, 3607, 3629, 5, 117, 0, 0, 3608, 3629, 5, 234, 0, 0, 3609, 3629, 5, 95, 0, 0, 3610, 3629, 5, 71, 0, 0, 3611, 3629, 5, 303, 0, 0, 3612, 3629, 5, 305, 0, 0, 3613, 3629, 5, 304, 0, 0, 3614, 3629, 5, 285, 0, 0, 3615, 3629, 5, 41, 0, 0, 3616, 3629, 5, 40, 0, 0, 3617, 3629, 5, 334, 0, 0, 3618, 3629, 5, 26, 0, 0, 3619, 3629, 5, 80, 0, 0, 3620, 3629, 5, 79, 0, 0, 3621, 3629, 5, 200, 0, 0, 3622, 3629, 5, 340, 0, 0, 3623, 3629, 5, 149, 0, 0, 3624, 3629, 5, 19, 0, 0, 3625, 3629, 5, 286, 0, 0, 3626, 3629, 5, 177, 0, 0, 3627, 3629, 3, 388, 194, 0, 3628, 3598, 1, 0, 0, 0, 3628, 3599, 1, 0, 0, 0, 3628, 3600, 1, 0, 0, 0, 3628, 3601, 1, 0, 0, 0, 3628, 3602, 1, 0, 0, 0, 3628, 3603, 1, 0, 0, 0, 3628, 3604, 1, 0, 0, 0, 3628, 3605, 1, 0, 0, 0, 3628, 3606, 1, 0, 0, 0, 3628, 3607, 1, 0, 0, 0, 3628, 3608, 1, 0, 0, 0, 3628, 3609, 1, 0, 0, 0, 3628, 3610, 1, 0, 0, 0, 3628, 3611, 1, 0, 0, 0, 3628, 3612, 1, 0, 0, 0, 3628, 3613, 1, 0, 0, 0, 3628, 3614, 1, 0, 0, 0, 3628, 3615, 1, 0, 0, 0, 3628, 3616, 1, 0, 0, 0, 3628, 3617, 1, 0, 0, 0, 3628, 3618, 1, 0, 0, 0, 3628, 3619, 1, 0, 0, 0, 3628, 3620, 1, 0, 0, 0, 3628, 3621, 1, 0, 0, 0, 3628, 3622, 1, 0, 0, 0, 3628, 3623, 1, 0, 0, 0, 3628, 3624, 1, 0, 0, 0, 3628, 3625, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3627, 1, 0, 0, 0, 3629, 329, 1, 0, 0, 0, 3630, 3631, 5, 19, 0, 0, 3631, 3632, 5, 356, 0, 0, 3632, 3633, 3, 330, 165, 0, 3633, 3634, 5, 358, 0, 0, 3634, 3677, 1, 0, 0, 0, 3635, 3636, 5, 177, 0, 0, 3636, 3637, 5, 356, 0, 0, 3637, 3638, 3, 330, 165, 0, 3638, 3639, 5, 4, 0, 0, 3639, 3640, 3, 330, 165, 0, 3640, 3641, 5, 358, 0, 0, 3641, 3677, 1, 0, 0, 0, 3642, 3649, 5, 286, 0, 0, 3643, 3645, 5, 356, 0, 0, 3644, 3646, 3, 358, 179, 0, 3645, 3644, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3650, 5, 358, 0, 0, 3648, 3650, 5, 354, 0, 0, 3649, 3643, 1, 0, 0, 0, 3649, 3648, 1, 0, 0, 0, 3650, 3677, 1, 0, 0, 0, 3651, 3652, 5, 149, 0, 0, 3652, 3655, 7, 52, 0, 0, 3653, 3654, 5, 309, 0, 0, 3654, 3656, 5, 186, 0, 0, 3655, 3653, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3677, 1, 0, 0, 0, 3657, 3658, 5, 149, 0, 0, 3658, 3661, 7, 53, 0, 0, 3659, 3660, 5, 309, 0, 0, 3660, 3662, 7, 54, 0, 0, 3661, 3659, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3677, 1, 0, 0, 0, 3663, 3674, 3, 328, 164, 0, 3664, 3665, 5, 2, 0, 0, 3665, 3670, 5, 382, 0, 0, 3666, 3667, 5, 4, 0, 0, 3667, 3669, 5, 382, 0, 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, 3673, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3675, 5, 3, 0, 0, 3674, 3664, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3677, 1, 0, 0, 0, 3676, 3630, 1, 0, 0, 0, 3676, 3635, 1, 0, 0, 0, 3676, 3642, 1, 0, 0, 0, 3676, 3651, 1, 0, 0, 0, 3676, 3657, 1, 0, 0, 0, 3676, 3663, 1, 0, 0, 0, 3677, 331, 1, 0, 0, 0, 3678, 3683, 3, 334, 167, 0, 3679, 3680, 5, 4, 0, 0, 3680, 3682, 3, 334, 167, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3685, 1, 0, 0, 0, 3683, 3681, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 333, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3687, 3, 96, 48, 0, 3687, 3691, 3, 330, 165, 0, 3688, 3690, 3, 340, 170, 0, 3689, 3688, 1, 0, 0, 0, 3690, 3693, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 335, 1, 0, 0, 0, 3693, 3691, 1, 0, 0, 0, 3694, 3699, 3, 338, 169, 0, 3695, 3696, 5, 4, 0, 0, 3696, 3698, 3, 338, 169, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3701, 1, 0, 0, 0, 3699, 3697, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 337, 1, 0, 0, 0, 3701, 3699, 1, 0, 0, 0, 3702, 3703, 3, 92, 46, 0, 3703, 3707, 3, 330, 165, 0, 3704, 3706, 3, 340, 170, 0, 3705, 3704, 1, 0, 0, 0, 3706, 3709, 1, 0, 0, 0, 3707, 3705, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 339, 1, 0, 0, 0, 3709, 3707, 1, 0, 0, 0, 3710, 3711, 5, 197, 0, 0, 3711, 3716, 5, 198, 0, 0, 3712, 3716, 3, 342, 171, 0, 3713, 3716, 3, 24, 12, 0, 3714, 3716, 3, 326, 163, 0, 3715, 3710, 1, 0, 0, 0, 3715, 3712, 1, 0, 0, 0, 3715, 3713, 1, 0, 0, 0, 3715, 3714, 1, 0, 0, 0, 3716, 341, 1, 0, 0, 0, 3717, 3718, 5, 82, 0, 0, 3718, 3719, 3, 280, 140, 0, 3719, 343, 1, 0, 0, 0, 3720, 3721, 7, 55, 0, 0, 3721, 3722, 3, 280, 140, 0, 3722, 345, 1, 0, 0, 0, 3723, 3728, 3, 348, 174, 0, 3724, 3725, 5, 4, 0, 0, 3725, 3727, 3, 348, 174, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3730, 1, 0, 0, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 347, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3732, 3, 384, 192, 0, 3732, 3735, 3, 330, 165, 0, 3733, 3734, 5, 197, 0, 0, 3734, 3736, 5, 198, 0, 0, 3735, 3733, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 24, 12, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 349, 1, 0, 0, 0, 3740, 3745, 3, 352, 176, 0, 3741, 3742, 5, 4, 0, 0, 3742, 3744, 3, 352, 176, 0, 3743, 3741, 1, 0, 0, 0, 3744, 3747, 1, 0, 0, 0, 3745, 3743, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 351, 1, 0, 0, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3749, 3, 96, 48, 0, 3749, 3753, 3, 330, 165, 0, 3750, 3752, 3, 354, 177, 0, 3751, 3750, 1, 0, 0, 0, 3752, 3755, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 353, 1, 0, 0, 0, 3755, 3753, 1, 0, 0, 0, 3756, 3757, 5, 197, 0, 0, 3757, 3762, 5, 198, 0, 0, 3758, 3762, 3, 342, 171, 0, 3759, 3762, 3, 356, 178, 0, 3760, 3762, 3, 24, 12, 0, 3761, 3756, 1, 0, 0, 0, 3761, 3758, 1, 0, 0, 0, 3761, 3759, 1, 0, 0, 0, 3761, 3760, 1, 0, 0, 0, 3762, 355, 1, 0, 0, 0, 3763, 3764, 5, 127, 0, 0, 3764, 3765, 5, 12, 0, 0, 3765, 3766, 5, 20, 0, 0, 3766, 3767, 5, 2, 0, 0, 3767, 3768, 3, 280, 140, 0, 3768, 3769, 5, 3, 0, 0, 3769, 357, 1, 0, 0, 0, 3770, 3775, 3, 360, 180, 0, 3771, 3772, 5, 4, 0, 0, 3772, 3774, 3, 360, 180, 0, 3773, 3771, 1, 0, 0, 0, 3774, 3777, 1, 0, 0, 0, 3775, 3773, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 359, 1, 0, 0, 0, 3777, 3775, 1, 0, 0, 0, 3778, 3780, 3, 388, 194, 0, 3779, 3781, 5, 371, 0, 0, 3780, 3779, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3785, 3, 330, 165, 0, 3783, 3784, 5, 197, 0, 0, 3784, 3786, 5, 198, 0, 0, 3785, 3783, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3788, 1, 0, 0, 0, 3787, 3789, 3, 24, 12, 0, 3788, 3787, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 361, 1, 0, 0, 0, 3790, 3791, 5, 343, 0, 0, 3791, 3792, 3, 280, 140, 0, 3792, 3793, 5, 300, 0, 0, 3793, 3794, 3, 280, 140, 0, 3794, 363, 1, 0, 0, 0, 3795, 3796, 5, 345, 0, 0, 3796, 3801, 3, 368, 184, 0, 3797, 3798, 5, 4, 0, 0, 3798, 3800, 3, 368, 184, 0, 3799, 3797, 1, 0, 0, 0, 3800, 3803, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 365, 1, 0, 0, 0, 3803, 3801, 1, 0, 0, 0, 3804, 3805, 5, 351, 0, 0, 3805, 3806, 5, 31, 0, 0, 3806, 3807, 3, 94, 47, 0, 3807, 367, 1, 0, 0, 0, 3808, 3809, 3, 384, 192, 0, 3809, 3810, 5, 20, 0, 0, 3810, 3811, 3, 370, 185, 0, 3811, 369, 1, 0, 0, 0, 3812, 3859, 3, 384, 192, 0, 3813, 3814, 5, 2, 0, 0, 3814, 3815, 3, 384, 192, 0, 3815, 3816, 5, 3, 0, 0, 3816, 3859, 1, 0, 0, 0, 3817, 3852, 5, 2, 0, 0, 3818, 3819, 5, 44, 0, 0, 3819, 3820, 5, 31, 0, 0, 3820, 3825, 3, 280, 140, 0, 3821, 3822, 5, 4, 0, 0, 3822, 3824, 3, 280, 140, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3827, 1, 0, 0, 0, 3825, 3823, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 3853, 1, 0, 0, 0, 3827, 3825, 1, 0, 0, 0, 3828, 3829, 7, 24, 0, 0, 3829, 3830, 5, 31, 0, 0, 3830, 3835, 3, 280, 140, 0, 3831, 3832, 5, 4, 0, 0, 3832, 3834, 3, 280, 140, 0, 3833, 3831, 1, 0, 0, 0, 3834, 3837, 1, 0, 0, 0, 3835, 3833, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3838, 3828, 1, 0, 0, 0, 3838, 3839, 1, 0, 0, 0, 3839, 3850, 1, 0, 0, 0, 3840, 3841, 7, 25, 0, 0, 3841, 3842, 5, 31, 0, 0, 3842, 3847, 3, 108, 54, 0, 3843, 3844, 5, 4, 0, 0, 3844, 3846, 3, 108, 54, 0, 3845, 3843, 1, 0, 0, 0, 3846, 3849, 1, 0, 0, 0, 3847, 3845, 1, 0, 0, 0, 3847, 3848, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3850, 3840, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 3853, 1, 0, 0, 0, 3852, 3818, 1, 0, 0, 0, 3852, 3838, 1, 0, 0, 0, 3853, 3855, 1, 0, 0, 0, 3854, 3856, 3, 372, 186, 0, 3855, 3854, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 3857, 1, 0, 0, 0, 3857, 3859, 5, 3, 0, 0, 3858, 3812, 1, 0, 0, 0, 3858, 3813, 1, 0, 0, 0, 3858, 3817, 1, 0, 0, 0, 3859, 371, 1, 0, 0, 0, 3860, 3861, 5, 233, 0, 0, 3861, 3877, 3, 374, 187, 0, 3862, 3863, 5, 258, 0, 0, 3863, 3877, 3, 374, 187, 0, 3864, 3865, 5, 233, 0, 0, 3865, 3866, 5, 24, 0, 0, 3866, 3867, 3, 374, 187, 0, 3867, 3868, 5, 14, 0, 0, 3868, 3869, 3, 374, 187, 0, 3869, 3877, 1, 0, 0, 0, 3870, 3871, 5, 258, 0, 0, 3871, 3872, 5, 24, 0, 0, 3872, 3873, 3, 374, 187, 0, 3873, 3874, 5, 14, 0, 0, 3874, 3875, 3, 374, 187, 0, 3875, 3877, 1, 0, 0, 0, 3876, 3860, 1, 0, 0, 0, 3876, 3862, 1, 0, 0, 0, 3876, 3864, 1, 0, 0, 0, 3876, 3870, 1, 0, 0, 0, 3877, 373, 1, 0, 0, 0, 3878, 3879, 5, 321, 0, 0, 3879, 3886, 7, 56, 0, 0, 3880, 3881, 5, 62, 0, 0, 3881, 3886, 5, 257, 0, 0, 3882, 3883, 3, 280, 140, 0, 3883, 3884, 7, 56, 0, 0, 3884, 3886, 1, 0, 0, 0, 3885, 3878, 1, 0, 0, 0, 3885, 3880, 1, 0, 0, 0, 3885, 3882, 1, 0, 0, 0, 3886, 375, 1, 0, 0, 0, 3887, 3892, 3, 382, 191, 0, 3888, 3889, 5, 4, 0, 0, 3889, 3891, 3, 382, 191, 0, 3890, 3888, 1, 0, 0, 0, 3891, 3894, 1, 0, 0, 0, 3892, 3890, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 377, 1, 0, 0, 0, 3894, 3892, 1, 0, 0, 0, 3895, 3896, 5, 136, 0, 0, 3896, 3897, 5, 2, 0, 0, 3897, 3898, 3, 280, 140, 0, 3898, 3899, 5, 3, 0, 0, 3899, 3905, 1, 0, 0, 0, 3900, 3905, 3, 382, 191, 0, 3901, 3905, 5, 114, 0, 0, 3902, 3905, 5, 161, 0, 0, 3903, 3905, 5, 250, 0, 0, 3904, 3895, 1, 0, 0, 0, 3904, 3900, 1, 0, 0, 0, 3904, 3901, 1, 0, 0, 0, 3904, 3902, 1, 0, 0, 0, 3904, 3903, 1, 0, 0, 0, 3905, 379, 1, 0, 0, 0, 3906, 3907, 3, 382, 191, 0, 3907, 381, 1, 0, 0, 0, 3908, 3913, 3, 388, 194, 0, 3909, 3910, 5, 5, 0, 0, 3910, 3912, 3, 388, 194, 0, 3911, 3909, 1, 0, 0, 0, 3912, 3915, 1, 0, 0, 0, 3913, 3911, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 383, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3916, 3917, 3, 388, 194, 0, 3917, 3918, 3, 386, 193, 0, 3918, 385, 1, 0, 0, 0, 3919, 3920, 5, 362, 0, 0, 3920, 3922, 3, 388, 194, 0, 3921, 3919, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3921, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3927, 1, 0, 0, 0, 3925, 3927, 1, 0, 0, 0, 3926, 3921, 1, 0, 0, 0, 3926, 3925, 1, 0, 0, 0, 3927, 387, 1, 0, 0, 0, 3928, 3931, 3, 390, 195, 0, 3929, 3931, 3, 408, 204, 0, 3930, 3928, 1, 0, 0, 0, 3930, 3929, 1, 0, 0, 0, 3931, 389, 1, 0, 0, 0, 3932, 3937, 5, 388, 0, 0, 3933, 3937, 3, 392, 196, 0, 3934, 3937, 3, 406, 203, 0, 3935, 3937, 3, 410, 205, 0, 3936, 3932, 1, 0, 0, 0, 3936, 3933, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3936, 3935, 1, 0, 0, 0, 3937, 391, 1, 0, 0, 0, 3938, 3939, 7, 57, 0, 0, 3939, 393, 1, 0, 0, 0, 3940, 3941, 5, 389, 0, 0, 3941, 395, 1, 0, 0, 0, 3942, 3944, 5, 362, 0, 0, 3943, 3942, 1, 0, 0, 0, 3943, 3944, 1, 0, 0, 0, 3944, 3945, 1, 0, 0, 0, 3945, 3983, 5, 383, 0, 0, 3946, 3948, 5, 362, 0, 0, 3947, 3946, 1, 0, 0, 0, 3947, 3948, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3983, 5, 384, 0, 0, 3950, 3952, 5, 362, 0, 0, 3951, 3950, 1, 0, 0, 0, 3951, 3952, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3983, 7, 58, 0, 0, 3954, 3956, 5, 362, 0, 0, 3955, 3954, 1, 0, 0, 0, 3955, 3956, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3983, 5, 382, 0, 0, 3958, 3960, 5, 362, 0, 0, 3959, 3958, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 3983, 5, 379, 0, 0, 3962, 3964, 5, 362, 0, 0, 3963, 3962, 1, 0, 0, 0, 3963, 3964, 1, 0, 0, 0, 3964, 3965, 1, 0, 0, 0, 3965, 3983, 5, 380, 0, 0, 3966, 3968, 5, 362, 0, 0, 3967, 3966, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3983, 5, 381, 0, 0, 3970, 3972, 5, 362, 0, 0, 3971, 3970, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3983, 5, 386, 0, 0, 3974, 3976, 5, 362, 0, 0, 3975, 3974, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3977, 1, 0, 0, 0, 3977, 3983, 5, 385, 0, 0, 3978, 3980, 5, 362, 0, 0, 3979, 3978, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3981, 1, 0, 0, 0, 3981, 3983, 5, 387, 0, 0, 3982, 3943, 1, 0, 0, 0, 3982, 3947, 1, 0, 0, 0, 3982, 3951, 1, 0, 0, 0, 3982, 3955, 1, 0, 0, 0, 3982, 3959, 1, 0, 0, 0, 3982, 3963, 1, 0, 0, 0, 3982, 3967, 1, 0, 0, 0, 3982, 3971, 1, 0, 0, 0, 3982, 3975, 1, 0, 0, 0, 3982, 3979, 1, 0, 0, 0, 3983, 397, 1, 0, 0, 0, 3984, 3985, 5, 319, 0, 0, 3985, 3996, 3, 330, 165, 0, 3986, 3996, 3, 24, 12, 0, 3987, 3996, 3, 326, 163, 0, 3988, 3989, 7, 59, 0, 0, 3989, 3990, 5, 197, 0, 0, 3990, 3996, 5, 198, 0, 0, 3991, 3992, 5, 269, 0, 0, 3992, 3996, 3, 342, 171, 0, 3993, 3994, 5, 96, 0, 0, 3994, 3996, 5, 82, 0, 0, 3995, 3984, 1, 0, 0, 0, 3995, 3986, 1, 0, 0, 0, 3995, 3987, 1, 0, 0, 0, 3995, 3988, 1, 0, 0, 0, 3995, 3991, 1, 0, 0, 0, 3995, 3993, 1, 0, 0, 0, 3996, 399, 1, 0, 0, 0, 3997, 3998, 7, 60, 0, 0, 3998, 401, 1, 0, 0, 0, 3999, 4002, 3, 400, 200, 0, 4000, 4002, 5, 198, 0, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4000, 1, 0, 0, 0, 4002, 403, 1, 0, 0, 0, 4003, 4006, 5, 382, 0, 0, 4004, 4006, 3, 400, 200, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4004, 1, 0, 0, 0, 4006, 405, 1, 0, 0, 0, 4007, 4008, 7, 61, 0, 0, 4008, 407, 1, 0, 0, 0, 4009, 4010, 7, 62, 0, 0, 4010, 409, 1, 0, 0, 0, 4011, 4012, 7, 63, 0, 0, 4012, 411, 1, 0, 0, 0, 519, 415, 422, 426, 431, 438, 443, 451, 453, 472, 476, 482, 485, 488, 495, 498, 502, 505, 510, 522, 524, 532, 535, 539, 542, 548, 559, 565, 570, 603, 613, 624, 635, 646, 651, 660, 664, 670, 674, 679, 685, 697, 705, 711, 722, 726, 731, 746, 750, 757, 761, 767, 796, 800, 805, 812, 818, 821, 824, 828, 832, 840, 842, 851, 854, 863, 868, 874, 881, 884, 888, 899, 902, 908, 912, 927, 929, 937, 941, 947, 950, 954, 957, 963, 968, 972, 979, 982, 985, 992, 997, 1006, 1014, 1020, 1023, 1026, 1032, 1036, 1041, 1044, 1048, 1050, 1058, 1066, 1069, 1076, 1079, 1082, 1091, 1096, 1102, 1107, 1110, 1114, 1117, 1121, 1149, 1152, 1160, 1166, 1169, 1172, 1177, 1185, 1190, 1196, 1202, 1205, 1212, 1219, 1227, 1244, 1271, 1274, 1280, 1289, 1298, 1304, 1309, 1314, 1321, 1326, 1331, 1338, 1346, 1349, 1353, 1365, 1369, 1376, 1492, 1500, 1508, 1517, 1527, 1531, 1534, 1538, 1544, 1556, 1568, 1573, 1582, 1590, 1595, 1597, 1605, 1610, 1614, 1617, 1625, 1630, 1639, 1644, 1647, 1652, 1656, 1661, 1663, 1667, 1676, 1684, 1690, 1701, 1708, 1717, 1722, 1725, 1748, 1750, 1762, 1769, 1772, 1779, 1783, 1789, 1797, 1804, 1807, 1815, 1826, 1837, 1845, 1851, 1863, 1870, 1877, 1889, 1897, 1903, 1909, 1912, 1928, 1935, 1946, 1955, 1958, 1967, 1970, 1979, 1982, 1991, 1994, 1997, 2002, 2004, 2008, 2019, 2025, 2031, 2034, 2036, 2049, 2058, 2062, 2065, 2069, 2075, 2079, 2087, 2091, 2094, 2097, 2100, 2104, 2108, 2113, 2117, 2120, 2123, 2126, 2130, 2135, 2139, 2142, 2145, 2148, 2150, 2156, 2163, 2168, 2171, 2174, 2178, 2188, 2192, 2194, 2197, 2201, 2207, 2211, 2222, 2232, 2236, 2248, 2260, 2275, 2280, 2286, 2293, 2309, 2314, 2327, 2332, 2340, 2346, 2350, 2353, 2358, 2365, 2371, 2380, 2390, 2405, 2410, 2412, 2417, 2426, 2439, 2444, 2448, 2455, 2460, 2464, 2467, 2470, 2484, 2497, 2502, 2506, 2509, 2513, 2519, 2522, 2529, 2541, 2552, 2565, 2576, 2581, 2589, 2594, 2608, 2617, 2620, 2625, 2632, 2635, 2641, 2647, 2650, 2655, 2660, 2664, 2670, 2674, 2677, 2682, 2685, 2690, 2694, 2697, 2700, 2706, 2711, 2718, 2721, 2739, 2741, 2744, 2755, 2764, 2771, 2779, 2786, 2791, 2794, 2797, 2805, 2813, 2821, 2831, 2837, 2844, 2851, 2853, 2866, 2872, 2874, 2884, 2890, 2892, 2900, 2904, 2916, 2919, 2924, 2928, 2930, 2939, 2951, 2953, 2960, 2967, 2973, 2979, 2981, 2988, 2996, 3004, 3010, 3015, 3022, 3035, 3043, 3046, 3050, 3052, 3059, 3070, 3077, 3087, 3092, 3096, 3106, 3113, 3126, 3128, 3136, 3138, 3142, 3150, 3159, 3165, 3173, 3178, 3190, 3195, 3198, 3204, 3208, 3213, 3218, 3223, 3229, 3250, 3252, 3263, 3275, 3287, 3291, 3300, 3304, 3322, 3325, 3333, 3342, 3351, 3374, 3390, 3397, 3400, 3409, 3413, 3417, 3429, 3454, 3461, 3464, 3479, 3500, 3504, 3506, 3516, 3518, 3528, 3543, 3545, 3558, 3562, 3569, 3574, 3582, 3587, 3596, 3628, 3645, 3649, 3655, 3661, 3670, 3674, 3676, 3683, 3691, 3699, 3707, 3715, 3728, 3735, 3738, 3745, 3753, 3761, 3775, 3780, 3785, 3788, 3801, 3825, 3835, 3838, 3847, 3850, 3852, 3855, 3858, 3876, 3885, 3892, 3904, 3913, 3923, 3926, 3930, 3936, 3943, 3947, 3951, 3955, 3959, 3963, 3967, 3971, 3975, 3979, 3982, 3995, 4001, 4005] \ No newline at end of file +[4, 1, 393, 4014, 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, 1, 0, 5, 0, 414, 8, 0, 10, 0, 12, 0, 417, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 423, 8, 1, 1, 2, 1, 2, 3, 2, 427, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 432, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 439, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 444, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 452, 8, 2, 10, 2, 12, 2, 455, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 483, 8, 2, 1, 2, 3, 2, 486, 8, 2, 1, 2, 3, 2, 489, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 496, 8, 2, 1, 2, 3, 2, 499, 8, 2, 1, 2, 1, 2, 3, 2, 503, 8, 2, 1, 2, 3, 2, 506, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 511, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 523, 8, 2, 10, 2, 12, 2, 526, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 533, 8, 2, 1, 2, 3, 2, 536, 8, 2, 1, 2, 1, 2, 3, 2, 540, 8, 2, 1, 2, 3, 2, 543, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 549, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 560, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 566, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 571, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 604, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 614, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 625, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 636, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 647, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 652, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 3, 2, 665, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 671, 8, 2, 1, 2, 1, 2, 3, 2, 675, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 680, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 686, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 698, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 706, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 712, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 723, 8, 2, 1, 2, 1, 2, 3, 2, 727, 8, 2, 1, 2, 4, 2, 730, 8, 2, 11, 2, 12, 2, 731, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 747, 8, 2, 1, 2, 1, 2, 3, 2, 751, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 756, 8, 2, 10, 2, 12, 2, 759, 9, 2, 1, 2, 3, 2, 762, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 768, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 797, 8, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 806, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 813, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 819, 8, 2, 1, 2, 3, 2, 822, 8, 2, 1, 2, 3, 2, 825, 8, 2, 1, 2, 1, 2, 3, 2, 829, 8, 2, 1, 2, 1, 2, 3, 2, 833, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 841, 8, 2, 10, 2, 12, 2, 844, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 3, 2, 855, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 864, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 869, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 875, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 882, 8, 2, 1, 2, 3, 2, 885, 8, 2, 1, 2, 1, 2, 3, 2, 889, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 898, 8, 2, 10, 2, 12, 2, 901, 9, 2, 3, 2, 903, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 909, 8, 2, 1, 2, 1, 2, 3, 2, 913, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 928, 8, 2, 10, 2, 12, 2, 931, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 938, 8, 2, 1, 2, 1, 2, 3, 2, 942, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 948, 8, 2, 1, 2, 3, 2, 951, 8, 2, 1, 2, 1, 2, 3, 2, 955, 8, 2, 1, 2, 3, 2, 958, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 964, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 1, 2, 3, 2, 973, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 980, 8, 2, 1, 2, 3, 2, 983, 8, 2, 1, 2, 3, 2, 986, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 993, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 998, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1007, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1015, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1021, 8, 2, 1, 2, 3, 2, 1024, 8, 2, 1, 2, 3, 2, 1027, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1033, 8, 2, 1, 2, 1, 2, 3, 2, 1037, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1042, 8, 2, 1, 2, 3, 2, 1045, 8, 2, 1, 2, 1, 2, 3, 2, 1049, 8, 2, 3, 2, 1051, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1059, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1067, 8, 2, 1, 2, 3, 2, 1070, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1077, 8, 2, 1, 2, 3, 2, 1080, 8, 2, 1, 2, 3, 2, 1083, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1092, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1103, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1108, 8, 2, 1, 2, 3, 2, 1111, 8, 2, 1, 2, 1, 2, 3, 2, 1115, 8, 2, 1, 2, 3, 2, 1118, 8, 2, 1, 2, 1, 2, 3, 2, 1122, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1148, 8, 2, 10, 2, 12, 2, 1151, 9, 2, 3, 2, 1153, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1161, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1167, 8, 2, 1, 2, 3, 2, 1170, 8, 2, 1, 2, 3, 2, 1173, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1178, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1186, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1191, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1197, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1203, 8, 2, 1, 2, 3, 2, 1206, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1213, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1218, 8, 2, 10, 2, 12, 2, 1221, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1226, 8, 2, 10, 2, 12, 2, 1229, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1243, 8, 2, 10, 2, 12, 2, 1246, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1270, 8, 2, 10, 2, 12, 2, 1273, 9, 2, 3, 2, 1275, 8, 2, 1, 2, 1, 2, 5, 2, 1279, 8, 2, 10, 2, 12, 2, 1282, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1288, 8, 2, 10, 2, 12, 2, 1291, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1297, 8, 2, 10, 2, 12, 2, 1300, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1305, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1310, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1315, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1322, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1327, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1332, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1339, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1345, 8, 2, 10, 2, 12, 2, 1348, 9, 2, 3, 2, 1350, 8, 2, 1, 3, 1, 3, 3, 3, 1354, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1366, 8, 6, 1, 6, 1, 6, 3, 6, 1370, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1377, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1493, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1501, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1509, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1518, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1528, 8, 6, 1, 7, 1, 7, 3, 7, 1532, 8, 7, 1, 7, 3, 7, 1535, 8, 7, 1, 7, 1, 7, 3, 7, 1539, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 3, 8, 1545, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1557, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1569, 8, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1574, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 3, 13, 1583, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 3, 14, 1591, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1596, 8, 14, 3, 14, 1598, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1606, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1611, 8, 14, 1, 14, 1, 14, 3, 14, 1615, 8, 14, 1, 14, 3, 14, 1618, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1626, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1631, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1640, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1645, 8, 14, 1, 14, 3, 14, 1648, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1653, 8, 14, 1, 14, 1, 14, 3, 14, 1657, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1662, 8, 14, 3, 14, 1664, 8, 14, 1, 15, 1, 15, 3, 15, 1668, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1675, 8, 16, 10, 16, 12, 16, 1678, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 1685, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1691, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1702, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 1707, 8, 21, 10, 21, 12, 21, 1710, 9, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 1716, 8, 22, 10, 22, 12, 22, 1719, 9, 22, 1, 23, 1, 23, 3, 23, 1723, 8, 23, 1, 23, 3, 23, 1726, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1749, 8, 25, 10, 25, 12, 25, 1752, 9, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1761, 8, 27, 10, 27, 12, 27, 1764, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 3, 28, 1770, 8, 28, 1, 28, 3, 28, 1773, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1778, 8, 29, 10, 29, 12, 29, 1781, 9, 29, 1, 29, 3, 29, 1784, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1790, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 1796, 8, 31, 10, 31, 12, 31, 1799, 9, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 1805, 8, 32, 1, 32, 3, 32, 1808, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1814, 8, 33, 10, 33, 12, 33, 1817, 9, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1825, 8, 34, 10, 34, 12, 34, 1828, 9, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1838, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1846, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1852, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 4, 39, 1862, 8, 39, 11, 39, 12, 39, 1863, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1871, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1878, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1890, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 1896, 8, 39, 10, 39, 12, 39, 1899, 9, 39, 1, 39, 5, 39, 1902, 8, 39, 10, 39, 12, 39, 1905, 9, 39, 1, 39, 5, 39, 1908, 8, 39, 10, 39, 12, 39, 1911, 9, 39, 3, 39, 1913, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 3, 46, 1929, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 1934, 8, 47, 10, 47, 12, 47, 1937, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1947, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1954, 8, 50, 10, 50, 12, 50, 1957, 9, 50, 3, 50, 1959, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1966, 8, 50, 10, 50, 12, 50, 1969, 9, 50, 3, 50, 1971, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1978, 8, 50, 10, 50, 12, 50, 1981, 9, 50, 3, 50, 1983, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1990, 8, 50, 10, 50, 12, 50, 1993, 9, 50, 3, 50, 1995, 8, 50, 1, 50, 3, 50, 1998, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 2003, 8, 50, 3, 50, 2005, 8, 50, 1, 50, 1, 50, 3, 50, 2009, 8, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2026, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2032, 8, 52, 1, 52, 5, 52, 2035, 8, 52, 10, 52, 12, 52, 2038, 9, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 2048, 8, 53, 10, 53, 12, 53, 2051, 9, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2059, 8, 53, 1, 54, 1, 54, 3, 54, 2063, 8, 54, 1, 54, 3, 54, 2066, 8, 54, 1, 54, 1, 54, 3, 54, 2070, 8, 54, 1, 55, 1, 55, 4, 55, 2074, 8, 55, 11, 55, 12, 55, 2075, 1, 56, 1, 56, 3, 56, 2080, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2086, 8, 56, 10, 56, 12, 56, 2089, 9, 56, 1, 56, 3, 56, 2092, 8, 56, 1, 56, 3, 56, 2095, 8, 56, 1, 56, 3, 56, 2098, 8, 56, 1, 56, 3, 56, 2101, 8, 56, 1, 56, 1, 56, 3, 56, 2105, 8, 56, 1, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 5, 57, 2112, 8, 57, 10, 57, 12, 57, 2115, 9, 57, 1, 57, 3, 57, 2118, 8, 57, 1, 57, 3, 57, 2121, 8, 57, 1, 57, 3, 57, 2124, 8, 57, 1, 57, 3, 57, 2127, 8, 57, 1, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 5, 57, 2134, 8, 57, 10, 57, 12, 57, 2137, 9, 57, 1, 57, 3, 57, 2140, 8, 57, 1, 57, 3, 57, 2143, 8, 57, 1, 57, 3, 57, 2146, 8, 57, 1, 57, 3, 57, 2149, 8, 57, 3, 57, 2151, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2157, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2164, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2169, 8, 58, 1, 58, 3, 58, 2172, 8, 58, 1, 58, 3, 58, 2175, 8, 58, 1, 58, 1, 58, 3, 58, 2179, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2189, 8, 58, 1, 58, 1, 58, 3, 58, 2193, 8, 58, 3, 58, 2195, 8, 58, 1, 58, 3, 58, 2198, 8, 58, 1, 58, 1, 58, 3, 58, 2202, 8, 58, 1, 59, 1, 59, 5, 59, 2206, 8, 59, 10, 59, 12, 59, 2209, 9, 59, 1, 59, 3, 59, 2212, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2223, 8, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2233, 8, 62, 1, 62, 1, 62, 3, 62, 2237, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2249, 8, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2261, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2274, 8, 65, 10, 65, 12, 65, 2277, 9, 65, 1, 65, 1, 65, 3, 65, 2281, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 2287, 8, 66, 1, 67, 1, 67, 1, 67, 5, 67, 2292, 8, 67, 10, 67, 12, 67, 2295, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2310, 8, 71, 1, 71, 5, 71, 2313, 8, 71, 10, 71, 12, 71, 2316, 9, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2326, 8, 72, 10, 72, 12, 72, 2329, 9, 72, 1, 72, 1, 72, 3, 72, 2333, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2339, 8, 73, 10, 73, 12, 73, 2342, 9, 73, 1, 73, 5, 73, 2345, 8, 73, 10, 73, 12, 73, 2348, 9, 73, 1, 73, 3, 73, 2351, 8, 73, 1, 73, 3, 73, 2354, 8, 73, 1, 74, 1, 74, 1, 75, 3, 75, 2359, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2366, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2372, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2379, 8, 76, 10, 76, 12, 76, 2382, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2389, 8, 76, 10, 76, 12, 76, 2392, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2404, 8, 76, 10, 76, 12, 76, 2407, 9, 76, 1, 76, 1, 76, 3, 76, 2411, 8, 76, 3, 76, 2413, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2418, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2425, 8, 78, 10, 78, 12, 78, 2428, 9, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2438, 8, 78, 10, 78, 12, 78, 2441, 9, 78, 1, 78, 1, 78, 3, 78, 2445, 8, 78, 1, 79, 1, 79, 3, 79, 2449, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2456, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2461, 8, 80, 5, 80, 2463, 8, 80, 10, 80, 12, 80, 2466, 9, 80, 3, 80, 2468, 8, 80, 1, 80, 3, 80, 2471, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2483, 8, 81, 10, 81, 12, 81, 2486, 9, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2496, 8, 82, 10, 82, 12, 82, 2499, 9, 82, 1, 82, 1, 82, 3, 82, 2503, 8, 82, 1, 83, 1, 83, 3, 83, 2507, 8, 83, 1, 83, 3, 83, 2510, 8, 83, 1, 84, 1, 84, 3, 84, 2514, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2520, 8, 84, 1, 84, 3, 84, 2523, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2530, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 2540, 8, 87, 10, 87, 12, 87, 2543, 9, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2551, 8, 88, 10, 88, 12, 88, 2554, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2564, 8, 88, 10, 88, 12, 88, 2567, 9, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 2575, 8, 89, 10, 89, 12, 89, 2578, 9, 89, 1, 89, 1, 89, 3, 89, 2582, 8, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 3, 92, 2590, 8, 92, 1, 93, 1, 93, 1, 94, 3, 94, 2595, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2609, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2616, 8, 97, 10, 97, 12, 97, 2619, 9, 97, 3, 97, 2621, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2626, 8, 97, 1, 97, 1, 97, 1, 97, 5, 97, 2631, 8, 97, 10, 97, 12, 97, 2634, 9, 97, 3, 97, 2636, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 2642, 8, 99, 1, 99, 1, 99, 5, 99, 2646, 8, 99, 10, 99, 12, 99, 2649, 9, 99, 3, 99, 2651, 8, 99, 1, 100, 1, 100, 1, 100, 3, 100, 2656, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2661, 8, 101, 1, 101, 1, 101, 3, 101, 2665, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2671, 8, 101, 1, 101, 1, 101, 3, 101, 2675, 8, 101, 1, 102, 3, 102, 2678, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2683, 8, 102, 1, 102, 3, 102, 2686, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2691, 8, 102, 1, 102, 1, 102, 3, 102, 2695, 8, 102, 1, 102, 3, 102, 2698, 8, 102, 1, 102, 3, 102, 2701, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2707, 8, 103, 1, 104, 1, 104, 1, 104, 3, 104, 2712, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 2719, 8, 104, 1, 105, 3, 105, 2722, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 2740, 8, 105, 3, 105, 2742, 8, 105, 1, 105, 3, 105, 2745, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 5, 107, 2754, 8, 107, 10, 107, 12, 107, 2757, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2763, 8, 108, 10, 108, 12, 108, 2766, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 3, 109, 2772, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 2778, 8, 110, 10, 110, 12, 110, 2781, 9, 110, 1, 110, 1, 110, 1, 111, 1, 111, 3, 111, 2787, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2792, 8, 112, 1, 112, 3, 112, 2795, 8, 112, 1, 112, 3, 112, 2798, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2804, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2812, 8, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2820, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2830, 8, 114, 10, 114, 12, 114, 2833, 9, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2838, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2845, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 2852, 8, 115, 3, 115, 2854, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 2865, 8, 116, 10, 116, 12, 116, 2868, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2873, 8, 116, 3, 116, 2875, 8, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 2883, 8, 116, 10, 116, 12, 116, 2886, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 2891, 8, 116, 3, 116, 2893, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 2901, 8, 118, 1, 119, 1, 119, 3, 119, 2905, 8, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 2915, 8, 121, 10, 121, 12, 121, 2918, 9, 121, 3, 121, 2920, 8, 121, 1, 121, 1, 121, 1, 122, 3, 122, 2925, 8, 122, 1, 122, 1, 122, 3, 122, 2929, 8, 122, 3, 122, 2931, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2940, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2952, 8, 123, 3, 123, 2954, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2961, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2968, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2974, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2980, 8, 123, 3, 123, 2982, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2987, 8, 124, 10, 124, 12, 124, 2990, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2995, 8, 125, 10, 125, 12, 125, 2998, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 3003, 8, 126, 10, 126, 12, 126, 3006, 9, 126, 1, 127, 1, 127, 1, 127, 3, 127, 3011, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 3016, 8, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 3, 129, 3023, 8, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 5, 132, 3034, 8, 132, 10, 132, 12, 132, 3037, 9, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 3, 133, 3044, 8, 133, 1, 133, 3, 133, 3047, 8, 133, 1, 133, 1, 133, 3, 133, 3051, 8, 133, 3, 133, 3053, 8, 133, 1, 134, 1, 134, 1, 134, 5, 134, 3058, 8, 134, 10, 134, 12, 134, 3061, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 3069, 8, 136, 10, 136, 12, 136, 3072, 9, 136, 1, 136, 1, 136, 1, 137, 1, 137, 3, 137, 3078, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3086, 8, 138, 10, 138, 12, 138, 3089, 9, 138, 1, 138, 1, 138, 3, 138, 3093, 8, 138, 1, 139, 1, 139, 3, 139, 3097, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 3, 142, 3107, 8, 142, 1, 143, 1, 143, 1, 143, 5, 143, 3112, 8, 143, 10, 143, 12, 143, 3115, 9, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3127, 8, 144, 3, 144, 3129, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 3137, 8, 144, 10, 144, 12, 144, 3140, 9, 144, 1, 145, 3, 145, 3143, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3151, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3158, 8, 145, 10, 145, 12, 145, 3161, 9, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3166, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3174, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3179, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3189, 8, 145, 10, 145, 12, 145, 3192, 9, 145, 1, 145, 1, 145, 3, 145, 3196, 8, 145, 1, 145, 3, 145, 3199, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3205, 8, 145, 1, 145, 1, 145, 3, 145, 3209, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3214, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3219, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3224, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3230, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 3251, 8, 146, 10, 146, 12, 146, 3254, 9, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3264, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3276, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3286, 8, 148, 11, 148, 12, 148, 3287, 1, 148, 1, 148, 3, 148, 3292, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3299, 8, 148, 11, 148, 12, 148, 3300, 1, 148, 1, 148, 3, 148, 3305, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3321, 8, 148, 10, 148, 12, 148, 3324, 9, 148, 3, 148, 3326, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3334, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3343, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3352, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3373, 8, 148, 11, 148, 12, 148, 3374, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3391, 8, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3396, 8, 148, 10, 148, 12, 148, 3399, 9, 148, 3, 148, 3401, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3410, 8, 148, 1, 148, 1, 148, 3, 148, 3414, 8, 148, 1, 148, 1, 148, 3, 148, 3418, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 3428, 8, 148, 11, 148, 12, 148, 3429, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3455, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3462, 8, 148, 1, 148, 3, 148, 3465, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3480, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 3501, 8, 148, 1, 148, 1, 148, 3, 148, 3505, 8, 148, 3, 148, 3507, 8, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3517, 8, 148, 10, 148, 12, 148, 3520, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 3529, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 4, 150, 3542, 8, 150, 11, 150, 12, 150, 3543, 3, 150, 3546, 8, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 3, 155, 3559, 8, 155, 1, 156, 1, 156, 3, 156, 3563, 8, 156, 1, 157, 1, 157, 1, 157, 4, 157, 3568, 8, 157, 11, 157, 12, 157, 3569, 1, 158, 1, 158, 1, 158, 3, 158, 3575, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 3, 160, 3583, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3588, 8, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 3, 163, 3597, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3629, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3646, 8, 165, 1, 165, 1, 165, 3, 165, 3650, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3656, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3662, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 5, 165, 3669, 8, 165, 10, 165, 12, 165, 3672, 9, 165, 1, 165, 3, 165, 3675, 8, 165, 3, 165, 3677, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 3682, 8, 166, 10, 166, 12, 166, 3685, 9, 166, 1, 167, 1, 167, 1, 167, 5, 167, 3690, 8, 167, 10, 167, 12, 167, 3693, 9, 167, 1, 168, 1, 168, 1, 168, 5, 168, 3698, 8, 168, 10, 168, 12, 168, 3701, 9, 168, 1, 169, 1, 169, 1, 169, 5, 169, 3706, 8, 169, 10, 169, 12, 169, 3709, 9, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3716, 8, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 5, 173, 3727, 8, 173, 10, 173, 12, 173, 3730, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 3736, 8, 174, 1, 174, 3, 174, 3739, 8, 174, 1, 175, 1, 175, 1, 175, 5, 175, 3744, 8, 175, 10, 175, 12, 175, 3747, 9, 175, 1, 176, 1, 176, 1, 176, 5, 176, 3752, 8, 176, 10, 176, 12, 176, 3755, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 3762, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 5, 179, 3774, 8, 179, 10, 179, 12, 179, 3777, 9, 179, 1, 180, 1, 180, 3, 180, 3781, 8, 180, 1, 180, 1, 180, 1, 180, 3, 180, 3786, 8, 180, 1, 180, 3, 180, 3789, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 3800, 8, 182, 10, 182, 12, 182, 3803, 9, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 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, 5, 185, 3824, 8, 185, 10, 185, 12, 185, 3827, 9, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 3834, 8, 185, 10, 185, 12, 185, 3837, 9, 185, 3, 185, 3839, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 3846, 8, 185, 10, 185, 12, 185, 3849, 9, 185, 3, 185, 3851, 8, 185, 3, 185, 3853, 8, 185, 1, 185, 3, 185, 3856, 8, 185, 1, 185, 3, 185, 3859, 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, 3, 186, 3877, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 3886, 8, 187, 1, 188, 1, 188, 1, 188, 5, 188, 3891, 8, 188, 10, 188, 12, 188, 3894, 9, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 3905, 8, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 5, 191, 3912, 8, 191, 10, 191, 12, 191, 3915, 9, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 4, 193, 3922, 8, 193, 11, 193, 12, 193, 3923, 1, 193, 3, 193, 3927, 8, 193, 1, 194, 1, 194, 3, 194, 3931, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 3937, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 3, 198, 3944, 8, 198, 1, 198, 1, 198, 3, 198, 3948, 8, 198, 1, 198, 1, 198, 3, 198, 3952, 8, 198, 1, 198, 1, 198, 3, 198, 3956, 8, 198, 1, 198, 1, 198, 3, 198, 3960, 8, 198, 1, 198, 1, 198, 3, 198, 3964, 8, 198, 1, 198, 1, 198, 3, 198, 3968, 8, 198, 1, 198, 1, 198, 3, 198, 3972, 8, 198, 1, 198, 1, 198, 3, 198, 3976, 8, 198, 1, 198, 1, 198, 3, 198, 3980, 8, 198, 1, 198, 3, 198, 3983, 8, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 3996, 8, 199, 1, 200, 1, 200, 1, 201, 1, 201, 3, 201, 4002, 8, 201, 1, 202, 1, 202, 3, 202, 4006, 8, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 9, 1149, 1219, 1227, 1244, 1271, 1280, 1289, 1298, 1346, 4, 104, 288, 292, 296, 206, 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, 0, 64, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 3, 0, 72, 72, 190, 190, 261, 261, 3, 0, 73, 73, 191, 191, 262, 262, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 3, 0, 10, 10, 290, 290, 331, 331, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 383, 384, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4626, 0, 415, 1, 0, 0, 0, 2, 420, 1, 0, 0, 0, 4, 1349, 1, 0, 0, 0, 6, 1353, 1, 0, 0, 0, 8, 1355, 1, 0, 0, 0, 10, 1357, 1, 0, 0, 0, 12, 1527, 1, 0, 0, 0, 14, 1529, 1, 0, 0, 0, 16, 1544, 1, 0, 0, 0, 18, 1550, 1, 0, 0, 0, 20, 1562, 1, 0, 0, 0, 22, 1575, 1, 0, 0, 0, 24, 1578, 1, 0, 0, 0, 26, 1582, 1, 0, 0, 0, 28, 1663, 1, 0, 0, 0, 30, 1665, 1, 0, 0, 0, 32, 1669, 1, 0, 0, 0, 34, 1690, 1, 0, 0, 0, 36, 1692, 1, 0, 0, 0, 38, 1694, 1, 0, 0, 0, 40, 1701, 1, 0, 0, 0, 42, 1703, 1, 0, 0, 0, 44, 1711, 1, 0, 0, 0, 46, 1720, 1, 0, 0, 0, 48, 1731, 1, 0, 0, 0, 50, 1750, 1, 0, 0, 0, 52, 1753, 1, 0, 0, 0, 54, 1756, 1, 0, 0, 0, 56, 1767, 1, 0, 0, 0, 58, 1783, 1, 0, 0, 0, 60, 1789, 1, 0, 0, 0, 62, 1791, 1, 0, 0, 0, 64, 1802, 1, 0, 0, 0, 66, 1809, 1, 0, 0, 0, 68, 1820, 1, 0, 0, 0, 70, 1837, 1, 0, 0, 0, 72, 1845, 1, 0, 0, 0, 74, 1847, 1, 0, 0, 0, 76, 1853, 1, 0, 0, 0, 78, 1912, 1, 0, 0, 0, 80, 1914, 1, 0, 0, 0, 82, 1916, 1, 0, 0, 0, 84, 1918, 1, 0, 0, 0, 86, 1920, 1, 0, 0, 0, 88, 1922, 1, 0, 0, 0, 90, 1924, 1, 0, 0, 0, 92, 1928, 1, 0, 0, 0, 94, 1930, 1, 0, 0, 0, 96, 1938, 1, 0, 0, 0, 98, 1946, 1, 0, 0, 0, 100, 1958, 1, 0, 0, 0, 102, 2010, 1, 0, 0, 0, 104, 2013, 1, 0, 0, 0, 106, 2058, 1, 0, 0, 0, 108, 2062, 1, 0, 0, 0, 110, 2071, 1, 0, 0, 0, 112, 2104, 1, 0, 0, 0, 114, 2150, 1, 0, 0, 0, 116, 2171, 1, 0, 0, 0, 118, 2203, 1, 0, 0, 0, 120, 2215, 1, 0, 0, 0, 122, 2218, 1, 0, 0, 0, 124, 2227, 1, 0, 0, 0, 126, 2241, 1, 0, 0, 0, 128, 2260, 1, 0, 0, 0, 130, 2280, 1, 0, 0, 0, 132, 2286, 1, 0, 0, 0, 134, 2288, 1, 0, 0, 0, 136, 2296, 1, 0, 0, 0, 138, 2300, 1, 0, 0, 0, 140, 2303, 1, 0, 0, 0, 142, 2306, 1, 0, 0, 0, 144, 2332, 1, 0, 0, 0, 146, 2334, 1, 0, 0, 0, 148, 2355, 1, 0, 0, 0, 150, 2371, 1, 0, 0, 0, 152, 2412, 1, 0, 0, 0, 154, 2417, 1, 0, 0, 0, 156, 2444, 1, 0, 0, 0, 158, 2448, 1, 0, 0, 0, 160, 2470, 1, 0, 0, 0, 162, 2472, 1, 0, 0, 0, 164, 2502, 1, 0, 0, 0, 166, 2504, 1, 0, 0, 0, 168, 2511, 1, 0, 0, 0, 170, 2524, 1, 0, 0, 0, 172, 2529, 1, 0, 0, 0, 174, 2531, 1, 0, 0, 0, 176, 2546, 1, 0, 0, 0, 178, 2570, 1, 0, 0, 0, 180, 2583, 1, 0, 0, 0, 182, 2585, 1, 0, 0, 0, 184, 2587, 1, 0, 0, 0, 186, 2591, 1, 0, 0, 0, 188, 2594, 1, 0, 0, 0, 190, 2598, 1, 0, 0, 0, 192, 2602, 1, 0, 0, 0, 194, 2605, 1, 0, 0, 0, 196, 2637, 1, 0, 0, 0, 198, 2650, 1, 0, 0, 0, 200, 2655, 1, 0, 0, 0, 202, 2674, 1, 0, 0, 0, 204, 2700, 1, 0, 0, 0, 206, 2706, 1, 0, 0, 0, 208, 2708, 1, 0, 0, 0, 210, 2744, 1, 0, 0, 0, 212, 2746, 1, 0, 0, 0, 214, 2750, 1, 0, 0, 0, 216, 2758, 1, 0, 0, 0, 218, 2769, 1, 0, 0, 0, 220, 2773, 1, 0, 0, 0, 222, 2784, 1, 0, 0, 0, 224, 2819, 1, 0, 0, 0, 226, 2821, 1, 0, 0, 0, 228, 2825, 1, 0, 0, 0, 230, 2853, 1, 0, 0, 0, 232, 2874, 1, 0, 0, 0, 234, 2894, 1, 0, 0, 0, 236, 2900, 1, 0, 0, 0, 238, 2904, 1, 0, 0, 0, 240, 2906, 1, 0, 0, 0, 242, 2909, 1, 0, 0, 0, 244, 2930, 1, 0, 0, 0, 246, 2981, 1, 0, 0, 0, 248, 2983, 1, 0, 0, 0, 250, 2991, 1, 0, 0, 0, 252, 2999, 1, 0, 0, 0, 254, 3007, 1, 0, 0, 0, 256, 3015, 1, 0, 0, 0, 258, 3022, 1, 0, 0, 0, 260, 3026, 1, 0, 0, 0, 262, 3028, 1, 0, 0, 0, 264, 3035, 1, 0, 0, 0, 266, 3043, 1, 0, 0, 0, 268, 3054, 1, 0, 0, 0, 270, 3062, 1, 0, 0, 0, 272, 3064, 1, 0, 0, 0, 274, 3077, 1, 0, 0, 0, 276, 3092, 1, 0, 0, 0, 278, 3096, 1, 0, 0, 0, 280, 3098, 1, 0, 0, 0, 282, 3100, 1, 0, 0, 0, 284, 3106, 1, 0, 0, 0, 286, 3108, 1, 0, 0, 0, 288, 3128, 1, 0, 0, 0, 290, 3223, 1, 0, 0, 0, 292, 3229, 1, 0, 0, 0, 294, 3255, 1, 0, 0, 0, 296, 3506, 1, 0, 0, 0, 298, 3528, 1, 0, 0, 0, 300, 3545, 1, 0, 0, 0, 302, 3547, 1, 0, 0, 0, 304, 3549, 1, 0, 0, 0, 306, 3551, 1, 0, 0, 0, 308, 3553, 1, 0, 0, 0, 310, 3555, 1, 0, 0, 0, 312, 3560, 1, 0, 0, 0, 314, 3567, 1, 0, 0, 0, 316, 3571, 1, 0, 0, 0, 318, 3576, 1, 0, 0, 0, 320, 3582, 1, 0, 0, 0, 322, 3589, 1, 0, 0, 0, 324, 3591, 1, 0, 0, 0, 326, 3596, 1, 0, 0, 0, 328, 3628, 1, 0, 0, 0, 330, 3676, 1, 0, 0, 0, 332, 3678, 1, 0, 0, 0, 334, 3686, 1, 0, 0, 0, 336, 3694, 1, 0, 0, 0, 338, 3702, 1, 0, 0, 0, 340, 3715, 1, 0, 0, 0, 342, 3717, 1, 0, 0, 0, 344, 3720, 1, 0, 0, 0, 346, 3723, 1, 0, 0, 0, 348, 3731, 1, 0, 0, 0, 350, 3740, 1, 0, 0, 0, 352, 3748, 1, 0, 0, 0, 354, 3761, 1, 0, 0, 0, 356, 3763, 1, 0, 0, 0, 358, 3770, 1, 0, 0, 0, 360, 3778, 1, 0, 0, 0, 362, 3790, 1, 0, 0, 0, 364, 3795, 1, 0, 0, 0, 366, 3804, 1, 0, 0, 0, 368, 3808, 1, 0, 0, 0, 370, 3858, 1, 0, 0, 0, 372, 3876, 1, 0, 0, 0, 374, 3885, 1, 0, 0, 0, 376, 3887, 1, 0, 0, 0, 378, 3904, 1, 0, 0, 0, 380, 3906, 1, 0, 0, 0, 382, 3908, 1, 0, 0, 0, 384, 3916, 1, 0, 0, 0, 386, 3926, 1, 0, 0, 0, 388, 3930, 1, 0, 0, 0, 390, 3936, 1, 0, 0, 0, 392, 3938, 1, 0, 0, 0, 394, 3940, 1, 0, 0, 0, 396, 3982, 1, 0, 0, 0, 398, 3995, 1, 0, 0, 0, 400, 3997, 1, 0, 0, 0, 402, 4001, 1, 0, 0, 0, 404, 4005, 1, 0, 0, 0, 406, 4007, 1, 0, 0, 0, 408, 4009, 1, 0, 0, 0, 410, 4011, 1, 0, 0, 0, 412, 414, 3, 2, 1, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 0, 0, 1, 419, 1, 1, 0, 0, 0, 420, 422, 3, 4, 2, 0, 421, 423, 5, 1, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 3, 1, 0, 0, 0, 424, 1350, 3, 26, 13, 0, 425, 427, 3, 44, 22, 0, 426, 425, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 1350, 3, 78, 39, 0, 429, 431, 5, 330, 0, 0, 430, 432, 3, 36, 18, 0, 431, 430, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 1350, 3, 80, 40, 0, 434, 435, 5, 269, 0, 0, 435, 438, 5, 37, 0, 0, 436, 439, 3, 388, 194, 0, 437, 439, 3, 400, 200, 0, 438, 436, 1, 0, 0, 0, 438, 437, 1, 0, 0, 0, 439, 1350, 1, 0, 0, 0, 440, 441, 5, 59, 0, 0, 441, 443, 3, 36, 18, 0, 442, 444, 3, 190, 95, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 453, 3, 82, 41, 0, 446, 452, 3, 24, 12, 0, 447, 452, 3, 22, 11, 0, 448, 449, 5, 346, 0, 0, 449, 450, 7, 0, 0, 0, 450, 452, 3, 54, 27, 0, 451, 446, 1, 0, 0, 0, 451, 447, 1, 0, 0, 0, 451, 448, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 1350, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 457, 5, 11, 0, 0, 457, 458, 3, 36, 18, 0, 458, 459, 3, 80, 40, 0, 459, 460, 5, 269, 0, 0, 460, 461, 7, 0, 0, 0, 461, 462, 3, 54, 27, 0, 462, 1350, 1, 0, 0, 0, 463, 464, 5, 11, 0, 0, 464, 465, 3, 36, 18, 0, 465, 466, 3, 80, 40, 0, 466, 467, 5, 269, 0, 0, 467, 468, 3, 22, 11, 0, 468, 1350, 1, 0, 0, 0, 469, 470, 5, 96, 0, 0, 470, 472, 3, 36, 18, 0, 471, 473, 3, 192, 96, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 476, 3, 80, 40, 0, 475, 477, 7, 1, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 1350, 1, 0, 0, 0, 478, 479, 5, 273, 0, 0, 479, 482, 3, 38, 19, 0, 480, 481, 7, 2, 0, 0, 481, 483, 3, 250, 125, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 488, 1, 0, 0, 0, 484, 486, 5, 163, 0, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 489, 3, 400, 200, 0, 488, 485, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 1350, 1, 0, 0, 0, 490, 495, 3, 14, 7, 0, 491, 492, 5, 2, 0, 0, 492, 493, 3, 350, 175, 0, 493, 494, 5, 3, 0, 0, 494, 496, 1, 0, 0, 0, 495, 491, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 498, 1, 0, 0, 0, 497, 499, 3, 48, 24, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 505, 3, 50, 25, 0, 501, 503, 5, 20, 0, 0, 502, 501, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 506, 3, 26, 13, 0, 505, 502, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 1350, 1, 0, 0, 0, 507, 508, 5, 59, 0, 0, 508, 510, 5, 293, 0, 0, 509, 511, 3, 190, 95, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 3, 84, 42, 0, 513, 514, 5, 163, 0, 0, 514, 524, 3, 86, 43, 0, 515, 523, 3, 48, 24, 0, 516, 523, 3, 246, 123, 0, 517, 523, 3, 70, 35, 0, 518, 523, 3, 22, 11, 0, 519, 520, 5, 297, 0, 0, 520, 523, 3, 54, 27, 0, 521, 523, 3, 52, 26, 0, 522, 515, 1, 0, 0, 0, 522, 516, 1, 0, 0, 0, 522, 517, 1, 0, 0, 0, 522, 518, 1, 0, 0, 0, 522, 519, 1, 0, 0, 0, 522, 521, 1, 0, 0, 0, 523, 526, 1, 0, 0, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 1350, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 527, 532, 3, 16, 8, 0, 528, 529, 5, 2, 0, 0, 529, 530, 3, 350, 175, 0, 530, 531, 5, 3, 0, 0, 531, 533, 1, 0, 0, 0, 532, 528, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 535, 1, 0, 0, 0, 534, 536, 3, 48, 24, 0, 535, 534, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 542, 3, 50, 25, 0, 538, 540, 5, 20, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 543, 3, 26, 13, 0, 542, 539, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 1350, 1, 0, 0, 0, 544, 545, 5, 13, 0, 0, 545, 546, 5, 293, 0, 0, 546, 548, 3, 86, 43, 0, 547, 549, 3, 32, 16, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 55, 0, 0, 551, 559, 5, 282, 0, 0, 552, 560, 5, 196, 0, 0, 553, 554, 5, 119, 0, 0, 554, 555, 5, 50, 0, 0, 555, 560, 3, 94, 47, 0, 556, 557, 5, 119, 0, 0, 557, 558, 5, 10, 0, 0, 558, 560, 5, 50, 0, 0, 559, 552, 1, 0, 0, 0, 559, 553, 1, 0, 0, 0, 559, 556, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 1350, 1, 0, 0, 0, 561, 562, 5, 13, 0, 0, 562, 565, 5, 294, 0, 0, 563, 564, 7, 2, 0, 0, 564, 566, 3, 80, 40, 0, 565, 563, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 5, 55, 0, 0, 568, 570, 5, 282, 0, 0, 569, 571, 5, 196, 0, 0, 570, 569, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 1350, 1, 0, 0, 0, 572, 573, 5, 11, 0, 0, 573, 574, 5, 293, 0, 0, 574, 575, 3, 86, 43, 0, 575, 576, 5, 8, 0, 0, 576, 577, 5, 49, 0, 0, 577, 578, 3, 334, 167, 0, 578, 1350, 1, 0, 0, 0, 579, 580, 5, 11, 0, 0, 580, 581, 5, 293, 0, 0, 581, 582, 3, 86, 43, 0, 582, 583, 5, 8, 0, 0, 583, 584, 5, 50, 0, 0, 584, 585, 5, 2, 0, 0, 585, 586, 3, 332, 166, 0, 586, 587, 5, 3, 0, 0, 587, 1350, 1, 0, 0, 0, 588, 589, 5, 11, 0, 0, 589, 590, 5, 293, 0, 0, 590, 591, 3, 86, 43, 0, 591, 592, 5, 241, 0, 0, 592, 593, 5, 49, 0, 0, 593, 594, 3, 92, 46, 0, 594, 595, 5, 309, 0, 0, 595, 596, 3, 96, 48, 0, 596, 1350, 1, 0, 0, 0, 597, 598, 5, 11, 0, 0, 598, 599, 5, 293, 0, 0, 599, 600, 3, 86, 43, 0, 600, 601, 5, 96, 0, 0, 601, 603, 5, 49, 0, 0, 602, 604, 3, 192, 96, 0, 603, 602, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 3, 92, 46, 0, 606, 1350, 1, 0, 0, 0, 607, 608, 5, 11, 0, 0, 608, 609, 5, 293, 0, 0, 609, 610, 3, 86, 43, 0, 610, 611, 5, 96, 0, 0, 611, 613, 5, 50, 0, 0, 612, 614, 3, 192, 96, 0, 613, 612, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 5, 2, 0, 0, 616, 617, 3, 94, 47, 0, 617, 618, 5, 3, 0, 0, 618, 1350, 1, 0, 0, 0, 619, 624, 5, 11, 0, 0, 620, 621, 5, 293, 0, 0, 621, 625, 3, 86, 43, 0, 622, 623, 5, 338, 0, 0, 623, 625, 3, 90, 45, 0, 624, 620, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 5, 241, 0, 0, 627, 628, 5, 309, 0, 0, 628, 629, 3, 250, 125, 0, 629, 1350, 1, 0, 0, 0, 630, 635, 5, 11, 0, 0, 631, 632, 5, 293, 0, 0, 632, 636, 3, 86, 43, 0, 633, 634, 5, 338, 0, 0, 634, 636, 3, 90, 45, 0, 635, 631, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 5, 269, 0, 0, 638, 639, 5, 297, 0, 0, 639, 640, 3, 54, 27, 0, 640, 1350, 1, 0, 0, 0, 641, 646, 5, 11, 0, 0, 642, 643, 5, 293, 0, 0, 643, 647, 3, 86, 43, 0, 644, 645, 5, 338, 0, 0, 645, 647, 3, 90, 45, 0, 646, 642, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 5, 328, 0, 0, 649, 651, 5, 297, 0, 0, 650, 652, 3, 192, 96, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 3, 54, 27, 0, 654, 1350, 1, 0, 0, 0, 655, 656, 5, 11, 0, 0, 656, 657, 5, 293, 0, 0, 657, 658, 3, 86, 43, 0, 658, 660, 7, 3, 0, 0, 659, 661, 5, 49, 0, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 664, 3, 92, 46, 0, 663, 665, 3, 398, 199, 0, 664, 663, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 1350, 1, 0, 0, 0, 666, 667, 5, 11, 0, 0, 667, 668, 5, 293, 0, 0, 668, 670, 3, 86, 43, 0, 669, 671, 3, 32, 16, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 674, 5, 39, 0, 0, 673, 675, 5, 49, 0, 0, 674, 673, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 3, 92, 46, 0, 677, 679, 3, 348, 174, 0, 678, 680, 3, 326, 163, 0, 679, 678, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 1350, 1, 0, 0, 0, 681, 682, 5, 11, 0, 0, 682, 683, 5, 293, 0, 0, 683, 685, 3, 86, 43, 0, 684, 686, 3, 32, 16, 0, 685, 684, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 5, 244, 0, 0, 688, 689, 5, 50, 0, 0, 689, 690, 5, 2, 0, 0, 690, 691, 3, 336, 168, 0, 691, 692, 5, 3, 0, 0, 692, 1350, 1, 0, 0, 0, 693, 694, 5, 11, 0, 0, 694, 695, 5, 293, 0, 0, 695, 697, 3, 86, 43, 0, 696, 698, 3, 32, 16, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 269, 0, 0, 700, 701, 5, 266, 0, 0, 701, 705, 3, 400, 200, 0, 702, 703, 5, 346, 0, 0, 703, 704, 5, 267, 0, 0, 704, 706, 3, 54, 27, 0, 705, 702, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 1350, 1, 0, 0, 0, 707, 708, 5, 11, 0, 0, 708, 709, 5, 293, 0, 0, 709, 711, 3, 86, 43, 0, 710, 712, 3, 32, 16, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 269, 0, 0, 714, 715, 5, 267, 0, 0, 715, 716, 3, 54, 27, 0, 716, 1350, 1, 0, 0, 0, 717, 722, 5, 11, 0, 0, 718, 719, 5, 293, 0, 0, 719, 723, 3, 86, 43, 0, 720, 721, 5, 338, 0, 0, 721, 723, 3, 90, 45, 0, 722, 718, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 726, 5, 8, 0, 0, 725, 727, 3, 190, 95, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 729, 1, 0, 0, 0, 728, 730, 3, 30, 15, 0, 729, 728, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 1350, 1, 0, 0, 0, 733, 734, 5, 11, 0, 0, 734, 735, 5, 293, 0, 0, 735, 736, 3, 86, 43, 0, 736, 737, 3, 32, 16, 0, 737, 738, 5, 241, 0, 0, 738, 739, 5, 309, 0, 0, 739, 740, 3, 32, 16, 0, 740, 1350, 1, 0, 0, 0, 741, 746, 5, 11, 0, 0, 742, 743, 5, 293, 0, 0, 743, 747, 3, 86, 43, 0, 744, 745, 5, 338, 0, 0, 745, 747, 3, 90, 45, 0, 746, 742, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 750, 5, 96, 0, 0, 749, 751, 3, 192, 96, 0, 750, 749, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 757, 3, 32, 16, 0, 753, 754, 5, 4, 0, 0, 754, 756, 3, 32, 16, 0, 755, 753, 1, 0, 0, 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 761, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 760, 762, 5, 230, 0, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 1350, 1, 0, 0, 0, 763, 764, 5, 11, 0, 0, 764, 765, 5, 293, 0, 0, 765, 767, 3, 86, 43, 0, 766, 768, 3, 32, 16, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 770, 5, 269, 0, 0, 770, 771, 3, 22, 11, 0, 771, 1350, 1, 0, 0, 0, 772, 773, 5, 11, 0, 0, 773, 774, 5, 293, 0, 0, 774, 775, 3, 86, 43, 0, 775, 776, 5, 237, 0, 0, 776, 777, 5, 219, 0, 0, 777, 1350, 1, 0, 0, 0, 778, 779, 5, 11, 0, 0, 779, 780, 5, 176, 0, 0, 780, 781, 5, 338, 0, 0, 781, 782, 3, 90, 45, 0, 782, 783, 7, 4, 0, 0, 783, 784, 5, 248, 0, 0, 784, 1350, 1, 0, 0, 0, 785, 786, 5, 11, 0, 0, 786, 787, 5, 176, 0, 0, 787, 788, 5, 338, 0, 0, 788, 789, 3, 90, 45, 0, 789, 790, 5, 269, 0, 0, 790, 791, 5, 297, 0, 0, 791, 792, 3, 54, 27, 0, 792, 1350, 1, 0, 0, 0, 793, 794, 5, 96, 0, 0, 794, 796, 5, 293, 0, 0, 795, 797, 3, 192, 96, 0, 796, 795, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 800, 3, 86, 43, 0, 799, 801, 5, 230, 0, 0, 800, 799, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 1350, 1, 0, 0, 0, 802, 803, 5, 96, 0, 0, 803, 805, 5, 338, 0, 0, 804, 806, 3, 192, 96, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 1350, 3, 90, 45, 0, 808, 809, 5, 96, 0, 0, 809, 810, 5, 176, 0, 0, 810, 812, 5, 338, 0, 0, 811, 813, 3, 192, 96, 0, 812, 811, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 1350, 3, 90, 45, 0, 815, 818, 5, 59, 0, 0, 816, 817, 5, 208, 0, 0, 817, 819, 5, 244, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 824, 1, 0, 0, 0, 820, 822, 5, 128, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 825, 5, 298, 0, 0, 824, 821, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 5, 338, 0, 0, 827, 829, 3, 190, 95, 0, 828, 827, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 832, 3, 88, 44, 0, 831, 833, 3, 220, 110, 0, 832, 831, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 842, 1, 0, 0, 0, 834, 841, 3, 24, 12, 0, 835, 836, 5, 218, 0, 0, 836, 837, 5, 203, 0, 0, 837, 841, 3, 212, 106, 0, 838, 839, 5, 297, 0, 0, 839, 841, 3, 54, 27, 0, 840, 834, 1, 0, 0, 0, 840, 835, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 846, 5, 20, 0, 0, 846, 847, 3, 26, 13, 0, 847, 1350, 1, 0, 0, 0, 848, 851, 5, 59, 0, 0, 849, 850, 5, 208, 0, 0, 850, 852, 5, 244, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 854, 1, 0, 0, 0, 853, 855, 5, 128, 0, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 5, 298, 0, 0, 857, 858, 5, 338, 0, 0, 858, 863, 3, 88, 44, 0, 859, 860, 5, 2, 0, 0, 860, 861, 3, 346, 173, 0, 861, 862, 5, 3, 0, 0, 862, 864, 1, 0, 0, 0, 863, 859, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 868, 3, 48, 24, 0, 866, 867, 5, 207, 0, 0, 867, 869, 3, 54, 27, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 1350, 1, 0, 0, 0, 870, 871, 5, 11, 0, 0, 871, 872, 5, 338, 0, 0, 872, 874, 3, 90, 45, 0, 873, 875, 5, 20, 0, 0, 874, 873, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 3, 26, 13, 0, 877, 1350, 1, 0, 0, 0, 878, 881, 5, 59, 0, 0, 879, 880, 5, 208, 0, 0, 880, 882, 5, 244, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 885, 5, 298, 0, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 125, 0, 0, 887, 889, 3, 190, 95, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 3, 380, 190, 0, 891, 892, 5, 20, 0, 0, 892, 902, 3, 400, 200, 0, 893, 894, 5, 332, 0, 0, 894, 899, 3, 76, 38, 0, 895, 896, 5, 4, 0, 0, 896, 898, 3, 76, 38, 0, 897, 895, 1, 0, 0, 0, 898, 901, 1, 0, 0, 0, 899, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 902, 893, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 1350, 1, 0, 0, 0, 904, 905, 5, 59, 0, 0, 905, 906, 5, 176, 0, 0, 906, 908, 5, 338, 0, 0, 907, 909, 3, 190, 95, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 912, 3, 88, 44, 0, 911, 913, 3, 48, 24, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 929, 1, 0, 0, 0, 914, 915, 5, 207, 0, 0, 915, 928, 3, 54, 27, 0, 916, 917, 5, 218, 0, 0, 917, 918, 5, 31, 0, 0, 918, 928, 3, 272, 136, 0, 919, 928, 3, 20, 10, 0, 920, 928, 3, 18, 9, 0, 921, 928, 3, 246, 123, 0, 922, 928, 3, 70, 35, 0, 923, 928, 3, 22, 11, 0, 924, 928, 3, 24, 12, 0, 925, 926, 5, 297, 0, 0, 926, 928, 3, 54, 27, 0, 927, 914, 1, 0, 0, 0, 927, 916, 1, 0, 0, 0, 927, 919, 1, 0, 0, 0, 927, 920, 1, 0, 0, 0, 927, 921, 1, 0, 0, 0, 927, 922, 1, 0, 0, 0, 927, 923, 1, 0, 0, 0, 927, 924, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 932, 1, 0, 0, 0, 931, 929, 1, 0, 0, 0, 932, 933, 5, 20, 0, 0, 933, 934, 3, 26, 13, 0, 934, 1350, 1, 0, 0, 0, 935, 937, 5, 96, 0, 0, 936, 938, 5, 298, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 941, 5, 125, 0, 0, 940, 942, 3, 192, 96, 0, 941, 940, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 1350, 3, 378, 189, 0, 944, 947, 5, 81, 0, 0, 945, 946, 5, 208, 0, 0, 946, 948, 5, 244, 0, 0, 947, 945, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 950, 1, 0, 0, 0, 949, 951, 5, 336, 0, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 954, 3, 378, 189, 0, 953, 955, 3, 330, 165, 0, 954, 953, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 957, 1, 0, 0, 0, 956, 958, 3, 344, 172, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 1350, 1, 0, 0, 0, 959, 960, 5, 96, 0, 0, 960, 961, 5, 298, 0, 0, 961, 963, 5, 336, 0, 0, 962, 964, 3, 192, 96, 0, 963, 962, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 968, 1, 0, 0, 0, 965, 969, 3, 86, 43, 0, 966, 969, 3, 90, 45, 0, 967, 969, 3, 378, 189, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 1350, 1, 0, 0, 0, 970, 972, 5, 106, 0, 0, 971, 973, 7, 5, 0, 0, 972, 971, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 1350, 3, 4, 2, 0, 975, 976, 5, 273, 0, 0, 976, 979, 5, 294, 0, 0, 977, 978, 7, 2, 0, 0, 978, 980, 3, 80, 40, 0, 979, 977, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 985, 1, 0, 0, 0, 981, 983, 5, 163, 0, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 986, 3, 400, 200, 0, 985, 982, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 1350, 1, 0, 0, 0, 987, 988, 5, 273, 0, 0, 988, 989, 5, 293, 0, 0, 989, 992, 5, 108, 0, 0, 990, 991, 7, 2, 0, 0, 991, 993, 3, 80, 40, 0, 992, 990, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 995, 5, 163, 0, 0, 995, 997, 3, 400, 200, 0, 996, 998, 3, 32, 16, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1350, 1, 0, 0, 0, 999, 1000, 5, 273, 0, 0, 1000, 1001, 5, 297, 0, 0, 1001, 1006, 3, 86, 43, 0, 1002, 1003, 5, 2, 0, 0, 1003, 1004, 3, 58, 29, 0, 1004, 1005, 5, 3, 0, 0, 1005, 1007, 1, 0, 0, 0, 1006, 1002, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1350, 1, 0, 0, 0, 1008, 1009, 5, 273, 0, 0, 1009, 1010, 5, 50, 0, 0, 1010, 1011, 7, 2, 0, 0, 1011, 1014, 3, 86, 43, 0, 1012, 1013, 7, 2, 0, 0, 1013, 1015, 3, 80, 40, 0, 1014, 1012, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1350, 1, 0, 0, 0, 1016, 1017, 5, 273, 0, 0, 1017, 1020, 5, 339, 0, 0, 1018, 1019, 7, 2, 0, 0, 1019, 1021, 3, 80, 40, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1026, 1, 0, 0, 0, 1022, 1024, 5, 163, 0, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 3, 400, 200, 0, 1026, 1023, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1350, 1, 0, 0, 0, 1028, 1029, 5, 273, 0, 0, 1029, 1030, 5, 219, 0, 0, 1030, 1032, 3, 86, 43, 0, 1031, 1033, 3, 32, 16, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1350, 1, 0, 0, 0, 1034, 1036, 5, 273, 0, 0, 1035, 1037, 3, 148, 74, 0, 1036, 1035, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1041, 5, 126, 0, 0, 1039, 1040, 7, 2, 0, 0, 1040, 1042, 3, 80, 40, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1050, 1, 0, 0, 0, 1043, 1045, 5, 163, 0, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1049, 3, 250, 125, 0, 1047, 1049, 3, 400, 200, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1047, 1, 0, 0, 0, 1049, 1051, 1, 0, 0, 0, 1050, 1044, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1350, 1, 0, 0, 0, 1052, 1053, 5, 273, 0, 0, 1053, 1054, 5, 59, 0, 0, 1054, 1055, 5, 293, 0, 0, 1055, 1058, 3, 86, 43, 0, 1056, 1057, 5, 20, 0, 0, 1057, 1059, 5, 266, 0, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1350, 1, 0, 0, 0, 1060, 1061, 5, 273, 0, 0, 1061, 1062, 5, 62, 0, 0, 1062, 1350, 3, 36, 18, 0, 1063, 1064, 5, 273, 0, 0, 1064, 1069, 5, 38, 0, 0, 1065, 1067, 5, 163, 0, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 3, 400, 200, 0, 1069, 1066, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1350, 1, 0, 0, 0, 1071, 1072, 5, 273, 0, 0, 1072, 1073, 5, 176, 0, 0, 1073, 1076, 5, 339, 0, 0, 1074, 1075, 7, 2, 0, 0, 1075, 1077, 3, 80, 40, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1082, 1, 0, 0, 0, 1078, 1080, 5, 163, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 3, 400, 200, 0, 1082, 1079, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1350, 1, 0, 0, 0, 1084, 1085, 5, 273, 0, 0, 1085, 1086, 5, 59, 0, 0, 1086, 1087, 5, 176, 0, 0, 1087, 1088, 5, 338, 0, 0, 1088, 1091, 3, 90, 45, 0, 1089, 1090, 5, 20, 0, 0, 1090, 1092, 5, 266, 0, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1350, 1, 0, 0, 0, 1093, 1094, 7, 6, 0, 0, 1094, 1096, 5, 125, 0, 0, 1095, 1097, 5, 108, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1350, 3, 40, 20, 0, 1099, 1100, 7, 6, 0, 0, 1100, 1102, 5, 72, 0, 0, 1101, 1103, 5, 108, 0, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1350, 3, 80, 40, 0, 1105, 1107, 7, 6, 0, 0, 1106, 1108, 5, 293, 0, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1111, 7, 7, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1114, 3, 86, 43, 0, 1113, 1115, 3, 32, 16, 0, 1114, 1113, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1118, 3, 42, 21, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1350, 1, 0, 0, 0, 1119, 1121, 7, 6, 0, 0, 1120, 1122, 5, 232, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1350, 3, 26, 13, 0, 1124, 1125, 5, 51, 0, 0, 1125, 1126, 5, 203, 0, 0, 1126, 1127, 3, 36, 18, 0, 1127, 1128, 3, 80, 40, 0, 1128, 1129, 5, 153, 0, 0, 1129, 1130, 3, 402, 201, 0, 1130, 1350, 1, 0, 0, 0, 1131, 1132, 5, 51, 0, 0, 1132, 1133, 5, 203, 0, 0, 1133, 1134, 5, 293, 0, 0, 1134, 1135, 3, 86, 43, 0, 1135, 1136, 5, 153, 0, 0, 1136, 1137, 3, 402, 201, 0, 1137, 1350, 1, 0, 0, 0, 1138, 1139, 5, 240, 0, 0, 1139, 1140, 5, 293, 0, 0, 1140, 1350, 3, 86, 43, 0, 1141, 1142, 5, 240, 0, 0, 1142, 1143, 5, 125, 0, 0, 1143, 1350, 3, 378, 189, 0, 1144, 1152, 5, 240, 0, 0, 1145, 1153, 3, 400, 200, 0, 1146, 1148, 9, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 1151, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1150, 1153, 1, 0, 0, 0, 1151, 1149, 1, 0, 0, 0, 1152, 1145, 1, 0, 0, 0, 1152, 1149, 1, 0, 0, 0, 1153, 1350, 1, 0, 0, 0, 1154, 1155, 5, 240, 0, 0, 1155, 1156, 5, 176, 0, 0, 1156, 1157, 5, 338, 0, 0, 1157, 1350, 3, 90, 45, 0, 1158, 1160, 5, 33, 0, 0, 1159, 1161, 5, 159, 0, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 5, 293, 0, 0, 1163, 1166, 3, 86, 43, 0, 1164, 1165, 5, 207, 0, 0, 1165, 1167, 3, 54, 27, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1172, 1, 0, 0, 0, 1168, 1170, 5, 20, 0, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1173, 3, 26, 13, 0, 1172, 1169, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1350, 1, 0, 0, 0, 1174, 1175, 5, 322, 0, 0, 1175, 1177, 5, 293, 0, 0, 1176, 1178, 3, 192, 96, 0, 1177, 1176, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1350, 3, 86, 43, 0, 1180, 1181, 5, 43, 0, 0, 1181, 1350, 5, 33, 0, 0, 1182, 1183, 5, 168, 0, 0, 1183, 1185, 5, 70, 0, 0, 1184, 1186, 5, 169, 0, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1188, 5, 145, 0, 0, 1188, 1190, 3, 400, 200, 0, 1189, 1191, 5, 216, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 152, 0, 0, 1193, 1194, 5, 293, 0, 0, 1194, 1196, 3, 86, 43, 0, 1195, 1197, 3, 32, 16, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1350, 1, 0, 0, 0, 1198, 1199, 5, 317, 0, 0, 1199, 1200, 5, 293, 0, 0, 1200, 1202, 3, 86, 43, 0, 1201, 1203, 3, 32, 16, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1350, 1, 0, 0, 0, 1204, 1206, 5, 188, 0, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 5, 242, 0, 0, 1208, 1209, 5, 293, 0, 0, 1209, 1212, 3, 86, 43, 0, 1210, 1211, 7, 8, 0, 0, 1211, 1213, 5, 219, 0, 0, 1212, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1350, 1, 0, 0, 0, 1214, 1215, 7, 9, 0, 0, 1215, 1219, 3, 388, 194, 0, 1216, 1218, 9, 0, 0, 0, 1217, 1216, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1220, 1350, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1223, 5, 269, 0, 0, 1223, 1227, 5, 253, 0, 0, 1224, 1226, 9, 0, 0, 0, 1225, 1224, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1350, 1, 0, 0, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 5, 301, 0, 0, 1232, 1233, 5, 350, 0, 0, 1233, 1350, 3, 310, 155, 0, 1234, 1235, 5, 269, 0, 0, 1235, 1236, 5, 301, 0, 0, 1236, 1237, 5, 350, 0, 0, 1237, 1350, 3, 6, 3, 0, 1238, 1239, 5, 269, 0, 0, 1239, 1240, 5, 301, 0, 0, 1240, 1244, 5, 350, 0, 0, 1241, 1243, 9, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1245, 1350, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1248, 5, 269, 0, 0, 1248, 1249, 7, 10, 0, 0, 1249, 1350, 3, 134, 67, 0, 1250, 1251, 5, 269, 0, 0, 1251, 1252, 7, 10, 0, 0, 1252, 1253, 5, 2, 0, 0, 1253, 1254, 3, 248, 124, 0, 1254, 1255, 5, 3, 0, 0, 1255, 1256, 5, 352, 0, 0, 1256, 1257, 5, 2, 0, 0, 1257, 1258, 3, 26, 13, 0, 1258, 1259, 5, 3, 0, 0, 1259, 1350, 1, 0, 0, 0, 1260, 1261, 5, 269, 0, 0, 1261, 1262, 3, 8, 4, 0, 1262, 1263, 5, 352, 0, 0, 1263, 1264, 3, 10, 5, 0, 1264, 1350, 1, 0, 0, 0, 1265, 1266, 5, 269, 0, 0, 1266, 1274, 3, 8, 4, 0, 1267, 1271, 5, 352, 0, 0, 1268, 1270, 9, 0, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 1273, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1274, 1267, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1350, 1, 0, 0, 0, 1276, 1280, 5, 269, 0, 0, 1277, 1279, 9, 0, 0, 0, 1278, 1277, 1, 0, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1280, 1278, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1283, 1284, 5, 352, 0, 0, 1284, 1350, 3, 10, 5, 0, 1285, 1289, 5, 269, 0, 0, 1286, 1288, 9, 0, 0, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1350, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 5, 245, 0, 0, 1293, 1350, 3, 8, 4, 0, 1294, 1298, 5, 245, 0, 0, 1295, 1297, 9, 0, 0, 0, 1296, 1295, 1, 0, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1298, 1296, 1, 0, 0, 0, 1299, 1350, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1301, 1302, 5, 59, 0, 0, 1302, 1304, 5, 142, 0, 0, 1303, 1305, 3, 190, 95, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 3, 388, 194, 0, 1307, 1309, 5, 203, 0, 0, 1308, 1310, 5, 293, 0, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1314, 3, 86, 43, 0, 1312, 1313, 5, 332, 0, 0, 1313, 1315, 3, 388, 194, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 5, 2, 0, 0, 1317, 1318, 3, 252, 126, 0, 1318, 1321, 5, 3, 0, 0, 1319, 1320, 5, 207, 0, 0, 1320, 1322, 3, 54, 27, 0, 1321, 1319, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1350, 1, 0, 0, 0, 1323, 1324, 5, 96, 0, 0, 1324, 1326, 5, 142, 0, 0, 1325, 1327, 3, 192, 96, 0, 1326, 1325, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 3, 388, 194, 0, 1329, 1331, 5, 203, 0, 0, 1330, 1332, 5, 293, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 3, 86, 43, 0, 1334, 1350, 1, 0, 0, 0, 1335, 1336, 5, 205, 0, 0, 1336, 1338, 3, 86, 43, 0, 1337, 1339, 3, 138, 69, 0, 1338, 1337, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 3, 366, 183, 0, 1341, 1350, 1, 0, 0, 0, 1342, 1346, 3, 12, 6, 0, 1343, 1345, 9, 0, 0, 0, 1344, 1343, 1, 0, 0, 0, 1345, 1348, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1346, 1, 0, 0, 0, 1349, 424, 1, 0, 0, 0, 1349, 426, 1, 0, 0, 0, 1349, 429, 1, 0, 0, 0, 1349, 434, 1, 0, 0, 0, 1349, 440, 1, 0, 0, 0, 1349, 456, 1, 0, 0, 0, 1349, 463, 1, 0, 0, 0, 1349, 469, 1, 0, 0, 0, 1349, 478, 1, 0, 0, 0, 1349, 490, 1, 0, 0, 0, 1349, 507, 1, 0, 0, 0, 1349, 527, 1, 0, 0, 0, 1349, 544, 1, 0, 0, 0, 1349, 561, 1, 0, 0, 0, 1349, 572, 1, 0, 0, 0, 1349, 579, 1, 0, 0, 0, 1349, 588, 1, 0, 0, 0, 1349, 597, 1, 0, 0, 0, 1349, 607, 1, 0, 0, 0, 1349, 619, 1, 0, 0, 0, 1349, 630, 1, 0, 0, 0, 1349, 641, 1, 0, 0, 0, 1349, 655, 1, 0, 0, 0, 1349, 666, 1, 0, 0, 0, 1349, 681, 1, 0, 0, 0, 1349, 693, 1, 0, 0, 0, 1349, 707, 1, 0, 0, 0, 1349, 717, 1, 0, 0, 0, 1349, 733, 1, 0, 0, 0, 1349, 741, 1, 0, 0, 0, 1349, 763, 1, 0, 0, 0, 1349, 772, 1, 0, 0, 0, 1349, 778, 1, 0, 0, 0, 1349, 785, 1, 0, 0, 0, 1349, 793, 1, 0, 0, 0, 1349, 802, 1, 0, 0, 0, 1349, 808, 1, 0, 0, 0, 1349, 815, 1, 0, 0, 0, 1349, 848, 1, 0, 0, 0, 1349, 870, 1, 0, 0, 0, 1349, 878, 1, 0, 0, 0, 1349, 904, 1, 0, 0, 0, 1349, 935, 1, 0, 0, 0, 1349, 944, 1, 0, 0, 0, 1349, 959, 1, 0, 0, 0, 1349, 970, 1, 0, 0, 0, 1349, 975, 1, 0, 0, 0, 1349, 987, 1, 0, 0, 0, 1349, 999, 1, 0, 0, 0, 1349, 1008, 1, 0, 0, 0, 1349, 1016, 1, 0, 0, 0, 1349, 1028, 1, 0, 0, 0, 1349, 1034, 1, 0, 0, 0, 1349, 1052, 1, 0, 0, 0, 1349, 1060, 1, 0, 0, 0, 1349, 1063, 1, 0, 0, 0, 1349, 1071, 1, 0, 0, 0, 1349, 1084, 1, 0, 0, 0, 1349, 1093, 1, 0, 0, 0, 1349, 1099, 1, 0, 0, 0, 1349, 1105, 1, 0, 0, 0, 1349, 1119, 1, 0, 0, 0, 1349, 1124, 1, 0, 0, 0, 1349, 1131, 1, 0, 0, 0, 1349, 1138, 1, 0, 0, 0, 1349, 1141, 1, 0, 0, 0, 1349, 1144, 1, 0, 0, 0, 1349, 1154, 1, 0, 0, 0, 1349, 1158, 1, 0, 0, 0, 1349, 1174, 1, 0, 0, 0, 1349, 1180, 1, 0, 0, 0, 1349, 1182, 1, 0, 0, 0, 1349, 1198, 1, 0, 0, 0, 1349, 1205, 1, 0, 0, 0, 1349, 1214, 1, 0, 0, 0, 1349, 1222, 1, 0, 0, 0, 1349, 1230, 1, 0, 0, 0, 1349, 1234, 1, 0, 0, 0, 1349, 1238, 1, 0, 0, 0, 1349, 1247, 1, 0, 0, 0, 1349, 1250, 1, 0, 0, 0, 1349, 1260, 1, 0, 0, 0, 1349, 1265, 1, 0, 0, 0, 1349, 1276, 1, 0, 0, 0, 1349, 1285, 1, 0, 0, 0, 1349, 1292, 1, 0, 0, 0, 1349, 1294, 1, 0, 0, 0, 1349, 1301, 1, 0, 0, 0, 1349, 1323, 1, 0, 0, 0, 1349, 1335, 1, 0, 0, 0, 1349, 1342, 1, 0, 0, 0, 1350, 5, 1, 0, 0, 0, 1351, 1354, 3, 400, 200, 0, 1352, 1354, 5, 169, 0, 0, 1353, 1351, 1, 0, 0, 0, 1353, 1352, 1, 0, 0, 0, 1354, 7, 1, 0, 0, 0, 1355, 1356, 3, 392, 196, 0, 1356, 9, 1, 0, 0, 0, 1357, 1358, 3, 394, 197, 0, 1358, 11, 1, 0, 0, 0, 1359, 1360, 5, 59, 0, 0, 1360, 1528, 5, 253, 0, 0, 1361, 1362, 5, 96, 0, 0, 1362, 1528, 5, 253, 0, 0, 1363, 1365, 5, 129, 0, 0, 1364, 1366, 5, 253, 0, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1528, 1, 0, 0, 0, 1367, 1369, 5, 249, 0, 0, 1368, 1370, 5, 253, 0, 0, 1369, 1368, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1528, 1, 0, 0, 0, 1371, 1372, 5, 273, 0, 0, 1372, 1528, 5, 129, 0, 0, 1373, 1374, 5, 273, 0, 0, 1374, 1376, 5, 253, 0, 0, 1375, 1377, 5, 129, 0, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1528, 1, 0, 0, 0, 1378, 1379, 5, 273, 0, 0, 1379, 1528, 5, 228, 0, 0, 1380, 1381, 5, 273, 0, 0, 1381, 1528, 5, 254, 0, 0, 1382, 1383, 5, 273, 0, 0, 1383, 1384, 5, 62, 0, 0, 1384, 1528, 5, 254, 0, 0, 1385, 1386, 5, 107, 0, 0, 1386, 1528, 5, 293, 0, 0, 1387, 1388, 5, 139, 0, 0, 1388, 1528, 5, 293, 0, 0, 1389, 1390, 5, 273, 0, 0, 1390, 1528, 5, 54, 0, 0, 1391, 1392, 5, 273, 0, 0, 1392, 1393, 5, 59, 0, 0, 1393, 1528, 5, 293, 0, 0, 1394, 1395, 5, 273, 0, 0, 1395, 1528, 5, 313, 0, 0, 1396, 1397, 5, 273, 0, 0, 1397, 1528, 5, 143, 0, 0, 1398, 1399, 5, 273, 0, 0, 1399, 1528, 5, 172, 0, 0, 1400, 1401, 5, 59, 0, 0, 1401, 1528, 5, 142, 0, 0, 1402, 1403, 5, 96, 0, 0, 1403, 1528, 5, 142, 0, 0, 1404, 1405, 5, 11, 0, 0, 1405, 1528, 5, 142, 0, 0, 1406, 1407, 5, 171, 0, 0, 1407, 1528, 5, 293, 0, 0, 1408, 1409, 5, 171, 0, 0, 1409, 1528, 5, 72, 0, 0, 1410, 1411, 5, 326, 0, 0, 1411, 1528, 5, 293, 0, 0, 1412, 1413, 5, 326, 0, 0, 1413, 1528, 5, 72, 0, 0, 1414, 1415, 5, 59, 0, 0, 1415, 1416, 5, 298, 0, 0, 1416, 1528, 5, 175, 0, 0, 1417, 1418, 5, 96, 0, 0, 1418, 1419, 5, 298, 0, 0, 1419, 1528, 5, 175, 0, 0, 1420, 1421, 5, 11, 0, 0, 1421, 1422, 5, 293, 0, 0, 1422, 1423, 3, 86, 43, 0, 1423, 1424, 5, 197, 0, 0, 1424, 1425, 5, 45, 0, 0, 1425, 1528, 1, 0, 0, 0, 1426, 1427, 5, 11, 0, 0, 1427, 1428, 5, 293, 0, 0, 1428, 1429, 3, 86, 43, 0, 1429, 1430, 5, 45, 0, 0, 1430, 1431, 5, 31, 0, 0, 1431, 1528, 1, 0, 0, 0, 1432, 1433, 5, 11, 0, 0, 1433, 1434, 5, 293, 0, 0, 1434, 1435, 3, 86, 43, 0, 1435, 1436, 5, 197, 0, 0, 1436, 1437, 5, 279, 0, 0, 1437, 1528, 1, 0, 0, 0, 1438, 1439, 5, 11, 0, 0, 1439, 1440, 5, 293, 0, 0, 1440, 1441, 3, 86, 43, 0, 1441, 1442, 5, 275, 0, 0, 1442, 1443, 5, 31, 0, 0, 1443, 1528, 1, 0, 0, 0, 1444, 1445, 5, 11, 0, 0, 1445, 1446, 5, 293, 0, 0, 1446, 1447, 3, 86, 43, 0, 1447, 1448, 5, 197, 0, 0, 1448, 1449, 5, 275, 0, 0, 1449, 1528, 1, 0, 0, 0, 1450, 1451, 5, 11, 0, 0, 1451, 1452, 5, 293, 0, 0, 1452, 1453, 3, 86, 43, 0, 1453, 1454, 5, 197, 0, 0, 1454, 1455, 5, 283, 0, 0, 1455, 1456, 5, 20, 0, 0, 1456, 1457, 5, 89, 0, 0, 1457, 1528, 1, 0, 0, 0, 1458, 1459, 5, 11, 0, 0, 1459, 1460, 5, 293, 0, 0, 1460, 1461, 3, 86, 43, 0, 1461, 1462, 5, 269, 0, 0, 1462, 1463, 5, 275, 0, 0, 1463, 1464, 5, 170, 0, 0, 1464, 1528, 1, 0, 0, 0, 1465, 1466, 5, 11, 0, 0, 1466, 1467, 5, 293, 0, 0, 1467, 1468, 3, 86, 43, 0, 1468, 1469, 5, 103, 0, 0, 1469, 1470, 5, 217, 0, 0, 1470, 1528, 1, 0, 0, 0, 1471, 1472, 5, 11, 0, 0, 1472, 1473, 5, 293, 0, 0, 1473, 1474, 3, 86, 43, 0, 1474, 1475, 5, 18, 0, 0, 1475, 1476, 5, 217, 0, 0, 1476, 1528, 1, 0, 0, 0, 1477, 1478, 5, 11, 0, 0, 1478, 1479, 5, 293, 0, 0, 1479, 1480, 3, 86, 43, 0, 1480, 1481, 5, 320, 0, 0, 1481, 1482, 5, 217, 0, 0, 1482, 1528, 1, 0, 0, 0, 1483, 1484, 5, 11, 0, 0, 1484, 1485, 5, 293, 0, 0, 1485, 1486, 3, 86, 43, 0, 1486, 1487, 5, 310, 0, 0, 1487, 1528, 1, 0, 0, 0, 1488, 1489, 5, 11, 0, 0, 1489, 1490, 5, 293, 0, 0, 1490, 1492, 3, 86, 43, 0, 1491, 1493, 3, 32, 16, 0, 1492, 1491, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 5, 53, 0, 0, 1495, 1528, 1, 0, 0, 0, 1496, 1497, 5, 11, 0, 0, 1497, 1498, 5, 293, 0, 0, 1498, 1500, 3, 86, 43, 0, 1499, 1501, 3, 32, 16, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 5, 56, 0, 0, 1503, 1528, 1, 0, 0, 0, 1504, 1505, 5, 11, 0, 0, 1505, 1506, 5, 293, 0, 0, 1506, 1508, 3, 86, 43, 0, 1507, 1509, 3, 32, 16, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 5, 269, 0, 0, 1511, 1512, 5, 115, 0, 0, 1512, 1528, 1, 0, 0, 0, 1513, 1514, 5, 11, 0, 0, 1514, 1515, 5, 293, 0, 0, 1515, 1517, 3, 86, 43, 0, 1516, 1518, 3, 32, 16, 0, 1517, 1516, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 5, 244, 0, 0, 1520, 1521, 5, 50, 0, 0, 1521, 1528, 1, 0, 0, 0, 1522, 1523, 5, 281, 0, 0, 1523, 1528, 5, 312, 0, 0, 1524, 1528, 5, 52, 0, 0, 1525, 1528, 5, 255, 0, 0, 1526, 1528, 5, 88, 0, 0, 1527, 1359, 1, 0, 0, 0, 1527, 1361, 1, 0, 0, 0, 1527, 1363, 1, 0, 0, 0, 1527, 1367, 1, 0, 0, 0, 1527, 1371, 1, 0, 0, 0, 1527, 1373, 1, 0, 0, 0, 1527, 1378, 1, 0, 0, 0, 1527, 1380, 1, 0, 0, 0, 1527, 1382, 1, 0, 0, 0, 1527, 1385, 1, 0, 0, 0, 1527, 1387, 1, 0, 0, 0, 1527, 1389, 1, 0, 0, 0, 1527, 1391, 1, 0, 0, 0, 1527, 1394, 1, 0, 0, 0, 1527, 1396, 1, 0, 0, 0, 1527, 1398, 1, 0, 0, 0, 1527, 1400, 1, 0, 0, 0, 1527, 1402, 1, 0, 0, 0, 1527, 1404, 1, 0, 0, 0, 1527, 1406, 1, 0, 0, 0, 1527, 1408, 1, 0, 0, 0, 1527, 1410, 1, 0, 0, 0, 1527, 1412, 1, 0, 0, 0, 1527, 1414, 1, 0, 0, 0, 1527, 1417, 1, 0, 0, 0, 1527, 1420, 1, 0, 0, 0, 1527, 1426, 1, 0, 0, 0, 1527, 1432, 1, 0, 0, 0, 1527, 1438, 1, 0, 0, 0, 1527, 1444, 1, 0, 0, 0, 1527, 1450, 1, 0, 0, 0, 1527, 1458, 1, 0, 0, 0, 1527, 1465, 1, 0, 0, 0, 1527, 1471, 1, 0, 0, 0, 1527, 1477, 1, 0, 0, 0, 1527, 1483, 1, 0, 0, 0, 1527, 1488, 1, 0, 0, 0, 1527, 1496, 1, 0, 0, 0, 1527, 1504, 1, 0, 0, 0, 1527, 1513, 1, 0, 0, 0, 1527, 1522, 1, 0, 0, 0, 1527, 1524, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1527, 1526, 1, 0, 0, 0, 1528, 13, 1, 0, 0, 0, 1529, 1531, 5, 59, 0, 0, 1530, 1532, 5, 298, 0, 0, 1531, 1530, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1534, 1, 0, 0, 0, 1533, 1535, 5, 109, 0, 0, 1534, 1533, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1538, 5, 293, 0, 0, 1537, 1539, 3, 190, 95, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 3, 84, 42, 0, 1541, 15, 1, 0, 0, 0, 1542, 1543, 5, 59, 0, 0, 1543, 1545, 5, 208, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 244, 0, 0, 1547, 1548, 5, 293, 0, 0, 1548, 1549, 3, 84, 42, 0, 1549, 17, 1, 0, 0, 0, 1550, 1551, 5, 45, 0, 0, 1551, 1552, 5, 31, 0, 0, 1552, 1556, 3, 212, 106, 0, 1553, 1554, 5, 279, 0, 0, 1554, 1555, 5, 31, 0, 0, 1555, 1557, 3, 216, 108, 0, 1556, 1553, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 5, 152, 0, 0, 1559, 1560, 5, 382, 0, 0, 1560, 1561, 5, 30, 0, 0, 1561, 19, 1, 0, 0, 0, 1562, 1563, 5, 275, 0, 0, 1563, 1564, 5, 31, 0, 0, 1564, 1565, 3, 212, 106, 0, 1565, 1568, 5, 203, 0, 0, 1566, 1569, 3, 66, 33, 0, 1567, 1569, 3, 68, 34, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1567, 1, 0, 0, 0, 1569, 1573, 1, 0, 0, 0, 1570, 1571, 5, 283, 0, 0, 1571, 1572, 5, 20, 0, 0, 1572, 1574, 5, 89, 0, 0, 1573, 1570, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 21, 1, 0, 0, 0, 1575, 1576, 5, 170, 0, 0, 1576, 1577, 3, 400, 200, 0, 1577, 23, 1, 0, 0, 0, 1578, 1579, 5, 51, 0, 0, 1579, 1580, 3, 400, 200, 0, 1580, 25, 1, 0, 0, 0, 1581, 1583, 3, 44, 22, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 3, 104, 52, 0, 1585, 1586, 3, 100, 50, 0, 1586, 27, 1, 0, 0, 0, 1587, 1588, 5, 147, 0, 0, 1588, 1590, 5, 216, 0, 0, 1589, 1591, 5, 293, 0, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1597, 3, 86, 43, 0, 1593, 1595, 3, 32, 16, 0, 1594, 1596, 3, 190, 95, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1598, 1, 0, 0, 0, 1597, 1593, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1605, 1, 0, 0, 0, 1599, 1600, 5, 31, 0, 0, 1600, 1606, 5, 189, 0, 0, 1601, 1602, 5, 2, 0, 0, 1602, 1603, 3, 94, 47, 0, 1603, 1604, 5, 3, 0, 0, 1604, 1606, 1, 0, 0, 0, 1605, 1599, 1, 0, 0, 0, 1605, 1601, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1664, 1, 0, 0, 0, 1607, 1608, 5, 147, 0, 0, 1608, 1610, 5, 152, 0, 0, 1609, 1611, 5, 293, 0, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 3, 86, 43, 0, 1613, 1615, 3, 32, 16, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 1, 0, 0, 0, 1616, 1618, 3, 190, 95, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1625, 1, 0, 0, 0, 1619, 1620, 5, 31, 0, 0, 1620, 1626, 5, 189, 0, 0, 1621, 1622, 5, 2, 0, 0, 1622, 1623, 3, 94, 47, 0, 1623, 1624, 5, 3, 0, 0, 1624, 1626, 1, 0, 0, 0, 1625, 1619, 1, 0, 0, 0, 1625, 1621, 1, 0, 0, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1664, 1, 0, 0, 0, 1627, 1628, 5, 147, 0, 0, 1628, 1630, 5, 152, 0, 0, 1629, 1631, 5, 293, 0, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 3, 86, 43, 0, 1633, 1634, 5, 244, 0, 0, 1634, 1635, 3, 138, 69, 0, 1635, 1664, 1, 0, 0, 0, 1636, 1637, 5, 147, 0, 0, 1637, 1639, 5, 216, 0, 0, 1638, 1640, 5, 169, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 5, 90, 0, 0, 1642, 1644, 3, 400, 200, 0, 1643, 1645, 3, 246, 123, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1647, 1, 0, 0, 0, 1646, 1648, 3, 70, 35, 0, 1647, 1646, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1664, 1, 0, 0, 0, 1649, 1650, 5, 147, 0, 0, 1650, 1652, 5, 216, 0, 0, 1651, 1653, 5, 169, 0, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1656, 5, 90, 0, 0, 1655, 1657, 3, 400, 200, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1661, 3, 48, 24, 0, 1659, 1660, 5, 207, 0, 0, 1660, 1662, 3, 54, 27, 0, 1661, 1659, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1664, 1, 0, 0, 0, 1663, 1587, 1, 0, 0, 0, 1663, 1607, 1, 0, 0, 0, 1663, 1627, 1, 0, 0, 0, 1663, 1636, 1, 0, 0, 0, 1663, 1649, 1, 0, 0, 0, 1664, 29, 1, 0, 0, 0, 1665, 1667, 3, 32, 16, 0, 1666, 1668, 3, 22, 11, 0, 1667, 1666, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 31, 1, 0, 0, 0, 1669, 1670, 5, 217, 0, 0, 1670, 1671, 5, 2, 0, 0, 1671, 1676, 3, 34, 17, 0, 1672, 1673, 5, 4, 0, 0, 1673, 1675, 3, 34, 17, 0, 1674, 1672, 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1679, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1680, 5, 3, 0, 0, 1680, 33, 1, 0, 0, 0, 1681, 1684, 3, 388, 194, 0, 1682, 1683, 5, 352, 0, 0, 1683, 1685, 3, 300, 150, 0, 1684, 1682, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1691, 1, 0, 0, 0, 1686, 1687, 3, 388, 194, 0, 1687, 1688, 5, 352, 0, 0, 1688, 1689, 5, 82, 0, 0, 1689, 1691, 1, 0, 0, 0, 1690, 1681, 1, 0, 0, 0, 1690, 1686, 1, 0, 0, 0, 1691, 35, 1, 0, 0, 0, 1692, 1693, 7, 11, 0, 0, 1693, 37, 1, 0, 0, 0, 1694, 1695, 7, 12, 0, 0, 1695, 39, 1, 0, 0, 0, 1696, 1702, 3, 98, 49, 0, 1697, 1702, 3, 400, 200, 0, 1698, 1702, 3, 302, 151, 0, 1699, 1702, 3, 304, 152, 0, 1700, 1702, 3, 306, 153, 0, 1701, 1696, 1, 0, 0, 0, 1701, 1697, 1, 0, 0, 0, 1701, 1698, 1, 0, 0, 0, 1701, 1699, 1, 0, 0, 0, 1701, 1700, 1, 0, 0, 0, 1702, 41, 1, 0, 0, 0, 1703, 1708, 3, 388, 194, 0, 1704, 1705, 5, 5, 0, 0, 1705, 1707, 3, 388, 194, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1710, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 43, 1, 0, 0, 0, 1710, 1708, 1, 0, 0, 0, 1711, 1712, 5, 346, 0, 0, 1712, 1717, 3, 46, 23, 0, 1713, 1714, 5, 4, 0, 0, 1714, 1716, 3, 46, 23, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 45, 1, 0, 0, 0, 1719, 1717, 1, 0, 0, 0, 1720, 1722, 3, 384, 192, 0, 1721, 1723, 3, 212, 106, 0, 1722, 1721, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1725, 1, 0, 0, 0, 1724, 1726, 5, 20, 0, 0, 1725, 1724, 1, 0, 0, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 5, 2, 0, 0, 1728, 1729, 3, 26, 13, 0, 1729, 1730, 5, 3, 0, 0, 1730, 47, 1, 0, 0, 0, 1731, 1732, 5, 332, 0, 0, 1732, 1733, 3, 250, 125, 0, 1733, 49, 1, 0, 0, 0, 1734, 1735, 5, 207, 0, 0, 1735, 1749, 3, 62, 31, 0, 1736, 1737, 5, 218, 0, 0, 1737, 1738, 5, 31, 0, 0, 1738, 1749, 3, 272, 136, 0, 1739, 1749, 3, 20, 10, 0, 1740, 1749, 3, 18, 9, 0, 1741, 1749, 3, 246, 123, 0, 1742, 1749, 3, 70, 35, 0, 1743, 1749, 3, 22, 11, 0, 1744, 1749, 3, 24, 12, 0, 1745, 1746, 5, 297, 0, 0, 1746, 1749, 3, 54, 27, 0, 1747, 1749, 3, 52, 26, 0, 1748, 1734, 1, 0, 0, 0, 1748, 1736, 1, 0, 0, 0, 1748, 1739, 1, 0, 0, 0, 1748, 1740, 1, 0, 0, 0, 1748, 1741, 1, 0, 0, 0, 1748, 1742, 1, 0, 0, 0, 1748, 1743, 1, 0, 0, 0, 1748, 1744, 1, 0, 0, 0, 1748, 1745, 1, 0, 0, 0, 1748, 1747, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 51, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1754, 5, 162, 0, 0, 1754, 1755, 5, 382, 0, 0, 1755, 53, 1, 0, 0, 0, 1756, 1757, 5, 2, 0, 0, 1757, 1762, 3, 56, 28, 0, 1758, 1759, 5, 4, 0, 0, 1759, 1761, 3, 56, 28, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 3, 0, 0, 1766, 55, 1, 0, 0, 0, 1767, 1772, 3, 58, 29, 0, 1768, 1770, 5, 352, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 3, 60, 30, 0, 1772, 1769, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 57, 1, 0, 0, 0, 1774, 1779, 3, 388, 194, 0, 1775, 1776, 5, 5, 0, 0, 1776, 1778, 3, 388, 194, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1784, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1784, 3, 400, 200, 0, 1783, 1774, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1784, 59, 1, 0, 0, 0, 1785, 1790, 5, 382, 0, 0, 1786, 1790, 5, 384, 0, 0, 1787, 1790, 3, 308, 154, 0, 1788, 1790, 3, 400, 200, 0, 1789, 1785, 1, 0, 0, 0, 1789, 1786, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1789, 1788, 1, 0, 0, 0, 1790, 61, 1, 0, 0, 0, 1791, 1792, 5, 2, 0, 0, 1792, 1797, 3, 64, 32, 0, 1793, 1794, 5, 4, 0, 0, 1794, 1796, 3, 64, 32, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1801, 5, 3, 0, 0, 1801, 63, 1, 0, 0, 0, 1802, 1807, 3, 58, 29, 0, 1803, 1805, 5, 352, 0, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1808, 3, 280, 140, 0, 1807, 1804, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 65, 1, 0, 0, 0, 1809, 1810, 5, 2, 0, 0, 1810, 1815, 3, 300, 150, 0, 1811, 1812, 5, 4, 0, 0, 1812, 1814, 3, 300, 150, 0, 1813, 1811, 1, 0, 0, 0, 1814, 1817, 1, 0, 0, 0, 1815, 1813, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1819, 5, 3, 0, 0, 1819, 67, 1, 0, 0, 0, 1820, 1821, 5, 2, 0, 0, 1821, 1826, 3, 66, 33, 0, 1822, 1823, 5, 4, 0, 0, 1823, 1825, 3, 66, 33, 0, 1824, 1822, 1, 0, 0, 0, 1825, 1828, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1829, 1, 0, 0, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1830, 5, 3, 0, 0, 1830, 69, 1, 0, 0, 0, 1831, 1832, 5, 283, 0, 0, 1832, 1833, 5, 20, 0, 0, 1833, 1838, 3, 72, 36, 0, 1834, 1835, 5, 283, 0, 0, 1835, 1836, 5, 31, 0, 0, 1836, 1838, 3, 74, 37, 0, 1837, 1831, 1, 0, 0, 0, 1837, 1834, 1, 0, 0, 0, 1838, 71, 1, 0, 0, 0, 1839, 1840, 5, 146, 0, 0, 1840, 1841, 3, 400, 200, 0, 1841, 1842, 5, 212, 0, 0, 1842, 1843, 3, 400, 200, 0, 1843, 1846, 1, 0, 0, 0, 1844, 1846, 3, 388, 194, 0, 1845, 1839, 1, 0, 0, 0, 1845, 1844, 1, 0, 0, 0, 1846, 73, 1, 0, 0, 0, 1847, 1851, 3, 400, 200, 0, 1848, 1849, 5, 346, 0, 0, 1849, 1850, 5, 267, 0, 0, 1850, 1852, 3, 54, 27, 0, 1851, 1848, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 75, 1, 0, 0, 0, 1853, 1854, 3, 388, 194, 0, 1854, 1855, 3, 400, 200, 0, 1855, 77, 1, 0, 0, 0, 1856, 1857, 3, 28, 14, 0, 1857, 1858, 3, 26, 13, 0, 1858, 1913, 1, 0, 0, 0, 1859, 1861, 3, 146, 73, 0, 1860, 1862, 3, 102, 51, 0, 1861, 1860, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 1913, 1, 0, 0, 0, 1865, 1866, 5, 84, 0, 0, 1866, 1867, 5, 123, 0, 0, 1867, 1868, 3, 86, 43, 0, 1868, 1870, 3, 244, 122, 0, 1869, 1871, 3, 138, 69, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1913, 1, 0, 0, 0, 1872, 1873, 5, 329, 0, 0, 1873, 1874, 3, 86, 43, 0, 1874, 1875, 3, 244, 122, 0, 1875, 1877, 3, 120, 60, 0, 1876, 1878, 3, 138, 69, 0, 1877, 1876, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1913, 1, 0, 0, 0, 1879, 1880, 5, 179, 0, 0, 1880, 1881, 5, 152, 0, 0, 1881, 1882, 3, 86, 43, 0, 1882, 1883, 3, 244, 122, 0, 1883, 1889, 5, 332, 0, 0, 1884, 1890, 3, 98, 49, 0, 1885, 1886, 5, 2, 0, 0, 1886, 1887, 3, 26, 13, 0, 1887, 1888, 5, 3, 0, 0, 1888, 1890, 1, 0, 0, 0, 1889, 1884, 1, 0, 0, 0, 1889, 1885, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 3, 244, 122, 0, 1892, 1893, 5, 203, 0, 0, 1893, 1897, 3, 288, 144, 0, 1894, 1896, 3, 122, 61, 0, 1895, 1894, 1, 0, 0, 0, 1896, 1899, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1903, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1902, 3, 124, 62, 0, 1901, 1900, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1909, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1908, 3, 126, 63, 0, 1907, 1906, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1912, 1856, 1, 0, 0, 0, 1912, 1859, 1, 0, 0, 0, 1912, 1865, 1, 0, 0, 0, 1912, 1872, 1, 0, 0, 0, 1912, 1879, 1, 0, 0, 0, 1913, 79, 1, 0, 0, 0, 1914, 1915, 3, 98, 49, 0, 1915, 81, 1, 0, 0, 0, 1916, 1917, 3, 98, 49, 0, 1917, 83, 1, 0, 0, 0, 1918, 1919, 3, 256, 128, 0, 1919, 85, 1, 0, 0, 0, 1920, 1921, 3, 256, 128, 0, 1921, 87, 1, 0, 0, 0, 1922, 1923, 3, 258, 129, 0, 1923, 89, 1, 0, 0, 0, 1924, 1925, 3, 258, 129, 0, 1925, 91, 1, 0, 0, 0, 1926, 1929, 3, 250, 125, 0, 1927, 1929, 4, 46, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1927, 1, 0, 0, 0, 1929, 93, 1, 0, 0, 0, 1930, 1935, 3, 92, 46, 0, 1931, 1932, 5, 4, 0, 0, 1932, 1934, 3, 92, 46, 0, 1933, 1931, 1, 0, 0, 0, 1934, 1937, 1, 0, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 95, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1938, 1939, 3, 384, 192, 0, 1939, 97, 1, 0, 0, 0, 1940, 1941, 5, 136, 0, 0, 1941, 1942, 5, 2, 0, 0, 1942, 1943, 3, 280, 140, 0, 1943, 1944, 5, 3, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1947, 3, 250, 125, 0, 1946, 1940, 1, 0, 0, 0, 1946, 1945, 1, 0, 0, 0, 1947, 99, 1, 0, 0, 0, 1948, 1949, 5, 209, 0, 0, 1949, 1950, 5, 31, 0, 0, 1950, 1955, 3, 108, 54, 0, 1951, 1952, 5, 4, 0, 0, 1952, 1954, 3, 108, 54, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1959, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 1948, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1970, 1, 0, 0, 0, 1960, 1961, 5, 44, 0, 0, 1961, 1962, 5, 31, 0, 0, 1962, 1967, 3, 280, 140, 0, 1963, 1964, 5, 4, 0, 0, 1964, 1966, 3, 280, 140, 0, 1965, 1963, 1, 0, 0, 0, 1966, 1969, 1, 0, 0, 0, 1967, 1965, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1971, 1, 0, 0, 0, 1969, 1967, 1, 0, 0, 0, 1970, 1960, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1982, 1, 0, 0, 0, 1972, 1973, 5, 93, 0, 0, 1973, 1974, 5, 31, 0, 0, 1974, 1979, 3, 280, 140, 0, 1975, 1976, 5, 4, 0, 0, 1976, 1978, 3, 280, 140, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1977, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1982, 1972, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1994, 1, 0, 0, 0, 1984, 1985, 5, 278, 0, 0, 1985, 1986, 5, 31, 0, 0, 1986, 1991, 3, 108, 54, 0, 1987, 1988, 5, 4, 0, 0, 1988, 1990, 3, 108, 54, 0, 1989, 1987, 1, 0, 0, 0, 1990, 1993, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1994, 1984, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1997, 1, 0, 0, 0, 1996, 1998, 3, 364, 182, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2004, 1, 0, 0, 0, 1999, 2002, 5, 165, 0, 0, 2000, 2003, 5, 10, 0, 0, 2001, 2003, 3, 280, 140, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2001, 1, 0, 0, 0, 2003, 2005, 1, 0, 0, 0, 2004, 1999, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2008, 1, 0, 0, 0, 2006, 2007, 5, 202, 0, 0, 2007, 2009, 3, 280, 140, 0, 2008, 2006, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 101, 1, 0, 0, 0, 2010, 2011, 3, 28, 14, 0, 2011, 2012, 3, 112, 56, 0, 2012, 103, 1, 0, 0, 0, 2013, 2014, 6, 52, -1, 0, 2014, 2015, 3, 106, 53, 0, 2015, 2036, 1, 0, 0, 0, 2016, 2017, 10, 3, 0, 0, 2017, 2019, 7, 13, 0, 0, 2018, 2020, 3, 196, 98, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2035, 3, 104, 52, 4, 2022, 2023, 10, 2, 0, 0, 2023, 2025, 5, 148, 0, 0, 2024, 2026, 3, 196, 98, 0, 2025, 2024, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2035, 3, 104, 52, 3, 2028, 2029, 10, 1, 0, 0, 2029, 2031, 7, 14, 0, 0, 2030, 2032, 3, 196, 98, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2033, 1, 0, 0, 0, 2033, 2035, 3, 104, 52, 2, 2034, 2016, 1, 0, 0, 0, 2034, 2022, 1, 0, 0, 0, 2034, 2028, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 105, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2039, 2059, 3, 114, 57, 0, 2040, 2059, 3, 110, 55, 0, 2041, 2042, 5, 293, 0, 0, 2042, 2059, 3, 86, 43, 0, 2043, 2044, 5, 333, 0, 0, 2044, 2049, 3, 280, 140, 0, 2045, 2046, 5, 4, 0, 0, 2046, 2048, 3, 280, 140, 0, 2047, 2045, 1, 0, 0, 0, 2048, 2051, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2052, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2052, 2053, 3, 244, 122, 0, 2053, 2059, 1, 0, 0, 0, 2054, 2055, 5, 2, 0, 0, 2055, 2056, 3, 26, 13, 0, 2056, 2057, 5, 3, 0, 0, 2057, 2059, 1, 0, 0, 0, 2058, 2039, 1, 0, 0, 0, 2058, 2040, 1, 0, 0, 0, 2058, 2041, 1, 0, 0, 0, 2058, 2043, 1, 0, 0, 0, 2058, 2054, 1, 0, 0, 0, 2059, 107, 1, 0, 0, 0, 2060, 2063, 3, 92, 46, 0, 2061, 2063, 3, 280, 140, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2061, 1, 0, 0, 0, 2063, 2065, 1, 0, 0, 0, 2064, 2066, 7, 15, 0, 0, 2065, 2064, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2068, 5, 199, 0, 0, 2068, 2070, 7, 16, 0, 0, 2069, 2067, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 109, 1, 0, 0, 0, 2071, 2073, 3, 146, 73, 0, 2072, 2074, 3, 112, 56, 0, 2073, 2072, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 111, 1, 0, 0, 0, 2077, 2079, 3, 116, 58, 0, 2078, 2080, 3, 138, 69, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2082, 3, 100, 50, 0, 2082, 2105, 1, 0, 0, 0, 2083, 2087, 3, 118, 59, 0, 2084, 2086, 3, 194, 97, 0, 2085, 2084, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2090, 2092, 3, 138, 69, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2095, 3, 152, 76, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2097, 1, 0, 0, 0, 2096, 2098, 3, 140, 70, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2101, 3, 364, 182, 0, 2100, 2099, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 3, 100, 50, 0, 2103, 2105, 1, 0, 0, 0, 2104, 2077, 1, 0, 0, 0, 2104, 2083, 1, 0, 0, 0, 2105, 113, 1, 0, 0, 0, 2106, 2108, 3, 116, 58, 0, 2107, 2109, 3, 146, 73, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2113, 1, 0, 0, 0, 2110, 2112, 3, 194, 97, 0, 2111, 2110, 1, 0, 0, 0, 2112, 2115, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2117, 1, 0, 0, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2118, 3, 138, 69, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2121, 3, 152, 76, 0, 2120, 2119, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2123, 1, 0, 0, 0, 2122, 2124, 3, 140, 70, 0, 2123, 2122, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2126, 1, 0, 0, 0, 2125, 2127, 3, 364, 182, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2151, 1, 0, 0, 0, 2128, 2130, 3, 118, 59, 0, 2129, 2131, 3, 146, 73, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2135, 1, 0, 0, 0, 2132, 2134, 3, 194, 97, 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, 2139, 1, 0, 0, 0, 2137, 2135, 1, 0, 0, 0, 2138, 2140, 3, 138, 69, 0, 2139, 2138, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2143, 3, 152, 76, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2146, 3, 140, 70, 0, 2145, 2144, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 1, 0, 0, 0, 2147, 2149, 3, 364, 182, 0, 2148, 2147, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2106, 1, 0, 0, 0, 2150, 2128, 1, 0, 0, 0, 2151, 115, 1, 0, 0, 0, 2152, 2153, 5, 263, 0, 0, 2153, 2154, 5, 314, 0, 0, 2154, 2156, 5, 2, 0, 0, 2155, 2157, 3, 196, 98, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 2159, 3, 286, 143, 0, 2159, 2160, 5, 3, 0, 0, 2160, 2172, 1, 0, 0, 0, 2161, 2163, 5, 177, 0, 0, 2162, 2164, 3, 196, 98, 0, 2163, 2162, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2172, 3, 286, 143, 0, 2166, 2168, 5, 238, 0, 0, 2167, 2169, 3, 196, 98, 0, 2168, 2167, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2172, 3, 286, 143, 0, 2171, 2152, 1, 0, 0, 0, 2171, 2161, 1, 0, 0, 0, 2171, 2166, 1, 0, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2175, 3, 246, 123, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2177, 5, 236, 0, 0, 2177, 2179, 3, 400, 200, 0, 2178, 2176, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 5, 332, 0, 0, 2181, 2194, 3, 400, 200, 0, 2182, 2192, 5, 20, 0, 0, 2183, 2193, 3, 214, 107, 0, 2184, 2193, 3, 346, 173, 0, 2185, 2188, 5, 2, 0, 0, 2186, 2189, 3, 214, 107, 0, 2187, 2189, 3, 346, 173, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 5, 3, 0, 0, 2191, 2193, 1, 0, 0, 0, 2192, 2183, 1, 0, 0, 0, 2192, 2184, 1, 0, 0, 0, 2192, 2185, 1, 0, 0, 0, 2193, 2195, 1, 0, 0, 0, 2194, 2182, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2197, 1, 0, 0, 0, 2196, 2198, 3, 246, 123, 0, 2197, 2196, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2201, 1, 0, 0, 0, 2199, 2200, 5, 235, 0, 0, 2200, 2202, 3, 400, 200, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 117, 1, 0, 0, 0, 2203, 2207, 5, 263, 0, 0, 2204, 2206, 3, 142, 71, 0, 2205, 2204, 1, 0, 0, 0, 2206, 2209, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2211, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2212, 3, 196, 98, 0, 2211, 2210, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 2214, 3, 270, 135, 0, 2214, 119, 1, 0, 0, 0, 2215, 2216, 5, 269, 0, 0, 2216, 2217, 3, 134, 67, 0, 2217, 121, 1, 0, 0, 0, 2218, 2219, 5, 343, 0, 0, 2219, 2222, 5, 178, 0, 0, 2220, 2221, 5, 14, 0, 0, 2221, 2223, 3, 288, 144, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 5, 300, 0, 0, 2225, 2226, 3, 128, 64, 0, 2226, 123, 1, 0, 0, 0, 2227, 2228, 5, 343, 0, 0, 2228, 2229, 5, 197, 0, 0, 2229, 2232, 5, 178, 0, 0, 2230, 2231, 5, 31, 0, 0, 2231, 2233, 5, 296, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2236, 1, 0, 0, 0, 2234, 2235, 5, 14, 0, 0, 2235, 2237, 3, 288, 144, 0, 2236, 2234, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 5, 300, 0, 0, 2239, 2240, 3, 130, 65, 0, 2240, 125, 1, 0, 0, 0, 2241, 2242, 5, 343, 0, 0, 2242, 2243, 5, 197, 0, 0, 2243, 2244, 5, 178, 0, 0, 2244, 2245, 5, 31, 0, 0, 2245, 2248, 5, 280, 0, 0, 2246, 2247, 5, 14, 0, 0, 2247, 2249, 3, 288, 144, 0, 2248, 2246, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 2251, 5, 300, 0, 0, 2251, 2252, 3, 132, 66, 0, 2252, 127, 1, 0, 0, 0, 2253, 2261, 5, 84, 0, 0, 2254, 2255, 5, 329, 0, 0, 2255, 2256, 5, 269, 0, 0, 2256, 2261, 5, 363, 0, 0, 2257, 2258, 5, 329, 0, 0, 2258, 2259, 5, 269, 0, 0, 2259, 2261, 3, 134, 67, 0, 2260, 2253, 1, 0, 0, 0, 2260, 2254, 1, 0, 0, 0, 2260, 2257, 1, 0, 0, 0, 2261, 129, 1, 0, 0, 0, 2262, 2263, 5, 147, 0, 0, 2263, 2281, 5, 363, 0, 0, 2264, 2265, 5, 147, 0, 0, 2265, 2266, 5, 2, 0, 0, 2266, 2267, 3, 248, 124, 0, 2267, 2268, 5, 3, 0, 0, 2268, 2269, 5, 333, 0, 0, 2269, 2270, 5, 2, 0, 0, 2270, 2275, 3, 280, 140, 0, 2271, 2272, 5, 4, 0, 0, 2272, 2274, 3, 280, 140, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2277, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2275, 1, 0, 0, 0, 2278, 2279, 5, 3, 0, 0, 2279, 2281, 1, 0, 0, 0, 2280, 2262, 1, 0, 0, 0, 2280, 2264, 1, 0, 0, 0, 2281, 131, 1, 0, 0, 0, 2282, 2287, 5, 84, 0, 0, 2283, 2284, 5, 329, 0, 0, 2284, 2285, 5, 269, 0, 0, 2285, 2287, 3, 134, 67, 0, 2286, 2282, 1, 0, 0, 0, 2286, 2283, 1, 0, 0, 0, 2287, 133, 1, 0, 0, 0, 2288, 2293, 3, 136, 68, 0, 2289, 2290, 5, 4, 0, 0, 2290, 2292, 3, 136, 68, 0, 2291, 2289, 1, 0, 0, 0, 2292, 2295, 1, 0, 0, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 135, 1, 0, 0, 0, 2295, 2293, 1, 0, 0, 0, 2296, 2297, 3, 250, 125, 0, 2297, 2298, 5, 352, 0, 0, 2298, 2299, 3, 280, 140, 0, 2299, 137, 1, 0, 0, 0, 2300, 2301, 5, 344, 0, 0, 2301, 2302, 3, 288, 144, 0, 2302, 139, 1, 0, 0, 0, 2303, 2304, 5, 132, 0, 0, 2304, 2305, 3, 288, 144, 0, 2305, 141, 1, 0, 0, 0, 2306, 2307, 5, 374, 0, 0, 2307, 2314, 3, 144, 72, 0, 2308, 2310, 5, 4, 0, 0, 2309, 2308, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2313, 3, 144, 72, 0, 2312, 2309, 1, 0, 0, 0, 2313, 2316, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2317, 1, 0, 0, 0, 2316, 2314, 1, 0, 0, 0, 2317, 2318, 5, 375, 0, 0, 2318, 143, 1, 0, 0, 0, 2319, 2333, 3, 388, 194, 0, 2320, 2321, 3, 388, 194, 0, 2321, 2322, 5, 2, 0, 0, 2322, 2327, 3, 296, 148, 0, 2323, 2324, 5, 4, 0, 0, 2324, 2326, 3, 296, 148, 0, 2325, 2323, 1, 0, 0, 0, 2326, 2329, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2330, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2330, 2331, 5, 3, 0, 0, 2331, 2333, 1, 0, 0, 0, 2332, 2319, 1, 0, 0, 0, 2332, 2320, 1, 0, 0, 0, 2333, 145, 1, 0, 0, 0, 2334, 2335, 5, 123, 0, 0, 2335, 2340, 3, 198, 99, 0, 2336, 2337, 5, 4, 0, 0, 2337, 2339, 3, 198, 99, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2342, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2346, 1, 0, 0, 0, 2342, 2340, 1, 0, 0, 0, 2343, 2345, 3, 194, 97, 0, 2344, 2343, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2351, 3, 162, 81, 0, 2350, 2349, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2353, 1, 0, 0, 0, 2352, 2354, 3, 168, 84, 0, 2353, 2352, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 147, 1, 0, 0, 0, 2355, 2356, 7, 17, 0, 0, 2356, 149, 1, 0, 0, 0, 2357, 2359, 5, 119, 0, 0, 2358, 2357, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2361, 7, 18, 0, 0, 2361, 2362, 5, 20, 0, 0, 2362, 2363, 5, 201, 0, 0, 2363, 2372, 3, 404, 202, 0, 2364, 2366, 5, 119, 0, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 7, 19, 0, 0, 2368, 2369, 5, 20, 0, 0, 2369, 2370, 5, 201, 0, 0, 2370, 2372, 3, 292, 146, 0, 2371, 2358, 1, 0, 0, 0, 2371, 2365, 1, 0, 0, 0, 2372, 151, 1, 0, 0, 0, 2373, 2374, 5, 130, 0, 0, 2374, 2375, 5, 31, 0, 0, 2375, 2380, 3, 154, 77, 0, 2376, 2377, 5, 4, 0, 0, 2377, 2379, 3, 154, 77, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2382, 1, 0, 0, 0, 2380, 2378, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2413, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2383, 2384, 5, 130, 0, 0, 2384, 2385, 5, 31, 0, 0, 2385, 2390, 3, 280, 140, 0, 2386, 2387, 5, 4, 0, 0, 2387, 2389, 3, 280, 140, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2410, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 5, 346, 0, 0, 2394, 2411, 5, 256, 0, 0, 2395, 2396, 5, 346, 0, 0, 2396, 2411, 5, 61, 0, 0, 2397, 2398, 5, 131, 0, 0, 2398, 2399, 5, 271, 0, 0, 2399, 2400, 5, 2, 0, 0, 2400, 2405, 3, 160, 80, 0, 2401, 2402, 5, 4, 0, 0, 2402, 2404, 3, 160, 80, 0, 2403, 2401, 1, 0, 0, 0, 2404, 2407, 1, 0, 0, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2408, 1, 0, 0, 0, 2407, 2405, 1, 0, 0, 0, 2408, 2409, 5, 3, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2393, 1, 0, 0, 0, 2410, 2395, 1, 0, 0, 0, 2410, 2397, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2373, 1, 0, 0, 0, 2412, 2383, 1, 0, 0, 0, 2413, 153, 1, 0, 0, 0, 2414, 2418, 3, 92, 46, 0, 2415, 2418, 3, 156, 78, 0, 2416, 2418, 3, 280, 140, 0, 2417, 2414, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2417, 2416, 1, 0, 0, 0, 2418, 155, 1, 0, 0, 0, 2419, 2420, 7, 20, 0, 0, 2420, 2421, 5, 2, 0, 0, 2421, 2426, 3, 160, 80, 0, 2422, 2423, 5, 4, 0, 0, 2423, 2425, 3, 160, 80, 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, 3, 0, 0, 2430, 2445, 1, 0, 0, 0, 2431, 2432, 5, 131, 0, 0, 2432, 2433, 5, 271, 0, 0, 2433, 2434, 5, 2, 0, 0, 2434, 2439, 3, 158, 79, 0, 2435, 2436, 5, 4, 0, 0, 2436, 2438, 3, 158, 79, 0, 2437, 2435, 1, 0, 0, 0, 2438, 2441, 1, 0, 0, 0, 2439, 2437, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2442, 1, 0, 0, 0, 2441, 2439, 1, 0, 0, 0, 2442, 2443, 5, 3, 0, 0, 2443, 2445, 1, 0, 0, 0, 2444, 2419, 1, 0, 0, 0, 2444, 2431, 1, 0, 0, 0, 2445, 157, 1, 0, 0, 0, 2446, 2449, 3, 156, 78, 0, 2447, 2449, 3, 160, 80, 0, 2448, 2446, 1, 0, 0, 0, 2448, 2447, 1, 0, 0, 0, 2449, 159, 1, 0, 0, 0, 2450, 2471, 3, 92, 46, 0, 2451, 2471, 3, 280, 140, 0, 2452, 2467, 5, 2, 0, 0, 2453, 2456, 3, 92, 46, 0, 2454, 2456, 3, 280, 140, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2454, 1, 0, 0, 0, 2456, 2464, 1, 0, 0, 0, 2457, 2460, 5, 4, 0, 0, 2458, 2461, 3, 92, 46, 0, 2459, 2461, 3, 280, 140, 0, 2460, 2458, 1, 0, 0, 0, 2460, 2459, 1, 0, 0, 0, 2461, 2463, 1, 0, 0, 0, 2462, 2457, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2455, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 5, 3, 0, 0, 2470, 2450, 1, 0, 0, 0, 2470, 2451, 1, 0, 0, 0, 2470, 2452, 1, 0, 0, 0, 2471, 161, 1, 0, 0, 0, 2472, 2473, 5, 223, 0, 0, 2473, 2474, 5, 2, 0, 0, 2474, 2475, 3, 268, 134, 0, 2475, 2476, 5, 119, 0, 0, 2476, 2477, 3, 164, 82, 0, 2477, 2478, 5, 140, 0, 0, 2478, 2479, 5, 2, 0, 0, 2479, 2484, 3, 166, 83, 0, 2480, 2481, 5, 4, 0, 0, 2481, 2483, 3, 166, 83, 0, 2482, 2480, 1, 0, 0, 0, 2483, 2486, 1, 0, 0, 0, 2484, 2482, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2487, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2487, 2488, 5, 3, 0, 0, 2488, 2489, 5, 3, 0, 0, 2489, 163, 1, 0, 0, 0, 2490, 2503, 3, 388, 194, 0, 2491, 2492, 5, 2, 0, 0, 2492, 2497, 3, 388, 194, 0, 2493, 2494, 5, 4, 0, 0, 2494, 2496, 3, 388, 194, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2499, 1, 0, 0, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2500, 1, 0, 0, 0, 2499, 2497, 1, 0, 0, 0, 2500, 2501, 5, 3, 0, 0, 2501, 2503, 1, 0, 0, 0, 2502, 2490, 1, 0, 0, 0, 2502, 2491, 1, 0, 0, 0, 2503, 165, 1, 0, 0, 0, 2504, 2509, 3, 280, 140, 0, 2505, 2507, 5, 20, 0, 0, 2506, 2505, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2510, 3, 388, 194, 0, 2509, 2506, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 167, 1, 0, 0, 0, 2511, 2513, 5, 327, 0, 0, 2512, 2514, 3, 170, 85, 0, 2513, 2512, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 5, 2, 0, 0, 2516, 2517, 3, 172, 86, 0, 2517, 2522, 5, 3, 0, 0, 2518, 2520, 5, 20, 0, 0, 2519, 2518, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 3, 388, 194, 0, 2522, 2519, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 169, 1, 0, 0, 0, 2524, 2525, 7, 21, 0, 0, 2525, 2526, 5, 199, 0, 0, 2526, 171, 1, 0, 0, 0, 2527, 2530, 3, 174, 87, 0, 2528, 2530, 3, 176, 88, 0, 2529, 2527, 1, 0, 0, 0, 2529, 2528, 1, 0, 0, 0, 2530, 173, 1, 0, 0, 0, 2531, 2532, 3, 180, 90, 0, 2532, 2533, 5, 119, 0, 0, 2533, 2534, 3, 182, 91, 0, 2534, 2535, 5, 140, 0, 0, 2535, 2536, 5, 2, 0, 0, 2536, 2541, 3, 184, 92, 0, 2537, 2538, 5, 4, 0, 0, 2538, 2540, 3, 184, 92, 0, 2539, 2537, 1, 0, 0, 0, 2540, 2543, 1, 0, 0, 0, 2541, 2539, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2544, 1, 0, 0, 0, 2543, 2541, 1, 0, 0, 0, 2544, 2545, 5, 3, 0, 0, 2545, 175, 1, 0, 0, 0, 2546, 2547, 5, 2, 0, 0, 2547, 2552, 3, 180, 90, 0, 2548, 2549, 5, 4, 0, 0, 2549, 2551, 3, 180, 90, 0, 2550, 2548, 1, 0, 0, 0, 2551, 2554, 1, 0, 0, 0, 2552, 2550, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2552, 1, 0, 0, 0, 2555, 2556, 5, 3, 0, 0, 2556, 2557, 5, 119, 0, 0, 2557, 2558, 3, 182, 91, 0, 2558, 2559, 5, 140, 0, 0, 2559, 2560, 5, 2, 0, 0, 2560, 2565, 3, 178, 89, 0, 2561, 2562, 5, 4, 0, 0, 2562, 2564, 3, 178, 89, 0, 2563, 2561, 1, 0, 0, 0, 2564, 2567, 1, 0, 0, 0, 2565, 2563, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2565, 1, 0, 0, 0, 2568, 2569, 5, 3, 0, 0, 2569, 177, 1, 0, 0, 0, 2570, 2571, 5, 2, 0, 0, 2571, 2576, 3, 186, 93, 0, 2572, 2573, 5, 4, 0, 0, 2573, 2575, 3, 186, 93, 0, 2574, 2572, 1, 0, 0, 0, 2575, 2578, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2579, 1, 0, 0, 0, 2578, 2576, 1, 0, 0, 0, 2579, 2581, 5, 3, 0, 0, 2580, 2582, 3, 188, 94, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 179, 1, 0, 0, 0, 2583, 2584, 3, 388, 194, 0, 2584, 181, 1, 0, 0, 0, 2585, 2586, 3, 388, 194, 0, 2586, 183, 1, 0, 0, 0, 2587, 2589, 3, 186, 93, 0, 2588, 2590, 3, 188, 94, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 185, 1, 0, 0, 0, 2591, 2592, 3, 250, 125, 0, 2592, 187, 1, 0, 0, 0, 2593, 2595, 5, 20, 0, 0, 2594, 2593, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 3, 388, 194, 0, 2597, 189, 1, 0, 0, 0, 2598, 2599, 5, 137, 0, 0, 2599, 2600, 5, 197, 0, 0, 2600, 2601, 5, 105, 0, 0, 2601, 191, 1, 0, 0, 0, 2602, 2603, 5, 137, 0, 0, 2603, 2604, 5, 105, 0, 0, 2604, 193, 1, 0, 0, 0, 2605, 2606, 5, 158, 0, 0, 2606, 2608, 5, 338, 0, 0, 2607, 2609, 5, 211, 0, 0, 2608, 2607, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2611, 3, 90, 45, 0, 2611, 2620, 5, 2, 0, 0, 2612, 2617, 3, 280, 140, 0, 2613, 2614, 5, 4, 0, 0, 2614, 2616, 3, 280, 140, 0, 2615, 2613, 1, 0, 0, 0, 2616, 2619, 1, 0, 0, 0, 2617, 2615, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2621, 1, 0, 0, 0, 2619, 2617, 1, 0, 0, 0, 2620, 2612, 1, 0, 0, 0, 2620, 2621, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 2623, 5, 3, 0, 0, 2623, 2635, 3, 244, 122, 0, 2624, 2626, 5, 20, 0, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2632, 3, 388, 194, 0, 2628, 2629, 5, 4, 0, 0, 2629, 2631, 3, 388, 194, 0, 2630, 2628, 1, 0, 0, 0, 2631, 2634, 1, 0, 0, 0, 2632, 2630, 1, 0, 0, 0, 2632, 2633, 1, 0, 0, 0, 2633, 2636, 1, 0, 0, 0, 2634, 2632, 1, 0, 0, 0, 2635, 2625, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 195, 1, 0, 0, 0, 2637, 2638, 7, 22, 0, 0, 2638, 197, 1, 0, 0, 0, 2639, 2651, 3, 86, 43, 0, 2640, 2642, 5, 158, 0, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2647, 3, 224, 112, 0, 2644, 2646, 3, 200, 100, 0, 2645, 2644, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2639, 1, 0, 0, 0, 2650, 2641, 1, 0, 0, 0, 2651, 199, 1, 0, 0, 0, 2652, 2656, 3, 202, 101, 0, 2653, 2656, 3, 162, 81, 0, 2654, 2656, 3, 168, 84, 0, 2655, 2652, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2655, 2654, 1, 0, 0, 0, 2656, 201, 1, 0, 0, 0, 2657, 2658, 3, 204, 102, 0, 2658, 2660, 5, 155, 0, 0, 2659, 2661, 5, 158, 0, 0, 2660, 2659, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2664, 3, 224, 112, 0, 2663, 2665, 3, 206, 103, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2675, 1, 0, 0, 0, 2666, 2667, 5, 194, 0, 0, 2667, 2668, 3, 204, 102, 0, 2668, 2670, 5, 155, 0, 0, 2669, 2671, 5, 158, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2673, 3, 224, 112, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2657, 1, 0, 0, 0, 2674, 2666, 1, 0, 0, 0, 2675, 203, 1, 0, 0, 0, 2676, 2678, 5, 144, 0, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2701, 1, 0, 0, 0, 2679, 2701, 5, 60, 0, 0, 2680, 2682, 5, 161, 0, 0, 2681, 2683, 5, 211, 0, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2701, 1, 0, 0, 0, 2684, 2686, 5, 161, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2701, 5, 264, 0, 0, 2688, 2690, 5, 250, 0, 0, 2689, 2691, 5, 211, 0, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2701, 1, 0, 0, 0, 2692, 2694, 5, 124, 0, 0, 2693, 2695, 5, 211, 0, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2701, 1, 0, 0, 0, 2696, 2698, 5, 161, 0, 0, 2697, 2696, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2701, 5, 15, 0, 0, 2700, 2677, 1, 0, 0, 0, 2700, 2679, 1, 0, 0, 0, 2700, 2680, 1, 0, 0, 0, 2700, 2685, 1, 0, 0, 0, 2700, 2688, 1, 0, 0, 0, 2700, 2692, 1, 0, 0, 0, 2700, 2697, 1, 0, 0, 0, 2701, 205, 1, 0, 0, 0, 2702, 2703, 5, 203, 0, 0, 2703, 2707, 3, 288, 144, 0, 2704, 2705, 5, 332, 0, 0, 2705, 2707, 3, 212, 106, 0, 2706, 2702, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2707, 207, 1, 0, 0, 0, 2708, 2709, 5, 295, 0, 0, 2709, 2711, 5, 2, 0, 0, 2710, 2712, 3, 210, 105, 0, 2711, 2710, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2718, 5, 3, 0, 0, 2714, 2715, 5, 243, 0, 0, 2715, 2716, 5, 2, 0, 0, 2716, 2717, 5, 382, 0, 0, 2717, 2719, 5, 3, 0, 0, 2718, 2714, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 209, 1, 0, 0, 0, 2720, 2722, 5, 362, 0, 0, 2721, 2720, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2724, 7, 23, 0, 0, 2724, 2745, 5, 222, 0, 0, 2725, 2726, 3, 280, 140, 0, 2726, 2727, 5, 258, 0, 0, 2727, 2745, 1, 0, 0, 0, 2728, 2729, 5, 29, 0, 0, 2729, 2730, 5, 382, 0, 0, 2730, 2731, 5, 210, 0, 0, 2731, 2732, 5, 201, 0, 0, 2732, 2741, 5, 382, 0, 0, 2733, 2739, 5, 203, 0, 0, 2734, 2740, 3, 388, 194, 0, 2735, 2736, 3, 382, 191, 0, 2736, 2737, 5, 2, 0, 0, 2737, 2738, 5, 3, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2734, 1, 0, 0, 0, 2739, 2735, 1, 0, 0, 0, 2740, 2742, 1, 0, 0, 0, 2741, 2733, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2745, 1, 0, 0, 0, 2743, 2745, 3, 280, 140, 0, 2744, 2721, 1, 0, 0, 0, 2744, 2725, 1, 0, 0, 0, 2744, 2728, 1, 0, 0, 0, 2744, 2743, 1, 0, 0, 0, 2745, 211, 1, 0, 0, 0, 2746, 2747, 5, 2, 0, 0, 2747, 2748, 3, 214, 107, 0, 2748, 2749, 5, 3, 0, 0, 2749, 213, 1, 0, 0, 0, 2750, 2755, 3, 384, 192, 0, 2751, 2752, 5, 4, 0, 0, 2752, 2754, 3, 384, 192, 0, 2753, 2751, 1, 0, 0, 0, 2754, 2757, 1, 0, 0, 0, 2755, 2753, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 215, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2758, 2759, 5, 2, 0, 0, 2759, 2764, 3, 218, 109, 0, 2760, 2761, 5, 4, 0, 0, 2761, 2763, 3, 218, 109, 0, 2762, 2760, 1, 0, 0, 0, 2763, 2766, 1, 0, 0, 0, 2764, 2762, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2767, 1, 0, 0, 0, 2766, 2764, 1, 0, 0, 0, 2767, 2768, 5, 3, 0, 0, 2768, 217, 1, 0, 0, 0, 2769, 2771, 3, 384, 192, 0, 2770, 2772, 7, 15, 0, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 219, 1, 0, 0, 0, 2773, 2774, 5, 2, 0, 0, 2774, 2779, 3, 222, 111, 0, 2775, 2776, 5, 4, 0, 0, 2776, 2778, 3, 222, 111, 0, 2777, 2775, 1, 0, 0, 0, 2778, 2781, 1, 0, 0, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2782, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2782, 2783, 5, 3, 0, 0, 2783, 221, 1, 0, 0, 0, 2784, 2786, 3, 96, 48, 0, 2785, 2787, 3, 24, 12, 0, 2786, 2785, 1, 0, 0, 0, 2786, 2787, 1, 0, 0, 0, 2787, 223, 1, 0, 0, 0, 2788, 2792, 3, 86, 43, 0, 2789, 2792, 3, 90, 45, 0, 2790, 2792, 3, 98, 49, 0, 2791, 2788, 1, 0, 0, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2790, 1, 0, 0, 0, 2792, 2794, 1, 0, 0, 0, 2793, 2795, 3, 150, 75, 0, 2794, 2793, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 1, 0, 0, 0, 2796, 2798, 3, 208, 104, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2800, 3, 244, 122, 0, 2800, 2820, 1, 0, 0, 0, 2801, 2803, 3, 226, 113, 0, 2802, 2804, 3, 208, 104, 0, 2803, 2802, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2806, 3, 244, 122, 0, 2806, 2820, 1, 0, 0, 0, 2807, 2808, 5, 2, 0, 0, 2808, 2809, 3, 198, 99, 0, 2809, 2811, 5, 3, 0, 0, 2810, 2812, 3, 208, 104, 0, 2811, 2810, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2814, 3, 244, 122, 0, 2814, 2820, 1, 0, 0, 0, 2815, 2816, 3, 228, 114, 0, 2816, 2817, 3, 244, 122, 0, 2817, 2820, 1, 0, 0, 0, 2818, 2820, 3, 240, 120, 0, 2819, 2791, 1, 0, 0, 0, 2819, 2801, 1, 0, 0, 0, 2819, 2807, 1, 0, 0, 0, 2819, 2815, 1, 0, 0, 0, 2819, 2818, 1, 0, 0, 0, 2820, 225, 1, 0, 0, 0, 2821, 2822, 5, 2, 0, 0, 2822, 2823, 3, 26, 13, 0, 2823, 2824, 5, 3, 0, 0, 2824, 227, 1, 0, 0, 0, 2825, 2826, 5, 333, 0, 0, 2826, 2831, 3, 280, 140, 0, 2827, 2828, 5, 4, 0, 0, 2828, 2830, 3, 280, 140, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2833, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 229, 1, 0, 0, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2835, 5, 293, 0, 0, 2835, 2837, 3, 86, 43, 0, 2836, 2838, 3, 232, 116, 0, 2837, 2836, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2854, 1, 0, 0, 0, 2839, 2840, 5, 293, 0, 0, 2840, 2841, 5, 2, 0, 0, 2841, 2842, 3, 86, 43, 0, 2842, 2844, 5, 3, 0, 0, 2843, 2845, 3, 232, 116, 0, 2844, 2843, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2854, 1, 0, 0, 0, 2846, 2847, 5, 293, 0, 0, 2847, 2848, 5, 2, 0, 0, 2848, 2849, 3, 26, 13, 0, 2849, 2851, 5, 3, 0, 0, 2850, 2852, 3, 232, 116, 0, 2851, 2850, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2854, 1, 0, 0, 0, 2853, 2834, 1, 0, 0, 0, 2853, 2839, 1, 0, 0, 0, 2853, 2846, 1, 0, 0, 0, 2854, 231, 1, 0, 0, 0, 2855, 2856, 5, 346, 0, 0, 2856, 2857, 5, 274, 0, 0, 2857, 2875, 5, 217, 0, 0, 2858, 2859, 7, 24, 0, 0, 2859, 2872, 5, 31, 0, 0, 2860, 2861, 5, 2, 0, 0, 2861, 2866, 3, 280, 140, 0, 2862, 2863, 5, 4, 0, 0, 2863, 2865, 3, 280, 140, 0, 2864, 2862, 1, 0, 0, 0, 2865, 2868, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2869, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2870, 5, 3, 0, 0, 2870, 2873, 1, 0, 0, 0, 2871, 2873, 3, 280, 140, 0, 2872, 2860, 1, 0, 0, 0, 2872, 2871, 1, 0, 0, 0, 2873, 2875, 1, 0, 0, 0, 2874, 2855, 1, 0, 0, 0, 2874, 2858, 1, 0, 0, 0, 2875, 2892, 1, 0, 0, 0, 2876, 2877, 7, 25, 0, 0, 2877, 2890, 5, 31, 0, 0, 2878, 2879, 5, 2, 0, 0, 2879, 2884, 3, 108, 54, 0, 2880, 2881, 5, 4, 0, 0, 2881, 2883, 3, 108, 54, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2886, 1, 0, 0, 0, 2884, 2882, 1, 0, 0, 0, 2884, 2885, 1, 0, 0, 0, 2885, 2887, 1, 0, 0, 0, 2886, 2884, 1, 0, 0, 0, 2887, 2888, 5, 3, 0, 0, 2888, 2891, 1, 0, 0, 0, 2889, 2891, 3, 108, 54, 0, 2890, 2878, 1, 0, 0, 0, 2890, 2889, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, 2876, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 233, 1, 0, 0, 0, 2894, 2895, 3, 388, 194, 0, 2895, 2896, 5, 373, 0, 0, 2896, 2897, 3, 230, 115, 0, 2897, 235, 1, 0, 0, 0, 2898, 2901, 3, 230, 115, 0, 2899, 2901, 3, 234, 117, 0, 2900, 2898, 1, 0, 0, 0, 2900, 2899, 1, 0, 0, 0, 2901, 237, 1, 0, 0, 0, 2902, 2905, 3, 236, 118, 0, 2903, 2905, 3, 284, 142, 0, 2904, 2902, 1, 0, 0, 0, 2904, 2903, 1, 0, 0, 0, 2905, 239, 1, 0, 0, 0, 2906, 2907, 3, 242, 121, 0, 2907, 2908, 3, 244, 122, 0, 2908, 241, 1, 0, 0, 0, 2909, 2910, 3, 378, 189, 0, 2910, 2919, 5, 2, 0, 0, 2911, 2916, 3, 238, 119, 0, 2912, 2913, 5, 4, 0, 0, 2913, 2915, 3, 238, 119, 0, 2914, 2912, 1, 0, 0, 0, 2915, 2918, 1, 0, 0, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2920, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2911, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2922, 5, 3, 0, 0, 2922, 243, 1, 0, 0, 0, 2923, 2925, 5, 20, 0, 0, 2924, 2923, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2928, 3, 390, 195, 0, 2927, 2929, 3, 212, 106, 0, 2928, 2927, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2931, 1, 0, 0, 0, 2930, 2924, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 245, 1, 0, 0, 0, 2932, 2933, 5, 257, 0, 0, 2933, 2934, 5, 121, 0, 0, 2934, 2935, 5, 266, 0, 0, 2935, 2939, 3, 400, 200, 0, 2936, 2937, 5, 346, 0, 0, 2937, 2938, 5, 267, 0, 0, 2938, 2940, 3, 54, 27, 0, 2939, 2936, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2982, 1, 0, 0, 0, 2941, 2942, 5, 257, 0, 0, 2942, 2943, 5, 121, 0, 0, 2943, 2953, 5, 85, 0, 0, 2944, 2945, 5, 113, 0, 0, 2945, 2946, 5, 299, 0, 0, 2946, 2947, 5, 31, 0, 0, 2947, 2951, 3, 400, 200, 0, 2948, 2949, 5, 101, 0, 0, 2949, 2950, 5, 31, 0, 0, 2950, 2952, 3, 400, 200, 0, 2951, 2948, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2954, 1, 0, 0, 0, 2953, 2944, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2960, 1, 0, 0, 0, 2955, 2956, 5, 48, 0, 0, 2956, 2957, 5, 154, 0, 0, 2957, 2958, 5, 299, 0, 0, 2958, 2959, 5, 31, 0, 0, 2959, 2961, 3, 400, 200, 0, 2960, 2955, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2967, 1, 0, 0, 0, 2962, 2963, 5, 177, 0, 0, 2963, 2964, 5, 156, 0, 0, 2964, 2965, 5, 299, 0, 0, 2965, 2966, 5, 31, 0, 0, 2966, 2968, 3, 400, 200, 0, 2967, 2962, 1, 0, 0, 0, 2967, 2968, 1, 0, 0, 0, 2968, 2973, 1, 0, 0, 0, 2969, 2970, 5, 166, 0, 0, 2970, 2971, 5, 299, 0, 0, 2971, 2972, 5, 31, 0, 0, 2972, 2974, 3, 400, 200, 0, 2973, 2969, 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 2979, 1, 0, 0, 0, 2975, 2976, 5, 198, 0, 0, 2976, 2977, 5, 83, 0, 0, 2977, 2978, 5, 20, 0, 0, 2978, 2980, 3, 400, 200, 0, 2979, 2975, 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 2982, 1, 0, 0, 0, 2981, 2932, 1, 0, 0, 0, 2981, 2941, 1, 0, 0, 0, 2982, 247, 1, 0, 0, 0, 2983, 2988, 3, 250, 125, 0, 2984, 2985, 5, 4, 0, 0, 2985, 2987, 3, 250, 125, 0, 2986, 2984, 1, 0, 0, 0, 2987, 2990, 1, 0, 0, 0, 2988, 2986, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 249, 1, 0, 0, 0, 2990, 2988, 1, 0, 0, 0, 2991, 2996, 3, 384, 192, 0, 2992, 2993, 5, 5, 0, 0, 2993, 2995, 3, 384, 192, 0, 2994, 2992, 1, 0, 0, 0, 2995, 2998, 1, 0, 0, 0, 2996, 2994, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 251, 1, 0, 0, 0, 2998, 2996, 1, 0, 0, 0, 2999, 3004, 3, 254, 127, 0, 3000, 3001, 5, 4, 0, 0, 3001, 3003, 3, 254, 127, 0, 3002, 3000, 1, 0, 0, 0, 3003, 3006, 1, 0, 0, 0, 3004, 3002, 1, 0, 0, 0, 3004, 3005, 1, 0, 0, 0, 3005, 253, 1, 0, 0, 0, 3006, 3004, 1, 0, 0, 0, 3007, 3010, 3, 250, 125, 0, 3008, 3009, 5, 207, 0, 0, 3009, 3011, 3, 54, 27, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 255, 1, 0, 0, 0, 3012, 3013, 3, 384, 192, 0, 3013, 3014, 5, 5, 0, 0, 3014, 3016, 1, 0, 0, 0, 3015, 3012, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 1, 0, 0, 0, 3017, 3018, 3, 384, 192, 0, 3018, 257, 1, 0, 0, 0, 3019, 3020, 3, 384, 192, 0, 3020, 3021, 5, 5, 0, 0, 3021, 3023, 1, 0, 0, 0, 3022, 3019, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 3, 384, 192, 0, 3025, 259, 1, 0, 0, 0, 3026, 3027, 3, 92, 46, 0, 3027, 261, 1, 0, 0, 0, 3028, 3029, 3, 280, 140, 0, 3029, 263, 1, 0, 0, 0, 3030, 3031, 3, 382, 191, 0, 3031, 3032, 5, 5, 0, 0, 3032, 3034, 1, 0, 0, 0, 3033, 3030, 1, 0, 0, 0, 3034, 3037, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3035, 1, 0, 0, 0, 3038, 3039, 5, 363, 0, 0, 3039, 265, 1, 0, 0, 0, 3040, 3044, 3, 264, 132, 0, 3041, 3044, 3, 260, 130, 0, 3042, 3044, 3, 262, 131, 0, 3043, 3040, 1, 0, 0, 0, 3043, 3041, 1, 0, 0, 0, 3043, 3042, 1, 0, 0, 0, 3044, 3052, 1, 0, 0, 0, 3045, 3047, 5, 20, 0, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3050, 1, 0, 0, 0, 3048, 3051, 3, 384, 192, 0, 3049, 3051, 3, 212, 106, 0, 3050, 3048, 1, 0, 0, 0, 3050, 3049, 1, 0, 0, 0, 3051, 3053, 1, 0, 0, 0, 3052, 3046, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 267, 1, 0, 0, 0, 3054, 3059, 3, 266, 133, 0, 3055, 3056, 5, 4, 0, 0, 3056, 3058, 3, 266, 133, 0, 3057, 3055, 1, 0, 0, 0, 3058, 3061, 1, 0, 0, 0, 3059, 3057, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 269, 1, 0, 0, 0, 3061, 3059, 1, 0, 0, 0, 3062, 3063, 3, 268, 134, 0, 3063, 271, 1, 0, 0, 0, 3064, 3065, 5, 2, 0, 0, 3065, 3070, 3, 274, 137, 0, 3066, 3067, 5, 4, 0, 0, 3067, 3069, 3, 274, 137, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3072, 1, 0, 0, 0, 3070, 3068, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3073, 1, 0, 0, 0, 3072, 3070, 1, 0, 0, 0, 3073, 3074, 5, 3, 0, 0, 3074, 273, 1, 0, 0, 0, 3075, 3078, 3, 276, 138, 0, 3076, 3078, 3, 348, 174, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3076, 1, 0, 0, 0, 3078, 275, 1, 0, 0, 0, 3079, 3093, 3, 382, 191, 0, 3080, 3081, 3, 388, 194, 0, 3081, 3082, 5, 2, 0, 0, 3082, 3087, 3, 278, 139, 0, 3083, 3084, 5, 4, 0, 0, 3084, 3086, 3, 278, 139, 0, 3085, 3083, 1, 0, 0, 0, 3086, 3089, 1, 0, 0, 0, 3087, 3085, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3090, 3091, 5, 3, 0, 0, 3091, 3093, 1, 0, 0, 0, 3092, 3079, 1, 0, 0, 0, 3092, 3080, 1, 0, 0, 0, 3093, 277, 1, 0, 0, 0, 3094, 3097, 3, 382, 191, 0, 3095, 3097, 3, 300, 150, 0, 3096, 3094, 1, 0, 0, 0, 3096, 3095, 1, 0, 0, 0, 3097, 279, 1, 0, 0, 0, 3098, 3099, 3, 288, 144, 0, 3099, 281, 1, 0, 0, 0, 3100, 3101, 3, 388, 194, 0, 3101, 3102, 5, 373, 0, 0, 3102, 3103, 3, 280, 140, 0, 3103, 283, 1, 0, 0, 0, 3104, 3107, 3, 280, 140, 0, 3105, 3107, 3, 282, 141, 0, 3106, 3104, 1, 0, 0, 0, 3106, 3105, 1, 0, 0, 0, 3107, 285, 1, 0, 0, 0, 3108, 3113, 3, 280, 140, 0, 3109, 3110, 5, 4, 0, 0, 3110, 3112, 3, 280, 140, 0, 3111, 3109, 1, 0, 0, 0, 3112, 3115, 1, 0, 0, 0, 3113, 3111, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 287, 1, 0, 0, 0, 3115, 3113, 1, 0, 0, 0, 3116, 3117, 6, 144, -1, 0, 3117, 3118, 7, 26, 0, 0, 3118, 3129, 3, 288, 144, 5, 3119, 3120, 5, 105, 0, 0, 3120, 3121, 5, 2, 0, 0, 3121, 3122, 3, 26, 13, 0, 3122, 3123, 5, 3, 0, 0, 3123, 3129, 1, 0, 0, 0, 3124, 3126, 3, 292, 146, 0, 3125, 3127, 3, 290, 145, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3129, 1, 0, 0, 0, 3128, 3116, 1, 0, 0, 0, 3128, 3119, 1, 0, 0, 0, 3128, 3124, 1, 0, 0, 0, 3129, 3138, 1, 0, 0, 0, 3130, 3131, 10, 2, 0, 0, 3131, 3132, 5, 14, 0, 0, 3132, 3137, 3, 288, 144, 3, 3133, 3134, 10, 1, 0, 0, 3134, 3135, 5, 208, 0, 0, 3135, 3137, 3, 288, 144, 2, 3136, 3130, 1, 0, 0, 0, 3136, 3133, 1, 0, 0, 0, 3137, 3140, 1, 0, 0, 0, 3138, 3136, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 289, 1, 0, 0, 0, 3140, 3138, 1, 0, 0, 0, 3141, 3143, 5, 197, 0, 0, 3142, 3141, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3145, 5, 24, 0, 0, 3145, 3146, 3, 292, 146, 0, 3146, 3147, 5, 14, 0, 0, 3147, 3148, 3, 292, 146, 0, 3148, 3224, 1, 0, 0, 0, 3149, 3151, 5, 197, 0, 0, 3150, 3149, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 5, 140, 0, 0, 3153, 3154, 5, 2, 0, 0, 3154, 3159, 3, 280, 140, 0, 3155, 3156, 5, 4, 0, 0, 3156, 3158, 3, 280, 140, 0, 3157, 3155, 1, 0, 0, 0, 3158, 3161, 1, 0, 0, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3162, 1, 0, 0, 0, 3161, 3159, 1, 0, 0, 0, 3162, 3163, 5, 3, 0, 0, 3163, 3224, 1, 0, 0, 0, 3164, 3166, 5, 197, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3168, 5, 140, 0, 0, 3168, 3169, 5, 2, 0, 0, 3169, 3170, 3, 26, 13, 0, 3170, 3171, 5, 3, 0, 0, 3171, 3224, 1, 0, 0, 0, 3172, 3174, 5, 197, 0, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 3176, 7, 27, 0, 0, 3176, 3224, 3, 292, 146, 0, 3177, 3179, 5, 197, 0, 0, 3178, 3177, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3181, 7, 28, 0, 0, 3181, 3195, 7, 29, 0, 0, 3182, 3183, 5, 2, 0, 0, 3183, 3196, 5, 3, 0, 0, 3184, 3185, 5, 2, 0, 0, 3185, 3190, 3, 280, 140, 0, 3186, 3187, 5, 4, 0, 0, 3187, 3189, 3, 280, 140, 0, 3188, 3186, 1, 0, 0, 0, 3189, 3192, 1, 0, 0, 0, 3190, 3188, 1, 0, 0, 0, 3190, 3191, 1, 0, 0, 0, 3191, 3193, 1, 0, 0, 0, 3192, 3190, 1, 0, 0, 0, 3193, 3194, 5, 3, 0, 0, 3194, 3196, 1, 0, 0, 0, 3195, 3182, 1, 0, 0, 0, 3195, 3184, 1, 0, 0, 0, 3196, 3224, 1, 0, 0, 0, 3197, 3199, 5, 197, 0, 0, 3198, 3197, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 7, 28, 0, 0, 3201, 3204, 3, 292, 146, 0, 3202, 3203, 5, 100, 0, 0, 3203, 3205, 3, 400, 200, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3224, 1, 0, 0, 0, 3206, 3208, 5, 153, 0, 0, 3207, 3209, 5, 197, 0, 0, 3208, 3207, 1, 0, 0, 0, 3208, 3209, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3224, 5, 198, 0, 0, 3211, 3213, 5, 153, 0, 0, 3212, 3214, 5, 197, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3224, 7, 30, 0, 0, 3216, 3218, 5, 153, 0, 0, 3217, 3219, 5, 197, 0, 0, 3218, 3217, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3221, 5, 92, 0, 0, 3221, 3222, 5, 123, 0, 0, 3222, 3224, 3, 292, 146, 0, 3223, 3142, 1, 0, 0, 0, 3223, 3150, 1, 0, 0, 0, 3223, 3165, 1, 0, 0, 0, 3223, 3173, 1, 0, 0, 0, 3223, 3178, 1, 0, 0, 0, 3223, 3198, 1, 0, 0, 0, 3223, 3206, 1, 0, 0, 0, 3223, 3211, 1, 0, 0, 0, 3223, 3216, 1, 0, 0, 0, 3224, 291, 1, 0, 0, 0, 3225, 3226, 6, 146, -1, 0, 3226, 3230, 3, 296, 148, 0, 3227, 3228, 7, 31, 0, 0, 3228, 3230, 3, 292, 146, 7, 3229, 3225, 1, 0, 0, 0, 3229, 3227, 1, 0, 0, 0, 3230, 3252, 1, 0, 0, 0, 3231, 3232, 10, 6, 0, 0, 3232, 3233, 7, 32, 0, 0, 3233, 3251, 3, 292, 146, 7, 3234, 3235, 10, 5, 0, 0, 3235, 3236, 7, 33, 0, 0, 3236, 3251, 3, 292, 146, 6, 3237, 3238, 10, 4, 0, 0, 3238, 3239, 5, 367, 0, 0, 3239, 3251, 3, 292, 146, 5, 3240, 3241, 10, 3, 0, 0, 3241, 3242, 5, 370, 0, 0, 3242, 3251, 3, 292, 146, 4, 3243, 3244, 10, 2, 0, 0, 3244, 3245, 5, 368, 0, 0, 3245, 3251, 3, 292, 146, 3, 3246, 3247, 10, 1, 0, 0, 3247, 3248, 3, 302, 151, 0, 3248, 3249, 3, 292, 146, 2, 3249, 3251, 1, 0, 0, 0, 3250, 3231, 1, 0, 0, 0, 3250, 3234, 1, 0, 0, 0, 3250, 3237, 1, 0, 0, 0, 3250, 3240, 1, 0, 0, 0, 3250, 3243, 1, 0, 0, 0, 3250, 3246, 1, 0, 0, 0, 3251, 3254, 1, 0, 0, 0, 3252, 3250, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 293, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3255, 3256, 7, 34, 0, 0, 3256, 295, 1, 0, 0, 0, 3257, 3258, 6, 148, -1, 0, 3258, 3507, 7, 35, 0, 0, 3259, 3260, 7, 36, 0, 0, 3260, 3263, 5, 2, 0, 0, 3261, 3264, 3, 294, 147, 0, 3262, 3264, 3, 400, 200, 0, 3263, 3261, 1, 0, 0, 0, 3263, 3262, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3266, 5, 4, 0, 0, 3266, 3267, 3, 292, 146, 0, 3267, 3268, 5, 4, 0, 0, 3268, 3269, 3, 292, 146, 0, 3269, 3270, 5, 3, 0, 0, 3270, 3507, 1, 0, 0, 0, 3271, 3272, 7, 37, 0, 0, 3272, 3275, 5, 2, 0, 0, 3273, 3276, 3, 294, 147, 0, 3274, 3276, 3, 400, 200, 0, 3275, 3273, 1, 0, 0, 0, 3275, 3274, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3278, 5, 4, 0, 0, 3278, 3279, 3, 292, 146, 0, 3279, 3280, 5, 4, 0, 0, 3280, 3281, 3, 292, 146, 0, 3281, 3282, 5, 3, 0, 0, 3282, 3507, 1, 0, 0, 0, 3283, 3285, 5, 35, 0, 0, 3284, 3286, 3, 362, 181, 0, 3285, 3284, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3285, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3291, 1, 0, 0, 0, 3289, 3290, 5, 97, 0, 0, 3290, 3292, 3, 280, 140, 0, 3291, 3289, 1, 0, 0, 0, 3291, 3292, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3294, 5, 99, 0, 0, 3294, 3507, 1, 0, 0, 0, 3295, 3296, 5, 35, 0, 0, 3296, 3298, 3, 280, 140, 0, 3297, 3299, 3, 362, 181, 0, 3298, 3297, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3298, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3304, 1, 0, 0, 0, 3302, 3303, 5, 97, 0, 0, 3303, 3305, 3, 280, 140, 0, 3304, 3302, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3307, 5, 99, 0, 0, 3307, 3507, 1, 0, 0, 0, 3308, 3309, 7, 38, 0, 0, 3309, 3310, 5, 2, 0, 0, 3310, 3311, 3, 280, 140, 0, 3311, 3312, 5, 20, 0, 0, 3312, 3313, 3, 330, 165, 0, 3313, 3314, 5, 3, 0, 0, 3314, 3507, 1, 0, 0, 0, 3315, 3316, 5, 286, 0, 0, 3316, 3325, 5, 2, 0, 0, 3317, 3322, 3, 266, 133, 0, 3318, 3319, 5, 4, 0, 0, 3319, 3321, 3, 266, 133, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3324, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3322, 3323, 1, 0, 0, 0, 3323, 3326, 1, 0, 0, 0, 3324, 3322, 1, 0, 0, 0, 3325, 3317, 1, 0, 0, 0, 3325, 3326, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3507, 5, 3, 0, 0, 3328, 3329, 5, 116, 0, 0, 3329, 3330, 5, 2, 0, 0, 3330, 3333, 3, 280, 140, 0, 3331, 3332, 5, 138, 0, 0, 3332, 3334, 5, 199, 0, 0, 3333, 3331, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3336, 5, 3, 0, 0, 3336, 3507, 1, 0, 0, 0, 3337, 3338, 5, 17, 0, 0, 3338, 3339, 5, 2, 0, 0, 3339, 3342, 3, 280, 140, 0, 3340, 3341, 5, 138, 0, 0, 3341, 3343, 5, 199, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3345, 5, 3, 0, 0, 3345, 3507, 1, 0, 0, 0, 3346, 3347, 5, 157, 0, 0, 3347, 3348, 5, 2, 0, 0, 3348, 3351, 3, 280, 140, 0, 3349, 3350, 5, 138, 0, 0, 3350, 3352, 5, 199, 0, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 5, 3, 0, 0, 3354, 3507, 1, 0, 0, 0, 3355, 3356, 5, 225, 0, 0, 3356, 3357, 5, 2, 0, 0, 3357, 3358, 3, 292, 146, 0, 3358, 3359, 5, 140, 0, 0, 3359, 3360, 3, 292, 146, 0, 3360, 3361, 5, 3, 0, 0, 3361, 3507, 1, 0, 0, 0, 3362, 3507, 3, 300, 150, 0, 3363, 3507, 5, 363, 0, 0, 3364, 3365, 3, 382, 191, 0, 3365, 3366, 5, 5, 0, 0, 3366, 3367, 5, 363, 0, 0, 3367, 3507, 1, 0, 0, 0, 3368, 3369, 5, 2, 0, 0, 3369, 3372, 3, 266, 133, 0, 3370, 3371, 5, 4, 0, 0, 3371, 3373, 3, 266, 133, 0, 3372, 3370, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3376, 1, 0, 0, 0, 3376, 3377, 5, 3, 0, 0, 3377, 3507, 1, 0, 0, 0, 3378, 3379, 5, 2, 0, 0, 3379, 3380, 3, 26, 13, 0, 3380, 3381, 5, 3, 0, 0, 3381, 3507, 1, 0, 0, 0, 3382, 3383, 5, 136, 0, 0, 3383, 3384, 5, 2, 0, 0, 3384, 3385, 3, 280, 140, 0, 3385, 3386, 5, 3, 0, 0, 3386, 3507, 1, 0, 0, 0, 3387, 3388, 3, 378, 189, 0, 3388, 3400, 5, 2, 0, 0, 3389, 3391, 3, 196, 98, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3397, 3, 284, 142, 0, 3393, 3394, 5, 4, 0, 0, 3394, 3396, 3, 284, 142, 0, 3395, 3393, 1, 0, 0, 0, 3396, 3399, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3401, 1, 0, 0, 0, 3399, 3397, 1, 0, 0, 0, 3400, 3390, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3409, 5, 3, 0, 0, 3403, 3404, 5, 114, 0, 0, 3404, 3405, 5, 2, 0, 0, 3405, 3406, 5, 344, 0, 0, 3406, 3407, 3, 288, 144, 0, 3407, 3408, 5, 3, 0, 0, 3408, 3410, 1, 0, 0, 0, 3409, 3403, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3413, 1, 0, 0, 0, 3411, 3412, 7, 39, 0, 0, 3412, 3414, 5, 199, 0, 0, 3413, 3411, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3417, 1, 0, 0, 0, 3415, 3416, 5, 213, 0, 0, 3416, 3418, 3, 370, 185, 0, 3417, 3415, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3507, 1, 0, 0, 0, 3419, 3420, 3, 388, 194, 0, 3420, 3421, 5, 372, 0, 0, 3421, 3422, 3, 280, 140, 0, 3422, 3507, 1, 0, 0, 0, 3423, 3424, 5, 2, 0, 0, 3424, 3427, 3, 388, 194, 0, 3425, 3426, 5, 4, 0, 0, 3426, 3428, 3, 388, 194, 0, 3427, 3425, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 5, 3, 0, 0, 3432, 3433, 5, 372, 0, 0, 3433, 3434, 3, 280, 140, 0, 3434, 3507, 1, 0, 0, 0, 3435, 3507, 3, 388, 194, 0, 3436, 3437, 5, 2, 0, 0, 3437, 3438, 3, 280, 140, 0, 3438, 3439, 5, 3, 0, 0, 3439, 3507, 1, 0, 0, 0, 3440, 3441, 5, 110, 0, 0, 3441, 3442, 5, 2, 0, 0, 3442, 3443, 3, 388, 194, 0, 3443, 3444, 5, 123, 0, 0, 3444, 3445, 3, 292, 146, 0, 3445, 3446, 5, 3, 0, 0, 3446, 3507, 1, 0, 0, 0, 3447, 3448, 7, 40, 0, 0, 3448, 3449, 5, 2, 0, 0, 3449, 3450, 3, 292, 146, 0, 3450, 3451, 7, 41, 0, 0, 3451, 3454, 3, 292, 146, 0, 3452, 3453, 7, 42, 0, 0, 3453, 3455, 3, 292, 146, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3457, 5, 3, 0, 0, 3457, 3507, 1, 0, 0, 0, 3458, 3459, 5, 315, 0, 0, 3459, 3461, 5, 2, 0, 0, 3460, 3462, 7, 43, 0, 0, 3461, 3460, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3465, 3, 292, 146, 0, 3464, 3463, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, 3467, 5, 123, 0, 0, 3467, 3468, 3, 292, 146, 0, 3468, 3469, 5, 3, 0, 0, 3469, 3507, 1, 0, 0, 0, 3470, 3471, 5, 215, 0, 0, 3471, 3472, 5, 2, 0, 0, 3472, 3473, 3, 292, 146, 0, 3473, 3474, 5, 224, 0, 0, 3474, 3475, 3, 292, 146, 0, 3475, 3476, 5, 123, 0, 0, 3476, 3479, 3, 292, 146, 0, 3477, 3478, 5, 119, 0, 0, 3478, 3480, 3, 292, 146, 0, 3479, 3477, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 5, 3, 0, 0, 3482, 3507, 1, 0, 0, 0, 3483, 3484, 7, 44, 0, 0, 3484, 3485, 5, 2, 0, 0, 3485, 3486, 3, 292, 146, 0, 3486, 3487, 5, 3, 0, 0, 3487, 3488, 5, 347, 0, 0, 3488, 3489, 5, 130, 0, 0, 3489, 3490, 5, 2, 0, 0, 3490, 3491, 5, 209, 0, 0, 3491, 3492, 5, 31, 0, 0, 3492, 3493, 3, 108, 54, 0, 3493, 3500, 5, 3, 0, 0, 3494, 3495, 5, 114, 0, 0, 3495, 3496, 5, 2, 0, 0, 3496, 3497, 5, 344, 0, 0, 3497, 3498, 3, 288, 144, 0, 3498, 3499, 5, 3, 0, 0, 3499, 3501, 1, 0, 0, 0, 3500, 3494, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3504, 1, 0, 0, 0, 3502, 3503, 5, 213, 0, 0, 3503, 3505, 3, 370, 185, 0, 3504, 3502, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3507, 1, 0, 0, 0, 3506, 3257, 1, 0, 0, 0, 3506, 3259, 1, 0, 0, 0, 3506, 3271, 1, 0, 0, 0, 3506, 3283, 1, 0, 0, 0, 3506, 3295, 1, 0, 0, 0, 3506, 3308, 1, 0, 0, 0, 3506, 3315, 1, 0, 0, 0, 3506, 3328, 1, 0, 0, 0, 3506, 3337, 1, 0, 0, 0, 3506, 3346, 1, 0, 0, 0, 3506, 3355, 1, 0, 0, 0, 3506, 3362, 1, 0, 0, 0, 3506, 3363, 1, 0, 0, 0, 3506, 3364, 1, 0, 0, 0, 3506, 3368, 1, 0, 0, 0, 3506, 3378, 1, 0, 0, 0, 3506, 3382, 1, 0, 0, 0, 3506, 3387, 1, 0, 0, 0, 3506, 3419, 1, 0, 0, 0, 3506, 3423, 1, 0, 0, 0, 3506, 3435, 1, 0, 0, 0, 3506, 3436, 1, 0, 0, 0, 3506, 3440, 1, 0, 0, 0, 3506, 3447, 1, 0, 0, 0, 3506, 3458, 1, 0, 0, 0, 3506, 3470, 1, 0, 0, 0, 3506, 3483, 1, 0, 0, 0, 3507, 3518, 1, 0, 0, 0, 3508, 3509, 10, 9, 0, 0, 3509, 3510, 5, 6, 0, 0, 3510, 3511, 3, 292, 146, 0, 3511, 3512, 5, 7, 0, 0, 3512, 3517, 1, 0, 0, 0, 3513, 3514, 10, 7, 0, 0, 3514, 3515, 5, 5, 0, 0, 3515, 3517, 3, 388, 194, 0, 3516, 3508, 1, 0, 0, 0, 3516, 3513, 1, 0, 0, 0, 3517, 3520, 1, 0, 0, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 297, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3521, 3529, 5, 71, 0, 0, 3522, 3529, 5, 303, 0, 0, 3523, 3529, 5, 304, 0, 0, 3524, 3529, 5, 305, 0, 0, 3525, 3529, 5, 149, 0, 0, 3526, 3529, 5, 133, 0, 0, 3527, 3529, 3, 388, 194, 0, 3528, 3521, 1, 0, 0, 0, 3528, 3522, 1, 0, 0, 0, 3528, 3523, 1, 0, 0, 0, 3528, 3524, 1, 0, 0, 0, 3528, 3525, 1, 0, 0, 0, 3528, 3526, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 299, 1, 0, 0, 0, 3530, 3546, 5, 198, 0, 0, 3531, 3546, 5, 376, 0, 0, 3532, 3533, 5, 371, 0, 0, 3533, 3546, 3, 388, 194, 0, 3534, 3546, 3, 310, 155, 0, 3535, 3536, 3, 298, 149, 0, 3536, 3537, 3, 400, 200, 0, 3537, 3546, 1, 0, 0, 0, 3538, 3546, 3, 396, 198, 0, 3539, 3546, 3, 308, 154, 0, 3540, 3542, 3, 400, 200, 0, 3541, 3540, 1, 0, 0, 0, 3542, 3543, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3546, 1, 0, 0, 0, 3545, 3530, 1, 0, 0, 0, 3545, 3531, 1, 0, 0, 0, 3545, 3532, 1, 0, 0, 0, 3545, 3534, 1, 0, 0, 0, 3545, 3535, 1, 0, 0, 0, 3545, 3538, 1, 0, 0, 0, 3545, 3539, 1, 0, 0, 0, 3545, 3541, 1, 0, 0, 0, 3546, 301, 1, 0, 0, 0, 3547, 3548, 7, 45, 0, 0, 3548, 303, 1, 0, 0, 0, 3549, 3550, 7, 46, 0, 0, 3550, 305, 1, 0, 0, 0, 3551, 3552, 7, 47, 0, 0, 3552, 307, 1, 0, 0, 0, 3553, 3554, 7, 48, 0, 0, 3554, 309, 1, 0, 0, 0, 3555, 3558, 5, 149, 0, 0, 3556, 3559, 3, 312, 156, 0, 3557, 3559, 3, 316, 158, 0, 3558, 3556, 1, 0, 0, 0, 3558, 3557, 1, 0, 0, 0, 3559, 311, 1, 0, 0, 0, 3560, 3562, 3, 314, 157, 0, 3561, 3563, 3, 318, 159, 0, 3562, 3561, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 313, 1, 0, 0, 0, 3564, 3565, 3, 320, 160, 0, 3565, 3566, 3, 322, 161, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3564, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3567, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 315, 1, 0, 0, 0, 3571, 3574, 3, 318, 159, 0, 3572, 3575, 3, 314, 157, 0, 3573, 3575, 3, 318, 159, 0, 3574, 3572, 1, 0, 0, 0, 3574, 3573, 1, 0, 0, 0, 3574, 3575, 1, 0, 0, 0, 3575, 317, 1, 0, 0, 0, 3576, 3577, 3, 320, 160, 0, 3577, 3578, 3, 324, 162, 0, 3578, 3579, 5, 309, 0, 0, 3579, 3580, 3, 324, 162, 0, 3580, 319, 1, 0, 0, 0, 3581, 3583, 7, 49, 0, 0, 3582, 3581, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3587, 1, 0, 0, 0, 3584, 3588, 5, 382, 0, 0, 3585, 3588, 5, 384, 0, 0, 3586, 3588, 3, 400, 200, 0, 3587, 3584, 1, 0, 0, 0, 3587, 3585, 1, 0, 0, 0, 3587, 3586, 1, 0, 0, 0, 3588, 321, 1, 0, 0, 0, 3589, 3590, 7, 50, 0, 0, 3590, 323, 1, 0, 0, 0, 3591, 3592, 7, 51, 0, 0, 3592, 325, 1, 0, 0, 0, 3593, 3597, 5, 116, 0, 0, 3594, 3595, 5, 9, 0, 0, 3595, 3597, 3, 384, 192, 0, 3596, 3593, 1, 0, 0, 0, 3596, 3594, 1, 0, 0, 0, 3597, 327, 1, 0, 0, 0, 3598, 3629, 5, 27, 0, 0, 3599, 3629, 5, 308, 0, 0, 3600, 3629, 5, 32, 0, 0, 3601, 3629, 5, 276, 0, 0, 3602, 3629, 5, 272, 0, 0, 3603, 3629, 5, 150, 0, 0, 3604, 3629, 5, 151, 0, 0, 3605, 3629, 5, 25, 0, 0, 3606, 3629, 5, 174, 0, 0, 3607, 3629, 5, 117, 0, 0, 3608, 3629, 5, 234, 0, 0, 3609, 3629, 5, 95, 0, 0, 3610, 3629, 5, 71, 0, 0, 3611, 3629, 5, 303, 0, 0, 3612, 3629, 5, 305, 0, 0, 3613, 3629, 5, 304, 0, 0, 3614, 3629, 5, 285, 0, 0, 3615, 3629, 5, 41, 0, 0, 3616, 3629, 5, 40, 0, 0, 3617, 3629, 5, 334, 0, 0, 3618, 3629, 5, 26, 0, 0, 3619, 3629, 5, 80, 0, 0, 3620, 3629, 5, 79, 0, 0, 3621, 3629, 5, 200, 0, 0, 3622, 3629, 5, 340, 0, 0, 3623, 3629, 5, 149, 0, 0, 3624, 3629, 5, 19, 0, 0, 3625, 3629, 5, 286, 0, 0, 3626, 3629, 5, 177, 0, 0, 3627, 3629, 3, 388, 194, 0, 3628, 3598, 1, 0, 0, 0, 3628, 3599, 1, 0, 0, 0, 3628, 3600, 1, 0, 0, 0, 3628, 3601, 1, 0, 0, 0, 3628, 3602, 1, 0, 0, 0, 3628, 3603, 1, 0, 0, 0, 3628, 3604, 1, 0, 0, 0, 3628, 3605, 1, 0, 0, 0, 3628, 3606, 1, 0, 0, 0, 3628, 3607, 1, 0, 0, 0, 3628, 3608, 1, 0, 0, 0, 3628, 3609, 1, 0, 0, 0, 3628, 3610, 1, 0, 0, 0, 3628, 3611, 1, 0, 0, 0, 3628, 3612, 1, 0, 0, 0, 3628, 3613, 1, 0, 0, 0, 3628, 3614, 1, 0, 0, 0, 3628, 3615, 1, 0, 0, 0, 3628, 3616, 1, 0, 0, 0, 3628, 3617, 1, 0, 0, 0, 3628, 3618, 1, 0, 0, 0, 3628, 3619, 1, 0, 0, 0, 3628, 3620, 1, 0, 0, 0, 3628, 3621, 1, 0, 0, 0, 3628, 3622, 1, 0, 0, 0, 3628, 3623, 1, 0, 0, 0, 3628, 3624, 1, 0, 0, 0, 3628, 3625, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3627, 1, 0, 0, 0, 3629, 329, 1, 0, 0, 0, 3630, 3631, 5, 19, 0, 0, 3631, 3632, 5, 356, 0, 0, 3632, 3633, 3, 330, 165, 0, 3633, 3634, 5, 358, 0, 0, 3634, 3677, 1, 0, 0, 0, 3635, 3636, 5, 177, 0, 0, 3636, 3637, 5, 356, 0, 0, 3637, 3638, 3, 330, 165, 0, 3638, 3639, 5, 4, 0, 0, 3639, 3640, 3, 330, 165, 0, 3640, 3641, 5, 358, 0, 0, 3641, 3677, 1, 0, 0, 0, 3642, 3649, 5, 286, 0, 0, 3643, 3645, 5, 356, 0, 0, 3644, 3646, 3, 358, 179, 0, 3645, 3644, 1, 0, 0, 0, 3645, 3646, 1, 0, 0, 0, 3646, 3647, 1, 0, 0, 0, 3647, 3650, 5, 358, 0, 0, 3648, 3650, 5, 354, 0, 0, 3649, 3643, 1, 0, 0, 0, 3649, 3648, 1, 0, 0, 0, 3650, 3677, 1, 0, 0, 0, 3651, 3652, 5, 149, 0, 0, 3652, 3655, 7, 52, 0, 0, 3653, 3654, 5, 309, 0, 0, 3654, 3656, 5, 186, 0, 0, 3655, 3653, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3677, 1, 0, 0, 0, 3657, 3658, 5, 149, 0, 0, 3658, 3661, 7, 53, 0, 0, 3659, 3660, 5, 309, 0, 0, 3660, 3662, 7, 54, 0, 0, 3661, 3659, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3677, 1, 0, 0, 0, 3663, 3674, 3, 328, 164, 0, 3664, 3665, 5, 2, 0, 0, 3665, 3670, 5, 382, 0, 0, 3666, 3667, 5, 4, 0, 0, 3667, 3669, 5, 382, 0, 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, 3673, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3675, 5, 3, 0, 0, 3674, 3664, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3677, 1, 0, 0, 0, 3676, 3630, 1, 0, 0, 0, 3676, 3635, 1, 0, 0, 0, 3676, 3642, 1, 0, 0, 0, 3676, 3651, 1, 0, 0, 0, 3676, 3657, 1, 0, 0, 0, 3676, 3663, 1, 0, 0, 0, 3677, 331, 1, 0, 0, 0, 3678, 3683, 3, 334, 167, 0, 3679, 3680, 5, 4, 0, 0, 3680, 3682, 3, 334, 167, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3685, 1, 0, 0, 0, 3683, 3681, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 333, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3687, 3, 96, 48, 0, 3687, 3691, 3, 330, 165, 0, 3688, 3690, 3, 340, 170, 0, 3689, 3688, 1, 0, 0, 0, 3690, 3693, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 335, 1, 0, 0, 0, 3693, 3691, 1, 0, 0, 0, 3694, 3699, 3, 338, 169, 0, 3695, 3696, 5, 4, 0, 0, 3696, 3698, 3, 338, 169, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3701, 1, 0, 0, 0, 3699, 3697, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 337, 1, 0, 0, 0, 3701, 3699, 1, 0, 0, 0, 3702, 3703, 3, 92, 46, 0, 3703, 3707, 3, 330, 165, 0, 3704, 3706, 3, 340, 170, 0, 3705, 3704, 1, 0, 0, 0, 3706, 3709, 1, 0, 0, 0, 3707, 3705, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 339, 1, 0, 0, 0, 3709, 3707, 1, 0, 0, 0, 3710, 3711, 5, 197, 0, 0, 3711, 3716, 5, 198, 0, 0, 3712, 3716, 3, 342, 171, 0, 3713, 3716, 3, 24, 12, 0, 3714, 3716, 3, 326, 163, 0, 3715, 3710, 1, 0, 0, 0, 3715, 3712, 1, 0, 0, 0, 3715, 3713, 1, 0, 0, 0, 3715, 3714, 1, 0, 0, 0, 3716, 341, 1, 0, 0, 0, 3717, 3718, 5, 82, 0, 0, 3718, 3719, 3, 280, 140, 0, 3719, 343, 1, 0, 0, 0, 3720, 3721, 7, 55, 0, 0, 3721, 3722, 3, 280, 140, 0, 3722, 345, 1, 0, 0, 0, 3723, 3728, 3, 348, 174, 0, 3724, 3725, 5, 4, 0, 0, 3725, 3727, 3, 348, 174, 0, 3726, 3724, 1, 0, 0, 0, 3727, 3730, 1, 0, 0, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 347, 1, 0, 0, 0, 3730, 3728, 1, 0, 0, 0, 3731, 3732, 3, 384, 192, 0, 3732, 3735, 3, 330, 165, 0, 3733, 3734, 5, 197, 0, 0, 3734, 3736, 5, 198, 0, 0, 3735, 3733, 1, 0, 0, 0, 3735, 3736, 1, 0, 0, 0, 3736, 3738, 1, 0, 0, 0, 3737, 3739, 3, 24, 12, 0, 3738, 3737, 1, 0, 0, 0, 3738, 3739, 1, 0, 0, 0, 3739, 349, 1, 0, 0, 0, 3740, 3745, 3, 352, 176, 0, 3741, 3742, 5, 4, 0, 0, 3742, 3744, 3, 352, 176, 0, 3743, 3741, 1, 0, 0, 0, 3744, 3747, 1, 0, 0, 0, 3745, 3743, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 351, 1, 0, 0, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3749, 3, 96, 48, 0, 3749, 3753, 3, 330, 165, 0, 3750, 3752, 3, 354, 177, 0, 3751, 3750, 1, 0, 0, 0, 3752, 3755, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 353, 1, 0, 0, 0, 3755, 3753, 1, 0, 0, 0, 3756, 3757, 5, 197, 0, 0, 3757, 3762, 5, 198, 0, 0, 3758, 3762, 3, 342, 171, 0, 3759, 3762, 3, 356, 178, 0, 3760, 3762, 3, 24, 12, 0, 3761, 3756, 1, 0, 0, 0, 3761, 3758, 1, 0, 0, 0, 3761, 3759, 1, 0, 0, 0, 3761, 3760, 1, 0, 0, 0, 3762, 355, 1, 0, 0, 0, 3763, 3764, 5, 127, 0, 0, 3764, 3765, 5, 12, 0, 0, 3765, 3766, 5, 20, 0, 0, 3766, 3767, 5, 2, 0, 0, 3767, 3768, 3, 280, 140, 0, 3768, 3769, 5, 3, 0, 0, 3769, 357, 1, 0, 0, 0, 3770, 3775, 3, 360, 180, 0, 3771, 3772, 5, 4, 0, 0, 3772, 3774, 3, 360, 180, 0, 3773, 3771, 1, 0, 0, 0, 3774, 3777, 1, 0, 0, 0, 3775, 3773, 1, 0, 0, 0, 3775, 3776, 1, 0, 0, 0, 3776, 359, 1, 0, 0, 0, 3777, 3775, 1, 0, 0, 0, 3778, 3780, 3, 388, 194, 0, 3779, 3781, 5, 371, 0, 0, 3780, 3779, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3785, 3, 330, 165, 0, 3783, 3784, 5, 197, 0, 0, 3784, 3786, 5, 198, 0, 0, 3785, 3783, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3788, 1, 0, 0, 0, 3787, 3789, 3, 24, 12, 0, 3788, 3787, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 361, 1, 0, 0, 0, 3790, 3791, 5, 343, 0, 0, 3791, 3792, 3, 280, 140, 0, 3792, 3793, 5, 300, 0, 0, 3793, 3794, 3, 280, 140, 0, 3794, 363, 1, 0, 0, 0, 3795, 3796, 5, 345, 0, 0, 3796, 3801, 3, 368, 184, 0, 3797, 3798, 5, 4, 0, 0, 3798, 3800, 3, 368, 184, 0, 3799, 3797, 1, 0, 0, 0, 3800, 3803, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 365, 1, 0, 0, 0, 3803, 3801, 1, 0, 0, 0, 3804, 3805, 5, 351, 0, 0, 3805, 3806, 5, 31, 0, 0, 3806, 3807, 3, 94, 47, 0, 3807, 367, 1, 0, 0, 0, 3808, 3809, 3, 384, 192, 0, 3809, 3810, 5, 20, 0, 0, 3810, 3811, 3, 370, 185, 0, 3811, 369, 1, 0, 0, 0, 3812, 3859, 3, 384, 192, 0, 3813, 3814, 5, 2, 0, 0, 3814, 3815, 3, 384, 192, 0, 3815, 3816, 5, 3, 0, 0, 3816, 3859, 1, 0, 0, 0, 3817, 3852, 5, 2, 0, 0, 3818, 3819, 5, 44, 0, 0, 3819, 3820, 5, 31, 0, 0, 3820, 3825, 3, 280, 140, 0, 3821, 3822, 5, 4, 0, 0, 3822, 3824, 3, 280, 140, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3827, 1, 0, 0, 0, 3825, 3823, 1, 0, 0, 0, 3825, 3826, 1, 0, 0, 0, 3826, 3853, 1, 0, 0, 0, 3827, 3825, 1, 0, 0, 0, 3828, 3829, 7, 24, 0, 0, 3829, 3830, 5, 31, 0, 0, 3830, 3835, 3, 280, 140, 0, 3831, 3832, 5, 4, 0, 0, 3832, 3834, 3, 280, 140, 0, 3833, 3831, 1, 0, 0, 0, 3834, 3837, 1, 0, 0, 0, 3835, 3833, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3838, 3828, 1, 0, 0, 0, 3838, 3839, 1, 0, 0, 0, 3839, 3850, 1, 0, 0, 0, 3840, 3841, 7, 25, 0, 0, 3841, 3842, 5, 31, 0, 0, 3842, 3847, 3, 108, 54, 0, 3843, 3844, 5, 4, 0, 0, 3844, 3846, 3, 108, 54, 0, 3845, 3843, 1, 0, 0, 0, 3846, 3849, 1, 0, 0, 0, 3847, 3845, 1, 0, 0, 0, 3847, 3848, 1, 0, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3850, 3840, 1, 0, 0, 0, 3850, 3851, 1, 0, 0, 0, 3851, 3853, 1, 0, 0, 0, 3852, 3818, 1, 0, 0, 0, 3852, 3838, 1, 0, 0, 0, 3853, 3855, 1, 0, 0, 0, 3854, 3856, 3, 372, 186, 0, 3855, 3854, 1, 0, 0, 0, 3855, 3856, 1, 0, 0, 0, 3856, 3857, 1, 0, 0, 0, 3857, 3859, 5, 3, 0, 0, 3858, 3812, 1, 0, 0, 0, 3858, 3813, 1, 0, 0, 0, 3858, 3817, 1, 0, 0, 0, 3859, 371, 1, 0, 0, 0, 3860, 3861, 5, 233, 0, 0, 3861, 3877, 3, 374, 187, 0, 3862, 3863, 5, 258, 0, 0, 3863, 3877, 3, 374, 187, 0, 3864, 3865, 5, 233, 0, 0, 3865, 3866, 5, 24, 0, 0, 3866, 3867, 3, 374, 187, 0, 3867, 3868, 5, 14, 0, 0, 3868, 3869, 3, 374, 187, 0, 3869, 3877, 1, 0, 0, 0, 3870, 3871, 5, 258, 0, 0, 3871, 3872, 5, 24, 0, 0, 3872, 3873, 3, 374, 187, 0, 3873, 3874, 5, 14, 0, 0, 3874, 3875, 3, 374, 187, 0, 3875, 3877, 1, 0, 0, 0, 3876, 3860, 1, 0, 0, 0, 3876, 3862, 1, 0, 0, 0, 3876, 3864, 1, 0, 0, 0, 3876, 3870, 1, 0, 0, 0, 3877, 373, 1, 0, 0, 0, 3878, 3879, 5, 321, 0, 0, 3879, 3886, 7, 56, 0, 0, 3880, 3881, 5, 62, 0, 0, 3881, 3886, 5, 257, 0, 0, 3882, 3883, 3, 280, 140, 0, 3883, 3884, 7, 56, 0, 0, 3884, 3886, 1, 0, 0, 0, 3885, 3878, 1, 0, 0, 0, 3885, 3880, 1, 0, 0, 0, 3885, 3882, 1, 0, 0, 0, 3886, 375, 1, 0, 0, 0, 3887, 3892, 3, 382, 191, 0, 3888, 3889, 5, 4, 0, 0, 3889, 3891, 3, 382, 191, 0, 3890, 3888, 1, 0, 0, 0, 3891, 3894, 1, 0, 0, 0, 3892, 3890, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 377, 1, 0, 0, 0, 3894, 3892, 1, 0, 0, 0, 3895, 3896, 5, 136, 0, 0, 3896, 3897, 5, 2, 0, 0, 3897, 3898, 3, 280, 140, 0, 3898, 3899, 5, 3, 0, 0, 3899, 3905, 1, 0, 0, 0, 3900, 3905, 3, 382, 191, 0, 3901, 3905, 5, 114, 0, 0, 3902, 3905, 5, 161, 0, 0, 3903, 3905, 5, 250, 0, 0, 3904, 3895, 1, 0, 0, 0, 3904, 3900, 1, 0, 0, 0, 3904, 3901, 1, 0, 0, 0, 3904, 3902, 1, 0, 0, 0, 3904, 3903, 1, 0, 0, 0, 3905, 379, 1, 0, 0, 0, 3906, 3907, 3, 382, 191, 0, 3907, 381, 1, 0, 0, 0, 3908, 3913, 3, 388, 194, 0, 3909, 3910, 5, 5, 0, 0, 3910, 3912, 3, 388, 194, 0, 3911, 3909, 1, 0, 0, 0, 3912, 3915, 1, 0, 0, 0, 3913, 3911, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 383, 1, 0, 0, 0, 3915, 3913, 1, 0, 0, 0, 3916, 3917, 3, 388, 194, 0, 3917, 3918, 3, 386, 193, 0, 3918, 385, 1, 0, 0, 0, 3919, 3920, 5, 362, 0, 0, 3920, 3922, 3, 388, 194, 0, 3921, 3919, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3921, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3927, 1, 0, 0, 0, 3925, 3927, 1, 0, 0, 0, 3926, 3921, 1, 0, 0, 0, 3926, 3925, 1, 0, 0, 0, 3927, 387, 1, 0, 0, 0, 3928, 3931, 3, 390, 195, 0, 3929, 3931, 3, 408, 204, 0, 3930, 3928, 1, 0, 0, 0, 3930, 3929, 1, 0, 0, 0, 3931, 389, 1, 0, 0, 0, 3932, 3937, 5, 388, 0, 0, 3933, 3937, 3, 392, 196, 0, 3934, 3937, 3, 406, 203, 0, 3935, 3937, 3, 410, 205, 0, 3936, 3932, 1, 0, 0, 0, 3936, 3933, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3936, 3935, 1, 0, 0, 0, 3937, 391, 1, 0, 0, 0, 3938, 3939, 7, 57, 0, 0, 3939, 393, 1, 0, 0, 0, 3940, 3941, 5, 389, 0, 0, 3941, 395, 1, 0, 0, 0, 3942, 3944, 5, 362, 0, 0, 3943, 3942, 1, 0, 0, 0, 3943, 3944, 1, 0, 0, 0, 3944, 3945, 1, 0, 0, 0, 3945, 3983, 5, 383, 0, 0, 3946, 3948, 5, 362, 0, 0, 3947, 3946, 1, 0, 0, 0, 3947, 3948, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3983, 5, 384, 0, 0, 3950, 3952, 5, 362, 0, 0, 3951, 3950, 1, 0, 0, 0, 3951, 3952, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3983, 7, 58, 0, 0, 3954, 3956, 5, 362, 0, 0, 3955, 3954, 1, 0, 0, 0, 3955, 3956, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3983, 5, 382, 0, 0, 3958, 3960, 5, 362, 0, 0, 3959, 3958, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 3983, 5, 379, 0, 0, 3962, 3964, 5, 362, 0, 0, 3963, 3962, 1, 0, 0, 0, 3963, 3964, 1, 0, 0, 0, 3964, 3965, 1, 0, 0, 0, 3965, 3983, 5, 380, 0, 0, 3966, 3968, 5, 362, 0, 0, 3967, 3966, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3983, 5, 381, 0, 0, 3970, 3972, 5, 362, 0, 0, 3971, 3970, 1, 0, 0, 0, 3971, 3972, 1, 0, 0, 0, 3972, 3973, 1, 0, 0, 0, 3973, 3983, 5, 386, 0, 0, 3974, 3976, 5, 362, 0, 0, 3975, 3974, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3977, 1, 0, 0, 0, 3977, 3983, 5, 385, 0, 0, 3978, 3980, 5, 362, 0, 0, 3979, 3978, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3981, 1, 0, 0, 0, 3981, 3983, 5, 387, 0, 0, 3982, 3943, 1, 0, 0, 0, 3982, 3947, 1, 0, 0, 0, 3982, 3951, 1, 0, 0, 0, 3982, 3955, 1, 0, 0, 0, 3982, 3959, 1, 0, 0, 0, 3982, 3963, 1, 0, 0, 0, 3982, 3967, 1, 0, 0, 0, 3982, 3971, 1, 0, 0, 0, 3982, 3975, 1, 0, 0, 0, 3982, 3979, 1, 0, 0, 0, 3983, 397, 1, 0, 0, 0, 3984, 3985, 5, 319, 0, 0, 3985, 3996, 3, 330, 165, 0, 3986, 3996, 3, 24, 12, 0, 3987, 3996, 3, 326, 163, 0, 3988, 3989, 7, 59, 0, 0, 3989, 3990, 5, 197, 0, 0, 3990, 3996, 5, 198, 0, 0, 3991, 3992, 5, 269, 0, 0, 3992, 3996, 3, 342, 171, 0, 3993, 3994, 5, 96, 0, 0, 3994, 3996, 5, 82, 0, 0, 3995, 3984, 1, 0, 0, 0, 3995, 3986, 1, 0, 0, 0, 3995, 3987, 1, 0, 0, 0, 3995, 3988, 1, 0, 0, 0, 3995, 3991, 1, 0, 0, 0, 3995, 3993, 1, 0, 0, 0, 3996, 399, 1, 0, 0, 0, 3997, 3998, 7, 60, 0, 0, 3998, 401, 1, 0, 0, 0, 3999, 4002, 3, 400, 200, 0, 4000, 4002, 5, 198, 0, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4000, 1, 0, 0, 0, 4002, 403, 1, 0, 0, 0, 4003, 4006, 5, 382, 0, 0, 4004, 4006, 3, 400, 200, 0, 4005, 4003, 1, 0, 0, 0, 4005, 4004, 1, 0, 0, 0, 4006, 405, 1, 0, 0, 0, 4007, 4008, 7, 61, 0, 0, 4008, 407, 1, 0, 0, 0, 4009, 4010, 7, 62, 0, 0, 4010, 409, 1, 0, 0, 0, 4011, 4012, 7, 63, 0, 0, 4012, 411, 1, 0, 0, 0, 519, 415, 422, 426, 431, 438, 443, 451, 453, 472, 476, 482, 485, 488, 495, 498, 502, 505, 510, 522, 524, 532, 535, 539, 542, 548, 559, 565, 570, 603, 613, 624, 635, 646, 651, 660, 664, 670, 674, 679, 685, 697, 705, 711, 722, 726, 731, 746, 750, 757, 761, 767, 796, 800, 805, 812, 818, 821, 824, 828, 832, 840, 842, 851, 854, 863, 868, 874, 881, 884, 888, 899, 902, 908, 912, 927, 929, 937, 941, 947, 950, 954, 957, 963, 968, 972, 979, 982, 985, 992, 997, 1006, 1014, 1020, 1023, 1026, 1032, 1036, 1041, 1044, 1048, 1050, 1058, 1066, 1069, 1076, 1079, 1082, 1091, 1096, 1102, 1107, 1110, 1114, 1117, 1121, 1149, 1152, 1160, 1166, 1169, 1172, 1177, 1185, 1190, 1196, 1202, 1205, 1212, 1219, 1227, 1244, 1271, 1274, 1280, 1289, 1298, 1304, 1309, 1314, 1321, 1326, 1331, 1338, 1346, 1349, 1353, 1365, 1369, 1376, 1492, 1500, 1508, 1517, 1527, 1531, 1534, 1538, 1544, 1556, 1568, 1573, 1582, 1590, 1595, 1597, 1605, 1610, 1614, 1617, 1625, 1630, 1639, 1644, 1647, 1652, 1656, 1661, 1663, 1667, 1676, 1684, 1690, 1701, 1708, 1717, 1722, 1725, 1748, 1750, 1762, 1769, 1772, 1779, 1783, 1789, 1797, 1804, 1807, 1815, 1826, 1837, 1845, 1851, 1863, 1870, 1877, 1889, 1897, 1903, 1909, 1912, 1928, 1935, 1946, 1955, 1958, 1967, 1970, 1979, 1982, 1991, 1994, 1997, 2002, 2004, 2008, 2019, 2025, 2031, 2034, 2036, 2049, 2058, 2062, 2065, 2069, 2075, 2079, 2087, 2091, 2094, 2097, 2100, 2104, 2108, 2113, 2117, 2120, 2123, 2126, 2130, 2135, 2139, 2142, 2145, 2148, 2150, 2156, 2163, 2168, 2171, 2174, 2178, 2188, 2192, 2194, 2197, 2201, 2207, 2211, 2222, 2232, 2236, 2248, 2260, 2275, 2280, 2286, 2293, 2309, 2314, 2327, 2332, 2340, 2346, 2350, 2353, 2358, 2365, 2371, 2380, 2390, 2405, 2410, 2412, 2417, 2426, 2439, 2444, 2448, 2455, 2460, 2464, 2467, 2470, 2484, 2497, 2502, 2506, 2509, 2513, 2519, 2522, 2529, 2541, 2552, 2565, 2576, 2581, 2589, 2594, 2608, 2617, 2620, 2625, 2632, 2635, 2641, 2647, 2650, 2655, 2660, 2664, 2670, 2674, 2677, 2682, 2685, 2690, 2694, 2697, 2700, 2706, 2711, 2718, 2721, 2739, 2741, 2744, 2755, 2764, 2771, 2779, 2786, 2791, 2794, 2797, 2803, 2811, 2819, 2831, 2837, 2844, 2851, 2853, 2866, 2872, 2874, 2884, 2890, 2892, 2900, 2904, 2916, 2919, 2924, 2928, 2930, 2939, 2951, 2953, 2960, 2967, 2973, 2979, 2981, 2988, 2996, 3004, 3010, 3015, 3022, 3035, 3043, 3046, 3050, 3052, 3059, 3070, 3077, 3087, 3092, 3096, 3106, 3113, 3126, 3128, 3136, 3138, 3142, 3150, 3159, 3165, 3173, 3178, 3190, 3195, 3198, 3204, 3208, 3213, 3218, 3223, 3229, 3250, 3252, 3263, 3275, 3287, 3291, 3300, 3304, 3322, 3325, 3333, 3342, 3351, 3374, 3390, 3397, 3400, 3409, 3413, 3417, 3429, 3454, 3461, 3464, 3479, 3500, 3504, 3506, 3516, 3518, 3528, 3543, 3545, 3558, 3562, 3569, 3574, 3582, 3587, 3596, 3628, 3645, 3649, 3655, 3661, 3670, 3674, 3676, 3683, 3691, 3699, 3707, 3715, 3728, 3735, 3738, 3745, 3753, 3761, 3775, 3780, 3785, 3788, 3801, 3825, 3835, 3838, 3847, 3850, 3852, 3855, 3858, 3876, 3885, 3892, 3904, 3913, 3923, 3926, 3930, 3936, 3943, 3947, 3951, 3955, 3959, 3963, 3967, 3971, 3975, 3979, 3982, 3995, 4001, 4005] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index bfa1d17cf..3270d40b3 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -11934,7 +11934,7 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new RelationPrimaryContext(this.context, this.state); this.enterRule(localContext, 224, SparkSqlParser.RULE_relationPrimary); try { - this.state = 2821; + this.state = 2819; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { case 1: @@ -11992,22 +11992,18 @@ export class SparkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { this.state = 2801; - this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2802; this.atomSubQueryTableSource(); this.state = 2803; - this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 357, this.context) ) { case 1: { - this.state = 2804; + this.state = 2802; this.sample(); } break; } - this.state = 2807; + this.state = 2805; this.tableAlias(); } break; @@ -12015,23 +12011,23 @@ export class SparkSqlParser extends SQLParserBase { localContext = new JoinTableSourceContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2809; + this.state = 2807; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2810; + this.state = 2808; this.relation(); - this.state = 2811; + this.state = 2809; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 2813; + this.state = 2811; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { - this.state = 2812; + this.state = 2810; this.sample(); } break; } - this.state = 2815; + this.state = 2813; this.tableAlias(); } break; @@ -12039,9 +12035,9 @@ export class SparkSqlParser extends SQLParserBase { localContext = new InlineTableSourceContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2817; + this.state = 2815; this.inlineTable(); - this.state = 2818; + this.state = 2816; this.tableAlias(); } break; @@ -12049,7 +12045,7 @@ export class SparkSqlParser extends SQLParserBase { localContext = new FunctionTableSourceContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2820; + this.state = 2818; this.functionTable(); } break; @@ -12075,8 +12071,12 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2823; + this.state = 2821; + this.match(SparkSqlParser.LEFT_PAREN); + this.state = 2822; this.query(); + this.state = 2823; + this.match(SparkSqlParser.RIGHT_PAREN); } } catch (re) { @@ -13842,7 +13842,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.BACKQUOTED_IDENTIFIER: { this.state = 3048; - localContext._name = this.errorCapturingIdentifier(); + localContext._alias = this.errorCapturingIdentifier(); } break; case SparkSqlParser.LEFT_PAREN: @@ -19159,9 +19159,9 @@ export class SparkSqlParser extends SQLParserBase { 3,109,2772,8,109,1,110,1,110,1,110,1,110,5,110,2778,8,110,10,110, 12,110,2781,9,110,1,110,1,110,1,111,1,111,3,111,2787,8,111,1,112, 1,112,1,112,3,112,2792,8,112,1,112,3,112,2795,8,112,1,112,3,112, - 2798,8,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,2806,8,112, - 1,112,1,112,1,112,1,112,1,112,1,112,3,112,2814,8,112,1,112,1,112, - 1,112,1,112,1,112,1,112,3,112,2822,8,112,1,113,1,113,1,114,1,114, + 2798,8,112,1,112,1,112,1,112,1,112,3,112,2804,8,112,1,112,1,112, + 1,112,1,112,1,112,1,112,3,112,2812,8,112,1,112,1,112,1,112,1,112, + 1,112,1,112,3,112,2820,8,112,1,113,1,113,1,113,1,113,1,114,1,114, 1,114,1,114,5,114,2830,8,114,10,114,12,114,2833,9,114,1,115,1,115, 1,115,3,115,2838,8,115,1,115,1,115,1,115,1,115,1,115,3,115,2845, 8,115,1,115,1,115,1,115,1,115,1,115,3,115,2852,8,115,3,115,2854, @@ -19360,7 +19360,7 @@ export class SparkSqlParser extends SQLParserBase { 1,0,0,0,200,2655,1,0,0,0,202,2674,1,0,0,0,204,2700,1,0,0,0,206,2706, 1,0,0,0,208,2708,1,0,0,0,210,2744,1,0,0,0,212,2746,1,0,0,0,214,2750, 1,0,0,0,216,2758,1,0,0,0,218,2769,1,0,0,0,220,2773,1,0,0,0,222,2784, - 1,0,0,0,224,2821,1,0,0,0,226,2823,1,0,0,0,228,2825,1,0,0,0,230,2853, + 1,0,0,0,224,2819,1,0,0,0,226,2821,1,0,0,0,228,2825,1,0,0,0,230,2853, 1,0,0,0,232,2874,1,0,0,0,234,2894,1,0,0,0,236,2900,1,0,0,0,238,2904, 1,0,0,0,240,2906,1,0,0,0,242,2909,1,0,0,0,244,2930,1,0,0,0,246,2981, 1,0,0,0,248,2983,1,0,0,0,250,2991,1,0,0,0,252,2999,1,0,0,0,254,3007, @@ -20210,23 +20210,23 @@ export class SparkSqlParser extends SQLParserBase { 2790,1,0,0,0,2792,2794,1,0,0,0,2793,2795,3,150,75,0,2794,2793,1, 0,0,0,2794,2795,1,0,0,0,2795,2797,1,0,0,0,2796,2798,3,208,104,0, 2797,2796,1,0,0,0,2797,2798,1,0,0,0,2798,2799,1,0,0,0,2799,2800, - 3,244,122,0,2800,2822,1,0,0,0,2801,2802,5,2,0,0,2802,2803,3,226, - 113,0,2803,2805,5,3,0,0,2804,2806,3,208,104,0,2805,2804,1,0,0,0, - 2805,2806,1,0,0,0,2806,2807,1,0,0,0,2807,2808,3,244,122,0,2808,2822, - 1,0,0,0,2809,2810,5,2,0,0,2810,2811,3,198,99,0,2811,2813,5,3,0,0, - 2812,2814,3,208,104,0,2813,2812,1,0,0,0,2813,2814,1,0,0,0,2814,2815, - 1,0,0,0,2815,2816,3,244,122,0,2816,2822,1,0,0,0,2817,2818,3,228, - 114,0,2818,2819,3,244,122,0,2819,2822,1,0,0,0,2820,2822,3,240,120, - 0,2821,2791,1,0,0,0,2821,2801,1,0,0,0,2821,2809,1,0,0,0,2821,2817, - 1,0,0,0,2821,2820,1,0,0,0,2822,225,1,0,0,0,2823,2824,3,26,13,0,2824, - 227,1,0,0,0,2825,2826,5,333,0,0,2826,2831,3,280,140,0,2827,2828, - 5,4,0,0,2828,2830,3,280,140,0,2829,2827,1,0,0,0,2830,2833,1,0,0, - 0,2831,2829,1,0,0,0,2831,2832,1,0,0,0,2832,229,1,0,0,0,2833,2831, - 1,0,0,0,2834,2835,5,293,0,0,2835,2837,3,86,43,0,2836,2838,3,232, - 116,0,2837,2836,1,0,0,0,2837,2838,1,0,0,0,2838,2854,1,0,0,0,2839, - 2840,5,293,0,0,2840,2841,5,2,0,0,2841,2842,3,86,43,0,2842,2844,5, - 3,0,0,2843,2845,3,232,116,0,2844,2843,1,0,0,0,2844,2845,1,0,0,0, - 2845,2854,1,0,0,0,2846,2847,5,293,0,0,2847,2848,5,2,0,0,2848,2849, + 3,244,122,0,2800,2820,1,0,0,0,2801,2803,3,226,113,0,2802,2804,3, + 208,104,0,2803,2802,1,0,0,0,2803,2804,1,0,0,0,2804,2805,1,0,0,0, + 2805,2806,3,244,122,0,2806,2820,1,0,0,0,2807,2808,5,2,0,0,2808,2809, + 3,198,99,0,2809,2811,5,3,0,0,2810,2812,3,208,104,0,2811,2810,1,0, + 0,0,2811,2812,1,0,0,0,2812,2813,1,0,0,0,2813,2814,3,244,122,0,2814, + 2820,1,0,0,0,2815,2816,3,228,114,0,2816,2817,3,244,122,0,2817,2820, + 1,0,0,0,2818,2820,3,240,120,0,2819,2791,1,0,0,0,2819,2801,1,0,0, + 0,2819,2807,1,0,0,0,2819,2815,1,0,0,0,2819,2818,1,0,0,0,2820,225, + 1,0,0,0,2821,2822,5,2,0,0,2822,2823,3,26,13,0,2823,2824,5,3,0,0, + 2824,227,1,0,0,0,2825,2826,5,333,0,0,2826,2831,3,280,140,0,2827, + 2828,5,4,0,0,2828,2830,3,280,140,0,2829,2827,1,0,0,0,2830,2833,1, + 0,0,0,2831,2829,1,0,0,0,2831,2832,1,0,0,0,2832,229,1,0,0,0,2833, + 2831,1,0,0,0,2834,2835,5,293,0,0,2835,2837,3,86,43,0,2836,2838,3, + 232,116,0,2837,2836,1,0,0,0,2837,2838,1,0,0,0,2838,2854,1,0,0,0, + 2839,2840,5,293,0,0,2840,2841,5,2,0,0,2841,2842,3,86,43,0,2842,2844, + 5,3,0,0,2843,2845,3,232,116,0,2844,2843,1,0,0,0,2844,2845,1,0,0, + 0,2845,2854,1,0,0,0,2846,2847,5,293,0,0,2847,2848,5,2,0,0,2848,2849, 3,26,13,0,2849,2851,5,3,0,0,2850,2852,3,232,116,0,2851,2850,1,0, 0,0,2851,2852,1,0,0,0,2852,2854,1,0,0,0,2853,2834,1,0,0,0,2853,2839, 1,0,0,0,2853,2846,1,0,0,0,2854,231,1,0,0,0,2855,2856,5,346,0,0,2856, @@ -20668,7 +20668,7 @@ export class SparkSqlParser extends SQLParserBase { 2581,2589,2594,2608,2617,2620,2625,2632,2635,2641,2647,2650,2655, 2660,2664,2670,2674,2677,2682,2685,2690,2694,2697,2700,2706,2711, 2718,2721,2739,2741,2744,2755,2764,2771,2779,2786,2791,2794,2797, - 2805,2813,2821,2831,2837,2844,2851,2853,2866,2872,2874,2884,2890, + 2803,2811,2819,2831,2837,2844,2851,2853,2866,2872,2874,2884,2890, 2892,2900,2904,2916,2919,2924,2928,2930,2939,2951,2953,2960,2967, 2973,2979,2981,2988,2996,3004,3010,3015,3022,3035,3043,3046,3050, 3052,3059,3070,3077,3087,3092,3096,3106,3113,3126,3128,3136,3138, @@ -30424,15 +30424,9 @@ export class SubQueryTableSourceContext extends RelationPrimaryContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public LEFT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; - } public atomSubQueryTableSource(): AtomSubQueryTableSourceContext { return this.getRuleContext(0, AtomSubQueryTableSourceContext)!; } - public RIGHT_PAREN(): antlr.TerminalNode { - return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; - } public tableAlias(): TableAliasContext { return this.getRuleContext(0, TableAliasContext)!; } @@ -30597,9 +30591,15 @@ export class AtomSubQueryTableSourceContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public LEFT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.LEFT_PAREN, 0)!; + } public query(): QueryContext { return this.getRuleContext(0, QueryContext)!; } + public RIGHT_PAREN(): antlr.TerminalNode { + return this.getToken(SparkSqlParser.RIGHT_PAREN, 0)!; + } public override get ruleIndex(): number { return SparkSqlParser.RULE_atomSubQueryTableSource; } @@ -31523,7 +31523,7 @@ export class TableAllColumnsContext extends antlr.ParserRuleContext { export class NamedExpressionContext extends antlr.ParserRuleContext { - public _name?: ErrorCapturingIdentifierContext; + public _alias?: ErrorCapturingIdentifierContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } diff --git a/src/parser/common/entityCollector.ts b/src/parser/common/entityCollector.ts index 63997efe5..1639b163b 100644 --- a/src/parser/common/entityCollector.ts +++ b/src/parser/common/entityCollector.ts @@ -409,7 +409,9 @@ export abstract class EntityCollector { exitProgram() { const entities = Array.from(this._entitiesSet); this.removeCtxAttr(); - this.attachAccessibleToEntities(entities); + if (this._caretTokenIndex !== -1) { + this.attachAccessibleToEntities(entities); + } this._entityStack.clear(); } diff --git a/src/parser/postgresql/postgreEntityCollector.ts b/src/parser/postgresql/postgreEntityCollector.ts index 80c9b0e1e..f4a3f0bb1 100644 --- a/src/parser/postgresql/postgreEntityCollector.ts +++ b/src/parser/postgresql/postgreEntityCollector.ts @@ -27,7 +27,6 @@ import { TableAllColumnsContext, type TableNameContext, type TableNameCreateContext, - Target_elContext, Target_labelContext, Target_listContext, type ViewNameContext, diff --git a/test/parser/hive/contextCollect/entityCollector.test.ts b/test/parser/hive/contextCollect/entityCollector.test.ts index a79221909..698a6ca71 100644 --- a/test/parser/hive/contextCollect/entityCollector.test.ts +++ b/test/parser/hive/contextCollect/entityCollector.test.ts @@ -4,9 +4,12 @@ import path from 'path'; import { HiveSqlParserListener } from 'src/lib/hive/HiveSqlParserListener'; import { AttrName, + ColumnDeclareType, + CommonEntityContext, isCommonEntityContext, isFuncEntityContext, StmtContextType, + TableDeclareType, } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { HiveEntityCollector, HiveSQL } from 'src/parser/hive'; @@ -25,7 +28,7 @@ describe('Hive entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(21); + expect(splitListener.statementsContext.length).toBe(26); }); test('create table by like', () => { @@ -131,11 +134,11 @@ describe('Hive entity collector tests', () => { hiveSql.listen(collectListener as ParseTreeListener, columnCreateTableContext); const allEntities = collectListener.getEntities(); + expect(allEntities.length).toBe(3); - expect(allEntities.length).toBe(2); - - const tableCreateEntity = allEntities[0]; - const tableFromEntity = allEntities[1]; + const tableFromEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('derived_table'); @@ -160,7 +163,7 @@ describe('Hive entity collector tests', () => { }); if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.relatedEntities).not.toBeNull(); - expect(tableCreateEntity.relatedEntities[0]).toBe(tableFromEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(tableCreateEntity.columns).toBeUndefined(); } expect(tableFromEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -176,10 +179,11 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewCreateEntity = allEntities[0]; - const viewSelectEntity = allEntities[1]; + const viewSelectEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const viewCreateEntity = allEntities[2]; expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewCreateEntity.text).toBe('mydb.bro_view'); @@ -202,7 +206,7 @@ describe('Hive entity collector tests', () => { }); if (isCommonEntityContext(viewCreateEntity)) { expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(viewCreateEntity.columns).toBeUndefined(); } expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -218,10 +222,11 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewCreateEntity = allEntities[0]; - const viewSelectEntity = allEntities[1]; + const viewSelectEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const viewCreateEntity = allEntities[2]; expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewCreateEntity.text).toBe('mydb.task_view'); @@ -253,7 +258,7 @@ describe('Hive entity collector tests', () => { }); if (isCommonEntityContext(viewCreateEntity)) { expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(viewCreateEntity.columns).not.toBeNull(); expect(viewCreateEntity.columns.length).toBe(3); viewCreateEntity.columns.forEach((columEntity) => { @@ -305,10 +310,11 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewCreateEntity = allEntities[0]; - const viewSelectEntity = allEntities[1]; + const viewSelectEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const viewCreateEntity = allEntities[2]; expect(viewCreateEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewCreateEntity.text).toBe('mydb.bro_view'); @@ -339,7 +345,7 @@ describe('Hive entity collector tests', () => { }); if (isCommonEntityContext(viewCreateEntity)) { expect(viewCreateEntity.relatedEntities).not.toBeNull(); - expect(viewCreateEntity.relatedEntities[0]).toBe(viewSelectEntity); + expect(viewCreateEntity.relatedEntities[0]).toBe(queryResultEntity); expect(viewCreateEntity.columns).toBeUndefined(); } expect(viewSelectEntity.entityContextType).toBe(EntityContextType.TABLE); @@ -355,7 +361,7 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const selectTableEntity = allEntities[0]; @@ -392,7 +398,7 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const selectTableEntity = allEntities[0]; const joinTableEntity = allEntities[1]; @@ -437,7 +443,7 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const selectTableEntity = allEntities[0]; @@ -474,7 +480,7 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const selectTableEntity = allEntities[0]; const joinTableEntity = allEntities[1]; @@ -555,10 +561,10 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const insertTableEntity = allEntities[0]; - const fromTableEntity = allEntities[1]; + const fromTableEntity = allEntities[0]; + const insertTableEntity = allEntities[2]; expect(insertTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(insertTableEntity.text).toBe('table_name'); @@ -598,7 +604,8 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + // todo Fix + expect(allEntities.length).toBe(3); const fromTableEntity = allEntities[0]; const insertTableEntity = allEntities[1]; @@ -967,7 +974,7 @@ describe('Hive entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const selectTableEntity = allEntities[0]; const joinTableEntity = allEntities[1]; @@ -1073,4 +1080,139 @@ describe('Hive entity collector tests', () => { expect(t2).toBeDefined(); expect(t2?.isAccessible).toBeTruthy(); }); + + test('should collect query result and columns', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[21]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.COMMON); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.COMMON); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[22]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[23]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect derived table and derived column', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[24]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + + expect(tableEntities.length).toBe(4); + expect(tableEntities[0].text).toBe('t3'); + expect(tableEntities[0].declareType).toBe(TableDeclareType.COMMON); + expect(tableEntities[0][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[1].text).toBe('t1'); + expect(tableEntities[1].declareType).toBe(TableDeclareType.COMMON); + expect(tableEntities[1][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[2].text).toBe('select id, name from t1'); + expect(tableEntities[2].declareType).toBe(TableDeclareType.EXPRESSION); + expect(tableEntities[2][AttrName.alias]?.text).toBe('derived_table'); + + expect(tableEntities[3].text).toBe('t2'); + expect(tableEntities[3].declareType).toBe(TableDeclareType.COMMON); + expect(tableEntities[3][AttrName.alias]).toBeFalsy(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(3); + expect(queryResults[0].text).toBe('max(age)'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('max(age)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[0].columns[0][AttrName.alias]).toBeFalsy(); + + expect(queryResults[2].text).toBe('id, (select max(age) from t3) as max_age'); + expect(queryResults[2].columns?.length).toBe(2); + expect(queryResults[2].columns[0].text).toBe('id'); + expect(queryResults[2].columns[0].declareType).toBe(ColumnDeclareType.COMMON); + expect(queryResults[2].columns[1].text).toBe('(select max(age) from t3)'); + expect(queryResults[2].columns[1].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[2].columns[1][AttrName.alias]?.text).toBe('max_age'); + }); + + test('should collect query result in where clause', () => { + const hiveSql = new HiveSQL(); + const context = splitListener.statementsContext[25]; + + const collectListener = new HiveEntityCollector(commonSql); + hiveSql.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + + expect(queryResults.length).toBe(2); + expect(queryResults[0].text).toBe('name'); + expect(queryResults[0].columns?.[0].text).toBe('name'); + expect(queryResults[1].text).toBe('id'); + }); }); diff --git a/test/parser/hive/contextCollect/fixtures/common.sql b/test/parser/hive/contextCollect/fixtures/common.sql index 2f779521a..def002b4f 100644 --- a/test/parser/hive/contextCollect/fixtures/common.sql +++ b/test/parser/hive/contextCollect/fixtures/common.sql @@ -63,4 +63,14 @@ CREATE TABLE test_change (a int, b varchar(255) COMMENT 'column 2', c int) COMME CREATE DATABASE testdb COMMENT 'test database' LOCATION '/test/path'; -SELECT a.* FROM table_busi a JOIN table_issue b ON (a.id = b.id AND a.department = b.department); \ No newline at end of file +SELECT a.* FROM table_busi a JOIN table_issue b ON (a.id = b.id AND a.department = b.department); + +select id, age as new_age, count(*) as total from t1; + +select t1.*, t2.* from t1, t2; + +select * from t1; + +select id, (select max(age) from t3) as max_age from (select id, name from t1) as derived_table, t2; + +select id from a1 where name in (select name from b1); \ No newline at end of file diff --git a/test/parser/hive/suggestion/suggestionWithEntity.test.ts b/test/parser/hive/suggestion/suggestionWithEntity.test.ts index 3e7a4b611..c9d680f59 100644 --- a/test/parser/hive/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/hive/suggestion/suggestionWithEntity.test.ts @@ -52,7 +52,7 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -94,7 +94,7 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('table_name_1'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); @@ -142,7 +142,7 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); + expect(entities.length).toBe(3); expect(entities[0].text).toBe('a'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -196,7 +196,8 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); + // todo fix + expect(entities.length).toBe(3); expect(entities[0].text).toBe('page_view_stg'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -223,14 +224,15 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(4); + + expect(entities[0].text).toBe('inside_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('inside_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[3].text).toBe('insert_tb'); + expect(entities[3].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[3].belongStmt.isContainCaret).toBeTruthy(); }); test('insert into from nested query with columns and trailing comma', () => { @@ -248,14 +250,18 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + const tableEntities = entities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ); + expect(tableEntities.length).toBe(3); - expect(entities[1].text).toBe('inside_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(tableEntities[0].text).toBe('inside_tb'); + expect(tableEntities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntities[0].belongStmt.isContainCaret).toBeTruthy(); + + expect(tableEntities[2].text).toBe('insert_tb'); + expect(tableEntities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(tableEntities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with no column', () => { @@ -274,12 +280,13 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { const entities = hive.getAllEntities(sql, pos); expect(entities.length).toBe(2); - expect(entities[0].text).toBe('derived_table'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + + expect(entities[0].text).toBe('origin_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('origin_table'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe('derived_table'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); @@ -298,14 +305,16 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('derived_table'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('origin_table'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('origin_table'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[2].text).toBe('derived_table'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => { diff --git a/test/parser/spark/contextCollect/entityCollector.test.ts b/test/parser/spark/contextCollect/entityCollector.test.ts index eabb9095f..98718e81a 100644 --- a/test/parser/spark/contextCollect/entityCollector.test.ts +++ b/test/parser/spark/contextCollect/entityCollector.test.ts @@ -4,9 +4,12 @@ import path from 'path'; import { SparkSqlParserListener } from 'src/lib/spark/SparkSqlParserListener'; import { AttrName, + ColumnDeclareType, + CommonEntityContext, isCommonEntityContext, isFuncEntityContext, StmtContextType, + TableDeclareType, } from 'src/parser/common/entityCollector'; import { EntityContextType } from 'src/parser/common/types'; import { SparkEntityCollector, SparkSQL, SparkSqlSplitListener } from 'src/parser/spark'; @@ -24,7 +27,7 @@ describe('SparkSQL entity collector tests', () => { }); test('split results', () => { - expect(splitListener.statementsContext.length).toBe(12); + expect(splitListener.statementsContext.length).toBe(17); }); test('create table like', () => { @@ -162,10 +165,11 @@ describe('SparkSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const tableCreateEntity = allEntities[0]; - const originTableEntity = allEntities[1]; + const originTableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const tableCreateEntity = allEntities[2]; expect(tableCreateEntity.entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(tableCreateEntity.text).toBe('student_copy'); @@ -175,7 +179,7 @@ describe('SparkSQL entity collector tests', () => { if (isCommonEntityContext(tableCreateEntity)) { expect(tableCreateEntity.columns).toBeUndefined(); expect(tableCreateEntity.relatedEntities.length).toBe(1); - expect(tableCreateEntity.relatedEntities[0]).toBe(originTableEntity); + expect(tableCreateEntity.relatedEntities[0]).toBe(queryResultEntity); } expect(originTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(originTableEntity.text).toBe('student'); @@ -190,10 +194,11 @@ describe('SparkSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); - const viewEntity = allEntities[0]; - const tableEntity = allEntities[1]; + const tableEntity = allEntities[0]; + const queryResultEntity = allEntities[1]; + const viewEntity = allEntities[2]; expect(viewEntity.entityContextType).toBe(EntityContextType.VIEW_CREATE); expect(viewEntity.belongStmt.stmtContextType).toBe(StmtContextType.CREATE_VIEW_STMT); @@ -241,7 +246,7 @@ describe('SparkSQL entity collector tests', () => { const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(2); + expect(allEntities.length).toBe(3); const tableEntity1 = allEntities[0]; const tableEntity2 = allEntities[1]; @@ -298,8 +303,8 @@ describe('SparkSQL entity collector tests', () => { expect(allEntities.length).toBe(2); - const targetTableEntity = allEntities[0]; - const sourceTableEntity = allEntities[1]; + const sourceTableEntity = allEntities[0]; + const targetTableEntity = allEntities[1]; expect(targetTableEntity.entityContextType).toBe(EntityContextType.TABLE); expect(targetTableEntity.belongStmt.stmtContextType).toBe(StmtContextType.INSERT_STMT); @@ -318,7 +323,7 @@ describe('SparkSQL entity collector tests', () => { spark.listen(collectListener as ParseTreeListener, testingContext); const allEntities = collectListener.getEntities(); - expect(allEntities.length).toBe(1); + expect(allEntities.length).toBe(2); const sourceTableEntity = allEntities[0]; @@ -447,4 +452,194 @@ describe('SparkSQL entity collector tests', () => { expect(functionEntity.relatedEntities).toBeNull(); } }); + + test('table entities are accessible when caret is in outer query', () => { + const hiveSql = new SparkSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在外层查询的FROM关键字位置 + const entities = hiveSql.getAllEntities(sql, { + lineNumber: 1, + column: 13, // 光标在FROM位置 + }); + + // 验证可以访问外层查询中的所有表 + const accessibleTables = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables.length).toBe(2); // 应该至少包含t1和t3 + + // 验证t1和t3是可访问的 + const t1 = accessibleTables.find((e) => e.text === 't1'); + const t3 = accessibleTables.find((e) => e._alias?.text === 't3'); + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeTruthy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeTruthy(); + }); + + test('table entities are not accessible when caret is in inner query', () => { + const hiveSql = new SparkSQL(); + const sql = `SELECT id FROM t1, (SELECT name from t2) as t3`; + + // 光标在内层查询的name位置 + const entities = hiveSql.getAllEntities(sql, { + lineNumber: 1, + column: 29, // 光标在name位置 + }); + + // 验证实体访问规则 + const tables = entities.filter((e) => e.entityContextType === EntityContextType.TABLE); + + // 找到t1、t2和t3 + const t1 = tables.find((e) => e.text === 't1'); + const t2 = tables.find((e) => e.text === 't2'); + const t3 = tables.find((e) => e._alias?.text === 't3'); + + // t1和t3应该不可访问,因为它们在外层查询 + expect(t1).toBeDefined(); + expect(t1?.isAccessible).toBeFalsy(); + expect(t3).toBeDefined(); + expect(t3?.isAccessible).toBeFalsy(); + + // t2应该可以访问,因为它在内层查询中 + expect(t2).toBeDefined(); + expect(t2?.isAccessible).toBeTruthy(); + }); + + test('should collect query result and columns', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[12]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('id, age as new_age, count(*) as total'); + expect(queryResult.relatedEntities?.length).toBe(1); + expect(queryResult.relatedEntities?.[0].text).toBe('t1'); + + const columns = queryResult.columns; + expect(columns?.length).toBe(3); + expect(columns[0].text).toBe('id'); + expect(columns[0].declareType).toBe(ColumnDeclareType.COMMON); + expect(columns[1].text).toBe('age'); + expect(columns[1].declareType).toBe(ColumnDeclareType.COMMON); + expect(columns[1][AttrName.alias]).toEqual(expect.objectContaining({ text: 'new_age' })); + expect(columns[2].text).toBe('count(*)'); + expect(columns[2].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(columns[2][AttrName.alias]).toEqual(expect.objectContaining({ text: 'total' })); + }); + + test('should collect columns with multiple star symbol', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[13]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('t1.*, t2.*'); + expect(queryResult.columns?.length).toBe(2); + expect(queryResult.columns[0].text).toBe('t1.*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + expect(queryResult.columns[1].text).toBe('t2.*'); + expect(queryResult.columns[1].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect columns with single star symbol', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[14]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResult = allEntities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext; + + expect(queryResult).toBeDefined(); + expect(queryResult?.text).toBe('*'); + expect(queryResult.columns?.length).toBe(1); + expect(queryResult.columns[0].text).toBe('*'); + expect(queryResult.columns[0].declareType).toBe(ColumnDeclareType.ALL); + }); + + test('should collect derived table and derived column', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[15]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const tableEntities = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.TABLE + ) as CommonEntityContext[]; + + expect(tableEntities.length).toBe(4); + expect(tableEntities[0].text).toBe('t3'); + expect(tableEntities[0].declareType).toBe(TableDeclareType.COMMON); + expect(tableEntities[0][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[1].text).toBe('t1'); + expect(tableEntities[1].declareType).toBe(TableDeclareType.COMMON); + expect(tableEntities[1][AttrName.alias]).toBeFalsy(); + + expect(tableEntities[2].text).toBe('(select id, name from t1)'); + expect(tableEntities[2].declareType).toBe(TableDeclareType.EXPRESSION); + expect(tableEntities[2][AttrName.alias]?.text).toBe('derived_table'); + + expect(tableEntities[3].text).toBe('t2'); + expect(tableEntities[3].declareType).toBe(TableDeclareType.COMMON); + expect(tableEntities[3][AttrName.alias]).toBeFalsy(); + + const queryResults = allEntities.filter( + (entity) => entity.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + expect(queryResults.length).toBe(3); + expect(queryResults[0].text).toBe('max(age) as max_age'); + expect(queryResults[0].columns?.length).toBe(1); + expect(queryResults[0].columns[0].text).toBe('max(age)'); + expect(queryResults[0].columns[0].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[0].columns[0][AttrName.alias]?.text).toBe('max_age'); + + expect(queryResults[2].text).toBe('id, (select max(age) as max_age from t3) as max_age'); + expect(queryResults[2].columns?.length).toBe(2); + expect(queryResults[2].columns[0].text).toBe('id'); + expect(queryResults[2].columns[0].declareType).toBe(ColumnDeclareType.COMMON); + expect(queryResults[2].columns[1].text).toBe('(select max(age) as max_age from t3)'); + expect(queryResults[2].columns[1].declareType).toBe(ColumnDeclareType.EXPRESSION); + expect(queryResults[2].columns[1][AttrName.alias]?.text).toBe('max_age'); + }); + + test('should collect query result in where clause', () => { + const spark = new SparkSQL(); + const context = splitListener.statementsContext[16]; + + const collectListener = new SparkEntityCollector(commonSql); + spark.listen(collectListener as ParseTreeListener, context); + + const allEntities = collectListener.getEntities(); + const queryResults = allEntities.filter( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ) as CommonEntityContext[]; + + expect(queryResults.length).toBe(2); + expect(queryResults[0].text).toBe('name'); + expect(queryResults[0].columns?.[0].text).toBe('name'); + expect(queryResults[1].text).toBe('id'); + }); }); diff --git a/test/parser/spark/contextCollect/fixtures/common.sql b/test/parser/spark/contextCollect/fixtures/common.sql index e3bbd97b7..8f72916ef 100644 --- a/test/parser/spark/contextCollect/fixtures/common.sql +++ b/test/parser/spark/contextCollect/fixtures/common.sql @@ -28,4 +28,14 @@ USE NAMESPACE ns1; CREATE OR REPLACE FUNCTION simple_udf AS 'SimpleUdfR'; -CREATE FUNCTION simple_udf AS 'SimpleUdfR'; \ No newline at end of file +CREATE FUNCTION simple_udf AS 'SimpleUdfR'; + +select id, age as new_age, count(*) as total from t1; + +select t1.*, t2.* from t1, t2; + +select * from t1; + +select id, (select max(age) as max_age from t3) as max_age from (select id, name from t1) as derived_table, t2; + +select id from a1 where name in (select name from b1); \ No newline at end of file diff --git a/test/parser/spark/suggestion/suggestionWithEntity.test.ts b/test/parser/spark/suggestion/suggestionWithEntity.test.ts index 936889628..de7362d50 100644 --- a/test/parser/spark/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/spark/suggestion/suggestionWithEntity.test.ts @@ -48,7 +48,7 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(1); + expect(entities.length).toBe(2); expect(entities[0].text).toBe('students'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); @@ -70,11 +70,12 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { const entities = spark.getAllEntities(sql, pos); expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); + expect(entities[1].text).toBe('insert_tb'); expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); @@ -94,14 +95,15 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('insert_tb'); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('from_tb'); expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('from_tb'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[2].text).toBe('insert_tb'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('create table as select with no column', () => { @@ -120,12 +122,13 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { const entities = spark.getAllEntities(sql, pos); expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[1].text).toBe('sorted_census_data'); + expect(entities[1].entityContextType).toBe(EntityContextType.TABLE_CREATE); expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); }); @@ -144,14 +147,15 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = spark.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('sorted_census_data'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities.length).toBe(3); + + expect(entities[0].text).toBe('unsorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].text).toBe('unsorted_census_data'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[2].text).toBe('sorted_census_data'); + expect(entities[2].entityContextType).toBe(EntityContextType.TABLE_CREATE); + expect(entities[2].belongStmt.isContainCaret).toBeTruthy(); }); test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => {